{#if isLoaded} {#if shareholderList?.length !== 0}
Who owns the most stocks of the company? We can break it down into two categories.
Others: {otherOwner >= 99.99 ? 99.99 : otherOwner?.toFixed(2)}%
Institutions: {institutionalOwner <= 0.01 ? "< 0.01%" : institutionalOwner?.toFixed(2)+'%'}

Top Shareholders

{#if topHolders !== 0} The top 10 shareholders own {topHolders <= 0.01 ? "< 0.01%" : topHolders?.toFixed(2)+'%'} of the company. {/if}
{#each (showFullStats ? shareholderList?.slice(0,10) : shareholderList?.slice(0,3)) as item,index} {#if item?.investorName?.length > 0} goto('/hedge-funds/'+item?.cik)} class="border-y border-gray-800 odd:bg-[#202020] {index === 2 && !showFullStats && shareholderList?.length > 3 ? 'opacity-[0.5]' : '' } sm:hover:bg-[#245073] sm:hover:bg-opacity-[0.2] bg-[#0F0F0F] border-b-[#0F0F0F] cursor-pointer"> {/if} {/each}
Institute Ownership Portfolio
{item?.investorName?.length > charNumber ? formatString(item?.investorName?.slice(0,charNumber)) + "..." : formatString(item?.investorName)} {item?.ownership <= 0.01 ? "< 0.01%" : item?.ownership?.toFixed(2)+'%'} {item?.weight <= 0.01 ? "< 0.01%" : item?.weight?.toFixed(2)+'%'}
{/if} {:else}
{/if}