Required findings for projects located outside the State
Illinois Compiled Statutes
Section: 801-55
Jurisdiction: IL
Bluebook Citation: 20 ILCS 3501/801-55
The Authority may approve an application to finance or refinance a project located outside of the State other than a municipal bond program project only after it has made the following findings with respect to such financing or refinancing, all of which shall be deemed conclusive: (a) the entity financing or refinancing a project located outside the State, or an affiliate thereof, is also engaged in the financing or refinancing of a project located within the State or, alternately, the entity seeking the financing or refinancing, or an affiliate thereof, maintains a significant presence within the State; (b) financing or refinancing the out-of-state project would promote the economy of the State for the benefit of the health, welfare, safety, trade, commerce, industry and economy of the people of the State by creating employment opportunities in the State or lowering the cost of accessing housing, healthcare, private education, or cultural institutions or undertaking industrial projects, housing projects, higher education projects, health facility projects, cultural institution projects, conservation projects, energy efficiency projects, agricultural facilities or agribusiness in the State by reducing the cost of financing, refinancing or operating projects; and (c) after giving effect to the financing or refinancing of the out-of-state project, the Authority shall have the ability to issue at least an additional $1,000,000,000 of bonds under Section 845-5(a) of this Act. The Authority may approve an application to finance or refinance a municipal bond program project located outside of the State only after it has made the following findings with respect to such financing or refinancing, all of which shall be deemed conclusive: (1) the municipal bond program project includes the purchase of bonds, notes, or obligations issued by or on behalf of the State or any agency, instrumentality, office, department, division, bureau, or commission thereof, or any unit of local government, school district, college, or university of the State; and (2) financing or refinancing the municipal bond program project would promote the economy of the State for the benefit of the health, welfare, safety, trade, commerce, industry, and economy of the people of the State by reducing the cost of borrowing to the State or such agency, instrumentality, office, department, division, bureau, commission, unit of local government, school district, college, or university. The Authority shall not provide financing or refinancing for any project, or portion thereof, located outside the boundaries of the United States of America. Notwithstanding any other provision of this Act, the Authority shall not provide financing or refinancing that uses State volume cap under Section 146 of the Internal Revenue Code of 1986, as amended, except as permitted under that Section 146, or constitutes an indebtedness or obligation, general or moral, or a pledge of the full faith or loan of credit of the State for any project, or portion thereof, that is located outside of the State. (Source: P.A. 98-90, eff. 7-15-13.) This site is maintained for the Illinois General Assembly by the Legislative Information System, 705 Stratton Building, Springfield, Illinois 62706. Contact ILGA Webmaster ILGA.GOV 2026 ILGA.gov | All Rights Reserved | ADA | Disclaimers | Learn This site is maintained for the Illinois General Assembly by the Legislative Information System, 705 Stratton Building, Springfield, Illinois 62706. Contact ILGA Webmaster ILGA.GOV 2026 ILGA.gov | All Rights Reserved | ADA | Disclaimers | Learn .fade-out { opacity: 0; transition: opacity 1.0s; /* Adjust the duration as needed */ } .cookies { position: fixed; bottom: 0; margin-bottom: 0; /* Ensure no margin at the bottom */ width: 100%; border-radius: 0; /* Remove rounded borders */ opacity: 0.98; z-index: 100; } @media (max-width: 576px) { .cookies { height: auto; /* Allow the height to adjust based on content */ padding-bottom: 80px !important; /* Add extra padding to push buttons above UserWay widget */ } } ILGA.gov is better with cookies. ILGA.gov uses cookies to ensure you get the best experience on our website. By continuing to browse ILGA.gov you consent to our use of cookies. Read About Cookies Accept & Continue document.getElementById('about-cookies-btn').addEventListener('click', function () { window.location.href = '/Cookies'; }); (function () { var button = document.querySelector("#cookieConsent button[data-cookie-string]"); button.addEventListener("click", function (event) { document.cookie = button.dataset.cookieString; var cookieContainer = document.querySelector("#cookieConsent"); cookieContainer.remove() }, false); })(); enableWordFriendlyCopy({ selector: '#copyable-content', baseUrl: 'https://ilga.gov/' }); (function () { const BASE_WIDTH = 578; const isDev = location.hostname === 'localhost' || location.hostname === 'dev.ilga.gov'; const log = (...args) => { if (isDev) { console.log(...args); } }; function applyBillScale() { log('--- applyBillScale called ---'); const host = document.querySelector('#billtextanchor .billtext-host'); const scaleEl = document.querySelector('#billtextanchor .billtext-scale'); log('host element:', host); log('scaleEl element:', scaleEl); if (!host || !scaleEl) { log('Missing host or scaleEl, exiting'); return; } const available = window.innerWidth; log('available viewport width:', available); let scale = 1; log('initial scale:', scale); if (available < 480) { scale = (available / BASE_WIDTH) - 0.1; log('viewport < 480 (iPhone)'); } else if (available < 850) { scale = (available / BASE_WIDTH) - 0.1; log('viewport < 850 (iPad)'); } else { scale = 1; log('viewport >= 850 (desktop)'); } log('calculated scale:', scale); scaleEl.style.transformOrigin = 'top left'; scaleEl.style.transform = `scale(${scale})`; log('transform:', scaleEl.style.transform); const calculatedWidth = BASE_WIDTH * scale; scaleEl.style.width = `${calculatedWidth}px`; log('calculated width:', calculatedWidth); } log('Bill scaling script loaded. isDev =', isDev); window.addEventListener('orientationchange', () => { log('orientationchange event fired'); applyBillScale(); }); document.addEventListener('DOMContentLoaded', () => { log('DOMContentLoaded event fired'); applyBillScale(); }); })(); (function () { var s = document.createElement('script'); var h = document.querySelector('head') || document.body; s.src = 'https://acsbapp.com/apps/app/dist/js/app.js'; s.async = true; s.onload = function () { acsbJS.init({ statementLink: '', footerHtml: '', hideMobile: false, hideTrigger: false, disableBgProcess: false, language: 'en', position: 'left', leadColor: '#070D0D', triggerColor: '#03396c', triggerRadius: '50%', triggerPositionX: 'left', // Change from 'right' to 'left' triggerPositionY: 'bottom', triggerIcon: 'people', triggerSize: 'medium', triggerOffsetX: 20, triggerOffsetY: 20, mobile: { triggerSize: 'small', triggerPositionX: 'left', // Change from 'right' to 'left' triggerPositionY: 'bottom', triggerOffsetX: 10, triggerOffsetY: 10, triggerRadius: '50%' } }); }; h.appendChild(s); })(); document.addEventListener('DOMContentLoaded', function () { document.querySelectorAll('button[onclick]').forEach(button => { // Extract the href from the inline onclick const onclick = button.getAttribute('onclick'); const match = onclick.match(/location\.href\s*=\s*['"]([^'"]+)['"]/); if (!match) return; const url = match[1]; // Remove the inline onclick to prevent auto navigation button.removeAttribute('onclick'); // Add our controlled event listener button.addEventListener('click', function (e) { if (e.ctrlKey || e.metaKey) { window.open(url, '_blank'); } else { window.location.href = url; } }); }); });
Chat with this statute using AI
Ask CiteLaw's AI Navigator anything about this statute, verify citations, and research related authorities. Sign up for CiteLaw free today to get started.