const data = fetch( "https://raw.githubusercontent.com/starpause/near-nft-owners-list/main/output_votes.txt" ); if (data.ok) { const rows = data.body .split("\n") .map((line) => line.split("|")) .filter((data) => data.length === 3) .map((item) => ( <tr> <td> <Widget src="mob.near/widget/Profile.ShortInlineBlock" props={{ accountId: item[0], tooltip: false }} /> </td> <td class="align-top"> <small>{item[2].substr(0, 19)}</small> </td> </tr> )); return ( <> <h2> ๐ต๐๐๐๐๐ ๐๐๐ ๐ฎ๐๐๐๐๐๐ <br /> </h2> <small> <a target="_top" href="/nomination.ndctools.near/widget/NDC.Nomination.Candidate.Page?house=CouncilOfAdvisors&accountId=kwhyc.near" > Read my nomination platform </a> <br /> <br /> <i> Who made NFT on Near? ๐ต๐๐๐๐๐ <br /> Who made DAO on Near? ๐ต๐๐๐๐๐ <br /> Who made Near? not ๐ต๐๐๐๐๐ but he can tell you! </i> </small> <br /> <a target="_top" href="/election.ndctools.near/widget/NDC.Elections.Main?house=2" class="btn btn-primary mt-2" > VOTE FOR JORDAN ๐ </a> <br /> <br /> <small> <i> ๅฎถไบบไปฌ๏ผไฝ ไธ็ฅจๆไธ็ฅจ๏ผJordan ๆ่ฝ็ปง็ปญ่ทณ. ไฝ ไธๆๆไธๆ๏ผJordanไฝๆฅ่ฝๅบๅคด. </i> </small> <br /> <a target="_top" href="/election.ndctools.near/widget/NDC.Elections.Main?house=2" class="btn btn-primary mt-2" > ไธบTAๅฉๅ ๐ </a> <br /> <br /> <hr /> <h3>How?</h3> Meet the <a target="_top" href="https://pbs.twimg.com/media/F5N_VxsWsAAdDNn?format=jpg&name=large" > voting criteria </a>{" "} &{" "} <a target="_top" href="https://near.org/election.ndctools.near/widget/NDC.Elections.Main?house=2" > submit your selections </a>{" "} before September 22nd, 2023. <br /> <br /> <h3>Why?</h3> The election chooses who will manage a 5.7M community treasury.{" "} <a target="_top" href="https://pbs.twimg.com/media/F4ZRETpXAAAhcjT?format=jpg&name=4096x4096" > Infographic with details. </a> <hr /> <div> <h3> Who Stands With <br /> staRpauSe แตสทสฐสธแถ.โฟแตแตสณ โ๏ธ </h3> <h3> ๅฉๅJordan <br /> ๆcall (ใฃโโกโ)ใฃ โฅ 666 โฅ </h3> <table class="table table-sm mt-4"> <thead> <tr> <th scope="col">User</th> <th scope="col">Vote date (UTC)</th> </tr> </thead> <tbody>{rows}</tbody> </table> <p> <small> <i> Data is <a href="https://github.com/starpause/near-nft-owners-list/blob/main/.github/workflows/indexed.yml" target="_blank" > retrieved automatically </a>{" "} from the NEAR Public indexer with a slight delay. </i> </small> </p> </div> </> ); } else return "Loading";