Skip to content

Instantly share code, notes, and snippets.

@benjaminrobinson
Last active October 22, 2025 13:59
Show Gist options
  • Save benjaminrobinson/49180e90784356ebec7ae6d1ddf5e07c to your computer and use it in GitHub Desktop.
Save benjaminrobinson/49180e90784356ebec7ae6d1ddf5e07c to your computer and use it in GitHub Desktop.
EA Sports College Football Player Ratings
library(httr2)
library(jsonlite)
library(purrr)
library(tibble)
library(tidyr)
ceiling(
httr2::request(
"https://drop-api.ea.com/rating/ea-sports-college-football"
) |>
httr2::req_url_query(limit = "100") |>
httr2::req_headers(
`sec-ch-ua-platform` = '"Windows"',
Referer = "https://www.ea.com/",
`User-Agent` = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36",
`sec-ch-ua` = '"Google Chrome";v="141", "Not?A_Brand";v="8", "Chromium";v="141"',
DNT = "1",
`sec-ch-ua-mobile` = "?0",
`x-feature` = '{"disable_share_image":false,"enable_access_site":false,"enable_age_gate":true,"enable_age_gate_refactor":true,"enable_bf2042_glacier_theme":false,"enable_checkout_page":true,"enable_college_football_ratings":true,"enable_currency":false,"enable_events_page":true,"enable_franchise_hub":false,"enable_franchise_newsletter":true,"enable_im_resize_query_param":true,"enable_language_redirection":true,"enable_legal_disclaimer_page":false,"enable_multimedia_consent":true,"enable_newsletter_with_incentive":true,"enable_next_ratings_release":false,"enable_non_mobile_download_flow_optimization":true,"enable_page_level_theming":true,"enable_player_tag":false,"enable_portal":true,"enable_portal_filter":false,"enable_portal_maps_rotation":true,"enable_postlaunch_webstore_focus":true,"enable_postlaunch_webstore_image_link_ab_test":false,"enable_postlaunch_webstore_pdp_promotion":true,"enable_ratings_up_down_vote":false,"enable_showcase_edition":true,"enable_spotlight_carousel":true,"enable_stat_human_kills":false,"enable_translations_api_route":false,"enable_ugc_page":true,"enable_ugx":false}'
) |>
httr2::req_perform() |>
httr2::resp_body_string() |>
jsonlite::fromJSON() |>
(\(.) .$totalItems)() / 100
) -> total_pg
Sys.sleep(sample(1:5, 1))
purrr::map_dfr(1:total_pg, function(x) {
message(paste("Scraping Page", x))
Sys.sleep(sample(1:5, 1))
httr2::request("https://drop-api.ea.com/rating/ea-sports-college-football") |>
httr2::req_url_query(limit = 100, offset = 100 * (x - 1)) |>
httr2::req_headers(
`sec-ch-ua-platform` = '"Windows"',
Referer = "https://www.ea.com/",
`User-Agent` = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36",
`sec-ch-ua` = '"Google Chrome";v="141", "Not?A_Brand";v="8", "Chromium";v="141"',
DNT = "1",
`sec-ch-ua-mobile` = "?0",
`x-feature` = '{"disable_share_image":false,"enable_access_site":false,"enable_age_gate":true,"enable_age_gate_refactor":true,"enable_bf2042_glacier_theme":false,"enable_checkout_page":true,"enable_college_football_ratings":true,"enable_currency":false,"enable_events_page":true,"enable_franchise_hub":false,"enable_franchise_newsletter":true,"enable_im_resize_query_param":true,"enable_language_redirection":true,"enable_legal_disclaimer_page":false,"enable_multimedia_consent":true,"enable_newsletter_with_incentive":true,"enable_next_ratings_release":false,"enable_non_mobile_download_flow_optimization":true,"enable_page_level_theming":true,"enable_player_tag":false,"enable_portal":true,"enable_portal_filter":false,"enable_portal_maps_rotation":true,"enable_postlaunch_webstore_focus":true,"enable_postlaunch_webstore_image_link_ab_test":false,"enable_postlaunch_webstore_pdp_promotion":true,"enable_ratings_up_down_vote":false,"enable_showcase_edition":true,"enable_spotlight_carousel":true,"enable_stat_human_kills":false,"enable_translations_api_route":false,"enable_ugc_page":true,"enable_ugx":false}'
) |>
httr2::req_perform() -> res
if (res$status_code == 200) {
return(httr2::resp_body_string(res) |>
jsonlite::fromJSON() |>
(\(.) .$items)())
}
}) |>
tibble::as_tibble() -> ea
flatten_nested_label <- function(df) {
for (col_name in names(df)) {
# Check if the column is a data frame
if (is.data.frame(df[[col_name]])) {
# Replace the column with its "label" field
if ("label" %in% names(df[[col_name]])) {
df[[col_name]] <- df[[col_name]]$label
} else {
warning(paste(
"Column",
col_name,
"is a data frame but has no 'label' field. Skipping."
))
}
}
}
return(df)
}
flatten_nested_label(ea) -> ea
tidyr::unnest(ea, stats) -> ea
flatten_nested_value <- function(df) {
for (col_name in names(df)) {
# Check if the column is a data frame
if (is.data.frame(df[[col_name]])) {
# Replace the column with its "value" field
if ("value" %in% names(df[[col_name]])) {
df[[col_name]] <- df[[col_name]]$value
} else {
warning(paste(
"Column",
col_name,
"is a data frame but has no 'value' field. Skipping."
))
}
}
}
return(df)
}
ea = flatten_nested_value(ea)
write.csv(ea, "C:/Users/benjr/Desktop/eaCFB.csv", row.names = FALSE)
We can't make this file beautiful and searchable because it's too large.
"id","avatarUrl","firstName","lastName","height","weight","overallRating","homeTown","homeState","redShirtStatus","jerseyNum","schoolYear","acceleration","agility","jumping","stamina","strength","awareness","bCVision","blockShedding","breakSack","breakTackle","carrying","catchInTraffic","catching","changeOfDirection","deepRouteRunning","finesseMoves","hitPower","impactBlocking","injury","jukeMove","kickAccuracy","kickPower","kickReturn","leadBlock","manCoverage","mediumRouteRunning","overall","passBlock","passBlockFinesse","passBlockPower","playAction","playRecognition","powerMoves","press","pursuit","runBlock","runBlockFinesse","runBlockPower","runningStyle","shortRouteRunning","spectacularCatch","speed","spinMove","stiffArm","tackle","throwAccuracyDeep","throwAccuracyMid","throwAccuracyShort","throwOnTheRun","throwPower","throwUnderPressure","toughness","trucking","zoneCoverage","conference","team","position","iteration"
8726,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Jeremiah","Smith",75,55,98,"Miami Gardens","Florida","Eligible",4,"Sophomore",96,95,97,93,79,91,94,51,60,84,75,98,95,93,97,44,63,59,96,92,35,36,80,55,62,97,98,40,39,41,32,66,41,64,70,62,56,55,0,97,99,95,88,75,54,33,37,35,55,43,35,97,72,60,"Big Ten","Ohio State","Wide Receiver","Launch Ratings"
4674,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Caleb","Downs",72,45,96,"Hoschton","Georgia","Eligible",2,"Junior",95,95,91,98,72,85,77,72,57,65,68,64,75,92,47,61,94,72,96,85,32,32,87,59,87,46,96,49,48,47,36,91,55,88,98,53,56,55,0,47,79,93,79,75,84,37,43,45,49,48,35,95,71,85,"Big Ten","Ohio State","Free Safety","Launch Ratings"
8169,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Anthony","Hill Jr.",75,78,95,"Denton","Texas","Eligible",0,"Junior",93,88,91,92,84,90,54,85,55,46,67,51,66,85,40,75,97,82,95,70,32,30,55,55,73,45,95,50,47,48,36,92,79,67,93,55,54,54,0,45,61,92,64,65,93,34,43,44,45,52,36,97,66,80,"SEC","Texas","Mike Backer","Launch Ratings"
4080,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Jeremiyah","Love",72,54,95,"St. Louis","Missouri","Eligible",4,"Junior",95,93,93,92,75,88,92,51,61,91,96,71,73,92,57,39,55,65,93,89,32,33,91,59,55,65,95,56,52,57,30,62,39,52,58,52,55,51,0,71,67,95,85,71,52,45,47,51,51,55,35,94,77,51,"Independent","Notre Dame","Halfback","Launch Ratings"
18248,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Ryan","Williams",72,18,95,"Mobile","Alabama","Eligible",2,"Sophomore",99,99,95,92,55,85,97,25,52,95,73,87,90,98,95,25,26,47,90,99,24,25,85,39,55,88,95,31,25,32,29,46,25,34,45,54,49,47,0,91,95,96,97,45,28,30,31,32,49,35,32,89,45,45,"SEC","Alabama","Wide Receiver","Launch Ratings"
20276,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","T.J.","Parker",75,105,95,"Phenix City","Alabama","Eligible",3,"Junior",91,82,85,88,88,95,52,85,42,34,55,38,48,74,41,87,94,85,95,60,24,26,45,45,54,39,95,40,40,40,37,97,97,52,97,38,35,35,0,41,40,85,55,65,87,35,30,13,11,12,15,94,55,65,"ACC","Clemson","Left Edge","Launch Ratings"
20399,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/88.png?im=FaceCrop,padding=0.7","Dylan","Stewart",77,85,94,"Washington","D.C.","Eligible",6,"Sophomore",96,91,90,84,78,85,54,76,33,35,53,42,48,75,42,96,93,70,90,71,33,35,55,42,36,42,94,44,40,38,40,88,88,47,99,30,39,43,0,42,42,91,69,65,83,27,15,26,36,37,39,88,58,43,"SEC","South Carolina","Right Edge","Launch Ratings"
20215,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/94.png?im=FaceCrop,padding=0.7","Jermod","McCoy",72,33,94,"Whitehouse","Texas","Eligible",3,"Junior",95,97,97,93,67,88,72,60,43,73,62,67,81,95,34,41,79,59,84,83,35,31,68,50,90,35,94,33,32,32,29,91,35,88,83,36,35,35,0,34,74,91,77,57,77,10,14,34,34,33,35,87,55,94,"SEC","Tennessee","Cornerback","Launch Ratings"
21786,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/5.png?im=FaceCrop,padding=0.7","Jordyn","Tyson",73,35,94,"Allen","Texas","Previous",0,"Junior",93,93,94,95,67,93,91,40,41,79,71,93,94,90,94,31,44,54,87,89,25,27,74,50,36,95,94,42,40,42,25,49,32,44,39,59,52,49,0,96,92,91,85,62,40,33,35,40,44,44,31,84,62,42,"Big 12","Arizona State","Wide Receiver","Launch Ratings"
20338,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Kadyn","Proctor",79,206,94,"Des Moines","Iowa","Eligible",74,"Junior",77,74,74,83,98,87,35,59,35,34,54,44,43,59,20,50,65,99,95,32,30,32,33,83,15,21,94,94,88,97,11,50,68,15,42,89,88,92,0,25,40,67,33,48,46,15,15,15,11,35,12,99,51,17,"SEC","Alabama","Left Tackle","Launch Ratings"
23578,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Peter","Woods",75,155,94,"Alabaster","Alabama","Eligible",11,"Junior",87,76,81,84,94,88,36,95,35,45,53,37,44,65,37,78,92,94,92,40,24,26,25,57,30,33,94,51,50,54,44,91,91,40,94,57,53,59,0,33,36,75,35,58,88,16,34,10,24,31,22,95,55,32,"ACC","Clemson","Defensive Tackle","Launch Ratings"
6054,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/112.png?im=FaceCrop,padding=0.7","Spencer","Fano",78,142,94,"Spanish Fork","Utah","Eligible",55,"Junior",84,79,77,92,88,97,40,50,45,41,56,33,36,67,36,42,57,87,94,35,32,37,36,97,32,31,94,95,97,89,29,46,54,34,31,91,95,87,0,35,34,75,33,38,39,26,33,22,14,21,41,95,38,36,"Big 12","Utah","Right Tackle","Launch Ratings"
30791,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Ar'maj","Reed-Adams",77,180,93,"DeSoto","Texas","Previous",55,"Senior",72,63,72,87,96,93,43,53,24,44,55,28,29,53,31,28,60,96,95,27,36,29,30,79,30,25,93,84,76,92,37,39,59,27,30,94,92,96,0,26,26,64,28,41,41,23,15,15,29,32,42,96,45,25,"SEC","Texas A&M","Right Guard","Launch Ratings"
21735,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/24.png?im=FaceCrop,padding=0.7","Chandler","Rivers",70,25,93,"Beaumont","Texas","Eligible",0,"Senior",95,94,95,95,53,92,72,54,44,71,59,54,73,94,41,52,66,58,94,84,19,21,70,44,86,44,93,35,34,36,30,91,35,76,87,44,43,43,0,45,65,92,77,39,71,22,25,21,33,24,24,82,32,97,"ACC","Duke","Cornerback","Launch Ratings"
6335,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Colin","Simmons",75,80,93,"Dallas","Texas","Eligible",1,"Sophomore",95,91,91,84,84,84,52,77,44,36,58,62,66,76,46,95,92,74,92,67,30,31,50,40,53,46,93,47,45,38,25,87,85,56,98,45,42,49,0,46,64,90,66,60,82,30,32,31,39,44,33,89,59,58,"SEC","Texas","Right Edge","Launch Ratings"
4553,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","David","Bailey",75,90,93,"Irvine","California","Eligible",31,"Senior",91,88,85,85,82,97,35,75,34,40,56,41,53,77,37,95,89,75,92,64,25,36,44,56,64,40,93,67,59,52,39,97,87,55,96,58,52,62,0,37,38,85,55,51,83,35,23,17,21,13,39,92,59,74,"Big 12","Texas Tech","Left Edge","Launch Ratings"
22483,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Dillon","Thieneman",72,47,93,"Westfield","Indiana","Eligible",31,"Junior",92,88,87,95,75,91,74,73,47,46,33,66,81,87,30,55,89,74,93,73,24,42,50,57,85,34,93,65,63,54,28,92,50,77,93,52,54,68,0,34,70,91,67,60,85,26,32,14,36,11,36,92,63,79,"Big Ten","Oregon","Strong Safety","Launch Ratings"
23391,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/116.png?im=FaceCrop,padding=0.7","Eli","Stowers",76,75,93,"Denton","Texas","Previous",9,"Senior",90,91,94,88,73,89,87,45,83,81,82,87,92,85,74,53,53,59,90,86,31,34,64,64,24,82,93,58,58,56,65,46,47,35,53,58,57,56,0,87,92,90,83,76,51,72,75,78,84,91,66,83,76,24,"SEC","Vanderbilt","Tight End","Launch Ratings"
519,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/38.png?im=FaceCrop,padding=0.7","Elijah","Sarratt",74,49,93,"Stafford","Virginia","Eligible",13,"Senior",91,87,91,97,79,97,87,45,49,75,78,95,95,84,94,44,67,59,95,83,28,32,66,50,30,93,93,38,35,36,31,32,44,47,65,57,52,51,0,93,90,89,79,71,63,35,26,30,27,35,40,94,76,33,"Big Ten","Indiana","Wide Receiver","Launch Ratings"
23175,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Francis","Mauigoa",78,155,93,"Ili'ili","Non-US","Eligible",61,"Junior",79,74,75,93,95,94,44,57,38,44,53,30,33,59,31,39,61,95,97,29,25,29,25,95,33,29,93,94,89,97,27,44,61,32,35,88,91,87,0,33,32,72,33,42,45,34,17,33,25,32,22,94,44,35,"ACC","Miami","Right Tackle","Launch Ratings"
22171,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/47.png?im=FaceCrop,padding=0.7","Isaac","Brown",69,30,93,"Homestead","Florida","Eligible",1,"Sophomore",97,96,92,93,67,82,87,35,55,85,89,67,73,96,64,27,44,53,92,89,31,32,85,50,45,68,93,58,60,54,42,59,25,40,32,42,27,33,0,72,71,95,87,65,38,41,43,45,51,45,35,89,71,50,"ACC","Louisville","Halfback","Launch Ratings"
21271,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/120.png?im=FaceCrop,padding=0.7","Jonah","Coleman",69,68,93,"Stockton","California","Eligible",1,"Senior",92,84,84,95,83,87,85,51,47,93,97,67,74,84,56,44,63,66,95,85,32,32,70,61,34,64,93,64,62,64,25,49,46,36,57,54,54,52,0,73,65,88,85,87,60,31,33,35,45,35,25,98,95,35,"Big Ten","Washington","Halfback","Launch Ratings"
22928,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/9.png?im=FaceCrop,padding=0.7","Keldric","Faulk",78,110,93,"Highland Home","Alabama","Eligible",15,"Junior",86,81,84,87,89,89,44,91,41,45,58,42,52,71,42,75,91,88,94,46,25,30,25,54,35,42,93,52,50,55,26,85,96,44,87,58,50,59,0,42,42,78,42,45,90,25,31,34,28,35,25,93,58,44,"SEC","Auburn","Left Edge","Launch Ratings"
23151,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/80.png?im=FaceCrop,padding=0.7","Kyle","Louis",73,60,93,"East Orange","New Jersey","Previous",9,"Junior",91,88,85,98,77,88,52,84,33,45,70,72,81,83,45,82,88,83,95,66,39,25,41,51,79,44,93,50,51,49,26,90,69,50,92,53,50,56,0,41,73,85,61,51,94,25,21,16,23,31,40,92,55,85,"ACC","Pittsburgh","Will Backer","Launch Ratings"
23003,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Leonard","Moore",74,35,93,"Round Rock","Texas","Eligible",15,"Sophomore",95,94,93,92,65,86,75,61,32,73,55,63,70,93,33,44,75,64,93,82,34,35,64,54,96,35,93,42,42,42,27,90,32,91,85,44,45,45,0,45,71,92,77,60,68,31,13,16,27,36,39,84,51,89,"Independent","Notre Dame","Cornerback","Launch Ratings"
21849,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Nicholas","Singleton",72,64,93,"Shillington","Pennsylvania","Eligible",10,"Senior",93,91,94,91,80,90,85,55,57,87,84,76,83,89,55,46,73,65,97,90,34,33,84,55,36,67,93,66,67,63,33,47,45,45,61,55,55,53,0,75,78,94,87,90,64,34,41,42,49,48,32,95,88,37,"Big Ten","Penn State","Halfback","Launch Ratings"
19340,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","Suntarine","Perkins",73,50,93,"Raleigh","Mississippi","Eligible",4,"Junior",93,89,88,95,73,93,50,72,45,28,63,55,67,79,42,97,91,70,88,62,33,32,44,44,74,44,93,29,31,29,33,95,82,55,99,44,44,45,0,48,56,89,60,44,88,23,22,30,43,27,34,91,55,83,"SEC","Ole Miss","Will Backer","Launch Ratings"
23902,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/59.png?im=FaceCrop,padding=0.7","Ahmad","Hardy",70,46,92,"Oma","Mississippi","Eligible",29,"Sophomore",96,96,88,97,75,80,90,37,49,96,77,65,63,97,55,27,36,52,94,93,29,32,75,45,50,59,92,57,54,55,26,59,29,40,32,45,43,44,0,65,62,91,91,87,36,33,37,33,39,35,31,95,77,68,"SEC","Missouri","Halfback","Launch Ratings"
9811,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/42.png?im=FaceCrop,padding=0.7","Austin","Romaine",74,85,92,"Hillsboro","Missouri","Eligible",45,"Junior",87,81,82,93,82,94,50,88,44,45,55,52,56,80,25,60,86,88,94,58,32,32,45,55,73,24,92,51,51,48,40,96,72,50,94,55,53,54,0,25,57,82,56,45,87,36,10,29,21,37,32,91,55,81,"Big 12","Kansas State","Mike Backer","Launch Ratings"
22480,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Avieon","Terrell",71,20,92,"Atlanta","Georgia","Eligible",8,"Junior",95,94,91,93,65,86,65,54,39,66,62,55,74,93,42,42,81,58,90,79,45,28,64,46,89,43,92,61,58,53,24,90,44,85,89,56,54,64,0,42,64,92,74,46,75,23,35,16,25,20,33,95,42,92,"ACC","Clemson","Cornerback","Launch Ratings"
19192,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Blake","Miller",78,155,92,"Strongsville","Ohio","Previous",78,"Senior",72,65,76,98,92,98,39,51,35,41,52,34,42,56,25,34,54,92,99,32,41,36,31,87,21,29,92,91,88,94,38,34,53,25,33,91,91,91,0,29,33,67,32,40,39,34,12,10,28,15,31,97,38,22,"ACC","Clemson","Right Tackle","Launch Ratings"
2277,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/24.png?im=FaceCrop,padding=0.7","Brian","Parker II",77,140,92,"Cincinnati","Ohio","Previous",53,"Junior",81,76,73,93,88,90,36,46,46,36,50,31,33,62,22,42,47,88,91,32,48,38,34,87,32,25,92,94,96,91,29,37,49,35,34,79,82,76,0,30,32,72,32,38,36,23,36,37,33,28,34,85,37,32,"ACC","Duke","Right Tackle","Launch Ratings"
19690,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/92.png?im=FaceCrop,padding=0.7","Bud","Clark",74,25,92,"Alexandria","Louisiana","Previous",21,"Senior",90,88,91,95,65,94,72,63,35,69,55,65,79,87,42,49,77,61,84,76,32,31,64,54,81,39,92,44,43,43,46,93,39,77,85,49,54,64,0,42,73,91,70,54,83,12,23,21,36,35,24,87,52,89,"Big 12","TCU","Free Safety","Launch Ratings"
10145,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Cade","Klubnik",74,50,92,"Austin","Texas","Eligible",2,"Senior",87,85,86,95,64,91,83,38,76,70,69,39,54,85,29,36,45,38,93,80,57,70,28,33,37,30,92,44,35,28,78,47,37,35,66,38,27,34,0,36,35,86,75,54,39,93,91,93,87,93,83,87,57,61,"ACC","Clemson","Quarterback","Launch Ratings"
7022,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/59.png?im=FaceCrop,padding=0.7","Cayden","Green",77,164,92,"Lee's Summit","Missouri","Eligible",70,"Junior",83,75,76,91,89,92,39,51,44,41,54,33,32,64,33,41,57,89,95,32,20,21,25,95,35,32,92,90,93,87,35,46,58,36,35,89,92,86,0,35,34,74,32,41,40,21,21,37,36,18,44,87,40,34,"SEC","Missouri","Left Guard","Launch Ratings"
19194,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Christen","Miller",76,145,92,"Ellenwood","Georgia","Previous",52,"Junior",85,75,78,84,93,88,36,91,20,41,55,36,51,63,36,82,92,88,91,36,15,15,19,61,34,36,92,51,50,52,25,89,88,35,93,55,56,54,0,36,36,73,36,43,91,25,30,32,21,30,20,95,42,41,"SEC","Georgia","Defensive Tackle","Launch Ratings"
10261,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/38.png?im=FaceCrop,padding=0.7","D'Angelo","Ponds",69,10,92,"Miami","Florida","Eligible",5,"Junior",95,95,96,97,51,95,81,43,31,75,62,54,74,95,35,32,66,45,90,87,22,24,74,35,81,40,92,31,28,29,44,92,25,75,82,25,25,26,0,42,57,94,81,30,73,11,35,18,15,33,21,81,29,93,"Big Ten","Indiana","Cornerback","Launch Ratings"
4651,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Dani","Dennis-Sutton",77,105,92,"Millsboro","Delaware","Eligible",33,"Senior",91,82,84,87,85,98,44,81,55,43,60,61,71,72,35,82,88,82,92,61,36,31,49,57,47,44,92,46,46,45,21,97,96,59,97,52,55,50,0,44,65,85,55,57,79,13,23,22,29,36,24,90,55,67,"Big Ten","Penn State","Left Edge","Launch Ratings"
4616,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/19.png?im=FaceCrop,padding=0.7","Dontay","Corleone",73,175,92,"Cincinnati","Ohio","Previous",2,"Senior",84,69,71,77,97,93,23,90,25,45,58,24,25,57,22,59,91,88,76,25,14,15,12,52,10,25,92,58,59,55,11,90,91,16,84,59,56,55,0,23,22,75,21,49,87,15,16,11,10,22,9,91,67,15,"Big 12","Cincinnati","Defensive Tackle","Launch Ratings"
123,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Drew","Allar",77,75,92,"Medina","Ohio","Eligible",15,"Senior",83,79,79,96,77,95,79,23,80,70,72,39,43,77,28,23,54,55,97,78,35,36,34,52,21,27,92,45,46,44,95,68,31,23,24,67,48,46,0,37,39,81,74,75,42,86,91,90,79,98,69,91,73,23,"Big Ten","Penn State","Quarterback","Launch Ratings"
526,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/9.png?im=FaceCrop,padding=0.7","Eric","Singleton Jr.",70,18,92,"Atlanta","Georgia","Eligible",1,"Junior",97,97,90,94,54,90,97,32,51,78,77,89,90,94,95,32,40,53,93,90,30,30,87,47,32,89,92,36,35,35,29,51,33,36,45,54,49,48,0,90,92,94,85,53,35,30,35,39,45,35,35,84,57,36,"SEC","Auburn","Wide Receiver","Launch Ratings"
21190,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/34.png?im=FaceCrop,padding=0.7","Eric","Rivers",71,20,92,"Chattanooga","Tennessee","Previous",3,"Senior",95,93,90,97,54,92,90,32,35,87,64,89,89,92,94,29,32,45,91,94,32,31,74,30,35,90,92,34,32,35,30,48,28,35,32,50,40,45,0,93,92,92,88,47,34,25,29,33,39,33,25,87,45,42,"ACC","Georgia Tech","Wide Receiver","Launch Ratings"
21246,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/6.png?im=FaceCrop,padding=0.7","Fernando","Carmona",77,165,92,"Las Vegas","Nevada","Previous",55,"Senior",81,65,61,91,94,94,44,55,26,42,51,28,27,56,26,30,59,92,95,24,40,41,28,84,28,27,92,86,79,92,31,33,56,27,24,89,86,92,0,24,28,70,28,42,41,31,31,30,19,36,36,97,42,26,"SEC","Arkansas","Left Guard","Launch Ratings"
4837,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/37.png?im=FaceCrop,padding=0.7","Gabe","Jacas",75,115,92,"Port St. Lucie","Florida","Eligible",17,"Senior",89,82,85,95,93,95,31,85,36,45,52,35,37,69,26,79,93,72,97,53,23,25,34,59,61,26,92,51,52,51,36,96,95,35,94,55,55,54,0,26,36,81,52,53,89,24,24,25,24,24,36,93,63,68,"Big Ten","Illinois","Sam Backer","Launch Ratings"
19778,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","Garrett","Nussmeier",74,40,92,"Lake Charles","Louisiana","Previous",13,"Senior",81,78,77,93,66,89,72,22,61,65,67,37,52,76,30,33,41,35,89,75,32,39,25,32,24,25,92,39,33,32,78,31,25,33,35,30,27,27,0,35,43,76,72,49,40,87,92,94,76,96,87,98,54,34,"SEC","LSU","Quarterback","Launch Ratings"
20923,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Jaeden","Roberts",77,167,92,"Houston","Texas","Previous",77,"Senior",79,67,78,87,99,94,41,55,33,42,34,30,35,55,21,31,55,94,89,27,29,47,31,81,14,25,92,80,71,89,39,52,58,13,30,91,88,93,0,29,26,73,27,40,43,32,27,12,30,34,35,95,39,15,"SEC","Alabama","Right Guard","Launch Ratings"
4267,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","Jake","Slaughter",77,134,92,"Sparr","Florida","Previous",66,"Senior",79,73,72,94,90,95,40,42,24,32,45,35,42,60,24,42,45,90,92,34,30,31,26,92,23,31,92,91,88,93,47,36,43,22,40,88,90,86,0,33,40,70,34,32,36,28,33,18,27,26,32,92,35,24,"SEC","Florida","Center","Launch Ratings"
8663,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/21.png?im=FaceCrop,padding=0.7","Jordan","Seaton",77,170,92,"Washington","D.C.","Eligible",77,"Sophomore",85,79,80,91,91,87,42,52,36,41,52,45,49,65,35,56,54,90,92,49,33,32,25,95,47,42,92,93,97,89,30,50,53,47,49,83,86,80,0,39,46,78,45,42,39,33,19,16,11,29,47,85,41,43,"Big 12","Colorado","Left Tackle","Launch Ratings"
128,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Kaytron","Allen",71,57,92,"Norfolk","Virginia","Eligible",13,"Senior",92,86,87,92,84,91,87,55,55,88,88,68,66,85,45,46,72,64,96,85,34,35,77,59,39,55,92,64,61,59,24,53,48,44,61,57,54,55,0,65,64,89,83,93,64,35,33,31,38,32,24,97,93,42,"Big Ten","Penn State","Halfback","Launch Ratings"
21470,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Makhi","Hughes",71,50,92,"Birmingham","Alabama","Previous",20,"Junior",93,90,87,99,76,90,89,47,49,92,96,61,67,90,57,38,55,56,95,87,25,25,82,51,43,63,92,61,58,57,42,50,37,36,51,50,52,48,0,68,63,90,84,75,51,33,34,39,45,42,29,94,87,56,"Big Ten","Oregon","Halfback","Launch Ratings"
19269,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Malik","Muhammad",72,28,92,"DeSoto","Texas","Eligible",5,"Junior",94,92,93,87,63,94,68,46,43,41,61,45,73,91,42,44,71,51,84,77,48,39,67,56,91,41,92,64,59,54,32,93,42,87,79,59,55,66,0,42,42,93,75,48,65,10,36,13,14,12,37,85,40,92,"SEC","Texas","Cornerback","Launch Ratings"
4861,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/38.png?im=FaceCrop,padding=0.7","Mikail","Kamara",73,105,92,"Ashburn","Virginia","Previous",6,"Senior",91,88,83,91,85,97,46,85,32,43,50,25,23,69,25,85,87,84,95,25,27,46,38,43,33,25,92,53,55,51,45,97,95,35,97,57,51,62,0,25,25,82,25,47,80,23,32,17,33,25,30,88,56,40,"Big Ten","Indiana","Left Edge","Launch Ratings"
9155,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Olaivavega","Ioane",76,170,92,"Graham","Washington","Previous",71,"Junior",66,59,65,91,97,93,49,60,29,46,50,26,28,52,26,25,67,95,94,26,26,49,27,84,24,24,92,88,79,94,38,44,69,24,24,90,87,92,0,24,24,58,26,49,49,14,11,17,33,15,41,97,44,24,"Big Ten","Penn State","Left Guard","Launch Ratings"
19246,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/54.png?im=FaceCrop,padding=0.7","Rod","Moore",72,38,92,"Dayton","Ohio","Previous",9,"Senior",94,90,91,91,62,96,74,64,30,30,49,57,74,88,41,43,86,66,79,74,24,39,59,58,76,41,92,56,59,48,48,95,46,81,92,50,51,57,0,42,62,91,73,53,72,10,32,34,31,10,42,92,51,87,"Big Ten","Michigan","Free Safety","Launch Ratings"
22723,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Rueben","Bain Jr.",75,115,92,"Miami","Florida","Eligible",4,"Junior",91,79,82,85,90,95,52,93,33,44,57,46,56,72,46,86,89,87,86,46,24,25,34,55,44,43,92,51,52,52,33,95,95,40,94,59,55,57,0,43,42,83,45,55,78,33,12,24,24,11,25,89,59,48,"ACC","Miami","Right Edge","Launch Ratings"
1655,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/36.png?im=FaceCrop,padding=0.7","Tanner","Koziol",79,80,92,"Bloomingdale","Illinois","Eligible",9,"Senior",86,82,85,92,74,93,84,44,45,74,77,97,94,76,66,51,39,64,95,80,25,24,63,62,39,80,92,58,54,54,42,38,49,20,47,62,60,59,0,85,88,83,77,72,54,31,33,35,42,35,35,88,75,35,"Big 12","Houston","Tight End","Launch Ratings"
20828,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/24.png?im=FaceCrop,padding=0.7","Terry","Moore",73,40,92,"Washington","North Carolina","Eligible",1,"Senior",92,91,91,97,72,94,55,65,39,65,64,65,77,89,31,61,81,63,95,73,36,31,65,57,88,30,92,44,34,45,29,95,43,83,88,48,48,47,0,34,71,89,66,54,69,17,27,29,27,24,39,91,52,91,"ACC","Duke","Strong Safety","Launch Ratings"
10128,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Tim","Keenan III",74,160,92,"Birmingham","Alabama","Previous",96,"Senior",72,62,72,84,96,94,24,94,42,45,50,24,26,49,24,62,88,97,91,24,19,15,12,52,14,24,92,51,55,52,48,92,90,15,87,59,53,59,0,24,24,64,24,41,93,20,16,13,33,14,28,95,42,15,"SEC","Alabama","Defensive Tackle","Launch Ratings"
8079,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","A.J.","Harris",73,31,91,"Phenix City","Alabama","Eligible",4,"Junior",94,93,94,93,71,92,70,64,37,67,61,55,69,90,43,44,78,63,93,81,32,31,72,55,90,42,91,45,45,46,33,87,42,93,80,50,49,50,0,52,72,92,77,53,68,18,35,24,31,38,33,90,57,91,"Big Ten","Penn State","Cornerback","Launch Ratings"
18477,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Aamil","Wagner",78,140,91,"Yellow Springs","Ohio","Previous",59,"Junior",84,78,80,91,87,93,40,53,21,48,50,41,43,62,30,54,55,87,88,33,21,29,25,97,31,33,91,89,91,87,25,50,55,15,45,92,95,89,0,35,41,75,35,49,50,14,11,15,21,10,22,93,46,32,"Independent","Notre Dame","Right Tackle","Launch Ratings"
7967,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/39.png?im=FaceCrop,padding=0.7","Aaron","Graves",77,135,91,"Dayton","Iowa","Eligible",95,"Senior",85,75,76,88,89,95,31,86,25,47,53,31,39,62,31,82,89,81,92,31,27,32,30,55,32,31,91,51,52,50,25,94,95,31,95,53,54,55,0,31,31,79,31,49,79,20,21,20,21,25,26,91,45,34,"Big Ten","Iowa","Defensive Tackle","Launch Ratings"
3849,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/78.png?im=FaceCrop,padding=0.7","Anthony","Hankerson",68,46,91,"Boynton Beach","Florida","Eligible",0,"Senior",93,90,87,98,74,93,93,49,41,91,82,69,73,88,55,39,45,54,92,89,26,37,84,45,40,65,91,57,53,55,35,40,39,31,51,47,32,36,0,72,64,89,88,73,44,37,10,34,19,26,33,94,78,34,"Pac-12","Oregon State","Halfback","Launch Ratings"
21911,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","Ashton","Stamps",72,30,91,"Harvey","Louisiana","Eligible",1,"Junior",94,93,92,96,65,89,66,58,37,65,57,58,66,92,41,42,77,61,95,81,22,25,69,54,91,38,91,41,42,42,38,88,37,92,82,45,44,44,0,40,61,92,75,40,73,28,13,19,23,20,20,88,56,84,"SEC","LSU","Cornerback","Launch Ratings"
8202,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Bray","Hubbard",74,53,91,"Ocean Springs","Mississippi","Eligible",18,"Junior",92,86,87,91,73,92,62,66,42,55,55,57,74,85,30,51,85,67,90,67,24,29,65,56,77,34,91,51,51,51,45,93,45,73,90,49,54,67,0,32,56,89,66,60,71,26,12,10,16,19,48,91,65,92,"SEC","Alabama","Strong Safety","Launch Ratings"
21991,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/69.png?im=FaceCrop,padding=0.7","Caleb","Tiernan",79,169,91,"Livonia","Michigan","Previous",72,"Junior",72,63,71,82,93,88,43,53,33,42,53,35,36,59,36,38,57,92,89,37,40,34,36,75,32,35,91,94,89,97,27,43,59,32,37,77,79,75,0,35,32,67,31,42,43,10,27,28,28,18,29,86,43,36,"Big Ten","Northwestern","Left Tackle","Launch Ratings"
22465,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Carnell","Tate",75,31,91,"Chicago","Illinois","Eligible",17,"Junior",93,92,93,89,70,92,85,44,48,81,75,91,92,89,89,41,61,59,91,89,35,35,75,53,54,92,91,39,39,35,36,52,43,57,59,59,54,53,0,89,93,91,85,66,55,31,31,37,43,37,29,87,64,53,"Big Ten","Ohio State","Wide Receiver","Launch Ratings"
731,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Carson","Beck",76,60,91,"Jacksonville","Florida","Previous",11,"Senior",77,75,74,94,69,96,64,33,65,67,63,34,35,74,27,34,41,49,90,66,35,45,24,49,23,25,91,53,43,39,98,28,32,25,35,54,43,43,0,34,31,75,65,55,45,87,92,91,71,92,72,87,66,24,"ACC","Miami","Quarterback","Launch Ratings"
125,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","CJ","Allen",73,75,91,"Barnesville","Georgia","Eligible",3,"Junior",90,83,90,90,85,87,60,87,46,41,57,50,68,79,45,65,95,87,92,66,33,31,54,58,68,45,91,45,45,45,36,92,74,56,95,52,53,52,0,45,60,84,64,58,90,24,24,24,24,24,36,93,61,67,"SEC","Georgia","Mike Backer","Launch Ratings"
21009,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/57.png?im=FaceCrop,padding=0.7","Darius","Taylor",72,55,91,"Detroit","Michigan","Eligible",1,"Junior",93,88,91,98,79,88,87,44,48,87,90,75,84,86,60,43,57,62,87,87,23,24,77,57,43,69,91,64,62,58,24,39,42,41,55,61,59,57,0,77,75,89,87,77,55,20,17,21,34,31,33,92,87,45,"Big Ten","Minnesota","Halfback","Launch Ratings"
21262,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/119.png?im=FaceCrop,padding=0.7","Demond","Claiborne",70,35,91,"Aylett","Virginia","Eligible",1,"Senior",95,91,88,97,67,84,87,42,24,84,89,66,76,91,58,38,44,55,92,88,23,28,83,45,69,66,91,57,57,54,32,58,38,40,47,48,46,45,0,71,68,96,84,62,45,13,35,25,12,23,39,93,74,47,"ACC","Wake Forest","Halfback","Launch Ratings"
4578,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/120.png?im=FaceCrop,padding=0.7","Denzel","Boston",76,49,91,"South Hill","Washington","Previous",12,"Junior",92,88,95,90,81,86,84,49,49,74,83,94,92,85,88,43,59,63,94,85,33,36,83,57,34,93,91,35,35,34,31,51,46,36,62,65,58,56,0,92,94,89,82,76,51,23,34,35,45,34,34,95,75,35,"Big Ten","Washington","Wide Receiver","Launch Ratings"
10684,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Deontae","Lawson",74,68,91,"Mobile","Alabama","Previous",0,"Senior",92,86,88,93,75,96,70,79,42,41,65,60,71,81,44,82,96,79,87,75,29,38,56,59,65,46,91,44,45,45,42,98,78,64,92,46,49,45,0,48,63,89,70,48,90,35,20,18,37,35,46,94,61,75,"SEC","Alabama","Sam Backer","Launch Ratings"
19237,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/54.png?im=FaceCrop,padding=0.7","Derrick","Moore",75,96,91,"Baltimore","Maryland","Eligible",8,"Senior",88,77,81,87,87,95,40,84,45,43,57,31,33,69,31,84,89,79,88,31,34,26,41,43,31,31,91,57,52,50,28,97,93,35,94,48,50,59,0,31,31,84,31,44,85,13,20,14,10,16,32,90,55,45,"Big Ten","Michigan","Right Edge","Launch Ratings"
1199,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/80.png?im=FaceCrop,padding=0.7","Desmond","Reid",68,15,91,"Miami Gardens","Florida","Eligible",0,"Senior",97,95,91,97,59,85,85,36,44,83,78,77,85,95,69,29,31,43,88,91,36,36,93,36,45,78,91,52,48,44,33,65,29,34,31,40,42,35,0,82,79,93,88,44,30,24,19,29,20,36,32,87,48,46,"ACC","Pittsburgh","Halfback","Launch Ratings"
22660,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Evan","Stewart",72,15,91,"Memphis","Tennessee","Eligible",7,"Senior",98,96,96,90,53,88,94,31,52,87,68,84,88,93,89,27,31,44,85,92,72,82,90,42,51,90,91,35,27,36,28,63,26,5,42,45,43,41,0,93,92,95,88,44,30,33,43,45,53,51,38,87,43,53,"Big Ten","Oregon","Wide Receiver","Launch Ratings"
10544,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/39.png?im=FaceCrop,padding=0.7","Gennings","Dunker",77,155,91,"Lena","Illinois","Previous",67,"Senior",74,70,72,86,95,94,43,54,33,40,35,27,25,54,21,27,57,96,89,25,15,16,12,92,11,25,91,83,75,91,36,35,55,15,26,95,98,90,0,30,29,68,30,43,42,29,15,10,36,24,26,96,40,12,"Big Ten","Iowa","Right Tackle","Launch Ratings"
5744,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/54.png?im=FaceCrop,padding=0.7","Giovanni","El-Hadi",77,150,91,"Sterling Heights","Michigan","Previous",58,"Senior",76,63,71,92,95,95,41,51,46,42,52,32,30,53,32,35,56,94,94,34,48,27,30,87,30,30,91,88,82,93,46,38,55,31,31,88,90,85,0,32,29,67,34,39,41,22,31,20,12,29,45,90,42,32,"Big Ten","Michigan","Left Guard","Launch Ratings"
20300,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","Harold","Perkins Jr.",73,60,91,"New Orleans","Louisiana","Previous",7,"Junior",97,90,94,87,77,91,60,77,36,71,70,65,70,83,48,97,92,68,83,75,36,36,47,55,75,48,91,64,60,53,36,92,83,70,97,56,55,60,0,60,72,92,67,78,82,24,24,24,24,24,36,84,81,80,"SEC","LSU","Will Backer","Launch Ratings"
20846,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/86.png?im=FaceCrop,padding=0.7","Isaiah","Nwokobia",73,42,91,"Dallas","Texas","Previous",12,"Senior",92,86,88,98,77,91,55,67,40,39,63,61,78,85,28,37,90,73,95,69,31,35,64,53,69,26,91,44,45,45,40,89,47,77,91,48,44,49,0,29,71,88,65,50,85,36,14,10,18,20,38,93,65,89,"ACC","SMU","Strong Safety","Launch Ratings"
23581,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Isaiah","World",80,149,91,"San Diego","California","Previous",76,"Senior",81,77,75,88,87,95,39,54,33,38,54,25,29,59,25,29,55,87,94,27,33,42,25,95,26,29,91,92,95,88,44,33,54,24,28,84,87,81,0,24,26,70,24,42,42,32,20,30,20,10,46,91,42,28,"Big Ten","Oregon","Left Tackle","Launch Ratings"
6319,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Jacob","Rodriguez",73,70,91,"Wichita Falls","Texas","Previous",10,"Senior",90,83,88,92,81,93,43,77,56,44,56,42,56,81,40,55,87,77,85,38,28,42,44,58,74,39,91,69,60,57,58,95,75,38,92,61,56,66,0,38,43,81,42,42,92,60,55,70,55,84,53,91,42,78,"Big 12","Texas Tech","Will Backer","Launch Ratings"
3555,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/59.png?im=FaceCrop,padding=0.7","Jalen","Catalon",70,40,91,"Mansfield","Texas","Previous",6,"Senior",93,91,91,93,73,89,77,66,45,46,69,70,84,87,48,46,87,66,94,81,31,41,71,59,84,44,91,49,48,50,33,91,51,80,91,54,56,67,0,47,82,88,76,64,78,34,27,33,11,18,39,87,58,82,"SEC","Missouri","Free Safety","Launch Ratings"
1381,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/75.png?im=FaceCrop,padding=0.7","Jason","Henderson",73,65,91,"Dingmans Ferry","Pennsylvania","Previous",42,"Senior",87,84,82,97,75,99,51,74,33,38,55,40,54,83,33,60,90,69,84,45,38,45,37,56,62,36,91,63,49,44,42,98,66,32,96,55,54,62,0,32,31,82,43,45,97,11,21,37,16,27,46,93,51,70,"Sun Belt","Old Dominion","Mike Backer","Launch Ratings"
20050,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/40.png?im=FaceCrop,padding=0.7","Jeremiah","Cooper",72,35,91,"El Paso","Texas","Eligible",4,"Senior",93,92,90,92,65,93,83,50,31,30,47,65,82,88,46,37,85,57,92,72,24,27,61,56,73,48,91,52,57,49,34,93,37,64,86,49,52,57,0,48,66,93,75,35,70,26,30,15,28,23,24,88,34,87,"Big Ten","Iowa State","Free Safety","Launch Ratings"
19110,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","John","Mateer",73,64,91,"Little Elm","Texas","Previous",10,"Junior",92,89,84,98,77,92,96,32,86,83,84,55,55,90,41,35,48,49,94,89,32,32,25,47,37,48,91,44,44,45,83,34,33,33,55,48,46,45,0,50,53,89,85,66,44,85,92,87,96,92,81,95,73,37,"SEC","Oklahoma","Quarterback","Launch Ratings"
955,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/45.png?im=FaceCrop,padding=0.7","Joshua","Braun",78,182,91,"Live Oak","Florida","Previous",75,"Senior",65,57,64,88,95,93,45,59,42,47,50,24,24,51,25,29,65,94,92,25,43,26,29,76,25,28,91,92,87,95,34,48,66,26,25,78,73,83,0,26,28,59,24,47,49,31,18,25,36,15,36,94,46,27,"SEC","Kentucky","Left Guard","Launch Ratings"
917,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","KJ","Bolden",72,25,91,"Buford","Georgia","Eligible",4,"Sophomore",95,92,93,89,62,85,70,61,35,70,47,65,77,89,73,49,84,60,88,77,40,27,72,50,90,65,91,52,52,52,25,86,42,79,88,51,54,61,0,73,75,93,73,41,78,12,10,29,11,30,36,87,42,86,"SEC","Georgia","Free Safety","Launch Ratings"
23266,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/57.png?im=FaceCrop,padding=0.7","Koi","Perich",73,40,91,"Esko","Minnesota","Eligible",3,"Sophomore",95,92,94,91,71,85,84,65,46,83,75,82,85,90,75,45,84,70,92,87,47,45,87,59,86,78,91,48,48,48,35,90,50,78,85,54,54,66,0,77,84,91,83,70,74,58,60,65,72,75,45,87,68,93,"Big Ten","Minnesota","Free Safety","Launch Ratings"
19930,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/88.png?im=FaceCrop,padding=0.7","LaNorris","Sellers",75,80,91,"Florence","South Carolina","Previous",16,"Sophomore",93,91,89,91,82,87,91,47,97,82,73,55,65,92,41,45,67,52,90,87,25,26,55,53,26,44,91,45,45,46,84,33,51,26,45,51,50,49,0,47,56,89,85,78,61,89,83,87,97,96,77,97,82,26,"SEC","South Carolina","Quarterback","Launch Ratings"
20642,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Malachi","Fields",76,62,91,"Charlottesville","Virginia","Eligible",0,"Senior",90,87,92,91,79,93,85,52,71,82,67,97,92,85,85,45,59,71,90,85,27,27,70,65,25,89,91,45,42,44,46,25,48,44,60,67,62,62,0,91,94,91,81,81,55,55,52,56,57,64,39,91,78,24,"Independent","Notre Dame","Wide Receiver","Launch Ratings"
7473,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Matayo","Uiagalelei",77,110,91,"Bellflower","California","Previous",10,"Junior",88,83,83,87,89,94,67,77,45,75,80,78,80,71,60,84,89,82,93,72,24,26,35,55,52,70,91,60,59,64,21,93,96,48,88,72,75,75,0,68,81,83,65,79,80,13,20,24,21,12,24,91,81,66,"Big Ten","Oregon","Right Edge","Launch Ratings"
23116,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Max","Klare",76,76,91,"Guilford","Indiana","Previous",86,"Junior",87,83,86,91,76,88,83,54,45,83,68,88,89,76,71,59,56,65,90,85,37,41,61,64,37,81,91,59,60,57,34,37,55,42,57,59,58,59,0,85,87,82,78,75,60,27,32,31,35,29,28,92,77,36,"Big Ten","Ohio State","Tight End","Launch Ratings"
22457,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Michael","Taaffe",72,29,91,"Austin","Texas","Previous",16,"Senior",91,87,85,95,65,98,64,62,48,57,64,54,72,86,25,37,82,59,94,71,25,27,65,52,84,26,91,44,43,44,47,97,28,75,83,47,46,45,0,25,61,88,66,45,71,43,44,45,34,47,33,91,48,91,"SEC","Texas","Free Safety","Launch Ratings"
22778,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Parker","Brailsford",74,130,91,"Mesa","Arizona","Previous",72,"Junior",85,79,79,92,85,94,37,32,46,26,48,37,39,65,38,48,25,85,90,41,28,29,25,95,32,38,91,91,94,86,44,36,28,30,41,76,75,77,0,38,42,73,39,23,24,14,31,14,31,25,31,88,26,35,"SEC","Alabama","Center","Launch Ratings"
23567,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Quintrevion","Wisner",72,34,91,"Glenn Heights","Texas","Eligible",5,"Junior",92,92,90,98,72,88,90,41,48,90,83,79,85,92,67,34,42,54,95,92,30,31,76,45,45,77,91,60,54,55,35,43,30,33,49,54,53,52,0,84,78,90,87,74,38,32,30,34,43,44,30,93,77,44,"SEC","Texas","Halfback","Launch Ratings"
746,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/54.png?im=FaceCrop,padding=0.7","Rayshaun","Benny",76,136,91,"Detroit","Michigan","Previous",55,"Senior",81,70,74,84,92,92,30,90,42,40,56,30,35,59,30,72,85,93,91,30,28,30,39,57,27,30,91,68,63,56,47,91,87,25,83,55,55,62,0,30,30,78,30,39,95,37,19,13,26,14,31,96,37,28,"Big Ten","Michigan","Defensive Tackle","Launch Ratings"
4056,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/5.png?im=FaceCrop,padding=0.7","Sam","Leavitt",74,40,91,"West Linn","Oregon","Previous",10,"Sophomore",88,85,85,95,63,88,83,47,77,74,69,34,43,85,25,46,45,41,91,80,29,36,26,38,50,23,91,50,39,37,84,56,44,24,28,43,36,40,0,33,42,84,78,45,44,89,93,88,83,94,90,90,55,25,"Big 12","Arizona State","Quarterback","Launch Ratings"
10054,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/120.png?im=FaceCrop,padding=0.7","Tacario","Davis",76,40,91,"Long Beach","California","Eligible",8,"Senior",92,89,96,93,77,93,79,64,41,73,55,56,68,88,28,41,80,60,94,78,22,25,65,45,91,28,91,45,45,46,43,91,39,98,82,51,51,51,0,32,72,91,74,66,69,22,13,26,22,41,31,89,53,87,"Big Ten","Washington","Cornerback","Launch Ratings"
23678,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/118.png?im=FaceCrop,padding=0.7","Tomas","Rimac",78,157,91,"Brunswick","Ohio","Previous",55,"Senior",73,64,70,92,95,97,50,61,33,49,55,30,27,56,28,35,70,93,95,28,25,34,26,84,29,27,91,89,84,93,25,41,70,28,27,85,83,88,0,30,28,65,27,50,46,26,30,21,25,11,36,97,46,26,"ACC","Virginia Tech","Left Guard","Launch Ratings"
22043,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/84.png?im=FaceCrop,padding=0.7","Trey","White",74,85,91,"San Diego","California","Previous",2,"Junior",93,88,86,87,75,88,45,73,45,47,58,45,57,76,47,98,88,71,92,67,25,25,42,54,53,45,91,67,50,45,40,91,85,43,97,61,56,70,0,45,42,84,64,50,77,32,31,35,33,42,27,84,49,64,"Mountain West","San Diego State","Right Edge","Launch Ratings"
121,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/5.png?im=FaceCrop,padding=0.7","Xavion","Alford",72,40,91,"Pearland","Texas","Previous",2,"Senior",94,89,90,97,71,87,74,64,41,67,42,48,71,87,41,47,85,60,91,76,45,30,62,56,81,41,91,63,63,54,29,89,51,81,91,53,55,66,0,41,46,90,72,56,82,32,12,30,14,37,24,89,57,88,"Big 12","Arizona State","Strong Safety","Launch Ratings"
18792,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/38.png?im=FaceCrop,padding=0.7","Aiden","Fisher",73,73,90,"Fredericksburg","Virginia","Eligible",4,"Senior",86,78,80,95,83,95,32,81,39,38,58,34,61,77,29,67,88,63,94,52,25,34,40,41,62,25,90,52,46,45,27,96,59,25,92,40,45,52,0,27,29,84,47,47,96,35,24,21,24,28,28,90,45,67,"Big Ten","Indiana","Will Backer","Launch Ratings"
23520,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Antonio","Williams",71,30,90,"Irmo","South Carolina","Previous",0,"Junior",94,94,92,92,67,90,90,44,66,83,75,91,88,92,93,37,54,52,86,90,32,30,88,47,52,87,90,35,35,36,44,59,38,42,51,60,55,52,0,89,90,92,87,48,51,65,64,62,65,66,43,82,59,55,"ACC","Clemson","Wide Receiver","Launch Ratings"
19085,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Arch","Manning",76,59,90,"New Orleans","Louisiana","Previous",16,"Sophomore",88,86,84,88,71,83,80,31,70,76,74,42,39,85,28,35,46,47,92,82,46,49,35,45,40,25,90,41,41,43,87,45,35,35,39,55,44,40,0,41,50,87,76,62,45,89,90,92,85,97,82,90,67,34,"SEC","Texas","Quarterback","Launch Ratings"
8192,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/60.png?im=FaceCrop,padding=0.7","Blake","Horvath",74,35,90,"Hilliard","Ohio","Eligible",11,"Senior",92,90,82,99,81,95,97,39,86,85,85,36,55,92,33,36,49,55,92,89,41,44,46,54,27,35,90,34,34,34,92,49,31,25,49,49,47,45,0,37,35,89,87,65,47,87,83,84,90,87,74,98,75,26,"The American","Navy","Quarterback","Launch Ratings"
2562,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/8.png?im=FaceCrop,padding=0.7","Brady","Small",72,153,90,"Mt. Ephraim","New Jersey","Eligible",51,"Junior",78,72,59,93,91,95,27,55,38,44,50,27,27,58,25,24,57,87,95,28,45,38,32,95,24,25,90,80,75,85,28,38,58,27,24,92,91,93,0,26,24,70,25,42,45,24,32,27,19,27,29,97,42,20,"The American","Army","Center","Launch Ratings"
10323,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/11.png?im=FaceCrop,padding=0.7","Bryson","Washington",72,43,90,"Franklin","Texas","Previous",30,"Sophomore",94,89,87,90,77,85,91,53,44,89,88,69,76,87,56,41,64,55,91,89,31,32,77,51,43,66,90,60,59,57,26,57,44,39,51,54,53,52,0,72,79,90,84,77,56,32,31,33,45,36,34,92,80,45,"Big 12","Baylor","Halfback","Launch Ratings"
20507,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","Caleb","Banks",78,169,90,"Detroit","Michigan","Previous",88,"Senior",79,70,73,84,95,89,34,87,38,40,59,24,26,62,24,79,92,92,93,24,32,33,37,42,19,24,90,69,63,56,25,90,95,19,88,59,55,66,0,24,24,70,24,47,83,17,29,35,10,20,43,92,52,21,"SEC","Florida","Defensive Tackle","Launch Ratings"
10726,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/112.png?im=FaceCrop,padding=0.7","Caleb","Lomu",78,144,90,"Gilbert","Arizona","Previous",71,"Sophomore",85,77,75,88,87,89,45,56,39,46,56,39,35,65,38,43,62,87,91,41,22,24,15,92,40,36,90,92,95,88,37,47,59,39,41,87,90,84,0,41,37,77,37,42,44,19,14,20,36,28,44,94,41,37,"Big 12","Utah","Left Tackle","Launch Ratings"
22416,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/16.png?im=FaceCrop,padding=0.7","Chase","Roberts",76,50,90,"Highland","Utah","Previous",2,"Senior",88,87,90,90,78,95,84,51,67,77,74,91,92,83,92,45,65,64,95,84,42,44,65,59,29,94,90,47,47,48,42,29,45,39,57,68,61,59,0,90,94,90,78,71,64,47,51,54,54,65,31,92,73,26,"Big 12","BYU","Wide Receiver","Launch Ratings"
9149,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Davison","Igbinosun",74,33,90,"Union","New Jersey","Eligible",1,"Senior",94,91,92,92,71,91,65,58,44,72,58,55,64,88,42,45,81,58,93,80,30,33,66,45,86,41,90,41,41,41,25,87,44,92,87,43,43,43,0,38,54,93,75,53,75,29,11,27,13,37,38,85,56,88,"Big Ten","Ohio State","Cornerback","Launch Ratings"
5762,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Daylen","Everette",73,30,90,"Norfolk","Virginia","Eligible",6,"Senior",95,91,94,90,63,90,64,53,41,43,61,46,77,90,41,50,73,56,87,78,43,38,66,56,88,42,90,64,63,52,37,88,46,86,85,61,54,69,0,41,53,93,76,55,59,21,18,21,12,30,37,89,44,92,"SEC","Georgia","Cornerback","Launch Ratings"
8624,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Devonte","Ross",70,10,90,"Cartersville","Georgia","Eligible",5,"Senior",95,93,88,94,49,92,88,31,44,81,71,87,91,93,92,27,27,34,90,88,28,30,87,27,51,92,90,31,32,29,25,71,25,45,24,54,49,48,0,95,91,94,87,42,26,29,19,29,39,37,25,83,40,47,"Big Ten","Penn State","Wide Receiver","Launch Ratings"
20185,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","DJ","Lagway",75,81,90,"Willis","Texas","Eligible",2,"Sophomore",91,90,87,92,79,80,86,50,95,81,80,57,60,89,51,51,65,58,87,86,34,37,55,55,43,53,90,46,45,46,77,53,60,45,54,52,52,53,0,56,58,88,83,76,60,87,86,85,89,98,80,88,75,45,"SEC","Florida","Quarterback","Launch Ratings"
3419,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","DJ","Campbell",75,161,90,"Arlington","Texas","Eligible",52,"Senior",75,58,60,88,94,90,48,59,31,46,52,28,27,52,24,27,69,93,98,27,44,44,27,85,27,29,90,90,85,94,38,42,64,24,24,85,83,87,0,28,26,69,24,46,46,13,10,20,12,15,43,95,44,25,"SEC","Texas","Right Guard","Launch Ratings"
21668,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/40.png?im=FaceCrop,padding=0.7","Domonique","Orange",76,165,90,"Kansas City","Missouri","Eligible",95,"Senior",76,71,69,85,93,93,23,91,47,46,49,24,25,56,25,65,87,91,94,23,29,24,32,59,17,22,90,67,64,56,28,92,89,19,85,63,54,66,0,22,25,69,21,52,92,22,11,32,37,30,43,95,51,19,"Big Ten","Iowa State","Defensive Tackle","Launch Ratings"
5976,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Drayk","Bowen",74,75,90,"St. John","Indiana","Eligible",34,"Junior",90,81,84,90,82,86,48,81,63,47,67,49,63,77,39,64,85,82,92,50,35,38,50,62,75,35,90,52,55,51,45,88,71,60,91,60,54,64,0,35,51,86,52,72,93,53,45,50,44,85,30,89,55,81,"Independent","Notre Dame","Mike Backer","Launch Ratings"
22836,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/83.png?im=FaceCrop,padding=0.7","DT","Sheffield",70,15,90,"Corinth","Mississippi","Previous",0,"Senior",95,94,91,93,53,88,91,30,43,88,62,87,89,93,91,24,31,34,90,93,28,31,88,30,53,92,90,33,33,29,25,62,28,39,35,39,35,34,0,89,88,93,89,36,28,22,24,25,35,30,24,86,48,51,"Big Ten","Rutgers","Wide Receiver","Launch Ratings"
8460,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/99.png?im=FaceCrop,padding=0.7","Emmanuel","McNeil-Warren",74,42,90,"Tampa","Florida","Eligible",7,"Senior",89,85,89,95,77,91,71,73,35,55,59,65,74,83,27,37,92,71,97,70,23,21,46,57,76,27,90,63,53,45,40,87,40,77,89,50,53,64,0,30,67,88,63,50,85,28,26,27,18,29,47,95,53,85,"MAC","Toledo","Strong Safety","Launch Ratings"
23366,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/58.png?im=FaceCrop,padding=0.7","Fluff","Bothwell",70,70,90,"Oneonta","Alabama","Eligible",24,"Sophomore",90,85,82,87,84,81,86,52,55,87,96,57,65,84,47,44,69,66,94,85,29,32,76,65,31,55,90,56,55,57,39,45,42,34,61,55,58,56,0,63,58,88,82,87,59,35,35,42,45,45,29,93,93,35,"SEC","Mississippi State","Halfback","Launch Ratings"
23669,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Iapani","Laloulu",74,165,90,"Honolulu","Hawaii","Previous",72,"Junior",71,62,70,91,93,87,27,54,37,45,51,24,29,57,15,26,64,93,95,24,26,35,27,83,24,20,90,92,88,94,41,40,61,24,26,81,81,81,0,22,26,64,25,46,43,30,24,34,14,21,27,93,43,16,"Big Ten","Oregon","Center","Launch Ratings"
22868,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/37.png?im=FaceCrop,padding=0.7","J.C.","Davis",77,160,90,"Oakland","California","Eligible",74,"Senior",69,65,72,91,93,97,38,50,32,37,51,26,32,56,32,30,53,94,93,29,33,36,28,87,28,31,90,90,85,93,39,38,50,30,32,90,91,89,0,26,31,62,27,40,38,15,21,14,37,18,35,92,37,31,"Big Ten","Illinois","Left Tackle","Launch Ratings"
20078,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Jack","Endries",76,80,90,"Danville","California","Previous",88,"Junior",85,81,82,94,75,94,79,40,47,72,84,89,92,76,67,34,13,63,93,77,32,37,63,60,40,80,90,55,54,55,38,50,35,30,46,59,57,54,0,85,86,83,74,69,37,31,33,34,44,35,32,89,71,44,"SEC","Texas","Tight End","Launch Ratings"
7064,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/34.png?im=FaceCrop,padding=0.7","Jamal","Haynes",69,30,90,"Loganville","Georgia","Previous",1,"Senior",97,93,90,93,69,86,87,36,27,85,78,62,66,93,55,29,30,52,91,90,25,26,87,45,50,64,90,56,55,57,36,58,29,40,32,48,47,47,0,68,66,92,88,65,29,32,27,36,33,44,48,95,71,46,"ACC","Georgia Tech","Halfback","Launch Ratings"
19318,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Jaydn","Ott",71,48,90,"Chino","California","Eligible",0,"Senior",95,92,88,91,72,90,83,43,48,87,80,73,76,91,61,38,52,53,85,89,23,22,84,48,35,64,90,57,53,55,38,56,37,39,48,47,32,37,0,72,67,91,87,75,48,32,29,29,24,19,26,85,83,34,"SEC","Oklahoma","Halfback","Launch Ratings"
22561,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/30.png?im=FaceCrop,padding=0.7","Jeremiah","Wilson",70,25,90,"Kissimmee","Florida","Eligible",19,"Senior",95,93,90,93,56,89,62,58,32,66,63,65,78,93,38,35,65,60,94,78,35,35,66,51,86,42,90,33,33,33,29,91,33,77,83,35,36,35,0,40,72,91,77,39,72,20,35,19,10,42,44,85,34,92,"ACC","Florida State","Cornerback","Launch Ratings"
19620,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/40.png?im=FaceCrop,padding=0.7","Jontez","Williams",71,40,90,"Starke","Florida","Previous",3,"Junior",91,89,91,94,75,95,64,63,35,65,65,64,79,87,27,28,77,63,92,75,35,30,64,51,86,27,90,41,41,42,30,93,44,93,85,46,45,48,0,27,75,89,75,61,69,27,28,21,22,34,31,88,57,92,"Big Ten","Iowa State","Cornerback","Launch Ratings"
6662,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/116.png?im=FaceCrop,padding=0.7","Jordan","White",74,140,90,"Largo","Maryland","Previous",53,"Senior",79,71,71,90,88,93,35,44,43,33,57,39,34,62,34,45,43,89,91,38,39,37,37,94,39,36,90,85,82,87,37,35,45,34,36,92,92,92,0,34,35,69,39,36,37,33,29,11,14,17,38,91,37,39,"SEC","Vanderbilt","Center","Launch Ratings"
22301,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/61.png?im=FaceCrop,padding=0.7","Justin","Joly",75,91,90,"Brewster","New York","Eligible",7,"Senior",86,83,87,96,78,90,84,54,48,77,79,89,88,81,72,52,55,62,94,82,26,27,75,59,42,79,90,62,61,55,34,49,58,48,63,60,61,59,0,84,87,84,79,78,54,33,35,42,47,48,31,92,78,44,"ACC","NC State","Tight End","Launch Ratings"
22821,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/12.png?im=FaceCrop,padding=0.7","Kage","Casey",77,156,90,"Happy Valley","Oregon","Previous",77,"Junior",75,67,72,94,93,91,38,52,36,40,51,31,29,56,33,39,58,92,95,35,20,21,25,85,35,33,90,93,88,95,29,39,55,34,33,86,86,86,0,32,31,67,31,39,42,11,23,28,14,24,48,92,38,33,"Mountain West","Boise State","Left Tackle","Launch Ratings"
1078,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Kevin","Concepcion",71,30,90,"Charlotte","North Carolina","Eligible",7,"Junior",94,93,91,95,61,94,92,39,62,84,66,87,88,92,92,40,45,50,95,91,29,28,82,45,52,91,90,37,35,34,41,62,42,42,55,54,52,51,0,87,89,93,87,57,43,48,50,55,64,61,42,85,59,56,"SEC","Texas A&M","Wide Receiver","Launch Ratings"
21272,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/59.png?im=FaceCrop,padding=0.7","Kevin","Coleman Jr.",71,20,90,"St. Louis","Missouri","Eligible",3,"Senior",95,93,91,95,60,90,89,44,57,87,81,91,88,93,86,33,50,45,93,92,32,33,85,45,68,92,90,35,26,36,41,48,37,35,45,51,44,45,0,94,87,92,88,44,44,43,45,50,51,52,35,85,58,26,"SEC","Missouri","Wide Receiver","Launch Ratings"
23088,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/39.png?im=FaceCrop,padding=0.7","Logan","Jones",75,142,90,"Council Bluffs","Iowa","Previous",65,"Senior",83,77,79,89,91,96,44,79,26,48,59,42,47,64,45,64,72,89,91,43,15,20,25,97,45,46,90,83,81,85,38,50,79,42,55,91,94,87,0,44,44,78,47,48,52,22,37,36,22,18,21,95,46,44,"Big Ten","Iowa","Center","Launch Ratings"
8570,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/86.png?im=FaceCrop,padding=0.7","Logan","Parr",76,156,90,"Helotes","Texas","Previous",71,"Senior",79,73,77,88,88,90,42,52,48,41,59,38,38,58,43,47,58,87,92,40,45,48,40,83,40,41,90,91,93,89,39,45,56,42,43,81,83,80,0,41,40,68,43,41,39,19,35,20,35,15,32,89,39,41,"ACC","SMU","Left Guard","Launch Ratings"
8565,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","LT","Overton",77,118,90,"Milton","Georgia","Eligible",22,"Senior",89,83,85,86,88,93,43,87,45,43,59,47,53,75,47,85,89,85,90,49,22,24,25,59,46,47,90,45,47,47,43,92,90,44,88,49,49,50,0,47,47,85,47,58,86,20,18,34,37,21,28,85,54,51,"SEC","Alabama","Left Edge","Launch Ratings"
23134,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/110.png?im=FaceCrop,padding=0.7","Makai","Lemon",71,35,90,"Los Alamitos","California","Previous",6,"Junior",93,93,90,90,64,85,93,42,59,87,75,92,94,90,92,47,55,61,92,88,29,30,90,55,63,94,90,50,48,52,44,55,49,55,39,62,56,58,0,93,89,91,87,54,45,54,55,58,55,62,37,89,55,60,"Big Ten","USC","Wide Receiver","Launch Ratings"
10516,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","Mansoor","Delane",72,31,90,"Silver Spring","Maryland","Eligible",4,"Senior",95,92,94,93,60,87,70,55,36,63,52,65,79,90,32,43,73,61,91,70,24,32,53,57,89,35,90,61,61,52,30,89,38,89,84,54,54,61,0,33,67,94,65,48,59,37,36,21,36,30,30,87,45,82,"SEC","LSU","Cornerback","Launch Ratings"
23115,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/94.png?im=FaceCrop,padding=0.7","Miles","Kitselman",77,95,90,"Lyndon","Kansas","Previous",87,"Senior",83,79,83,88,82,88,75,55,44,68,75,86,91,74,65,51,58,72,90,75,34,30,67,72,32,80,90,63,63,61,24,38,59,35,45,74,69,72,0,78,85,80,71,74,56,28,35,25,35,35,31,93,70,35,"SEC","Tennessee","Tight End","Launch Ratings"
4647,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Oscar","Delp",77,85,90,"Cumming","Georgia","Eligible",4,"Senior",90,86,90,87,73,91,84,45,45,76,66,85,87,82,73,57,51,65,90,82,27,25,67,59,41,81,90,60,50,51,32,44,54,25,60,64,62,61,0,82,91,87,78,73,45,32,33,35,44,35,39,85,73,44,"SEC","Georgia","Tight End","Launch Ratings"
22366,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/15.png?im=FaceCrop,padding=0.7","Red","Murdock",75,80,90,"Petersburg","Virginia","Previous",2,"Senior",87,80,82,99,79,88,52,84,43,44,54,47,65,79,30,72,92,85,92,56,41,41,36,52,73,33,90,50,49,50,36,91,67,59,92,54,51,53,0,32,48,83,55,52,95,27,25,19,18,23,34,95,56,71,"MAC","Buffalo","Mike Backer","Launch Ratings"
8061,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/125.png?im=FaceCrop,padding=0.7","Ricardo","Hallman",70,30,90,"Miami","Florida","Previous",2,"Senior",95,93,92,89,61,89,69,48,41,40,58,43,82,94,44,40,67,52,85,85,31,42,67,56,87,46,90,65,59,53,31,92,48,88,80,58,54,66,0,46,70,93,75,49,54,20,25,37,14,15,30,85,39,92,"Big Ten","Wisconsin","Cornerback","Launch Ratings"
21951,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Sonny","Styles",76,75,90,"Pickerington","Ohio","Eligible",6,"Senior",91,87,91,95,80,89,65,76,36,54,62,59,68,83,47,73,96,77,92,72,36,36,47,54,75,47,90,64,60,53,36,87,77,72,94,56,55,60,0,47,65,93,68,71,85,24,24,24,24,24,36,91,70,83,"Big Ten","Ohio State","Will Backer","Launch Ratings"
22085,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Taurean","York",72,75,90,"Temple","Texas","Eligible",21,"Junior",90,83,85,95,81,91,44,83,41,45,65,35,59,80,30,63,91,85,93,37,47,37,37,46,66,31,90,62,56,48,47,90,77,28,94,55,50,64,0,29,33,84,40,45,93,26,23,24,18,37,28,91,55,74,"SEC","Texas A&M","Will Backer","Launch Ratings"
4236,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","Tyreak","Sapp",75,114,90,"Fort Lauderdale","Florida","Previous",94,"Senior",89,77,85,83,88,89,52,89,48,39,56,40,52,71,40,88,92,88,92,54,29,29,41,57,34,40,90,54,50,48,30,91,93,55,92,47,47,53,0,40,40,82,50,62,83,19,15,14,28,35,38,89,61,42,"SEC","Florida","Left Edge","Launch Ratings"
4753,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/21.png?im=FaceCrop,padding=0.7","Xavier","Hill",76,158,90,"Olive Branch","Mississippi","Previous",71,"Senior",74,64,71,95,92,95,43,55,29,40,50,24,26,56,24,26,59,93,97,25,25,25,15,87,25,28,90,91,88,93,36,39,54,26,24,86,89,82,0,29,25,66,26,43,41,24,14,18,35,18,38,90,35,29,"Big 12","Colorado","Right Tackle","Launch Ratings"
8662,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/37.png?im=FaceCrop,padding=0.7","Xavier","Scott",71,30,90,"Riviera Beach","Florida","Eligible",14,"Senior",93,89,94,93,60,88,61,57,46,66,60,71,80,88,34,33,73,51,92,77,16,15,68,45,84,33,90,35,36,36,40,92,45,72,87,44,43,43,0,36,74,91,73,48,82,30,20,20,21,28,36,86,41,87,"Big Ten","Illinois","Cornerback","Launch Ratings"
19301,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/39.png?im=FaceCrop,padding=0.7","Xavier","Nwankpa",74,53,90,"Pleasant Hill","Iowa","Eligible",1,"Senior",93,91,92,91,73,87,62,69,46,55,71,46,75,87,60,45,87,61,89,72,27,33,62,60,79,37,90,66,60,56,41,88,50,74,88,57,55,68,0,64,70,90,70,66,72,12,12,28,30,11,37,88,62,91,"Big Ten","Iowa","Free Safety","Launch Ratings"
23496,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Zakee","Wheatley",74,40,90,"Crofton","Maryland","Previous",6,"Senior",93,90,89,95,72,92,77,66,39,64,66,66,75,91,46,50,81,68,94,77,29,31,72,55,71,44,90,42,40,44,35,93,43,79,89,49,49,48,0,46,71,90,75,59,70,23,27,34,34,27,43,90,52,86,"Big Ten","Penn State","Free Safety","Launch Ratings"
4687,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Zane","Durant",73,134,90,"Lake Nona","Florida","Eligible",28,"Senior",90,77,80,87,91,89,30,85,38,45,52,30,37,64,30,86,85,87,92,30,34,47,35,58,33,30,90,70,61,55,31,91,93,31,96,60,54,68,0,30,30,83,30,48,79,18,20,32,27,24,32,89,44,35,"Big Ten","Penn State","Defensive Tackle","Launch Ratings"
131,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","Aaron","Anderson",68,28,89,"New Orleans","Louisiana","Previous",1,"Junior",96,96,95,90,59,85,90,40,37,83,70,81,87,96,87,33,41,33,84,95,36,31,96,28,52,88,89,28,17,28,37,58,31,40,38,40,24,24,0,89,88,94,88,34,40,33,16,18,25,37,39,83,39,43,"SEC","LSU","Wide Receiver","Launch Ratings"
5534,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/86.png?im=FaceCrop,padding=0.7","Ahmaad","Moses",70,40,89,"Arlington","Texas","Eligible",3,"Senior",91,91,92,92,75,90,61,69,47,66,63,57,74,89,37,48,84,68,88,79,33,32,68,53,91,37,89,34,34,34,35,88,42,83,86,35,35,36,0,38,62,89,75,50,75,33,36,35,39,42,36,88,51,76,"ACC","SMU","Free Safety","Launch Ratings"
21139,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","Austin","Barber",78,162,89,"Jacksonville","Florida","Previous",58,"Senior",77,72,74,87,95,90,45,56,42,43,56,41,35,59,39,47,62,95,93,39,29,44,40,87,35,37,89,89,84,94,44,50,59,40,41,87,89,85,0,39,39,66,37,44,45,37,10,11,34,26,37,88,42,41,"SEC","Florida","Left Tackle","Launch Ratings"
3999,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/42.png?im=FaceCrop,padding=0.7","Avery","Johnson",75,28,89,"Wichita","Kansas","Eligible",2,"Junior",93,91,91,95,65,90,91,35,85,78,81,53,66,91,34,32,44,40,91,87,29,32,29,39,37,32,89,35,35,36,88,27,35,33,53,38,36,37,0,34,53,88,84,50,43,84,89,89,94,89,79,92,57,35,"Big 12","Kansas State","Quarterback","Launch Ratings"
6902,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/41.png?im=FaceCrop,padding=0.7","Bryce","Foster",77,150,89,"Katy","Texas","Previous",61,"Senior",81,72,82,91,95,92,45,61,35,49,60,39,44,55,40,49,69,88,97,39,48,47,32,86,12,41,89,85,80,90,30,47,69,14,41,86,85,87,0,44,45,69,44,46,49,29,37,30,29,34,42,95,49,11,"Big 12","Kansas","Center","Launch Ratings"
18292,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","Caden","Durham",69,45,89,"Oklahoma City","Oklahoma","Eligible",29,"Sophomore",97,93,91,90,70,77,86,42,54,80,87,74,77,91,58,35,50,52,91,88,42,42,87,47,70,67,89,57,55,53,31,49,34,36,46,48,45,44,0,77,71,95,85,69,45,35,32,34,51,42,33,88,73,27,"SEC","LSU","Halfback","Launch Ratings"
7487,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/24.png?im=FaceCrop,padding=0.7","Caleb","Weaver",71,30,89,"Houston","Texas","Previous",3,"Senior",91,88,85,94,64,87,42,69,40,42,61,65,75,85,27,32,77,75,93,69,34,33,67,54,87,23,89,46,45,47,40,90,44,79,89,59,56,65,0,26,71,89,67,52,82,17,18,26,11,34,31,91,55,81,"ACC","Duke","Free Safety","Launch Ratings"
7631,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/9.png?im=FaceCrop,padding=0.7","Cam","Coleman",75,35,89,"Phenix City","Alabama","Eligible",8,"Sophomore",95,95,98,88,72,79,90,45,53,81,74,90,88,91,93,39,59,58,93,89,25,31,74,54,51,85,89,34,35,33,29,54,41,55,54,55,49,45,0,89,95,93,85,70,53,31,35,36,44,47,30,92,69,52,"SEC","Auburn","Wide Receiver","Launch Ratings"
2569,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/38.png?im=FaceCrop,padding=0.7","Carter","Smith",77,148,89,"Powell","Ohio","Previous",65,"Junior",76,72,73,92,88,93,35,44,46,35,55,41,39,59,37,46,45,87,93,36,30,25,39,88,40,35,89,90,88,92,47,36,43,35,42,86,89,83,0,39,40,67,41,37,37,25,15,16,20,21,37,87,33,40,"Big Ten","Indiana","Left Tackle","Launch Ratings"
9238,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/47.png?im=FaceCrop,padding=0.7","Chris","Bell",74,60,89,"Yazoo City","Mississippi","Eligible",0,"Senior",92,88,93,90,79,90,84,57,44,77,74,93,91,84,89,49,76,63,94,85,26,35,79,59,38,91,89,37,25,34,25,44,48,33,71,65,54,53,0,89,89,89,80,71,64,31,25,14,21,21,30,92,76,49,"ACC","Louisville","Wide Receiver","Launch Ratings"
4311,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","Damien","Taylor",70,61,89,"Northport","Alabama","Previous",12,"Senior",91,83,84,92,80,90,89,52,45,87,87,58,58,83,50,40,61,63,92,85,31,32,75,59,30,54,89,57,66,57,23,42,42,32,54,55,53,54,0,60,57,88,81,84,53,21,14,17,24,15,22,93,89,33,"SEC","Ole Miss","Halfback","Launch Ratings"
31535,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/24.png?im=FaceCrop,padding=0.7","Darian","Mensah",75,40,89,"San Luis Obispo","California","Previous",10,"Sophomore",88,88,85,95,62,85,85,31,72,77,65,54,55,88,46,33,35,42,91,84,30,28,56,41,42,48,89,33,32,32,94,54,32,32,45,35,34,34,0,52,55,83,80,55,40,84,92,90,88,92,87,85,60,44,"ACC","Duke","Quarterback","Launch Ratings"
9439,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/30.png?im=FaceCrop,padding=0.7","Darrell","Jackson Jr.",77,177,89,"Havana","Florida","Previous",6,"Senior",75,62,74,84,95,89,25,91,38,46,57,24,23,45,26,73,88,88,96,24,47,35,34,58,32,25,89,68,65,54,28,88,89,18,79,63,56,67,0,25,22,64,25,45,90,13,32,25,16,20,48,93,49,36,"ACC","Florida State","Defensive Tackle","Launch Ratings"
1756,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/21.png?im=FaceCrop,padding=0.7","DJ","McKinney",74,20,89,"Colleyville","Texas","Previous",8,"Junior",92,89,92,96,68,87,71,61,43,66,63,62,73,88,32,42,79,61,92,75,30,39,66,54,87,31,89,42,43,44,35,90,44,90,85,60,55,67,0,31,67,91,70,55,76,10,20,24,15,28,44,85,56,88,"Big 12","Colorado","Cornerback","Launch Ratings"
9442,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Domani","Jackson",73,36,89,"San Diego","California","Eligible",1,"Senior",95,91,92,90,72,87,68,60,34,65,65,51,64,90,47,48,79,61,87,83,32,34,72,57,87,48,89,43,42,42,38,86,45,88,82,50,51,51,0,47,60,96,79,52,68,21,31,10,17,17,22,85,55,79,"SEC","Alabama","Cornerback","Launch Ratings"
20627,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/42.png?im=FaceCrop,padding=0.7","Dylan","Edwards",69,10,89,"Derby","Kansas","Eligible",3,"Junior",98,95,89,87,59,84,82,38,51,74,72,67,75,94,64,30,34,45,87,90,24,26,88,44,70,67,89,47,44,43,35,65,27,43,32,39,24,29,0,73,66,95,90,58,31,15,12,23,36,30,31,82,52,59,"Big 12","Kansas State","Halfback","Launch Ratings"
7027,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Earnest","Greene III",76,160,89,"Los Angeles","California","Previous",71,"Junior",79,71,72,89,93,92,42,52,27,41,53,35,35,60,31,40,59,94,92,34,29,37,33,88,33,31,89,90,87,92,46,48,59,35,37,83,80,86,0,32,33,68,31,42,43,21,21,19,13,32,46,91,41,37,"SEC","Georgia","Right Tackle","Launch Ratings"
20332,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Emmanuel","Pregnon",77,160,89,"Denver","Colorado","Previous",75,"Senior",77,62,60,87,93,96,39,53,41,41,52,27,24,54,26,28,58,92,92,27,27,25,27,86,26,24,89,87,83,91,43,42,58,25,25,85,85,85,0,24,24,71,26,41,40,20,29,34,29,14,43,86,39,26,"Big Ten","Oregon","Left Guard","Launch Ratings"
21153,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/83.png?im=FaceCrop,padding=0.7","Eric","O'Neill",75,95,89,"Staten Island","New York","Previous",99,"Senior",88,81,79,91,86,95,35,88,35,33,52,27,32,72,27,77,88,85,92,29,38,44,36,48,39,27,89,43,34,29,36,95,95,28,93,32,36,44,0,30,31,83,29,34,76,28,27,16,31,22,46,91,45,50,"Big Ten","Rutgers","Left Edge","Launch Ratings"
635,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","Eugene","Wilson III",70,29,89,"Tampa","Florida","Previous",3,"Sophomore",97,95,92,92,52,87,90,41,49,87,70,85,88,94,87,30,41,44,84,92,17,18,89,39,53,88,89,33,32,29,39,59,33,40,39,48,45,42,0,91,91,94,88,45,40,25,34,32,49,35,29,83,50,51,"SEC","Florida","Wide Receiver","Launch Ratings"
21684,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/122.png?im=FaceCrop,padding=0.7","Fred","Perry",71,40,89,"Vienna","Georgia","Eligible",5,"Senior",93,87,84,95,71,90,66,57,46,60,54,50,65,86,29,35,89,63,93,75,32,31,67,47,68,25,89,44,45,45,38,94,45,65,92,49,46,45,0,28,52,89,70,50,83,20,13,34,15,27,45,97,55,73,"Big 12","West Virginia","Free Safety","Launch Ratings"
20762,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/110.png?im=FaceCrop,padding=0.7","Ja'Kobi","Lane",76,35,89,"Mesa","Arizona","Eligible",8,"Junior",93,92,94,90,69,85,84,49,47,74,74,95,89,87,85,38,65,56,89,84,24,31,65,51,63,91,89,31,32,32,35,45,34,72,73,59,54,51,0,89,96,89,78,72,57,34,32,37,43,35,33,87,64,74,"Big Ten","USC","Wide Receiver","Launch Ratings"
4039,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/16.png?im=FaceCrop,padding=0.7","Jack","Kelly",74,80,89,"Kearns","Utah","Previous",17,"Senior",89,83,83,97,81,96,52,85,42,29,68,55,64,79,43,84,91,85,93,58,30,24,37,32,72,44,89,35,35,34,34,95,78,65,91,45,46,46,0,47,54,85,57,55,86,36,24,25,10,27,41,95,53,69,"Big 12","BYU","Will Backer","Launch Ratings"
23650,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/122.png?im=FaceCrop,padding=0.7","Jahiem","White",67,30,89,"York","Pennsylvania","Eligible",1,"Junior",94,95,91,90,68,76,84,35,51,85,75,61,67,95,52,38,44,45,90,95,35,33,85,38,31,62,89,51,49,52,36,54,41,33,34,43,44,43,0,70,71,94,91,57,45,16,32,36,26,27,30,83,67,32,"Big 12","West Virginia","Halfback","Launch Ratings"
8771,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/109.png?im=FaceCrop,padding=0.7","Jai'Den","Thomas",69,30,89,"Atlanta","Georgia","Eligible",9,"Junior",93,93,87,94,65,85,88,41,43,83,87,66,66,90,60,38,51,47,93,89,25,29,80,41,33,64,89,54,52,49,33,33,34,28,45,46,45,45,0,67,69,89,84,62,43,18,12,21,13,33,37,88,64,32,"Mountain West","UNLV","Halfback","Launch Ratings"
4867,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/88.png?im=FaceCrop,padding=0.7","Jalon","Kilgore",73,51,89,"Eatonton","Georgia","Eligible",24,"Junior",92,90,92,92,73,89,80,70,43,72,29,65,83,85,31,36,81,60,91,75,38,32,86,58,85,31,89,63,60,53,37,89,47,89,85,52,55,67,0,29,71,88,70,65,80,31,10,36,29,11,34,93,59,79,"SEC","South Carolina","Strong Safety","Launch Ratings"
23435,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/12.png?im=FaceCrop,padding=0.7","Jayden","Virgin-Morgan",75,93,89,"San Diego","California","Previous",5,"Junior",87,84,85,86,82,94,34,84,15,33,53,41,51,72,43,87,87,79,91,56,34,38,40,34,62,42,89,40,41,37,11,94,95,54,95,31,39,45,0,41,42,82,52,33,79,14,15,17,14,37,14,87,51,71,"Mountain West","Boise State","Right Edge","Launch Ratings"
1042,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/11.png?im=FaceCrop,padding=0.7","Josh","Cameron",73,58,89,"Cedar Park","Texas","Previous",34,"Senior",93,89,91,89,78,89,83,55,36,75,77,92,90,87,88,47,77,47,92,86,33,44,92,43,28,91,89,36,29,38,42,50,46,36,68,62,42,45,0,88,91,89,81,68,66,17,16,11,29,18,36,90,69,50,"Big 12","Baylor","Wide Receiver","Launch Ratings"
5535,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/89.png?im=FaceCrop,padding=0.7","Josh","Moten",72,20,89,"Waldorf","Maryland","Previous",1,"Senior",95,93,92,95,52,88,71,51,32,65,54,60,80,92,40,33,68,54,93,81,21,21,67,45,86,42,89,35,35,34,42,90,31,76,84,41,42,34,0,45,64,94,75,33,67,21,11,17,20,23,31,84,29,90,"Sun Belt","Southern Miss","Cornerback","Launch Ratings"
9674,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/94.png?im=FaceCrop,padding=0.7","Joshua","Josephs",75,80,89,"Kennesaw","Georgia","Eligible",19,"Senior",88,83,87,83,84,90,35,84,36,34,53,45,58,75,45,93,85,88,89,45,31,36,41,35,46,45,89,42,41,37,32,91,88,45,93,28,36,40,0,45,45,84,45,34,82,24,31,35,14,23,37,88,34,47,"SEC","Tennessee","Right Edge","Launch Ratings"
8172,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/54.png?im=FaceCrop,padding=0.7","Jyaire","Hill",74,25,89,"Kankakee","Illinois","Previous",20,"Junior",97,94,88,91,53,83,69,47,38,64,61,62,73,92,44,31,58,46,90,79,22,22,71,43,92,44,89,44,43,44,35,85,27,77,74,45,45,45,0,45,77,93,74,39,63,21,10,24,31,10,21,76,36,85,"Big Ten","Michigan","Cornerback","Launch Ratings"
30797,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/11.png?im=FaceCrop,padding=0.7","Keaton","Thomas",74,64,89,"Jacksonville","Florida","Previous",11,"Junior",88,82,83,96,81,87,38,75,47,55,51,25,67,81,31,56,89,72,90,65,27,26,39,48,70,31,89,65,57,53,35,88,68,35,92,59,52,67,0,30,32,85,59,57,95,21,17,16,15,26,37,88,51,77,"Big 12","Baylor","Sam Backer","Launch Ratings"
1589,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/86.png?im=FaceCrop,padding=0.7","Kevin","Jennings",72,25,89,"Oak Cliff","Texas","Previous",7,"Junior",93,92,88,93,62,92,87,34,84,82,72,61,63,93,55,24,26,32,91,88,27,34,24,28,26,55,89,22,22,21,83,25,25,31,69,25,18,24,0,54,62,89,85,55,26,85,89,92,93,90,76,93,63,60,"ACC","SMU","Quarterback","Launch Ratings"
21638,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Le'Veon","Moss",72,50,89,"Walker","Louisiana","Eligible",8,"Senior",94,89,87,88,81,87,85,50,30,86,82,65,70,89,60,41,58,47,85,88,26,26,88,43,32,66,89,56,53,53,47,41,38,32,52,48,36,36,0,72,71,92,82,83,52,21,30,15,17,34,26,92,87,28,"SEC","Texas A&M","Halfback","Launch Ratings"
3976,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Lee","Hunter",76,165,89,"Mobile","Alabama","Previous",2,"Senior",75,61,72,89,94,93,22,92,25,46,57,26,25,49,26,71,87,93,95,25,29,23,33,58,30,25,89,68,64,57,46,93,88,24,90,59,54,68,0,22,24,70,23,47,83,36,29,22,26,17,31,93,45,32,"Big 12","Texas Tech","Defensive Tackle","Launch Ratings"
19100,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/16.png?im=FaceCrop,padding=0.7","LJ","Martin",74,60,89,"El Paso","Texas","Eligible",4,"Junior",92,84,84,92,80,90,87,52,26,85,84,65,65,83,48,41,61,48,93,86,29,42,74,41,42,56,89,54,54,56,27,36,43,30,61,47,34,38,0,64,63,89,80,90,58,14,13,13,16,20,36,95,93,30,"Big 12","BYU","Halfback","Launch Ratings"
8102,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","Luke","Hasz",75,80,89,"Bixby","Oklahoma","Eligible",9,"Junior",90,84,87,88,77,90,76,53,35,72,74,87,88,78,69,55,71,64,90,78,31,33,63,62,43,76,89,61,60,58,44,44,55,25,65,60,62,56,0,83,90,86,75,69,70,12,27,19,48,26,32,85,70,38,"SEC","Ole Miss","Tight End","Launch Ratings"
18526,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/37.png?im=FaceCrop,padding=0.7","Luke","Altmyer",74,45,89,"Starkville","Mississippi","Previous",9,"Senior",87,82,82,92,61,96,78,22,55,72,59,33,47,81,26,26,33,34,91,83,38,42,22,36,23,24,89,41,29,28,85,66,25,21,35,34,31,30,0,33,36,85,77,41,31,83,88,93,80,89,83,87,44,24,"Big Ten","Illinois","Quarterback","Launch Ratings"
22320,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/12.png?im=FaceCrop,padding=0.7","Matt","Lauter",75,80,89,"Gainesville","Florida","Previous",85,"Senior",86,83,85,91,77,90,80,57,27,68,69,85,87,78,70,53,22,66,92,75,44,27,73,63,24,78,89,57,56,55,27,37,53,19,57,67,61,65,0,84,88,83,73,69,57,14,32,16,46,11,44,92,73,47,"Mountain West","Boise State","Tight End","Launch Ratings"
2296,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/30.png?im=FaceCrop,padding=0.7","Micah","Pettus",79,189,89,"Harvest","Alabama","Previous",57,"Senior",73,55,58,87,97,89,48,60,39,49,50,26,26,51,27,25,71,93,92,24,25,35,24,81,24,26,89,88,84,92,45,37,68,24,24,87,83,90,0,24,24,61,24,49,48,37,18,13,12,22,29,95,44,26,"ACC","Florida State","Right Tackle","Launch Ratings"
22494,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","R Mason","Thomas",74,89,89,"Fort Lauderdale","Florida","Eligible",32,"Senior",93,84,84,84,77,91,30,74,35,32,53,42,53,72,35,94,85,72,85,57,32,35,47,45,44,42,89,37,38,37,40,90,86,40,97,37,36,38,0,42,42,82,56,33,77,35,24,27,25,10,15,79,30,60,"SEC","Oklahoma","Right Edge","Launch Ratings"
3719,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/88.png?im=FaceCrop,padding=0.7","Rahsul","Faison",72,58,89,"Pottstown","Pennsylvania","Previous",1,"Senior",92,88,87,96,74,86,85,39,48,85,96,55,67,85,54,41,53,59,92,87,24,25,77,52,31,60,89,61,56,54,37,30,35,32,44,54,52,53,0,66,61,89,88,69,51,31,32,35,44,40,35,93,79,35,"SEC","South Carolina","Halfback","Launch Ratings"
6788,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/80.png?im=FaceCrop,padding=0.7","Rasheem","Biles",73,60,89,"Columbus","Ohio","Eligible",3,"Junior",91,84,85,87,77,89,48,77,35,37,59,39,67,82,37,91,89,75,89,53,37,30,47,48,75,35,89,51,45,43,45,91,83,56,93,40,40,48,0,36,35,87,53,37,88,32,22,11,30,24,33,85,48,81,"ACC","Pittsburgh","Sam Backer","Launch Ratings"
23159,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/125.png?im=FaceCrop,padding=0.7","Riley","Mahlman",80,160,89,"Lakeville","Minnesota","Previous",71,"Senior",75,57,72,89,95,94,43,55,29,41,52,29,30,53,29,39,59,95,93,35,35,46,34,88,31,30,89,87,80,93,25,42,58,34,36,89,93,85,0,29,32,63,31,42,42,11,22,32,23,15,24,92,40,35,"Big Ten","Wisconsin","Right Tackle","Launch Ratings"
9724,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/86.png?im=FaceCrop,padding=0.7","RJ","Maryland",76,77,89,"Southlake","Texas","Eligible",82,"Senior",89,85,87,88,70,95,83,42,32,72,75,86,90,80,78,47,43,57,82,82,29,31,72,56,34,83,89,54,55,53,29,47,48,33,50,55,53,53,0,81,91,87,77,67,53,35,34,12,28,34,28,81,73,35,"ACC","SMU","Tight End","Launch Ratings"
21898,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Robert","Spears-Jennings",72,53,89,"Broken Arrow","Oklahoma","Eligible",3,"Senior",90,87,87,91,77,86,51,67,47,49,27,46,69,85,28,41,85,75,93,55,25,31,48,56,75,27,89,67,65,54,34,87,47,71,89,53,56,70,0,28,40,88,50,64,84,33,17,26,15,22,32,97,64,85,"SEC","Oklahoma","Free Safety","Launch Ratings"
4013,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/112.png?im=FaceCrop,padding=0.7","Tao","Johnson",73,33,89,"Idaho Falls","Idaho","Previous",5,"Junior",94,92,96,92,64,87,75,71,44,63,65,57,68,91,48,47,77,73,92,81,33,31,70,53,87,46,89,53,52,53,35,89,45,83,86,60,54,68,0,45,56,91,80,60,72,28,18,29,17,38,46,92,43,83,"Big 12","Utah","Free Safety","Launch Ratings"
7102,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Theran","Johnson",71,22,89,"Indianapolis","Indiana","Previous",5,"Senior",93,92,90,94,59,91,70,57,41,68,59,57,71,90,36,41,71,55,92,82,26,25,74,44,89,35,89,43,42,42,29,90,37,85,85,44,44,44,0,35,67,90,74,51,69,13,23,13,25,13,22,85,42,88,"Big Ten","Oregon","Cornerback","Launch Ratings"
22650,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Trebor","Pena",70,26,89,"Ocean Township","New Jersey","Previous",8,"Senior",95,93,90,92,66,90,91,45,44,77,74,91,90,92,83,38,51,38,90,88,27,27,93,34,60,90,89,34,23,33,24,62,39,41,51,55,34,29,0,94,86,93,83,34,47,34,11,28,35,23,26,93,52,62,"Big Ten","Penn State","Wide Receiver","Launch Ratings"
23483,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","Whit","Weeks",74,65,89,"Watkinsville","Georgia","Eligible",40,"Junior",91,84,87,96,71,90,45,75,36,34,64,45,67,81,45,79,87,67,86,58,36,36,45,55,72,45,89,63,59,52,36,92,73,51,95,52,53,58,0,45,66,88,56,34,90,24,24,24,24,24,36,90,51,78,"SEC","LSU","Mike Backer","Launch Ratings"
1369,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","A.J.","Haulcy",72,60,88,"Houston","Texas","Eligible",13,"Senior",89,85,87,94,77,88,43,74,50,48,71,65,83,83,24,28,88,73,93,66,33,29,64,57,65,26,88,44,46,45,38,90,48,75,93,51,56,71,0,25,72,88,64,64,76,12,20,35,16,26,45,91,63,87,"SEC","LSU","Free Safety","Launch Ratings"
22526,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/57.png?im=FaceCrop,padding=0.7","A.J.","Turner",72,30,88,"Hampton","Virginia","Previous",2,"Junior",93,88,87,90,70,80,88,41,44,84,92,59,69,87,54,32,42,53,91,87,37,39,67,45,30,63,88,56,54,55,38,48,34,41,38,43,43,41,0,66,57,91,84,68,39,28,22,16,20,32,24,88,73,37,"Big Ten","Minnesota","Halfback","Launch Ratings"
21420,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/31.png?im=FaceCrop,padding=0.7","Al'zillion","Hamilton",71,25,88,"Hayward","California","Previous",3,"Senior",93,92,91,92,59,90,48,48,35,36,48,27,78,90,32,33,67,48,86,61,46,27,51,56,80,32,88,60,53,46,24,92,36,77,80,53,54,62,0,30,26,91,62,38,66,29,27,18,12,10,34,88,34,90,"Mountain West","Fresno State","Cornerback","Launch Ratings"
1380,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/15.png?im=FaceCrop,padding=0.7","Al-Jay","Henderson",72,56,88,"Irvington","New Jersey","Previous",5,"Senior",91,85,85,96,79,87,86,39,35,84,94,65,70,84,55,33,36,67,92,84,32,33,76,60,37,65,88,65,62,64,25,44,31,33,37,59,58,59,0,69,67,86,82,87,37,20,22,37,25,29,25,92,88,35,"MAC","Buffalo","Halfback","Launch Ratings"
8768,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/60.png?im=FaceCrop,padding=0.7","Alex","Tecza",72,39,88,"Pittsburgh","Pennsylvania","Eligible",46,"Senior",88,83,80,95,81,91,88,31,27,77,95,68,73,81,58,23,28,70,92,85,48,37,60,65,44,68,88,57,60,67,80,51,23,30,25,61,57,57,0,71,67,86,85,79,23,24,27,12,28,15,44,97,85,57,"The American","Navy","Fullback","Launch Ratings"
8116,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Bryant","Wesco Jr.",74,25,88,"Midlothian","Texas","Eligible",12,"Sophomore",93,93,93,91,63,84,88,31,44,85,74,92,90,91,90,26,37,53,93,92,25,26,76,45,39,84,88,35,34,33,31,62,28,45,26,55,45,46,0,91,93,90,88,62,35,29,32,36,46,42,25,88,60,41,"ACC","Clemson","Wide Receiver","Launch Ratings"
8071,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/40.png?im=FaceCrop,padding=0.7","Carson","Hansen",74,60,88,"Lakeville","Minnesota","Eligible",26,"Junior",92,85,86,88,79,85,85,55,52,84,87,64,72,83,54,47,70,64,91,85,34,35,69,65,34,65,88,58,56,62,31,45,47,34,62,60,55,56,0,71,66,89,84,87,61,43,45,47,54,44,35,91,90,35,"Big Ten","Iowa State","Halfback","Launch Ratings"
8198,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Cashius","Howell",76,95,88,"Kansas City","Missouri","Previous",9,"Senior",92,85,80,82,78,88,31,74,27,29,56,39,41,76,39,92,87,60,79,39,45,24,40,29,50,39,88,35,31,30,36,87,84,42,92,23,32,35,0,39,39,84,39,30,79,12,32,21,31,13,28,80,28,55,"SEC","Texas A&M","Right Edge","Launch Ratings"
21541,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/47.png?im=FaceCrop,padding=0.7","Caullin","Lacy",70,30,88,"Mobile","Alabama","Previous",5,"Senior",95,93,92,92,62,88,83,48,27,73,68,86,88,91,90,40,54,36,81,87,34,42,94,36,59,88,88,39,25,36,28,53,40,36,51,50,31,28,0,91,92,91,79,36,53,28,26,23,19,19,24,79,51,42,"ACC","Louisville","Wide Receiver","Launch Ratings"
31484,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/62.png?im=FaceCrop,padding=0.7","Ceyair","Wright",72,20,88,"Los Angeles","California","Previous",15,"Senior",93,92,91,87,58,87,65,49,25,61,55,57,73,92,29,39,72,40,91,74,42,32,70,31,88,28,88,56,56,48,28,88,32,85,81,48,51,55,0,32,71,92,66,30,64,31,24,33,23,27,37,81,30,84,"Big Ten","Nebraska","Cornerback","Launch Ratings"
21197,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Charles","Brantley",72,10,88,"Sarasota","Florida","Previous",19,"Senior",94,91,94,94,54,89,56,45,28,29,48,40,73,90,34,37,71,45,82,66,40,46,53,52,79,35,88,60,56,50,38,89,32,83,75,51,51,58,0,34,50,92,69,33,67,31,14,17,12,32,26,90,27,89,"ACC","Miami","Cornerback","Launch Ratings"
23056,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Charles","Jagusah",79,173,88,"Rock Island","Illinois","Previous",56,"Sophomore",72,65,69,84,95,80,45,54,26,46,53,24,25,55,29,27,61,95,76,28,29,47,27,85,20,25,88,87,82,92,38,45,60,27,28,85,82,88,0,26,25,67,26,42,43,18,23,15,33,27,43,85,43,26,"Independent","Notre Dame","Right Guard","Launch Ratings"
22081,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/90.png?im=FaceCrop,padding=0.7","Collin","Wright",72,35,88,"Missouri City","Texas","Eligible",6,"Senior",92,91,92,93,68,87,70,64,43,72,61,54,77,88,37,40,79,57,91,76,26,42,62,55,84,37,88,67,62,56,34,88,47,87,86,59,54,68,0,37,53,90,72,54,73,12,28,13,25,25,45,88,43,90,"ACC","Stanford","Cornerback","Launch Ratings"
546,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/59.png?im=FaceCrop,padding=0.7","Connor","Tollison",76,125,88,"Jackson","Missouri","Previous",55,"Senior",73,71,69,93,90,92,27,57,36,42,57,27,28,57,28,31,58,88,82,30,40,26,31,85,28,27,88,88,89,87,28,43,61,33,32,84,85,83,0,28,28,63,30,45,46,22,18,12,10,22,44,88,42,25,"SEC","Missouri","Center","Launch Ratings"
4064,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/9.png?im=FaceCrop,padding=0.7","Connor","Lew",75,140,88,"Kennesaw","Georgia","Eligible",75,"Junior",79,72,74,90,89,90,32,43,15,32,54,32,35,59,32,37,44,89,91,33,17,19,15,88,35,37,88,88,86,90,42,33,46,32,35,82,80,84,0,34,33,71,33,34,38,24,33,14,16,32,30,87,31,31,"SEC","Auburn","Center","Launch Ratings"
23106,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/62.png?im=FaceCrop,padding=0.7","Dane","Key",75,50,88,"Lexington","Kentucky","Eligible",18,"Senior",90,90,90,91,75,92,84,47,52,75,60,90,91,87,89,41,56,59,92,85,35,40,80,45,53,93,88,31,18,28,29,53,40,39,55,59,49,47,0,88,89,89,79,68,49,41,44,45,47,52,30,87,66,57,"Big Ten","Nebraska","Wide Receiver","Launch Ratings"
20065,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/45.png?im=FaceCrop,padding=0.7","Dante","Dowdell",74,67,88,"Picayune","Mississippi","Eligible",2,"Junior",93,83,84,87,81,85,91,55,45,78,87,65,65,84,42,43,68,62,92,82,21,24,67,57,34,54,88,64,57,61,31,48,46,35,63,52,41,42,0,60,58,89,75,90,59,34,35,42,44,45,31,95,90,34,"SEC","Kentucky","Halfback","Launch Ratings"
18659,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/59.png?im=FaceCrop,padding=0.7","Daylan","Carnell",74,65,88,"Indianapolis","Indiana","Previous",13,"Senior",91,87,86,91,76,88,54,63,44,46,71,54,67,85,29,63,84,60,92,65,48,24,57,57,87,28,88,64,61,55,38,90,49,85,87,52,55,69,0,27,55,89,60,64,74,34,10,30,14,20,41,88,62,82,"SEC","Missouri","Strong Safety","Launch Ratings"
8753,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","De'Zhaun","Stribling",74,40,88,"Kapolei","Hawaii","Previous",1,"Senior",92,88,91,91,74,92,82,48,45,75,75,92,90,86,81,40,63,41,84,85,41,36,70,37,34,90,88,38,29,40,43,43,43,32,59,61,38,37,0,92,88,92,77,67,57,22,21,11,31,22,33,92,69,49,"SEC","Ole Miss","Wide Receiver","Launch Ratings"
18637,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Deion","Burks",69,28,88,"Inkster","Michigan","Previous",4,"Senior",97,93,91,92,65,90,87,50,32,76,65,85,88,92,87,41,63,38,83,87,47,43,96,36,62,89,88,31,18,29,43,66,44,44,52,55,31,30,0,92,87,93,85,46,54,35,36,11,20,33,33,79,60,69,"SEC","Oklahoma","Wide Receiver","Launch Ratings"
5776,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/101.png?im=FaceCrop,padding=0.7","Derrick","Graham",76,154,88,"Lake Minneola","Florida","Previous",76,"Senior",75,65,73,85,92,95,40,49,39,40,54,30,29,58,27,35,51,92,90,31,28,34,30,86,21,32,88,89,85,92,45,40,53,21,28,86,88,84,0,32,31,66,30,37,39,17,17,29,10,36,29,91,40,21,"The American","Tulane","Left Tackle","Launch Ratings"
4179,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/116.png?im=FaceCrop,padding=0.7","Diego","Pavia",72,47,88,"Albuquerque","New Mexico","Previous",2,"Senior",91,88,84,99,75,99,93,35,83,83,78,22,57,89,26,38,42,33,95,88,43,45,28,36,22,24,88,41,32,28,89,54,41,30,47,30,29,28,0,22,22,89,86,65,45,86,84,93,86,87,79,97,71,31,"SEC","Vanderbilt","Quarterback","Launch Ratings"
20693,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/110.png?im=FaceCrop,padding=0.7","DJ","Harvey",70,26,88,"Palmdale","California","Previous",2,"Senior",95,93,90,94,50,87,63,49,22,67,63,57,78,93,43,44,62,48,92,82,30,33,72,44,79,44,88,35,35,34,24,88,35,74,77,40,41,39,0,45,69,91,77,42,58,36,25,24,13,32,24,85,33,95,"Big Ten","USC","Cornerback","Launch Ratings"
20700,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/60.png?im=FaceCrop,padding=0.7","Eli","Heidenreich",72,46,88,"Pittsburgh","Pennsylvania","Eligible",22,"Senior",92,87,82,97,71,87,84,41,40,75,82,83,87,85,73,33,43,52,88,87,40,36,77,59,29,81,88,62,58,60,45,34,34,28,40,62,50,59,0,84,77,88,84,60,42,32,11,11,26,21,35,92,74,38,"The American","Navy","Halfback","Launch Ratings"
33076,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Eli","Bowen",69,23,88,"Corinth","Texas","Eligible",23,"Sophomore",94,92,91,92,64,84,70,62,41,71,60,56,72,91,42,44,75,62,90,80,26,26,72,45,87,41,88,63,50,45,36,87,35,83,90,58,55,65,0,48,62,92,75,47,68,22,21,22,29,38,48,89,38,90,"SEC","Oklahoma","Cornerback","Launch Ratings"
8217,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/39.png?im=FaceCrop,padding=0.7","Ethan","Hurkett",75,99,88,"Cedar Rapids","Iowa","Previous",49,"Senior",84,77,79,88,85,92,36,85,33,38,54,35,41,71,35,75,86,83,95,35,46,37,40,42,40,35,88,50,49,43,47,93,91,44,88,42,44,53,0,35,35,80,35,40,89,17,11,13,35,35,43,94,48,45,"Big Ten","Iowa","Right Edge","Launch Ratings"
21549,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/113.png?im=FaceCrop,padding=0.7","Ike","Larsen",70,35,88,"Smithfield","Utah","Previous",6,"Senior",92,88,86,99,64,93,79,58,34,67,64,67,77,85,28,35,79,57,98,73,24,23,57,45,76,27,88,46,45,45,33,92,39,68,87,49,51,51,0,31,71,89,66,48,69,15,36,37,24,32,35,90,49,85,"Mountain West","Utah State","Free Safety","Launch Ratings"
21871,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/58.png?im=FaceCrop,padding=0.7","Isaac","Smith",72,60,88,"Fulton","Mississippi","Eligible",2,"Junior",91,86,89,93,75,85,64,72,43,59,67,47,64,84,36,44,85,71,91,65,46,38,61,60,68,37,88,64,60,56,27,86,48,72,90,53,56,66,0,36,46,90,61,58,88,10,19,14,22,25,32,93,58,74,"SEC","Mississippi State","Strong Safety","Launch Ratings"
22250,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/16.png?im=FaceCrop,padding=0.7","Isaiah","Glasker",77,75,88,"South Jordan","Utah","Previous",16,"Junior",87,83,82,89,78,91,34,77,26,33,60,64,75,80,32,75,89,77,87,61,34,30,54,57,74,30,88,34,35,34,36,93,81,58,92,47,45,46,0,28,62,83,55,32,85,24,10,26,31,25,32,91,57,82,"Big 12","BYU","Sam Backer","Launch Ratings"
20422,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/55.png?im=FaceCrop,padding=0.7","Jack","Velling",77,86,88,"Seattle","Washington","Eligible",12,"Senior",89,81,86,92,71,95,81,51,35,76,68,84,88,77,73,52,62,61,93,79,33,34,59,59,42,83,88,53,48,49,23,49,48,29,48,56,54,55,0,83,87,85,76,69,49,23,15,14,35,31,23,87,73,56,"Big Ten","Michigan State","Tight End","Launch Ratings"
7369,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Jadarian","Price",71,50,88,"Denison","Texas","Previous",24,"Junior",94,89,89,89,77,85,84,49,55,86,86,66,64,88,46,40,56,58,91,87,25,24,85,53,51,60,88,58,59,57,27,58,41,40,56,47,43,45,0,65,64,92,84,79,52,33,35,34,34,35,34,89,84,52,"Independent","Notre Dame","Halfback","Launch Ratings"
23891,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/104.png?im=FaceCrop,padding=0.7","Jaden","Nixon",70,25,88,"Las Colinas","Texas","Previous",5,"Senior",97,93,92,92,64,85,82,36,47,83,76,58,66,92,50,33,40,40,93,90,42,44,85,37,42,55,88,51,45,52,42,44,31,33,39,45,30,35,0,57,62,93,85,64,35,19,31,14,20,16,28,87,67,39,"Big 12","UCF","Halfback","Launch Ratings"
23318,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/101.png?im=FaceCrop,padding=0.7","Jake","Retzlaff",73,45,88,"Corona","California","Previous",12,"Senior",86,85,79,97,60,97,73,38,54,65,67,28,57,84,28,35,45,37,94,81,27,43,28,35,39,26,88,44,34,32,97,55,40,43,51,33,32,33,0,26,30,84,76,45,38,84,93,84,84,89,75,91,55,66,"The American","Tulane","Quarterback","Launch Ratings"
31277,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/19.png?im=FaceCrop,padding=0.7","Jake","Golday",76,80,88,"Arlington","Tennessee","Previous",11,"Senior",87,82,83,91,78,91,28,82,41,31,53,47,53,79,28,64,89,80,88,52,33,32,45,57,73,28,88,54,54,55,36,90,70,44,91,53,51,57,0,28,46,82,47,45,88,24,24,24,24,24,36,87,48,82,"Big 12","Cincinnati","Sam Backer","Launch Ratings"
19196,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Jam","Miller",70,61,88,"Tyler","Texas","Eligible",26,"Senior",92,93,88,89,77,82,84,49,29,87,86,60,69,92,65,41,63,50,91,88,24,34,92,44,40,71,88,59,53,57,31,49,41,36,59,48,36,37,0,71,70,89,84,76,55,22,13,27,26,14,43,90,83,32,"SEC","Alabama","Halfback","Launch Ratings"
8455,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/80.png?im=FaceCrop,padding=0.7","Javon","McIntyre",73,35,88,"Bear","Delaware","Previous",7,"Senior",91,88,87,91,70,88,60,67,40,42,33,62,65,86,33,43,83,55,92,56,26,43,51,54,73,31,88,64,58,53,25,89,45,75,93,50,53,65,0,32,61,89,55,55,78,31,30,24,31,12,48,88,52,80,"ACC","Pittsburgh","Strong Safety","Launch Ratings"
19111,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Jermaine","Mathews Jr.",71,29,88,"Cincinnati","Ohio","Eligible",7,"Junior",93,93,91,91,60,87,68,57,44,68,59,52,66,92,46,41,73,60,89,82,34,35,67,52,83,48,88,44,44,43,27,88,35,87,79,46,46,47,0,44,57,93,77,50,67,32,33,21,21,29,27,87,43,89,"Big Ten","Ohio State","Cornerback","Launch Ratings"
21778,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/21.png?im=FaceCrop,padding=0.7","Kaidon","Salter",73,30,88,"Cedar Hill","Texas","Previous",3,"Senior",92,91,90,97,62,91,95,41,86,87,71,35,59,90,34,33,39,34,88,88,47,38,30,35,37,26,88,34,28,30,91,52,36,33,25,26,27,28,0,31,26,90,86,55,33,79,83,90,90,92,76,87,60,27,"Big 12","Colorado","Quarterback","Launch Ratings"
20881,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/110.png?im=FaceCrop,padding=0.7","Kamari","Ramsey",72,42,88,"Palmdale","California","Previous",7,"Junior",92,89,88,92,69,88,62,60,48,65,68,56,70,86,33,40,85,62,93,70,42,37,61,53,88,33,88,45,46,46,32,90,48,85,86,52,52,52,0,33,66,89,67,62,65,33,27,28,20,37,36,93,60,90,"Big Ten","USC","Free Safety","Launch Ratings"
4336,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/5.png?im=FaceCrop,padding=0.7","Kanye","Udoh",72,55,88,"Mays Landing","New Jersey","Eligible",6,"Junior",89,81,83,98,83,91,83,39,55,86,84,58,54,79,48,35,39,71,93,85,32,32,70,75,27,55,88,66,63,67,34,39,37,21,36,71,67,65,0,63,54,88,84,87,39,36,34,35,44,36,34,97,92,51,"Big 12","Arizona State","Halfback","Launch Ratings"
21772,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Kenyon","Sadiq",75,85,88,"Idaho Falls","Idaho","Previous",18,"Junior",87,81,88,87,77,82,77,52,53,77,75,87,88,78,69,48,40,70,91,76,41,43,75,69,44,75,88,63,61,65,45,47,53,45,58,72,67,69,0,81,85,84,74,75,60,47,45,51,57,56,36,86,75,42,"Big Ten","Oregon","Tight End","Launch Ratings"
21771,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Keon","Sabb",73,44,88,"Glassboro","New Jersey","Previous",3,"Junior",93,88,89,91,74,85,68,65,48,46,69,48,79,87,40,43,87,62,86,71,33,24,65,59,83,39,88,66,61,55,45,87,49,81,85,57,56,68,0,38,48,89,66,63,81,17,22,31,14,13,45,89,62,82,"SEC","Alabama","Free Safety","Launch Ratings"
21769,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/34.png?im=FaceCrop,padding=0.7","Keylan","Rutledge",76,160,88,"Royston","Georgia","Eligible",77,"Senior",81,64,74,88,93,89,46,58,38,44,54,44,42,54,45,53,61,92,86,45,24,32,25,85,39,45,88,84,75,89,46,50,61,42,43,86,84,88,0,41,44,65,41,46,45,37,32,13,34,24,42,91,42,42,"ACC","Georgia Tech","Right Guard","Launch Ratings"
23368,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/12.png?im=FaceCrop,padding=0.7","Malik","Sherrod",68,17,88,"Oxnard","California","Previous",23,"Senior",94,91,87,91,60,85,80,30,44,80,87,65,77,90,64,25,23,45,83,90,32,32,77,35,52,67,88,53,43,42,26,56,22,39,25,39,27,28,0,72,70,91,88,43,26,32,34,30,45,33,29,85,52,53,"Mountain West","Boise State","Halfback","Launch Ratings"
5770,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Mark","Fletcher Jr.",74,65,88,"Fort Lauderdale","Florida","Eligible",4,"Junior",90,83,87,88,80,90,89,51,37,85,76,65,68,84,56,45,70,57,85,88,39,43,76,46,37,64,88,60,55,59,45,52,46,37,52,51,40,40,0,70,66,90,83,88,62,33,37,20,37,15,47,91,92,41,"ACC","Miami","Halfback","Launch Ratings"
7553,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/37.png?im=FaceCrop,padding=0.7","Matthew","Bailey",74,55,88,"Moline","Illinois","Previous",7,"Junior",91,85,89,95,75,88,50,66,45,64,71,55,69,84,29,29,86,62,93,66,26,27,56,57,90,26,88,67,61,54,47,87,44,78,90,60,56,70,0,26,61,88,65,62,75,25,37,19,22,25,46,89,62,85,"Big Ten","Illinois","Strong Safety","Launch Ratings"
19591,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/101.png?im=FaceCrop,padding=0.7","Maurice","Westmoreland",74,90,88,"Houston","Texas","Previous",0,"Senior",91,82,85,85,78,89,45,73,25,47,57,40,54,76,43,93,86,67,90,48,46,33,49,37,59,41,88,69,62,56,29,87,85,39,89,58,52,67,0,41,44,83,44,47,82,34,31,23,12,10,42,87,44,64,"The American","Tulane","Right Edge","Launch Ratings"
5772,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Nate","Frazier",70,50,88,"Compton","California","Eligible",3,"Sophomore",96,93,90,87,77,78,85,49,38,86,80,65,70,93,55,39,57,61,90,87,47,24,85,54,31,58,88,57,56,55,47,51,41,36,54,50,46,48,0,69,73,93,83,82,53,36,31,24,16,25,28,93,85,27,"SEC","Georgia","Halfback","Launch Ratings"
137,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","Nic","Anderson",76,50,88,"Katy","Texas","Previous",4,"Junior",90,89,92,88,78,87,84,45,24,77,73,89,88,86,91,48,55,58,83,85,31,31,79,49,34,89,88,37,27,36,42,43,44,49,35,62,55,51,0,86,92,91,79,71,51,25,12,16,32,30,32,83,70,31,"SEC","LSU","Wide Receiver","Launch Ratings"
9147,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/105.png?im=FaceCrop,padding=0.7","Nico","Iamaleava",78,60,88,"Long Beach","California","Previous",9,"Sophomore",90,89,90,95,78,87,85,46,88,79,72,42,50,87,30,53,59,51,96,84,45,48,44,44,44,29,88,51,50,51,81,56,49,55,52,46,38,41,0,44,40,86,81,72,52,85,89,86,89,97,73,96,73,45,"Big Ten","UCLA","Quarterback","Launch Ratings"
19877,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/104.png?im=FaceCrop,padding=0.7","Nyjalik","Kelly",77,90,88,"Fort Lauderdale","Florida","Eligible",9,"Senior",91,79,85,87,79,90,47,79,31,35,53,45,56,71,43,87,88,78,92,62,29,28,39,54,55,44,88,48,45,40,42,87,91,54,92,35,39,46,0,44,44,85,56,64,87,15,26,12,37,24,41,89,65,64,"Big 12","UCF","Right Edge","Launch Ratings"
20289,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","Patrick","Payton",77,95,88,"Miami","Florida","Previous",6,"Senior",92,85,89,79,78,90,41,74,48,31,54,46,61,83,46,94,87,75,86,57,42,26,41,38,52,49,88,39,37,36,42,88,86,55,92,29,36,42,0,47,46,85,50,52,74,37,13,20,25,37,35,85,52,57,"SEC","LSU","Right Edge","Launch Ratings"
23685,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/1.png?im=FaceCrop,padding=0.7","Payton","Zdroik",72,115,88,"Brentwood","California","Previous",96,"Senior",79,66,72,87,89,95,29,91,37,34,52,27,35,56,27,72,85,89,92,28,32,32,31,55,25,27,88,64,61,54,24,93,86,32,87,54,54,57,0,28,26,69,29,32,87,23,31,23,16,32,42,94,31,22,"Mountain West","Air Force","Defensive Tackle","Launch Ratings"
3245,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/125.png?im=FaceCrop,padding=0.7","Preston","Zachman",73,52,88,"Elysburg","Pennsylvania","Previous",14,"Senior",88,85,84,91,76,90,46,74,46,46,56,64,72,82,27,29,88,73,95,59,44,32,46,56,66,25,88,45,45,46,47,88,53,72,88,54,55,68,0,27,64,86,55,64,84,33,31,37,23,34,40,93,61,84,"Big Ten","Wisconsin","Strong Safety","Launch Ratings"
5961,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/40.png?im=FaceCrop,padding=0.7","Rocco","Becht",73,50,88,"Wesley Chapel","Florida","Previous",3,"Junior",88,84,79,98,75,94,83,39,85,74,76,28,44,84,26,45,53,54,96,83,35,37,45,50,33,22,88,42,42,36,92,64,43,30,55,45,44,43,0,29,24,83,81,65,50,85,89,85,86,90,83,97,69,34,"Big Ten","Iowa State","Quarterback","Launch Ratings"
23333,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/11.png?im=FaceCrop,padding=0.7","Sawyer","Robertson",76,60,88,"Lubbock","Texas","Previous",13,"Senior",85,85,82,92,71,88,75,56,73,79,83,33,54,84,30,53,63,50,91,80,30,48,39,50,31,26,88,64,44,46,81,42,55,45,64,61,48,48,0,31,29,84,77,73,62,89,85,92,80,93,79,91,67,39,"Big 12","Baylor","Quarterback","Launch Ratings"
996,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/30.png?im=FaceCrop,padding=0.7","Shyheim","Brown",74,41,88,"Lake City","Florida","Previous",1,"Senior",89,86,87,94,72,90,66,64,47,45,25,64,72,85,26,65,85,62,92,74,37,28,44,60,74,25,88,63,64,55,27,91,48,83,87,50,54,69,0,26,65,89,66,61,77,14,10,20,30,16,28,89,58,83,"ACC","Florida State","Strong Safety","Launch Ratings"
21931,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/118.png?im=FaceCrop,padding=0.7","Terion","Stewart",69,62,88,"Memphis","Tennessee","Previous",8,"Senior",89,81,82,92,85,90,83,53,46,91,81,58,56,81,51,44,67,56,92,84,42,42,62,45,30,55,88,55,53,54,39,34,44,28,56,53,40,43,0,57,52,87,78,87,61,30,16,30,27,31,39,97,97,37,"ACC","Virginia Tech","Halfback","Launch Ratings"
7617,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Terrance","Carter Jr.",74,85,88,"Killeen","Texas","Previous",7,"Junior",88,87,85,90,72,87,82,37,44,81,75,83,89,81,72,29,22,63,91,83,24,25,72,67,41,78,88,58,55,56,25,39,28,35,31,64,61,57,0,83,86,84,79,78,32,31,35,36,45,41,31,88,77,34,"Big 12","Texas Tech","Tight End","Launch Ratings"
18641,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/17.png?im=FaceCrop,padding=0.7","TJ","Bush Jr.",75,100,88,"Woodbridge","Virginia","Eligible",3,"Junior",87,78,79,89,85,88,38,86,32,40,56,31,34,72,34,72,88,84,91,31,28,34,25,45,44,35,88,44,45,41,30,90,88,33,90,40,42,50,0,35,32,82,31,38,89,15,19,16,29,20,37,93,55,53,"ACC","Cal","Left Edge","Launch Ratings"
415,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Trey","Moore",75,89,88,"San Antonio","Texas","Previous",8,"Senior",94,89,84,85,75,95,53,75,28,49,52,44,56,75,44,96,92,65,87,44,26,44,45,43,63,44,88,68,60,56,27,97,87,44,95,60,54,68,0,44,44,86,44,46,84,14,34,30,33,26,48,86,45,71,"SEC","Texas","Will Backer","Launch Ratings"
19664,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Trey","Zuhn III",79,160,88,"Fort Collins","Colorado","Previous",60,"Junior",74,68,72,88,91,91,39,52,48,42,54,33,31,55,33,33,58,94,89,32,30,46,32,84,12,35,88,90,86,93,39,44,58,14,30,85,87,83,0,29,35,69,34,42,40,25,37,27,26,36,40,91,42,13,"SEC","Texas A&M","Left Tackle","Launch Ratings"
14804,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Tyler","Onyedim",76,135,88,"Richmond","Texas","Previous",11,"Senior",80,67,71,84,91,91,47,89,27,44,58,24,27,55,25,56,82,91,97,26,29,29,25,47,24,25,88,53,54,54,47,89,85,19,84,60,52,60,0,25,24,74,24,44,92,25,22,35,32,12,28,92,46,25,"SEC","Texas A&M","Defensive Tackle","Launch Ratings"
950,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Zachariah","Branch",70,20,88,"Las Vegas","Nevada","Eligible",1,"Junior",98,98,94,90,53,83,96,31,41,87,63,76,85,97,90,32,34,34,84,97,28,29,95,27,47,81,88,31,18,29,27,57,31,40,39,42,25,24,0,82,90,97,91,37,32,31,33,37,38,38,31,75,45,37,"SEC","Georgia","Wide Receiver","Launch Ratings"
20692,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","Zxavian","Harris",79,160,88,"Canton","Mississippi","Eligible",51,"Senior",73,63,70,84,97,90,24,92,33,46,50,24,29,51,24,67,88,90,95,24,42,46,32,58,30,24,88,71,65,57,41,89,89,24,87,63,55,70,0,24,24,65,24,48,81,16,16,10,20,34,30,95,46,35,"SEC","Ole Miss","Defensive Tackle","Launch Ratings"
23184,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/12.png?im=FaceCrop,padding=0.7","A'Marion","McCoy",72,16,87,"East Palo Alto","California","Previous",7,"Senior",94,91,90,95,54,92,66,49,39,64,55,60,72,90,30,38,58,45,93,77,23,25,70,36,84,29,87,31,32,32,24,94,32,78,79,32,34,33,0,35,63,92,73,29,52,32,35,33,37,35,33,76,32,87,"Mountain West","Boise State","Cornerback","Launch Ratings"
5767,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/38.png?im=FaceCrop,padding=0.7","Amare","Ferrell",74,40,87,"Lake City","Florida","Eligible",1,"Junior",89,85,87,94,75,90,39,70,36,34,55,64,80,85,39,60,83,62,93,64,36,36,41,53,77,39,87,63,59,52,36,93,55,74,89,56,50,62,0,39,71,87,58,34,68,24,24,24,24,24,36,85,34,88,"Big Ten","Indiana","Strong Safety","Launch Ratings"
7422,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/66.png?im=FaceCrop,padding=0.7","Andrew","Simpson",72,78,87,"Norwalk","California","Previous",2,"Senior",89,83,85,88,80,93,38,83,52,37,55,56,77,81,40,65,85,82,90,62,32,32,49,54,74,39,87,45,45,46,40,93,75,48,92,56,54,55,0,41,61,84,57,40,76,28,37,16,32,23,41,87,49,82,"ACC","North Carolina","Mike Backer","Launch Ratings"
22361,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Behren","Morton",74,60,87,"Eastland","Texas","Previous",2,"Senior",84,82,81,90,69,91,77,23,65,70,72,37,51,81,30,40,44,42,90,78,39,44,33,34,33,27,87,55,41,41,82,32,35,30,27,52,37,37,0,38,40,82,76,60,35,87,84,92,81,93,75,88,63,32,"Big 12","Texas Tech","Quarterback","Launch Ratings"
20374,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Billy","Schrauth",76,150,87,"Campbellsport","Wisconsin","Previous",74,"Junior",75,61,71,81,95,93,46,62,40,45,52,33,35,55,37,43,68,91,86,33,43,36,34,84,35,32,87,85,79,90,45,48,63,32,33,84,85,83,0,33,34,64,32,49,45,35,24,24,34,17,37,90,48,35,"Independent","Notre Dame","Left Guard","Launch Ratings"
18317,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/94.png?im=FaceCrop,padding=0.7","Boo","Carter",71,40,87,"Chattanooga","Tennessee","Eligible",23,"Sophomore",95,93,90,95,64,82,85,60,63,83,75,79,81,92,73,46,83,62,91,87,24,26,89,54,86,77,87,45,46,46,35,83,42,79,89,53,52,51,0,75,82,92,83,61,69,45,46,51,56,56,36,93,63,82,"SEC","Tennessee","Cornerback","Launch Ratings"
19946,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/83.png?im=FaceCrop,padding=0.7","Bradley","Weaver",76,105,87,"Hilliard","Ohio","Previous",94,"Senior",86,79,79,85,85,91,44,82,34,41,57,27,29,68,26,78,85,85,91,55,33,37,35,42,42,27,87,45,45,46,33,92,90,26,92,49,48,51,0,27,28,81,51,56,83,27,19,10,12,18,16,89,53,48,"Big Ten","Rutgers","Right Edge","Launch Ratings"
22503,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Brett","Thorson",74,75,87,"Melbourne","Non-US","Eligible",92,"Senior",65,64,71,87,65,74,29,43,27,30,55,26,49,61,30,33,45,27,90,37,94,99,29,41,37,33,87,35,27,27,42,28,36,40,29,34,37,39,0,28,36,65,26,33,39,30,14,21,27,33,36,95,48,38,"SEC","Georgia","Punter","Launch Ratings"
2099,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/61.png?im=FaceCrop,padding=0.7","Brian","Nelson II",72,30,87,"Pearland","Texas","Previous",7,"Sophomore",93,93,90,95,66,90,65,65,49,68,59,61,79,92,32,32,73,66,94,75,26,25,71,52,84,33,87,34,34,33,32,93,30,77,84,58,53,64,0,35,72,89,71,48,65,32,33,31,45,43,25,90,48,87,"ACC","NC State","Cornerback","Launch Ratings"
21181,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Bryce","Boettcher",74,65,87,"Eugene","Oregon","Previous",28,"Senior",88,83,82,87,75,88,54,75,60,34,65,54,67,81,35,72,89,75,91,62,36,36,39,53,72,35,87,51,51,51,60,90,64,45,92,56,55,55,0,35,55,83,58,52,88,60,68,64,55,86,62,90,55,80,"Big Ten","Oregon","Mike Backer","Launch Ratings"
2307,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/69.png?im=FaceCrop,padding=0.7","Cam","Porter",70,53,87,"Cincinnati","Ohio","Previous",4,"Senior",91,83,82,88,81,85,85,53,47,79,92,63,67,84,41,46,69,53,87,85,32,32,70,45,31,44,87,60,58,55,25,46,47,34,65,52,41,43,0,60,49,87,82,83,58,22,28,20,28,36,43,93,89,60,"Big Ten","Northwestern","Halfback","Launch Ratings"
23129,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","Cayden","Lee",71,15,87,"Kennesaw","Georgia","Eligible",19,"Junior",96,93,91,90,54,87,83,40,34,70,64,84,93,91,88,35,46,29,75,86,37,25,87,29,60,89,87,30,21,30,38,64,36,43,43,44,25,29,0,86,92,94,84,38,40,32,17,25,10,32,34,82,60,67,"SEC","Ole Miss","Wide Receiver","Launch Ratings"
20216,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/55.png?im=FaceCrop,padding=0.7","Chrishon","McCray",70,8,87,"Avon","Indiana","Previous",13,"Junior",93,92,90,95,48,91,87,31,44,76,73,89,87,90,92,24,26,26,89,89,21,27,85,30,53,89,87,27,12,20,28,51,28,36,26,42,32,33,0,91,88,92,85,40,25,14,17,36,18,28,33,79,45,48,"Big Ten","Michigan State","Wide Receiver","Launch Ratings"
21403,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Christian","Gray",72,30,87,"St. Louis","Missouri","Eligible",6,"Junior",95,91,92,92,61,87,83,52,35,79,66,67,77,91,36,47,72,62,93,85,32,33,76,47,83,34,87,44,43,43,24,85,50,84,83,51,49,48,0,38,73,92,79,51,59,21,31,15,23,38,23,78,44,88,"Independent","Notre Dame","Cornerback","Launch Ratings"
725,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","CJ","Baxter",73,67,87,"Orlando","Florida","Eligible",4,"Sophomore",94,90,88,86,81,80,79,56,31,85,84,73,75,88,54,48,71,58,85,87,31,36,90,46,47,63,87,61,54,61,37,54,46,38,67,51,37,39,0,70,67,91,85,83,62,17,34,31,21,22,41,87,87,45,"SEC","Texas","Halfback","Launch Ratings"
19414,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/7.png?im=FaceCrop,padding=0.7","Corey","Rucker",72,53,87,"Bentonia","Mississippi","Previous",7,"Senior",92,88,91,93,78,91,84,53,55,78,75,94,88,87,85,47,71,58,87,85,36,38,84,55,55,89,87,38,27,36,25,48,48,35,68,60,55,54,0,88,91,90,81,79,63,25,34,41,32,46,22,91,77,41,"Sun Belt","Arkansas State","Wide Receiver","Launch Ratings"
3387,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Dalton","Brooks",72,40,87,"Shiner","Texas","Eligible",25,"Junior",92,89,93,87,70,88,69,57,44,42,41,44,72,87,42,39,81,57,88,64,46,25,59,59,81,39,87,64,61,52,42,89,48,77,85,50,54,67,0,38,48,90,63,57,67,36,11,16,16,11,36,83,55,86,"SEC","Texas A&M","Strong Safety","Launch Ratings"
8225,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/42.png?im=FaceCrop,padding=0.7","Damian","Ilalio",74,140,87,"Manhattan","Kansas","Previous",56,"Senior",70,64,67,92,93,89,27,90,45,43,57,23,30,48,26,64,85,86,89,23,42,34,31,59,30,27,87,69,64,55,35,88,86,25,84,61,53,65,0,26,27,60,26,41,91,30,14,10,26,15,45,91,42,26,"Big 12","Kansas State","Defensive Tackle","Launch Ratings"
7502,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Damonic","Williams",73,163,87,"Torrance","California","Eligible",52,"Senior",70,61,69,85,95,85,25,90,39,45,51,23,24,44,26,64,83,85,99,26,36,45,35,56,25,25,87,67,62,57,30,87,86,23,82,62,56,66,0,24,23,59,25,45,93,22,33,36,20,33,36,96,48,20,"SEC","Oklahoma","Defensive Tackle","Launch Ratings"
18054,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/41.png?im=FaceCrop,padding=0.7","Dean","Miller",77,80,87,"Los Angeles","California","Previous",5,"Senior",89,81,81,85,76,88,34,74,33,32,58,47,55,73,49,91,83,74,91,55,31,35,44,37,44,50,87,39,38,33,33,90,82,49,92,26,35,40,0,48,48,82,46,31,85,30,24,23,12,37,30,88,44,51,"Big 12","Kansas","Right Edge","Launch Ratings"
19234,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","DeAndre","Moore Jr.",72,32,87,"Anaheim","California","Eligible",0,"Junior",93,92,90,90,76,86,88,49,32,82,76,90,89,91,85,44,61,38,95,87,45,42,95,34,54,90,87,37,23,35,35,47,41,35,61,60,34,33,0,91,89,90,85,71,56,30,25,10,37,10,45,92,49,40,"SEC","Texas","Wide Receiver","Launch Ratings"
10509,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/112.png?im=FaceCrop,padding=0.7","Devon","Dampier",71,44,87,"Phoenix","Arizona","Previous",4,"Junior",93,92,88,95,66,84,95,35,86,89,75,52,53,92,45,37,45,44,90,92,33,31,60,43,35,45,87,44,43,43,86,27,36,44,45,49,38,42,0,51,57,88,87,61,44,85,88,82,93,91,77,87,63,45,"Big 12","Utah","Quarterback","Launch Ratings"
9353,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/50.png?im=FaceCrop,padding=0.7","Dorian","Fleming",75,85,87,"Henrico","Virginia","Previous",9,"Sophomore",87,84,85,90,73,85,80,45,35,79,75,87,87,79,69,45,54,65,91,82,33,36,69,64,32,77,87,58,55,53,26,34,46,33,48,60,59,57,0,84,85,84,76,70,52,23,31,29,35,32,31,88,78,35,"Big Ten","Maryland","Tight End","Launch Ratings"
23622,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/47.png?im=FaceCrop,padding=0.7","Duke","Watson",72,20,87,"Forsyth","Georgia","Eligible",26,"Sophomore",96,94,90,87,64,75,78,37,46,85,84,52,63,93,43,31,34,36,88,88,48,48,80,34,49,58,87,51,50,48,46,45,30,34,36,44,29,34,0,57,56,94,85,60,33,31,32,21,13,38,43,85,65,41,"ACC","Louisville","Halfback","Launch Ratings"
21144,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/40.png?im=FaceCrop,padding=0.7","Dylan","Barrett",77,165,87,"St. Charles","Illinois","Previous",61,"Senior",72,58,71,85,93,90,30,57,45,41,55,31,32,56,30,33,60,93,91,29,42,37,27,81,28,27,87,87,81,92,25,44,60,28,34,83,79,88,0,29,30,57,29,45,44,12,21,14,22,11,48,92,41,26,"Big Ten","Iowa State","Center","Launch Ratings"
3437,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/1.png?im=FaceCrop,padding=0.7","Dylan","Carson",72,55,87,"Marysville","Washington","Eligible",5,"Senior",88,84,91,88,88,93,87,67,44,85,92,60,65,83,39,67,26,65,85,80,47,48,63,64,46,51,87,51,39,50,32,40,66,22,69,60,46,48,0,65,43,87,80,88,70,23,30,19,24,16,35,97,90,33,"Mountain West","Air Force","Fullback","Launch Ratings"
18368,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/62.png?im=FaceCrop,padding=0.7","Dylan","Raiola",75,70,87,"Buford","Georgia","Eligible",15,"Sophomore",86,85,82,89,69,82,72,54,83,70,72,37,41,84,26,49,64,50,91,79,63,69,28,46,44,27,87,63,46,46,77,35,54,42,53,60,45,45,0,39,44,82,76,66,61,83,87,85,90,97,82,91,66,42,"Big Ten","Nebraska","Quarterback","Launch Ratings"
6329,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/110.png?im=FaceCrop,padding=0.7","Eli","Sanders",70,32,87,"Oceanside","California","Previous",1,"Senior",92,88,88,91,68,85,85,41,47,87,87,65,69,85,56,37,44,55,93,88,30,35,84,48,45,63,87,56,53,51,24,48,34,35,45,48,45,44,0,67,64,90,87,66,41,31,32,34,36,35,35,87,72,46,"Big Ten","USC","Halfback","Launch Ratings"
20161,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/62.png?im=FaceCrop,padding=0.7","Emmett","Johnson",71,40,87,"Minneapolis","Minnesota","Previous",21,"Junior",92,89,86,91,66,85,87,36,47,83,78,77,84,87,65,33,40,59,88,89,42,44,74,54,41,73,87,56,55,57,42,45,31,33,39,45,30,35,0,83,74,90,84,63,35,19,31,14,20,16,28,89,66,39,"Big Ten","Nebraska","Halfback","Launch Ratings"
20875,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/120.png?im=FaceCrop,padding=0.7","Ephesians","Prysock",76,35,87,"Canyon Country","California","Eligible",7,"Senior",91,88,91,94,72,90,55,67,44,63,50,42,66,86,32,47,81,52,93,74,37,36,56,58,84,35,87,65,60,52,28,88,44,89,83,58,55,68,0,35,44,90,70,55,77,34,14,13,35,38,38,84,44,80,"Big Ten","Washington","Cornerback","Launch Ratings"
22341,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/92.png?im=FaceCrop,padding=0.7","Eric","McAlister",75,45,87,"Azle","Texas","Previous",1,"Senior",91,88,91,91,72,89,78,51,41,75,72,87,88,86,90,42,61,36,92,83,45,35,65,35,31,89,87,39,29,39,37,49,41,36,55,60,30,54,0,87,91,90,81,68,52,24,25,30,29,11,45,93,67,67,"Big 12","TCU","Wide Receiver","Launch Ratings"
8103,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/54.png?im=FaceCrop,padding=0.7","Ernest","Hausmann",74,75,87,"Columbus","Nebraska","Eligible",15,"Senior",90,84,86,90,80,90,43,77,36,31,53,31,65,79,43,64,89,72,91,57,36,36,43,51,63,43,87,52,52,52,36,92,71,46,92,50,51,58,0,43,43,86,53,31,90,24,24,24,24,24,36,95,55,67,"Big Ten","Michigan","Will Backer","Launch Ratings"
7919,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/119.png?im=FaceCrop,padding=0.7","Fa'alili","Fa'amoe",77,157,87,"Pago Pago","Non-US","Previous",79,"Senior",77,65,72,87,94,93,41,48,38,39,55,34,35,57,29,37,54,94,83,34,28,28,30,84,30,35,87,87,82,91,46,40,50,34,36,85,87,83,0,32,35,66,32,38,40,37,26,36,22,35,43,89,40,32,"ACC","Wake Forest","Right Tackle","Launch Ratings"
4121,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/38.png?im=FaceCrop,padding=0.7","Fernando","Mendoza",77,65,87,"Miami","Florida","Previous",15,"Junior",84,84,79,92,74,90,77,48,82,69,74,33,35,82,31,44,59,48,93,76,33,35,25,48,25,32,87,45,46,43,87,64,51,31,38,51,44,49,0,32,35,82,75,75,56,84,90,86,81,92,79,92,71,22,"Big Ten","Indiana","Quarterback","Launch Ratings"
20536,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/74.png?im=FaceCrop,padding=0.7","Freddie","Brock IV",70,32,87,"Rochester","New York","Previous",25,"Senior",93,90,85,91,67,87,82,36,35,82,86,64,76,89,57,30,37,54,92,87,27,21,75,45,25,67,87,59,53,52,28,41,29,32,35,48,46,51,0,75,66,89,84,61,38,28,17,33,21,38,26,89,72,31,"Big 12","Oklahoma State","Halfback","Launch Ratings"
21686,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/132.png?im=FaceCrop,padding=0.7","George","Pettaway",70,36,87,"Suffolk","Virginia","Previous",6,"Junior",93,90,90,89,70,83,85,41,48,77,89,69,75,88,55,37,49,52,91,87,31,30,87,45,51,64,87,58,49,51,35,69,37,45,46,52,51,53,0,70,77,92,84,74,44,25,22,13,35,22,47,87,73,49,"Sun Belt","James Madison","Halfback","Launch Ratings"
19990,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Germie","Bernard",73,44,87,"Las Vegas","Nevada","Eligible",5,"Senior",93,89,88,89,74,88,87,50,24,80,73,90,91,87,83,43,66,54,87,89,42,42,87,38,53,90,87,29,19,28,32,56,45,39,61,62,48,48,0,91,87,91,80,64,59,22,31,12,33,21,32,90,65,58,"SEC","Alabama","Wide Receiver","Launch Ratings"
8063,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Gracen","Halton",74,132,87,"San Diego","California","Eligible",56,"Senior",87,73,76,85,87,88,29,83,29,47,58,29,34,63,29,84,82,83,91,29,26,25,15,52,31,29,87,52,54,51,30,89,93,30,95,55,57,54,0,29,29,75,29,46,80,17,21,17,26,20,48,85,47,32,"SEC","Oklahoma","Defensive Tackle","Launch Ratings"
1547,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Isaiah","Horton",76,48,87,"Nashville","Tennessee","Previous",1,"Junior",92,90,92,88,77,88,80,52,42,74,69,91,89,87,85,47,55,51,91,83,33,38,67,45,29,87,87,36,25,33,34,45,48,34,66,60,48,47,0,89,92,89,78,72,51,34,25,10,33,36,42,88,65,34,"SEC","Alabama","Wide Receiver","Launch Ratings"
22333,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/4.png?im=FaceCrop,padding=0.7","Ismail","Mahdi",69,28,87,"Murphy","Texas","Eligible",21,"Senior",93,90,88,95,66,86,85,32,25,87,76,66,75,87,65,25,30,55,93,88,46,29,68,45,45,71,87,55,54,52,35,53,29,35,32,45,42,42,0,74,73,93,87,67,30,26,36,28,18,20,46,92,65,44,"Big 12","Arizona","Halfback","Launch Ratings"
21404,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Jaden","Greathouse",73,55,87,"Austin","Texas","Eligible",1,"Junior",92,92,93,88,75,85,82,55,28,79,76,92,88,88,86,48,68,46,85,85,34,35,82,42,42,88,87,38,27,37,31,39,44,31,66,63,42,42,0,87,90,93,81,67,60,24,34,27,21,16,42,92,71,36,"Independent","Notre Dame","Wide Receiver","Launch Ratings"
7555,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/54.png?im=FaceCrop,padding=0.7","Jaishawn","Barham",75,88,87,"District Heights","Maryland","Eligible",1,"Senior",89,84,84,87,78,92,57,78,47,45,68,60,65,82,39,71,87,77,91,49,27,38,45,54,70,39,87,65,57,53,28,94,78,39,90,56,55,63,0,36,36,86,47,48,87,29,23,17,34,21,40,90,56,74,"Big Ten","Michigan","Mike Backer","Launch Ratings"
8874,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/105.png?im=FaceCrop,padding=0.7","Jaivian","Thomas",70,30,87,"Oakland","California","Eligible",21,"Junior",95,91,91,88,66,83,84,35,43,76,84,56,62,90,54,27,35,55,90,87,25,47,82,53,31,58,87,56,56,54,40,45,27,34,35,52,50,52,0,65,55,93,83,59,31,23,10,26,29,37,38,87,70,25,"Big Ten","UCLA","Halfback","Launch Ratings"
10022,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/124.png?im=FaceCrop,padding=0.7","Jalen","Buckley",71,50,87,"Aurora","Illinois","Previous",6,"Junior",90,85,83,89,79,82,90,52,47,84,90,69,73,83,63,40,62,40,94,85,43,33,59,41,28,66,87,57,35,36,34,38,42,30,59,49,37,37,0,74,66,87,79,84,57,12,29,35,31,11,43,91,88,34,"MAC","Western Michigan","Halfback","Launch Ratings"
3533,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/41.png?im=FaceCrop,padding=0.7","Jalon","Daniels",72,60,87,"Lawndale","California","Previous",6,"Senior",92,91,85,93,73,85,87,34,93,78,72,25,62,91,24,41,51,50,82,87,30,39,31,45,33,24,87,49,43,45,75,28,41,35,34,59,41,43,0,25,24,88,85,67,50,75,83,84,92,90,85,84,70,34,"Big 12","Kansas","Quarterback","Launch Ratings"
7360,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","James","Peoples",70,43,87,"San Antonio","Texas","Eligible",20,"Sophomore",95,91,90,88,70,75,84,43,49,84,84,57,64,91,51,37,54,55,89,89,35,34,85,51,33,58,87,57,54,54,33,46,36,34,50,54,52,53,0,66,64,91,84,74,45,42,44,45,41,41,31,92,79,30,"Big Ten","Ohio State","Halfback","Launch Ratings"
20954,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/19.png?im=FaceCrop,padding=0.7","Joe","Royer",77,90,87,"Cincinnati","Ohio","Previous",11,"Senior",85,80,83,94,79,86,69,59,42,72,70,87,87,77,65,58,75,73,86,71,47,38,59,69,39,75,87,64,65,65,25,48,55,27,61,69,64,64,0,81,84,80,60,73,61,16,23,32,27,17,25,88,70,55,"Big 12","Cincinnati","Tight End","Launch Ratings"
18922,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/92.png?im=FaceCrop,padding=0.7","Josh","Hoover",74,40,87,"Heath","Texas","Previous",10,"Junior",79,78,76,93,60,89,63,38,52,54,60,29,41,77,24,35,33,34,92,73,35,45,24,31,44,24,87,34,28,30,83,46,35,31,36,27,27,28,0,26,30,75,71,35,34,90,89,87,71,92,83,86,45,61,"Big 12","TCU","Quarterback","Launch Ratings"
8108,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/54.png?im=FaceCrop,padding=0.7","Justice","Haynes",71,45,87,"Buford","Georgia","Eligible",22,"Junior",94,88,91,88,72,83,87,52,45,85,85,67,70,87,51,42,69,52,91,87,24,25,82,39,62,61,87,51,51,51,24,53,43,38,65,47,44,45,0,71,68,92,84,79,61,34,43,44,45,47,44,92,82,44,"Big Ten","Michigan","Halfback","Launch Ratings"
8051,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","Kapena","Gushiken",72,25,87,"Pukalani","Hawaii","Eligible",14,"Senior",94,89,90,93,63,89,58,49,37,39,53,56,72,87,35,40,71,49,84,70,40,47,58,55,84,39,87,63,52,41,27,88,42,83,87,57,53,64,0,37,61,95,64,48,60,24,23,33,34,17,38,87,38,80,"SEC","Ole Miss","Cornerback","Launch Ratings"
18631,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/87.png?im=FaceCrop,padding=0.7","Kentrel","Bullock",70,45,87,"Columbia","Mississippi","Previous",3,"Senior",92,89,88,91,72,85,87,45,26,86,85,71,74,87,57,35,47,53,93,88,40,27,77,45,27,65,87,58,56,57,42,44,35,33,45,45,43,44,0,72,67,88,84,78,43,22,26,15,19,24,30,87,76,41,"Sun Belt","South Alabama","Halfback","Launch Ratings"
10716,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Kip","Lewis",73,67,87,"Carthage","Texas","Previous",10,"Junior",90,85,87,88,70,89,47,64,36,26,59,65,75,83,47,64,83,61,81,47,36,36,45,53,75,47,87,59,57,50,36,92,49,48,85,50,48,54,0,47,67,85,47,26,85,24,24,24,24,24,36,86,26,84,"SEC","Oklahoma","Will Backer","Launch Ratings"
23292,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/13.png?im=FaceCrop,padding=0.7","KP","Price",73,40,87,"Baltimore","Maryland","Eligible",2,"Junior",90,86,87,93,73,87,53,62,41,70,30,51,72,83,29,46,82,61,92,67,31,33,65,52,82,30,87,64,60,55,32,89,47,73,87,52,57,69,0,30,61,88,64,61,77,12,33,33,29,28,27,92,62,85,"ACC","Boston College","Strong Safety","Launch Ratings"
19173,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/110.png?im=FaceCrop,padding=0.7","Lake","McRee",76,89,87,"Austin","Texas","Previous",87,"Senior",87,82,88,87,76,87,69,53,30,72,75,87,85,77,69,53,68,67,90,77,28,44,65,67,48,77,87,56,53,52,40,42,50,23,53,64,62,57,0,83,84,83,73,69,55,11,26,26,29,38,35,90,68,35,"Big Ten","USC","Tight End","Launch Ratings"
719,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/112.png?im=FaceCrop,padding=0.7","Lander","Barton",77,76,87,"Cottonwood Heights","Utah","Eligible",8,"Senior",92,83,86,94,83,92,51,84,46,43,56,44,60,78,45,84,88,85,90,55,40,45,47,62,67,39,87,66,61,56,25,92,84,47,89,62,57,67,0,40,44,85,54,65,82,21,33,28,28,33,47,92,56,71,"Big 12","Utah","Sam Backer","Launch Ratings"
19793,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/60.png?im=FaceCrop,padding=0.7","Landon","Robinson",72,127,87,"Fairlawn","Ohio","Eligible",96,"Senior",84,75,76,90,89,91,28,84,35,45,56,30,38,65,30,75,82,86,88,27,45,36,37,55,51,27,87,66,63,53,35,90,88,33,89,60,54,67,0,30,30,74,29,44,87,22,13,18,36,21,31,95,45,43,"The American","Navy","Defensive Tackle","Launch Ratings"
20571,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/80.png?im=FaceCrop,padding=0.7","Lyndon","Cooper",74,155,87,"Atlanta","Georgia","Previous",56,"Senior",65,58,58,89,90,90,42,52,42,42,50,26,24,53,28,24,58,94,92,28,28,40,24,78,28,24,87,88,80,96,41,34,55,24,27,76,74,80,0,24,24,57,24,39,41,19,17,37,32,13,33,94,39,26,"ACC","Pittsburgh","Center","Launch Ratings"
23475,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/62.png?im=FaceCrop,padding=0.7","Marques","Watson-Trent",71,65,87,"Pittsburgh","Pennsylvania","Previous",26,"Senior",89,80,82,95,75,90,43,77,39,38,64,55,88,78,33,71,85,84,96,55,29,29,45,51,70,34,87,48,44,36,44,86,65,33,91,40,44,49,0,31,60,84,52,36,92,25,29,11,36,12,28,93,46,77,"Big Ten","Nebraska","Will Backer","Launch Ratings"
6135,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/116.png?im=FaceCrop,padding=0.7","Martel","Hight",72,20,87,"Rome","Georgia","Eligible",4,"Junior",93,90,93,93,59,89,73,59,34,70,64,74,73,90,75,40,68,47,91,81,43,46,88,56,85,74,87,62,58,52,37,87,37,78,85,54,54,62,0,73,75,91,77,40,69,24,27,31,10,15,44,85,36,87,"SEC","Vanderbilt","Cornerback","Launch Ratings"
20802,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/19.png?im=FaceCrop,padding=0.7","Matthew","McDoom",69,20,87,"Winter Garden","Florida","Eligible",0,"Senior",95,93,91,97,52,89,73,48,32,69,47,64,74,93,48,35,67,46,91,86,27,40,84,58,80,46,87,61,48,40,30,87,32,74,82,51,52,58,0,49,72,92,78,28,75,21,10,20,14,38,32,85,28,85,"Big 12","Cincinnati","Cornerback","Launch Ratings"
5578,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/25.png?im=FaceCrop,padding=0.7","Mickey","Rewolinski",78,137,87,"Caledonia","Wisconsin","Previous",63,"Senior",75,67,72,85,87,91,40,47,36,37,56,36,36,57,31,40,52,89,83,36,45,44,33,84,37,35,87,88,85,90,25,37,49,31,31,79,77,81,0,34,33,65,32,40,38,31,28,34,32,23,34,86,37,31,"MAC","Eastern Michigan","Left Guard","Launch Ratings"
22933,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/4.png?im=FaceCrop,padding=0.7","Noah","Fifita",70,26,87,"Huntington Beach","California","Previous",1,"Junior",85,85,79,96,59,90,79,24,61,71,73,28,52,85,24,28,31,30,90,82,65,77,33,30,23,23,87,22,22,21,60,34,31,19,42,23,22,25,0,30,31,79,80,35,29,89,83,89,84,88,97,93,45,21,"Big 12","Arizona","Quarterback","Launch Ratings"
6904,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/125.png?im=FaceCrop,padding=0.7","Nyzier","Fourqurean",73,28,87,"Mentor","Ohio","Previous",3,"Senior",91,89,90,93,66,91,44,62,45,70,41,29,65,87,24,31,77,50,90,74,38,28,49,58,84,25,87,64,61,55,37,90,42,92,82,61,56,69,0,25,27,88,72,53,72,30,25,19,21,24,37,87,44,89,"Big Ten","Wisconsin","Cornerback","Launch Ratings"
20464,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/6.png?im=FaceCrop,padding=0.7","O'Mega","Blake",74,22,87,"Rock Hill","South Carolina","Previous",9,"Senior",94,88,95,91,72,87,77,38,26,74,74,93,88,87,91,31,39,30,88,84,41,46,77,31,36,87,87,30,22,32,40,48,28,35,39,52,24,22,0,85,91,92,82,48,33,10,37,35,31,20,45,88,55,39,"SEC","Arkansas","Wide Receiver","Launch Ratings"
10512,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","OJ","Frederique Jr.",72,20,87,"Fort Lauderdale","Florida","Eligible",29,"Sophomore",93,91,92,91,58,81,71,59,35,64,54,41,69,90,28,37,68,51,93,76,37,36,54,57,88,31,87,63,58,53,39,83,37,81,80,56,53,62,0,32,32,91,70,43,76,30,35,12,33,29,47,84,35,85,"ACC","Miami","Cornerback","Launch Ratings"
6686,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/11.png?im=FaceCrop,padding=0.7","Omar","Aigbedion",75,150,87,"Katy","Texas","Previous",68,"Senior",69,65,66,87,93,91,39,51,32,40,52,26,32,59,31,33,53,91,91,31,44,30,31,82,27,31,87,87,83,91,34,39,52,30,33,83,80,85,0,30,26,59,27,40,39,18,19,32,32,27,44,92,40,26,"Big 12","Baylor","Right Guard","Launch Ratings"
19495,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/9.png?im=FaceCrop,padding=0.7","Raion","Strader",72,23,87,"Pittsburgh","Pennsylvania","Eligible",13,"Junior",93,91,90,93,61,88,72,57,40,70,54,64,71,90,26,42,72,57,92,79,33,33,69,33,72,26,87,44,43,43,47,92,36,80,87,45,45,45,0,22,64,90,75,50,77,19,12,27,19,18,21,87,44,89,"SEC","Auburn","Cornerback","Launch Ratings"
22231,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/116.png?im=FaceCrop,padding=0.7","Randon","Fontenette",74,60,87,"Freeport","Texas","Eligible",2,"Junior",90,86,85,94,75,88,60,67,48,47,31,46,71,84,33,41,85,65,93,65,35,42,53,59,80,33,87,69,60,57,45,91,48,79,86,58,56,68,0,34,40,88,55,65,78,20,37,24,27,29,43,89,61,75,"SEC","Vanderbilt","Strong Safety","Launch Ratings"
19562,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Reggie","Virgil",75,30,87,"Apopka","Florida","Eligible",1,"Senior",91,89,92,88,72,88,82,43,34,77,71,88,89,85,90,35,54,57,91,84,28,29,66,49,26,88,87,29,21,29,30,45,36,33,52,63,54,55,0,86,92,89,78,71,49,21,20,11,31,49,45,87,69,60,"Big 12","Texas Tech","Wide Receiver","Launch Ratings"
6919,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/94.png?im=FaceCrop,padding=0.7","Rickey","Gibson III",72,25,87,"Trussville","Alabama","Eligible",1,"Junior",95,91,92,92,62,85,65,58,35,37,58,47,66,90,38,39,74,52,88,75,35,28,64,58,81,39,87,62,62,51,39,87,44,86,82,56,54,63,0,40,45,93,71,48,70,16,36,34,19,34,25,84,38,88,"SEC","Tennessee","Cornerback","Launch Ratings"
21442,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/38.png?im=FaceCrop,padding=0.7","Roman","Hemby",72,48,87,"Edgewood","Maryland","Previous",1,"Senior",96,90,91,88,68,87,85,43,39,78,82,71,82,89,56,35,53,53,90,85,29,34,75,45,24,71,87,55,53,53,24,60,38,41,50,51,46,45,0,76,74,93,80,67,45,27,23,30,24,34,26,87,64,25,"Big Ten","Indiana","Halfback","Launch Ratings"
6068,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Sammy","Brown",74,75,87,"Commerce","Georgia","Eligible",47,"Sophomore",91,89,92,85,80,81,76,82,47,78,79,47,70,83,50,81,92,85,90,79,45,85,59,59,73,46,87,67,60,52,40,84,76,50,90,57,54,66,0,53,48,92,74,75,87,20,11,30,16,31,44,90,82,73,"ACC","Clemson","Will Backer","Launch Ratings"
21265,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/47.png?im=FaceCrop,padding=0.7","Stanquan","Clark",75,75,87,"Miami","Florida","Eligible",6,"Junior",88,83,86,92,77,90,49,85,39,41,56,56,71,77,37,71,90,85,91,63,24,24,49,48,72,39,87,51,53,51,44,87,74,45,93,46,50,56,0,38,55,84,55,42,85,36,20,35,22,11,22,89,58,78,"ACC","Louisville","Will Backer","Launch Ratings"
5638,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/94.png?im=FaceCrop,padding=0.7","Star","Thomas",72,50,87,"Homer","Louisiana","Previous",9,"Senior",91,84,85,91,81,87,88,50,55,84,82,67,76,84,58,48,70,57,92,85,32,37,65,51,27,65,87,51,48,53,38,33,48,28,57,55,55,56,0,74,63,87,82,87,60,30,32,32,33,44,28,91,90,29,"SEC","Tennessee","Halfback","Launch Ratings"
23446,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/19.png?im=FaceCrop,padding=0.7","Tawee","Walker",68,58,87,"North Las Vegas","Nevada","Previous",3,"Senior",88,83,82,92,80,87,81,51,34,84,91,52,58,81,54,42,66,53,93,83,48,32,74,45,38,55,87,59,49,56,44,38,43,31,63,49,36,39,0,63,53,88,84,87,59,33,29,16,17,10,33,95,90,38,"Big 12","Cincinnati","Halfback","Launch Ratings"
31257,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/33.png?im=FaceCrop,padding=0.7","Ted","Hurst",75,25,87,"Savannah","Georgia","Previous",1,"Senior",93,92,91,90,61,88,85,38,25,83,73,92,90,89,88,32,39,50,92,87,25,25,77,42,35,89,87,35,17,18,15,33,25,33,42,57,49,48,0,87,94,92,82,62,41,16,21,25,15,34,12,82,55,34,"Sun Belt","Georgia State","Wide Receiver","Launch Ratings"
8884,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Teitum","Tuioti",75,95,87,"Laie","Hawaii","Previous",44,"Junior",90,79,84,86,83,88,30,75,36,41,52,41,54,74,25,85,88,75,94,53,45,44,51,56,65,26,87,54,53,54,36,91,90,46,91,57,53,68,0,30,30,83,48,52,91,24,24,24,24,35,36,70,57,73,"Big Ten","Oregon","Sam Backer","Launch Ratings"
30653,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/11.png?im=FaceCrop,padding=0.7","Travion","Barnes",72,64,87,"Altamonte Springs","Florida","Eligible",36,"Senior",88,79,83,92,75,86,48,74,43,45,55,57,72,77,23,69,86,75,94,58,23,21,47,51,77,23,87,53,55,54,40,87,63,44,88,56,53,57,0,27,58,86,56,44,92,13,34,26,36,34,37,87,50,83,"Big 12","Baylor","Mike Backer","Launch Ratings"
2526,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Vinny","Sciury",76,145,87,"Massillon","Ohio","Previous",71,"Senior",73,65,73,91,88,92,38,49,34,37,53,36,32,57,22,39,50,88,93,34,29,26,40,85,23,32,87,88,86,89,28,37,53,32,38,83,82,84,0,34,37,63,37,39,38,15,25,36,30,17,33,93,37,37,"Big 12","Texas Tech","Left Guard","Launch Ratings"
23574,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Wade","Woodaz",75,75,87,"Tampa","Florida","Eligible",17,"Senior",90,87,87,92,76,90,55,76,28,38,56,38,74,83,46,77,86,74,92,55,47,25,47,58,76,43,87,66,62,52,32,93,72,61,89,55,54,64,0,48,45,86,56,53,82,36,32,29,16,13,29,86,58,82,"ACC","Clemson","Mike Backer","Launch Ratings"
25057,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/110.png?im=FaceCrop,padding=0.7","Waymond","Jordan",69,49,87,"Pensacola","Florida","Eligible",2,"Junior",93,89,84,91,77,83,90,43,52,83,85,61,66,87,53,37,49,60,90,87,32,33,80,57,67,64,87,61,57,61,24,45,34,35,45,56,63,55,0,66,59,89,84,75,43,38,43,44,46,45,42,92,77,29,"Big Ten","USC","Halfback","Launch Ratings"
23547,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/24.png?im=FaceCrop,padding=0.7","Wesley","Williams",75,85,87,"Gainesville","Virginia","Previous",97,"Junior",90,82,81,85,78,93,48,77,39,43,52,29,29,70,21,91,87,75,92,57,34,28,37,41,45,25,87,51,51,51,25,94,81,51,93,52,52,51,0,27,32,81,55,52,77,17,17,21,23,36,36,87,59,54,"ACC","Duke","Right Edge","Launch Ratings"
20190,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Will","Lee III",75,30,87,"Kirkwood","Missouri","Previous",4,"Senior",91,87,91,87,67,88,45,58,41,39,56,38,72,86,26,42,77,50,87,56,48,36,52,55,89,29,87,62,60,54,36,86,37,87,82,57,55,65,0,29,32,90,55,45,74,30,31,23,29,12,31,89,39,85,"SEC","Texas A&M","Cornerback","Launch Ratings"
20964,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/40.png?im=FaceCrop,padding=0.7","Abu","Sama III",71,50,86,"Des Moines","Iowa","Eligible",24,"Junior",93,90,88,88,74,85,80,45,38,87,79,53,62,86,45,39,58,57,87,88,40,41,77,55,43,55,86,57,57,56,41,43,41,33,54,52,52,53,0,62,58,92,87,80,51,22,25,26,31,28,32,88,86,42,"Big Ten","Iowa State","Halfback","Launch Ratings"
19445,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Adon","Shuler",72,45,86,"Irvington","New Jersey","Previous",8,"Sophomore",92,88,88,92,73,85,69,67,43,44,57,65,75,88,42,46,87,69,93,77,36,44,65,56,74,40,86,46,45,45,32,85,48,77,87,56,54,52,0,42,69,90,73,64,67,29,30,20,35,13,46,84,60,87,"Independent","Notre Dame","Strong Safety","Launch Ratings"
9700,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/37.png?im=FaceCrop,padding=0.7","Aidan","Laughery",71,40,86,"Gibson City","Illinois","Previous",21,"Junior",95,90,90,90,71,79,80,47,26,80,89,66,65,88,50,36,54,53,91,85,24,25,83,46,35,63,86,57,57,55,31,42,39,32,49,47,45,49,0,64,67,91,83,64,50,27,37,22,28,28,34,90,73,25,"Big Ten","Illinois","Halfback","Launch Ratings"
155,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/132.png?im=FaceCrop,padding=0.7","Alonza","Barnett III",72,57,86,"Whitsett","North Carolina","Previous",14,"Junior",93,90,88,94,68,87,87,41,88,79,66,51,54,88,31,37,46,43,79,88,28,42,48,36,44,32,86,35,34,34,71,24,45,45,57,42,42,41,0,40,62,89,85,64,45,83,89,84,95,89,72,85,66,42,"Sun Belt","James Madison","Quarterback","Launch Ratings"
3531,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Amari","Daniels",69,50,86,"Miami","Florida","Previous",5,"Senior",92,86,89,89,79,85,83,49,46,82,90,66,66,85,47,41,58,45,93,85,29,42,87,38,44,54,86,56,56,56,43,50,42,36,52,47,32,35,0,66,63,89,82,81,51,37,18,16,16,23,47,92,85,43,"SEC","Texas A&M","Halfback","Launch Ratings"
19460,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/57.png?im=FaceCrop,padding=0.7","Anthony","Smith",78,125,86,"Shippensburg","Pennsylvania","Previous",0,"Junior",80,74,77,89,92,85,47,87,25,46,59,30,33,66,30,72,83,74,90,30,26,26,42,46,28,30,86,69,62,55,39,87,90,25,85,62,54,68,0,30,30,73,30,46,79,26,13,22,34,33,31,95,47,29,"Big Ten","Minnesota","Left Edge","Launch Ratings"
10045,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Ashton","Craig",77,150,86,"Lawrenceburg","Indiana","Previous",70,"Junior",78,74,73,89,92,88,33,48,41,40,56,38,33,59,38,40,52,88,82,37,40,48,42,90,35,33,86,85,83,87,29,45,53,34,39,84,82,86,0,33,37,68,34,40,39,25,30,27,29,27,26,86,37,29,"Independent","Notre Dame","Center","Launch Ratings"
7584,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/125.png?im=FaceCrop,padding=0.7","Austin","Brown",73,53,86,"Johnston City","Illinois","Eligible",9,"Senior",90,85,86,87,76,85,53,69,46,45,51,45,64,83,29,41,84,62,90,64,36,33,51,57,75,29,86,65,64,57,31,83,57,74,85,55,56,68,0,30,41,88,60,64,87,25,23,17,25,31,41,85,62,77,"Big Ten","Wisconsin","Free Safety","Launch Ratings"
19665,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/132.png?im=FaceCrop,padding=0.7","Ayo","Adeyi",68,40,86,"Mansfield","Texas","Previous",5,"Senior",94,89,88,88,71,84,84,38,24,80,82,67,69,87,62,34,39,47,82,86,32,39,86,38,33,63,86,51,44,42,31,50,33,36,41,46,34,34,0,67,62,91,82,66,40,24,18,18,17,34,32,79,74,34,"Sun Belt","James Madison","Halfback","Launch Ratings"
20537,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","Barion","Brown",71,20,86,"Nashville","Tennessee","Eligible",6,"Senior",98,93,95,91,49,87,91,33,24,70,62,79,85,91,87,28,34,30,88,87,27,37,98,25,67,83,86,28,15,25,39,56,30,39,32,46,19,21,0,85,87,99,82,40,29,29,31,16,11,30,45,85,30,35,"SEC","LSU","Wide Receiver","Launch Ratings"
636,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/117.png?im=FaceCrop,padding=0.7","Brady","Wilson",74,138,86,"Spanish Fort","Alabama","Previous",76,"Senior",75,65,67,92,85,91,25,46,35,34,53,29,24,56,29,27,45,87,88,28,47,32,45,83,24,27,86,87,87,87,31,39,44,24,27,82,85,80,0,27,25,62,24,33,37,16,21,20,36,29,29,89,36,19,"ACC","Virginia","Center","Launch Ratings"
19987,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/118.png?im=FaceCrop,padding=0.7","Braydon","Bennett",73,45,86,"Greenville","South Carolina","Previous",24,"Senior",91,83,88,91,79,85,81,53,55,83,87,70,78,83,56,43,65,64,91,81,34,30,67,56,38,64,86,61,56,62,39,50,46,36,61,57,54,55,0,71,72,88,79,86,61,32,33,34,34,44,33,90,88,33,"ACC","Virginia Tech","Halfback","Launch Ratings"
8082,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/1.png?im=FaceCrop,padding=0.7","Cade","Harris",68,25,86,"South Weber","Utah","Previous",21,"Senior",93,85,86,87,60,85,81,37,30,76,77,82,83,87,75,32,37,38,87,87,34,26,89,39,57,82,86,35,27,36,42,47,31,34,38,57,26,24,0,85,78,90,84,53,39,37,21,18,21,17,33,85,54,32,"Mountain West","Air Force","Halfback","Launch Ratings"
20605,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Caleb","Douglas",76,50,86,"Missouri City","Texas","Eligible",5,"Senior",90,88,92,90,77,87,85,41,29,77,75,90,88,86,85,36,45,59,92,85,44,44,76,55,48,89,86,34,25,35,45,37,35,30,46,65,55,56,0,88,91,88,79,75,41,36,25,16,10,27,32,93,75,26,"Big 12","Texas Tech","Wide Receiver","Launch Ratings"
6201,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/5.png?im=FaceCrop,padding=0.7","Chamon","Metayer",76,95,86,"North Miami","Florida","Previous",7,"Senior",86,82,85,88,79,88,75,50,45,77,80,85,86,77,71,48,63,67,90,79,43,40,73,63,50,78,86,62,48,54,30,47,50,27,51,65,55,62,0,80,84,80,72,72,50,20,30,22,46,38,48,89,67,44,"Big 12","Arizona State","Tight End","Launch Ratings"
22120,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Chase","Bisontis",78,160,86,"Ramsey","New Jersey","Eligible",71,"Sophomore",75,70,70,84,96,88,44,58,24,44,50,27,29,52,31,36,63,87,91,30,37,45,29,85,30,31,86,83,79,87,25,43,61,27,28,85,87,83,0,31,29,69,32,46,44,13,30,37,34,14,41,89,43,32,"SEC","Texas A&M","Left Guard","Launch Ratings"
23619,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/84.png?im=FaceCrop,padding=0.7","Chris","Johnson",72,25,86,"Eastvale","California","Eligible",1,"Senior",92,90,90,94,62,87,52,62,37,36,52,54,68,89,34,35,68,42,88,76,24,39,53,55,81,35,86,64,46,38,27,88,31,79,83,54,52,61,0,35,56,91,71,41,77,24,36,30,34,11,47,81,36,84,"Mountain West","San Diego State","Cornerback","Launch Ratings"
6030,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","CJ","Donaldson",74,77,86,"Miami","Florida","Eligible",12,"Senior",89,81,86,87,83,87,83,58,31,83,87,66,70,81,52,46,70,75,96,82,44,40,64,63,31,61,86,64,57,65,27,42,45,32,57,66,60,65,0,65,63,86,78,91,66,36,24,35,32,35,35,93,91,31,"Big Ten","Ohio State","Halfback","Launch Ratings"
3493,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/1.png?im=FaceCrop,padding=0.7","Costen","Cooley",76,125,86,"Mesa","Arizona","Eligible",67,"Senior",82,72,77,92,88,94,44,54,24,42,58,42,39,59,37,51,62,84,91,38,48,30,42,91,40,39,86,76,72,79,48,50,57,41,40,90,90,90,0,41,42,73,41,44,42,26,36,12,15,15,45,88,43,39,"Mountain West","Air Force","Center","Launch Ratings"
7515,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","Dae'Quan","Wright",76,95,86,"Perry","Georgia","Eligible",8,"Senior",88,81,88,92,76,83,70,58,37,73,76,83,84,77,75,58,69,67,85,77,30,40,67,63,47,82,86,58,54,51,46,39,54,21,58,66,60,58,0,85,69,79,68,77,61,19,26,34,34,27,35,86,69,31,"SEC","Ole Miss","Tight End","Launch Ratings"
5779,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/45.png?im=FaceCrop,padding=0.7","David","Gusta",75,157,86,"San Bernardino","California","Previous",60,"Senior",81,68,72,87,91,90,29,87,15,37,55,28,36,56,25,75,83,91,92,25,25,24,15,55,22,28,86,52,52,50,11,88,91,33,92,58,56,62,0,26,25,72,27,38,77,14,18,10,24,15,27,95,40,25,"SEC","Kentucky","Defensive Tackle","Launch Ratings"
1054,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Davion","Carter",72,135,86,"Pearl","Mississippi","Previous",56,"Senior",77,67,72,93,85,87,33,39,24,33,54,39,34,57,39,45,38,83,82,35,39,40,36,80,40,39,86,88,92,84,45,38,42,38,40,76,78,74,0,40,38,69,35,35,31,11,22,19,21,79,28,84,32,37,"Big 12","Texas Tech","Right Guard","Launch Ratings"
6794,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/58.png?im=FaceCrop,padding=0.7","Davon","Booth",70,45,86,"North Las Vegas","Nevada","Previous",6,"Senior",91,91,87,90,72,85,79,40,27,78,90,66,74,90,61,31,38,55,90,85,27,27,66,51,44,67,86,57,57,53,47,43,31,33,36,52,53,54,0,73,68,88,83,65,36,28,18,25,18,20,26,87,73,42,"SEC","Mississippi State","Halfback","Launch Ratings"
19365,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/42.png?im=FaceCrop,padding=0.7","Desmond","Purnell",72,72,86,"Topeka","Kansas","Previous",32,"Senior",86,83,84,92,76,93,48,83,29,34,53,51,66,78,40,67,89,72,94,58,35,48,37,57,75,37,86,64,60,51,38,92,73,65,90,55,54,63,0,38,52,83,54,34,84,22,13,19,20,36,32,87,59,73,"Big 12","Kansas State","Sam Backer","Launch Ratings"
10444,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/38.png?im=FaceCrop,padding=0.7","Devan","Boykin",70,35,86,"Greensboro","North Carolina","Previous",12,"Senior",90,85,81,91,67,86,52,71,38,41,63,65,76,82,26,55,88,61,88,48,47,28,53,58,68,26,86,62,59,56,45,87,47,70,93,51,55,66,0,27,67,86,45,56,84,26,20,25,17,40,34,90,51,74,"Big Ten","Indiana","Strong Safety","Launch Ratings"
735,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Dillon","Bell",73,50,86,"Houston","Texas","Eligible",86,"Senior",92,90,85,89,75,91,87,53,52,79,77,90,88,87,83,46,64,46,92,87,46,42,77,38,32,88,86,40,31,42,42,52,43,37,62,60,50,41,0,91,88,88,83,68,64,47,60,61,55,64,39,88,67,51,"SEC","Georgia","Wide Receiver","Launch Ratings"
6684,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/54.png?im=FaceCrop,padding=0.7","Dominic","Zvada",75,20,86,"Chandler","Arizona","Eligible",96,"Senior",75,64,88,85,46,72,36,32,29,33,59,32,48,64,34,40,25,54,92,49,95,97,37,27,33,33,86,27,54,52,36,47,49,24,30,36,44,34,0,41,33,71,45,43,31,28,21,22,23,27,48,83,46,34,"Big Ten","Michigan","Kicker","Launch Ratings"
7590,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/88.png?im=FaceCrop,padding=0.7","Gabriel","Brownlow-Dindy",75,155,86,"Lakeland","Florida","Previous",99,"Junior",82,64,76,87,91,75,28,85,30,43,51,28,36,50,28,84,85,77,97,28,37,25,35,57,38,28,86,68,59,56,31,79,88,33,85,60,56,64,0,28,28,65,28,39,94,27,18,15,32,20,40,94,40,27,"SEC","South Carolina","Defensive Tackle","Launch Ratings"
9072,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/83.png?im=FaceCrop,padding=0.7","Gus","Zilinskas",74,150,86,"Englewood","Colorado","Previous",59,"Senior",73,68,71,90,88,92,29,66,34,38,54,29,31,60,27,40,46,88,84,33,47,30,41,90,27,32,86,85,82,88,30,36,60,33,30,87,89,85,0,31,33,65,28,37,40,34,18,27,34,25,24,90,37,24,"Big Ten","Rutgers","Center","Launch Ratings"
21532,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/34.png?im=FaceCrop,padding=0.7","Haynes","King",75,55,86,"Longview","Texas","Previous",10,"Senior",93,89,85,95,64,89,88,46,79,79,78,32,59,89,30,46,52,44,92,85,25,40,33,44,36,27,86,52,36,41,78,27,47,40,24,49,38,35,0,34,31,91,81,61,49,79,84,84,92,90,81,93,63,39,"ACC","Georgia Tech","Quarterback","Launch Ratings"
496,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/61.png?im=FaceCrop,padding=0.7","Jacarrius","Peak",76,138,86,"Valdosta","Georgia","Previous",65,"Junior",82,77,79,92,85,89,31,39,28,28,55,40,45,57,44,52,35,85,81,42,29,46,45,91,43,42,86,88,90,86,35,36,34,40,46,84,86,82,0,42,41,67,45,28,31,33,25,25,36,15,35,89,28,39,"ACC","NC State","Left Tackle","Launch Ratings"
23680,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/31.png?im=FaceCrop,padding=0.7","Jacob","Spomer",75,130,86,"Brentwood","California","Previous",69,"Senior",76,71,75,88,85,86,29,41,33,31,54,34,39,57,37,41,37,88,82,38,48,40,38,83,34,37,86,88,87,88,34,32,37,34,36,82,84,81,0,36,40,66,39,32,29,14,15,26,24,29,29,83,29,39,"Mountain West","Fresno State","Center","Launch Ratings"
31416,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","Jadan","Baugh",73,70,86,"Atlanta","Georgia","Eligible",13,"Sophomore",91,85,83,87,82,79,83,49,52,87,88,53,59,85,48,42,65,63,93,81,26,25,70,61,32,52,86,62,56,61,26,55,42,38,55,55,53,52,0,55,50,88,76,87,55,32,33,35,44,44,33,94,92,39,"SEC","Florida","Halfback","Launch Ratings"
19897,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/21.png?im=FaceCrop,padding=0.7","Jaheim","Oatis",77,165,86,"Columbia","Mississippi","Eligible",96,"Junior",74,64,72,81,95,88,46,89,40,47,50,25,26,52,25,66,86,88,85,25,46,48,39,73,25,25,86,75,70,80,46,86,88,25,81,80,70,83,0,25,25,65,25,49,85,36,14,17,29,13,27,90,48,31,"Big 12","Colorado","Defensive Tackle","Launch Ratings"
22515,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/57.png?im=FaceCrop,padding=0.7","Javon","Tracy",72,35,86,"Indianapolis","Indiana","Previous",11,"Junior",92,88,90,91,77,90,85,46,43,81,75,91,89,86,85,36,56,54,92,86,24,24,79,44,37,90,86,34,21,31,31,36,36,30,53,60,32,37,0,88,88,88,83,67,48,21,25,15,14,36,32,87,71,35,"Big Ten","Minnesota","Wide Receiver","Launch Ratings"
22900,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/93.png?im=FaceCrop,padding=0.7","Jay","Ducker",70,50,86,"Omaha","Nebraska","Previous",20,"Senior",92,87,86,93,74,85,84,43,48,83,91,68,70,86,56,36,50,55,91,84,33,29,80,52,42,62,86,58,57,54,47,51,36,36,48,55,54,54,0,67,65,89,80,69,46,26,25,14,10,30,37,92,82,44,"The American","Temple","Halfback","Launch Ratings"
19887,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/110.png?im=FaceCrop,padding=0.7","Jayden","Maiava",76,65,86,"Palolo","Hawaii","Previous",14,"Junior",85,86,82,91,73,90,84,51,82,76,68,25,47,86,23,53,68,52,90,81,31,40,32,53,36,25,86,65,47,49,82,51,57,41,47,63,47,45,0,28,33,83,78,70,62,80,87,88,88,90,80,91,66,68,"Big Ten","USC","Quarterback","Launch Ratings"
21575,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/36.png?im=FaceCrop,padding=0.7","Jesus","Machado",73,60,86,"Miami","Florida","Eligible",2,"Senior",87,82,82,91,74,87,52,79,38,36,57,39,64,80,38,63,83,77,85,50,27,26,44,46,67,37,86,50,42,38,34,88,60,40,91,37,41,46,0,36,37,81,51,36,93,31,28,26,31,16,31,89,37,74,"Big 12","Houston","Mike Backer","Launch Ratings"
7381,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/122.png?im=FaceCrop,padding=0.7","Jimmori","Robinson",76,105,86,"Alexandria","Virginia","Previous",0,"Senior",89,81,79,87,82,87,26,83,41,39,50,38,34,75,26,80,88,83,91,43,42,37,31,53,55,22,86,66,63,54,39,91,89,27,89,56,53,64,0,23,25,80,35,45,87,26,10,10,34,38,33,92,52,68,"Big 12","West Virginia","Left Edge","Launch Ratings"
6120,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/45.png?im=FaceCrop,padding=0.7","Jonquis","Hardaway",75,33,86,"Columbus","Georgia","Eligible",6,"Senior",93,90,91,93,62,86,72,58,47,65,58,66,72,90,38,51,75,56,90,75,38,32,65,55,77,38,86,66,62,53,43,88,49,87,87,60,56,70,0,38,64,91,73,54,75,20,13,26,24,17,36,85,44,87,"SEC","Kentucky","Cornerback","Launch Ratings"
21702,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/85.png?im=FaceCrop,padding=0.7","Jordan","Pollard",73,42,86,"Los Angeles","California","Eligible",1,"Senior",90,84,84,96,67,88,41,66,48,28,51,28,68,82,42,72,77,59,89,56,43,36,40,51,72,43,86,62,47,39,31,91,55,55,94,48,51,54,0,47,42,86,55,44,85,37,15,16,32,37,32,90,45,80,"Mountain West","San Jose State","Mike Backer","Launch Ratings"
4141,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Jordan","Lyle",72,30,86,"Fort Lauderdale","Florida","Eligible",2,"Sophomore",96,93,90,85,67,71,85,37,27,83,81,65,62,90,55,32,41,46,88,88,31,47,83,38,53,60,86,51,50,47,37,59,30,40,37,43,30,32,0,66,67,92,84,70,39,10,35,11,22,11,24,84,66,64,"ACC","Miami","Halfback","Launch Ratings"
21052,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/122.png?im=FaceCrop,padding=0.7","Jordan","Scruggs",71,12,86,"Kansas City","Missouri","Previous",6,"Senior",92,89,91,93,60,85,70,59,25,65,44,54,65,89,28,41,69,63,91,77,21,22,71,45,77,28,86,32,32,32,25,89,34,81,85,35,35,36,0,26,61,90,72,45,79,21,37,33,14,35,25,87,44,87,"Big 12","West Virginia","Cornerback","Launch Ratings"
9730,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Josh","McCray",73,75,86,"Enterprise","Alabama","Previous",2,"Senior",88,80,82,91,88,87,84,55,46,86,82,68,69,78,44,49,71,67,97,78,31,32,65,61,22,57,86,64,57,61,29,33,50,25,65,64,62,62,0,63,64,84,74,91,62,37,28,25,33,36,41,95,95,25,"SEC","Georgia","Halfback","Launch Ratings"
23681,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/59.png?im=FaceCrop,padding=0.7","Josiah","Trotter",74,77,86,"Philadelphia","Pennsylvania","Previous",40,"Sophomore",86,77,79,90,83,87,30,84,49,48,54,30,62,75,26,53,87,81,92,55,32,42,32,58,56,26,86,68,62,53,46,86,67,49,91,58,52,69,0,27,25,82,52,57,93,23,14,27,37,12,25,88,56,62,"SEC","Missouri","Mike Backer","Launch Ratings"
707,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Jovantae","Barnes",72,51,86,"Las Vegas","Nevada","Eligible",2,"Senior",94,91,90,87,71,84,86,45,40,81,81,72,73,89,50,38,51,56,88,85,32,37,89,45,57,62,86,55,52,56,44,59,39,52,51,47,33,35,0,69,67,91,79,80,46,26,11,20,12,22,47,87,82,55,"SEC","Oklahoma","Halfback","Launch Ratings"
23432,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/99.png?im=FaceCrop,padding=0.7","Junior","Vandeross III",68,22,86,"Tampa","Florida","Eligible",2,"Senior",93,93,87,95,48,92,87,35,38,78,57,85,90,91,83,27,37,32,90,89,37,38,88,33,59,89,86,28,14,26,33,41,28,38,36,35,26,22,0,91,86,91,85,29,33,16,20,23,17,28,45,81,44,47,"MAC","Toledo","Wide Receiver","Launch Ratings"
7912,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/5.png?im=FaceCrop,padding=0.7","Keyshaun","Elliott",74,70,86,"Richmond","Missouri","Eligible",44,"Senior",87,80,82,87,83,89,29,82,44,47,58,49,60,79,32,73,88,78,90,52,22,25,50,57,66,29,86,55,55,56,25,90,79,38,91,61,54,68,0,33,29,82,50,47,86,21,16,16,24,14,28,87,55,73,"Big 12","Arizona State","Will Backer","Launch Ratings"
7566,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/38.png?im=FaceCrop,padding=0.7","Lee","Beebe Jr.",70,60,86,"Montgomery","Alabama","Previous",29,"Junior",91,85,87,93,78,81,83,55,33,85,79,76,80,83,63,44,67,49,95,83,33,25,71,42,29,69,86,55,53,52,35,40,46,31,64,47,32,38,0,75,73,88,78,87,59,17,15,18,16,30,30,90,89,31,"Big Ten","Indiana","Halfback","Launch Ratings"
19649,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/4.png?im=FaceCrop,padding=0.7","Luke","Wysong",70,32,86,"Rio Rancho","New Mexico","Previous",15,"Senior",92,91,88,95,61,88,87,42,45,74,78,93,88,90,85,36,50,55,94,87,40,40,78,45,52,88,86,34,23,32,26,59,34,40,46,57,50,51,0,92,88,92,85,48,45,35,45,42,49,48,33,93,55,55,"Big 12","Arizona","Wide Receiver","Launch Ratings"
19070,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/12.png?im=FaceCrop,padding=0.7","Maddux","Madsen",70,41,86,"Lehi","Utah","Previous",4,"Junior",85,82,82,95,59,88,80,29,67,74,75,31,48,81,32,26,36,38,91,82,30,35,28,35,35,33,86,35,34,34,93,27,24,42,48,40,39,35,0,35,24,82,80,48,35,84,92,87,83,88,77,89,54,34,"Mountain West","Boise State","Quarterback","Launch Ratings"
19419,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/34.png?im=FaceCrop,padding=0.7","Malik","Rutherford",69,10,86,"Miami","Florida","Previous",8,"Senior",94,95,87,94,52,87,88,30,35,81,65,82,87,93,83,28,26,42,88,90,46,33,89,29,51,88,86,27,20,28,27,44,25,33,27,48,34,35,0,89,88,91,84,40,25,16,35,10,25,19,26,86,53,26,"ACC","Georgia Tech","Wide Receiver","Launch Ratings"
19254,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Micah","Morris",76,170,86,"Kingsland","Georgia","Previous",56,"Senior",72,61,65,87,94,84,46,57,31,45,53,29,29,57,26,28,66,93,95,28,39,37,27,79,25,27,86,88,84,92,37,46,61,27,29,80,79,81,0,28,25,60,28,44,47,21,32,30,25,32,24,89,46,26,"SEC","Georgia","Left Guard","Launch Ratings"
6089,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Monroe","Freeling",79,155,86,"Charleston","South Carolina","Eligible",57,"Junior",72,72,73,80,93,87,45,55,45,42,51,35,32,56,35,38,58,91,85,30,35,45,33,85,32,30,86,81,75,87,40,71,59,31,35,87,85,89,0,29,34,62,33,41,43,36,34,31,37,15,43,84,40,30,"SEC","Georgia","Left Tackle","Launch Ratings"
20240,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/104.png?im=FaceCrop,padding=0.7","Myles","Montgomery",71,45,86,"Jacksonville","Florida","Previous",22,"Senior",92,88,87,88,72,85,85,49,32,82,82,54,60,87,52,39,52,48,88,89,23,24,79,42,35,53,86,56,49,57,40,47,39,35,53,48,35,37,0,57,55,90,84,71,50,27,25,32,35,10,24,91,74,42,"Big 12","UCF","Halfback","Launch Ratings"
10398,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/119.png?im=FaceCrop,padding=0.7","Nick","Andersen",71,37,86,"Clifton","Virginia","Eligible",45,"Senior",92,87,89,96,67,87,50,63,42,39,61,65,73,85,27,35,84,66,93,64,37,43,51,56,72,25,86,51,59,52,36,84,41,67,90,49,53,64,0,35,67,88,62,51,82,25,27,22,27,13,43,90,61,82,"ACC","Wake Forest","Free Safety","Launch Ratings"
22492,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Noah","Thomas",77,45,86,"League City","Texas","Eligible",5,"Senior",90,88,92,90,73,87,78,44,37,74,75,87,90,84,85,42,61,55,90,83,36,35,68,45,34,88,86,36,25,35,29,39,46,56,44,62,53,49,0,87,92,92,76,75,58,21,14,28,33,37,44,84,68,39,"SEC","Georgia","Wide Receiver","Launch Ratings"
9038,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/86.png?im=FaceCrop,padding=0.7","PJ","Williams",77,157,86,"Dickinson","Texas","Previous",59,"Junior",72,65,71,86,92,88,43,53,35,41,56,31,29,56,31,34,58,92,91,29,24,40,35,87,34,32,86,87,83,90,32,40,61,32,34,84,81,87,0,33,33,62,34,41,44,15,32,28,29,11,46,93,41,29,"ACC","SMU","Right Tackle","Launch Ratings"
9675,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Quinten","Joyner",71,45,86,"Austin","Texas","Previous",0,"Sophomore",93,89,91,88,83,86,84,57,26,84,75,64,68,89,55,47,75,44,93,86,48,46,80,36,49,61,86,54,47,50,34,50,50,36,60,46,32,35,0,66,65,91,80,85,64,22,27,15,33,31,41,92,83,51,"Big 12","Texas Tech","Halfback","Launch Ratings"
30902,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/33.png?im=FaceCrop,padding=0.7","Rashad","Amos",72,60,86,"Tyrone","Georgia","Previous",30,"Senior",88,82,85,87,83,90,83,56,80,80,87,65,60,81,43,48,72,57,83,81,30,44,75,47,23,51,86,45,51,56,62,44,46,33,51,50,35,39,0,65,59,86,75,91,65,67,68,70,73,92,67,90,89,31,"Sun Belt","Georgia State","Halfback","Launch Ratings"
31300,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Romello","Height",75,75,86,"Dublin","Georgia","Previous",9,"Senior",91,83,82,85,73,88,45,75,17,40,45,15,58,74,24,89,88,72,88,48,23,16,16,34,52,24,86,24,37,13,13,89,78,50,89,28,21,16,0,24,15,83,44,42,83,11,27,14,24,17,34,87,35,58,"Big 12","Texas Tech","Right Edge","Launch Ratings"
22381,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Rueben","Owens",72,55,86,"El Campo","Texas","Previous",4,"Junior",93,92,90,87,72,74,85,51,24,83,80,68,63,91,60,42,67,45,81,90,21,27,81,39,37,65,86,52,48,50,14,50,43,34,61,44,30,35,0,71,67,93,87,72,59,15,15,25,35,13,24,88,76,37,"SEC","Texas A&M","Halfback","Launch Ratings"
23562,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Ryan","Wingo",74,54,86,"St. Louis","Missouri","Eligible",1,"Sophomore",95,93,97,88,75,79,85,52,36,79,70,85,85,92,86,44,68,44,90,87,38,24,85,39,58,87,86,37,25,35,30,52,47,37,67,58,44,43,0,84,92,96,83,69,62,11,19,14,11,12,45,85,69,45,"SEC","Texas","Wide Receiver","Launch Ratings"
19957,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/116.png?im=FaceCrop,padding=0.7","Sedrick","Alexander",69,40,86,"Austin","Texas","Eligible",28,"Junior",93,89,87,97,74,84,86,47,27,84,83,70,77,87,56,42,59,47,91,85,39,46,83,37,33,65,86,54,53,49,36,41,38,32,52,44,30,34,0,72,72,90,83,67,53,27,36,11,14,31,32,93,76,35,"SEC","Vanderbilt","Halfback","Launch Ratings"
31420,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/45.png?im=FaceCrop,padding=0.7","Seth","McGowan",73,55,86,"Mesquite","Texas","Eligible",3,"Senior",92,85,84,90,78,83,85,49,43,85,75,79,77,84,61,40,61,48,92,87,39,34,66,40,35,70,86,60,53,56,42,39,40,31,58,52,39,42,0,73,75,90,84,86,54,23,34,36,15,21,25,89,87,43,"SEC","Kentucky","Halfback","Launch Ratings"
20453,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Sheridan","Wilson",77,140,86,"Argyle","Texas","Previous",72,"Junior",74,67,73,98,88,88,30,58,39,48,60,30,33,57,34,35,64,88,94,31,38,35,36,72,33,30,86,88,85,89,28,42,64,33,32,71,75,67,0,33,30,66,32,44,49,14,26,26,21,30,40,84,43,23,"Big 12","Texas Tech","Center","Launch Ratings"
22535,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","T.J.","Moore",75,40,86,"Key West","Florida","Eligible",1,"Sophomore",95,93,93,87,71,79,87,48,46,84,64,91,87,90,85,42,63,57,93,88,46,36,83,51,56,87,86,36,23,34,27,63,40,42,59,61,47,45,0,85,89,93,84,72,53,23,33,32,35,11,29,88,72,69,"ACC","Clemson","Wide Receiver","Launch Ratings"
18852,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/6.png?im=FaceCrop,padding=0.7","Taylen","Green",78,64,86,"Lewisville","Texas","Previous",10,"Senior",90,88,86,90,82,84,88,51,97,82,71,23,55,86,28,45,69,64,88,92,31,32,40,57,24,23,86,47,46,45,68,66,50,25,58,55,53,52,0,24,24,91,86,78,62,83,82,80,87,94,74,99,79,25,"SEC","Arkansas","Quarterback","Launch Ratings"
9332,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/66.png?im=FaceCrop,padding=0.7","Thaddeus","Dixon",73,25,86,"Los Angeles","California","Previous",1,"Senior",92,88,93,94,67,88,45,56,47,45,63,38,72,87,27,36,70,52,90,72,33,37,56,58,83,25,86,65,61,55,31,86,48,81,79,59,56,69,0,29,34,91,65,55,73,36,20,30,35,14,24,91,43,87,"ACC","North Carolina","Cornerback","Launch Ratings"
20941,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Tony","Rojas",74,70,86,"Fairfax","Virginia","Eligible",13,"Junior",88,86,87,91,73,85,55,68,36,38,64,65,75,80,46,67,84,67,90,66,33,33,45,55,78,46,86,47,45,46,36,87,62,55,92,57,53,59,0,46,70,90,63,54,78,24,24,24,24,34,36,83,48,84,"Big Ten","Penn State","Will Backer","Launch Ratings"
21884,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/4.png?im=FaceCrop,padding=0.7","Tre","Smith",77,99,86,"Mesa","Arizona","Previous",3,"Senior",87,78,82,88,83,89,46,84,41,46,51,30,32,74,28,73,88,78,91,52,34,33,32,36,34,30,86,65,62,53,38,88,92,32,87,60,56,67,0,31,29,80,51,45,86,23,11,24,22,10,31,89,56,33,"Big 12","Arizona","Left Edge","Launch Ratings"
22024,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/78.png?im=FaceCrop,padding=0.7","Trent","Walker",74,34,86,"Portland","Oregon","Previous",7,"Senior",91,88,91,93,73,92,83,48,54,73,78,90,91,86,79,41,60,37,92,85,34,31,71,38,32,90,86,32,17,29,24,39,42,31,56,63,34,33,0,89,89,87,82,50,53,39,44,45,50,48,28,92,61,46,"Pac-12","Oregon State","Wide Receiver","Launch Ratings"
741,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/12.png?im=FaceCrop,padding=0.7","Ty","Benefield",74,44,86,"Altadena","California","Eligible",0,"Junior",91,86,85,97,72,87,46,63,47,44,26,34,71,85,26,41,81,59,94,50,46,37,46,56,74,28,86,66,60,56,37,89,47,75,87,52,54,68,0,28,31,88,45,60,77,22,30,33,30,28,42,90,59,81,"Mountain West","Boise State","Free Safety","Launch Ratings"
20497,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/24.png?im=FaceCrop,padding=0.7","Vincent","Anthony Jr.",78,90,86,"Durham","North Carolina","Eligible",7,"Senior",88,79,84,82,79,88,35,75,40,32,53,45,53,74,46,89,85,66,84,45,28,46,41,35,55,43,86,40,40,36,45,88,81,36,89,32,36,42,0,46,43,81,46,34,87,14,17,22,16,27,44,80,32,60,"ACC","Duke","Left Edge","Launch Ratings"
9788,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/42.png?im=FaceCrop,padding=0.7","VJ","Payne",75,48,86,"Gainesville","Georgia","Eligible",7,"Senior",91,87,85,87,68,88,65,63,41,43,64,42,70,85,35,63,87,59,92,57,32,35,61,55,71,38,86,60,58,55,32,89,42,75,88,50,53,66,0,37,36,89,59,56,74,30,11,20,33,36,45,95,52,81,"Big 12","Kansas State","Strong Safety","Launch Ratings"
19578,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/112.png?im=FaceCrop,padding=0.7","Wayshawn","Parker",70,46,86,"Richmond","California","Eligible",1,"Sophomore",92,89,87,89,68,82,85,52,28,84,84,64,67,88,57,42,63,48,93,87,29,43,63,44,30,64,86,57,29,35,37,31,43,27,60,48,36,37,0,69,65,91,82,70,56,17,22,34,18,37,30,87,71,32,"Big 12","Utah","Halfback","Launch Ratings"
18585,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Wesley","Bissainthe",73,45,86,"Miami","Florida","Eligible",31,"Senior",92,87,89,92,67,88,55,73,24,24,60,49,64,83,41,67,77,67,91,65,31,34,52,45,71,44,86,44,45,45,31,86,53,44,86,47,46,45,0,45,54,87,59,35,87,25,28,16,20,24,46,83,44,81,"ACC","Miami","Will Backer","Launch Ratings"
3969,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/69.png?im=FaceCrop,padding=0.7","Aidan","Hubbard",76,92,85,"Cleveland","Ohio","Previous",91,"Junior",86,76,80,84,83,90,39,78,40,38,54,35,40,70,35,74,83,67,88,35,37,27,40,38,36,35,85,53,49,46,29,90,89,45,88,43,45,55,0,35,35,78,35,39,85,21,35,11,31,17,48,92,40,47,"Big Ten","Northwestern","Left Edge","Launch Ratings"
23313,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Albert","Regis",74,155,85,"La Porte","Texas","Previous",17,"Senior",72,63,71,80,94,90,23,85,43,47,50,24,29,52,24,63,85,89,97,23,41,40,32,58,25,24,85,68,62,56,46,89,86,18,83,61,56,66,0,24,24,62,23,44,89,16,34,28,22,25,38,90,50,16,"SEC","Texas A&M","Defensive Tackle","Launch Ratings"
9236,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Alex","Bauman",77,85,85,"Red Bank","New Jersey","Eligible",87,"Senior",84,81,85,90,76,86,84,66,26,72,72,84,84,77,68,64,69,68,94,76,39,47,48,60,32,73,85,66,56,58,38,46,63,25,66,65,58,61,0,82,86,82,69,71,55,26,17,29,37,36,46,85,73,57,"ACC","Miami","Tight End","Launch Ratings"
7607,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Amare","Campbell",72,71,85,"Manassas","Virginia","Eligible",24,"Junior",88,81,82,93,78,90,30,78,25,38,55,47,64,78,30,67,89,77,91,66,31,32,58,54,64,32,85,45,45,46,26,87,81,54,91,54,54,65,0,28,45,85,62,55,91,24,23,22,21,20,41,90,58,68,"Big Ten","Penn State","Mike Backer","Launch Ratings"
19767,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Amari","Niblack",76,80,85,"St. Petersburg","Florida","Eligible",84,"Senior",90,87,89,86,72,87,79,43,31,72,73,79,84,83,71,40,54,60,82,74,44,43,73,59,59,76,85,64,53,60,28,58,42,35,43,64,63,62,0,78,87,86,74,65,43,15,15,19,24,17,32,88,73,55,"SEC","Texas A&M","Tight End","Launch Ratings"
22850,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Anez","Cooper",78,190,85,"Pleasant Grove","Alabama","Eligible",73,"Senior",65,50,58,89,94,89,46,58,34,44,50,25,28,48,26,25,65,92,97,25,37,28,26,83,15,24,85,87,83,91,40,44,59,13,24,79,77,82,0,26,28,58,26,46,46,25,13,27,21,20,43,92,41,11,"ACC","Miami","Right Guard","Launch Ratings"
14832,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Anthonie","Knapp",76,140,85,"Roswell","Georgia","Eligible",54,"Sophomore",83,77,78,92,86,84,29,38,34,27,55,43,48,62,45,59,33,87,78,43,31,36,44,91,43,46,85,87,86,87,37,40,30,44,47,87,89,85,0,43,46,75,45,30,26,30,25,25,12,15,35,86,26,43,"Independent","Notre Dame","Left Tackle","Launch Ratings"
19461,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/26.png?im=FaceCrop,padding=0.7","Anthony","Smith",75,29,85,"Huntingtown","Maryland","Previous",9,"Senior",92,89,92,90,60,86,77,48,47,74,70,87,88,87,87,39,59,38,90,85,32,48,66,35,47,84,85,29,15,27,38,56,40,38,55,52,30,31,0,82,89,92,78,48,52,21,31,14,34,31,30,91,52,62,"The American","East Carolina","Wide Receiver","Launch Ratings"
20901,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Arvell","Reese",76,78,85,"Cleveland","Ohio","Eligible",8,"Junior",88,83,85,87,78,90,43,78,36,37,55,37,55,79,43,67,85,71,88,59,36,36,44,56,70,43,85,64,60,53,36,92,73,55,88,55,52,60,0,43,43,85,52,37,84,24,24,24,24,24,36,90,57,75,"Big Ten","Ohio State","Mike Backer","Launch Ratings"
18276,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","Bauer","Sharp",77,90,85,"Dothan","Alabama","Previous",10,"Senior",85,81,84,95,75,86,77,62,72,72,69,86,86,78,65,61,46,61,92,74,34,27,66,60,29,74,85,62,57,60,67,31,57,15,58,65,57,55,0,83,87,82,72,74,62,53,65,71,65,78,62,91,72,31,"SEC","LSU","Tight End","Launch Ratings"
116,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Bear","Alexander",75,155,85,"Terrell","Texas","Previous",1,"Junior",83,67,78,82,91,90,30,86,25,43,52,30,38,55,30,73,88,88,92,30,27,37,38,58,32,30,85,69,62,54,39,88,89,38,85,60,53,67,0,30,30,71,30,42,79,11,15,29,32,21,39,75,45,33,"Big Ten","Oregon","Defensive Tackle","Launch Ratings"
21127,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Beau","Atkinson",78,105,85,"Raleigh","North Carolina","Previous",14,"Junior",85,76,79,83,85,89,38,83,41,37,54,28,34,66,28,79,87,68,89,56,24,35,35,38,51,32,85,51,45,42,32,91,91,51,89,38,40,51,0,30,29,79,55,45,79,10,22,35,34,38,35,87,45,57,"Big Ten","Ohio State","Right Edge","Launch Ratings"
10120,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/5.png?im=FaceCrop,padding=0.7","Ben","Coleman",75,165,85,"Temecula","California","Previous",62,"Senior",68,64,71,85,93,92,46,55,40,42,51,28,29,53,24,25,64,89,91,28,26,30,29,85,29,27,85,86,79,90,43,41,58,27,26,79,80,81,0,24,24,58,27,42,42,20,27,16,34,35,33,87,44,29,"Big 12","Arizona State","Center","Launch Ratings"
20930,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/33.png?im=FaceCrop,padding=0.7","Branson","Robinson",70,51,85,"Canton","Mississippi","Previous",22,"Junior",91,84,86,85,85,85,74,53,44,84,83,64,55,83,42,43,69,57,79,82,25,24,84,55,32,53,85,62,52,61,33,48,46,25,51,57,56,55,0,57,59,87,78,85,59,30,17,35,24,18,37,89,90,33,"Sun Belt","Georgia State","Halfback","Launch Ratings"
22224,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/12.png?im=FaceCrop,padding=0.7","Braxton","Fely",73,136,85,"Orem","Utah","Eligible",90,"Senior",82,72,70,87,87,91,27,84,48,34,54,25,31,62,25,73,83,76,93,28,47,25,33,54,32,24,85,63,57,50,32,89,92,29,88,55,53,59,0,24,28,73,27,30,76,20,35,31,12,25,36,94,34,39,"Mountain West","Boise State","Defensive Tackle","Launch Ratings"
18588,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/27.png?im=FaceCrop,padding=0.7","Brian","Blades II",71,20,85,"Fort Lauderdale","Florida","Previous",2,"Senior",94,92,90,93,57,89,65,49,27,28,50,57,71,91,41,29,67,48,77,79,48,40,58,55,76,45,85,59,58,50,27,89,30,78,81,51,52,55,0,44,70,91,77,29,58,22,36,17,28,35,30,86,28,88,"Conference USA","FIU","Cornerback","Launch Ratings"
310,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/133.png?im=FaceCrop,padding=0.7","Brylan","Green",69,20,85,"Opelousas","Louisiana","Eligible",15,"Senior",93,89,87,93,57,85,76,51,27,24,44,69,82,87,42,33,73,55,84,68,42,26,57,56,78,45,85,53,56,47,25,86,34,69,90,47,50,56,0,42,67,90,69,24,74,13,20,18,29,14,35,91,27,82,"Conference USA","Liberty","Strong Safety","Launch Ratings"
6073,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/5.png?im=FaceCrop,padding=0.7","C.J.","Fite",73,135,85,"Tatum","Texas","Eligible",99,"Junior",79,66,67,88,87,92,25,85,33,46,58,23,29,57,23,59,87,84,95,25,27,43,36,57,32,25,85,70,60,53,45,94,87,23,87,61,54,66,0,24,22,69,24,47,84,34,27,35,26,19,28,97,44,17,"Big 12","Arizona State","Defensive Tackle","Launch Ratings"
6042,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/23.png?im=FaceCrop,padding=0.7","Cam","Edwards",71,50,85,"Norwalk","Connecticut","Previous",0,"Junior",90,85,84,91,77,89,83,45,30,79,89,59,72,84,55,39,50,54,90,84,24,25,72,51,36,62,85,61,56,55,45,50,39,36,51,57,56,56,0,68,63,87,79,82,48,28,37,33,31,23,39,88,84,35,"The American","Connecticut","Halfback","Launch Ratings"
5996,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Cam","Calhoun",72,20,85,"Cincinnati","Ohio","Previous",9,"Sophomore",94,92,93,90,55,85,70,54,22,56,56,55,68,92,36,34,65,57,88,79,26,25,71,46,83,35,85,35,35,35,23,87,32,77,82,45,45,44,0,35,63,88,75,37,69,32,19,34,33,26,32,79,30,88,"SEC","Alabama","Cornerback","Launch Ratings"
20358,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/86.png?im=FaceCrop,padding=0.7","Cameron","Robertson",76,90,85,"Plano","Texas","Eligible",9,"Senior",87,79,83,84,82,92,32,82,38,44,51,42,45,71,30,85,85,72,91,28,32,35,32,55,52,31,85,69,63,57,29,92,89,29,92,59,56,68,0,27,28,80,27,44,78,25,24,31,34,19,33,91,42,55,"ACC","SMU","Left Edge","Launch Ratings"
21941,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/21.png?im=FaceCrop,padding=0.7","Carter","Stoutmire",71,50,85,"Plano","Texas","Eligible",23,"Junior",89,87,89,89,75,90,66,65,46,48,66,47,63,85,42,41,84,57,92,80,46,24,68,57,80,44,85,68,64,57,32,88,50,75,86,60,56,68,0,44,50,88,77,55,70,30,32,22,32,24,28,89,47,83,"Big 12","Colorado","Free Safety","Launch Ratings"
10719,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/66.png?im=FaceCrop,padding=0.7","Chad","Lindberg",78,155,85,"League City","Texas","Previous",69,"Senior",70,62,66,89,92,89,41,54,25,44,51,29,30,55,24,32,60,89,94,29,42,48,24,78,26,30,85,87,85,89,45,41,56,26,27,72,70,75,0,27,25,59,26,42,44,15,24,32,11,29,29,92,39,24,"ACC","North Carolina","Left Guard","Launch Ratings"
4109,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/59.png?im=FaceCrop,padding=0.7","Chris","McClellan",76,163,85,"North Tulsa","Oklahoma","Eligible",7,"Senior",77,65,77,75,92,87,36,89,35,31,55,36,46,54,36,72,85,77,99,36,24,40,36,57,47,36,85,61,60,53,42,86,88,42,81,51,52,58,0,36,36,65,36,33,85,14,34,25,32,29,32,85,31,40,"SEC","Missouri","Defensive Tackle","Launch Ratings"
21200,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/94.png?im=FaceCrop,padding=0.7","Chris","Brazzell II",77,40,85,"Midland","Texas","Previous",17,"Junior",88,89,91,90,69,90,76,45,41,72,70,88,87,84,85,39,54,38,89,79,30,26,66,35,33,87,85,34,22,34,24,37,37,30,51,52,29,30,0,86,95,90,75,70,50,23,37,10,12,26,38,91,55,41,"SEC","Tennessee","Wide Receiver","Launch Ratings"
1172,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/118.png?im=FaceCrop,padding=0.7","Christian","Ellis",72,42,85,"Jacksonville","Florida","Previous",8,"Senior",91,86,89,87,75,86,55,61,44,45,70,36,67,85,29,31,86,62,93,51,28,35,58,57,75,31,85,67,50,43,24,87,47,76,85,52,57,68,0,31,34,88,51,62,72,37,25,27,20,28,41,90,62,85,"ACC","Virginia Tech","Strong Safety","Launch Ratings"
1106,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","CJ","Daniels",74,45,85,"Lilburn","Georgia","Previous",7,"Senior",91,89,92,91,72,88,88,51,65,80,75,89,89,88,84,45,67,40,90,87,26,28,86,37,44,87,85,37,24,36,43,37,44,30,63,63,36,36,0,89,91,89,86,70,59,55,53,56,60,70,44,93,69,28,"ACC","Miami","Wide Receiver","Launch Ratings"
14562,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/47.png?im=FaceCrop,padding=0.7","Clev","Lubin",75,90,85,"Suffern","New York","Previous",50,"Junior",91,84,77,85,76,87,31,72,47,34,53,33,33,72,30,93,81,72,91,33,35,30,37,31,55,30,85,40,34,31,26,89,77,54,90,32,36,44,0,32,30,84,33,32,72,33,13,15,11,17,39,82,54,65,"ACC","Louisville","Right Edge","Launch Ratings"
1164,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Coy","Eakin",74,50,85,"Stephenville","Texas","Previous",3,"Junior",89,88,92,87,78,86,84,56,36,75,76,89,86,85,86,48,73,46,93,83,36,44,79,39,36,86,85,35,23,31,31,39,48,31,65,55,41,41,0,90,92,87,78,71,62,10,16,15,11,33,46,89,73,41,"Big 12","Texas Tech","Wide Receiver","Launch Ratings"
7095,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/4.png?im=FaceCrop,padding=0.7","Dalton","Johnson",71,38,85,"Katy","Texas","Previous",43,"Senior",92,85,89,91,72,83,51,62,47,44,28,38,64,82,29,31,85,63,90,50,25,40,47,58,67,27,85,62,62,53,43,85,45,59,92,49,54,68,0,28,36,87,51,60,83,21,10,35,31,36,27,92,57,74,"Big 12","Arizona","Strong Safety","Launch Ratings"
201,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Dametrious","Crownover",79,180,85,"Grandview","Texas","Previous",78,"Senior",71,55,73,86,94,90,42,55,25,68,65,70,73,51,29,34,57,92,88,29,40,40,29,83,32,50,85,81,75,86,41,46,57,31,32,88,90,86,0,60,62,63,33,77,39,30,16,28,33,23,27,86,82,27,"SEC","Texas A&M","Right Tackle","Launch Ratings"
23551,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/59.png?im=FaceCrop,padding=0.7","Damon","Wilson II",76,90,85,"Venice","Florida","Eligible",8,"Junior",92,84,87,78,82,83,39,73,36,44,55,44,53,77,39,88,87,74,86,39,36,36,43,59,61,39,85,68,62,55,36,85,78,36,89,59,53,66,0,39,39,84,39,44,79,24,24,24,24,24,36,84,44,67,"SEC","Missouri","Right Edge","Launch Ratings"
21455,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/41.png?im=FaceCrop,padding=0.7","Daniel","Hishaw Jr.",70,60,85,"Moore","Oklahoma","Previous",9,"Senior",88,83,80,89,81,85,82,51,35,81,87,57,58,81,42,43,63,57,86,85,34,35,64,55,29,52,85,61,60,58,31,44,43,33,47,55,53,51,0,55,54,87,85,84,59,37,19,11,17,24,28,92,87,32,"Big 12","Kansas","Halfback","Launch Ratings"
21682,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/11.png?im=FaceCrop,padding=0.7","Dawson","Pendergrass",74,58,85,"Alba","Texas","Eligible",35,"Junior",91,83,89,87,78,84,81,51,39,84,87,60,67,82,45,44,66,51,90,81,46,30,64,42,35,55,85,58,48,57,43,47,42,35,62,47,35,38,0,67,62,88,76,85,58,32,18,15,20,30,29,94,89,59,"Big 12","Baylor","Halfback","Launch Ratings"
3759,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/91.png?im=FaceCrop,padding=0.7","Devin","Grant",76,39,85,"Elmont","New York","Previous",23,"Senior",92,89,92,89,63,87,52,63,36,36,55,62,77,87,29,54,72,45,85,49,47,28,51,52,81,32,85,56,58,55,48,89,45,79,85,48,53,60,0,33,60,88,52,46,61,22,22,13,26,18,48,83,40,87,"ACC","Syracuse","Free Safety","Launch Ratings"
2572,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/88.png?im=FaceCrop,padding=0.7","DQ","Smith",73,59,85,"Columbia","South Carolina","Eligible",1,"Senior",89,82,79,93,77,89,47,72,50,59,27,32,65,81,27,31,88,60,96,47,31,34,46,57,75,27,85,65,61,53,37,88,49,82,87,54,57,71,0,27,27,87,46,67,71,11,34,20,27,40,47,92,64,85,"SEC","South Carolina","Free Safety","Launch Ratings"
22659,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/39.png?im=FaceCrop,padding=0.7","Drew","Stevens",73,45,85,"North Augusta","South Carolina","Eligible",18,"Senior",68,63,53,88,52,73,46,39,30,47,55,48,48,65,40,43,44,28,90,42,94,93,35,31,41,28,85,40,42,29,46,40,41,43,46,28,47,34,0,25,32,67,40,25,43,14,30,18,14,15,37,88,26,41,"Big Ten","Iowa","Kicker","Launch Ratings"
18924,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Eddrick","Houston",75,110,85,"Atlanta","Georgia","Eligible",96,"Sophomore",90,79,83,83,89,78,47,84,25,48,57,44,53,72,44,78,89,84,90,38,25,26,33,61,32,44,85,67,58,53,28,81,88,35,90,60,52,68,0,44,44,79,35,45,80,24,22,36,32,16,24,91,56,37,"Big Ten","Ohio State","Defensive Tackle","Launch Ratings"
18591,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/53.png?im=FaceCrop,padding=0.7","Eli","Blakey",74,54,85,"Louisville","Kentucky","Previous",1,"Senior",89,84,85,93,72,84,48,72,43,45,68,32,67,82,24,35,86,57,92,63,30,27,52,58,73,24,85,63,55,46,29,84,45,73,89,49,54,68,0,24,24,86,58,61,81,29,18,39,17,23,29,88,59,79,"MAC","Miami (Ohio)","Free Safety","Launch Ratings"
9801,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Eli","Raridon",79,92,85,"Des Moines","Iowa","Eligible",9,"Senior",87,81,87,91,78,82,71,61,45,73,74,83,85,78,66,57,79,70,88,73,33,42,64,67,47,72,85,69,69,63,48,52,59,31,61,71,64,66,0,78,87,81,66,75,61,10,15,28,31,14,31,87,74,57,"Independent","Notre Dame","Tight End","Launch Ratings"
23897,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Ethan","O'Connor",73,12,85,"Irvine","California","Previous",24,"Sophomore",94,93,93,96,53,83,54,52,48,67,50,61,80,92,34,38,61,55,92,74,32,30,58,57,83,31,85,67,62,53,34,86,53,76,80,61,55,69,0,33,62,91,65,59,56,34,22,32,28,32,44,76,45,88,"ACC","Miami","Cornerback","Launch Ratings"
1018,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Ethan","Burke",78,99,85,"Austin","Texas","Eligible",91,"Senior",87,81,81,77,82,90,35,88,28,37,54,35,40,69,35,91,87,70,81,35,24,27,41,42,34,35,85,47,44,42,27,91,85,38,92,36,40,45,0,35,35,83,35,35,74,23,16,20,34,25,25,79,37,44,"SEC","Texas","Left Edge","Launch Ratings"
21667,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Ethan","Onianwa",78,197,85,"Katy","Texas","Previous",78,"Freshman",64,61,59,88,96,87,46,60,47,46,53,24,27,60,27,25,67,93,95,24,26,25,28,78,24,28,85,88,84,91,46,37,63,25,27,80,77,84,0,24,28,57,25,45,47,26,21,23,23,10,32,93,44,24,"Big Ten","Ohio State","Left Tackle","Launch Ratings"
8616,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/85.png?im=FaceCrop,padding=0.7","Floyd","Chalk IV",67,32,85,"Mission Hills","California","Eligible",3,"Senior",93,86,84,92,74,85,85,34,31,84,85,63,69,86,55,26,33,52,92,85,39,47,75,49,23,60,85,54,52,53,44,41,30,32,34,51,51,50,0,65,64,89,84,70,32,32,15,16,35,33,39,93,76,24,"Mountain West","San Jose State","Halfback","Launch Ratings"
4163,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/42.png?im=FaceCrop,padding=0.7","Garrett","Oakley",77,88,85,"Columbus","Nebraska","Previous",86,"Junior",88,81,90,90,71,88,76,51,30,72,73,82,86,77,67,49,39,64,88,77,47,44,59,65,43,75,85,59,51,49,47,52,50,31,51,64,58,55,0,85,87,82,74,71,51,19,25,37,37,34,33,87,67,60,"Big 12","Kansas State","Tight End","Launch Ratings"
9295,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Gary","Bryant Jr.",71,20,85,"Riverside","California","Previous",2,"Senior",94,92,91,91,61,87,85,42,24,76,75,82,87,91,83,34,47,36,90,93,42,32,92,31,64,87,85,38,23,34,44,62,35,42,47,55,24,28,0,86,85,92,84,32,41,17,32,16,23,15,35,89,51,60,"Big Ten","Oregon","Wide Receiver","Launch Ratings"
19510,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/17.png?im=FaceCrop,padding=0.7","Harrison","Taggart",73,70,85,"Draper","Utah","Previous",7,"Junior",92,83,87,83,81,85,68,79,47,47,70,64,73,79,48,71,87,87,88,72,42,38,64,59,71,47,85,68,60,51,37,85,71,44,87,58,55,64,0,46,47,87,72,49,86,32,13,12,37,14,40,89,46,77,"ACC","Cal","Mike Backer","Launch Ratings"
558,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/117.png?im=FaceCrop,padding=0.7","Harrison","Waylee",70,52,85,"Johnston","Iowa","Eligible",21,"Senior",92,85,87,89,74,88,85,47,24,81,88,64,63,85,54,40,51,41,84,86,46,34,83,40,42,58,85,53,31,35,45,54,36,38,53,47,35,36,0,64,66,88,82,74,48,27,32,29,23,34,24,87,81,45,"ACC","Virginia","Halfback","Launch Ratings"
2331,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/8.png?im=FaceCrop,padding=0.7","Hayden","Reed",72,55,85,"Tampa","Florida","Eligible",8,"Senior",87,78,78,96,83,87,87,34,19,80,91,64,67,76,51,34,45,66,91,84,14,15,79,67,37,59,85,61,56,55,21,35,41,39,37,64,55,54,0,64,64,84,84,82,44,21,25,31,21,32,20,94,85,36,"The American","Army","Halfback","Launch Ratings"
5811,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/17.png?im=FaceCrop,padding=0.7","Hezekiah","Masses",73,15,85,"Deerfield Beach","Florida","Eligible",5,"Senior",94,93,92,92,58,85,66,56,24,24,62,41,70,92,44,44,57,43,74,78,47,31,62,56,78,41,85,55,57,49,38,83,33,80,84,47,51,54,0,44,47,92,77,25,70,12,11,26,29,33,42,83,25,85,"ACC","Cal","Cornerback","Launch Ratings"
2883,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/83.png?im=FaceCrop,padding=0.7","Ian","Strong",75,55,85,"Coram","New York","Eligible",9,"Junior",89,86,90,92,79,88,80,56,45,77,73,93,88,84,79,46,73,44,91,81,42,38,71,40,66,88,85,35,24,34,28,32,49,28,69,67,36,36,0,86,89,88,76,74,62,16,26,33,28,18,38,93,73,68,"Big Ten","Rutgers","Wide Receiver","Launch Ratings"
19500,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","J.Michael","Sturdivant",75,56,85,"Flower Mound","Texas","Previous",9,"Senior",93,89,90,90,77,83,85,52,25,76,72,86,85,86,87,46,70,40,82,84,35,30,86,40,50,84,85,31,17,29,32,58,44,40,62,52,40,42,0,83,93,94,73,59,60,26,11,18,13,31,45,85,62,52,"SEC","Florida","Wide Receiver","Launch Ratings"
2902,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/132.png?im=FaceCrop,padding=0.7","Jacob","Thomas",73,52,85,"Ashburn","Virginia","Eligible",7,"Senior",87,84,87,91,73,87,65,64,41,63,58,57,76,81,22,34,84,67,92,66,24,37,55,55,81,22,85,64,55,47,36,89,46,72,85,51,55,67,0,26,59,83,61,65,77,22,35,25,29,25,42,90,60,85,"Sun Belt","James Madison","Strong Safety","Launch Ratings"
21155,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/58.png?im=FaceCrop,padding=0.7","Jahron","Manning",70,35,85,"New Orleans","Louisiana","Eligible",13,"Senior",93,88,90,92,61,86,55,56,32,70,33,67,79,87,33,23,76,56,88,77,25,36,65,48,83,30,85,45,45,46,46,87,36,74,83,48,53,62,0,30,73,89,72,46,69,29,33,24,20,20,41,84,40,86,"SEC","Mississippi State","Free Safety","Launch Ratings"
23317,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/125.png?im=FaceCrop,padding=0.7","Jake","Renfro",76,153,85,"Mokena","Illinois","Previous",57,"Senior",67,57,64,88,93,92,27,61,29,49,57,26,28,52,29,25,69,92,79,29,26,24,30,79,28,25,85,84,79,89,39,37,65,29,29,83,81,85,0,24,29,59,24,48,47,24,37,26,33,32,44,92,46,16,"Big Ten","Wisconsin","Center","Launch Ratings"
4142,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/5.png?im=FaceCrop,padding=0.7","Jalen","Moss",73,15,85,"Menlo Park","California","Previous",18,"Junior",92,91,92,92,53,89,84,32,30,71,57,82,87,90,87,24,29,21,87,85,36,30,75,26,61,89,85,35,10,19,35,57,26,39,27,39,22,25,0,87,89,92,78,49,28,35,33,18,18,36,39,84,39,52,"Big 12","Arizona State","Wide Receiver","Launch Ratings"
23042,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/50.png?im=FaceCrop,padding=0.7","Jalen","Huskey",74,41,85,"Frederick","Maryland","Eligible",22,"Senior",92,87,89,90,63,84,42,47,38,39,58,27,78,85,26,33,65,51,91,54,41,43,50,58,84,26,85,65,61,52,42,85,35,84,82,55,54,65,0,26,29,89,52,46,75,10,32,36,19,28,47,92,37,82,"Big Ten","Maryland","Strong Safety","Launch Ratings"
6057,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/50.png?im=FaceCrop,padding=0.7","Jalil","Farooq",74,53,85,"Lanham","Maryland","Eligible",1,"Senior",93,88,90,89,72,90,89,51,28,73,58,86,88,87,84,45,69,42,81,87,25,28,87,40,55,89,85,37,25,37,41,61,45,41,64,49,34,35,0,89,91,90,80,59,62,20,24,13,12,11,39,76,55,53,"Big Ten","Maryland","Wide Receiver","Launch Ratings"
10237,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/24.png?im=FaceCrop,padding=0.7","Jaquez","Moore",70,45,85,"Live Oak","Florida","Previous",9,"Senior",93,85,85,89,72,88,84,41,34,83,81,61,69,87,57,34,50,55,81,84,28,47,77,53,40,61,85,53,52,57,25,53,34,37,45,44,32,33,0,67,55,91,79,77,44,15,37,25,37,47,45,83,79,45,"ACC","Duke","Halfback","Launch Ratings"
18875,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/106.png?im=FaceCrop,padding=0.7","Jax","Harrington",76,167,85,"Erath","Louisiana","Previous",70,"Senior",67,58,68,90,91,86,48,62,34,49,50,27,30,54,29,30,68,93,88,24,31,43,30,85,29,28,85,88,82,93,44,45,65,26,31,74,75,74,0,30,29,54,30,48,45,32,22,14,15,19,40,93,45,26,"Sun Belt","Louisiana","Right Guard","Launch Ratings"
8107,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Jay","Haynes",71,35,85,"Roanoke","Alabama","Previous",26,"Sophomore",93,89,87,87,67,81,87,45,26,76,87,60,63,86,64,37,47,34,86,85,36,24,74,31,45,65,85,48,46,44,47,47,36,35,48,41,28,32,0,66,60,89,82,70,46,21,32,31,15,11,37,84,64,48,"ACC","Clemson","Halfback","Launch Ratings"
6805,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/42.png?im=FaceCrop,padding=0.7","Jayce","Brown",72,19,85,"Fort Walton Beach","Florida","Eligible",1,"Junior",93,91,90,91,60,88,84,43,42,77,62,83,87,89,89,34,49,28,90,87,25,26,76,27,50,88,85,35,22,33,47,59,37,40,45,60,27,26,0,87,89,91,84,30,43,11,32,22,29,28,43,82,43,68,"Big 12","Kansas State","Wide Receiver","Launch Ratings"
7039,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Jaylon","Guilbeau",72,23,85,"Port Arthur","Texas","Eligible",3,"Senior",92,89,92,88,60,86,67,65,31,33,62,45,67,88,42,42,72,53,85,79,35,47,65,54,78,44,85,60,56,53,40,85,41,83,85,54,51,59,0,41,50,90,72,54,75,28,20,24,23,29,31,90,32,86,"SEC","Texas","Cornerback","Launch Ratings"
6927,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/109.png?im=FaceCrop,padding=0.7","Jaylon","Glover",69,45,85,"Lakeland","Florida","Previous",20,"Junior",92,86,84,88,74,86,85,50,36,81,85,57,64,85,51,43,54,49,79,85,25,48,75,42,42,56,85,57,51,53,30,55,43,38,54,47,36,37,0,59,64,90,82,71,44,31,36,34,17,24,33,85,76,44,"Mountain West","UNLV","Halfback","Launch Ratings"
1238,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Jerrick","Gibson",70,46,85,"Gainesville","Florida","Eligible",9,"Sophomore",95,93,91,87,68,73,87,39,46,82,71,66,66,92,55,31,45,50,91,89,48,42,95,41,53,61,85,54,47,54,29,66,32,44,41,47,34,38,0,65,72,93,87,70,40,19,30,28,15,35,27,89,73,55,"SEC","Texas","Halfback","Launch Ratings"
22218,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/83.png?im=FaceCrop,padding=0.7","Jett","Elad",73,45,85,"Mississauga","Non-US","Previous",9,"Senior",92,86,88,97,65,87,45,62,25,65,58,53,66,84,46,65,80,63,91,68,43,24,41,51,75,48,85,58,48,41,35,86,49,71,87,50,50,57,0,48,54,87,66,26,72,31,29,35,13,37,26,84,54,85,"Big Ten","Rutgers","Strong Safety","Launch Ratings"
7127,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/103.png?im=FaceCrop,padding=0.7","Jevon","Jackson",68,50,85,"Decatur","Alabama","Previous",4,"Senior",91,86,85,91,73,82,86,45,37,85,89,63,72,85,56,36,51,43,94,88,37,41,76,40,35,65,85,55,51,56,37,46,35,34,45,46,33,37,0,71,64,87,84,71,46,18,23,13,35,37,34,89,75,35,"The American","UAB","Halfback","Launch Ratings"
4251,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/111.png?im=FaceCrop,padding=0.7","Jhalyn","Shuler",75,65,85,"Abbeville","South Carolina","Previous",7,"Senior",87,82,87,91,74,90,37,80,31,33,52,31,65,76,41,70,85,62,92,35,44,29,39,52,68,41,85,60,60,52,36,89,60,38,87,54,50,59,0,36,36,82,36,31,90,27,12,34,35,17,39,90,31,76,"The American","USF","Will Backer","Launch Ratings"
3770,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/126.png?im=FaceCrop,padding=0.7","John Michael","Gyllenborg",77,90,85,"Leawood","Kansas","Previous",84,"Senior",86,78,86,88,79,86,78,35,42,70,73,85,86,76,72,34,44,63,92,77,28,29,62,61,27,76,85,58,52,51,45,32,34,16,50,64,59,55,0,80,88,83,72,73,45,21,33,36,28,15,45,85,73,37,"Mountain West","Wyoming","Tight End","Launch Ratings"
19015,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/18.png?im=FaceCrop,padding=0.7","Jordan","Kwiatkowski",73,75,85,"Sterling Heights","Michigan","Eligible",12,"Senior",85,78,82,88,80,90,31,88,43,56,48,51,62,75,29,53,86,87,92,58,34,34,34,54,68,31,85,45,45,46,43,91,57,53,88,51,52,51,0,31,59,80,52,48,87,22,20,18,37,13,29,92,57,65,"MAC","Central Michigan","Mike Backer","Launch Ratings"
10468,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","Jordan","Castell",74,57,85,"Orlando","Florida","Eligible",14,"Junior",89,84,88,94,76,85,53,64,47,48,30,43,67,83,30,39,87,63,92,47,48,24,49,59,74,30,85,68,64,53,35,87,51,75,85,55,55,69,0,28,41,86,52,67,80,14,16,37,20,32,26,85,62,77,"SEC","Florida","Strong Safety","Launch Ratings"
195,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/133.png?im=FaceCrop,padding=0.7","Joseph","Carter",72,75,85,"Jacksonville","Florida","Previous",25,"Senior",84,80,83,89,79,87,24,80,45,43,59,55,64,79,32,61,87,81,91,56,33,34,35,48,65,33,85,44,45,45,34,89,68,52,88,51,47,46,0,35,54,81,54,43,89,24,28,34,30,27,26,92,44,77,"Conference USA","Liberty","Mike Backer","Launch Ratings"
1657,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/37.png?im=FaceCrop,padding=0.7","Josh","Kreutz",74,130,85,"Bannockburn","Illinois","Previous",64,"Senior",82,75,79,88,84,93,39,36,43,31,50,43,43,60,39,45,34,84,88,39,25,35,43,91,38,41,85,84,83,85,36,29,35,40,39,86,88,84,0,39,40,72,41,28,28,17,15,20,14,25,27,93,27,37,"Big Ten","Illinois","Center","Launch Ratings"
1104,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/130.png?im=FaceCrop,padding=0.7","Josh","Dallas",73,45,85,"Sharpsburg","Georgia","Previous",19,"Junior",91,89,90,91,73,87,85,53,27,73,74,87,88,86,85,43,55,57,93,84,30,43,75,54,29,89,85,35,25,36,37,27,44,25,66,63,56,54,0,88,89,89,78,67,51,11,37,35,17,41,35,92,68,24,"Sun Belt","Georgia Southern","Wide Receiver","Launch Ratings"
7637,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/88.png?im=FaceCrop,padding=0.7","Judge","Collier",74,41,85,"York County","South Carolina","Eligible",8,"Junior",93,88,93,94,72,87,78,63,67,65,71,56,61,86,31,34,81,65,92,70,39,40,60,59,79,29,85,67,61,54,55,87,46,88,85,61,56,67,0,31,60,89,63,60,73,62,65,69,71,71,59,93,64,86,"SEC","South Carolina","Cornerback","Launch Ratings"
7401,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Julian","Sayin",73,43,85,"Carlsbad","California","Eligible",10,"Sophomore",87,84,79,89,61,79,79,36,65,63,69,41,50,84,29,36,41,35,87,77,29,40,25,31,45,28,85,22,22,23,79,45,36,34,65,25,24,24,0,42,47,81,74,45,40,84,88,90,86,94,76,85,47,51,"Big Ten","Ohio State","Quarterback","Launch Ratings"
8213,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Julian","Humphrey",72,35,85,"Galveston","Texas","Previous",6,"Junior",95,92,93,90,64,76,72,52,43,45,65,49,71,90,45,45,74,56,84,83,32,28,69,56,85,44,85,63,62,53,46,75,49,83,77,60,54,68,0,47,49,98,75,52,56,23,35,28,34,12,27,94,44,82,"SEC","Texas A&M","Cornerback","Launch Ratings"
3220,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/51.png?im=FaceCrop,padding=0.7","Kamari","Wilson",73,50,85,"Fort Pierce","Florida","Previous",24,"Junior",89,87,89,91,75,83,56,67,40,41,64,46,72,85,32,43,84,61,87,56,40,38,57,57,66,34,85,63,60,52,36,86,50,66,89,56,54,65,0,32,44,87,56,54,82,28,26,29,10,29,24,90,53,76,"The American","Memphis","Strong Safety","Launch Ratings"
5822,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/39.png?im=FaceCrop,padding=0.7","Kamari","Moulton",69,45,85,"Ft. Lauderdale","Florida","Previous",28,"Sophomore",94,89,84,88,69,83,87,42,44,76,81,55,62,88,53,31,43,56,92,85,24,25,76,49,31,58,85,57,56,55,36,43,31,33,41,52,54,53,0,63,56,92,81,54,40,33,34,32,36,41,23,90,69,39,"Big Ten","Iowa","Halfback","Launch Ratings"
10689,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/9.png?im=FaceCrop,padding=0.7","Kayin","Lee",71,18,85,"Ellenwood","Georgia","Eligible",4,"Junior",96,93,92,92,59,84,69,56,39,65,67,45,70,92,46,43,65,53,89,82,44,43,68,56,84,49,85,64,59,55,24,82,34,83,83,57,54,65,0,45,47,92,76,46,63,31,26,31,22,24,39,79,39,78,"SEC","Auburn","Cornerback","Launch Ratings"
9175,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/16.png?im=FaceCrop,padding=0.7","Keanu","Tanuvasa",76,140,85,"Mission Viejo","California","Previous",57,"Junior",76,63,75,89,90,87,24,88,29,41,51,28,30,53,28,72,85,88,92,26,45,30,32,59,21,28,85,67,60,56,34,85,86,30,86,55,55,63,0,25,26,66,25,39,90,22,27,33,18,37,47,93,41,25,"Big 12","BYU","Defensive Tackle","Launch Ratings"
22863,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Kendal","Daniels",77,82,85,"Beggs","Oklahoma","Previous",5,"Senior",90,82,86,97,78,87,51,68,49,49,27,43,70,80,26,40,93,64,94,50,29,37,49,56,72,27,85,68,64,54,27,88,52,74,87,58,55,71,0,28,40,88,45,67,76,24,24,10,19,26,39,90,63,76,"SEC","Oklahoma","Strong Safety","Launch Ratings"
6809,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/57.png?im=FaceCrop,padding=0.7","Kerry","Brown",70,30,85,"Naples","Florida","Previous",14,"Sophomore",94,92,91,94,63,82,60,57,32,66,49,44,76,89,46,39,75,53,91,74,31,36,62,54,73,46,85,56,59,51,26,83,30,67,85,48,51,56,0,47,46,90,73,33,77,18,23,11,13,17,29,87,31,84,"Big Ten","Minnesota","Strong Safety","Launch Ratings"
10289,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/15.png?im=FaceCrop,padding=0.7","Kobe","Stewart",75,80,85,"Alabaster","Alabama","Previous",0,"Senior",88,80,77,88,76,88,44,73,41,28,54,39,34,74,37,90,84,57,92,66,43,42,34,28,44,36,85,32,27,30,40,87,81,37,90,18,30,31,0,36,36,82,62,45,82,36,33,13,11,18,32,85,44,48,"MAC","Buffalo","Right Edge","Launch Ratings"
3638,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/34.png?im=FaceCrop,padding=0.7","Kyle","Efford",74,65,85,"Dacula","Georgia","Previous",44,"Junior",86,81,83,87,76,90,41,73,39,37,59,39,68,78,31,77,84,67,90,53,24,32,39,43,72,35,85,52,48,41,24,91,68,35,90,40,41,49,0,33,32,81,43,38,88,27,27,32,24,38,31,88,44,75,"ACC","Georgia Tech","Mike Backer","Launch Ratings"
10739,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Lawson","Luckie",76,80,85,"Norcross","Georgia","Eligible",7,"Junior",89,83,87,87,74,80,77,57,38,79,68,85,84,77,71,52,52,60,88,69,37,31,70,58,48,76,85,58,55,47,42,47,55,27,57,68,65,62,0,83,86,83,67,75,58,18,20,14,40,29,25,86,74,46,"SEC","Georgia","Tight End","Launch Ratings"
19820,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/41.png?im=FaceCrop,padding=0.7","Leshon","Williams",70,55,85,"Chicago","Illinois","Previous",4,"Senior",88,83,83,88,78,84,84,47,44,83,83,61,57,82,41,43,58,63,88,83,32,31,70,57,27,51,85,61,56,57,44,33,42,28,58,58,57,55,0,60,56,87,83,88,53,28,27,25,37,33,32,95,90,28,"Big 12","Kansas","Halfback","Launch Ratings"
22616,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/112.png?im=FaceCrop,padding=0.7","Logan","Fano",77,89,85,"Spanish Fork","Utah","Previous",0,"Junior",88,77,85,83,84,90,32,77,47,32,56,41,43,73,42,79,87,82,86,39,39,45,30,36,36,38,85,44,41,38,30,92,86,39,86,30,37,45,0,39,40,83,38,31,84,20,15,37,22,14,39,93,34,48,"Big 12","Utah","Right Edge","Launch Ratings"
9176,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/13.png?im=FaceCrop,padding=0.7","Logan","Taylor",79,148,85,"Lunenburg","Non-US","Previous",65,"Senior",76,72,72,87,90,92,42,54,43,42,51,37,37,55,31,39,54,88,90,37,46,47,34,89,37,32,85,85,85,85,41,43,53,31,37,84,84,84,0,36,37,64,33,41,42,12,15,17,10,24,46,90,38,37,"ACC","Boston College","Left Guard","Launch Ratings"
1048,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","Lucas","Carneiro",71,30,85,"Cornelius","North Carolina","Previous",17,"Junior",70,68,56,87,45,72,42,35,40,41,54,46,39,61,48,43,35,38,88,40,95,92,44,31,49,32,85,38,27,39,47,44,43,42,40,34,45,34,0,27,28,70,32,28,35,30,18,31,14,28,27,81,33,48,"SEC","Ole Miss","Kicker","Launch Ratings"
21685,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/30.png?im=FaceCrop,padding=0.7","Luke","Petitbon",74,150,85,"Annapolis","Maryland","Previous",51,"Senior",79,68,75,89,86,87,39,45,44,36,55,43,40,63,42,51,46,85,84,38,30,48,25,84,40,37,85,88,91,83,38,40,42,41,40,84,86,82,0,41,38,62,40,37,38,11,33,24,23,38,37,87,37,40,"ACC","Florida State","Center","Launch Ratings"
10268,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Marcel","Reed",74,25,85,"Nashville","Tennessee","Previous",10,"Sophomore",92,90,87,92,60,84,87,36,81,83,69,30,59,90,30,38,39,34,85,85,48,32,27,38,36,27,85,41,34,29,64,40,39,36,66,34,29,27,0,34,33,90,84,63,36,74,84,88,90,90,74,83,67,29,"SEC","Texas A&M","Quarterback","Launch Ratings"
10001,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/66.png?im=FaceCrop,padding=0.7","Marcus","Allen",74,30,85,"Marietta","Georgia","Eligible",29,"Senior",93,91,90,90,61,88,65,49,38,39,60,42,72,89,40,45,66,51,83,73,46,39,62,56,84,41,85,64,62,53,38,87,43,84,81,58,54,64,0,39,44,90,71,47,59,37,10,24,36,26,43,86,39,83,"ACC","North Carolina","Cornerback","Launch Ratings"
4829,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Maurion","Horn",71,30,85,"Broken Arrow","Oklahoma","Previous",4,"Junior",94,91,90,96,65,87,72,58,39,37,54,45,63,91,43,38,70,52,92,80,47,31,66,54,81,43,85,60,57,53,38,86,41,84,82,54,53,61,0,45,46,91,76,43,68,32,28,15,27,23,42,86,36,84,"Big 12","Texas Tech","Cornerback","Launch Ratings"
10039,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/122.png?im=FaceCrop,padding=0.7","Michael","Coats Jr.",70,20,85,"Louisville","Mississippi","Previous",3,"Senior",92,91,89,93,55,87,66,50,31,64,54,55,78,89,32,43,62,48,90,80,22,30,65,44,76,36,85,40,38,40,24,88,37,77,77,45,45,45,0,34,65,90,75,38,58,36,20,13,30,12,24,85,33,90,"Big 12","West Virginia","Cornerback","Launch Ratings"
19261,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/47.png?im=FaceCrop,padding=0.7","Miller","Moss",74,50,85,"Los Angeles","California","Previous",7,"Senior",83,79,79,89,62,87,71,46,57,69,64,32,41,77,26,40,53,37,88,70,43,36,25,43,50,22,85,46,34,34,78,61,45,24,64,40,37,36,0,34,38,79,67,45,49,83,86,92,72,92,75,87,54,61,"ACC","Louisville","Quarterback","Launch Ratings"
10309,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Mohamed","Toure",74,80,85,"Pleasantville","New Jersey","Previous",1,"Senior",88,83,88,92,78,88,43,76,36,39,56,39,64,79,43,72,85,78,82,43,36,36,45,57,64,43,85,65,61,54,36,87,84,51,89,58,55,66,0,43,43,84,43,39,90,24,24,24,24,24,36,91,51,72,"ACC","Miami","Will Backer","Launch Ratings"
23344,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/5.png?im=FaceCrop,padding=0.7","Myles","Rowser",73,25,85,"Detroit","Michigan","Eligible",4,"Senior",92,87,89,95,67,85,66,56,30,33,36,44,67,85,34,37,78,56,90,76,27,33,51,55,75,37,85,58,61,52,32,86,41,74,87,48,53,61,0,34,45,90,72,45,79,32,31,16,24,26,44,93,41,77,"Big 12","Arizona State","Free Safety","Launch Ratings"
19000,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/55.png?im=FaceCrop,padding=0.7","Omari","Kelly",72,27,85,"Trussville","Alabama","Eligible",1,"Senior",94,90,92,92,56,86,86,44,42,76,63,84,87,90,86,36,50,51,91,87,29,29,90,46,58,89,85,28,18,27,38,53,37,38,48,53,46,47,0,88,88,93,85,39,43,24,10,12,32,24,41,87,53,48,"Big Ten","Michigan State","Wide Receiver","Launch Ratings"
1659,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/132.png?im=FaceCrop,padding=0.7","Pat","McMurtrie",77,145,85,"Verona","New Jersey","Previous",76,"Senior",73,63,73,90,88,92,37,47,40,36,52,34,32,56,35,38,45,88,83,35,42,28,37,87,34,35,85,88,84,90,40,42,43,34,36,82,85,79,0,31,31,64,33,34,34,11,13,27,12,32,28,84,35,36,"Sun Belt","James Madison","Right Tackle","Launch Ratings"
21584,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/35.png?im=FaceCrop,padding=0.7","Peter","Manuma",72,45,85,"Ewa Beach","Hawaii","Eligible",1,"Senior",90,84,84,92,70,88,52,63,35,34,55,56,71,83,30,34,78,65,92,66,26,41,52,53,80,32,85,59,50,48,40,89,38,73,90,48,52,60,0,31,59,87,60,41,72,18,20,18,17,37,32,90,56,82,"Mountain West","Hawaii","Strong Safety","Launch Ratings"
6673,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/130.png?im=FaceCrop,padding=0.7","Pichon","Wimbley",74,145,85,"Newnan","Georgia","Eligible",74,"Senior",69,64,63,84,86,88,38,48,29,36,51,26,26,56,27,31,48,91,88,26,49,38,31,67,30,30,85,87,82,92,24,35,48,25,29,69,66,72,0,27,27,60,27,38,39,25,20,11,19,33,41,91,35,24,"Sun Belt","Georgia Southern","Left Guard","Launch Ratings"
23351,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/36.png?im=FaceCrop,padding=0.7","Re'Shaun","Sanford II",69,30,85,"Harker Heights","Texas","Previous",6,"Sophomore",95,88,90,88,65,81,85,36,46,83,79,67,74,87,61,29,35,50,88,86,29,35,76,45,51,67,85,53,52,51,30,55,30,39,32,50,46,45,0,74,69,90,82,51,32,22,16,16,21,13,35,84,61,55,"Big 12","Houston","Halfback","Launch Ratings"
20584,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/39.png?im=FaceCrop,padding=0.7","Rhys","Dakin",76,63,85,"Melbourne","Non-US","Eligible",9,"Sophomore",66,58,71,86,59,70,41,31,35,46,59,44,37,55,41,46,28,46,82,42,97,93,43,45,47,43,85,26,44,41,30,46,27,35,28,25,26,31,0,43,38,65,43,48,25,34,25,16,22,29,36,85,48,32,"Big Ten","Iowa","Punter","Launch Ratings"
4748,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/115.png?im=FaceCrop,padding=0.7","Robert","Henry Jr.",69,45,85,"Lumberton","Mississippi","Eligible",20,"Senior",93,88,88,90,73,84,84,37,35,82,85,72,75,86,58,33,40,45,88,86,37,34,85,37,46,66,85,55,56,58,43,56,30,39,36,43,30,32,0,71,71,89,83,72,38,18,12,36,23,19,30,88,73,50,"The American","UTSA","Halfback","Launch Ratings"
10656,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","Roderick","Kearney",76,147,85,"Jacksonville","Florida","Previous",71,"Sophomore",82,74,74,82,88,80,37,43,45,34,53,39,40,61,38,48,47,89,84,40,32,32,15,88,39,37,85,89,85,92,43,46,45,41,45,85,86,84,0,43,37,77,38,36,36,10,13,27,31,32,40,85,37,35,"SEC","Florida","Center","Launch Ratings"
3751,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Skyler","Gill-Howard",73,130,85,"Milwaukee","Wisconsin","Previous",0,"Senior",83,69,72,85,85,89,24,84,30,34,54,24,29,59,28,72,84,86,91,26,14,13,15,55,27,26,85,45,45,44,37,87,90,28,89,55,50,57,0,27,28,73,26,34,87,33,13,27,15,13,26,89,44,32,"Big 12","Texas Tech","Defensive Tackle","Launch Ratings"
159,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/23.png?im=FaceCrop,padding=0.7","Skyler","Bell",72,25,85,"Bronx","New York","Previous",1,"Senior",93,91,87,84,56,88,85,48,28,79,67,89,87,89,88,36,54,35,82,86,37,46,88,35,53,87,85,36,18,29,46,49,40,36,50,52,32,33,0,85,86,93,82,26,51,21,20,34,35,37,36,83,52,45,"The American","Connecticut","Wide Receiver","Launch Ratings"
23380,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/112.png?im=FaceCrop,padding=0.7","Smith","Snowden",70,20,85,"Lehi","Utah","Eligible",2,"Junior",95,94,94,92,62,84,73,52,43,65,60,44,73,92,48,37,74,54,88,83,29,28,70,56,84,47,85,65,62,53,46,85,46,80,83,59,56,67,0,48,49,92,81,53,54,10,31,36,24,18,31,83,44,77,"Big 12","Utah","Cornerback","Launch Ratings"
23501,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/30.png?im=FaceCrop,padding=0.7","Squirrel","White",70,18,85,"Birmingham","Alabama","Eligible",4,"Senior",95,96,90,92,52,87,89,30,26,84,68,75,85,96,81,28,25,27,85,93,38,43,88,25,51,82,85,30,18,28,31,55,26,38,27,23,16,19,0,85,82,95,87,30,25,10,28,28,17,36,47,82,44,33,"ACC","Florida State","Wide Receiver","Launch Ratings"
18870,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/86.png?im=FaceCrop,padding=0.7","T.J.","Harden",74,60,85,"Los Angeles","California","Eligible",25,"Junior",88,79,82,90,79,85,82,53,38,80,90,73,80,78,61,46,70,48,92,80,47,25,56,43,28,69,85,60,60,61,29,42,47,32,67,52,38,42,0,77,74,87,75,86,61,15,25,10,30,27,39,93,85,31,"ACC","SMU","Halfback","Launch Ratings"
22707,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/120.png?im=FaceCrop,padding=0.7","Taariq","Al-Uqdah",72,72,85,"South Central Los Angeles","California","Previous",3,"Junior",90,85,85,88,73,87,59,71,25,34,58,59,76,82,44,63,84,72,90,60,23,24,50,51,77,41,85,44,45,40,46,88,59,57,91,54,51,62,0,45,66,85,55,52,75,22,30,21,19,19,22,84,53,85,"Big Ten","Washington","Will Backer","Launch Ratings"
7643,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","Tamarcus","Cooley",72,35,85,"Knightdale","North Carolina","Previous",0,"Sophomore",92,89,89,88,72,82,58,63,42,45,31,33,75,85,34,34,77,56,92,77,27,26,65,45,73,32,85,45,43,44,41,84,47,73,87,51,52,52,0,30,35,89,67,59,75,33,18,19,32,13,42,84,58,86,"SEC","LSU","Free Safety","Launch Ratings"
7279,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/97.png?im=FaceCrop,padding=0.7","Tellek","Lockette",75,167,85,"Miami","Florida","Previous",74,"Senior",65,53,59,82,89,87,44,58,34,44,50,24,24,47,26,24,63,89,92,24,33,41,25,75,24,26,85,88,84,91,45,41,61,25,24,71,72,70,0,24,24,55,25,43,45,22,24,30,14,17,32,90,44,24,"Sun Belt","Texas State","Right Guard","Launch Ratings"
7370,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/47.png?im=FaceCrop,padding=0.7","TJ","Quinn",73,75,85,"Valdosta","Georgia","Previous",34,"Senior",89,82,84,89,78,87,46,81,31,35,55,38,67,78,37,62,87,68,91,48,38,43,39,55,65,38,85,62,62,53,31,89,74,49,88,56,55,63,0,39,37,80,42,37,89,17,21,13,13,14,39,87,46,73,"ACC","Louisville","Mike Backer","Launch Ratings"
7045,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/54.png?im=FaceCrop,padding=0.7","TJ","Guy",76,90,85,"Brockton","Massachusetts","Previous",4,"Senior",87,77,82,86,84,89,36,81,41,33,56,39,44,72,39,83,83,78,90,55,40,27,37,34,45,39,85,44,40,37,31,91,88,42,88,34,35,42,0,39,39,81,49,55,83,33,26,27,24,26,33,92,56,53,"Big Ten","Michigan","Left Edge","Launch Ratings"
20336,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/59.png?im=FaceCrop,padding=0.7","Toriano","Pride Jr.",71,28,85,"St. Louis","Missouri","Eligible",2,"Senior",95,93,93,87,65,83,69,50,42,44,65,48,74,90,45,47,74,54,86,79,39,45,69,56,86,45,85,64,62,55,47,80,51,83,82,59,56,68,0,46,50,92,77,57,54,28,34,12,19,10,40,89,43,78,"SEC","Missouri","Cornerback","Launch Ratings"
10498,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/37.png?im=FaceCrop,padding=0.7","Torrie","Cox Jr.",69,10,85,"Miami","Florida","Previous",5,"Senior",93,92,87,92,54,86,63,46,32,31,62,36,75,91,43,35,69,45,78,78,26,25,61,54,84,42,85,60,52,43,30,88,36,77,83,52,52,58,0,44,36,90,72,35,70,30,36,32,30,25,37,88,31,78,"Big Ten","Illinois","Cornerback","Launch Ratings"
19984,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/88.png?im=FaceCrop,padding=0.7","Trovon","Baugh",75,175,85,"Atlanta","Georgia","Eligible",78,"Junior",69,57,60,81,92,84,43,58,28,43,51,24,26,51,24,27,65,92,90,26,24,46,24,81,25,29,85,79,72,86,44,43,59,26,28,87,84,89,0,24,25,59,28,46,45,25,35,26,29,23,24,89,42,29,"SEC","South Carolina","Right Guard","Launch Ratings"
23207,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/40.png?im=FaceCrop,padding=0.7","Tyler","Miller",81,175,85,"Scranton","Iowa","Previous",66,"Senior",64,54,60,82,93,91,49,59,45,48,52,26,24,49,24,24,68,92,96,28,37,48,30,78,27,27,85,79,74,85,35,40,67,28,28,87,85,89,0,25,24,56,24,47,45,11,32,27,11,16,37,92,44,25,"Big Ten","Iowa State","Right Tackle","Launch Ratings"
8422,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/65.png?im=FaceCrop,padding=0.7","Tyler","Martinez",74,65,85,"Albuquerque","New Mexico","Eligible",35,"Senior",86,79,81,95,74,88,52,77,35,36,54,52,56,77,34,67,83,75,93,58,35,35,49,53,69,34,85,34,35,35,24,89,61,52,92,52,54,54,0,33,51,82,56,47,87,18,10,17,31,14,23,91,56,77,"Conference USA","New Mexico State","Will Backer","Launch Ratings"
21826,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Tyler","Brown",71,25,85,"Greenville","South Carolina","Previous",6,"Sophomore",96,92,94,90,56,84,84,36,48,82,69,85,86,89,84,29,38,44,83,90,26,25,87,43,51,87,85,28,16,26,47,56,28,39,37,52,43,42,0,89,92,92,87,45,36,33,20,30,26,20,42,82,53,45,"ACC","Clemson","Wide Receiver","Launch Ratings"
22356,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/94.png?im=FaceCrop,padding=0.7","Wendell","Moe Jr.",74,170,85,"Long Beach","California","Previous",75,"Junior",61,55,58,85,92,89,43,58,24,42,51,29,24,53,26,25,64,88,95,25,41,26,25,78,28,24,85,87,84,90,43,38,60,26,28,74,71,77,0,27,24,51,26,44,44,21,29,14,22,32,40,89,42,28,"SEC","Tennessee","Right Guard","Launch Ratings"
494,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Will","Pauling",70,30,85,"Chicago","Illinois","Previous",2,"Senior",92,89,86,92,63,90,85,44,32,62,70,88,86,89,84,39,54,34,87,84,40,35,90,30,50,89,85,33,23,33,29,43,38,33,50,50,30,30,0,92,86,89,78,45,49,19,35,18,21,20,28,85,47,36,"Independent","Notre Dame","Wide Receiver","Launch Ratings"
10110,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Will","Jados",79,150,85,"Westerville","Ohio","Previous",76,"Senior",76,63,72,91,89,88,38,50,45,38,53,30,29,53,31,32,50,90,87,31,32,34,30,85,29,28,85,81,79,86,27,38,53,32,33,86,85,88,0,30,28,67,29,39,40,18,25,12,33,26,34,89,36,27,"Big 12","Texas Tech","Left Guard","Launch Ratings"
33104,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Xavier","Robinson",72,79,85,"Yukon","Oklahoma","Eligible",24,"Sophomore",89,80,79,87,84,80,85,56,30,81,85,66,74,83,53,47,72,49,90,84,33,43,62,46,27,59,85,57,28,36,25,71,46,31,65,51,36,39,0,65,60,88,80,87,65,28,20,14,15,16,44,92,88,50,"SEC","Oklahoma","Halfback","Launch Ratings"
8212,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/114.png?im=FaceCrop,padding=0.7","Xavier","Smith",72,35,85,"Atlanta","Georgia","Previous",2,"Junior",91,87,89,95,65,91,77,44,33,55,45,31,62,86,48,25,83,61,92,68,22,26,66,45,64,45,85,52,52,50,38,89,32,55,87,48,52,59,0,48,41,88,72,38,84,16,15,39,10,24,32,91,45,68,"Conference USA","UTEP","Strong Safety","Launch Ratings"
180,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Zabien","Brown",72,32,85,"Santa Ana","California","Eligible",2,"Sophomore",94,93,92,91,65,78,74,58,36,73,53,64,76,91,40,48,77,58,92,81,33,43,60,57,84,40,85,44,44,45,43,79,42,85,83,54,53,61,0,41,70,92,78,43,71,29,33,16,23,38,46,85,35,86,"SEC","Alabama","Cornerback","Launch Ratings"
108,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Adepoju","Adebawore",76,101,84,"Kansas City","Missouri","Eligible",34,"Junior",91,81,82,82,79,82,38,73,26,35,56,40,42,68,40,92,86,74,85,40,42,25,39,42,35,40,84,51,47,44,26,79,85,41,88,41,40,49,0,40,40,86,40,36,76,20,33,10,19,35,46,80,35,44,"SEC","Oklahoma","Right Edge","Launch Ratings"
19875,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/17.png?im=FaceCrop,padding=0.7","Aidan","Keanaaina",75,160,84,"Brighton","Colorado","Previous",47,"Senior",72,64,70,90,92,88,25,88,47,42,57,23,32,46,25,70,85,91,93,27,28,27,36,57,32,23,84,67,64,55,24,87,83,28,82,60,53,68,0,27,24,58,24,42,87,18,21,33,15,19,33,95,45,28,"ACC","Cal","Defensive Tackle","Launch Ratings"
9433,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/117.png?im=FaceCrop,padding=0.7","Antonio","Clary",72,44,84,"Jacksonville","Florida","Previous",0,"Senior",93,89,89,93,73,85,70,64,45,43,53,52,69,86,38,45,89,64,90,68,35,30,59,60,64,40,84,65,63,55,47,84,53,68,86,53,54,67,0,42,54,90,66,58,80,26,19,35,37,30,42,95,58,72,"ACC","Virginia","Strong Safety","Launch Ratings"
5560,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/19.png?im=FaceCrop,padding=0.7","Antwan","Peek Jr.",73,54,84,"Cincinnati","Ohio","Previous",46,"Junior",88,83,85,86,74,85,42,76,43,45,65,51,52,83,26,34,86,73,87,57,24,23,56,58,65,24,84,64,64,52,38,87,42,71,87,53,54,67,0,25,55,84,55,65,83,10,22,31,18,35,38,92,59,75,"Big 12","Cincinnati","Strong Safety","Launch Ratings"
3439,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/94.png?im=FaceCrop,padding=0.7","Arion","Carter",73,75,84,"Smyrna","Tennessee","Eligible",7,"Junior",90,83,89,90,77,86,52,72,36,36,55,54,68,81,43,61,91,73,92,61,31,32,55,57,67,43,84,33,34,32,36,85,66,61,90,35,35,36,0,43,61,85,56,36,88,24,24,24,24,24,36,88,65,74,"SEC","Tennessee","Will Backer","Launch Ratings"
9518,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Ashton","Hampton",74,40,84,"Tallahassee","Florida","Eligible",23,"Sophomore",92,91,94,89,70,77,70,54,48,67,64,56,73,89,35,44,79,54,92,75,41,33,62,56,87,32,84,65,61,53,24,81,44,89,77,60,56,67,0,34,60,90,74,62,69,34,35,25,28,14,30,85,44,85,"ACC","Clemson","Cornerback","Launch Ratings"
1155,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/66.png?im=FaceCrop,padding=0.7","Austin","Blaske",77,150,84,"Effingham County","Georgia","Previous",58,"Senior",71,66,72,87,90,89,27,59,35,45,59,31,32,52,27,32,65,90,88,27,44,39,38,83,28,29,84,85,83,88,43,38,63,28,30,85,87,83,0,28,27,60,29,43,44,22,25,30,25,27,28,92,41,21,"ACC","North Carolina","Center","Launch Ratings"
23374,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/99.png?im=FaceCrop,padding=0.7","Avery","Smith",70,25,84,"East Point","Georgia","Previous",4,"Senior",91,88,88,97,57,86,51,54,47,67,65,55,73,88,28,35,72,48,91,74,26,35,59,57,85,31,84,66,52,41,39,88,33,80,82,61,55,67,0,28,56,90,70,57,67,31,35,18,11,13,35,84,45,81,"MAC","Toledo","Cornerback","Launch Ratings"
14829,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/60.png?im=FaceCrop,padding=0.7","Ben","Purvis",75,140,84,"Goddard","Kansas","Eligible",68,"Senior",77,70,67,88,88,92,35,44,37,34,50,24,28,57,26,29,44,87,91,24,42,46,28,90,24,24,84,81,78,85,48,38,41,24,29,87,90,82,0,27,24,69,27,32,35,35,28,37,23,14,29,94,32,28,"The American","Navy","Left Guard","Launch Ratings"
18417,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Ben","Roberts",75,75,84,"Haslet","Texas","Previous",13,"Junior",86,81,90,94,79,91,30,84,42,43,65,55,58,76,31,56,83,73,92,35,35,45,37,49,55,31,84,61,55,49,32,88,60,26,88,52,51,62,0,30,28,82,36,44,91,21,25,12,16,13,34,90,42,61,"Big 12","Texas Tech","Mike Backer","Launch Ratings"
18569,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/118.png?im=FaceCrop,padding=0.7","Ben","Bell",73,75,84,"Cedar Park","Texas","Previous",33,"Senior",87,78,80,87,80,92,43,79,33,35,56,38,42,72,35,87,85,79,92,50,24,23,24,35,55,38,84,45,32,27,24,89,91,41,88,32,35,45,0,36,35,83,45,46,76,37,29,31,22,22,41,88,49,60,"ACC","Virginia Tech","Left Edge","Launch Ratings"
20003,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/124.png?im=FaceCrop,padding=0.7","Blake","Bosma",75,65,84,"Holland","Michigan","Previous",86,"Senior",85,83,85,90,71,86,71,57,40,70,64,85,87,80,67,56,18,60,85,66,43,33,50,59,28,76,84,61,54,52,30,30,54,13,58,63,53,56,0,81,87,83,63,68,59,35,13,13,29,13,26,86,75,29,"MAC","Western Michigan","Tight End","Launch Ratings"
22835,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/61.png?im=FaceCrop,padding=0.7","Brandon","Cleveland",76,155,84,"Tampa","Florida","Eligible",44,"Senior",75,65,74,87,91,84,26,90,38,41,50,25,35,52,28,64,87,90,96,28,31,47,36,46,21,26,84,66,59,55,35,86,85,35,84,56,56,67,0,27,25,71,26,41,84,33,10,32,29,35,40,93,38,24,"ACC","NC State","Defensive Tackle","Launch Ratings"
2354,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Bravion","Rogers",72,25,84,"La Grange","Texas","Eligible",19,"Junior",94,91,93,90,60,83,67,48,43,41,60,44,71,90,41,44,66,49,86,81,37,30,67,57,84,45,84,64,60,55,36,82,41,86,83,57,55,66,0,41,51,93,73,48,52,37,19,12,15,15,29,86,40,77,"SEC","Texas A&M","Cornerback","Launch Ratings"
18542,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/17.png?im=FaceCrop,padding=0.7","Brent","Austin",71,14,84,"San Bernardino","California","Eligible",4,"Senior",92,91,90,91,55,85,55,57,31,61,52,26,75,88,31,30,63,43,92,73,42,24,55,53,78,34,84,60,57,52,48,87,32,79,81,53,53,60,0,35,34,90,71,36,69,33,17,24,15,20,48,82,32,86,"ACC","Cal","Cornerback","Launch Ratings"
19702,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/121.png?im=FaceCrop,padding=0.7","Brock","Dieu",75,139,84,"Queen Creek","Arizona","Previous",65,"Senior",77,73,72,94,86,88,33,39,31,34,56,33,33,59,32,41,39,86,83,34,40,46,38,87,34,35,84,86,88,83,45,37,38,33,39,82,86,78,0,35,36,64,37,35,31,27,17,32,31,29,26,87,30,37,"Pac-12","Washington State","Center","Launch Ratings"
2899,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/88.png?im=FaceCrop,padding=0.7","Bryan","Thomas Jr.",74,89,84,"Windermere","Florida","Eligible",46,"Senior",88,81,84,82,77,86,29,78,36,40,52,40,33,73,29,87,87,73,91,56,36,36,36,55,60,29,84,45,45,46,36,87,83,55,88,55,54,55,0,29,29,82,55,56,85,24,24,24,24,24,36,89,55,64,"SEC","South Carolina","Left Edge","Launch Ratings"
7536,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Bryce","Anderson",72,32,84,"Beaumont","Texas","Eligible",1,"Junior",93,88,91,93,66,81,77,65,42,43,44,44,73,87,44,60,79,60,90,68,36,42,61,60,83,44,84,62,62,53,27,83,51,79,85,51,53,67,0,43,46,91,67,56,69,10,32,26,19,22,34,94,54,84,"SEC","Texas A&M","Free Safety","Launch Ratings"
5733,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/94.png?im=FaceCrop,padding=0.7","Bryson","Eason",75,155,84,"Memphis","Tennessee","Previous",20,"Senior",83,71,79,84,92,88,35,85,15,47,53,32,45,58,32,73,85,85,91,39,13,12,15,53,34,32,84,67,62,53,11,85,88,34,86,60,57,70,0,32,32,73,38,33,75,14,18,15,15,16,11,90,51,38,"SEC","Tennessee","Defensive Tackle","Launch Ratings"
20566,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/31.png?im=FaceCrop,padding=0.7","Bryson","Donelson",71,45,84,"Visalia","California","Eligible",6,"Sophomore",93,87,87,88,68,76,85,49,44,82,87,71,78,87,63,40,45,55,92,87,32,31,76,51,43,67,84,57,49,45,33,65,39,35,55,52,45,46,0,74,68,89,83,72,45,23,33,32,27,31,35,91,72,44,"Mountain West","Fresno State","Halfback","Launch Ratings"
22234,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/61.png?im=FaceCrop,padding=0.7","Caden","Fordham",73,72,84,"Ponte Vedra","Florida","Previous",10,"Senior",86,79,84,90,77,87,39,75,43,41,54,39,58,77,31,61,87,78,88,42,24,33,40,54,68,34,84,56,51,45,38,89,63,36,87,48,49,55,0,34,32,82,46,40,88,25,24,13,36,36,27,88,40,79,"ACC","NC State","Mike Backer","Launch Ratings"
1585,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/11.png?im=FaceCrop,padding=0.7","Caden","Jenkins",73,17,84,"Lewisville","Texas","Eligible",8,"Junior",93,90,91,94,63,87,66,57,39,41,61,57,71,88,35,34,67,47,91,78,45,46,61,55,75,38,84,62,60,55,41,89,29,85,84,59,55,66,0,35,62,91,75,57,72,15,17,30,37,14,32,89,41,82,"Big 12","Baylor","Cornerback","Launch Ratings"
9316,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/130.png?im=FaceCrop,padding=0.7","Caleb","Cook",75,160,84,"Brunswick","Georgia","Previous",78,"Senior",72,59,67,88,90,90,36,48,27,36,50,25,27,52,29,29,48,89,87,28,31,24,31,82,24,29,84,86,83,89,28,29,47,26,25,81,82,80,0,28,26,60,26,38,38,23,20,31,30,18,32,88,36,26,"Sun Belt","Georgia Southern","Right Guard","Launch Ratings"
7551,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/40.png?im=FaceCrop,padding=0.7","Caleb","Bacon",76,80,84,"Lake Mills","Iowa","Previous",26,"Senior",86,76,80,87,83,85,27,83,43,44,52,45,34,75,29,73,84,68,85,28,41,38,35,57,75,29,84,66,62,57,40,86,75,29,89,62,54,68,0,29,29,79,23,46,86,35,15,26,22,12,41,87,43,72,"Big Ten","Iowa State","Sam Backer","Launch Ratings"
7642,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/131.png?im=FaceCrop,padding=0.7","Cam","Cook",71,35,84,"Round Rock","Texas","Eligible",4,"Junior",91,88,87,90,73,84,84,49,41,85,78,65,71,87,56,43,61,45,94,87,24,45,80,35,34,63,84,52,52,50,42,39,41,31,58,44,32,35,0,70,70,90,82,71,52,10,30,12,18,17,35,90,69,35,"Conference USA","Jacksonville State","Halfback","Launch Ratings"
30611,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/107.png?im=FaceCrop,padding=0.7","Carl","Fauntroy",72,25,84,"Mobile","Alabama","Previous",8,"Junior",89,86,83,92,59,85,64,57,29,30,49,33,66,84,37,30,79,45,91,60,39,38,55,53,71,38,84,56,54,45,37,84,27,71,84,49,52,58,0,36,35,87,62,33,77,29,23,16,25,31,25,93,35,86,"Sun Belt","UL Monroe","Free Safety","Launch Ratings"
7392,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/16.png?im=FaceCrop,padding=0.7","Carsen","Ryan",76,90,84,"Orem","Utah","Previous",20,"Senior",86,78,85,92,80,84,70,62,48,70,81,79,81,74,76,59,69,71,90,70,32,35,60,63,38,77,84,68,63,58,45,43,56,24,61,74,64,72,0,75,85,77,59,72,63,34,21,12,33,25,34,92,75,48,"Big 12","BYU","Tight End","Launch Ratings"
21303,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/13.png?im=FaceCrop,padding=0.7","Carter","Davis",73,30,84,"Baltimore","Maryland","Previous",7,"Sophomore",91,89,89,90,67,85,56,56,45,64,59,60,78,88,31,32,75,51,91,72,46,46,66,54,87,35,84,63,60,56,36,84,44,72,83,60,55,66,0,34,70,90,69,55,68,11,14,33,15,29,31,82,44,77,"ACC","Boston College","Free Safety","Launch Ratings"
2247,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/81.png?im=FaceCrop,padding=0.7","CJ","Nunnally IV",75,100,84,"Douglasville","Georgia","Eligible",91,"Senior",87,78,80,84,81,89,29,76,33,27,55,38,38,70,39,77,84,64,91,45,36,30,37,22,33,38,84,33,27,27,36,87,88,41,88,18,30,31,0,37,37,79,40,28,83,35,24,18,21,18,28,87,28,36,"Big Ten","Purdue","Right Edge","Launch Ratings"
7562,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/133.png?im=FaceCrop,padding=0.7","CJ","Bazile Jr.",73,100,84,"Miami","Florida","Eligible",11,"Senior",85,73,76,90,81,91,37,80,36,35,53,32,29,67,28,78,84,65,88,28,41,29,38,36,55,30,84,47,44,42,41,89,87,35,89,37,42,48,0,32,32,77,30,35,88,26,27,21,28,28,34,86,36,63,"Conference USA","Liberty","Right Edge","Launch Ratings"
21864,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/5.png?im=FaceCrop,padding=0.7","Clayton","Smith",76,80,84,"Queen City","Texas","Previous",10,"Senior",90,82,89,88,72,87,27,77,36,28,58,45,57,74,49,88,82,69,85,45,31,32,43,37,46,48,84,36,35,33,27,86,80,48,87,24,33,36,0,49,46,86,46,27,79,31,25,27,10,25,38,85,28,51,"Big 12","Arizona State","Left Edge","Launch Ratings"
20458,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Colbie","Young",75,55,84,"Binghamton","New York","Eligible",8,"Senior",91,87,91,88,77,88,77,57,36,75,76,87,87,84,84,47,71,46,92,82,46,33,67,40,26,85,84,35,25,34,24,26,47,25,65,58,42,46,0,86,94,87,76,72,61,31,30,32,33,32,28,91,71,25,"SEC","Georgia","Wide Receiver","Launch Ratings"
8948,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/83.png?im=FaceCrop,padding=0.7","Colin","Weber",76,95,84,"Hopkins","Michigan","Previous",18,"Senior",83,76,81,88,75,85,55,62,31,73,76,85,85,72,66,62,56,65,97,65,36,28,46,62,22,73,84,60,57,61,40,38,60,19,61,65,64,67,0,79,82,78,62,75,63,23,17,11,34,34,34,88,75,51,"Big Ten","Rutgers","Tight End","Launch Ratings"
24951,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Dakorien","Moore",71,22,84,"Duncanville","Texas","Eligible",1,"Freshman",97,97,93,84,53,69,90,35,57,84,71,78,84,95,84,42,46,50,92,93,27,26,85,43,66,82,84,30,24,32,25,50,33,45,57,52,47,45,0,82,91,96,90,53,40,32,33,41,45,51,33,87,49,56,"Big Ten","Oregon","Wide Receiver","Launch Ratings"
20284,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/54.png?im=FaceCrop,padding=0.7","Damon","Payne Jr.",76,143,84,"Belleville","Michigan","Previous",44,"Senior",79,64,75,83,89,84,27,87,43,43,57,27,34,53,27,72,85,80,95,27,36,43,32,57,23,27,84,69,59,55,37,83,88,34,84,59,54,65,0,27,27,65,27,41,81,27,13,27,23,32,25,97,43,29,"Big Ten","Michigan","Defensive Tackle","Launch Ratings"
8085,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Daniel","Harris",75,35,84,"Miami","Florida","Eligible",7,"Junior",94,91,92,92,60,80,63,48,35,35,53,55,70,90,43,46,74,52,88,76,36,47,61,56,77,41,84,61,59,51,47,81,29,87,82,55,52,61,0,42,57,95,73,40,67,13,34,25,19,35,27,83,34,85,"SEC","Georgia","Cornerback","Launch Ratings"
4136,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Dante","Moore",75,50,84,"Detroit","Michigan","Previous",5,"Sophomore",88,86,87,87,71,80,80,40,79,72,68,39,42,86,26,43,45,51,91,83,27,27,27,45,44,28,84,47,46,46,79,45,43,39,68,47,40,44,0,42,44,86,79,55,41,84,85,89,87,93,72,88,67,37,"Big Ten","Oregon","Quarterback","Launch Ratings"
1097,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/13.png?im=FaceCrop,padding=0.7","Daveon","Crouch",73,67,84,"Tampa","Florida","Eligible",1,"Senior",86,78,80,89,78,85,33,72,45,39,52,36,51,73,34,69,87,62,87,32,24,30,34,53,77,33,84,64,58,52,25,87,61,64,91,55,54,63,0,32,32,81,32,39,87,21,14,21,14,28,26,87,40,77,"ACC","Boston College","Will Backer","Launch Ratings"
2553,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/111.png?im=FaceCrop,padding=0.7","De'Shawn","Rucker",72,35,84,"Tallahassee","Florida","Previous",22,"Senior",93,89,93,89,61,86,57,59,43,66,64,45,65,87,36,42,73,52,83,70,32,36,61,54,81,39,84,68,62,55,35,85,47,86,82,60,56,69,0,37,46,91,64,54,58,23,13,28,18,16,38,85,52,87,"The American","USF","Cornerback","Launch Ratings"
20568,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/36.png?im=FaceCrop,padding=0.7","Dean","Connors",72,46,84,"Kamuela","Hawaii","Eligible",44,"Senior",93,91,87,95,66,87,82,51,48,78,74,78,80,88,63,40,59,49,94,82,35,38,66,44,34,70,84,54,48,49,28,32,42,28,44,44,32,35,0,79,74,91,80,65,51,35,40,42,47,45,32,85,65,26,"Big 12","Houston","Halfback","Launch Ratings"
3426,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Demonte","Capehart",77,155,84,"Hartsville","South Carolina","Previous",19,"Senior",83,62,75,88,96,82,25,79,36,49,57,26,30,44,25,78,83,82,98,25,39,44,37,58,27,26,84,67,65,57,43,77,89,31,84,60,57,69,0,25,25,65,27,47,83,10,34,20,25,26,45,97,48,23,"ACC","Clemson","Defensive Tackle","Launch Ratings"
758,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/94.png?im=FaceCrop,padding=0.7","DeSean","Bishop",70,48,84,"Knoxville","Tennessee","Previous",18,"Sophomore",92,88,85,87,74,79,90,47,46,77,87,64,70,86,56,38,60,52,88,83,28,40,72,46,46,64,84,57,54,55,29,45,42,34,56,53,51,52,0,68,65,87,81,69,52,35,33,12,33,30,45,87,74,44,"SEC","Tennessee","Halfback","Launch Ratings"
6210,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","Devin","Moore",75,39,84,"Naples","Florida","Eligible",28,"Senior",94,90,92,92,67,82,53,56,46,48,50,45,74,88,35,48,79,57,85,62,48,46,58,55,78,33,84,66,63,57,31,84,52,85,77,61,57,70,0,32,46,91,64,56,74,15,36,11,15,21,38,83,46,83,"SEC","Florida","Cornerback","Launch Ratings"
9731,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/115.png?im=FaceCrop,padding=0.7","Devin","McCuin",72,35,84,"Jacksonville","Texas","Eligible",14,"Junior",91,90,92,91,64,88,87,24,42,77,74,87,88,89,84,23,45,38,88,88,42,34,86,39,50,86,84,30,18,27,24,57,23,40,34,58,26,24,0,89,88,90,84,48,42,32,11,37,12,27,42,85,45,64,"The American","UTSA","Wide Receiver","Launch Ratings"
14783,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/81.png?im=FaceCrop,padding=0.7","Devin","Mockobee",72,47,84,"Boonville","Indiana","Previous",45,"Senior",93,86,90,91,72,87,84,45,44,83,74,72,73,86,55,39,53,45,93,87,33,31,63,38,44,63,84,55,51,50,43,43,38,33,49,46,33,36,0,71,69,90,82,77,48,29,22,26,28,10,28,85,79,41,"Big Ten","Purdue","Halfback","Launch Ratings"
6110,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/118.png?im=FaceCrop,padding=0.7","Donavon","Greene",74,36,84,"Mount Airy","North Carolina","Previous",3,"Senior",93,89,92,87,71,88,85,54,34,79,70,87,85,89,86,46,64,43,79,86,35,34,88,39,53,84,84,35,27,35,48,49,46,36,62,58,38,40,0,79,88,92,78,34,60,32,12,32,37,27,40,88,55,44,"ACC","Virginia Tech","Wide Receiver","Launch Ratings"
20637,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/38.png?im=FaceCrop,padding=0.7","Drew","Evans",76,146,84,"Fort Atkinson","Wisconsin","Previous",62,"Junior",73,72,73,85,96,85,48,59,32,49,55,35,30,54,34,37,67,87,85,29,43,41,30,77,32,31,84,86,83,88,42,50,65,29,30,72,74,70,0,34,35,63,32,46,47,28,12,28,32,11,32,88,47,29,"Big Ten","Indiana","Left Guard","Launch Ratings"
3557,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/91.png?im=FaceCrop,padding=0.7","Duce","Chestnut",72,40,84,"Camden","New Jersey","Previous",2,"Senior",94,92,92,86,60,84,68,55,38,39,59,47,69,93,45,44,74,53,89,80,31,44,66,59,81,47,84,64,58,51,25,83,50,81,82,58,55,64,0,44,45,90,73,45,65,10,33,13,22,33,37,89,40,83,"ACC","Syracuse","Strong Safety","Launch Ratings"
4126,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/28.png?im=FaceCrop,padding=0.7","Easton","Messer",69,30,84,"Louisville","Kentucky","Previous",8,"Junior",91,88,84,92,63,88,84,49,30,75,77,87,89,87,84,41,61,36,91,88,30,41,75,36,44,88,84,35,24,33,40,56,43,39,57,45,30,30,0,91,85,87,83,43,52,27,30,33,35,27,25,89,59,67,"The American","FAU","Wide Receiver","Launch Ratings"
4038,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/122.png?im=FaceCrop,padding=0.7","Eddie","Kelly Jr.",77,120,84,"Orlando","Florida","Eligible",1,"Senior",83,73,74,77,87,87,47,85,33,43,52,27,30,63,28,71,83,81,92,31,30,36,41,43,53,31,84,66,60,50,34,88,84,26,85,57,53,63,0,29,29,78,27,44,85,35,24,30,24,24,45,89,45,58,"Big 12","West Virginia","Left Edge","Launch Ratings"
20337,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/62.png?im=FaceCrop,padding=0.7","Elijah","Pritchett",78,150,84,"Columbus","Georgia","Previous",57,"Junior",76,64,71,87,93,85,41,51,22,41,51,30,31,52,35,37,56,93,90,30,27,30,24,79,34,30,84,81,75,87,38,44,54,30,34,86,87,85,0,34,31,67,32,42,38,26,22,30,36,33,21,91,39,31,"Big Ten","Nebraska","Right Tackle","Launch Ratings"
7322,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Elo","Modozie",75,85,84,"St. Augustine","Florida","Eligible",18,"Sophomore",88,79,79,85,77,86,27,79,28,42,57,39,34,70,25,89,86,77,90,55,27,34,37,51,58,26,84,69,63,54,25,88,86,32,91,58,55,68,0,25,29,82,55,57,82,37,28,37,18,36,42,88,54,66,"SEC","Georgia","Right Edge","Launch Ratings"
18887,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Emmett","Mosley V",74,45,84,"Chicago","Illinois","Eligible",3,"Sophomore",92,89,88,91,66,85,86,44,44,78,76,87,88,88,84,37,48,37,89,88,32,36,66,36,39,87,84,30,20,30,45,44,38,33,45,59,33,34,0,89,87,90,84,63,43,16,10,11,26,15,24,84,63,48,"SEC","Texas","Wide Receiver","Launch Ratings"
30754,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/110.png?im=FaceCrop,padding=0.7","Eric","Gentry",78,65,84,"Philadelphia","Pennsylvania","Previous",18,"Senior",90,85,87,88,71,88,52,79,36,39,56,39,60,80,43,77,85,85,80,66,36,36,45,59,58,43,84,65,61,54,36,90,65,44,92,59,56,65,0,43,43,87,62,39,87,24,24,25,24,24,36,78,59,66,"Big Ten","USC","Will Backer","Launch Ratings"
20293,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/51.png?im=FaceCrop,padding=0.7","Frank","Peasant",71,45,84,"Pensacola","Florida","Previous",22,"Senior",93,88,83,88,61,81,86,32,27,79,82,64,72,87,58,46,30,32,87,85,46,27,82,30,46,64,84,64,33,46,28,35,25,44,45,44,29,26,0,74,70,92,79,68,43,12,16,17,18,27,44,84,67,46,"The American","Memphis","Halfback","Launch Ratings"
3514,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/54.png?im=FaceCrop,padding=0.7","Greg","Crippen",76,149,84,"Northborough","Massachusetts","Previous",51,"Senior",77,72,72,85,88,90,36,48,47,37,57,35,37,54,35,42,54,89,84,37,47,28,35,82,35,36,84,85,81,88,26,40,49,36,36,75,72,78,0,36,35,64,31,38,42,25,13,32,15,36,26,90,37,30,"Big Ten","Michigan","Center","Launch Ratings"
8412,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/42.png?im=FaceCrop,padding=0.7","Gunner","Maldonado",71,33,84,"Chandler","Arizona","Previous",3,"Senior",92,87,90,91,66,83,61,65,37,40,35,48,75,87,37,37,78,56,88,59,29,44,52,59,75,38,84,58,60,54,29,85,47,70,89,58,53,64,0,37,47,89,58,51,75,37,26,38,14,13,35,93,50,83,"Big 12","Kansas State","Free Safety","Launch Ratings"
21070,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/114.png?im=FaceCrop,padding=0.7","Hahsaun","Wilson",71,30,84,"Florence","South Carolina","Previous",14,"Senior",93,88,87,88,69,81,84,39,27,80,84,61,60,86,48,33,45,29,90,86,41,28,72,35,38,53,84,51,22,24,43,53,32,38,40,40,26,28,0,59,60,90,82,62,42,22,19,22,26,10,40,86,70,42,"Conference USA","UTEP","Halfback","Launch Ratings"
23448,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","Harrison","Wallace III",73,35,84,"Montgomery","Alabama","Previous",2,"Senior",93,89,88,82,68,87,88,49,42,74,70,86,88,87,85,44,63,37,77,86,45,36,78,33,36,87,84,29,21,30,43,51,43,37,59,57,33,32,0,86,89,89,80,34,54,23,29,27,29,10,32,84,47,66,"SEC","Ole Miss","Wide Receiver","Launch Ratings"
149,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/88.png?im=FaceCrop,padding=0.7","Isaiah","Augustave",74,50,84,"Naples","Florida","Eligible",23,"Junior",92,81,85,86,78,88,84,53,38,83,80,64,64,81,44,43,67,62,90,85,37,36,78,55,42,56,84,60,57,61,33,41,46,32,64,55,57,56,0,62,62,87,81,84,60,27,17,18,24,33,42,88,87,39,"SEC","South Carolina","Halfback","Launch Ratings"
7575,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Jack","Bouwmeester",75,49,84,"Bendigo","Non-US","Previous",19,"Senior",68,65,71,87,58,71,35,44,46,28,52,32,41,55,26,48,34,48,90,27,93,95,28,36,46,30,84,38,28,30,42,36,33,39,40,32,37,34,0,39,28,67,26,33,39,25,26,20,11,30,33,90,46,40,"SEC","Texas","Punter","Launch Ratings"
146,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/9.png?im=FaceCrop,padding=0.7","Jackson","Arnold",73,51,84,"Denton","Texas","Eligible",11,"Junior",88,84,82,88,65,84,82,49,76,74,77,41,51,84,30,33,52,45,90,81,25,30,38,45,43,32,84,45,45,46,79,31,36,46,60,51,51,52,0,43,44,83,76,66,50,81,86,89,83,93,74,93,70,39,"SEC","Auburn","Quarterback","Launch Ratings"
10182,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/120.png?im=FaceCrop,padding=0.7","Jacob","Manu",71,65,84,"Santa Ana","California","Eligible",9,"Senior",89,83,84,95,76,88,50,81,34,35,57,35,65,79,41,82,87,74,93,49,32,32,44,54,64,43,84,64,61,55,41,90,72,41,90,52,53,59,0,40,43,85,45,45,87,12,26,32,34,17,39,87,33,67,"Big Ten","Washington","Mike Backer","Launch Ratings"
20985,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/49.png?im=FaceCrop,padding=0.7","Jalen","Slappy",76,142,84,"Columbus","Ohio","Previous",70,"Junior",74,64,68,90,88,90,37,43,35,35,50,24,27,56,28,25,46,89,92,25,45,36,27,85,25,24,84,85,80,90,26,29,44,24,27,81,83,79,0,26,24,65,28,35,36,12,23,13,26,14,47,93,36,29,"Sun Belt","Marshall","Right Guard","Launch Ratings"
23512,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/45.png?im=FaceCrop,padding=0.7","Jamarion","Wilcox",70,31,84,"Douglasville","Georgia","Previous",10,"Sophomore",92,90,88,89,69,80,89,38,45,81,73,61,66,89,53,32,43,51,91,86,22,22,75,45,35,61,84,57,55,55,27,54,34,38,41,52,52,53,0,66,71,90,82,63,38,14,23,25,30,23,29,86,72,36,"SEC","Kentucky","Halfback","Launch Ratings"
985,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","Jamarious","Brown",73,155,84,"Moss Point","Mississippi","Previous",96,"Sophomore",79,67,76,89,89,83,28,85,28,38,56,28,34,55,28,72,85,71,92,28,34,42,31,56,35,28,84,66,60,53,47,84,86,30,79,59,52,65,0,28,28,67,28,37,88,12,29,34,19,19,43,94,37,24,"SEC","Ole Miss","Defensive Tackle","Launch Ratings"
23336,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/5.png?im=FaceCrop,padding=0.7","Javan","Robinson",71,15,84,"Winter Garden","Florida","Previous",12,"Junior",94,92,89,93,53,85,72,48,27,66,43,64,69,90,37,33,57,45,88,80,45,40,54,52,79,36,84,56,56,48,33,86,27,78,82,49,51,55,0,37,61,92,75,28,69,33,35,19,16,29,40,77,25,82,"Big 12","Arizona State","Cornerback","Launch Ratings"
19674,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/104.png?im=FaceCrop,padding=0.7","Jayden","Bellamy",73,20,84,"North Haledon","New Jersey","Previous",29,"Junior",95,92,91,89,57,78,67,49,35,33,51,41,69,93,42,45,66,48,90,80,37,24,63,56,82,48,84,63,57,49,42,79,43,86,82,54,51,59,0,45,44,91,76,37,73,12,27,24,22,21,26,83,34,85,"Big 12","UCF","Cornerback","Launch Ratings"
9322,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/74.png?im=FaceCrop,padding=0.7","Jaylin","Davies",71,20,84,"Rancho Cucamonga","California","Previous",2,"Senior",95,91,89,92,61,83,68,61,40,69,62,43,64,91,43,43,75,51,92,80,31,32,74,54,74,43,84,65,61,53,40,84,34,80,87,56,54,66,0,41,45,93,72,45,77,19,16,30,18,32,26,88,38,78,"Big 12","Oklahoma State","Cornerback","Launch Ratings"
18609,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","Jaylon","Braxton",72,30,84,"Frisco","Texas","Eligible",11,"Sophomore",95,91,93,91,62,82,68,48,40,42,62,45,70,91,41,46,72,52,85,81,42,37,68,57,80,44,84,63,60,51,32,81,44,86,80,58,53,65,0,44,47,92,73,52,64,27,10,31,18,24,43,84,41,84,"SEC","Ole Miss","Cornerback","Launch Ratings"
20073,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/12.png?im=FaceCrop,padding=0.7","Jeremiah","Earby",74,22,84,"East Palo Alto","California","Eligible",6,"Senior",92,90,87,95,64,85,60,55,44,65,54,57,67,89,34,43,74,55,91,77,47,25,61,56,73,38,84,66,63,54,45,86,43,79,85,60,56,68,0,38,56,92,72,55,80,13,10,32,16,14,27,89,45,79,"Mountain West","Boise State","Cornerback","Launch Ratings"
8943,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/43.png?im=FaceCrop,padding=0.7","JeRico","Washington Jr.",70,15,84,"Atlanta","Georgia","Previous",1,"Sophomore",90,88,87,92,49,86,65,55,34,67,54,61,70,86,30,24,96,46,91,81,26,25,68,45,82,32,84,44,43,43,26,88,26,79,83,49,49,45,0,29,67,88,76,25,75,14,29,38,26,32,24,84,33,87,"Conference USA","Kennesaw State","Cornerback","Launch Ratings"
182,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/125.png?im=FaceCrop,padding=0.7","Joe","Brunner",77,158,84,"Whitefish Bay","Wisconsin","Previous",56,"Junior",72,60,71,85,91,85,41,56,24,41,50,26,32,56,32,29,60,89,90,29,33,47,30,81,26,26,84,87,83,91,25,40,57,29,28,79,76,83,0,31,32,61,30,41,44,33,35,17,20,14,28,93,42,31,"Big Ten","Wisconsin","Left Guard","Launch Ratings"
3024,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/104.png?im=FaceCrop,padding=0.7","John","Walker",76,150,84,"Kissimmee","Florida","Previous",55,"Sophomore",77,63,72,83,93,86,25,85,37,41,49,23,31,53,23,67,86,85,79,24,34,28,22,56,31,24,84,55,54,54,36,85,87,27,83,61,57,59,0,27,25,70,24,44,84,12,26,23,12,35,45,92,41,34,"Big 12","UCF","Defensive Tackle","Launch Ratings"
31472,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/115.png?im=FaceCrop,padding=0.7","John","Emery Jr.",72,60,84,"St. Rose","Louisiana","Previous",27,"Senior",89,83,86,87,77,85,83,54,44,81,87,55,64,82,43,42,55,53,76,82,35,41,77,46,40,55,84,62,56,60,47,45,41,34,60,53,39,43,0,61,59,90,77,87,40,15,10,19,34,20,39,87,86,49,"The American","UTSA","Halfback","Launch Ratings"
22285,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/86.png?im=FaceCrop,padding=0.7","Jordan","Hudson",73,31,84,"Garland","Texas","Eligible",2,"Senior",93,92,91,90,66,84,86,47,36,74,72,87,87,90,83,43,61,40,80,85,46,37,86,40,54,87,84,33,22,34,32,55,43,38,59,54,33,34,0,91,86,92,79,29,54,15,18,16,16,31,46,86,48,52,"ACC","SMU","Wide Receiver","Launch Ratings"
22988,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/47.png?im=FaceCrop,padding=0.7","Jordan","Guerad",74,140,84,"Tampa","Florida","Previous",99,"Senior",72,66,67,93,90,86,29,93,37,40,57,26,38,51,25,71,83,70,95,25,28,36,33,55,28,25,84,66,60,56,45,85,84,33,79,56,55,66,0,26,26,65,28,39,83,35,36,14,29,32,45,96,38,44,"ACC","Louisville","Defensive Tackle","Launch Ratings"
18831,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/37.png?im=FaceCrop,padding=0.7","Josh","Gesky",77,165,84,"Manteno","Illinois","Previous",73,"Senior",80,68,79,81,91,89,42,52,34,44,54,43,44,60,39,53,59,85,95,41,42,39,45,84,45,43,84,79,76,82,46,47,57,45,41,87,87,87,0,40,44,66,43,41,44,28,36,34,29,13,45,90,41,42,"Big Ten","Illinois","Left Guard","Launch Ratings"
6082,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Justin","Scott",76,138,84,"Chicago","Illinois","Eligible",5,"Sophomore",84,75,81,82,89,77,28,84,39,44,57,27,35,64,28,74,90,86,93,26,48,48,32,59,38,30,84,68,64,55,34,78,87,35,91,60,55,70,0,30,30,78,26,45,86,37,35,20,26,29,37,87,48,29,"ACC","Miami","Defensive Tackle","Launch Ratings"
7925,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/37.png?im=FaceCrop,padding=0.7","Kaden","Feagin",75,90,84,"Atwood","Illinois","Previous",3,"Junior",87,76,88,85,85,84,78,68,57,84,87,54,64,77,41,65,84,69,86,76,29,35,66,64,31,51,84,72,63,67,32,60,74,35,54,62,58,58,0,58,55,89,73,89,73,33,43,44,41,42,28,92,92,33,"Big Ten","Illinois","Halfback","Launch Ratings"
19331,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/37.png?im=FaceCrop,padding=0.7","Kaleb","Patterson",73,30,84,"Jackson","Mississippi","Previous",1,"Junior",92,90,90,93,67,82,64,52,43,60,62,47,66,89,39,44,71,55,90,74,30,44,64,59,77,41,84,65,60,52,36,84,43,85,83,60,56,68,0,42,43,91,70,55,79,25,12,32,16,23,32,89,43,82,"Big Ten","Illinois","Cornerback","Launch Ratings"
18879,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/9.png?im=FaceCrop,padding=0.7","Kaleb","Harris",73,41,84,"Bessemer","Alabama","Eligible",8,"Sophomore",91,87,90,91,72,76,58,67,40,43,33,46,67,86,32,38,88,63,90,75,43,33,49,57,82,34,84,64,60,53,25,78,46,73,87,51,55,66,0,32,38,90,67,54,84,33,36,17,34,28,28,92,52,75,"SEC","Auburn","Strong Safety","Launch Ratings"
1090,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/66.png?im=FaceCrop,padding=0.7","Kaleb","Cost",71,35,84,"Atlanta","Georgia","Eligible",21,"Junior",93,91,90,92,65,83,63,57,44,70,59,65,72,88,42,38,75,57,91,77,41,26,65,56,85,40,84,68,62,54,34,86,48,80,81,59,54,68,0,41,64,91,72,55,61,16,33,26,35,28,45,83,45,77,"ACC","North Carolina","Cornerback","Launch Ratings"
7047,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/101.png?im=FaceCrop,padding=0.7","Kameron","Hamilton",76,132,84,"Zachary","Louisiana","Eligible",6,"Senior",82,75,81,87,86,87,27,82,47,47,51,27,29,66,24,73,86,77,91,47,28,43,36,60,38,24,84,68,64,57,26,88,88,27,88,59,55,69,0,25,27,74,44,48,83,24,28,18,13,12,27,84,56,42,"The American","Tulane","Defensive Tackle","Launch Ratings"
4667,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Kendel","Dolby",71,34,84,"Springfield","Ohio","Previous",15,"Senior",95,92,91,92,60,84,69,51,33,33,61,46,67,93,43,43,75,51,88,78,31,26,63,56,72,45,84,60,58,52,43,82,43,77,85,52,53,60,0,44,48,91,76,35,70,16,22,34,14,37,28,87,32,85,"SEC","Oklahoma","Cornerback","Launch Ratings"
4072,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/114.png?im=FaceCrop,padding=0.7","Kenny","Odom",70,10,84,"Savannah","Georgia","Previous",6,"Junior",94,90,88,93,52,85,75,31,48,72,65,85,87,89,86,25,27,25,74,83,44,27,89,23,65,88,84,34,23,32,39,61,24,41,24,52,18,17,0,87,86,93,79,24,28,29,22,15,25,20,43,85,44,56,"Conference USA","UTEP","Wide Receiver","Launch Ratings"
9449,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Kenyatta","Jackson Jr.",78,105,84,"Miami Gardens","Florida","Previous",97,"Senior",90,78,86,78,83,83,38,86,35,36,56,40,53,67,40,88,87,75,82,40,44,38,38,48,42,40,84,49,47,42,41,82,82,44,89,39,40,51,0,40,40,80,40,36,83,12,28,26,18,24,39,85,36,50,"Big Ten","Ohio State","Left Edge","Launch Ratings"
708,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Khalil","Barnes",72,40,84,"Athens","Georgia","Eligible",7,"Junior",92,89,90,95,68,85,76,61,42,66,44,67,80,87,44,42,75,59,93,72,30,33,64,57,83,41,84,63,64,56,27,83,49,81,85,50,55,67,0,41,72,91,67,60,69,28,12,20,11,21,30,82,56,78,"ACC","Clemson","Free Safety","Launch Ratings"
20333,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/11.png?im=FaceCrop,padding=0.7","Kobe","Prentice",70,22,84,"Calera","Alabama","Eligible",16,"Senior",94,93,93,89,60,85,83,43,27,72,67,82,85,94,88,36,42,34,78,87,39,29,92,30,67,86,84,30,17,27,29,57,33,40,42,33,25,25,0,86,88,93,83,40,43,19,35,32,18,10,40,85,42,47,"Big 12","Baylor","Wide Receiver","Launch Ratings"
1345,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/74.png?im=FaceCrop,padding=0.7","Kyran","Duhon",73,105,84,"Lafayette","Louisiana","Eligible",33,"Sophomore",89,83,84,83,79,84,51,77,34,47,56,48,52,75,31,77,84,79,92,52,32,33,52,53,48,37,84,44,43,43,10,87,89,35,89,56,51,55,0,39,37,82,50,48,84,23,13,32,24,21,29,85,56,53,"Big 12","Oklahoma State","Left Edge","Launch Ratings"
23657,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/12.png?im=FaceCrop,padding=0.7","Latrell","Caples",72,31,84,"Lancaster","Texas","Previous",3,"Senior",92,90,90,90,61,88,83,43,39,72,75,87,86,87,85,34,52,34,90,80,37,29,81,34,40,88,84,32,21,33,32,47,35,35,45,60,29,32,0,88,87,88,75,27,47,26,14,12,14,30,40,92,51,54,"Mountain West","Boise State","Wide Receiver","Launch Ratings"
18594,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/13.png?im=FaceCrop,padding=0.7","Lewis","Bond",71,39,84,"Chicago","Illinois","Previous",11,"Senior",93,90,88,93,62,88,85,45,26,78,65,88,89,88,83,34,52,35,92,89,35,38,88,35,45,86,84,33,24,34,38,48,38,35,45,52,29,31,0,89,86,91,83,40,46,37,34,36,26,25,32,92,60,50,"ACC","Boston College","Wide Receiver","Launch Ratings"
7354,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/97.png?im=FaceCrop,padding=0.7","Lincoln","Pare",69,40,84,"Germantown","Tennessee","Previous",7,"Senior",91,85,85,89,71,82,87,47,34,83,87,71,75,83,63,37,52,35,92,85,47,40,77,40,39,69,84,54,34,31,36,42,35,35,51,47,35,38,0,73,69,87,83,75,47,29,19,31,30,19,48,87,81,41,"Sun Belt","Texas State","Halfback","Launch Ratings"
10691,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Liona","Lefau",73,67,84,"Laie","Hawaii","Eligible",18,"Junior",89,83,87,89,78,87,57,76,45,57,60,55,67,80,40,60,85,77,92,64,46,44,55,55,67,38,84,45,45,46,25,86,66,48,88,48,47,48,0,39,53,85,60,56,87,23,37,31,34,41,26,87,58,74,"SEC","Texas","Will Backer","Launch Ratings"
4656,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","Logan","Diggs",73,55,84,"Boutte","Louisiana","Previous",22,"Senior",88,85,86,88,75,87,85,40,49,81,87,65,67,82,54,35,45,65,70,83,14,15,82,55,42,61,84,63,55,55,27,45,34,34,42,49,34,40,0,69,60,87,78,85,38,29,35,32,41,37,37,85,85,47,"SEC","Ole Miss","Halfback","Launch Ratings"
10456,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/62.png?im=FaceCrop,padding=0.7","Marques","Buford Jr.",71,30,84,"Chicago","Illinois","Previous",3,"Senior",92,87,86,94,63,87,51,55,34,31,26,29,64,85,29,61,72,50,88,45,46,38,42,54,76,26,84,57,57,54,44,88,39,79,91,49,51,58,0,29,33,87,48,40,71,14,13,17,30,22,32,85,36,81,"Big Ten","Nebraska","Free Safety","Launch Ratings"
9341,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Marvin","Jones Jr.",77,102,84,"Sunrise","Florida","Eligible",8,"Senior",89,79,88,83,84,79,36,79,24,39,56,46,58,69,44,88,87,71,87,51,35,28,42,42,54,47,84,52,45,44,25,81,81,43,87,38,44,49,0,45,47,85,47,49,84,24,19,27,19,10,40,90,40,64,"SEC","Oklahoma","Left Edge","Launch Ratings"
7688,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/86.png?im=FaceCrop,padding=0.7","Matthew","Hibner",77,91,84,"Burke","Virginia","Previous",88,"Senior",82,77,82,89,79,87,68,63,27,66,66,84,84,73,65,60,58,67,90,69,48,33,51,65,35,77,84,59,57,61,35,37,57,19,58,65,65,66,0,79,82,78,66,72,63,26,14,20,38,19,34,88,68,38,"ACC","SMU","Tight End","Launch Ratings"
19545,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/11.png?im=FaceCrop,padding=0.7","Matthew","Fobbs-White",75,70,84,"Monroe","Louisiana","Previous",50,"Junior",90,81,84,83,71,87,33,71,28,33,54,38,48,69,39,89,83,67,87,60,48,37,36,37,56,38,84,44,42,40,36,88,83,39,91,33,37,44,0,39,35,83,55,57,80,10,12,27,29,38,27,80,57,62,"Big 12","Baylor","Right Edge","Launch Ratings"
9151,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/5.png?im=FaceCrop,padding=0.7","Max","Iheanachor",77,155,84,"Los Angeles","California","Previous",58,"Senior",69,58,72,86,93,89,42,56,45,43,54,27,28,54,32,31,61,93,88,26,43,44,32,84,32,31,84,83,79,87,37,45,59,32,31,87,89,85,0,31,27,59,28,43,41,19,20,25,10,14,25,91,44,26,"Big 12","Arizona State","Right Tackle","Launch Ratings"
5459,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/117.png?im=FaceCrop,padding=0.7","Monroe","Mills",79,160,84,"Columbia","Missouri","Previous",71,"Senior",72,64,74,89,91,90,32,41,32,35,53,29,28,55,32,33,42,87,86,33,42,37,34,85,32,30,84,83,80,87,39,28,39,33,29,84,82,86,0,31,28,62,32,34,35,13,17,27,32,33,28,88,33,30,"ACC","Virginia","Right Tackle","Launch Ratings"
14802,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/92.png?im=FaceCrop,padding=0.7","Namdi","Obiazor",75,60,84,"Eden Prairie","Minnesota","Eligible",4,"Senior",87,80,83,87,74,86,37,82,32,35,55,34,53,76,35,66,84,73,90,35,24,30,36,54,67,31,84,62,60,52,46,88,66,34,87,55,52,60,0,33,37,83,34,34,86,37,36,21,18,15,31,90,33,80,"Big 12","TCU","Will Backer","Launch Ratings"
9284,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/99.png?im=FaceCrop,padding=0.7","Nasir","Bowers",69,22,84,"Lakeland","Florida","Eligible",0,"Senior",92,90,85,92,55,85,63,52,41,71,56,44,72,87,39,33,66,52,90,77,33,35,73,44,79,38,84,44,43,43,32,85,31,74,87,43,43,42,0,40,64,89,70,43,80,19,34,17,32,31,29,87,43,83,"MAC","Toledo","Cornerback","Launch Ratings"
6826,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/35.png?im=FaceCrop,padding=0.7","Nick","Cenacle",74,40,84,"Montreal","Non-US","Eligible",3,"Senior",89,87,87,92,66,88,78,48,46,76,61,88,87,85,82,43,61,51,91,80,24,23,74,45,35,91,84,31,20,29,39,49,41,35,58,53,47,46,0,90,88,87,77,61,56,24,25,24,33,36,24,87,58,59,"Mountain West","Hawaii","Wide Receiver","Launch Ratings"
23169,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/55.png?im=FaceCrop,padding=0.7","Nick","Marsh",75,41,84,"Detroit","Michigan","Eligible",6,"Sophomore",93,92,93,88,75,78,85,50,49,81,67,87,86,88,85,40,64,55,92,89,32,34,79,45,44,86,84,35,26,36,33,43,41,33,59,61,53,50,0,84,92,91,85,74,56,35,43,44,41,45,33,90,72,42,"Big Ten","Michigan State","Wide Receiver","Launch Ratings"
6192,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/55.png?im=FaceCrop,padding=0.7","Nikai","Martinez",71,34,84,"Apopka","Florida","Eligible",1,"Senior",94,92,90,94,61,86,77,57,28,66,56,61,73,89,49,32,72,50,88,77,37,48,59,54,81,50,84,51,56,48,28,85,22,80,83,49,51,55,0,49,66,89,74,34,66,25,28,22,23,26,42,85,25,77,"Big Ten","Michigan State","Strong Safety","Launch Ratings"
6664,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Noah","Whittington",68,40,84,"Fort Valley","Georgia","Previous",6,"Senior",92,88,88,88,78,87,84,48,48,80,75,72,76,86,64,41,60,47,95,83,28,29,89,42,67,66,84,61,50,59,35,63,38,42,56,55,53,54,0,73,71,91,83,75,52,14,34,25,30,23,37,94,81,58,"Big Ten","Oregon","Halfback","Launch Ratings"
1565,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/62.png?im=FaceCrop,padding=0.7","Nyziah","Hunter",74,50,84,"Salinas","California","Previous",13,"Sophomore",92,90,96,89,77,82,80,43,25,77,73,87,86,88,84,47,65,60,91,85,31,29,88,51,55,86,84,32,24,33,31,52,45,54,55,61,52,48,0,85,92,91,81,70,57,30,35,27,27,30,38,91,71,54,"Big Ten","Nebraska","Wide Receiver","Launch Ratings"
3494,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/38.png?im=FaceCrop,padding=0.7","Omar","Cooper Jr.",72,41,84,"Indianapolis","Indiana","Previous",3,"Junior",92,87,89,88,71,83,77,52,41,74,76,87,86,85,88,42,55,53,91,83,48,48,73,51,42,85,84,31,20,31,27,52,42,37,58,56,54,51,0,83,88,92,78,67,57,16,23,16,15,11,28,91,68,61,"Big Ten","Indiana","Wide Receiver","Launch Ratings"
5876,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/88.png?im=FaceCrop,padding=0.7","Oscar","Adaway III",71,59,84,"North Little Rock","Arkansas","Previous",27,"Senior",88,81,83,88,79,92,77,53,27,78,89,64,69,80,45,43,68,59,94,82,37,37,63,53,28,56,84,60,57,56,32,32,45,28,63,54,55,51,0,65,61,86,78,83,61,12,22,34,16,27,28,93,88,36,"SEC","South Carolina","Halfback","Launch Ratings"
21565,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/94.png?im=FaceCrop,padding=0.7","Peyton","Lewis",73,52,84,"Salem","Virginia","Eligible",2,"Sophomore",93,86,92,87,78,77,76,39,29,81,89,68,69,86,55,34,42,51,91,85,29,46,88,42,31,60,84,57,58,53,34,44,31,33,41,49,38,37,0,66,66,94,80,80,36,14,14,15,10,27,40,90,83,27,"SEC","Tennessee","Halfback","Launch Ratings"
18260,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Peyton","Woodring",70,25,84,"Lafayette","Louisiana","Eligible",91,"Junior",73,74,52,84,48,70,36,41,32,39,57,33,34,75,43,46,44,27,91,35,93,96,34,26,26,44,84,43,44,42,44,36,35,33,48,24,31,29,0,43,41,71,27,29,39,37,27,36,12,12,39,81,46,28,"SEC","Georgia","Kicker","Launch Ratings"
6131,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/130.png?im=FaceCrop,padding=0.7","River","Helms",76,70,84,"Lester","Alabama","Previous",87,"Senior",86,81,82,93,72,88,81,50,34,73,75,85,85,75,69,48,44,58,88,76,26,42,54,55,34,77,84,63,59,63,37,42,46,23,49,59,57,56,0,79,82,83,72,74,49,30,37,10,30,20,42,89,74,49,"Sun Belt","Georgia Southern","Tight End","Launch Ratings"
20926,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Roderick","Robinson II",73,75,84,"San Diego","California","Previous",0,"Sophomore",88,83,88,86,83,84,75,55,42,82,85,58,63,82,51,44,67,67,78,79,40,36,75,55,41,55,84,63,62,65,46,48,44,35,64,61,58,57,0,61,63,88,74,89,63,23,32,26,33,30,45,90,91,45,"SEC","Georgia","Halfback","Launch Ratings"
3989,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Ross","James",74,30,84,"Brandon","Mississippi","Previous",92,"Senior",74,66,66,88,50,75,25,32,26,27,52,46,35,67,29,30,38,31,87,40,87,95,46,47,35,38,84,24,26,27,25,47,35,37,34,32,45,37,0,26,36,73,27,40,32,23,14,20,28,13,28,91,27,26,"Big Ten","Oregon","Punter","Launch Ratings"
20624,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/55.png?im=FaceCrop,padding=0.7","Ryan","Eckley",74,48,84,"Lithia","Florida","Previous",96,"Junior",68,63,59,87,58,70,40,33,32,38,60,30,28,57,46,25,26,29,92,31,95,94,43,44,30,38,84,34,45,27,48,33,41,35,32,20,43,27,0,38,47,68,36,42,29,36,11,31,27,29,28,86,30,32,"Big Ten","Michigan State","Punter","Launch Ratings"
20621,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","Sage","Ryan",71,40,84,"Lafayette","Louisiana","Previous",3,"Senior",92,88,90,91,67,84,54,59,40,59,48,26,67,86,28,28,77,53,84,67,46,41,54,57,75,29,84,62,59,51,44,83,34,81,82,57,53,66,0,32,28,91,65,50,73,27,20,19,31,17,43,90,38,83,"SEC","Ole Miss","Free Safety","Launch Ratings"
2362,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/90.png?im=FaceCrop,padding=0.7","Sam","Roush",77,100,84,"Nashville","Tennessee","Eligible",86,"Senior",85,79,88,89,75,86,80,56,42,75,76,83,85,76,66,52,48,65,87,75,39,36,63,58,45,72,84,69,63,64,46,49,52,28,55,65,57,59,0,78,84,83,69,82,58,37,33,22,27,26,48,85,77,50,"ACC","Stanford","Tight End","Launch Ratings"
29207,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/64.png?im=FaceCrop,padding=0.7","Scottre","Humphrey",70,41,84,"Seattle","Washington","Eligible",22,"Junior",91,88,85,92,70,76,87,57,22,81,88,51,56,87,45,47,45,56,89,82,24,23,80,55,26,51,84,60,55,60,26,68,47,27,68,52,38,41,0,56,46,91,78,81,44,24,32,32,25,40,32,93,78,35,"Mountain West","New Mexico","Halfback","Launch Ratings"
21996,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/58.png?im=FaceCrop,padding=0.7","Seydou","Traore",76,75,84,"London","Non-US","Previous",8,"Senior",88,82,88,87,70,87,83,46,32,73,72,84,87,77,72,45,22,48,90,81,32,44,60,46,42,78,84,51,48,51,37,47,42,27,48,59,58,51,0,76,88,84,77,74,49,21,34,33,25,37,34,92,76,51,"SEC","Mississippi State","Tight End","Launch Ratings"
4673,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/53.png?im=FaceCrop,padding=0.7","Silas","Walters",73,38,84,"West Chester","Ohio","Previous",29,"Senior",88,86,85,91,63,87,48,60,40,43,66,45,55,83,26,31,75,55,88,48,30,26,54,55,82,27,84,65,47,43,47,86,42,76,81,47,53,67,0,28,51,86,47,59,64,34,14,22,34,23,31,87,53,91,"MAC","Miami (Ohio)","Strong Safety","Launch Ratings"
9162,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/78.png?im=FaceCrop,padding=0.7","Skyler","Thomas",74,52,84,"East Menlo Park","California","Previous",17,"Senior",88,83,84,93,76,85,43,62,48,48,72,31,66,80,26,36,88,64,95,47,33,43,55,56,83,23,84,70,62,58,24,87,47,75,86,54,55,71,0,24,26,83,43,66,81,30,23,21,18,24,41,92,64,71,"Pac-12","Oregon State","Strong Safety","Launch Ratings"
317,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/59.png?im=FaceCrop,padding=0.7","Stephen","Hall",72,42,84,"Memphis","Tennessee","Previous",0,"Senior",92,89,92,95,66,86,70,59,45,64,51,54,68,87,27,44,78,47,93,74,11,12,65,58,82,27,84,66,48,44,34,85,32,81,81,59,55,67,0,27,64,90,70,44,71,21,25,30,10,26,43,82,44,85,"SEC","Missouri","Cornerback","Launch Ratings"
22508,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/112.png?im=FaceCrop,padding=0.7","Tanoa","Togiai",78,147,84,"Rigby","Idaho","Previous",73,"Senior",72,63,71,86,92,87,40,51,26,43,54,29,26,53,28,32,55,91,87,27,39,27,28,85,26,27,84,74,69,78,31,35,55,30,29,88,84,91,0,25,27,61,28,40,43,14,36,24,14,31,35,89,39,26,"Big 12","Utah","Left Guard","Launch Ratings"
23222,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/99.png?im=FaceCrop,padding=0.7","Terrence","Moore",77,145,84,"Massillon","Ohio","Previous",58,"Senior",71,57,70,84,86,80,33,47,25,36,55,36,37,55,37,42,45,84,83,33,48,36,38,71,32,33,84,85,93,86,38,39,42,31,33,72,79,74,0,33,32,58,32,35,38,19,26,16,33,25,33,85,35,26,"MAC","Toledo","Center","Launch Ratings"
31046,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/93.png?im=FaceCrop,padding=0.7","Terrez","Worthy",71,20,84,"Salisbury","Maryland","Eligible",25,"Senior",94,90,92,87,54,77,83,41,29,82,77,55,69,89,51,33,49,41,86,88,27,43,65,40,42,61,84,57,31,38,34,44,37,33,44,48,36,38,0,68,64,91,83,52,41,21,27,13,23,14,34,76,49,41,"The American","Temple","Halfback","Launch Ratings"
2366,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/99.png?im=FaceCrop,padding=0.7","Trayvon","Rudolph",70,27,84,"Crete","Illinois","Previous",9,"Senior",94,93,92,90,59,89,85,44,42,77,67,79,86,92,84,36,52,34,87,89,37,36,95,36,51,85,84,33,16,28,33,52,39,37,50,48,32,29,0,87,86,92,85,35,47,30,26,29,14,37,31,84,58,36,"MAC","Toledo","Wide Receiver","Launch Ratings"
527,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/106.png?im=FaceCrop,padding=0.7","Tyree","Skipper",74,47,84,"New Orleans","Louisiana","Previous",4,"Senior",88,83,88,91,77,85,48,62,50,47,26,71,79,81,27,34,81,60,90,50,39,35,46,59,71,29,84,67,50,44,39,86,46,70,81,51,57,69,0,30,77,86,48,62,77,27,23,18,20,39,30,89,60,88,"Sun Belt","Louisiana","Free Safety","Launch Ratings"
22001,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/38.png?im=FaceCrop,padding=0.7","Tyrique","Tucker",72,138,84,"Norfolk","Virginia","Previous",95,"Junior",79,66,66,85,89,87,27,85,30,41,49,27,31,57,26,71,87,89,92,26,21,24,15,54,20,27,84,66,50,45,32,85,88,26,87,56,56,66,0,24,25,71,25,39,81,17,36,20,31,27,33,94,52,25,"Big Ten","Indiana","Defensive Tackle","Launch Ratings"
12374,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/15.png?im=FaceCrop,padding=0.7","Victor","Snow",68,8,84,"Webster","New York","Previous",0,"Junior",95,93,85,92,54,87,82,48,47,77,81,83,86,91,81,39,59,38,90,88,32,48,66,35,47,86,84,29,15,27,38,56,40,38,55,48,30,31,0,87,84,93,84,33,52,21,31,14,34,31,30,93,42,62,"MAC","Buffalo","Wide Receiver","Launch Ratings"
20278,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Walker","Parks",77,150,84,"Lexington","Kentucky","Previous",64,"Senior",79,66,75,89,92,92,35,46,28,39,55,39,36,56,40,40,48,88,86,35,47,40,34,84,34,40,84,81,76,86,43,43,49,40,38,83,86,80,0,39,39,64,39,38,35,19,32,36,20,32,27,90,36,40,"ACC","Clemson","Right Guard","Launch Ratings"
18492,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/51.png?im=FaceCrop,padding=0.7","William","Whitlow Jr.",74,100,84,"Millbrook","Alabama","Previous",9,"Senior",85,74,77,87,82,87,43,78,25,41,56,30,34,68,29,70,86,78,90,30,24,33,40,36,45,30,84,61,54,48,45,88,88,35,87,52,48,59,0,32,29,80,28,44,87,25,32,11,37,23,43,93,41,53,"The American","Memphis","Right Edge","Launch Ratings"
10100,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","Wydett","Williams Jr.",74,45,84,"Lake Providence","Louisiana","Eligible",16,"Senior",89,85,87,90,68,88,43,65,42,43,65,56,77,83,27,30,79,55,93,45,48,44,51,55,65,25,84,61,56,49,48,87,39,74,87,48,54,67,0,27,65,88,43,54,81,15,34,29,33,17,35,91,54,76,"SEC","Ole Miss","Strong Safety","Launch Ratings"
20180,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/86.png?im=FaceCrop,padding=0.7","Yamir","Knight",68,20,84,"Smyrna","Delaware","Eligible",8,"Sophomore",94,91,88,89,55,86,83,33,34,76,79,85,90,90,82,39,43,43,88,87,21,23,85,28,44,88,84,37,15,20,34,41,31,32,45,48,24,24,0,86,87,90,83,35,42,25,32,31,44,28,25,83,40,45,"ACC","SMU","Wide Receiver","Launch Ratings"
31141,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Zechariah","Poyser",74,30,84,"Wildwood","Florida","Previous",7,"Sophomore",91,88,87,90,64,85,51,61,26,60,60,65,76,86,25,24,71,60,92,59,44,37,69,20,84,42,84,35,27,32,26,88,44,81,83,42,47,40,0,47,67,89,56,46,67,18,23,22,31,23,32,83,35,82,"ACC","Miami","Free Safety","Launch Ratings"
9069,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/59.png?im=FaceCrop,padding=0.7","Zion","Young",77,102,84,"Atlanta","Georgia","Eligible",9,"Senior",86,76,79,82,82,85,37,85,36,39,53,31,33,66,31,76,84,73,86,31,41,35,35,42,31,31,84,51,45,43,33,86,88,35,91,39,43,49,0,31,31,81,31,37,86,29,32,36,26,18,41,81,38,45,"SEC","Missouri","Left Edge","Launch Ratings"
23098,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/22.png?im=FaceCrop,padding=0.7","Aaron","Karas",77,150,83,"Arvada","Colorado","Previous",78,"Junior",70,57,68,85,90,88,37,49,25,40,52,26,27,52,24,30,53,88,83,29,33,38,25,85,27,28,83,78,73,83,33,36,53,24,25,86,84,88,0,24,29,61,30,40,38,19,31,24,17,33,41,80,38,24,"Mountain West","Colorado State","Right Tackle","Launch Ratings"
20883,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Adam","Randall",74,70,83,"Myrtle Beach","South Carolina","Previous",8,"Senior",90,87,91,85,77,77,75,56,33,75,75,84,82,86,75,48,71,51,95,81,35,30,86,47,58,83,83,39,25,35,26,47,45,35,67,62,48,47,0,86,89,92,78,62,63,12,18,37,35,24,36,86,61,36,"ACC","Clemson","Halfback","Launch Ratings"
19315,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/39.png?im=FaceCrop,padding=0.7","Addison","Ostrenga",76,88,83,"Sun Prairie","Wisconsin","Eligible",87,"Senior",84,76,82,87,83,82,63,64,44,71,76,84,85,70,65,65,73,70,96,68,27,39,53,64,31,70,83,66,61,55,35,37,63,19,67,72,69,69,0,73,86,75,53,75,66,20,24,20,47,34,36,89,73,42,"Big Ten","Iowa","Tight End","Launch Ratings"
7057,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/34.png?im=FaceCrop,padding=0.7","Ahmari","Harvey",72,35,83,"Tallahassee","Florida","Previous",3,"Senior",95,92,94,93,58,83,64,46,34,34,62,46,75,91,43,46,71,53,84,79,38,25,64,56,78,45,83,64,57,54,45,80,39,80,77,54,52,62,0,45,49,92,75,38,60,28,15,18,19,32,26,90,34,83,"ACC","Georgia Tech","Cornerback","Launch Ratings"
4724,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/57.png?im=FaceCrop,padding=0.7","Aidan","Gousby",72,30,83,"Lehigh Acres","Florida","Previous",7,"Junior",89,85,86,90,67,87,57,62,32,33,31,29,70,84,33,28,81,50,83,51,48,29,48,53,69,31,83,55,61,55,37,87,36,71,84,48,54,61,0,31,34,87,52,45,76,11,37,30,16,31,45,89,41,79,"Big Ten","Minnesota","Free Safety","Launch Ratings"
4125,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Akheem","Mesidor",75,120,83,"Ottawa","Non-US","Previous",3,"Senior",81,71,74,76,85,88,44,84,38,43,53,31,31,59,30,76,82,79,87,28,48,25,38,45,39,28,83,60,52,49,32,86,87,26,87,51,48,59,0,27,31,72,31,43,85,30,37,12,30,23,41,85,42,39,"ACC","Miami","Left Edge","Launch Ratings"
18873,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Alex","Harkey",78,175,83,"Austin","Texas","Previous",71,"Senior",65,54,72,84,92,85,37,46,31,38,51,32,31,52,31,35,49,92,90,31,36,28,29,78,32,28,83,85,79,90,30,32,48,33,34,84,84,84,0,29,33,55,29,35,39,33,17,20,20,15,38,89,34,28,"Big Ten","Oregon","Right Tackle","Launch Ratings"
29244,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/121.png?im=FaceCrop,padding=0.7","Angel","Johnson",69,32,83,"Viborg","South Dakota","Previous",1,"Senior",93,89,87,87,67,78,83,40,45,81,78,70,69,86,57,35,44,51,88,85,23,23,83,45,58,62,83,57,54,55,23,64,34,39,44,53,46,45,0,70,67,92,84,66,42,33,35,34,35,33,31,88,69,53,"Pac-12","Washington State","Halfback","Launch Ratings"
18431,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/69.png?im=FaceCrop,padding=0.7","Anto","Saka",76,87,83,"Baltimore","Maryland","Previous",4,"Sophomore",91,82,83,80,75,81,34,72,41,35,53,42,46,72,42,87,87,64,85,52,47,44,39,34,35,42,83,41,41,37,29,82,79,40,88,28,36,41,0,42,42,84,51,51,79,11,32,20,13,34,27,87,49,48,"Big Ten","Northwestern","Right Edge","Launch Ratings"
9951,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/21.png?im=FaceCrop,padding=0.7","Arden","Walker",74,90,83,"Denver","Colorado","Previous",53,"Senior",83,76,78,82,79,88,34,77,35,38,53,33,33,70,31,85,86,71,86,48,34,31,39,31,36,34,83,47,42,38,34,88,89,51,90,34,40,46,0,31,35,79,45,36,83,12,30,36,33,37,34,87,55,45,"Big 12","Colorado","Left Edge","Launch Ratings"
702,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/101.png?im=FaceCrop,padding=0.7","Arnold","Barnes III",70,56,83,"New Orleans","Louisiana","Eligible",20,"Junior",88,81,85,86,83,85,83,57,38,82,78,55,59,80,41,45,71,56,91,79,43,37,63,49,33,53,83,59,54,54,32,45,45,34,69,50,38,39,0,60,65,85,77,87,63,17,19,29,34,37,36,92,90,34,"The American","Tulane","Halfback","Launch Ratings"
9828,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","Austin","Simmons",76,55,83,"Miami","Florida","Previous",13,"Sophomore",88,87,84,90,68,78,76,47,80,72,67,49,56,87,25,42,49,41,90,85,27,39,26,39,44,23,83,48,34,36,75,52,41,31,62,43,31,34,0,32,51,82,79,58,44,83,84,87,82,95,77,89,59,46,"SEC","Ole Miss","Quarterback","Launch Ratings"
21195,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/40.png?im=FaceCrop,padding=0.7","Benjamin","Brahmer",79,95,83,"Pierce","Nebraska","Eligible",18,"Junior",85,79,84,92,81,82,68,67,27,73,72,85,85,75,71,66,60,65,88,70,26,24,54,62,43,73,83,64,63,53,45,34,61,17,68,68,62,57,0,76,85,78,65,74,66,20,23,23,48,35,29,89,66,24,"Big Ten","Iowa State","Tight End","Launch Ratings"
4150,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/87.png?im=FaceCrop,padding=0.7","Blayne","Myrick",75,66,83,"Fairhope","Alabama","Previous",32,"Junior",84,78,79,95,75,87,29,73,26,42,57,44,62,75,26,48,82,75,90,30,47,47,34,56,65,25,83,66,53,45,39,89,66,30,92,61,57,64,0,27,29,80,29,43,90,28,13,31,24,27,40,85,41,72,"Sun Belt","South Alabama","Will Backer","Launch Ratings"
19104,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/83.png?im=FaceCrop,padding=0.7","Bo","Mascoe",71,30,83,"Kissimmee","Florida","Eligible",3,"Junior",93,91,91,90,63,82,66,57,39,39,62,45,67,90,43,41,71,52,89,80,46,33,67,55,83,42,83,65,61,55,35,83,40,77,81,58,54,64,0,42,45,92,72,49,63,25,19,10,25,29,24,88,39,85,"Big Ten","Rutgers","Cornerback","Launch Ratings"
22607,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/60.png?im=FaceCrop,padding=0.7","Brandon","Chatman",69,14,83,"Fort Lauderdale","Florida","Eligible",24,"Senior",93,88,81,89,56,80,81,33,28,79,80,72,78,87,70,27,27,34,85,84,39,34,66,28,33,72,83,56,50,56,35,46,25,34,23,39,24,28,0,75,71,90,82,52,26,18,22,37,11,36,25,81,64,27,"The American","Navy","Halfback","Launch Ratings"
22654,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/6.png?im=FaceCrop,padding=0.7","Braylen","Russell",73,78,83,"Benton","Arkansas","Eligible",0,"Sophomore",86,76,83,82,84,83,78,57,45,80,90,50,50,76,41,47,73,65,91,76,34,40,70,60,29,45,83,62,55,64,47,35,45,29,69,61,58,52,0,52,51,87,74,90,64,36,25,21,11,25,48,92,90,41,"SEC","Arkansas","Halfback","Launch Ratings"
19476,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/19.png?im=FaceCrop,padding=0.7","Brendan","Sorsby",75,75,83,"Denton","Texas","Previous",2,"Junior",86,86,83,84,71,88,77,51,64,79,73,23,52,83,23,55,64,47,90,75,28,47,42,50,32,25,83,66,47,47,78,70,56,46,40,64,49,47,0,25,23,84,75,74,66,84,81,87,79,93,77,91,78,41,"Big 12","Cincinnati","Quarterback","Launch Ratings"
19293,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/59.png?im=FaceCrop,padding=0.7","Brett","Norfleet",78,103,83,"O'Fallon","Missouri","Eligible",87,"Junior",86,82,87,86,74,80,80,56,26,70,72,84,85,79,68,54,36,52,90,72,40,32,63,56,52,75,83,58,45,57,36,47,56,27,57,60,55,59,0,85,89,82,66,72,59,17,33,18,26,30,27,87,65,41,"SEC","Missouri","Tight End","Launch Ratings"
10297,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/116.png?im=FaceCrop,padding=0.7","Brock","Taylor",73,1,83,"Knoxville","Tennessee","Eligible",88,"Junior",74,67,62,84,46,70,26,44,48,35,59,43,44,65,40,40,40,31,87,30,92,96,36,24,39,29,83,39,33,43,45,41,36,41,48,26,36,46,0,49,24,71,44,35,45,37,25,38,19,31,49,75,34,43,"SEC","Vanderbilt","Kicker","Launch Ratings"
19680,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/111.png?im=FaceCrop,padding=0.7","Byrum","Brown",75,71,83,"Raleigh","North Carolina","Previous",17,"Senior",90,88,85,92,77,84,88,45,88,82,70,24,34,87,26,42,53,45,83,87,25,39,25,40,35,25,83,53,39,39,81,35,45,47,26,47,36,39,0,24,25,87,78,69,54,75,80,84,87,92,66,88,74,38,"The American","USF","Quarterback","Launch Ratings"
8166,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","C.J.","Hicks",75,73,83,"Dayton","Ohio","Previous",11,"Senior",92,88,89,85,78,87,72,74,41,43,68,50,67,82,45,75,91,78,90,71,34,47,64,56,71,47,83,62,53,51,31,88,71,60,87,51,50,61,0,49,47,87,70,44,86,19,24,14,16,23,33,89,43,72,"Big Ten","Ohio State","Right Edge","Launch Ratings"
3012,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/28.png?im=FaceCrop,padding=0.7","Caden","Veltkamp",78,76,83,"Bowling Green","Kentucky","Previous",10,"Junior",76,74,76,92,77,87,65,35,65,71,63,25,24,74,26,33,56,48,93,72,32,26,26,52,21,23,83,67,47,44,60,56,34,22,32,69,45,45,0,26,27,75,71,69,55,81,93,87,61,90,74,91,72,22,"The American","FAU","Quarterback","Launch Ratings"
552,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/122.png?im=FaceCrop,padding=0.7","Cam","Vaughn",74,24,83,"Villa Rica","Georgia","Previous",4,"Sophomore",92,90,91,91,61,82,84,46,40,76,71,85,87,88,86,39,57,35,92,85,27,34,78,31,39,88,83,39,27,35,26,45,38,38,56,60,30,31,0,85,89,88,82,59,53,11,12,21,32,26,45,92,58,67,"Big 12","West Virginia","Wide Receiver","Launch Ratings"
4160,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/111.png?im=FaceCrop,padding=0.7","Cartevious","Norton",71,62,83,"Waycross","Georgia","Eligible",5,"Senior",88,82,82,87,79,85,82,53,33,81,83,59,57,79,52,47,71,47,95,82,42,26,72,49,34,58,83,59,37,39,43,35,46,29,65,50,39,41,0,63,64,86,79,83,64,23,29,37,20,13,39,92,87,35,"The American","USF","Halfback","Launch Ratings"
20773,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Chapman","Lewis",73,20,83,"Burleson","Texas","Eligible",25,"Junior",91,89,92,89,67,84,56,54,44,42,63,61,77,87,32,29,72,48,91,69,33,36,51,52,73,31,83,60,59,55,25,86,26,76,81,48,53,65,0,32,71,89,66,52,63,21,19,24,26,25,26,85,53,86,"Big 12","Texas Tech","Strong Safety","Launch Ratings"
8736,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/40.png?im=FaceCrop,padding=0.7","Chase","Sowell",75,50,83,"Humble","Texas","Previous",0,"Junior",90,87,90,87,68,88,72,43,34,70,67,86,86,84,85,34,52,36,80,80,47,37,75,39,47,83,83,37,21,33,43,42,35,31,48,61,29,30,0,87,89,89,77,28,46,36,34,24,13,31,43,82,46,32,"Big Ten","Iowa State","Wide Receiver","Launch Ratings"
22516,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/99.png?im=FaceCrop,padding=0.7","Chip","Trayanum",71,67,83,"Akron","Ohio","Previous",1,"Senior",90,85,87,87,79,83,79,68,38,82,82,61,63,83,54,60,85,62,78,83,27,29,75,48,44,57,83,65,56,60,48,60,65,31,80,55,43,46,0,62,59,90,80,82,73,33,24,31,19,24,47,90,86,50,"MAC","Toledo","Halfback","Launch Ratings"
8221,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Cole","Hutson",77,148,83,"Frisco","Texas","Eligible",54,"Senior",69,66,66,86,89,92,42,54,42,41,52,26,28,51,27,30,55,89,89,25,44,26,29,87,28,30,83,78,74,82,33,43,56,29,29,84,83,85,0,24,25,60,29,41,41,37,36,29,37,19,24,90,39,25,"SEC","Texas","Center","Launch Ratings"
10446,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Cole","Brevard",75,186,83,"Carmel","Indiana","Previous",99,"Senior",66,52,65,84,96,87,24,90,45,49,58,24,24,39,24,55,88,91,97,24,43,37,35,58,13,24,83,69,63,55,36,84,83,23,79,59,57,69,0,24,24,53,24,47,85,18,21,30,36,16,25,95,48,17,"SEC","Texas","Defensive Tackle","Launch Ratings"
5583,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/86.png?im=FaceCrop,padding=0.7","Collin","Rogers",76,59,83,"Prattville","Alabama","Eligible",41,"Senior",66,60,65,86,51,73,37,37,28,36,58,47,31,58,39,31,39,44,84,28,87,96,48,34,32,40,83,43,36,42,31,38,34,36,38,15,32,40,0,26,41,62,46,27,24,13,38,13,19,14,38,91,37,34,"ACC","SMU","Kicker","Launch Ratings"
22036,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/36.png?im=FaceCrop,padding=0.7","Conner","Weigman",75,50,83,"Cypress","Texas","Previous",1,"Junior",86,85,84,90,68,86,76,54,54,73,81,36,58,84,33,50,61,51,83,80,35,29,36,46,23,33,83,61,41,45,81,45,58,25,34,62,46,41,0,37,34,82,76,70,56,80,88,87,74,93,72,81,60,24,"Big 12","Houston","Quarterback","Launch Ratings"
23572,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","Da'Shawn","Womack",77,100,83,"Baltimore","Maryland","Previous",15,"Junior",88,79,86,78,86,71,41,81,45,42,57,42,56,67,42,81,83,76,85,42,43,42,42,49,47,42,83,56,52,44,24,77,90,48,87,47,46,57,0,42,42,79,42,40,85,37,11,26,35,28,43,84,40,47,"SEC","Ole Miss","Left Edge","Launch Ratings"
22706,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/9.png?im=FaceCrop,padding=0.7","Damari","Alston",69,45,83,"Atlanta","Georgia","Eligible",0,"Senior",91,87,85,85,77,85,86,50,43,80,77,65,64,85,49,43,62,49,91,85,35,48,84,42,48,62,83,65,59,61,46,44,43,33,55,47,33,38,0,64,62,88,80,80,55,29,18,16,23,22,40,88,85,40,"SEC","Auburn","Halfback","Launch Ratings"
21036,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/91.png?im=FaceCrop,padding=0.7","Dan","Villari",76,81,83,"Massapequa","New York","Previous",89,"Senior",84,74,77,97,71,84,63,40,37,79,65,81,86,71,67,37,58,63,85,72,42,36,65,54,22,77,83,63,62,64,37,34,36,17,36,67,57,60,0,80,85,75,63,83,35,26,23,21,47,21,29,93,77,45,"ACC","Syracuse","Tight End","Launch Ratings"
4665,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/83.png?im=FaceCrop,padding=0.7","Dariel","Djabome",74,75,83,"Longueuil","Non-US","Previous",28,"Senior",85,78,79,84,77,86,28,75,36,45,58,45,44,74,28,55,85,75,90,28,36,36,37,58,66,28,83,68,62,55,36,88,72,22,89,61,56,66,0,28,28,84,28,45,90,24,24,24,24,24,36,86,45,71,"Big Ten","Rutgers","Mike Backer","Launch Ratings"
8572,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/119.png?im=FaceCrop,padding=0.7","Davaughn","Patterson",72,57,83,"Jacksonville","Florida","Previous",5,"Sophomore",88,83,87,93,75,84,49,65,48,47,26,54,72,82,24,34,88,64,92,59,40,40,46,59,73,28,83,64,60,56,43,85,50,75,85,52,57,70,0,24,56,85,56,64,77,10,18,23,25,24,24,88,66,82,"ACC","Wake Forest","Strong Safety","Launch Ratings"
9123,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/107.png?im=FaceCrop,padding=0.7","David","Godsey Jr.",70,15,83,"Mansfield","Texas","Previous",13,"Senior",92,91,88,93,56,87,51,55,34,33,51,31,65,88,35,30,65,42,81,61,48,30,51,57,79,35,83,61,49,44,41,86,35,82,80,53,52,59,0,33,34,90,60,38,70,27,37,37,27,34,40,90,32,82,"Sun Belt","UL Monroe","Cornerback","Launch Ratings"
21935,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","David","Stone",75,150,83,"Del City","Oklahoma","Eligible",0,"Sophomore",85,76,81,77,88,75,45,83,31,46,58,37,45,64,37,75,91,83,90,37,35,39,43,57,34,37,83,66,58,54,39,77,85,36,85,60,51,64,0,37,37,75,37,47,86,19,31,29,17,19,39,83,44,43,"SEC","Oklahoma","Defensive Tackle","Launch Ratings"
4203,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/91.png?im=FaceCrop,padding=0.7","David","Reese",74,80,83,"Fort Pierce","Florida","Previous",8,"Senior",91,84,87,86,81,87,45,76,42,42,57,43,55,79,45,85,80,79,97,45,44,48,43,57,67,39,83,66,61,53,45,84,73,32,86,60,54,64,0,39,44,84,40,39,78,28,10,18,10,32,39,88,42,68,"ACC","Syracuse","Left Edge","Launch Ratings"
21210,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/66.png?im=FaceCrop,padding=0.7","Davion","Gause",71,55,83,"Opa-locka","Florida","Eligible",21,"Sophomore",90,85,81,87,77,76,85,52,44,81,86,61,60,84,54,43,63,53,90,83,45,29,66,47,33,55,83,60,59,62,34,45,41,34,58,54,40,43,0,61,46,88,78,84,54,14,14,11,35,22,30,90,86,35,"ACC","North Carolina","Halfback","Launch Ratings"
4085,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/47.png?im=FaceCrop,padding=0.7","Denzel","Lowry",73,130,83,"Virginia Beach","Virginia","Previous",45,"Senior",81,65,73,89,88,89,26,84,31,31,50,28,31,55,25,70,83,82,92,25,48,37,32,53,28,27,83,59,53,45,37,88,85,27,85,53,53,55,0,28,27,69,27,27,85,24,29,25,14,30,42,88,29,27,"ACC","Louisville","Defensive Tackle","Launch Ratings"
19453,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/62.png?im=FaceCrop,padding=0.7","DeShon","Singleton",75,50,83,"Greensburg","Louisiana","Eligible",8,"Senior",90,83,88,91,71,87,48,63,47,44,27,35,61,82,26,37,86,64,93,48,36,37,47,59,70,29,83,66,60,53,37,85,46,73,84,51,55,67,0,25,33,86,45,60,76,33,20,17,14,25,33,89,55,80,"Big Ten","Nebraska","Strong Safety","Launch Ratings"
19864,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/86.png?im=FaceCrop,padding=0.7","Deuce","Harmon",70,31,83,"Corinth","Texas","Previous",7,"Senior",92,92,91,90,62,84,66,52,40,41,61,49,71,90,45,43,69,53,88,79,24,29,68,55,79,44,83,64,58,53,29,83,45,82,82,59,54,66,0,44,49,90,77,51,67,23,25,30,29,36,27,90,40,85,"ACC","SMU","Cornerback","Launch Ratings"
6025,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/92.png?im=FaceCrop,padding=0.7","Devean","Deal",76,90,83,"El Paso","Texas","Previous",11,"Senior",90,77,86,91,79,89,49,80,45,49,58,70,68,74,45,81,84,75,92,55,40,29,47,45,66,40,83,72,65,57,39,87,87,41,89,64,56,70,0,55,65,83,52,49,82,30,35,22,14,16,27,85,52,71,"Big 12","TCU","Right Edge","Launch Ratings"
1165,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/57.png?im=FaceCrop,padding=0.7","Deven","Eastern",78,150,83,"Shakopee","Minnesota","Previous",91,"Senior",79,62,78,90,93,84,29,86,34,40,52,29,34,48,29,71,86,88,95,29,47,37,38,58,23,29,83,66,63,56,47,82,84,21,81,59,52,65,0,29,29,66,29,43,82,15,34,37,16,17,30,92,43,24,"Big Ten","Minnesota","Defensive Tackle","Launch Ratings"
5657,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/11.png?im=FaceCrop,padding=0.7","Devin","Turner",74,52,83,"Little Elm","Texas","Eligible",13,"Senior",92,85,93,84,71,83,49,72,40,43,66,40,72,84,26,36,84,63,92,48,27,46,55,60,75,25,83,65,62,57,48,85,47,71,82,54,55,66,0,29,39,87,50,58,75,29,36,15,23,37,24,86,57,76,"Big 12","Baylor","Free Safety","Launch Ratings"
20175,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/61.png?im=FaceCrop,padding=0.7","Devon","Marshall",71,40,83,"Boston","Massachusetts","Eligible",6,"Senior",92,90,87,88,67,83,50,61,41,66,49,62,72,88,32,25,72,54,92,72,31,40,54,56,87,31,83,65,62,54,42,84,46,77,82,60,54,66,0,31,70,90,67,52,59,36,21,17,27,29,37,77,44,83,"ACC","NC State","Cornerback","Launch Ratings"
21869,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","DeVonta","Smith",71,35,83,"Cincinnati","Ohio","Previous",0,"Senior",92,91,92,93,68,77,78,59,41,40,64,45,72,91,44,42,80,57,87,70,27,43,69,56,82,45,83,63,63,54,48,78,46,72,86,49,55,65,0,44,50,91,73,55,75,32,26,21,16,16,40,90,53,82,"Independent","Notre Dame","Cornerback","Launch Ratings"
10319,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/9.png?im=FaceCrop,padding=0.7","Dillon","Wade",76,143,83,"Houston","Texas","Previous",52,"Senior",75,71,65,89,88,87,37,47,48,40,54,30,29,58,26,31,52,89,89,24,27,36,28,84,27,28,83,79,73,85,42,36,50,26,27,83,82,84,0,24,26,66,25,37,38,23,17,34,21,10,24,84,38,30,"SEC","Auburn","Left Guard","Launch Ratings"
22854,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/15.png?im=FaceCrop,padding=0.7","Dion","Crawford",73,72,83,"Lawrenceville","Georgia","Eligible",18,"Junior",89,83,83,91,77,83,30,74,42,40,48,38,59,75,27,82,81,63,90,56,29,42,40,42,65,29,83,55,35,29,25,84,87,55,91,43,42,52,0,29,30,81,55,41,88,23,20,35,10,29,39,91,55,74,"MAC","Buffalo","Will Backer","Launch Ratings"
7011,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/41.png?im=FaceCrop,padding=0.7","DJ","Graham II",72,40,83,"Fort Worth","Texas","Previous",7,"Senior",93,90,92,93,65,83,58,54,47,47,55,47,73,88,34,42,77,54,91,70,31,31,62,59,78,37,83,69,51,42,31,85,49,79,79,62,57,70,0,38,90,91,64,58,64,32,23,19,34,35,35,97,47,84,"Big 12","Kansas","Cornerback","Launch Ratings"
18478,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/71.png?im=FaceCrop,padding=0.7","DJ","Walker",73,26,83,"Aliquippa","Pennsylvania","Previous",2,"Sophomore",92,87,89,98,59,85,70,58,30,65,28,22,67,85,27,45,75,45,92,70,25,43,41,54,68,25,83,56,53,49,47,85,35,71,85,47,52,58,0,29,27,88,65,36,67,17,15,31,10,23,31,90,38,83,"MAC","Ohio","Free Safety","Launch Ratings"
4649,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Dominic","DeLuca",73,67,83,"West Pittston","Pennsylvania","Previous",0,"Senior",87,80,82,91,77,92,33,82,36,32,53,32,65,77,33,64,84,76,91,59,31,31,49,52,71,33,83,51,51,52,36,92,68,55,91,51,53,62,0,33,33,86,55,50,77,24,24,26,24,24,36,89,53,72,"Big Ten","Penn State","Sam Backer","Launch Ratings"
21597,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/54.png?im=FaceCrop,padding=0.7","Donaven","McCulley",77,40,83,"Indianapolis","Indiana","Previous",13,"Senior",87,85,92,88,79,87,80,50,73,77,75,87,86,83,80,44,64,57,78,82,29,47,65,48,36,86,83,38,28,37,70,36,43,49,62,59,48,47,0,83,92,88,74,77,57,70,75,73,80,87,68,90,68,36,"Big Ten","Michigan","Wide Receiver","Launch Ratings"
22652,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/117.png?im=FaceCrop,padding=0.7","Donavon","Platt",71,44,83,"Jamestown","North Carolina","Eligible",28,"Sophomore",89,87,86,91,75,91,41,55,53,49,66,31,69,86,22,34,71,54,96,76,42,33,55,57,84,22,83,68,62,57,46,92,47,84,83,63,57,71,0,28,28,87,72,58,60,26,20,26,23,30,46,94,45,87,"ACC","Virginia","Cornerback","Launch Ratings"
4000,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/43.png?im=FaceCrop,padding=0.7","Donelius","Johnson",72,66,83,"Patterson","Georgia","Previous",0,"Junior",87,77,84,90,76,89,35,79,44,42,44,46,54,76,25,64,84,75,91,42,39,44,30,47,64,24,83,46,46,47,38,87,69,35,90,49,49,61,0,27,26,83,41,45,88,30,33,17,29,28,46,88,42,65,"Conference USA","Kennesaw State","Mike Backer","Launch Ratings"
20505,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Dontae","Balfour",73,25,83,"Starke","Florida","Previous",20,"Senior",89,88,89,91,62,85,50,55,43,43,61,43,66,88,29,43,66,47,84,54,38,41,56,55,86,26,83,67,49,42,46,87,41,83,79,58,54,65,0,26,39,90,59,52,60,18,23,25,18,32,44,87,41,84,"Big 12","Texas Tech","Cornerback","Launch Ratings"
23465,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Dre","Washington",69,56,83,"Hemphill","Texas","Previous",20,"Senior",88,80,80,87,81,82,81,56,29,86,84,60,65,79,50,44,75,53,89,82,29,38,65,45,27,57,83,55,46,45,29,41,47,32,53,50,38,40,0,65,65,87,81,80,60,34,17,17,33,24,27,92,91,29,"SEC","Alabama","Halfback","Launch Ratings"
20931,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/30.png?im=FaceCrop,padding=0.7","Duce","Robinson",78,63,83,"Phoenix","Arizona","Eligible",0,"Junior",88,85,91,88,77,84,75,56,24,75,76,87,86,76,77,47,71,70,91,77,33,40,66,60,23,85,83,50,33,41,24,29,48,26,64,64,50,60,0,80,93,87,74,80,61,27,19,20,33,10,44,83,72,34,"ACC","Florida State","Wide Receiver","Launch Ratings"
18679,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/9.png?im=FaceCrop,padding=0.7","Durell","Robinson",72,42,83,"Seat Pleasant","Maryland","Previous",21,"Sophomore",92,86,86,88,76,79,85,46,36,82,85,58,63,86,56,38,58,58,89,86,29,24,75,52,44,57,83,60,57,56,37,46,42,34,56,54,54,55,0,63,63,88,82,77,50,36,24,18,10,30,39,91,81,47,"SEC","Auburn","Halfback","Launch Ratings"
324,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/119.png?im=FaceCrop,padding=0.7","Dylan","Hazen",73,79,83,"The Woodlands","Texas","Previous",24,"Senior",89,84,86,86,76,84,53,77,40,42,61,41,64,80,40,65,83,75,88,58,38,48,51,49,65,41,83,58,52,48,26,84,64,43,88,46,47,58,0,42,41,80,59,40,87,36,36,25,23,38,45,85,40,76,"ACC","Wake Forest","Mike Backer","Launch Ratings"
21870,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","EJ","Smith",72,55,83,"Dallas","Texas","Previous",22,"Senior",91,87,88,90,74,84,84,49,24,77,84,73,75,87,49,39,61,46,92,83,46,29,89,44,55,61,83,58,50,57,47,51,39,37,57,57,38,40,0,69,68,88,81,77,53,10,37,25,12,20,30,89,79,47,"SEC","Texas A&M","Halfback","Launch Ratings"
7692,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/80.png?im=FaceCrop,padding=0.7","Eli","Holstein",76,65,83,"Zachary","Louisiana","Previous",10,"Sophomore",87,84,83,90,75,80,81,54,75,75,86,33,57,83,32,54,67,49,87,76,30,30,40,53,30,29,83,63,46,46,73,53,54,37,40,61,47,47,0,30,29,84,76,77,62,79,88,83,84,94,74,88,78,28,"ACC","Pittsburgh","Quarterback","Launch Ratings"
23602,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/112.png?im=FaceCrop,padding=0.7","Elijah","Davis",72,22,83,"Winter Haven","Florida","Previous",9,"Junior",93,92,91,88,67,85,61,67,33,65,65,35,74,89,41,39,67,47,87,77,32,27,60,57,77,40,83,59,60,49,28,87,33,82,80,54,53,60,0,42,44,90,73,34,66,18,35,21,28,12,46,85,44,81,"Big 12","Utah","Cornerback","Launch Ratings"
22383,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/35.png?im=FaceCrop,padding=0.7","Elijah","Palmer",68,20,83,"Las Vegas","Nevada","Eligible",4,"Junior",94,92,86,91,56,85,69,46,38,68,61,38,68,91,45,33,64,45,89,77,41,27,64,55,76,42,83,61,52,45,24,84,28,72,79,55,53,63,0,41,41,91,75,42,71,34,30,21,28,31,35,82,36,84,"Mountain West","Hawaii","Cornerback","Launch Ratings"
5769,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/107.png?im=FaceCrop,padding=0.7","Elijah","Fisher",76,150,83,"Allen","Texas","Previous",58,"Senior",80,68,79,89,87,88,40,50,24,40,39,38,39,54,40,46,53,87,83,38,47,44,38,75,37,42,83,85,82,88,41,46,53,41,40,72,74,70,0,43,37,66,39,37,40,17,37,29,34,35,29,84,37,37,"Sun Belt","UL Monroe","Left Guard","Launch Ratings"
8157,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/30.png?im=FaceCrop,padding=0.7","Elijah","Herring",74,71,83,"Murfreesboro","Tennessee","Eligible",31,"Senior",89,82,85,90,80,88,51,77,36,38,55,38,53,76,37,78,87,81,95,54,36,36,41,54,62,37,83,65,60,53,36,87,64,37,91,56,55,61,0,37,37,83,50,44,88,24,24,24,24,24,36,90,49,64,"ACC","Florida State","Will Backer","Launch Ratings"
21389,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/31.png?im=FaceCrop,padding=0.7","Elijah","Gilliam",70,55,83,"Merced","California","Previous",33,"Senior",90,84,77,89,79,79,80,54,46,78,84,74,79,82,64,43,66,62,90,80,13,11,75,57,30,66,83,60,57,61,46,27,47,25,54,57,55,56,0,76,72,88,78,82,59,33,33,34,32,45,22,92,84,24,"Mountain West","Fresno State","Halfback","Launch Ratings"
23463,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Elliot","Washington II",71,39,83,"Venice","Florida","Eligible",9,"Junior",97,93,93,87,64,76,70,53,45,45,64,50,71,92,46,44,75,57,88,79,47,29,70,55,81,44,83,66,63,56,36,75,46,77,76,62,56,68,0,45,49,95,76,56,72,27,11,29,23,14,33,79,44,76,"Big Ten","Penn State","Cornerback","Launch Ratings"
21742,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Ellis","Robinson IV",72,20,83,"New Haven","Connecticut","Previous",1,"Freshman",98,97,94,87,59,75,75,52,42,71,58,50,75,95,47,47,70,51,91,87,28,46,68,56,79,48,83,66,60,55,34,76,43,77,79,58,54,66,0,46,77,94,78,50,65,34,17,12,11,20,34,88,38,81,"SEC","Georgia","Cornerback","Launch Ratings"
20339,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/19.png?im=FaceCrop,padding=0.7","Evan","Pryor",69,35,83,"Cornelius","North Carolina","Previous",6,"Senior",94,90,89,88,66,84,78,39,35,77,72,69,78,89,57,30,42,41,87,86,43,46,91,39,57,65,83,54,47,55,34,51,33,37,38,45,30,36,0,75,71,92,83,67,36,18,11,15,19,18,44,88,69,45,"Big 12","Cincinnati","Halfback","Launch Ratings"
5969,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/67.png?im=FaceCrop,padding=0.7","Gabe","Blair",74,146,83,"Denton","Texas","Eligible",65,"Senior",79,71,71,95,87,91,26,33,48,25,54,39,40,63,40,46,31,83,79,38,36,26,39,88,36,39,83,83,85,80,40,27,29,39,39,82,85,79,0,35,39,69,41,26,27,30,37,35,33,15,35,83,27,35,"The American","North Texas","Center","Launch Ratings"
8087,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Gabe","Harris Jr.",76,100,83,"Thomasville","Georgia","Eligible",0,"Junior",87,77,82,83,83,84,38,83,24,36,56,39,47,72,39,84,89,73,89,47,29,29,40,42,51,39,83,48,46,44,43,85,88,54,92,38,40,51,0,39,39,80,44,53,79,36,24,12,29,30,48,92,65,59,"SEC","Georgia","Left Edge","Launch Ratings"
7950,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/19.png?im=FaceCrop,padding=0.7","Gavin","Gerhardt",76,150,83,"Xenia","Ohio","Previous",53,"Senior",72,70,68,92,86,91,32,46,42,33,52,33,31,58,35,36,44,84,93,33,24,39,38,92,33,30,83,76,73,83,24,39,44,30,36,88,91,83,0,32,34,63,29,33,36,13,34,30,13,22,26,91,35,23,"Big 12","Cincinnati","Center","Launch Ratings"
25166,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Gideon","Davidson",72,40,83,"Lynchburg","Virginia","Eligible",9,"Freshman",94,93,91,83,62,63,83,45,49,80,73,55,62,90,56,37,44,53,89,91,25,24,78,44,35,64,83,54,55,52,32,47,36,34,48,51,51,49,0,66,59,93,88,59,42,32,34,39,45,41,28,84,62,33,"ACC","Clemson","Halfback","Launch Ratings"
19052,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/66.png?im=FaceCrop,padding=0.7","Gio","Lopez",72,43,83,"Madison","Alabama","Previous",7,"Sophomore",87,87,80,93,75,82,87,51,79,81,79,27,52,86,26,55,63,43,91,82,48,40,36,51,32,24,83,64,28,27,75,36,56,33,29,65,45,45,0,25,29,84,81,70,61,79,84,89,87,89,77,92,73,67,"ACC","North Carolina","Quarterback","Launch Ratings"
706,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/122.png?im=FaceCrop,padding=0.7","Grayson","Barnes",77,65,83,"Rocklin","California","Eligible",80,"Senior",85,84,88,87,72,85,59,56,41,73,73,82,87,82,81,45,69,58,92,73,28,32,58,52,26,78,83,60,38,50,43,45,45,34,64,57,52,53,0,73,89,87,70,66,65,22,26,37,29,32,26,90,70,64,"Big 12","West Virginia","Tight End","Launch Ratings"
24508,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","Harlem","Berry",70,25,83,"New Orleans","Louisiana","Eligible",22,"Freshman",96,95,92,84,56,56,82,33,49,84,76,63,74,93,63,25,39,43,87,90,18,15,80,35,40,69,83,53,53,46,33,44,23,35,34,42,40,30,0,75,65,94,87,52,33,32,31,33,44,31,29,76,55,34,"SEC","LSU","Halfback","Launch Ratings"
19482,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/38.png?im=FaceCrop,padding=0.7","Holden","Staes",76,88,83,"Atlanta","Georgia","Eligible",19,"Senior",85,82,85,92,73,87,75,54,29,71,71,84,85,78,69,52,47,58,86,72,48,46,66,59,48,74,83,55,45,45,26,36,46,19,50,64,60,54,0,80,87,82,63,71,49,24,17,10,24,37,29,87,68,24,"Big Ten","Indiana","Tight End","Launch Ratings"
21888,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/61.png?im=FaceCrop,padding=0.7","Hollywood","Smothers",71,35,83,"Charlotte","North Carolina","Previous",3,"Sophomore",94,89,88,90,71,80,86,44,39,78,78,72,73,88,64,38,53,52,91,85,32,34,75,46,41,72,83,55,55,53,25,44,40,33,50,48,46,47,0,75,75,90,79,64,48,31,32,31,33,34,34,84,65,38,"ACC","NC State","Halfback","Launch Ratings"
8604,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/85.png?im=FaceCrop,padding=0.7","Isiah","Revis",70,34,83,"Las Vegas","Nevada","Previous",20,"Senior",92,86,87,93,68,85,52,57,43,45,50,37,65,85,35,29,81,50,92,63,45,38,58,58,65,32,83,68,50,44,43,84,45,71,86,60,55,69,0,35,37,88,65,54,77,12,31,11,27,25,40,93,44,79,"Mountain West","San Jose State","Free Safety","Launch Ratings"
9445,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","Ja'Kobi","Jackson",71,56,83,"Pensacola","Florida","Previous",24,"Senior",89,81,80,83,79,87,80,54,46,82,85,70,70,79,62,47,69,52,94,82,33,37,64,43,29,61,83,64,59,60,46,47,47,35,62,55,40,44,0,66,61,87,74,81,60,32,16,10,19,22,31,94,87,65,"SEC","Florida","Halfback","Launch Ratings"
22177,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/7.png?im=FaceCrop,padding=0.7","Ja'Quez","Cross",69,30,83,"Hampton","Arkansas","Previous",2,"Senior",93,91,84,94,67,86,82,40,41,78,79,72,75,88,61,35,44,29,86,81,48,25,85,33,58,66,83,53,18,25,32,56,34,39,44,42,30,32,0,73,68,90,75,52,42,20,31,31,24,14,24,91,70,53,"Sun Belt","Arkansas State","Halfback","Launch Ratings"
1539,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/101.png?im=FaceCrop,padding=0.7","Jack","Hollifield",76,140,83,"Shelby","North Carolina","Previous",58,"Senior",74,59,75,89,87,88,26,53,27,43,57,30,26,53,30,31,59,89,91,28,38,25,34,84,30,30,83,85,81,88,36,35,55,31,29,80,83,77,0,27,26,64,29,41,46,19,30,26,36,32,34,88,42,21,"The American","Tulane","Center","Launch Ratings"
20949,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/94.png?im=FaceCrop,padding=0.7","Jackson","Ross",76,45,83,"Melbourne","Non-US","Previous",98,"Junior",82,77,74,86,61,68,47,30,32,41,60,54,60,76,41,39,35,43,81,48,97,90,42,30,46,45,83,28,24,31,35,44,35,45,27,25,48,26,0,49,55,82,40,44,30,41,46,52,38,68,31,89,28,48,"SEC","Tennessee","Punter","Launch Ratings"
20590,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/17.png?im=FaceCrop,padding=0.7","Jacob","De Jesus",67,10,83,"Manteca","California","Eligible",22,"Senior",91,93,88,91,58,86,73,36,32,68,68,86,91,91,84,29,37,29,74,82,30,41,96,32,53,86,83,35,12,23,48,41,29,32,37,50,23,20,0,88,87,90,78,34,35,28,15,24,27,14,33,87,58,29,"ACC","Cal","Wide Receiver","Launch Ratings"
3725,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/68.png?im=FaceCrop,padding=0.7","Jacob","Finley",71,24,83,"Birmingham","Alabama","Previous",3,"Junior",92,89,91,92,59,81,75,59,35,70,51,54,66,88,35,31,64,42,88,74,43,35,56,54,82,35,83,61,48,45,37,82,30,65,88,56,52,62,0,33,52,90,72,45,79,28,25,11,27,22,26,85,37,77,"MAC","Northern Illinois","Cornerback","Launch Ratings"
22489,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","JaCorey","Thomas",72,45,83,"Orlando","Florida","Eligible",20,"Senior",92,87,87,89,72,81,66,61,44,45,36,40,67,84,37,39,84,62,94,56,39,41,57,55,72,34,83,67,63,52,35,78,48,70,84,51,56,68,0,37,40,89,62,62,80,36,19,27,10,27,28,93,59,82,"SEC","Georgia","Strong Safety","Launch Ratings"
5959,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/62.png?im=FaceCrop,padding=0.7","Jacory","Barney Jr.",72,10,83,"Florida City","Florida","Eligible",17,"Sophomore",94,93,91,90,49,82,85,29,28,78,63,87,88,92,75,26,24,44,85,90,29,34,81,42,65,83,83,36,27,36,32,46,26,34,26,48,40,42,0,87,85,93,85,37,27,11,16,15,30,36,33,81,27,27,"Big Ten","Nebraska","Wide Receiver","Launch Ratings"
20910,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Jadais","Richard",73,35,83,"West Monroe","Louisiana","Eligible",25,"Senior",93,91,90,89,66,88,55,54,42,43,54,44,62,90,37,42,73,51,84,67,25,26,60,58,78,36,83,67,62,54,45,87,49,76,79,59,54,68,0,35,42,90,68,53,75,12,30,24,15,17,37,91,42,75,"ACC","Miami","Cornerback","Launch Ratings"
2555,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/6.png?im=FaceCrop,padding=0.7","Jaheim","Singletary",74,36,83,"Jacksonville","Florida","Previous",15,"Junior",95,92,94,92,67,84,72,58,36,37,56,52,71,90,48,49,79,52,89,83,31,25,68,55,79,48,83,63,62,54,48,83,47,85,77,56,55,63,0,46,49,91,80,45,67,33,15,35,35,21,32,92,37,77,"SEC","Arkansas","Cornerback","Launch Ratings"
966,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","James","Brockermeyer",75,135,83,"Fort Worth","Texas","Previous",52,"Senior",82,71,78,95,85,86,45,39,38,32,54,44,39,61,45,51,39,85,84,42,41,44,47,87,40,44,83,85,87,83,33,41,38,41,42,81,87,77,0,41,40,69,44,32,35,31,33,20,21,22,42,89,34,37,"ACC","Miami","Center","Launch Ratings"
3067,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/30.png?im=FaceCrop,padding=0.7","James","Williams",78,99,83,"Kansas City","Missouri","Previous",10,"Junior",85,77,81,83,83,84,31,84,36,32,53,35,38,74,35,81,88,57,89,35,27,44,38,26,38,35,83,37,38,34,42,83,87,41,87,30,32,41,0,35,35,79,35,30,83,13,24,10,31,10,33,93,46,47,"ACC","Florida State","Left Edge","Launch Ratings"
22000,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/129.png?im=FaceCrop,padding=0.7","Jameson","Tucker",74,30,83,"Mauldin","South Carolina","Previous",8,"Senior",92,89,90,91,63,87,84,46,27,76,74,88,87,86,85,36,48,38,88,86,34,42,66,38,36,83,83,29,15,23,35,40,35,31,46,54,27,29,0,80,85,90,83,54,43,31,10,37,15,35,41,93,56,43,"Sun Belt","Coastal Carolina","Wide Receiver","Launch Ratings"
19842,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/88.png?im=FaceCrop,padding=0.7","Jared","Brown",72,35,83,"Lilburn","Georgia","Previous",14,"Senior",94,91,91,86,62,87,80,45,36,73,62,75,87,91,89,35,54,38,80,89,25,46,93,35,63,83,83,34,21,30,28,67,38,44,51,36,25,27,0,82,78,94,85,42,48,18,24,24,25,21,35,81,60,66,"SEC","South Carolina","Wide Receiver","Launch Ratings"
22149,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/60.png?im=FaceCrop,padding=0.7","Jaxson","Campbell",72,42,83,"Thompson's Station","Tennessee","Eligible",14,"Senior",91,84,87,91,68,85,48,71,45,25,58,26,66,82,47,64,84,63,89,55,47,26,44,52,74,43,83,61,57,51,26,86,66,49,85,50,50,56,0,45,48,85,42,26,82,12,18,30,15,22,24,90,56,82,"The American","Navy","Sam Backer","Launch Ratings"
19120,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/8.png?im=FaceCrop,padding=0.7","Jaydan","Mayes",70,23,83,"Fairfield","Ohio","Eligible",7,"Sophomore",92,90,91,92,62,87,53,57,44,64,51,71,79,88,32,36,68,55,92,77,28,25,66,45,76,31,83,62,62,53,35,87,25,82,83,59,55,66,0,34,75,90,71,49,58,18,37,12,14,11,42,90,51,85,"The American","Army","Cornerback","Launch Ratings"
6921,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Jayden","Gibson",77,26,83,"Apopka","Florida","Previous",1,"Junior",87,85,90,87,69,82,77,50,43,70,70,86,87,83,89,40,58,37,82,79,32,41,71,35,29,86,83,33,21,31,28,35,41,29,53,43,33,32,0,80,93,88,74,72,51,33,22,28,10,18,38,81,50,41,"SEC","Oklahoma","Wide Receiver","Launch Ratings"
10631,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Jayden","Jackson",74,162,83,"Indianapolis","Indiana","Eligible",65,"Sophomore",79,66,74,85,90,78,27,87,37,40,56,27,37,54,27,71,86,81,89,27,39,32,32,57,38,27,83,68,62,54,34,81,85,31,84,57,56,64,0,27,27,69,27,38,85,33,12,33,34,33,30,87,39,28,"SEC","Oklahoma","Defensive Tackle","Launch Ratings"
4047,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/122.png?im=FaceCrop,padding=0.7","Jaylan","Knighton",70,25,83,"Lauderhill","Florida","Eligible",22,"Senior",93,91,88,90,66,83,82,38,46,77,81,60,69,90,61,33,39,39,81,78,38,47,92,32,62,64,83,54,54,51,34,46,30,34,38,45,32,35,0,70,55,90,80,60,37,10,30,20,12,28,45,82,67,30,"Big 12","West Virginia","Halfback","Launch Ratings"
2577,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Jaylen","Sneed",74,70,83,"Hilton Head Island","South Carolina","Previous",3,"Junior",92,84,86,85,79,83,44,74,33,47,59,47,59,80,43,76,87,76,90,44,34,45,47,57,70,45,83,70,64,55,48,85,70,55,90,61,54,72,0,43,47,89,42,49,82,32,17,36,35,18,28,83,49,73,"Independent","Notre Dame","Will Backer","Launch Ratings"
19149,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Jelani","McDonald",74,39,83,"Waco","Texas","Eligible",4,"Junior",94,92,94,90,70,77,75,59,44,55,67,48,76,90,43,48,82,62,92,69,46,39,66,58,82,45,83,61,59,57,28,80,49,80,84,49,55,66,0,43,46,90,69,60,74,15,10,11,31,18,26,93,54,75,"SEC","Texas","Strong Safety","Launch Ratings"
6834,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/9.png?im=FaceCrop,padding=0.7","Jeremiah","Cobb",71,36,83,"Montgomery","Alabama","Eligible",23,"Junior",94,91,87,85,68,80,75,47,33,78,78,67,70,89,55,37,56,39,87,87,29,39,89,35,59,60,83,51,45,45,32,50,40,36,54,42,31,30,0,70,67,92,81,68,52,30,22,31,14,34,45,85,66,40,"SEC","Auburn","Halfback","Launch Ratings"
22478,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/94.png?im=FaceCrop,padding=0.7","Jeremiah","Telander",74,75,83,"Gainesville","Georgia","Eligible",22,"Junior",89,83,91,83,81,87,52,81,42,42,56,42,65,78,39,56,87,72,88,50,26,41,47,46,57,37,83,57,53,46,34,85,65,34,89,46,47,55,0,38,36,85,50,43,87,22,29,36,11,24,33,83,42,62,"SEC","Tennessee","Mike Backer","Launch Ratings"
111,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Joenel","Aguero",71,45,83,"Lynn","Massachusetts","Eligible",8,"Junior",95,90,89,87,73,75,74,65,49,47,42,46,76,88,44,47,86,66,86,68,29,48,65,60,72,45,83,69,60,58,40,80,48,72,89,57,55,70,0,45,48,90,72,62,76,21,34,32,27,17,45,88,62,79,"SEC","Georgia","Free Safety","Launch Ratings"
21569,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/118.png?im=FaceCrop,padding=0.7","John","Love",71,20,83,"Spartanburg","South Carolina","Previous",17,"Junior",65,56,54,86,49,68,37,35,38,48,52,32,29,51,49,38,28,38,87,46,93,96,31,33,35,31,83,31,42,37,39,39,27,45,37,28,24,24,0,26,38,59,29,34,46,30,17,14,24,29,43,85,35,38,"ACC","Virginia Tech","Kicker","Launch Ratings"
21467,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/56.png?im=FaceCrop,padding=0.7","John","Howse IV",73,34,83,"Brentwood","Tennessee","Previous",12,"Senior",89,86,83,93,67,87,61,63,41,42,35,43,75,84,34,39,85,53,85,59,43,41,53,56,74,37,83,64,63,54,42,87,45,72,84,50,53,65,0,37,38,86,61,52,73,15,37,13,35,11,48,93,52,79,"Conference USA","Middle Tennessee State","Free Safety","Launch Ratings"
30771,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/58.png?im=FaceCrop,padding=0.7","Johnnie","Daniels",70,40,83,"Crystal Springs","Mississippi","Eligible",20,"Senior",94,88,84,87,67,80,85,37,46,84,73,62,63,87,53,31,34,36,92,88,48,48,82,34,49,58,83,51,50,48,46,45,30,34,36,44,29,34,0,61,63,90,83,65,33,31,32,21,13,38,43,88,71,41,"SEC","Mississippi State","Halfback","Launch Ratings"
367,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/106.png?im=FaceCrop,padding=0.7","Jordan","Lawson",76,83,83,"Brandon","Mississippi","Previous",0,"Senior",88,83,79,87,71,85,30,69,41,33,55,41,41,72,41,88,82,60,83,40,26,32,42,25,55,42,83,35,33,32,35,87,77,34,88,23,31,39,0,40,39,81,41,33,80,21,22,33,15,37,44,88,31,61,"Sun Belt","Louisiana","Left Edge","Launch Ratings"
4095,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/54.png?im=FaceCrop,padding=0.7","Jordan","Marshall",71,50,83,"Cincinnati","Ohio","Eligible",23,"Sophomore",92,86,87,86,78,73,80,40,40,82,87,54,63,85,52,30,40,61,88,85,31,41,76,55,59,56,83,59,58,57,40,57,32,39,37,56,56,55,0,63,61,89,80,87,36,26,27,20,37,23,33,91,87,54,"Big Ten","Michigan","Halfback","Launch Ratings"
8059,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Jordan","Hall",76,160,83,"Jacksonville","Florida","Eligible",44,"Junior",82,73,76,75,89,73,46,88,48,44,58,30,53,56,30,65,80,76,97,30,29,47,40,49,28,30,83,67,61,53,45,73,85,28,79,56,52,65,0,30,30,73,30,48,88,19,16,12,24,15,27,85,47,30,"SEC","Georgia","Defensive Tackle","Launch Ratings"
3381,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Jordan","Botelho",75,100,83,"Honolulu","Hawaii","Eligible",12,"Senior",86,77,86,78,83,85,40,85,41,38,58,41,54,68,40,77,87,80,83,41,41,45,46,56,55,42,83,49,45,42,24,86,84,42,87,41,44,51,0,44,41,80,42,39,85,36,28,10,27,23,25,82,36,63,"Independent","Notre Dame","Right Edge","Launch Ratings"
23188,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/13.png?im=FaceCrop,padding=0.7","Jordan","McDonald",73,52,83,"Atlanta","Georgia","Eligible",5,"Senior",93,84,87,85,79,83,76,48,37,77,88,59,59,82,52,39,60,65,87,79,28,26,65,62,35,55,83,64,62,59,42,42,41,33,55,62,62,61,0,62,52,89,75,87,56,37,10,16,27,35,28,91,88,32,"ACC","Boston College","Halfback","Launch Ratings"
31053,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/33.png?im=FaceCrop,padding=0.7","Jordon","Simmons",71,40,83,"Marietta","Georgia","Previous",9,"Senior",91,86,89,88,73,79,85,51,34,81,88,49,71,84,41,45,63,54,91,85,40,48,67,41,25,45,83,61,55,57,48,31,44,27,51,51,36,39,0,51,47,89,81,76,56,11,23,32,32,33,34,85,76,27,"Sun Belt","Georgia State","Halfback","Launch Ratings"
20678,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/133.png?im=FaceCrop,padding=0.7","Julian","Gray",71,35,83,"Huntersville","North Carolina","Previous",1,"Senior",92,89,87,87,62,79,87,49,24,78,70,79,81,87,74,37,59,38,86,87,24,33,94,35,53,77,83,35,23,35,30,54,39,37,54,44,30,28,0,79,79,92,82,35,43,22,29,37,36,11,25,81,58,51,"Conference USA","Liberty","Halfback","Launch Ratings"
6334,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/116.png?im=FaceCrop,padding=0.7","Junior","Sherrill",71,28,83,"Nashville","Tennessee","Eligible",0,"Junior",90,89,89,91,65,87,77,42,47,72,74,85,87,87,84,37,49,30,75,86,44,29,88,27,44,86,83,30,22,31,31,40,36,36,43,58,23,21,0,85,88,90,85,41,44,11,20,13,12,21,43,85,60,38,"SEC","Vanderbilt","Wide Receiver","Launch Ratings"
22336,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/22.png?im=FaceCrop,padding=0.7","Justin","Marshall",70,20,83,"Merrillville","Indiana","Previous",29,"Sophomore",92,89,93,92,65,78,84,34,45,80,77,57,60,88,54,28,31,50,90,87,24,46,74,44,42,57,83,54,53,52,34,51,30,36,33,42,41,41,0,61,61,91,84,64,30,35,26,34,21,20,25,88,67,37,"Mountain West","Colorado State","Halfback","Launch Ratings"
2300,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/24.png?im=FaceCrop,padding=0.7","Justin","Pickett",79,157,83,"Carmel","Indiana","Previous",77,"Senior",65,57,64,89,90,83,41,55,43,41,50,30,25,54,27,28,61,90,88,29,46,48,29,85,30,28,83,85,79,89,24,33,56,26,25,82,84,83,0,25,29,55,30,40,41,34,16,16,25,25,48,91,42,26,"ACC","Duke","Right Guard","Launch Ratings"
6891,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/84.png?im=FaceCrop,padding=0.7","Kalan","Ellis",78,215,83,"Waimanalo","Hawaii","Previous",76,"Junior",52,45,57,79,96,83,44,59,46,46,50,24,24,40,24,27,65,94,89,27,30,32,29,81,27,24,83,77,66,90,46,39,62,24,24,73,73,88,0,24,24,40,24,44,45,35,37,26,36,17,25,85,47,24,"Mountain West","San Diego State","Right Guard","Launch Ratings"
3985,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","Kaleb","Jackson",72,75,83,"Baton Rouge","Louisiana","Eligible",28,"Junior",87,82,85,83,82,81,78,55,28,80,91,64,62,79,43,44,69,60,87,81,39,32,78,55,41,54,83,61,59,57,36,59,43,40,67,58,57,57,0,56,52,88,75,88,64,30,14,11,19,30,40,92,88,42,"SEC","LSU","Halfback","Launch Ratings"
1205,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/8.png?im=FaceCrop,padding=0.7","Kalib","Fortner",73,60,83,"Knoxville","Tennessee","Eligible",53,"Senior",85,80,77,91,76,88,26,75,36,37,55,36,60,77,25,64,84,64,92,54,35,31,30,38,65,28,83,49,45,39,32,90,69,48,88,34,40,47,0,29,29,83,44,46,86,20,16,27,18,13,48,93,49,76,"The American","Army","Mike Backer","Launch Ratings"
21855,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/114.png?im=FaceCrop,padding=0.7","Kam","Thomas",67,24,83,"Birmingham","Alabama","Previous",5,"Senior",94,92,88,91,56,87,84,35,35,79,68,83,85,91,76,28,33,31,90,89,24,33,88,29,58,85,83,37,22,34,26,62,29,41,32,45,22,20,0,86,86,91,85,26,34,15,21,10,18,18,34,87,47,61,"Conference USA","UTEP","Wide Receiver","Launch Ratings"
22440,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/6.png?im=FaceCrop,padding=0.7","Kam","Shanks",68,10,83,"Prattville","Alabama","Previous",15,"Sophomore",93,91,87,88,53,82,87,46,39,76,64,85,87,90,79,39,54,31,89,89,37,32,96,30,48,87,83,38,27,35,24,48,40,35,53,42,26,23,0,88,85,91,85,25,47,28,23,24,13,30,36,87,47,48,"SEC","Arkansas","Wide Receiver","Launch Ratings"
19212,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/115.png?im=FaceCrop,padding=0.7","Kamar","Missouri",78,145,83,"Baltimore","Maryland","Previous",55,"Senior",74,60,71,87,88,92,38,46,32,39,53,29,26,54,26,33,46,88,82,28,47,30,26,82,30,28,83,81,76,86,35,35,49,30,28,83,81,85,0,27,29,65,32,36,38,12,20,14,24,31,39,91,34,29,"The American","UTSA","Left Tackle","Launch Ratings"
10111,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","Kamran","James",78,112,83,"Orlando","Florida","Eligible",24,"Junior",83,74,77,78,86,84,27,87,36,46,58,46,31,69,27,62,82,75,96,27,36,36,37,57,53,27,83,69,62,55,36,85,84,29,86,61,54,68,0,27,27,78,27,46,84,24,24,24,24,24,36,85,46,60,"SEC","Florida","Left Edge","Launch Ratings"
23332,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/127.png?im=FaceCrop,padding=0.7","Kanye","Roberts",72,45,83,"Wallace","North Carolina","Previous",2,"Junior",92,87,85,88,72,84,84,46,27,82,76,67,67,85,58,39,54,39,88,84,44,34,75,38,48,62,83,53,30,30,34,47,37,35,49,44,32,33,0,69,52,90,82,65,46,11,21,28,11,28,40,85,81,45,"Sun Belt","Appalachian State","Halfback","Launch Ratings"
22410,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/4.png?im=FaceCrop,padding=0.7","Kedrick","Reescano",72,53,83,"New Caney","Texas","Eligible",3,"Junior",92,84,85,86,78,82,75,52,49,85,90,53,63,84,45,45,69,64,87,84,28,32,78,58,47,54,83,64,63,61,33,55,44,39,63,51,36,41,0,61,58,88,79,80,60,32,35,34,41,42,25,89,82,45,"Big 12","Arizona","Halfback","Launch Ratings"
19447,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/110.png?im=FaceCrop,padding=0.7","Keeshawn","Silver",76,171,83,"Rocky Mount","North Carolina","Previous",9,"Senior",84,67,80,88,96,75,30,81,47,47,59,30,43,46,30,70,87,84,95,30,35,28,37,59,43,30,83,72,61,58,34,70,88,37,77,63,56,71,0,30,30,69,30,46,80,17,20,17,24,27,29,96,47,34,"Big Ten","USC","Defensive Tackle","Launch Ratings"
105,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Keith","Adams Jr.",69,55,83,"St. George","Utah","Previous",19,"Junior",88,83,82,86,78,84,82,48,37,81,85,60,59,82,34,42,60,51,90,82,46,30,64,44,31,43,83,57,55,58,48,48,42,35,58,49,35,38,0,54,49,85,80,81,57,20,31,16,30,35,38,90,88,34,"ACC","Clemson","Halfback","Launch Ratings"
101,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/5.png?im=FaceCrop,padding=0.7","Keith","Abney II",71,25,83,"Dallas","Texas","Eligible",1,"Junior",94,91,91,94,59,80,55,55,38,38,54,54,73,88,38,32,73,54,87,79,42,37,57,56,77,38,83,61,60,52,46,82,37,73,85,56,53,62,0,39,61,91,76,43,74,30,29,27,28,36,40,84,36,83,"Big 12","Arizona State","Cornerback","Launch Ratings"
2268,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/27.png?im=FaceCrop,padding=0.7","Kejon","Owens",71,50,83,"Miami","Florida","Previous",5,"Senior",93,88,88,87,67,82,83,35,48,79,79,65,69,86,53,28,37,52,88,85,34,46,86,43,42,61,83,59,54,53,25,45,31,36,32,51,46,45,0,67,64,89,82,64,31,27,31,37,33,31,46,84,66,37,"Conference USA","FIU","Halfback","Launch Ratings"
9862,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/122.png?im=FaceCrop,padding=0.7","Kekoura","Tarnue",72,39,83,"Monrovia","Non-US","Eligible",14,"Senior",90,86,90,90,67,85,67,52,47,65,64,33,78,86,28,35,70,54,91,64,43,26,55,58,79,28,83,64,64,56,29,86,45,78,86,62,56,69,0,29,26,87,65,57,73,34,29,26,25,12,43,84,47,82,"Big 12","West Virginia","Free Safety","Launch Ratings"
6922,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/118.png?im=FaceCrop,padding=0.7","Kelvin","Gilliam Jr.",75,135,83,"Richmond","Virginia","Previous",22,"Senior",82,68,75,90,87,86,26,83,39,40,50,25,31,56,28,79,87,73,95,25,45,38,33,59,37,25,83,64,63,56,28,87,85,32,85,57,56,62,0,25,25,69,27,41,84,19,24,28,28,31,30,92,39,31,"ACC","Virginia Tech","Defensive Tackle","Launch Ratings"
10681,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/45.png?im=FaceCrop,padding=0.7","Kendrick","Law",72,45,83,"Shreveport","Louisiana","Eligible",1,"Senior",92,89,98,88,69,86,80,52,26,78,67,85,88,88,84,44,63,39,85,85,30,36,79,36,61,84,83,34,24,35,48,61,45,41,59,64,47,45,0,85,83,97,79,55,56,27,13,36,28,11,27,91,56,61,"SEC","Kentucky","Wide Receiver","Launch Ratings"
21267,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/7.png?im=FaceCrop,padding=0.7","Kenyon","Clay",73,60,83,"Union","Mississippi","Previous",5,"Junior",89,79,81,86,80,85,85,55,26,77,87,62,73,77,52,43,71,61,92,82,35,32,74,55,26,58,83,61,57,53,34,46,45,34,64,55,53,54,0,66,61,86,78,85,60,32,13,33,21,32,46,91,87,31,"Sun Belt","Arkansas State","Halfback","Launch Ratings"
21232,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/4.png?im=FaceCrop,padding=0.7","Keyan","Burnett",78,88,83,"Ladera Ranch","California","Eligible",88,"Senior",90,82,87,92,73,84,73,54,27,69,73,86,84,75,65,51,80,72,87,67,46,26,62,68,50,75,83,58,48,55,38,55,50,33,55,69,50,59,0,75,86,82,62,71,53,20,27,28,27,15,25,95,67,60,"Big 12","Arizona","Tight End","Launch Ratings"
10690,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/109.png?im=FaceCrop,padding=0.7","Keyvone","Lee",72,65,83,"St. Petersburg","Florida","Previous",2,"Senior",91,85,82,86,82,85,81,54,25,82,75,56,68,83,38,48,72,55,88,81,46,28,73,49,32,57,83,59,54,58,45,43,47,33,70,51,36,42,0,63,50,89,78,85,63,27,13,13,27,13,32,90,87,35,"Mountain West","UNLV","Halfback","Launch Ratings"
3988,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/59.png?im=FaceCrop,padding=0.7","Khalil","Jacobs",73,58,83,"Jackson","Mississippi","Eligible",5,"Senior",88,82,85,88,73,87,45,74,34,35,54,36,68,76,35,74,87,63,91,42,33,42,45,42,72,33,83,50,34,32,25,89,66,40,88,35,41,48,0,34,31,83,46,38,84,30,22,13,17,25,24,83,35,77,"SEC","Missouri","Mike Backer","Launch Ratings"
3286,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/41.png?im=FaceCrop,padding=0.7","Kobe","Baynes",76,155,83,"Jacksonville","Florida","Previous",70,"Senior",69,58,68,86,91,86,39,53,37,41,53,28,25,54,30,28,57,90,90,28,30,44,27,78,25,26,83,85,79,91,26,37,58,27,31,79,77,81,0,27,30,57,31,41,43,17,22,19,15,32,41,91,42,26,"Big 12","Kansas","Right Guard","Launch Ratings"
10563,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/46.png?im=FaceCrop,padding=0.7","Kolbe","Fields",72,60,83,"New Orleans","Louisiana","Previous",10,"Senior",88,81,87,96,72,87,52,79,35,35,58,35,67,76,39,66,87,72,92,59,34,25,50,50,66,39,83,48,45,42,26,87,72,41,88,34,39,46,0,37,38,84,52,45,86,20,21,25,27,23,48,87,45,75,"Conference USA","Louisiana Tech","Will Backer","Launch Ratings"
19635,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/11.png?im=FaceCrop,padding=0.7","Kole","Wilson",69,5,83,"Katy","Texas","Eligible",19,"Senior",93,90,87,91,50,87,88,21,28,75,79,88,90,89,79,27,29,22,85,87,27,32,86,29,34,87,83,37,11,22,39,61,25,22,29,42,22,19,0,90,86,90,83,37,28,29,22,27,34,36,40,87,47,34,"Big 12","Baylor","Wide Receiver","Launch Ratings"
6048,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Kolinu'u","Faaiu",75,180,83,"Edmonds","Washington","Previous",61,"Senior",62,56,64,89,93,86,26,57,46,44,57,29,26,51,24,27,65,92,93,29,37,46,38,77,27,29,83,86,79,92,41,46,59,27,29,80,78,82,0,24,24,53,26,45,46,10,10,31,11,17,40,92,45,21,"SEC","Texas A&M","Center","Launch Ratings"
8882,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/75.png?im=FaceCrop,padding=0.7","Kris","Trinidad",77,112,83,"Richmond","Virginia","Previous",43,"Senior",85,73,77,83,83,87,44,77,46,43,58,26,28,67,28,75,87,61,87,30,38,32,43,36,53,30,83,63,44,41,47,88,86,27,89,55,50,62,0,29,26,75,28,45,86,19,12,24,12,34,43,85,43,57,"Sun Belt","Old Dominion","Left Edge","Launch Ratings"
8205,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Kyron","Hudson",73,55,83,"Duarte","California","Previous",11,"Senior",90,90,92,84,70,85,69,52,44,70,69,89,86,86,81,44,63,41,83,76,43,35,83,37,33,87,83,32,22,32,28,51,42,37,60,57,37,34,0,86,99,87,76,27,54,26,24,29,27,11,36,80,56,69,"Big Ten","Penn State","Wide Receiver","Launch Ratings"
22898,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/118.png?im=FaceCrop,padding=0.7","Kyron","Drones",74,75,83,"Houston","Texas","Previous",1,"Senior",88,86,82,90,79,80,85,51,86,79,82,31,56,85,32,57,71,49,87,80,24,37,48,50,29,26,83,64,45,50,78,43,59,48,51,69,51,50,0,28,26,86,79,77,66,70,82,84,86,93,72,94,79,28,"ACC","Virginia Tech","Quarterback","Launch Ratings"
19784,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/116.png?im=FaceCrop,padding=0.7","Langston","Patterson",73,70,83,"Nashville","Tennessee","Eligible",10,"Senior",86,82,85,85,78,87,48,78,39,41,63,57,68,76,34,70,83,76,90,51,44,33,48,45,67,35,83,56,53,49,41,88,64,27,88,47,46,58,0,35,56,82,47,49,85,37,14,35,12,11,35,87,50,74,"SEC","Vanderbilt","Mike Backer","Launch Ratings"
23660,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/112.png?im=FaceCrop,padding=0.7","Levani","Damuni",75,86,83,"Providence","Utah","Previous",3,"Senior",83,76,79,83,80,86,26,83,47,45,66,50,50,72,26,58,85,73,92,28,38,44,37,52,70,26,83,63,59,51,38,86,67,26,88,52,50,64,0,25,26,75,27,48,88,28,20,14,21,40,34,91,43,77,"Big 12","Utah","Mike Backer","Launch Ratings"
3474,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Liam","Clifford",73,46,83,"Maineville","Ohio","Previous",2,"Senior",88,89,86,89,75,90,81,50,47,75,74,89,88,87,86,39,60,58,88,83,29,29,83,46,35,84,83,31,18,29,44,40,42,30,56,64,55,51,0,89,87,88,80,64,54,34,35,42,33,41,33,90,71,40,"Big Ten","Penn State","Wide Receiver","Launch Ratings"
21627,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/26.png?im=FaceCrop,padding=0.7","London","Montgomery",71,37,83,"Scranton","Pennsylvania","Previous",7,"Sophomore",94,90,86,88,65,76,77,43,37,76,84,55,67,88,57,35,46,45,89,86,45,36,84,41,42,62,83,52,51,47,39,56,31,39,44,44,44,44,0,67,65,92,83,62,42,36,22,18,17,13,43,83,60,49,"The American","East Carolina","Halfback","Launch Ratings"
18758,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/78.png?im=FaceCrop,padding=0.7","Maalik","Murphy",77,74,83,"Inglewood","California","Previous",6,"Junior",86,82,85,91,80,81,80,48,91,73,75,56,57,80,43,45,64,63,95,80,35,43,39,53,35,44,83,39,35,34,66,44,50,45,48,51,49,47,0,48,65,84,75,77,55,83,80,85,82,95,65,93,79,35,"Pac-12","Oregon State","Quarterback","Launch Ratings"
8089,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/111.png?im=FaceCrop,padding=0.7","Mac","Harris",72,70,83,"The Villages","Florida","Previous",24,"Senior",87,80,84,92,74,87,43,75,47,48,54,46,67,78,31,58,84,74,95,42,47,44,38,51,67,35,83,66,61,54,45,88,74,31,89,61,53,66,0,34,35,83,43,49,86,35,29,14,15,11,41,92,46,78,"The American","USF","Mike Backer","Launch Ratings"
19896,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/12.png?im=FaceCrop,padding=0.7","Marco","Notarainni",75,78,83,"San Diego","California","Previous",53,"Senior",86,78,81,87,77,88,32,78,43,44,65,42,55,72,26,63,83,85,90,31,43,36,38,44,75,29,83,61,54,49,35,90,65,27,88,49,50,62,0,25,28,80,32,42,85,15,34,35,36,35,41,87,42,76,"Mountain West","Boise State","Mike Backer","Launch Ratings"
10046,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/24.png?im=FaceCrop,padding=0.7","Matt","Craycraft",75,140,83,"Dallas","Texas","Previous",72,"Junior",75,73,73,88,86,85,35,49,29,39,56,38,37,56,33,41,47,87,88,38,35,40,33,84,37,38,83,85,83,87,27,45,48,33,36,78,81,75,0,38,34,65,38,35,37,13,34,28,14,38,48,91,36,32,"ACC","Duke","Center","Launch Ratings"
9188,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/34.png?im=FaceCrop,padding=0.7","Matthew","Alexander",75,130,83,"Buford","Georgia","Previous",33,"Senior",73,59,72,84,87,87,28,85,28,42,58,28,31,54,26,55,86,84,88,25,32,33,24,56,33,24,83,53,52,52,46,85,79,32,85,58,56,55,0,24,27,62,24,41,94,22,27,19,29,28,44,91,43,35,"ACC","Georgia Tech","Defensive Tackle","Launch Ratings"
8888,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/101.png?im=FaceCrop,padding=0.7","Maurice","Turner",70,30,83,"Nicholls","Georgia","Previous",0,"Junior",93,92,88,88,63,78,81,36,41,79,74,70,71,91,57,32,39,42,86,88,42,44,89,33,58,64,83,54,45,49,45,76,32,41,37,43,30,34,0,71,68,89,85,66,35,36,12,27,20,36,39,89,69,55,"The American","Tulane","Halfback","Launch Ratings"
18712,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/23.png?im=FaceCrop,padding=0.7","Mel","Brown",69,20,83,"Stone Mountain","Georgia","Eligible",7,"Senior",92,88,84,88,64,82,77,33,41,87,76,65,66,86,60,28,35,44,87,87,21,23,77,41,58,62,83,49,45,46,31,42,29,32,35,36,25,27,0,68,64,90,84,59,33,32,34,33,35,35,32,78,64,25,"The American","Connecticut","Halfback","Launch Ratings"
7083,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Micah","Hudson",72,35,83,"Temple","Texas","Eligible",14,"Sophomore",94,95,93,84,66,78,93,35,31,81,67,79,84,92,79,40,60,40,90,91,37,24,95,36,53,86,83,31,20,28,43,57,42,39,56,42,34,33,0,84,88,92,86,45,56,15,17,16,14,38,36,80,52,50,"Big 12","Texas Tech","Wide Receiver","Launch Ratings"
22038,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/21.png?im=FaceCrop,padding=0.7","Micah","Welch",69,55,83,"Milledgeville","Georgia","Eligible",29,"Sophomore",93,89,87,85,73,77,83,49,33,78,86,57,62,88,51,42,57,55,87,83,35,45,80,41,50,53,83,56,53,52,27,53,40,37,56,49,38,39,0,60,59,89,79,71,52,27,14,37,28,20,28,83,74,55,"Big 12","Colorado","Halfback","Launch Ratings"
18415,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/11.png?im=FaceCrop,padding=0.7","Michael","Trigg",76,86,83,"Tampa","Florida","Previous",1,"Senior",89,84,88,95,70,80,70,43,45,72,68,84,83,80,68,40,57,63,87,77,31,45,73,57,59,75,83,50,53,45,36,52,38,31,40,65,60,60,0,84,85,83,70,69,41,14,35,33,41,25,48,96,67,44,"Big 12","Baylor","Tight End","Launch Ratings"
19574,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/6.png?im=FaceCrop,padding=0.7","Mike","Washington Jr.",74,63,83,"Utica","New York","Eligible",4,"Senior",90,80,77,88,83,88,83,56,32,83,74,64,67,79,54,46,71,70,94,81,27,36,61,53,26,55,83,67,58,63,42,44,45,33,69,56,43,45,0,63,64,87,74,92,63,31,11,31,33,37,40,91,88,22,"SEC","Arkansas","Halfback","Launch Ratings"
2529,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/37.png?im=FaceCrop,padding=0.7","Miles","Scott",71,50,83,"Dolton","Illinois","Previous",10,"Senior",88,83,84,97,74,87,46,64,46,47,24,37,74,82,25,29,85,63,95,45,46,34,46,60,78,23,83,64,65,55,25,88,45,75,87,54,57,68,0,24,70,85,43,66,69,14,15,27,29,36,42,93,60,85,"Big Ten","Illinois","Free Safety","Launch Ratings"
21717,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/50.png?im=FaceCrop,padding=0.7","Nolan","Ray",73,52,83,"Southfield","Michigan","Previous",25,"Sophomore",92,86,91,86,75,80,81,49,31,84,86,62,64,86,55,40,60,52,92,85,27,36,75,49,35,57,83,53,54,50,25,53,40,37,56,46,34,37,0,63,63,89,79,78,57,24,25,26,16,35,42,90,83,44,"Big Ten","Maryland","Halfback","Launch Ratings"
21124,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/130.png?im=FaceCrop,padding=0.7","OJ","Arnold",69,35,83,"Quitman","Georgia","Eligible",22,"Senior",92,86,88,89,67,86,82,37,39,78,86,72,76,85,64,31,40,34,90,83,29,42,58,33,37,69,83,53,21,31,29,49,31,36,41,41,30,31,0,76,73,90,78,65,37,31,31,36,14,28,43,87,74,35,"Sun Belt","Georgia Southern","Halfback","Launch Ratings"
22062,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/11.png?im=FaceCrop,padding=0.7","Palmer","Williams",74,41,83,"Advance","North Carolina","Eligible",94,"Junior",59,55,55,85,52,69,25,33,32,25,57,30,33,55,31,42,24,38,86,35,91,97,38,27,33,32,83,28,28,31,28,38,39,39,37,33,30,30,0,38,26,59,29,26,28,11,14,28,30,13,26,84,26,36,"Big 12","Baylor","Punter","Launch Ratings"
10170,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","Patrick","Kutas",77,155,83,"Memphis","Tennessee","Eligible",75,"Junior",73,72,71,82,96,66,37,62,36,49,59,33,32,62,34,41,69,92,90,33,46,34,41,82,34,32,83,83,79,87,41,49,66,36,38,85,81,88,0,37,38,59,35,48,50,32,27,24,22,38,28,88,47,30,"SEC","Ole Miss","Right Guard","Launch Ratings"
19034,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/6.png?im=FaceCrop,padding=0.7","Phillip","Lee",76,80,83,"Jacksonville","Florida","Previous",1,"Senior",89,84,87,85,73,86,28,75,26,27,52,47,58,76,50,88,84,70,88,55,21,24,44,38,61,50,83,27,28,29,48,87,80,51,89,15,28,29,0,47,49,81,49,26,76,28,15,27,16,30,29,84,56,67,"SEC","Arkansas","Left Edge","Launch Ratings"
3273,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/35.png?im=FaceCrop,padding=0.7","Pofele","Ashlock",74,25,83,"Euless","Texas","Previous",5,"Junior",92,90,85,94,57,87,85,37,33,75,56,86,83,88,79,27,35,23,87,87,46,41,68,31,39,87,83,38,16,27,30,45,29,38,32,43,27,26,0,93,87,91,81,45,32,15,29,32,25,20,31,83,35,68,"Mountain West","Hawaii","Wide Receiver","Launch Ratings"
20961,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Qua","Russaw",74,83,83,"Montgomery","Alabama","Previous",4,"Sophomore",90,82,86,85,81,83,39,82,36,41,55,41,54,76,39,61,88,83,90,56,36,36,43,60,63,39,83,67,61,54,36,82,82,31,88,59,52,66,0,39,39,87,54,41,83,24,24,24,24,24,36,90,53,71,"SEC","Alabama","Will Backer","Launch Ratings"
3061,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/80.png?im=FaceCrop,padding=0.7","Raphael","Williams Jr.",70,5,83,"Fort Lauderdale","Florida","Previous",5,"Senior",94,92,88,95,54,87,80,34,45,77,64,84,87,91,81,30,32,24,76,87,45,31,73,26,56,86,83,36,28,37,45,41,29,32,30,35,25,24,0,89,85,92,83,26,29,28,22,14,18,16,25,87,26,26,"ACC","Pittsburgh","Wide Receiver","Launch Ratings"
23559,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Raylen","Wilson",73,75,83,"Tallahassee","Florida","Eligible",5,"Junior",93,88,88,85,76,79,70,69,41,42,65,53,72,84,48,72,89,72,90,73,37,42,60,54,74,50,83,50,52,49,40,77,63,67,90,52,47,54,0,49,64,89,70,57,86,30,11,16,14,32,24,83,55,77,"SEC","Georgia","Will Backer","Launch Ratings"
23654,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Richard","Young",71,52,83,"Lehigh Acres","Florida","Previous",9,"Sophomore",93,90,88,86,73,74,76,46,32,82,82,74,71,88,53,41,57,47,85,86,37,35,88,36,60,61,83,53,48,51,35,44,40,33,51,46,31,35,0,73,69,92,83,71,48,17,37,33,33,22,43,87,71,27,"SEC","Alabama","Halfback","Launch Ratings"
8215,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/56.png?im=FaceCrop,padding=0.7","Rickey","Hunt Jr.",70,53,83,"Oklahoma City","Oklahoma","Previous",28,"Sophomore",90,83,80,88,79,80,83,54,41,82,87,60,65,82,55,44,64,41,92,86,30,26,74,37,36,61,83,57,31,31,38,42,43,32,59,44,29,33,0,67,61,86,82,77,60,11,26,23,34,31,42,94,84,48,"Conference USA","Middle Tennessee State","Halfback","Launch Ratings"
6351,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/62.png?im=FaceCrop,padding=0.7","Rocco","Spindler",77,165,83,"Clarkston","Michigan","Previous",50,"Senior",79,69,80,83,92,88,38,49,46,41,56,41,46,61,47,51,53,90,87,43,43,36,46,84,43,46,83,83,79,85,43,43,49,47,43,82,85,79,0,47,45,68,42,39,41,28,10,26,14,34,33,86,37,47,"Big Ten","Nebraska","Right Guard","Launch Ratings"
7689,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/30.png?im=FaceCrop,padding=0.7","Roydell","Williams",70,63,83,"Hueytown","Alabama","Previous",5,"Senior",91,85,84,87,76,87,81,44,45,78,80,70,67,85,52,39,52,55,83,83,39,29,81,49,31,58,83,57,54,55,44,40,37,25,53,50,36,40,0,63,56,89,81,84,49,15,15,17,29,35,41,90,84,38,"ACC","Florida State","Halfback","Launch Ratings"
19435,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/126.png?im=FaceCrop,padding=0.7","Sam","Scott",74,70,83,"Omaha","Nebraska","Previous",22,"Senior",87,79,79,86,85,85,78,54,26,77,90,68,68,77,44,47,77,72,85,76,47,40,58,71,32,54,83,64,62,63,28,49,47,31,68,65,63,64,0,64,64,82,73,88,64,32,35,21,28,30,43,93,92,31,"Mountain West","Wyoming","Halfback","Launch Ratings"
19308,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/21.png?im=FaceCrop,padding=0.7","Samuel","Okunlola",76,90,83,"Brockton","Massachusetts","Previous",93,"Junior",87,79,83,86,76,83,34,76,41,36,57,42,45,73,38,88,83,64,91,55,25,36,43,37,40,42,83,42,40,40,32,82,79,42,89,31,36,45,0,39,39,80,54,32,86,34,14,32,26,27,44,91,54,44,"Big 12","Colorado","Right Edge","Launch Ratings"
3076,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Scooby","Williams",74,70,83,"Birmingham","Alabama","Previous",0,"Junior",92,82,86,89,73,88,50,78,33,35,58,50,67,76,37,75,90,66,85,52,29,41,41,57,66,37,83,43,40,39,45,90,70,45,90,29,36,43,0,35,37,84,50,44,83,21,15,30,24,32,42,84,45,70,"SEC","Texas A&M","Mike Backer","Launch Ratings"
1567,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/101.png?im=FaceCrop,padding=0.7","Shadre","Hurst",74,133,83,"Cartersville","Georgia","Previous",56,"Junior",75,64,66,94,86,89,37,47,24,39,50,24,27,57,24,27,48,87,92,25,41,26,25,89,26,30,83,81,79,83,47,37,49,26,30,84,83,85,0,27,28,65,30,35,36,24,32,35,16,16,35,89,36,26,"The American","Tulane","Left Guard","Launch Ratings"
185,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/134.png?im=FaceCrop,padding=0.7","Shane","Porter",70,40,83,"Friendswood","Texas","Eligible",28,"Senior",93,87,84,91,60,81,83,36,28,75,83,76,77,85,65,32,36,47,90,84,21,28,87,44,43,73,83,48,46,45,46,56,31,39,36,41,42,42,0,78,74,90,82,47,38,18,37,13,13,32,37,84,54,67,"Conference USA","Sam Houston","Halfback","Launch Ratings"
646,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/12.png?im=FaceCrop,padding=0.7","Sire","Gaines",72,49,83,"Perris","California","Previous",26,"Freshman",91,87,86,85,75,77,85,44,45,84,80,58,57,86,47,36,53,49,85,87,32,42,67,39,44,48,83,55,49,55,32,51,39,36,51,48,34,39,0,55,57,88,85,78,49,27,13,29,26,10,26,90,82,42,"Mountain West","Boise State","Halfback","Launch Ratings"
21221,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/15.png?im=FaceCrop,padding=0.7","Solomon","Brown",71,37,83,"Largo","Florida","Previous",7,"Senior",94,89,89,87,66,82,63,61,46,45,65,45,62,91,40,38,72,50,90,76,35,29,67,55,76,42,83,64,51,43,37,78,48,70,76,60,54,67,0,40,42,90,70,58,70,23,22,32,19,27,40,91,46,84,"MAC","Buffalo","Free Safety","Launch Ratings"
18272,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Taylor","Tatum",70,52,83,"Longview","Texas","Eligible",8,"Sophomore",95,90,92,87,72,75,88,50,37,79,62,64,66,89,55,40,62,54,91,89,41,32,95,41,55,59,83,58,59,60,24,48,40,42,58,49,37,40,0,67,65,94,87,78,57,28,19,23,24,14,39,88,80,28,"SEC","Oklahoma","Halfback","Launch Ratings"
4036,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/126.png?im=FaceCrop,padding=0.7","Terron","Kellman",68,50,83,"Clinton","Maryland","Previous",5,"Junior",93,87,84,88,76,84,82,37,32,76,83,57,58,85,44,28,35,29,89,85,38,39,84,34,55,51,83,56,28,26,27,64,28,43,34,41,28,30,0,55,56,89,81,64,33,13,36,29,24,28,45,90,64,54,"Mountain West","Wyoming","Halfback","Launch Ratings"
6878,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","TJ","Dottery",73,65,83,"Montgomery","Alabama","Eligible",6,"Junior",87,83,83,84,79,87,41,80,36,36,54,36,52,76,41,59,90,69,89,41,36,36,43,55,56,41,83,64,60,53,36,88,77,37,89,57,52,60,0,41,41,82,41,36,89,24,24,25,24,24,36,86,36,61,"SEC","Ole Miss","Mike Backer","Launch Ratings"
20288,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/49.png?im=FaceCrop,padding=0.7","Toby","Payne",76,72,83,"Poca","West Virginia","Previous",81,"Junior",86,79,85,93,74,88,70,53,28,73,74,87,86,77,66,51,45,55,83,72,29,25,60,52,42,73,83,60,51,48,44,41,50,22,51,65,55,61,0,82,83,79,67,72,53,22,23,15,48,30,24,86,75,38,"Sun Belt","Marshall","Tight End","Launch Ratings"
4668,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","Tommy","Doman",76,55,83,"Rochester Hills","Michigan","Previous",19,"Senior",70,62,77,89,58,72,25,40,36,25,56,30,31,51,27,35,28,34,87,47,91,93,33,46,32,26,83,33,30,26,44,25,28,32,30,21,47,37,0,45,37,68,31,45,33,20,24,15,34,14,40,95,30,46,"SEC","Florida","Punter","Launch Ratings"
18663,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/30.png?im=FaceCrop,padding=0.7","Tommy","Castellanos",71,41,83,"Waycross","Georgia","Eligible",1,"Senior",93,92,85,94,63,87,87,26,84,77,75,23,66,90,44,25,34,31,87,87,34,35,55,30,27,42,83,28,29,25,83,63,24,25,35,31,29,31,0,43,32,90,86,47,33,70,82,86,92,86,69,85,55,26,"ACC","Florida State","Quarterback","Launch Ratings"
21229,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/97.png?im=FaceCrop,padding=0.7","Torrance","Burgess Jr.",68,15,83,"Pearland","Texas","Previous",4,"Senior",93,90,84,90,61,84,81,34,46,80,70,64,72,88,71,25,30,29,89,86,32,32,80,31,33,75,83,59,22,26,28,43,25,33,29,37,26,25,0,77,74,91,82,49,31,13,31,34,35,36,45,77,52,24,"Sun Belt","Texas State","Halfback","Launch Ratings"
10692,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Tristan","Leigh",78,150,83,"Fairfax","Virginia","Previous",71,"Senior",84,76,81,81,91,85,42,56,38,44,58,41,40,53,45,50,59,88,91,44,40,24,45,85,42,40,83,86,82,89,34,45,60,42,42,82,84,79,0,40,40,72,39,43,45,21,25,32,20,30,39,84,40,39,"ACC","Clemson","Left Tackle","Launch Ratings"
2240,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/59.png?im=FaceCrop,padding=0.7","Triston","Newson",74,70,83,"Independence","Mississippi","Previous",14,"Senior",89,84,87,86,74,87,41,73,36,35,54,35,53,82,41,70,81,69,90,41,36,36,42,52,74,41,83,63,60,53,36,87,65,41,89,54,55,63,0,41,41,85,41,35,83,24,24,24,24,24,36,87,44,74,"SEC","Missouri","Will Backer","Launch Ratings"
31274,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/13.png?im=FaceCrop,padding=0.7","Turbo","Richard",68,47,83,"Charlotte","North Carolina","Eligible",2,"Sophomore",92,88,85,91,70,85,79,28,35,82,79,57,61,86,54,33,25,59,87,86,25,26,80,55,23,60,83,59,57,52,34,22,48,25,34,55,54,54,0,60,64,88,83,63,42,35,40,42,42,45,24,89,74,24,"ACC","Boston College","Halfback","Launch Ratings"
19564,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/78.png?im=FaceCrop,padding=0.7","Tyler","Voltin",76,219,83,"Stayton","Oregon","Previous",79,"Senior",58,47,56,80,95,85,46,61,37,47,52,25,27,43,24,27,66,88,95,24,25,37,28,85,24,24,83,84,81,85,48,43,63,24,24,83,85,85,0,24,27,49,24,46,46,26,13,37,31,36,37,84,45,24,"Pac-12","Oregon State","Left Guard","Launch Ratings"
6875,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/15.png?im=FaceCrop,padding=0.7","Tyler","Doty",77,175,83,"Gasport","New York","Previous",78,"Senior",69,56,57,85,95,90,50,61,35,50,50,26,26,54,25,26,68,93,95,25,31,38,25,81,13,24,83,84,77,90,37,48,70,12,24,76,74,78,0,24,26,60,24,49,50,12,19,15,29,29,30,92,47,11,"MAC","Buffalo","Right Guard","Launch Ratings"
5675,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/78.png?im=FaceCrop,padding=0.7","Van","Wells",74,132,83,"Houston","Texas","Eligible",55,"Senior",69,56,71,87,89,87,28,49,39,41,56,32,32,55,27,32,54,88,84,32,32,31,26,79,26,27,83,85,84,86,44,37,51,29,29,76,79,74,0,31,29,56,29,41,42,10,11,13,24,30,38,85,36,23,"Pac-12","Oregon State","Center","Launch Ratings"
19114,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/55.png?im=FaceCrop,padding=0.7","Wayne","Matthews III",74,74,83,"Largo","Maryland","Previous",10,"Senior",86,77,79,93,76,85,30,83,36,37,55,37,43,74,30,65,83,59,91,30,36,36,36,50,70,30,83,64,60,53,36,88,65,32,89,55,55,62,0,30,30,80,30,37,87,24,24,26,24,24,36,87,37,72,"Big Ten","Michigan State","Will Backer","Launch Ratings"
9695,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/16.png?im=FaceCrop,padding=0.7","Weylin","Lapuaho",76,150,83,"South Jordan","Utah","Eligible",61,"Senior",72,64,67,94,89,88,38,50,44,38,51,29,27,55,26,33,50,88,92,31,32,31,15,82,28,27,83,84,79,87,32,44,51,28,28,83,84,82,0,28,31,63,26,39,41,37,25,30,26,30,29,85,40,26,"Big 12","BYU","Left Guard","Launch Ratings"
23016,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Will","Heldt",78,100,83,"Carmel","Indiana","Eligible",13,"Junior",84,74,81,82,83,85,26,79,36,43,51,43,27,67,26,82,85,70,94,26,36,36,34,55,56,26,83,67,62,55,36,86,87,27,89,61,55,68,0,26,26,78,26,43,85,24,24,24,24,24,36,86,43,66,"ACC","Clemson","Right Edge","Launch Ratings"
19892,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/101.png?im=FaceCrop,padding=0.7","Zuberi","Mobley",70,36,83,"Miami","Florida","Previous",2,"Senior",92,87,84,87,69,82,85,47,45,80,81,68,69,86,56,37,51,54,87,85,26,22,76,45,42,63,83,59,57,56,34,54,39,38,47,46,31,37,0,69,66,88,84,64,48,24,26,35,33,34,22,83,72,46,"The American","Tulane","Halfback","Launch Ratings"
6071,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Zuriah","Fisher",75,98,83,"Aliquippa","Pennsylvania","Previous",36,"Senior",89,78,84,85,82,82,37,85,38,35,57,42,52,70,42,82,87,76,84,42,32,27,43,49,41,42,83,48,47,44,40,81,85,44,84,40,40,48,0,42,42,79,42,39,84,31,10,10,21,32,31,89,39,44,"Big Ten","Penn State","Right Edge","Launch Ratings"
1388,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/86.png?im=FaceCrop,padding=0.7","Aakil","Washington",74,74,82,"Atlanta","Georgia","Previous",16,"Junior",87,77,81,84,79,85,25,74,45,44,66,43,49,72,26,86,89,71,88,26,26,30,34,51,64,25,82,65,39,37,42,86,79,25,87,54,49,62,0,23,24,81,25,45,82,30,11,11,22,35,45,85,44,75,"ACC","SMU","Right Edge","Launch Ratings"
5820,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/120.png?im=FaceCrop,padding=0.7","Adam","Mohammed",72,55,82,"Glendale","Arizona","Eligible",24,"Sophomore",94,90,87,86,65,74,79,34,28,77,78,62,67,88,51,26,31,38,89,85,37,24,74,36,32,60,82,51,52,49,25,47,27,35,33,45,31,36,0,65,67,92,79,66,31,26,13,35,11,15,28,84,65,31,"Big Ten","Washington","Halfback","Launch Ratings"
19770,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/86.png?im=FaceCrop,padding=0.7","Addison","Nichols",77,163,82,"Norcross","Georgia","Previous",63,"Junior",73,61,73,84,92,84,36,55,39,41,58,32,34,55,33,40,59,90,88,35,26,27,26,83,36,33,82,80,80,82,38,42,58,35,34,82,82,86,0,35,35,59,37,42,43,34,23,34,10,28,27,83,42,31,"ACC","SMU","Right Guard","Launch Ratings"
10245,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Ahmad","Moten Sr.",75,165,82,"Fort Lauderdale","Florida","Previous",99,"Junior",70,64,64,90,91,86,23,87,36,43,57,22,25,46,26,59,84,81,98,22,30,36,35,60,28,26,82,68,60,54,39,87,85,23,85,59,55,70,0,23,26,60,22,47,81,28,35,21,32,25,25,94,44,20,"ACC","Miami","Defensive Tackle","Launch Ratings"
7529,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/123.png?im=FaceCrop,padding=0.7","Al-Ma'hi","Ali",71,20,82,"Philadelphia","Pennsylvania","Previous",15,"Senior",92,87,87,95,59,85,62,54,41,30,65,57,73,86,38,42,76,55,93,67,30,31,64,47,78,35,82,45,45,46,25,87,33,74,76,49,47,48,0,37,63,91,64,56,65,33,32,35,35,36,33,91,54,82,"Conference USA","Western Kentucky","Free Safety","Launch Ratings"
7120,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/86.png?im=FaceCrop,padding=0.7","Alexander","Kilgore",73,70,82,"Katy","Texas","Eligible",54,"Junior",87,81,85,85,78,82,43,77,44,43,65,45,62,78,34,53,83,67,88,43,34,40,47,48,64,34,82,58,56,50,37,84,65,27,84,52,47,61,0,34,31,83,44,44,92,20,11,37,19,34,41,92,44,71,"ACC","SMU","Mike Backer","Launch Ratings"
25164,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Amare","Adams",76,150,82,"Jefferson","South Carolina","Eligible",95,"Freshman",84,75,82,81,87,74,42,85,19,28,51,34,52,63,30,74,86,88,93,47,23,22,25,56,33,32,82,50,51,49,15,75,83,42,84,51,50,56,0,33,41,74,42,50,85,12,11,12,20,24,14,95,45,36,"ACC","Clemson","Defensive Tackle","Launch Ratings"
22155,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/24.png?im=FaceCrop,padding=0.7","Anderson","Castle",72,60,82,"Boone","North Carolina","Previous",4,"Senior",88,79,79,87,82,84,83,56,30,80,80,66,71,81,53,47,72,49,90,82,33,43,62,46,27,59,82,57,28,36,25,39,46,31,65,51,36,39,0,65,60,86,78,84,65,28,20,14,15,16,44,92,87,50,"ACC","Duke","Halfback","Launch Ratings"
19522,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/8.png?im=FaceCrop,padding=0.7","Andon","Thomas",72,62,82,"Liberty Hill","Texas","Eligible",51,"Senior",86,79,83,90,76,88,27,72,32,42,61,64,71,77,25,62,85,73,91,57,14,15,45,53,69,24,82,46,45,45,23,86,57,45,86,47,48,57,0,27,65,82,55,44,88,22,23,22,33,42,35,93,54,75,"The American","Army","Mike Backer","Launch Ratings"
22565,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/105.png?im=FaceCrop,padding=0.7","Anthony","Woods",70,20,82,"Palmdale","California","Eligible",6,"Junior",94,88,87,88,66,80,80,57,26,75,75,57,63,86,55,48,75,34,87,87,39,35,59,33,48,60,82,51,43,52,46,56,49,39,70,44,33,35,0,61,58,90,81,60,69,15,18,11,27,11,36,79,65,64,"Big Ten","UCLA","Halfback","Launch Ratings"
18472,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","Asa","Turner",75,50,82,"San Diego","California","Previous",20,"Senior",89,84,81,88,72,88,50,68,46,43,28,38,66,81,27,43,85,57,81,47,44,30,45,56,70,27,82,62,59,57,32,87,46,75,84,56,56,67,0,26,32,86,45,57,75,27,31,32,13,18,41,92,54,73,"SEC","Florida","Free Safety","Launch Ratings"
9328,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/101.png?im=FaceCrop,padding=0.7","Bailey","Despanie",73,44,82,"Lafayette","Louisiana","Previous",32,"Senior",90,84,88,90,68,85,51,57,41,41,66,28,64,82,30,35,80,59,85,48,33,30,55,56,69,31,82,61,60,55,43,86,40,72,87,47,54,66,0,30,33,85,49,56,70,22,29,16,18,27,39,90,53,82,"The American","Tulane","Strong Safety","Launch Ratings"
21396,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/118.png?im=FaceCrop,padding=0.7","Benji","Gosnell",77,94,82,"Pilot Mountain","North Carolina","Previous",82,"Junior",87,79,84,95,78,85,66,58,25,71,71,85,88,72,61,61,59,65,86,69,31,27,54,64,39,75,82,63,59,62,34,48,59,28,58,62,54,58,0,78,84,79,63,76,59,20,30,20,46,13,43,90,70,56,"ACC","Virginia Tech","Tight End","Launch Ratings"
31041,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","Bernard","Gooden",73,103,82,"Montgomery","Alabama","Previous",88,"Senior",79,69,72,84,87,87,33,86,24,41,40,46,49,63,32,65,86,88,90,44,18,21,24,33,24,36,82,28,13,15,27,85,84,41,82,37,17,20,0,37,41,72,42,43,82,31,40,43,25,40,18,93,43,32,"SEC","LSU","Defensive Tackle","Launch Ratings"
10052,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/106.png?im=FaceCrop,padding=0.7","Bill","Davis",69,65,82,"LaPlace","Louisiana","Previous",7,"Sophomore",88,78,82,89,83,83,75,48,41,82,87,67,70,77,46,49,71,64,93,81,15,12,67,57,35,58,82,55,52,54,28,51,45,26,56,59,58,57,0,64,61,85,78,82,65,32,20,17,30,29,31,91,92,34,"Sun Belt","Louisiana","Halfback","Launch Ratings"
30615,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/107.png?im=FaceCrop,padding=0.7","Billy","Pullen",75,85,82,"Kaufman","Texas","Eligible",5,"Senior",84,81,81,79,78,89,30,77,38,40,55,41,44,74,31,77,84,61,88,33,31,29,33,54,60,32,82,68,51,42,24,90,89,33,92,59,56,64,0,31,32,78,28,38,78,19,21,22,36,35,47,83,41,64,"Sun Belt","UL Monroe","Right Edge","Launch Ratings"
2927,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Boubacar","Traore",76,90,82,"Boston","Massachusetts","Previous",5,"Sophomore",89,82,84,75,76,80,35,67,37,33,56,39,44,67,40,87,83,63,82,41,44,38,37,33,35,37,82,43,44,37,37,81,73,39,88,34,37,47,0,38,41,81,37,33,81,34,30,17,30,24,26,83,35,45,"Independent","Notre Dame","Right Edge","Launch Ratings"
7623,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/88.png?im=FaceCrop,padding=0.7","Brandon","Cisse",72,30,82,"Sumter","South Carolina","Eligible",15,"Junior",94,91,91,92,61,77,69,53,37,37,62,46,69,90,44,44,77,51,88,80,40,28,66,58,78,42,82,63,59,54,26,76,40,81,82,56,53,65,0,42,44,91,75,44,77,23,15,12,29,36,48,91,37,75,"SEC","South Carolina","Cornerback","Launch Ratings"
20132,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/17.png?im=FaceCrop,padding=0.7","Brandon","High Jr.",70,55,82,"Spring","Texas","Previous",5,"Sophomore",93,85,87,88,78,76,83,52,35,79,86,59,61,85,50,46,65,52,93,84,24,47,84,45,48,53,82,59,57,56,25,45,43,34,65,48,35,36,0,57,61,87,82,78,57,14,35,30,33,13,39,90,83,41,"ACC","Cal","Halfback","Launch Ratings"
4087,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/38.png?im=FaceCrop,padding=0.7","Bray","Lynch",77,147,82,"Austin","Texas","Previous",74,"Junior",71,67,67,84,87,88,26,46,32,37,57,26,25,55,29,32,46,87,88,28,40,33,46,85,28,26,82,84,82,86,48,31,47,28,29,78,79,77,0,27,30,63,25,38,37,12,37,17,32,36,29,87,38,22,"Big Ten","Indiana","Left Guard","Launch Ratings"
7578,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/89.png?im=FaceCrop,padding=0.7","Braylon","Braxton",74,67,82,"Frisco","Texas","Previous",1,"Senior",86,85,85,89,78,84,85,46,84,74,76,29,35,83,25,34,63,51,90,84,27,26,49,50,36,26,82,44,45,45,70,41,44,42,55,50,51,48,0,30,27,83,82,73,55,83,85,79,84,93,68,92,75,42,"Sun Belt","Southern Miss","Quarterback","Launch Ratings"
9706,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/51.png?im=FaceCrop,padding=0.7","Brendon","Lewis",75,50,82,"Melissa","Texas","Previous",2,"Senior",89,85,89,92,71,83,85,40,75,80,73,28,52,85,25,47,57,42,93,84,31,30,34,41,36,25,82,52,24,30,77,36,48,37,51,48,40,38,0,28,28,86,82,65,54,79,88,85,81,91,72,92,66,34,"The American","Memphis","Quarterback","Launch Ratings"
21811,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/34.png?im=FaceCrop,padding=0.7","Brett","Seither",77,80,82,"Clearwater","Florida","Previous",80,"Senior",89,86,89,97,68,80,74,34,47,72,68,81,80,82,70,31,42,64,85,75,39,38,73,65,58,78,82,59,50,57,25,42,32,24,30,64,55,64,0,80,82,83,69,70,33,14,21,21,36,32,27,88,70,26,"ACC","Georgia Tech","Tight End","Launch Ratings"
14771,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/50.png?im=FaceCrop,padding=0.7","Bryce","McFerson",74,31,82,"Indian Trail","North Carolina","Previous",34,"Junior",67,56,55,85,53,66,27,36,35,29,56,36,31,54,48,42,37,37,90,45,94,93,39,36,29,34,82,43,37,31,29,46,37,47,41,30,25,38,0,24,36,70,25,24,43,32,33,22,30,11,48,76,34,39,"Big Ten","Maryland","Punter","Launch Ratings"
19555,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/37.png?im=FaceCrop,padding=0.7","Ca'Lil","Valentine",71,30,82,"Hayward","California","Eligible",5,"Sophomore",94,89,87,85,63,76,78,34,45,76,79,60,66,87,62,30,33,53,87,86,26,24,79,45,51,63,82,53,55,52,36,60,30,41,32,43,42,41,0,69,66,92,82,64,35,27,33,38,38,35,23,80,57,49,"Big Ten","Illinois","Halfback","Launch Ratings"
19650,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/125.png?im=FaceCrop,padding=0.7","Cade","Yacamelli",72,55,82,"Trafford","Pennsylvania","Previous",25,"Junior",89,83,81,96,80,87,84,52,34,77,76,63,68,80,54,39,61,64,92,82,31,39,63,62,34,56,82,62,56,55,37,45,40,34,55,59,56,61,0,62,64,86,82,87,53,22,10,18,13,38,35,92,86,35,"Big Ten","Wisconsin","Halfback","Launch Ratings"
5658,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/17.png?im=FaceCrop,padding=0.7","Cade","Uluave",73,75,82,"South Jordan","Utah","Eligible",0,"Junior",86,81,82,87,80,87,34,73,50,48,70,60,75,76,32,67,85,70,93,43,46,42,42,49,79,32,82,71,63,53,46,88,73,26,87,63,54,69,0,29,57,84,38,51,83,19,12,29,28,32,44,87,48,70,"ACC","Cal","Mike Backer","Launch Ratings"
19193,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/83.png?im=FaceCrop,padding=0.7","Cam","Miller",72,30,82,"Fernandina Beach","Florida","Eligible",7,"Senior",94,89,92,91,59,80,57,50,38,36,55,42,61,88,35,60,67,54,79,65,43,45,56,56,80,35,82,62,60,54,46,78,42,80,76,55,54,61,0,37,46,91,64,45,72,17,16,29,17,13,46,85,35,83,"Big Ten","Rutgers","Cornerback","Launch Ratings"
20556,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/23.png?im=FaceCrop,padding=0.7","Cam","Chadwick",72,25,82,"Plainfield","New Jersey","Previous",13,"Sophomore",93,88,89,93,59,84,48,56,43,67,62,55,72,88,31,30,62,45,91,77,25,25,72,45,74,30,82,34,35,35,40,85,38,76,81,44,42,43,0,32,63,89,72,50,59,25,27,16,20,31,33,88,41,86,"The American","Connecticut","Cornerback","Launch Ratings"
18551,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/6.png?im=FaceCrop,padding=0.7","Cameron","Ball",77,166,82,"Atlanta","Georgia","Previous",5,"Senior",71,61,71,89,94,85,24,82,24,45,50,24,23,43,24,55,83,77,97,24,46,27,31,57,27,24,82,66,61,56,31,82,87,19,84,61,57,68,0,24,24,59,24,46,83,17,26,34,13,25,30,93,45,35,"SEC","Arkansas","Defensive Tackle","Launch Ratings"
31234,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/36.png?im=FaceCrop,padding=0.7","Carlos","Allen Jr.",73,135,82,"Atlanta","Georgia","Previous",5,"Senior",77,65,67,88,85,90,24,83,31,48,57,22,26,55,23,61,86,87,95,22,35,39,37,59,15,24,82,64,64,62,34,88,85,20,85,60,56,67,0,22,24,71,26,45,84,23,37,25,25,25,29,92,47,17,"Big 12","Houston","Left Edge","Launch Ratings"
21393,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/36.png?im=FaceCrop,padding=0.7","Carmycah","Glass",76,70,82,"Monroe","Louisiana","Previous",25,"Sophomore",88,84,83,83,75,85,46,74,40,41,58,40,61,79,38,61,84,71,89,47,29,36,40,52,59,39,82,56,41,35,42,83,58,39,87,47,47,56,0,37,38,80,50,39,88,10,11,23,15,36,29,89,39,77,"Big 12","Houston","Will Backer","Launch Ratings"
1770,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/104.png?im=FaceCrop,padding=0.7","Carter","Miller",74,140,82,"Fort Worth","Texas","Previous",52,"Junior",70,66,67,89,86,82,25,56,33,44,59,26,26,55,27,31,64,94,85,24,27,28,41,74,30,29,82,85,85,85,29,46,58,28,31,73,75,69,0,29,27,60,24,45,46,28,35,12,13,24,27,89,44,21,"Big 12","UCF","Center","Launch Ratings"
18026,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/34.png?im=FaceCrop,padding=0.7","Chad","Alexander",69,25,82,"Lawrenceville","Georgia","Eligible",27,"Junior",92,85,84,87,68,80,83,33,36,80,81,53,65,86,54,35,36,49,88,85,34,36,77,42,29,57,82,54,47,46,47,32,34,28,46,46,52,37,0,63,54,88,83,71,35,17,24,18,31,21,26,85,73,34,"ACC","Georgia Tech","Halfback","Launch Ratings"
10075,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/130.png?im=FaceCrop,padding=0.7","Chance","Gamble",74,20,82,"Fitzgerald","Georgia","Previous",31,"Junior",91,88,87,94,57,86,55,51,30,28,28,25,73,87,27,29,65,43,84,49,35,31,43,55,72,28,82,55,56,49,42,85,26,75,81,47,51,56,0,29,29,89,48,36,63,17,18,12,24,22,47,90,33,87,"Sun Belt","Georgia Southern","Cornerback","Launch Ratings"
21636,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/117.png?im=FaceCrop,padding=0.7","Chandler","Morris",72,32,82,"Highland Park","Texas","Previous",4,"Senior",89,89,83,97,54,88,84,23,70,75,68,30,66,89,34,31,36,34,88,85,45,24,24,33,33,33,82,31,24,24,81,29,31,32,45,22,25,30,0,31,29,85,81,52,32,85,85,86,83,87,72,91,53,34,"ACC","Virginia","Quarterback","Launch Ratings"
5875,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/51.png?im=FaceCrop,padding=0.7","Chris","Adams",77,117,82,"Hagerstown","Maryland","Previous",61,"Senior",81,67,75,90,82,88,31,39,46,31,55,38,40,55,35,48,40,89,82,35,45,24,40,87,41,40,82,86,82,89,35,39,38,36,40,84,86,83,0,38,37,68,35,31,32,23,37,14,24,23,44,84,32,35,"The American","Memphis","Right Tackle","Launch Ratings"
3554,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/83.png?im=FaceCrop,padding=0.7","CJ","Campbell Jr.",70,45,82,"Kaplan","Louisiana","Previous",5,"Senior",91,86,87,91,72,81,84,47,29,79,85,73,78,86,61,36,54,41,90,83,28,45,62,37,36,69,82,52,45,51,36,45,38,34,52,47,32,35,0,76,75,88,78,69,47,33,13,33,26,15,43,86,72,54,"Big Ten","Rutgers","Halfback","Launch Ratings"
20593,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/92.png?im=FaceCrop,padding=0.7","Coltin","Deery",76,165,82,"Glen Mills","Pennsylvania","Eligible",51,"Senior",66,59,57,84,92,87,47,61,32,47,50,26,26,55,25,25,68,87,98,26,30,46,26,84,24,28,82,83,79,85,34,40,65,24,25,81,78,84,0,27,27,55,24,47,46,20,12,35,37,10,42,96,45,27,"Big 12","TCU","Center","Launch Ratings"
335,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/94.png?im=FaceCrop,padding=0.7","Colton","Hood",72,35,82,"McDonough","Georgia","Previous",8,"Sophomore",95,92,91,91,57,81,65,55,40,72,63,48,71,90,41,43,53,54,88,78,25,32,67,56,85,41,82,67,59,54,43,78,35,74,77,59,55,65,0,45,48,91,74,51,45,18,24,30,20,17,45,75,43,76,"SEC","Tennessee","Cornerback","Launch Ratings"
4542,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/19.png?im=FaceCrop,padding=0.7","Cyrus","Allen",71,20,82,"New Orleans","Louisiana","Eligible",4,"Senior",94,89,92,89,64,83,76,43,40,70,75,85,83,87,83,36,45,32,80,80,43,35,68,28,42,85,82,35,25,34,26,38,37,31,43,52,29,27,0,85,88,93,75,60,43,16,26,25,37,26,24,84,55,34,"Big 12","Cincinnati","Wide Receiver","Launch Ratings"
3223,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/41.png?im=FaceCrop,padding=0.7","D.J.","Withers",76,140,82,"Little Rock","Arkansas","Previous",52,"Senior",72,62,72,89,90,83,23,85,39,42,51,25,28,41,23,67,86,78,93,26,39,27,31,58,32,24,82,66,60,54,48,79,85,27,84,58,55,69,0,22,23,60,24,44,87,17,20,23,33,22,33,91,45,25,"Big 12","Kansas","Defensive Tackle","Launch Ratings"
9421,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/65.png?im=FaceCrop,padding=0.7","Dakerric","Hobbs",72,35,82,"Conroe","Texas","Previous",3,"Senior",91,88,90,88,68,84,48,59,47,45,48,41,67,87,31,40,71,55,88,60,39,32,55,54,80,33,82,67,64,55,28,84,51,79,82,60,57,70,0,31,32,88,60,56,74,10,38,36,11,22,33,89,46,82,"Conference USA","New Mexico State","Cornerback","Launch Ratings"
21383,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","Damieon","George Jr.",78,202,82,"Houston","Texas","Previous",70,"Senior",60,50,57,85,95,84,42,58,26,46,50,24,24,48,24,28,62,93,97,24,43,34,25,74,28,24,82,75,68,83,34,41,60,28,24,84,80,88,0,26,25,48,25,44,44,37,32,28,32,16,27,91,45,25,"SEC","Florida","Right Guard","Launch Ratings"
548,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/125.png?im=FaceCrop,padding=0.7","Darrion","Dupree",70,52,82,"Chicago","Illinois","Eligible",6,"Sophomore",93,87,87,87,75,75,82,42,40,78,87,71,70,85,49,34,44,42,88,81,24,31,79,36,45,62,82,52,50,49,29,60,32,41,41,45,32,36,0,69,68,90,80,75,39,18,16,27,35,22,24,91,76,46,"Big Ten","Wisconsin","Halfback","Launch Ratings"
19145,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/62.png?im=FaceCrop,padding=0.7","Dasan","McCullough",77,75,82,"Kansas City","Kansas","Eligible",22,"Senior",93,84,89,86,81,83,43,73,36,41,57,41,52,75,43,85,86,71,90,43,36,36,45,54,77,43,82,67,61,54,36,84,65,74,86,60,53,64,0,43,43,86,43,41,74,24,24,24,24,24,36,87,41,82,"Big Ten","Nebraska","Sam Backer","Launch Ratings"
4573,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","David","Blay Jr.",76,143,82,"Levittown","Pennsylvania","Previous",11,"Senior",77,66,70,84,87,87,25,77,25,36,51,26,32,55,24,68,81,66,91,28,28,32,35,56,20,27,82,67,61,55,33,88,87,32,84,56,52,65,0,26,26,68,25,36,86,36,32,18,22,14,47,88,37,22,"ACC","Miami","Defensive Tackle","Launch Ratings"
9351,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/67.png?im=FaceCrop,padding=0.7","David","Fisher",71,22,82,"Houston","Texas","Previous",1,"Senior",91,87,88,91,59,86,54,48,40,39,48,26,67,86,28,28,73,53,84,57,46,41,54,57,81,29,82,62,59,51,44,85,34,81,85,57,53,66,0,32,28,90,60,50,72,27,20,19,31,17,43,88,38,80,"The American","North Texas","Cornerback","Launch Ratings"
5679,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/120.png?im=FaceCrop,padding=0.7","Demond","Williams Jr.",71,30,82,"Chandler","Arizona","Eligible",2,"Sophomore",92,89,86,95,58,79,84,31,85,77,71,31,62,89,31,23,26,24,85,85,29,26,28,27,41,27,82,25,23,23,67,28,24,33,26,12,17,19,0,33,32,88,83,48,29,79,81,82,87,88,77,88,45,40,"Big Ten","Washington","Quarterback","Launch Ratings"
20085,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/53.png?im=FaceCrop,padding=0.7","Dequan","Finn",74,46,82,"Detroit","Michigan","Previous",1,"Senior",89,87,86,95,65,84,84,42,85,72,75,29,63,85,31,42,51,36,90,82,33,46,32,40,27,28,82,48,32,37,74,58,41,48,32,43,36,32,0,25,23,87,80,64,44,76,83,82,85,90,68,92,63,34,"MAC","Miami (Ohio)","Quarterback","Launch Ratings"
31413,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/6.png?im=FaceCrop,padding=0.7","Devin","Bale",75,44,82,"La Jolla","California","Previous",37,"Senior",66,63,61,90,64,71,39,36,30,38,56,26,44,61,29,32,43,47,92,30,88,95,31,39,44,35,82,39,37,41,32,30,45,45,34,31,25,28,0,41,44,67,31,38,35,33,32,33,30,20,24,95,43,42,"SEC","Arkansas","Punter","Launch Ratings"
2350,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/75.png?im=FaceCrop,padding=0.7","Devin","Roche",67,12,82,"Baltimore","Maryland","Previous",3,"Sophomore",93,90,85,87,60,76,78,36,38,80,76,55,67,88,54,29,32,43,87,87,25,37,80,40,34,62,82,46,40,42,35,44,26,33,34,45,35,40,0,70,57,91,84,46,34,16,15,36,30,35,31,84,54,24,"Sun Belt","Old Dominion","Halfback","Launch Ratings"
22627,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/100.png?im=FaceCrop,padding=0.7","Devin","Lafayette",74,50,82,"Brunswick","Georgia","Eligible",3,"Senior",88,83,86,90,67,86,66,72,33,55,66,51,63,82,25,66,85,72,92,69,32,28,65,56,73,26,82,60,52,49,24,87,55,77,84,50,53,67,0,24,51,85,63,57,79,10,31,38,22,26,34,91,65,81,"Sun Belt","Troy","Sam Backer","Launch Ratings"
1576,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Devon","Jackson",74,70,82,"Omaha","Nebraska","Previous",26,"Junior",92,86,89,85,74,83,48,69,36,38,55,38,63,79,48,73,91,69,92,62,36,36,47,55,71,48,82,65,60,53,36,84,64,52,83,55,53,61,0,48,48,88,59,51,85,24,24,24,24,24,36,87,48,77,"Big Ten","Oregon","Will Backer","Launch Ratings"
20326,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","Diego","Pounds",78,180,82,"Raleigh","North Carolina","Eligible",61,"Senior",59,54,59,82,94,87,46,56,39,44,51,25,24,51,28,24,63,89,96,24,48,29,26,76,24,25,82,84,79,87,34,36,60,24,25,83,84,82,0,25,27,54,24,46,44,35,21,33,31,11,30,89,42,24,"SEC","Ole Miss","Left Tackle","Launch Ratings"
21198,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/33.png?im=FaceCrop,padding=0.7","Djay","Braswell",71,55,82,"Sandersville","Georgia","Eligible",2,"Sophomore",93,85,84,88,79,78,77,51,32,79,84,61,66,84,44,45,66,45,85,82,42,45,86,42,54,57,82,55,52,50,28,49,44,36,63,46,32,34,0,55,62,91,78,80,56,21,12,25,28,11,30,86,83,44,"Sun Belt","Georgia State","Halfback","Launch Ratings"
3564,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/53.png?im=FaceCrop,padding=0.7","Dom","Dzioban",73,48,82,"Frankfort","Illinois","Previous",31,"Senior",72,55,70,90,58,71,36,32,38,38,51,27,47,51,27,49,37,37,83,40,91,90,35,45,30,35,82,46,20,31,44,36,48,30,25,36,34,30,0,25,30,61,37,28,33,10,30,35,36,12,36,85,29,32,"MAC","Miami (Ohio)","Kicker","Launch Ratings"
4209,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/102.png?im=FaceCrop,padding=0.7","Dominic","Richardson",72,50,82,"Oklahoma City","Oklahoma","Previous",21,"Senior",93,84,87,88,75,81,81,46,35,83,83,67,75,84,45,38,53,48,87,83,44,33,66,38,46,58,82,54,48,52,30,46,36,34,47,46,31,34,0,71,61,90,76,81,48,32,15,12,27,21,31,85,80,45,"The American","Tulsa","Halfback","Launch Ratings"
22826,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/128.png?im=FaceCrop,padding=0.7","Donald","Chaney",71,60,82,"Homestead","Florida","Previous",5,"Senior",88,82,85,87,80,83,84,53,40,81,83,64,72,80,54,42,67,51,90,80,44,32,93,42,62,60,82,62,54,61,37,49,43,36,63,47,35,35,0,60,64,86,81,79,60,20,30,31,30,33,39,88,83,36,"The American","Charlotte","Halfback","Launch Ratings"
912,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Drew","Bobo",77,145,82,"Auburn","Alabama","Previous",74,"Junior",75,68,73,88,86,85,28,45,43,38,54,28,28,53,30,30,46,86,88,28,29,34,38,85,29,26,82,85,82,87,25,30,48,26,33,80,83,77,0,28,31,66,27,35,36,29,32,40,24,44,29,92,38,24,"SEC","Georgia","Center","Launch Ratings"
25504,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/58.png?im=FaceCrop,padding=0.7","Dwight","Lewis III",73,35,82,"Fairborn","Ohio","Previous",26,"Senior",93,89,92,88,67,82,71,58,23,68,58,64,74,87,40,44,72,59,91,79,24,31,66,56,79,40,82,56,57,50,26,83,27,84,81,48,50,54,0,39,66,89,76,47,67,32,28,32,28,11,37,80,45,83,"SEC","Mississippi State","Cornerback","Launch Ratings"
516,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/37.png?im=FaceCrop,padding=0.7","Dylan","Rosiek",73,75,82,"East Lake","Florida","Previous",28,"Senior",85,80,85,88,74,87,39,75,41,43,65,56,64,77,35,68,83,71,90,44,38,46,47,48,78,36,82,61,55,52,28,87,68,62,86,51,51,63,0,33,35,82,45,48,86,29,27,14,24,19,32,91,45,75,"Big Ten","Illinois","Mike Backer","Launch Ratings"
19418,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/100.png?im=FaceCrop,padding=0.7","Eli","Russ",76,140,82,"Ardmore","Oklahoma","Previous",66,"Senior",70,56,59,85,89,92,29,61,27,48,58,26,28,55,26,24,63,88,85,28,33,37,24,87,27,27,82,78,74,82,38,43,61,24,28,84,85,83,0,26,24,60,25,45,47,31,27,33,31,30,30,90,45,20,"Sun Belt","Troy","Left Guard","Launch Ratings"
24459,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Elijah","Griffin",76,150,82,"Pooler","Georgia","Eligible",90,"Freshman",84,72,81,80,88,67,52,84,21,45,48,30,42,65,30,72,87,87,95,48,14,13,15,45,27,30,82,55,55,53,25,67,87,24,85,57,54,59,0,30,40,73,46,59,85,14,22,22,21,35,22,93,55,33,"SEC","Georgia","Defensive Tackle","Launch Ratings"
8233,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/92.png?im=FaceCrop,padding=0.7","Elijah","Jackson",73,33,82,"Carson","California","Previous",25,"Senior",93,89,91,88,67,85,61,59,46,62,55,44,62,89,36,42,73,55,92,71,37,46,62,58,82,35,82,64,61,56,43,83,46,85,80,61,56,67,0,36,46,90,68,56,57,25,14,28,10,12,31,87,45,84,"Big 12","TCU","Cornerback","Launch Ratings"
4217,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/35.png?im=FaceCrop,padding=0.7","Elijah","Robinson",76,100,82,"Wilmington","North Carolina","Previous",0,"Senior",83,73,76,84,80,83,37,78,46,38,55,29,32,66,31,76,84,62,88,33,29,41,34,31,52,33,82,46,36,32,36,84,87,33,91,38,39,49,0,29,29,75,32,34,88,16,28,34,18,27,36,83,38,62,"Mountain West","Hawaii","Right Edge","Launch Ratings"
25525,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/55.png?im=FaceCrop,padding=0.7","Elijah","Tau-Tolliver",73,45,82,"Sparks","Nevada","Previous",4,"Senior",89,87,86,88,76,82,83,27,16,80,82,60,74,85,57,24,65,61,91,84,21,21,76,55,33,62,82,65,61,57,15,36,40,40,28,54,53,53,0,65,62,87,82,77,52,35,39,42,18,39,15,92,78,35,"Big Ten","Michigan State","Halfback","Launch Ratings"
4002,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/16.png?im=FaceCrop,padding=0.7","Evan","Johnson",72,25,82,"Monterey","California","Previous",0,"Junior",94,92,92,92,58,74,72,41,35,33,53,60,75,91,60,32,65,49,78,80,47,32,66,54,70,66,82,61,57,51,24,76,31,69,67,52,53,61,0,68,68,96,80,38,70,28,37,37,24,11,37,82,33,85,"Big 12","BYU","Cornerback","Launch Ratings"
10720,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/54.png?im=FaceCrop,padding=0.7","Evan","Link",78,168,82,"Burke","Virginia","Previous",71,"Junior",74,64,73,82,91,91,38,54,28,41,52,33,32,54,38,44,55,90,85,34,47,36,34,85,33,32,82,78,72,84,30,43,56,35,36,84,86,82,0,38,32,66,36,39,40,12,31,30,23,17,37,83,38,37,"Big Ten","Michigan","Left Tackle","Launch Ratings"
21768,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Gabriel","Rubio",77,161,82,"St. Louis","Missouri","Previous",97,"Senior",75,63,75,75,90,78,29,87,11,27,39,41,48,57,24,72,83,85,91,26,17,23,5,45,23,21,82,35,27,20,19,82,84,17,85,22,25,18,0,20,31,63,32,46,88,27,31,40,22,44,11,79,28,26,"Independent","Notre Dame","Defensive Tackle","Launch Ratings"
7920,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/85.png?im=FaceCrop,padding=0.7","Gafa","Faga",74,144,82,"Alao","Non-US","Eligible",50,"Senior",77,64,68,87,88,90,45,85,48,43,58,27,23,60,26,59,83,85,90,28,37,32,41,43,28,28,82,50,52,51,27,87,84,21,83,54,53,66,0,28,26,66,28,45,82,22,10,13,25,24,41,95,43,17,"Mountain West","San Jose State","Defensive Tackle","Launch Ratings"
21414,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","George","Gumbs Jr.",76,93,82,"Chicago","Illinois","Previous",34,"Senior",84,77,80,84,83,85,43,81,36,76,65,73,65,72,50,68,84,73,92,66,36,36,37,56,61,50,82,67,61,54,36,85,85,29,86,59,54,64,0,63,73,76,50,74,86,24,24,24,24,24,36,87,73,71,"SEC","Florida","Right Edge","Launch Ratings"
4653,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/51.png?im=FaceCrop,padding=0.7","Greg","Desrosiers Jr.",71,40,82,"Lawrence","Massachusetts","Previous",13,"Senior",89,85,82,88,74,83,85,43,27,80,83,76,76,84,58,36,45,36,90,85,38,44,75,36,30,62,82,58,31,37,30,41,37,32,43,49,37,38,0,71,63,86,80,72,42,14,15,19,27,26,44,87,77,51,"The American","Memphis","Halfback","Launch Ratings"
21932,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Gunner","Stockton",73,55,82,"Tiger","Georgia","Previous",14,"Junior",86,83,79,88,66,78,83,47,77,76,81,31,51,83,30,44,57,40,91,77,40,28,34,40,35,25,82,53,38,37,76,42,48,44,39,49,39,41,0,31,27,81,71,62,53,79,86,85,83,92,75,91,59,63,"SEC","Georgia","Quarterback","Launch Ratings"
20966,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Howard","Sampson",80,180,82,"Houston","Texas","Previous",79,"Junior",64,56,62,86,92,85,43,52,39,40,50,27,25,53,26,30,58,91,91,24,34,43,25,85,27,26,82,81,75,87,46,36,59,25,27,84,84,84,0,26,29,55,27,44,44,15,33,35,25,26,38,85,42,25,"Big 12","Texas Tech","Left Tackle","Launch Ratings"
1066,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/37.png?im=FaceCrop,padding=0.7","Hudson","Clement",73,45,82,"Martinsburg","West Virginia","Previous",13,"Junior",88,86,83,84,70,85,56,49,36,55,65,87,88,85,85,45,63,37,78,72,34,33,69,34,30,86,82,31,18,29,33,47,45,34,62,43,33,33,0,91,87,86,70,23,56,10,24,16,32,37,27,79,46,61,"Big Ten","Illinois","Wide Receiver","Launch Ratings"
31371,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","J'koby","Williams",70,25,82,"Beckville","Texas","Eligible",20,"Sophomore",95,93,87,86,59,72,75,49,33,80,74,71,76,92,63,43,36,46,88,87,36,38,59,45,24,66,82,58,41,40,26,26,42,25,60,51,40,39,0,73,72,93,83,53,35,23,22,11,14,16,36,84,61,22,"Big 12","Texas Tech","Halfback","Launch Ratings"
1577,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","Ja'Keem","Jackson",72,35,82,"Kissimmee","Florida","Previous",8,"Sophomore",95,90,93,86,60,75,62,52,37,39,57,46,71,90,38,49,68,53,84,74,32,27,61,56,84,40,82,62,58,52,32,76,44,80,76,56,55,63,0,38,48,91,71,47,64,10,34,24,25,38,34,81,39,73,"SEC","LSU","Cornerback","Launch Ratings"
2879,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/91.png?im=FaceCrop,padding=0.7","Jack","Stonehouse",73,37,82,"Camarillo","California","Previous",41,"Senior",73,66,63,89,52,70,48,31,44,41,54,29,39,57,30,47,26,29,83,31,92,93,24,45,33,31,82,39,37,30,27,44,40,31,24,22,25,42,0,33,46,70,38,29,41,27,18,30,32,33,29,90,31,33,"ACC","Syracuse","Punter","Launch Ratings"
23451,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/126.png?im=FaceCrop,padding=0.7","Jack","Walsh",75,155,82,"Palatine","Illinois","Previous",79,"Senior",65,54,62,87,90,89,42,53,24,43,53,25,29,52,26,30,57,88,86,26,42,47,28,90,26,29,82,82,78,85,45,33,55,28,27,86,89,82,0,24,29,58,24,39,42,32,17,32,11,23,24,85,43,28,"Mountain West","Wyoming","Center","Launch Ratings"
31494,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/11.png?im=FaceCrop,padding=0.7","Jackie","Marshall",75,130,82,"LaPlace","Louisiana","Previous",0,"Senior",77,67,75,83,87,87,33,88,32,24,35,30,34,64,28,77,85,85,88,32,22,21,15,55,35,28,82,44,45,45,37,88,87,39,88,45,45,44,0,28,29,70,32,34,76,32,32,30,21,12,22,90,46,44,"Big 12","Baylor","Defensive Tackle","Launch Ratings"
7040,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","Jacobian","Guillory II",74,160,82,"Alexandria","Louisiana","Previous",90,"Senior",76,63,73,87,94,83,26,77,24,47,51,26,31,43,26,62,87,82,85,26,34,39,32,58,32,26,82,71,64,57,35,77,88,30,77,63,54,66,0,26,26,64,26,48,86,10,25,25,11,21,30,92,45,27,"SEC","LSU","Defensive Tackle","Launch Ratings"
22374,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/2.png?im=FaceCrop,padding=0.7","Jake","Newell",76,80,82,"Springfield","Oregon","Previous",88,"Junior",84,77,84,87,74,81,79,55,33,70,72,80,85,74,68,52,26,64,85,73,44,27,67,55,28,75,82,53,48,46,27,33,52,17,56,64,59,59,0,83,87,80,72,69,57,17,37,26,45,14,24,88,75,38,"MAC","Akron","Tight End","Launch Ratings"
30786,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Jakobe","Thomas",74,42,82,"Tullahoma","Tennessee","Previous",32,"Senior",91,86,89,89,67,85,50,59,34,55,53,23,61,84,28,39,80,50,90,66,33,45,48,53,71,31,82,55,53,49,28,83,41,75,92,48,52,59,0,30,26,87,65,38,69,31,13,20,23,34,37,91,47,78,"ACC","Miami","Strong Safety","Launch Ratings"
23393,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Jalen","Stroman",73,41,82,"Bristow","Virginia","Eligible",7,"Senior",91,86,87,88,70,83,61,64,38,41,63,42,64,84,30,41,82,71,78,66,45,28,56,55,75,31,82,44,43,43,32,85,45,79,85,48,47,47,0,31,52,88,64,55,70,37,10,21,10,30,35,85,59,81,"Independent","Notre Dame","Free Safety","Launch Ratings"
19528,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/55.png?im=FaceCrop,padding=0.7","Jalen","Thompson",75,99,82,"Detroit","Michigan","Eligible",9,"Junior",87,78,80,77,80,85,37,82,33,34,57,42,50,73,42,77,84,71,81,42,39,32,39,43,38,42,82,44,46,41,29,84,85,38,85,35,42,45,0,42,42,81,42,36,86,30,21,18,10,13,37,78,35,47,"Big Ten","Michigan State","Left Edge","Launch Ratings"
4666,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/118.png?im=FaceCrop,padding=0.7","James","Djonkam",74,98,82,"Springfield","Virginia","Previous",66,"Senior",83,77,77,90,84,87,23,82,28,44,51,46,48,78,27,65,84,82,92,23,24,25,45,56,60,25,82,69,46,41,28,88,77,45,88,59,54,66,0,24,45,78,29,46,87,28,29,13,17,15,25,88,55,65,"ACC","Virginia Tech","Right Edge","Launch Ratings"
21874,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","James","Smith",75,137,82,"Montgomery","Alabama","Eligible",23,"Junior",85,77,83,82,88,77,46,87,36,44,58,37,43,65,37,85,85,79,91,37,48,32,45,53,33,37,82,65,58,53,43,83,87,38,84,54,54,66,0,37,37,75,37,46,75,20,12,14,25,33,27,90,44,42,"SEC","Alabama","Right Edge","Launch Ratings"
22188,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Jared","Dawson",73,128,82,"Collierville","Tennessee","Previous",93,"Senior",79,66,72,84,87,85,26,83,27,42,58,26,31,54,26,72,84,86,96,27,43,34,37,57,25,26,82,69,59,52,40,85,87,28,87,57,52,64,0,28,26,69,24,42,83,16,23,15,19,33,48,94,49,27,"Independent","Notre Dame","Defensive Tackle","Launch Ratings"
2262,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Jason","Onye",77,142,82,"North Providence","Rhode Island","Previous",47,"Senior",77,61,76,85,88,87,24,84,43,40,54,28,29,45,26,68,84,87,92,25,34,34,31,57,33,26,82,67,59,53,26,86,83,29,82,57,56,62,0,27,24,65,28,39,87,13,28,18,12,35,29,92,36,22,"Independent","Notre Dame","Defensive Tackle","Launch Ratings"
9454,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/113.png?im=FaceCrop,padding=0.7","Javen","Jacobs",70,30,82,"Chandler","Arizona","Previous",21,"Junior",93,89,92,88,66,78,79,45,43,74,83,72,75,87,65,35,50,32,84,84,43,25,74,37,33,71,82,55,30,30,42,51,37,37,45,47,34,37,0,72,74,91,81,54,46,20,12,11,28,25,41,85,64,33,"Mountain West","Utah State","Halfback","Launch Ratings"
8490,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/94.png?im=FaceCrop,padding=0.7","Jaxson","Moi",74,145,82,"Oceanside","California","Eligible",51,"Senior",76,62,72,85,90,86,25,87,45,41,56,25,27,54,25,62,82,83,97,25,35,42,35,57,30,25,82,66,60,52,43,86,86,25,83,58,56,63,0,25,25,69,25,42,77,20,13,36,29,24,34,97,53,20,"SEC","Tennessee","Defensive Tackle","Launch Ratings"
19692,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/4.png?im=FaceCrop,padding=0.7","Jay'Vion","Cole",70,31,82,"Oakland","California","Previous",8,"Junior",90,89,85,91,56,83,48,63,35,34,47,28,58,88,28,36,66,41,77,62,42,34,51,52,83,33,82,63,47,39,24,84,37,87,88,54,52,61,0,28,28,88,57,40,64,30,28,35,31,18,35,85,33,88,"Big 12","Arizona","Cornerback","Launch Ratings"
10740,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Jeadyn","Lukus",74,40,82,"Mauldin","South Carolina","Eligible",10,"Senior",93,90,97,90,67,83,56,62,45,68,64,47,70,87,37,46,79,56,92,77,39,43,62,57,79,35,82,66,61,57,31,81,45,88,79,62,55,70,0,35,77,91,75,64,68,29,24,33,34,37,41,83,55,82,"ACC","Clemson","Cornerback","Launch Ratings"
22505,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Jelani","Thurman",78,98,82,"Fairburn","Georgia","Eligible",15,"Junior",90,84,88,89,82,77,69,63,32,67,78,81,82,80,62,63,75,71,92,72,27,28,67,69,51,69,82,68,63,60,26,50,62,29,63,70,64,71,0,74,85,84,65,70,62,31,33,13,39,37,28,89,73,48,"Big Ten","Ohio State","Tight End","Launch Ratings"
19646,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/9.png?im=FaceCrop,padding=0.7","Jeremiah","Wright",77,177,82,"Selma","Alabama","Previous",77,"Senior",64,57,56,80,95,85,49,58,40,45,53,26,26,55,24,27,69,92,94,29,26,41,25,79,25,29,82,85,80,89,24,37,64,24,24,77,75,79,0,29,28,55,27,45,48,10,14,36,33,38,32,84,46,28,"SEC","Auburn","Right Guard","Launch Ratings"
22391,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/92.png?im=FaceCrop,padding=0.7","Jeremy","Payne",70,20,82,"Missouri City","Texas","Eligible",26,"Sophomore",96,93,91,87,59,70,76,28,40,74,74,73,73,90,68,24,23,43,88,87,41,35,84,40,56,72,82,48,40,49,39,61,23,41,24,43,35,36,0,74,70,94,84,49,23,14,26,31,31,18,43,84,54,55,"Big 12","TCU","Halfback","Launch Ratings"
2528,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/80.png?im=FaceCrop,padding=0.7","Jimmy","Scott",75,100,82,"Buffalo","New York","Previous",44,"Junior",85,74,80,77,82,84,40,74,26,42,53,34,39,66,33,80,85,70,83,37,41,25,38,44,35,33,82,55,50,46,42,83,87,36,86,46,44,55,0,35,36,81,34,42,84,16,12,34,23,25,41,79,42,43,"ACC","Pittsburgh","Right Edge","Launch Ratings"
21790,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/19.png?im=FaceCrop,padding=0.7","Jiquan","Sanks",70,35,82,"Columbus","Georgia","Eligible",9,"Sophomore",91,87,90,86,66,85,53,63,32,32,50,41,65,85,33,39,82,48,88,64,40,26,53,54,69,35,82,58,56,52,28,82,36,78,84,54,53,60,0,33,40,89,64,36,78,27,15,33,20,28,25,84,53,76,"Big 12","Cincinnati","Free Safety","Launch Ratings"
3251,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/94.png?im=FaceCrop,padding=0.7","Joey","Aguilar",75,65,82,"Antioch","California","Eligible",6,"Senior",85,83,81,93,70,86,84,34,77,74,67,23,50,82,27,32,35,48,86,83,40,27,33,47,34,26,82,42,42,42,83,25,32,24,45,42,40,44,0,23,25,83,80,67,34,84,86,85,84,89,74,91,68,33,"SEC","Tennessee","Quarterback","Launch Ratings"
5319,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Johncarlos","Miller II",77,85,82,"Greensboro","North Carolina","Previous",9,"Senior",85,82,87,85,74,80,80,59,35,70,71,81,84,76,75,58,43,62,92,84,26,39,72,54,26,77,82,61,60,55,43,30,55,14,61,63,61,55,0,73,87,84,77,72,59,21,17,27,32,32,29,89,71,33,"Big 12","Texas Tech","Tight End","Launch Ratings"
3492,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/91.png?im=FaceCrop,padding=0.7","Johntay","Cook",72,25,82,"DeSoto","Texas","Eligible",2,"Junior",95,94,92,87,63,73,88,46,40,77,67,77,82,94,85,39,55,36,86,93,43,43,95,33,70,86,82,28,19,27,44,63,40,42,51,35,28,28,0,82,87,92,85,47,53,23,18,23,17,31,38,81,42,55,"ACC","Syracuse","Wide Receiver","Launch Ratings"
21312,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/103.png?im=FaceCrop,padding=0.7","Jonah","Delange",72,15,82,"Mobile","Alabama","Eligible",39,"Junior",57,55,72,85,34,71,30,41,43,33,53,31,45,51,28,46,36,29,90,30,90,92,46,31,31,32,82,37,42,45,37,43,44,29,39,30,28,38,0,24,35,55,27,36,47,38,21,15,32,19,43,87,39,35,"The American","UAB","Kicker","Launch Ratings"
9876,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Jordan","Faison",70,25,82,"Fort Lauderdale","Florida","Eligible",6,"Junior",94,93,87,87,58,84,81,48,46,75,75,80,84,91,80,39,57,35,78,87,29,42,88,33,48,84,82,37,24,33,27,45,42,34,54,52,24,26,0,87,87,91,84,41,51,25,27,22,23,38,27,81,52,42,"Independent","Notre Dame","Wide Receiver","Launch Ratings"
20402,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/100.png?im=FaceCrop,padding=0.7","Jordan","Stringer",74,65,82,"Augusta","Georgia","Previous",7,"Senior",86,80,83,94,75,88,32,74,29,31,54,31,68,77,30,71,88,73,91,56,42,26,32,51,71,30,82,60,51,46,26,88,63,33,87,51,53,61,0,31,29,82,55,31,84,29,11,36,12,13,42,88,54,76,"Sun Belt","Troy","Mike Backer","Launch Ratings"
21085,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/6.png?im=FaceCrop,padding=0.7","Jordan","Young",72,43,82,"Tampa","Florida","Previous",4,"Senior",93,88,90,91,67,84,55,54,45,47,65,44,64,90,34,37,77,57,88,71,48,39,61,56,77,35,82,68,60,53,25,79,48,78,79,61,55,67,0,37,42,90,66,55,68,32,15,28,16,39,38,89,44,85,"SEC","Arkansas","Cornerback","Launch Ratings"
7063,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/45.png?im=FaceCrop,padding=0.7","Josaih","Hayes",75,162,82,"Horn Lake","Mississippi","Eligible",97,"Senior",67,62,65,88,95,80,24,84,26,49,58,24,24,45,24,70,86,79,99,24,34,28,37,58,28,24,82,70,61,58,39,76,88,21,80,59,57,68,0,24,24,54,24,47,84,37,22,11,37,30,26,97,45,19,"SEC","Kentucky","Defensive Tackle","Launch Ratings"
329,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/69.png?im=FaceCrop,padding=0.7","Joseph","Himon II",69,26,82,"Little Rock","Arkansas","Previous",6,"Sophomore",95,90,89,86,62,74,75,32,30,75,79,67,71,88,52,28,32,44,87,87,25,24,89,41,62,66,82,47,41,44,34,63,28,42,32,39,28,27,0,74,69,92,82,52,31,21,20,18,27,33,26,78,57,63,"Big Ten","Northwestern","Halfback","Launch Ratings"
6366,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","Josh","Thompson",77,141,82,"Fenton","Michigan","Previous",56,"Senior",72,60,71,85,88,89,40,53,43,40,54,30,31,55,33,34,58,89,89,27,33,30,30,83,33,27,82,85,81,87,37,42,56,31,33,81,79,83,0,31,27,64,33,42,38,18,22,33,28,36,41,89,42,29,"SEC","LSU","Right Tackle","Launch Ratings"
9791,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/121.png?im=FaceCrop,padding=0.7","Josh","Meredith",72,33,82,"San Diego","California","Previous",18,"Senior",91,89,93,90,63,86,77,38,46,64,71,86,86,87,83,32,40,31,91,83,37,43,84,31,47,84,82,35,14,24,31,46,29,34,40,55,28,24,0,82,89,91,81,63,36,35,41,45,42,44,36,89,43,45,"Pac-12","Washington State","Wide Receiver","Launch Ratings"
18814,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/69.png?im=FaceCrop,padding=0.7","Josh","Fussell",72,29,82,"Cincinnati","Ohio","Previous",13,"Freshman",93,89,91,92,60,83,62,64,39,64,56,49,65,87,32,32,68,48,92,73,30,24,54,57,78,32,82,62,61,51,47,80,35,77,82,57,54,63,0,32,45,91,69,43,74,25,10,30,33,33,46,85,38,81,"Big Ten","Northwestern","Cornerback","Launch Ratings"
22267,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Joshisa","Trader",73,20,82,"Hollywood","Florida","Eligible",0,"Sophomore",94,92,93,88,55,76,82,37,27,81,66,82,84,91,84,31,34,36,86,90,36,42,79,32,58,84,82,32,21,29,39,49,28,36,34,41,27,25,0,85,89,92,85,56,31,12,13,13,20,25,30,85,46,40,"ACC","Miami","Wide Receiver","Launch Ratings"
1020,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Joshua","Burnham",76,100,82,"Traverse City","Michigan","Previous",40,"Junior",90,80,83,85,79,86,34,78,40,36,56,41,55,71,40,81,85,63,86,43,38,26,39,36,48,43,82,48,46,42,28,84,84,47,89,36,38,47,0,44,41,80,40,36,83,23,34,10,15,14,47,87,35,52,"Independent","Notre Dame","Left Edge","Launch Ratings"
22601,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/13.png?im=FaceCrop,padding=0.7","Jude","Bowry",77,148,82,"Germantown","Maryland","Previous",71,"Junior",74,71,74,88,89,89,40,49,24,37,54,29,33,56,28,37,51,88,92,28,25,31,32,83,28,32,82,85,82,88,36,45,51,32,34,78,75,81,0,30,29,65,27,37,40,17,20,25,10,36,33,89,40,33,"ACC","Boston College","Left Tackle","Launch Ratings"
21694,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/27.png?im=FaceCrop,padding=0.7","Julius","Pierce",77,130,82,"Sanford","Florida","Previous",52,"Senior",70,67,68,89,84,84,34,47,29,36,51,25,27,55,24,25,46,86,80,24,41,45,27,72,27,27,82,87,88,85,32,31,46,24,24,71,73,70,0,24,26,61,27,33,37,14,26,30,16,20,45,89,37,27,"Conference USA","FIU","Left Tackle","Launch Ratings"
2931,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Junior","Tuihalamaka",74,95,82,"Granada Hills","California","Eligible",44,"Senior",88,81,83,86,77,85,38,72,24,38,54,38,53,72,39,79,84,68,88,56,35,42,44,38,45,38,82,49,49,44,42,86,85,49,83,38,40,53,0,41,39,83,55,52,87,11,32,24,13,28,29,84,58,52,"Independent","Notre Dame","Right Edge","Launch Ratings"
22328,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Justius","Lowe",73,25,82,"Portland","Oregon","Previous",14,"Junior",93,92,94,88,60,86,82,43,35,79,63,85,85,90,79,33,42,33,87,89,32,36,92,29,58,82,82,31,17,29,43,52,35,37,40,48,28,30,0,83,88,91,85,44,41,27,21,29,22,33,25,88,39,46,"Big Ten","Oregon","Wide Receiver","Launch Ratings"
7606,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/65.png?im=FaceCrop,padding=0.7","Kadarius","Calloway",72,60,82,"Philadelphia","Mississippi","Eligible",1,"Senior",90,83,81,87,79,83,79,53,46,85,83,59,66,81,53,44,65,50,88,83,44,46,73,44,32,59,82,56,52,56,30,46,43,34,61,53,40,44,0,65,49,85,77,85,58,10,35,18,28,36,30,88,86,60,"Conference USA","New Mexico State","Halfback","Launch Ratings"
6093,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/1.png?im=FaceCrop,padding=0.7","Kade","Frew",69,30,82,"Green Cove Springs","Florida","Eligible",8,"Senior",94,87,81,91,71,83,82,41,41,76,83,56,68,87,45,31,44,40,81,83,30,33,62,33,40,55,82,54,50,48,28,55,32,39,43,47,33,37,0,59,54,87,79,63,39,23,23,22,22,24,37,84,64,70,"Mountain West","Air Force","Halfback","Launch Ratings"
7910,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/92.png?im=FaceCrop,padding=0.7","Kaleb","Elarms-Orr",74,75,82,"Hayward","California","Previous",3,"Senior",87,79,82,86,77,86,41,76,34,35,55,54,65,75,27,81,89,79,90,54,29,41,27,39,69,25,82,41,39,38,34,88,73,21,87,31,36,42,0,25,55,82,52,45,85,30,18,17,23,13,24,86,54,73,"Big 12","TCU","Mike Backer","Launch Ratings"
22698,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/97.png?im=FaceCrop,padding=0.7","Kalil","Alexander",75,65,82,"Charlotte","North Carolina","Previous",2,"Senior",88,81,82,87,66,85,23,62,37,22,51,43,47,73,45,88,77,59,81,47,46,25,37,28,37,44,82,24,29,29,38,87,69,44,87,11,26,24,0,44,45,82,45,25,80,26,17,16,20,30,31,90,22,52,"Sun Belt","Texas State","Right Edge","Launch Ratings"
23445,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/6.png?im=FaceCrop,padding=0.7","Kani","Walker",74,41,82,"Atlanta","Georgia","Previous",13,"Senior",93,91,91,86,73,85,47,58,47,47,67,39,67,87,25,33,73,53,94,50,24,45,56,58,78,27,82,68,64,54,45,83,52,87,77,63,57,69,0,25,33,90,53,56,68,11,14,24,16,26,36,92,46,82,"SEC","Arkansas","Cornerback","Launch Ratings"
10148,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/116.png?im=FaceCrop,padding=0.7","Keanu","Koht",76,72,82,"Vero Beach","Florida","Previous",9,"Senior",94,86,87,82,74,78,47,72,36,39,59,39,61,79,47,86,87,81,89,47,36,36,48,56,71,47,82,65,61,54,36,76,73,46,84,55,56,66,0,47,47,86,47,39,77,24,24,24,24,24,36,90,39,68,"SEC","Vanderbilt","Right Edge","Launch Ratings"
7404,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Keionte","Scott",72,32,82,"La Mesa","California","Eligible",0,"Senior",95,93,96,88,59,81,74,49,39,38,66,46,75,93,49,49,67,49,82,84,26,30,70,55,76,46,82,64,57,53,29,79,43,78,82,55,52,63,0,46,49,96,78,41,64,24,28,20,19,17,39,84,35,79,"ACC","Miami","Cornerback","Launch Ratings"
20489,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/38.png?im=FaceCrop,padding=0.7","Kellan","Wyatt",74,102,82,"Glen Burnie","Maryland","Eligible",13,"Senior",86,76,81,76,85,87,27,80,36,45,58,45,29,71,27,77,85,73,92,27,36,36,37,59,61,27,82,68,62,55,36,88,87,27,87,58,55,67,0,27,27,80,27,45,83,24,24,24,24,24,36,86,45,67,"Big Ten","Indiana","Sam Backer","Launch Ratings"
10112,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/117.png?im=FaceCrop,padding=0.7","Kenan","Johnson",73,21,82,"Minneola","Florida","Previous",20,"Senior",91,88,88,90,58,87,50,52,35,35,49,40,65,85,32,38,65,49,85,60,38,30,51,56,80,32,82,61,61,54,38,85,36,83,82,53,54,61,0,31,37,89,60,39,59,12,24,35,12,18,46,85,35,85,"ACC","Virginia","Cornerback","Launch Ratings"
23304,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/17.png?im=FaceCrop,padding=0.7","Kendrick","Raphael",71,35,82,"Naples","Florida","Eligible",6,"Junior",93,88,87,88,72,79,85,46,35,77,77,62,70,86,54,39,54,56,90,87,24,25,84,51,48,63,82,57,55,54,24,46,39,34,53,51,51,52,0,71,66,89,82,72,52,32,13,27,11,22,48,87,75,43,"ACC","Cal","Halfback","Launch Ratings"
10127,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Keon","Keeley",77,122,82,"Tampa","Florida","Previous",31,"Sophomore",89,81,84,79,82,75,32,83,36,44,58,44,50,73,35,92,80,74,92,31,36,36,40,56,63,35,82,68,62,55,36,76,83,39,85,60,57,69,0,35,35,80,36,44,80,24,24,24,24,24,36,82,42,60,"SEC","Alabama","Left Edge","Launch Ratings"
19978,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/92.png?im=FaceCrop,padding=0.7","Kevorian","Barnes",69,50,82,"San Augustine","Texas","Previous",2,"Senior",88,81,83,88,79,83,83,53,45,78,82,66,68,81,55,42,66,56,94,84,35,24,74,45,27,66,82,60,50,60,46,38,43,30,63,52,40,42,0,71,69,86,82,87,57,35,13,19,30,12,44,87,84,29,"Big 12","TCU","Halfback","Launch Ratings"
320,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","Knijeah","Harris",75,156,82,"Port St. Lucie","Florida","Eligible",77,"Junior",66,62,72,83,90,84,40,53,28,39,50,24,28,56,26,29,55,90,89,28,41,26,27,83,27,27,82,78,73,83,39,38,56,25,28,85,85,86,0,27,24,61,25,38,41,17,11,20,37,37,37,87,41,28,"SEC","Florida","Left Guard","Launch Ratings"
6038,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/31.png?im=FaceCrop,padding=0.7","Korey","Foreman",76,90,82,"Corona","California","Previous",0,"Senior",92,84,88,86,73,83,30,79,29,32,58,64,70,78,47,83,89,67,77,48,28,32,43,35,63,46,82,35,37,35,28,78,77,46,85,23,34,39,0,49,68,86,50,31,80,19,15,31,25,35,44,78,33,61,"Mountain West","Fresno State","Right Edge","Launch Ratings"
21474,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/4.png?im=FaceCrop,padding=0.7","Kris","Hutson",71,14,82,"Compton","California","Previous",4,"Senior",94,94,94,97,51,85,83,33,44,72,70,81,85,93,85,26,32,25,72,83,32,41,95,29,56,86,82,36,11,20,35,52,28,36,26,41,21,19,0,85,87,93,78,41,29,24,35,12,24,16,29,87,46,24,"Big 12","Arizona","Wide Receiver","Launch Ratings"
7113,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Kyler","Kasper",78,50,82,"Gilbert","Arizona","Previous",3,"Junior",89,87,91,85,73,87,81,50,39,74,70,88,86,83,77,44,68,43,87,78,25,43,64,39,37,83,82,36,27,38,40,44,44,33,61,59,39,37,0,79,90,90,76,72,59,24,10,13,32,26,32,91,65,50,"Big Ten","Oregon","Wide Receiver","Launch Ratings"
989,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/5.png?im=FaceCrop,padding=0.7","Kyson","Brown",72,40,82,"Lancaster","Texas","Eligible",1,"Junior",93,86,82,87,75,81,85,54,38,71,79,60,73,86,50,43,64,48,88,86,46,46,66,38,47,61,82,56,56,56,28,51,41,36,59,50,36,39,0,65,62,91,78,80,60,36,26,23,32,27,29,85,61,54,"Big 12","Arizona State","Halfback","Launch Ratings"
9182,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/123.png?im=FaceCrop,padding=0.7","La'Vell","Wright",71,46,82,"Louisville","Kentucky","Previous",11,"Senior",91,87,82,90,79,76,80,51,29,82,86,57,63,88,41,43,67,52,89,83,39,34,68,43,40,47,82,59,48,53,36,40,44,31,61,49,36,37,0,55,51,88,74,81,61,22,19,30,17,17,48,92,81,39,"Conference USA","Western Kentucky","Halfback","Launch Ratings"
18857,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/41.png?im=FaceCrop,padding=0.7","Laith","Marjan",74,50,82,"Raleigh","North Carolina","Previous",99,"Senior",71,59,55,90,54,69,41,42,36,37,51,43,41,61,42,43,25,36,90,38,93,89,32,32,46,47,82,42,24,33,44,31,29,35,46,15,39,37,0,30,47,67,27,27,37,35,26,27,30,38,37,93,48,29,"Big 12","Kansas","Kicker","Launch Ratings"
32827,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/125.png?im=FaceCrop,padding=0.7","Lance","Mason",76,80,82,"Rockwall","Texas","Eligible",86,"Senior",84,82,85,78,71,78,77,59,26,71,74,82,84,78,68,51,65,62,92,78,41,41,55,63,42,73,82,60,54,57,37,67,56,45,54,64,66,64,0,79,87,81,74,70,60,32,32,10,45,24,44,89,77,44,"Big Ten","Wisconsin","Tight End","Launch Ratings"
645,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/6.png?im=FaceCrop,padding=0.7","Larry","Worth III",76,65,82,"Jacksonville","Florida","Eligible",3,"Senior",87,81,83,87,77,85,46,72,51,48,71,30,58,79,24,71,87,73,94,66,32,46,55,56,65,25,82,64,60,54,41,84,62,64,85,47,57,71,0,22,25,85,64,66,85,12,29,12,35,27,34,94,62,71,"SEC","Arkansas","Strong Safety","Launch Ratings"
18302,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","LJ","McCray",78,107,82,"Daytona Beach","Florida","Eligible",11,"Sophomore",86,76,82,74,90,57,44,86,36,44,58,37,45,66,37,78,85,80,91,37,41,43,40,54,50,37,82,67,62,55,37,79,83,40,80,57,54,64,0,37,37,75,37,46,86,14,14,16,36,37,37,87,46,61,"SEC","Florida","Right Edge","Launch Ratings"
8239,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/17.png?im=FaceCrop,padding=0.7","LJ","Johnson Jr.",70,59,82,"Cypress","Texas","Previous",11,"Senior",91,84,87,88,77,84,87,52,24,78,78,67,72,83,63,42,63,49,93,83,33,34,68,43,34,65,82,56,52,52,40,39,41,31,61,47,36,38,0,72,66,90,74,79,55,33,34,35,28,19,27,89,83,43,"ACC","Cal","Halfback","Launch Ratings"
10626,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","London","Humphreys",74,40,82,"Nashville","Tennessee","Eligible",16,"Junior",93,89,93,83,67,86,80,50,35,72,75,87,85,88,80,40,60,40,82,83,45,44,74,34,51,82,82,30,21,30,45,41,42,32,55,48,37,37,0,85,85,95,74,66,53,16,24,15,33,12,24,80,50,26,"SEC","Georgia","Wide Receiver","Launch Ratings"
20011,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/11.png?im=FaceCrop,padding=0.7","Louis","Brown IV",74,35,82,"South Los Angeles","California","Eligible",24,"Junior",93,89,90,90,62,85,85,47,25,72,66,87,86,86,85,35,54,36,86,85,41,47,86,35,39,81,82,30,17,26,48,49,35,35,51,48,28,28,0,86,88,89,80,45,46,16,33,23,37,28,27,75,55,57,"Big 12","Baylor","Wide Receiver","Launch Ratings"
4308,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Luke","Talich",76,50,82,"Cody","Wyoming","Eligible",28,"Junior",88,85,87,90,74,86,60,66,45,44,37,42,70,84,37,44,87,61,85,60,31,30,57,56,67,37,82,65,62,56,41,84,39,73,86,51,56,66,0,37,47,86,62,59,75,12,24,19,27,30,43,89,56,76,"Independent","Notre Dame","Free Safety","Launch Ratings"
7362,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/60.png?im=FaceCrop,padding=0.7","Luke","Pirris",76,57,82,"Ponte Vedra Beach","Florida","Eligible",35,"Senior",87,79,81,87,64,88,23,74,45,26,50,43,43,76,43,86,79,60,85,47,42,31,36,32,66,47,82,26,29,29,39,90,77,40,93,15,28,27,0,45,43,83,43,24,81,15,21,27,21,17,48,88,24,75,"The American","Navy","Right Edge","Launch Ratings"
1152,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Malik","Benson",73,35,82,"Lansing","Kansas","Eligible",4,"Senior",95,93,93,87,62,84,85,43,40,74,70,79,85,90,86,36,50,42,84,87,28,32,97,35,70,84,82,30,24,32,46,67,39,44,51,45,32,36,0,83,86,94,80,47,45,20,17,12,18,19,46,87,48,60,"Big Ten","Oregon","Wide Receiver","Launch Ratings"
8704,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Mason","Shipley",72,25,82,"Liberty Hill","Texas","Previous",49,"Senior",71,55,66,88,44,70,36,19,22,33,57,48,25,51,43,13,27,34,83,40,92,93,42,32,23,45,82,36,44,41,35,28,12,21,43,33,44,47,0,37,34,64,45,47,35,35,16,19,32,30,24,84,40,22,"SEC","Texas","Kicker","Launch Ratings"
1338,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/55.png?im=FaceCrop,padding=0.7","Matt","Gulbin",76,157,82,"Wilton","Connecticut","Previous",51,"Senior",68,65,67,85,88,85,38,51,45,37,52,28,28,60,30,32,53,93,92,30,25,45,32,87,29,25,82,78,73,83,40,36,49,26,27,86,88,84,0,27,29,58,25,40,37,11,22,12,37,22,33,85,37,29,"Big Ten","Michigan State","Center","Launch Ratings"
29089,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/123.png?im=FaceCrop,padding=0.7","Matthew","Henry",71,16,82,"Miami","Florida","Previous",17,"Senior",92,90,89,92,56,84,83,39,44,77,67,84,87,89,87,34,45,37,90,84,35,30,87,32,56,85,82,28,18,28,38,66,33,43,44,40,29,30,0,85,88,89,83,51,39,18,32,19,37,11,45,88,49,58,"Conference USA","Western Kentucky","Wide Receiver","Launch Ratings"
5804,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/132.png?im=FaceCrop,padding=0.7","Matthew","Sluka",74,51,82,"Locust Valley","New York","Previous",9,"Senior",88,88,83,92,77,85,88,48,83,81,77,27,61,87,30,47,56,43,92,86,29,26,33,47,30,24,82,55,24,22,79,63,51,37,40,53,40,42,0,29,23,85,83,72,53,77,83,83,83,88,75,97,74,56,"Sun Belt","James Madison","Quarterback","Launch Ratings"
19543,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/13.png?im=FaceCrop,padding=0.7","Max","Tucker",71,31,82,"Hyde Park","Massachusetts","Eligible",3,"Junior",92,89,90,93,62,85,49,55,38,58,58,37,68,86,29,27,67,50,92,76,26,30,56,58,70,28,82,66,62,51,39,87,39,82,80,56,53,66,0,30,32,91,73,50,68,37,28,20,29,11,24,84,39,82,"ACC","Boston College","Cornerback","Launch Ratings"
4204,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/58.png?im=FaceCrop,padding=0.7","Max","Reese",75,90,82,"Chicago","Illinois","Previous",5,"Junior",86,80,81,91,72,83,72,54,44,76,72,83,82,78,66,51,51,64,80,70,38,30,66,56,43,75,82,64,60,58,34,39,50,21,48,67,58,61,0,80,84,79,65,69,50,28,28,25,26,35,33,84,75,33,"SEC","Mississippi State","Tight End","Launch Ratings"
7137,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/39.png?im=FaceCrop,padding=0.7","Max","Llewellyn",77,103,82,"Urbandale","Iowa","Previous",48,"Senior",86,76,82,82,84,81,39,83,37,39,54,35,43,69,35,76,81,71,88,48,41,42,41,43,35,35,82,49,49,41,32,83,88,38,84,40,42,50,0,35,35,80,46,47,82,24,18,14,30,34,30,87,38,45,"Big Ten","Iowa","Left Edge","Launch Ratings"
30886,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/90.png?im=FaceCrop,padding=0.7","Micah","Ford",72,50,82,"Toms River","New Jersey","Eligible",20,"Sophomore",93,85,88,88,79,75,84,53,37,80,83,67,70,84,48,46,65,61,90,82,32,28,72,56,35,59,82,61,54,61,39,37,46,30,55,54,52,51,0,66,62,88,78,85,55,34,15,20,15,27,29,90,84,39,"ACC","Stanford","Halfback","Launch Ratings"
18656,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/116.png?im=FaceCrop,padding=0.7","Miles","Capers",76,75,82,"Sumter","South Carolina","Previous",29,"Senior",88,79,78,85,73,85,24,71,39,25,51,42,48,72,42,88,80,60,82,42,43,30,38,29,43,42,82,27,27,29,45,84,75,46,85,15,25,31,0,42,42,82,42,25,81,10,22,25,33,24,35,84,25,48,"SEC","Vanderbilt","Right Edge","Launch Ratings"
22876,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/113.png?im=FaceCrop,padding=0.7","Miles","Davis",72,55,82,"Las Vegas","Nevada","Previous",4,"Senior",92,86,88,91,77,82,74,50,28,75,81,76,79,84,74,42,58,50,87,77,27,34,80,44,66,76,82,59,55,58,48,49,42,36,54,46,32,36,0,75,81,89,75,82,54,30,23,23,17,33,33,88,79,32,"Mountain West","Utah State","Halfback","Launch Ratings"
23731,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/112.png?im=FaceCrop,padding=0.7","Naquari","Rogers",70,45,82,"Virginia Beach","Virginia","Eligible",21,"Senior",90,84,85,87,75,82,81,34,45,77,87,62,61,84,53,28,31,21,78,84,24,46,64,28,42,57,82,45,24,26,34,51,30,36,33,38,24,26,0,63,58,87,80,79,30,35,26,34,21,20,25,88,85,44,"Big 12","Utah","Halfback","Launch Ratings"
9812,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Nolan","Rucci",80,147,82,"Lititz","Pennsylvania","Previous",72,"Senior",82,78,81,88,85,77,39,45,35,38,55,42,47,52,44,52,46,88,87,43,29,38,42,83,43,45,82,85,86,84,27,43,45,41,49,85,86,85,0,44,43,72,46,39,35,30,12,19,25,18,45,91,37,45,"Big Ten","Penn State","Right Tackle","Launch Ratings"
21426,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/88.png?im=FaceCrop,padding=0.7","Nyck","Harbor",77,75,82,"Washington","D.C.","Eligible",8,"Junior",97,92,98,87,79,79,74,55,47,76,79,79,82,86,79,68,75,65,91,84,24,25,85,57,57,75,82,45,27,37,23,52,64,61,68,65,51,60,0,73,92,99,76,77,57,24,21,30,35,41,23,88,75,50,"SEC","South Carolina","Wide Receiver","Launch Ratings"
5760,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/120.png?im=FaceCrop,padding=0.7","Omari","Evans",72,30,82,"Killeen","Texas","Eligible",5,"Senior",94,91,97,86,60,83,80,39,25,65,65,81,85,90,85,34,43,37,78,85,45,46,93,32,65,81,82,33,18,30,44,45,34,34,44,46,28,28,0,77,82,93,82,25,42,26,23,17,16,15,34,81,48,25,"Big Ten","Washington","Wide Receiver","Launch Ratings"
31143,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/46.png?im=FaceCrop,padding=0.7","Omiri","Wiggins",70,42,82,"Lafayette","Louisiana","Eligible",22,"Junior",91,85,85,90,70,82,83,38,21,82,83,70,74,84,62,38,31,50,91,85,38,39,78,45,36,67,82,54,53,49,15,19,39,41,31,51,51,52,0,72,72,88,81,65,45,35,38,42,21,39,25,85,71,32,"Conference USA","Louisiana Tech","Halfback","Launch Ratings"
9968,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/1.png?im=FaceCrop,padding=0.7","Owen","Allen",71,55,82,"Southlake","Texas","Eligible",2,"Junior",90,82,84,85,81,84,85,32,27,80,88,57,67,79,46,22,35,63,89,85,46,28,64,65,47,55,82,57,44,52,39,42,23,24,26,61,47,53,0,64,56,83,85,83,27,33,22,35,42,14,35,95,86,37,"Mountain West","Air Force","Fullback","Launch Ratings"
1587,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/26.png?im=FaceCrop,padding=0.7","Parker","Jenkins",71,49,82,"Houston","Texas","Eligible",5,"Junior",92,86,85,87,75,80,76,49,24,77,82,60,65,85,52,43,62,43,87,84,30,27,82,39,51,56,82,56,51,55,36,47,41,35,59,47,35,35,0,59,56,93,81,61,53,16,29,34,12,16,32,86,67,42,"The American","East Carolina","Halfback","Launch Ratings"
23241,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/47.png?im=FaceCrop,padding=0.7","Pete","Nygra",76,140,82,"Indianapolis","Indiana","Previous",50,"Senior",71,64,71,92,85,87,31,44,41,35,55,32,30,55,28,37,43,88,88,29,31,37,25,84,28,31,82,84,86,82,40,36,43,28,32,82,85,80,0,28,32,59,31,34,34,25,22,18,23,22,36,93,32,27,"ACC","Louisville","Center","Launch Ratings"
1639,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/21.png?im=FaceCrop,padding=0.7","Preston","Hodge",72,40,82,"Waxahachie","Texas","Previous",24,"Senior",93,90,88,92,65,89,77,54,44,72,63,56,67,89,23,28,65,50,91,77,39,29,51,54,82,26,82,65,62,53,25,91,43,82,86,61,56,67,0,27,55,89,74,51,49,25,33,27,26,18,30,92,42,76,"Big 12","Colorado","Strong Safety","Launch Ratings"
2877,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/69.png?im=FaceCrop,padding=0.7","Preston","Stone",73,54,82,"Dallas","Texas","Previous",8,"Senior",82,78,76,91,67,87,75,52,44,76,71,34,48,76,29,46,61,48,92,73,62,81,33,45,24,25,82,54,42,41,87,53,52,21,22,53,39,44,0,31,32,76,72,61,55,79,89,84,68,90,77,91,65,21,"Big Ten","Northwestern","Quarterback","Launch Ratings"
23589,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/66.png?im=FaceCrop,padding=0.7","Pryce","Yates",76,105,82,"San Antonio","Texas","Previous",10,"Senior",85,76,77,78,82,87,38,82,31,38,55,24,24,71,23,70,84,65,86,24,36,37,38,40,45,24,82,50,38,31,43,85,88,24,87,41,40,50,0,27,27,80,23,40,79,27,19,31,19,11,24,84,37,54,"ACC","North Carolina","Right Edge","Launch Ratings"
20353,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/6.png?im=FaceCrop,padding=0.7","Quincy","Rhodes Jr.",78,116,82,"North Little Rock","Arkansas","Eligible",97,"Junior",82,73,81,81,86,79,39,85,46,41,53,31,34,66,31,68,86,74,88,31,35,43,41,46,34,31,82,56,51,45,31,83,85,35,84,46,45,55,0,31,31,75,31,40,85,11,20,24,16,17,30,87,40,39,"SEC","Arkansas","Right Edge","Launch Ratings"
25519,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/50.png?im=FaceCrop,padding=0.7","Rahtrel","Perry",77,157,82,"New London","Connecticut","Previous",76,"Junior",70,64,72,83,90,78,40,49,37,39,55,30,32,58,30,29,51,91,91,26,29,24,24,77,31,28,82,82,77,87,27,34,51,27,30,85,82,87,0,30,31,61,29,37,38,27,22,28,23,29,30,92,38,29,"Big Ten","Maryland","Left Tackle","Launch Ratings"
5708,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Randy","Bond",71,40,82,"Plano","Texas","Previous",47,"Senior",66,69,68,87,52,71,49,31,38,42,57,40,47,69,36,45,43,47,85,40,90,93,43,38,48,47,82,36,33,33,46,44,31,35,40,25,35,42,0,37,29,67,47,44,46,12,20,32,30,17,39,84,49,40,"SEC","Texas A&M","Kicker","Launch Ratings"
22495,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/100.png?im=FaceCrop,padding=0.7","Rara","Thomas",74,48,82,"Eufaula","Alabama","Eligible",11,"Senior",92,90,92,87,70,85,78,52,25,74,71,82,86,87,83,41,64,40,88,83,24,32,91,35,54,84,82,36,29,37,45,43,43,33,63,50,39,39,0,86,89,91,78,64,58,10,14,17,13,16,28,87,62,31,"Sun Belt","Troy","Wide Receiver","Launch Ratings"
23095,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Ray Ray","Joseph",70,15,82,"Miami","Florida","Eligible",5,"Junior",95,94,92,88,55,81,89,42,44,79,68,78,82,94,83,34,52,30,85,91,30,29,96,30,51,82,82,31,21,30,33,59,37,40,48,38,25,27,0,85,76,93,87,34,43,20,28,19,15,23,29,87,45,52,"ACC","Miami","Wide Receiver","Launch Ratings"
31251,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/6.png?im=FaceCrop,padding=0.7","Raylen","Sharpe",69,5,82,"Allen","Texas","Previous",6,"Senior",94,90,84,93,53,83,85,23,34,77,72,81,84,89,84,23,32,33,90,89,14,14,77,32,25,87,82,33,35,35,23,37,24,24,29,44,33,40,0,87,82,92,82,39,32,22,25,24,22,18,23,81,44,32,"SEC","Arkansas","Wide Receiver","Launch Ratings"
21680,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/64.png?im=FaceCrop,padding=0.7","Richard","Pearce",74,151,82,"Hueytown","Alabama","Previous",78,"Senior",69,53,68,90,89,90,40,48,47,38,52,34,37,51,34,37,53,89,92,37,21,22,15,83,32,32,82,78,74,82,46,40,50,37,31,85,86,84,0,34,35,58,35,37,39,29,23,30,29,36,25,92,40,31,"Mountain West","New Mexico","Right Guard","Launch Ratings"
21363,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","Ricky","Fletcher",75,37,82,"Durant","Mississippi","Eligible",9,"Junior",91,88,88,91,61,85,50,51,43,41,46,37,63,85,29,41,66,57,81,54,24,43,52,58,80,28,82,66,46,40,24,85,40,77,77,58,53,66,0,29,35,89,55,48,64,19,23,10,12,24,45,89,38,87,"SEC","Ole Miss","Cornerback","Launch Ratings"
18794,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/69.png?im=FaceCrop,padding=0.7","Robert","Fitzgerald",72,48,82,"Dallas","Texas","Previous",6,"Sophomore",89,86,89,87,73,80,60,69,45,45,69,43,67,85,29,34,85,67,87,67,28,44,65,52,74,29,82,45,44,49,24,85,45,75,84,55,56,68,0,27,37,87,63,58,73,30,22,18,19,30,26,88,61,79,"Big Ten","Northwestern","Free Safety","Launch Ratings"
20122,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/61.png?im=FaceCrop,padding=0.7","Sabastian","Harsh",75,91,82,"Scottsbluff","Nebraska","Previous",54,"Junior",86,79,83,89,76,89,30,84,33,29,54,33,35,71,33,87,83,55,84,33,30,41,38,22,56,37,82,34,31,29,35,87,81,40,88,23,31,36,0,34,36,80,35,29,78,25,36,22,36,20,31,85,31,64,"ACC","NC State","Right Edge","Launch Ratings"
7512,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/129.png?im=FaceCrop,padding=0.7","Samari","Collier",75,65,82,"DeSoto","Texas","Previous",10,"Senior",87,87,83,91,69,63,81,51,88,78,87,27,59,84,26,47,63,40,89,81,41,28,36,45,27,24,82,62,26,30,75,37,55,33,68,56,45,42,0,25,23,86,76,73,59,70,81,87,86,90,75,91,73,68,"Sun Belt","Coastal Carolina","Quarterback","Launch Ratings"
20016,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/61.png?im=FaceCrop,padding=0.7","Sean","Brown",72,56,82,"Charlotte","North Carolina","Previous",0,"Senior",92,86,84,96,66,87,63,64,41,43,66,40,68,82,38,40,87,62,92,56,37,25,59,57,69,35,82,62,59,56,25,85,52,70,86,51,54,67,0,37,35,90,62,54,79,25,17,33,21,31,29,95,53,75,"ACC","NC State","Will Backer","Launch Ratings"
23045,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/90.png?im=FaceCrop,padding=0.7","Sedrick","Irvin",70,40,82,"Miami","Florida","Eligible",26,"Junior",92,86,84,87,72,80,80,47,43,76,85,65,71,85,61,38,55,39,83,84,34,29,80,34,31,65,82,50,48,46,40,45,36,34,51,43,29,31,0,67,63,89,79,71,49,24,27,30,26,16,28,89,74,38,"ACC","Stanford","Halfback","Launch Ratings"
18279,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/6.png?im=FaceCrop,padding=0.7","Selman","Bridges",74,21,82,"Temple","Texas","Eligible",2,"Sophomore",94,91,91,93,49,82,65,47,26,26,62,44,69,92,41,48,61,47,74,77,44,38,61,53,79,43,82,56,55,51,44,80,27,87,70,49,49,54,0,45,44,92,77,24,59,33,35,27,23,11,28,84,26,76,"SEC","Arkansas","Cornerback","Launch Ratings"
19974,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/71.png?im=FaceCrop,padding=0.7","Sieh","Bangura",72,50,82,"Bowie","Maryland","Previous",5,"Senior",91,83,82,90,79,85,80,54,29,75,86,53,65,79,36,45,67,48,92,79,46,43,60,43,36,50,82,57,53,53,42,53,44,37,61,45,32,35,0,63,51,88,78,83,56,19,13,21,27,38,45,93,84,69,"MAC","Ohio","Halfback","Launch Ratings"
5609,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/104.png?im=FaceCrop,padding=0.7","Sincere","Edwards",75,80,82,"Apopka","Florida","Eligible",10,"Sophomore",89,82,83,82,74,84,35,73,32,31,53,44,50,73,33,79,85,77,90,42,39,40,37,40,38,34,82,33,31,32,24,85,86,37,93,34,37,35,0,35,43,81,43,31,84,21,19,33,21,32,26,85,55,44,"Big 12","UCF","Left Edge","Launch Ratings"
2935,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/19.png?im=FaceCrop,padding=0.7","Taran","Tyo",75,165,82,"Greenville","Ohio","Previous",77,"Junior",65,54,69,85,97,84,46,63,29,47,52,27,31,52,28,30,72,90,84,28,29,46,28,80,27,26,82,78,72,83,37,50,69,32,29,81,78,84,0,31,26,56,29,47,49,29,20,14,12,22,26,87,47,32,"Big 12","Cincinnati","Right Guard","Launch Ratings"
22262,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/124.png?im=FaceCrop,padding=0.7","Tate","Hallock",76,50,82,"Grand Rapids","Michigan","Previous",3,"Senior",87,81,82,88,74,87,46,69,44,46,23,39,67,80,25,42,87,60,93,44,43,46,44,60,83,26,82,65,52,48,48,88,48,74,86,57,56,68,0,26,31,83,49,63,72,10,30,23,33,28,47,96,60,76,"MAC","Western Michigan","Strong Safety","Launch Ratings"
19668,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/61.png?im=FaceCrop,padding=0.7","Teague","Andersen",77,159,82,"Lehi","Utah","Previous",54,"Sophomore",68,54,71,88,95,85,47,60,44,46,50,31,29,52,30,29,72,92,88,30,44,25,30,79,26,29,82,84,76,91,36,44,68,27,29,77,77,80,0,27,29,58,32,47,50,33,18,20,23,21,36,87,45,30,"ACC","NC State","Right Tackle","Launch Ratings"
1685,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/25.png?im=FaceCrop,padding=0.7","Terry","Lockett Jr.",71,22,82,"St. Paul","Minnesota","Previous",3,"Senior",92,90,88,92,57,86,85,41,24,81,69,84,86,87,82,30,41,30,89,87,37,45,81,33,55,85,82,36,12,23,33,62,33,42,39,44,24,24,0,85,87,90,85,35,39,32,34,18,36,35,24,88,44,68,"MAC","Eastern Michigan","Wide Receiver","Launch Ratings"
18643,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Terry","Bussey",72,35,82,"Timpson","Texas","Eligible",2,"Sophomore",96,94,94,95,60,74,87,45,67,83,69,79,82,94,84,40,68,40,88,89,15,60,95,20,83,82,82,10,11,8,69,70,20,75,80,30,33,20,0,85,84,94,85,35,60,60,72,75,83,84,65,95,55,72,"SEC","Texas A&M","Wide Receiver","Launch Ratings"
7324,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/105.png?im=FaceCrop,padding=0.7","Titus","Mokiao-Atimalala",73,30,82,"Ewa Beach","Hawaii","Previous",2,"Junior",94,91,92,89,63,79,84,45,40,67,67,84,86,91,83,35,54,35,75,88,48,38,92,35,66,85,82,34,22,32,48,53,35,37,47,56,29,29,0,87,87,93,80,26,49,37,10,27,10,12,27,82,43,37,"Big Ten","UCLA","Wide Receiver","Launch Ratings"
8060,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/39.png?im=FaceCrop,padding=0.7","TJ","Hall",72,30,82,"Fresno","California","Eligible",2,"Senior",92,89,89,93,66,83,57,63,36,36,54,45,71,88,37,44,77,51,87,65,39,33,58,54,80,35,82,60,57,51,33,82,44,84,83,55,53,61,0,38,40,90,68,44,72,20,29,15,20,27,45,92,35,76,"Big Ten","Iowa","Cornerback","Launch Ratings"
23200,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/54.png?im=FaceCrop,padding=0.7","TJ","Metcalf",73,40,82,"Birmingham","Alabama","Eligible",7,"Junior",93,88,89,88,70,78,55,56,47,47,67,60,75,87,37,39,77,57,93,66,32,37,62,55,76,38,82,65,64,57,40,81,50,78,82,60,55,70,0,37,61,90,67,55,71,28,17,27,16,32,39,88,45,84,"Big Ten","Michigan","Strong Safety","Launch Ratings"
7351,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/42.png?im=FaceCrop,padding=0.7","Tobi","Osunsanmi",75,90,82,"Wichita","Kansas","Previous",44,"Junior",89,82,85,85,74,83,29,73,26,27,52,49,60,77,47,88,83,61,87,46,36,24,36,32,52,46,82,30,31,29,43,87,79,55,90,17,31,30,0,48,48,82,45,30,77,36,17,35,12,28,25,87,41,55,"Big 12","Kansas State","Right Edge","Launch Ratings"
7974,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/81.png?im=FaceCrop,padding=0.7","Tony","Grimes",74,35,82,"Virginia Beach","Virginia","Eligible",0,"Senior",94,89,93,93,50,82,67,46,23,24,43,48,75,88,44,48,69,47,83,81,47,48,59,57,80,44,82,58,47,42,27,81,43,83,79,49,50,53,0,42,48,91,74,27,59,30,16,35,18,38,37,90,25,82,"Big Ten","Purdue","Cornerback","Launch Ratings"
4832,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/74.png?im=FaceCrop,padding=0.7","Trent","Howland",74,87,82,"Joliet","Illinois","Previous",24,"Senior",86,78,82,83,81,86,85,57,39,81,84,52,57,77,43,48,71,63,99,75,35,36,65,50,26,45,82,68,65,65,29,34,46,28,68,58,47,47,0,49,46,86,71,86,64,17,25,21,30,11,48,95,85,41,"Big 12","Oklahoma State","Halfback","Launch Ratings"
7009,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Trevor","Goosby",79,152,82,"Melissa","Texas","Previous",74,"Sophomore",72,69,74,84,89,82,40,51,44,38,52,37,35,53,34,38,50,88,88,32,42,47,37,79,37,35,82,87,83,89,41,45,51,32,34,74,79,69,0,33,34,62,32,41,39,21,29,19,36,26,40,86,37,37,"SEC","Texas","Left Tackle","Launch Ratings"
20310,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/54.png?im=FaceCrop,padding=0.7","Trey","Pierce",74,155,82,"Chicago","Illinois","Eligible",95,"Junior",73,62,74,91,91,79,25,88,26,45,50,25,25,52,25,61,87,76,95,25,25,36,30,57,29,25,82,69,63,57,27,80,83,25,85,58,54,68,0,25,25,63,25,45,84,10,16,12,30,33,24,97,43,22,"Big Ten","Michigan","Defensive Tackle","Launch Ratings"
19801,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","Trey","Smack",73,42,82,"Severna Park","Maryland","Eligible",29,"Senior",72,64,55,84,52,70,41,35,30,30,56,32,33,65,32,43,48,25,87,32,90,94,43,47,43,26,82,27,43,27,27,44,25,42,38,35,33,36,0,39,45,69,25,45,40,27,29,17,36,30,27,78,36,46,"SEC","Florida","Kicker","Launch Ratings"
18293,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","Trey'Dez","Green",79,80,82,"Jackson","Louisiana","Eligible",14,"Sophomore",89,87,92,85,70,75,78,46,31,71,67,78,85,80,69,47,61,63,86,79,41,43,69,60,58,75,82,57,49,58,47,59,46,36,46,60,52,52,0,81,91,87,75,78,48,33,10,30,34,32,35,87,77,60,"SEC","LSU","Tight End","Launch Ratings"
18458,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/4.png?im=FaceCrop,padding=0.7","Treydan","Stukes",74,35,82,"Litchfield Park","Arizona","Previous",2,"Senior",91,87,88,92,65,87,46,54,41,43,44,32,55,86,23,28,71,51,84,54,24,29,50,55,83,27,82,63,62,53,27,86,38,81,85,59,55,67,0,24,30,88,57,55,70,29,32,22,13,23,30,87,43,81,"Big 12","Arizona","Cornerback","Launch Ratings"
21844,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Ty","Simpson",74,48,82,"Martin","Tennessee","Previous",15,"Junior",87,83,77,88,72,78,74,44,79,67,66,40,49,82,32,39,49,41,90,78,48,41,25,42,55,29,82,45,37,36,77,51,42,37,50,39,35,34,0,38,45,86,75,45,46,80,83,88,81,93,75,93,64,24,"SEC","Alabama","Quarterback","Launch Ratings"
30793,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Tyler","White",76,60,82,"Southlake","Texas","Previous",37,"Sophomore",61,55,62,89,64,66,32,34,41,27,59,26,44,57,37,41,26,48,93,31,95,93,48,43,38,40,82,26,43,46,32,33,46,36,29,20,47,31,0,41,31,59,32,40,25,26,25,32,16,24,33,93,33,25,"SEC","Texas A&M","Punter","Launch Ratings"
1117,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/21.png?im=FaceCrop,padding=0.7","Tyrecus","Davis",70,28,82,"Greenville","Texas","Eligible",12,"Senior",91,91,88,95,53,87,64,49,34,66,54,55,68,90,30,32,55,46,95,72,16,19,52,54,77,32,82,61,50,45,33,87,31,75,75,53,54,61,0,31,57,92,64,41,56,27,19,36,22,25,37,84,35,83,"Big 12","Colorado","Cornerback","Launch Ratings"
8626,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/17.png?im=FaceCrop,padding=0.7","Tyson","Ruffins",74,150,82,"Long Beach","California","Eligible",56,"Junior",71,57,68,87,88,87,37,48,44,40,54,28,26,55,26,28,51,85,87,25,29,44,27,73,30,30,82,85,82,87,30,33,53,26,29,73,71,76,0,29,31,64,25,40,41,18,30,20,24,37,30,91,36,31,"ACC","Cal","Center","Launch Ratings"
5972,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/133.png?im=FaceCrop,padding=0.7","Vaughn","Blue",71,35,82,"Mount Pleasant","South Carolina","Previous",24,"Sophomore",91,86,89,88,69,84,84,40,44,74,82,65,70,86,54,34,45,54,91,82,15,15,75,47,24,62,82,54,54,54,35,32,36,28,46,43,30,34,0,67,67,88,79,63,44,32,33,36,32,41,31,86,72,26,"Conference USA","Liberty","Halfback","Launch Ratings"
1019,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Vic","Burley",76,160,82,"Warner Robins","Georgia","Previous",45,"Sophomore",74,63,73,89,93,69,28,81,38,47,59,26,30,45,26,67,83,80,95,24,43,30,38,58,32,25,82,67,63,55,44,75,90,25,76,58,56,67,0,26,25,63,27,47,88,37,15,23,22,28,42,96,47,22,"ACC","Clemson","Defensive Tackle","Launch Ratings"
4549,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/125.png?im=FaceCrop,padding=0.7","Vinny","Anthony II",72,30,82,"Louisville","Kentucky","Eligible",8,"Senior",92,91,88,90,58,86,84,36,24,73,76,83,85,89,87,30,43,31,91,87,39,40,91,29,53,85,82,32,19,31,37,47,31,34,37,49,28,26,0,85,87,90,81,35,41,29,37,12,29,25,28,87,50,37,"Big Ten","Wisconsin","Wide Receiver","Launch Ratings"
1623,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Will","Kacmarek",78,100,82,"St. Louis","Missouri","Previous",89,"Senior",79,67,74,88,81,84,53,64,31,63,75,85,84,65,65,75,75,70,93,48,25,47,80,65,24,71,82,68,64,55,48,45,68,16,66,75,68,70,0,75,79,77,48,66,63,24,15,36,43,28,31,91,67,21,"Big Ten","Ohio State","Tight End","Launch Ratings"
23504,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/58.png?im=FaceCrop,padding=0.7","Will","Whitson",77,135,82,"Cincinnati","Ohio","Previous",43,"Senior",79,65,76,92,85,90,27,85,35,31,52,27,35,55,27,79,81,83,86,27,46,33,33,57,55,29,82,60,48,42,48,88,84,35,86,52,50,58,0,30,30,70,27,29,84,27,34,23,37,33,26,88,27,57,"SEC","Mississippi State","Defensive Tackle","Launch Ratings"
21358,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/16.png?im=FaceCrop,padding=0.7","Will","Ferrin",75,15,82,"Kaysville","Utah","Previous",44,"Senior",75,62,65,84,48,72,49,31,31,47,53,26,48,63,41,27,46,27,90,33,90,91,29,25,28,32,82,37,49,48,30,42,46,45,26,21,29,38,0,34,41,71,35,45,36,32,18,18,28,18,46,84,38,49,"Big 12","BYU","Kicker","Launch Ratings"
18629,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/117.png?im=FaceCrop,padding=0.7","Xavier","Brown",70,38,82,"Lexington","Kentucky","Eligible",20,"Senior",92,86,86,89,72,78,82,40,29,79,87,65,69,86,62,36,48,47,91,83,48,47,78,37,33,64,82,56,51,57,27,41,35,32,43,47,35,35,0,67,71,90,78,60,44,12,31,24,21,35,48,86,73,34,"ACC","Virginia","Halfback","Launch Ratings"
20557,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/9.png?im=FaceCrop,padding=0.7","Xavier","Chaplin",79,178,82,"Beaufort","South Carolina","Eligible",65,"Junior",73,64,70,87,92,87,46,56,29,45,52,29,33,55,29,37,63,87,94,33,43,39,27,85,29,29,82,83,80,86,31,43,60,33,33,84,86,82,0,29,30,65,30,44,44,29,16,25,22,27,48,94,43,33,"SEC","Auburn","Left Tackle","Launch Ratings"
18263,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Xzavier","McLeod",76,155,82,"Camden","South Carolina","Previous",94,"Sophomore",76,67,70,75,91,81,29,83,47,44,57,29,39,50,29,70,86,81,98,29,33,41,33,58,38,29,82,66,61,53,29,82,88,33,80,57,56,66,0,29,29,69,29,41,84,19,11,29,13,16,41,86,44,26,"SEC","Georgia","Defensive Tackle","Launch Ratings"
701,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/75.png?im=FaceCrop,padding=0.7","Zach","Barlev",76,158,82,"Bolingbrook","Illinois","Previous",64,"Senior",72,56,67,85,89,91,37,47,33,38,53,27,31,54,26,29,54,88,87,31,45,47,31,85,25,28,82,82,77,87,25,32,50,28,31,81,79,83,0,27,31,63,28,39,37,13,16,35,15,12,41,93,38,31,"Sun Belt","Old Dominion","Left Tackle","Launch Ratings"
951,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Zion","Branch",74,50,82,"Las Vegas","Nevada","Previous",2,"Junior",92,85,93,91,75,78,60,67,47,46,72,47,71,85,31,44,85,61,89,55,32,47,60,58,69,32,82,67,60,58,29,81,48,67,87,55,56,69,0,34,49,90,56,64,78,17,17,35,10,13,47,93,61,77,"SEC","Georgia","Strong Safety","Launch Ratings"
19342,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/106.png?im=FaceCrop,padding=0.7","Zylan","Perry",71,47,82,"Franklin","Louisiana","Previous",3,"Junior",88,85,87,88,73,83,83,36,44,83,82,65,71,84,52,31,38,52,92,86,34,32,73,46,40,61,82,57,53,51,36,42,30,32,38,45,44,44,0,67,68,87,83,74,34,34,33,35,37,43,32,87,72,43,"Sun Belt","Louisiana","Halfback","Launch Ratings"
22632,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/133.png?im=FaceCrop,padding=0.7","A'Khori","Jones",70,45,81,"Macon","Georgia","Eligible",29,"Senior",92,87,85,90,67,82,62,56,42,40,35,33,65,86,38,33,79,54,88,60,35,27,53,57,86,36,81,62,61,56,42,80,45,74,83,50,53,65,0,36,34,88,59,51,72,26,34,13,27,23,41,94,49,77,"Conference USA","Liberty","Cornerback","Launch Ratings"
20303,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/115.png?im=FaceCrop,padding=0.7","A'Marion","Peterson",72,57,81,"Wichita Falls","Texas","Previous",29,"Sophomore",93,86,89,87,75,79,83,51,45,79,81,61,61,84,54,39,62,49,84,82,34,26,68,41,39,54,81,52,54,51,33,36,43,29,59,47,34,38,0,60,53,90,76,78,56,19,35,21,14,27,47,90,84,32,"The American","UTSA","Halfback","Launch Ratings"
399,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Adrian","Maddox",73,40,81,"Conyers","Georgia","Eligible",14,"Senior",91,89,89,85,73,80,48,66,31,64,68,55,66,85,27,31,83,63,91,72,31,37,65,55,76,28,81,64,64,53,33,83,35,81,82,49,56,67,0,26,61,89,65,62,68,23,27,35,34,34,30,87,58,82,"SEC","Georgia","Free Safety","Launch Ratings"
23674,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/49.png?im=FaceCrop,padding=0.7","Adrian","Norton",72,30,81,"Huber Heights","Ohio","Eligible",13,"Junior",92,90,88,86,56,85,79,48,40,70,71,84,86,88,87,40,55,33,82,83,46,33,70,37,40,83,81,36,18,26,42,42,38,32,53,57,26,27,0,80,88,89,74,35,51,28,27,10,32,25,29,78,40,44,"Sun Belt","Marshall","Wide Receiver","Launch Ratings"
10036,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/55.png?im=FaceCrop,padding=0.7","Aidan","Chiles",75,57,81,"Long Beach","California","Eligible",2,"Junior",88,85,87,90,61,80,80,41,78,73,68,33,43,84,24,42,48,36,90,81,41,28,23,37,50,23,81,41,33,35,68,31,43,44,44,40,33,34,0,33,37,86,76,55,43,79,82,83,84,92,73,88,59,31,"Big Ten","Michigan State","Quarterback","Launch Ratings"
19284,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/116.png?im=FaceCrop,padding=0.7","AJ","Newberry",73,37,81,"Grand Prairie","Texas","Eligible",23,"Junior",91,86,89,86,69,75,85,44,47,79,84,66,74,86,61,38,52,45,89,84,30,29,70,36,42,65,81,53,50,54,45,56,38,39,52,46,34,34,0,72,73,88,79,66,48,23,19,34,13,21,31,88,68,44,"SEC","Vanderbilt","Halfback","Launch Ratings"
641,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/45.png?im=FaceCrop,padding=0.7","Alex","Wollschlaeger",79,151,81,"Aurora","Illinois","Previous",50,"Senior",77,57,74,90,87,91,35,41,24,33,56,35,35,53,38,46,38,87,91,40,41,24,37,87,37,39,81,84,81,86,38,40,38,38,42,81,84,78,0,35,41,65,37,31,32,11,14,36,15,10,25,84,32,38,"SEC","Kentucky","Right Tackle","Launch Ratings"
21486,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Alex","January",77,148,81,"Duncanville","Texas","Eligible",97,"Sophomore",73,62,66,84,93,80,24,85,47,46,58,24,26,51,24,59,83,78,93,24,25,30,37,58,22,24,81,70,64,56,40,79,84,18,79,58,55,67,0,24,24,62,24,43,83,12,35,36,33,27,41,88,47,16,"SEC","Texas","Defensive Tackle","Launch Ratings"
3014,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/112.png?im=FaceCrop,padding=0.7","Aliki","Vimahi",76,136,81,"Kahuku","Hawaii","Previous",95,"Senior",72,61,72,92,93,83,22,77,32,45,57,26,27,41,26,68,85,80,96,22,30,36,34,60,33,23,81,70,62,54,26,69,84,24,86,58,56,66,0,26,24,59,26,44,90,23,13,29,11,18,39,94,47,26,"Big 12","Utah","Defensive Tackle","Launch Ratings"
1573,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/13.png?im=FaceCrop,padding=0.7","Amari","Jackson",71,28,81,"McDonough","Georgia","Eligible",24,"Senior",93,90,93,88,59,85,61,51,37,39,59,43,70,89,42,36,69,53,83,76,34,46,64,55,79,40,81,65,60,51,37,86,47,78,75,57,55,65,0,40,45,90,72,48,56,34,28,28,20,37,48,89,38,81,"ACC","Boston College","Cornerback","Launch Ratings"
1175,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/105.png?im=FaceCrop,padding=0.7","Andre","Jordan Jr.",73,23,81,"Federal Way","Washington","Previous",2,"Sophomore",93,90,92,89,57,75,61,47,38,37,56,41,68,89,37,38,56,46,82,69,37,37,59,54,82,37,81,64,60,53,44,76,30,82,77,55,52,61,0,35,40,92,67,41,57,25,18,26,15,23,28,82,37,85,"Big Ten","UCLA","Cornerback","Launch Ratings"
142,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/24.png?im=FaceCrop,padding=0.7","Andrel","Anthony",74,15,81,"Lansing","Michigan","Eligible",1,"Senior",94,91,95,88,64,78,77,48,35,70,64,84,81,90,83,39,59,36,75,85,47,47,91,33,62,87,81,39,26,37,41,47,40,34,56,62,30,30,0,89,86,94,76,42,52,14,12,27,25,38,37,82,39,27,"ACC","Duke","Wide Receiver","Launch Ratings"
20283,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/131.png?im=FaceCrop,padding=0.7","Andrew","Paul",71,55,81,"Dallas","Texas","Previous",0,"Junior",89,85,87,85,78,81,77,53,35,81,82,54,62,84,55,42,62,52,85,86,37,40,71,46,40,56,81,59,53,56,27,49,42,36,57,51,40,40,0,62,49,87,79,81,58,19,32,21,37,38,45,79,85,45,"Conference USA","Jacksonville State","Halfback","Launch Ratings"
25736,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Aneyas","Williams",70,45,81,"Hannibal","Missouri","Eligible",22,"Sophomore",92,86,85,87,75,73,80,48,32,76,84,71,75,86,57,42,57,56,90,84,38,36,82,49,43,67,81,55,54,53,41,46,43,34,57,52,52,53,0,72,67,89,82,77,53,13,12,26,14,16,28,87,75,41,"Independent","Notre Dame","Halfback","Launch Ratings"
10738,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/110.png?im=FaceCrop,padding=0.7","Anthony","Lucas",77,114,81,"Scottsdale","Arizona","Eligible",6,"Senior",83,75,83,82,83,85,44,81,43,45,56,40,49,67,40,75,84,78,81,40,29,42,41,51,34,40,81,66,59,51,25,84,85,37,84,57,54,65,0,40,40,77,40,47,85,27,17,33,23,10,32,83,45,54,"Big Ten","USC","Left Edge","Launch Ratings"
33067,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/83.png?im=FaceCrop,padding=0.7","Antwan","Raymond",71,45,81,"Montreal","Non-US","Eligible",3,"Sophomore",92,89,85,89,70,72,82,31,24,80,81,50,62,87,49,40,46,26,87,86,42,31,81,26,47,53,81,43,45,43,46,61,31,35,44,32,39,35,0,58,48,88,82,71,39,13,21,24,11,28,47,91,75,27,"Big Ten","Rutgers","Halfback","Launch Ratings"
18941,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/130.png?im=FaceCrop,padding=0.7","Ayden","Jackson",70,25,81,"Atlanta","Georgia","Eligible",5,"Junior",91,87,89,91,56,85,48,57,46,45,64,29,55,86,24,27,73,49,89,56,45,39,57,56,75,27,81,66,50,41,42,86,47,68,81,60,54,67,0,24,23,89,56,56,79,27,20,14,22,28,35,90,43,80,"Sun Belt","Georgia Southern","Cornerback","Launch Ratings"
23386,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/39.png?im=FaceCrop,padding=0.7","Beau","Stephens",77,155,81,"Blue Springs","Missouri","Previous",70,"Senior",69,63,69,84,92,91,45,53,43,42,54,28,28,53,31,34,59,89,85,28,43,48,32,84,27,30,81,79,75,84,39,37,57,29,33,77,75,79,0,27,30,60,30,44,42,24,18,15,18,20,34,92,42,26,"Big Ten","Iowa","Left Guard","Launch Ratings"
5601,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/97.png?im=FaceCrop,padding=0.7","Beau","Sparks",71,15,81,"El Paso","Texas","Eligible",11,"Junior",92,91,87,90,53,84,83,46,26,72,68,82,85,89,77,39,53,29,84,84,40,39,89,26,55,87,81,33,19,28,34,63,36,45,47,39,27,24,0,88,85,93,78,25,47,19,34,11,20,12,30,87,39,52,"Sun Belt","Texas State","Wide Receiver","Launch Ratings"
8057,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/66.png?im=FaceCrop,padding=0.7","Benjamin","Hall",71,75,81,"Kennesaw","Georgia","Previous",28,"Sophomore",88,79,80,82,81,76,83,56,29,79,86,66,65,78,50,47,72,59,91,79,40,39,63,52,28,56,81,67,63,62,42,32,46,28,63,55,41,45,0,63,64,87,73,88,63,29,10,35,23,14,46,91,87,36,"ACC","North Carolina","Halfback","Launch Ratings"
148,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Bert","Auburn",72,24,81,"Flower Mound","Texas","Eligible",45,"Senior",71,72,62,84,49,71,35,43,42,33,57,34,37,62,35,35,31,25,85,26,88,93,41,33,31,39,81,46,29,45,45,45,39,32,27,29,36,45,0,33,24,75,45,25,40,29,19,38,13,17,45,85,33,39,"ACC","Miami","Kicker","Launch Ratings"
6888,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/125.png?im=FaceCrop,padding=0.7","Billy","Edwards Jr.",75,68,81,"Springfield","Virginia","Previous",9,"Senior",84,81,80,92,71,87,82,32,74,70,78,25,30,81,24,33,55,49,91,74,37,40,27,50,32,22,81,60,41,46,77,34,34,30,31,55,45,42,0,22,24,83,66,62,57,77,83,86,83,89,75,93,69,30,"Big Ten","Wisconsin","Quarterback","Launch Ratings"
7411,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/58.png?im=FaceCrop,padding=0.7","Blake","Shapen",73,50,81,"Shreveport","Louisiana","Previous",2,"Senior",85,81,78,93,67,92,80,21,41,69,66,25,52,80,27,22,34,42,82,77,34,32,30,43,36,27,81,50,40,41,82,62,24,41,26,45,38,36,0,28,26,80,75,53,34,74,84,90,79,87,73,84,53,58,"SEC","Mississippi State","Quarterback","Launch Ratings"
6087,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/9.png?im=FaceCrop,padding=0.7","Brandon","Frazier",79,100,81,"McKinney","Texas","Eligible",87,"Senior",75,67,76,93,87,83,58,59,47,69,77,81,77,64,55,62,73,76,91,50,31,28,61,79,24,60,81,65,64,68,38,29,58,13,61,76,60,70,0,66,82,70,47,75,63,16,16,24,30,23,34,88,71,31,"SEC","Auburn","Tight End","Launch Ratings"
20321,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Brice","Pollock",72,35,81,"Snellville","Georgia","Eligible",14,"Junior",93,89,92,87,66,80,55,54,44,46,54,45,60,88,36,42,71,55,85,66,41,32,60,57,82,34,81,65,60,54,41,81,46,78,78,61,55,67,0,34,43,90,67,53,67,36,14,28,19,18,38,87,44,84,"Big 12","Texas Tech","Cornerback","Launch Ratings"
10731,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/116.png?im=FaceCrop,padding=0.7","Bryan","Longwell",73,67,81,"Nashville","Tennessee","Eligible",11,"Junior",88,80,87,89,80,88,35,77,43,44,49,32,67,78,32,53,85,72,92,35,42,40,41,48,57,32,81,61,54,48,36,86,69,45,87,52,47,61,0,29,32,82,35,46,86,14,17,13,33,20,32,86,54,61,"SEC","Vanderbilt","Will Backer","Launch Ratings"
8954,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/7.png?im=FaceCrop,padding=0.7","Bryan","Whitehead",73,105,81,"Bartlett","Tennessee","Previous",4,"Senior",84,74,78,85,79,86,33,74,26,32,55,33,37,69,35,74,89,63,91,35,25,35,35,37,38,33,81,44,34,32,35,87,85,46,87,31,37,42,0,34,33,77,35,34,87,34,37,23,25,24,42,90,34,51,"Sun Belt","Arkansas State","Right Edge","Launch Ratings"
9440,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/110.png?im=FaceCrop,padding=0.7","Bryan","Jackson",72,72,81,"McKinney","Texas","Eligible",21,"Sophomore",89,83,85,86,81,75,77,53,44,79,86,57,56,82,45,48,72,63,92,76,38,38,66,51,27,47,81,64,56,66,35,39,46,31,65,55,40,45,0,54,53,86,75,87,63,24,34,27,33,17,29,92,88,25,"Big Ten","USC","Halfback","Launch Ratings"
24828,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/54.png?im=FaceCrop,padding=0.7","Bryce","Underwood",76,48,81,"Detroit","Michigan","Eligible",19,"Freshman",91,88,87,84,63,65,82,36,82,75,74,57,66,87,44,34,44,43,95,87,30,31,45,42,45,46,81,42,36,35,74,54,30,42,47,45,41,39,0,52,67,87,82,64,40,84,83,82,85,96,69,87,65,44,"Big Ten","Michigan","Quarterback","Launch Ratings"
25513,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/116.png?im=FaceCrop,padding=0.7","Bryce","Henderson",80,160,81,"North Aurora","Illinois","Previous",55,"Senior",62,52,65,84,91,84,41,57,29,44,24,27,25,48,27,25,58,91,89,27,22,21,15,73,26,26,81,79,72,84,46,41,61,28,30,84,82,85,0,28,25,55,25,42,45,12,24,23,33,19,27,90,42,26,"SEC","Vanderbilt","Right Tackle","Launch Ratings"
22893,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/115.png?im=FaceCrop,padding=0.7","Bryson","Donnell",70,55,81,"Tyler","Texas","Previous",22,"Junior",87,81,84,86,81,84,81,50,42,78,83,60,63,79,41,44,65,55,85,81,48,42,74,45,37,47,81,62,58,61,47,48,44,35,60,53,39,42,0,56,59,85,75,82,60,24,18,34,31,34,44,87,85,42,"The American","UTSA","Halfback","Launch Ratings"
3522,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Caden","Curry",75,100,81,"Greenwood","Indiana","Eligible",92,"Senior",86,77,80,78,82,82,36,86,39,36,56,39,42,68,39,80,82,69,85,39,30,36,42,40,34,39,81,50,45,41,28,81,85,37,82,40,39,49,0,39,39,75,39,39,84,12,13,31,21,19,35,82,35,47,"Big Ten","Ohio State","Left Edge","Launch Ratings"
18559,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/126.png?im=FaceCrop,padding=0.7","Caden","Barnett",77,160,81,"Justin","Texas","Previous",72,"Senior",72,57,70,82,92,86,44,55,37,45,54,29,27,54,32,34,61,89,85,27,30,45,28,87,27,31,81,81,78,84,45,40,61,27,33,85,88,81,0,30,28,59,32,42,43,30,14,35,10,12,38,86,43,29,"Mountain West","Wyoming","Right Tackle","Launch Ratings"
644,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/118.png?im=FaceCrop,padding=0.7","Caleb","Woodson",75,70,81,"Haymarket","Virginia","Eligible",20,"Junior",89,79,84,92,75,86,37,74,27,36,56,55,66,75,38,72,85,75,92,61,32,30,49,57,62,40,81,51,52,51,27,87,63,60,87,56,53,63,0,37,52,86,55,54,87,27,24,14,20,22,38,84,48,67,"ACC","Virginia Tech","Will Backer","Launch Ratings"
23449,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Cam","Wallace",69,48,81,"Mount Vernon","Georgia","Previous",26,"Sophomore",95,93,89,83,70,73,73,43,45,77,75,66,70,92,49,33,49,46,89,84,27,41,95,40,33,53,81,53,47,54,38,50,34,36,44,47,32,35,0,67,69,92,79,65,44,30,30,11,19,36,39,92,74,33,"Big Ten","Penn State","Halfback","Launch Ratings"
8177,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Carson","Hinzman",77,140,81,"Spring Valley","Wisconsin","Previous",75,"Senior",78,66,75,86,87,88,37,50,30,38,57,40,39,58,35,44,54,87,88,38,39,34,30,85,34,37,81,83,80,85,45,38,49,38,40,81,83,79,0,40,38,65,36,38,42,26,24,11,29,38,29,89,38,34,"Big Ten","Ohio State","Center","Launch Ratings"
7451,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/132.png?im=FaceCrop,padding=0.7","Carter","Sweazie",74,168,81,"Ashburn","Virginia","Previous",52,"Junior",65,57,60,88,90,87,39,55,24,40,53,24,27,53,27,30,58,90,90,24,27,34,26,88,28,29,81,77,72,82,36,39,57,24,26,84,87,80,0,27,25,56,26,42,39,27,23,28,37,10,26,86,43,28,"Sun Belt","James Madison","Left Guard","Launch Ratings"
1046,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/92.png?im=FaceCrop,padding=0.7","Channing","Canada",73,25,81,"Boutte","Louisiana","Eligible",7,"Senior",93,91,91,90,62,83,68,59,45,44,65,49,71,88,41,46,76,53,85,80,31,35,68,56,74,43,81,68,62,55,28,81,47,77,83,60,54,68,0,44,47,91,76,57,73,19,17,37,11,19,38,92,43,79,"Big 12","TCU","Cornerback","Launch Ratings"
33763,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","CharMar","Brown",71,58,81,"Omaha","Nebraska","Eligible",24,"Junior",91,87,86,89,77,76,80,49,55,79,83,66,64,85,46,40,56,58,91,81,25,24,85,53,51,60,81,58,59,57,27,58,41,40,56,47,43,45,0,65,64,88,79,81,52,33,35,34,34,35,34,92,85,52,"ACC","Miami","Halfback","Launch Ratings"
31281,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Chauncey","Bowens",71,65,81,"Port St. Lucie","Florida","Previous",33,"Freshman",91,85,89,83,78,75,77,49,43,81,83,55,58,84,41,40,61,48,90,82,39,34,66,40,35,46,81,60,53,56,42,39,40,31,58,52,39,42,0,53,50,87,76,87,54,23,34,36,15,21,25,87,87,43,"SEC","Georgia","Halfback","Launch Ratings"
9752,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/9.png?im=FaceCrop,padding=0.7","Chris","Murray",75,85,81,"Wichita Falls","Texas","Previous",3,"Senior",88,80,85,82,82,83,39,75,42,36,55,46,55,72,43,73,84,74,86,44,26,42,43,46,57,44,81,47,45,42,37,84,85,45,83,41,39,49,0,46,47,82,47,39,81,29,25,29,18,24,42,84,39,64,"SEC","Auburn","Right Edge","Launch Ratings"
6136,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/121.png?im=FaceCrop,padding=0.7","Christian","Hilborn",77,158,81,"Salt Lake City","Utah","Previous",61,"Senior",70,57,71,89,91,91,42,52,41,39,53,32,33,54,35,35,58,91,92,33,37,42,33,83,32,34,81,84,79,89,31,35,56,33,34,78,80,76,0,33,30,58,31,42,40,32,12,29,31,16,34,87,40,35,"Pac-12","Washington State","Right Tackle","Launch Ratings"
7428,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/51.png?im=FaceCrop,padding=0.7","CJ","Smith",74,34,81,"Apopka","Florida","Previous",1,"Junior",97,91,94,91,62,77,80,47,37,74,69,79,84,88,83,39,58,36,74,85,30,30,69,31,55,81,81,30,21,32,48,48,41,35,56,52,29,30,0,79,88,95,82,45,52,24,29,19,12,35,33,83,41,41,"The American","Memphis","Wide Receiver","Launch Ratings"
23020,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/54.png?im=FaceCrop,padding=0.7","CJ","Hester",71,35,81,"Cincinnati","Ohio","Eligible",33,"Sophomore",90,88,85,87,69,76,83,48,47,75,81,58,70,85,49,37,55,46,89,84,29,32,75,44,39,55,81,55,44,45,30,35,38,29,50,46,31,37,0,61,57,91,78,69,48,33,35,12,16,29,45,88,72,30,"Big Ten","Michigan","Halfback","Launch Ratings"
8588,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/34.png?im=FaceCrop,padding=0.7","Clayton","Powell-Lee",74,40,81,"Atlanta","Georgia","Eligible",5,"Senior",91,86,85,93,67,87,72,67,35,35,57,35,66,84,38,42,79,46,91,65,41,28,60,53,65,40,81,58,62,52,44,88,37,73,86,48,52,61,0,38,35,90,66,44,70,13,37,29,17,27,38,87,45,73,"ACC","Georgia Tech","Free Safety","Launch Ratings"
9242,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/111.png?im=FaceCrop,padding=0.7","Cole","Best",76,155,81,"Winter Park","Florida","Previous",72,"Senior",65,56,68,90,87,84,29,45,38,38,55,27,30,54,33,37,50,88,84,33,26,40,43,83,27,29,81,85,83,87,41,32,48,30,28,79,81,77,0,27,33,58,27,38,40,19,35,14,10,28,26,84,37,28,"The American","USF","Center","Launch Ratings"
21741,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/6.png?im=FaceCrop,padding=0.7","Corey","Robinson II",77,147,81,"Roswell","Georgia","Previous",51,"Senior",71,71,73,88,85,81,38,49,30,37,51,33,33,59,35,42,48,91,88,34,26,37,35,75,32,34,81,87,83,89,34,42,46,32,32,70,73,68,0,37,32,59,33,37,38,11,22,19,36,16,48,91,38,35,"SEC","Arkansas","Left Tackle","Launch Ratings"
21802,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Corey","Smith",70,33,81,"Milwaukee","Wisconsin","Previous",24,"Freshman",96,94,88,84,60,61,72,33,38,73,81,60,67,93,59,26,31,39,87,85,46,43,91,33,55,58,81,50,51,47,41,62,24,42,29,42,31,31,0,73,68,93,82,57,28,27,19,18,28,10,36,80,59,52,"Big Ten","Penn State","Halfback","Launch Ratings"
8106,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/21.png?im=FaceCrop,padding=0.7","Dallan","Hayden",70,45,81,"Memphis","Tennessee","Previous",7,"Junior",94,88,90,88,67,84,75,46,32,75,76,65,75,87,61,37,54,52,91,83,46,30,84,48,51,66,81,57,53,55,35,61,41,41,52,55,56,54,0,72,70,92,76,63,48,33,33,18,17,18,37,84,66,52,"Big 12","Colorado","Halfback","Launch Ratings"
29209,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/64.png?im=FaceCrop,padding=0.7","Damon","Bankston",70,26,81,"Katy","Texas","Previous",1,"Senior",90,86,83,89,70,76,85,57,32,82,84,51,68,83,37,47,71,56,88,81,24,33,63,50,26,45,81,60,58,60,26,65,47,27,68,52,38,41,0,51,48,88,79,85,62,12,16,20,12,11,32,89,85,35,"Mountain West","New Mexico","Halfback","Launch Ratings"
1645,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/66.png?im=FaceCrop,padding=0.7","Daniel","King",77,180,81,"Cairo","Georgia","Previous",52,"Senior",60,47,61,84,94,92,46,61,25,48,50,24,24,43,24,24,69,93,92,24,47,27,29,78,24,24,81,84,79,87,47,38,64,24,24,72,69,76,0,24,25,52,27,49,46,36,23,13,28,18,26,89,47,27,"ACC","North Carolina","Right Guard","Launch Ratings"
10744,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/30.png?im=FaceCrop,padding=0.7","Daniel","Lyons",76,142,81,"Miami","Florida","Previous",5,"Junior",81,69,76,85,86,81,30,79,29,37,51,31,35,61,28,75,82,79,92,27,43,37,31,55,34,28,81,67,61,56,39,81,87,27,84,54,54,61,0,28,29,72,27,39,85,19,35,17,12,36,29,95,44,27,"ACC","Florida State","Defensive Tackle","Launch Ratings"
22248,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/91.png?im=FaceCrop,padding=0.7","Darrell","Gill Jr.",75,13,81,"Atascocita","Texas","Eligible",15,"Junior",92,88,89,88,54,81,75,35,47,76,55,84,86,85,85,27,37,28,89,82,28,26,58,30,30,85,81,37,27,36,35,34,29,29,33,52,21,21,0,83,88,88,78,49,33,19,20,12,32,32,43,85,50,38,"ACC","Syracuse","Wide Receiver","Launch Ratings"
3558,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/78.png?im=FaceCrop,padding=0.7","Darrius","Clemons",75,54,81,"Portland","Oregon","Eligible",4,"Senior",89,87,89,87,78,84,81,55,31,76,73,86,84,84,77,48,71,47,91,82,27,43,78,42,40,84,81,40,26,37,48,42,46,32,66,67,43,42,0,83,87,87,78,73,63,23,26,19,33,21,25,93,73,42,"Pac-12","Oregon State","Wide Receiver","Launch Ratings"
19345,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/125.png?im=FaceCrop,padding=0.7","Darryl","Peterson III",73,100,81,"Akron","Ohio","Previous",17,"Senior",89,77,84,84,79,86,32,84,36,41,57,41,41,69,32,67,87,76,92,32,36,36,39,59,60,32,81,67,61,54,36,86,79,26,85,56,56,66,0,32,32,80,32,41,80,24,24,26,24,26,36,90,41,73,"Big Ten","Wisconsin","Sam Backer","Launch Ratings"
9787,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/34.png?im=FaceCrop,padding=0.7","Dean","Patterson",74,40,81,"Lutz","Florida","Previous",11,"Senior",88,87,84,88,76,88,79,52,36,69,71,86,86,83,78,45,70,38,91,80,27,48,68,35,29,84,81,36,29,38,32,52,43,36,67,61,38,39,0,87,88,85,78,70,62,23,32,30,21,20,24,91,68,58,"ACC","Georgia Tech","Wide Receiver","Launch Ratings"
1744,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/30.png?im=FaceCrop,padding=0.7","Deante","McCray",76,127,81,"Jacksonville","Florida","Previous",8,"Junior",78,70,72,78,83,86,42,77,48,41,52,29,28,59,29,77,86,69,88,29,31,36,34,40,51,27,81,54,50,44,33,85,85,25,89,46,47,56,0,27,26,70,27,39,87,26,27,23,14,38,39,92,40,59,"ACC","Florida State","Defensive Tackle","Launch Ratings"
19772,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/110.png?im=FaceCrop,padding=0.7","DeCarlos","Nicholson",75,35,81,"Petal","Mississippi","Previous",17,"Senior",89,86,85,89,67,85,47,53,43,45,66,42,70,87,25,48,69,49,94,58,46,34,56,56,78,30,81,64,62,55,37,83,50,87,82,61,56,69,0,27,33,88,58,53,75,32,28,37,26,10,47,87,44,82,"Big Ten","USC","Cornerback","Launch Ratings"
7685,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/109.png?im=FaceCrop,padding=0.7","Denver","Harris",72,30,81,"Houston","Texas","Eligible",2,"Senior",95,92,94,91,65,77,73,50,42,44,63,51,68,90,48,48,74,55,85,84,39,32,70,59,80,45,81,64,61,53,32,76,47,81,80,61,54,67,0,49,47,93,77,57,62,35,28,27,25,30,39,86,44,78,"Mountain West","UNLV","Cornerback","Launch Ratings"
23626,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/86.png?im=FaceCrop,padding=0.7","Derrick","McFall",71,23,81,"Tyler","Texas","Previous",0,"Freshman",94,91,87,86,57,73,84,35,47,72,72,72,74,89,70,25,31,43,85,84,41,34,87,33,62,68,81,52,44,49,48,51,29,36,29,45,31,34,0,74,76,91,79,52,31,10,33,28,11,31,40,76,48,39,"ACC","SMU","Halfback","Launch Ratings"
1110,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/80.png?im=FaceCrop,padding=0.7","Derrick","Davis Jr.",72,50,81,"Pittsburgh","Pennsylvania","Previous",34,"Senior",92,86,85,86,77,79,83,50,39,75,82,59,70,88,49,44,67,47,82,83,43,41,77,38,45,53,81,57,48,51,37,54,42,38,59,46,31,36,0,56,59,89,75,76,56,20,13,27,21,11,33,86,76,62,"ACC","Pittsburgh","Halfback","Launch Ratings"
10173,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/39.png?im=FaceCrop,padding=0.7","Deshaun","Lee",70,29,81,"Belleville","Michigan","Previous",8,"Junior",92,90,86,88,63,84,60,53,39,39,60,41,62,89,38,33,67,51,81,65,31,28,60,58,74,38,81,66,62,53,24,85,46,80,86,57,55,64,0,36,39,89,64,50,71,20,26,22,11,34,35,83,40,79,"Big Ten","Iowa","Cornerback","Launch Ratings"
20837,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/117.png?im=FaceCrop,padding=0.7","Devin","Neal",72,54,81,"Lexington","Kentucky","Previous",27,"Senior",89,85,87,86,75,85,50,68,49,47,72,55,77,84,26,34,86,62,91,48,26,30,58,57,67,27,81,57,56,51,48,85,51,72,86,57,56,68,0,27,62,87,49,67,73,21,31,20,26,30,46,93,63,74,"ACC","Virginia","Free Safety","Launch Ratings"
28868,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/121.png?im=FaceCrop,padding=0.7","Devin","Ellison",74,32,81,"Jasper","Georgia","Previous",6,"Junior",93,90,91,87,69,82,79,45,34,73,72,83,85,87,84,38,51,34,90,84,28,34,82,31,40,82,81,33,16,26,35,64,37,33,48,45,29,29,0,79,88,89,78,64,59,20,30,11,31,38,32,87,60,48,"Pac-12","Washington State","Wide Receiver","Launch Ratings"
24914,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Devin","Sanchez",74,25,81,"Houston","Texas","Eligible",4,"Freshman",95,95,93,85,58,70,73,52,44,74,62,65,73,93,50,42,63,55,91,87,32,32,82,42,83,54,81,45,49,45,28,75,35,74,77,50,50,50,0,52,77,94,83,52,58,30,33,29,30,13,24,79,42,81,"Big Ten","Ohio State","Cornerback","Launch Ratings"
19563,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/87.png?im=FaceCrop,padding=0.7","Devin","Voisin",70,27,81,"Crestview","Florida","Previous",1,"Senior",89,87,87,88,66,90,84,47,41,73,69,85,87,86,79,38,55,35,79,85,37,34,77,37,28,86,81,35,22,31,39,30,39,26,48,55,30,30,0,87,88,86,83,35,48,28,34,27,15,22,26,85,48,28,"Sun Belt","South Alabama","Wide Receiver","Launch Ratings"
20915,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Dezz","Ricks",73,35,81,"Norfolk","Virginia","Eligible",2,"Junior",95,90,91,87,53,78,63,50,31,33,58,45,70,88,40,47,67,53,81,71,40,39,61,55,81,39,81,62,59,51,26,75,41,81,77,53,51,59,0,41,48,92,68,40,55,26,28,33,33,30,29,82,32,80,"SEC","Texas A&M","Cornerback","Launch Ratings"
23071,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","Dijon","Johnson",73,36,81,"Tampa","Florida","Eligible",27,"Junior",93,89,92,92,73,82,57,63,48,66,53,49,69,89,37,45,79,57,89,75,29,37,60,56,77,34,81,69,64,54,48,81,39,87,80,61,56,70,0,34,47,90,68,57,65,35,29,26,16,29,48,84,47,80,"SEC","Florida","Cornerback","Launch Ratings"
7070,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","DJ","Hicks",77,150,81,"Katy","Texas","Eligible",5,"Junior",82,65,76,86,90,76,30,88,39,40,57,30,39,51,30,77,84,74,89,30,26,30,36,57,43,30,81,67,62,52,33,75,85,37,86,59,55,68,0,30,30,67,30,40,76,34,30,34,13,37,34,92,41,28,"SEC","Texas A&M","Defensive Tackle","Launch Ratings"
9735,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/64.png?im=FaceCrop,padding=0.7","DJ","McKinney",68,22,81,"Tulsa","Oklahoma","Previous",4,"Sophomore",93,89,87,90,62,74,80,33,36,76,74,65,67,88,63,30,33,30,91,85,43,43,76,32,44,65,81,47,44,49,33,61,28,41,35,42,28,30,0,67,71,91,84,48,34,36,13,25,19,35,36,87,51,40,"Mountain West","New Mexico","Halfback","Launch Ratings"
18052,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/132.png?im=FaceCrop,padding=0.7","DJ","Barksdale",69,21,81,"Rock Hill","South Carolina","Eligible",32,"Junior",93,85,85,93,57,83,49,48,34,34,55,23,65,84,27,22,69,45,86,45,38,31,49,52,74,26,81,59,61,53,36,84,32,77,79,49,54,62,0,26,27,90,46,44,61,13,31,31,12,17,42,93,40,87,"Sun Belt","James Madison","Cornerback","Launch Ratings"
691,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/94.png?im=FaceCrop,padding=0.7","Dominic","Bailey",75,132,81,"Salisbury","Maryland","Previous",90,"Senior",82,75,79,80,85,79,47,83,41,45,58,33,42,62,33,70,86,79,88,33,25,42,42,53,29,33,81,64,56,52,37,78,86,31,82,56,54,63,0,33,33,74,33,43,82,15,16,29,34,32,33,86,44,41,"SEC","Tennessee","Left Edge","Launch Ratings"
6924,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/59.png?im=FaceCrop,padding=0.7","Dominick","Giudice",76,152,81,"Freehold","New Jersey","Previous",56,"Senior",77,70,72,93,85,85,30,66,33,30,51,32,36,56,35,65,65,87,80,36,26,24,34,79,37,33,81,84,81,87,47,29,65,33,55,77,82,73,0,35,37,65,35,32,60,10,16,14,35,32,38,90,33,33,"SEC","Missouri","Center","Launch Ratings"
9372,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","Donovan","Green",76,90,81,"Dickinson","Texas","Previous",88,"Junior",87,84,87,86,70,74,74,50,41,72,71,81,83,79,68,49,72,70,82,78,40,27,72,66,54,72,81,59,58,60,46,55,46,32,49,65,62,57,0,79,84,83,70,75,50,24,23,32,42,33,47,85,73,53,"SEC","LSU","Tight End","Launch Ratings"
21454,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Donovan","Hinish",74,117,81,"Pittsburgh","Pennsylvania","Previous",41,"Junior",83,73,77,85,82,82,29,78,48,34,53,30,37,57,28,75,85,75,93,28,48,42,32,57,35,32,81,66,59,53,29,84,87,25,91,54,53,61,0,29,30,76,31,36,86,23,37,24,14,18,45,82,35,36,"Independent","Notre Dame","Defensive Tackle","Launch Ratings"
21823,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Drew","Shelton",77,145,81,"Downington","Pennsylvania","Eligible",66,"Senior",77,74,74,83,85,88,37,48,37,35,54,39,41,60,36,45,49,84,89,36,42,44,41,83,40,36,81,81,83,79,26,41,46,36,38,80,87,77,0,40,36,65,36,35,35,21,24,19,36,18,40,85,36,35,"Big Ten","Penn State","Left Tackle","Launch Ratings"
22726,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","E'Maurion","Banks",77,140,81,"Wichita Falls","Texas","Previous",8,"Senior",73,66,69,78,88,86,45,84,32,47,51,29,29,54,28,65,85,86,99,25,25,36,41,43,22,25,81,65,59,54,32,84,83,16,78,56,53,68,0,27,29,67,27,46,85,12,19,25,36,14,42,89,48,19,"Big 12","Texas Tech","Defensive Tackle","Launch Ratings"
20270,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/110.png?im=FaceCrop,padding=0.7","Elijah","Paige",79,160,81,"Phoenix","Arizona","Previous",72,"Sophomore",75,71,73,90,89,82,37,47,39,35,52,35,33,56,29,34,46,88,91,34,48,48,34,87,31,30,81,83,78,87,34,39,46,33,35,84,86,82,0,35,33,65,34,36,37,34,36,24,23,13,42,94,38,33,"Big Ten","USC","Left Tackle","Launch Ratings"
20058,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/100.png?im=FaceCrop,padding=0.7","Elijah","Davis",75,104,81,"Wagener","South Carolina","Eligible",11,"Senior",82,74,79,79,83,81,43,83,25,40,57,35,42,66,35,69,79,73,94,35,28,36,43,45,33,35,81,60,55,48,37,82,87,38,77,50,50,61,0,35,35,73,35,40,85,19,23,15,15,17,26,87,44,43,"Sun Belt","Troy","Left Edge","Launch Ratings"
20810,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/89.png?im=FaceCrop,padding=0.7","Elijah","Metcalf",66,15,81,"Charlotte","North Carolina","Previous",9,"Senior",94,93,88,92,47,84,83,29,27,78,67,82,83,89,75,26,25,23,73,88,47,38,96,29,51,84,81,29,10,19,25,51,24,37,25,34,17,21,0,87,82,90,83,33,24,37,14,23,21,10,43,80,42,36,"Sun Belt","Southern Miss","Wide Receiver","Launch Ratings"
4001,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/127.png?im=FaceCrop,padding=0.7","Ethan","Johnson",71,35,81,"Huntersville","North Carolina","Eligible",2,"Senior",91,89,91,92,66,85,45,47,47,46,44,56,66,87,25,34,73,50,90,57,30,30,51,59,81,30,81,67,49,44,48,85,47,76,82,60,55,69,0,28,61,90,57,57,67,22,21,25,17,29,47,93,45,79,"Sun Belt","Appalachian State","Cornerback","Launch Ratings"
30839,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/92.png?im=FaceCrop,padding=0.7","Ethan","Craw",75,60,81,"Tasmania","Non-US","Eligible",31,"Senior",61,55,67,89,60,66,32,34,41,27,59,26,44,52,37,41,26,48,93,31,92,93,48,43,38,40,81,26,43,46,32,33,46,36,29,20,47,31,0,41,31,59,32,40,25,26,25,32,16,24,33,81,33,25,"Big 12","TCU","Punter","Launch Ratings"
8890,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/67.png?im=FaceCrop,padding=0.7","Fatafehi","Vailea II",73,132,81,"Oakland","California","Previous",15,"Senior",72,64,68,88,85,87,40,83,47,40,50,27,24,52,24,66,87,87,96,26,22,27,15,43,21,25,81,59,53,50,31,84,84,17,79,52,49,59,0,25,24,66,25,43,88,36,24,17,25,28,26,93,45,25,"The American","North Texas","Defensive Tackle","Launch Ratings"
1041,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/117.png?im=FaceCrop,padding=0.7","Fisher","Camac",79,88,81,"Gilbert","Arizona","Eligible",14,"Senior",87,77,81,87,76,89,35,79,27,35,55,31,33,70,30,77,85,81,88,53,43,37,34,49,33,30,81,46,33,33,26,90,89,38,88,34,39,44,0,29,29,81,51,63,76,17,27,12,17,35,39,82,67,38,"ACC","Virginia","Right Edge","Launch Ratings"
22350,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/104.png?im=FaceCrop,padding=0.7","Gaard","Memmelaar",76,155,81,"Middleton","Idaho","Previous",64,"Senior",78,56,75,87,88,87,36,45,39,34,55,38,38,54,35,41,47,84,82,37,36,29,35,80,36,39,81,84,85,83,33,34,46,35,39,75,80,70,0,39,40,62,34,35,36,28,28,36,22,26,36,84,37,34,"Big 12","UCF","Left Guard","Launch Ratings"
1177,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/42.png?im=FaceCrop,padding=0.7","Gabe","Ervin Jr.",72,60,81,"Buford","Georgia","Previous",25,"Senior",89,81,85,87,79,84,79,53,43,77,82,60,65,82,45,48,72,51,88,81,27,30,66,45,42,50,81,64,55,61,33,49,47,36,65,53,39,43,0,67,52,88,75,83,65,15,17,20,12,19,42,95,82,55,"Big 12","Kansas State","Halfback","Launch Ratings"
22797,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/40.png?im=FaceCrop,padding=0.7","Gabe","Burkle",78,95,81,"Cedar Rapids","Iowa","Previous",84,"Junior",82,75,80,88,84,83,56,64,31,70,66,81,85,70,59,67,63,71,92,57,31,49,49,67,29,65,81,68,65,61,30,36,62,18,64,71,66,64,0,75,82,77,51,74,68,11,37,21,36,12,47,91,73,41,"Big Ten","Iowa State","Tight End","Launch Ratings"
25270,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Girard","Pringle Jr.",70,22,81,"Tampa","Florida","Eligible",22,"Freshman",95,93,91,80,65,55,77,35,57,78,75,63,66,92,59,34,44,48,90,90,22,21,78,45,45,63,81,52,53,49,35,45,32,42,61,48,45,46,0,66,64,94,87,64,38,40,40,44,54,43,35,85,64,35,"ACC","Miami","Halfback","Launch Ratings"
4864,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/55.png?im=FaceCrop,padding=0.7","Grady","Kelly",74,136,81,"Navarre","Florida","Previous",16,"Senior",74,67,69,94,87,87,30,82,39,38,54,28,40,56,30,65,85,68,93,32,35,36,38,55,30,31,81,62,58,54,35,86,83,35,78,54,54,60,0,32,31,69,29,36,86,18,26,15,31,24,30,95,38,50,"Big Ten","Michigan State","Defensive Tackle","Launch Ratings"
4831,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","Grayson","Howard",76,72,81,"Jacksonville","Florida","Eligible",10,"Junior",87,83,87,87,73,82,57,78,38,36,60,50,70,78,42,70,87,82,81,55,30,25,47,58,67,41,81,49,45,40,45,82,73,39,86,40,44,48,0,42,41,82,57,37,89,17,19,36,13,37,40,85,37,72,"SEC","Florida","Mike Backer","Launch Ratings"
6308,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/97.png?im=FaceCrop,padding=0.7","Greg","Burrell",73,45,81,"Las Vegas","Nevada","Eligible",9,"Freshman",91,83,85,86,74,83,82,47,24,83,80,55,65,82,45,39,56,40,89,83,41,45,70,44,30,53,81,58,34,40,30,34,41,29,56,50,38,41,0,62,58,88,80,82,53,32,20,30,29,12,46,84,78,38,"Sun Belt","Texas State","Halfback","Launch Ratings"
19057,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/62.png?im=FaceCrop,padding=0.7","Henry","Lutovsky",78,160,81,"Crawfordsville","Iowa","Previous",59,"Senior",66,55,62,87,93,85,48,58,27,45,52,27,28,50,29,26,63,90,89,27,49,32,24,76,28,28,81,83,78,87,46,45,61,28,27,78,75,82,0,24,27,59,24,47,44,15,31,27,29,31,45,88,46,28,"Big Ten","Nebraska","Left Guard","Launch Ratings"
10121,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Hero","Kanu",77,139,81,"Geltendorf","Non-US","Previous",93,"Senior",76,65,74,88,91,85,26,81,29,44,57,26,33,53,26,66,86,78,95,26,40,31,33,58,34,26,81,68,60,57,29,83,86,29,81,57,55,68,0,26,26,66,26,45,78,30,25,31,28,26,27,93,44,22,"SEC","Texas","Defensive Tackle","Launch Ratings"
22041,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/38.png?im=FaceCrop,padding=0.7","Hosea","Wheeler",75,140,81,"Sacramento","California","Previous",0,"Senior",75,64,72,84,90,88,44,83,32,45,49,24,25,53,23,66,81,77,95,25,48,47,37,43,26,24,81,68,61,53,42,86,82,16,84,59,52,67,0,23,27,69,24,47,82,11,22,34,14,25,39,88,46,27,"Big Ten","Indiana","Defensive Tackle","Launch Ratings"
8557,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Ify","Obidegwu",73,35,81,"Baltimore","Maryland","Previous",7,"Freshman",95,93,92,88,65,73,67,55,44,70,64,46,72,89,42,46,73,53,88,78,34,28,64,58,75,40,81,67,62,52,24,77,45,83,82,59,55,68,0,40,46,92,75,54,67,22,21,33,19,26,40,87,43,84,"Big Ten","Oregon","Cornerback","Launch Ratings"
3987,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/103.png?im=FaceCrop,padding=0.7","Isaiah","Jacobs",70,60,81,"Tulsa","Oklahoma","Previous",3,"Senior",89,80,84,88,80,80,79,51,33,79,85,75,68,79,60,44,65,54,86,82,27,40,73,41,31,64,81,59,50,58,44,47,45,35,62,48,36,37,0,70,65,85,76,84,58,22,32,10,11,23,43,91,85,34,"The American","UAB","Halfback","Launch Ratings"
21797,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Isaiah","Sategna",70,22,81,"Austin","Texas","Previous",5,"Junior",96,93,97,95,56,85,80,39,34,66,66,80,84,93,79,32,38,35,79,83,47,35,95,32,51,82,81,34,22,30,38,69,30,45,38,34,25,25,0,84,85,95,82,33,33,25,12,21,25,21,43,82,38,64,"SEC","Oklahoma","Wide Receiver","Launch Ratings"
21633,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/51.png?im=FaceCrop,padding=0.7","Isheem","Young",70,60,81,"Philadelphia","Pennsylvania","Previous",11,"Senior",90,86,85,89,77,85,70,66,50,47,72,49,70,84,42,48,85,64,92,61,40,33,68,58,68,39,81,66,62,57,29,84,51,67,86,57,57,69,0,38,45,85,67,69,73,23,23,28,35,34,44,93,63,76,"The American","Memphis","Strong Safety","Launch Ratings"
23536,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","J'ven","Williams",77,156,81,"Reading","Pennsylvania","Previous",74,"Sophomore",71,70,71,86,99,71,50,63,43,48,51,33,35,57,34,34,70,87,86,30,33,38,31,74,29,31,81,82,84,82,42,49,68,33,32,76,88,83,0,31,29,59,31,49,47,31,11,22,11,12,32,88,49,29,"Big Ten","Penn State","Left Guard","Launch Ratings"
20201,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/45.png?im=FaceCrop,padding=0.7","Ja'Mori","Maclin",71,31,81,"Kirkwood","Missouri","Previous",9,"Senior",92,90,90,88,61,86,77,40,34,70,62,77,81,90,89,33,48,35,76,83,45,37,88,33,57,82,81,33,21,30,26,58,37,39,47,50,30,30,0,84,80,91,80,40,45,20,27,30,20,18,32,84,38,56,"SEC","Kentucky","Wide Receiver","Launch Ratings"
8761,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/47.png?im=FaceCrop,padding=0.7","Jacob","Stewart",77,70,81,"Woodland","California","Eligible",86,"Junior",86,80,83,98,70,85,72,44,73,69,73,83,85,76,66,42,15,44,80,63,25,33,53,45,41,75,81,57,49,51,64,43,38,24,41,62,55,57,0,81,87,84,59,66,40,66,68,74,70,73,57,92,63,45,"ACC","Louisville","Tight End","Launch Ratings"
4744,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Jaden","Harris",72,40,81,"Atlanta","Georgia","Previous",12,"Junior",92,88,89,88,67,79,71,55,40,39,40,41,69,88,41,39,82,62,88,60,32,32,58,56,78,40,81,64,63,55,28,81,45,74,84,50,54,65,0,39,44,89,65,51,77,22,14,25,28,23,47,85,49,71,"SEC","Georgia","Strong Safety","Launch Ratings"
10679,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Jah-Marien","Latham",75,102,81,"Reform","Alabama","Previous",20,"Senior",80,73,69,77,85,87,43,89,39,43,51,27,28,65,27,74,85,83,89,27,26,24,25,45,40,27,81,65,57,54,44,88,85,19,87,57,51,64,0,27,27,74,27,45,87,35,20,11,10,32,27,85,47,46,"SEC","Alabama","Will Backer","Launch Ratings"
3726,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Jahlil","Florence",73,30,81,"Southeast San Diego","California","Previous",6,"Junior",92,91,94,87,65,78,72,54,47,45,64,48,75,91,46,46,76,55,87,79,47,40,69,58,81,47,81,63,63,53,35,75,47,85,81,61,55,68,0,44,48,90,78,53,68,26,16,21,30,17,36,85,43,83,"Big Ten","Oregon","Cornerback","Launch Ratings"
10062,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/117.png?im=FaceCrop,padding=0.7","Jahmal","Edrine",75,61,81,"Fort Lauderdale","Florida","Eligible",7,"Senior",88,86,88,90,79,87,83,55,27,77,73,82,86,85,78,49,76,45,84,83,39,28,60,41,25,84,81,33,19,30,34,29,47,26,69,55,43,42,0,86,88,87,81,67,68,11,12,13,26,20,47,91,76,31,"ACC","Virginia","Wide Receiver","Launch Ratings"
14785,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/66.png?im=FaceCrop,padding=0.7","Jakai","Moore",78,158,81,"Nokesville","Virginia","Previous",55,"Senior",75,57,80,83,88,84,43,52,40,43,57,40,36,54,39,46,55,87,91,41,25,48,39,81,41,37,81,80,83,78,39,45,54,35,39,80,88,80,0,37,38,64,40,42,40,11,16,21,21,23,46,89,43,37,"ACC","North Carolina","Right Guard","Launch Ratings"
22473,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Jake","Taylor",78,153,81,"Las Vegas","Nevada","Previous",79,"Junior",79,70,60,82,87,79,30,39,35,29,57,50,51,68,50,57,37,83,96,50,46,34,47,84,49,50,81,83,87,86,40,37,38,48,50,80,88,85,0,46,49,60,51,32,29,21,25,16,19,35,45,84,33,48,"SEC","Oklahoma","Right Tackle","Launch Ratings"
384,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/66.png?im=FaceCrop,padding=0.7","Jake","Johnson",78,80,81,"Athens","Georgia","Previous",19,"Junior",90,87,88,94,68,80,74,38,45,70,72,79,85,82,70,37,64,71,84,73,42,25,73,63,56,74,81,60,60,50,39,41,35,23,36,60,59,58,0,74,81,83,70,74,36,13,20,21,33,20,29,88,69,26,"ACC","North Carolina","Tight End","Launch Ratings"
21929,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/93.png?im=FaceCrop,padding=0.7","Jalen","Stewart",72,70,81,"Bethlehem","Pennsylvania","Previous",17,"Senior",85,78,80,82,77,85,32,76,38,38,48,42,58,77,31,62,83,79,88,34,43,35,36,42,66,27,81,55,37,33,48,84,70,45,87,43,46,54,0,29,31,79,31,38,86,22,32,20,37,12,37,84,39,76,"The American","Temple","Mike Backer","Launch Ratings"
18574,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/105.png?im=FaceCrop,padding=0.7","Jalen","Berger",73,55,81,"Newark","New Jersey","Previous",0,"Senior",91,84,88,87,76,85,81,53,41,76,80,62,68,82,41,46,67,53,85,82,47,26,79,42,49,60,81,59,51,54,44,48,44,35,61,48,33,36,0,68,65,89,76,80,61,29,37,24,27,28,28,89,83,46,"Big Ten","UCLA","Halfback","Launch Ratings"
20997,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/81.png?im=FaceCrop,padding=0.7","Jalen","St. John",77,165,81,"St. Louis","Missouri","Previous",74,"Senior",66,57,56,85,93,87,47,59,42,47,52,24,27,57,24,24,65,91,90,24,45,34,26,80,24,28,81,84,79,88,48,40,65,24,24,78,76,80,0,27,25,58,24,48,47,29,36,21,24,24,36,91,44,28,"Big Ten","Purdue","Left Tackle","Launch Ratings"
19401,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/59.png?im=FaceCrop,padding=0.7","Jamal","Roberts",72,52,81,"St. Louis","Missouri","Previous",20,"Sophomore",91,84,87,86,76,81,84,48,26,83,83,56,67,83,43,40,63,42,92,82,33,31,83,36,51,57,81,50,50,49,31,52,41,37,56,42,28,32,0,62,57,87,80,75,53,36,15,37,27,26,28,85,82,52,"SEC","Missouri","Halfback","Launch Ratings"
19440,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/38.png?im=FaceCrop,padding=0.7","Jamari","Sharpe",73,27,81,"Miami","Florida","Previous",22,"Junior",96,91,95,86,65,77,65,53,44,46,63,49,69,88,44,40,67,56,87,79,40,36,66,55,77,41,81,65,62,53,39,76,48,79,80,59,56,67,0,42,48,94,73,56,71,28,23,12,29,29,42,76,45,80,"Big Ten","Indiana","Cornerback","Launch Ratings"
23155,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","Jamari","Lyons",76,148,81,"Cocoa","Florida","Previous",95,"Junior",75,65,73,86,90,74,26,81,31,40,51,26,35,48,26,67,82,76,87,26,26,38,32,57,35,26,81,66,62,56,45,72,86,33,80,58,53,64,0,26,26,63,26,39,88,33,14,15,16,36,29,95,38,29,"SEC","Florida","Defensive Tackle","Launch Ratings"
6858,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/134.png?im=FaceCrop,padding=0.7","James","Dawn II",75,160,81,"New Braunfels","Texas","Eligible",71,"Senior",65,55,58,82,89,88,40,55,42,41,50,29,24,54,27,28,58,87,84,25,42,29,25,76,26,29,81,84,80,87,32,35,55,29,30,72,74,70,0,27,25,57,25,42,41,27,10,32,35,13,32,83,41,24,"Conference USA","Sam Houston","Right Guard","Launch Ratings"
24702,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","James","Simon",71,45,81,"Shreveport","Louisiana","Eligible",31,"Freshman",91,91,87,82,73,64,86,41,45,83,76,72,75,89,64,34,42,57,94,89,17,19,75,45,55,66,81,61,62,57,35,43,30,33,39,49,45,35,0,73,74,87,85,67,38,26,30,41,42,44,30,87,69,31,"SEC","Texas","Halfback","Launch Ratings"
20638,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/22.png?im=FaceCrop,padding=0.7","JaQues","Evans",74,110,81,"Dublin","Georgia","Previous",9,"Senior",84,78,65,84,81,85,37,77,44,29,55,35,54,71,45,78,84,78,87,29,32,35,29,31,50,32,81,24,40,33,46,83,86,46,87,26,47,40,0,40,33,79,48,32,82,31,30,36,13,31,47,92,46,58,"Mountain West","Colorado State","Right Edge","Launch Ratings"
7624,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/93.png?im=FaceCrop,padding=0.7","Javier","Morton",74,35,81,"Atlanta","Georgia","Previous",15,"Senior",91,85,87,92,68,81,75,59,39,37,43,43,71,84,45,46,79,57,85,64,42,37,60,54,67,45,81,57,57,50,35,84,41,65,87,50,53,62,0,41,46,88,67,49,78,20,26,29,22,27,27,88,46,71,"The American","Temple","Strong Safety","Launch Ratings"
25511,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Javonnie","Gibson",74,51,81,"Opelousas","Louisiana","Previous",11,"Junior",91,87,91,89,78,81,79,45,49,80,73,88,86,86,81,36,53,65,90,86,21,23,75,60,58,83,81,33,28,30,38,45,39,34,52,64,57,59,0,85,87,88,82,76,47,44,46,45,45,52,33,93,73,31,"SEC","Oklahoma","Wide Receiver","Launch Ratings"
18284,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/9.png?im=FaceCrop,padding=0.7","Jay","Crawford",71,22,81,"Atlanta","Georgia","Eligible",23,"Sophomore",95,92,92,90,52,78,61,49,32,70,57,52,66,90,41,43,61,47,90,81,29,25,58,45,79,38,81,34,34,33,32,77,39,80,77,51,50,59,0,40,67,92,75,33,51,34,17,32,17,25,48,86,31,86,"SEC","Auburn","Cornerback","Launch Ratings"
20892,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/7.png?im=FaceCrop,padding=0.7","Jaylen","Raynor",72,42,81,"Kernersville","North Carolina","Eligible",1,"Junior",88,86,84,92,70,83,85,53,82,75,69,24,48,85,24,50,64,40,91,80,47,46,28,50,22,26,81,58,27,25,73,52,50,32,62,57,42,40,0,25,26,84,77,59,55,83,80,84,85,89,69,93,60,32,"Sun Belt","Arkansas State","Quarterback","Launch Ratings"
20232,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/56.png?im=FaceCrop,padding=0.7","Jekail","Middlebrook",70,36,81,"Fayetteville","Georgia","Previous",9,"Sophomore",92,86,83,89,67,79,79,50,40,82,82,66,75,86,54,39,58,41,90,83,43,38,65,37,33,64,81,52,47,47,25,45,42,34,55,44,31,34,0,75,64,88,78,58,53,25,23,27,19,28,32,83,65,35,"Conference USA","Middle Tennessee State","Halfback","Launch Ratings"
303,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/13.png?im=FaceCrop,padding=0.7","Jeremiah","Franklin",75,88,81,"Walkersville","Maryland","Eligible",17,"Senior",85,79,83,94,78,83,66,60,42,72,77,79,82,75,66,59,68,67,91,70,46,42,58,58,35,75,81,65,57,62,38,43,59,24,61,66,63,60,0,76,84,79,63,73,61,13,11,33,46,14,36,92,72,50,"ACC","Boston College","Tight End","Launch Ratings"
29437,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/136.png?im=FaceCrop,padding=0.7","Jo'Nathan","Silver",70,40,81,"Washington Township","New Jersey","Eligible",27,"Senior",89,85,86,89,69,83,83,33,34,76,84,71,67,85,57,35,36,55,90,83,21,21,75,54,32,62,81,56,55,57,32,63,33,23,22,45,46,46,0,67,68,87,81,70,34,33,33,35,31,34,33,88,72,23,"Conference USA","Delaware","Halfback","Launch Ratings"
345,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/42.png?im=FaceCrop,padding=0.7","Joe","Jackson",72,52,81,"Haines City","Florida","Previous",4,"Sophomore",92,89,87,86,70,76,81,39,29,75,80,57,69,87,63,32,48,54,89,83,44,24,82,45,34,65,81,57,56,55,27,41,32,32,40,51,47,45,0,69,67,91,80,66,44,24,25,36,37,24,27,85,70,33,"Big 12","Kansas State","Halfback","Launch Ratings"
4276,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/93.png?im=FaceCrop,padding=0.7","Joquez","Smith",68,30,81,"Tampa","Florida","Eligible",24,"Junior",93,88,84,87,66,83,76,46,29,75,76,61,69,88,50,38,50,38,85,86,29,26,77,35,45,57,81,55,46,52,47,45,39,34,50,44,32,32,0,65,61,89,82,62,45,18,12,36,15,24,29,79,67,45,"The American","Temple","Halfback","Launch Ratings"
4082,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/45.png?im=FaceCrop,padding=0.7","Jordan","Lovett",74,48,81,"Radcliff","Kentucky","Previous",25,"Senior",92,87,89,91,68,83,54,56,39,40,31,38,73,85,32,44,76,53,92,52,45,28,49,56,72,31,81,62,58,52,43,82,43,69,79,50,54,64,0,33,40,90,53,55,64,31,35,29,17,13,36,93,52,81,"SEC","Kentucky","Free Safety","Launch Ratings"
29024,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/92.png?im=FaceCrop,padding=0.7","Jordan","Dwyer",72,35,81,"Puyallup","Washington","Previous",7,"Junior",91,89,88,89,64,82,82,52,45,75,69,84,86,87,83,36,78,58,91,87,31,43,62,58,80,86,81,61,62,54,47,68,40,70,77,52,55,67,0,84,87,90,83,65,65,23,25,21,11,12,43,88,62,75,"Big 12","TCU","Wide Receiver","Launch Ratings"
6017,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/5.png?im=FaceCrop,padding=0.7","Jordan","Crook",72,60,81,"Duncanville","Texas","Eligible",8,"Senior",86,79,82,88,74,87,37,72,46,37,53,34,54,76,35,56,79,75,91,54,25,27,46,53,72,37,81,52,51,52,48,86,65,40,87,56,52,60,0,38,40,83,55,35,84,34,35,37,29,31,48,90,55,75,"Big 12","Arizona State","Will Backer","Launch Ratings"
7662,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/87.png?im=FaceCrop,padding=0.7","Jordan","Davis",77,145,81,"Fairburn","Georgia","Previous",79,"Senior",71,58,68,87,90,87,41,52,48,43,50,28,26,57,29,27,55,91,93,31,48,25,31,77,25,26,81,85,81,88,34,38,56,29,30,74,71,79,0,30,28,64,29,43,40,29,32,25,26,29,43,88,41,27,"Sun Belt","South Alabama","Left Tackle","Launch Ratings"
19260,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/58.png?im=FaceCrop,padding=0.7","Jordan","Mosley",72,35,81,"Mobile","Alabama","Previous",4,"Senior",92,90,90,87,62,84,76,44,32,64,67,81,84,88,86,35,52,35,77,79,24,48,87,31,48,84,81,31,22,31,47,50,35,36,52,54,47,45,0,80,86,93,79,39,46,32,37,35,32,35,38,84,39,49,"SEC","Mississippi State","Wide Receiver","Launch Ratings"
22666,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/34.png?im=FaceCrop,padding=0.7","Jordan","van den Berg",75,140,81,"Johannesburg","Non-US","Previous",99,"Senior",82,72,82,86,92,86,26,76,37,43,57,26,30,57,26,58,80,78,97,26,44,40,34,58,29,26,81,65,59,55,25,84,83,25,78,60,56,64,0,26,26,78,26,42,82,14,19,19,16,25,32,87,40,26,"ACC","Georgia Tech","Defensive Tackle","Launch Ratings"
23081,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Joseph","Jonah-Ajonye",76,115,81,"Shenandoah","Texas","Previous",99,"Freshman",85,75,82,74,85,75,38,84,40,42,56,35,42,63,35,70,84,79,86,35,24,35,39,53,31,35,81,55,50,46,37,79,83,34,79,43,45,57,0,35,35,75,35,42,86,12,16,11,26,15,32,84,38,44,"SEC","Georgia","Left Edge","Launch Ratings"
22490,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/94.png?im=FaceCrop,padding=0.7","Jourdan","Thomas",74,45,81,"Montgomery","Alabama","Previous",4,"Junior",91,86,85,88,69,76,56,57,43,41,33,38,66,85,30,44,80,58,89,53,38,37,51,56,75,30,81,62,63,51,45,80,49,76,88,51,55,65,0,32,37,88,56,59,80,29,29,17,23,25,36,86,53,74,"SEC","Tennessee","Free Safety","Launch Ratings"
10140,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/16.png?im=FaceCrop,padding=0.7","Justin","Kirkland",75,175,81,"West Haven","Utah","Eligible",99,"Senior",65,53,60,82,97,83,26,87,35,48,51,25,22,45,25,60,85,93,94,25,42,24,36,57,25,22,81,72,64,56,43,83,85,19,76,61,56,72,0,22,24,57,24,48,80,27,28,28,30,22,27,88,47,16,"Big 12","BYU","Defensive Tackle","Launch Ratings"
9462,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Justin","Jefferson",73,67,81,"Memphis","Tennessee","Previous",10,"Senior",89,83,85,87,77,84,39,71,36,35,55,35,52,79,39,63,82,67,89,39,36,36,41,57,64,39,81,63,60,53,36,80,73,39,87,55,52,62,0,39,39,80,39,35,80,24,24,24,24,24,36,88,35,84,"SEC","Alabama","Mike Backer","Launch Ratings"
20118,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/122.png?im=FaceCrop,padding=0.7","Justin","Harrington",75,55,81,"Raleigh","North Carolina","Previous",8,"Senior",92,83,85,89,79,80,63,63,48,47,35,47,71,84,36,43,87,67,80,55,29,33,55,59,75,37,81,70,61,57,36,75,50,78,80,53,57,71,0,38,43,93,58,68,78,31,12,36,23,20,27,93,62,78,"Big 12","West Virginia","Strong Safety","Launch Ratings"
18777,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/62.png?im=FaceCrop,padding=0.7","Justin","Evans",73,155,81,"East Orange","New Jersey","Previous",51,"Junior",66,64,61,85,88,82,42,53,32,39,54,26,29,58,24,25,55,86,89,28,40,40,27,74,24,25,81,85,83,87,48,43,57,24,26,72,69,74,0,25,24,57,24,40,43,13,35,35,11,23,41,90,41,24,"Big Ten","Nebraska","Center","Launch Ratings"
24692,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Kaliq","Lockett",74,25,81,"Sachse","Texas","Eligible",7,"Freshman",94,93,91,83,55,77,81,31,33,84,71,81,84,92,77,28,32,39,91,88,24,24,84,28,62,83,81,30,15,26,44,52,29,37,32,45,39,39,0,84,91,92,86,55,30,16,28,31,33,25,48,85,48,41,"SEC","Texas","Wide Receiver","Launch Ratings"
4658,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/58.png?im=FaceCrop,padding=0.7","Kalvin","Dinkins",74,160,81,"Lake","Mississippi","Previous",35,"Junior",73,56,70,90,89,81,25,84,32,39,56,25,25,46,25,65,86,74,95,25,39,38,33,57,20,25,81,68,62,52,24,79,87,24,77,58,55,66,0,25,25,65,25,38,85,12,29,12,19,24,32,93,40,24,"SEC","Mississippi State","Defensive Tackle","Launch Ratings"
3545,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Kam","Dewberry",76,172,81,"Humble","Texas","Eligible",71,"Senior",69,67,66,79,91,80,45,54,43,44,55,32,32,59,27,34,63,88,91,29,28,38,29,79,30,28,81,76,76,80,47,45,62,30,33,84,85,89,0,26,30,56,28,44,43,29,31,27,13,22,34,83,45,26,"SEC","Alabama","Left Guard","Launch Ratings"
6072,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/30.png?im=FaceCrop,padding=0.7","Kam","Davis",70,58,81,"Albany","Georgia","Eligible",3,"Sophomore",92,84,83,86,77,75,76,51,49,80,84,65,63,85,47,43,64,56,87,83,24,30,77,45,38,55,81,62,55,64,39,46,44,25,63,55,43,45,0,63,60,90,80,85,56,32,32,33,35,35,22,88,86,34,"ACC","Florida State","Halfback","Launch Ratings"
20933,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/117.png?im=FaceCrop,padding=0.7","Kam","Robinson",74,74,81,"Tappahannock","Virginia","Eligible",5,"Junior",87,82,85,89,78,88,50,79,44,43,56,45,71,78,38,65,86,71,93,53,31,33,50,48,65,39,81,60,56,48,26,87,76,39,90,53,48,62,0,35,36,82,50,45,79,16,34,32,26,10,41,93,55,70,"ACC","Virginia","Mike Backer","Launch Ratings"
20737,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/64.png?im=FaceCrop,padding=0.7","Keagan","Johnson",72,39,81,"Omaha","Nebraska","Previous",6,"Senior",93,90,91,86,66,84,85,50,46,74,72,83,84,89,77,42,61,39,81,87,33,45,92,36,56,86,81,36,20,32,34,64,40,43,53,55,33,32,0,85,88,90,83,33,52,31,18,32,11,16,32,83,47,58,"Mountain West","New Mexico","Wide Receiver","Launch Ratings"
9982,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/105.png?im=FaceCrop,padding=0.7","Keanu","Williams",77,150,81,"Clovis","California","Previous",99,"Junior",76,62,77,87,90,87,27,82,35,45,51,27,35,50,27,65,83,80,92,27,37,41,31,58,39,27,81,67,62,55,28,86,85,33,81,57,54,67,0,27,27,64,27,42,82,20,17,11,30,37,31,88,44,23,"Big Ten","UCLA","Defensive Tackle","Launch Ratings"
21040,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/21.png?im=FaceCrop,padding=0.7","Keaten","Wade",76,75,81,"Spring Hill","Tennessee","Previous",27,"Senior",91,82,84,79,72,76,25,74,43,47,51,44,33,72,29,87,82,74,90,27,27,36,38,56,55,28,81,45,45,46,43,77,75,31,87,61,57,69,0,30,28,85,30,46,80,10,36,37,16,14,46,84,48,63,"Big 12","Colorado","Right Edge","Launch Ratings"
7639,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Kelby","Collins",76,115,81,"Gardendale","Alabama","Eligible",17,"Junior",86,78,82,74,85,76,43,86,30,40,57,42,53,70,42,79,85,78,84,42,44,48,43,51,40,42,81,57,56,47,34,76,82,41,84,51,50,61,0,42,42,76,42,40,87,16,11,37,27,16,33,78,40,67,"SEC","Alabama","Left Edge","Launch Ratings"
9512,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/58.png?im=FaceCrop,padding=0.7","Kelley","Jones",76,35,81,"Clarksdale","Mississippi","Previous",1,"Sophomore",92,87,91,86,63,81,50,53,35,37,45,43,63,85,27,47,75,50,84,56,40,25,51,55,75,29,81,61,59,52,26,84,39,87,79,56,54,63,0,27,40,88,57,43,67,31,16,12,36,18,30,86,37,84,"SEC","Mississippi State","Cornerback","Launch Ratings"
20475,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/11.png?im=FaceCrop,padding=0.7","Kelsey","Johnson",75,87,81,"Red Oak","Texas","Previous",12,"Junior",86,80,82,89,77,83,72,60,33,73,74,83,82,77,67,57,61,66,88,68,41,46,65,60,42,72,81,58,52,57,45,38,58,20,61,62,63,60,0,77,83,76,61,72,59,14,32,13,34,18,45,90,74,33,"Big 12","Baylor","Tight End","Launch Ratings"
18972,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/80.png?im=FaceCrop,padding=0.7","Kenny","Johnson",73,45,81,"York","Pennsylvania","Eligible",2,"Junior",92,89,91,89,70,84,87,53,36,83,80,84,85,87,78,46,68,37,90,88,30,31,85,37,41,84,81,39,28,37,37,53,46,37,63,59,53,51,0,87,86,91,83,59,57,12,31,36,20,18,39,83,65,64,"ACC","Pittsburgh","Wide Receiver","Launch Ratings"
21995,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/53.png?im=FaceCrop,padding=0.7","Kenny","Tracy",70,63,81,"Indianapolis","Indiana","Previous",9,"Senior",89,83,82,87,79,85,85,51,35,78,79,65,72,81,54,41,66,43,77,82,30,37,67,44,32,63,81,59,32,29,48,39,43,31,51,48,36,36,0,67,66,85,79,79,59,10,35,19,11,28,42,79,84,36,"MAC","Miami (Ohio)","Halfback","Launch Ratings"
4500,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/62.png?im=FaceCrop,padding=0.7","Keona","Davis",77,95,81,"Tucson","Arizona","Eligible",97,"Sophomore",83,76,83,82,82,83,30,78,45,27,57,42,49,71,42,82,87,69,80,42,31,32,36,40,38,42,81,33,33,32,31,83,86,43,85,23,33,35,0,42,42,78,42,30,84,25,35,33,28,19,38,84,27,49,"Big Ten","Nebraska","Left Edge","Launch Ratings"
30623,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/107.png?im=FaceCrop,padding=0.7","Kevontay","Wells",75,105,81,"Jackson","Mississippi","Previous",1,"Senior",84,74,75,84,82,85,28,79,40,35,51,25,36,64,27,73,87,74,86,27,42,26,36,58,28,27,81,66,58,51,24,84,86,34,87,57,53,61,0,30,28,76,31,38,84,34,37,15,12,29,45,90,34,44,"Sun Belt","UL Monroe","Right Edge","Launch Ratings"
20054,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/9.png?im=FaceCrop,padding=0.7","Keyron","Crawford",76,86,81,"Memphis","Tennessee","Eligible",24,"Senior",86,78,82,83,78,87,31,72,46,32,55,39,53,70,38,84,81,66,79,38,32,36,38,39,54,41,81,44,36,30,42,85,77,40,85,30,38,41,0,40,38,79,40,35,83,10,15,12,10,20,25,83,35,61,"SEC","Auburn","Right Edge","Launch Ratings"
29262,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/121.png?im=FaceCrop,padding=0.7","Kirby","Vorhees",71,45,81,"Lutz","Florida","Previous",9,"Sophomore",90,88,83,85,70,74,84,57,45,82,82,55,58,87,45,47,51,59,91,83,34,40,70,49,29,50,81,58,53,58,47,64,45,29,69,51,37,42,0,54,51,88,82,70,53,36,25,21,11,11,48,85,73,41,"Pac-12","Washington State","Halfback","Launch Ratings"
2284,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/66.png?im=FaceCrop,padding=0.7","Kobe","Paysour",73,30,81,"Kings Mountain","North Carolina","Previous",8,"Senior",91,87,89,86,67,86,74,47,37,69,71,86,85,85,81,38,60,35,78,80,44,40,67,37,30,87,81,31,20,30,39,36,42,29,57,57,28,30,0,85,86,89,74,27,52,28,10,29,16,19,30,80,46,40,"ACC","North Carolina","Wide Receiver","Launch Ratings"
29429,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/136.png?im=FaceCrop,padding=0.7","KT","Seay",74,29,81,"Norfolk","Virginia","Eligible",7,"Junior",89,86,88,97,67,82,46,63,47,44,55,55,78,85,26,41,84,59,94,50,46,37,46,56,73,28,81,66,60,56,37,84,47,75,80,52,54,68,0,28,57,87,45,60,73,22,30,33,30,28,42,90,59,81,"Conference USA","Delaware","Free Safety","Launch Ratings"
20306,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Kylon","Griffin",71,40,81,"Montgomery","Alabama","Previous",18,"Junior",91,88,88,87,63,81,65,58,34,66,35,56,70,86,38,41,82,59,90,72,43,31,51,56,79,38,81,57,60,53,28,82,47,77,83,50,53,63,0,38,61,90,67,45,73,28,13,23,28,38,43,85,43,75,"ACC","Clemson","Strong Safety","Launch Ratings"
10139,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/24.png?im=FaceCrop,padding=0.7","Landen","King",77,72,81,"Houston","Texas","Previous",82,"Senior",90,86,91,93,69,82,76,44,36,66,64,78,82,84,68,42,43,60,79,74,45,45,70,59,57,72,81,67,45,55,27,53,38,31,43,68,60,60,0,83,79,85,68,59,41,14,29,21,24,19,35,84,57,47,"ACC","Duke","Tight End","Launch Ratings"
3040,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/119.png?im=FaceCrop,padding=0.7","Lardarius","Webb Jr.",69,8,81,"Opelika","Alabama","Previous",14,"Senior",92,91,89,97,55,78,75,51,25,25,45,44,75,90,47,27,72,56,83,66,43,38,56,54,87,48,81,49,59,50,25,79,33,75,87,49,51,56,0,46,45,89,70,29,58,18,25,38,22,14,41,91,27,82,"ACC","Wake Forest","Cornerback","Launch Ratings"
8592,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/121.png?im=FaceCrop,padding=0.7","Leo","Pulalasi",73,54,81,"Tacoma","Washington","Previous",20,"Sophomore",89,84,88,89,79,84,81,55,25,79,77,63,71,81,53,47,70,47,95,81,32,38,64,43,28,60,81,60,32,36,36,36,46,29,63,49,37,37,0,66,65,86,80,79,60,23,36,18,30,35,33,92,84,33,"Pac-12","Washington State","Halfback","Launch Ratings"
27465,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/42.png?im=FaceCrop,padding=0.7","Linkon","Cure",77,70,81,"Goodland","Kansas","Eligible",0,"Freshman",90,87,88,82,69,75,82,64,54,77,75,81,85,81,70,73,76,62,92,84,31,39,73,60,45,73,81,55,53,54,40,64,63,45,75,59,57,57,0,75,87,85,80,72,71,44,45,47,55,49,28,82,75,50,"Big 12","Kansas State","Tight End","Launch Ratings"
9714,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/57.png?im=FaceCrop,padding=0.7","Logan","Loya",71,30,81,"Garden Grove","California","Previous",17,"Senior",92,92,87,91,55,84,83,39,47,72,79,85,85,89,77,31,40,35,90,85,26,47,93,30,64,86,81,30,18,28,48,54,32,38,41,36,30,28,0,89,85,90,79,34,38,32,37,17,24,34,48,83,48,44,"Big Ten","Minnesota","Wide Receiver","Launch Ratings"
10291,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/84.png?im=FaceCrop,padding=0.7","Lucky","Sutton",73,52,81,"San Diego","California","Previous",27,"Junior",90,82,85,84,78,80,83,51,46,78,85,60,65,84,46,39,63,42,87,84,32,44,71,42,54,53,81,58,29,36,38,47,42,35,57,50,36,41,0,58,61,87,74,77,55,37,26,25,14,17,29,87,82,55,"Mountain West","San Diego State","Halfback","Launch Ratings"
10269,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Luke","Reynolds",76,90,81,"Westford","Massachusetts","Eligible",85,"Sophomore",93,87,88,90,66,79,75,33,42,69,68,80,85,84,70,25,66,66,80,73,48,28,73,66,60,73,81,56,56,49,40,47,29,27,26,61,55,57,0,79,86,88,71,67,26,20,37,21,48,23,24,86,65,34,"Big Ten","Penn State","Tight End","Launch Ratings"
19549,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/69.png?im=FaceCrop,padding=0.7","Mac","Uihlein",73,70,81,"Lake Forest","Illinois","Previous",37,"Junior",88,82,84,83,77,85,37,75,36,38,55,38,51,77,37,50,81,67,91,37,36,36,41,56,61,37,81,65,60,53,36,86,66,33,88,57,54,63,0,37,37,80,37,38,84,24,24,24,24,24,36,81,38,73,"Big Ten","Northwestern","Will Backer","Launch Ratings"
9868,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/81.png?im=FaceCrop,padding=0.7","Malachi","Thomas",72,60,81,"Hartwell","Georgia","Previous",24,"Senior",89,81,87,88,78,83,79,50,32,77,91,60,61,81,50,42,61,47,89,81,44,44,70,45,42,54,81,57,53,58,44,51,42,36,57,52,38,41,0,59,55,87,75,79,54,13,18,26,32,12,25,90,82,44,"Big Ten","Purdue","Halfback","Launch Ratings"
20769,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/104.png?im=FaceCrop,padding=0.7","Malachi","Lawrence",76,90,81,"Louisville","Kentucky","Previous",51,"Senior",86,82,84,83,77,88,49,76,40,48,58,41,45,73,41,80,85,67,90,41,44,41,48,39,41,41,81,71,61,58,36,88,88,46,87,61,55,70,0,38,42,81,41,46,75,31,17,10,16,26,25,88,47,48,"Big 12","UCF","Right Edge","Launch Ratings"
24974,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Malachi","Goodman",78,161,81,"Bloomfield","New Jersey","Eligible",75,"Freshman",77,73,78,79,90,75,44,58,46,42,56,40,40,63,32,51,62,89,95,43,24,21,15,85,43,33,81,83,79,86,27,40,63,42,48,82,80,84,0,35,42,69,42,43,43,13,22,15,12,17,25,93,45,44,"Big Ten","Penn State","Right Tackle","Launch Ratings"
8739,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/55.png?im=FaceCrop,padding=0.7","Malik","Spencer",73,32,81,"Buford","Georgia","Eligible",43,"Senior",92,87,86,90,67,79,66,70,43,40,41,45,71,88,41,60,83,58,88,63,40,37,58,59,63,41,81,65,63,53,34,79,45,71,90,48,53,65,0,38,44,90,68,52,78,19,16,23,12,12,30,89,53,74,"Big Ten","Michigan State","Free Safety","Launch Ratings"
23977,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/9.png?im=FaceCrop,padding=0.7","Malik","Autry",77,179,81,"Opelika","Alabama","Eligible",96,"Freshman",71,59,71,75,93,72,24,88,22,39,39,24,33,53,24,65,86,93,90,24,22,24,13,58,22,24,81,57,55,55,21,73,83,23,85,61,54,60,0,24,24,61,22,45,85,22,15,21,16,23,25,92,50,21,"SEC","Auburn","Defensive Tackle","Launch Ratings"
19484,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/36.png?im=FaceCrop,padding=0.7","Marc","Stampley II",71,25,81,"Peachtree City","Georgia","Eligible",22,"Senior",92,86,87,93,60,83,51,49,40,41,48,27,72,88,30,29,71,45,84,60,39,36,53,57,76,32,81,62,53,47,48,83,40,70,82,56,54,66,0,28,33,88,57,50,75,10,30,15,21,23,32,86,40,81,"Big 12","Houston","Cornerback","Launch Ratings"
21064,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/110.png?im=FaceCrop,padding=0.7","Marcelles","Williams",71,25,81,"Carson","California","Previous",25,"Freshman",94,93,84,85,55,76,62,50,35,33,50,45,74,91,40,45,64,51,75,77,42,32,60,58,81,39,81,59,58,50,47,81,45,73,78,53,52,61,0,38,40,92,71,36,65,13,20,22,10,37,44,78,32,79,"Big Ten","USC","Cornerback","Launch Ratings"
28938,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/118.png?im=FaceCrop,padding=0.7","Marcellous","Hawkins",71,59,81,"Oklahoma City","Oklahoma","Eligible",27,"Senior",89,85,87,88,78,79,78,51,31,80,85,59,70,84,52,41,66,65,85,83,39,35,63,55,30,61,81,58,50,55,29,65,45,31,61,55,46,45,0,63,48,87,81,80,57,14,28,14,35,27,31,87,84,49,"ACC","Virginia Tech","Halfback","Launch Ratings"
22800,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/51.png?im=FaceCrop,padding=0.7","Marcus","Burris Jr.",77,110,81,"Texarkana","Texas","Previous",34,"Senior",84,68,79,88,87,87,32,82,46,37,54,32,42,53,32,64,78,72,94,32,41,36,35,56,39,32,81,63,59,55,41,86,81,34,81,56,51,61,0,32,32,69,32,35,85,35,26,15,18,15,29,95,35,34,"The American","Memphis","Defensive Tackle","Launch Ratings"
1958,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Mark","Nabou Jr.",76,170,81,"Lynnwood","Washington","Previous",54,"Sophomore",66,56,65,86,91,85,43,53,28,41,55,30,28,54,21,30,62,89,79,26,26,42,29,79,29,26,81,84,78,88,34,35,60,28,26,79,75,83,0,27,29,59,26,41,41,27,10,28,34,31,42,85,40,29,"SEC","Texas A&M","Center","Launch Ratings"
25517,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/39.png?im=FaceCrop,padding=0.7","Mark","Gronowski",74,75,81,"Naperville","Illinois","Previous",11,"Senior",85,80,79,90,79,87,85,52,83,70,77,43,50,79,25,55,73,65,93,83,24,25,29,67,31,22,81,55,54,54,82,55,58,45,52,62,58,57,0,25,44,81,79,76,63,81,82,85,78,88,75,92,75,40,"Big Ten","Iowa","Quarterback","Launch Ratings"
9313,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Markel","Bell",81,180,81,"Cleveland","Mississippi","Eligible",70,"Senior",63,53,61,81,92,84,46,55,42,46,50,25,24,49,24,24,62,91,94,24,35,47,24,75,28,26,81,80,76,85,47,43,59,25,24,85,87,84,0,24,27,54,26,44,42,11,36,28,16,12,27,86,41,25,"ACC","Miami","Left Tackle","Launch Ratings"
18809,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/21.png?im=FaceCrop,padding=0.7","Martavius","French",74,65,81,"Memphis","Tennessee","Previous",37,"Senior",88,84,83,85,72,85,54,73,38,37,61,37,60,80,40,64,85,64,85,55,38,46,51,43,68,38,81,47,44,40,32,84,61,56,87,37,43,48,0,42,42,80,57,40,88,18,23,34,21,31,48,82,35,70,"Big 12","Colorado","Mike Backer","Launch Ratings"
163,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/105.png?im=FaceCrop,padding=0.7","Mateen","Bhaghani",73,15,81,"San Diego","California","Eligible",94,"Sophomore",65,64,73,84,48,67,26,41,34,48,56,38,33,56,31,39,25,25,91,45,91,96,36,39,27,35,81,47,30,46,33,48,38,42,26,21,27,31,0,31,42,65,26,42,25,10,14,30,12,11,26,87,27,35,"Big Ten","UCLA","Kicker","Launch Ratings"
23089,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/89.png?im=FaceCrop,padding=0.7","Matt","Jones",68,45,81,"Jackson","Mississippi","Previous",5,"Senior",93,85,85,87,71,80,81,36,44,80,78,61,67,84,50,30,36,35,85,86,36,29,69,30,44,62,81,48,40,46,30,59,31,40,33,39,28,29,0,65,60,88,84,75,35,14,24,26,15,29,28,88,71,45,"Sun Belt","Southern Miss","Halfback","Launch Ratings"
10070,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/19.png?im=FaceCrop,padding=0.7","Max","Fletcher",78,30,81,"Melbourne","Non-US","Previous",31,"Junior",66,55,70,84,55,70,30,46,25,40,60,31,35,54,36,24,45,29,85,35,89,93,26,30,47,38,81,38,30,29,46,40,29,29,26,23,34,41,0,25,25,60,24,40,34,18,35,18,13,38,44,84,41,47,"Big 12","Cincinnati","Punter","Launch Ratings"
21162,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/88.png?im=FaceCrop,padding=0.7","Mazeo","Bennett Jr.",70,25,81,"Greenville","South Carolina","Eligible",3,"Sophomore",94,93,91,83,60,77,79,40,43,64,72,86,87,92,79,37,47,41,72,78,40,47,92,33,71,84,81,36,23,34,41,71,36,46,46,50,32,32,0,85,85,92,78,37,42,17,23,25,16,32,30,77,40,70,"SEC","South Carolina","Wide Receiver","Launch Ratings"
19223,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/112.png?im=FaceCrop,padding=0.7","Michael","Mokofisi",76,150,81,"Woods Cross","Utah","Previous",52,"Senior",71,57,63,86,90,90,42,70,29,41,50,28,27,54,28,45,66,89,87,27,26,35,27,83,12,32,81,78,71,85,36,35,80,11,31,75,73,81,0,27,31,60,30,41,65,24,11,17,14,35,34,97,41,12,"Big 12","Utah","Right Guard","Launch Ratings"
10187,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/94.png?im=FaceCrop,padding=0.7","Mike","Matthews",73,40,81,"Lilburn","Georgia","Eligible",4,"Sophomore",95,93,95,87,62,74,92,43,25,78,60,81,82,92,84,36,51,41,91,90,39,26,89,32,64,81,81,30,20,30,29,63,38,65,49,48,33,33,0,82,86,93,84,42,60,14,29,33,36,18,34,80,43,66,"SEC","Tennessee","Wide Receiver","Launch Ratings"
8266,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/54.png?im=FaceCrop,padding=0.7","Mikey","Keene",71,40,81,"Chandler","Arizona","Previous",10,"Senior",84,81,76,92,64,91,70,20,55,67,64,26,51,80,27,22,34,30,93,76,34,35,26,32,38,23,81,25,24,24,79,37,21,23,33,31,31,32,0,28,27,80,73,42,33,76,88,86,72,87,73,95,49,34,"Big Ten","Michigan","Quarterback","Launch Ratings"
19179,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/117.png?im=FaceCrop,padding=0.7","Mitchell","Melton",76,96,81,"Silver Spring","Maryland","Previous",17,"Senior",88,79,83,84,79,83,35,80,36,33,58,46,59,73,46,84,86,69,85,46,31,43,44,40,43,46,81,47,44,40,47,83,80,45,85,32,39,45,0,46,46,80,46,37,82,13,31,18,13,29,24,88,52,49,"ACC","Virginia","Right Edge","Launch Ratings"
5992,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/17.png?im=FaceCrop,padding=0.7","Nate","Burrell",74,135,81,"Los Angeles","California","Eligible",98,"Senior",81,73,76,82,84,82,40,83,40,39,52,33,34,64,32,67,83,68,90,29,40,40,41,44,29,32,81,54,52,44,38,80,85,34,84,47,44,57,0,32,29,73,33,39,84,27,15,16,34,35,28,86,39,34,"ACC","Cal","Left Edge","Launch Ratings"
1605,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/59.png?im=FaceCrop,padding=0.7","Nate","Johnson",77,92,81,"Gaffney","South Carolina","Eligible",90,"Junior",84,77,81,83,81,84,32,73,47,42,53,41,44,70,31,87,84,64,87,27,42,41,39,54,62,32,81,69,44,39,44,81,80,31,86,59,53,68,0,26,26,79,31,41,81,27,12,29,12,26,38,90,40,71,"SEC","Missouri","Left Edge","Launch Ratings"
1394,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Nikhai","Hill-Green",74,75,81,"Pittsburgh","Pennsylvania","Previous",41,"Senior",89,80,85,95,73,87,24,77,27,27,59,48,70,78,44,78,78,65,87,48,32,25,38,37,73,48,81,28,28,29,26,90,70,55,89,16,26,29,0,48,47,83,46,26,82,22,11,13,13,15,31,85,28,69,"SEC","Alabama","Mike Backer","Launch Ratings"
21010,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/78.png?im=FaceCrop,padding=0.7","Nikko","Taylor",77,104,81,"Oceanside","California","Eligible",25,"Senior",84,76,78,80,79,86,30,80,36,42,53,43,39,69,31,83,85,73,93,30,39,34,33,56,61,28,81,68,63,57,47,84,77,29,88,58,57,66,0,31,25,82,28,42,85,22,33,29,37,20,40,87,42,70,"Pac-12","Oregon State","Sam Backer","Launch Ratings"
18992,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/117.png?im=FaceCrop,padding=0.7","Noah","Josey",77,150,81,"Murfreesboro","Tennessee","Previous",77,"Senior",69,60,72,88,88,88,38,52,31,39,51,35,36,56,31,38,54,89,93,37,36,38,32,85,32,35,81,83,81,87,37,45,52,37,32,80,84,77,0,36,37,58,32,41,40,33,20,37,23,24,46,94,42,31,"ACC","Virginia","Left Guard","Launch Ratings"
21829,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/8.png?im=FaceCrop,padding=0.7","Noah","Short",72,22,81,"San Jose","California","Eligible",15,"Senior",91,86,88,88,59,88,85,48,27,77,77,83,85,86,84,38,54,37,87,85,28,29,86,38,53,80,81,32,20,30,47,47,41,35,52,67,27,27,0,85,86,92,83,34,49,15,18,16,35,30,45,85,55,40,"The American","Army","Wide Receiver","Launch Ratings"
14595,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/101.png?im=FaceCrop,padding=0.7","Omari","Hayes",69,10,81,"Sarasota","Florida","Previous",1,"Sophomore",93,92,87,88,51,83,66,22,40,79,78,79,85,90,81,21,42,45,84,86,31,39,82,41,35,85,81,32,26,34,28,46,25,22,23,49,39,35,0,82,86,91,82,67,44,18,30,30,12,13,47,84,52,23,"The American","Tulane","Wide Receiver","Launch Ratings"
20249,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/71.png?im=FaceCrop,padding=0.7","Parker","Navarro",72,45,81,"Tempe","Arizona","Previous",13,"Senior",88,86,82,93,66,81,85,45,77,86,77,26,36,85,23,39,48,32,92,85,24,32,24,39,34,25,81,44,25,23,72,25,43,35,70,40,31,35,0,28,23,88,80,67,45,73,83,87,80,89,72,92,65,57,"MAC","Ohio","Quarterback","Launch Ratings"
22172,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/38.png?im=FaceCrop,padding=0.7","Pat","Coogan",77,150,81,"Palos Heights","Illinois","Previous",78,"Senior",73,71,72,87,85,87,36,43,45,37,53,32,36,61,31,42,47,85,84,32,48,28,32,85,36,32,81,82,84,80,42,37,43,33,32,83,86,81,0,31,34,60,33,37,36,32,35,19,24,37,42,89,36,33,"Big Ten","Indiana","Center","Launch Ratings"
934,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Peyton","Bowen",72,41,81,"Corinth","Texas","Eligible",22,"Junior",93,88,88,87,70,78,67,61,47,44,39,49,74,88,40,45,84,63,90,65,42,25,58,60,72,39,81,61,59,56,24,78,48,74,88,50,56,66,0,38,46,90,64,56,75,16,26,34,19,13,32,88,55,75,"SEC","Oklahoma","Strong Safety","Launch Ratings"
18990,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/24.png?im=FaceCrop,padding=0.7","Peyton","Jones",70,32,81,"Norfolk","Virginia","Eligible",5,"Junior",92,88,87,86,67,78,81,51,34,75,84,61,66,86,57,41,63,51,90,83,43,41,70,38,44,62,81,57,49,54,25,49,40,36,58,46,32,36,0,67,53,87,81,66,54,15,24,27,18,16,31,84,68,45,"ACC","Duke","Halfback","Launch Ratings"
33924,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/54.png?im=FaceCrop,padding=0.7","John","Volker",72,55,80,"Rumson","New Jersey","Previous",31,"Senior",88,84,85,89,77,87,76,48,46,75,88,57,69,80,51,39,61,64,90,75,23,24,74,63,35,57,80,63,53,57,38,46,42,34,56,63,53,53,0,62,58,86,76,79,57,24,31,23,37,23,46,95,83,56,"Big Ten","Michigan","Halfback","Launch Ratings"
21351,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/47.png?im=FaceCrop,padding=0.7","JoJo","Evans",73,40,80,"Riviera Beach","Florida","Previous",27,"Senior",88,83,80,91,66,82,48,62,37,40,62,31,65,82,25,33,82,59,88,49,45,43,52,56,66,29,80,61,61,54,40,86,40,69,87,48,54,65,0,27,27,86,49,50,75,30,31,14,34,28,31,92,48,72,"ACC","Louisville","Strong Safety","Launch Ratings"
24690,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Jonah","Williams",75,53,80,"Galveston","Texas","Eligible",9,"Freshman",92,92,93,84,66,75,84,63,57,79,75,79,83,89,79,55,87,64,95,86,30,31,77,58,74,77,80,55,53,57,28,79,49,79,86,64,64,62,0,75,84,89,79,77,70,50,51,55,55,58,26,93,73,76,"SEC","Texas","Strong Safety","Launch Ratings"
20115,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/55.png?im=FaceCrop,padding=0.7","Jordan","Hall",75,77,80,"Fredericksburg","Virginia","Previous",5,"Junior",88,76,78,84,81,80,25,77,36,47,50,47,36,70,25,70,87,69,87,25,36,36,34,55,64,25,80,69,63,56,36,81,80,22,87,59,55,70,0,25,25,80,25,47,85,24,24,24,24,24,36,87,47,77,"Big Ten","Michigan State","Mike Backer","Launch Ratings"
4162,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/44.png?im=FaceCrop,padding=0.7","Jordan","Nubin",71,55,80,"St. Charles","Illinois","Previous",27,"Senior",88,79,79,87,79,83,78,52,33,79,88,52,65,77,36,45,64,50,91,79,24,27,57,41,28,49,80,60,49,59,42,41,45,32,63,51,37,39,0,59,45,84,76,80,59,25,32,24,22,11,24,92,84,53,"MAC","Kent State","Halfback","Launch Ratings"
20904,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Jordan","Renaud",76,105,80,"Sarasota","Florida","Previous",11,"Sophomore",89,79,85,80,83,59,39,88,37,36,55,44,55,71,44,80,82,75,84,44,40,38,44,48,39,44,80,48,48,44,38,81,80,40,85,38,44,52,0,44,44,77,44,38,85,27,26,25,18,31,48,83,38,50,"SEC","Alabama","Left Edge","Launch Ratings"
30760,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Jordan","Shaw",73,20,80,"Los Angeles","California","Previous",8,"Sophomore",88,85,93,87,65,80,56,57,24,64,52,61,74,83,55,60,75,59,95,71,39,39,65,25,78,57,80,22,11,11,33,83,57,88,84,30,15,15,0,58,67,87,64,34,73,36,39,39,34,42,31,77,51,83,"SEC","Texas A&M","Cornerback","Launch Ratings"
929,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/84.png?im=FaceCrop,padding=0.7","Joseph","Borjon",80,170,80,"La Puente","California","Previous",78,"Senior",61,51,65,87,91,87,40,56,29,40,51,28,28,42,29,25,61,90,86,25,34,39,29,78,12,26,80,80,75,85,44,44,56,14,28,79,76,82,0,24,29,53,27,44,44,11,19,10,37,12,27,94,43,12,"Mountain West","San Diego State","Right Tackle","Launch Ratings"
22448,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/21.png?im=FaceCrop,padding=0.7","Joseph","Williams",74,40,80,"Arlington","Texas","Eligible",8,"Sophomore",92,89,89,88,62,81,84,43,24,81,69,84,86,87,83,35,50,37,90,86,33,42,64,36,45,82,80,36,28,36,43,37,35,30,47,43,34,32,0,84,86,91,84,35,49,13,10,23,21,35,36,89,37,29,"Big 12","Colorado","Wide Receiver","Launch Ratings"
9319,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Josh","Cuevas",75,96,80,"Los Angeles","California","Previous",80,"Senior",85,77,81,93,76,84,59,49,30,70,73,83,83,74,66,44,42,65,86,70,46,26,61,64,43,76,80,51,49,45,26,47,43,26,48,65,54,63,0,77,84,79,61,54,46,35,22,30,47,35,36,93,63,48,"SEC","Alabama","Tight End","Launch Ratings"
24461,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Juan","Gaston",79,200,80,"Atlanta","Georgia","Eligible",73,"Freshman",73,67,75,79,93,65,41,55,27,44,53,25,27,54,26,32,62,90,91,27,46,38,29,85,29,27,80,77,70,84,47,35,59,25,27,85,82,87,0,30,31,66,27,43,45,14,10,14,32,27,32,97,43,26,"SEC","Georgia","Left Tackle","Launch Ratings"
18268,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Justin","Williams",74,60,80,"Conroe","Texas","Eligible",19,"Sophomore",92,86,77,87,83,76,73,73,45,46,70,40,69,84,48,73,85,82,83,70,41,29,64,58,65,49,80,68,63,55,45,78,70,60,82,59,53,66,0,48,49,88,70,50,85,29,15,37,27,27,30,85,48,78,"SEC","Georgia","Mike Backer","Launch Ratings"
21079,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/5.png?im=FaceCrop,padding=0.7","Justin","Wodtly",74,110,80,"Cleveland","Ohio","Previous",95,"Senior",79,69,77,83,84,88,43,85,27,41,53,26,32,57,29,65,84,81,94,26,46,25,35,47,31,30,80,58,53,51,30,86,83,26,85,51,49,61,0,27,27,72,26,43,81,33,14,22,26,11,45,87,42,29,"Big 12","Arizona State","Right Edge","Launch Ratings"
24691,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Justus","Terry",77,108,80,"Manchester","Georgia","Eligible",15,"Freshman",85,77,83,78,88,67,26,81,29,44,55,26,33,66,26,74,89,84,92,26,25,31,30,55,34,26,80,55,55,57,29,65,85,36,89,57,55,68,0,26,26,80,26,45,79,30,25,31,28,26,27,97,55,36,"SEC","Texas","Defensive Tackle","Launch Ratings"
20950,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/91.png?im=FaceCrop,padding=0.7","Justus","Ross-Simmons",75,52,80,"Rochester","New York","Eligible",12,"Senior",90,86,89,82,73,87,68,53,34,75,67,84,86,86,82,46,65,47,83,81,43,31,65,38,30,85,80,30,31,39,41,38,44,30,65,58,38,41,0,87,83,87,76,37,59,22,13,20,21,34,39,80,56,45,"ACC","Syracuse","Wide Receiver","Launch Ratings"
19357,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/108.png?im=FaceCrop,padding=0.7","Juwaun","Price",70,41,80,"Phoenix","Arizona","Previous",28,"Senior",91,86,87,88,77,83,77,49,40,77,82,50,68,84,53,40,58,51,89,79,39,40,88,43,33,59,80,54,48,54,44,54,39,38,56,49,35,38,0,64,53,87,78,75,51,13,20,27,19,15,26,91,82,41,"MAC","UMass","Halfback","Launch Ratings"
20315,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/92.png?im=FaceCrop,padding=0.7","Ka'Morreun","Pimpton",78,82,80,"Fort Worth","Texas","Eligible",88,"Junior",89,85,87,90,83,75,76,65,44,71,68,78,84,76,69,67,82,73,86,74,48,48,69,68,52,71,80,60,61,56,36,50,63,29,70,64,56,55,0,74,86,84,65,76,71,36,19,11,35,11,25,92,69,47,"Big 12","TCU","Tight End","Launch Ratings"
24693,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Kade","Phillips",72,30,80,"Missouri City","Texas","Eligible",11,"Freshman",92,88,94,85,67,75,77,59,31,75,65,66,75,87,72,45,77,62,93,85,35,33,70,52,72,69,80,45,45,45,40,77,41,83,80,54,51,50,0,67,80,92,82,60,72,28,20,24,23,29,31,88,55,82,"SEC","Texas","Cornerback","Launch Ratings"
21814,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/101.png?im=FaceCrop,padding=0.7","Kadin","Semonza",71,36,80,"Huntington Beach","California","Previous",3,"Sophomore",83,83,81,93,60,85,80,22,61,72,61,33,55,84,32,22,32,36,88,82,60,71,25,32,22,33,80,23,24,24,69,38,21,20,38,35,34,34,0,31,35,79,77,52,31,81,85,87,80,88,73,91,52,22,"The American","Tulane","Quarterback","Launch Ratings"
9420,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/74.png?im=FaceCrop,padding=0.7","Kalib","Hicks",71,55,80,"Denton","Texas","Previous",1,"Sophomore",92,86,85,85,76,72,83,49,37,82,80,60,67,86,40,42,62,45,90,86,41,47,78,38,25,49,80,56,56,52,29,38,42,31,60,49,35,37,0,55,57,88,80,79,55,10,28,28,29,18,41,87,77,25,"Big 12","Oklahoma State","Halfback","Launch Ratings"
10073,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","Kam","Franklin",77,115,80,"Lake Cormorant","Mississippi","Eligible",5,"Sophomore",87,76,83,80,84,74,42,85,45,40,56,40,48,68,40,77,87,79,86,40,29,48,41,53,34,40,80,59,52,50,24,76,84,38,83,49,47,62,0,40,40,76,40,44,81,27,32,21,29,32,42,80,42,41,"SEC","Ole Miss","Left Edge","Launch Ratings"
8451,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Kayden","McDonald",75,166,80,"Suwanee","Georgia","Eligible",98,"Junior",74,65,69,87,91,74,27,77,26,45,51,27,37,47,27,58,80,79,94,27,43,35,34,58,43,27,80,69,61,56,44,76,89,35,76,58,57,68,0,27,27,68,27,45,87,25,26,18,25,35,32,88,41,27,"Big Ten","Ohio State","Defensive Tackle","Launch Ratings"
7615,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Kedren","Young",71,82,80,"Lufkin","Texas","Eligible",21,"Freshman",91,84,87,84,78,80,73,47,46,79,83,65,67,84,52,40,59,60,87,81,44,28,95,55,45,59,80,57,54,59,47,55,41,38,57,57,55,56,0,64,66,88,75,80,55,32,19,20,32,27,34,90,83,47,"Independent","Notre Dame","Halfback","Launch Ratings"
21587,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Keelan","Marion",72,35,80,"Atlanta","Georgia","Previous",1,"Senior",92,91,87,87,67,85,91,52,46,78,73,79,82,90,81,45,65,40,88,87,38,42,97,34,52,83,80,38,28,39,29,41,44,32,59,55,40,38,0,83,83,90,84,30,58,18,14,27,21,31,29,91,52,29,"ACC","Miami","Wide Receiver","Launch Ratings"
23933,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Keelon","Russell",75,34,80,"Duncanville","Texas","Eligible",12,"Freshman",92,90,89,87,63,60,85,25,85,77,70,35,60,88,21,36,39,39,90,87,25,30,42,45,29,25,80,45,43,43,72,38,35,28,38,45,44,44,0,28,35,88,84,62,35,78,84,82,84,94,65,92,59,26,"SEC","Alabama","Quarterback","Launch Ratings"
25510,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Keontez","Lewis",74,37,80,"East St. Louis","Illinois","Previous",9,"Senior",92,89,90,86,64,80,82,55,44,77,74,83,84,87,83,43,52,63,92,85,35,35,79,58,56,85,80,34,22,30,38,63,30,61,53,60,56,55,0,81,86,89,83,60,51,35,41,45,47,41,33,85,70,57,"SEC","Oklahoma","Wide Receiver","Launch Ratings"
23871,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/125.png?im=FaceCrop,padding=0.7","Kerry","Kodanko",76,154,80,"Green Bay","Wisconsin","Previous",73,"Senior",72,55,70,84,90,85,31,45,24,34,55,28,25,51,29,27,43,90,86,27,27,41,44,78,27,25,80,75,71,81,45,32,44,26,32,81,78,84,0,27,30,59,27,37,34,15,13,12,36,11,48,83,35,25,"Big Ten","Wisconsin","Right Guard","Launch Ratings"
4659,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Khalil","Dinkins",76,91,80,"Wexford","Pennsylvania","Previous",16,"Senior",87,80,84,91,73,81,73,57,32,74,74,82,70,73,64,51,66,70,87,68,45,38,62,65,43,75,80,58,49,58,40,53,54,31,56,70,57,55,0,82,83,79,61,76,56,29,24,18,46,36,33,87,73,60,"Big Ten","Penn State","Tight End","Launch Ratings"
8712,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/78.png?im=FaceCrop,padding=0.7","Kobe","Singleton",71,28,80,"Tallahassee","Florida","Previous",0,"Senior",93,91,89,89,61,84,48,49,47,43,43,57,78,88,23,29,67,53,82,58,24,39,51,55,78,26,80,65,62,55,30,83,38,79,76,58,54,65,0,29,66,90,57,53,63,28,16,32,10,14,31,82,42,75,"Pac-12","Oregon State","Cornerback","Launch Ratings"
19135,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Kobe","McCloud",71,65,80,"Tampa","Florida","Previous",21,"Junior",88,82,82,84,77,85,41,71,42,40,61,38,58,76,34,52,89,65,87,41,27,33,42,46,66,32,80,57,48,48,40,84,62,34,88,45,45,55,0,32,35,84,44,41,85,26,17,37,35,29,25,88,40,68,"ACC","Clemson","Will Backer","Launch Ratings"
22750,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Kobe","Black",74,39,80,"Waco","Texas","Eligible",6,"Sophomore",96,92,92,90,61,74,72,51,44,43,65,50,71,93,47,48,75,56,82,83,35,33,71,57,79,46,80,66,58,51,39,72,48,76,78,57,53,66,0,45,49,93,77,51,65,24,32,22,19,37,30,86,42,71,"SEC","Texas","Cornerback","Launch Ratings"
19164,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Kobie","McKinzie",74,76,80,"Lubbock","Texas","Previous",11,"Junior",88,80,86,82,80,83,43,76,45,45,54,50,56,75,34,62,83,78,94,40,28,39,38,55,62,34,80,65,61,53,28,83,74,31,86,57,52,65,0,31,31,82,43,45,84,19,12,35,30,34,45,91,47,75,"SEC","Oklahoma","Mike Backer","Launch Ratings"
20634,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/39.png?im=FaceCrop,padding=0.7","Koen","Entringer",73,51,80,"Ypsilanti","Michigan","Previous",4,"Junior",90,84,87,87,73,74,74,63,50,67,69,44,71,81,29,40,82,60,86,76,29,34,56,55,75,28,80,67,60,56,25,77,49,69,87,54,54,69,0,27,36,88,72,60,79,37,15,32,10,22,34,79,58,75,"Big Ten","Iowa","Strong Safety","Launch Ratings"
18349,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/105.png?im=FaceCrop,padding=0.7","Kwazi","Gilmer",74,20,80,"Los Angeles","California","Eligible",3,"Sophomore",93,92,89,87,58,81,85,43,25,78,58,79,84,90,79,33,48,34,88,88,35,38,77,32,56,81,80,31,19,28,44,46,37,34,47,44,32,28,0,77,89,91,85,31,41,25,26,15,20,38,39,83,36,35,"Big Ten","UCLA","Wide Receiver","Launch Ratings"
10016,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Kyngstonn","Viliamu-Asa",75,70,80,"Inland Empire","California","Eligible",27,"Sophomore",87,81,85,84,77,80,54,76,45,44,62,41,64,77,39,77,84,77,90,61,44,33,56,56,70,41,80,60,55,51,33,81,71,47,88,52,50,58,0,41,38,83,59,42,82,32,22,30,17,37,46,86,54,77,"Independent","Notre Dame","Mike Backer","Launch Ratings"
24665,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Lamont","Rogers",78,170,80,"Mesquite","Texas","Eligible",79,"Freshman",75,65,76,83,91,71,44,62,24,44,50,27,29,57,21,36,65,89,95,30,23,22,29,85,21,22,80,79,74,85,25,43,61,27,34,84,83,84,0,32,29,64,32,46,43,13,30,37,34,14,22,93,44,22,"SEC","Texas A&M","Left Tackle","Launch Ratings"
33889,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/30.png?im=FaceCrop,padding=0.7","Landen","Thomas",76,74,80,"Moultrie","Georgia","Eligible",18,"Sophomore",84,83,85,94,70,79,75,42,26,72,74,81,84,80,65,34,68,67,80,72,41,47,71,67,56,72,80,56,52,57,39,53,33,31,33,66,61,63,0,73,88,81,70,68,36,31,33,25,44,22,36,90,68,49,"ACC","Florida State","Tight End","Launch Ratings"
525,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/35.png?im=FaceCrop,padding=0.7","Landon","Sims",74,60,80,"Gig Harbor","Washington","Previous",30,"Senior",88,79,79,88,79,80,81,46,39,77,84,75,70,77,61,40,58,65,91,81,34,35,72,60,31,67,80,69,59,57,31,50,38,36,52,61,55,57,0,71,67,85,75,82,50,28,34,35,20,39,25,92,84,35,"Mountain West","Hawaii","Halfback","Launch Ratings"
22902,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/109.png?im=FaceCrop,padding=0.7","Laterrance","Welch",73,30,80,"Lafayette","Louisiana","Eligible",0,"Junior",94,89,94,86,61,77,61,51,42,40,60,48,70,87,39,43,74,54,89,73,48,34,62,57,81,41,80,62,61,51,36,76,45,75,74,58,53,66,0,41,47,92,68,46,61,10,20,30,37,29,25,91,39,73,"Mountain West","UNLV","Cornerback","Launch Ratings"
10136,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Lincoln","Kienholz",75,47,80,"Pierre","South Dakota","Previous",3,"Junior",84,82,87,87,65,77,76,39,77,66,66,33,46,80,29,37,42,34,90,79,42,31,27,35,51,25,80,36,27,27,75,43,37,44,37,31,28,27,0,32,37,80,75,50,35,80,85,86,83,91,72,88,58,68,"Big Ten","Ohio State","Quarterback","Launch Ratings"
6119,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/23.png?im=FaceCrop,padding=0.7","Louis","Hansen",77,80,80,"Dover","Massachusetts","Previous",81,"Senior",87,82,85,91,72,84,78,56,37,71,72,84,84,78,65,54,38,58,87,74,29,45,70,56,52,71,80,62,48,56,28,44,52,23,52,63,55,58,0,79,81,79,67,67,59,14,33,16,34,37,26,94,73,31,"The American","Connecticut","Tight End","Launch Ratings"
6838,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/57.png?im=FaceCrop,padding=0.7","Malachi","Coleman",77,35,80,"Lincoln","Nebraska","Previous",16,"Sophomore",93,88,92,87,69,75,77,49,41,66,61,79,85,84,83,41,62,45,83,80,30,46,64,34,54,81,80,30,16,26,28,62,44,42,60,56,29,28,0,80,90,96,75,35,59,37,10,14,19,16,32,85,40,69,"Big Ten","Minnesota","Wide Receiver","Launch Ratings"
20578,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Mario","Craver",70,5,80,"Birmingham","Alabama","Eligible",1,"Sophomore",93,93,88,91,50,79,84,31,47,75,58,77,84,92,85,25,28,32,87,88,27,30,95,28,54,81,80,28,15,27,48,64,25,43,25,34,20,20,0,78,85,92,86,21,26,30,10,19,11,25,31,87,33,54,"SEC","Texas A&M","Wide Receiver","Launch Ratings"
19862,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/26.png?im=FaceCrop,padding=0.7","Marlon","Gunn Jr.",72,47,80,"Baton Rouge","Louisiana","Eligible",21,"Senior",91,85,87,87,75,79,81,52,27,82,81,64,63,85,51,44,64,47,85,81,46,35,63,43,37,57,80,53,52,50,44,46,44,34,58,49,37,40,0,63,53,87,75,77,56,21,17,20,32,20,39,90,80,55,"The American","East Carolina","Halfback","Launch Ratings"
7307,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/109.png?im=FaceCrop,padding=0.7","Marsel","McDuffie",73,85,80,"Grand Prairie","Texas","Previous",8,"Senior",84,76,80,85,77,83,23,77,43,45,55,53,59,76,25,60,88,78,91,55,24,24,34,56,69,24,80,67,46,41,32,84,65,61,85,60,55,66,0,24,54,80,53,55,85,10,28,14,23,24,33,90,56,76,"Mountain West","UNLV","Mike Backer","Launch Ratings"
20153,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/123.png?im=FaceCrop,padding=0.7","Marshall","Jackson",78,144,80,"Brandenburg","Kentucky","Previous",53,"Senior",68,62,71,85,85,88,41,47,28,37,50,29,30,53,28,31,51,88,90,33,44,40,27,80,28,27,80,85,80,88,39,33,49,33,29,78,76,81,0,29,32,60,33,40,40,21,30,27,16,28,27,86,38,29,"Conference USA","Western Kentucky","Left Tackle","Launch Ratings"
21715,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/12.png?im=FaceCrop,padding=0.7","Mason","Randolph",76,149,80,"Yorba Linda","California","Previous",63,"Senior",73,63,74,88,86,83,38,49,26,37,55,36,36,61,38,42,48,88,83,37,45,27,40,86,37,33,80,80,75,85,47,42,47,33,39,84,86,82,0,38,32,58,37,39,39,36,34,16,12,21,41,86,37,29,"Mountain West","Boise State","Center","Launch Ratings"
6160,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/34.png?im=FaceCrop,padding=0.7","Melvin","Jordan IV",71,70,80,"St. Petersburg","Florida","Previous",0,"Junior",87,82,84,82,74,81,44,72,39,39,54,39,59,76,35,66,85,71,87,44,32,26,42,48,76,33,80,52,47,42,29,83,63,62,86,44,46,52,0,33,31,82,46,38,82,36,10,30,25,19,27,87,38,79,"ACC","Georgia Tech","Mike Backer","Launch Ratings"
18377,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/37.png?im=FaceCrop,padding=0.7","Melvin","Priestly",76,155,80,"St. Louis","Missouri","Previous",58,"Senior",75,73,74,88,87,85,33,46,33,36,56,35,36,60,34,42,42,88,85,35,40,31,34,86,34,34,80,85,80,87,33,33,42,39,38,80,82,78,0,35,40,63,39,32,32,17,37,23,34,13,32,88,36,34,"Big Ten","Illinois","Right Tackle","Launch Ratings"
25502,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/45.png?im=FaceCrop,padding=0.7","Mi'Quise","Humphrey-Grace",76,110,80,"Cincinnati","Ohio","InEligible",90,"Junior",85,76,82,82,81,82,60,76,44,55,63,55,64,72,42,78,87,77,95,54,23,24,35,44,42,42,80,48,47,44,47,84,84,49,89,40,41,51,0,42,61,80,53,62,83,12,36,23,12,35,35,91,58,43,"SEC","Kentucky","Left Edge","Launch Ratings"
21880,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/88.png?im=FaceCrop,padding=0.7","Michael","Smith",78,88,80,"Savannah","Georgia","Eligible",4,"Sophomore",89,85,89,91,71,73,74,46,25,73,72,79,83,81,65,41,77,70,84,71,47,47,72,66,57,71,80,59,52,56,38,58,40,35,40,63,59,63,0,81,85,82,66,73,44,16,25,19,38,19,26,91,69,58,"SEC","South Carolina","Tight End","Launch Ratings"
21438,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/18.png?im=FaceCrop,padding=0.7","Michael","Heldman",76,100,80,"Romeo","Michigan","Previous",97,"Senior",83,72,80,79,81,86,48,78,30,48,57,34,36,63,31,72,84,72,85,31,46,35,41,47,41,32,80,66,47,41,36,84,86,35,87,57,55,66,0,34,34,73,34,46,83,11,28,26,12,17,29,80,47,45,"MAC","Central Michigan","Right Edge","Launch Ratings"
18275,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Michael","Hawkins Jr.",73,46,80,"Dallas","Texas","Eligible",3,"Sophomore",93,92,88,94,59,74,87,38,79,75,74,27,63,89,31,35,38,35,87,85,26,32,30,36,32,26,80,42,32,31,64,27,36,42,62,32,24,28,0,26,27,90,79,58,40,71,75,79,89,89,66,93,55,35,"SEC","Oklahoma","Quarterback","Launch Ratings"
23934,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Michael","Carroll",78,161,80,"Bradenton","Florida","Eligible",64,"Freshman",85,70,77,83,88,70,46,58,25,44,51,29,31,60,32,29,66,88,95,32,21,25,15,92,24,30,80,82,80,84,28,47,65,30,29,83,85,81,0,29,28,70,26,48,47,27,14,29,17,36,31,90,46,28,"SEC","Alabama","Right Guard","Launch Ratings"
9726,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/105.png?im=FaceCrop,padding=0.7","Mikey","Matthews",69,20,80,"Irvine","California","Eligible",7,"Sophomore",95,95,92,91,55,75,75,45,25,76,70,76,83,93,81,38,48,32,74,89,40,40,91,35,63,80,80,34,22,34,47,60,37,41,48,43,23,24,0,82,85,92,85,26,45,14,12,17,34,31,39,87,52,57,"Big Ten","UCLA","Wide Receiver","Launch Ratings"
20106,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","Myles","Graham",73,67,80,"Gainesville","Florida","Eligible",5,"Sophomore",91,85,85,86,70,80,75,72,31,71,74,50,71,81,46,76,87,73,80,70,36,29,50,50,75,48,80,40,36,37,47,83,66,64,87,29,37,40,0,48,46,84,69,68,85,15,27,28,31,13,27,82,71,73,"SEC","Florida","Will Backer","Launch Ratings"
24952,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Na'eem","Offord",73,25,80,"Birmingham","Alabama","Eligible",14,"Freshman",94,92,92,83,60,70,78,59,47,74,65,63,75,91,54,44,76,57,92,83,24,26,75,44,81,55,80,44,42,43,29,73,33,84,85,47,45,45,0,57,71,90,77,52,66,33,35,44,45,41,32,85,45,83,"Big Ten","Oregon","Cornerback","Launch Ratings"
19735,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/60.png?im=FaceCrop,padding=0.7","Nathan","Kent",75,20,80,"Rocklin","California","Eligible",82,"Senior",91,87,89,91,62,88,77,38,40,69,72,84,85,84,83,33,38,32,86,82,46,38,73,34,62,77,80,36,28,36,43,52,30,37,36,60,28,27,0,79,85,92,76,55,37,10,13,35,17,26,32,94,45,42,"The American","Navy","Wide Receiver","Launch Ratings"
22587,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Neto","Umeozulu",76,165,80,"Allen","Texas","Previous",72,"Junior",77,73,73,88,87,71,40,51,26,38,55,37,37,57,36,41,52,87,85,37,24,24,35,82,34,36,80,83,78,87,24,37,50,34,35,81,80,85,0,35,37,61,40,37,40,28,18,29,28,19,47,89,40,34,"SEC","Texas","Left Guard","Launch Ratings"
4643,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Nick","Dawkins",76,135,80,"Allentown","Pennsylvania","Previous",53,"Senior",64,65,61,85,92,90,28,54,46,45,57,28,28,58,26,31,60,86,86,29,26,38,29,77,29,25,80,82,78,85,28,44,62,26,30,83,85,77,0,25,26,52,25,46,45,20,19,32,12,21,37,85,44,21,"Big Ten","Penn State","Center","Launch Ratings"
20830,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/24.png?im=FaceCrop,padding=0.7","Nick","Morris Jr.",75,76,80,"Fairfield","Connecticut","Previous",36,"Senior",87,83,84,80,78,81,44,72,43,43,52,46,70,78,31,61,81,70,90,43,26,26,38,49,68,35,80,61,56,51,42,77,61,31,87,52,51,59,0,31,35,79,40,42,89,31,34,26,18,13,42,92,42,73,"ACC","Duke","Mike Backer","Launch Ratings"
7666,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/129.png?im=FaceCrop,padding=0.7","Nick","Del Grande",76,140,80,"Lancaster","Pennsylvania","Previous",62,"Junior",75,64,72,85,87,92,37,50,24,37,52,33,30,56,34,36,50,89,86,31,35,26,30,81,32,32,80,83,79,86,35,34,50,29,34,77,79,75,0,32,33,68,35,38,37,33,28,35,22,20,44,82,37,32,"Sun Belt","Coastal Carolina","Left Tackle","Launch Ratings"
21406,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/80.png?im=FaceCrop,padding=0.7","Nick","James",74,120,80,"Prattville","Alabama","Previous",11,"Junior",78,65,76,90,84,85,30,83,29,36,54,30,34,51,30,66,81,72,95,28,36,27,38,54,33,30,80,67,61,56,46,83,82,28,78,55,53,65,0,26,29,69,29,40,86,33,11,24,37,31,47,94,39,25,"ACC","Pittsburgh","Defensive Tackle","Launch Ratings"
20618,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/61.png?im=FaceCrop,padding=0.7","Noah","Rogers",74,45,80,"Raleigh","North Carolina","Previous",5,"Sophomore",93,90,90,87,69,80,74,53,34,75,69,83,86,88,79,45,62,41,80,83,27,25,85,38,56,83,80,33,24,32,39,53,43,38,62,55,36,36,0,85,85,91,78,35,57,14,23,30,31,26,32,86,52,50,"ACC","NC State","Wide Receiver","Launch Ratings"
10024,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Noah","Burnette",70,25,80,"Raleigh","North Carolina","Previous",98,"Senior",67,54,67,85,49,69,41,39,48,36,50,32,25,55,27,31,26,48,92,24,90,90,26,33,32,32,80,28,49,36,36,43,38,43,37,13,40,47,0,28,43,65,34,30,37,37,15,20,31,36,26,90,30,30,"Independent","Notre Dame","Kicker","Launch Ratings"
10287,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/50.png?im=FaceCrop,padding=0.7","Octavian","Smith Jr.",72,22,80,"Burtonsville","Maryland","Eligible",5,"Senior",93,92,91,91,54,81,77,32,27,75,72,78,84,92,82,26,31,29,89,85,45,39,95,28,64,82,80,29,18,30,37,56,24,38,29,46,20,19,0,84,82,92,83,29,32,32,21,26,30,21,46,84,48,43,"Big Ten","Maryland","Wide Receiver","Launch Ratings"
22661,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/122.png?im=FaceCrop,padding=0.7","Oliver","Straw",74,48,80,"Melbourne","Non-US","Eligible",41,"Senior",55,53,61,86,51,66,45,37,40,43,58,26,40,49,45,29,28,45,85,25,92,90,33,44,37,46,80,37,47,39,39,41,42,40,32,12,42,38,0,47,35,53,45,48,35,11,20,16,28,22,34,92,35,27,"Big 12","West Virginia","Punter","Launch Ratings"
22864,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/34.png?im=FaceCrop,padding=0.7","Omar","Daniels",72,35,80,"Moultrie","Georgia","Previous",9,"Senior",93,89,89,93,62,81,55,46,31,33,53,33,64,86,38,37,62,44,79,65,31,39,54,57,75,34,80,61,60,53,36,82,33,76,78,54,52,59,0,37,36,90,64,38,69,10,30,15,11,31,45,87,34,75,"ACC","Georgia Tech","Free Safety","Launch Ratings"
658,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/69.png?im=FaceCrop,padding=0.7","Ore","Adeyi",71,28,80,"Mansfield","Texas","Previous",7,"Junior",94,89,90,89,60,79,65,48,42,41,59,38,57,88,42,35,71,51,84,75,41,41,62,55,77,38,80,66,62,52,25,81,44,82,79,56,53,66,0,42,38,90,71,46,59,36,15,33,10,25,26,84,39,84,"Big Ten","Northwestern","Cornerback","Launch Ratings"
2918,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/112.png?im=FaceCrop,padding=0.7","Otto","Tia",76,60,80,"Layton","Utah","Previous",5,"Senior",87,85,89,85,81,84,61,57,28,68,74,90,85,83,82,44,72,45,93,75,30,30,66,39,25,78,80,37,30,38,45,34,47,29,65,60,39,39,0,85,92,86,72,34,65,30,36,36,15,10,40,91,50,43,"Big 12","Utah","Wide Receiver","Launch Ratings"
10717,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","Percy","Lewis",79,195,80,"Sallis","Mississippi","Eligible",73,"Senior",62,51,69,80,93,84,48,63,32,46,50,27,24,46,29,27,68,90,90,24,38,24,26,75,29,29,80,75,66,83,45,49,69,24,28,81,75,86,0,29,24,53,25,47,49,18,37,31,19,17,38,87,46,25,"SEC","Ole Miss","Left Tackle","Launch Ratings"
3552,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/104.png?im=FaceCrop,padding=0.7","Phillip","Dunnam",73,30,80,"Miami Beach","Florida","Previous",2,"Junior",92,89,89,94,64,77,68,57,39,38,59,43,72,87,40,46,74,56,86,64,41,35,60,54,75,42,80,61,60,53,27,78,39,70,87,49,52,62,0,42,44,90,64,50,74,12,11,33,14,22,27,87,46,78,"Big 12","UCF","Free Safety","Launch Ratings"
8195,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/21.png?im=FaceCrop,padding=0.7","Phillip","Houston",77,130,80,"McKinney","Texas","Previous",54,"Senior",84,79,82,94,86,87,46,57,48,46,61,45,48,65,49,57,63,83,77,46,37,47,44,89,45,47,80,74,77,72,28,50,61,46,46,85,89,81,0,49,45,74,48,45,42,18,27,20,33,30,47,88,44,44,"Big 12","Colorado","Right Tackle","Launch Ratings"
14580,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/24.png?im=FaceCrop,padding=0.7","Que'Sean","Brown",68,5,80,"Winston-Salem","North Carolina","Previous",7,"Sophomore",94,91,84,90,53,81,85,53,27,75,80,79,85,89,77,43,67,45,91,88,36,37,87,35,34,82,80,37,31,42,30,34,44,29,64,48,40,40,0,84,87,91,83,32,58,22,24,14,34,25,34,79,48,34,"ACC","Duke","Wide Receiver","Launch Ratings"
20208,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Quinton","Martin Jr.",73,46,80,"Belle Vernon","Pennsylvania","Previous",25,"Freshman",96,90,86,85,71,70,75,43,30,83,76,64,72,90,54,35,47,48,88,82,38,32,89,43,25,60,80,55,47,56,28,52,35,37,46,48,35,37,0,71,67,92,78,82,45,21,16,25,17,31,27,87,75,35,"Big Ten","Penn State","Halfback","Launch Ratings"
138,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/124.png?im=FaceCrop,padding=0.7","Raheem","Anderson",74,161,80,"Detroit","Michigan","Previous",62,"Senior",72,61,74,82,89,82,37,53,36,40,57,41,38,57,39,48,59,87,94,38,35,35,28,79,39,40,80,74,76,83,40,41,55,39,41,77,83,89,0,41,40,58,39,41,43,26,35,26,24,13,24,84,40,34,"MAC","Western Michigan","Center","Launch Ratings"
19350,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/30.png?im=FaceCrop,padding=0.7","Randy","Pittman Jr.",74,80,80,"Panama City","Florida","Eligible",13,"Junior",86,80,83,95,71,87,71,41,26,66,68,82,83,75,69,36,25,48,88,66,43,38,61,43,42,75,80,55,51,41,29,47,33,27,36,70,68,60,0,74,84,82,62,56,38,36,28,36,48,26,45,95,61,52,"ACC","Florida State","Tight End","Launch Ratings"
3074,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/78.png?im=FaceCrop,padding=0.7","Riley","Williams",77,113,80,"Portland","Oregon","Eligible",88,"Junior",78,65,81,92,81,78,67,31,40,72,69,81,78,63,65,25,70,67,85,64,44,31,77,62,26,71,80,68,57,65,32,34,25,18,23,71,68,68,0,83,83,73,61,77,23,17,11,37,40,17,30,91,74,42,"Pac-12","Oregon State","Tight End","Launch Ratings"
22130,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/86.png?im=FaceCrop,padding=0.7","Romello","Brinson",74,26,80,"Miami","Florida","Previous",3,"Senior",95,89,91,89,59,79,85,44,39,73,65,79,83,87,82,36,48,38,77,83,33,47,84,33,54,85,80,32,22,30,32,80,34,36,44,50,29,30,0,83,89,92,76,36,43,20,30,22,19,28,44,81,50,44,"ACC","SMU","Wide Receiver","Launch Ratings"
2353,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Ryan","Rodriguez",74,115,80,"Miami","Florida","Previous",76,"Senior",79,75,81,89,82,81,44,56,33,45,59,42,45,57,42,51,65,85,83,43,33,37,42,84,46,45,80,76,83,73,33,49,61,47,43,72,90,75,0,41,42,68,44,42,48,25,16,14,34,10,29,85,42,41,"ACC","Miami","Left Guard","Launch Ratings"
7003,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/78.png?im=FaceCrop,padding=0.7","Salahadin","Allah",71,62,80,"La Marque","Texas","Eligible",26,"Sophomore",88,82,81,89,77,83,84,40,44,76,85,60,67,79,45,33,46,49,91,82,37,28,60,41,30,55,80,53,45,55,48,46,35,34,45,47,34,35,0,66,62,85,79,78,42,17,30,10,18,32,38,86,79,62,"Pac-12","Oregon State","Halfback","Launch Ratings"
18273,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/111.png?im=FaceCrop,padding=0.7","Sam","Franklin",70,44,80,"Little Rock","Arkansas","Previous",4,"Senior",92,86,89,92,70,82,76,45,26,78,79,51,60,84,36,36,50,41,89,84,30,34,63,36,37,53,80,55,45,51,42,42,34,32,45,47,32,38,0,53,49,89,76,73,46,16,13,30,18,27,41,86,73,35,"The American","USF","Halfback","Launch Ratings"
19725,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/42.png?im=FaceCrop,padding=0.7","Sam","Hecht",76,140,80,"Shawnee","Kansas","Previous",75,"Senior",75,70,72,96,81,86,33,45,24,32,53,33,33,57,30,32,43,85,85,33,40,35,30,87,30,31,80,83,82,84,29,36,44,33,32,77,79,75,0,29,30,69,27,34,37,25,22,35,24,29,41,90,34,23,"Big 12","Kansas State","Center","Launch Ratings"
20261,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/4.png?im=FaceCrop,padding=0.7","Sam","Olson",75,71,80,"Visalia","California","Previous",84,"Senior",85,75,81,98,71,77,64,48,26,71,69,81,79,71,73,44,35,57,90,56,39,38,50,52,28,78,80,57,62,52,24,38,42,20,45,66,61,57,0,79,83,80,55,66,49,29,31,32,37,29,33,93,71,46,"Big 12","Arizona","Tight End","Launch Ratings"
19906,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Sammy","Omosigho",73,75,80,"Heartland","Texas","Eligible",7,"Junior",93,83,85,79,76,76,45,78,36,37,55,37,58,79,45,66,83,71,89,45,36,36,45,55,72,45,80,64,60,53,36,77,74,57,87,53,55,64,0,45,45,84,45,37,81,24,24,24,24,24,36,87,37,79,"SEC","Oklahoma","Will Backer","Launch Ratings"
6225,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Samson","Okunlola",78,140,80,"Brockton","Massachusetts","Previous",63,"Sophomore",75,70,74,83,87,78,39,50,28,41,51,37,34,55,34,42,52,88,83,33,28,39,31,81,32,31,80,84,87,82,26,37,51,31,34,80,85,75,0,35,36,61,36,41,40,19,30,36,10,38,40,84,36,34,"ACC","Miami","Left Tackle","Launch Ratings"
33891,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/30.png?im=FaceCrop,padding=0.7","Samuel","Singleton Jr.",71,41,80,"Charleston","South Carolina","Previous",28,"Sophomore",93,89,85,84,67,75,77,35,55,77,74,65,71,87,57,35,35,54,90,86,32,32,93,49,45,61,80,54,52,56,41,43,33,44,44,46,34,34,0,67,64,91,83,65,41,44,45,46,45,51,32,87,65,42,"ACC","Florida State","Halfback","Launch Ratings"
18618,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/83.png?im=FaceCrop,padding=0.7","Samuel","Brown V",73,65,80,"Philadelphia","Pennsylvania","Eligible",27,"Senior",87,81,86,84,79,79,79,55,26,78,82,62,65,81,50,48,71,58,83,81,43,35,81,48,31,56,80,62,58,60,24,38,48,31,65,52,37,43,0,64,60,90,75,84,65,18,11,33,27,11,45,87,84,27,"Big Ten","Rutgers","Halfback","Launch Ratings"
9174,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/100.png?im=FaceCrop,padding=0.7","Scott Taylor","Renfroe",73,40,80,"Troy","Alabama","Previous",40,"Senior",70,63,73,85,46,71,43,37,26,28,55,35,37,45,40,29,42,48,87,37,88,89,45,25,34,45,80,38,51,54,31,37,48,48,40,16,48,42,0,37,38,67,40,28,25,36,28,22,35,21,24,84,30,32,"Sun Belt","Troy","Kicker","Launch Ratings"
5860,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/74.png?im=FaceCrop,padding=0.7","Sesi","Vailahi",69,46,80,"Salt Lake City","Utah","Previous",3,"Sophomore",88,83,83,86,75,78,87,49,36,76,83,70,73,84,54,40,59,56,92,84,45,31,60,52,35,64,80,57,54,52,29,40,42,31,52,55,54,55,0,71,65,86,82,69,55,10,14,31,11,13,30,89,79,44,"Big 12","Oklahoma State","Halfback","Launch Ratings"
21308,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Sione","Laulea",76,30,80,"Mountain View","California","Previous",3,"Junior",94,88,90,88,60,74,54,49,39,37,56,41,66,85,33,51,67,52,83,63,46,31,56,55,81,32,80,62,58,52,47,78,39,86,75,57,55,63,0,34,43,91,60,44,65,10,27,15,21,30,45,88,37,83,"Big Ten","Oregon","Cornerback","Launch Ratings"
5953,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/65.png?im=FaceCrop,padding=0.7","Sone","Aupiu",73,65,80,"Long Beach","California","Previous",14,"Junior",84,79,81,90,75,85,30,76,40,40,45,41,74,77,29,57,79,76,92,32,32,35,28,45,66,26,80,52,47,42,39,86,65,47,85,44,46,55,0,28,25,80,29,39,84,14,35,16,17,17,37,86,54,79,"Conference USA","New Mexico State","Mike Backer","Launch Ratings"
207,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/38.png?im=FaceCrop,padding=0.7","Stephen","Daley",73,100,80,"Winchester","Virginia","Eligible",8,"Senior",89,82,87,78,76,89,46,79,35,46,58,47,57,76,49,83,81,77,84,47,24,39,51,53,53,49,80,70,49,40,28,88,87,53,87,61,57,68,0,50,49,79,47,47,74,23,12,21,20,22,42,83,45,63,"Big Ten","Indiana","Left Edge","Launch Ratings"
7026,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Stephiylan","Green",76,130,80,"Rome","Georgia","Previous",90,"Sophomore",82,68,78,80,87,78,30,81,40,37,54,31,35,59,31,77,84,83,90,30,25,30,35,55,35,31,80,63,58,51,41,82,82,31,85,53,52,60,0,32,29,67,30,38,87,34,35,10,15,24,48,90,38,37,"ACC","Clemson","Defensive Tackle","Launch Ratings"
2532,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","T.J.","Searcy",77,95,80,"Thomaston","Georgia","Eligible",18,"Junior",88,78,84,78,82,84,33,77,36,44,57,44,44,71,33,82,84,76,87,33,36,36,40,58,65,33,80,68,62,55,36,85,76,31,81,61,57,67,0,33,33,80,33,44,84,24,24,24,24,24,36,84,44,70,"SEC","Texas A&M","Left Edge","Launch Ratings"
8074,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/108.png?im=FaceCrop,padding=0.7","T.Y.","Harding",69,20,80,"Cambridge","Massachusetts","Previous",10,"Junior",94,88,83,91,55,85,67,40,39,62,75,85,86,87,83,31,46,29,75,74,32,28,80,31,51,84,80,33,16,28,40,42,34,31,40,47,28,28,0,85,85,92,70,24,43,37,26,24,36,32,29,89,47,28,"MAC","UMass","Wide Receiver","Launch Ratings"
3025,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/16.png?im=FaceCrop,padding=0.7","Tanner","Wall",73,45,80,"Arlington","Virginia","Previous",28,"Senior",89,85,84,91,73,87,45,59,42,44,68,61,72,83,24,26,87,62,92,46,43,30,53,57,65,26,80,63,60,53,34,86,41,67,83,47,54,68,0,25,62,85,46,64,71,31,37,33,21,26,25,90,59,76,"Big 12","BYU","Free Safety","Launch Ratings"
681,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/37.png?im=FaceCrop,padding=0.7","Tanner","Arkin",76,105,80,"Fort Collins","Colorado","Previous",85,"Senior",81,75,81,87,85,80,52,67,25,76,77,85,82,71,64,65,49,64,96,58,47,40,49,58,23,65,80,64,65,59,28,37,64,19,69,67,71,67,0,75,80,77,53,72,69,13,31,16,28,13,26,95,71,49,"Big Ten","Illinois","Tight End","Launch Ratings"
21140,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/84.png?im=FaceCrop,padding=0.7","Tano","Letuli",74,80,80,"San Diego","California","Previous",21,"Junior",84,77,80,85,80,87,27,78,47,47,45,50,56,75,28,61,86,71,91,30,38,35,38,50,70,30,80,70,45,41,35,85,80,52,85,57,55,67,0,27,27,79,31,46,83,19,17,21,31,28,40,94,47,74,"Mountain West","San Diego State","Mike Backer","Launch Ratings"
24913,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Tavien","St. Clair",76,65,80,"Bellefontaine","Ohio","Eligible",9,"Freshman",86,86,89,84,73,69,81,35,85,75,75,33,55,85,29,37,49,55,95,85,30,31,45,45,41,25,80,36,35,35,56,43,37,52,42,31,28,27,0,32,37,88,81,72,40,75,78,77,85,95,71,91,73,48,"Big Ten","Ohio State","Quarterback","Launch Ratings"
21222,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/4.png?im=FaceCrop,padding=0.7","Taye","Brown",74,71,80,"Chandler","Arizona","Eligible",6,"Junior",88,81,81,91,74,84,34,72,29,37,54,37,52,76,36,50,86,66,90,31,48,31,40,56,64,36,80,64,60,51,28,85,57,37,87,58,53,65,0,31,33,84,33,40,88,30,30,27,37,32,25,90,39,69,"Big 12","Arizona","Mike Backer","Launch Ratings"
14824,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/42.png?im=FaceCrop,padding=0.7","Taylor","Poitier",75,142,80,"Kansas City","Kansas","Previous",69,"Senior",78,66,74,88,90,87,46,61,48,49,54,37,36,53,40,44,68,85,83,40,48,36,37,84,37,35,80,77,73,80,40,45,68,35,41,82,83,82,0,40,36,62,35,46,47,32,29,24,27,12,47,88,49,36,"Big 12","Kansas State","Right Guard","Launch Ratings"
22520,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Tegra","Tshabola",78,167,80,"West Chester","Ohio","Previous",77,"Senior",66,68,71,84,93,77,45,58,40,46,50,27,24,53,24,32,63,87,88,25,28,35,25,80,25,25,80,78,73,83,38,43,63,29,30,79,74,85,0,24,27,57,24,45,46,18,36,29,23,28,27,86,44,27,"Big Ten","Ohio State","Right Guard","Launch Ratings"
33047,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/68.png?im=FaceCrop,padding=0.7","Telly","Johnson Jr.",71,49,80,"Augusta","Georgia","Eligible",1,"Sophomore",91,85,85,87,70,77,77,31,39,79,78,55,69,83,43,31,46,57,92,86,39,36,76,45,30,50,80,59,57,56,39,65,38,29,31,47,43,44,0,55,53,89,84,71,45,22,10,14,20,36,38,90,75,36,"MAC","Northern Illinois","Halfback","Launch Ratings"
19509,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/90.png?im=FaceCrop,padding=0.7","Tevarua","Tafiti",74,80,80,"Waipahu","Hawaii","Previous",11,"Senior",89,84,85,84,78,86,39,77,33,38,57,37,54,78,40,88,85,71,85,39,31,40,42,57,62,39,80,67,62,52,25,88,87,32,92,58,54,66,0,39,39,82,39,37,74,25,28,28,35,26,44,82,40,71,"ACC","Stanford","Sam Backer","Launch Ratings"
21333,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/37.png?im=FaceCrop,padding=0.7","Tomiwa","Durojaiye",77,140,80,"Philadelphia","Pennsylvania","Previous",36,"Junior",85,76,80,76,81,77,35,84,24,37,56,39,41,70,40,77,83,76,91,38,28,37,43,47,54,39,80,49,48,42,41,79,81,34,95,38,40,48,0,40,40,75,39,36,86,25,14,23,19,20,40,81,36,61,"Big Ten","Illinois","Right Edge","Launch Ratings"
3550,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/41.png?im=FaceCrop,padding=0.7","Tommy","Dunn Jr.",75,145,80,"Garland","Texas","Previous",92,"Senior",71,62,66,91,89,83,23,83,26,45,51,23,27,48,26,57,85,74,97,25,25,27,36,59,26,26,80,70,63,57,38,82,83,24,85,58,57,68,0,26,23,60,26,43,84,28,27,25,13,21,46,94,43,23,"Big 12","Kansas","Defensive Tackle","Launch Ratings"
8165,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/130.png?im=FaceCrop,padding=0.7","Tracy","Hill Jr.",74,40,80,"Athens","Georgia","Previous",12,"Junior",92,88,87,92,62,84,42,53,42,72,59,60,70,86,25,33,69,46,88,52,25,47,51,57,77,26,80,64,49,42,30,83,35,77,82,59,53,66,0,25,61,88,53,49,72,31,34,31,32,34,29,76,40,78,"Sun Belt","Georgia Southern","Cornerback","Launch Ratings"
21132,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/88.png?im=FaceCrop,padding=0.7","Tree","Babalade",77,170,80,"Hyattsville","Maryland","Previous",51,"Sophomore",66,59,69,82,91,78,44,53,26,43,54,24,25,54,30,32,62,88,91,24,26,48,24,82,29,27,80,83,78,86,34,39,60,29,26,79,75,83,0,30,24,56,24,44,45,35,15,21,37,18,45,85,42,25,"SEC","South Carolina","Left Guard","Launch Ratings"
10093,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/117.png?im=FaceCrop,padding=0.7","Trell","Harris",72,40,80,"La Grange","Illinois","Eligible",11,"Senior",92,89,90,88,66,83,73,47,37,67,70,85,84,87,81,36,55,37,78,82,48,41,70,36,39,83,80,35,21,32,36,36,39,29,50,55,33,31,0,80,86,90,75,30,53,30,20,27,11,21,39,85,44,29,"ACC","Virginia","Wide Receiver","Launch Ratings"
19983,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/92.png?im=FaceCrop,padding=0.7","Trent","Battle",73,40,80,"Daphne","Alabama","Previous",6,"Senior",91,88,87,85,75,82,77,53,36,80,79,57,63,86,54,45,65,48,89,82,43,38,61,41,34,55,80,59,48,56,24,41,44,32,62,47,32,38,0,61,59,87,75,83,58,18,12,20,10,13,38,84,81,35,"Big 12","TCU","Halfback","Launch Ratings"
23036,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/116.png?im=FaceCrop,padding=0.7","Trent","Hudson",75,20,80,"Killeen","Texas","Previous",1,"Senior",89,86,88,91,59,87,81,42,32,75,68,83,85,85,84,34,44,33,78,81,47,47,60,35,36,83,80,29,21,29,24,34,34,29,42,52,26,25,0,84,84,87,79,57,43,24,10,26,30,37,47,82,43,32,"SEC","Vanderbilt","Wide Receiver","Launch Ratings"
4895,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/58.png?im=FaceCrop,padding=0.7","Trevor","Mayberry",75,165,80,"Tampa","Florida","Previous",61,"Senior",66,65,64,86,88,88,41,54,29,41,53,27,24,54,24,26,55,88,89,25,36,30,25,80,28,28,80,81,78,85,48,43,57,25,28,77,80,80,0,28,27,57,25,40,43,33,22,22,14,34,43,90,41,24,"SEC","Mississippi State","Right Guard","Launch Ratings"
7579,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/15.png?im=FaceCrop,padding=0.7","Trevor","Brock",78,154,80,"St. Louis","Missouri","Previous",79,"Senior",67,56,69,88,88,87,36,47,33,38,50,32,27,53,27,30,50,87,85,32,44,35,30,82,27,31,80,77,73,81,37,34,49,28,33,83,83,83,0,32,28,55,29,36,39,16,23,19,24,24,39,86,35,28,"MAC","Buffalo","Left Guard","Launch Ratings"
19826,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/131.png?im=FaceCrop,padding=0.7","Trevor","Woods",74,45,80,"Katy","Texas","Eligible",43,"Senior",87,83,87,92,69,88,66,65,28,28,46,45,74,78,48,67,82,73,90,73,41,32,50,37,65,46,80,30,27,28,24,87,51,66,85,17,29,31,0,47,46,83,72,28,76,31,21,31,17,36,35,88,27,70,"Conference USA","Jacksonville State","Strong Safety","Launch Ratings"
21227,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/40.png?im=FaceCrop,padding=0.7","Trevor","Buhr",76,165,80,"Washington","Missouri","Previous",70,"Sophomore",67,60,73,85,89,86,39,51,41,39,54,33,34,54,34,38,54,88,87,30,33,27,31,83,34,35,80,78,75,82,47,36,53,30,36,83,86,80,0,31,35,59,29,41,39,10,27,31,32,20,35,92,40,31,"Big Ten","Iowa State","Left Guard","Launch Ratings"
7976,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/17.png?im=FaceCrop,padding=0.7","Trond","Grizzell",76,45,80,"Park City","Utah","Previous",7,"Senior",88,84,87,89,73,86,77,53,39,75,58,88,87,81,81,42,67,38,87,79,30,33,62,36,23,86,80,33,27,35,29,31,44,27,63,41,35,34,0,83,87,86,74,70,58,16,35,36,23,38,28,91,65,37,"ACC","Cal","Wide Receiver","Launch Ratings"
5761,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Troy","Everett",75,155,80,"Roanoke","Virginia","Previous",52,"Senior",74,72,72,92,86,85,35,48,40,36,57,34,36,55,37,42,46,79,81,36,30,39,36,78,34,31,80,83,83,83,37,37,47,35,36,71,86,74,0,37,37,60,31,38,39,24,17,25,24,34,42,89,35,33,"SEC","Oklahoma","Center","Launch Ratings"
18264,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/54.png?im=FaceCrop,padding=0.7","Troy","Bowles",72,60,80,"Tampa","Florida","Eligible",40,"Junior",88,83,85,79,75,78,58,66,41,41,61,55,64,82,42,61,78,65,89,56,26,31,55,48,69,40,80,56,51,46,42,84,67,44,82,43,44,57,0,38,40,81,58,42,89,11,11,35,30,23,28,85,41,81,"Big Ten","Michigan","Will Backer","Launch Ratings"
21923,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/45.png?im=FaceCrop,padding=0.7","Troy","Stellato",73,24,80,"Fort Lauderdale","Florida","Previous",0,"Senior",92,90,89,91,65,84,85,47,45,72,64,87,88,88,75,37,56,36,86,85,32,40,82,35,50,84,80,35,23,34,39,45,36,34,53,40,25,25,0,90,85,90,76,29,50,33,29,12,34,25,30,86,45,39,"SEC","Kentucky","Wide Receiver","Launch Ratings"
21394,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/99.png?im=FaceCrop,padding=0.7","Tucker","Gleason",75,85,80,"Tampa","Florida","Previous",4,"Senior",81,76,75,92,80,84,81,48,73,71,69,25,27,76,26,44,66,54,93,76,33,30,29,52,23,26,80,42,43,43,81,28,56,33,45,51,46,45,0,24,28,79,75,74,64,80,84,87,69,91,64,91,79,23,"MAC","Toledo","Quarterback","Launch Ratings"
29036,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/122.png?im=FaceCrop,padding=0.7","Tye","Edwards",74,77,80,"Palatka","Florida","Previous",2,"Senior",89,87,86,88,74,75,77,48,35,80,85,47,66,85,34,40,57,49,87,83,41,26,60,41,31,44,80,57,47,51,39,66,42,27,57,46,34,36,0,50,48,89,78,79,51,37,22,28,33,34,40,88,82,30,"Big 12","West Virginia","Halfback","Launch Ratings"
10680,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/1.png?im=FaceCrop,padding=0.7","Tylor","Latham",68,20,80,"Madison","Mississippi","Eligible",25,"Senior",93,86,85,93,64,76,79,35,34,75,75,74,76,86,70,29,34,36,84,86,30,31,68,34,48,75,80,50,49,48,33,54,29,38,34,44,30,31,0,79,75,89,82,55,31,28,10,35,14,30,44,88,57,59,"Mountain West","Air Force","Halfback","Launch Ratings"
21369,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/23.png?im=FaceCrop,padding=0.7","Tyquan","King",74,65,80,"West Haven","Connecticut","Previous",10,"Senior",86,81,85,85,71,87,49,69,35,44,45,35,54,77,28,49,87,59,88,51,48,33,34,35,66,25,80,48,46,41,45,85,65,32,88,35,41,48,0,27,25,83,47,45,87,16,20,27,23,15,30,83,45,73,"The American","Connecticut","Mike Backer","Launch Ratings"
21255,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Tyreek","Chappell",71,25,80,"Philadelphia","Pennsylvania","Previous",7,"Senior",93,87,90,96,54,79,59,45,31,30,48,38,62,86,35,32,60,48,88,74,25,34,54,54,85,37,80,58,59,52,25,76,30,79,82,51,52,57,0,35,40,91,66,28,46,36,32,10,16,32,36,79,29,75,"SEC","Texas A&M","Cornerback","Launch Ratings"
19084,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Tywone","Malone Jr.",76,141,80,"Jamesburg","New Jersey","Previous",95,"Senior",74,63,73,84,95,81,26,81,44,46,58,26,32,46,26,69,87,81,99,26,32,30,37,58,34,26,80,69,61,56,37,73,83,26,77,63,56,70,0,26,26,63,26,45,82,24,13,27,20,39,29,90,45,26,"Big Ten","Ohio State","Defensive Tackle","Launch Ratings"
24003,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","Vernell","Brown III",71,12,80,"Gainesville","Florida","Eligible",8,"Freshman",95,95,90,87,54,62,90,42,49,84,74,76,85,94,84,35,57,45,93,92,32,32,88,30,53,80,80,30,24,32,31,67,26,54,57,42,37,36,0,84,83,92,88,47,52,47,49,55,45,56,25,86,43,51,"SEC","Florida","Wide Receiver","Launch Ratings"
18486,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/136.png?im=FaceCrop,padding=0.7","Viron","Ellison Jr.",72,35,80,"Lewisville","Texas","Eligible",23,"Sophomore",91,87,85,87,69,75,80,31,33,75,77,64,72,86,53,25,28,44,86,86,41,45,77,35,52,61,80,49,47,50,36,62,26,42,26,43,29,34,0,69,69,89,83,65,26,26,26,31,33,38,24,83,64,57,"Conference USA","Delaware","Halfback","Launch Ratings"
22216,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/85.png?im=FaceCrop,padding=0.7","Walker","Eget",75,63,80,"Santa Clarita","California","Previous",5,"Senior",76,73,74,90,75,83,55,48,75,65,71,26,32,72,22,49,61,43,90,66,30,29,25,44,37,26,80,61,26,28,77,42,53,41,50,59,44,45,0,25,27,72,64,64,54,78,84,86,64,92,77,93,69,25,"Mountain West","San Jose State","Quarterback","Launch Ratings"
22621,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/66.png?im=FaceCrop,padding=0.7","Will","Hardy",74,45,80,"Lawrenceville","Georgia","Eligible",31,"Senior",89,85,86,89,73,83,50,59,45,45,28,34,66,82,25,40,83,58,83,47,45,32,82,56,71,29,80,66,62,55,32,83,40,69,83,51,54,68,0,25,35,87,47,65,73,31,30,26,31,21,44,87,60,79,"ACC","North Carolina","Free Safety","Launch Ratings"
23424,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/40.png?im=FaceCrop,padding=0.7","Xavier","Townsend",71,25,80,"Tampa","Florida","Previous",4,"Junior",91,89,91,86,61,85,77,42,41,69,75,85,85,89,75,34,50,35,81,88,35,24,94,31,63,82,80,30,16,28,25,53,37,37,49,41,29,31,0,86,87,92,86,24,43,25,33,11,27,36,45,88,46,42,"Big Ten","Iowa State","Wide Receiver","Launch Ratings"
3991,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/91.png?im=FaceCrop,padding=0.7","Yasin","Willis",73,66,80,"Newark","New Jersey","Eligible",6,"Sophomore",90,84,82,85,78,79,78,54,25,79,80,59,62,85,49,44,67,54,88,79,45,25,72,45,29,56,80,62,63,61,43,40,46,32,66,53,42,44,0,61,60,86,74,85,62,33,18,30,17,35,42,88,87,31,"ACC","Syracuse","Halfback","Launch Ratings"
19682,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/57.png?im=FaceCrop,padding=0.7","Za'Quan","Bryan",70,30,80,"Savannah","Georgia","Previous",4,"Sophomore",93,93,88,87,57,78,67,50,42,43,61,56,70,91,42,39,72,53,86,79,26,46,66,57,81,45,80,64,60,52,43,78,47,75,79,59,55,66,0,43,67,90,75,52,68,24,16,32,10,11,48,88,42,77,"Big Ten","Minnesota","Cornerback","Launch Ratings"
19391,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/91.png?im=FaceCrop,padding=0.7","Zach","Rice",77,145,80,"Lynchburg","Virginia","Previous",55,"Junior",73,65,72,84,87,74,45,56,35,43,53,32,32,55,34,39,62,91,86,29,37,33,34,85,30,29,80,77,79,86,29,48,60,29,34,83,85,88,0,31,33,58,35,41,45,26,12,16,25,27,29,84,40,34,"ACC","Syracuse","Center","Launch Ratings"
19491,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/119.png?im=FaceCrop,padding=0.7","Zamari","Stevenson",70,20,80,"Statesville","North Carolina","Previous",17,"Junior",93,91,91,93,58,81,64,50,36,36,59,34,64,89,39,39,71,49,82,71,38,39,62,55,76,40,80,61,58,52,37,82,37,74,78,55,53,62,0,39,45,91,73,39,63,17,29,16,26,18,31,89,34,82,"ACC","Wake Forest","Cornerback","Launch Ratings"
18787,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/133.png?im=FaceCrop,padding=0.7","Aaron","Fenimore",73,135,79,"Senoia","Georgia","Previous",61,"Sophomore",75,71,73,86,84,88,37,59,25,45,59,31,36,60,37,38,65,86,85,32,48,39,35,88,36,36,79,78,76,80,48,47,64,32,31,84,87,80,0,32,31,66,34,48,50,34,33,17,19,18,39,86,44,27,"Conference USA","Liberty","Center","Launch Ratings"
20688,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/24.png?im=FaceCrop,padding=0.7","Aaron","Hall",76,130,79,"Durham","North Carolina","Previous",99,"Senior",82,66,78,91,85,81,32,83,48,33,52,33,40,56,31,73,77,76,85,31,45,34,36,55,31,34,79,63,59,53,38,78,80,39,89,52,53,57,0,33,30,69,30,34,86,13,14,24,11,25,29,89,32,24,"ACC","Duke","Defensive Tackle","Launch Ratings"
5817,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/30.png?im=FaceCrop,padding=0.7","Adrian","Medley",77,149,79,"Pensacola","Florida","Previous",76,"Senior",67,59,65,86,87,84,37,44,42,35,51,31,30,52,26,33,44,85,89,30,30,36,30,85,32,28,79,80,83,79,32,32,45,28,29,80,82,78,0,32,26,58,28,35,34,33,34,15,12,20,34,85,36,29,"ACC","Florida State","Right Guard","Launch Ratings"
30769,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","Ahmad","Breaux",75,120,79,"Ruston","Louisiana","Eligible",93,"Sophomore",82,73,74,76,82,76,45,79,27,45,34,33,32,68,18,73,82,78,91,54,8,14,12,38,19,19,79,42,24,24,19,80,86,31,85,43,27,28,0,25,35,74,53,38,87,36,39,44,26,42,23,78,39,24,"SEC","LSU","Defensive Tackle","Launch Ratings"
21960,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/1.png?im=FaceCrop,padding=0.7","Aidan","Swartz",76,115,79,"Sylvania","Ohio","Eligible",99,"Senior",78,66,75,91,83,85,32,81,46,30,51,32,37,58,28,70,85,65,82,31,44,32,34,57,44,30,79,63,57,51,39,84,83,35,84,52,53,61,0,29,28,68,28,32,84,29,11,18,25,22,44,92,31,28,"Mountain West","Air Force","Right Edge","Launch Ratings"
7020,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/6.png?im=FaceCrop,padding=0.7","AJ","Green",70,50,79,"Tulsa","Oklahoma","Previous",20,"Senior",92,88,92,88,70,79,80,44,34,73,76,70,62,86,55,35,48,44,90,77,31,25,92,39,64,63,79,55,45,50,29,53,38,38,45,46,35,35,0,66,55,93,75,67,44,17,13,13,31,33,33,85,69,42,"SEC","Arkansas","Halfback","Launch Ratings"
2876,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/34.png?im=FaceCrop,padding=0.7","Akelo","Stone",74,130,79,"Savannah","Georgia","Previous",7,"Senior",73,65,70,93,84,85,26,80,24,29,51,26,33,53,26,84,68,60,87,26,32,40,28,54,37,26,79,59,60,53,40,80,86,30,88,51,49,58,0,26,26,59,26,31,88,13,10,20,11,34,27,86,27,24,"ACC","Georgia Tech","Defensive Tackle","Launch Ratings"
20260,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/21.png?im=FaceCrop,padding=0.7","Aki","Ogunbiyi",76,180,79,"Sugar Land","Texas","Previous",74,"Senior",64,51,69,90,90,73,41,50,38,38,52,32,30,44,30,32,55,90,92,32,49,33,30,82,27,29,79,80,78,86,25,35,54,29,31,79,74,84,0,31,33,54,27,42,39,33,27,22,37,15,32,93,39,33,"Big 12","Colorado","Right Guard","Launch Ratings"
19910,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/109.png?im=FaceCrop,padding=0.7","Alex","Orji",75,80,79,"Sachse","Texas","Eligible",1,"Senior",90,88,93,84,77,70,81,55,79,82,83,28,62,86,28,55,68,53,91,80,29,28,49,51,33,28,79,66,46,49,59,37,62,34,61,67,49,50,0,28,27,89,83,75,66,63,71,70,83,92,66,87,78,32,"Mountain West","UNLV","Quarterback","Launch Ratings"
22582,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/14.png?im=FaceCrop,padding=0.7","Alex","Padgett",78,170,79,"Avon Lake","Ohio","Eligible",57,"Senior",70,60,71,89,90,85,29,60,44,46,57,32,26,54,28,35,63,91,93,32,26,45,39,77,29,32,79,81,76,86,37,39,62,32,28,75,73,77,0,28,32,61,30,46,46,11,31,30,17,10,48,93,43,21,"MAC","Bowling Green","Right Guard","Launch Ratings"
19521,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/36.png?im=FaceCrop,padding=0.7","Amare","Thomas",72,45,79,"Birmingham","Alabama","Eligible",0,"Junior",88,87,89,89,76,84,84,55,31,76,74,85,85,86,77,46,72,44,93,87,37,40,82,38,36,83,79,38,27,37,38,51,49,36,68,52,41,40,0,86,86,89,81,57,65,21,27,22,24,13,39,91,69,65,"Big 12","Houston","Wide Receiver","Launch Ratings"
21598,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/42.png?im=FaceCrop,padding=0.7","Amarion","Fortenberry",70,18,79,"Columbia","Mississippi","Eligible",0,"Sophomore",93,90,88,85,51,79,76,46,23,23,44,37,68,90,41,42,65,50,80,66,43,48,57,54,70,42,79,47,58,56,42,77,26,75,78,49,51,54,0,45,42,92,70,23,64,12,11,37,31,27,24,80,25,80,"Big 12","Kansas State","Cornerback","Launch Ratings"
4505,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/9.png?im=FaceCrop,padding=0.7","Amaris","Williams",74,101,79,"Fayetteville","North Carolina","Eligible",10,"Sophomore",89,76,82,77,83,79,36,83,28,35,56,40,47,67,40,78,81,73,82,40,28,37,42,45,39,40,79,47,44,37,37,75,82,44,83,33,38,44,0,40,40,78,40,36,80,11,18,16,36,29,41,78,33,48,"SEC","Auburn","Left Edge","Launch Ratings"
6917,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/16.png?im=FaceCrop,padding=0.7","Andrew","Gentry",80,155,79,"Littleton","Colorado","Previous",75,"Junior",71,58,71,87,87,80,39,48,41,40,52,32,36,50,37,39,54,82,90,37,25,47,36,80,32,33,79,82,79,84,38,44,49,35,36,83,88,80,0,35,37,59,33,41,40,36,22,30,23,21,26,92,37,36,"Big 12","BYU","Right Tackle","Launch Ratings"
7546,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/82.png?im=FaceCrop,padding=0.7","Andrew","Awe",74,70,79,"Mansfield","Texas","Previous",0,"Senior",83,75,77,84,77,85,28,75,28,40,57,38,48,72,26,65,86,66,89,30,26,28,32,55,68,30,79,65,63,55,24,85,67,28,84,57,56,67,0,25,30,77,26,40,84,11,18,22,21,23,46,82,41,78,"The American","Rice","Mike Backer","Launch Ratings"
1073,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/109.png?im=FaceCrop,padding=0.7","Anthony","Colandrea",72,45,79,"St. Petersburg","Florida","Eligible",10,"Junior",87,85,81,94,61,84,84,41,61,72,75,29,52,84,28,39,40,35,87,80,29,25,25,35,37,22,79,37,32,30,78,37,40,33,27,34,29,32,0,28,26,83,76,49,42,77,82,84,83,89,76,89,57,35,"Mountain West","UNLV","Quarterback","Launch Ratings"
18646,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/56.png?im=FaceCrop,padding=0.7","Anthony","Bynum",75,100,79,"Covington","Georgia","Previous",0,"Sophomore",84,73,75,81,78,85,41,82,48,40,56,26,28,67,29,69,82,69,87,30,46,30,38,41,28,27,79,57,56,49,42,85,84,29,86,48,47,59,0,28,30,77,30,44,81,36,18,14,29,14,42,87,40,35,"Conference USA","Middle Tennessee State","Left Edge","Launch Ratings"
24920,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Anthony","Rogers",68,30,79,"Montgomery","Alabama","Eligible",21,"Freshman",94,91,88,83,66,62,72,32,52,78,74,66,68,91,63,37,35,52,88,88,19,15,79,40,35,64,79,54,54,52,38,46,36,34,50,49,38,40,0,70,65,92,87,57,40,32,35,37,47,35,22,87,65,45,"Big Ten","Ohio State","Halfback","Launch Ratings"
31402,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/99.png?im=FaceCrop,padding=0.7","Anthony","Dunn Jr.",76,102,79,"Sanford","Florida","Eligible",58,"Senior",84,75,79,79,81,82,36,77,42,38,54,36,37,69,34,67,82,67,88,34,42,34,41,42,30,34,79,49,49,44,45,83,85,34,83,41,44,53,0,36,37,78,33,37,84,31,16,34,11,30,41,85,38,35,"MAC","Toledo","Left Edge","Launch Ratings"
4071,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Armondo","Blount",76,100,79,"Fort Lauderdale","Florida","Eligible",18,"Sophomore",87,79,83,78,82,76,47,83,42,46,60,45,56,73,47,82,85,85,77,44,29,27,44,56,43,47,79,67,64,56,37,79,80,43,88,58,57,66,0,47,44,79,44,46,80,18,11,29,36,31,39,81,45,48,"ACC","Miami","Right Edge","Launch Ratings"
7066,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/133.png?im=FaceCrop,padding=0.7","Austin","Henderson",77,85,79,"Nashville","Tennessee","Previous",83,"Senior",83,76,80,91,79,83,59,60,38,71,74,81,81,72,62,58,71,70,86,66,29,29,53,60,31,71,79,65,66,56,46,41,57,22,62,67,62,64,0,76,79,75,61,73,63,31,28,31,43,23,46,92,73,49,"Conference USA","Liberty","Tight End","Launch Ratings"
31269,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/16.png?im=FaceCrop,padding=0.7","Austin","Leausa",77,155,79,"West Jordan","Utah","Previous",55,"Junior",72,61,72,89,89,84,38,50,38,39,55,30,29,54,31,37,56,88,84,29,33,24,29,76,30,34,79,84,80,87,33,36,55,32,32,73,74,72,0,30,33,60,31,40,40,22,27,28,32,36,46,88,38,35,"Big 12","BYU","Right Tackle","Launch Ratings"
18819,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/4.png?im=FaceCrop,padding=0.7","Ayden","Garnes",72,16,79,"Philadelphia","Pennsylvania","Previous",9,"Senior",90,87,86,95,51,85,48,37,29,30,47,25,60,87,27,24,64,43,80,55,29,43,48,53,81,31,79,61,57,52,28,83,26,73,75,50,52,59,0,29,25,91,55,32,58,23,35,21,35,27,29,83,30,75,"Big 12","Arizona","Cornerback","Launch Ratings"
20498,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/22.png?im=FaceCrop,padding=0.7","Ayden","Hector",72,55,79,"Bellevue","Washington","Previous",15,"Senior",90,85,89,86,75,85,65,54,48,47,58,47,72,83,38,47,74,52,92,71,36,38,64,56,74,42,79,65,56,49,25,80,51,74,84,60,57,70,0,40,47,87,70,56,67,35,25,22,13,32,36,92,47,75,"Mountain West","Colorado State","Free Safety","Launch Ratings"
25515,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/37.png?im=FaceCrop,padding=0.7","Ayden","Knapik",78,135,79,"Kennewick","Washington","Eligible",72,"Senior",74,65,70,77,84,84,33,46,33,36,56,35,36,59,34,42,44,84,95,35,22,21,25,83,23,34,79,84,82,85,33,33,42,22,38,76,78,74,0,35,40,66,39,32,32,17,37,23,34,13,32,91,36,21,"Big Ten","Illinois","Left Tackle","Launch Ratings"
173,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Aydin","Breland",77,135,79,"Santa Ana","California","Previous",42,"Freshman",83,67,77,85,96,68,32,76,39,46,53,32,39,53,32,78,82,80,90,32,47,35,38,58,42,32,79,72,65,56,30,70,82,37,79,64,56,71,0,32,32,69,32,49,83,16,19,26,29,24,24,88,48,33,"Big Ten","Oregon","Defensive Tackle","Launch Ratings"
3465,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Bennett","Christian",78,100,79,"Acworth","Georgia","Previous",85,"Senior",82,75,86,89,79,79,70,50,41,69,70,84,85,73,59,48,58,71,89,72,38,39,68,73,49,66,79,63,59,59,41,52,46,31,51,66,56,60,0,77,76,76,67,71,52,14,23,16,28,36,37,87,68,54,"Big Ten","Ohio State","Tight End","Launch Ratings"
10069,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/110.png?im=FaceCrop,padding=0.7","Bishop","Fitzgerald",71,38,79,"Woodbridge","Virginia","Previous",19,"Senior",92,87,88,86,68,77,64,61,43,41,37,45,72,86,34,39,77,56,86,55,28,33,54,54,71,36,79,64,63,53,43,75,44,71,83,50,53,64,0,35,43,89,62,52,70,23,18,33,37,36,42,88,52,79,"Big Ten","USC","Strong Safety","Launch Ratings"
7500,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/80.png?im=FaceCrop,padding=0.7","BJ","Williams",76,160,79,"Lawrenceville","Georgia","Eligible",55,"Junior",67,62,67,82,89,88,26,52,40,42,54,32,26,57,26,31,58,87,90,31,32,33,39,83,31,26,79,81,76,84,28,36,55,26,27,75,74,77,0,31,32,59,27,38,43,21,23,14,32,10,24,87,42,25,"ACC","Pittsburgh","Right Guard","Launch Ratings"
21059,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/119.png?im=FaceCrop,padding=0.7","BJ","Williams",76,113,79,"Johnston","South Carolina","Previous",18,"Senior",81,72,67,84,83,85,45,75,41,45,50,23,24,64,27,75,83,82,90,27,28,32,37,36,26,27,79,65,60,52,30,86,82,23,80,58,55,68,0,24,23,76,25,46,88,34,17,24,14,22,24,92,45,17,"ACC","Wake Forest","Left Edge","Launch Ratings"
21904,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/80.png?im=FaceCrop,padding=0.7","Blaine","Spires",75,90,79,"Youngstown","Ohio","Previous",10,"Senior",87,78,81,86,78,85,31,75,39,30,52,39,39,73,37,84,79,57,84,39,27,33,39,29,55,35,79,36,24,23,42,83,75,34,84,22,29,33,0,36,38,82,39,31,74,19,37,12,14,12,26,85,28,62,"ACC","Pittsburgh","Left Edge","Launch Ratings"
8211,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Bo","Hughley",79,135,79,"Fairburn","Georgia","Previous",55,"Sophomore",82,77,77,91,86,64,36,48,37,37,52,37,36,53,39,46,50,87,81,37,30,45,40,81,35,39,79,89,87,81,25,41,47,38,37,72,87,68,0,38,35,63,36,36,38,15,16,34,24,15,24,89,38,36,"SEC","Georgia","Right Tackle","Launch Ratings"
7547,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/99.png?im=FaceCrop,padding=0.7","Braden","Awls",72,36,79,"Sylvania","Ohio","Eligible",6,"Junior",89,86,88,94,64,86,44,56,43,66,68,65,78,83,30,28,73,52,92,71,46,33,51,57,75,28,79,65,52,43,26,85,37,70,82,48,54,66,0,30,75,87,64,58,70,24,18,31,10,28,27,80,56,83,"MAC","Toledo","Cornerback","Launch Ratings"
19811,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/69.png?im=FaceCrop,padding=0.7","Braden","Turner",71,31,79,"Mobile","Alabama","Previous",9,"Sophomore",91,88,90,90,67,75,65,65,40,41,60,41,65,88,43,34,74,53,83,77,39,33,63,56,78,44,79,64,58,52,24,77,48,81,85,58,54,66,0,43,44,88,72,47,69,35,27,30,16,19,44,87,42,79,"Big Ten","Northwestern","Cornerback","Launch Ratings"
1560,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/88.png?im=FaceCrop,padding=0.7","Brady","Hunt",77,48,79,"Muncie","Indiana","Previous",87,"Senior",85,81,85,92,73,83,68,60,42,68,69,84,81,76,64,61,67,71,79,68,27,27,63,65,49,69,79,61,61,53,42,50,56,30,60,64,59,56,0,73,81,83,64,67,61,24,31,33,48,26,43,90,66,51,"SEC","South Carolina","Tight End","Launch Ratings"
19092,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/104.png?im=FaceCrop,padding=0.7","Braeden","Marshall",70,15,79,"Lake Mary","Florida","Eligible",4,"Junior",94,91,90,91,55,81,75,54,37,60,63,55,71,89,42,30,66,50,90,80,26,48,65,54,77,43,79,65,59,55,40,79,40,74,77,57,53,65,0,43,54,91,77,43,61,23,20,19,10,23,42,87,38,76,"Big 12","UCF","Cornerback","Launch Ratings"
1791,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","Braelin","Moore",74,140,79,"Bethlehem","Pennsylvania","Previous",61,"Junior",79,74,75,87,84,80,34,46,38,35,55,37,35,56,40,40,45,85,87,40,37,36,37,85,39,39,79,83,85,81,41,34,44,36,40,80,85,76,0,40,38,62,37,32,33,14,20,15,23,34,45,89,33,40,"SEC","LSU","Center","Launch Ratings"
9232,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Brandon","Baker",76,148,79,"Ontario","California","Eligible",73,"Sophomore",82,77,79,92,85,74,31,40,48,32,56,47,43,56,45,55,37,87,79,43,25,26,45,82,47,43,79,85,80,89,48,37,35,43,49,79,80,78,0,44,46,69,45,32,32,28,11,25,35,32,43,83,27,41,"SEC","Texas","Right Tackle","Launch Ratings"
326,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/37.png?im=FaceCrop,padding=0.7","Brandon","Henderson",77,175,79,"East St. Louis","Illinois","Eligible",75,"Junior",62,53,60,85,94,81,46,61,25,49,54,27,30,50,25,26,65,91,92,30,41,31,26,73,25,27,79,76,73,79,42,49,65,27,31,84,81,87,0,24,30,52,29,47,45,19,19,23,23,31,32,86,44,28,"Big Ten","Illinois","Right Guard","Launch Ratings"
10098,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/54.png?im=FaceCrop,padding=0.7","Brandyn","Hillman",72,40,79,"Portsmouth","Virginia","Eligible",6,"Junior",91,85,85,84,73,76,60,63,45,47,32,40,67,84,33,36,82,62,93,56,48,32,55,58,74,32,79,64,60,54,44,75,49,75,84,52,56,70,0,32,40,88,59,64,77,25,30,15,30,19,45,90,62,78,"Big Ten","Michigan","Strong Safety","Launch Ratings"
21357,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/83.png?im=FaceCrop,padding=0.7","Bryan","Felter",75,145,79,"Westfield","New Jersey","Previous",65,"Senior",70,70,70,86,87,87,35,45,35,38,55,27,30,54,27,30,49,90,83,31,42,47,32,83,32,28,79,79,78,81,44,30,49,27,30,80,82,78,0,31,28,60,32,38,37,37,16,29,30,22,27,84,35,29,"Big Ten","Rutgers","Left Guard","Launch Ratings"
31565,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","Bryce","Lovett",77,166,79,"Rockledge","Florida","Previous",53,"Sophomore",71,59,67,82,89,84,40,53,28,39,50,24,28,52,26,29,55,88,91,28,41,26,27,82,13,27,79,82,78,85,39,38,56,12,28,79,77,81,0,27,24,61,25,38,41,17,11,20,37,37,37,85,41,11,"SEC","Florida","Right Tackle","Launch Ratings"
20540,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/84.png?im=FaceCrop,padding=0.7","Bryce","Phillips",73,35,79,"Long Beach","California","Previous",0,"Senior",91,86,87,87,67,84,48,58,45,47,64,37,61,85,28,36,81,47,88,54,35,36,54,57,79,28,79,66,50,45,47,80,48,83,79,62,56,69,0,28,32,88,54,57,70,35,28,37,28,29,35,90,45,77,"Mountain West","San Diego State","Cornerback","Launch Ratings"
629,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/90.png?im=FaceCrop,padding=0.7","C.J.","Williams",73,35,79,"Mission Viejo","California","Eligible",3,"Senior",92,91,90,88,67,80,75,51,42,73,71,79,84,90,82,43,60,37,83,84,43,29,95,35,58,83,79,32,18,30,42,41,42,32,59,54,33,35,0,79,86,90,78,25,55,18,18,29,25,14,28,83,52,24,"ACC","Stanford","Wide Receiver","Launch Ratings"
4650,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Cade","Denhoff",77,100,79,"Plant City","Florida","Previous",44,"Senior",87,76,83,82,82,80,40,76,40,38,55,40,47,69,39,82,76,71,85,41,42,35,39,39,57,41,79,51,47,42,41,80,77,39,84,38,43,51,0,38,42,77,41,36,86,19,21,15,26,13,41,83,38,63,"ACC","Clemson","Left Edge","Launch Ratings"
8156,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/94.png?im=FaceCrop,padding=0.7","Caleb","Herring",77,85,79,"Newnan","Georgia","Eligible",31,"Junior",91,78,84,82,77,64,32,65,38,34,58,45,56,73,45,93,74,66,83,45,37,34,39,37,44,45,79,41,41,35,36,76,65,48,84,33,36,45,0,45,45,79,45,31,78,32,37,13,28,10,38,79,34,50,"SEC","Tennessee","Right Edge","Launch Ratings"
9064,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/6.png?im=FaceCrop,padding=0.7","Caleb","Wooden",73,35,79,"Lawrenceville","Georgia","Eligible",22,"Senior",91,87,86,91,63,77,56,65,39,37,33,31,72,85,34,62,72,54,85,54,35,28,48,54,78,30,79,61,61,55,31,77,31,69,85,47,53,62,0,31,34,88,56,47,75,35,27,12,10,33,45,91,43,80,"SEC","Arkansas","Free Safety","Launch Ratings"
4758,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/66.png?im=FaceCrop,padding=0.7","Caleb","Hood",72,60,79,"Rockingham","North Carolina","Previous",4,"Senior",89,81,80,85,79,75,83,55,42,80,82,75,66,82,56,44,71,52,92,81,26,40,73,49,35,60,79,56,49,51,28,36,44,30,67,54,43,45,0,68,46,87,73,78,61,37,22,17,36,11,38,88,83,37,"ACC","North Carolina","Halfback","Launch Ratings"
20947,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/117.png?im=FaceCrop,padding=0.7","Cam","Ross",70,26,79,"Newark","Delaware","Previous",6,"Senior",93,89,88,89,64,85,82,39,34,73,65,82,85,88,77,34,44,28,85,85,35,44,87,29,48,82,79,36,21,29,44,45,35,34,42,45,27,28,0,83,85,90,83,23,41,11,29,30,26,18,48,84,46,42,"ACC","Virginia","Wide Receiver","Launch Ratings"
18638,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Cameron","Dickey",70,55,79,"Austin","Texas","Eligible",8,"Sophomore",92,85,89,87,76,78,80,44,27,76,77,70,69,85,55,33,48,49,91,82,38,34,84,39,61,59,79,54,46,50,44,64,36,43,46,49,36,40,0,65,68,88,79,77,41,27,14,37,32,14,38,89,80,66,"Big 12","Texas Tech","Halfback","Launch Ratings"
368,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/122.png?im=FaceCrop,padding=0.7","Carson","Lee",75,160,79,"Greenwood Village","Colorado","Previous",55,"Senior",70,54,64,89,89,84,25,53,24,43,54,27,30,52,27,29,57,86,91,29,44,28,30,84,28,27,79,82,77,84,37,35,55,27,26,78,73,83,0,25,26,58,25,42,45,12,20,26,26,15,33,93,39,19,"Big 12","West Virginia","Center","Launch Ratings"
7691,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/30.png?im=FaceCrop,padding=0.7","Caziah","Holmes",71,59,79,"Titusville","Florida","Previous",26,"Senior",93,88,92,84,75,73,74,45,49,79,77,58,61,87,55,39,54,58,87,80,30,32,84,52,33,57,79,60,55,57,38,51,41,36,52,47,32,37,0,61,60,94,75,77,52,41,42,44,45,43,28,89,81,35,"ACC","Florida State","Halfback","Launch Ratings"
19175,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/80.png?im=FaceCrop,padding=0.7","Censere","Lee",71,5,79,"Clearwater","Florida","Eligible",11,"Senior",93,90,88,93,52,83,68,37,38,59,66,76,84,89,80,28,38,31,75,80,40,35,72,29,50,86,79,35,22,33,32,48,29,34,34,35,22,20,0,83,84,91,78,21,34,27,34,15,36,16,40,82,40,42,"ACC","Pittsburgh","Wide Receiver","Launch Ratings"
22048,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/19.png?im=FaceCrop,padding=0.7","Chance","Williams",67,30,79,"Baton Rouge","Louisiana","Previous",7,"Junior",95,90,87,94,61,71,76,33,30,74,76,55,64,89,45,26,28,31,84,82,41,44,73,26,58,55,79,44,45,45,41,50,23,36,24,39,25,29,0,62,58,90,80,55,25,23,32,23,28,13,44,92,55,42,"Big 12","Cincinnati","Halfback","Launch Ratings"
21102,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/82.png?im=FaceCrop,padding=0.7","Chase","Allen",73,56,79,"Colleyville","Texas","Previous",82,"Senior",61,57,65,87,39,68,38,31,32,26,51,39,30,51,26,45,32,36,83,26,88,93,26,34,26,28,79,26,24,33,40,38,47,29,36,24,42,38,0,44,36,62,43,35,32,15,15,28,32,34,30,92,25,30,"The American","Rice","Kicker","Launch Ratings"
170,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/12.png?im=FaceCrop,padding=0.7","Chris","Marshall",75,51,79,"Missouri City","Texas","Previous",5,"Junior",92,89,91,87,74,77,76,54,35,70,73,85,83,85,79,44,66,42,84,85,38,40,79,39,47,84,79,32,17,28,29,44,47,33,63,52,39,42,0,85,88,89,80,72,61,14,16,10,28,17,33,90,65,41,"Mountain West","Boise State","Wide Receiver","Launch Ratings"
30882,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Chris","Wheatley-Humphrey",72,20,79,"Dania Beach","Florida","Previous",25,"Freshman",92,88,88,81,63,69,79,42,33,77,77,66,67,87,65,32,38,44,87,86,12,12,77,45,35,67,79,48,46,47,44,37,32,42,33,50,28,29,0,71,62,89,81,62,40,40,40,44,41,40,35,77,62,35,"ACC","Miami","Halfback","Launch Ratings"
931,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/7.png?im=FaceCrop,padding=0.7","Chris","Boti",73,114,79,"Columbia","Maryland","Previous",17,"Senior",77,68,72,83,80,84,29,84,41,32,51,29,33,63,25,73,79,85,88,26,30,34,29,57,27,25,79,60,60,51,25,85,83,25,83,55,50,59,0,25,29,70,27,32,88,21,34,16,12,22,47,93,31,22,"Sun Belt","Arkansas State","Defensive Tackle","Launch Ratings"
10002,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/125.png?im=FaceCrop,padding=0.7","Christian","Alliegro",76,85,79,"Darien","Connecticut","Eligible",0,"Junior",86,77,79,85,74,84,38,74,47,45,51,25,62,75,31,56,86,72,88,55,27,26,39,48,57,31,79,65,57,53,35,85,66,55,88,59,52,67,0,30,32,83,50,45,87,21,17,16,15,26,37,84,57,63,"Big Ten","Wisconsin","Mike Backer","Launch Ratings"
4574,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/133.png?im=FaceCrop,padding=0.7","Christian","Bodnar",71,25,79,"Brandon","Florida","Previous",31,"Sophomore",92,86,87,91,58,77,59,49,32,31,32,28,71,85,32,23,69,52,85,55,27,28,49,53,78,32,79,57,56,53,38,78,25,75,81,48,52,59,0,34,34,90,57,39,70,26,19,28,18,26,32,87,36,80,"Conference USA","Liberty","Free Safety","Launch Ratings"
29026,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Cole","Wisniewski",76,60,79,"Sparta","Wisconsin","Previous",5,"Senior",86,85,84,90,77,79,44,64,43,42,66,23,68,83,27,43,82,55,88,42,37,30,51,57,73,24,79,66,52,43,28,68,58,68,85,48,54,67,0,25,22,86,45,58,84,15,12,29,29,31,24,88,55,79,"Big 12","Texas Tech","Free Safety","Launch Ratings"
14827,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/11.png?im=FaceCrop,padding=0.7","Coleton","Price",75,154,79,"Bowie","Texas","Previous",72,"Junior",72,66,70,84,86,85,31,45,24,34,55,28,25,52,29,27,43,84,86,27,27,41,44,83,27,25,79,78,75,82,45,32,44,26,32,81,80,83,0,27,30,62,27,37,34,15,13,12,36,11,48,83,35,25,"Big 12","Baylor","Center","Launch Ratings"
31398,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/128.png?im=FaceCrop,padding=0.7","Collin","Gill",72,50,79,"Fort Washington","Maryland","Previous",3,"Sophomore",90,87,89,88,75,75,56,66,48,47,71,44,72,85,34,41,85,63,94,56,39,42,62,58,68,32,79,66,65,53,38,77,53,75,83,50,55,69,0,31,39,88,55,68,77,22,21,21,20,20,38,92,61,76,"The American","Charlotte","Free Safety","Launch Ratings"
18040,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/37.png?im=FaceCrop,padding=0.7","Collin","Dixon",73,50,79,"Tallmadge","Ohio","Previous",17,"Sophomore",89,85,88,87,77,81,74,54,31,72,76,86,84,83,76,45,72,50,90,79,46,44,73,42,28,82,79,32,21,29,40,44,48,33,67,54,44,43,0,82,90,86,70,75,64,10,13,13,17,25,44,88,70,60,"Big Ten","Illinois","Wide Receiver","Launch Ratings"
2308,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/23.png?im=FaceCrop,padding=0.7","Connor","Stutz",75,60,79,"Seattle","Washington","Eligible",17,"Senior",52,45,69,88,52,68,25,35,32,28,55,34,36,44,42,48,41,42,90,28,88,89,28,46,35,25,79,36,21,42,26,45,41,30,27,20,32,33,0,46,44,51,46,48,31,29,29,20,26,38,43,89,43,27,"The American","Connecticut","Punter","Launch Ratings"
19812,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/99.png?im=FaceCrop,padding=0.7","Connor","Walendzak",71,48,79,"Perrysburg","Ohio","Eligible",24,"Junior",87,83,81,90,75,84,80,51,37,76,86,64,72,80,57,47,66,61,92,76,24,44,64,54,28,63,79,61,57,55,24,43,46,33,63,58,56,57,0,70,63,86,75,78,58,12,25,17,23,34,47,94,80,35,"MAC","Toledo","Halfback","Launch Ratings"
21108,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Cooper","Flanagan",78,95,79,"Pleasant Hill","California","Eligible",87,"Junior",90,84,87,87,73,77,72,55,34,71,72,81,80,79,65,52,66,66,80,71,40,44,71,68,55,72,79,58,50,56,35,44,54,25,55,62,58,61,0,78,83,81,65,68,57,29,26,21,37,11,48,81,66,32,"Independent","Notre Dame","Tight End","Launch Ratings"
21547,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/11.png?im=FaceCrop,padding=0.7","Cooper","Lanz",75,128,79,"Denton","Texas","Previous",97,"Senior",82,63,78,85,84,86,31,79,32,28,52,30,34,51,28,70,82,64,89,30,46,38,32,55,43,28,79,61,58,52,37,85,77,39,86,51,51,56,0,28,29,68,29,31,86,32,32,30,31,12,28,89,29,32,"Big 12","Baylor","Defensive Tackle","Launch Ratings"
7375,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/103.png?im=FaceCrop,padding=0.7","Corri","Milliner",74,20,79,"Alexander City","Alabama","Previous",1,"Sophomore",93,89,87,90,55,81,71,45,48,72,72,79,81,86,84,41,55,33,76,83,27,29,63,34,37,81,79,34,24,36,33,42,40,32,55,42,26,25,0,77,83,91,77,43,52,10,21,11,19,15,37,89,48,46,"The American","UAB","Wide Receiver","Launch Ratings"
23505,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/112.png?im=FaceCrop,padding=0.7","Creed","Whittemore",71,15,79,"Gainesville","Florida","Previous",2,"Sophomore",93,92,91,88,56,83,75,49,68,74,73,79,84,91,76,40,72,35,75,85,47,33,91,33,71,85,79,35,19,31,59,68,41,60,66,35,28,24,0,84,77,91,77,45,62,60,68,70,70,83,55,83,39,72,"Big 12","Utah","Wide Receiver","Launch Ratings"
14798,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/37.png?im=FaceCrop,padding=0.7","Curt","Neal",72,140,79,"Cornelius","North Carolina","Previous",99,"Junior",73,67,70,90,87,85,28,79,42,41,51,28,42,51,28,63,83,77,89,28,39,43,34,57,41,28,79,65,62,52,47,84,85,32,75,57,52,62,0,28,28,69,28,37,84,13,33,35,21,10,37,92,37,25,"Big Ten","Illinois","Defensive Tackle","Launch Ratings"
18024,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/33.png?im=FaceCrop,padding=0.7","D-Icey","Hopkins",71,27,79,"Macon","Georgia","Previous",4,"Junior",90,86,87,93,59,81,63,55,34,65,53,41,68,85,37,24,74,47,90,73,26,42,55,54,75,38,79,58,60,50,28,83,29,70,83,47,51,58,0,38,41,87,66,39,65,15,16,18,21,23,38,92,36,80,"Sun Belt","Georgia State","Free Safety","Launch Ratings"
5854,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/97.png?im=FaceCrop,padding=0.7","D.J.","Taylor",70,35,79,"Tampa","Florida","Previous",25,"Senior",95,91,94,90,66,80,82,54,37,38,47,46,74,91,47,38,82,62,89,68,28,31,65,59,64,46,79,61,58,52,42,75,46,59,78,48,53,65,0,45,49,92,73,51,67,34,11,35,35,35,24,85,49,74,"Sun Belt","Texas State","Free Safety","Launch Ratings"
22390,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/27.png?im=FaceCrop,padding=0.7","Dallas","Payne",76,90,79,"Bay St Louis","Mississippi","Previous",0,"Senior",83,76,81,94,72,78,66,53,45,72,72,82,83,71,69,53,46,61,87,69,25,49,59,54,36,75,79,63,65,59,39,34,50,16,53,60,55,57,0,79,84,78,65,68,58,29,29,36,40,23,34,91,73,29,"Conference USA","FIU","Tight End","Launch Ratings"
23441,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/9.png?im=FaceCrop,padding=0.7","Dallas","Walker IV",75,167,79,"Nashville","Tennessee","Previous",35,"Senior",73,62,72,91,90,81,23,83,30,44,51,26,28,46,24,73,82,77,93,26,26,44,36,58,15,23,79,69,63,53,25,82,82,22,76,60,55,65,0,27,24,65,25,43,83,22,13,13,12,10,32,95,41,17,"SEC","Auburn","Defensive Tackle","Launch Ratings"
23595,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/112.png?im=FaceCrop,padding=0.7","Dallen","Bentley",76,104,79,"Taylorsville","Utah","Eligible",88,"Senior",78,74,77,91,85,77,49,65,31,65,76,79,81,72,67,67,45,65,95,49,49,45,72,64,24,75,79,60,56,50,42,35,62,17,65,67,68,64,0,77,84,74,43,70,68,36,11,26,29,21,41,94,70,43,"Big 12","Utah","Tight End","Launch Ratings"
20879,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","Damian","Ramos",74,30,79,"Baltimore","Maryland","Previous",34,"Senior",61,55,71,87,47,68,43,42,31,26,57,38,47,55,46,45,42,38,89,32,88,90,41,44,35,26,79,30,30,25,40,35,37,42,46,22,24,47,0,33,28,61,44,38,49,20,25,28,33,19,41,93,37,40,"SEC","LSU","Kicker","Launch Ratings"
23758,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/69.png?im=FaceCrop,padding=0.7","Damon","Walters",73,25,79,"Bolingbrook","Illinois","Previous",21,"Freshman",91,88,90,86,67,78,48,64,46,47,56,61,71,86,25,29,84,65,89,65,27,28,47,56,71,25,79,69,63,56,24,81,51,71,80,55,57,71,0,26,72,90,60,65,67,14,26,13,30,27,26,83,64,79,"Big Ten","Northwestern","Free Safety","Launch Ratings"
18909,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Daniel","Hill",73,84,79,"Meridian","Mississippi","Eligible",4,"Sophomore",90,81,86,83,80,63,75,53,29,88,84,58,62,84,39,47,69,61,92,76,48,48,74,49,31,44,79,61,60,62,28,45,46,34,63,55,44,46,0,52,53,87,73,86,63,32,13,21,37,38,30,89,90,59,"SEC","Alabama","Halfback","Launch Ratings"
22604,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Daniel","Calhoun",78,165,79,"Marietta","Georgia","Previous",75,"Freshman",64,60,56,81,94,74,46,58,35,45,50,27,24,61,24,28,66,90,86,28,35,29,28,80,26,27,79,76,73,79,44,45,63,28,24,85,86,84,0,26,27,53,24,47,47,21,26,30,18,31,47,88,47,27,"SEC","Georgia","Right Guard","Launch Ratings"
8232,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/40.png?im=FaceCrop,padding=0.7","Daniel","Jackson",74,55,79,"Cibolo","Texas","Previous",16,"Senior",88,86,87,88,78,86,68,52,33,73,71,86,80,84,79,47,67,46,88,77,28,45,66,42,27,88,79,36,27,37,47,27,45,25,66,51,40,40,0,84,88,85,72,47,60,37,29,15,21,12,48,85,65,26,"Big Ten","Iowa State","Wide Receiver","Launch Ratings"
31364,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/87.png?im=FaceCrop,padding=0.7","Darius","McKenzie",74,70,79,"Ottawa","Non-US","Previous",28,"Senior",81,76,79,88,75,85,38,76,14,51,55,50,61,73,34,50,86,69,91,42,19,20,20,39,64,30,79,45,21,25,6,87,70,51,88,35,23,23,0,34,57,77,29,35,87,8,15,15,11,20,7,91,55,71,"Sun Belt","South Alabama","Mike Backer","Launch Ratings"
1731,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","Dashawn","Spears",75,45,79,"Denham Springs","Louisiana","Eligible",10,"Sophomore",94,89,90,85,68,76,74,59,41,41,43,48,74,87,44,46,81,59,90,66,48,42,61,57,75,45,79,60,63,52,29,78,49,75,83,50,55,67,0,44,50,90,68,55,72,15,11,12,34,22,37,91,52,69,"SEC","LSU","Free Safety","Launch Ratings"
7087,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Dave","Iuli",75,180,79,"Puyallup","Washington","Previous",74,"Junior",65,64,64,80,92,67,42,56,31,44,50,29,28,64,26,32,62,87,95,30,46,41,25,79,27,26,79,81,76,86,32,43,59,29,30,84,84,85,0,31,25,54,30,46,44,22,22,16,20,25,33,88,42,30,"Big Ten","Oregon","Right Guard","Launch Ratings"
19829,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/115.png?im=FaceCrop,padding=0.7","David","Amador II",72,35,79,"Houston","Texas","Previous",18,"Sophomore",92,88,89,87,62,83,75,46,36,71,68,83,85,86,81,35,52,29,86,82,42,25,84,31,45,83,79,38,25,36,30,52,39,37,49,36,26,26,0,85,86,88,78,29,45,11,12,25,26,17,45,84,53,58,"The American","UTSA","Wide Receiver","Launch Ratings"
25501,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/6.png?im=FaceCrop,padding=0.7","David","Oke",74,152,79,"Lagos","Non-US","Eligible",92,"Senior",74,61,72,76,88,83,39,84,32,41,33,31,35,56,24,68,85,83,89,31,11,12,15,46,14,30,79,56,53,54,31,84,81,24,78,55,55,55,0,31,31,66,31,40,83,11,20,24,16,17,30,92,40,21,"SEC","Arkansas","Defensive Tackle","Launch Ratings"
18347,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Dealyn","Evans",77,150,79,"Longview","Texas","Previous",55,"Freshman",81,72,75,74,95,68,46,85,44,46,59,29,32,58,29,61,79,78,94,29,39,24,41,51,25,29,79,71,61,54,28,77,76,23,76,59,57,68,0,29,29,71,29,46,80,36,29,35,27,34,43,85,46,23,"SEC","Texas A&M","Defensive Tackle","Launch Ratings"
22190,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/120.png?im=FaceCrop,padding=0.7","Decker","DeGraaf",75,85,79,"San Dimas","California","Eligible",86,"Sophomore",88,84,88,94,71,77,70,37,41,70,71,81,83,80,65,29,53,59,77,69,38,45,73,59,53,78,79,55,52,45,43,39,31,21,33,65,59,60,0,76,85,82,67,68,31,12,22,19,31,20,42,83,65,25,"Big Ten","Washington","Tight End","Launch Ratings"
23785,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Dejuan","Lane",74,52,79,"Jessup","Maryland","Eligible",10,"Sophomore",92,88,87,91,68,75,58,60,39,41,65,36,65,84,34,30,83,60,88,54,32,28,57,57,69,31,79,61,58,53,40,78,42,75,84,51,55,65,0,34,34,90,52,53,73,37,29,17,20,26,37,94,53,77,"Big Ten","Penn State","Strong Safety","Launch Ratings"
10030,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/122.png?im=FaceCrop,padding=0.7","Derek","Carter",70,17,79,"Birmingham","Alabama","Previous",13,"Senior",92,88,86,92,54,85,43,52,39,38,58,30,60,86,23,29,67,48,82,54,30,45,51,58,74,26,79,61,58,54,24,84,37,79,82,55,55,64,0,23,29,91,56,43,63,22,28,25,29,25,41,85,38,78,"Big 12","West Virginia","Cornerback","Launch Ratings"
20217,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/91.png?im=FaceCrop,padding=0.7","Derek","McDonald",76,72,79,"Atlanta","Georgia","Previous",15,"Senior",86,78,81,87,77,85,34,72,44,36,54,39,41,71,28,78,84,67,87,31,39,46,39,54,68,30,79,64,61,55,34,83,67,32,88,54,52,64,0,32,30,78,28,37,82,32,28,30,29,37,44,87,39,75,"ACC","Syracuse","Mike Backer","Launch Ratings"
10511,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/35.png?im=FaceCrop,padding=0.7","Dermaricus","Davis",76,40,79,"Altadena","California","Eligible",6,"Freshman",87,84,78,92,53,67,73,33,68,60,66,33,51,81,28,27,33,27,83,80,47,46,24,30,44,29,79,29,26,26,75,49,32,44,60,20,17,24,0,33,38,81,72,46,28,81,76,78,87,90,86,89,39,46,"Mountain West","Hawaii","Quarterback","Launch Ratings"
980,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/17.png?im=FaceCrop,padding=0.7","Devin","Brown",75,55,79,"Gilbert","Arizona","Previous",13,"Junior",85,79,77,88,63,78,77,49,61,72,72,39,49,77,30,44,57,42,86,73,38,24,30,45,46,27,79,51,41,37,70,67,47,41,44,46,37,38,0,40,40,80,76,60,48,75,83,87,83,93,77,86,58,38,"ACC","Cal","Quarterback","Launch Ratings"
23121,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/119.png?im=FaceCrop,padding=0.7","Devin","Kylany",76,159,79,"Lake Stevens","Washington","Previous",70,"Senior",66,53,66,93,90,84,24,45,37,33,56,24,29,47,24,29,47,85,86,28,38,40,37,85,28,24,79,83,79,85,41,29,42,25,29,81,85,77,0,24,25,56,25,33,38,21,32,28,35,25,48,87,37,22,"ACC","Wake Forest","Center","Launch Ratings"
10404,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/105.png?im=FaceCrop,padding=0.7","Devin","Aupiu",77,110,79,"Oxnard","California","Previous",44,"Junior",81,73,78,81,82,85,42,82,25,41,56,30,34,64,30,67,85,80,89,30,35,32,37,40,36,30,79,56,52,44,39,84,82,45,77,44,47,55,0,30,30,74,30,39,82,21,30,10,24,26,40,86,41,55,"Big Ten","UCLA","Right Edge","Launch Ratings"
2343,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/133.png?im=FaceCrop,padding=0.7","Dexter","Ricks Jr.",71,20,79,"Milledgeville","Georgia","Previous",20,"Junior",91,88,89,93,56,83,53,48,31,32,47,54,72,85,32,30,57,46,77,61,34,42,53,52,78,32,79,62,57,53,28,84,32,75,76,53,51,61,0,32,55,88,61,36,56,14,17,32,35,14,44,85,32,83,"Conference USA","Liberty","Cornerback","Launch Ratings"
20299,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Dietrick","Pennington",77,195,79,"Memphis","Tennessee","Previous",59,"Senior",63,62,62,86,96,69,49,61,44,47,50,28,28,62,24,26,67,89,96,24,35,37,26,77,26,24,79,71,73,82,31,38,65,29,26,79,80,88,0,24,29,52,24,49,50,12,24,16,16,12,31,89,49,24,"ACC","Clemson","Left Guard","Launch Ratings"
23935,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Dijon","Lee Jr.",76,42,79,"Carson","California","Eligible",5,"Freshman",90,92,95,89,67,71,82,57,35,74,69,70,77,89,65,42,66,59,92,82,28,29,66,45,80,65,79,40,40,40,30,75,32,73,78,49,45,45,0,68,80,92,76,60,69,31,32,35,28,37,25,87,57,77,"SEC","Alabama","Cornerback","Launch Ratings"
22303,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/125.png?im=FaceCrop,padding=0.7","Dilin","Jones",72,45,79,"Laurel","Maryland","Previous",7,"Freshman",95,89,84,85,66,71,79,36,29,79,75,54,68,88,42,27,35,39,87,84,24,25,85,36,48,60,79,48,45,47,47,58,31,40,33,41,29,29,0,67,62,89,77,68,34,14,25,12,26,22,44,87,64,43,"Big Ten","Wisconsin","Halfback","Launch Ratings"
5692,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/91.png?im=FaceCrop,padding=0.7","Dion","Wilson Jr.",77,136,79,"Perris","California","Previous",4,"Senior",79,65,79,92,87,81,30,76,30,40,51,30,40,48,29,72,83,73,92,27,42,30,32,57,31,30,79,67,63,54,35,79,83,31,82,57,52,65,0,27,29,66,28,39,84,22,13,18,21,17,48,96,39,26,"ACC","Syracuse","Defensive Tackle","Launch Ratings"
640,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/110.png?im=FaceCrop,padding=0.7","DJ","Wingfield",75,150,79,"Los Angeles","California","Previous",56,"Senior",68,62,60,94,87,88,43,53,37,42,53,25,28,52,25,24,59,82,86,28,47,34,26,74,24,26,79,77,81,74,35,39,58,26,24,86,88,77,0,26,27,56,27,43,41,31,37,34,37,32,28,91,43,25,"Big Ten","USC","Left Guard","Launch Ratings"
21604,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","Dominick","McKinley",78,146,79,"Lafayette","Louisiana","Eligible",96,"Sophomore",85,72,77,87,86,77,37,81,33,39,55,37,46,61,37,83,82,74,85,37,26,38,37,57,42,37,79,63,61,56,35,80,76,43,83,58,53,62,0,37,37,71,37,39,86,15,32,30,33,22,25,89,40,39,"SEC","LSU","Defensive Tackle","Launch Ratings"
10265,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/38.png?im=FaceCrop,padding=0.7","Dominique","Ratcliff",75,135,79,"Conroe","Texas","Previous",91,"Senior",74,66,73,85,91,76,29,81,26,44,51,30,40,53,28,73,86,84,88,30,33,39,38,55,28,28,79,68,48,40,48,79,80,31,82,57,54,69,0,30,28,65,28,44,83,24,15,19,26,32,37,91,43,23,"Big Ten","Indiana","Defensive Tackle","Launch Ratings"
22488,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","Domonique","Thomas",69,50,79,"Ohatchee","Alabama","Previous",26,"Senior",91,81,82,86,77,76,83,49,34,77,83,54,62,83,49,41,58,39,87,85,40,34,63,40,37,55,79,58,28,31,48,33,43,28,45,45,30,33,0,61,55,87,80,73,55,18,13,10,30,14,24,85,83,29,"SEC","Ole Miss","Halfback","Launch Ratings"
8261,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/50.png?im=FaceCrop,padding=0.7","Dontay","Joyner",72,20,79,"Lakeland","Florida","Eligible",6,"Junior",93,90,86,92,50,76,51,42,33,32,50,56,70,88,32,29,52,37,78,58,44,40,51,54,82,29,79,62,49,39,34,74,28,76,82,51,51,60,0,30,65,90,60,34,70,12,22,37,21,27,27,86,32,80,"Big Ten","Maryland","Cornerback","Launch Ratings"
10290,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/97.png?im=FaceCrop,padding=0.7","Dorion","Strawn",78,155,79,"Ennis","Texas","Previous",64,"Senior",72,55,69,88,88,86,45,59,48,47,53,27,29,53,26,29,63,88,91,31,31,34,32,82,30,30,79,83,79,87,45,37,65,29,27,80,82,78,0,29,32,61,27,47,46,32,31,33,30,36,46,87,46,30,"Sun Belt","Texas State","Left Tackle","Launch Ratings"
1773,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/21.png?im=FaceCrop,padding=0.7","Dre'lon","Miller",73,40,79,"Silsbee","Texas","Eligible",6,"Sophomore",93,92,94,83,72,80,82,52,24,78,74,84,83,93,80,42,69,44,81,83,44,48,91,41,51,79,79,30,16,26,46,54,45,38,61,53,42,44,0,84,87,91,79,42,62,14,28,37,23,11,25,84,59,44,"Big 12","Colorado","Wide Receiver","Launch Ratings"
6658,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/51.png?im=FaceCrop,padding=0.7","Drue","Watts",71,60,79,"Palmdale","California","Previous",7,"Senior",87,80,81,83,70,88,32,73,40,39,48,37,58,75,28,61,85,61,89,34,45,31,36,43,68,29,79,52,38,35,41,87,60,22,85,41,42,51,0,29,31,82,36,38,80,19,30,22,33,39,34,85,39,75,"The American","Memphis","Sam Backer","Launch Ratings"
1702,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/31.png?im=FaceCrop,padding=0.7","Dylan","Lynch",70,15,79,"Bakersfield","California","Eligible",46,"Senior",64,62,50,88,42,68,44,41,31,34,50,33,27,56,35,26,37,46,90,38,87,92,48,31,43,35,79,43,32,45,43,35,32,34,32,36,42,26,0,33,28,69,38,25,30,24,12,11,21,12,38,88,47,37,"Mountain West","Fresno State","Kicker","Launch Ratings"
1621,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Dylan","Joyce",74,55,79,"Kyabram","Non-US","Eligible",94,"Junior",63,63,80,85,65,69,26,43,32,27,57,43,31,61,25,26,44,29,88,32,89,88,33,27,34,26,79,39,45,34,35,42,38,36,40,11,24,43,0,38,35,66,41,29,38,15,17,14,34,36,43,93,30,34,"ACC","Miami","Punter","Launch Ratings"
21688,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/22.png?im=FaceCrop,padding=0.7","Dylan","Phelps",75,30,79,"Las Vegas","Nevada","Previous",27,"Sophomore",89,87,87,87,66,82,44,61,46,65,66,53,66,85,27,30,77,49,92,67,34,24,56,54,78,27,79,68,47,42,24,83,41,75,82,62,55,69,0,24,54,87,66,55,74,10,12,27,21,13,36,85,46,76,"Mountain West","Colorado State","Cornerback","Launch Ratings"
19609,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/38.png?im=FaceCrop,padding=0.7","E.J.","Williams Jr.",76,43,79,"Phenix City","Alabama","Previous",7,"Senior",90,86,92,86,70,84,70,49,37,67,67,84,83,86,78,44,62,37,81,79,37,30,82,37,47,83,79,39,28,38,36,48,40,35,57,55,40,41,0,84,91,90,72,40,56,12,20,10,37,38,28,85,53,49,"Big Ten","Indiana","Wide Receiver","Launch Ratings"
8907,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/31.png?im=FaceCrop,padding=0.7","E.J.","Warner",72,43,79,"Phoenix","Arizona","Eligible",13,"Senior",84,81,74,97,56,88,81,39,43,54,67,24,48,80,25,32,35,32,84,77,48,48,24,28,31,26,79,35,30,30,85,58,32,31,56,24,21,27,0,24,26,77,73,35,36,73,83,87,75,86,79,94,44,67,"Mountain West","Fresno State","Quarterback","Launch Ratings"
23376,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/36.png?im=FaceCrop,padding=0.7","Eddie","Walls III",76,90,79,"Fort Myers","Florida","Previous",90,"Senior",86,79,80,84,80,87,30,77,41,44,58,46,44,71,31,82,81,76,92,55,30,44,36,56,57,26,79,70,60,56,24,88,88,29,92,61,53,67,0,28,25,80,51,44,76,22,30,36,13,23,26,87,45,65,"Big 12","Houston","Sam Backer","Launch Ratings"
3066,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Elija","Lofton",75,70,79,"Las Vegas","Nevada","Eligible",9,"Sophomore",91,86,89,85,68,76,82,36,29,75,75,78,85,81,72,30,44,55,87,82,34,47,72,56,22,70,79,51,47,44,44,41,30,23,33,59,51,55,0,75,86,85,79,77,32,21,34,35,44,27,38,88,72,23,"ACC","Miami","Tight End","Launch Ratings"
31254,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/133.png?im=FaceCrop,padding=0.7","Elijah","Canion",76,65,79,"Hollywood","Florida","Previous",5,"Senior",88,83,87,87,79,84,77,58,49,75,72,87,84,79,74,46,73,66,88,79,25,28,74,56,24,82,79,33,23,34,25,34,45,29,67,66,55,56,0,78,87,86,74,75,64,43,44,45,45,48,45,93,76,44,"Conference USA","Liberty","Wide Receiver","Launch Ratings"
19907,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/5.png?im=FaceCrop,padding=0.7","Elijah","O'Neal",75,85,79,"Renton","Washington","Previous",9,"Senior",87,79,82,82,74,77,31,67,35,31,55,40,43,73,41,85,85,60,85,55,29,40,42,30,43,40,79,41,40,36,27,76,77,49,84,32,37,42,0,38,37,81,51,45,83,29,31,27,37,17,36,84,46,54,"Big 12","Arizona State","Right Edge","Launch Ratings"
8117,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/41.png?im=FaceCrop,padding=0.7","Emmanuel","Henderson Jr.",73,30,79,"Hartford","Alabama","Eligible",2,"Senior",93,91,91,88,63,80,84,41,25,79,68,78,82,89,82,33,44,35,86,86,43,30,91,29,59,81,79,30,16,26,41,58,31,39,38,54,27,27,0,83,84,92,83,70,39,30,35,20,19,37,39,87,63,53,"Big 12","Kansas","Wide Receiver","Launch Ratings"
5757,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/54.png?im=FaceCrop,padding=0.7","Enow","Etta",77,148,79,"Keller","Texas","Eligible",17,"Junior",89,78,83,80,85,74,40,83,41,44,57,42,55,69,42,67,83,83,86,42,31,35,41,57,39,42,79,60,54,50,41,77,77,39,82,51,51,62,0,42,42,78,42,42,84,28,18,28,16,18,29,81,40,43,"Big Ten","Michigan","Right Edge","Launch Ratings"
22860,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/41.png?im=FaceCrop,padding=0.7","Enrique","Cruz Jr.",78,159,79,"Chicago","Illinois","Previous",77,"Senior",73,59,72,90,89,86,39,48,41,38,56,33,30,54,31,34,51,84,85,35,34,41,33,82,15,34,79,82,77,86,47,34,53,14,35,78,78,80,0,29,34,60,33,41,40,15,29,37,28,11,45,92,40,14,"Big 12","Kansas","Right Tackle","Launch Ratings"
21906,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/99.png?im=FaceCrop,padding=0.7","Ethan","Spoth",76,142,79,"Eastlake","Ohio","Previous",72,"Junior",68,61,64,84,87,85,30,57,28,45,58,24,30,58,24,31,65,87,89,28,46,44,40,78,26,26,79,83,78,86,35,46,61,28,30,75,77,74,0,28,30,60,29,42,48,15,33,19,32,22,24,82,45,17,"MAC","Toledo","Right Guard","Launch Ratings"
1709,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/68.png?im=FaceCrop,padding=0.7","Evan","Malcore",78,138,79,"Sun Prairie","Wisconsin","Previous",54,"Junior",73,59,72,87,84,85,34,47,25,37,50,32,29,53,30,38,46,86,83,30,26,39,30,84,33,29,79,83,83,84,38,40,45,33,31,75,75,75,0,29,30,63,30,34,35,37,19,31,23,38,30,86,33,30,"MAC","Northern Illinois","Left Tackle","Launch Ratings"
10629,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/67.png?im=FaceCrop,padding=0.7","Evan","Jackson",71,23,79,"Houston","Texas","Eligible",3,"Junior",88,86,87,94,60,83,46,48,31,33,53,54,73,84,28,30,69,49,91,45,40,42,45,56,71,27,79,58,60,52,24,85,30,71,83,47,52,60,0,27,55,86,46,40,69,11,14,13,25,38,33,92,36,79,"The American","North Texas","Free Safety","Launch Ratings"
20049,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/78.png?im=FaceCrop,padding=0.7","Exodus","Ayers",72,30,79,"Albuquerque","New Mexico","Eligible",23,"Sophomore",92,89,92,84,64,79,63,59,46,44,69,68,75,87,65,41,72,53,82,79,34,31,65,58,73,71,79,67,60,55,35,79,47,76,77,60,54,67,0,67,77,90,78,51,74,34,33,20,23,14,34,80,43,78,"Pac-12","Oregon State","Cornerback","Launch Ratings"
25520,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/50.png?im=FaceCrop,padding=0.7","Eyan","Thomas",75,168,79,"Chichester","Pennsylvania","Previous",98,"Sophomore",72,58,69,79,90,77,24,83,38,41,45,24,33,50,24,53,87,89,90,24,10,12,14,58,15,24,79,56,55,57,28,79,82,19,76,60,57,61,0,24,24,63,24,45,84,31,26,10,15,34,35,90,47,16,"Big Ten","Maryland","Defensive Tackle","Launch Ratings"
20113,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/46.png?im=FaceCrop,padding=0.7","Fred","Robertson",67,25,79,"New Orleans","Louisiana","Eligible",24,"Sophomore",92,86,86,85,59,72,75,36,42,77,78,62,70,85,45,26,30,40,84,87,24,39,81,35,34,59,79,50,48,50,31,44,27,33,28,43,32,31,0,67,66,90,83,50,31,32,10,36,10,33,43,77,55,34,"Conference USA","Louisiana Tech","Halfback","Launch Ratings"
7363,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/84.png?im=FaceCrop,padding=0.7","Gabriel","Plascencia",72,70,79,"Oakland","California","Previous",11,"Senior",66,59,71,88,61,65,39,45,48,29,59,41,28,54,30,27,37,26,87,46,90,90,42,46,40,37,79,47,27,15,34,48,27,32,39,13,25,44,0,26,45,67,40,46,29,21,37,28,30,32,34,95,46,31,"Mountain West","San Diego State","Kicker","Launch Ratings"
21799,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/30.png?im=FaceCrop,padding=0.7","Gavin","Sawchuk",71,49,79,"Littleton","Colorado","Previous",27,"Junior",95,90,87,87,66,79,74,40,30,72,73,57,60,86,54,35,45,48,87,82,40,26,87,45,39,60,79,49,49,52,37,59,33,40,42,48,37,37,0,65,60,92,78,63,39,25,34,17,14,31,34,80,62,47,"ACC","Florida State","Halfback","Launch Ratings"
23527,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Gentry","Williams",71,27,79,"Tulsa","Oklahoma","Previous",9,"Junior",95,93,94,86,57,74,73,45,37,60,55,48,77,92,52,48,72,54,85,88,46,38,69,57,76,50,79,62,61,54,33,72,45,73,74,56,54,62,0,68,60,97,77,45,59,28,26,12,14,18,35,90,36,74,"SEC","Oklahoma","Cornerback","Launch Ratings"
6075,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/42.png?im=FaceCrop,padding=0.7","George","Fitzpatrick",78,149,79,"Englewood","Colorado","Previous",59,"Junior",73,64,75,83,86,78,33,43,37,33,54,34,34,52,36,39,45,82,86,31,24,30,37,82,31,33,79,85,86,83,39,40,43,36,31,78,86,83,0,31,35,59,35,34,37,14,35,11,12,22,44,85,34,32,"Big 12","Kansas State","Right Tackle","Launch Ratings"
6804,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Guerby","Lambert",79,175,79,"Boston","Massachusetts","Previous",76,"Freshman",81,67,79,87,88,71,25,35,39,27,60,43,40,53,42,49,28,87,79,45,40,24,41,80,45,40,79,84,79,88,37,38,29,43,46,79,76,82,0,44,45,68,44,25,28,19,27,20,24,36,26,87,24,45,"Independent","Notre Dame","Right Tackle","Launch Ratings"
6107,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/62.png?im=FaceCrop,padding=0.7","Gunnar","Gottula",78,145,79,"Lincoln","Nebraska","Previous",77,"Sophomore",77,72,73,89,88,80,46,59,43,45,53,34,36,60,32,42,64,86,88,36,37,35,34,84,32,33,79,82,80,84,36,45,61,38,33,81,84,78,0,34,35,67,32,46,44,24,27,11,21,38,35,88,42,38,"Big Ten","Nebraska","Left Tackle","Launch Ratings"
23356,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/12.png?im=FaceCrop,padding=0.7","Hall","Schmidt",79,148,79,"Gig Harbor","Washington","Previous",65,"Junior",75,63,72,83,88,87,36,48,47,36,54,32,28,55,29,37,48,87,85,31,47,48,33,82,29,30,79,77,71,83,33,44,47,30,32,84,87,81,0,28,28,65,33,38,39,14,25,27,11,15,39,80,35,27,"Mountain West","Boise State","Right Tackle","Launch Ratings"
1353,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","Hayden","Hansen",80,111,79,"Weatherford","Texas","Previous",89,"Junior",72,70,66,90,84,84,68,66,27,72,75,85,75,65,49,63,52,68,93,70,35,29,62,61,23,65,79,70,68,61,42,29,63,14,66,71,69,67,0,68,83,70,68,71,68,26,15,29,36,18,42,95,74,35,"SEC","Florida","Tight End","Launch Ratings"
25269,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Hayden","Lowe",77,90,79,"Los Angeles","California","Eligible",14,"Freshman",92,85,88,77,79,73,55,76,48,44,60,53,55,76,29,75,87,77,93,70,25,25,50,53,44,33,79,46,43,40,31,74,85,51,85,47,47,46,0,35,57,84,65,67,80,32,34,37,39,45,32,92,59,49,"ACC","Miami","Left Edge","Launch Ratings"
23920,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/63.png?im=FaceCrop,padding=0.7","Herschel","Turner",69,30,79,"Richmond","California","Eligible",2,"Freshman",93,89,85,85,61,74,77,46,26,73,74,72,72,87,45,37,58,49,88,84,48,24,95,41,53,55,79,56,52,58,35,63,40,42,51,50,35,41,0,70,74,89,82,63,49,27,14,22,15,36,26,79,70,54,"Mountain West","Nevada","Halfback","Launch Ratings"
20614,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/33.png?im=FaceCrop,padding=0.7","Isaiah","Dunson",73,37,79,"Tucker","Georgia","Previous",14,"Senior",94,93,89,90,61,85,71,50,42,41,58,48,75,95,46,47,72,53,89,85,25,31,67,57,70,45,79,65,62,51,35,73,46,78,76,58,54,66,0,47,48,92,77,50,60,18,28,23,28,24,28,89,40,77,"Sun Belt","Georgia State","Cornerback","Launch Ratings"
31454,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/60.png?im=FaceCrop,padding=0.7","Isaiah","Bryant",69,5,79,"Mount Dora","Florida","Eligible",25,"Junior",90,87,83,86,55,69,85,36,29,77,80,50,68,86,42,29,29,37,78,84,45,31,76,37,66,53,79,50,46,51,31,62,26,42,30,42,27,32,0,57,67,87,84,59,30,31,26,21,35,16,42,88,51,58,"The American","Navy","Halfback","Launch Ratings"
30834,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/132.png?im=FaceCrop,padding=0.7","Isaiah","Alston",76,39,79,"Carteret","New Jersey","Previous",8,"Senior",91,84,88,86,77,85,76,53,39,78,76,84,83,81,77,46,69,49,87,83,29,33,74,46,34,78,79,34,21,30,39,51,46,36,64,62,43,42,0,81,89,87,77,65,64,19,24,13,34,13,33,90,65,67,"Sun Belt","James Madison","Wide Receiver","Launch Ratings"
28933,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/117.png?im=FaceCrop,padding=0.7","J'Mari","Taylor",69,44,79,"Charlotte","North Carolina","Previous",3,"Senior",89,84,83,88,80,79,77,51,30,79,84,57,71,82,49,40,63,37,87,85,35,31,59,40,33,51,79,53,24,33,26,63,39,37,56,46,32,35,0,59,45,88,80,75,57,18,25,18,29,18,27,88,72,69,"ACC","Virginia","Halfback","Launch Ratings"
21241,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/36.png?im=FaceCrop,padding=0.7","J'Marion","Burnette",74,65,79,"Andalusia","Alabama","Eligible",20,"Sophomore",89,81,86,80,79,77,80,56,31,80,77,53,60,81,45,47,70,61,90,79,28,27,70,56,34,51,79,60,59,58,44,50,47,36,64,55,56,56,0,54,55,85,78,85,62,26,23,26,33,27,36,92,84,65,"Big 12","Houston","Halfback","Launch Ratings"
22463,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/89.png?im=FaceCrop,padding=0.7","J'Mond","Tapp",75,95,79,"Donaldsonville","Louisiana","Previous",14,"Junior",86,77,81,78,81,79,38,77,47,38,55,37,41,68,37,75,86,78,84,37,30,41,40,51,39,37,79,55,49,45,30,77,87,43,84,43,43,56,0,37,37,76,37,40,80,28,34,15,37,24,36,81,39,42,"Sun Belt","Southern Miss","Right Edge","Launch Ratings"
7067,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/104.png?im=FaceCrop,padding=0.7","Ja'Cari","Henderson",72,15,79,"Sanford","Florida","Previous",1,"Junior",94,93,94,92,49,74,65,44,25,26,62,42,64,90,45,42,52,45,74,79,43,38,60,52,76,44,79,56,54,50,35,73,31,80,70,48,49,54,0,45,47,92,73,23,57,21,21,24,14,16,45,83,24,83,"Big 12","UCF","Cornerback","Launch Ratings"
4842,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/26.png?im=FaceCrop,padding=0.7","Ja'Marley","Riddle",72,22,79,"Kingsland","Georgia","Eligible",2,"Sophomore",90,87,88,91,61,79,72,55,27,64,59,61,75,85,40,42,70,57,90,69,24,25,65,55,71,39,79,50,56,50,39,79,29,64,82,47,51,56,0,39,64,86,65,30,64,30,36,26,33,23,37,80,32,83,"The American","East Carolina","Free Safety","Launch Ratings"
4259,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/129.png?im=FaceCrop,padding=0.7","Ja'Vin","Simpkins",69,30,79,"Miami","Florida","Previous",5,"Junior",93,89,88,86,67,79,76,46,49,75,70,69,72,88,49,39,53,33,84,83,14,13,88,35,61,60,79,57,30,29,28,54,35,38,51,44,29,32,0,67,71,89,78,57,47,31,32,33,41,40,34,77,58,47,"Sun Belt","Coastal Carolina","Halfback","Launch Ratings"
21498,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/35.png?im=FaceCrop,padding=0.7","Jackie","Johnson III",72,85,79,"Honolulu","Hawaii","Previous",57,"Senior",85,77,77,84,76,85,33,69,24,33,53,31,29,72,30,79,79,53,87,31,39,39,39,25,30,29,79,42,34,31,32,86,84,39,85,29,36,40,0,30,31,78,32,34,82,21,12,11,23,12,34,83,33,46,"Mountain West","Hawaii","Right Edge","Launch Ratings"
18103,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Jacob","Ulrich",77,46,79,"Dacula","Georgia","Previous",87,"Sophomore",66,58,70,85,55,69,44,44,46,42,59,29,45,51,44,35,26,31,86,48,83,91,39,36,44,32,79,26,36,33,26,32,41,32,24,21,40,32,0,46,30,64,31,29,36,26,12,31,11,35,46,91,28,26,"SEC","Oklahoma","Punter","Launch Ratings"
21817,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Jacob","Sexton",78,170,79,"Edmond","Oklahoma","Eligible",76,"Senior",66,55,71,82,95,84,48,61,36,48,50,27,29,59,30,31,68,90,89,28,29,31,26,77,25,31,79,73,69,79,32,40,69,30,26,81,77,84,0,29,25,58,27,46,46,23,30,34,16,12,29,88,45,26,"SEC","Oklahoma","Left Tackle","Launch Ratings"
22673,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/30.png?im=FaceCrop,padding=0.7","Jacob","Rizy",77,150,79,"Westport","Connecticut","Previous",64,"Senior",69,59,71,85,87,81,39,45,30,39,53,31,28,56,27,34,49,84,89,28,28,45,30,73,28,30,79,84,82,86,25,37,45,30,33,79,80,78,0,30,26,57,28,36,38,17,25,14,26,38,39,83,36,26,"ACC","Florida State","Center","Launch Ratings"
20103,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/39.png?im=FaceCrop,padding=0.7","Jacob","Gill",72,25,79,"Raleigh","North Carolina","Previous",5,"Senior",91,88,88,90,66,85,82,47,28,73,74,83,83,87,79,37,57,57,91,86,43,24,68,51,43,84,79,32,20,32,42,40,39,31,49,63,47,48,0,85,84,90,76,55,48,23,19,27,29,26,41,88,63,34,"Big Ten","Iowa","Wide Receiver","Launch Ratings"
7290,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/54.png?im=FaceCrop,padding=0.7","Jaden","Mangham",74,25,79,"Beverly Hills","Michigan","Eligible",3,"Senior",93,90,91,90,60,79,74,50,30,31,43,60,79,88,67,45,75,54,85,66,28,46,57,56,77,60,79,51,59,53,47,79,31,67,82,47,50,56,0,66,66,90,72,36,70,30,11,14,11,13,27,86,31,72,"Big Ten","Michigan","Free Safety","Launch Ratings"
3405,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/45.png?im=FaceCrop,padding=0.7","Jager","Burton",76,163,79,"Lexington","Kentucky","Previous",62,"Senior",77,73,71,88,85,82,37,43,43,34,53,35,41,60,38,43,44,82,92,39,40,40,37,82,36,38,79,83,85,82,38,38,46,35,40,76,80,72,0,35,35,62,40,33,34,28,28,20,31,26,38,91,35,35,"SEC","Kentucky","Center","Launch Ratings"
23531,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/100.png?im=FaceCrop,padding=0.7","Jah-Mal","Williams",76,80,79,"Carver Ranches","Florida","Previous",0,"Senior",87,82,84,81,73,84,30,70,25,42,58,42,40,75,26,85,82,66,91,30,38,46,37,56,55,25,79,67,50,39,35,84,75,30,86,59,54,68,0,28,27,80,25,42,75,20,21,23,12,28,45,83,39,63,"Sun Belt","Troy","Right Edge","Launch Ratings"
7616,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/117.png?im=FaceCrop,padding=0.7","Jahmeer","Carter",74,151,79,"Baltimore","Maryland","Previous",90,"Senior",69,57,64,83,89,86,25,83,48,45,56,25,25,48,24,63,85,84,97,22,35,34,32,59,22,23,79,69,61,54,40,84,81,19,78,59,54,67,0,26,25,60,26,44,84,30,31,34,23,12,39,94,43,23,"ACC","Virginia","Defensive Tackle","Launch Ratings"
31490,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/8.png?im=FaceCrop,padding=0.7","Jake","Rendina",71,95,79,"Kalispell","Montana","Eligible",33,"Junior",81,74,68,85,82,85,60,67,45,74,84,60,66,71,28,65,10,72,87,72,33,45,48,75,28,41,79,64,44,55,35,31,61,15,64,71,66,63,0,53,48,79,68,80,70,10,10,13,32,29,27,89,81,34,"The American","Army","Fullback","Launch Ratings"
14513,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Jake","Maikkula",77,139,79,"Sedalia","Colorado","Previous",69,"Junior",77,67,75,92,83,86,29,42,39,29,54,39,38,56,41,48,36,85,87,37,27,38,35,88,38,35,79,82,80,84,33,40,39,35,36,73,78,69,0,35,39,68,35,32,33,32,20,26,19,26,31,90,29,41,"SEC","Oklahoma","Center","Launch Ratings"
8056,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Jalen","Hale",73,37,79,"Longview","Texas","Previous",8,"Sophomore",93,91,88,88,65,71,80,46,46,75,61,79,86,90,83,42,60,35,81,84,39,41,88,32,66,83,79,31,18,30,48,48,38,35,57,40,31,35,0,86,88,95,85,46,53,22,29,29,36,32,42,85,40,29,"SEC","Alabama","Wide Receiver","Launch Ratings"
23320,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/71.png?im=FaceCrop,padding=0.7","Jalen","Thomeson",71,27,79,"Greenwood","Indiana","Eligible",22,"Junior",90,86,84,87,66,81,52,59,38,40,28,23,55,83,30,40,80,49,82,66,38,33,47,57,69,31,79,61,55,48,31,82,43,61,90,49,55,66,0,30,26,85,65,53,74,30,15,11,20,18,47,77,51,74,"MAC","Ohio","Free Safety","Launch Ratings"
31557,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/68.png?im=FaceCrop,padding=0.7","Jalonnie","Williams",76,126,79,"Milwaukee","Wisconsin","Previous",11,"Senior",78,69,74,82,84,86,42,83,34,44,57,28,27,64,30,62,84,70,86,28,30,48,40,43,26,27,79,59,55,48,31,85,85,22,83,49,49,64,0,27,27,72,30,40,76,10,28,18,17,35,41,85,44,23,"MAC","Northern Illinois","Left Edge","Launch Ratings"
10662,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/117.png?im=FaceCrop,padding=0.7","Jam","Jackson",74,31,79,"Plant City","Florida","Eligible",9,"Senior",88,88,89,88,67,88,46,50,33,32,46,24,57,87,27,30,75,43,82,55,47,24,48,53,75,26,79,59,58,52,47,87,29,86,79,54,52,61,0,26,29,89,58,40,67,14,24,24,23,12,29,85,34,79,"ACC","Virginia","Cornerback","Launch Ratings"
25486,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/119.png?im=FaceCrop,padding=0.7","Jamar","Searcy",68,20,79,"Pittsburg","California","Eligible",29,"Freshman",92,91,92,76,62,63,78,41,49,75,71,68,75,89,65,35,37,50,86,88,15,15,77,45,37,69,79,52,53,49,43,60,38,33,47,42,43,43,0,73,67,90,87,55,45,32,33,35,33,37,25,83,63,33,"ACC","Wake Forest","Halfback","Launch Ratings"
22899,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/12.png?im=FaceCrop,padding=0.7","Jambres","Dubar",72,45,79,"Anna","Texas","Eligible",1,"Junior",93,84,85,88,72,72,79,54,25,81,79,72,71,84,46,44,66,47,90,85,45,44,80,42,45,54,79,58,49,59,41,45,46,34,64,50,38,41,0,59,60,90,79,77,58,26,36,17,36,34,26,91,75,45,"Mountain West","Boise State","Halfback","Launch Ratings"
28104,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","James","Flanigan",78,81,79,"Green Bay","Wisconsin","Eligible",88,"Freshman",77,75,79,88,79,76,56,26,36,81,72,80,83,73,72,46,46,65,88,84,31,41,62,66,47,74,79,63,64,63,42,65,37,24,40,61,62,62,0,76,78,77,77,65,42,17,21,19,15,29,48,90,62,25,"Independent","Notre Dame","Tight End","Launch Ratings"
23414,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/37.png?im=FaceCrop,padding=0.7","James","Thompson Jr.",78,140,79,"Cincinnati","Ohio","Previous",90,"Senior",72,63,68,75,84,83,39,83,44,40,50,25,23,48,25,73,82,66,96,25,48,46,34,37,23,25,79,55,48,47,47,85,85,20,90,46,47,53,0,25,25,66,25,42,84,16,19,15,34,18,46,86,41,16,"Big Ten","Illinois","Left Edge","Launch Ratings"
5855,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/42.png?im=FaceCrop,padding=0.7","Jaron","Tibbs",74,52,79,"Indianapolis","Indiana","Eligible",12,"Junior",89,86,90,81,80,82,77,55,33,75,71,85,84,85,77,48,75,46,88,79,47,39,63,40,30,84,79,39,33,41,24,33,49,28,68,49,37,39,0,85,88,87,75,65,66,10,11,21,20,30,48,83,69,36,"Big 12","Kansas State","Wide Receiver","Launch Ratings"
23255,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/14.png?im=FaceCrop,padding=0.7","Nate","Pabst",77,155,79,"Springdale","Ohio","Previous",75,"Senior",75,65,74,88,88,89,32,43,27,34,57,35,35,56,33,41,40,87,89,35,46,32,32,83,38,38,79,83,79,86,48,34,40,38,35,73,73,72,0,38,36,63,37,31,31,21,15,24,12,31,24,88,32,32,"MAC","Bowling Green","Right Tackle","Launch Ratings"
10686,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/66.png?im=FaceCrop,padding=0.7","Nathan","Leacock",75,57,79,"Rolesville","North Carolina","Previous",15,"Sophomore",91,84,85,85,75,73,70,53,40,76,69,86,83,84,83,45,71,42,87,80,32,24,75,37,45,80,79,30,16,28,45,47,44,35,66,47,36,36,0,78,86,94,78,64,60,29,23,16,15,34,48,88,65,49,"ACC","North Carolina","Wide Receiver","Launch Ratings"
19217,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/58.png?im=FaceCrop,padding=0.7","Nic","Mitchell",74,70,79,"Jacksonville","Florida","Previous",40,"Senior",87,83,82,84,77,83,45,72,44,43,54,55,63,78,32,58,85,68,91,41,32,35,44,46,67,32,79,59,53,49,29,86,62,31,84,52,49,60,0,35,33,82,44,46,85,30,30,11,18,21,31,85,42,70,"SEC","Mississippi State","Mike Backer","Launch Ratings"
3009,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/56.png?im=FaceCrop,padding=0.7","Nicholas","Vattiato",72,52,79,"Plantation","Florida","Previous",11,"Senior",85,81,77,88,64,86,64,48,64,63,66,25,36,79,24,45,54,45,84,60,34,41,24,45,23,25,79,54,35,36,76,55,46,22,61,46,39,39,0,23,30,83,63,48,48,77,84,85,79,89,73,82,54,24,"Conference USA","Middle Tennessee State","Quarterback","Launch Ratings"
2537,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/65.png?im=FaceCrop,padding=0.7","Nick","Session",72,30,79,"Gardena","California","Previous",5,"Senior",88,84,86,90,65,84,61,60,37,36,57,28,64,81,34,33,77,59,87,63,32,41,58,57,70,34,79,58,59,51,42,84,38,69,83,47,54,61,0,35,37,86,60,46,65,32,31,37,37,16,43,76,45,80,"Conference USA","New Mexico State","Strong Safety","Launch Ratings"
4201,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/38.png?im=FaceCrop,padding=0.7","Nico","Radicic",71,33,79,"Coppell","Texas","Previous",15,"Sophomore",68,69,59,87,53,68,37,41,42,29,51,28,31,70,38,41,37,35,86,39,88,88,36,44,28,26,79,47,33,27,29,37,39,25,30,16,34,30,0,41,40,69,47,31,30,21,18,15,31,27,47,91,25,45,"Big Ten","Indiana","Kicker","Launch Ratings"
18715,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/105.png?im=FaceCrop,padding=0.7","Nico","Davillier",76,111,79,"Maumelle","Arkansas","Previous",11,"Junior",80,75,79,77,81,80,40,87,31,42,57,33,36,67,33,68,83,74,88,33,41,26,42,46,34,33,79,59,54,50,27,82,82,34,80,48,50,59,0,33,33,73,33,40,82,29,19,27,19,28,34,81,40,39,"Big Ten","UCLA","Right Edge","Launch Ratings"
23405,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/103.png?im=FaceCrop,padding=0.7","Nigel","Tate",75,165,79,"Washington","D.C.","Previous",8,"Senior",66,59,66,89,88,78,25,81,37,46,50,22,27,44,22,67,87,79,99,22,29,37,31,56,32,22,79,66,64,56,45,76,87,21,78,59,56,68,0,23,24,56,24,45,83,11,28,24,29,23,35,98,47,18,"The American","UAB","Defensive Tackle","Launch Ratings"
7012,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/30.png?im=FaceCrop,padding=0.7","Omar","Graham Jr.",73,78,79,"Fort Lauderdale","Florida","Previous",9,"Junior",87,82,84,84,76,81,59,74,39,39,61,38,69,78,40,72,85,71,89,54,32,32,57,49,67,38,79,54,51,48,39,79,63,44,85,43,45,57,0,39,38,82,55,55,85,28,37,12,36,24,42,87,55,77,"ACC","Florida State","Will Backer","Launch Ratings"
4131,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/21.png?im=FaceCrop,padding=0.7","Omarion","Miller",74,50,79,"Vivian","Louisiana","Eligible",4,"Junior",91,86,90,87,69,82,74,49,41,66,63,83,84,86,82,45,61,40,87,80,38,34,80,36,43,81,79,35,29,37,31,57,45,40,58,42,34,33,0,83,84,90,80,23,55,16,34,24,30,17,40,91,45,51,"Big 12","Colorado","Wide Receiver","Launch Ratings"
19694,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/51.png?im=FaceCrop,padding=0.7","Omarion","Cooper",73,35,79,"Lehigh Acres","Florida","Previous",1,"Senior",93,88,91,93,67,80,61,55,43,44,59,50,69,87,40,46,77,52,91,76,38,37,64,56,73,42,79,64,59,52,33,79,48,80,78,60,54,69,0,40,46,90,69,52,71,11,33,31,36,15,39,93,44,80,"The American","Memphis","Cornerback","Launch Ratings"
25221,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/30.png?im=FaceCrop,padding=0.7","Ousmane","Kromah",73,58,79,"Leesburg","Georgia","Eligible",32,"Freshman",92,91,90,83,68,61,79,44,45,82,73,73,74,91,57,39,52,61,93,89,14,13,76,57,42,63,79,64,62,61,5,40,37,32,53,50,50,50,0,67,72,89,85,79,49,15,15,17,29,35,41,91,71,38,"ACC","Florida State","Halfback","Launch Ratings"
10190,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/115.png?im=FaceCrop,padding=0.7","Owen","McCown",73,30,79,"Rusk","Texas","Previous",13,"Junior",85,80,76,99,56,86,75,29,59,52,67,29,46,78,24,26,24,24,83,78,39,34,22,25,40,23,79,20,19,18,72,50,24,45,29,8,14,16,0,28,27,78,69,43,27,76,84,86,78,88,73,91,43,36,"The American","UTSA","Quarterback","Launch Ratings"
23254,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/92.png?im=FaceCrop,padding=0.7","Paul","Oyewale",76,100,79,"Houston","Texas","Previous",97,"Junior",80,72,75,83,83,82,48,80,37,49,60,32,36,64,32,58,83,74,89,31,43,29,43,51,27,31,79,68,60,56,30,81,84,31,82,60,54,71,0,32,33,74,31,47,82,34,27,32,33,24,47,86,49,55,"Big 12","TCU","Left Edge","Launch Ratings"
18457,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/110.png?im=FaceCrop,padding=0.7","Prince","Strachan",77,44,79,"Freeport","Non-US","Eligible",17,"Junior",87,83,89,83,75,85,61,53,43,73,67,84,85,79,82,44,68,41,84,79,24,48,59,36,30,81,79,33,18,29,29,47,42,34,66,52,37,35,0,84,89,88,74,42,61,36,22,25,13,19,25,85,53,61,"Big Ten","USC","Wide Receiver","Launch Ratings"
4670,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/5.png?im=FaceCrop,padding=0.7","Prince","Dorbah",74,80,79,"Dallas","Texas","Previous",32,"Senior",91,80,86,84,71,83,27,70,29,30,60,48,56,80,47,83,77,66,82,49,40,46,45,37,51,49,79,33,32,33,36,79,69,55,88,22,30,36,0,48,45,81,49,28,77,14,18,31,31,14,46,82,27,61,"Big 12","Arizona State","Right Edge","Launch Ratings"
994,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/110.png?im=FaceCrop,padding=0.7","Prophet","Brown",71,29,79,"Sacramento","California","Previous",16,"Senior",94,93,91,91,65,77,75,55,48,66,70,50,75,94,48,49,78,54,87,84,32,43,70,58,78,47,79,66,61,55,29,74,54,74,83,59,54,68,0,62,65,92,78,57,60,11,12,35,27,14,36,95,43,68,"Big Ten","USC","Cornerback","Launch Ratings"
1558,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/134.png?im=FaceCrop,padding=0.7","Qua'Vez","Humphreys",74,55,79,"Junction City","Kansas","Previous",7,"Senior",85,84,90,84,77,84,76,55,29,70,75,85,86,81,84,44,71,48,89,79,47,27,59,39,22,82,79,32,20,29,35,45,45,34,67,65,41,43,0,79,87,87,76,67,62,25,25,14,15,17,37,90,72,68,"Conference USA","Sam Houston","Wide Receiver","Launch Ratings"
21634,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/120.png?im=FaceCrop,padding=0.7","Quentin","Moore",76,100,79,"Kenmore","Washington","Previous",88,"Senior",82,77,78,88,83,86,62,65,35,68,78,73,82,74,55,63,61,68,95,66,27,33,59,68,34,61,79,69,62,61,26,30,59,15,62,75,74,66,0,67,79,74,62,73,68,36,19,36,47,27,38,92,71,26,"Big Ten","Washington","Tight End","Launch Ratings"
21083,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/7.png?im=FaceCrop,padding=0.7","Quincy","Wright",74,155,79,"Dallas","Texas","Previous",99,"Junior",73,54,66,83,87,83,24,84,32,42,49,22,25,50,24,69,83,78,95,22,40,24,33,56,29,26,79,68,60,56,37,81,82,25,84,57,57,68,0,22,23,62,26,41,85,30,32,34,29,39,43,92,43,20,"Sun Belt","Arkansas State","Defensive Tackle","Launch Ratings"
10453,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/119.png?im=FaceCrop,padding=0.7","Quincy","Bryant",72,68,79,"Lilburn","Georgia","Previous",9,"Senior",89,85,85,85,75,82,53,69,38,39,59,39,69,80,39,63,81,70,86,55,34,34,53,48,66,40,79,55,46,42,46,80,61,40,83,42,43,53,0,42,38,81,57,42,86,24,27,33,16,34,43,89,39,77,"ACC","Wake Forest","Will Backer","Launch Ratings"
1638,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/112.png?im=FaceCrop,padding=0.7","Rabbit","Evans",73,37,79,"Jacksonville","Florida","Eligible",1,"Senior",89,84,83,87,72,80,50,63,42,45,28,36,62,82,27,35,81,60,85,49,34,33,46,58,72,28,79,64,60,55,39,77,41,73,87,53,54,67,0,29,30,86,50,59,66,10,17,38,33,31,31,88,57,83,"Big 12","Utah","Strong Safety","Launch Ratings"
1160,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/5.png?im=FaceCrop,padding=0.7","Raleek","Brown",69,25,79,"Stockton","California","Previous",3,"Junior",97,93,90,84,55,70,75,33,46,70,62,64,74,92,70,25,31,38,79,87,24,26,96,31,69,72,79,50,45,51,44,65,25,43,31,44,33,34,0,75,75,95,81,60,29,10,21,36,18,34,42,74,53,61,"Big 12","Arizona State","Halfback","Launch Ratings"
4327,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/81.png?im=FaceCrop,padding=0.7","Richard","Toney Jr.",72,35,79,"Arlington","Texas","Previous",2,"Senior",89,84,82,91,72,83,46,58,46,45,25,29,57,82,27,28,85,62,87,42,28,32,45,59,68,25,79,65,63,53,28,82,41,62,81,51,55,68,0,23,22,84,44,62,76,18,35,29,33,14,45,89,59,74,"Big Ten","Purdue","Free Safety","Launch Ratings"
21364,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/105.png?im=FaceCrop,padding=0.7","Rico","Flores Jr.",74,45,79,"North Highlands","California","Eligible",1,"Sophomore",92,89,93,86,75,82,81,52,26,76,72,81,83,86,79,44,68,39,92,85,28,38,82,38,41,85,79,36,20,32,48,55,43,33,62,47,36,39,0,83,89,89,82,57,58,14,12,37,23,13,34,88,65,46,"Big Ten","UCLA","Wide Receiver","Launch Ratings"
10314,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/62.png?im=FaceCrop,padding=0.7","Riley","Van Poppel",77,130,79,"Argyle","Texas","Eligible",44,"Sophomore",82,66,78,92,92,73,31,77,42,42,53,31,41,53,31,78,84,70,88,31,27,33,37,56,44,31,79,66,62,53,48,73,82,36,83,57,56,68,0,31,31,68,31,44,83,33,16,28,18,33,37,91,45,33,"Big Ten","Nebraska","Defensive Tackle","Launch Ratings"
22721,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/119.png?im=FaceCrop,padding=0.7","Robby","Ashford",74,60,79,"Hoover","Alabama","Previous",2,"Senior",91,89,85,87,72,78,82,47,79,77,72,29,65,87,33,48,58,45,89,86,46,30,41,46,27,26,79,57,44,40,64,37,51,27,69,56,43,40,0,28,26,88,85,70,56,77,75,77,84,89,67,90,68,38,"ACC","Wake Forest","Quarterback","Launch Ratings"
8515,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/111.png?im=FaceCrop,padding=0.7","Rocco","Nicholl",76,78,79,"Philadelphia","Pennsylvania","Eligible",44,"Senior",85,79,82,91,69,85,33,70,47,30,53,32,56,75,28,61,79,56,90,32,39,36,38,54,69,31,79,63,50,39,41,84,57,31,85,52,52,57,0,30,31,82,33,29,80,29,28,27,35,19,27,87,28,81,"The American","USF","Sam Backer","Launch Ratings"
20109,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/108.png?im=FaceCrop,padding=0.7","Rocko","Griffin",69,40,79,"Rincon","Georgia","Previous",24,"Junior",86,78,79,87,77,83,78,51,24,77,92,68,68,77,51,43,63,48,90,78,33,31,77,42,26,54,79,53,47,55,48,32,39,28,58,47,36,35,0,66,62,82,73,82,58,22,13,26,13,38,27,91,83,38,"MAC","UMass","Halfback","Launch Ratings"
21156,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/22.png?im=FaceCrop,padding=0.7","Rocky","Beers",77,85,79,"Littleton","Colorado","Previous",81,"Senior",79,76,79,95,74,84,60,53,31,68,75,80,85,71,65,52,23,65,84,64,28,27,48,61,27,73,79,61,63,63,32,32,50,15,53,65,52,59,0,77,80,76,60,64,54,13,34,35,43,38,29,95,71,33,"Mountain West","Colorado State","Tight End","Launch Ratings"
1197,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/74.png?im=FaceCrop,padding=0.7","Rodney","Fields Jr.",69,35,79,"Wright City","Oklahoma","Previous",20,"Freshman",93,88,86,87,65,73,78,39,24,77,77,65,67,88,44,34,42,46,80,83,43,26,86,36,44,56,79,50,47,51,29,54,34,38,40,44,30,32,0,66,64,90,78,63,36,34,31,27,14,19,25,80,67,44,"Big 12","Oklahoma State","Halfback","Launch Ratings"
20425,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/6.png?im=FaceCrop,padding=0.7","Rodney","Hill",70,35,79,"Statesboro","Georgia","Previous",1,"Junior",94,89,87,85,62,76,78,33,32,75,70,68,68,88,64,23,27,37,78,86,47,27,87,31,57,67,79,61,57,62,48,62,24,42,25,40,29,30,0,72,69,89,81,72,25,25,17,24,30,26,33,76,65,67,"SEC","Arkansas","Halfback","Launch Ratings"
21376,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/122.png?im=FaceCrop,padding=0.7","Rodney","Gallagher III",70,19,79,"Uniontown","Pennsylvania","Eligible",24,"Junior",92,91,90,88,57,84,80,43,31,75,65,79,83,89,75,37,49,29,72,86,24,30,85,29,42,84,79,38,32,40,48,46,36,34,49,48,27,24,0,87,80,89,86,25,44,34,25,26,16,27,45,80,43,49,"Big 12","West Virginia","Wide Receiver","Launch Ratings"
25522,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/55.png?im=FaceCrop,padding=0.7","Rodney","Bullard Jr.",72,20,79,"Albany","Georgia","Previous",3,"Senior",94,90,88,87,54,83,80,48,32,75,68,76,81,89,84,42,44,52,88,87,25,24,79,46,59,82,79,38,29,37,29,45,39,39,56,48,46,45,0,79,84,92,84,35,42,18,13,22,16,28,35,83,45,51,"Big Ten","Michigan State","Wide Receiver","Launch Ratings"
23423,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/119.png?im=FaceCrop,padding=0.7","Rushaun","Tongue",73,33,79,"Pasadena","Maryland","Previous",6,"Sophomore",89,84,88,85,70,79,63,61,36,39,35,35,70,83,36,35,80,53,83,66,28,45,55,57,70,34,79,61,60,52,32,77,29,72,82,47,54,64,0,36,38,86,62,54,79,28,35,15,15,24,31,89,55,78,"ACC","Wake Forest","Strong Safety","Launch Ratings"
4182,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/94.png?im=FaceCrop,padding=0.7","Sam","Pendleton",76,150,79,"Lawsonville","North Carolina","Previous",56,"Sophomore",69,58,66,82,90,79,44,55,33,42,50,28,24,53,29,25,62,89,86,28,39,35,26,85,26,24,79,78,75,80,36,34,57,25,24,84,88,82,0,26,25,64,27,44,41,33,22,28,14,21,29,84,43,26,"SEC","Tennessee","Left Guard","Launch Ratings"
1039,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/86.png?im=FaceCrop,padding=0.7","Savion","Byrd",77,144,79,"Cedar Hill","Texas","Previous",54,"Senior",72,66,70,90,86,85,32,40,39,33,51,28,29,55,29,32,41,86,80,29,40,42,30,85,30,30,79,80,78,82,39,39,40,29,32,84,87,81,0,29,27,65,27,35,34,13,19,29,37,13,31,81,31,27,"ACC","SMU","Left Tackle","Launch Ratings"
3716,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/67.png?im=FaceCrop,padding=0.7","Sawyer","Evans",75,44,79,"Arlington","Texas","Eligible",41,"Senior",66,60,63,87,54,69,37,42,32,46,54,47,32,54,30,40,39,32,85,44,83,91,39,37,37,26,79,48,36,37,49,42,28,32,47,28,31,40,0,29,46,67,31,38,42,19,32,20,32,20,24,92,26,28,"The American","North Texas","Punter","Launch Ratings"
4638,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/58.png?im=FaceCrop,padding=0.7","Seth","Davis",67,30,79,"Katy","Texas","Previous",23,"Sophomore",95,89,86,84,69,64,81,41,34,75,74,61,69,88,45,36,50,38,83,84,47,30,86,34,62,59,79,51,43,52,47,61,36,41,47,44,30,34,0,66,61,92,82,45,46,20,21,25,20,23,32,87,62,59,"SEC","Mississippi State","Halfback","Launch Ratings"
153,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/115.png?im=FaceCrop,padding=0.7","Shad","Banks Jr.",73,85,79,"Houston","Texas","Previous",17,"Senior",86,78,87,79,79,83,38,75,42,45,56,43,57,76,38,70,85,82,97,36,37,31,40,60,65,37,79,70,60,55,26,84,84,32,87,61,54,66,0,36,40,81,38,44,80,22,35,11,22,33,28,93,46,77,"The American","UTSA","Mike Backer","Launch Ratings"
19642,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/56.png?im=FaceCrop,padding=0.7","Shakai","Woods",72,119,79,"Douglasville","Georgia","Previous",98,"Sophomore",77,64,72,90,83,85,26,83,40,41,55,24,31,56,25,61,84,84,93,26,47,33,35,55,36,28,79,67,63,52,30,87,80,30,82,57,53,63,0,26,28,67,28,40,86,17,16,37,15,21,47,90,39,29,"Conference USA","Middle Tennessee State","Defensive Tackle","Launch Ratings"
20716,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/101.png?im=FaceCrop,padding=0.7","Shazz","Preston",72,46,79,"Saint James","Louisiana","Previous",7,"Junior",93,88,91,84,73,81,80,55,43,74,71,85,85,86,78,42,69,42,83,81,24,32,89,38,52,83,79,29,20,30,31,40,44,32,62,50,39,40,0,85,86,89,81,34,59,19,12,20,27,24,44,82,54,28,"The American","Tulane","Wide Receiver","Launch Ratings"
21031,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/17.png?im=FaceCrop,padding=0.7","Sioape","Vatikani",76,155,79,"Reno","Nevada","Previous",71,"Junior",68,58,67,87,92,92,42,58,38,42,52,27,28,54,31,29,65,87,89,29,36,35,26,81,28,32,79,81,80,82,27,38,60,29,32,77,80,76,0,30,32,59,32,45,44,15,34,13,11,36,39,90,43,32,"ACC","Cal","Left Guard","Launch Ratings"
18476,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/38.png?im=FaceCrop,padding=0.7","Solomon","Vanhorse",68,25,79,"Alpharetta","Georgia","Previous",18,"Senior",93,88,83,89,64,76,77,39,38,73,77,55,72,87,52,30,38,27,87,83,42,38,89,36,33,59,79,52,28,26,42,45,31,34,36,42,29,31,0,66,61,91,74,66,36,31,26,15,36,23,26,84,65,36,"Big Ten","Indiana","Halfback","Launch Ratings"
23346,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/19.png?im=FaceCrop,padding=0.7","Stephen","Rusnak",72,40,79,"Clarkston","Michigan","Previous",99,"Senior",73,65,69,87,50,65,41,35,49,36,53,34,40,51,26,45,26,46,86,32,90,92,46,37,43,40,79,25,26,41,42,40,24,46,44,33,24,41,0,40,33,69,49,40,38,30,16,33,28,32,30,92,28,38,"Big 12","Cincinnati","Kicker","Launch Ratings"
3044,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/59.png?im=FaceCrop,padding=0.7","Sterling","Webb",73,125,79,"St. Louis","Missouri","Eligible",10,"Senior",79,69,71,88,86,83,25,78,29,48,58,25,29,58,25,72,87,76,94,25,35,32,32,57,28,25,79,68,61,53,42,82,84,22,84,62,54,69,0,25,25,69,25,47,81,33,30,29,11,12,44,92,45,21,"SEC","Missouri","Defensive Tackle","Launch Ratings"
141,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/91.png?im=FaceCrop,padding=0.7","Steve","Angeli",75,48,79,"Westfield","New Jersey","Previous",9,"Junior",83,79,78,89,65,85,73,45,43,67,69,28,41,79,24,47,55,41,91,75,45,40,27,41,40,23,79,51,40,36,76,40,50,24,59,50,35,38,0,27,33,81,74,55,51,71,84,90,77,87,78,88,59,41,"ACC","Syracuse","Quarterback","Launch Ratings"
8728,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/51.png?im=FaceCrop,padding=0.7","Sutton","Smith",69,25,79,"Powder Springs","Georgia","Previous",5,"Junior",92,86,86,87,65,78,82,37,43,74,77,68,73,85,55,30,37,45,85,83,28,26,83,32,58,66,79,61,57,59,29,64,32,43,35,44,33,33,0,74,71,88,78,60,35,12,18,31,32,32,34,88,72,53,"The American","Memphis","Halfback","Launch Ratings"
20526,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/17.png?im=FaceCrop,padding=0.7","T.J.","Bollers",74,140,79,"Tiffin","Iowa","Previous",88,"Senior",83,71,81,82,85,77,38,83,46,38,55,30,34,58,30,69,84,73,84,30,46,45,34,45,35,30,79,52,46,45,44,80,84,33,81,41,42,52,0,30,30,74,30,37,80,28,30,13,15,28,32,88,37,38,"ACC","Cal","Right Edge","Launch Ratings"
8497,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/22.png?im=FaceCrop,padding=0.7","Tanner","Morley",79,155,79,"Highlands Ranch","Colorado","Previous",74,"Sophomore",67,53,65,83,90,86,42,53,30,43,51,28,27,52,24,31,59,87,92,27,39,34,24,81,26,24,79,83,78,86,27,40,57,25,30,74,72,75,0,27,29,58,24,40,42,13,10,16,26,34,24,90,39,25,"Mountain West","Colorado State","Left Guard","Launch Ratings"
7485,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/103.png?im=FaceCrop,padding=0.7","Tariq","Watson",70,25,79,"Gretna","Louisiana","Previous",24,"Junior",93,90,91,87,55,79,68,53,41,39,58,44,70,89,45,40,72,56,86,79,47,38,66,55,74,44,79,63,58,52,28,79,35,73,82,55,53,63,0,46,43,91,78,44,71,28,38,17,25,34,34,83,39,78,"The American","UAB","Cornerback","Launch Ratings"
7513,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/2.png?im=FaceCrop,padding=0.7","Taven","Curry",72,50,79,"Loxley","Alabama","Previous",19,"Junior",89,84,83,83,74,67,91,50,39,77,93,52,62,84,38,41,59,40,86,74,38,47,59,40,32,41,79,55,32,31,36,35,39,29,54,48,35,36,0,52,50,86,80,66,54,36,29,35,15,32,35,86,70,38,"MAC","Akron","Halfback","Launch Ratings"
22305,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/59.png?im=FaceCrop,padding=0.7","Tavorus","Jones",69,47,79,"El Paso","Texas","Previous",22,"Junior",93,88,89,85,67,70,74,39,43,76,80,67,70,86,53,31,44,44,86,85,46,40,93,35,67,58,79,52,43,49,32,58,33,40,40,43,30,32,0,74,65,91,79,62,38,17,33,35,34,34,44,81,68,48,"SEC","Missouri","Halfback","Launch Ratings"
18645,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/21.png?im=FaceCrop,padding=0.7","Tawfiq","Byard",73,35,79,"Hyattsville","Maryland","Previous",9,"Sophomore",92,84,85,88,73,75,51,59,46,46,30,31,69,85,29,30,85,59,85,47,31,44,50,55,74,28,79,64,62,54,46,78,44,65,87,51,54,69,0,31,28,88,52,65,72,35,10,19,33,10,26,91,59,79,"Big 12","Colorado","Strong Safety","Launch Ratings"
1174,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/42.png?im=FaceCrop,padding=0.7","Terrence","Enos Jr.",77,150,79,"Redford","Michigan","Previous",74,"Senior",68,55,70,88,90,78,42,55,34,44,50,28,27,50,29,27,60,87,91,30,36,28,26,78,28,29,79,77,77,88,34,42,58,27,26,74,72,83,0,27,29,55,28,44,42,32,17,37,34,17,32,93,42,30,"Big 12","Kansas State","Left Tackle","Launch Ratings"
23480,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/86.png?im=FaceCrop,padding=0.7","Terry","Webb",75,154,79,"Galveston","Texas","Previous",4,"Senior",69,57,67,93,91,83,24,85,34,45,50,24,23,43,23,68,84,78,96,22,36,37,31,55,24,23,79,68,51,44,27,82,80,18,76,62,57,69,0,25,26,59,23,47,85,31,22,24,28,14,29,92,46,20,"ACC","SMU","Defensive Tackle","Launch Ratings"
24967,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Tikey","Hayes",71,44,79,"Aliquippa","Pennsylvania","Eligible",23,"Freshman",93,88,87,77,59,63,77,33,45,80,74,61,68,88,54,33,35,51,91,87,32,32,75,40,37,63,79,53,53,52,38,50,34,36,44,47,32,35,0,69,65,91,85,55,34,30,30,11,19,36,39,85,59,36,"Big Ten","Penn State","Halfback","Launch Ratings"
9824,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","TJ","Shanahan Jr.",76,156,79,"Orlando","Florida","Previous",54,"Sophomore",70,71,73,82,88,75,42,54,38,39,54,31,36,61,34,37,57,85,83,31,46,43,31,83,36,35,79,78,76,82,27,39,57,31,31,79,84,86,0,33,33,59,35,40,41,23,37,15,21,19,27,85,40,31,"Big Ten","Penn State","Right Guard","Launch Ratings"
31457,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/60.png?im=FaceCrop,padding=0.7","TK","Hodges",69,30,79,"Orlando","Florida","Eligible",20,"Junior",89,88,84,89,63,72,80,42,42,75,79,70,65,86,45,37,46,49,82,84,33,38,95,41,70,52,79,54,50,53,39,53,35,38,46,47,32,37,0,67,75,89,80,55,45,12,17,28,23,23,42,88,57,36,"The American","Navy","Halfback","Launch Ratings"
508,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","Traylon","Ray",73,35,79,"Tallahassee","Florida","Eligible",7,"Junior",91,87,91,83,65,82,70,53,41,69,64,78,84,85,83,44,66,37,79,78,30,39,74,35,33,77,79,29,19,27,34,35,42,29,60,54,33,34,0,79,87,91,74,27,55,23,31,17,37,20,35,83,43,36,"SEC","Ole Miss","Wide Receiver","Launch Ratings"
29012,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/40.png?im=FaceCrop,padding=0.7","Tre","Bell",74,45,79,"Ballwin","Missouri","Previous",21,"Junior",92,89,88,90,59,78,60,47,39,41,60,43,62,87,36,37,69,49,91,65,48,38,60,58,75,35,79,63,49,42,36,67,46,82,78,59,53,67,0,34,42,91,68,51,71,17,17,14,36,15,26,87,40,83,"Big Ten","Iowa State","Cornerback","Launch Ratings"
18898,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/132.png?im=FaceCrop,padding=0.7","Trent","Hendrick",72,74,79,"Richmond","Virginia","Eligible",5,"Senior",84,76,79,87,78,86,31,75,45,45,48,48,59,75,28,62,86,67,87,33,30,43,40,50,71,27,79,64,46,38,26,87,76,55,84,59,51,64,0,27,30,80,32,49,83,27,36,19,30,11,40,90,45,74,"Sun Belt","James Madison","Mike Backer","Launch Ratings"
23543,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/58.png?im=FaceCrop,padding=0.7","Trevion","Williams",76,135,79,"Crystal Springs","Mississippi","Previous",23,"Junior",79,67,77,76,87,74,48,78,48,48,52,29,31,54,29,72,88,78,93,29,47,48,43,51,32,29,79,67,61,53,25,75,86,29,76,58,53,66,0,29,29,70,29,48,83,11,24,30,20,32,47,87,44,32,"SEC","Mississippi State","Defensive Tackle","Launch Ratings"
7467,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/115.png?im=FaceCrop,padding=0.7","Trevor","Timmons",75,135,79,"Brunswick","Georgia","Previous",63,"Senior",76,67,74,89,85,86,31,39,36,31,51,37,34,56,35,42,33,85,83,32,34,33,34,81,36,33,79,82,78,85,29,34,35,35,39,77,79,75,0,33,36,67,38,28,28,13,15,23,23,13,40,84,28,38,"The American","UTSA","Left Guard","Launch Ratings"
18291,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","Trey","Holly",67,32,79,"Farmerville","Louisiana","Previous",25,"Sophomore",94,90,87,87,74,71,76,51,35,72,83,73,73,88,41,41,57,42,84,82,44,44,91,34,60,58,79,52,50,50,37,47,43,35,55,42,27,30,0,64,69,90,76,58,51,32,25,24,18,11,35,89,69,34,"SEC","LSU","Halfback","Launch Ratings"
19613,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/47.png?im=FaceCrop,padding=0.7","TreyShun","Hurry",74,35,79,"Palmdale","California","Previous",2,"Junior",90,86,88,88,66,84,76,44,40,72,54,83,84,85,84,37,54,33,87,82,43,32,61,35,27,81,79,35,16,26,43,29,40,26,52,53,28,29,0,82,87,89,78,62,50,20,23,13,28,33,39,84,55,29,"ACC","Louisville","Wide Receiver","Launch Ratings"
19905,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/109.png?im=FaceCrop,padding=0.7","Troy","Omeire",76,50,79,"Houston","Texas","Previous",0,"Senior",89,82,88,87,77,84,79,57,42,73,77,83,86,79,81,45,73,45,93,76,45,37,61,43,23,85,79,32,19,31,40,36,47,30,65,60,44,41,0,85,87,87,73,67,63,28,14,23,30,33,26,93,69,49,"Mountain West","UNLV","Wide Receiver","Launch Ratings"
28925,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/90.png?im=FaceCrop,padding=0.7","Tuna","Altahir",72,55,79,"Kennewick","Delaware","Previous",6,"Senior",87,86,86,88,82,78,73,37,31,73,82,68,73,83,56,30,42,41,87,77,29,40,64,36,39,66,79,50,45,51,40,65,34,33,38,42,27,30,0,72,65,86,75,80,36,13,32,21,34,10,45,93,81,49,"ACC","Stanford","Halfback","Launch Ratings"
19255,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/38.png?im=FaceCrop,padding=0.7","Tyler","Morris",71,25,79,"Bolingbrook","Illinois","Eligible",9,"Senior",93,92,95,87,60,79,79,41,35,74,66,76,82,92,77,37,50,33,78,83,42,42,90,32,51,85,79,34,24,33,39,55,37,38,46,34,28,24,0,85,81,92,83,23,44,37,37,30,26,20,25,86,48,45,"Big Ten","Indiana","Wide Receiver","Launch Ratings"
23009,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/91.png?im=FaceCrop,padding=0.7","Umari","Hatcher",75,26,79,"Woodbridge","Virginia","Previous",5,"Senior",92,87,88,90,60,84,71,42,26,71,65,82,82,87,84,37,45,33,76,78,47,41,84,36,47,76,79,28,20,29,42,36,35,29,46,50,27,30,0,77,85,91,75,40,41,36,10,19,29,27,38,83,40,24,"ACC","Syracuse","Wide Receiver","Launch Ratings"
9455,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/88.png?im=FaceCrop,padding=0.7","Vandrevius","Jacobs",72,22,79,"Fort Pierce","Florida","Previous",19,"Sophomore",93,89,90,86,59,79,86,39,36,76,65,81,84,88,82,32,44,31,87,86,48,29,81,29,46,84,79,37,27,37,28,36,35,29,43,30,25,23,0,87,83,91,78,27,39,31,15,32,13,38,32,85,55,25,"SEC","South Carolina","Wide Receiver","Launch Ratings"
22395,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/13.png?im=FaceCrop,padding=0.7","Vaughn","Pemberton",71,75,79,"Chicago","Illinois","Previous",23,"Senior",86,75,77,76,83,83,78,56,32,82,85,52,51,76,39,46,71,70,99,76,27,36,61,53,26,38,79,67,58,63,42,44,45,33,69,56,43,45,0,50,44,83,73,83,63,31,11,31,33,37,40,88,86,61,"ACC","Boston College","Halfback","Launch Ratings"
10293,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/88.png?im=FaceCrop,padding=0.7","Vicari","Swain",73,30,79,"Carrollton","Georgia","Previous",4,"Sophomore",94,92,94,89,63,71,61,50,46,58,64,48,69,89,38,47,72,54,87,74,37,44,64,57,80,38,79,65,59,52,27,73,45,82,76,59,55,67,0,43,50,92,71,53,62,27,37,20,25,37,33,86,43,74,"SEC","South Carolina","Cornerback","Launch Ratings"
21764,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/23.png?im=FaceCrop,padding=0.7","Victor","Rosa",71,50,79,"Bristol","Connecticut","Previous",22,"Junior",88,81,83,86,78,85,81,48,34,77,78,65,66,80,56,43,60,54,82,83,39,29,73,52,24,59,79,58,57,56,41,48,41,35,58,54,52,53,0,64,55,86,79,77,51,13,16,33,27,19,24,81,83,25,"The American","Connecticut","Halfback","Launch Ratings"
23684,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/11.png?im=FaceCrop,padding=0.7","Walker","White",75,60,79,"Little Rock","Arkansas","Previous",11,"Freshman",87,88,81,86,70,64,75,51,85,79,81,29,55,86,30,54,64,51,89,80,43,34,40,51,27,25,79,63,44,45,65,35,59,48,56,60,43,45,0,31,25,84,78,73,63,68,77,85,85,92,63,88,73,57,"Big 12","Baylor","Quarterback","Launch Ratings"
4756,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/23.png?im=FaceCrop,padding=0.7","Wes","Hoeh",76,115,79,"Glen Ellyn","Illinois","Previous",73,"Senior",77,72,72,94,81,88,34,35,24,26,53,35,37,55,33,41,34,86,86,34,32,27,47,85,33,36,79,80,79,81,27,37,34,33,35,84,87,80,0,38,32,65,36,26,30,33,19,11,24,37,36,91,28,31,"The American","Connecticut","Center","Launch Ratings"
6085,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Wilkin","Formby",79,164,79,"Tuscaloosa","Alabama","Previous",75,"Sophomore",69,65,71,81,91,74,45,57,24,45,54,29,30,56,31,33,60,89,85,31,41,30,28,77,29,33,79,77,72,82,43,42,60,31,31,84,82,86,0,32,27,61,33,42,44,34,34,11,34,38,43,82,43,30,"SEC","Alabama","Right Tackle","Launch Ratings"
23059,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/8.png?im=FaceCrop,padding=0.7","Will","Jeffcoat",74,144,79,"Pelion","South Carolina","Eligible",59,"Senior",69,60,64,85,89,87,39,48,40,41,50,26,24,57,26,32,52,91,85,26,36,27,28,83,27,27,79,71,74,75,47,45,53,24,26,83,79,85,0,29,28,62,30,41,38,11,23,10,20,29,36,89,38,30,"The American","Army","Left Guard","Launch Ratings"
2242,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/91.png?im=FaceCrop,padding=0.7","Will","Nixon",71,42,79,"Waco","Texas","Previous",24,"Senior",92,86,90,88,69,78,75,44,26,77,79,65,66,86,56,38,48,44,87,82,46,32,87,37,31,64,79,56,52,54,33,42,34,32,45,48,36,37,0,67,67,90,75,66,45,21,36,28,36,32,41,82,68,25,"ACC","Syracuse","Halfback","Launch Ratings"
9458,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/36.png?im=FaceCrop,padding=0.7","Will","James",72,25,79,"Grand Bay","Alabama","Previous",15,"Sophomore",93,88,92,87,69,78,52,50,40,41,28,32,70,86,27,23,73,50,91,49,26,40,46,54,72,28,79,63,52,46,24,82,35,77,77,48,54,67,0,30,35,89,48,57,66,28,25,37,37,29,38,89,54,81,"Big 12","Houston","Cornerback","Launch Ratings"
25508,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Will","Huggins",78,92,79,"Lenexa","Kansas","Previous",81,"Senior",82,78,83,85,77,85,74,47,24,66,77,77,79,73,63,44,55,69,90,77,14,15,67,67,24,70,79,59,57,55,27,32,44,16,48,68,65,63,0,74,82,79,75,76,53,14,30,29,46,23,43,87,75,40,"SEC","Oklahoma","Tight End","Launch Ratings"
19139,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/115.png?im=FaceCrop,padding=0.7","Willie","McCoy",72,25,79,"Houston","Texas","Previous",19,"Senior",93,89,89,92,60,82,83,35,40,75,75,81,79,88,86,29,39,33,75,86,40,33,83,34,56,82,79,34,22,31,41,45,28,33,34,49,27,23,0,78,84,91,80,38,36,16,15,14,12,14,45,87,52,30,"The American","UTSA","Wide Receiver","Launch Ratings"
5986,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/36.png?im=FaceCrop,padding=0.7","Wrook","Brown",71,30,79,"Salado","Texas","Previous",24,"Senior",90,85,86,95,62,88,73,61,35,64,55,65,75,83,36,33,73,55,91,75,37,33,53,58,80,38,79,54,54,50,32,85,35,77,83,49,51,59,0,37,71,88,71,39,58,18,19,14,27,27,42,85,38,72,"Big 12","Houston","Strong Safety","Launch Ratings"
29295,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/132.png?im=FaceCrop,padding=0.7","Xavier","Holmes",75,78,79,"Clarksburg","Maryland","Previous",9,"Senior",86,78,81,85,72,83,25,69,48,23,49,43,61,72,43,85,77,58,87,46,44,48,37,27,36,45,79,25,25,28,24,84,71,40,83,15,25,27,0,44,47,80,47,25,81,31,32,33,37,21,41,87,26,48,"Sun Belt","James Madison","Left Edge","Launch Ratings"
18344,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Xavier","Lucas",74,38,79,"Pompano Beach","Florida","Eligible",6,"Sophomore",92,92,91,90,62,76,78,53,33,35,55,47,74,91,48,49,78,59,85,71,47,30,63,56,79,47,79,57,59,52,28,74,38,77,81,48,54,60,0,44,49,91,72,41,65,19,31,23,27,22,48,89,41,76,"ACC","Miami","Cornerback","Launch Ratings"
18521,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/120.png?im=FaceCrop,padding=0.7","Xe'ree","Alexander",74,63,79,"Auburn","Washington","Previous",10,"Junior",87,80,83,91,74,86,45,75,42,40,54,50,64,77,31,63,84,75,90,58,38,44,41,46,67,31,79,56,52,44,36,87,53,47,86,45,47,54,0,34,31,83,55,43,82,26,26,35,37,37,27,84,57,71,"Big Ten","Washington","Mike Backer","Launch Ratings"
10199,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Zavier","Mincey",75,45,79,"Daytona Beach","Florida","Eligible",12,"Sophomore",94,91,90,86,58,74,78,54,29,28,48,42,75,91,44,48,71,51,85,70,32,35,59,54,75,48,79,51,59,53,30,74,34,77,82,49,50,58,0,48,48,91,71,32,69,24,36,19,28,17,44,89,32,78,"SEC","Alabama","Free Safety","Launch Ratings"
24621,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/88.png?im=FaceCrop,padding=0.7","Zavion","Hardy",77,130,79,"Macon","Georgia","Eligible",94,"Junior",82,72,81,79,83,80,48,79,40,44,52,28,32,65,28,73,84,82,91,28,32,31,25,84,25,28,79,74,72,76,33,78,84,28,85,75,77,73,0,28,28,74,28,48,82,34,13,31,22,24,25,90,48,33,"SEC","South Carolina","Defensive Tackle","Launch Ratings"
19755,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/13.png?im=FaceCrop,padding=0.7","Zeke","Moore",72,80,79,"Roswell","Georgia","Eligible",48,"Junior",85,73,72,92,77,78,62,58,26,75,68,84,80,70,68,56,43,61,87,64,25,43,50,53,27,72,79,61,51,52,37,40,56,22,58,67,60,63,0,74,83,78,59,76,60,32,32,10,45,24,44,95,72,52,"ACC","Boston College","Tight End","Launch Ratings"
19187,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/38.png?im=FaceCrop,padding=0.7","Zen","Michalski",78,159,79,"Floyds Knobs","Indiana","Previous",75,"Senior",75,74,74,86,87,76,39,54,32,39,56,34,34,54,36,36,55,88,85,32,34,48,33,81,36,35,79,84,85,85,28,46,54,34,36,73,83,79,0,36,31,60,31,38,38,10,13,12,13,22,39,89,40,31,"Big Ten","Indiana","Right Tackle","Launch Ratings"
21049,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","A'Mauri","Washington",75,160,78,"Detroit","Michigan","Previous",52,"Junior",72,58,66,85,93,80,24,81,41,45,50,24,27,44,24,59,84,81,95,24,39,26,33,58,25,24,78,67,63,56,33,81,85,18,77,61,54,70,0,24,24,64,24,49,74,14,18,33,37,14,26,89,49,15,"Big Ten","Oregon","Defensive Tackle","Launch Ratings"
23028,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","A.J.","Holmes Jr.",75,140,78,"Houston","Texas","Previous",33,"Junior",74,63,74,93,86,83,26,79,46,37,50,28,32,47,24,70,78,71,88,24,37,38,32,56,29,25,78,64,59,53,38,85,86,26,80,55,53,62,0,25,28,65,25,41,82,22,22,24,12,14,41,89,38,23,"Big 12","Texas Tech","Defensive Tackle","Launch Ratings"
22167,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","A.J.","McCarty",72,35,78,"Brownwood","Texas","Previous",1,"Senior",93,87,94,91,56,83,53,49,32,33,48,29,60,85,28,32,67,52,80,58,41,41,53,55,77,28,78,63,56,53,46,80,39,75,75,52,53,60,0,30,37,89,62,39,60,31,12,26,22,13,46,81,32,73,"Big 12","Texas Tech","Cornerback","Launch Ratings"
6003,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","Aaron","Chiles",75,81,78,"Largo","Maryland","Eligible",8,"Sophomore",89,81,84,87,80,74,43,74,35,34,53,48,60,76,33,74,83,68,85,42,42,37,45,46,66,33,78,43,37,37,37,75,63,33,82,33,36,42,0,35,33,80,45,32,90,15,21,33,19,25,37,89,33,75,"SEC","Florida","Will Backer","Launch Ratings"
18327,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Aaron","Scott Jr.",72,25,78,"Springfield","Ohio","Eligible",5,"Sophomore",94,90,91,85,64,65,59,55,44,45,58,48,69,89,42,46,74,54,80,77,38,47,64,59,74,40,78,63,60,55,28,77,45,78,76,60,55,69,0,38,43,91,69,56,69,30,33,29,30,13,24,83,43,83,"Big Ten","Ohio State","Cornerback","Launch Ratings"
5531,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/86.png?im=FaceCrop,padding=0.7","Adam","Moore",74,96,78,"Miami","Florida","Previous",5,"Sophomore",81,76,77,91,80,68,58,62,37,74,75,76,83,72,73,59,63,64,91,76,24,45,54,59,32,77,78,64,60,59,28,36,58,19,62,66,62,72,0,80,72,74,69,68,61,24,18,32,35,20,48,92,72,40,"ACC","SMU","Tight End","Launch Ratings"
1749,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/7.png?im=FaceCrop,padding=0.7","AG","McGhee",70,27,78,"Chipley","Florida","Eligible",6,"Senior",89,84,85,89,61,85,52,62,38,37,57,24,66,82,26,31,79,50,90,50,43,43,51,57,75,28,78,61,49,42,42,83,38,71,79,47,52,61,0,25,29,86,47,46,71,27,27,22,19,36,26,87,43,72,"Sun Belt","Arkansas State","Free Safety","Launch Ratings"
9169,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","Aidan","Mizell",74,16,78,"Orlando","Florida","Previous",11,"Sophomore",97,90,93,90,60,63,79,43,31,67,61,74,87,90,84,33,49,32,74,83,40,24,70,27,51,80,78,32,21,32,32,50,36,36,47,27,20,18,0,77,87,96,77,44,45,22,11,34,27,37,31,81,34,28,"SEC","Florida","Wide Receiver","Launch Ratings"
18582,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/34.png?im=FaceCrop,padding=0.7","Aidan","Birr",73,45,78,"Kennedale","Texas","Previous",33,"Junior",67,64,64,87,51,66,24,35,48,29,53,33,37,61,45,41,35,28,90,27,87,90,30,36,43,35,78,44,48,31,30,37,39,44,33,26,37,41,0,30,39,69,37,31,41,22,21,32,31,17,34,89,36,32,"ACC","Georgia Tech","Kicker","Launch Ratings"
20900,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/58.png?im=FaceCrop,padding=0.7","Albert","Reese IV",79,170,78,"Edmonton","Non-US","Previous",76,"Senior",67,63,63,88,92,84,43,55,34,43,54,25,28,56,28,29,58,89,88,26,27,30,28,77,24,27,78,80,75,84,44,41,57,25,31,76,74,78,0,24,26,56,27,39,43,10,33,29,12,30,31,88,39,30,"SEC","Mississippi State","Right Tackle","Launch Ratings"
25542,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/120.png?im=FaceCrop,padding=0.7","Alex","McLaughlin",74,38,78,"Chandler","Arizona","Eligible",12,"Junior",89,84,85,88,64,80,67,58,44,66,64,58,72,83,43,43,81,62,92,71,52,51,64,39,67,42,78,36,27,31,42,83,35,67,80,44,28,25,0,40,66,86,67,55,74,32,27,28,10,32,32,86,59,75,"Big Ten","Washington","Strong Safety","Launch Ratings"
29063,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/56.png?im=FaceCrop,padding=0.7","Alex","Mitchell",73,77,78,"Murfreesboro","Tennessee","Eligible",3,"Senior",81,77,79,89,76,83,32,68,46,44,44,42,66,76,26,60,79,66,91,27,43,25,30,48,68,29,78,59,41,37,34,85,61,51,84,51,48,60,0,25,27,77,30,45,85,37,36,16,11,34,25,90,44,81,"Conference USA","Middle Tennessee State","Mike Backer","Launch Ratings"
23989,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/9.png?im=FaceCrop,padding=0.7","Alvin","Henderson",69,34,78,"Elba","Alabama","Eligible",22,"Freshman",91,90,85,83,73,57,80,43,45,81,79,60,63,89,46,42,44,60,89,85,30,28,80,54,41,58,78,60,54,55,38,45,42,42,62,49,37,40,0,64,64,90,82,73,44,33,35,41,35,43,34,89,74,42,"SEC","Auburn","Halfback","Launch Ratings"
3764,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/117.png?im=FaceCrop,padding=0.7","Andre","Greene Jr.",74,42,78,"Richmond","Virginia","Eligible",2,"Senior",93,89,85,87,69,78,74,49,33,71,67,83,83,87,80,43,64,40,83,78,42,32,83,37,51,83,78,37,24,36,38,52,42,37,58,46,35,39,0,82,85,89,76,32,59,31,15,15,29,25,30,89,53,53,"ACC","Virginia","Wide Receiver","Launch Ratings"
22533,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/94.png?im=FaceCrop,padding=0.7","Andre","Turrentine",71,35,78,"Nashville","Tennessee","Previous",2,"Senior",95,92,93,93,68,81,78,57,37,40,46,46,74,90,47,53,82,60,86,71,37,37,63,56,64,46,78,60,59,52,40,70,47,68,86,50,53,66,0,49,47,91,74,53,63,12,13,35,32,18,44,91,52,71,"SEC","Tennessee","Strong Safety","Launch Ratings"
6034,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/60.png?im=FaceCrop,padding=0.7","Andrew","Duhart",70,25,78,"Chesterfield","Virginia","Eligible",13,"Senior",89,87,82,89,61,85,49,52,45,44,44,27,61,85,25,34,69,49,83,57,32,45,50,55,80,27,78,67,63,55,35,87,42,72,75,58,55,65,0,28,24,86,54,51,61,24,17,34,16,22,41,85,42,82,"The American","Navy","Cornerback","Launch Ratings"
18041,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/38.png?im=FaceCrop,padding=0.7","Andrew","Turvy",74,92,78,"Carmel","Indiana","Previous",18,"Senior",78,71,75,74,82,74,47,82,39,44,51,26,25,64,24,64,85,72,96,24,25,47,38,46,22,25,78,68,59,55,36,76,83,17,81,59,51,65,0,27,23,74,24,45,83,19,34,26,26,23,41,85,46,19,"Big Ten","Indiana","Right Edge","Launch Ratings"
22971,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/68.png?im=FaceCrop,padding=0.7","Andrew","Glass",70,24,78,"Wheeling","West Virginia","Eligible",60,"Senior",65,61,57,85,45,67,36,33,48,32,53,43,29,46,29,26,37,38,84,26,87,88,39,45,48,33,78,44,36,24,24,46,29,43,35,24,40,47,0,29,47,65,33,19,45,30,18,32,22,34,49,75,23,35,"MAC","Northern Illinois","Kicker","Launch Ratings"
24959,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Andrew","Olesh",77,66,78,"Center Valley","Pennsylvania","Eligible",88,"Freshman",88,84,87,80,66,75,79,33,42,72,76,78,82,80,66,25,46,61,91,80,33,32,72,63,40,73,78,56,56,49,40,47,29,27,26,62,58,57,0,75,87,86,76,65,45,20,37,21,48,23,24,82,76,34,"Big Ten","Penn State","Tight End","Launch Ratings"
25532,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/62.png?im=FaceCrop,padding=0.7","Andrew","Marshall",72,25,78,"Eastvale","California","Eligible",10,"Junior",91,87,89,85,60,82,69,55,33,65,50,51,65,86,32,45,71,53,91,78,22,21,65,45,73,34,78,63,58,52,45,84,35,81,82,53,52,60,0,33,53,89,73,44,65,14,10,22,42,31,32,81,44,79,"Big Ten","Nebraska","Cornerback","Launch Ratings"
5803,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/42.png?im=FaceCrop,padding=0.7","Andrew","Leingang",78,144,78,"Bismarck","North Dakota","Previous",56,"Senior",72,57,73,83,91,84,49,62,28,50,52,33,35,55,37,39,67,86,85,34,40,37,35,76,32,35,78,77,73,83,24,49,69,36,33,75,80,80,0,32,36,60,33,46,48,12,17,10,32,26,31,83,46,34,"Big 12","Kansas State","Right Guard","Launch Ratings"
7661,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/102.png?im=FaceCrop,padding=0.7","Angus","Davies",73,45,78,"Torquay","Non-US","Eligible",29,"Junior",66,59,62,88,56,66,40,42,41,33,53,34,46,55,28,39,24,32,84,47,88,88,36,44,48,34,78,47,32,37,33,48,26,36,41,28,44,40,0,27,41,59,49,36,25,16,29,25,37,16,42,85,34,37,"The American","Tulsa","Punter","Launch Ratings"
31122,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/120.png?im=FaceCrop,padding=0.7","Anterio","Thompson",76,146,78,"Dubuque","Iowa","Eligible",54,"Senior",68,61,69,81,85,78,27,84,28,27,53,29,36,52,32,61,84,80,82,29,43,34,45,42,29,38,78,38,46,24,44,80,83,45,80,44,42,26,0,24,36,61,40,32,87,36,15,25,15,37,30,84,46,16,"Big Ten","Washington","Defensive Tackle","Launch Ratings"
10649,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/105.png?im=FaceCrop,padding=0.7","Anthony","Jones",76,100,78,"Las Vegas","Nevada","Previous",15,"Sophomore",82,77,78,82,80,81,35,77,45,30,55,37,31,69,40,65,84,63,93,45,12,11,45,36,32,35,78,26,41,35,38,83,82,42,82,48,47,42,0,42,41,76,31,37,86,17,10,27,13,38,40,78,40,34,"Big Ten","UCLA","Right Edge","Launch Ratings"
5702,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/49.png?im=FaceCrop,padding=0.7","Antwan","Roberts",73,42,78,"Nashville","Tennessee","Previous",44,"Junior",91,83,83,86,72,82,77,45,42,78,87,52,64,83,40,40,58,36,85,75,30,46,64,41,33,47,78,60,26,30,25,42,37,32,55,50,36,40,0,54,55,87,71,74,49,11,19,25,31,20,27,83,76,50,"Sun Belt","Marshall","Halfback","Launch Ratings"
32770,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/136.png?im=FaceCrop,padding=0.7","Anwar","O'neal",77,135,78,"Philadelphia","Pennsylvania","Eligible",70,"Junior",73,63,68,90,84,84,35,46,46,38,55,33,35,55,30,38,50,83,90,32,31,27,23,83,34,30,78,83,81,84,42,65,46,32,35,74,76,72,0,32,32,65,34,36,38,16,12,30,36,22,43,90,38,27,"Conference USA","Delaware","Left Tackle","Launch Ratings"
7572,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/14.png?im=FaceCrop,padding=0.7","Arlis","Boardingham",75,90,78,"Van Nuys","California","Previous",81,"Junior",89,83,90,89,69,79,74,45,31,70,74,79,83,77,67,39,58,63,85,81,35,27,73,59,61,72,78,46,48,46,48,43,39,24,41,56,50,54,0,79,86,86,77,69,40,34,25,29,34,21,33,87,69,24,"MAC","Bowling Green","Tight End","Launch Ratings"
2306,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Ashton","Porter",75,115,78,"Cypress","Texas","Previous",29,"Sophomore",85,75,83,77,85,64,41,85,33,40,55,37,42,68,37,71,81,74,82,37,44,43,43,46,33,37,78,61,56,51,38,77,83,33,78,52,47,58,0,37,37,75,37,40,79,22,10,32,14,29,28,81,43,40,"Big Ten","Oregon","Left Edge","Launch Ratings"
22600,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/125.png?im=FaceCrop,padding=0.7","Atticus","Bertrams",75,77,78,"Sydney","Non-US","Eligible",49,"Junior",64,56,58,84,67,63,39,40,36,33,51,31,42,53,26,47,27,49,86,46,90,91,32,32,34,41,78,44,30,46,40,48,27,28,35,28,48,32,0,44,42,64,31,35,28,23,37,23,23,19,25,87,32,37,"Big Ten","Wisconsin","Punter","Launch Ratings"
9519,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/92.png?im=FaceCrop,padding=0.7","Austin","Jordan",72,40,78,"Denton","Texas","Eligible",1,"Senior",91,88,93,93,68,79,59,53,46,47,65,50,74,87,40,42,74,57,92,77,24,38,67,57,78,38,78,67,60,53,48,80,49,77,77,60,55,67,0,41,51,89,73,54,66,16,16,24,17,11,42,91,46,72,"Big 12","TCU","Cornerback","Launch Ratings"
21833,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Austin","Siereveld",77,160,78,"Liberty Township","Ohio","Previous",67,"Junior",69,67,69,82,89,80,39,52,48,41,54,26,31,53,30,33,55,87,92,31,27,27,31,79,26,30,78,78,76,80,46,33,53,29,27,82,79,85,0,25,29,61,26,41,42,20,10,35,37,20,45,87,42,30,"Big Ten","Ohio State","Right Tackle","Launch Ratings"
18296,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","Austin","Ausberry",72,35,78,"Baton Rouge","Louisiana","Previous",27,"Junior",92,88,86,93,67,78,70,57,38,40,39,49,72,85,42,37,85,65,87,61,38,41,59,58,73,40,78,62,63,51,39,77,48,70,81,50,53,65,0,39,44,92,67,53,71,32,11,19,24,17,39,88,51,72,"SEC","LSU","Strong Safety","Launch Ratings"
1033,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/122.png?im=FaceCrop,padding=0.7","Ayden","Bussell",77,154,78,"Mount Juliet","Tennessee","Previous",66,"Sophomore",70,57,72,80,88,81,39,48,27,35,50,27,30,52,30,34,46,89,87,32,26,47,27,81,29,32,78,80,75,85,32,42,45,28,30,80,83,77,0,31,29,60,28,35,37,15,23,37,15,28,48,89,36,32,"Big 12","West Virginia","Right Guard","Launch Ratings"
9979,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/58.png?im=FaceCrop,padding=0.7","Ayden","Williams",75,45,78,"Ridgeland","Mississippi","Eligible",11,"Junior",90,87,91,86,70,79,82,50,39,73,65,81,86,87,79,41,62,36,81,83,24,24,80,35,47,82,78,32,25,34,34,52,43,37,59,52,29,33,0,81,89,90,83,58,56,12,36,12,28,25,28,81,35,56,"SEC","Mississippi State","Wide Receiver","Launch Ratings"
25498,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Blake","Doud",77,45,78,"Parker","Colorado","Previous",38,"Senior",81,79,83,83,55,69,73,35,48,64,71,72,73,76,64,42,39,47,90,72,80,93,50,45,42,69,78,24,21,21,21,35,37,47,45,45,45,46,0,71,77,82,67,62,35,35,43,44,45,48,22,78,58,32,"SEC","Alabama","Kicker","Launch Ratings"
21290,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/97.png?im=FaceCrop,padding=0.7","Bobby","Crosby",74,30,78,"Hollywood","Florida","Previous",1,"Senior",86,83,81,93,64,82,52,53,28,29,50,26,65,81,25,34,73,45,89,45,46,26,47,53,67,26,78,54,55,48,25,82,36,73,77,49,51,58,0,29,26,85,46,35,74,23,37,39,18,12,31,92,31,81,"Sun Belt","Texas State","Strong Safety","Launch Ratings"
23062,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/58.png?im=FaceCrop,padding=0.7","Branden","Jennings",75,80,78,"Jacksonville","Florida","Previous",44,"Senior",91,83,85,87,77,83,43,71,36,37,55,37,55,75,43,85,81,67,87,43,36,36,44,53,73,43,78,64,60,53,36,83,77,66,85,54,55,60,0,43,43,84,43,37,77,24,24,24,24,24,36,87,37,72,"SEC","Mississippi State","Sam Backer","Launch Ratings"
30528,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/90.png?im=FaceCrop,padding=0.7","Brandon","Nicholson",72,25,78,"Memphis","Tennessee","Eligible",9,"Sophomore",94,92,90,87,57,79,62,46,36,34,58,43,68,90,39,44,68,51,74,73,36,31,60,57,77,41,78,59,58,51,45,78,40,73,75,54,53,61,0,41,72,91,70,37,58,25,21,24,14,18,35,79,34,72,"ACC","Stanford","Cornerback","Launch Ratings"
410,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/86.png?im=FaceCrop,padding=0.7","Brandon","Miyazono",73,75,78,"Frisco","Texas","Eligible",29,"Junior",86,75,79,88,76,83,24,73,45,43,43,46,59,72,26,61,78,73,91,29,45,34,35,48,63,23,78,63,56,49,34,86,61,28,85,51,51,62,0,25,24,79,25,43,82,24,28,34,30,27,26,93,44,75,"ACC","SMU","Mike Backer","Launch Ratings"
19061,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/36.png?im=FaceCrop,padding=0.7","Brandon","Mack II",76,85,78,"Montgomery","Alabama","Previous",4,"Junior",85,76,79,83,75,84,32,74,40,32,54,38,35,72,35,85,78,68,82,35,42,45,37,39,36,35,78,41,40,39,39,83,75,39,84,32,38,43,0,38,37,77,39,32,80,32,11,12,36,33,45,83,32,45,"Big 12","Houston","Right Edge","Launch Ratings"
24953,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Brandon","Finney Jr.",74,25,78,"Owings Mills","Maryland","Eligible",4,"Freshman",93,90,96,81,58,73,72,56,39,69,60,56,70,89,46,43,74,55,88,79,32,32,71,45,78,47,78,33,32,32,35,72,42,82,79,35,34,34,0,44,55,91,74,57,64,26,16,21,30,17,36,84,48,79,"Big Ten","Oregon","Cornerback","Launch Ratings"
31331,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/55.png?im=FaceCrop,padding=0.7","Brandon","Tullis",73,65,78,"Dallas","Texas","Eligible",7,"Sophomore",90,80,83,86,75,75,85,31,39,77,79,46,59,79,38,31,26,23,87,82,39,36,32,27,30,51,78,46,36,46,39,42,38,29,31,47,43,44,0,57,57,88,76,79,22,22,10,14,20,36,38,87,83,36,"Big Ten","Michigan State","Halfback","Launch Ratings"
3053,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/39.png?im=FaceCrop,padding=0.7","Brevin","Doll",72,51,78,"Adel","Iowa","Previous",23,"Freshman",96,91,88,91,61,68,74,32,45,69,67,60,70,90,51,27,29,40,80,84,37,45,82,37,64,57,78,49,48,48,42,52,27,37,32,43,32,31,0,70,67,93,80,68,31,33,37,32,15,12,34,89,59,39,"Big Ten","Iowa","Halfback","Launch Ratings"
6076,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/1.png?im=FaceCrop,padding=0.7","Bruin","Fleischmann",77,75,78,"Pocatello","Idaho","Eligible",88,"Senior",83,78,81,93,85,84,64,66,43,71,74,78,80,74,61,64,38,63,83,49,24,42,47,68,29,67,78,60,55,56,30,36,63,19,66,67,58,62,0,74,76,76,49,81,68,27,13,34,39,36,32,90,67,42,"Mountain West","Air Force","Tight End","Launch Ratings"
21340,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/109.png?im=FaceCrop,padding=0.7","Bryce","Edmondson",74,65,78,"Nashville","Tennessee","Previous",14,"Senior",84,77,81,88,74,84,27,65,36,38,46,37,53,75,27,62,74,67,91,30,39,36,29,42,65,27,78,51,49,45,27,85,62,30,84,42,45,51,0,26,28,79,31,43,79,13,27,15,35,32,41,93,39,82,"Mountain West","UNLV","Will Backer","Launch Ratings"
20576,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/116.png?im=FaceCrop,padding=0.7","Bryce","Cowan",76,71,78,"Tallahassee","Florida","Eligible",22,"Senior",86,79,86,87,73,75,37,72,36,34,55,34,59,76,37,62,77,61,85,37,36,36,40,55,70,37,78,63,59,52,36,74,58,37,86,53,54,61,0,37,37,80,37,34,83,24,24,25,24,24,36,87,34,82,"SEC","Vanderbilt","Mike Backer","Launch Ratings"
22429,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","Brycen","Sanders",78,150,78,"Chattanooga","Tennessee","Previous",62,"Sophomore",76,66,72,86,91,80,38,55,30,45,56,37,34,56,39,45,65,86,84,39,27,31,43,85,35,40,78,82,79,84,47,44,60,36,38,79,85,73,0,38,34,64,35,42,48,29,19,11,13,37,37,85,43,31,"SEC","Ole Miss","Center","Launch Ratings"
23114,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/6.png?im=FaceCrop,padding=0.7","Caden","Kitler",75,146,78,"The Colony","Texas","Previous",52,"Junior",71,72,73,86,95,82,29,63,28,47,57,28,32,51,27,37,69,86,80,29,34,39,41,84,33,27,78,82,73,85,29,43,65,27,30,77,80,75,0,32,29,59,27,45,49,11,16,36,37,22,37,80,47,22,"SEC","Arkansas","Center","Launch Ratings"
21938,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Caden","Story",75,125,78,"Lanett","Alabama","Previous",93,"Junior",82,69,76,91,84,71,34,83,34,28,51,34,43,58,33,77,77,67,90,31,39,42,32,56,40,32,78,58,60,49,43,82,69,38,89,51,50,56,0,33,31,69,32,29,83,17,36,12,20,24,30,92,28,36,"ACC","Clemson","Defensive Tackle","Launch Ratings"
10666,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/69.png?im=FaceCrop,padding=0.7","Caleb","Komolafe",71,48,78,"Katy","Texas","Previous",5,"Freshman",91,85,87,86,73,75,81,47,42,76,76,54,65,84,54,40,61,41,90,85,39,35,75,37,64,58,78,54,50,54,47,44,42,33,64,47,34,35,0,64,60,88,79,73,52,15,23,14,20,27,34,89,75,70,"Big Ten","Northwestern","Halfback","Launch Ratings"
21861,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/74.png?im=FaceCrop,padding=0.7","Cam","Smith",72,40,78,"Little Elm","Texas","Previous",3,"Senior",91,88,92,88,67,84,57,61,43,42,54,67,75,87,67,38,78,55,82,69,43,27,59,56,75,72,78,65,61,55,30,83,45,79,82,58,54,65,0,70,70,88,64,50,59,35,25,29,12,10,31,84,41,79,"Big 12","Oklahoma State","Cornerback","Launch Ratings"
6708,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/35.png?im=FaceCrop,padding=0.7","Cam","Barfield",67,25,78,"Las Vegas","Nevada","Previous",0,"Junior",92,87,87,85,66,78,74,35,38,76,74,70,69,86,47,28,36,33,84,82,24,32,91,31,51,55,78,50,24,27,28,52,32,37,36,42,29,30,0,66,66,91,76,45,33,24,30,34,18,15,48,84,64,37,"Mountain West","Hawaii","Halfback","Launch Ratings"
25072,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/120.png?im=FaceCrop,padding=0.7","Champ","Taulealea",77,170,78,"Milpitas","California","Eligible",73,"Freshman",72,60,70,76,91,71,37,48,46,35,50,30,27,54,32,30,46,90,88,32,41,49,22,81,31,30,78,73,68,79,43,31,49,29,28,84,83,85,0,29,26,64,26,36,37,25,19,27,36,21,35,92,37,28,"Big Ten","Washington","Right Guard","Launch Ratings"
22713,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/9.png?im=FaceCrop,padding=0.7","Champ","Anthony",71,20,78,"Fort Worth","Texas","Eligible",1,"Junior",95,91,91,89,56,72,66,47,32,32,51,46,69,92,43,38,65,48,83,78,36,37,63,54,80,44,78,60,59,51,27,67,31,73,79,52,52,59,0,41,45,91,74,39,57,34,24,11,31,26,30,88,32,77,"SEC","Auburn","Cornerback","Launch Ratings"
10278,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/55.png?im=FaceCrop,padding=0.7","Chance","Rucker",73,20,78,"Houston","Texas","Previous",25,"Sophomore",93,89,92,93,58,79,54,47,36,37,52,36,60,86,32,40,64,48,86,63,36,26,55,54,78,33,78,60,57,51,36,75,37,83,69,56,53,62,0,34,40,90,64,43,59,36,10,32,21,18,39,91,37,73,"Big Ten","Michigan State","Cornerback","Launch Ratings"
3947,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/71.png?im=FaceCrop,padding=0.7","Chase","Hendricks",72,40,78,"St. Louis","Missouri","Eligible",7,"Junior",89,86,87,89,69,86,81,49,45,74,74,84,83,85,75,45,64,37,91,83,24,34,74,38,39,86,78,31,18,29,46,49,45,36,62,58,33,32,0,85,85,87,77,37,58,15,19,27,12,11,31,86,57,58,"MAC","Ohio","Wide Receiver","Launch Ratings"
307,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/110.png?im=FaceCrop,padding=0.7","Chasen","Johnson",73,20,78,"Sanford","Florida","Eligible",41,"Sophomore",93,90,90,89,57,79,60,54,34,36,55,35,67,89,35,41,65,52,91,73,32,41,58,55,78,35,78,62,61,53,47,78,35,77,79,54,53,61,0,34,36,90,64,42,60,30,33,26,30,25,28,83,36,75,"Big Ten","USC","Cornerback","Launch Ratings"
8556,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/42.png?im=FaceCrop,padding=0.7","Chiddi","Obiazor",78,115,78,"Eden Prairie","Minnesota","Previous",8,"Sophomore",81,74,78,75,81,83,41,82,24,38,55,35,37,64,31,72,83,65,82,35,37,24,42,38,32,31,78,52,52,47,35,81,86,40,84,46,46,53,0,33,34,74,33,40,76,33,13,35,18,28,34,80,39,44,"Big 12","Kansas State","Left Edge","Launch Ratings"
21674,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/23.png?im=FaceCrop,padding=0.7","Chris","Parker",75,35,78,"Saginaw","Michigan","Previous",13,"Senior",87,84,88,86,65,82,63,48,41,68,71,84,84,82,82,43,64,37,79,81,35,42,64,36,31,85,78,35,21,31,43,45,44,32,61,45,31,33,0,81,87,86,76,27,55,17,17,18,11,21,30,84,46,53,"The American","Connecticut","Wide Receiver","Launch Ratings"
22254,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","Chris","Graves Jr.",72,25,78,"Fort Myers","Florida","Previous",32,"Junior",94,92,92,89,57,67,60,46,35,34,53,43,70,89,40,46,67,52,82,76,42,38,62,56,81,41,78,62,59,52,26,76,34,76,78,53,53,61,0,42,45,92,73,42,58,22,17,25,30,27,35,90,36,73,"SEC","Ole Miss","Cornerback","Launch Ratings"
20657,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/23.png?im=FaceCrop,padding=0.7","Chris","Freeman",73,40,78,"Zionsville","Indiana","Previous",28,"Senior",66,51,72,86,57,69,35,43,35,26,55,48,26,51,26,40,30,38,86,29,84,91,45,24,37,29,78,38,33,45,37,25,26,40,35,35,35,24,0,29,25,65,33,38,31,29,23,16,35,28,43,89,32,46,"The American","Connecticut","Kicker","Launch Ratings"
20560,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Christian","Clark",72,52,78,"Phoenix","Arizona","Previous",6,"Freshman",96,88,86,84,66,65,80,38,25,75,77,64,71,89,44,33,39,47,82,81,28,27,83,40,56,57,78,53,47,51,28,44,30,33,37,47,35,36,0,66,66,91,73,77,39,13,27,28,36,31,46,82,77,31,"SEC","Texas","Halfback","Launch Ratings"
22678,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Christopher","Vizzina",76,50,78,"Birmingham","Alabama","Previous",17,"Sophomore",85,79,84,87,66,75,74,49,70,72,75,38,49,80,30,46,61,46,89,79,40,44,35,45,42,29,78,53,42,40,62,42,48,46,33,50,37,42,0,37,37,84,72,62,57,72,83,82,81,93,74,84,53,59,"ACC","Clemson","Quarterback","Launch Ratings"
18673,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/120.png?im=FaceCrop,padding=0.7","CJ","Christian",73,45,78,"Normal","Illinois","Eligible",4,"Senior",90,83,82,92,68,83,47,59,35,36,59,22,61,81,25,33,76,59,86,49,28,26,49,55,73,26,78,59,58,50,28,81,39,64,83,49,52,62,0,27,26,85,47,50,68,30,21,38,22,30,32,88,46,78,"Big Ten","Washington","Free Safety","Launch Ratings"
31017,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/116.png?im=FaceCrop,padding=0.7","CJ","Heard",71,40,78,"Atlanta","Georgia","Eligible",8,"Sophomore",87,82,84,85,71,79,59,62,28,43,55,34,66,80,39,35,87,64,87,64,25,25,51,37,65,43,78,37,47,41,27,82,30,71,87,47,29,44,0,46,40,84,61,51,74,13,16,18,15,15,25,83,52,76,"SEC","Vanderbilt","Strong Safety","Launch Ratings"
21120,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/61.png?im=FaceCrop,padding=0.7","CJ","Bailey",78,50,78,"Miami","Florida","Eligible",11,"Sophomore",83,82,79,92,75,77,68,33,72,54,69,35,46,81,25,26,28,29,81,77,28,38,24,29,43,27,78,27,21,24,67,70,32,40,27,20,19,22,0,35,35,80,68,43,29,76,82,83,81,92,74,88,41,56,"ACC","NC State","Quarterback","Launch Ratings"
21331,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/128.png?im=FaceCrop,padding=0.7","CJ","Stokes",70,40,78,"Columbia","South Carolina","Previous",23,"Junior",91,85,85,86,71,82,79,43,24,77,78,59,66,85,52,35,42,36,82,79,26,48,86,35,54,57,78,53,32,37,40,43,34,33,42,47,36,36,0,63,63,87,76,70,42,10,23,19,12,10,38,85,76,31,"The American","Charlotte","Halfback","Launch Ratings"
23210,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/66.png?im=FaceCrop,padding=0.7","CJ","Mims",74,140,78,"New Bern","North Carolina","Eligible",92,"Junior",72,59,67,91,90,82,25,81,25,38,55,23,32,53,27,63,87,73,97,26,26,24,33,55,43,26,78,64,60,52,37,83,81,25,82,57,55,64,0,24,23,63,24,38,81,23,36,20,31,19,46,91,39,20,"ACC","North Carolina","Defensive Tackle","Launch Ratings"
33037,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/7.png?im=FaceCrop,padding=0.7","Clune","Van Andel",72,55,78,"Grand Rapids","Michigan","Eligible",34,"Junior",62,55,74,87,39,67,24,36,43,33,50,38,33,51,34,30,38,47,82,39,88,88,25,46,44,38,78,38,34,48,36,46,39,49,28,10,37,49,0,47,33,62,24,28,43,26,20,19,14,12,33,84,38,35,"Sun Belt","Arkansas State","Kicker","Launch Ratings"
20077,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/123.png?im=FaceCrop,padding=0.7","Cole","Maynard",73,20,78,"Mooresville","North Carolina","Previous",18,"Senior",77,68,74,85,49,68,34,42,45,34,57,39,30,57,30,46,38,27,90,39,83,90,26,27,32,35,78,40,45,30,41,34,43,43,43,15,37,36,0,30,36,73,40,44,31,21,28,38,16,24,33,78,27,34,"Conference USA","Western Kentucky","Punter","Launch Ratings"
20020,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/66.png?im=FaceCrop,padding=0.7","Coleman","Bryson",74,50,78,"Waynesville","North Carolina","Previous",16,"Junior",87,84,87,90,73,78,46,65,49,48,26,33,65,82,25,34,83,63,90,45,26,41,47,56,71,28,78,67,60,55,31,78,47,75,83,57,55,71,0,26,28,85,45,67,73,14,31,11,30,16,42,93,63,79,"ACC","North Carolina","Free Safety","Launch Ratings"
22670,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Colton","Vasek",77,90,78,"Austin","Texas","Previous",92,"Sophomore",86,76,84,81,93,61,47,72,38,46,56,39,45,67,39,79,80,74,80,39,45,31,47,46,38,39,78,70,60,53,30,78,86,42,80,60,57,69,0,39,39,77,39,49,80,10,37,10,19,11,48,82,47,45,"SEC","Texas","Left Edge","Launch Ratings"
1757,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/111.png?im=FaceCrop,padding=0.7","Connor","McLaughlin",79,144,78,"Tampa","Florida","Previous",71,"Senior",82,72,82,93,84,87,37,47,37,36,61,43,47,56,44,51,44,83,85,47,27,46,46,85,47,45,78,77,79,74,41,41,43,41,44,83,83,82,0,43,42,72,42,36,33,17,30,36,19,35,33,87,36,41,"The American","USF","Left Tackle","Launch Ratings"
6651,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/81.png?im=FaceCrop,padding=0.7","Crew","Wakley",72,50,78,"Sandy","Utah","Previous",7,"Senior",86,81,78,90,70,83,48,61,43,44,67,27,48,81,29,24,82,61,89,49,30,30,53,59,67,28,78,63,61,56,39,84,42,55,84,49,56,67,0,26,26,83,47,58,75,19,24,15,34,24,43,88,57,73,"Big Ten","Purdue","Strong Safety","Launch Ratings"
4584,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/80.png?im=FaceCrop,padding=0.7","Cruce","Brookins",74,35,78,"Pittsburgh","Pennsylvania","Previous",12,"Sophomore",89,84,86,90,72,76,58,59,41,38,33,40,70,83,31,36,90,54,83,51,35,27,50,58,65,32,78,60,60,55,35,78,40,70,86,50,54,64,0,30,41,87,55,53,73,20,32,11,13,31,34,87,49,75,"ACC","Pittsburgh","Free Safety","Launch Ratings"
29530,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/122.png?im=FaceCrop,padding=0.7","Curtis","Jones Jr.",76,69,78,"Huntington","West Virginia","Eligible",18,"Sophomore",90,81,84,84,66,76,42,70,15,37,34,32,45,73,23,83,84,63,86,52,14,15,32,37,55,23,78,33,32,33,21,78,73,45,86,35,34,34,0,24,32,83,45,55,78,22,24,23,14,29,14,87,48,66,"Big 12","West Virginia","Right Edge","Launch Ratings"
18934,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/47.png?im=FaceCrop,padding=0.7","D'Angelo","Hutchinson",75,40,78,"St. Petersburg","Florida","Eligible",21,"Senior",89,85,90,89,67,82,55,64,35,65,59,33,65,84,27,41,77,57,91,67,47,30,51,58,71,29,78,60,58,50,32,83,36,72,84,49,54,62,0,30,31,87,66,48,66,27,16,12,10,37,31,84,46,77,"ACC","Louisville","Strong Safety","Launch Ratings"
22858,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/117.png?im=FaceCrop,padding=0.7","Da'Marcus","Crosby II",74,33,78,"Houston","Texas","Previous",22,"Senior",89,84,82,94,67,82,52,69,42,41,28,60,78,83,29,36,80,57,85,50,48,38,46,55,70,25,78,63,61,51,47,81,40,69,80,49,55,65,0,29,61,86,50,53,67,21,25,28,34,38,39,93,51,79,"ACC","Virginia","Strong Safety","Launch Ratings"
6853,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/130.png?im=FaceCrop,padding=0.7","Da'Shawn","Davis",74,54,78,"Charlotte","North Carolina","Eligible",90,"Senior",85,76,81,87,66,81,27,73,32,26,51,43,45,74,40,87,82,61,82,40,33,36,33,32,53,44,78,28,28,27,48,80,80,41,86,18,26,29,0,40,44,76,43,26,81,22,37,14,11,35,43,86,24,63,"Sun Belt","Georgia Southern","Left Edge","Launch Ratings"
8178,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/94.png?im=FaceCrop,padding=0.7","Daevin","Hobbs",76,130,78,"Concord","North Carolina","Eligible",5,"Junior",82,63,77,89,87,69,28,81,34,41,51,28,34,48,28,75,82,73,95,28,28,48,34,57,35,28,78,67,62,54,45,81,78,31,82,57,55,62,0,28,28,65,28,39,87,35,33,10,27,14,45,90,37,28,"SEC","Tennessee","Defensive Tackle","Launch Ratings"
10463,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/67.png?im=FaceCrop,padding=0.7","Dalton","Carnes",69,14,78,"College Station","Texas","Previous",11,"Junior",92,89,85,93,54,85,69,32,46,63,72,81,83,87,80,26,27,33,74,79,48,43,86,32,60,83,78,28,17,29,47,48,26,35,30,57,25,23,0,84,82,90,73,28,29,10,18,32,10,16,40,87,48,36,"The American","North Texas","Wide Receiver","Launch Ratings"
3390,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Damari","Brown",74,35,78,"Plantation","Florida","Previous",2,"Sophomore",94,90,91,86,67,75,60,52,44,46,58,46,67,91,38,48,73,53,88,71,29,40,63,59,75,42,78,66,61,55,43,74,46,85,75,60,57,69,0,40,42,90,72,55,64,18,34,17,11,17,32,88,45,79,"ACC","Miami","Cornerback","Launch Ratings"
19155,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/28.png?im=FaceCrop,padding=0.7","Damarius","McGhee",72,15,78,"Pensacola","Florida","Previous",24,"Senior",94,91,91,90,51,76,68,43,27,26,63,46,73,93,45,41,60,44,81,81,28,48,64,56,79,43,78,60,58,48,26,72,29,74,74,49,50,54,0,44,51,91,77,25,58,10,29,21,26,36,40,87,26,74,"The American","FAU","Cornerback","Launch Ratings"
6181,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/86.png?im=FaceCrop,padding=0.7","Damarjhe","Lewis",76,121,78,"Griffin","Georgia","Previous",34,"Senior",76,63,73,90,86,76,26,70,42,40,57,26,33,48,26,63,82,74,90,26,38,32,31,57,31,26,78,65,62,53,32,78,88,28,79,58,53,66,0,26,26,65,26,40,89,10,14,31,24,26,43,89,40,22,"ACC","SMU","Defensive Tackle","Launch Ratings"
29478,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/112.png?im=FaceCrop,padding=0.7","Daniel","Bray",70,11,78,"Fort Worth","Texas","Eligible",20,"Freshman",95,91,93,80,56,56,75,33,39,75,71,56,65,91,53,34,34,48,85,89,33,32,77,44,51,63,78,47,43,44,37,31,35,27,55,48,36,37,0,67,60,94,84,54,36,17,22,34,18,37,30,83,59,45,"Big 12","Utah","Halfback","Launch Ratings"
10713,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Danny","Lewis Jr.",77,94,78,"New Iberia","Louisiana","Previous",87,"Junior",85,77,81,90,82,79,61,62,30,66,79,80,77,75,64,64,67,67,90,65,43,29,55,66,36,70,78,64,65,56,40,37,62,20,61,73,70,56,0,73,83,76,59,73,65,22,24,20,25,15,48,85,71,38,"SEC","Alabama","Tight End","Launch Ratings"
23349,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/6.png?im=FaceCrop,padding=0.7","Danny","Saili",75,165,78,"Topeka","Kansas","Eligible",88,"Senior",62,60,61,82,96,80,26,85,39,46,59,26,25,32,26,61,78,78,96,26,44,43,34,56,24,25,78,70,62,58,32,80,80,21,73,60,55,69,0,24,26,48,24,45,84,15,21,26,29,22,32,86,49,18,"SEC","Arkansas","Defensive Tackle","Launch Ratings"
22635,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/127.png?im=FaceCrop,padding=0.7","David","Larkins",77,90,78,"Cincinnati","Ohio","Previous",85,"Senior",78,72,71,93,79,80,56,62,40,72,75,83,85,69,59,62,63,65,88,67,49,36,50,61,29,72,78,67,66,60,40,41,61,22,64,69,65,62,0,73,78,73,60,73,65,23,18,20,25,36,31,87,74,50,"Sun Belt","Appalachian State","Tight End","Launch Ratings"
33253,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/91.png?im=FaceCrop,padding=0.7","Davien","Kerr",73,24,78,"Oakdale","Connecticut","Eligible",10,"Sophomore",91,90,90,83,59,78,55,47,38,39,55,39,65,87,35,44,66,49,83,69,41,46,58,55,80,36,78,64,58,51,32,79,37,75,75,56,55,65,0,34,35,89,66,45,67,37,37,10,27,35,41,84,39,77,"ACC","Syracuse","Cornerback","Launch Ratings"
19579,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/71.png?im=FaceCrop,padding=0.7","Davion","Weatherspoon",72,151,78,"Harper Woods","Michigan","Previous",51,"Senior",67,55,72,91,88,87,34,44,29,37,54,31,36,53,36,37,45,87,85,34,33,32,31,79,34,33,78,83,82,84,39,40,46,31,33,77,80,75,0,33,37,59,35,34,37,19,33,33,15,37,37,86,34,36,"MAC","Ohio","Left Tackle","Launch Ratings"
24701,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Daylan","McCutcheon",71,18,78,"Lucas","Texas","Eligible",17,"Freshman",95,93,88,79,44,67,77,32,42,75,64,74,76,91,78,44,32,39,88,88,11,11,79,34,54,85,78,37,23,35,35,47,31,35,33,44,34,33,0,84,83,93,85,45,35,30,25,35,37,37,25,78,40,44,"SEC","Texas","Wide Receiver","Launch Ratings"
685,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Daylen","Austin",73,40,78,"Long Beach","California","Previous",0,"Sophomore",94,89,93,90,67,69,55,53,46,46,64,45,70,86,35,44,76,54,87,71,44,45,62,55,78,37,78,68,64,57,47,74,51,82,71,62,55,68,0,37,47,92,64,54,70,17,33,28,16,26,36,93,45,76,"Big Ten","Oregon","Cornerback","Launch Ratings"
1371,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Dayon","Hayes",75,100,78,"Pittsburgh","Pennsylvania","Previous",50,"Senior",83,75,81,82,82,88,44,78,27,48,55,41,46,66,39,73,88,81,90,37,25,35,41,56,54,40,78,66,59,51,37,87,83,38,77,59,55,65,0,37,37,76,37,48,79,17,15,35,19,18,41,87,46,63,"SEC","Texas A&M","Left Edge","Launch Ratings"
25292,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/61.png?im=FaceCrop,padding=0.7","Deandre","Desinor",70,15,78,"Delray Beach","Florida","Eligible",20,"Freshman",93,91,84,79,59,62,75,35,42,77,71,59,65,89,58,32,45,47,87,87,31,29,77,45,39,62,78,52,52,48,39,33,30,28,34,47,35,37,0,66,60,91,85,59,35,16,22,23,14,28,27,83,64,26,"ACC","NC State","Halfback","Launch Ratings"
18896,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/104.png?im=FaceCrop,padding=0.7","Demari","Henderson",72,10,78,"Sanford","Florida","Previous",8,"Junior",93,91,91,94,49,75,81,50,22,25,42,54,76,90,44,36,70,45,76,70,25,40,57,54,75,46,78,52,54,52,42,78,27,70,82,48,50,54,0,48,72,91,72,26,68,27,19,31,24,10,35,88,25,79,"Big 12","UCF","Strong Safety","Launch Ratings"
25401,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/91.png?im=FaceCrop,padding=0.7","Demetres","Samuel Jr.",73,30,78,"Palm Bay","Florida","Eligible",1,"Freshman",93,92,92,87,60,74,82,57,41,78,66,73,78,91,74,38,82,57,93,87,22,29,80,54,75,75,78,44,45,45,30,74,45,74,83,47,48,48,0,77,82,91,83,60,67,29,37,33,35,36,32,91,56,77,"ACC","Syracuse","Cornerback","Launch Ratings"
25509,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Derek","Simmons",77,157,78,"Gallatin","Tennessee","Previous",66,"Senior",65,53,65,83,90,80,30,39,35,29,57,50,51,51,50,57,37,88,92,50,33,34,23,75,49,50,78,83,77,88,40,37,38,48,50,77,75,79,0,46,49,59,51,32,29,21,25,16,19,35,45,88,33,48,"SEC","Oklahoma","Right Tackle","Launch Ratings"
21596,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/84.png?im=FaceCrop,padding=0.7","Deshawn","McCuin",72,35,78,"Jacksonville","Texas","Previous",17,"Senior",89,83,82,91,65,75,49,57,39,36,28,37,68,82,28,32,77,55,84,45,29,31,42,57,83,26,78,61,53,47,40,76,44,75,83,49,54,62,0,26,33,86,46,47,70,23,32,13,32,38,44,87,47,81,"Mountain West","San Diego State","Free Safety","Launch Ratings"
23846,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/120.png?im=FaceCrop,padding=0.7","Deshawn","Lynch",77,140,78,"Folsom","California","Eligible",41,"Senior",79,68,79,84,85,81,33,81,42,31,53,33,41,64,36,68,84,83,87,37,41,34,39,32,34,36,78,40,35,37,46,82,83,39,81,30,33,38,0,36,36,72,33,34,80,15,23,35,23,21,28,86,32,35,"Big Ten","Washington","Left Edge","Launch Ratings"
19087,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","Devon","Manuel",79,147,78,"Sunset","Louisiana","Previous",57,"Senior",74,75,73,89,84,84,37,43,42,35,54,37,34,60,40,45,45,86,83,35,30,28,40,82,35,37,78,76,80,75,44,34,46,35,39,84,86,84,0,36,34,62,37,36,34,26,36,22,11,15,48,88,36,40,"SEC","Florida","Right Tackle","Launch Ratings"
911,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/11.png?im=FaceCrop,padding=0.7","Devyn","Bobby",71,36,78,"DeSoto","Texas","Eligible",3,"Senior",93,89,88,92,62,75,68,48,35,33,39,30,65,87,38,26,79,56,90,64,40,32,55,56,66,40,78,57,58,51,44,77,36,64,91,47,53,62,0,38,40,89,68,41,77,23,21,34,35,12,46,88,42,69,"Big 12","Baylor","Strong Safety","Launch Ratings"
19512,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/69.png?im=FaceCrop,padding=0.7","Dillon","Tatum",71,48,78,"Farmington Hills","Michigan","Previous",27,"Junior",93,88,91,89,66,75,65,55,49,48,63,50,69,87,44,47,77,55,95,77,31,32,69,57,72,45,78,67,61,55,32,76,51,76,84,62,57,70,0,45,46,90,78,55,73,34,30,27,37,15,32,93,47,75,"Big Ten","Northwestern","Strong Safety","Launch Ratings"
21050,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/12.png?im=FaceCrop,padding=0.7","Dion","Washington",74,130,78,"Las Vegas","Nevada","Previous",19,"Senior",75,62,72,91,84,83,24,88,38,31,54,23,27,52,26,67,76,66,94,24,36,38,28,54,26,27,78,62,48,38,46,81,82,27,80,54,50,60,0,25,26,65,23,30,80,10,14,28,37,14,25,92,32,22,"Mountain West","Boise State","Defensive Tackle","Launch Ratings"
4611,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/11.png?im=FaceCrop,padding=0.7","DJ","Coleman",73,43,78,"Mesquite","Texas","Eligible",33,"Junior",92,88,86,86,72,79,73,55,45,67,67,40,65,86,42,30,75,61,91,76,28,44,67,58,78,41,78,65,62,54,26,81,45,72,79,49,55,68,0,41,41,89,72,58,61,36,37,17,35,20,48,85,57,75,"Big 12","Baylor","Strong Safety","Launch Ratings"
22026,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/45.png?im=FaceCrop,padding=0.7","DJ","Waller Jr.",75,43,78,"Youngstown","Ohio","Eligible",5,"Junior",91,87,89,91,69,78,48,59,45,45,65,39,61,84,26,41,80,55,93,54,34,41,55,58,76,26,78,66,60,55,35,79,48,84,77,62,55,70,0,27,32,89,59,54,74,27,26,13,36,13,36,95,46,72,"SEC","Kentucky","Cornerback","Launch Ratings"
10322,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/63.png?im=FaceCrop,padding=0.7","DJ","Warnell Jr.",74,38,78,"La Marque","Texas","Eligible",14,"Senior",91,84,85,88,70,75,61,63,41,44,37,40,66,84,36,48,83,60,92,55,36,33,53,58,69,36,78,66,61,53,41,75,45,74,80,51,54,66,0,35,36,87,62,55,73,31,27,38,21,37,43,88,55,82,"Mountain West","Nevada","Strong Safety","Launch Ratings"
22154,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/116.png?im=FaceCrop,padding=0.7","Dontae","Carter",73,25,78,"San Antonio","Texas","Eligible",1,"Sophomore",94,93,87,87,55,69,82,54,25,26,44,45,77,93,47,50,70,51,81,72,33,25,59,54,78,47,78,52,59,48,42,75,33,68,83,50,50,55,0,47,45,92,73,29,67,13,11,26,25,33,27,85,27,79,"SEC","Vanderbilt","Free Safety","Launch Ratings"
24941,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Dorian","Brew",72,40,78,"Conroe","Texas","Eligible",18,"Freshman",93,90,94,83,67,72,77,55,44,73,65,71,74,90,71,46,79,53,91,84,22,28,75,48,73,67,78,45,47,46,24,73,45,84,79,54,54,47,0,68,76,92,77,63,71,22,21,33,19,26,32,92,57,79,"Big Ten","Oregon","Cornerback","Launch Ratings"
6791,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/83.png?im=FaceCrop,padding=0.7","Doug","Blue-Eli",74,155,78,"Paulsboro","New Jersey","Previous",0,"Senior",66,60,63,84,94,80,23,82,40,48,59,23,25,41,23,63,90,76,99,22,42,29,33,60,25,22,78,67,63,56,45,76,76,19,74,62,58,71,0,23,24,53,24,45,85,34,21,34,13,29,26,92,49,20,"Big Ten","Rutgers","Defensive Tackle","Launch Ratings"
25364,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/86.png?im=FaceCrop,padding=0.7","Dramekco","Green",72,30,78,"Conroe","Texas","Eligible",21,"Freshman",93,90,91,79,63,56,83,45,31,79,73,56,65,88,56,37,56,57,88,89,32,31,75,47,60,62,78,59,57,56,30,50,40,36,52,55,53,54,0,66,60,88,85,65,51,24,29,10,27,33,27,88,69,39,"ACC","SMU","Halfback","Launch Ratings"
10141,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/30.png?im=FaceCrop,padding=0.7","K.J.","Kirkland",73,44,78,"Jacksonville","Florida","Previous",24,"Sophomore",91,86,87,88,67,76,58,61,45,67,66,37,66,85,31,37,79,57,92,71,45,38,59,58,69,33,78,61,63,52,27,79,45,74,81,50,55,67,0,33,38,88,65,59,73,15,28,25,17,37,35,91,55,78,"ACC","Florida State","Free Safety","Launch Ratings"
21311,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/4.png?im=FaceCrop,padding=0.7","Ka'ena","Decambra",75,146,78,"Honolulu","Hawaii","Previous",52,"Senior",68,63,64,91,85,81,38,48,32,39,50,25,24,55,28,32,53,93,83,25,35,40,27,75,25,24,78,82,83,81,48,40,49,26,26,73,73,75,0,24,27,57,26,37,40,25,28,21,32,17,30,84,40,24,"Big 12","Arizona","Right Guard","Launch Ratings"
18043,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/39.png?im=FaceCrop,padding=0.7","Kaden","Wetjen",69,36,78,"Williamsburg","Iowa","Eligible",21,"Senior",92,91,83,95,68,80,87,32,11,77,78,85,84,90,74,21,26,45,99,86,17,20,99,45,20,81,78,18,45,45,26,24,25,20,27,68,45,45,0,87,79,88,83,65,26,13,14,26,19,22,22,95,73,23,"Big Ten","Iowa","Wide Receiver","Launch Ratings"
23053,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","Kahleil","Jackson",75,58,78,"Hawthorne","Florida","Previous",22,"Senior",88,85,87,86,74,86,75,54,40,70,75,84,83,82,79,46,68,43,88,76,30,32,64,39,26,83,78,33,25,34,28,42,47,32,65,63,41,41,0,82,85,86,74,67,65,13,23,37,30,25,33,92,72,54,"SEC","Florida","Wide Receiver","Launch Ratings"
5845,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/45.png?im=FaceCrop,padding=0.7","Kahlil","Saunders",77,133,78,"Huntsville","Alabama","Previous",92,"Senior",78,72,77,75,84,80,43,80,46,41,52,29,33,58,29,63,83,74,96,29,29,30,37,46,26,29,78,58,54,51,36,75,83,23,79,50,51,60,0,29,29,71,29,40,86,30,36,37,22,36,48,83,44,30,"SEC","Kentucky","Right Edge","Launch Ratings"
23076,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/114.png?im=FaceCrop,padding=0.7","KD","Johnson",73,115,78,"Houston","Texas","Previous",7,"Senior",81,69,72,74,79,86,48,78,33,44,49,23,23,63,26,77,83,73,99,25,32,45,37,41,20,26,78,67,62,53,39,87,84,19,86,60,52,64,0,27,24,73,25,45,79,20,16,28,20,19,42,90,46,25,"Conference USA","UTEP","Defensive Tackle","Launch Ratings"
31200,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/36.png?im=FaceCrop,padding=0.7","Keany","Parks",73,20,78,"Kenosha","Wisconsin","Eligible",19,"Junior",92,89,89,90,60,83,49,55,25,61,46,44,67,87,27,32,60,42,92,75,45,26,79,34,75,24,78,33,48,46,33,82,31,73,78,32,44,35,0,48,53,88,70,35,68,24,33,10,19,22,36,75,39,77,"Big 12","Houston","Cornerback","Launch Ratings"
23327,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Kevin","Riley",71,31,78,"Northport","Alabama","Previous",28,"Freshman",91,88,85,85,66,68,79,38,45,85,83,57,67,88,39,33,41,49,82,78,31,31,80,41,50,55,78,52,53,54,36,45,30,34,37,44,29,32,0,55,60,89,75,79,39,11,36,23,21,12,43,88,71,39,"SEC","Alabama","Halfback","Launch Ratings"
10129,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/127.png?im=FaceCrop,padding=0.7","Khalifa","Keith",73,75,78,"Birmingham","Alabama","Previous",18,"Sophomore",87,77,82,84,84,73,74,57,32,77,85,49,55,76,35,47,71,56,91,82,24,33,63,50,26,43,78,60,58,60,26,31,47,27,68,52,38,41,0,49,46,83,72,86,62,12,16,20,12,11,32,92,87,35,"Sun Belt","Appalachian State","Halfback","Launch Ratings"
5582,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/24.png?im=FaceCrop,padding=0.7","Kimari","Robinson",70,20,78,"Miramar","Florida","Previous",5,"Sophomore",94,92,89,94,50,79,64,49,40,39,58,33,61,90,38,32,63,48,84,76,40,25,64,55,73,38,78,65,58,54,48,77,38,69,77,56,54,63,0,39,39,92,71,45,58,35,19,33,15,31,28,87,37,81,"ACC","Duke","Cornerback","Launch Ratings"
19063,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","King","Mack",70,27,78,"Miami","Florida","Eligible",16,"Junior",94,89,88,94,72,72,77,54,42,43,68,45,74,86,48,32,81,58,86,66,48,26,70,57,77,45,78,64,63,57,47,74,41,64,80,49,56,67,0,44,44,98,72,60,66,16,30,22,16,32,40,96,57,71,"Big Ten","Penn State","Strong Safety","Launch Ratings"
21388,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Kingston","Lopa",77,38,78,"Sacramento","California","Previous",2,"Freshman",90,85,84,88,67,75,48,64,42,42,28,45,69,83,29,48,80,58,82,45,44,30,45,55,70,26,78,60,61,55,35,79,39,75,83,57,55,65,0,26,39,86,46,56,77,33,21,35,11,21,35,85,53,75,"Big Ten","Oregon","Free Safety","Launch Ratings"
19700,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/109.png?im=FaceCrop,padding=0.7","Kodi","DeCambra",72,25,78,"Las Vegas","Nevada","Previous",24,"Sophomore",92,86,87,90,63,84,60,54,41,44,35,41,71,83,38,29,78,56,89,58,48,31,53,57,70,38,78,61,60,56,46,82,39,68,77,50,54,67,0,37,44,89,62,55,69,28,14,12,36,35,30,94,55,74,"Mountain West","UNLV","Free Safety","Launch Ratings"
20295,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/35.png?im=FaceCrop,padding=0.7","Kuao","Peihopa",75,130,78,"Makakilo","Hawaii","Previous",59,"Senior",77,63,74,90,85,85,26,80,29,34,54,25,34,54,25,67,78,88,95,25,25,24,34,77,41,27,78,82,76,86,26,79,75,28,78,76,74,78,0,26,26,62,27,30,79,12,28,24,14,30,43,95,32,41,"Mountain West","Hawaii","Right Guard","Launch Ratings"
24694,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Lance","Jackson",77,94,78,"Texarkana","Texas","Eligible",40,"Freshman",86,79,79,77,80,72,40,81,27,40,56,39,46,74,39,69,84,80,91,39,29,21,25,45,35,39,78,55,49,44,25,73,83,39,82,44,46,53,0,39,39,82,39,41,82,12,29,13,27,15,43,91,51,40,"SEC","Texas","Left Edge","Launch Ratings"
20712,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/112.png?im=FaceCrop,padding=0.7","Lance","Holtzclaw",75,67,78,"Boston","Massachusetts","Previous",15,"Junior",87,81,85,89,69,76,28,60,44,24,58,45,55,78,45,87,76,64,78,45,35,24,38,34,47,45,78,28,29,30,25,79,67,46,83,18,25,28,0,45,45,81,45,27,77,28,24,37,13,14,48,85,28,52,"Big 12","Utah","Left Edge","Launch Ratings"
20462,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/116.png?im=FaceCrop,padding=0.7","Linus","Zunk",78,103,78,"Berlin","Non-US","Eligible",95,"Senior",82,73,79,80,80,87,40,76,36,39,56,31,33,65,31,67,82,69,87,31,35,46,37,40,28,31,78,54,48,46,41,84,84,34,86,44,45,57,0,31,31,79,31,42,79,20,19,20,19,24,45,84,42,42,"SEC","Vanderbilt","Left Edge","Launch Ratings"
29068,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/65.png?im=FaceCrop,padding=0.7","Logan","Fife",72,45,78,"Tracy","California","Previous",4,"Senior",84,82,78,92,63,81,80,29,73,74,69,31,48,82,32,26,36,38,86,82,30,35,28,35,35,33,78,35,34,34,79,65,24,42,48,40,39,35,0,35,24,82,80,58,55,77,86,85,81,87,72,88,54,34,"Conference USA","New Mexico State","Quarterback","Launch Ratings"
1198,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/57.png?im=FaceCrop,padding=0.7","Lucas","Finnessy",75,90,78,"Sussex","Wisconsin","Previous",46,"Senior",83,72,78,82,83,85,41,68,39,40,56,33,37,67,33,81,84,69,83,33,36,28,39,40,32,33,78,52,51,47,34,84,79,39,84,46,45,54,0,33,33,75,33,38,84,11,37,13,10,34,38,82,40,46,"Big Ten","Minnesota","Right Edge","Launch Ratings"
21329,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/30.png?im=FaceCrop,padding=0.7","Lucas","Simmons",80,151,78,"Stockholm","Non-US","Previous",79,"Sophomore",70,66,73,85,88,64,42,52,35,42,53,31,35,57,34,35,60,85,85,35,35,46,30,75,33,31,78,85,85,86,25,45,58,30,30,75,89,80,0,34,34,59,29,40,43,28,22,24,25,21,36,87,42,33,"ACC","Florida State","Left Tackle","Launch Ratings"
6092,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/1.png?im=FaceCrop,padding=0.7","Luke","Freer",76,65,78,"Fairhope","Alabama","Eligible",97,"Senior",62,56,51,84,68,68,34,36,27,25,51,27,40,51,34,25,38,29,87,27,79,92,32,43,38,25,78,29,36,43,38,35,39,47,32,30,26,25,0,48,44,65,25,44,42,11,33,29,14,21,27,89,47,27,"Mountain West","Air Force","Punter","Launch Ratings"
19231,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Luke","Montgomery",77,148,78,"Findlay","Ohio","Eligible",51,"Junior",77,74,73,85,86,70,41,48,30,38,56,40,37,59,40,48,51,85,90,36,29,35,41,79,38,39,78,82,82,84,24,45,49,38,38,77,87,77,0,41,39,65,36,38,37,12,29,21,25,15,24,86,38,35,"Big Ten","Ohio State","Left Guard","Launch Ratings"
31334,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/55.png?im=FaceCrop,padding=0.7","Makhi","Frazier",70,54,78,"McKinney","Texas","Eligible",5,"Sophomore",88,81,83,85,76,79,79,27,16,79,82,63,64,79,53,24,65,55,94,78,21,21,76,43,33,55,78,57,27,32,15,36,40,40,28,54,28,27,0,62,56,89,72,83,52,35,39,42,18,39,15,76,82,35,"Big Ten","Michigan State","Halfback","Launch Ratings"
23413,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/117.png?im=FaceCrop,padding=0.7","Makilan","Thomas",75,155,78,"Little Rock","Arkansas","Previous",54,"Junior",65,53,63,88,88,82,38,50,30,38,50,26,25,49,24,31,53,88,84,27,40,41,26,78,26,25,78,85,81,87,39,39,52,28,30,76,76,77,0,25,26,55,28,37,39,27,19,36,14,26,44,85,38,25,"ACC","Virginia","Right Tackle","Launch Ratings"
5568,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/47.png?im=FaceCrop,padding=0.7","Makylan","Pounders",77,150,78,"Byhalia","Mississippi","Previous",66,"Senior",76,60,75,89,88,87,32,39,30,30,55,35,37,55,37,48,36,85,85,39,25,24,40,79,41,39,78,82,83,81,40,34,38,41,39,77,79,75,0,35,40,62,39,32,33,18,34,27,22,33,44,90,33,37,"ACC","Louisville","Left Tackle","Launch Ratings"
110,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/122.png?im=FaceCrop,padding=0.7","Malik","Agbo",76,120,78,"Federal Way","Washington","Previous",65,"Junior",80,76,76,89,83,78,44,59,41,45,58,39,43,58,40,50,65,91,82,39,31,36,40,84,40,42,78,79,84,85,48,50,60,43,43,69,87,67,0,42,41,67,37,43,46,35,29,11,13,33,26,85,41,37,"Big 12","West Virginia","Left Tackle","Launch Ratings"
14531,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Maraad","Watson",75,153,78,"Irvington","New Jersey","Eligible",98,"Sophomore",77,64,77,90,86,79,26,82,30,36,50,29,33,56,29,68,81,71,89,27,44,29,35,58,32,29,78,64,58,51,39,81,86,33,85,56,53,64,0,26,30,67,27,37,79,19,31,16,36,38,41,88,38,29,"SEC","Texas","Defensive Tackle","Launch Ratings"
20346,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Marcus","Ratcliffe",75,45,78,"Chula Vista","California","Eligible",3,"Junior",88,83,90,92,72,80,51,71,49,47,26,54,71,81,28,36,80,69,91,66,38,32,47,58,68,25,78,68,62,57,36,82,46,80,84,53,56,70,0,28,61,85,62,63,67,27,27,20,22,32,41,87,60,79,"SEC","Texas A&M","Strong Safety","Launch Ratings"
34013,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Marcus","Harrison",80,170,78,"Buffalo","New York","Previous",76,"Freshman",69,61,66,87,89,74,39,51,32,40,52,26,32,59,31,33,53,87,91,31,44,30,31,83,27,31,78,77,74,80,34,39,52,30,33,81,78,84,0,30,26,59,27,40,39,18,19,32,32,27,44,92,40,26,"SEC","Georgia","Right Guard","Launch Ratings"
22189,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/92.png?im=FaceCrop,padding=0.7","Markis","Deal",77,165,78,"El Paso","Texas","Previous",95,"Sophomore",74,59,72,92,91,74,24,86,47,46,60,28,31,46,25,67,85,84,97,26,39,44,37,77,31,28,78,75,77,77,32,75,81,28,76,75,77,73,0,26,28,60,25,47,80,14,24,15,34,38,26,95,47,27,"Big 12","TCU","Defensive Tackle","Launch Ratings"
14582,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/58.png?im=FaceCrop,padding=0.7","Markus","Allen",74,55,78,"Dayton","Ohio","Previous",7,"Senior",89,86,90,83,73,87,78,57,36,72,70,82,83,84,83,44,69,43,83,79,29,44,80,39,38,82,78,38,24,36,28,41,46,32,65,55,41,39,0,83,86,87,75,57,62,32,37,35,27,32,42,83,61,44,"SEC","Mississippi State","Wide Receiver","Launch Ratings"
20738,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/59.png?im=FaceCrop,padding=0.7","Marquis","Johnson",71,25,78,"Dickinson","Texas","Eligible",2,"Junior",96,91,96,86,57,78,77,43,27,68,70,75,84,90,82,35,52,34,73,77,25,46,81,29,69,72,78,33,22,34,44,68,35,44,48,32,28,28,0,77,81,95,74,55,47,19,16,13,34,20,45,84,40,66,"SEC","Missouri","Wide Receiver","Launch Ratings"
24565,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/59.png?im=FaceCrop,padding=0.7","Marquise","Davis",72,53,78,"Cleveland","Ohio","Eligible",7,"Freshman",89,84,87,84,75,68,76,38,39,80,82,64,65,84,56,33,57,63,95,85,11,11,79,59,36,62,78,64,59,58,24,33,34,28,57,48,33,39,0,66,64,90,83,79,53,32,34,41,21,42,30,91,79,30,"SEC","Missouri","Halfback","Launch Ratings"
20350,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/125.png?im=FaceCrop,padding=0.7","Mason","Reiger",77,90,78,"Hoffman Estates","Illinois","Previous",22,"Senior",81,74,77,83,80,87,34,78,32,34,54,35,42,72,36,75,87,66,82,33,34,46,39,33,51,36,78,45,43,41,43,87,87,39,86,35,40,49,0,35,37,76,36,38,84,24,37,32,21,36,25,80,36,59,"Big Ten","Wisconsin","Will Backer","Launch Ratings"
29260,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/121.png?im=FaceCrop,padding=0.7","Matt","Durrance",74,53,78,"Lutz","Florida","Previous",23,"Senior",86,84,85,88,74,82,60,62,24,27,37,34,72,82,35,63,82,46,85,60,25,27,51,56,65,38,78,52,56,49,37,85,44,70,77,48,51,58,0,35,37,83,57,34,77,30,20,34,14,26,37,86,31,75,"Pac-12","Washington State","Strong Safety","Launch Ratings"
18556,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/57.png?im=FaceCrop,padding=0.7","Maverick","Baranowski",74,70,78,"Ponce Inlet","Florida","Previous",6,"Junior",85,78,82,83,75,84,33,75,36,38,55,40,65,75,33,72,87,66,87,33,36,36,38,54,67,33,78,65,60,53,36,83,67,35,87,56,52,64,0,33,33,82,33,38,80,24,24,24,24,24,36,82,38,74,"Big Ten","Minnesota","Mike Backer","Launch Ratings"
29092,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/123.png?im=FaceCrop,padding=0.7","Maverick","McIvor",74,44,78,"San Angelo","Texas","Previous",7,"Senior",78,72,70,88,75,83,53,40,74,47,52,22,31,70,24,41,48,36,85,54,41,33,24,42,33,23,78,43,37,36,78,66,43,36,32,38,32,32,0,22,25,77,48,40,48,79,84,84,76,88,72,83,36,50,"Conference USA","Western Kentucky","Quarterback","Launch Ratings"
5948,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/97.png?im=FaceCrop,padding=0.7","Mavin","Anderson",72,40,78,"Mission Viejo","California","Previous",3,"Senior",92,90,91,88,66,83,82,48,27,73,68,86,80,89,81,42,60,37,82,81,31,34,93,32,54,83,78,38,28,39,48,65,42,43,54,47,30,33,0,84,80,92,76,27,51,35,15,21,11,37,40,85,51,51,"Sun Belt","Texas State","Wide Receiver","Launch Ratings"
10603,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/4.png?im=FaceCrop,padding=0.7","Max","Harris",72,71,78,"Mansfield","Texas","Eligible",4,"Senior",83,75,77,84,75,87,34,69,37,34,52,34,60,76,32,47,85,61,87,32,42,37,39,55,65,35,78,61,51,46,42,85,47,27,86,54,53,63,0,30,34,81,33,37,84,23,32,33,30,18,25,86,35,72,"Big 12","Arizona","Mike Backer","Launch Ratings"
31501,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/107.png?im=FaceCrop,padding=0.7","Max","Larson",72,30,78,"Davie","Florida","Previous",99,"Senior",66,58,64,83,42,67,40,21,21,24,33,31,36,54,21,24,33,24,88,48,87,89,30,21,23,31,78,25,23,23,20,35,23,22,31,20,21,21,0,25,30,61,40,39,33,21,22,22,19,31,23,79,23,25,"Sun Belt","UL Monroe","Kicker","Launch Ratings"
24926,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Maxwell","Roy",75,125,78,"Philadelphia","Pennsylvania","Eligible",99,"Freshman",80,69,75,75,86,64,26,84,35,46,58,26,32,65,26,66,84,85,95,32,21,22,25,58,30,26,78,52,51,51,37,66,82,25,76,55,56,56,0,26,26,72,33,45,84,24,13,27,20,39,29,93,45,29,"Big Ten","Ohio State","Defensive Tackle","Launch Ratings"
2298,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/131.png?im=FaceCrop,padding=0.7","Michael","Pettway",70,15,78,"Alabaster","Alabama","Previous",1,"Senior",93,91,87,97,52,84,87,37,46,69,59,77,83,90,84,29,36,31,73,82,41,38,93,31,67,78,78,31,15,27,48,54,30,37,34,48,22,24,0,80,84,92,76,24,31,19,15,11,11,13,44,87,45,34,"Conference USA","Jacksonville State","Wide Receiver","Launch Ratings"
24698,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Michael","Terry III",75,56,78,"San Antonio","Texas","Eligible",11,"Freshman",90,89,92,83,76,58,80,55,41,76,78,78,79,87,71,56,75,62,92,85,20,22,78,56,60,75,78,64,62,61,37,66,46,73,73,59,51,52,0,77,84,91,83,77,65,17,34,31,21,40,35,90,76,70,"SEC","Texas","Halfback","Launch Ratings"
357,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/69.png?im=FaceCrop,padding=0.7","Michael","Kilbane",77,107,78,"Lakewood","Ohio","Previous",47,"Sophomore",83,74,76,83,81,82,43,72,34,42,54,35,38,67,35,69,81,76,88,35,42,30,38,40,32,35,78,58,52,51,26,77,81,35,79,52,48,61,0,35,35,79,35,43,88,33,36,36,34,24,38,85,44,39,"Big Ten","Northwestern","Left Edge","Launch Ratings"
9452,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/69.png?im=FaceCrop,padding=0.7","Miguel","Jackson",72,130,78,"Gibsonia","Pennsylvania","Eligible",94,"Senior",74,65,66,91,85,84,23,79,32,41,50,24,27,54,23,64,82,82,96,25,31,39,31,55,35,23,78,67,45,41,31,85,81,23,82,59,52,64,0,25,26,64,26,40,83,35,10,24,19,38,41,96,43,36,"Big Ten","Northwestern","Defensive Tackle","Launch Ratings"
23586,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/26.png?im=FaceCrop,padding=0.7","Mike","Wright",76,35,78,"Atlanta","Georgia","Previous",11,"Senior",90,88,87,98,64,77,79,39,85,72,78,73,77,87,68,35,42,33,88,85,41,26,25,34,28,72,78,38,30,30,75,59,37,48,58,44,30,30,0,76,76,90,82,47,37,71,77,80,86,85,66,95,55,69,"The American","East Carolina","Quarterback","Launch Ratings"
2261,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/57.png?im=FaceCrop,padding=0.7","Mo","Omonode",72,130,78,"West Lafayette","Indiana","Eligible",50,"Senior",75,63,71,92,83,84,26,83,31,34,51,26,30,51,26,56,83,70,95,26,30,43,31,56,29,26,78,65,62,55,27,83,80,27,83,53,54,62,0,26,26,65,26,38,82,20,15,30,35,29,26,96,38,26,"Big Ten","Minnesota","Defensive Tackle","Launch Ratings"
20423,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/22.png?im=FaceCrop,padding=0.7","Mukendi","Wa-Kalonji",76,90,78,"Aurora","Colorado","Previous",92,"Senior",82,76,78,90,78,83,35,76,26,39,53,29,31,69,28,74,84,58,91,54,27,28,35,32,51,29,78,49,34,34,44,82,85,32,81,40,39,49,0,31,30,78,51,52,82,28,30,36,32,38,39,91,56,55,"Mountain West","Colorado State","Left Edge","Launch Ratings"
9371,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Mylan","Graham",73,25,78,"New Haven","Indiana","Eligible",5,"Sophomore",95,96,92,87,52,72,85,33,40,67,58,72,81,92,80,26,29,33,71,83,37,31,85,28,54,85,78,28,14,25,36,53,24,38,30,29,23,25,0,86,82,93,77,41,27,11,18,20,20,13,46,80,37,35,"Big Ten","Ohio State","Wide Receiver","Launch Ratings"
136,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/86.png?im=FaceCrop,padding=0.7","Nate","Anderson",76,140,78,"Frisco","Texas","Previous",69,"Senior",73,65,73,90,86,75,39,54,37,41,54,38,37,60,38,40,58,84,87,40,48,37,36,75,37,38,78,77,79,89,47,42,54,40,39,57,85,91,0,38,38,61,34,40,38,24,32,32,12,20,35,87,38,34,"ACC","SMU","Left Guard","Launch Ratings"
22318,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/47.png?im=FaceCrop,padding=0.7","Nate","Kurisky",75,80,78,"Leesburg","Virginia","Previous",85,"Junior",85,79,81,94,67,79,72,36,26,72,70,79,87,76,67,31,38,57,80,69,37,48,63,47,43,72,78,62,59,59,43,38,29,20,32,63,54,62,0,80,78,76,64,65,29,37,20,16,40,23,37,89,71,32,"ACC","Louisville","Tight End","Launch Ratings"
29296,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/132.png?im=FaceCrop,padding=0.7","Nick","DeGennaro",73,36,78,"Ole Bridge","New Jersey","Previous",11,"Senior",92,86,85,90,67,84,84,49,36,71,71,83,85,86,74,39,59,39,88,80,37,48,67,37,41,84,78,32,25,36,41,63,40,31,57,57,34,31,0,85,82,89,76,56,52,24,34,29,35,33,38,92,55,37,"Sun Belt","James Madison","Wide Receiver","Launch Ratings"
31282,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Nnamdi","Ogboko",76,180,78,"Durham","North Carolina","Previous",95,"Freshman",69,55,73,79,92,76,28,89,38,34,50,26,28,48,27,65,83,89,90,27,39,34,29,55,23,27,78,64,52,45,47,75,82,27,76,54,55,60,0,24,27,62,24,34,78,19,17,12,20,36,44,91,37,24,"SEC","Georgia","Defensive Tackle","Launch Ratings"
6694,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/129.png?im=FaceCrop,padding=0.7","Noah","Arinze",78,110,78,"St. Louis","Missouri","Previous",42,"Senior",80,72,80,80,82,77,41,81,33,41,54,31,41,63,34,66,77,71,84,35,44,37,36,43,34,33,78,59,52,47,48,76,85,39,77,48,48,62,0,34,33,73,32,40,84,10,10,30,22,18,41,82,43,48,"Sun Belt","Coastal Carolina","Left Edge","Launch Ratings"
10543,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/121.png?im=FaceCrop,padding=0.7","Noah","Dunham",77,129,78,"Yuba City","California","Previous",75,"Freshman",75,57,72,91,83,69,46,56,32,42,55,38,33,53,37,39,61,80,84,35,42,46,34,74,36,36,78,66,88,90,42,42,60,35,34,62,81,72,0,32,33,64,38,45,44,13,22,37,37,20,24,90,41,37,"Pac-12","Washington State","Right Guard","Launch Ratings"
6649,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/117.png?im=FaceCrop,padding=0.7","Noah","Vaughn",69,39,78,"Maryville","Tennessee","Eligible",28,"Junior",91,88,84,87,64,71,75,42,34,73,76,66,72,88,61,37,48,37,86,86,45,36,80,33,44,67,78,49,41,49,31,58,34,40,43,42,31,33,0,71,64,88,80,45,43,30,28,21,36,21,32,83,61,45,"ACC","Virginia","Halfback","Launch Ratings"
28083,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Nolan","James Jr.",70,55,78,"Westwood","New Jersey","Eligible",23,"Freshman",91,89,85,91,76,65,75,46,46,78,79,71,72,89,53,39,53,33,88,83,28,38,88,35,61,62,78,57,30,29,28,66,35,38,51,44,29,32,0,67,73,91,79,66,47,20,18,22,11,16,34,91,71,47,"Independent","Notre Dame","Halfback","Launch Ratings"
20098,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/119.png?im=FaceCrop,padding=0.7","Nuer","Gatkuoth",75,77,78,"Edmonton","Non-US","Previous",7,"Junior",86,75,76,84,70,85,28,70,43,29,51,38,38,72,35,81,78,57,82,38,33,36,34,29,60,35,78,36,26,25,33,85,72,41,87,21,31,35,0,35,35,77,37,30,83,37,18,25,21,26,35,91,30,64,"ACC","Wake Forest","Left Edge","Launch Ratings"
122,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Olaus","Alinen",78,162,78,"Pori","Non-US","Previous",73,"Sophomore",70,67,68,82,89,62,41,52,45,41,55,34,33,63,29,33,60,91,90,30,47,40,29,79,29,34,78,84,79,85,47,37,56,32,36,80,82,86,0,29,31,56,34,41,44,10,12,36,26,17,32,83,43,34,"SEC","Alabama","Left Guard","Launch Ratings"
19384,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/74.png?im=FaceCrop,padding=0.7","Oscar","Hammond",75,75,78,"Collinsville","Oklahoma","Eligible",87,"Senior",84,79,82,94,72,87,53,57,46,58,72,81,82,73,62,52,14,53,85,48,44,40,49,44,29,76,78,60,54,45,40,33,52,16,55,64,58,57,0,77,81,81,51,54,58,33,31,29,34,27,43,86,59,36,"Big 12","Oklahoma State","Tight End","Launch Ratings"
22157,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/84.png?im=FaceCrop,padding=0.7","Owen","Chambliss",75,70,78,"Corona","California","Previous",12,"Sophomore",86,78,84,83,76,84,41,72,43,45,67,45,61,75,34,63,86,74,90,45,38,26,44,51,65,35,78,67,43,41,30,85,66,32,81,59,53,67,0,35,32,82,43,52,88,11,24,35,21,13,29,87,45,70,"Mountain West","San Diego State","Will Backer","Launch Ratings"
1684,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Parker","Livingstone",76,31,78,"Lucas","Texas","Previous",13,"Freshman",91,87,89,87,65,82,77,42,28,69,65,80,83,85,79,33,44,35,88,80,36,41,74,33,57,83,78,30,22,30,45,63,35,42,44,54,28,31,0,82,88,89,75,67,42,30,20,26,36,21,35,88,62,56,"SEC","Texas","Wide Receiver","Launch Ratings"
22934,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/112.png?im=FaceCrop,padding=0.7","Paul","Fitzgerald",76,91,78,"Idaho Falls","Idaho","Previous",40,"Junior",83,70,76,79,81,88,36,77,43,35,52,31,28,62,29,76,88,59,81,30,29,26,39,30,52,30,78,49,36,33,43,86,78,27,84,38,41,47,0,27,27,73,28,38,85,10,36,11,16,21,42,81,38,57,"Big 12","Utah","Left Edge","Launch Ratings"
4515,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/88.png?im=FaceCrop,padding=0.7","Peyton","Williams",72,49,78,"Heath","Texas","Previous",31,"Junior",92,86,88,91,63,73,79,56,37,71,58,37,68,87,34,35,76,55,89,77,39,27,85,54,77,38,78,57,57,54,36,74,42,74,87,48,52,63,0,36,39,89,72,58,72,27,16,38,33,16,48,87,58,78,"SEC","South Carolina","Strong Safety","Launch Ratings"
22833,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/105.png?im=FaceCrop,padding=0.7","Pierce","Clarkson",73,35,78,"Bellflower","California","Previous",15,"Sophomore",88,87,79,92,57,73,75,39,73,54,65,30,57,86,29,34,39,33,87,83,32,30,27,32,42,25,78,42,28,33,72,65,36,26,40,33,27,30,0,30,30,83,75,44,37,81,76,82,85,86,79,87,37,28,"Big Ten","UCLA","Quarterback","Launch Ratings"
19291,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/124.png?im=FaceCrop,padding=0.7","Popeye","Williams",75,90,78,"Westfield","Indiana","Previous",2,"Junior",85,76,85,86,77,87,25,69,46,27,51,44,56,72,44,85,83,64,83,46,39,31,35,35,36,45,78,29,27,25,25,84,75,45,85,18,25,29,0,43,42,79,43,27,72,35,24,21,27,20,29,80,25,45,"MAC","Western Michigan","Left Edge","Launch Ratings"
23649,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","Princewill","Umanmielen",77,85,78,"Austin","Texas","Eligible",1,"Junior",90,79,87,83,82,76,37,71,36,43,55,43,47,73,37,85,80,73,94,37,36,36,42,56,61,37,78,67,62,55,36,75,64,32,82,57,56,66,0,37,37,83,37,43,75,24,24,24,24,24,36,93,43,67,"SEC","Ole Miss","Right Edge","Launch Ratings"
24915,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Quincy","Porter",76,45,78,"Oradell","New Jersey","Eligible",11,"Freshman",92,87,92,83,69,73,85,49,44,76,73,88,83,85,76,40,55,59,93,83,21,22,74,51,52,81,78,44,42,45,35,51,41,55,58,62,54,52,0,79,87,91,82,71,51,40,42,44,35,51,33,88,68,45,"Big Ten","Ohio State","Wide Receiver","Launch Ratings"
175,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/82.png?im=FaceCrop,padding=0.7","Quinton","Jackson",67,0,78,"Fort Worth","Texas","Previous",10,"Junior",94,90,87,90,54,73,71,30,47,72,73,65,74,87,64,24,26,23,88,85,27,25,87,25,41,68,78,45,42,38,38,56,24,31,25,35,24,26,0,72,70,90,83,40,24,32,20,33,19,21,31,84,42,41,"The American","Rice","Halfback","Launch Ratings"
19490,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/121.png?im=FaceCrop,padding=0.7","Raam","Stevenson",76,91,78,"Arlington","Texas","Previous",45,"Senior",85,76,83,84,78,85,29,73,24,27,57,42,52,73,40,75,83,66,81,41,24,28,40,39,41,41,78,32,33,29,26,85,83,44,84,22,30,34,0,42,41,76,40,27,80,18,35,37,14,36,44,86,31,47,"Pac-12","Washington State","Left Edge","Launch Ratings"
5807,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/31.png?im=FaceCrop,padding=0.7","Rayshon","Luke",69,20,78,"South Central","California","Previous",2,"Junior",95,90,92,86,55,76,72,31,37,69,62,56,70,89,61,22,27,31,79,85,42,45,96,29,53,64,78,45,43,42,39,52,26,42,24,36,22,27,0,65,60,96,82,53,26,24,23,10,12,35,30,82,51,50,"Mountain West","Fresno State","Halfback","Launch Ratings"
6839,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/13.png?im=FaceCrop,padding=0.7","Reed","Harris",77,57,78,"Great Falls","Montana","Previous",4,"Sophomore",90,85,89,87,75,82,75,52,27,70,69,83,84,81,82,43,67,55,88,76,40,45,64,57,36,77,78,55,24,34,43,46,43,34,62,60,52,54,0,79,91,88,72,67,59,35,13,15,30,27,42,86,72,55,"ACC","Boston College","Wide Receiver","Launch Ratings"
7505,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/128.png?im=FaceCrop,padding=0.7","Reid","Williford",74,75,78,"Franklin","Tennessee","Eligible",40,"Senior",88,83,88,92,72,86,42,69,44,33,54,32,58,81,46,71,84,65,90,65,45,42,39,54,62,48,78,60,53,44,32,87,64,43,86,51,53,62,0,44,42,84,44,32,84,24,32,14,29,18,45,88,48,66,"The American","Charlotte","Mike Backer","Launch Ratings"
19105,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Ricardo","Jones",74,35,78,"Warner Robins","Georgia","Eligible",6,"Sophomore",94,89,92,87,61,76,56,57,34,31,49,45,71,86,31,47,87,55,82,55,29,30,51,56,70,31,78,52,60,52,39,79,41,70,80,50,52,58,0,33,50,90,54,35,69,15,26,31,29,36,29,84,34,75,"ACC","Clemson","Free Safety","Launch Ratings"
30857,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/136.png?im=FaceCrop,padding=0.7","Riley","Trujillo",75,59,78,"Saint Johns","Florida","Eligible",2,"Freshman",85,85,87,86,62,71,72,44,73,61,66,28,53,86,25,45,50,38,85,82,44,45,25,40,40,23,78,51,35,35,75,57,44,29,25,45,34,37,0,31,28,82,71,52,51,82,74,78,84,88,80,85,47,42,"Conference USA","Delaware","Quarterback","Launch Ratings"
19921,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/105.png?im=FaceCrop,padding=0.7","Rodrick","Pleasant",69,20,78,"Gardena","California","Previous",18,"Sophomore",99,93,95,85,54,70,75,45,38,39,57,45,69,90,48,42,58,55,87,75,38,38,67,54,75,47,78,62,61,53,46,66,46,65,67,56,54,65,0,47,52,99,73,46,52,19,33,12,36,18,33,92,39,68,"Big Ten","UCLA","Cornerback","Launch Ratings"
23276,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/5.png?im=FaceCrop,padding=0.7","Roman","Pitre",76,95,78,"Baton Rouge","Louisiana","Previous",13,"Junior",83,77,81,80,79,85,25,78,30,41,53,43,34,68,29,83,81,76,91,27,48,43,34,56,59,28,78,69,62,53,25,87,78,33,88,56,56,66,0,25,31,78,26,40,77,10,36,38,12,18,37,89,42,64,"Big 12","Arizona State","Left Edge","Launch Ratings"
10721,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Ryan","Linthicum",75,145,78,"Damascus","Maryland","Previous",53,"Senior",81,75,79,88,86,83,42,48,38,37,55,42,44,60,41,52,50,83,87,39,45,40,32,76,39,41,78,80,83,80,43,44,45,41,41,75,83,81,0,43,39,66,44,39,40,22,10,20,28,22,34,88,35,41,"ACC","Clemson","Center","Launch Ratings"
6195,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/17.png?im=FaceCrop,padding=0.7","Ryan","McCulloch",75,85,78,"Arcadia","California","Eligible",43,"Junior",87,79,82,85,78,87,30,77,32,40,52,42,50,71,30,85,81,70,92,53,30,46,35,57,64,26,78,65,59,53,24,88,81,32,87,58,54,66,0,29,28,80,51,42,75,29,25,16,31,35,38,84,38,73,"ACC","Cal","Will Backer","Launch Ratings"
18866,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/97.png?im=FaceCrop,padding=0.7","Ryan","Nolan",70,21,78,"Gainesville","Florida","Eligible",7,"Junior",89,84,83,89,61,81,51,55,29,64,29,52,64,78,32,25,65,44,88,72,29,32,43,53,79,33,78,56,53,46,33,82,27,72,83,48,53,59,0,29,49,86,66,37,72,11,16,15,34,32,47,83,34,77,"Sun Belt","Texas State","Free Safety","Launch Ratings"
23653,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/92.png?im=FaceCrop,padding=0.7","Ryan","Yaites",73,35,78,"Denton","Texas","Eligible",39,"Junior",93,88,91,90,72,73,69,62,47,46,40,49,72,86,41,42,86,62,91,64,29,42,61,60,68,38,78,69,64,58,39,75,49,71,82,53,55,68,0,42,44,92,63,64,78,15,19,18,13,21,35,94,61,67,"Big 12","TCU","Strong Safety","Launch Ratings"
1025,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/67.png?im=FaceCrop,padding=0.7","S'Maje","Burrell",72,53,78,"Fort Worth","Texas","Previous",26,"Sophomore",91,84,88,81,71,71,45,56,36,38,55,38,56,80,45,50,76,72,90,45,36,36,46,57,65,45,78,65,60,53,36,73,66,40,87,55,53,62,0,45,45,84,45,38,82,24,24,24,24,24,36,86,38,84,"The American","North Texas","Will Backer","Launch Ratings"
20112,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/24.png?im=FaceCrop,padding=0.7","Sahmir","Hagans",70,28,78,"Philadelphia","Pennsylvania","Previous",2,"Senior",94,93,90,89,63,83,84,46,24,68,59,84,80,93,76,36,55,37,74,81,35,36,92,32,51,77,78,33,24,32,43,48,37,35,50,43,30,29,0,81,86,92,77,22,47,16,18,33,22,33,30,82,46,25,"ACC","Duke","Wide Receiver","Launch Ratings"
6883,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/129.png?im=FaceCrop,padding=0.7","Sawyer","Goram-Welch",76,147,78,"Longview","Texas","Previous",99,"Senior",78,64,77,88,87,83,45,79,32,37,57,44,40,55,42,52,84,91,88,42,47,37,38,80,24,39,78,74,91,88,31,84,83,32,75,72,90,79,0,40,45,67,44,38,82,15,34,14,12,10,47,90,40,28,"Sun Belt","Coastal Carolina","Defensive Tackle","Launch Ratings"
9119,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/80.png?im=FaceCrop,padding=0.7","Sean","FitzSimmons",75,135,78,"Monaca","Pennsylvania","Previous",55,"Junior",76,65,74,81,85,83,26,80,24,36,55,29,34,52,25,68,84,67,90,29,31,42,34,55,35,27,78,62,62,55,29,82,79,30,82,55,51,60,0,28,27,66,28,34,86,14,28,25,18,24,37,91,35,29,"ACC","Pittsburgh","Defensive Tackle","Launch Ratings"
25271,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Seuseu","Alofaituli",74,120,78,"Las Vegas","Nevada","Eligible",65,"Freshman",85,73,76,83,81,76,42,52,35,41,54,45,56,63,26,25,55,88,95,47,30,31,25,87,15,32,78,80,76,84,22,48,49,13,55,82,84,80,0,36,52,74,45,44,46,21,26,27,21,20,28,94,47,11,"ACC","Miami","Center","Launch Ratings"
23469,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","Shone","Washington",76,140,78,"Woodmere","Louisiana","Previous",95,"Junior",75,63,74,90,89,76,26,74,42,42,51,26,29,50,26,64,80,72,89,26,24,39,31,57,34,26,78,67,59,56,43,77,83,33,79,57,54,64,0,26,26,63,26,42,88,35,13,14,36,24,47,93,40,29,"SEC","LSU","Defensive Tackle","Launch Ratings"
3711,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/16.png?im=FaceCrop,padding=0.7","Siale","Esera",75,85,78,"Provo","Utah","Previous",54,"Sophomore",87,81,83,83,82,81,35,74,44,43,53,43,62,75,32,46,87,76,92,36,40,43,38,60,63,36,78,69,64,57,28,83,73,30,87,59,56,69,0,34,36,80,35,46,82,32,20,33,11,11,37,89,46,69,"Big 12","BYU","Mike Backer","Launch Ratings"
18348,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/105.png?im=FaceCrop,padding=0.7","Siale","Taupaki",76,150,78,"East Oakland","California","Previous",92,"Senior",66,59,64,84,88,85,39,81,32,38,53,24,24,53,26,65,86,85,89,28,34,42,26,77,25,26,78,74,82,77,34,85,82,24,76,74,82,77,0,29,27,58,26,39,84,35,33,16,37,13,27,92,39,25,"Big Ten","UCLA","Defensive Tackle","Launch Ratings"
6908,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/11.png?im=FaceCrop,padding=0.7","Sidney","Fugar",77,181,78,"Waldorf","Maryland","Previous",69,"Senior",60,50,60,83,92,89,41,56,41,43,50,26,25,47,25,28,62,89,93,26,37,37,25,75,28,27,78,74,71,77,43,39,57,25,24,81,77,84,0,24,24,53,24,41,45,34,17,11,15,23,24,87,44,25,"Big 12","Baylor","Left Tackle","Launch Ratings"
22221,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/67.png?im=FaceCrop,padding=0.7","Simeon","Evans",71,48,78,"Mansfield","Texas","Previous",3,"Senior",89,86,88,83,71,84,71,53,38,74,72,83,87,84,79,43,67,40,84,87,41,27,81,39,34,83,78,37,23,33,34,42,43,31,59,64,38,35,0,85,82,86,82,32,56,26,29,18,25,20,30,81,59,45,"The American","North Texas","Wide Receiver","Launch Ratings"
22675,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/66.png?im=FaceCrop,padding=0.7","Smith","Vilbert",78,122,78,"Montvale","New Jersey","Previous",8,"Senior",84,73,81,80,84,82,39,82,41,40,53,31,37,62,31,66,84,78,90,31,34,46,35,51,34,31,78,55,52,46,39,81,79,37,79,43,46,53,0,31,31,74,31,39,78,35,27,27,11,38,30,90,42,41,"ACC","North Carolina","Left Edge","Launch Ratings"
19222,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/112.png?im=FaceCrop,padding=0.7","Solatoa","Moea'i",76,184,78,"Laie","Hawaii","Eligible",62,"Junior",61,49,62,81,93,75,47,62,48,46,50,27,28,47,27,25,68,84,92,25,24,25,28,74,25,29,78,70,76,86,24,36,64,24,24,76,82,86,0,29,28,51,24,49,45,33,24,26,26,24,31,90,47,24,"Big 12","Utah","Left Guard","Launch Ratings"
8411,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/16.png?im=FaceCrop,padding=0.7","Sonny","Makasini",76,155,78,"Provo","Utah","Previous",51,"Junior",64,59,58,86,89,83,40,52,43,41,53,24,26,57,26,30,58,86,93,24,43,30,27,77,29,29,78,75,70,80,48,40,59,27,29,82,79,85,0,26,25,57,25,40,43,32,31,25,22,20,31,95,39,28,"Big 12","BYU","Center","Launch Ratings"
8732,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/36.png?im=FaceCrop,padding=0.7","Stacy","Sneed",71,25,78,"Arlington","Texas","Eligible",21,"Senior",92,89,89,86,65,77,79,35,38,79,75,67,72,84,64,29,31,51,87,78,39,35,79,43,61,68,78,52,48,47,28,59,27,40,28,48,48,47,0,73,65,89,77,57,35,22,15,26,26,25,36,87,64,56,"Big 12","Houston","Halfback","Launch Ratings"
6027,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/6.png?im=FaceCrop,padding=0.7","Stephen","Dix Jr.",73,80,78,"Orlando","Florida","Previous",14,"Senior",88,83,86,81,78,78,51,76,44,44,56,44,61,78,37,64,85,73,92,47,33,48,50,52,71,37,78,60,44,38,47,77,67,38,80,52,50,62,0,38,36,80,51,47,86,27,35,23,35,17,36,84,44,76,"SEC","Arkansas","Will Backer","Launch Ratings"
19218,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","Sydir","Mitchell",78,195,78,"Paterson","New Jersey","Previous",99,"Sophomore",69,62,69,81,96,69,24,77,46,45,50,24,27,42,24,62,80,81,96,24,36,34,30,58,23,24,78,68,63,58,25,66,87,20,70,63,58,68,0,24,24,57,24,49,85,21,18,31,36,38,28,88,45,16,"SEC","LSU","Defensive Tackle","Launch Ratings"
25341,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/80.png?im=FaceCrop,padding=0.7","Synkwan","Smith",67,10,78,"Roswell","Georgia","Eligible",20,"Freshman",94,93,89,78,50,55,75,36,46,76,73,75,76,92,65,29,31,43,85,89,32,31,79,43,45,73,78,49,47,46,33,54,29,34,31,40,35,40,0,79,73,90,87,44,30,42,43,45,49,45,32,85,52,46,"ACC","Pittsburgh","Halfback","Launch Ratings"
18474,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/120.png?im=FaceCrop,padding=0.7","Ta'ita'i","Uiagalelei",76,120,78,"Costa Mesa","California","Eligible",11,"Senior",78,70,73,80,87,84,48,79,43,47,57,23,24,61,27,72,84,83,96,27,35,38,36,45,23,24,78,65,61,55,40,86,85,18,85,56,53,65,0,24,24,72,24,44,73,16,30,22,29,26,43,88,48,19,"Big Ten","Washington","Left Edge","Launch Ratings"
29461,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/104.png?im=FaceCrop,padding=0.7","Taevion","Swint",70,25,78,"Kissimmee","Florida","Eligible",4,"Freshman",94,91,91,82,63,60,77,30,44,76,72,55,68,89,60,33,34,50,90,87,21,23,78,40,49,64,78,53,54,52,42,44,31,34,39,45,43,44,0,67,57,90,84,60,33,32,33,35,45,40,28,84,59,43,"Big 12","UCF","Halfback","Launch Ratings"
9775,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/102.png?im=FaceCrop,padding=0.7","Tai","Newhouse",74,160,78,"Lawrence","Kansas","Previous",99,"Junior",71,61,66,82,86,85,25,82,43,41,49,25,31,52,23,58,84,87,91,23,32,36,30,58,37,26,78,55,54,54,36,83,84,27,81,56,56,65,0,26,27,64,24,37,79,14,10,27,33,38,29,90,38,23,"The American","Tulsa","Defensive Tackle","Launch Ratings"
10117,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/35.png?im=FaceCrop,padding=0.7","Tariq","Jones",74,85,78,"New Orleans","Louisiana","Previous",5,"Senior",83,75,78,84,77,83,35,81,34,32,53,32,36,69,31,75,86,60,79,31,34,43,38,32,54,32,78,39,35,30,27,82,80,43,87,29,35,44,0,33,33,75,33,31,85,22,29,16,37,20,36,84,31,63,"Mountain West","Hawaii","Left Edge","Launch Ratings"
10496,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/21.png?im=FaceCrop,padding=0.7","Tavian","Coleman",73,140,78,"Humble","Texas","Previous",94,"Senior",73,64,67,86,87,84,24,79,33,39,51,23,24,56,25,62,79,67,93,24,36,24,34,54,25,24,78,68,43,38,41,82,85,21,85,59,52,67,0,26,26,65,26,40,78,22,35,36,18,28,31,95,41,20,"Big 12","Colorado","Defensive Tackle","Launch Ratings"
14828,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/62.png?im=FaceCrop,padding=0.7","Teddy","Prochazka",82,155,78,"Elkhorn","Nebraska","Previous",65,"Senior",67,56,74,83,90,82,41,56,45,40,50,30,35,52,34,34,60,84,91,31,25,39,34,79,31,31,78,77,71,84,37,46,55,33,35,82,84,80,0,31,35,58,30,40,43,12,35,19,10,11,34,84,41,30,"Big Ten","Nebraska","Left Tackle","Launch Ratings"
555,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/39.png?im=FaceCrop,padding=0.7","Terrell","Washington Jr.",70,48,78,"Wylie","Texas","Previous",8,"Sophomore",90,84,82,84,73,77,80,48,40,79,89,49,58,85,45,40,56,44,90,74,26,31,66,40,37,46,78,55,56,57,45,50,42,36,53,48,33,37,0,53,49,87,71,75,53,36,12,15,20,31,29,88,77,63,"Big Ten","Iowa","Halfback","Launch Ratings"
5647,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Terrell","Tilmon",77,75,78,"Mansfield","Texas","Eligible",18,"Senior",88,80,86,79,69,76,75,68,35,68,63,77,83,77,64,85,81,50,87,64,35,34,62,53,55,73,78,56,48,46,47,77,75,55,84,59,49,60,0,74,84,83,63,67,79,25,23,14,48,18,39,85,67,63,"Big 12","Texas Tech","Right Edge","Launch Ratings"
19608,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/11.png?im=FaceCrop,padding=0.7","Tevin","Williams III",73,28,78,"Stillwater","Oklahoma","Previous",27,"Senior",94,91,91,91,64,82,65,52,43,45,59,45,64,90,42,47,71,54,84,74,40,31,64,55,72,41,78,67,61,52,38,75,48,75,79,58,55,66,0,41,50,91,68,51,61,13,20,11,33,34,24,85,42,79,"Big 12","Baylor","Cornerback","Launch Ratings"
20504,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/128.png?im=FaceCrop,padding=0.7","Thailand","Baldwin",71,20,78,"Hampton","Virginia","Previous",16,"Senior",93,90,91,90,54,86,46,52,40,65,46,26,65,88,27,31,64,46,88,67,48,36,51,54,68,26,78,62,53,45,42,87,40,69,79,58,54,66,0,28,32,89,66,45,61,17,16,19,16,34,26,89,38,76,"The American","Charlotte","Cornerback","Launch Ratings"
21328,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/111.png?im=FaceCrop,padding=0.7","Thomas","Shrader",77,152,78,"Venice","Florida","Previous",67,"Senior",70,61,68,86,87,88,37,45,35,34,54,35,31,57,35,35,46,88,89,30,39,37,34,84,30,30,78,82,78,85,46,36,43,33,34,78,77,79,0,29,35,60,30,35,35,11,23,17,14,16,42,86,33,32,"The American","USF","Left Tackle","Launch Ratings"
739,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/65.png?im=FaceCrop,padding=0.7","TJ","Pride",69,10,78,"Midlothian","Texas","Eligible",7,"Sophomore",92,90,87,88,52,76,83,38,29,75,67,84,85,88,72,29,35,33,88,86,40,35,89,28,62,83,78,34,20,32,39,54,29,38,32,34,26,26,0,84,81,91,83,32,35,35,15,21,35,16,24,92,45,45,"Conference USA","New Mexico State","Wide Receiver","Launch Ratings"
6037,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/91.png?im=FaceCrop,padding=0.7","TJ","Ferguson",76,168,78,"Fort Valley","Georgia","Previous",69,"Senior",71,58,71,84,90,82,45,55,39,45,50,26,27,51,28,31,59,85,91,31,28,31,27,81,14,32,78,81,77,85,35,39,58,12,31,76,73,79,0,26,27,57,30,43,43,27,37,11,36,25,28,90,40,13,"ACC","Syracuse","Left Guard","Launch Ratings"
23173,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/49.png?im=FaceCrop,padding=0.7","Tony","Mathis Jr.",73,65,78,"Orlando","Florida","Previous",24,"Senior",88,85,83,88,71,80,82,48,46,80,82,48,58,85,39,40,58,49,88,77,46,25,63,39,31,45,78,53,50,51,30,32,43,28,56,46,33,37,0,53,47,85,77,70,52,23,32,20,34,19,40,85,80,33,"Sun Belt","Marshall","Halfback","Launch Ratings"
24579,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Tory","Blaylock",71,43,78,"Humble","Texas","Eligible",6,"Freshman",94,90,92,82,63,60,75,45,46,77,73,56,70,89,56,44,44,54,87,87,23,24,80,36,37,65,78,55,45,51,42,42,44,32,45,47,32,38,0,70,55,93,83,60,46,16,33,35,45,44,31,83,63,47,"SEC","Oklahoma","Halfback","Launch Ratings"
6810,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","Trace","Bruckler",75,84,78,"Frisco","Texas","Previous",85,"Senior",79,76,79,95,72,84,62,53,37,74,73,85,80,71,62,49,28,59,81,68,44,29,80,55,28,72,78,62,54,57,26,38,49,21,50,65,58,60,0,76,77,76,62,67,51,10,35,12,47,35,26,91,75,48,"SEC","Ole Miss","Tight End","Launch Ratings"
2315,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/61.png?im=FaceCrop,padding=0.7","Travali","Price",76,123,78,"Lincolnton","North Carolina","Previous",13,"Senior",83,70,79,77,85,81,44,75,34,43,56,28,32,56,28,73,82,74,91,29,29,46,43,46,51,29,78,59,52,49,32,79,84,29,83,50,49,58,0,29,27,74,31,44,83,16,22,36,30,30,38,85,44,55,"ACC","NC State","Right Edge","Launch Ratings"
25048,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/110.png?im=FaceCrop,padding=0.7","Trestin","Castro",73,21,78,"Upland","California","Eligible",21,"Freshman",92,92,90,82,55,71,72,44,46,70,62,67,74,90,37,39,57,44,89,80,30,31,72,34,83,36,78,41,40,41,27,75,32,78,77,43,43,44,0,37,74,88,75,27,58,22,12,27,21,23,37,77,36,75,"Big Ten","USC","Cornerback","Launch Ratings"
8112,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/22.png?im=FaceCrop,padding=0.7","Trevyn","Heil",74,115,78,"Aurora","Colorado","Previous",57,"Senior",73,61,72,92,78,84,30,39,39,31,52,31,32,51,31,38,37,83,81,35,47,33,33,86,36,36,78,83,81,84,40,36,34,34,37,80,83,78,0,34,32,64,34,32,32,32,11,10,23,19,43,91,31,31,"Mountain West","Colorado State","Center","Launch Ratings"
21408,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/66.png?im=FaceCrop,padding=0.7","Trevyon","Green",80,180,78,"Prince George","Virginia","Previous",78,"Junior",72,53,56,82,92,84,48,61,35,46,50,24,26,49,28,26,65,91,95,24,36,41,27,79,24,27,78,74,69,79,24,45,67,27,26,82,79,84,0,24,24,54,24,47,48,32,37,26,13,33,29,92,45,24,"ACC","North Carolina","Left Tackle","Launch Ratings"
7352,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Trey","Owens",77,59,78,"Houston","Texas","Previous",15,"Freshman",80,75,79,75,79,76,53,56,81,75,67,31,30,74,24,55,70,54,85,48,41,44,27,51,42,24,78,66,46,44,64,36,56,25,62,67,44,49,0,32,31,76,50,69,64,80,74,83,75,95,73,81,69,54,"SEC","Texas","Quarterback","Launch Ratings"
22173,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/100.png?im=FaceCrop,padding=0.7","Trey","Cooley",70,48,78,"Raleigh","North Carolina","Previous",3,"Senior",91,87,86,90,67,74,78,42,29,72,77,55,68,85,60,36,47,45,83,81,30,28,91,35,55,60,78,56,44,55,46,62,38,42,48,49,36,38,0,73,60,92,79,69,43,14,17,23,23,30,39,87,69,53,"Sun Belt","Troy","Halfback","Launch Ratings"
18749,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/17.png?im=FaceCrop,padding=0.7","Tristan","Dunn",77,45,78,"Sumner","Washington","Previous",22,"Junior",89,85,87,90,68,75,59,59,42,41,32,38,67,84,32,46,85,57,88,51,29,46,50,57,67,31,78,63,61,56,43,77,40,74,84,50,53,64,0,31,39,87,55,55,76,24,15,12,33,37,45,87,51,76,"ACC","Cal","Free Safety","Launch Ratings"
27536,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Tristian","Gentry",72,10,78,"Stephenville","Texas","Eligible",21,"Freshman",93,92,91,81,46,73,83,34,51,80,67,75,81,90,79,28,33,40,88,88,21,25,81,35,74,81,78,38,27,36,29,65,31,44,32,40,33,35,0,83,82,88,85,34,33,33,35,37,45,39,37,83,45,59,"Big 12","Texas Tech","Wide Receiver","Launch Ratings"
21580,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/109.png?im=FaceCrop,padding=0.7","Tunmise","Adeleye",76,115,78,"Katy","Kansas","Previous",30,"Sophomore",75,58,68,77,87,76,45,85,41,45,59,25,26,45,25,62,81,72,99,26,34,40,39,49,22,26,78,68,47,40,40,77,77,20,78,56,54,64,0,25,22,66,25,44,89,16,29,34,34,33,44,90,44,18,"Mountain West","UNLV","Left Edge","Launch Ratings"
10033,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/23.png?im=FaceCrop,padding=0.7","Ty","Chan",77,160,78,"Lowell","Massachusetts","Previous",69,"Junior",71,56,73,90,88,75,38,51,35,40,51,34,38,54,33,39,55,86,88,32,27,42,36,81,38,38,78,81,76,85,29,36,55,35,36,73,82,86,0,36,32,60,35,40,39,33,12,10,17,26,45,90,41,34,"The American","Connecticut","Left Tackle","Launch Ratings"
22360,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/82.png?im=FaceCrop,padding=0.7","Ty","Morris",74,69,78,"Houston","Texas","Eligible",3,"Junior",87,81,85,82,68,85,44,68,36,36,58,37,62,77,31,74,82,60,90,44,45,34,43,35,66,32,78,48,47,44,42,86,65,60,85,41,40,52,0,34,35,83,40,41,82,27,18,28,34,21,32,89,37,72,"The American","Rice","Will Backer","Launch Ratings"
2098,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/83.png?im=FaceCrop,padding=0.7","Tyler","Needham",76,150,78,"Newtown","Pennsylvania","Previous",56,"Senior",78,72,73,88,86,83,38,49,43,39,57,37,37,57,38,47,49,82,84,41,36,47,37,84,39,40,78,75,78,73,28,47,49,40,38,83,87,80,0,40,38,67,35,36,36,24,34,11,25,19,48,86,34,36,"Big Ten","Rutgers","Left Tackle","Launch Ratings"
22672,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Tyler","Venables",71,45,78,"Clemson","South Carolina","Previous",24,"Senior",89,85,81,93,71,80,53,62,45,45,29,44,66,84,33,38,85,63,88,49,25,27,48,57,68,32,78,65,61,55,35,80,49,68,85,52,54,68,0,31,31,86,54,61,76,34,16,15,29,26,40,90,55,70,"ACC","Clemson","Free Safety","Launch Ratings"
21944,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/37.png?im=FaceCrop,padding=0.7","Tyler","Strain",69,35,78,"Pace","Florida","Previous",20,"Senior",94,91,88,89,63,82,72,47,40,42,65,48,71,90,44,34,76,57,85,79,25,37,70,58,73,44,78,62,62,54,37,81,47,75,76,58,54,65,0,44,45,93,77,48,56,26,16,31,31,25,28,87,40,75,"Big Ten","Illinois","Cornerback","Launch Ratings"
1346,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/43.png?im=FaceCrop,padding=0.7","Tyler","Hallum",72,29,78,"Marietta","Georgia","Previous",20,"Senior",91,86,89,90,60,84,48,43,43,41,49,26,53,84,30,28,75,53,80,61,47,31,53,57,77,32,78,65,60,53,44,83,39,82,77,58,54,66,0,28,25,91,57,49,52,21,32,30,36,27,38,91,40,77,"Conference USA","Kennesaw State","Cornerback","Launch Ratings"
19556,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/86.png?im=FaceCrop,padding=0.7","Tyler","Van Dyke",76,65,78,"Glastonbury","Connecticut","Previous",16,"Senior",68,64,64,87,71,80,48,55,43,64,63,27,28,61,25,53,66,52,76,47,42,46,25,52,40,26,78,66,45,46,75,54,59,36,55,66,44,43,0,26,29,70,49,63,59,78,83,85,68,93,70,85,65,48,"ACC","SMU","Quarterback","Launch Ratings"
9360,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/133.png?im=FaceCrop,padding=0.7","Tyson","Mobley",72,25,78,"Longwood","Florida","Previous",8,"Senior",92,87,87,87,55,83,65,43,27,70,67,82,84,86,80,32,46,33,79,86,43,35,81,33,47,79,78,33,26,35,46,48,34,34,44,54,27,27,0,85,82,91,84,34,43,21,20,24,18,22,46,87,52,45,"Conference USA","Liberty","Wide Receiver","Launch Ratings"
12664,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Upton","Bellenfant",73,25,78,"Murfreesboro","Tennessee","Previous",27,"Junior",55,62,70,87,52,67,47,34,41,26,60,49,30,54,33,27,36,31,90,26,87,91,39,49,40,42,78,45,44,28,42,32,36,48,33,37,26,45,0,35,36,55,45,34,44,13,37,31,23,35,33,84,40,29,"Big 12","Texas Tech","Kicker","Launch Ratings"
23362,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/42.png?im=FaceCrop,padding=0.7","Uso","Seumalo",75,180,78,"Maunaloa","Hawaii","Previous",99,"Senior",64,54,65,86,95,88,22,85,29,49,49,22,22,44,22,57,86,82,97,24,42,38,33,57,26,25,78,68,62,54,46,87,82,20,76,61,58,68,0,24,22,55,26,49,74,15,19,23,11,33,27,90,49,16,"Big 12","Kansas State","Defensive Tackle","Launch Ratings"
7043,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/109.png?im=FaceCrop,padding=0.7","Var'keyes","Gumms",74,80,78,"Houston","Texas","Previous",30,"Junior",86,80,82,97,73,84,70,54,31,74,60,79,83,77,72,52,47,59,84,74,48,35,64,52,39,68,78,52,53,48,38,38,50,21,50,60,42,56,0,82,77,76,64,70,50,13,28,30,30,27,47,88,75,37,"Mountain West","UNLV","Tight End","Launch Ratings"
1167,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/35.png?im=FaceCrop,padding=0.7","Virdel","Edwards II",74,50,78,"Plano","Texas","Previous",23,"Senior",88,86,88,91,75,84,47,57,48,49,41,43,64,80,23,34,73,48,84,50,46,39,50,59,71,26,78,68,52,45,37,85,46,82,85,61,57,70,0,26,29,84,56,61,80,30,15,13,24,35,48,95,46,74,"Mountain West","Hawaii","Cornerback","Launch Ratings"
23616,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/106.png?im=FaceCrop,padding=0.7","Walker","Howard",72,30,78,"Lafayette","Louisiana","Previous",4,"Junior",84,82,79,91,60,80,69,38,65,55,70,35,49,80,28,39,44,33,88,75,35,48,25,37,53,26,78,39,34,28,75,50,38,41,45,32,24,30,0,38,40,79,69,37,40,79,82,85,77,91,71,86,48,50,"Sun Belt","Louisiana","Quarterback","Launch Ratings"
20922,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Warren","Roberson",70,28,78,"Red Oak","Texas","Previous",24,"Sophomore",94,91,91,85,65,73,63,53,46,45,64,47,66,92,41,42,73,55,90,72,47,35,64,57,74,42,78,67,60,53,40,75,50,72,82,60,55,67,0,38,46,90,72,55,71,29,35,20,36,27,46,86,44,70,"SEC","Texas","Cornerback","Launch Ratings"
23623,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/126.png?im=FaceCrop,padding=0.7","Wes","King",77,150,78,"Appleton","Wisconsin","Previous",78,"Junior",69,59,68,87,87,84,41,49,26,37,51,31,30,54,31,34,53,85,84,28,37,27,33,78,29,31,78,80,78,86,48,36,52,32,28,79,83,79,0,29,29,59,31,39,37,35,28,32,25,20,26,88,40,32,"Mountain West","Wyoming","Left Guard","Launch Ratings"
692,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/47.png?im=FaceCrop,padding=0.7","Wesley","Bailey",77,105,78,"Ottawa","Non-US","Previous",23,"Senior",84,78,77,86,75,85,37,63,28,36,56,39,47,71,39,75,79,59,91,39,45,46,42,37,26,39,78,49,46,40,44,83,85,34,84,41,39,48,0,39,39,78,39,39,81,37,37,23,20,26,38,79,37,33,"ACC","Louisville","Left Edge","Launch Ratings"
23792,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/82.png?im=FaceCrop,padding=0.7","Weston","Kropp",76,160,78,"Biloxi","Mississippi","Previous",79,"Senior",68,57,66,88,88,87,37,47,24,39,50,24,27,53,24,27,48,86,85,25,41,26,25,78,26,30,78,82,82,73,47,37,49,26,30,77,83,75,0,27,28,58,30,35,36,24,32,35,16,16,35,89,36,26,"The American","Rice","Right Guard","Launch Ratings"
21002,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/42.png?im=FaceCrop,padding=0.7","Will","Swanson",77,84,78,"Papillion","Nebraska","Previous",83,"Senior",84,76,82,94,79,84,60,59,46,72,72,78,73,70,60,62,67,70,87,60,31,40,51,72,30,71,78,63,68,62,29,39,58,21,62,64,65,62,0,76,74,76,56,76,61,26,21,22,25,17,28,94,73,47,"Big 12","Kansas State","Tight End","Launch Ratings"
4172,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/66.png?im=FaceCrop,padding=0.7","Will","O'Steen",75,130,78,"Anniston","Alabama","Previous",73,"Senior",76,70,73,87,81,89,33,39,34,33,53,30,31,56,29,33,36,84,87,32,27,26,35,77,31,32,78,79,81,77,40,35,38,31,31,80,85,77,0,35,30,67,32,30,30,31,26,25,19,12,37,89,29,35,"ACC","North Carolina","Left Tackle","Launch Ratings"
20521,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/117.png?im=FaceCrop,padding=0.7","Will","Bettridge",71,23,78,"Miami","Florida","Eligible",41,"Senior",65,55,61,87,50,66,28,44,27,27,52,29,33,55,38,35,39,33,79,35,88,89,28,25,37,32,78,42,32,26,25,35,38,25,28,12,35,24,0,43,47,59,47,25,42,13,17,29,27,30,28,84,34,47,"ACC","Virginia","Kicker","Launch Ratings"
28094,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Will","Black",79,147,78,"London","Non-US","Eligible",65,"Freshman",78,75,74,91,90,78,24,31,37,24,59,45,44,71,47,57,28,81,88,45,34,27,49,82,44,49,78,80,81,80,44,67,26,48,51,80,81,81,0,48,48,77,45,24,23,33,28,22,35,30,45,90,24,43,"Independent","Notre Dame","Left Tackle","Launch Ratings"
682,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/111.png?im=FaceCrop,padding=0.7","Wyatt","Sullivan",76,82,78,"Atlanta","Georgia","Previous",8,"Junior",88,85,87,94,73,75,75,33,25,69,66,79,81,83,64,27,38,64,78,73,36,37,73,58,55,75,78,59,48,55,45,41,25,22,25,61,56,53,0,80,78,81,70,63,27,20,37,20,27,16,38,87,67,26,"The American","USF","Tight End","Launch Ratings"
31225,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/19.png?im=FaceCrop,padding=0.7","Xavier","Lozowicki",77,155,78,"Ridley Park","Pennsylvania","Previous",66,"Sophomore",65,60,56,79,87,82,43,59,40,43,50,24,24,50,27,27,63,86,99,26,27,27,25,85,24,27,78,83,84,82,26,36,62,24,24,78,83,73,0,26,24,55,25,46,45,13,30,26,30,13,34,92,42,27,"Big 12","Cincinnati","Left Tackle","Launch Ratings"
18848,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/69.png?im=FaceCrop,padding=0.7","Xavior","Gray",80,180,78,"Massillon","Ohio","Previous",63,"Senior",58,59,58,82,93,82,45,56,27,46,50,24,24,59,24,25,63,88,98,27,37,37,25,80,27,27,78,72,68,76,36,38,61,24,26,83,79,86,0,28,24,49,24,45,44,17,22,32,21,19,33,90,41,27,"Big Ten","Northwestern","Right Tackle","Launch Ratings"
19503,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/5.png?im=FaceCrop,padding=0.7","Zac","Swanson",76,130,78,"Phoenix","Arizona","Previous",92,"Junior",83,73,78,90,86,75,39,79,35,41,57,39,45,65,39,88,85,72,86,39,40,37,40,56,46,39,78,67,61,55,41,77,78,44,85,60,55,65,0,39,39,71,39,45,81,27,18,29,14,20,44,92,42,41,"Big 12","Arizona State","Defensive Tackle","Launch Ratings"
7695,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/120.png?im=FaceCrop,padding=0.7","Zach","Durfee",77,96,78,"Dawson","Minnesota","Eligible",5,"Senior",83,75,75,80,80,85,37,73,38,40,55,35,41,68,35,70,82,66,79,35,47,48,40,37,42,35,78,52,49,42,24,83,86,38,84,42,43,51,0,35,35,76,35,37,78,15,20,22,27,19,27,86,37,53,"Big Ten","Washington","Left Edge","Launch Ratings"
21767,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/90.png?im=FaceCrop,padding=0.7","Zach","Rowell",75,130,78,"San Diego","California","Previous",97,"Senior",75,69,74,77,84,80,41,83,44,44,57,27,32,61,27,65,82,74,93,29,47,37,39,44,27,29,78,57,52,50,26,79,83,26,75,51,47,58,0,28,29,68,31,41,83,32,37,21,14,31,28,84,44,29,"ACC","Stanford","Right Edge","Launch Ratings"
8880,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/34.png?im=FaceCrop,padding=0.7","Zachary","Tobe",74,35,78,"Ocoee","Florida","Eligible",23,"Junior",92,86,88,91,66,79,48,57,45,44,63,42,60,87,30,40,74,54,84,62,33,24,58,56,70,32,78,68,63,52,24,81,41,74,84,61,56,68,0,29,35,88,61,57,75,10,16,27,20,19,29,88,45,76,"ACC","Georgia Tech","Cornerback","Launch Ratings"
19006,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/74.png?im=FaceCrop,padding=0.7","Zaquan","Patterson",72,35,78,"Miramar","Florida","Eligible",28,"Sophomore",90,87,85,88,62,74,51,61,36,35,57,42,69,83,29,42,79,58,82,50,40,42,50,55,72,27,78,59,59,50,45,79,42,68,85,54,53,61,0,30,36,86,52,45,74,34,28,32,32,16,31,84,44,78,"Big 12","Oklahoma State","Free Safety","Launch Ratings"
24462,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Zayden","Walker",73,52,78,"Ellaville","Georgia","Eligible",10,"Freshman",93,83,90,85,73,74,79,84,49,75,82,65,73,81,55,81,90,75,92,76,25,26,64,54,67,59,78,55,55,49,40,72,72,64,78,52,47,52,0,64,66,88,74,75,82,32,34,44,44,42,35,88,77,71,"SEC","Georgia","Will Backer","Launch Ratings"
750,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/54.png?im=FaceCrop,padding=0.7","Zeke","Berry",71,36,78,"Pittsburg","California","Previous",10,"Senior",94,88,90,90,64,85,69,53,42,41,61,46,73,86,41,39,71,58,87,65,34,33,62,56,75,42,78,62,60,52,31,84,34,74,81,48,54,65,0,42,48,90,63,54,49,12,10,15,35,27,38,84,50,77,"Big Ten","Michigan","Cornerback","Launch Ratings"
23548,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/112.png?im=FaceCrop,padding=0.7","Zereoue","Williams",80,145,78,"Phoenix","Arizona","Previous",76,"Senior",71,56,71,82,87,78,41,48,41,41,52,30,32,50,32,31,50,83,89,26,24,47,27,75,30,26,78,84,82,86,47,38,49,30,28,69,76,77,0,29,28,62,26,39,40,18,16,32,31,28,44,88,37,32,"Big 12","Utah","Left Tackle","Launch Ratings"
32931,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/86.png?im=FaceCrop,padding=0.7","Zion","Nelson",77,156,78,"Sumter","South Carolina","Previous",60,"Senior",71,64,68,85,89,80,46,55,40,42,51,28,29,53,24,25,64,85,91,28,26,30,29,85,29,27,78,84,79,83,43,65,58,27,26,79,80,81,0,24,24,58,27,42,42,20,27,16,34,35,33,87,44,29,"ACC","SMU","Right Tackle","Launch Ratings"
25644,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/19.png?im=FaceCrop,padding=0.7","Zion","Johnson",68,25,78,"Covington","Georgia","Eligible",13,"Freshman",92,86,88,84,60,69,77,33,46,81,73,65,66,87,53,26,28,49,92,87,25,26,82,44,58,65,78,53,52,51,31,51,23,36,24,45,45,45,0,69,62,89,84,55,25,32,32,33,44,41,35,86,59,42,"Big 12","Cincinnati","Halfback","Launch Ratings"
1003,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/116.png?im=FaceCrop,padding=0.7","Aaron","Bryant",74,145,77,"Southaven","Mississippi","Previous",55,"Senior",73,63,72,88,87,75,26,85,35,38,56,26,29,47,26,65,80,74,91,26,45,38,30,57,33,26,77,67,63,54,42,74,78,25,79,57,54,67,0,26,26,62,26,38,88,17,12,24,30,20,40,86,40,21,"SEC","Vanderbilt","Defensive Tackle","Launch Ratings"
7930,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Aaron","Flowers",72,40,77,"Forney","Texas","Previous",21,"Freshman",93,89,90,86,72,69,69,64,46,44,68,47,71,86,39,44,82,60,83,65,31,44,65,58,75,39,77,67,60,52,44,75,47,72,83,55,54,68,0,42,49,90,65,62,74,37,22,18,34,34,48,87,60,71,"Big Ten","Oregon","Strong Safety","Launch Ratings"
1328,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/47.png?im=FaceCrop,padding=0.7","Adonijah","Green",78,90,77,"Ellenwood","Georgia","Previous",98,"Sophomore",88,79,86,80,72,77,32,61,42,33,53,44,50,70,43,85,72,65,85,43,27,43,37,36,39,41,77,42,37,36,36,76,75,44,82,29,35,42,0,42,42,82,41,34,78,31,30,14,10,15,27,85,35,50,"ACC","Louisville","Right Edge","Launch Ratings"
5678,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/71.png?im=FaceCrop,padding=0.7","Adonis","Williams Jr.",74,57,77,"Cleveland Heights","Ohio","Eligible",5,"Senior",88,85,83,88,72,83,47,61,44,46,68,25,57,82,25,35,77,55,92,45,41,29,54,55,78,24,77,68,46,39,38,84,43,70,78,48,54,68,0,27,26,85,45,62,63,29,35,14,12,15,26,86,59,76,"MAC","Ohio","Strong Safety","Launch Ratings"
3731,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/89.png?im=FaceCrop,padding=0.7","Ahmere","Foster",69,15,77,"Miami","Florida","Eligible",41,"Junior",92,86,87,90,58,79,75,52,36,35,56,36,67,85,46,31,74,52,87,71,35,48,63,57,72,46,77,56,56,46,45,80,32,74,79,48,52,62,0,45,38,91,71,41,70,32,27,28,22,14,29,87,40,69,"Sun Belt","Southern Miss","Free Safety","Launch Ratings"
31407,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/45.png?im=FaceCrop,padding=0.7","Aidan","Laros",74,58,77,"Cape Town","Non-US","Eligible",48,"Senior",53,42,40,83,51,69,48,42,19,43,40,18,40,37,15,30,34,17,83,54,78,90,33,0,29,16,77,40,0,0,22,36,29,18,33,15,0,0,0,20,23,43,37,39,40,52,54,55,23,53,21,70,43,30,"SEC","Kentucky","Punter","Launch Ratings"
18325,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/88.png?im=FaceCrop,padding=0.7","Air","Noland",75,65,77,"College Park","Georgia","Previous",11,"Freshman",84,80,74,89,65,71,69,39,80,59,61,36,45,79,26,40,46,39,85,73,39,44,27,39,47,27,77,42,30,28,65,54,42,46,42,36,30,31,0,32,34,76,69,46,39,76,81,84,81,90,74,84,50,57,"SEC","South Carolina","Quarterback","Launch Ratings"
25046,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/110.png?im=FaceCrop,padding=0.7","Alex","Payne",77,132,77,"Gainesville","Georgia","Eligible",71,"Freshman",83,74,81,75,82,74,37,47,39,35,52,35,33,64,29,34,46,82,90,34,23,23,25,87,31,30,77,83,85,81,34,39,46,33,35,73,75,71,0,35,33,75,34,36,37,34,36,24,23,13,42,78,38,33,"Big Ten","USC","Left Tackle","Launch Ratings"
18447,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/130.png?im=FaceCrop,padding=0.7","Alex","Smith",78,60,77,"Melbourne","Non-US","Eligible",25,"Junior",64,52,68,86,52,64,29,32,45,31,52,41,43,49,37,44,25,24,86,37,86,90,35,31,41,26,77,41,36,37,29,35,30,43,31,25,40,48,0,33,36,66,45,36,31,21,38,24,14,20,32,92,39,38,"Sun Belt","Georgia Southern","Punter","Launch Ratings"
21607,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/9.png?im=FaceCrop,padding=0.7","Alex","McPherson",69,0,77,"Fort Payne","Alabama","Previous",38,"Junior",73,67,74,87,39,62,24,36,43,33,50,38,33,65,34,30,38,47,82,39,85,96,25,46,44,38,77,38,34,48,36,29,39,49,28,10,37,49,0,47,33,74,24,28,43,26,20,19,14,12,33,84,38,35,"SEC","Auburn","Kicker","Launch Ratings"
20009,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/13.png?im=FaceCrop,padding=0.7","Alex","Broome",66,31,77,"Nashville","Tennessee","Previous",20,"Junior",91,85,84,90,66,76,73,39,27,74,81,65,70,85,59,32,39,41,85,82,27,33,85,35,56,63,77,55,44,49,35,53,31,37,41,40,28,30,0,71,60,90,76,50,37,34,26,26,34,30,33,87,71,49,"ACC","Boston College","Halfback","Launch Ratings"
3366,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/111.png?im=FaceCrop,padding=0.7","Alvon","Isaac",69,25,77,"Hawthorne","Florida","Eligible",10,"Sophomore",93,88,87,86,60,71,72,33,27,75,67,67,68,88,61,26,31,38,85,86,24,38,83,34,44,66,77,46,41,48,46,55,28,38,31,41,29,30,0,68,65,90,82,46,26,12,15,24,27,11,40,75,42,43,"The American","USF","Halfback","Launch Ratings"
20041,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/81.png?im=FaceCrop,padding=0.7","An'Darius","Coffey",70,40,77,"Winona","Mississippi","Previous",14,"Senior",92,87,87,88,69,76,65,59,42,42,65,35,65,87,34,40,81,60,85,57,46,35,61,57,70,36,77,60,59,56,29,77,49,76,81,49,54,65,0,36,33,88,60,56,69,26,22,20,26,30,33,87,52,77,"Big Ten","Purdue","Strong Safety","Launch Ratings"
24829,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/54.png?im=FaceCrop,padding=0.7","Andrew","Babalola",78,140,77,"Overland Park","Kansas","Eligible",65,"Freshman",84,72,81,77,86,72,38,54,28,41,52,33,32,61,38,44,55,85,93,34,31,32,25,87,33,32,77,83,81,85,30,61,56,35,36,78,80,77,0,38,32,73,36,39,40,12,31,30,23,17,37,93,38,37,"Big Ten","Michigan","Left Tackle","Launch Ratings"
3453,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/86.png?im=FaceCrop,padding=0.7","Andrew","Chamblee",78,143,77,"Maumelle","Arkansas","Previous",74,"Junior",76,67,75,87,86,78,37,50,32,41,58,39,37,56,38,41,52,85,91,38,32,44,35,85,13,40,77,75,70,81,35,35,49,11,37,85,91,81,0,38,36,64,35,37,39,21,20,37,15,30,25,88,36,14,"ACC","SMU","Left Tackle","Launch Ratings"
29059,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/46.png?im=FaceCrop,padding=0.7","Andrew","Burnette",74,65,77,"Stuart","Florida","Previous",0,"Senior",87,79,86,88,81,79,74,53,29,79,81,58,64,77,39,47,69,61,87,77,48,48,74,49,31,44,77,61,60,62,28,64,46,34,63,55,44,46,0,52,53,85,75,86,63,32,13,21,37,38,30,88,82,59,"Conference USA","Louisiana Tech","Halfback","Launch Ratings"
7670,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/38.png?im=FaceCrop,padding=0.7","Andrew","Depaepe",77,100,77,"Bettendorf","Iowa","Previous",42,"Sophomore",88,77,84,77,80,69,34,75,48,37,57,42,49,70,42,87,76,69,83,42,28,46,41,40,38,42,77,48,43,39,35,75,76,44,80,36,40,49,0,42,42,77,42,36,83,14,21,30,30,31,42,81,35,50,"Big Ten","Indiana","Right Edge","Launch Ratings"
1210,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/90.png?im=FaceCrop,padding=0.7","Anthony","Franklin",75,125,77,"Phoenix","Arizona","Previous",94,"Senior",77,67,76,91,83,84,26,79,44,33,50,27,32,46,25,75,77,65,87,26,25,48,31,55,28,25,77,60,59,54,41,80,84,31,79,52,54,59,0,24,27,69,25,33,80,33,25,18,24,13,38,87,32,22,"ACC","Stanford","Left Edge","Launch Ratings"
21843,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/54.png?im=FaceCrop,padding=0.7","Anthony","Simpson",71,20,77,"Bloomfield","Connecticut","Eligible",1,"Senior",90,88,90,93,55,85,79,37,26,72,65,82,84,86,78,34,43,30,84,86,40,39,84,31,58,81,77,36,14,26,25,49,33,35,39,52,27,27,0,83,85,89,78,38,39,36,29,27,36,14,31,88,57,37,"Big Ten","Michigan","Wide Receiver","Launch Ratings"
25156,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/17.png?im=FaceCrop,padding=0.7","Anthony","League",72,50,77,"Long Beach","California","Eligible",25,"Freshman",93,89,87,77,69,63,77,50,25,73,79,57,65,86,54,41,62,62,91,85,25,24,75,55,33,61,77,60,61,58,25,29,43,36,55,58,55,53,0,63,57,89,80,79,55,19,11,34,36,19,48,95,82,25,"ACC","Cal","Halfback","Launch Ratings"
22892,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Anthony","Donkoh",77,166,77,"Aldie","Virginia","Previous",68,"Sophomore",64,68,69,81,91,76,42,55,35,44,54,28,26,55,29,29,60,80,94,29,26,30,29,72,24,24,77,77,76,78,24,46,57,26,30,84,84,85,0,24,28,61,28,44,45,13,22,29,24,14,28,86,41,24,"Big Ten","Penn State","Right Tackle","Launch Ratings"
23986,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/9.png?im=FaceCrop,padding=0.7","Antonio","Coleman",73,87,77,"Saraland","Alabama","Eligible",99,"Freshman",84,72,79,80,79,73,38,78,35,41,46,37,45,67,37,75,84,78,91,37,34,33,24,56,33,37,77,55,49,48,41,72,84,39,85,45,46,53,0,37,44,80,37,40,82,19,33,29,19,22,29,90,39,41,"SEC","Auburn","Left Edge","Launch Ratings"
10143,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","Antonio","Kite",72,15,77,"Anniston","Alabama","Previous",33,"Junior",93,92,89,91,59,73,63,44,38,38,63,47,72,93,45,39,64,47,84,76,40,32,64,56,80,44,77,60,57,50,36,71,34,71,73,56,53,63,0,41,47,91,74,40,57,23,11,32,33,26,47,90,36,73,"SEC","Ole Miss","Cornerback","Launch Ratings"
21796,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Atticus","Sappington",70,30,77,"Portland","Oregon","Previous",36,"Senior",69,71,52,86,51,63,38,35,38,44,56,34,36,73,40,44,44,24,83,25,89,88,46,46,42,28,77,32,34,48,27,40,40,30,41,28,25,26,0,36,37,69,25,47,36,17,16,30,16,20,40,91,48,28,"Big Ten","Oregon","Kicker","Launch Ratings"
23239,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Austin","Novosad",75,45,77,"Dripping Springs","Texas","Previous",16,"Sophomore",84,79,84,88,63,76,71,44,58,57,56,32,44,78,28,42,50,42,89,77,31,24,22,43,51,27,77,46,38,34,70,69,43,33,25,44,31,36,0,32,37,76,70,44,47,80,83,84,78,90,75,90,43,64,"Big Ten","Oregon","Quarterback","Launch Ratings"
20169,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/41.png?im=FaceCrop,padding=0.7","Bangally","Kamara",74,75,77,"Akron","Ohio","Previous",1,"Senior",88,83,84,82,80,83,39,63,36,40,56,40,55,79,39,64,80,68,89,39,36,36,43,53,72,39,77,66,61,54,36,86,75,39,82,59,56,67,0,39,39,79,39,40,81,24,24,25,24,24,36,85,40,70,"Big 12","Kansas","Will Backer","Launch Ratings"
4559,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/125.png?im=FaceCrop,padding=0.7","Ben","Barten",77,163,77,"Stratford","Wisconsin","Previous",68,"Senior",75,63,74,89,91,83,26,79,25,41,51,26,32,46,26,63,83,76,91,26,27,43,35,57,32,26,77,65,61,55,48,80,76,25,75,55,53,63,0,26,26,65,26,41,83,26,18,27,32,19,41,92,41,22,"Big Ten","Wisconsin","Right Edge","Launch Ratings"
497,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/105.png?im=FaceCrop,padding=0.7","Benjamin","Perry",75,45,77,"Chicago","Illinois","Previous",10,"Junior",94,89,91,87,72,77,74,64,44,45,42,49,70,88,42,51,85,63,90,64,33,36,63,56,69,45,77,64,61,56,28,75,51,70,82,55,54,69,0,45,48,91,71,65,66,31,17,32,22,36,43,86,60,74,"Big Ten","UCLA","Free Safety","Launch Ratings"
19769,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/30.png?im=FaceCrop,padding=0.7","Blake","Nichelson",75,64,77,"Ripon","California","Eligible",20,"Junior",89,82,87,87,75,76,63,64,40,41,65,40,66,77,44,73,81,70,87,67,26,36,63,49,67,45,77,53,48,48,45,78,56,57,85,45,47,54,0,42,45,83,65,44,88,29,10,33,23,38,43,83,39,73,"ACC","Florida State","Mike Backer","Launch Ratings"
21712,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Blake","Purchase",75,100,77,"Green Valley Ranch","Colorado","Previous",17,"Sophomore",89,80,85,82,82,82,35,76,36,43,57,43,48,74,35,77,82,77,90,35,36,36,41,60,60,35,77,67,62,55,36,81,75,33,84,61,55,64,0,35,35,80,35,43,82,24,24,24,24,24,36,90,43,64,"Big Ten","Oregon","Sam Backer","Launch Ratings"
29532,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/41.png?im=FaceCrop,padding=0.7","Blake","Herold",75,130,77,"Shenandoah","Iowa","Previous",94,"Sophomore",79,67,74,82,83,76,22,75,25,48,50,26,25,56,22,58,84,83,91,24,34,39,34,57,19,25,77,67,63,57,39,78,84,24,81,59,53,67,0,23,23,69,22,48,83,24,33,20,17,37,34,92,46,20,"Big 12","Kansas","Defensive Tackle","Launch Ratings"
2912,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/36.png?im=FaceCrop,padding=0.7","Blake","Thompson",73,35,77,"Missouri City","Texas","Previous",0,"Senior",88,85,81,93,64,83,44,65,51,48,72,32,59,82,22,27,82,62,92,66,38,47,53,56,68,23,77,68,60,55,45,85,43,71,83,56,57,70,0,22,27,86,62,65,65,26,15,13,26,31,42,89,64,74,"Big 12","Houston","Strong Safety","Launch Ratings"
29032,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/112.png?im=FaceCrop,padding=0.7","Blake","Cotton",74,30,77,"Sherman Oaks","California","Eligible",10,"Senior",91,90,89,89,64,79,72,52,36,37,56,52,68,87,48,49,72,52,87,71,31,25,64,55,75,48,77,63,62,54,48,68,47,76,78,56,55,63,0,46,49,91,72,45,74,33,15,35,35,21,32,87,37,79,"Big 12","Utah","Cornerback","Launch Ratings"
7036,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/41.png?im=FaceCrop,padding=0.7","Boden","Groen",76,80,77,"Santa Ana","California","Eligible",88,"Senior",83,79,76,93,66,80,74,32,36,71,68,79,88,76,68,29,26,48,81,69,30,37,63,29,35,76,77,61,55,55,25,49,27,27,28,63,56,58,0,75,80,74,65,68,31,22,14,15,32,34,48,88,72,59,"Big 12","Kansas","Tight End","Launch Ratings"
9819,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/16.png?im=FaceCrop,padding=0.7","Bodie","Schoonover",75,105,77,"American Fork","Utah","Previous",48,"Junior",85,78,82,85,77,78,34,74,29,32,56,41,55,72,39,84,86,65,82,38,46,33,42,34,45,38,77,44,41,36,31,76,74,51,83,31,35,42,0,40,39,76,38,36,79,25,23,30,24,25,38,81,36,52,"Big 12","BYU","Left Edge","Launch Ratings"
20994,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Brad","Spence",74,81,77,"Houston","Texas","Eligible",14,"Junior",86,77,80,77,81,82,30,75,36,41,52,41,45,70,30,78,84,72,93,30,36,36,37,58,70,30,77,67,61,54,36,84,64,26,87,59,54,66,0,30,30,79,30,41,82,24,24,24,24,24,36,87,41,74,"SEC","Texas","Right Edge","Launch Ratings"
22443,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/122.png?im=FaceCrop,padding=0.7","Braden","Siders",74,83,77,"Thornton","Colorado","Previous",10,"Senior",83,76,76,85,72,87,30,76,30,32,51,35,40,71,36,76,82,57,83,34,44,33,34,28,60,34,77,36,31,33,46,86,83,47,88,26,33,36,0,35,34,74,35,31,81,17,13,34,22,27,35,86,29,63,"Big 12","West Virginia","Right Edge","Launch Ratings"
8378,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/4.png?im=FaceCrop,padding=0.7","Braedyn","Locke",72,51,77,"Rockwall","Texas","Previous",8,"Junior",82,78,77,90,61,80,68,40,54,56,65,26,46,77,27,39,45,34,85,75,33,36,25,38,40,26,77,43,33,32,65,66,43,36,59,39,33,35,0,28,33,77,70,41,40,81,85,82,72,88,79,90,47,60,"Big 12","Arizona","Quarterback","Launch Ratings"
21822,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/110.png?im=FaceCrop,padding=0.7","Braylan","Shelby",77,100,77,"Friendswood","Texas","Previous",10,"Junior",87,78,85,83,78,84,35,75,36,44,54,44,50,70,35,72,85,81,88,35,36,36,41,62,50,35,77,68,62,55,36,83,82,34,79,60,56,68,0,35,35,81,35,44,77,24,24,24,24,24,36,86,44,54,"Big Ten","USC","Right Edge","Launch Ratings"
20873,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/102.png?im=FaceCrop,padding=0.7","Braylin","Presley",66,10,77,"Bixby","Oklahoma","Eligible",1,"Senior",94,92,86,89,45,81,82,32,33,77,66,73,76,90,71,26,29,33,75,89,43,47,96,28,61,80,77,32,21,31,29,59,24,40,28,40,22,25,0,83,76,92,85,28,26,26,29,24,14,25,48,87,37,42,"The American","Tulsa","Wide Receiver","Launch Ratings"
22411,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Braylon","Rigsby",74,115,77,"Woodville","Texas","Previous",94,"Sophomore",76,71,77,81,83,79,45,88,45,46,59,29,34,64,29,53,81,75,85,29,35,36,40,43,32,33,77,67,61,54,37,80,79,31,75,56,56,67,0,33,29,71,32,48,80,16,22,29,27,25,45,86,46,39,"Big 12","Texas Tech","Left Edge","Launch Ratings"
19993,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/40.png?im=FaceCrop,padding=0.7","Brendan","Black",76,160,77,"Yulee","Florida","Eligible",51,"Junior",66,54,66,82,90,90,42,52,27,42,54,31,30,54,26,32,57,81,91,30,31,30,25,82,29,29,77,76,76,77,35,44,55,30,26,79,77,81,0,31,31,55,26,40,40,37,30,32,20,32,25,91,43,25,"Big Ten","Iowa State","Right Guard","Launch Ratings"
23092,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Brenden","Jordan",72,50,77,"Mansfield","Texas","Eligible",7,"Junior",90,85,87,86,75,83,55,67,46,47,72,47,68,83,32,39,82,62,95,54,41,32,60,60,71,34,77,67,61,55,24,82,50,74,79,55,56,69,0,33,42,86,53,67,67,20,31,22,28,33,48,89,64,70,"Big 12","Texas Tech","Strong Safety","Launch Ratings"
20287,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/56.png?im=FaceCrop,padding=0.7","Brendon","Harris",72,55,77,"Chattanooga","Tennessee","Previous",7,"Senior",86,84,86,89,75,79,60,63,51,49,32,42,65,80,34,40,85,61,94,55,39,43,55,56,70,30,77,66,60,58,31,80,49,75,85,55,55,71,0,34,39,87,56,65,71,24,30,26,31,19,32,89,63,73,"Conference USA","Middle Tennessee State","Strong Safety","Launch Ratings"
24618,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/88.png?im=FaceCrop,padding=0.7","Brian","Rowe Jr.",72,10,77,"Concord","North Carolina","Eligible",18,"Freshman",93,91,94,83,53,73,83,39,36,77,71,79,81,89,82,32,35,42,87,88,22,29,79,29,46,76,77,37,27,37,28,36,35,29,43,42,35,23,0,79,76,93,84,34,33,31,15,32,13,38,32,75,44,25,"SEC","South Carolina","Wide Receiver","Launch Ratings"
20223,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/118.png?im=FaceCrop,padding=0.7","Brody","Meadows",79,172,77,"Bluefield","Virginia","Previous",77,"Junior",67,51,70,87,92,79,40,51,39,42,52,28,29,44,27,33,56,88,89,33,41,36,33,76,31,33,77,77,72,83,27,38,53,28,30,80,83,78,0,31,30,56,27,42,39,27,25,25,21,22,47,92,40,33,"ACC","Virginia Tech","Right Guard","Launch Ratings"
10068,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/24.png?im=FaceCrop,padding=0.7","Bruno","Fina",77,140,77,"Tucson","Arizona","Previous",75,"Senior",75,63,75,90,87,87,37,47,34,36,52,37,33,54,35,42,46,88,85,35,25,33,36,85,34,38,77,76,73,79,41,36,46,34,34,80,82,78,0,38,36,66,35,38,35,31,24,25,34,38,42,92,38,34,"ACC","Duke","Left Tackle","Launch Ratings"
20729,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Bryce","Young",79,111,77,"Charlotte","North Carolina","Eligible",95,"Sophomore",86,78,85,79,74,72,30,71,45,30,54,45,58,72,47,85,81,71,76,44,38,33,38,40,44,44,77,39,38,36,24,74,77,48,83,26,32,38,0,48,45,82,48,32,82,37,31,36,12,23,46,80,30,50,"Independent","Notre Dame","Left Edge","Launch Ratings"
2916,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","Bryce","Thornton",70,52,77,"College Park","Georgia","Eligible",18,"Junior",92,88,85,88,72,76,64,58,48,46,35,46,75,86,38,40,75,63,89,57,41,33,54,57,80,35,77,64,65,58,39,80,54,71,81,51,55,68,0,37,43,89,57,64,60,13,36,29,17,24,24,78,62,74,"SEC","Florida","Free Safety","Launch Ratings"
29014,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/41.png?im=FaceCrop,padding=0.7","Bryson","Canty",74,45,77,"Pfafftown","North Carolina","Previous",11,"Senior",90,88,87,89,78,78,78,55,36,76,74,82,83,87,82,47,77,47,87,84,33,44,63,43,28,79,77,36,29,38,42,67,46,36,68,58,42,45,0,76,83,90,79,68,66,17,16,11,29,18,36,87,67,70,"Big 12","Kansas","Wide Receiver","Launch Ratings"
5554,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/23.png?im=FaceCrop,padding=0.7","Bryun","Parham",71,63,77,"Long Beach","California","Previous",6,"Senior",85,79,84,93,69,85,53,61,34,32,49,50,66,77,38,64,81,56,85,59,45,28,45,36,66,42,77,38,35,33,30,86,52,47,86,26,32,39,0,40,39,79,55,33,91,13,28,25,29,24,47,88,31,64,"The American","Connecticut","Mike Backer","Launch Ratings"
5813,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/116.png?im=FaceCrop,padding=0.7","Cade","McConnell",77,155,77,"Choctaw","Oklahoma","Previous",70,"Senior",68,58,69,84,88,78,31,53,31,39,55,30,27,55,31,31,56,88,88,32,39,28,32,81,30,29,77,75,82,78,41,38,55,31,32,75,89,78,0,31,29,58,29,39,43,10,17,13,31,13,40,88,39,24,"SEC","Vanderbilt","Center","Launch Ratings"
4488,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/9.png?im=FaceCrop,padding=0.7","Caleb","Wheatland",73,71,77,"Centreville","Virginia","Eligible",43,"Senior",87,82,84,85,74,80,39,72,42,42,63,42,62,78,35,66,81,71,93,43,45,34,43,52,77,32,77,56,53,46,25,80,73,59,87,47,50,55,0,33,31,80,43,42,77,16,31,18,30,10,30,86,42,76,"SEC","Auburn","Mike Backer","Launch Ratings"
33780,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/63.png?im=FaceCrop,padding=0.7","Caleb","Ramseur",71,38,77,"Elk Grove","California","Eligible",20,"Senior",89,84,84,88,69,78,78,48,44,75,82,64,66,82,52,41,54,56,91,81,33,31,74,47,31,54,77,59,55,52,25,43,37,33,55,55,54,54,0,62,65,85,79,68,49,34,34,44,34,45,35,87,70,35,"Mountain West","Nevada","Halfback","Launch Ratings"
25524,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/55.png?im=FaceCrop,padding=0.7","Caleb","Carter",75,150,77,"Jacksonville","North Carolina","Previous",72,"Senior",69,59,69,83,88,82,38,46,45,36,44,25,27,53,22,34,49,87,93,30,43,36,31,78,28,23,77,79,73,84,45,38,46,27,30,76,73,79,0,24,29,63,31,38,35,12,12,23,27,16,33,90,34,26,"Big Ten","Michigan State","Right Guard","Launch Ratings"
24592,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","Caleb","Cunningham",75,30,77,"Weir","Mississippi","Eligible",3,"Freshman",95,91,90,84,59,73,84,44,49,75,73,83,82,90,75,39,51,49,92,88,25,26,81,43,51,78,77,37,23,35,24,50,30,36,54,49,39,35,0,76,89,91,87,48,44,33,36,44,44,45,28,78,58,44,"SEC","Ole Miss","Wide Receiver","Launch Ratings"
18770,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Cam","Williams",74,40,77,"Glen Ellyn","Illinois","Previous",5,"Freshman",92,88,86,75,79,67,79,55,28,86,75,85,88,86,77,45,73,49,88,83,26,29,85,42,47,83,77,30,20,30,34,53,49,37,67,57,46,44,0,82,85,89,82,68,65,10,18,33,24,17,43,84,72,58,"Independent","Notre Dame","Wide Receiver","Launch Ratings"
22324,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/62.png?im=FaceCrop,padding=0.7","Cameron","Lenhardt",75,100,77,"Staten Island","New York","Eligible",11,"Junior",84,76,78,81,81,84,38,77,34,37,55,37,43,67,37,80,81,65,80,37,30,43,38,35,39,37,77,51,49,45,44,85,82,39,83,39,43,51,0,37,37,75,37,38,79,36,12,25,16,36,31,79,40,47,"Big Ten","Nebraska","Right Edge","Launch Ratings"
23518,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/11.png?im=FaceCrop,padding=0.7","Carl","Williams IV",73,24,77,"Baton Rouge","Louisiana","Eligible",15,"Junior",93,90,88,86,61,75,63,45,40,42,61,35,70,91,39,44,75,52,81,77,37,29,63,56,72,41,77,66,62,53,43,77,36,70,75,57,53,67,0,40,38,90,68,48,66,12,11,23,36,31,45,82,40,78,"Big 12","Baylor","Free Safety","Launch Ratings"
6905,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/99.png?im=FaceCrop,padding=0.7","Carter","Fouty",76,134,77,"Oregon","Ohio","Previous",66,"Senior",67,62,65,86,84,86,37,44,42,35,51,31,30,57,26,33,44,84,89,30,30,36,30,81,32,28,77,79,82,78,32,32,45,28,29,78,80,76,0,32,26,57,28,35,34,33,34,15,12,20,34,85,36,29,"MAC","Toledo","Left Guard","Launch Ratings"
5691,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/120.png?im=FaceCrop,padding=0.7","Carver","Willis",77,131,77,"Durango","Colorado","Previous",50,"Senior",72,71,72,94,83,85,32,42,27,29,50,28,33,56,30,33,40,82,84,33,28,47,33,87,31,31,77,74,74,74,37,34,39,33,31,85,87,83,0,30,33,65,33,32,32,19,37,13,32,35,33,94,29,32,"Big Ten","Washington","Left Tackle","Launch Ratings"
18252,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Casey","Poe",76,162,77,"Lindale","Texas","Previous",50,"Freshman",82,75,79,89,95,76,47,61,29,46,56,41,47,64,46,54,69,85,82,42,26,39,45,86,43,45,77,76,78,79,33,49,69,41,46,72,79,81,0,42,44,68,47,47,47,31,13,14,22,12,44,89,47,42,"SEC","Alabama","Left Tackle","Launch Ratings"
7565,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/76.png?im=FaceCrop,padding=0.7","Cedrick","Beavers",70,15,77,"Taylorsville","Mississippi","Previous",13,"Junior",95,92,93,93,51,72,69,45,25,26,46,42,74,92,41,35,62,50,82,75,45,33,58,57,78,45,77,60,56,50,34,70,33,72,70,49,52,56,0,43,47,92,72,29,57,11,36,19,15,13,35,85,28,70,"SEC","Ole Miss","Cornerback","Launch Ratings"
7585,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/81.png?im=FaceCrop,padding=0.7","Chad","Brown",74,31,77,"Trenton","New Jersey","Previous",24,"Senior",90,85,86,92,61,81,57,50,32,30,31,24,63,86,34,33,65,41,81,56,32,44,48,52,73,31,77,57,51,45,29,79,30,73,85,47,52,58,0,32,33,87,56,38,74,28,12,35,30,38,35,83,35,78,"Big Ten","Purdue","Cornerback","Launch Ratings"
4601,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/130.png?im=FaceCrop,padding=0.7","Chance","Carroll",74,130,77,"Mooresville","North Carolina","Previous",54,"Senior",73,65,60,85,82,86,23,23,14,23,40,37,40,55,37,23,21,85,84,26,13,14,5,79,35,39,77,77,75,79,29,37,42,20,21,83,85,81,0,43,15,65,27,25,40,37,40,42,21,35,18,82,23,35,"Sun Belt","Georgia Southern","Center","Launch Ratings"
6842,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/6.png?im=FaceCrop,padding=0.7","Charlie","Collins",77,95,77,"Pine Bluff","Arkansas","Eligible",9,"Sophomore",85,76,82,77,82,58,36,84,24,36,56,39,46,67,39,76,80,74,82,39,26,38,43,46,31,39,77,52,45,42,41,79,82,38,81,39,41,52,0,39,39,76,39,38,84,28,36,27,16,29,38,78,38,45,"SEC","Arkansas","Left Edge","Launch Ratings"
19774,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/111.png?im=FaceCrop,padding=0.7","Chas","Nimrod",74,38,77,"Bentonville","Arkansas","Previous",2,"Junior",92,89,90,88,60,78,80,49,32,75,71,79,83,86,76,37,56,38,84,84,41,25,85,35,39,79,77,39,30,41,24,46,39,34,55,50,37,38,0,81,86,90,82,54,52,33,25,15,15,30,24,85,47,53,"The American","USF","Wide Receiver","Launch Ratings"
4888,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/81.png?im=FaceCrop,padding=0.7","Chauncey","Magwood",72,40,77,"Albany","Georgia","Previous",5,"Senior",92,91,88,90,62,79,73,43,37,71,67,79,86,91,76,38,50,32,75,84,27,25,90,34,59,78,77,33,20,30,36,49,37,35,47,35,28,27,0,83,85,90,81,22,45,21,36,37,24,28,43,83,46,34,"Big Ten","Purdue","Wide Receiver","Launch Ratings"
928,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/109.png?im=FaceCrop,padding=0.7","Chief","Borders",76,85,77,"Powder Springs","Georgia","Previous",1,"Junior",83,75,83,83,77,87,35,70,48,32,54,40,44,71,40,82,79,64,87,40,46,42,41,34,37,40,77,41,39,38,44,85,75,43,83,32,37,44,0,40,40,78,40,34,78,10,24,18,23,27,29,83,35,51,"Mountain West","UNLV","Right Edge","Launch Ratings"
19908,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Chimdy","Onoh",77,154,77,"Baltimore","Maryland","Previous",55,"Sophomore",82,77,76,85,97,49,47,60,35,46,57,38,40,53,41,48,70,90,88,38,26,30,38,84,38,40,77,77,77,82,44,50,65,42,43,77,83,84,0,42,41,67,40,47,47,13,18,13,33,14,41,87,48,41,"Big Ten","Penn State","Left Guard","Launch Ratings"
22487,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/91.png?im=FaceCrop,padding=0.7","Chris","Thomas",78,167,77,"Tallahassee","Florida","Previous",7,"Senior",65,54,66,82,91,84,26,84,42,44,50,24,23,45,23,48,82,87,97,22,41,31,35,59,26,25,77,68,45,42,26,83,79,22,72,58,53,66,0,24,23,57,24,41,81,21,14,18,23,38,40,94,45,18,"ACC","Syracuse","Defensive Tackle","Launch Ratings"
14816,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/91.png?im=FaceCrop,padding=0.7","Chris","Peal",73,35,77,"Charlotte","North Carolina","Previous",16,"Sophomore",95,89,92,90,68,71,58,52,48,46,64,47,67,87,36,50,74,57,87,67,41,45,61,58,67,37,77,68,64,57,38,69,50,68,73,62,55,68,0,37,47,91,66,54,67,32,29,21,13,32,25,90,46,84,"ACC","Syracuse","Cornerback","Launch Ratings"
7134,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/124.png?im=FaceCrop,padding=0.7","Christian","Leary",70,20,77,"Edgewater","Florida","Previous",1,"Senior",95,91,92,92,54,78,86,35,26,76,67,78,83,89,75,29,36,31,74,88,34,38,93,27,54,77,77,28,16,25,41,65,32,43,37,37,23,22,0,81,78,93,79,34,34,15,11,36,17,18,24,84,54,52,"MAC","Western Michigan","Wide Receiver","Launch Ratings"
3457,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/117.png?im=FaceCrop,padding=0.7","Christian","Charles",73,40,77,"Gainesville","Georgia","Previous",4,"Senior",93,90,90,89,65,77,72,56,41,39,62,45,71,87,42,45,74,63,87,64,43,38,64,59,73,42,77,61,61,52,38,75,46,80,80,49,55,64,0,45,45,91,72,53,63,29,17,12,18,31,27,88,49,75,"ACC","Virginia","Strong Safety","Launch Ratings"
21421,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/122.png?im=FaceCrop,padding=0.7","Christian","Hamilton",72,30,77,"Harrisburg","North Carolina","Previous",17,"Sophomore",94,92,90,87,64,78,79,46,44,68,62,77,84,91,81,36,52,38,79,79,25,35,96,35,57,77,77,34,21,31,32,47,37,35,51,46,29,30,0,79,83,92,80,24,47,10,17,17,11,36,45,82,43,36,"Big 12","West Virginia","Wide Receiver","Launch Ratings"
22123,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/35.png?im=FaceCrop,padding=0.7","Christian","Vaughn",70,65,77,"Las Vegas","Nevada","Eligible",47,"Senior",88,78,82,82,79,77,75,52,41,75,83,57,57,76,54,42,67,59,87,78,26,28,63,57,28,57,77,59,57,53,27,40,45,31,62,57,56,55,0,61,45,86,73,83,61,34,20,24,10,25,30,89,83,31,"Mountain West","Hawaii","Halfback","Launch Ratings"
28265,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/63.png?im=FaceCrop,padding=0.7","Cian","Stack",74,85,77,"Reno","Nevada","Eligible",83,"Freshman",76,72,70,92,73,70,54,64,28,70,76,70,78,67,61,61,56,72,95,66,46,26,50,74,27,64,77,69,71,70,43,60,59,21,66,67,68,68,0,73,71,72,60,74,69,32,30,21,41,21,38,94,73,50,"Mountain West","Nevada","Tight End","Launch Ratings"
24578,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","CJ","Nickson",75,94,77,"Weatherford","Oklahoma","Eligible",88,"Freshman",88,84,89,84,76,69,75,72,56,67,74,73,78,74,63,83,85,63,89,76,32,35,66,59,72,66,77,51,53,47,35,70,74,75,87,58,61,52,0,70,81,83,73,70,79,41,44,46,45,48,34,87,72,67,"SEC","Oklahoma","Left Edge","Launch Ratings"
30932,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/90.png?im=FaceCrop,padding=0.7","Clay","Patterson",75,140,77,"Frisco","Texas","Previous",91,"Senior",77,65,73,82,86,85,25,75,24,40,57,25,25,60,22,65,79,76,90,24,21,23,15,55,14,26,77,66,52,45,43,83,85,19,79,56,55,66,0,23,26,67,26,38,78,23,32,32,19,22,35,92,41,11,"ACC","Stanford","Right Edge","Launch Ratings"
29387,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/16.png?im=FaceCrop,padding=0.7","Cody","Hagen",72,25,77,"Draper","Utah","Eligible",18,"Sophomore",93,89,87,87,67,78,75,52,46,59,73,79,81,88,80,45,65,40,86,78,38,42,82,34,52,81,77,38,28,39,29,61,44,32,59,55,40,38,0,82,80,91,71,24,58,18,14,27,21,31,29,90,52,29,"Big 12","BYU","Wide Receiver","Launch Ratings"
10550,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","Coen","Echols",75,156,77,"Katy","Texas","Previous",78,"Freshman",72,65,72,82,88,75,41,55,27,41,51,31,31,53,31,32,58,85,90,28,42,24,33,81,28,29,77,75,73,78,35,37,56,32,29,81,82,85,0,30,29,58,32,40,40,14,27,36,11,12,36,89,42,31,"SEC","LSU","Right Guard","Launch Ratings"
7389,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/37.png?im=FaceCrop,padding=0.7","Cole","Rusk",77,90,77,"Rock Island","Illinois","Previous",14,"Senior",87,81,82,93,68,80,66,41,37,69,75,77,77,75,60,33,82,75,91,70,25,47,64,70,42,65,77,60,57,64,26,48,37,28,36,72,60,67,0,75,80,76,62,70,37,33,16,25,39,33,40,89,70,54,"Big Ten","Illinois","Tight End","Launch Ratings"
22528,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Cole","Turner",73,25,77,"Vestavia Hills","Alabama","Previous",22,"Junior",91,87,86,89,62,87,76,44,24,65,72,83,79,87,82,37,54,38,75,76,41,42,82,39,45,77,77,34,21,31,37,51,37,36,48,53,26,27,0,85,85,89,72,41,47,28,19,31,28,21,37,81,58,56,"ACC","Clemson","Wide Receiver","Launch Ratings"
23382,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/116.png?im=FaceCrop,padding=0.7","Cole","Spence",79,90,77,"Roswell","Georgia","Eligible",16,"Senior",85,79,81,91,74,76,68,54,33,73,69,82,82,75,55,55,45,61,87,61,28,29,57,62,36,71,77,56,50,48,44,37,55,19,54,67,64,56,0,76,81,76,57,75,59,24,36,36,40,10,26,90,71,35,"SEC","Vanderbilt","Tight End","Launch Ratings"
3412,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/124.png?im=FaceCrop,padding=0.7","Cole","Cabana",71,37,77,"Dexter","Michigan","Previous",4,"Sophomore",93,89,87,83,61,70,73,39,40,73,70,67,72,85,62,33,36,45,85,86,29,46,87,38,24,65,77,53,51,49,44,44,30,33,36,47,34,35,0,74,73,92,82,56,37,10,30,17,28,26,30,75,59,25,"MAC","Western Michigan","Halfback","Launch Ratings"
30525,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/90.png?im=FaceCrop,padding=0.7","Cole","Tabb",68,40,77,"Fort Walton Beach","Florida","Eligible",33,"Sophomore",91,89,87,83,68,68,76,42,42,76,79,62,65,87,45,37,46,49,86,82,11,13,81,41,35,55,77,54,50,53,21,53,35,38,46,47,32,37,0,64,62,90,76,62,45,12,17,28,23,23,22,82,65,36,"ACC","Stanford","Halfback","Launch Ratings"
31545,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/43.png?im=FaceCrop,padding=0.7","Coleman","Bennett",72,50,77,"Fort Lauderdale","Florida","Previous",0,"Senior",89,87,85,84,64,80,72,42,40,66,79,76,71,85,64,31,43,40,86,84,26,45,76,35,47,66,77,50,43,46,36,43,31,33,41,47,28,32,0,75,69,87,80,42,40,36,26,12,12,10,48,90,54,39,"Conference USA","Kennesaw State","Halfback","Launch Ratings"
30758,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/21.png?im=FaceCrop,padding=0.7","Cooper","Lovelace",77,155,77,"Prairie Village","Kansas","Previous",70,"Senior",66,55,66,81,84,87,38,31,25,33,53,37,24,57,27,45,32,85,90,31,9,9,5,80,31,45,77,77,73,81,39,36,31,34,27,81,80,82,0,29,44,60,35,48,35,34,10,35,36,24,29,84,45,30,"Big 12","Colorado","Right Tackle","Launch Ratings"
6104,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/47.png?im=FaceCrop,padding=0.7","Corey","Gordon",74,35,77,"Oklahoma City","Oklahoma","Previous",24,"Junior",91,86,87,89,62,78,54,53,33,33,31,39,69,86,33,37,72,51,87,53,33,41,49,55,68,30,77,56,59,55,37,77,34,71,83,48,53,62,0,33,39,88,54,46,70,14,17,29,24,36,48,88,40,75,"ACC","Louisville","Free Safety","Launch Ratings"
24874,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/62.png?im=FaceCrop,padding=0.7","Cortez","Mills",72,15,77,"Homestead","Florida","Eligible",86,"Freshman",92,91,90,82,46,72,83,32,24,75,68,76,82,89,81,28,30,41,88,87,30,32,80,30,44,79,77,38,31,39,40,48,24,35,34,42,36,35,0,80,84,91,84,37,29,30,17,35,24,33,37,78,38,43,"Big Ten","Nebraska","Wide Receiver","Launch Ratings"
19492,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/105.png?im=FaceCrop,padding=0.7","Croix","Stewart",74,45,77,"Vallejo","California","Previous",22,"Sophomore",94,88,89,92,74,73,60,56,48,48,67,47,65,89,40,43,78,58,89,72,41,45,66,58,73,40,77,66,62,54,39,74,53,77,80,63,56,70,0,41,44,95,71,58,66,25,15,35,17,15,31,89,47,69,"Big Ten","UCLA","Free Safety","Launch Ratings"
21274,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/47.png?im=FaceCrop,padding=0.7","Dacari","Collins",76,55,77,"Atlanta","Georgia","Previous",3,"Senior",90,86,89,87,75,79,72,55,37,73,73,85,85,84,80,48,71,44,86,79,27,29,75,41,41,72,77,34,26,34,41,38,45,30,66,51,41,41,0,80,88,88,76,67,62,17,18,33,34,13,38,92,59,34,"ACC","Louisville","Wide Receiver","Launch Ratings"
1727,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/84.png?im=FaceCrop,padding=0.7","Dalesean","Staley",73,32,77,"Kansas City","Missouri","Previous",9,"Junior",88,86,89,89,68,81,65,50,26,29,49,32,65,84,38,33,74,47,87,59,35,24,53,52,73,34,77,55,53,50,28,80,30,68,77,47,51,57,0,37,42,87,61,33,75,10,11,29,34,22,41,92,34,71,"Mountain West","San Diego State","Strong Safety","Launch Ratings"
5628,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/127.png?im=FaceCrop,padding=0.7","Dalton","Stroman",76,50,77,"Rockingham","North Carolina","Previous",8,"Senior",89,84,87,83,77,85,61,50,34,74,70,84,84,80,77,45,67,42,82,81,36,36,63,39,26,81,77,31,25,37,39,46,43,34,62,58,37,38,0,83,86,85,75,42,57,33,31,14,15,21,39,83,56,65,"Sun Belt","Appalachian State","Wide Receiver","Launch Ratings"
6349,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/117.png?im=FaceCrop,padding=0.7","Daniel","Sparks",78,57,77,"Gadsden","Alabama","Previous",38,"Senior",68,58,63,88,61,66,36,37,36,27,53,39,30,59,24,30,35,38,89,40,84,91,26,28,39,37,77,48,33,42,38,31,42,43,41,30,24,43,0,27,43,69,35,26,42,15,27,30,21,27,27,92,44,31,"ACC","Virginia","Punter","Launch Ratings"
22980,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/57.png?im=FaceCrop,padding=0.7","Darius","Green",72,40,77,"Covington","Georgia","Previous",12,"Senior",98,91,88,88,69,78,77,56,43,44,46,46,72,88,46,44,79,64,88,69,45,25,66,57,65,47,77,66,61,52,43,76,51,65,81,49,56,65,0,47,44,94,77,60,68,22,23,25,10,35,47,86,55,67,"Big Ten","Minnesota","Strong Safety","Launch Ratings"
14835,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/58.png?im=FaceCrop,padding=0.7","Darron","Reed Jr.",76,125,77,"Columbus","Georgia","Previous",42,"Sophomore",82,65,77,87,89,68,30,80,45,38,56,30,39,52,30,80,79,72,90,30,26,44,35,56,38,30,77,68,60,55,29,77,80,34,81,56,54,64,0,30,30,67,30,41,80,24,19,21,17,23,36,88,39,31,"SEC","Mississippi State","Right Edge","Launch Ratings"
24960,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Daryus","Dixson",72,31,77,"Perris","California","Eligible",5,"Freshman",92,91,90,84,65,72,75,61,41,64,59,56,70,88,45,44,82,62,93,79,32,30,66,52,78,43,77,45,43,44,29,74,42,84,83,57,55,66,0,41,64,89,75,52,66,31,32,33,35,35,34,91,52,75,"Big Ten","Penn State","Cornerback","Launch Ratings"
18986,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/13.png?im=FaceCrop,padding=0.7","Datrell","Jones",69,24,77,"Dorchester","Massachusetts","Previous",26,"Sophomore",94,91,89,90,59,62,70,44,29,73,73,59,70,88,50,37,46,34,84,87,34,42,88,32,65,62,77,48,44,43,47,60,34,41,42,41,30,31,0,74,69,92,81,60,42,16,28,37,18,32,25,85,54,55,"ACC","Boston College","Halfback","Launch Ratings"
24656,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/94.png?im=FaceCrop,padding=0.7","Daune","Morris",70,35,77,"Murfreesboro","Tennessee","Eligible",19,"Freshman",90,87,85,83,63,64,84,32,46,75,78,65,70,85,52,38,43,52,90,83,28,40,77,36,34,63,77,56,54,51,29,45,32,33,45,45,31,33,0,67,66,87,78,60,44,35,33,12,33,30,45,87,63,33,"SEC","Tennessee","Halfback","Launch Ratings"
3960,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/82.png?im=FaceCrop,padding=0.7","Daveon","Hook",71,24,77,"Cibolo","Texas","Eligible",29,"Senior",90,87,90,93,65,83,60,60,31,29,37,22,61,86,36,30,75,50,91,59,26,30,51,55,68,37,77,57,59,54,34,83,29,65,85,47,52,58,0,35,38,88,59,37,65,24,37,12,27,37,30,84,54,72,"The American","Rice","Strong Safety","Launch Ratings"
22564,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/117.png?im=FaceCrop,padding=0.7","David","Wohlabaugh Jr.",78,141,77,"Stow","Ohio","Previous",63,"Senior",71,63,72,84,87,86,39,53,41,40,54,29,35,55,30,37,58,86,89,29,36,43,31,84,32,31,77,78,79,77,24,40,55,29,35,82,84,79,0,31,35,62,33,41,42,33,37,27,36,25,35,85,43,35,"ACC","Virginia","Right Tackle","Launch Ratings"
25514,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/37.png?im=FaceCrop,padding=0.7","Davin","Stoffel",78,100,77,"Mosinee","Wisconsin","Previous",88,"Sophomore",81,75,83,83,78,76,72,57,25,65,79,79,77,72,62,55,67,70,91,75,43,45,56,73,33,67,77,66,65,59,28,37,64,39,61,71,67,67,0,72,81,75,72,74,65,13,31,16,28,13,26,92,75,34,"Big Ten","Illinois","Tight End","Launch Ratings"
2377,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Daymion","Sanford",74,70,77,"Katy","Texas","Eligible",27,"Junior",87,83,85,86,77,84,41,71,36,38,55,38,56,80,41,60,83,66,83,41,36,36,43,54,65,41,77,65,60,53,36,84,72,35,84,57,52,64,0,41,41,82,41,38,77,24,24,24,24,24,36,89,38,78,"SEC","Texas A&M","Mike Backer","Launch Ratings"
21223,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/58.png?im=FaceCrop,padding=0.7","DeAgo","Brumfield",72,30,77,"Cincinnati","Ohio","Previous",4,"Senior",89,86,85,93,65,85,42,54,43,44,41,30,56,84,22,28,68,49,81,51,48,42,48,54,80,24,77,65,61,56,48,86,39,76,72,59,55,66,0,24,25,86,55,55,58,32,24,34,31,16,25,87,44,75,"SEC","Mississippi State","Cornerback","Launch Ratings"
18270,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Demello","Jones",73,25,77,"Swainsboro","Georgia","Eligible",15,"Sophomore",94,92,91,90,59,73,57,51,38,39,52,45,70,89,34,48,67,51,84,62,25,41,57,56,75,35,77,61,58,52,47,74,40,82,73,55,55,64,0,35,44,90,62,48,63,37,17,11,12,18,33,84,39,70,"SEC","Georgia","Cornerback","Launch Ratings"
20727,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/91.png?im=FaceCrop,padding=0.7","Denis","Jaquez Jr.",76,99,77,"Pennsauken","New Jersey","Eligible",11,"Senior",82,73,78,82,77,82,35,67,29,35,53,33,36,63,33,71,82,64,86,33,45,42,35,34,36,34,77,47,47,42,32,78,84,40,83,37,43,47,0,34,35,74,34,36,83,24,18,26,25,20,25,84,35,44,"ACC","Syracuse","Left Edge","Launch Ratings"
24685,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Deondrae","Riden",71,50,77,"DeSoto","Texas","Eligible",26,"Freshman",90,88,84,80,68,64,79,49,46,76,81,60,65,86,55,41,55,55,90,85,33,35,78,45,56,61,77,60,60,56,33,40,42,36,52,47,32,35,0,64,66,87,80,70,45,32,33,35,46,43,35,84,67,43,"SEC","Texas A&M","Halfback","Launch Ratings"
21226,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/19.png?im=FaceCrop,padding=0.7","Deondre","Buford",76,165,77,"Detroit","Michigan","Previous",56,"Senior",66,53,72,83,90,84,41,51,30,38,56,31,31,50,35,35,55,86,90,30,40,30,30,84,31,29,77,76,72,80,40,39,52,30,32,78,79,78,0,34,30,55,33,41,39,11,35,31,11,29,43,89,38,34,"Big 12","Cincinnati","Left Guard","Launch Ratings"
133,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/58.png?im=FaceCrop,padding=0.7","Deonte","Anderson",75,120,77,"Miami","Florida","Previous",6,"Senior",83,73,82,83,84,82,42,79,29,39,56,35,39,64,35,71,83,74,86,35,26,46,40,46,32,35,77,53,52,44,48,79,82,37,81,43,45,55,0,35,35,74,35,39,76,14,25,27,21,28,33,86,41,50,"SEC","Mississippi State","Left Edge","Launch Ratings"
19442,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/101.png?im=FaceCrop,padding=0.7","Derrick","Shepard Jr.",75,150,77,"Dayton","Ohio","Previous",94,"Sophomore",74,62,72,85,89,79,26,81,48,42,51,27,30,55,26,62,79,77,91,26,37,43,36,55,22,25,77,68,61,53,39,77,77,28,78,55,54,63,0,24,23,64,27,42,83,15,11,26,34,28,47,95,39,21,"The American","Tulane","Defensive Tackle","Launch Ratings"
23921,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/113.png?im=FaceCrop,padding=0.7","Derrick","Jameson",72,50,77,"Maple Grove","Minnesota","Eligible",22,"Junior",86,76,77,84,78,78,77,51,29,76,86,49,64,75,35,44,68,53,88,77,46,32,69,48,26,42,77,62,54,62,45,42,45,32,63,53,40,42,0,48,44,83,73,85,59,30,20,24,18,17,29,90,87,25,"Mountain West","Utah State","Halfback","Launch Ratings"
29211,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/64.png?im=FaceCrop,padding=0.7","Deshaun","Buchanan",69,33,77,"Chandler","Arizona","Previous",8,"Sophomore",89,83,84,88,65,73,77,54,25,81,77,57,70,82,41,46,68,54,87,86,45,41,64,43,33,46,77,57,57,55,43,64,43,27,63,51,37,42,0,51,49,87,83,77,62,30,27,13,34,21,45,88,79,29,"Mountain West","New Mexico","Halfback","Launch Ratings"
5784,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/41.png?im=FaceCrop,padding=0.7","DeShawn","Hanika",78,85,77,"Topeka","Kansas","Previous",18,"Senior",87,78,85,87,72,83,69,57,38,71,63,84,79,71,61,53,47,58,75,54,44,26,49,54,40,67,77,60,55,51,39,41,54,22,53,67,58,60,0,76,84,77,54,72,53,26,21,15,36,31,32,90,64,41,"Big 12","Kansas","Tight End","Launch Ratings"
23978,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/9.png?im=FaceCrop,padding=0.7","Deuce","Knight",76,53,77,"Lucedale","Mississippi","Eligible",9,"Freshman",91,90,88,85,60,55,87,40,84,77,72,42,44,89,23,33,45,49,84,89,30,31,60,43,32,34,77,42,42,40,69,29,33,34,30,43,39,39,0,37,43,87,85,55,35,74,76,78,85,91,57,81,61,35,"SEC","Auburn","Quarterback","Launch Ratings"
22499,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/110.png?im=FaceCrop,padding=0.7","Devan","Thompkins",77,133,77,"Stockton","California","Previous",8,"Junior",85,73,79,84,81,82,38,75,47,34,54,33,36,67,33,77,81,69,88,33,37,27,40,38,51,33,77,46,45,42,25,84,84,38,83,38,41,45,0,33,33,75,33,36,78,33,16,30,15,19,27,85,54,55,"Big Ten","USC","Defensive Tackle","Launch Ratings"
20770,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/111.png?im=FaceCrop,padding=0.7","Devin","Lee",74,130,77,"McDonough","Georgia","Previous",99,"Senior",76,63,74,86,86,79,27,79,29,36,54,27,33,50,27,63,82,71,91,27,31,45,33,56,33,27,77,62,58,55,34,75,83,31,78,55,53,61,0,27,27,63,27,37,81,24,25,17,28,18,43,90,34,28,"The American","USF","Defensive Tackle","Launch Ratings"
1249,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/122.png?im=FaceCrop,padding=0.7","Devonte","Golden-Nelson",71,24,77,"Memphis","Tennessee","Previous",2,"Senior",94,92,89,89,59,70,67,50,39,38,58,44,70,92,41,39,74,49,83,80,40,38,65,55,77,45,77,61,55,47,31,74,43,77,76,57,55,64,0,41,42,90,76,47,64,26,12,39,10,36,26,90,38,79,"Big 12","West Virginia","Cornerback","Launch Ratings"
18462,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/11.png?im=FaceCrop,padding=0.7","Devonte","Tezino",77,134,77,"Killeen","Texas","Previous",59,"Junior",75,69,72,78,83,76,44,83,35,40,56,25,28,56,25,60,82,84,91,26,22,24,21,45,27,29,77,57,52,48,47,77,83,25,84,52,49,59,0,29,25,70,29,41,83,35,10,23,19,36,48,88,41,22,"Big 12","Baylor","Defensive Tackle","Launch Ratings"
24635,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/88.png?im=FaceCrop,padding=0.7","Donovan","Murph",74,28,77,"Columbia","South Carolina","Eligible",6,"Freshman",87,90,93,83,60,75,82,36,40,72,75,83,84,90,80,30,46,45,94,87,34,35,76,26,59,82,77,30,18,29,48,50,28,39,35,47,23,23,0,77,83,91,85,61,45,31,42,41,35,41,35,88,61,51,"SEC","South Carolina","Wide Receiver","Launch Ratings"
20516,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/112.png?im=FaceCrop,padding=0.7","Donovan","Saunders",76,27,77,"San Diego","California","Previous",4,"Junior",92,88,94,93,58,81,72,47,27,29,39,31,65,87,42,35,69,48,87,63,34,48,55,52,69,40,77,55,60,48,39,79,26,73,77,47,52,58,0,39,43,92,66,33,58,10,10,13,29,36,44,93,30,78,"Big 12","Utah","Cornerback","Launch Ratings"
4066,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/107.png?im=FaceCrop,padding=0.7","Dorian","Lewis",71,40,77,"Rio Rancho","New Mexico","Previous",28,"Senior",88,84,80,86,68,75,81,41,44,77,84,60,71,85,47,37,48,32,83,78,45,28,58,39,30,56,77,56,34,33,42,48,35,35,42,48,33,37,0,59,46,85,76,54,43,20,11,35,28,31,43,85,74,65,"Sun Belt","UL Monroe","Halfback","Launch Ratings"
14583,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/25.png?im=FaceCrop,padding=0.7","Dramarian","McNulty",70,28,77,"Brookhaven","Massachusetts","Eligible",7,"Senior",90,88,91,92,59,85,71,54,33,33,52,42,65,86,48,44,65,52,90,79,35,48,65,55,73,44,77,63,57,49,32,84,39,76,76,52,52,59,0,45,45,87,77,39,56,13,17,27,37,18,39,81,33,79,"MAC","Eastern Michigan","Cornerback","Launch Ratings"
5995,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/111.png?im=FaceCrop,padding=0.7","Dre","Butler",77,130,77,"Conyers","Georgia","Previous",91,"Senior",69,64,61,90,89,82,24,79,38,39,51,26,27,53,23,66,79,67,94,26,38,33,35,57,27,26,77,67,46,41,40,76,81,22,83,57,54,67,0,23,26,59,26,39,86,16,26,34,20,28,46,90,39,19,"The American","USF","Defensive Tackle","Launch Ratings"
9794,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/129.png?im=FaceCrop,padding=0.7","Dre","Pinckney",72,45,77,"Boiling Springs","South Carolina","Previous",9,"Senior",87,82,83,86,72,78,46,69,50,47,24,27,64,80,23,35,93,61,88,46,41,36,44,59,65,25,77,68,52,43,35,79,45,67,73,54,56,70,0,23,27,84,44,66,82,16,17,32,32,25,32,91,61,66,"Sun Belt","Coastal Carolina","Strong Safety","Launch Ratings"
30777,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/14.png?im=FaceCrop,padding=0.7","Drew","Pyne",72,40,77,"New Canaan","Connecticut","Previous",9,"Senior",85,82,79,88,65,84,85,30,64,73,77,27,34,82,48,47,31,42,87,81,38,25,31,38,24,31,77,26,35,44,72,27,30,25,25,33,32,24,0,47,30,83,77,65,27,74,82,84,83,87,71,85,58,25,"MAC","Bowling Green","Quarterback","Launch Ratings"
8599,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/57.png?im=FaceCrop,padding=0.7","Dylan","Ray",78,155,77,"Noblesville","Indiana","Previous",73,"Senior",66,57,63,83,88,80,39,53,42,39,52,28,27,51,25,31,57,88,91,29,42,27,25,80,30,27,77,74,66,82,30,35,56,28,31,81,79,83,0,24,26,54,24,41,41,29,28,24,12,38,40,86,40,28,"Big Ten","Minnesota","Right Tackle","Launch Ratings"
10727,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/13.png?im=FaceCrop,padding=0.7","Dylan","Lonergan",74,55,77,"Snellville","Georgia","Previous",9,"Sophomore",84,81,79,81,71,78,59,52,72,65,58,34,41,80,27,47,61,43,83,69,32,29,26,46,48,22,77,53,40,38,67,70,49,40,31,52,40,44,0,31,35,80,66,54,55,78,84,82,80,92,68,84,56,60,"ACC","Boston College","Quarterback","Launch Ratings"
30830,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/40.png?im=FaceCrop,padding=0.7","Dylan","Lee",73,55,77,"Gilbert","Arizona","Previous",2,"Freshman",90,84,85,83,75,73,76,50,43,76,85,67,68,84,42,41,60,48,86,81,44,47,67,38,38,55,77,55,51,57,39,49,41,36,57,46,34,35,0,57,57,89,73,72,56,20,23,30,26,35,42,82,71,59,"Big Ten","Iowa State","Halfback","Launch Ratings"
2584,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Dylan","Spencer",77,85,77,"Orange","Texas","Previous",85,"Sophomore",81,75,77,77,83,78,37,75,46,39,49,25,22,65,24,79,81,58,84,25,33,44,33,25,35,25,77,52,45,44,36,77,79,16,88,41,44,53,0,23,22,77,25,39,85,33,10,20,16,30,46,78,40,44,"Big 12","Texas Tech","Right Edge","Launch Ratings"
10546,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/34.png?im=FaceCrop,padding=0.7","E.J.","Lightsey",74,75,77,"Fitzgerald","Georgia","Previous",2,"Junior",89,81,87,85,69,82,41,70,46,25,57,26,56,79,43,64,77,61,84,54,24,34,43,53,67,37,77,59,59,52,31,80,57,40,85,50,49,55,0,43,42,83,55,48,79,21,31,16,32,21,31,85,46,74,"ACC","Georgia Tech","Will Backer","Launch Ratings"
21695,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/73.png?im=FaceCrop,padding=0.7","Eddy","Pierre-Louis",75,154,77,"Tampa","Florida","Eligible",55,"Sophomore",81,65,72,82,89,73,45,55,24,44,50,27,27,55,24,24,64,85,90,24,48,32,24,82,24,24,77,74,71,78,29,38,63,27,27,84,85,83,0,24,25,74,27,46,43,11,21,28,23,27,45,85,41,24,"SEC","Oklahoma","Right Guard","Launch Ratings"
8171,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/3.png?im=FaceCrop,padding=0.7","Edric","Hill",75,124,77,"Kansas City","Missouri","Previous",94,"Sophomore",77,65,73,84,88,70,27,81,30,37,56,27,36,49,27,70,77,72,93,27,24,29,34,57,39,27,77,64,63,56,48,72,80,34,80,55,54,65,0,27,27,63,27,37,86,27,33,14,23,18,42,89,37,28,"SEC","Alabama","Right Edge","Launch Ratings"
7479,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/122.png?im=FaceCrop,padding=0.7","Edward","Vesterinen",75,124,77,"Helsinki","Non-US","Previous",96,"Senior",77,61,74,85,83,83,24,76,41,30,52,27,28,53,28,73,77,69,86,26,27,34,31,57,36,25,77,60,60,51,25,84,81,30,87,54,52,57,0,28,28,69,24,33,86,13,15,25,30,35,31,93,34,29,"Big 12","West Virginia","Defensive Tackle","Launch Ratings"
21468,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Elijah","Hughes",75,140,77,"Arlington","Virginia","Previous",56,"Junior",81,73,78,76,86,73,47,77,39,46,58,33,46,66,33,67,83,76,87,33,29,25,44,49,29,33,77,65,60,55,48,75,85,35,79,58,56,68,0,33,33,73,33,45,82,17,24,37,19,20,47,84,46,44,"Independent","Notre Dame","Defensive Tackle","Launch Ratings"
23656,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/45.png?im=FaceCrop,padding=0.7","Elijah","Brown",78,98,77,"Dayton","Ohio","Previous",85,"Junior",87,81,86,92,79,76,72,61,26,71,78,78,81,77,59,58,74,69,86,70,25,28,66,61,47,67,77,66,63,64,48,51,58,30,58,68,64,64,0,71,79,79,64,70,61,12,10,31,45,34,26,90,73,54,"SEC","Kentucky","Tight End","Launch Ratings"
18719,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/120.png?im=FaceCrop,padding=0.7","Elinneus","Davis",74,155,77,"Moorhead","Minnesota","Previous",90,"Sophomore",69,61,67,81,92,76,24,77,27,49,59,24,24,51,24,56,82,87,92,24,27,41,35,58,15,24,77,68,65,54,36,78,84,23,74,60,54,68,0,24,24,60,24,46,84,32,16,36,11,35,47,90,48,21,"Big Ten","Washington","Defensive Tackle","Launch Ratings"
24851,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/57.png?im=FaceCrop,padding=0.7","Emmanuel","Karmo",74,65,77,"Minneapolis","Minnesota","Eligible",2,"Freshman",89,84,85,78,67,73,46,67,40,48,56,40,61,72,40,83,84,65,92,56,26,28,35,45,55,40,77,45,46,45,47,75,75,58,85,59,55,51,0,40,52,83,55,59,78,33,31,34,31,14,25,87,61,51,"Big Ten","Minnesota","Right Edge","Launch Ratings"
21146,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/24.png?im=FaceCrop,padding=0.7","Eric","Schon",74,145,77,"Hamburg","New York","Previous",61,"Junior",65,55,60,84,88,81,38,51,34,41,53,30,25,53,29,30,53,87,90,26,24,35,25,68,26,27,77,82,85,79,38,37,49,28,25,74,75,74,0,24,24,57,27,41,37,10,18,29,33,37,25,89,38,27,"ACC","Duke","Left Guard","Launch Ratings"
19064,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/34.png?im=FaceCrop,padding=0.7","Ethan","Mackenny",76,145,77,"Marietta","Georgia","Previous",78,"Sophomore",73,59,73,87,89,83,39,49,28,37,50,35,30,54,33,33,48,84,85,30,45,44,34,85,35,30,77,79,75,81,36,31,45,29,31,80,82,78,0,31,29,60,35,37,35,34,31,14,14,19,45,89,34,30,"ACC","Georgia Tech","Left Tackle","Launch Ratings"
22994,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/37.png?im=FaceCrop,padding=0.7","Ethan","Hampton",75,60,77,"Elburn","Illinois","Previous",10,"Senior",74,72,66,84,67,79,62,48,61,69,71,28,34,71,26,47,63,39,87,59,32,47,26,48,40,23,77,57,31,28,75,63,52,27,47,54,42,43,0,24,28,73,61,57,56,76,84,87,70,88,76,90,57,30,"Big Ten","Illinois","Quarterback","Launch Ratings"
25535,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/69.png?im=FaceCrop,padding=0.7","Evan","Beerntsen",76,140,77,"De Pere","Wisconsin","Previous",60,"Senior",71,62,73,84,88,83,27,32,27,28,54,40,45,57,43,52,29,87,95,40,34,43,25,79,43,40,77,74,69,78,26,33,31,39,44,82,82,82,0,43,43,64,41,25,25,15,16,25,36,36,32,88,26,44,"Big Ten","Northwestern","Right Guard","Launch Ratings"
7430,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/69.png?im=FaceCrop,padding=0.7","Evan","Smith",70,22,77,"Birmingham","Alabama","Previous",12,"Sophomore",94,91,90,92,58,77,60,48,38,37,54,34,60,89,41,28,67,49,81,79,30,31,60,55,78,38,77,63,58,51,46,79,38,74,77,53,54,62,0,44,40,90,75,39,55,34,13,23,28,35,47,86,36,73,"Big Ten","Northwestern","Cornerback","Launch Ratings"
23918,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/111.png?im=FaceCrop,padding=0.7","Evan","Dangler",75,90,77,"Bradenton","Florida","Eligible",47,"Senior",81,74,68,94,79,79,62,47,46,72,81,74,72,69,57,46,25,70,83,68,26,24,53,67,32,70,77,62,50,48,20,35,44,18,43,66,50,54,0,73,77,73,58,66,44,30,29,30,33,14,31,86,83,37,"The American","USF","Fullback","Launch Ratings"
3069,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/106.png?im=FaceCrop,padding=0.7","Fitzgerald","West Jr.",74,130,77,"Lafayette","Louisiana","Previous",68,"Junior",75,63,74,92,85,82,30,77,31,44,58,31,39,53,27,71,81,67,90,28,45,26,34,55,39,27,77,66,51,46,30,83,81,36,81,60,55,68,0,29,30,67,28,46,84,25,14,34,32,16,37,93,44,29,"Sun Belt","Louisiana","Right Edge","Launch Ratings"
7924,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/45.png?im=FaceCrop,padding=0.7","Fred","Farrier II",73,28,77,"Frankfort","Kentucky","Previous",13,"Senior",91,89,90,91,60,86,77,43,44,74,60,80,83,87,76,33,45,31,86,84,24,29,62,28,36,77,77,33,24,32,28,35,36,28,43,55,28,24,0,78,83,88,82,52,42,35,17,33,24,13,36,84,44,31,"SEC","Kentucky","Wide Receiver","Launch Ratings"
19038,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/33.png?im=FaceCrop,padding=0.7","Fuches","Lewis II",75,138,77,"Savannah","Georgia","Previous",56,"Senior",71,65,70,89,83,85,26,79,24,41,56,26,26,49,23,62,84,70,89,26,43,48,35,56,25,24,77,66,48,41,44,84,79,27,83,59,54,64,0,23,24,64,26,41,86,23,11,30,19,37,29,89,37,21,"Sun Belt","Georgia State","Defensive Tackle","Launch Ratings"
14574,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/119.png?im=FaceCrop,padding=0.7","Gabe","Kirschke",77,89,77,"Lone Tree","Colorado","Previous",10,"Junior",85,74,80,77,77,82,40,73,26,42,53,34,39,63,33,80,85,70,83,37,41,25,38,44,35,33,77,55,50,46,42,79,83,36,84,46,44,55,0,35,36,75,34,42,82,16,12,34,23,25,41,79,42,43,"ACC","Wake Forest","Right Edge","Launch Ratings"
18936,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/113.png?im=FaceCrop,padding=0.7","Gabriel","Iniguez Jr.",73,120,77,"Pittsburg","California","Previous",10,"Senior",76,64,72,92,83,88,26,83,36,41,51,24,32,61,27,69,81,79,93,27,27,40,35,58,26,25,77,64,66,62,42,88,84,28,81,61,56,65,0,24,28,69,25,42,73,36,20,22,27,12,43,85,42,22,"Mountain West","Utah State","Defensive Tackle","Launch Ratings"
9699,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/125.png?im=FaceCrop,padding=0.7","Geimere","Latimer II",70,31,77,"Fairburn","Georgia","Eligible",21,"Junior",89,89,87,91,61,76,60,48,43,41,55,38,66,88,37,26,68,53,83,66,36,25,59,57,81,36,77,65,62,55,35,76,39,74,71,59,55,66,0,37,33,92,65,48,52,32,10,28,10,37,32,84,42,79,"Big Ten","Wisconsin","Cornerback","Launch Ratings"
7398,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/28.png?im=FaceCrop,padding=0.7","Gemari","Sands",72,35,77,"Fort Lauderdale","Florida","Previous",23,"Sophomore",91,86,89,86,68,78,71,42,35,75,77,68,73,85,64,32,45,38,81,80,47,41,66,31,43,72,77,47,45,45,27,36,34,29,44,40,28,30,0,76,71,88,78,62,40,28,29,16,15,15,31,82,52,28,"The American","FAU","Halfback","Launch Ratings"
33128,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/116.png?im=FaceCrop,padding=0.7","Glenn","Seabrooks III",75,180,77,"Nashville","Tennessee","Eligible",53,"Sophomore",64,51,69,84,92,75,27,85,48,34,54,25,31,45,25,55,83,87,93,28,47,25,33,54,22,24,77,63,57,50,32,76,81,29,75,55,53,59,0,24,28,55,27,30,82,20,35,31,12,25,36,92,34,23,"SEC","Vanderbilt","Defensive Tackle","Launch Ratings"
4853,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/57.png?im=FaceCrop,padding=0.7","Greg","Johnson",78,160,77,"Prior Lake","Minnesota","Eligible",65,"Junior",72,57,69,86,92,83,48,58,35,47,53,29,25,55,25,30,69,87,90,29,25,42,26,84,24,24,77,79,76,82,46,37,63,29,24,76,80,72,0,25,24,64,24,49,47,36,16,25,33,11,27,90,47,26,"Big Ten","Minnesota","Left Guard","Launch Ratings"
20594,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/91.png?im=FaceCrop,padding=0.7","Greg","Delaine",72,14,77,"Fort Myers","Florida","Previous",32,"Junior",92,88,90,92,58,73,55,46,38,37,56,38,67,87,35,36,70,53,83,69,34,30,59,55,76,34,77,61,59,50,31,71,37,80,76,55,53,63,0,36,40,90,66,44,60,20,14,10,29,10,42,86,37,83,"ACC","Syracuse","Cornerback","Launch Ratings"
9831,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/53.png?im=FaceCrop,padding=0.7","Gregory","Smith Jr.",77,148,77,"Pittsburgh","Pennsylvania","Previous",74,"Sophomore",69,56,59,88,86,82,42,54,26,40,52,26,26,51,26,28,55,86,92,26,48,45,24,85,27,24,77,77,72,82,47,34,53,28,26,79,78,80,0,24,27,58,25,42,38,32,33,13,15,33,38,92,39,24,"MAC","Miami (Ohio)","Left Guard","Launch Ratings"
10423,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/81.png?im=FaceCrop,padding=0.7","Hank","Purvis",77,170,77,"Wichita","Kansas","Eligible",58,"Sophomore",65,49,68,82,90,81,47,59,47,48,53,26,27,45,24,32,68,85,85,28,28,24,29,83,30,25,77,76,70,81,26,46,65,28,29,77,74,80,0,30,30,54,28,45,47,13,13,14,29,19,32,88,46,30,"Big Ten","Purdue","Left Guard","Launch Ratings"
29428,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/136.png?im=FaceCrop,padding=0.7","Hasson","Manning Jr",71,25,77,"Newark","New Jersey","Eligible",3,"Junior",93,85,90,90,68,76,78,50,28,29,46,43,71,90,46,40,72,56,80,71,43,25,61,58,71,45,77,51,56,51,43,77,36,72,73,48,50,56,0,45,46,90,74,34,74,21,21,11,22,20,26,84,31,72,"Conference USA","Delaware","Free Safety","Launch Ratings"
2887,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/15.png?im=FaceCrop,padding=0.7","Henry","Tabansi",77,150,77,"Staten Island","New York","Previous",73,"Sophomore",71,60,70,87,88,85,35,45,45,35,56,33,34,53,33,38,48,86,83,32,33,43,34,81,33,29,77,79,75,82,38,34,47,34,32,77,75,79,0,34,35,61,33,37,39,18,11,15,18,35,41,85,35,33,"MAC","Buffalo","Left Tackle","Launch Ratings"
19856,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/9.png?im=FaceCrop,padding=0.7","Horatio","Fields",74,41,77,"Douglasville","Georgia","Eligible",5,"Senior",90,86,91,87,72,81,73,54,40,70,66,83,82,84,76,44,70,39,84,79,48,31,68,37,27,80,77,35,27,36,34,34,45,27,68,62,35,36,0,83,86,86,77,67,62,17,17,31,26,33,40,87,67,35,"SEC","Auburn","Wide Receiver","Launch Ratings"
23466,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/58.png?im=FaceCrop,padding=0.7","Hunter","Washington",71,40,77,"Katy","Texas","Previous",21,"Senior",93,88,91,88,64,77,71,55,38,38,60,35,67,86,40,34,79,58,88,64,28,35,61,54,73,38,77,62,59,55,44,77,46,80,75,49,54,63,0,41,42,90,63,46,66,19,26,31,14,21,39,88,46,73,"SEC","Mississippi State","Strong Safety","Launch Ratings"
22384,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/134.png?im=FaceCrop,padding=0.7","Hunter","Watson",75,50,77,"Celina","Texas","Previous",10,"Senior",85,83,77,92,72,79,85,48,80,75,75,23,32,83,25,48,59,44,91,82,47,35,25,44,34,25,77,42,38,39,75,49,52,27,33,41,35,42,0,23,23,85,80,66,50,75,79,81,83,87,64,93,71,49,"Conference USA","Sam Houston","Quarterback","Launch Ratings"
21345,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/102.png?im=FaceCrop,padding=0.7","Hunter","Erb",78,170,77,"Newark","Texas","Previous",60,"Junior",61,51,70,84,89,67,44,61,45,45,50,29,32,44,35,38,66,90,88,30,40,27,35,77,33,33,77,81,79,85,39,48,65,34,32,78,83,86,0,32,29,51,34,46,48,24,36,24,32,26,46,85,47,30,"The American","Tulsa","Right Tackle","Launch Ratings"
1233,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/6.png?im=FaceCrop,padding=0.7","Ian","Geffrard",77,229,77,"Mableton","Georgia","Previous",95,"Sophomore",62,61,58,80,94,76,24,80,46,46,58,24,25,32,24,45,82,90,84,24,32,32,37,65,26,24,77,73,72,70,25,79,88,20,76,71,70,90,0,24,24,43,24,47,78,11,27,10,25,14,38,84,44,17,"SEC","Arkansas","Defensive Tackle","Launch Ratings"
1387,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/118.png?im=FaceCrop,padding=0.7","Immanuel","Hickman Sr.",75,147,77,"Chesterfield","Virginia","Previous",97,"Senior",82,65,77,94,89,78,32,76,41,42,53,31,42,51,30,69,89,77,90,33,29,41,39,59,43,33,77,68,61,52,29,77,78,35,79,58,55,65,0,30,29,69,33,40,80,11,33,16,30,25,36,93,40,52,"ACC","Virginia Tech","Defensive Tackle","Launch Ratings"
3023,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/131.png?im=FaceCrop,padding=0.7","Isaac","Walker",74,75,77,"Greensboro","North Carolina","Previous",7,"Junior",84,77,80,90,74,88,23,73,44,23,50,39,45,72,40,80,79,57,81,39,40,38,36,26,61,42,77,28,24,24,25,85,74,44,83,12,26,29,0,40,41,75,41,23,80,19,34,18,14,12,44,89,24,59,"Conference USA","Jacksonville State","Left Edge","Launch Ratings"
8766,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Isaiah","Taylor",71,40,77,"Fort Lauderdale","Florida","Previous",28,"Senior",90,84,82,90,92,73,50,64,49,47,73,31,64,85,30,34,87,62,91,47,44,42,56,58,68,30,77,67,65,58,36,77,47,66,88,52,56,69,0,28,27,86,48,69,69,34,30,20,25,16,40,89,65,74,"ACC","Miami","Free Safety","Launch Ratings"
8426,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/4.png?im=FaceCrop,padding=0.7","Ise","Matautia",74,194,77,"Carson","California","Previous",50,"Senior",60,48,56,80,92,83,43,59,40,43,50,24,24,44,27,27,63,87,88,26,27,27,25,72,24,27,77,79,72,85,26,36,62,24,24,78,74,81,0,26,24,48,25,46,45,13,30,26,30,13,34,87,42,27,"Big 12","Arizona","Center","Launch Ratings"
21188,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/122.png?im=FaceCrop,padding=0.7","Israel","Boyce",71,30,77,"Douglasville","Georgia","Eligible",7,"Sophomore",93,90,89,86,58,72,57,51,36,37,55,38,61,88,36,36,72,54,77,65,48,31,55,54,74,34,77,60,61,54,30,75,43,72,79,56,53,62,0,37,39,91,64,40,68,30,11,26,34,33,30,80,36,77,"Big 12","West Virginia","Strong Safety","Launch Ratings"
20273,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/103.png?im=FaceCrop,padding=0.7","Iverson","Hooks",70,15,77,"Pike Road","Alabama","Previous",0,"Sophomore",91,89,87,94,54,83,77,35,42,75,66,74,82,88,77,29,33,33,73,87,35,40,87,37,54,80,77,28,17,27,37,39,26,31,32,51,25,24,0,83,78,90,80,34,32,21,35,36,35,33,40,87,59,24,"The American","UAB","Wide Receiver","Launch Ratings"
7620,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/87.png?im=FaceCrop,padding=0.7","Iverson","Celestine",70,64,77,"Mandeville","Louisiana","Previous",23,"Senior",89,86,84,89,70,74,81,44,39,76,77,66,70,84,50,39,52,48,92,83,39,37,79,39,51,55,77,59,56,53,28,56,36,39,47,45,34,36,0,61,59,87,79,65,48,10,32,17,23,18,43,88,69,60,"Sun Belt","South Alabama","Halfback","Launch Ratings"
1774,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/9.png?im=FaceCrop,padding=0.7","Izavion","Miller",77,151,77,"Memphis","Tennessee","Eligible",72,"Senior",81,77,78,86,84,79,34,43,40,32,60,44,41,60,43,48,39,88,88,41,46,51,40,88,43,41,77,82,84,80,37,38,40,39,47,73,75,71,0,41,41,64,45,32,35,13,28,25,37,27,37,90,34,39,"SEC","Auburn","Left Tackle","Launch Ratings"
23310,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/110.png?im=FaceCrop,padding=0.7","J'Onre","Reed",75,162,77,"Houston","Texas","Previous",50,"Senior",66,65,67,82,89,82,27,53,26,43,54,27,25,62,25,29,57,85,88,28,46,34,41,74,30,31,77,80,75,86,43,41,54,30,27,76,78,81,0,27,29,54,25,42,45,33,27,24,13,26,27,83,43,22,"Big Ten","USC","Center","Launch Ratings"
21543,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/26.png?im=FaceCrop,padding=0.7","J.D.","Lampley",75,110,77,"Rockingham","North Carolina","Eligible",9,"Senior",83,73,75,84,79,84,36,77,29,38,55,32,32,69,31,76,80,64,90,32,35,38,36,34,46,29,77,52,49,45,33,83,85,29,85,42,42,51,0,33,30,73,31,36,79,29,13,24,15,18,44,87,36,63,"The American","East Carolina","Left Edge","Launch Ratings"
20131,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/45.png?im=FaceCrop,padding=0.7","J.J.","Hester",77,43,77,"Tulsa","Oklahoma","Previous",4,"Senior",87,89,92,85,66,83,76,49,32,67,62,77,85,84,76,37,59,39,85,76,28,37,69,33,52,76,77,32,19,31,45,58,40,40,56,38,29,28,0,81,89,92,74,49,49,30,30,34,26,32,45,82,31,62,"SEC","Kentucky","Wide Receiver","Launch Ratings"
1802,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/117.png?im=FaceCrop,padding=0.7","Ja'Maric","Morris",74,45,77,"Timmonsville","South Carolina","Previous",7,"Junior",93,88,89,87,74,68,51,52,51,49,66,46,62,85,33,42,76,57,94,67,35,42,60,57,78,32,77,68,60,54,43,78,50,71,76,63,57,69,0,31,41,90,60,58,77,25,29,17,25,11,47,92,47,69,"ACC","Virginia","Cornerback","Launch Ratings"
4560,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/85.png?im=FaceCrop,padding=0.7","Jabari","Bates",67,19,77,"Compton","California","Previous",6,"Junior",92,89,87,87,61,75,73,33,30,75,73,64,67,87,64,23,26,26,79,83,34,27,86,27,49,69,77,53,17,26,43,49,26,36,26,39,25,30,0,67,50,91,75,45,25,18,22,23,12,22,46,89,53,29,"Mountain West","San Jose State","Halfback","Launch Ratings"
22783,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/104.png?im=FaceCrop,padding=0.7","Jabari","Brooks",75,175,77,"Sandersville","Georgia","Previous",62,"Senior",62,51,58,80,92,83,48,61,35,49,50,25,25,44,24,28,68,82,92,24,45,46,27,73,24,27,77,83,82,82,24,46,69,24,24,77,76,79,0,24,24,50,24,48,48,28,34,11,32,34,44,87,47,26,"Big 12","UCF","Left Guard","Launch Ratings"
24812,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/55.png?im=FaceCrop,padding=0.7","Jace","Clarizio",70,31,77,"East Lansing","Michigan","Eligible",25,"Freshman",90,87,89,80,67,69,82,31,39,75,77,51,65,85,49,31,43,53,88,83,39,36,74,44,30,60,77,55,57,52,39,42,38,29,31,47,43,44,0,63,57,88,79,68,34,22,10,14,20,36,38,87,66,36,"Big Ten","Michigan State","Halfback","Launch Ratings"
23676,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/69.png?im=FaceCrop,padding=0.7","Jack","Olsen",70,28,77,"Wheaton","Illinois","Previous",82,"Junior",67,72,58,88,51,72,45,34,40,27,58,45,28,65,35,30,32,47,79,46,83,86,36,38,26,35,77,37,29,47,38,40,34,26,41,32,44,46,0,31,27,70,29,44,31,27,26,29,19,37,38,75,26,32,"Big Ten","Northwestern","Kicker","Launch Ratings"
31303,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/111.png?im=FaceCrop,padding=0.7","Jack","Wilty",76,161,77,"Altoona","Iowa","Previous",78,"Senior",67,56,59,82,89,89,44,58,34,44,50,24,24,49,26,24,63,85,92,24,33,41,25,80,24,26,77,76,71,82,45,41,61,25,24,77,79,75,0,24,24,57,25,43,45,22,24,30,14,17,32,90,44,24,"The American","USF","Left Guard","Launch Ratings"
7112,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/82.png?im=FaceCrop,padding=0.7","Jack","Kane",70,21,77,"Long Beach","California","Previous",27,"Senior",88,86,83,90,64,83,54,48,30,31,52,24,61,82,32,36,75,46,87,54,48,39,49,56,66,34,77,53,57,49,46,82,35,68,80,47,53,60,0,30,29,86,52,37,65,28,18,36,15,33,44,87,36,77,"The American","Rice","Strong Safety","Launch Ratings"
9298,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Jack","Burgess",75,55,77,"Bacchus Marsh","Non-US","Previous",41,"Senior",69,60,73,83,65,64,39,34,45,38,51,33,41,61,39,35,35,47,87,41,82,92,36,36,27,39,77,35,47,38,26,33,32,33,26,24,27,32,0,27,27,65,29,47,45,13,24,33,22,22,24,81,46,34,"Big 12","Texas Tech","Punter","Launch Ratings"
20767,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/8.png?im=FaceCrop,padding=0.7","Jack","Latore",77,115,77,"Middletown","New Jersey","Eligible",92,"Senior",77,67,72,76,81,85,38,77,28,42,51,24,26,63,27,67,83,81,93,26,35,39,37,38,25,26,77,54,50,46,44,83,80,26,84,45,43,54,0,27,23,71,24,40,84,35,10,26,24,13,41,89,38,32,"The American","Army","Left Edge","Launch Ratings"
10312,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/133.png?im=FaceCrop,padding=0.7","Jack","Tucker",79,150,77,"Argyle","Texas","Previous",75,"Senior",67,54,73,90,87,83,34,43,36,36,53,35,30,51,32,34,45,85,87,33,30,43,35,84,30,30,77,82,77,85,39,38,45,34,36,79,80,77,0,35,32,59,32,36,34,11,31,34,35,18,40,87,35,34,"Conference USA","Liberty","Left Tackle","Launch Ratings"
363,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/67.png?im=FaceCrop,padding=0.7","Jackson","Lataimua",71,37,77,"San Bruno","California","Previous",13,"Senior",87,85,84,91,66,81,45,62,44,45,63,37,68,83,26,34,75,48,88,49,48,28,51,54,68,24,77,65,50,42,30,80,46,73,84,60,55,69,0,22,25,85,53,52,73,19,36,34,32,15,24,93,44,76,"The American","North Texas","Strong Safety","Launch Ratings"
18359,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/120.png?im=FaceCrop,padding=0.7","Jacob","Lane",77,100,77,"Puyallup","Washington","Eligible",48,"Junior",82,74,80,78,90,79,50,72,24,47,59,31,37,61,31,76,78,66,82,31,40,37,40,37,33,31,77,70,62,56,48,81,80,37,80,59,58,71,0,31,31,74,31,49,81,37,11,12,15,10,28,78,47,43,"Big Ten","Washington","Right Edge","Launch Ratings"
31394,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/49.png?im=FaceCrop,padding=0.7","Jadarius","Green-McKnight",71,38,77,"Fort Myers","Florida","Previous",4,"Senior",87,84,88,89,65,78,54,66,46,45,68,38,65,82,30,41,82,59,93,47,45,48,57,55,75,28,77,66,61,55,31,77,42,73,83,50,55,68,0,28,32,86,48,62,73,21,13,14,35,39,41,90,57,76,"Sun Belt","Marshall","Strong Safety","Launch Ratings"
14780,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/106.png?im=FaceCrop,padding=0.7","Jaden","Dugger",77,79,77,"Pittsburgh","Pennsylvania","Previous",3,"Senior",88,81,83,87,74,85,51,63,46,43,66,38,66,79,26,48,78,53,91,46,30,27,52,57,66,27,77,62,50,43,45,84,40,70,83,48,54,67,0,25,34,85,48,55,74,27,27,15,30,11,38,87,53,75,"Sun Belt","Louisiana","Will Backer","Launch Ratings"
31586,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","JaDon","Blair",77,45,77,"Winston-Salem","North Carolina","Eligible",11,"Freshman",92,88,86,91,66,77,66,56,38,38,62,57,73,89,40,38,72,54,90,61,40,45,60,54,71,42,77,58,56,49,24,66,45,67,74,49,53,64,0,38,54,92,64,49,71,37,31,35,21,32,32,90,49,77,"Independent","Notre Dame","Free Safety","Launch Ratings"
23093,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/109.png?im=FaceCrop,padding=0.7","Jaheem","Joseph",70,40,77,"Miami","Florida","Previous",3,"Junior",88,86,82,91,61,82,54,62,33,31,49,30,65,83,31,29,83,49,89,51,34,48,48,55,68,31,77,55,61,53,40,78,40,74,82,48,52,58,0,29,33,86,48,35,73,24,27,11,35,13,31,94,35,74,"Mountain West","UNLV","Strong Safety","Launch Ratings"
19309,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/78.png?im=FaceCrop,padding=0.7","Jaheim","Patterson",76,50,77,"Fort Worth","Texas","Eligible",6,"Junior",86,84,85,85,72,81,50,62,44,43,27,45,66,81,29,41,81,62,87,46,41,41,45,59,73,29,77,63,61,54,37,80,42,75,83,52,55,66,0,29,36,85,46,57,74,22,12,23,16,22,24,85,56,71,"Pac-12","Oregon State","Free Safety","Launch Ratings"
10685,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Jahiem","Lawson",74,90,77,"Central","South Carolina","Previous",15,"Junior",87,78,83,83,76,79,31,72,45,29,57,39,39,71,39,78,86,65,87,56,46,26,36,35,38,40,77,36,31,32,36,80,84,43,86,20,29,35,0,39,39,83,55,44,77,28,22,21,16,17,27,84,31,44,"ACC","Clemson","Right Edge","Launch Ratings"
23777,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/78.png?im=FaceCrop,padding=0.7","Jake","Reichle",73,66,77,"Lake Oswego","Oregon","Previous",34,"Junior",86,76,74,84,80,84,76,51,29,77,86,49,65,75,35,44,68,53,88,71,46,32,64,48,26,42,77,62,54,62,45,42,45,32,63,53,40,42,0,48,44,82,67,84,59,30,20,24,18,17,29,92,86,25,"Pac-12","Oregon State","Halfback","Launch Ratings"
20323,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/109.png?im=FaceCrop,padding=0.7","Jake","Pope",73,40,77,"Buford","Georgia","Previous",7,"Junior",87,83,87,87,65,78,59,60,33,34,54,47,71,81,32,44,85,56,88,55,30,34,54,55,69,31,77,55,57,50,46,76,47,75,83,49,53,62,0,31,41,85,56,45,78,26,17,35,15,10,24,86,42,73,"Mountain West","UNLV","Strong Safety","Launch Ratings"
10688,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/109.png?im=FaceCrop,padding=0.7","Jalen","Lee",75,140,77,"Watson","Louisiana","Previous",92,"Senior",75,62,75,87,87,86,26,78,36,46,58,26,30,54,26,68,85,82,98,26,28,39,33,58,32,26,77,67,62,53,38,84,82,26,81,60,54,69,0,26,26,65,26,45,78,23,27,26,37,29,39,96,44,27,"Mountain West","UNLV","Defensive Tackle","Launch Ratings"
30544,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/22.png?im=FaceCrop,padding=0.7","Jalen","Dupree",72,50,77,"Benton","Arkansas","Previous",2,"Freshman",88,81,82,85,77,71,79,50,34,78,83,49,55,80,41,41,59,62,89,79,33,33,70,54,36,51,77,61,56,55,47,46,41,34,52,59,56,55,0,55,49,85,75,82,52,20,34,32,30,32,39,92,84,34,"Mountain West","Colorado State","Halfback","Launch Ratings"
10077,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/36.png?im=FaceCrop,padding=0.7","Jalen","Garner",73,65,77,"Norcross","Georgia","Previous",36,"Senior",87,82,83,85,67,82,40,65,31,31,49,40,66,77,32,51,79,65,87,46,43,33,41,39,66,33,77,39,36,36,26,83,58,31,83,25,32,37,0,31,32,83,40,32,84,21,17,35,27,24,34,91,32,75,"Big 12","Houston","Mike Backer","Launch Ratings"
9460,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/110.png?im=FaceCrop,padding=0.7","Jamaal","Jarrett",77,189,77,"Greensboro","North Carolina","Previous",0,"Sophomore",71,59,66,73,94,64,24,86,28,48,50,24,25,41,24,63,83,82,94,24,24,30,35,58,25,24,77,69,64,54,25,76,80,19,71,63,57,68,0,24,24,56,24,49,83,35,23,25,24,30,38,85,45,15,"Big Ten","USC","Defensive Tackle","Launch Ratings"
21392,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/50.png?im=FaceCrop,padding=0.7","Jamare","Glasker",73,25,77,"Temple Hills","Maryland","Previous",14,"Junior",91,86,87,90,60,78,53,47,37,35,54,33,64,87,31,34,60,43,77,57,35,25,53,53,75,29,77,63,57,50,40,79,33,76,81,55,54,62,0,28,37,89,59,43,66,37,18,23,31,37,48,84,35,80,"Big Ten","Maryland","Cornerback","Launch Ratings"
24889,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/62.png?im=FaceCrop,padding=0.7","Jamarion","Parker",71,15,77,"St. Louis","Missouri","Eligible",24,"Freshman",90,89,88,80,58,59,78,33,27,73,75,69,70,89,57,32,42,51,90,87,20,30,83,41,45,64,77,54,52,48,25,44,32,33,38,50,45,45,0,68,73,92,83,58,36,19,19,35,16,26,40,79,55,49,"Big Ten","Nebraska","Halfback","Launch Ratings"
20601,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/81.png?im=FaceCrop,padding=0.7","Jamarius","Dinkins",77,140,77,"Columbus","Ohio","Previous",55,"Senior",74,67,72,80,92,79,49,75,35,46,59,27,28,54,27,58,82,75,92,27,25,44,44,48,26,27,77,71,64,55,31,81,84,27,75,62,56,71,0,27,27,68,27,47,78,18,13,37,28,14,47,88,47,25,"Big Ten","Purdue","Defensive Tackle","Launch Ratings"
8076,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/81.png?im=FaceCrop,padding=0.7","Jamarrion","Harkless",75,180,77,"Lexington","Kentucky","Previous",97,"Sophomore",69,57,68,76,93,70,47,89,30,49,50,24,26,47,24,51,80,71,97,24,30,29,37,43,19,24,77,69,60,54,35,70,78,15,74,61,56,70,0,24,24,55,24,49,83,18,34,17,32,24,40,89,46,16,"Big Ten","Purdue","Defensive Tackle","Launch Ratings"
6101,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/57.png?im=FaceCrop,padding=0.7","Jameson","Geers",77,95,77,"Channahon","Illinois","Previous",86,"Senior",77,74,75,92,82,85,55,64,28,68,75,77,80,70,53,63,59,66,88,56,45,42,49,66,24,60,77,71,61,67,45,26,60,11,62,70,66,65,0,65,79,73,50,75,65,26,30,23,47,16,30,93,72,27,"Big Ten","Minnesota","Tight End","Launch Ratings"
20858,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/40.png?im=FaceCrop,padding=0.7","Jamison","Patton",74,50,77,"Des Moines","Iowa","Eligible",2,"Junior",89,85,89,90,75,77,57,65,48,48,70,34,75,83,36,42,87,66,92,57,44,25,62,56,63,32,77,66,60,54,47,75,44,79,82,51,56,68,0,32,38,86,56,63,75,31,24,32,18,20,39,91,61,72,"Big Ten","Iowa State","Free Safety","Launch Ratings"
1148,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/45.png?im=FaceCrop,padding=0.7","Jantzen","Dunn",72,25,77,"Bowling Green","Kentucky","Eligible",10,"Senior",91,87,86,90,57,76,49,49,33,35,47,46,70,88,32,38,67,49,83,62,40,47,52,54,79,30,77,60,61,51,38,74,41,78,71,55,52,60,0,28,41,89,59,38,65,10,14,37,35,33,39,84,36,77,"SEC","Kentucky","Cornerback","Launch Ratings"
20305,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/26.png?im=FaceCrop,padding=0.7","Jaquaize","Pettaway",72,34,77,"Houston","Texas","Eligible",12,"Junior",95,91,93,85,62,78,80,49,40,67,70,76,80,90,78,41,62,36,76,83,38,28,92,31,53,82,77,28,17,29,27,49,40,36,57,35,25,26,0,84,84,92,80,46,53,36,14,19,29,36,45,79,41,24,"The American","East Carolina","Wide Receiver","Launch Ratings"
23687,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Jared","Zirkel",75,45,77,"Kerrville","Texas","Previous",99,"Senior",76,64,64,87,48,70,48,40,42,26,56,29,39,64,47,31,42,48,82,32,72,94,45,43,29,44,77,43,29,32,41,31,40,28,26,29,25,41,0,48,38,73,47,28,35,30,31,25,15,33,39,86,46,46,"SEC","Texas A&M","Kicker","Launch Ratings"
20243,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Jason","Moore",78,145,77,"Ft. Washington","Maryland","Previous",94,"Junior",85,77,83,86,82,73,43,73,48,25,57,43,46,71,43,86,74,70,94,43,24,43,45,56,47,43,77,58,59,49,37,74,70,46,82,50,50,56,0,43,43,77,43,27,87,30,37,16,28,21,35,91,26,47,"Big Ten","Ohio State","Defensive Tackle","Launch Ratings"
5700,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","Jason","Zandamela",75,159,77,"Clearwater","Florida","Previous",50,"Freshman",82,78,80,87,83,75,43,40,35,33,53,45,47,59,43,55,41,83,79,46,37,42,28,84,22,47,77,81,82,80,29,36,39,21,43,81,84,79,0,45,46,70,42,31,34,30,37,27,12,19,25,87,30,23,"SEC","Florida","Center","Launch Ratings"
23502,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/5.png?im=FaceCrop,padding=0.7","Jason","Brown Jr.",70,45,77,"Seattle","Washington","Previous",22,"Freshman",92,84,82,85,73,66,77,49,43,82,83,60,63,85,44,39,57,50,82,75,29,44,73,45,38,46,77,56,48,55,37,50,41,36,53,50,36,41,0,53,49,88,71,85,50,18,25,14,33,28,41,86,85,61,"Big 12","Arizona State","Halfback","Launch Ratings"
18828,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/88.png?im=FaceCrop,padding=0.7","Jatius","Geer",78,90,77,"Anderson","South Carolina","Previous",12,"Senior",81,75,78,81,84,82,36,65,46,38,54,35,39,67,35,65,84,67,88,35,39,24,41,38,35,35,77,49,46,44,31,79,80,36,80,40,40,49,0,35,35,75,35,36,85,26,13,29,34,16,30,85,38,39,"SEC","South Carolina","Right Edge","Launch Ratings"
20715,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/88.png?im=FaceCrop,padding=0.7","Jawarn","Howell",73,65,77,"Mooresville","North Carolina","Previous",22,"Sophomore",87,81,76,85,78,76,74,55,40,76,84,55,62,79,51,46,65,49,91,80,55,47,59,40,24,55,77,54,51,54,43,34,44,29,63,46,34,36,0,62,57,86,73,80,57,11,19,31,29,26,40,91,83,23,"SEC","South Carolina","Halfback","Launch Ratings"
20609,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/131.png?im=FaceCrop,padding=0.7","Jawaun","Campbell",71,107,77,"DeFuniak Springs","Florida","Eligible",93,"Sophomore",83,74,72,86,79,77,28,77,26,34,52,27,39,67,27,67,84,73,87,31,40,46,37,56,41,31,77,62,62,55,48,78,84,31,83,56,53,64,0,27,27,76,29,34,82,15,27,29,36,25,47,90,38,25,"Conference USA","Jacksonville State","Left Edge","Launch Ratings"
32946,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/119.png?im=FaceCrop,padding=0.7","Jaxon","Mull",70,20,77,"Fort Wayne","Indiana","Previous",12,"Junior",91,88,89,81,57,78,62,54,34,70,52,48,63,86,31,28,66,44,89,73,45,41,66,34,77,31,77,60,50,44,34,80,31,75,83,54,51,60,0,36,45,88,68,36,68,15,22,16,10,23,32,77,32,76,"ACC","Wake Forest","Cornerback","Launch Ratings"
8196,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/57.png?im=FaceCrop,padding=0.7","Jaxon","Howard",76,85,77,"Crystal","Minnesota","Previous",1,"Sophomore",87,76,84,76,83,70,46,70,40,48,56,40,46,68,40,85,82,73,84,40,45,28,45,45,40,40,77,71,62,56,47,76,80,44,81,59,56,69,0,40,40,79,40,48,80,33,31,34,31,14,25,80,50,49,"Big Ten","Minnesota","Right Edge","Launch Ratings"
7315,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/107.png?im=FaceCrop,padding=0.7","Jay","Mickle",74,140,77,"Picayune","Mississippi","Previous",56,"Senior",68,61,66,86,82,82,30,45,30,38,55,27,25,53,29,26,49,85,87,26,39,36,24,74,30,25,77,82,79,84,40,34,46,26,29,73,74,72,0,26,28,60,24,38,38,34,15,11,14,27,37,84,37,20,"Sun Belt","UL Monroe","Right Guard","Launch Ratings"
4619,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/61.png?im=FaceCrop,padding=0.7","Jayden","Scott",70,54,77,"Stockbridge","Georgia","Previous",4,"Freshman",92,84,85,81,76,76,76,52,43,75,79,71,68,84,43,42,60,55,88,78,33,37,83,46,48,57,77,59,58,56,45,47,40,35,57,52,41,41,0,61,60,89,74,79,57,19,21,22,33,17,34,86,82,45,"ACC","NC State","Halfback","Launch Ratings"
19848,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Jayden","Cofield",74,155,77,"Austin","Texas","Previous",51,"Sophomore",72,60,69,75,90,76,27,84,38,40,50,26,32,51,24,60,83,88,90,27,26,33,36,57,31,24,77,67,62,56,28,75,77,25,75,56,54,65,0,26,26,64,24,41,83,30,13,26,27,31,48,95,39,21,"Big 12","Texas Tech","Defensive Tackle","Launch Ratings"
20952,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/42.png?im=FaceCrop,padding=0.7","Jayden","Rowe",73,67,77,"Tulsa","Oklahoma","Previous",1,"Junior",96,94,94,86,76,71,73,55,47,47,68,49,66,95,47,47,81,60,94,84,37,35,73,56,74,50,77,67,62,53,26,59,47,74,82,63,57,69,0,49,49,97,77,56,65,20,16,23,32,10,33,92,46,66,"Big 12","Kansas State","Cornerback","Launch Ratings"
22637,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/119.png?im=FaceCrop,padding=0.7","Jayden","Loving",74,157,77,"Hamilton","Alabama","Previous",8,"Senior",73,58,68,76,89,82,47,76,47,47,57,24,22,51,22,68,79,65,99,22,38,36,39,39,24,26,77,66,59,53,42,81,82,14,86,56,51,67,0,23,26,62,26,47,82,13,13,26,21,15,35,87,48,20,"ACC","Wake Forest","Defensive Tackle","Launch Ratings"
24438,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/29.png?im=FaceCrop,padding=0.7","Jayden","Woods",75,80,77,"Shawnee","Kansas","Eligible",15,"Freshman",85,81,86,79,79,71,56,78,36,56,56,54,50,73,43,66,89,81,89,64,23,23,25,55,42,44,77,55,55,55,21,70,84,45,85,56,54,56,0,45,54,80,57,51,78,24,24,24,24,24,22,88,63,46,"SEC","Florida","Right Edge","Launch Ratings"
3459,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Jaydon","Chatman",76,146,77,"Harker Heights","Texas","Previous",75,"Sophomore",73,67,70,82,87,74,40,50,33,40,50,35,34,51,35,39,53,87,88,30,41,36,31,83,29,33,77,83,81,85,27,34,51,35,31,80,80,80,0,35,30,65,33,37,38,22,11,10,31,31,48,86,39,29,"SEC","Texas","Left Tackle","Launch Ratings"
768,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/13.png?im=FaceCrop,padding=0.7","Jaylen","Blackwell",73,66,77,"Atlanta","Georgia","Previous",8,"Senior",92,86,87,89,75,77,48,67,46,36,58,36,71,83,46,60,80,72,83,47,24,28,47,55,68,46,77,65,62,54,44,72,59,49,78,56,54,60,0,47,46,88,45,34,77,24,14,37,29,12,35,89,38,81,"ACC","Boston College","Sam Backer","Launch Ratings"
5730,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/59.png?im=FaceCrop,padding=0.7","Jaylen","Early",76,161,77,"Duncanville","Texas","Previous",61,"Senior",77,68,74,84,88,75,38,49,39,38,52,35,36,56,37,45,49,88,88,39,36,42,40,82,38,40,77,75,71,79,47,39,45,38,42,85,87,83,0,35,41,66,37,39,38,21,20,13,22,28,46,91,38,41,"SEC","Missouri","Left Tackle","Launch Ratings"
10723,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/74.png?im=FaceCrop,padding=0.7","Jaylen","Lloyd",70,20,77,"Omaha","Nebraska","Eligible",19,"Junior",97,93,93,93,54,75,75,31,43,58,62,77,79,91,80,26,28,23,76,86,24,36,93,23,72,77,77,35,24,34,26,72,27,46,29,44,20,19,0,74,82,95,85,33,31,25,22,36,30,23,44,82,33,71,"Big 12","Oklahoma State","Wide Receiver","Launch Ratings"
20213,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Jaylen","McClain",72,32,77,"Rahway","New Jersey","Eligible",18,"Sophomore",93,90,90,83,59,71,72,56,28,30,40,46,73,86,40,42,73,52,81,62,45,34,54,57,72,38,77,53,58,49,45,74,41,73,83,51,50,57,0,40,44,91,65,31,69,12,27,29,33,37,33,79,32,78,"Big Ten","Ohio State","Strong Safety","Launch Ratings"
19813,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/11.png?im=FaceCrop,padding=0.7","Jaylin","Jones",77,65,77,"Beaumont","Texas","Eligible",55,"Sophomore",88,79,84,90,65,79,24,59,30,25,59,47,57,75,47,83,78,65,74,48,31,35,40,33,51,48,77,27,28,27,37,77,66,47,84,14,25,26,0,49,46,81,46,25,81,33,23,14,15,20,46,84,25,57,"Big 12","Baylor","Left Edge","Launch Ratings"
18808,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/130.png?im=FaceCrop,padding=0.7","JC","French",73,40,77,"Roswell","Georgia","Previous",12,"Junior",82,80,74,89,64,82,79,39,64,71,66,25,40,79,24,39,47,31,90,79,38,43,23,37,30,25,77,43,20,23,62,36,40,44,55,35,33,32,0,26,24,78,75,55,45,71,82,84,83,88,78,90,58,46,"Sun Belt","Georgia Southern","Quarterback","Launch Ratings"
18741,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/102.png?im=FaceCrop,padding=0.7","JD","Drew",72,10,77,"Tulsa","Oklahoma","Previous",3,"Junior",91,91,88,90,49,79,69,52,25,24,42,41,75,89,45,39,55,42,78,75,32,28,56,53,72,47,77,57,49,42,41,77,34,70,83,47,50,54,0,44,45,90,73,28,70,22,35,25,13,31,31,88,26,71,"The American","Tulsa","Cornerback","Launch Ratings"
23321,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/36.png?im=FaceCrop,padding=0.7","JD","Rhym",74,30,77,"Valdosta","Georgia","Previous",3,"Junior",95,92,91,94,52,79,63,42,31,29,48,44,74,90,43,42,61,49,79,81,33,29,59,54,70,45,77,61,57,50,47,76,27,77,78,52,52,57,0,44,47,92,72,31,57,29,37,33,26,27,24,87,28,73,"Big 12","Houston","Cornerback","Launch Ratings"
31297,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/5.png?im=FaceCrop,padding=0.7","Jeff","Sims",75,55,77,"Jacksonville","Florida","Previous",2,"Senior",91,86,84,89,75,81,79,19,84,77,75,10,12,86,15,17,13,12,95,78,16,19,10,12,10,15,77,12,10,13,57,16,22,11,7,10,16,18,0,15,15,86,76,74,21,66,71,73,85,91,69,94,69,7,"Big 12","Arizona State","Quarterback","Launch Ratings"
29007,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/19.png?im=FaceCrop,padding=0.7","Jeff","Caldwell",77,55,77,"Louisville","Kentucky","Previous",9,"Senior",89,86,92,89,77,81,76,40,43,75,65,83,82,84,77,40,38,51,87,79,42,48,68,20,45,79,77,38,35,42,27,65,28,42,35,61,33,31,0,79,86,90,75,68,40,28,31,13,11,32,25,88,68,40,"Big 12","Cincinnati","Wide Receiver","Launch Ratings"
21090,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/25.png?im=FaceCrop,padding=0.7","Jefferson","Adam",75,90,77,"Ypsilanti","Michigan","Eligible",85,"Senior",82,77,77,84,76,83,38,68,29,39,53,33,39,72,31,82,77,63,87,31,27,43,38,39,41,31,77,49,37,36,39,83,76,34,83,39,41,53,0,33,35,77,34,38,84,22,12,19,25,22,44,86,37,45,"MAC","Eastern Michigan","Right Edge","Launch Ratings"
20867,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/39.png?im=FaceCrop,padding=0.7","Jeremiah","Pittman",74,125,77,"Palatine","Illinois","Previous",55,"Senior",79,66,77,89,85,82,28,83,42,32,51,28,32,55,28,68,81,71,89,28,44,24,32,56,35,28,77,62,61,52,40,83,80,30,81,51,53,58,0,28,28,69,28,33,78,14,31,31,21,17,44,92,30,31,"Big Ten","Iowa","Defensive Tackle","Launch Ratings"
24666,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Jerome","Myles",75,55,77,"Draper","Utah","Eligible",80,"Freshman",92,88,93,82,72,74,83,43,45,75,74,82,83,87,73,46,56,57,92,86,22,24,74,46,34,79,77,31,20,29,38,49,46,43,54,63,47,46,0,78,87,93,83,71,55,33,33,35,44,44,25,91,73,35,"SEC","Texas A&M","Wide Receiver","Launch Ratings"
5603,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/46.png?im=FaceCrop,padding=0.7","Jhamal","Shelby Jr.",75,30,77,"New Orleans","Louisiana","Previous",7,"Junior",90,86,88,90,64,83,49,51,42,44,61,37,65,85,29,43,66,49,88,59,38,39,56,56,76,29,77,64,61,52,26,80,43,79,75,59,54,67,0,30,37,86,59,50,63,20,15,29,35,18,45,88,42,82,"Conference USA","Louisiana Tech","Cornerback","Launch Ratings"
9301,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/101.png?im=FaceCrop,padding=0.7","Jimmy","Calloway",72,30,77,"Morrow","Georgia","Previous",4,"Senior",94,92,93,90,64,75,83,47,30,76,69,75,79,89,80,38,52,38,80,88,37,32,96,37,53,75,77,39,27,37,35,55,38,39,49,49,29,28,0,83,82,94,82,35,51,27,19,34,10,17,34,89,56,40,"The American","Tulane","Wide Receiver","Launch Ratings"
12102,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/14.png?im=FaceCrop,padding=0.7","John","Henderson",73,20,77,"Acton","California","Eligible",19,"Senior",64,53,56,83,35,65,39,20,19,23,40,20,39,51,14,18,18,11,87,33,88,87,24,7,33,16,77,15,7,7,21,36,19,21,28,25,9,9,0,20,16,59,34,24,27,44,45,55,22,54,24,79,33,27,"MAC","Bowling Green","Punter","Launch Ratings"
7461,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/41.png?im=FaceCrop,padding=0.7","Johnny","Thompson Jr.",71,40,77,"Canoga Park","California","Previous",20,"Sophomore",92,86,88,84,66,73,77,49,34,75,76,57,64,85,55,41,51,54,87,82,36,40,63,45,39,57,77,58,54,59,33,50,43,36,61,52,55,51,0,59,53,89,79,65,54,13,25,33,28,27,26,80,65,41,"Big 12","Kansas","Halfback","Launch Ratings"
28969,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/93.png?im=FaceCrop,padding=0.7","Johnny","Martin",70,40,77,"Lawnside","New Jersey","Previous",22,"Junior",89,85,86,89,72,75,78,50,32,78,75,50,62,83,38,42,56,42,87,83,41,41,66,38,42,45,77,53,52,50,45,62,38,29,55,45,32,34,0,52,49,86,82,74,51,24,12,28,37,29,43,87,73,26,"The American","Temple","Halfback","Launch Ratings"
4503,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/59.png?im=FaceCrop,padding=0.7","Johnny","Williams IV",79,167,77,"Macon","Georgia","Previous",60,"Sophomore",70,65,71,85,89,84,42,55,37,41,53,30,29,51,30,33,59,87,85,30,47,33,29,82,25,30,77,76,73,79,29,43,57,26,26,83,85,81,0,26,28,59,29,42,39,10,29,28,31,20,38,89,40,29,"SEC","Missouri","Left Tackle","Launch Ratings"
14549,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/128.png?im=FaceCrop,padding=0.7","Jonny","King",75,135,77,"Greensboro","North Carolina","Previous",52,"Senior",75,65,66,82,85,85,44,55,33,42,50,28,24,54,29,25,62,86,86,28,39,35,26,80,26,24,77,80,77,83,36,34,57,25,24,73,74,73,0,26,25,67,27,44,41,33,22,28,14,21,29,84,43,26,"The American","Charlotte","Center","Launch Ratings"
22028,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Jordan","Washington",76,104,77,"Houston","Texas","Previous",84,"Sophomore",83,79,87,85,79,76,73,40,42,67,76,79,80,75,60,34,61,71,87,73,41,28,65,69,55,69,77,61,54,54,46,40,34,22,36,67,59,56,0,74,77,79,69,74,38,14,24,18,39,27,41,92,75,24,"SEC","Texas","Tight End","Launch Ratings"
9235,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/118.png?im=FaceCrop,padding=0.7","Jordan","Bass",75,45,77,"Hampton","Virginia","Eligible",6,"Junior",90,84,88,86,76,77,39,67,41,37,54,34,59,78,38,66,76,69,89,41,33,33,43,54,63,37,77,64,60,51,43,71,72,44,82,54,52,60,0,40,41,83,41,38,82,11,16,17,26,34,32,88,37,84,"ACC","Virginia Tech","Will Backer","Launch Ratings"
8635,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/17.png?im=FaceCrop,padding=0.7","Jordan","Sanford",72,35,77,"Arlington","Texas","Eligible",17,"Junior",93,88,91,90,66,73,78,57,37,40,46,45,72,86,47,40,79,60,87,68,29,28,64,56,72,44,77,62,63,54,44,74,46,66,81,51,55,66,0,45,50,92,75,57,75,15,23,14,31,21,30,90,51,68,"ACC","Cal","Free Safety","Launch Ratings"
127,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/36.png?im=FaceCrop,padding=0.7","Jordan","Allen",71,40,77,"Lafayette","Louisiana","Previous",6,"Sophomore",93,89,89,90,67,67,73,58,41,41,43,42,70,90,41,42,82,59,85,65,37,48,62,58,68,42,77,64,63,52,29,75,51,70,85,50,55,64,0,41,46,90,68,56,73,10,21,19,31,11,47,86,52,74,"Big 12","Houston","Strong Safety","Launch Ratings"
22419,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/117.png?im=FaceCrop,padding=0.7","Jordan","Robinson",76,50,77,"Columbia","South Carolina","Previous",9,"Junior",89,86,89,87,76,79,45,64,44,46,71,53,53,84,23,29,85,64,93,72,37,45,54,57,75,26,77,65,62,56,25,81,49,87,79,49,56,69,0,25,53,86,65,66,69,36,13,17,30,17,40,92,61,81,"ACC","Virginia","Cornerback","Launch Ratings"
24949,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Jordon","Davison",72,56,77,"Santa Ana","California","Eligible",0,"Freshman",89,83,87,78,74,68,78,51,46,79,81,59,69,82,54,44,62,65,86,84,27,25,72,63,42,65,77,65,64,62,26,51,44,45,44,59,55,53,0,69,61,87,80,84,57,32,33,35,42,34,32,93,83,44,"Big Ten","Oregon","Halfback","Launch Ratings"
1030,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/96.png?im=FaceCrop,padding=0.7","Jordon","Johnson-Rubell",70,29,77,"Fort Worth","Texas","Eligible",23,"Sophomore",94,93,89,89,51,71,79,46,24,23,43,44,73,91,47,41,73,54,78,71,44,29,58,55,76,45,77,49,56,49,45,70,31,70,78,48,50,54,0,47,46,91,74,27,67,14,32,34,11,21,43,88,26,79,"SEC","Texas","Strong Safety","Launch Ratings"
6124,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/59.png?im=FaceCrop,padding=0.7","Jordon","Harris",76,108,77,"Pine Bluff","Arkansas","Eligible",86,"Junior",83,80,85,85,78,79,72,59,24,68,71,83,83,77,57,59,52,63,85,70,24,35,65,65,46,67,77,55,52,54,32,39,56,21,60,63,59,51,0,77,79,77,64,69,58,11,21,11,47,25,38,88,67,32,"SEC","Missouri","Tight End","Launch Ratings"
28954,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/26.png?im=FaceCrop,padding=0.7","Jordy","Lowery",71,29,77,"Bartow","Florida","Previous",15,"Junior",88,87,89,88,60,83,72,44,22,24,63,65,79,83,48,41,61,46,87,84,31,35,61,55,72,46,77,56,47,41,44,85,34,73,75,49,49,53,0,49,67,87,78,23,63,26,30,22,16,16,32,86,25,80,"The American","East Carolina","Cornerback","Launch Ratings"
25229,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/34.png?im=FaceCrop,padding=0.7","Josh","Petty",78,125,77,"Milton","Georgia","Eligible",69,"Freshman",84,77,79,79,79,75,41,72,26,37,50,33,30,67,31,67,79,81,95,43,33,35,23,89,25,30,77,78,81,75,11,72,75,22,77,83,86,80,0,35,29,75,35,52,76,14,14,14,14,19,22,87,44,23,"ACC","Georgia Tech","Left Tackle","Launch Ratings"
7114,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/45.png?im=FaceCrop,padding=0.7","Josh","Kattus",76,87,77,"Cincinnati","California","Eligible",84,"Senior",85,81,84,96,72,86,76,53,45,72,68,79,80,76,64,48,24,46,87,72,43,42,67,45,39,68,77,60,52,59,45,42,46,23,50,60,64,59,0,75,84,77,64,66,51,35,13,32,34,37,41,96,67,43,"SEC","Kentucky","Tight End","Launch Ratings"
19190,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Joshua","Mickens",75,73,77,"Indianapolis","Indiana","Previous",52,"Junior",92,77,83,81,93,53,44,63,34,46,58,44,55,70,44,88,80,74,83,44,39,44,47,46,42,44,77,66,58,56,41,75,77,43,85,56,56,66,0,44,44,80,44,44,81,26,32,33,35,32,44,80,44,46,"Big Ten","Ohio State","Right Edge","Launch Ratings"
3506,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/84.png?im=FaceCrop,padding=0.7","Josiah","Cox",74,40,77,"San Diego","California","Eligible",24,"Junior",90,86,85,91,68,79,58,58,39,41,65,55,68,84,34,30,74,60,88,54,32,28,57,57,74,31,77,61,58,53,40,78,42,66,73,51,55,65,0,34,64,87,52,53,73,37,29,17,20,26,37,94,53,77,"Mountain West","San Diego State","Strong Safety","Launch Ratings"
5723,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/50.png?im=FaceCrop,padding=0.7","Josiah","McLaurin",73,28,77,"Clinton","North Carolina","Eligible",17,"Sophomore",92,89,92,83,56,67,72,39,44,75,69,67,65,88,55,29,38,32,89,86,26,35,88,33,42,64,77,32,21,33,47,51,31,36,34,37,29,28,0,68,65,91,83,45,33,15,24,30,14,31,29,79,45,39,"Big Ten","Maryland","Halfback","Launch Ratings"
18669,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/65.png?im=FaceCrop,padding=0.7","Josiah","Charles",72,15,77,"Dallas","Texas","Eligible",1,"Junior",92,88,92,88,51,79,57,43,41,40,59,29,57,86,31,26,59,49,81,69,34,48,59,56,74,32,77,62,62,52,43,80,28,70,81,57,53,66,0,31,37,88,65,47,71,25,32,32,34,10,40,89,38,73,"Conference USA","New Mexico State","Cornerback","Launch Ratings"
23982,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/9.png?im=FaceCrop,padding=0.7","Jourdin","Crawford",72,179,77,"Birmingham","Alabama","Eligible",95,"Freshman",79,66,73,77,87,62,28,83,27,43,51,28,41,60,28,63,81,85,93,28,21,26,15,58,23,28,77,55,54,54,38,63,84,25,79,62,54,69,0,28,28,71,28,43,83,21,25,23,22,36,47,91,44,22,"SEC","Auburn","Defensive Tackle","Launch Ratings"
14822,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/100.png?im=FaceCrop,padding=0.7","Julian","Peterson",75,145,77,"Pinson","Alabama","Previous",99,"Senior",70,57,67,86,87,83,24,81,47,38,57,26,29,48,25,68,80,81,92,23,25,43,31,56,29,26,77,65,47,43,36,84,83,22,78,55,52,64,0,24,25,59,24,40,84,35,31,10,20,14,36,88,40,32,"Sun Belt","Troy","Defensive Tackle","Launch Ratings"
288,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/105.png?im=FaceCrop,padding=0.7","Julian","Armella",78,165,77,"Miami","Florida","Previous",74,"Sophomore",74,73,73,88,91,61,45,55,27,42,50,30,28,50,29,37,62,85,89,31,48,36,30,83,31,31,77,79,81,80,25,48,58,30,33,76,89,82,0,28,32,58,31,44,45,37,20,24,32,16,42,84,43,32,"Big Ten","UCLA","Right Guard","Launch Ratings"
1581,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/42.png?im=FaceCrop,padding=0.7","Justice","Clemons",70,40,77,"West Columbia","Texas","Eligible",5,"Senior",89,88,82,89,70,82,48,56,45,47,44,32,45,88,25,25,72,53,89,72,46,32,52,58,75,31,77,65,64,56,32,83,46,80,76,62,57,68,0,28,29,87,67,56,63,10,27,29,27,33,25,90,45,82,"Big 12","Kansas State","Cornerback","Launch Ratings"
1616,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/9.png?im=FaceCrop,padding=0.7","Justin","Jones",73,44,77,"Bessemer","Alabama","Eligible",35,"Senior",88,83,81,87,74,72,79,48,35,74,85,47,64,83,34,40,57,49,87,83,41,26,60,41,31,44,77,57,47,51,39,31,42,27,57,46,34,36,0,50,48,87,76,68,51,37,22,28,33,34,40,85,75,30,"SEC","Auburn","Halfback","Launch Ratings"
31062,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/37.png?im=FaceCrop,padding=0.7","Justin","Bowick",76,40,77,"Powder Springs","Georgia","Eligible",0,"Junior",88,87,92,86,71,83,84,41,18,75,72,83,84,84,77,27,33,31,90,81,17,22,86,14,29,81,77,35,20,15,10,37,30,42,33,55,22,22,0,82,87,86,75,68,41,21,19,24,15,33,20,76,65,25,"Big Ten","Illinois","Wide Receiver","Launch Ratings"
8602,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/101.png?im=FaceCrop,padding=0.7","Justyn","Reid",77,95,77,"Newnan","Georgia","Eligible",88,"Junior",83,76,80,93,78,80,57,62,26,72,77,81,78,72,58,60,67,66,89,65,36,27,45,61,26,67,77,69,62,55,48,42,58,24,60,71,63,61,0,73,79,76,61,72,61,25,20,20,43,27,34,93,74,58,"The American","Tulane","Tight End","Launch Ratings"
21595,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/34.png?im=FaceCrop,padding=0.7","Jy","Gilmore",69,30,77,"Citra","Florida","Previous",14,"Junior",91,89,83,89,47,78,71,43,35,72,54,51,70,87,32,25,69,35,85,81,34,37,56,54,73,30,77,64,45,39,27,77,34,75,74,56,52,61,0,29,55,88,75,32,67,33,26,13,21,22,38,76,35,82,"ACC","Georgia Tech","Cornerback","Launch Ratings"
21692,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/39.png?im=FaceCrop,padding=0.7","Kade","Pieper",76,130,77,"Norfolk","Nebraska","Previous",58,"Sophomore",82,77,78,95,85,79,46,61,39,46,53,43,40,61,39,48,67,83,80,39,30,27,43,87,39,43,77,74,77,72,31,50,65,40,44,79,83,75,0,40,41,70,40,50,48,15,16,31,16,10,45,91,49,37,"Big Ten","Iowa","Right Guard","Launch Ratings"
3385,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/28.png?im=FaceCrop,padding=0.7","Kahlil","Brantley",74,65,77,"Opa-Locka","Florida","Previous",18,"Senior",84,79,82,93,67,74,74,34,42,69,69,83,85,74,65,28,18,53,78,68,31,43,61,45,43,73,77,60,53,54,25,36,31,19,31,66,57,56,0,78,82,76,65,66,33,16,27,26,47,28,39,88,68,29,"The American","FAU","Tight End","Launch Ratings"
23478,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/50.png?im=FaceCrop,padding=0.7","Kaleb","Webb",77,41,77,"Powder Springs","Georgia","Previous",84,"Junior",92,85,86,90,68,77,75,49,26,67,63,85,86,85,75,40,61,41,77,74,31,43,79,36,42,82,77,29,13,25,28,39,42,31,58,48,36,39,0,83,82,92,75,57,53,36,32,35,28,37,26,82,41,36,"Big Ten","Maryland","Wide Receiver","Launch Ratings"
23783,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Kaleb","Artis",76,144,77,"Westbury","New York","Previous",58,"Junior",69,56,64,81,91,85,25,84,25,43,49,23,26,47,26,51,84,79,88,24,36,46,31,58,29,22,77,69,63,53,32,82,80,24,74,56,53,64,0,24,26,59,23,40,77,19,16,14,32,19,34,93,42,19,"Big Ten","Penn State","Defensive Tackle","Launch Ratings"
7614,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/18.png?im=FaceCrop,padding=0.7","Kalen","Carroll",73,25,77,"Indianapolis","Indiana","Previous",6,"Junior",91,87,86,88,54,86,50,50,43,44,61,34,65,86,30,39,67,51,87,62,47,47,56,55,77,30,77,65,61,52,38,85,38,70,67,58,54,67,0,28,35,88,60,53,61,27,31,17,16,24,44,92,41,74,"MAC","Central Michigan","Cornerback","Launch Ratings"
4858,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/117.png?im=FaceCrop,padding=0.7","Kameron","Courtney",71,33,77,"Manassas","Virginia","Eligible",5,"Sophomore",93,91,87,87,62,77,79,37,44,74,69,82,81,89,76,31,67,35,88,86,31,39,90,33,64,81,77,31,21,32,34,43,32,33,60,52,27,31,0,80,81,91,85,41,60,11,11,29,19,15,27,85,54,68,"ACC","Virginia","Wide Receiver","Launch Ratings"
18993,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/109.png?im=FaceCrop,padding=0.7","Kamuela","Ka'aihue",74,70,77,"Papakolea","Hawaii","Eligible",43,"Junior",85,78,83,81,75,80,26,65,40,42,63,34,49,74,28,59,79,66,92,29,42,31,36,45,66,26,77,56,51,47,25,78,55,25,85,50,47,57,0,25,29,82,31,40,83,11,19,27,10,35,24,87,41,78,"Mountain West","UNLV","Will Backer","Launch Ratings"
5599,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/39.png?im=FaceCrop,padding=0.7","Karson","Sharar",74,75,77,"Iowa Falls","Iowa","Previous",43,"Senior",85,79,82,82,77,85,33,68,36,38,53,38,52,76,33,55,83,73,93,33,36,36,38,57,65,33,77,65,60,53,36,83,68,36,83,57,52,65,0,33,33,79,33,38,81,24,24,24,24,24,36,89,39,75,"Big Ten","Iowa","Will Backer","Launch Ratings"
22873,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/27.png?im=FaceCrop,padding=0.7","Keegan","Davis",76,90,77,"Port Saint Lucie","Florida","Previous",44,"Senior",82,75,79,83,79,84,28,76,50,48,45,45,52,70,26,77,82,76,92,32,34,25,38,51,56,26,77,69,63,57,38,82,79,30,82,59,55,66,0,30,29,73,32,47,88,37,37,27,19,12,35,86,48,62,"Conference USA","FIU","Left Edge","Launch Ratings"
3513,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/37.png?im=FaceCrop,padding=0.7","Keelan","Crimmins",75,65,77,"Spotswood","Non-US","Previous",40,"Senior",63,57,63,83,63,65,37,44,39,31,52,33,45,55,25,25,37,34,89,25,79,93,32,36,29,49,77,45,33,37,31,33,45,40,24,12,37,29,0,42,46,66,28,44,41,12,14,18,28,23,43,84,39,39,"Big Ten","Illinois","Punter","Launch Ratings"
9702,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/104.png?im=FaceCrop,padding=0.7","Keli","Lawson",76,63,77,"Stephens City","Virginia","Previous",0,"Senior",88,84,86,90,74,85,43,69,30,31,54,31,64,77,43,72,83,65,84,37,41,35,42,52,65,40,77,60,61,53,43,85,67,47,85,51,50,61,0,43,39,83,42,30,79,36,22,18,18,38,27,92,30,74,"Big 12","UCF","Mike Backer","Launch Ratings"
21063,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/106.png?im=FaceCrop,padding=0.7","Kendrell","Williams",71,38,77,"Carencro","Louisiana","Previous",27,"Senior",90,85,88,84,69,76,75,43,38,75,75,57,65,82,45,38,51,37,87,85,27,25,81,37,42,59,77,52,32,33,27,51,39,37,48,44,33,35,0,59,59,89,79,61,45,27,36,31,31,22,39,76,64,40,"Sun Belt","Louisiana","Halfback","Launch Ratings"
7605,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/41.png?im=FaceCrop,padding=0.7","Kenean","Caldwell",75,165,77,"Oak Grove","Louisiana","Previous",97,"Senior",62,52,60,88,91,77,25,78,43,44,50,26,24,42,23,63,84,78,97,24,24,43,34,58,23,23,77,70,63,57,45,74,86,16,75,62,57,68,0,23,22,53,23,48,83,21,30,12,16,37,48,95,45,15,"Big 12","Kansas","Defensive Tackle","Launch Ratings"
8735,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/61.png?im=FaceCrop,padding=0.7","Kenny","Soares Jr.",74,71,77,"Trumbull","Connecticut","Previous",33,"Sophomore",85,77,84,85,76,87,49,77,36,36,54,36,52,75,37,66,86,77,93,51,36,36,40,51,69,37,77,64,60,53,36,85,74,62,86,53,55,62,0,37,37,80,50,52,74,24,24,25,24,24,36,87,57,75,"ACC","NC State","Will Backer","Launch Ratings"
20434,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/36.png?im=FaceCrop,padding=0.7","Kentrell","Webb",71,25,77,"Katy","Texas","Previous",8,"Junior",89,86,86,91,62,82,64,49,30,33,37,28,64,84,36,24,74,52,87,58,36,25,52,56,68,38,77,55,61,50,29,76,32,63,86,48,52,60,0,34,35,90,60,44,68,37,29,28,15,28,33,88,40,73,"Big 12","Houston","Free Safety","Launch Ratings"
23588,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/79.png?im=FaceCrop,padding=0.7","Keon","Wylie",74,65,77,"Philadelphia","Pennsylvania","Previous",32,"Junior",90,83,85,86,73,70,41,57,36,32,53,32,52,79,41,57,71,62,88,41,36,36,42,52,62,41,77,62,59,52,36,75,57,42,84,52,51,61,0,41,41,82,41,32,83,24,24,24,24,24,36,90,32,85,"Big Ten","Penn State","Will Backer","Launch Ratings"
33438,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Kevin","Bauman",77,90,77,"Red Bank","New Jersey","Previous",84,"Senior",78,79,77,91,78,75,70,37,35,73,70,80,82,72,63,43,39,63,79,69,37,41,24,61,30,68,77,58,56,60,38,28,25,25,47,64,56,72,0,78,81,80,68,67,28,36,24,27,26,22,30,83,69,30,"Independent","Notre Dame","Tight End","Launch Ratings"
18961,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/91.png?im=FaceCrop,padding=0.7","Kevin","Jobity Jr.",76,117,77,"Buffalo","New York","Eligible",94,"Senior",80,70,75,84,80,86,36,70,28,40,53,30,28,64,26,72,81,68,88,28,29,47,34,37,54,29,77,48,48,44,25,84,86,22,87,41,40,49,0,30,28,76,26,36,78,26,14,13,33,15,30,80,36,58,"ACC","Syracuse","Defensive Tackle","Launch Ratings"
3058,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/117.png?im=FaceCrop,padding=0.7","Kevin","Wigenton II",77,175,77,"Colts Neck","New Jersey","Previous",78,"Senior",66,55,64,87,90,84,41,56,38,43,54,27,29,50,24,26,60,84,91,25,39,34,30,78,25,27,77,80,76,82,36,40,57,29,27,79,80,80,0,26,24,54,24,42,42,21,18,12,28,10,27,87,42,26,"ACC","Virginia","Right Guard","Launch Ratings"
10683,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/105.png?im=FaceCrop,padding=0.7","Key","Lawrence",72,45,77,"Nashville","Tennessee","Eligible",4,"Senior",93,88,89,87,73,77,67,65,43,45,40,48,71,86,41,48,84,64,90,61,25,44,61,56,72,40,77,68,63,55,44,70,49,80,85,55,54,69,0,40,48,90,66,64,68,30,33,28,35,27,41,89,58,72,"Big Ten","UCLA","Free Safety","Launch Ratings"
10458,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/118.png?im=FaceCrop,padding=0.7","Keyshawn","Burgos",77,100,77,"Chesterfield","Virginia","Eligible",2,"Senior",86,75,83,85,78,86,32,73,27,33,52,44,55,71,43,75,80,66,91,44,37,48,40,35,48,41,77,40,41,38,33,85,83,46,81,31,36,43,0,40,43,80,42,35,76,13,16,15,24,17,38,83,33,52,"ACC","Virginia Tech","Right Edge","Launch Ratings"
31379,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/131.png?im=FaceCrop,padding=0.7","Khurtiss","Perry",74,120,77,"Montgomery","Alabama","Previous",44,"Junior",85,73,77,81,80,81,26,67,13,31,42,43,41,65,18,85,85,69,91,31,20,17,8,39,17,20,77,38,22,20,21,79,75,19,86,25,25,24,0,24,30,77,28,35,79,32,38,37,24,37,13,82,34,24,"Conference USA","Jacksonville State","Defensive Tackle","Launch Ratings"
24551,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/58.png?im=FaceCrop,padding=0.7","Kolin","Wilson",69,30,77,"Gulf Shores","Alabama","Eligible",26,"Freshman",92,86,84,83,57,55,84,41,45,75,74,55,69,86,58,36,45,49,88,89,32,33,78,45,62,64,77,53,43,52,21,61,36,41,47,44,30,34,0,69,61,88,85,52,41,20,21,25,20,43,22,77,60,59,"SEC","Mississippi State","Halfback","Launch Ratings"
9343,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/40.png?im=FaceCrop,padding=0.7","Kooper","Ebel",76,75,77,"Hartley","Iowa","Eligible",47,"Junior",88,80,86,85,74,81,48,68,26,37,59,39,62,78,45,65,80,70,86,43,30,31,48,58,69,45,77,62,59,52,46,82,60,44,86,56,51,61,0,46,42,86,48,39,73,26,31,13,34,26,38,87,38,79,"Big Ten","Iowa State","Will Backer","Launch Ratings"
21125,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/83.png?im=FaceCrop,padding=0.7","Kwabena","Asamoah",74,160,77,"Pickerington","Ohio","Previous",69,"Senior",69,56,66,86,96,84,49,63,45,46,51,26,30,54,27,28,70,85,91,25,46,31,25,87,31,27,77,73,70,76,45,42,66,26,28,78,81,76,0,25,25,59,25,49,47,16,12,30,30,26,26,86,47,26,"Big Ten","Rutgers","Right Guard","Launch Ratings"
31336,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/63.png?im=FaceCrop,padding=0.7","Ky","Woods",69,16,77,"League City","Texas","Previous",25,"Junior",93,90,87,83,59,69,76,41,48,74,68,59,70,87,47,32,41,41,84,86,41,29,66,37,41,56,77,51,51,49,41,56,31,39,39,44,32,33,0,59,55,90,81,44,37,12,27,20,19,21,28,77,59,44,"Mountain West","Nevada","Halfback","Launch Ratings"
7018,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/17.png?im=FaceCrop,padding=0.7","Kyion","Grayes",72,20,77,"Chandler","Arizona","Previous",9,"Sophomore",94,90,92,87,61,70,82,46,44,73,69,79,80,90,79,34,53,36,78,84,41,25,96,30,58,85,77,32,24,32,36,61,38,40,45,35,28,27,0,84,81,92,87,25,49,12,17,13,25,18,39,79,47,59,"ACC","Cal","Wide Receiver","Launch Ratings"
5799,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/11.png?im=FaceCrop,padding=0.7","Kyler","Jordan",74,92,77,"Lubbock","Texas","Previous",40,"Junior",87,82,85,81,77,79,35,72,48,43,56,41,50,74,33,82,81,71,89,34,26,39,40,58,59,38,77,66,61,57,30,78,77,34,84,57,53,67,0,35,35,80,34,42,77,14,15,37,26,36,36,86,43,63,"Big 12","Baylor","Left Edge","Launch Ratings"
5816,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/85.png?im=FaceCrop,padding=0.7","Lamar","Radcliffe",73,60,77,"Sacramento","California","Eligible",2,"Sophomore",87,81,82,84,82,77,72,57,34,74,82,51,59,81,40,49,71,52,90,75,36,42,62,49,29,43,77,62,39,40,35,41,46,32,69,55,42,43,0,49,49,85,74,86,62,22,17,25,19,25,28,91,83,53,"Mountain West","San Jose State","Halfback","Launch Ratings"
24472,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/32.png?im=FaceCrop,padding=0.7","Landon","Roldan",72,25,77,"Bogart","Georgia","Eligible",84,"Freshman",94,92,85,85,45,68,85,40,47,81,73,80,78,90,80,32,43,45,92,88,25,28,83,31,52,82,77,35,21,32,24,59,32,40,38,45,39,35,0,84,82,91,86,42,35,30,35,40,45,45,34,88,55,50,"SEC","Georgia","Wide Receiver","Launch Ratings"
31436,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/17.png?im=FaceCrop,padding=0.7","Landon","Morris",77,70,77,"Indianapolis","Indiana","Previous",81,"Senior",83,79,83,91,74,84,71,62,33,70,69,77,82,77,58,58,73,67,90,69,41,29,64,66,47,62,77,64,57,56,25,48,59,28,57,68,65,62,0,72,79,81,61,74,59,22,19,32,39,25,37,91,72,49,"ACC","Cal","Tight End","Launch Ratings"
2546,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/67.png?im=FaceCrop,padding=0.7","Landon","Sides",71,30,77,"Denton","Texas","Eligible",22,"Junior",92,89,87,91,67,83,75,47,31,75,72,79,84,88,80,40,60,38,73,87,31,28,94,34,66,79,77,31,16,28,25,62,41,42,56,44,29,29,0,81,77,89,82,39,52,22,25,24,14,12,35,87,61,52,"The American","North Texas","Wide Receiver","Launch Ratings"
21750,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/41.png?im=FaceCrop,padding=0.7","Laquan","Robinson",73,40,77,"Greenville","Alabama","Previous",12,"Junior",92,86,88,88,68,69,66,59,43,41,37,45,70,87,34,40,82,60,89,55,39,48,53,59,76,36,77,61,61,54,47,74,48,75,85,50,54,67,0,35,43,89,57,55,74,35,22,33,31,15,28,89,52,73,"Big 12","Kansas","Strong Safety","Launch Ratings"
9470,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/21.png?im=FaceCrop,padding=0.7","Larry","Johnson III",79,190,77,"Savannah","Georgia","Previous",57,"Junior",59,52,57,82,93,73,42,58,47,42,50,24,24,50,27,24,65,88,94,24,42,45,25,75,26,24,77,79,75,82,34,44,59,24,24,76,82,84,0,24,24,50,24,46,46,37,11,13,24,36,43,90,41,27,"Big 12","Colorado","Left Tackle","Launch Ratings"
20682,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/101.png?im=FaceCrop,padding=0.7","LJ","Green",70,10,77,"Montgomery","Alabama","Previous",22,"Sophomore",92,90,87,92,43,74,56,47,27,71,55,55,73,88,36,31,57,42,90,77,25,25,54,55,76,38,77,59,46,39,37,75,25,76,80,50,51,54,0,37,61,89,73,29,55,19,13,14,18,12,30,75,26,84,"The American","Tulane","Cornerback","Launch Ratings"
25538,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/72.png?im=FaceCrop,padding=0.7","Logan","George",76,89,77,"Pocatello","Idaho","Eligible",48,"Junior",83,75,80,77,79,79,38,76,35,36,56,40,53,72,40,75,84,76,92,49,31,32,25,55,35,40,77,49,46,45,41,81,83,44,85,39,40,51,0,40,40,77,46,53,81,12,28,26,18,24,39,90,56,41,"Big Ten","Ohio State","Right Edge","Launch Ratings"
20198,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/28.png?im=FaceCrop,padding=0.7","Logan","Lupo",72,30,77,"Montreal","Non-US","Previous",19,"Senior",71,56,71,87,44,65,28,33,32,46,51,27,37,52,27,46,48,25,84,28,84,91,34,46,46,47,77,48,29,27,42,38,41,42,31,27,25,37,0,37,42,60,42,29,28,32,20,21,24,19,24,88,48,35,"The American","FAU","Punter","Launch Ratings"
2334,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/59.png?im=FaceCrop,padding=0.7","Logan","Reichert",78,184,77,"Kansas City","Missouri","Previous",66,"Sophomore",61,60,57,79,95,78,44,58,40,46,50,28,24,63,24,26,62,88,98,27,45,48,26,72,27,27,77,72,70,80,34,41,63,28,28,71,86,88,0,27,26,47,24,45,45,14,36,22,12,12,43,91,43,24,"SEC","Missouri","Right Guard","Launch Ratings"
19058,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/16.png?im=FaceCrop,padding=0.7","Logan","Lutui",74,95,77,"West Valley City","Utah","Previous",59,"Senior",79,71,68,82,81,88,37,76,46,37,55,25,27,64,29,63,82,80,80,27,41,46,33,28,30,28,77,51,47,44,31,89,82,23,83,40,42,50,0,25,25,75,29,36,80,24,30,33,22,27,27,78,37,21,"Big 12","BYU","Right Edge","Launch Ratings"
22474,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/35.png?im=FaceCrop,padding=0.7","Logan","Taylor",72,60,77,"Harbor City","California","Previous",16,"Senior",87,83,83,86,69,87,23,65,32,31,43,29,45,77,26,48,83,40,84,23,27,38,29,22,67,26,77,40,33,31,42,85,54,25,83,24,36,38,0,24,24,83,27,32,83,34,23,15,13,10,29,83,31,71,"Mountain West","Hawaii","Mike Backer","Launch Ratings"
3275,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/118.png?im=FaceCrop,padding=0.7","Lucas","Austin",77,140,77,"Sterling","Illinois","Previous",57,"Freshman",78,65,79,89,87,78,27,32,28,28,55,42,46,56,42,51,28,85,76,45,39,24,47,85,46,44,77,81,80,82,38,37,31,45,49,80,80,80,0,41,43,67,44,27,27,12,10,23,32,17,26,80,24,42,"ACC","Virginia Tech","Right Tackle","Launch Ratings"
22021,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/55.png?im=FaceCrop,padding=0.7","Luka","Vincic",77,147,77,"Bothell","Washington","Previous",60,"Junior",81,74,77,94,94,82,41,57,30,45,59,37,39,57,41,47,65,82,81,37,46,31,44,81,37,40,77,76,75,77,43,43,62,40,41,77,82,74,0,42,43,64,40,46,48,28,12,20,17,13,48,85,43,36,"Big Ten","Michigan State","Right Guard","Launch Ratings"
19091,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/62.png?im=FaceCrop,padding=0.7","Mac","Markway",76,100,77,"St. Louis","Missouri","Eligible",87,"Sophomore",84,78,85,86,77,80,71,60,42,70,72,83,82,75,65,56,55,65,87,70,39,48,62,59,45,72,77,60,58,60,25,41,58,23,57,63,57,60,0,75,80,77,61,71,61,14,11,22,46,32,47,88,66,37,"Big Ten","Nebraska","Tight End","Launch Ratings"
28088,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/70.png?im=FaceCrop,padding=0.7","Madden","Faraimo",74,75,77,"Oceanside","California","Eligible",19,"Freshman",84,83,81,90,86,77,39,77,36,44,55,44,59,82,39,82,81,76,88,39,36,36,43,60,70,39,77,68,62,55,36,66,77,36,82,62,53,66,0,39,39,82,39,44,83,24,24,24,24,24,36,90,44,77,"Independent","Notre Dame","Will Backer","Launch Ratings"
20722,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/38.png?im=FaceCrop,padding=0.7","Makai","Jackson",72,40,77,"Levittown","Pennsylvania","Eligible",2,"Senior",91,87,87,87,71,82,78,54,40,67,73,82,84,86,79,45,66,40,87,79,39,39,76,34,34,81,77,39,27,38,24,51,45,36,61,48,39,39,0,78,84,88,75,55,61,10,29,25,20,35,27,87,61,66,"Big Ten","Indiana","Wide Receiver","Launch Ratings"
31027,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/51.png?im=FaceCrop,padding=0.7","Makari","Bodiford",71,62,77,"Marietta","Georgia","Eligible",21,"Sophomore",88,79,84,84,80,79,79,56,29,67,85,51,56,78,45,47,72,61,91,77,40,39,63,55,28,51,77,67,63,62,42,32,46,28,63,55,51,51,0,55,52,85,73,81,63,29,10,35,23,34,46,89,86,23,"The American","Memphis","Halfback","Launch Ratings"
9068,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/116.png?im=FaceCrop,padding=0.7","Makhilyn","Young",70,35,77,"Midland","Texas","Previous",22,"Senior",92,85,84,93,68,65,82,42,40,77,77,60,71,85,48,33,42,45,85,83,37,30,70,36,52,55,77,59,55,59,34,62,31,42,41,43,28,33,0,59,62,90,78,68,40,35,34,21,26,29,40,89,73,71,"SEC","Vanderbilt","Halfback","Launch Ratings"
25282,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Malachi","Toney",71,22,77,"Miami","Florida","Eligible",12,"Freshman",93,92,88,82,56,70,81,37,42,79,71,77,81,91,76,31,34,48,91,88,27,29,77,42,58,81,77,42,39,35,39,49,28,36,34,51,49,45,0,83,82,88,84,44,31,32,33,35,20,45,35,86,53,40,"ACC","Miami","Wide Receiver","Launch Ratings"
20533,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/51.png?im=FaceCrop,padding=0.7","Malachi","Breland",77,180,77,"Laurel","Mississippi","Previous",72,"Sophomore",61,47,58,79,91,79,48,60,30,46,53,26,24,41,26,29,65,90,94,25,40,35,24,81,24,27,77,74,68,80,41,47,61,26,24,79,77,82,0,27,27,50,28,44,44,13,36,29,32,14,32,86,46,27,"The American","Memphis","Right Guard","Launch Ratings"
19551,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/121.png?im=FaceCrop,padding=0.7","Malaki","Ta'ase",74,85,77,"Mesa","Arizona","Eligible",98,"Freshman",82,76,80,80,79,78,30,75,37,46,60,45,36,72,29,74,85,76,87,28,48,25,41,59,55,27,77,69,65,56,32,80,84,27,82,61,54,68,0,29,25,76,31,48,83,27,21,14,22,33,36,81,45,65,"Pac-12","Washington State","Left Edge","Launch Ratings"
22740,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/55.png?im=FaceCrop,padding=0.7","Malcolm","Bell",74,29,77,"Montreal","Non-US","Previous",14,"Senior",89,86,88,91,60,84,46,48,38,38,54,35,62,86,28,34,61,42,85,59,25,29,51,55,74,27,77,64,47,43,45,82,35,74,82,56,54,62,0,26,30,90,55,45,60,23,37,26,22,11,33,92,37,79,"Big Ten","Michigan State","Cornerback","Launch Ratings"
8453,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/109.png?im=FaceCrop,padding=0.7","Malik","McGowan",77,165,77,"Charlotte","North Carolina","Previous",60,"Senior",67,53,62,85,90,84,44,56,27,42,50,25,31,51,26,30,61,86,93,29,41,35,25,75,29,31,77,75,69,81,43,37,59,26,30,78,76,80,0,30,29,55,27,43,43,14,17,10,35,15,25,92,42,28,"Mountain West","UNLV","Left Guard","Launch Ratings"
5809,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/57.png?im=FaceCrop,padding=0.7","Marcellus","Marshall",78,170,77,"Morgantown","West Virginia","Previous",74,"Senior",61,59,57,85,87,84,41,48,29,37,52,25,26,53,24,24,51,82,86,24,38,36,28,73,24,25,77,82,82,82,32,34,50,24,24,75,72,78,0,24,24,48,24,39,40,12,24,16,13,23,29,85,40,27,"Big Ten","Minnesota","Right Guard","Launch Ratings"
24676,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/95.png?im=FaceCrop,padding=0.7","Marco","Jones",77,90,77,"Dublin","California","Eligible",10,"Freshman",88,81,82,83,77,71,44,75,32,36,56,54,56,75,39,75,79,74,89,39,20,22,40,49,57,39,77,44,46,39,26,72,83,50,85,35,40,49,0,39,55,82,39,35,83,13,15,26,25,29,24,87,53,62,"SEC","Texas A&M","Right Edge","Launch Ratings"
22029,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/91.png?im=FaceCrop,padding=0.7","Marcus","Washington Jr.",73,29,77,"Grovetown","Georgia","Previous",31,"Junior",91,87,88,90,65,79,50,51,46,45,49,48,74,85,28,43,67,50,84,62,28,24,54,56,77,31,77,66,60,53,36,75,48,79,68,58,54,68,0,28,45,89,61,55,67,16,30,19,13,17,44,87,43,70,"ACC","Syracuse","Cornerback","Launch Ratings"
5967,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/63.png?im=FaceCrop,padding=0.7","Marcus","Bellon",69,22,77,"Truckee","California","Previous",18,"Senior",93,88,86,93,58,82,68,45,41,64,67,85,84,87,77,38,50,32,75,80,43,31,89,32,48,79,77,38,27,35,44,59,38,40,46,53,27,26,0,83,85,89,73,24,43,32,33,31,15,20,33,85,48,69,"Mountain West","Nevada","Wide Receiver","Launch Ratings"
6814,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/104.png?im=FaceCrop,padding=0.7","Marcus","Burke",75,37,77,"Jacksonville","Florida","Previous",3,"Senior",91,89,90,84,71,84,71,53,32,70,66,86,82,87,73,45,63,40,88,77,47,37,73,34,53,76,77,31,23,31,27,48,41,35,61,46,34,34,0,80,86,92,74,64,56,14,31,35,20,19,42,85,49,43,"Big 12","UCF","Wide Receiver","Launch Ratings"
5989,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/62.png?im=FaceCrop,padding=0.7","Mario","Buford",72,15,77,"Chicago","Illinois","Eligible",31,"Sophomore",92,87,87,88,50,78,50,47,25,25,43,37,66,87,29,39,52,42,79,59,42,32,49,53,73,28,77,56,56,48,28,81,32,75,79,48,51,55,0,32,36,89,60,30,65,31,24,33,23,27,37,88,26,77,"Big Ten","Nebraska","Free Safety","Launch Ratings"
5842,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/74.png?im=FaceCrop,padding=0.7","Markell","Samuel",76,145,77,"Fayetteville","North Carolina","Previous",70,"Senior",76,66,75,88,85,86,35,40,34,32,53,32,35,58,38,43,42,85,90,33,12,13,10,82,12,37,77,81,80,82,29,30,39,13,33,77,79,75,0,38,38,65,35,34,35,19,34,10,16,33,46,92,33,11,"Big 12","Oklahoma State","Left Tackle","Launch Ratings"
2267,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/33.png?im=FaceCrop,padding=0.7","Marlin","Dean",77,85,77,"Elberton","Georgia","Previous",9,"Junior",85,77,82,89,74,83,34,72,45,31,57,42,51,73,44,83,81,68,82,43,30,40,41,37,43,45,77,38,37,32,46,84,77,46,82,27,36,39,0,42,45,79,45,31,78,37,18,10,19,11,48,82,32,51,"Sun Belt","Georgia State","Right Edge","Launch Ratings"
1648,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/54.png?im=FaceCrop,padding=0.7","Marlin","Klein",78,87,77,"Cologne","Non-US","Previous",17,"Senior",87,85,90,88,68,80,70,36,47,64,75,79,78,77,62,30,69,69,87,77,42,44,72,67,56,65,77,64,58,62,37,50,31,29,32,68,62,62,0,73,81,82,66,68,29,36,31,25,25,17,46,92,70,43,"Big Ten","Michigan","Tight End","Launch Ratings"
20572,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/15.png?im=FaceCrop,padding=0.7","Marquis","Cooper",71,30,77,"Queens","New York","Previous",1,"Senior",92,89,91,90,61,85,47,51,38,39,59,54,60,87,27,22,70,50,85,58,26,45,52,58,75,29,77,66,49,41,31,82,37,77,69,56,54,66,0,25,55,89,54,45,58,20,35,12,22,30,33,85,39,76,"MAC","Buffalo","Cornerback","Launch Ratings"
20592,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/52.png?im=FaceCrop,padding=0.7","Marquise","Lightfoot",77,70,77,"Chicago","Illinois","Eligible",12,"Sophomore",92,81,86,89,68,62,23,63,29,25,59,50,58,80,47,87,71,63,77,48,41,42,38,33,49,48,77,27,28,24,33,76,62,50,86,13,24,24,0,50,50,84,49,24,79,33,32,10,11,10,26,87,22,51,"ACC","Miami","Left Edge","Launch Ratings"
4193,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/99.png?im=FaceCrop,padding=0.7","Martez","Poynter",76,130,77,"St. Louis","Missouri","Eligible",8,"Senior",72,59,74,84,85,84,24,78,44,36,54,26,29,51,24,68,82,67,89,24,39,45,30,55,26,25,77,63,51,46,25,85,83,28,81,56,55,63,0,25,28,64,25,37,83,18,33,10,32,19,33,87,36,23,"MAC","Toledo","Defensive Tackle","Launch Ratings"
21230,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/59.png?im=FaceCrop,padding=0.7","Marvin","Burks Jr.",73,44,77,"St. Louis","Missouri","Eligible",1,"Junior",90,85,86,90,74,70,49,61,43,45,30,43,67,83,29,37,85,63,87,49,33,30,48,59,66,28,77,69,61,58,43,77,44,71,82,51,55,69,0,29,41,88,49,66,76,35,10,34,35,33,38,88,61,73,"SEC","Missouri","Strong Safety","Launch Ratings"
22686,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/71.png?im=FaceCrop,padding=0.7","Mason","Williams",77,97,77,"Mogadore","Ohio","Previous",85,"Sophomore",79,73,78,86,79,79,56,63,36,73,74,73,82,69,69,62,61,64,91,69,46,39,50,61,32,73,77,65,59,63,43,32,61,16,65,66,63,63,0,77,75,74,64,79,67,20,36,18,47,36,25,88,75,31,"MAC","Ohio","Tight End","Launch Ratings"
5728,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/119.png?im=FaceCrop,padding=0.7","Matthew","Dennis",71,47,77,"Charlotte","North Carolina","Previous",99,"Senior",68,72,64,85,53,67,30,35,31,29,57,42,27,74,36,29,47,46,87,34,86,89,35,36,42,28,77,37,35,41,40,38,44,27,35,11,26,33,0,47,49,69,42,28,26,30,20,22,34,14,41,85,41,44,"ACC","Wake Forest","Kicker","Launch Ratings"
3241,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/36.png?im=FaceCrop,padding=0.7","Matthew","Wykoff",78,165,77,"Magnolia","Texas","Previous",74,"Senior",64,56,65,87,91,84,26,55,43,43,56,27,24,54,28,27,64,82,92,26,36,27,26,77,29,26,77,78,73,80,35,55,59,28,27,77,78,82,0,26,28,55,25,42,43,11,17,20,37,15,35,86,41,21,"Big 12","Houston","Right Guard","Launch Ratings"
23078,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/66.png?im=FaceCrop,padding=0.7","Max","Johnson",77,65,77,"Athens","Georgia","Eligible",14,"Senior",68,66,61,87,77,82,57,53,64,72,69,25,23,65,23,53,63,51,75,66,38,48,24,53,40,23,77,62,44,43,75,47,55,27,69,67,47,43,0,27,27,67,65,66,61,77,82,84,54,93,69,81,66,25,"ACC","North Carolina","Quarterback","Launch Ratings"
29261,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/121.png?im=FaceCrop,padding=0.7","Max","Baloun",78,128,77,"Redfield","South Dakota","Previous",97,"Senior",79,68,71,86,83,81,23,76,28,50,49,25,26,59,25,77,81,76,87,23,45,30,33,59,22,25,77,68,55,45,35,82,82,19,86,64,58,70,0,24,22,70,26,49,84,24,14,36,37,10,36,88,49,19,"Pac-12","Washington State","Defensive Tackle","Launch Ratings"
29385,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/16.png?im=FaceCrop,padding=0.7","McCae","Hillstead",70,35,77,"Lehi","Utah","Previous",3,"Sophomore",77,75,75,95,62,78,83,47,75,74,70,34,43,74,25,46,45,41,91,80,29,36,26,38,50,23,77,50,39,37,79,56,44,24,28,43,36,40,0,33,42,74,78,45,44,79,84,80,75,86,79,88,55,25,"Big 12","BYU","Quarterback","Launch Ratings"
27501,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/92.png?im=FaceCrop,padding=0.7","Micah","Strickland",73,25,77,"Brownsboro","Texas","Eligible",28,"Freshman",94,90,93,83,59,69,76,58,35,71,59,61,73,87,42,45,77,56,90,79,25,26,72,46,77,39,77,45,44,46,32,72,39,76,86,49,54,50,0,42,65,91,75,54,72,12,23,21,36,35,24,85,57,72,"Big 12","TCU","Free Safety","Launch Ratings"
3060,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/111.png?im=FaceCrop,padding=0.7","Michael","Williams II",75,100,77,"Farmington Hills","Michigan","Previous",4,"Senior",84,74,79,78,82,84,35,76,48,38,55,41,43,69,38,75,79,68,86,40,24,27,39,37,54,41,77,47,42,42,28,83,85,47,84,38,39,47,0,38,37,73,38,34,76,25,37,16,34,11,24,82,36,61,"The American","USF","Left Edge","Launch Ratings"
18140,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/55.png?im=FaceCrop,padding=0.7","Michael","Masunas",77,93,77,"Tucson","Arizona","Previous",81,"Junior",82,75,79,91,78,75,71,62,33,70,69,83,78,75,58,58,73,69,90,69,41,29,64,67,21,65,77,64,57,56,25,48,59,28,57,71,71,62,0,75,79,78,61,74,59,22,19,32,39,25,37,91,72,22,"Big Ten","Michigan State","Tight End","Launch Ratings"
20057,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/4.png?im=FaceCrop,padding=0.7","Michael","Dansby",71,21,77,"Oakland","California","Eligible",25,"Senior",91,86,85,94,56,82,53,47,34,34,52,34,60,84,31,28,68,49,79,69,45,41,54,55,75,31,77,60,50,44,34,78,37,78,82,54,51,60,0,36,33,92,64,36,57,15,22,16,10,23,32,87,32,80,"Big 12","Arizona","Cornerback","Launch Ratings"
509,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/46.png?im=FaceCrop,padding=0.7","Michael","Richard",71,18,77,"New Orleans","Louisiana","Eligible",1,"Junior",90,86,85,89,59,85,53,54,41,41,47,36,74,86,32,35,72,48,90,64,32,35,53,56,71,29,77,65,59,52,28,84,37,74,81,58,53,65,0,30,34,88,60,47,65,32,24,16,37,12,28,84,40,73,"Conference USA","Louisiana Tech","Free Safety","Launch Ratings"
22962,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/66.png?im=FaceCrop,padding=0.7","Mikai","Gbayor",74,70,77,"Irvington","New Jersey","Previous",4,"Senior",86,79,83,88,79,83,33,64,36,39,56,39,45,75,33,65,77,68,94,33,36,36,39,54,65,33,77,65,61,54,36,80,79,30,83,59,56,63,0,33,33,78,33,39,83,24,24,24,24,24,36,90,39,77,"ACC","North Carolina","Will Backer","Launch Ratings"
20110,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/98.png?im=FaceCrop,padding=0.7","Mitch","Griffis",72,35,77,"Ashburn","Virginia","Previous",12,"Senior",90,91,85,94,58,80,85,42,59,63,74,23,65,88,30,38,39,30,88,85,34,38,30,35,27,28,77,40,17,17,70,25,39,35,42,34,29,28,0,24,23,86,82,50,36,68,79,86,79,84,69,89,51,53,"Big 12","Texas Tech","Quarterback","Launch Ratings"
10308,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/25.png?im=FaceCrop,padding=0.7","Mitchell","Tomasek",76,55,77,"Columbus","Ohio","Previous",30,"Senior",57,58,69,87,63,65,31,46,31,36,55,48,44,51,30,32,42,27,90,45,85,91,21,28,34,26,77,37,37,23,37,36,28,41,40,11,35,37,0,33,44,57,33,38,32,33,11,26,34,15,29,79,29,40,"MAC","Eastern Michigan","Punter","Launch Ratings"
4621,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/118.png?im=FaceCrop,padding=0.7","Montavious","Cunningham",76,158,77,"Athens","Georgia","Previous",66,"Senior",66,56,72,87,88,82,40,48,40,37,51,30,27,51,29,32,50,87,84,31,30,42,28,79,28,29,77,75,67,82,36,39,52,28,30,83,85,81,0,27,27,59,32,41,37,19,33,13,13,23,25,88,37,30,"ACC","Virginia Tech","Right Tackle","Launch Ratings"
5698,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/53.png?im=FaceCrop,padding=0.7","Mychal","Yharbrough",74,39,77,"Belleville","Michigan","Eligible",24,"Junior",90,85,89,87,65,79,47,58,48,46,65,43,62,84,25,32,71,48,90,68,28,31,58,55,73,26,77,68,50,42,34,80,43,75,77,61,57,70,0,25,33,86,66,59,74,21,32,19,30,15,29,79,46,77,"MAC","Miami (Ohio)","Strong Safety","Launch Ratings"
23704,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/56.png?im=FaceCrop,padding=0.7","Myles","Butler",74,45,77,"Montgomery","Alabama","Previous",5,"Senior",89,86,91,85,69,84,83,43,37,70,72,83,84,82,78,39,53,32,75,85,43,29,86,28,57,82,77,35,23,34,27,41,38,32,51,54,27,27,0,80,85,86,79,55,47,33,24,29,15,12,24,78,45,25,"Conference USA","Middle Tennessee State","Wide Receiver","Launch Ratings"
21656,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/88.png?im=FaceCrop,padding=0.7","Myles","Norwood",74,24,77,"St. Louis","Missouri","Previous",3,"Senior",93,89,95,89,61,75,72,51,32,29,51,46,74,90,44,47,75,56,86,66,32,35,58,58,77,42,77,53,61,54,29,71,40,75,77,48,53,57,0,45,47,89,67,33,67,27,19,29,29,32,45,87,33,80,"SEC","South Carolina","Cornerback","Launch Ratings"
165,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/18.png?im=FaceCrop,padding=0.7","Nahree","Biggins",73,50,77,"Hillside","New Jersey","Previous",5,"Senior",90,82,84,93,75,76,79,61,48,75,81,54,65,81,48,33,84,63,92,81,43,26,52,56,54,55,77,64,55,51,28,73,45,55,68,53,57,68,0,58,24,88,78,76,68,13,35,15,17,35,38,91,76,58,"MAC","Central Michigan","Halfback","Launch Ratings"
21940,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/69.png?im=FaceCrop,padding=0.7","Najee","Story",76,128,77,"Solon","Ohio","Previous",95,"Junior",79,62,75,93,83,83,29,77,28,30,52,29,35,53,29,71,84,70,88,29,44,30,34,56,39,29,77,61,57,53,30,84,83,34,85,55,52,59,0,29,29,67,29,31,79,16,12,17,22,34,28,93,32,30,"Big Ten","Northwestern","Defensive Tackle","Launch Ratings"
10029,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/92.png?im=FaceCrop,padding=0.7","Nate","Palmer",72,30,77,"Decatur","Texas","Previous",21,"Freshman",92,87,85,86,65,72,82,36,38,76,77,58,67,86,44,27,33,38,85,76,32,30,83,37,23,63,77,49,43,48,48,41,29,32,33,43,32,33,0,64,59,88,73,63,32,15,11,22,28,26,40,86,64,24,"Big 12","TCU","Halfback","Launch Ratings"
2894,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/80.png?im=FaceCrop,padding=0.7","Nate","Temple",76,85,77,"Abbeville","South Carolina","Previous",6,"Senior",81,74,77,82,75,86,32,75,48,36,54,30,32,63,33,81,90,60,83,31,29,34,33,28,51,31,77,43,43,36,24,78,77,37,87,30,38,41,0,30,29,74,29,32,85,26,18,17,32,24,25,85,34,60,"ACC","Pittsburgh","Left Edge","Launch Ratings"
10063,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/54.png?im=FaceCrop,padding=0.7","Nathan","Efobi",75,147,77,"Atlanta","Georgia","Previous",55,"Junior",76,74,74,88,95,85,49,58,30,48,54,32,31,51,35,39,68,83,86,33,41,40,34,81,35,37,77,76,76,77,45,42,64,36,34,74,80,69,0,37,37,60,35,49,47,20,20,24,12,27,27,86,47,33,"Big Ten","Michigan","Right Guard","Launch Ratings"
1340,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/116.png?im=FaceCrop,padding=0.7","Nick","Haberer",74,53,77,"Sunshine Coast","Non-US","Previous",38,"Senior",66,56,62,89,63,67,46,42,33,47,53,46,39,58,25,48,37,45,86,45,80,90,27,38,45,37,77,39,47,34,49,35,48,28,26,11,44,44,0,38,48,63,44,39,42,29,34,16,21,12,44,91,35,36,"SEC","Vanderbilt","Punter","Launch Ratings"
7379,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/116.png?im=FaceCrop,padding=0.7","Nick","Rinaldi",75,74,77,"Dover","Massachusetts","Eligible",24,"Senior",87,78,84,86,74,83,29,70,36,38,52,38,55,75,29,77,77,62,91,29,36,36,35,55,68,29,77,65,60,53,36,82,66,64,84,55,52,61,0,29,29,85,29,38,82,24,24,27,24,27,36,84,38,71,"SEC","Vanderbilt","Mike Backer","Launch Ratings"
18880,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/25.png?im=FaceCrop,padding=0.7","Nick","Harris",79,90,77,"Ellicott City","Maryland","Previous",83,"Senior",83,75,82,93,79,85,59,63,27,66,76,75,76,71,65,60,58,65,90,60,48,33,51,63,35,70,77,64,65,61,35,37,57,19,58,65,65,66,0,77,77,76,55,70,63,26,14,20,38,19,34,88,68,38,"MAC","Eastern Michigan","Tight End","Launch Ratings"
20220,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/15.png?im=FaceCrop,padding=0.7","Nik","McMillan",73,27,77,"Buffalo","New York","Previous",3,"Junior",89,85,89,91,75,85,78,56,46,74,76,83,83,84,76,45,71,54,86,80,37,25,64,40,23,81,77,35,38,47,38,42,47,32,68,47,45,45,0,77,87,87,75,68,61,11,33,26,16,31,48,86,65,60,"MAC","Buffalo","Wide Receiver","Launch Ratings"
25731,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/21.png?im=FaceCrop,padding=0.7","Noah","King",74,40,77,"Cincinnati","Ohio","Eligible",26,"Freshman",91,91,90,82,66,73,76,60,51,75,67,71,75,88,72,48,80,60,94,82,34,32,73,53,72,75,77,45,46,45,44,75,44,74,85,55,54,54,0,72,79,88,77,61,67,43,43,44,49,42,33,88,63,78,"Big 12","Colorado","Free Safety","Launch Ratings"
10008,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/113.png?im=FaceCrop,padding=0.7","Noah","Avinger",72,25,77,"Cerritos","California","Previous",1,"Senior",93,89,91,89,61,82,62,52,45,44,62,43,64,88,41,43,71,50,85,72,29,38,64,55,75,38,77,67,51,42,38,80,45,75,79,60,55,68,0,40,42,89,72,50,64,27,26,24,24,32,29,84,43,76,"Mountain West","Utah State","Cornerback","Launch Ratings"
9244,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/46.png?im=FaceCrop,padding=0.7","Noah","Biglow",72,20,77,"Tampa","Florida","Previous",18,"Senior",89,89,91,93,57,79,60,49,40,40,58,42,62,86,41,35,71,52,86,77,42,44,62,56,75,42,77,62,58,51,28,77,40,77,79,57,53,64,0,42,43,87,71,45,64,27,10,21,36,20,26,85,38,83,"Conference USA","Louisiana Tech","Cornerback","Launch Ratings"
7456,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/78.png?im=FaceCrop,padding=0.7","Noble","Thomas Jr.",71,31,77,"Orange","Florida","Previous",21,"Junior",91,88,87,90,60,78,57,56,48,46,54,53,68,86,36,37,76,54,85,76,41,43,59,57,78,37,77,67,60,52,35,79,50,75,76,61,56,68,0,36,61,91,70,53,59,24,15,37,12,37,36,82,44,74,"Pac-12","Oregon State","Cornerback","Launch Ratings"
19257,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/20.png?im=FaceCrop,padding=0.7","Nolan","Hauser",73,30,77,"Cornelius","North Carolina","Eligible",81,"Sophomore",69,69,58,83,46,64,47,39,39,46,56,38,24,58,26,32,35,41,86,36,85,93,46,34,47,42,77,44,35,48,28,25,40,34,31,32,30,24,0,31,29,65,43,48,28,29,18,31,22,10,32,82,43,29,"ACC","Clemson","Kicker","Launch Ratings"
20182,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/122.png?im=FaceCrop,padding=0.7","Oran","Singleton",69,0,77,"Clewiston","Florida","Eligible",3,"Senior",93,90,84,92,47,83,76,31,41,58,62,75,83,90,76,26,26,18,73,83,35,45,78,22,50,84,77,30,5,16,41,55,25,38,23,27,20,18,0,85,79,91,75,23,24,15,32,30,29,16,45,83,45,59,"Big 12","West Virginia","Wide Receiver","Launch Ratings"
19267,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","Paul","Mubenga",77,155,77,"Buford","Georgia","Previous",65,"Sophomore",74,69,74,83,87,79,38,48,26,38,52,28,27,55,31,31,54,87,87,28,36,45,33,83,29,27,77,77,73,81,48,42,49,32,31,79,81,77,0,29,27,63,32,40,40,29,16,27,37,16,48,83,40,28,"SEC","LSU","Left Guard","Launch Ratings"
18255,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/77.png?im=FaceCrop,padding=0.7","Peyton","Woodyard",74,45,77,"Fullerton","California","Eligible",12,"Sophomore",92,88,87,89,62,71,59,59,29,31,49,47,72,86,32,48,78,56,81,51,38,40,50,56,74,30,77,57,60,52,27,71,39,70,82,51,53,57,0,33,44,89,55,37,72,13,29,12,35,26,45,87,33,82,"Big Ten","Oregon","Free Safety","Launch Ratings"
1670,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/87.png?im=FaceCrop,padding=0.7","PJ","Martin",70,42,77,"New Orleans","Louisiana","Previous",0,"Sophomore",89,82,83,86,77,79,80,48,44,73,84,52,67,80,42,41,61,41,91,81,35,29,65,42,22,45,77,56,27,28,32,46,42,34,59,47,33,38,0,56,56,85,78,66,54,23,14,36,18,22,40,84,74,24,"Sun Belt","South Alabama","Halfback","Launch Ratings"
18299,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/48.png?im=FaceCrop,padding=0.7","PJ","Woodland",71,5,77,"Hattiesburg","Mississippi","Eligible",11,"Sophomore",94,91,91,94,49,72,63,42,24,24,58,38,64,90,39,44,61,43,73,71,42,46,57,53,76,41,77,59,55,49,24,72,29,72,77,48,51,54,0,39,41,92,71,25,55,37,33,36,25,16,39,88,26,81,"SEC","LSU","Cornerback","Launch Ratings"
10643,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/65.png?im=FaceCrop,padding=0.7","PJ","Johnson III",72,30,77,"Lake Charles","Louisiana","Previous",0,"Senior",88,87,87,91,62,82,79,43,30,72,68,83,84,85,83,34,47,30,90,84,30,40,70,32,47,79,77,30,22,30,39,59,34,40,44,45,25,28,0,75,86,90,80,40,42,35,31,28,33,12,29,86,52,53,"Conference USA","New Mexico State","Wide Receiver","Launch Ratings"
3239,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/82.png?im=FaceCrop,padding=0.7","Plae","Wyatt",72,51,77,"McKinney","Texas","Previous",41,"Senior",89,86,84,86,65,84,60,62,44,45,70,41,65,81,30,39,86,64,93,53,28,46,59,60,66,31,77,67,65,56,32,84,53,75,86,52,56,69,0,32,38,85,56,62,71,33,28,14,20,13,28,90,61,75,"The American","Rice","Sam Backer","Launch Ratings"
25092,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/120.png?im=FaceCrop,padding=0.7","Quaid","Carr",71,25,77,"Riverside","California","Eligible",21,"Freshman",94,88,90,81,60,60,80,31,24,75,72,62,73,87,61,23,28,55,87,85,40,48,76,44,71,67,77,55,54,56,25,51,25,37,28,41,26,32,0,72,65,92,82,58,27,27,28,17,22,18,31,84,65,31,"Big Ten","Washington","Halfback","Launch Ratings"
31451,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/118.png?im=FaceCrop,padding=0.7","Quentin","Reddish",75,45,77,"Charlotte","North Carolina","Eligible",0,"Sophomore",87,84,87,84,64,77,43,59,38,41,66,29,50,82,23,26,81,63,90,43,24,33,60,56,71,25,77,44,45,45,46,79,40,69,80,47,45,45,0,26,23,87,45,55,75,27,23,22,31,24,40,87,54,75,"ACC","Virginia Tech","Free Safety","Launch Ratings"
21566,"https://ratings-images-prod.pulse.ea.com/college-football-26/helmets/85.png?im=FaceCrop,padding=0.7","Quincy","Likio",74,122,77,"Kapahulu","Hawaii","Previous",91,"Senior",75,65,67,89,84,87,26,79,32,36,49,26,26,55,26,60,78,66,91,26,27,43,31,56,23,26,77,65,52,47,40,84,79,22,80,57,56,65,0,27,24,67,23,38,82,24,32,17,35,16,44,94,40,19,"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment