2022-23 Men's Basketball Roster (2024)

  • 2022-23 Men's Basketball Roster (3)

    {{ player.jersey_number_2 ? player.jersey_number_2 : player.jersey_number }}

    {{ player.position_short }} {{ player.position_long }} {{ player.academic_year_short }} {{ player.height_feet + "'" + ' ' + player.height_inches + '"' }} {{ player.weight }} {{ player.custom3 }} {{ player.major }}

    {{ player.hometown }}

    {{ player.highschool }} {{ player.previous_school }}

    Full Bio

    Full Bio

  • `, props: { displayFields: { required: true, type: Array, }, players: { required: true, type: Array, }, sport: { required: true, type: Object, } }, methods: { checkDisplayFields(field, column_name) { let _field = this.displayFields.find(f => f[column_name] === field) if (_field) { return true; } return false; }, slugify(text) { return text.toString().toLowerCase() .replace(/\s+/g, '-') .replace(/[^\w\-]+/g, '') .replace(/\-\-+/g, '-') .replace(/^-+/, '') .replace(/-+$/, ''); }, }, computed: { computedPlayers() { return this.players.map(player => ({ ...player, has_social_links: player.socials && Object.keys(player.socials).length > 0 || false })) },hasMultipleGenders() { if (this.players.some(player => player.gender !== this.players[0].gender)) return true; return false; } } }); Vue.component('vue-roster-template-grid', { template: `
    {{ $root.roster.title }}
    {{ field.title }}
    `, data: () => ({ activeField: null, }), props: { displayFields: { required: true, type: Array, }, players: { required: true, type: Array, }, sport: { required: true, type: Object, } }, computed: { playersSorted() { if (!this.activeField) return this.players; const [field, dir] = this.activeField; if (!this.fieldMap()[field]) return this.players; const sortKeys = this.fieldMap()[field].sort_keys.reverse(); return sortKeys.reduce((players, key) => [ ...players.sort(this.compareByKey(key, dir))], [ ...this.players ]);},hasMultipleGenders() {if (this.players.some(player => player.gender !== this.players[0].gender)) return true;return false;} }, methods: { fieldMap(player = {}) { return { player_firstname: { display_value: `${player.first_name}`, sort_keys: ['first_name'], }, player_lastname: { display_value: `${player.last_name}`, sort_keys: ['last_name'], }, player_hometown: { display_value: player.hometown, sort_keys: ['hometown'], }, player_highschool: { display_value: player.highschool, sort_keys: ['highschool'], }, fullname: { display_value: `${player.first_name} ${player.last_name}`, sort_keys: ['last_name'], }, fullname_reverse: { display_value: `${player.last_name} ${player.first_name}`, sort_keys: ['last_name'], }, hometownhighschool: { display_value: `${player.hometown} / ${player.highschool}`, sort_keys: ['hometown', 'highschool'], }, rp_position_short: { display_value: player.position_short, sort_keys: ['position_short'], }, rp_position_long: { display_value: player.position_long, sort_keys: ['position_long'], }, height: { display_value: `${player.height_feet}' ${player.height_inches}"`, sort_keys: ['height_feet', 'height_inches'], }, rp_weight: { display_value: player.weight, sort_keys: ['weight'], }, rp_captain: { display_value: player.is_captain ? '*' : '', sort_keys: ['is_captain'], }, rp_custom1: { display_value: player.custom1, sort_keys: ['custom1'], }, rp_custom2: { display_value: player.custom2, sort_keys: ['custom2'], }, rp_custom3: { display_value: player.custom3, sort_keys: ['custom3'], }, image_combined_path: { display_value: player.image != null ? `2022-23 Men's Basketball Roster (4)` : "", sort_keys: '', }, // fullname_letters: { // display_value: `${player.first_name} ${player.last_name} ${player.letters}`, // sort_keys: ['first_name', 'last_name', 'letters'], // }, // rp_letters: { // display_value: player.letters.toString(), // sort_keys: ['letters'], // }, player_previous_school: { display_value: player.previous_school, sort_keys: ['previous_school'], }, player_major: { display_value: player.major, sort_keys: ['major'], }, player_facebook_username: { display_value: player.facebook_username, sort_keys: ['facebook_username'], }, player_instagram_username: { display_value: player.instagram_username, sort_keys: ['instagram_username'], }, player_twitter_username: { display_value: player.twitter_username, sort_keys: ['twitter_username'], }, // rp_letters_string: { // display_value: player.letters.toString(), // sort_keys: ['letters'], // }, player_birthdate: { display_value: player.birthdate != null ? player.birthdate.toString() : '', sort_keys: ['birthdate'], }, hometownprevious: { display_value: `${player.hometown} ${player.previous_school}`, sort_keys: ['hometown', 'previous_school'], }, roster_jerseynum: { display_value: player.jersey_number, sort_keys: ['jersey_number'], }, roster_class: { display_value: player.academic_year_short, sort_keys: ['academic_year_short'], }, default: { display_value: '', sort_keys: '', }, }; }, getPlayerFieldValue(player, field) { var column = field.db_field ? field.db_field : field.special_column; if (!player) return; if (field.field_type === "M") { if (!player.socials[field.title]) { return; } return `${player.socials[field.title].handle}`; } if (!player || !column) return; if (this.fieldMap(player)[column] === undefined) { return; } return this.fieldMap(player)[column].display_value; }, slugify(text) { return text.toString().toLowerCase() .replace(/\s+/g, '-') .replace(/[^\w\-]+/g, '') .replace(/\-\-+/g, '-') .replace(/^-+/, '') .replace(/-+$/, ''); }, sortByField(field) { if (!field) return; if (this.activeField && this.activeField[0] === field) { const [field, dir] = this.activeField; if (dir === 'desc') this.activeField = null; else this.activeField = [ field, 'desc' ]; } else this.activeField = [ field, 'asc' ]; }, compareByKey(key, dir) { return (a, b) => { const _a = this.isNumeric(a[key]) ? parseInt(a[key]) : a[key]; const _b = this.isNumeric(b[key]) ? parseInt(b[key]) : b[key]; if (_a > _b) return (dir === 'asc') ? 1 : -1; else if (_a < _b) return (dir === 'asc') ? -1 : 1; return 0; }; }, isNumeric(str) { if (typeof str != "string") return false; return !isNaN(str) && !isNaN(parseFloat(str)); } } }); Vue.component('vue-roster-template-cards', { template: `
    `, props: { displayFields: { required: true, type: Array, }, players: { required: true, type: Array, }, sport: { required: true, type: Object, } }, methods: { checkDisplayFields(field, column_name) { let _field = this.displayFields.find(f => f[column_name] === field) if (_field) { return true; } return false; }, slugify(text) { return text.toString().toLowerCase() .replace(/\s+/g, '-') .replace(/[^\w\-]+/g, '') .replace(/\-\-+/g, '-') .replace(/^-+/, '') .replace(/-+$/, ''); }, }, computed: { computedPlayers(){ return this.players.map(player => ({ ...player, has_social_links: player.socials && Object.keys(player.socials).length > 0 || false })) } } }); Vue.component('vue-roster-staff', { template: `

    {{ isSupport ? 'Support Staff' : 'Coaches' }}

    `, props: { staff: { required: true, type: Array }, sport: { required: true, type: Object }, isSupport: { type: Boolean, default: false } }, methods: { slugify(text) { return text.toString().toLowerCase() .replace(/\s+/g, '-') .replace(/[^\w\-]+/g, '') .replace(/\-\-+/g, '-') .replace(/^-+/, '') .replace(/-+$/, ''); }, getStaffLink(member) { let rootPath = this.isSupport ? 'roster/staff' : 'roster/coaches'; return `/sports/${this.sport.global_sport_name_slug}/${rootPath}/${this.slugify(member.firstname + ' ' + member.lastname)}/${member.id}`; }, }, }); Vue.directive('reapplyKnockout', { inserted: function (el) { var intervalCounter = 0; var interval = setInterval(function () { if (intervalCounter < 50) { if (ko.dataFor(document.getElementsByTagName('body')[0])) { clearInterval(interval); ko.applyBindings({}, el); } intervalCounter++; } else { clearInterval(interval); } }, 100); } }); var instance = new Vue({ el: '#vue-rosters', data: () => ({ roster: {"id":2417,"template_id":2,"breakdown_size":"large","title":"2022-23 Men's Basketball Roster","display_coaches":true,"content_template":"roster_template_default","hide":false,"sort_alpha":false,"order_rosters_by_women_first":true,"display_fields":[{"title":"#","description":"Jersey Number","field_type":"R","db_field":null,"special_column":"roster_jerseynum","print":true},{"title":"Name","description":"First Name Last Name","field_type":"R","db_field":"fullname","special_column":"roster_fullname","print":true},{"title":"Cl.","description":"Academic Year","field_type":"R","db_field":null,"special_column":"roster_class","print":true},{"title":"Pos.","description":"Position (short)","field_type":"R","db_field":"rp_position_short","special_column":null,"print":true},{"title":"Height","description":"Height","field_type":"R","db_field":"height","special_column":null,"print":true},{"title":"Weight","description":"Weight","field_type":"R","db_field":"rp_weight","special_column":null,"print":true},{"title":"Hometown","description":"Hometown","field_type":"R","db_field":"player_hometown","special_column":null,"print":true},{"title":"High School / Previous School","description":"Custom Field 2","field_type":"R","db_field":"rp_custom2","special_column":null,"print":true}],"note":"

    \r\n","roster_note_location":true,"season":{"id":46,"title":"2022-23","shortname":null,"startdate":"2022-07-01T00:00:00"},"sport":{"id":4,"title":"Men's Basketball","abbreviation":"MBB","shortname":"mbball","short_display":"","global_sport_id":3,"global_sport_name_slug":"mens-basketball","gender":"m","sport_name_slug":"mens-basketball"},"image":{"filename":"377833_20221004_MB_Team_Photo_AF_001_tcG9r.jpg","path":"/images/2022/10/4","title":"KNOXVILLE, TN - 2022.10.04 - Photo Day","alt":"KNOXVILLE, TN - October 04, 2022 - The 2022-2023 Tennessee Volunteers Men's basketball team photo taken at Pratt Pavilion in Knoxville, TN. Photo By Andrew Ferguson/Tennessee AthleticsBack row (L-R): Guard Isaiah Sulack #31, Forward Tobe Awaka #11, Forward Olivier Nkamhoua #13, Forward Jonas Aidoo #0, Forward Uros Plavsic #33, Forward Colin Coyne #35, Forward Julian Phillips #2, Guard Kidd Brizek #32, Guard D.J. Jefferson #44Front row: Guard Evan Shiflet #3, Guard Zakai Zeigler #5, Guard Tyreke Key #4, Guard Josiah-Jordan James #30, Guard Santiago Vescovi #25, Guard B.J. Edwards #1, Guard Jahmai Mashack #15, Guard Alec Kegler #24 of the Tennessee Volunteers","caption":null,"credit_name":null,"orig_width":null,"orig_height":null,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/4/377833_20221004_MB_Team_Photo_AF_001_tcG9r.jpg"},"download":[{"title":"Printable Roster","url":"/documents/2022/9/20/2022-23_Tennessee_Basketball_Roster.pdf"}],"sportfile":null,"statcrew":null,"players":[{"rp_id":17565,"player_id":8417,"roster_display_title":null,"first_name":"Jonas","last_name":"Aidoo","hometown":"Durham, N.C.","highschool":"Liberty Heights Athletic Institute","previous_school":null,"major":null,"birthdate":null,"gender":"M","pronouns":null,"facebook_username":null,"instagram_username":"jonasaidooo","twitter_username":"J0nasAid00","snapchat_username":null,"tiktok_username":"jonasaidoo","cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":241,"height_feet":6,"height_inches":11,"position_short":"F","position_long":"Forward","jersey_number":"0","jersey_number_2":null,"academic_year_number":2,"academic_year_short":"So.","academic_year_long":"Sophom*ore","is_captain":false,"letters":1,"rp_hide":false,"rp_hide_bio":false,"custom1":"Durham, N.C.","custom2":"Liberty Heights Athletic Institute","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_AIDOO_JONAS_P156V.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.06 - Headshot Jonas Aidoo","alt":"KNOXVILLE, TN - October 06, 2022 - Forward Jonas Aidoo #0 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":635,"orig_height":874,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_AIDOO_JONAS_P156V.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"jonasaidooo"},"NIL":{"social_media":{"social_media_id":10,"title":"NIL","icon":"sf-dollar","profile_url":"https://utsports.com/sports/2022/4/23/{0}"},"handle":"nil-submission-page.aspx"},"TikTok":{"social_media":{"social_media_id":6,"title":"TikTok","icon":"sf-tiktok","profile_url":"https://tiktok.com/@{0}"},"handle":"jonasaidoo"},"Twitter":{"social_media":{"social_media_id":1,"title":"Twitter","icon":"sf-twitter","profile_url":"https://twitter.com/{0}"},"handle":"J0nasAid00"}}},{"rp_id":17641,"player_id":10325,"roster_display_title":null,"first_name":"Tobe","last_name":"Awaka","hometown":"Hyde Park, N.Y.","highschool":"Cardinal Hayes High School","previous_school":null,"major":null,"birthdate":null,"gender":"M","pronouns":null,"facebook_username":null,"instagram_username":null,"twitter_username":null,"snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":250,"height_feet":6,"height_inches":8,"position_short":"F","position_long":"Forward","jersey_number":"11","jersey_number_2":null,"academic_year_number":1,"academic_year_short":"Fr.","academic_year_long":"Freshman","is_captain":false,"letters":0,"rp_hide":false,"rp_hide_bio":false,"custom1":"Hyde Park, N.Y.","custom2":"Cardinal Hayes High School","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_AWAKA_TOBE_5tjHw.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.04 - Headshot Tobe Awaka","alt":"KNOXVILLE, TN - October 04, 2022 - Forward Tobe Awaka #11 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":639,"orig_height":878,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_AWAKA_TOBE_5tjHw.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"NIL":{"social_media":{"social_media_id":10,"title":"NIL","icon":"sf-dollar","profile_url":"https://utsports.com/sports/2022/4/23/{0}"},"handle":"nil-submission-page.aspx"}}},{"rp_id":18352,"player_id":10462,"roster_display_title":null,"first_name":"Colin","last_name":"Coyne","hometown":"Fredericksburg, Va.","highschool":"Stafford Senior High School","previous_school":"University of Mary Washington","major":null,"birthdate":null,"gender":"M","pronouns":null,"facebook_username":null,"instagram_username":null,"twitter_username":null,"snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":239,"height_feet":6,"height_inches":9,"position_short":"F","position_long":"Forward","jersey_number":"35","jersey_number_2":null,"academic_year_number":3,"academic_year_short":"Jr.","academic_year_long":"Junior","is_captain":false,"letters":0,"rp_hide":false,"rp_hide_bio":false,"custom1":"Fredericksburg, Va.","custom2":"Stafford Senior High School / University of Mary Washington (Va.)","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_COYNE_COLIN_472Wl.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.04 - Headshot Colin Coyne","alt":"KNOXVILLE, TN - October 04, 2022 - Forward Colin Coyne #35 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":644,"orig_height":885,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_COYNE_COLIN_472Wl.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{}},{"rp_id":18913,"player_id":10600,"roster_display_title":null,"first_name":"Freddie","last_name":"Dilione V","hometown":"Fayetteville, N.C.","highschool":"Word of God Christian Academy","previous_school":null,"major":null,"birthdate":null,"gender":"M","pronouns":null,"facebook_username":null,"instagram_username":null,"twitter_username":null,"snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":180,"height_feet":6,"height_inches":5,"position_short":"G","position_long":"Guard","jersey_number":"10","jersey_number_2":null,"academic_year_number":1,"academic_year_short":"Fr.","academic_year_long":"Freshman","is_captain":false,"letters":0,"rp_hide":false,"rp_hide_bio":false,"custom1":"Fayetteville, N.C.","custom2":"Word of God Christian Academy","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"Freddie_Dilione_Headshot.png","path":"/images/2023/1/19","title":null,"alt":"Freddie Dilione Headshot","caption":null,"credit_name":null,"orig_width":200,"orig_height":275,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2023/1/19/Freddie_Dilione_Headshot.png"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"f.a.d_5"},"Twitter":{"social_media":{"social_media_id":1,"title":"Twitter","icon":"sf-twitter","profile_url":"https://twitter.com/{0}"},"handle":"Freddiedilione5"}}},{"rp_id":17574,"player_id":10301,"roster_display_title":null,"first_name":"B.J.","last_name":"Edwards","hometown":"Knoxville, Tenn.","highschool":"Knoxville Catholic High School","previous_school":null,"major":null,"birthdate":null,"gender":"M","pronouns":null,"facebook_username":null,"instagram_username":"swaggyb.5","twitter_username":"BJ_Edwards5","snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":188,"height_feet":6,"height_inches":3,"position_short":"G","position_long":"Guard","jersey_number":"1","jersey_number_2":null,"academic_year_number":1,"academic_year_short":"Fr.","academic_year_long":"Freshman","is_captain":false,"letters":0,"rp_hide":false,"rp_hide_bio":false,"custom1":"Knoxville, Tenn.","custom2":"Knoxville Catholic High School","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_EDWARDS_BJ_wT3z5.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.04 - Headshot B.J. Edwards","alt":"KNOXVILLE, TN - October 04, 2022 - Guard B.J. Edwards #1 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":676,"orig_height":929,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_EDWARDS_BJ_wT3z5.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"swaggyb.5"},"NIL":{"social_media":{"social_media_id":10,"title":"NIL","icon":"sf-dollar","profile_url":"https://utsports.com/sports/2022/4/23/{0}"},"handle":"nil-submission-page.aspx"},"Twitter":{"social_media":{"social_media_id":1,"title":"Twitter","icon":"sf-twitter","profile_url":"https://twitter.com/{0}"},"handle":"BJ_Edwards5"}}},{"rp_id":17566,"player_id":8188,"roster_display_title":null,"first_name":"Kent","last_name":"Gilbert","hometown":"Greenville, N.C.","highschool":"D.H. Conley High School","previous_school":"D.H. Conley High School","major":null,"birthdate":null,"gender":"M","pronouns":null,"facebook_username":null,"instagram_username":"kgilbert799","twitter_username":"kgilbert799","snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":178,"height_feet":6,"height_inches":1,"position_short":"G","position_long":"Guard","jersey_number":"21","jersey_number_2":null,"academic_year_number":3,"academic_year_short":"Jr.","academic_year_long":"Junior","is_captain":false,"letters":2,"rp_hide":false,"rp_hide_bio":false,"custom1":"Greenville, N.C. / D.H. Conley High School","custom2":"D.H. Conley High School","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_GILBERT_KENT_lXXkS.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.06 - Headshot Kent Gilbert","alt":"KNOXVILLE, TN - October 06, 2022 - Guard Kent Gilbert #21 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":662,"orig_height":897,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_GILBERT_KENT_lXXkS.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"kgilbert799"},"Twitter":{"social_media":{"social_media_id":1,"title":"Twitter","icon":"sf-twitter","profile_url":"https://twitter.com/{0}"},"handle":"kgilbert799"}}},{"rp_id":17567,"player_id":6743,"roster_display_title":null,"first_name":"Josiah-Jordan","last_name":"James","hometown":"Charleston, S.C.","highschool":"Porter-Gaud School","previous_school":"Porter-Gaud School","major":null,"birthdate":null,"gender":"M","pronouns":null,"facebook_username":null,"instagram_username":"josiah.j.james","twitter_username":"jjjames30","snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":224,"height_feet":6,"height_inches":6,"position_short":"G","position_long":"Guard","jersey_number":"30","jersey_number_2":null,"academic_year_number":4,"academic_year_short":"Sr.","academic_year_long":"Senior","is_captain":false,"letters":3,"rp_hide":false,"rp_hide_bio":false,"custom1":"Charleston, S.C.","custom2":"Porter-Gaud School","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_JAMES_JOSIAH-JORDAN_Bl7Mk.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.04 - Headshot Josiah-Jordan James","alt":"KNOXVILLE, TN - October 04, 2022 - Guard Josiah-Jordan James #30 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":634,"orig_height":872,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_JAMES_JOSIAH-JORDAN_Bl7Mk.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"josiah.j.james"},"Shop":{"social_media":{"social_media_id":11,"title":"Shop","icon":"sf-cart","profile_url":"{0}"},"handle":"https://www.utvolshop.com/Josiah-Jordan-James-Caricature-Tee?location=&quantity=1&color=Orange"},"Twitter":{"social_media":{"social_media_id":1,"title":"Twitter","icon":"sf-twitter","profile_url":"https://twitter.com/{0}"},"handle":"jjjames30"}}},{"rp_id":17582,"player_id":10308,"roster_display_title":null,"first_name":"D.J.","last_name":"Jefferson","hometown":"Richardson, Texas","highschool":"Minnesota Prep Academy","previous_school":null,"major":null,"birthdate":null,"gender":"M","pronouns":null,"facebook_username":null,"instagram_username":"dj.jefferson4","twitter_username":"4buck4t_","snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":207,"height_feet":6,"height_inches":5,"position_short":"G","position_long":"Guard","jersey_number":"44","jersey_number_2":null,"academic_year_number":1,"academic_year_short":"Fr.","academic_year_long":"Freshman","is_captain":false,"letters":0,"rp_hide":false,"rp_hide_bio":false,"custom1":"Richardson, Texas","custom2":"Minnesota Prep Academy","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_JEFFERSON_DJ_uOmIt.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.04 - Headshot D.J. Jefferson","alt":"KNOXVILLE, TN - October 04, 2022 - Guard D.J. Jefferson #44 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":657,"orig_height":903,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_JEFFERSON_DJ_uOmIt.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"dj.jefferson44"},"NIL":{"social_media":{"social_media_id":10,"title":"NIL","icon":"sf-dollar","profile_url":"https://utsports.com/sports/2022/4/23/{0}"},"handle":"nil-submission-page.aspx"},"Twitter":{"social_media":{"social_media_id":1,"title":"Twitter","icon":"sf-twitter","profile_url":"https://twitter.com/{0}"},"handle":"4buck4t_"}}},{"rp_id":17581,"player_id":10307,"roster_display_title":null,"first_name":"Alec","last_name":"Kegler","hometown":"Clarksville, Tenn.","highschool":"Northeast High School","previous_school":"Roane State Community College","major":null,"birthdate":null,"gender":"M","pronouns":null,"facebook_username":null,"instagram_username":"AK24._","twitter_username":"thatmanAlec","snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":212,"height_feet":6,"height_inches":4,"position_short":"F","position_long":"Forward","jersey_number":"24","jersey_number_2":null,"academic_year_number":2,"academic_year_short":"So.","academic_year_long":"Sophom*ore","is_captain":false,"letters":0,"rp_hide":false,"rp_hide_bio":false,"custom1":"Clarksville, Tenn.","custom2":"Northeast High School / Roane State Community College","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_KEGLER_ALEC_VIW68.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.06 - Headshot Alec Kegler","alt":"KNOXVILLE, TN - October 06, 2022 - Guard Alec Kegler #24 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":713,"orig_height":980,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_KEGLER_ALEC_VIW68.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"AK24._"},"Twitter":{"social_media":{"social_media_id":1,"title":"Twitter","icon":"sf-twitter","profile_url":"https://twitter.com/{0}"},"handle":"thatmanAlec"}}},{"rp_id":17575,"player_id":10302,"roster_display_title":null,"first_name":"Tyreke","last_name":"Key","hometown":"Celina, Tenn.","highschool":"Clay County High School","previous_school":"Indiana State University","major":null,"birthdate":null,"gender":"M","pronouns":"","facebook_username":null,"instagram_username":"tyrekekey","twitter_username":"TyrekeKey","snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":211,"height_feet":6,"height_inches":2,"position_short":"G","position_long":"Guard","jersey_number":"4","jersey_number_2":null,"academic_year_number":5,"academic_year_short":"Gr.","academic_year_long":"Graduate Student","is_captain":false,"letters":4,"rp_hide":false,"rp_hide_bio":false,"custom1":"Celina, Tenn.","custom2":"Clay County High School / Indiana State University","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_KEY_TYREKE_qxMKa.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.06 - Headshot Tyreke Key","alt":"KNOXVILLE, TN - October 06, 2022 - Guard Tyreke Key #4 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":640,"orig_height":880,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_KEY_TYREKE_qxMKa.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"tyrekekey"},"NIL":{"social_media":{"social_media_id":10,"title":"NIL","icon":"sf-dollar","profile_url":"https://utsports.com/sports/2022/4/23/{0}"},"handle":"nil-submission-page.aspx"},"Twitter":{"social_media":{"social_media_id":1,"title":"Twitter","icon":"sf-twitter","profile_url":"https://twitter.com/{0}"},"handle":"TyrekeKey"}}},{"rp_id":17568,"player_id":8413,"roster_display_title":null,"first_name":"Jahmai","last_name":"Mashack","hometown":"Fontana, Calif.","highschool":"Etiwanda High School","previous_school":null,"major":null,"birthdate":null,"gender":"M","pronouns":null,"facebook_username":null,"instagram_username":"jmash.21","twitter_username":"JahmaiM","snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":201,"height_feet":6,"height_inches":4,"position_short":"G","position_long":"Guard","jersey_number":"15","jersey_number_2":null,"academic_year_number":2,"academic_year_short":"So.","academic_year_long":"Sophom*ore","is_captain":false,"letters":1,"rp_hide":false,"rp_hide_bio":false,"custom1":"Fontana, Calif.","custom2":"Etiwanda High School","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_MASHACK_JAHMAI_eYkye.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.04 - Headshot Jahmai Mashack","alt":"KNOXVILLE, TN - October 04, 2022 - Guard Jahmai Mashack #15 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":644,"orig_height":886,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_MASHACK_JAHMAI_eYkye.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"jmash.21"},"NIL":{"social_media":{"social_media_id":10,"title":"NIL","icon":"sf-dollar","profile_url":"https://utsports.com/sports/2022/4/23/{0}"},"handle":"nil-submission-page.aspx"},"Twitter":{"social_media":{"social_media_id":1,"title":"Twitter","icon":"sf-twitter","profile_url":"https://twitter.com/{0}"},"handle":"JahmaiM"}}},{"rp_id":17569,"player_id":6746,"roster_display_title":null,"first_name":"Olivier","last_name":"Nkamhoua","hometown":"Helsinki, Finland","highschool":"Bishop Walsh School (Md.)","previous_school":"Bishop Walsh School (Md.)","major":null,"birthdate":null,"gender":"M","pronouns":null,"facebook_username":null,"instagram_username":"olivier.r.n","twitter_username":"olivier_rn","snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":236,"height_feet":6,"height_inches":9,"position_short":"F","position_long":"Forward","jersey_number":"13","jersey_number_2":null,"academic_year_number":4,"academic_year_short":"Sr.","academic_year_long":"Senior","is_captain":false,"letters":3,"rp_hide":false,"rp_hide_bio":false,"custom1":"Helsinki, Finland","custom2":"Bishop Walsh School (Md.)","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_NKAMHOUA_OLIVIER_JTQG4.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.04 - Headshot Olivier Nkamhoua","alt":"KNOXVILLE, TN - October 04, 2022 - Forward Olivier Nkamhoua #13 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":651,"orig_height":895,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_NKAMHOUA_OLIVIER_JTQG4.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"olivier.r.n"},"NIL":{"social_media":{"social_media_id":10,"title":"NIL","icon":"sf-dollar","profile_url":"https://utsports.com/sports/2022/4/23/{0}"},"handle":"nil-submission-page.aspx"},"Twitter":{"social_media":{"social_media_id":1,"title":"Twitter","icon":"sf-twitter","profile_url":"https://twitter.com/{0}"},"handle":"olivier_rn"}}},{"rp_id":17576,"player_id":10303,"roster_display_title":null,"first_name":"Julian","last_name":"Phillips","hometown":"Blythewood, S.C.","highschool":"Link Academy (Mo.)","previous_school":null,"major":null,"birthdate":null,"gender":"M","pronouns":null,"facebook_username":null,"instagram_username":"ju1ianphillips","twitter_username":"ju1ianphillips","snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":198,"height_feet":6,"height_inches":8,"position_short":"F","position_long":"Forward","jersey_number":"2","jersey_number_2":null,"academic_year_number":1,"academic_year_short":"Fr.","academic_year_long":"Freshman","is_captain":false,"letters":0,"rp_hide":false,"rp_hide_bio":false,"custom1":"Blythewood, S.C.","custom2":"Link Academy (Mo.)","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_PHILLIPS_JULIAN_kueVg.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.04 - Headshot Julian Phillips","alt":"KNOXVILLE, TN - October 04, 2022 - Forward Julian Phillips #2 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":672,"orig_height":925,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_PHILLIPS_JULIAN_kueVg.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"ju1ianphillips"},"Twitter":{"social_media":{"social_media_id":1,"title":"Twitter","icon":"sf-twitter","profile_url":"https://twitter.com/{0}"},"handle":"ju1ianphillips"}}},{"rp_id":17570,"player_id":6747,"roster_display_title":null,"first_name":"Uros","last_name":"Plavsic","hometown":"Ivanjica, Serbia","highschool":"Hamilton Heights Christian Academy (Tenn.)","previous_school":"Arizona State University","major":null,"birthdate":null,"gender":"M","pronouns":"","facebook_username":null,"instagram_username":"urosp33","twitter_username":"urosp34","snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":265,"height_feet":7,"height_inches":1,"position_short":"F","position_long":"Forward","jersey_number":"33","jersey_number_2":null,"academic_year_number":4,"academic_year_short":"Sr.","academic_year_long":"Senior","is_captain":false,"letters":3,"rp_hide":false,"rp_hide_bio":false,"custom1":"Ivanjica, Serbia","custom2":"Hamilton Heights Christian Academy (Tenn.) / Arizona State University","custom3":"Ü-rosh PLÄV-chich","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_PLAVSIC_UROS_2drKR.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.04 - Headshot Uros Plavsic","alt":"KNOXVILLE, TN - October 04, 2022 - Forward Uros Plavsic #33 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":632,"orig_height":870,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_PLAVSIC_UROS_2drKR.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"urosp33"},"Shop":{"social_media":{"social_media_id":11,"title":"Shop","icon":"sf-cart","profile_url":"{0}"},"handle":"https://www.utvolshop.com/search?keywords=uros"},"Twitter":{"social_media":{"social_media_id":1,"title":"Twitter","icon":"sf-twitter","profile_url":"https://twitter.com/{0}"},"handle":"urosp34"}}},{"rp_id":17583,"player_id":10309,"roster_display_title":null,"first_name":"Evan","last_name":"Shiflet","hometown":"Nashville, Tenn.","highschool":"Christ Presbyterian Academy","previous_school":null,"major":null,"birthdate":null,"gender":"M","pronouns":null,"facebook_username":null,"instagram_username":"evan.shiflet","twitter_username":"evan_shiflet","snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":197,"height_feet":6,"height_inches":2,"position_short":"G","position_long":"Guard","jersey_number":"3","jersey_number_2":null,"academic_year_number":1,"academic_year_short":"Fr.","academic_year_long":"Freshman","is_captain":false,"letters":0,"rp_hide":false,"rp_hide_bio":false,"custom1":"Nashville, Tenn.","custom2":"Christ Presbyterian Academy","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_SHIFLET_EVAN_gvmwo.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.04 - Headshot Evan Shiflet","alt":"KNOXVILLE, TN - October 04, 2022 - Guard Evan Shiflet #3 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":631,"orig_height":868,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_SHIFLET_EVAN_gvmwo.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"evan.shiflet"},"Twitter":{"social_media":{"social_media_id":1,"title":"Twitter","icon":"sf-twitter","profile_url":"https://twitter.com/{0}"},"handle":"evan_shiflet"}}},{"rp_id":17571,"player_id":8190,"roster_display_title":null,"first_name":"Isaiah","last_name":"Sulack","hometown":"Knoxville, Tenn.","highschool":"Christian Academy of Knoxville","previous_school":"Bossier Parish (La.) Community College","major":null,"birthdate":null,"gender":"M","pronouns":"","facebook_username":null,"instagram_username":"isaiahsulack","twitter_username":"isaiahsulack","snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":192,"height_feet":6,"height_inches":5,"position_short":"G","position_long":"Guard","jersey_number":"31","jersey_number_2":null,"academic_year_number":3,"academic_year_short":"Jr.","academic_year_long":"Junior","is_captain":false,"letters":3,"rp_hide":false,"rp_hide_bio":false,"custom1":"Knoxville, Tenn. / Bossier Parish (La.) Community College","custom2":"Christian Academy of Knoxville / Bossier Parish (La.) Community College","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_SULACK_ISAIAH_CbOlY.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.04 - Headshot Isaiah Sulack","alt":"KNOXVILLE, TN - October 04, 2022 - Guard Isaiah Sulack #31 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":680,"orig_height":935,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_SULACK_ISAIAH_CbOlY.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"isaiahsulack"},"Twitter":{"social_media":{"social_media_id":1,"title":"Twitter","icon":"sf-twitter","profile_url":"https://twitter.com/{0}"},"handle":"isaiahsulack"}}},{"rp_id":17572,"player_id":7958,"roster_display_title":null,"first_name":"Santiago","last_name":"Vescovi","hometown":"Montevideo, Uruguay","highschool":"NBA Global Academy (Canberra, Australia)","previous_school":"NBA Global Academy (Canberra, Australia)","major":null,"birthdate":null,"gender":"M","pronouns":null,"facebook_username":null,"instagram_username":"santivescovi","twitter_username":null,"snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":192,"height_feet":6,"height_inches":3,"position_short":"G","position_long":"Guard","jersey_number":"25","jersey_number_2":null,"academic_year_number":4,"academic_year_short":"Sr.","academic_year_long":"Senior","is_captain":false,"letters":3,"rp_hide":false,"rp_hide_bio":false,"custom1":"Montevideo, Uruguay / NBA Global Academy","custom2":"NBA Global Academy (Canberra, Australia)","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_VESCOVI_SANTIAGO_VZm9Q.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.04 - Headshot Santiago Vescovi","alt":"KNOXVILLE, TN - October 04, 2022 - Guard Santiago Vescovi #25 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":652,"orig_height":896,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_VESCOVI_SANTIAGO_VZm9Q.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"santivescovi"},"Shop":{"social_media":{"social_media_id":11,"title":"Shop","icon":"sf-cart","profile_url":"{0}"},"handle":"https://www.utvolshop.com/search?keywords=vescovi&page=1"}}},{"rp_id":17573,"player_id":8590,"roster_display_title":null,"first_name":"Zakai","last_name":"Zeigler","hometown":"Long Island, N.Y.","highschool":"Our Saviour Lutheran School","previous_school":null,"major":null,"birthdate":null,"gender":"M","pronouns":null,"facebook_username":null,"instagram_username":"Realzakaiz","twitter_username":"Realzakaiz","snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":171,"height_feet":5,"height_inches":9,"position_short":"G","position_long":"Guard","jersey_number":"5","jersey_number_2":null,"academic_year_number":2,"academic_year_short":"So.","academic_year_long":"Sophom*ore","is_captain":false,"letters":1,"rp_hide":false,"rp_hide_bio":false,"custom1":"Long Island, N.Y.","custom2":"Our Saviour Lutheran School","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_ZEIGLER_ZAKAI_bb4fM.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.04 - Headshot Zakai Zeigler","alt":"KNOXVILLE, TN - October 04, 2022 - Guard Zakai Zeigler #5 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":629,"orig_height":865,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_ZEIGLER_ZAKAI_bb4fM.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"Realzakaiz"},"Shop":{"social_media":{"social_media_id":11,"title":"Shop","icon":"sf-cart","profile_url":"{0}"},"handle":"https://www.utvolshop.com/search?keywords=zakai"},"Twitter":{"social_media":{"social_media_id":1,"title":"Twitter","icon":"sf-twitter","profile_url":"https://twitter.com/{0}"},"handle":"Realzakaiz"}}}],"all_staff_image":null,"coaches":[{"id":4964,"staff_id":0,"firstname":"Rick","lastname":"Barnes","title":"Head Coach","custom1":null,"custom2":null,"custom3":null,"custom4":null,"email":"rick.barnes@tennessee.edu","phone":"rick.barnes@tennessee.edu","twitter":"RickBarnesUT","image":{"filename":"Barnes_Rick_Head_Coach.jpg","path":"/images/2018/4/24","title":"Rick Barnes","alt":"Rick Barnes","caption":null,"credit_name":null,"orig_width":null,"orig_height":null,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2018/4/24/Barnes_Rick_Head_Coach.jpg"}},{"id":4966,"staff_id":0,"firstname":"Justin","lastname":"Gainey","title":"Associate Head Coach","custom1":null,"custom2":null,"custom3":null,"custom4":null,"email":null,"phone":null,"twitter":null,"image":{"filename":"336250_20210830_MB_Headshot_AF_001.jpg","path":"/images/2021/8/31","title":"KNOXVILLE, TN - 2021.08.30 - Headshot Justin Gainey","alt":"KNOXVILLE, TN - 2021.08.30 - Headshot Justin Gainey","caption":null,"credit_name":null,"orig_width":null,"orig_height":null,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2021/8/31/336250_20210830_MB_Headshot_AF_001.jpg"}},{"id":4967,"staff_id":0,"firstname":"Rod","lastname":"Clark","title":"Assistant Coach","custom1":null,"custom2":null,"custom3":null,"custom4":null,"email":null,"phone":null,"twitter":null,"image":{"filename":"333918_20210812_MB_Headshot_AF_001.jpg","path":"/images/2021/8/12","title":"KNOXVILLE, TN - 2021.08.12 - Headshot Rod Clark","alt":"KNOXVILLE, TN - 2021.08.12 - Headshot Rod Clark","caption":null,"credit_name":null,"orig_width":null,"orig_height":null,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2021/8/12/333918_20210812_MB_Headshot_AF_001.jpg"}},{"id":4969,"staff_id":0,"firstname":"Gregg","lastname":"Polinsky","title":"Assistant Coach","custom1":null,"custom2":null,"custom3":null,"custom4":null,"email":null,"phone":null,"twitter":null,"image":{"filename":"358387_20220322_MB_Headshot_AF_001.jpg","path":"/images/2022/3/22","title":"KNOXVILLE, TN - 2022.03.22 - Headshot Assistant Coach Gregg Polinsky","alt":"KNOXVILLE, TN - 2022.03.22 - Headshot","caption":null,"credit_name":null,"orig_width":null,"orig_height":null,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/3/22/358387_20220322_MB_Headshot_AF_001.jpg"}},{"id":4968,"staff_id":0,"firstname":"Garrett","lastname":"Medenwald","title":"Director of Men's Basketball Sports Performance","custom1":null,"custom2":null,"custom3":null,"custom4":null,"email":"garrett.medenwald@utk.edu","phone":"garrett.medenwald@utk.edu","twitter":null,"image":{"filename":"20210428_Headshots_AF_006_Garrett_Medenwald.JPG","path":"/images/2021/6/2","title":"KNOXVILLE, TN - 2021.04.28 - Garrett Medenwald Headshot","alt":"KNOXVILLE, TN - 2021.04.28 - Garrett Medenwald Headshot","caption":null,"credit_name":null,"orig_width":null,"orig_height":null,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2021/6/2/20210428_Headshots_AF_006_Garrett_Medenwald.JPG"}}],"support":[{"id":269,"staff_id":393,"firstname":"Mary-Carter","lastname":"Eggert","title":"Director of Basketball Operations","custom1":null,"custom2":null,"custom3":null,"custom4":null,"email":"marycarter@utk.edu","phone":"marycarter@utk.edu","twitter":null,"image":{"filename":"Eggert_Mary_Carter_Director_of_Operations.jpg","path":"/images/2018/4/24","title":"Mary-Carter Eggert","alt":"Mary-Carter Eggert","caption":null,"credit_name":null,"orig_width":null,"orig_height":null,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2018/4/24/Eggert_Mary_Carter_Director_of_Operations.jpg"}},{"id":268,"staff_id":82,"firstname":"Chad","lastname":"Newman","title":"Athletic Trainer","custom1":null,"custom2":null,"custom3":null,"custom4":null,"email":"jnewman@utk.edu","phone":"jnewman@utk.edu","twitter":null,"image":{"filename":"20210429_Headshots_AF_041.JPG","path":"/images/2021/6/2","title":"KNOXVILLE, TN - 2021.04.29 - Chad Newman Headshot","alt":"KNOXVILLE, TN - 2021.04.29 - Chad Newman Headshot","caption":null,"credit_name":null,"orig_width":null,"orig_height":null,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2021/6/2/20210429_Headshots_AF_041.JPG"}},{"id":270,"staff_id":1770,"firstname":"Bryan","lastname":"Lentz","title":"Director of Player Development","custom1":null,"custom2":null,"custom3":null,"custom4":null,"email":"wlentz@utk.edu","phone":"wlentz@utk.edu","twitter":null,"image":{"filename":"305594_20201013_MB_Headshot_AF_001.jpg","path":"/images/2020/10/23","title":"KNOXVILLE, TN - 2020.10.13 - Men’s Basketball Family Portraits","alt":"KNOXVILLE, TN - 2020.10.13 - Men’s Basketball Family Portraits","caption":null,"credit_name":null,"orig_width":null,"orig_height":null,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2020/10/23/305594_20201013_MB_Headshot_AF_001.jpg"}},{"id":272,"staff_id":5071,"firstname":"Luke","lastname":"Schapker","title":"Director of Video and Analytics","custom1":null,"custom2":null,"custom3":null,"custom4":null,"email":null,"phone":null,"twitter":null,"image":{"filename":"337338_20210909_MB_Headshots_CJ_001.jpg","path":"/images/2021/9/13","title":"KNOXVILLE, TN - 2021.09.09 - Headshot Luke Schapker","alt":"KNOXVILLE, TN - 2021.09.09 - Headshot Luke Schapker","caption":null,"credit_name":null,"orig_width":null,"orig_height":null,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2021/9/13/337338_20210909_MB_Headshots_CJ_001.jpg"}},{"id":301,"staff_id":5206,"firstname":"Lucas","lastname":"Campbell","title":"Director of Recruiting","custom1":null,"custom2":null,"custom3":null,"custom4":null,"email":null,"phone":null,"twitter":null,"image":{"filename":"366196_20220627_MB_Headshot_AF_001.jpg","path":"/images/2022/6/28","title":"KNOXVILLE, TN - 2022.06.27 - Headshot Lucas Campbell","alt":"KNOXVILLE, TN - 2022.06.27 - Headshot Lucas Campbell","caption":null,"credit_name":null,"orig_width":null,"orig_height":null,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/6/28/366196_20220627_MB_Headshot_AF_001.jpg"}},{"id":299,"staff_id":5204,"firstname":"Keith","lastname":"Clemons","title":"Graduate Assistant","custom1":null,"custom2":null,"custom3":null,"custom4":null,"email":null,"phone":null,"twitter":null,"image":{"filename":"366169_20220622_MB_Headshot_AF_003.jpg","path":"/images/2022/6/27","title":"KNOXVILLE, TN - 2022.06.22 - Headshot Keith Clemons","alt":"KNOXVILLE, TN - 2022.06.22 - Headshot Keith Clemons","caption":null,"credit_name":null,"orig_width":null,"orig_height":null,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/6/27/366169_20220622_MB_Headshot_AF_003.jpg"}},{"id":300,"staff_id":5205,"firstname":"Riley","lastname":"Collins","title":"Graduate Assistant","custom1":null,"custom2":null,"custom3":null,"custom4":null,"email":null,"phone":null,"twitter":null,"image":{"filename":"366168_20220622_MB_Headshot_AF_002.jpg","path":"/images/2022/6/27","title":"KNOXVILLE, TN - 2022.06.22 - Headshot Riley Collins","alt":"KNOXVILLE, TN - 2022.06.22 - Headshot Riley Collins","caption":null,"credit_name":null,"orig_width":null,"orig_height":null,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/6/27/366168_20220622_MB_Headshot_AF_002.jpg"}}],"players_by_gender":{"M":[{"rp_id":17565,"player_id":8417,"roster_display_title":null,"first_name":"Jonas","last_name":"Aidoo","hometown":"Durham, N.C.","highschool":"Liberty Heights Athletic Institute","previous_school":null,"major":null,"birthdate":null,"gender":"M","pronouns":null,"facebook_username":null,"instagram_username":"jonasaidooo","twitter_username":"J0nasAid00","snapchat_username":null,"tiktok_username":"jonasaidoo","cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":241,"height_feet":6,"height_inches":11,"position_short":"F","position_long":"Forward","jersey_number":"0","jersey_number_2":null,"academic_year_number":2,"academic_year_short":"So.","academic_year_long":"Sophom*ore","is_captain":false,"letters":1,"rp_hide":false,"rp_hide_bio":false,"custom1":"Durham, N.C.","custom2":"Liberty Heights Athletic Institute","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_AIDOO_JONAS_P156V.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.06 - Headshot Jonas Aidoo","alt":"KNOXVILLE, TN - October 06, 2022 - Forward Jonas Aidoo #0 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":635,"orig_height":874,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_AIDOO_JONAS_P156V.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"jonasaidooo"},"NIL":{"social_media":{"social_media_id":10,"title":"NIL","icon":"sf-dollar","profile_url":"https://utsports.com/sports/2022/4/23/{0}"},"handle":"nil-submission-page.aspx"},"TikTok":{"social_media":{"social_media_id":6,"title":"TikTok","icon":"sf-tiktok","profile_url":"https://tiktok.com/@{0}"},"handle":"jonasaidoo"},"Twitter":{"social_media":{"social_media_id":1,"title":"Twitter","icon":"sf-twitter","profile_url":"https://twitter.com/{0}"},"handle":"J0nasAid00"}}},{"rp_id":17641,"player_id":10325,"roster_display_title":null,"first_name":"Tobe","last_name":"Awaka","hometown":"Hyde Park, N.Y.","highschool":"Cardinal Hayes High School","previous_school":null,"major":null,"birthdate":null,"gender":"M","pronouns":null,"facebook_username":null,"instagram_username":null,"twitter_username":null,"snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":250,"height_feet":6,"height_inches":8,"position_short":"F","position_long":"Forward","jersey_number":"11","jersey_number_2":null,"academic_year_number":1,"academic_year_short":"Fr.","academic_year_long":"Freshman","is_captain":false,"letters":0,"rp_hide":false,"rp_hide_bio":false,"custom1":"Hyde Park, N.Y.","custom2":"Cardinal Hayes High School","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_AWAKA_TOBE_5tjHw.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.04 - Headshot Tobe Awaka","alt":"KNOXVILLE, TN - October 04, 2022 - Forward Tobe Awaka #11 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":639,"orig_height":878,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_AWAKA_TOBE_5tjHw.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"NIL":{"social_media":{"social_media_id":10,"title":"NIL","icon":"sf-dollar","profile_url":"https://utsports.com/sports/2022/4/23/{0}"},"handle":"nil-submission-page.aspx"}}},{"rp_id":18352,"player_id":10462,"roster_display_title":null,"first_name":"Colin","last_name":"Coyne","hometown":"Fredericksburg, Va.","highschool":"Stafford Senior High School","previous_school":"University of Mary Washington","major":null,"birthdate":null,"gender":"M","pronouns":null,"facebook_username":null,"instagram_username":null,"twitter_username":null,"snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":239,"height_feet":6,"height_inches":9,"position_short":"F","position_long":"Forward","jersey_number":"35","jersey_number_2":null,"academic_year_number":3,"academic_year_short":"Jr.","academic_year_long":"Junior","is_captain":false,"letters":0,"rp_hide":false,"rp_hide_bio":false,"custom1":"Fredericksburg, Va.","custom2":"Stafford Senior High School / University of Mary Washington (Va.)","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_COYNE_COLIN_472Wl.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.04 - Headshot Colin Coyne","alt":"KNOXVILLE, TN - October 04, 2022 - Forward Colin Coyne #35 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":644,"orig_height":885,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_COYNE_COLIN_472Wl.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{}},{"rp_id":18913,"player_id":10600,"roster_display_title":null,"first_name":"Freddie","last_name":"Dilione V","hometown":"Fayetteville, N.C.","highschool":"Word of God Christian Academy","previous_school":null,"major":null,"birthdate":null,"gender":"M","pronouns":null,"facebook_username":null,"instagram_username":null,"twitter_username":null,"snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":180,"height_feet":6,"height_inches":5,"position_short":"G","position_long":"Guard","jersey_number":"10","jersey_number_2":null,"academic_year_number":1,"academic_year_short":"Fr.","academic_year_long":"Freshman","is_captain":false,"letters":0,"rp_hide":false,"rp_hide_bio":false,"custom1":"Fayetteville, N.C.","custom2":"Word of God Christian Academy","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"Freddie_Dilione_Headshot.png","path":"/images/2023/1/19","title":null,"alt":"Freddie Dilione Headshot","caption":null,"credit_name":null,"orig_width":200,"orig_height":275,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2023/1/19/Freddie_Dilione_Headshot.png"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"f.a.d_5"},"Twitter":{"social_media":{"social_media_id":1,"title":"Twitter","icon":"sf-twitter","profile_url":"https://twitter.com/{0}"},"handle":"Freddiedilione5"}}},{"rp_id":17574,"player_id":10301,"roster_display_title":null,"first_name":"B.J.","last_name":"Edwards","hometown":"Knoxville, Tenn.","highschool":"Knoxville Catholic High School","previous_school":null,"major":null,"birthdate":null,"gender":"M","pronouns":null,"facebook_username":null,"instagram_username":"swaggyb.5","twitter_username":"BJ_Edwards5","snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":188,"height_feet":6,"height_inches":3,"position_short":"G","position_long":"Guard","jersey_number":"1","jersey_number_2":null,"academic_year_number":1,"academic_year_short":"Fr.","academic_year_long":"Freshman","is_captain":false,"letters":0,"rp_hide":false,"rp_hide_bio":false,"custom1":"Knoxville, Tenn.","custom2":"Knoxville Catholic High School","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_EDWARDS_BJ_wT3z5.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.04 - Headshot B.J. Edwards","alt":"KNOXVILLE, TN - October 04, 2022 - Guard B.J. Edwards #1 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":676,"orig_height":929,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_EDWARDS_BJ_wT3z5.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"swaggyb.5"},"NIL":{"social_media":{"social_media_id":10,"title":"NIL","icon":"sf-dollar","profile_url":"https://utsports.com/sports/2022/4/23/{0}"},"handle":"nil-submission-page.aspx"},"Twitter":{"social_media":{"social_media_id":1,"title":"Twitter","icon":"sf-twitter","profile_url":"https://twitter.com/{0}"},"handle":"BJ_Edwards5"}}},{"rp_id":17566,"player_id":8188,"roster_display_title":null,"first_name":"Kent","last_name":"Gilbert","hometown":"Greenville, N.C.","highschool":"D.H. Conley High School","previous_school":"D.H. Conley High School","major":null,"birthdate":null,"gender":"M","pronouns":null,"facebook_username":null,"instagram_username":"kgilbert799","twitter_username":"kgilbert799","snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":178,"height_feet":6,"height_inches":1,"position_short":"G","position_long":"Guard","jersey_number":"21","jersey_number_2":null,"academic_year_number":3,"academic_year_short":"Jr.","academic_year_long":"Junior","is_captain":false,"letters":2,"rp_hide":false,"rp_hide_bio":false,"custom1":"Greenville, N.C. / D.H. Conley High School","custom2":"D.H. Conley High School","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_GILBERT_KENT_lXXkS.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.06 - Headshot Kent Gilbert","alt":"KNOXVILLE, TN - October 06, 2022 - Guard Kent Gilbert #21 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":662,"orig_height":897,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_GILBERT_KENT_lXXkS.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"kgilbert799"},"Twitter":{"social_media":{"social_media_id":1,"title":"Twitter","icon":"sf-twitter","profile_url":"https://twitter.com/{0}"},"handle":"kgilbert799"}}},{"rp_id":17567,"player_id":6743,"roster_display_title":null,"first_name":"Josiah-Jordan","last_name":"James","hometown":"Charleston, S.C.","highschool":"Porter-Gaud School","previous_school":"Porter-Gaud School","major":null,"birthdate":null,"gender":"M","pronouns":null,"facebook_username":null,"instagram_username":"josiah.j.james","twitter_username":"jjjames30","snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":224,"height_feet":6,"height_inches":6,"position_short":"G","position_long":"Guard","jersey_number":"30","jersey_number_2":null,"academic_year_number":4,"academic_year_short":"Sr.","academic_year_long":"Senior","is_captain":false,"letters":3,"rp_hide":false,"rp_hide_bio":false,"custom1":"Charleston, S.C.","custom2":"Porter-Gaud School","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_JAMES_JOSIAH-JORDAN_Bl7Mk.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.04 - Headshot Josiah-Jordan James","alt":"KNOXVILLE, TN - October 04, 2022 - Guard Josiah-Jordan James #30 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":634,"orig_height":872,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_JAMES_JOSIAH-JORDAN_Bl7Mk.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"josiah.j.james"},"Shop":{"social_media":{"social_media_id":11,"title":"Shop","icon":"sf-cart","profile_url":"{0}"},"handle":"https://www.utvolshop.com/Josiah-Jordan-James-Caricature-Tee?location=&quantity=1&color=Orange"},"Twitter":{"social_media":{"social_media_id":1,"title":"Twitter","icon":"sf-twitter","profile_url":"https://twitter.com/{0}"},"handle":"jjjames30"}}},{"rp_id":17582,"player_id":10308,"roster_display_title":null,"first_name":"D.J.","last_name":"Jefferson","hometown":"Richardson, Texas","highschool":"Minnesota Prep Academy","previous_school":null,"major":null,"birthdate":null,"gender":"M","pronouns":null,"facebook_username":null,"instagram_username":"dj.jefferson4","twitter_username":"4buck4t_","snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":207,"height_feet":6,"height_inches":5,"position_short":"G","position_long":"Guard","jersey_number":"44","jersey_number_2":null,"academic_year_number":1,"academic_year_short":"Fr.","academic_year_long":"Freshman","is_captain":false,"letters":0,"rp_hide":false,"rp_hide_bio":false,"custom1":"Richardson, Texas","custom2":"Minnesota Prep Academy","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_JEFFERSON_DJ_uOmIt.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.04 - Headshot D.J. Jefferson","alt":"KNOXVILLE, TN - October 04, 2022 - Guard D.J. Jefferson #44 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":657,"orig_height":903,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_JEFFERSON_DJ_uOmIt.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"dj.jefferson44"},"NIL":{"social_media":{"social_media_id":10,"title":"NIL","icon":"sf-dollar","profile_url":"https://utsports.com/sports/2022/4/23/{0}"},"handle":"nil-submission-page.aspx"},"Twitter":{"social_media":{"social_media_id":1,"title":"Twitter","icon":"sf-twitter","profile_url":"https://twitter.com/{0}"},"handle":"4buck4t_"}}},{"rp_id":17581,"player_id":10307,"roster_display_title":null,"first_name":"Alec","last_name":"Kegler","hometown":"Clarksville, Tenn.","highschool":"Northeast High School","previous_school":"Roane State Community College","major":null,"birthdate":null,"gender":"M","pronouns":null,"facebook_username":null,"instagram_username":"AK24._","twitter_username":"thatmanAlec","snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":212,"height_feet":6,"height_inches":4,"position_short":"F","position_long":"Forward","jersey_number":"24","jersey_number_2":null,"academic_year_number":2,"academic_year_short":"So.","academic_year_long":"Sophom*ore","is_captain":false,"letters":0,"rp_hide":false,"rp_hide_bio":false,"custom1":"Clarksville, Tenn.","custom2":"Northeast High School / Roane State Community College","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_KEGLER_ALEC_VIW68.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.06 - Headshot Alec Kegler","alt":"KNOXVILLE, TN - October 06, 2022 - Guard Alec Kegler #24 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":713,"orig_height":980,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_KEGLER_ALEC_VIW68.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"AK24._"},"Twitter":{"social_media":{"social_media_id":1,"title":"Twitter","icon":"sf-twitter","profile_url":"https://twitter.com/{0}"},"handle":"thatmanAlec"}}},{"rp_id":17575,"player_id":10302,"roster_display_title":null,"first_name":"Tyreke","last_name":"Key","hometown":"Celina, Tenn.","highschool":"Clay County High School","previous_school":"Indiana State University","major":null,"birthdate":null,"gender":"M","pronouns":"","facebook_username":null,"instagram_username":"tyrekekey","twitter_username":"TyrekeKey","snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":211,"height_feet":6,"height_inches":2,"position_short":"G","position_long":"Guard","jersey_number":"4","jersey_number_2":null,"academic_year_number":5,"academic_year_short":"Gr.","academic_year_long":"Graduate Student","is_captain":false,"letters":4,"rp_hide":false,"rp_hide_bio":false,"custom1":"Celina, Tenn.","custom2":"Clay County High School / Indiana State University","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_KEY_TYREKE_qxMKa.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.06 - Headshot Tyreke Key","alt":"KNOXVILLE, TN - October 06, 2022 - Guard Tyreke Key #4 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":640,"orig_height":880,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_KEY_TYREKE_qxMKa.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"tyrekekey"},"NIL":{"social_media":{"social_media_id":10,"title":"NIL","icon":"sf-dollar","profile_url":"https://utsports.com/sports/2022/4/23/{0}"},"handle":"nil-submission-page.aspx"},"Twitter":{"social_media":{"social_media_id":1,"title":"Twitter","icon":"sf-twitter","profile_url":"https://twitter.com/{0}"},"handle":"TyrekeKey"}}},{"rp_id":17568,"player_id":8413,"roster_display_title":null,"first_name":"Jahmai","last_name":"Mashack","hometown":"Fontana, Calif.","highschool":"Etiwanda High School","previous_school":null,"major":null,"birthdate":null,"gender":"M","pronouns":null,"facebook_username":null,"instagram_username":"jmash.21","twitter_username":"JahmaiM","snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":201,"height_feet":6,"height_inches":4,"position_short":"G","position_long":"Guard","jersey_number":"15","jersey_number_2":null,"academic_year_number":2,"academic_year_short":"So.","academic_year_long":"Sophom*ore","is_captain":false,"letters":1,"rp_hide":false,"rp_hide_bio":false,"custom1":"Fontana, Calif.","custom2":"Etiwanda High School","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_MASHACK_JAHMAI_eYkye.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.04 - Headshot Jahmai Mashack","alt":"KNOXVILLE, TN - October 04, 2022 - Guard Jahmai Mashack #15 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":644,"orig_height":886,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_MASHACK_JAHMAI_eYkye.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"jmash.21"},"NIL":{"social_media":{"social_media_id":10,"title":"NIL","icon":"sf-dollar","profile_url":"https://utsports.com/sports/2022/4/23/{0}"},"handle":"nil-submission-page.aspx"},"Twitter":{"social_media":{"social_media_id":1,"title":"Twitter","icon":"sf-twitter","profile_url":"https://twitter.com/{0}"},"handle":"JahmaiM"}}},{"rp_id":17569,"player_id":6746,"roster_display_title":null,"first_name":"Olivier","last_name":"Nkamhoua","hometown":"Helsinki, Finland","highschool":"Bishop Walsh School (Md.)","previous_school":"Bishop Walsh School (Md.)","major":null,"birthdate":null,"gender":"M","pronouns":null,"facebook_username":null,"instagram_username":"olivier.r.n","twitter_username":"olivier_rn","snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":236,"height_feet":6,"height_inches":9,"position_short":"F","position_long":"Forward","jersey_number":"13","jersey_number_2":null,"academic_year_number":4,"academic_year_short":"Sr.","academic_year_long":"Senior","is_captain":false,"letters":3,"rp_hide":false,"rp_hide_bio":false,"custom1":"Helsinki, Finland","custom2":"Bishop Walsh School (Md.)","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_NKAMHOUA_OLIVIER_JTQG4.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.04 - Headshot Olivier Nkamhoua","alt":"KNOXVILLE, TN - October 04, 2022 - Forward Olivier Nkamhoua #13 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":651,"orig_height":895,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_NKAMHOUA_OLIVIER_JTQG4.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"olivier.r.n"},"NIL":{"social_media":{"social_media_id":10,"title":"NIL","icon":"sf-dollar","profile_url":"https://utsports.com/sports/2022/4/23/{0}"},"handle":"nil-submission-page.aspx"},"Twitter":{"social_media":{"social_media_id":1,"title":"Twitter","icon":"sf-twitter","profile_url":"https://twitter.com/{0}"},"handle":"olivier_rn"}}},{"rp_id":17576,"player_id":10303,"roster_display_title":null,"first_name":"Julian","last_name":"Phillips","hometown":"Blythewood, S.C.","highschool":"Link Academy (Mo.)","previous_school":null,"major":null,"birthdate":null,"gender":"M","pronouns":null,"facebook_username":null,"instagram_username":"ju1ianphillips","twitter_username":"ju1ianphillips","snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":198,"height_feet":6,"height_inches":8,"position_short":"F","position_long":"Forward","jersey_number":"2","jersey_number_2":null,"academic_year_number":1,"academic_year_short":"Fr.","academic_year_long":"Freshman","is_captain":false,"letters":0,"rp_hide":false,"rp_hide_bio":false,"custom1":"Blythewood, S.C.","custom2":"Link Academy (Mo.)","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_PHILLIPS_JULIAN_kueVg.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.04 - Headshot Julian Phillips","alt":"KNOXVILLE, TN - October 04, 2022 - Forward Julian Phillips #2 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":672,"orig_height":925,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_PHILLIPS_JULIAN_kueVg.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"ju1ianphillips"},"Twitter":{"social_media":{"social_media_id":1,"title":"Twitter","icon":"sf-twitter","profile_url":"https://twitter.com/{0}"},"handle":"ju1ianphillips"}}},{"rp_id":17570,"player_id":6747,"roster_display_title":null,"first_name":"Uros","last_name":"Plavsic","hometown":"Ivanjica, Serbia","highschool":"Hamilton Heights Christian Academy (Tenn.)","previous_school":"Arizona State University","major":null,"birthdate":null,"gender":"M","pronouns":"","facebook_username":null,"instagram_username":"urosp33","twitter_username":"urosp34","snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":265,"height_feet":7,"height_inches":1,"position_short":"F","position_long":"Forward","jersey_number":"33","jersey_number_2":null,"academic_year_number":4,"academic_year_short":"Sr.","academic_year_long":"Senior","is_captain":false,"letters":3,"rp_hide":false,"rp_hide_bio":false,"custom1":"Ivanjica, Serbia","custom2":"Hamilton Heights Christian Academy (Tenn.) / Arizona State University","custom3":"Ü-rosh PLÄV-chich","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_PLAVSIC_UROS_2drKR.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.04 - Headshot Uros Plavsic","alt":"KNOXVILLE, TN - October 04, 2022 - Forward Uros Plavsic #33 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":632,"orig_height":870,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_PLAVSIC_UROS_2drKR.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"urosp33"},"Shop":{"social_media":{"social_media_id":11,"title":"Shop","icon":"sf-cart","profile_url":"{0}"},"handle":"https://www.utvolshop.com/search?keywords=uros"},"Twitter":{"social_media":{"social_media_id":1,"title":"Twitter","icon":"sf-twitter","profile_url":"https://twitter.com/{0}"},"handle":"urosp34"}}},{"rp_id":17583,"player_id":10309,"roster_display_title":null,"first_name":"Evan","last_name":"Shiflet","hometown":"Nashville, Tenn.","highschool":"Christ Presbyterian Academy","previous_school":null,"major":null,"birthdate":null,"gender":"M","pronouns":null,"facebook_username":null,"instagram_username":"evan.shiflet","twitter_username":"evan_shiflet","snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":197,"height_feet":6,"height_inches":2,"position_short":"G","position_long":"Guard","jersey_number":"3","jersey_number_2":null,"academic_year_number":1,"academic_year_short":"Fr.","academic_year_long":"Freshman","is_captain":false,"letters":0,"rp_hide":false,"rp_hide_bio":false,"custom1":"Nashville, Tenn.","custom2":"Christ Presbyterian Academy","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_SHIFLET_EVAN_gvmwo.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.04 - Headshot Evan Shiflet","alt":"KNOXVILLE, TN - October 04, 2022 - Guard Evan Shiflet #3 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":631,"orig_height":868,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_SHIFLET_EVAN_gvmwo.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"evan.shiflet"},"Twitter":{"social_media":{"social_media_id":1,"title":"Twitter","icon":"sf-twitter","profile_url":"https://twitter.com/{0}"},"handle":"evan_shiflet"}}},{"rp_id":17571,"player_id":8190,"roster_display_title":null,"first_name":"Isaiah","last_name":"Sulack","hometown":"Knoxville, Tenn.","highschool":"Christian Academy of Knoxville","previous_school":"Bossier Parish (La.) Community College","major":null,"birthdate":null,"gender":"M","pronouns":"","facebook_username":null,"instagram_username":"isaiahsulack","twitter_username":"isaiahsulack","snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":192,"height_feet":6,"height_inches":5,"position_short":"G","position_long":"Guard","jersey_number":"31","jersey_number_2":null,"academic_year_number":3,"academic_year_short":"Jr.","academic_year_long":"Junior","is_captain":false,"letters":3,"rp_hide":false,"rp_hide_bio":false,"custom1":"Knoxville, Tenn. / Bossier Parish (La.) Community College","custom2":"Christian Academy of Knoxville / Bossier Parish (La.) Community College","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_SULACK_ISAIAH_CbOlY.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.04 - Headshot Isaiah Sulack","alt":"KNOXVILLE, TN - October 04, 2022 - Guard Isaiah Sulack #31 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":680,"orig_height":935,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_SULACK_ISAIAH_CbOlY.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"isaiahsulack"},"Twitter":{"social_media":{"social_media_id":1,"title":"Twitter","icon":"sf-twitter","profile_url":"https://twitter.com/{0}"},"handle":"isaiahsulack"}}},{"rp_id":17572,"player_id":7958,"roster_display_title":null,"first_name":"Santiago","last_name":"Vescovi","hometown":"Montevideo, Uruguay","highschool":"NBA Global Academy (Canberra, Australia)","previous_school":"NBA Global Academy (Canberra, Australia)","major":null,"birthdate":null,"gender":"M","pronouns":null,"facebook_username":null,"instagram_username":"santivescovi","twitter_username":null,"snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":192,"height_feet":6,"height_inches":3,"position_short":"G","position_long":"Guard","jersey_number":"25","jersey_number_2":null,"academic_year_number":4,"academic_year_short":"Sr.","academic_year_long":"Senior","is_captain":false,"letters":3,"rp_hide":false,"rp_hide_bio":false,"custom1":"Montevideo, Uruguay / NBA Global Academy","custom2":"NBA Global Academy (Canberra, Australia)","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_VESCOVI_SANTIAGO_VZm9Q.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.04 - Headshot Santiago Vescovi","alt":"KNOXVILLE, TN - October 04, 2022 - Guard Santiago Vescovi #25 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":652,"orig_height":896,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_VESCOVI_SANTIAGO_VZm9Q.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"santivescovi"},"Shop":{"social_media":{"social_media_id":11,"title":"Shop","icon":"sf-cart","profile_url":"{0}"},"handle":"https://www.utvolshop.com/search?keywords=vescovi&page=1"}}},{"rp_id":17573,"player_id":8590,"roster_display_title":null,"first_name":"Zakai","last_name":"Zeigler","hometown":"Long Island, N.Y.","highschool":"Our Saviour Lutheran School","previous_school":null,"major":null,"birthdate":null,"gender":"M","pronouns":null,"facebook_username":null,"instagram_username":"Realzakaiz","twitter_username":"Realzakaiz","snapchat_username":null,"tiktok_username":null,"cameo_username":null,"youtube_username":null,"twitch_username":null,"linkedin_username":null,"weight":171,"height_feet":5,"height_inches":9,"position_short":"G","position_long":"Guard","jersey_number":"5","jersey_number_2":null,"academic_year_number":2,"academic_year_short":"So.","academic_year_long":"Sophom*ore","is_captain":false,"letters":1,"rp_hide":false,"rp_hide_bio":false,"custom1":"Long Island, N.Y.","custom2":"Our Saviour Lutheran School","custom3":"","signing_time":null,"signing_experience":null,"image":{"filename":"TENNESSEE_ZEIGLER_ZAKAI_bb4fM.jpg","path":"/images/2022/10/7","title":"KNOXVILLE, TN - 2022.10.04 - Headshot Zakai Zeigler","alt":"KNOXVILLE, TN - October 04, 2022 - Guard Zakai Zeigler #5 of the Tennessee Volunteers portrait taken in Knoxville, TN. Photo By Andrew Ferguson/Tennessee Athletics","caption":null,"credit_name":null,"orig_width":629,"orig_height":865,"fullpath":"https://dudh74xyv196a.cloudfront.net/images/2022/10/7/TENNESSEE_ZEIGLER_ZAKAI_bb4fM.jpg"},"header_image":null,"images":null,"bio":null,"bio_fields":null,"historical_fields":null,"socials":{"Instagram":{"social_media":{"social_media_id":2,"title":"Instagram","icon":"sf-instagram","profile_url":"https://www.instagram.com/{0}"},"handle":"Realzakaiz"},"Shop":{"social_media":{"social_media_id":11,"title":"Shop","icon":"sf-cart","profile_url":"{0}"},"handle":"https://www.utvolshop.com/search?keywords=zakai"},"Twitter":{"social_media":{"social_media_id":1,"title":"Twitter","icon":"sf-twitter","profile_url":"https://twitter.com/{0}"},"handle":"Realzakaiz"}}}]}}, roster_settings: {"show_player_historical_tab":false,"show_related_stories_on_rp_page":true,"roster_pic_anchor":"topcenter","sport":"mbball","season_title":null,"global_sport_id":0,"year":0,"has_career_stats":false,"should_show_stats":false,"weplayed_enabled":false}, search_toggled: false, search_query: '', selected_template: null, loading: false, downloadsListActive: false, templates: [ { id: 1, label: 'Roster View - List', }, { id: 2, label: 'Roster View - Grid', }, { id: 3, label: 'Roster View - Cards', } ] }), methods: { changeSeason(e) { e.preventDefault(); let dropdown = document.getElementById("sidearm-roster-select-season"); let value = dropdown.options[dropdown.selectedIndex].value; if (!value) return; window.location.replace(value); }, changeTemplate(e) { e.preventDefault(); let dropdown = document.getElementById("sidearm-roster-select-template"); let value = dropdown.options[dropdown.selectedIndex].value; if (!value) return; this.selected_template = parseInt(value); Analytics.trackPageView(window.location.pathname); }, getTemplate() { this.selected_template = parseInt(this.roster.template_id); }, toggleSearch() { this.search_toggled = !this.search_toggled; if (this.search_toggled) { this.$refs.roster_search.focus(); } }, activateDownloadsList() { this.downloadsListActive = !this.downloadsListActive; } }, computed: { jerseyNumbers() { return this.roster.players.some(player => player.jersey_number && player.jersey_number != ""); }, playersSorted() { let _players = [...this.roster.players]; if (this.roster.sort_alpha || !this.jerseyNumbers) { _players.sort((a, b) => { if (a.last_name.toLowerCase() > b.last_name.toLowerCase()) return 1; else if (a.last_name.toLowerCase() < b.last_name.toLowerCase()) return -1; return 0; }); } else { _players.sort((a, b) => { // Convert jersey numbers to number if possible, NaN otherwise var jerseyNumberA = a.jersey_number.trim() === "" ? NaN : +a.jersey_number; var jerseyNumberB = b.jersey_number.trim() === "" ? NaN : +b.jersey_number; if (jerseyNumberA >= 0 && jerseyNumberB >= 0) { return jerseyNumberA < jerseyNumberB ? -1 : 1; } else if (!(jerseyNumberA || jerseyNumberB)) { if (a.last_name.toLowerCase() > b.last_name.toLowerCase()) return 1; else if (a.last_name.toLowerCase() < b.last_name.toLowerCase()) return -1; return 0; } return !jerseyNumberA && jerseyNumberB ? 1 : -1; }); } if (this.roster.order_rosters_by_women_first) { _players.sort((a, b) => { if (a.gender > b.gender) return 1; else if (a.gender < b.gender) return -1; return 0; }); } else { _players.sort((a, b) => { if (a.gender > b.gender) return -1; else if (a.gender < b.gender) return 1; return 0; }); } if (this.search_query != '') { let query = this.search_query.toLowerCase().trim(); return _players.filter(player => { let name = `${player.first_name.toLowerCase()} ${player.last_name.toLowerCase()}` return name.includes(query); }); } else { return _players; } }, templateName() { if (this.selected_template === 2) { return 'vue-roster-template-grid'; } else if (this.selected_template === 3) { return 'vue-roster-template-cards'; } else { return 'vue-roster-template-list'; } } }, created() { this.getTemplate(); } }); });
    2022-23 Men's Basketball Roster (2024)

    References

    Top Articles
    Is Coryxkenshin A Christian? An In-Depth Look - Christian Website
    CoryxKenshin - Age, Height, Bio, Brother, Dead, Net Worth
    Drury Inn & Suites Bowling Green
    Pnct Terminal Camera
    Manhattan Prep Lsat Forum
    Plaza Nails Clifton
    Culver's Flavor Of The Day Wilson Nc
    Phenix Food Locker Weekly Ad
    How Far Is Chattanooga From Here
    Needle Nose Peterbilt For Sale Craigslist
    Midway Antique Mall Consignor Access
    Fire Rescue 1 Login
    Ladyva Is She Married
    How to watch free movies online
    Culvers Tartar Sauce
    “In my day, you were butch or you were femme”
    No Hard Feelings Showtimes Near Cinemark At Harlingen
    Wal-Mart 140 Supercenter Products
    Costco Gas Foster City
    How To Cancel Goodnotes Subscription
    Milspec Mojo Bio
    Virginia New Year's Millionaire Raffle 2022
    Georgia Cash 3 Midday-Lottery Results & Winning Numbers
    Evil Dead Rise Showtimes Near Regal Sawgrass & Imax
    Dcf Training Number
    Jeff Nippard Push Pull Program Pdf
    Il Speedtest Rcn Net
    Hannaford Weekly Flyer Manchester Nh
    Bay Area Craigslist Cars For Sale By Owner
    4.231 Rounded To The Nearest Hundred
    Tottenham Blog Aggregator
    Log in to your MyChart account
    Free Tiktok Likes Compara Smm
    100 Million Naira In Dollars
    Roadtoutopiasweepstakes.con
    Leland Nc Craigslist
    Of An Age Showtimes Near Alamo Drafthouse Sloans Lake
    Poster & 1600 Autocollants créatifs | Activité facile et ludique | Poppik Stickers
    Whitehall Preparatory And Fitness Academy Calendar
    Oxford Alabama Craigslist
    Section 212 at MetLife Stadium
    Restored Republic May 14 2023
    Prior Authorization Requirements for Health Insurance Marketplace
    Directions To The Closest Auto Parts Store
    Gamestop Store Manager Pay
    Random Animal Hybrid Generator Wheel
    The Horn Of Plenty Figgerits
    Ohio Road Construction Map
    Canada Life Insurance Comparison Ivari Vs Sun Life
    Big Brother 23: Wiki, Vote, Cast, Release Date, Contestants, Winner, Elimination
    Basic requirements | UC Admissions
    Inside the Bestselling Medical Mystery 'Hidden Valley Road'
    Latest Posts
    Article information

    Author: Delena Feil

    Last Updated:

    Views: 5380

    Rating: 4.4 / 5 (45 voted)

    Reviews: 84% of readers found this page helpful

    Author information

    Name: Delena Feil

    Birthday: 1998-08-29

    Address: 747 Lubowitz Run, Sidmouth, HI 90646-5543

    Phone: +99513241752844

    Job: Design Supervisor

    Hobby: Digital arts, Lacemaking, Air sports, Running, Scouting, Shooting, Puzzles

    Introduction: My name is Delena Feil, I am a clean, splendid, calm, fancy, jolly, bright, faithful person who loves writing and wants to share my knowledge and understanding with you.