select USER_ADDRESS,
max(BALANCE) as maximum
from flipside_prod_db.ethereum.erc20_balances
where symbol = 'TOKE'
and CONTRACT_ADDRESS=lower('0x2e9d63788249371f1DFC918a52f8d799F4a38C94')
and BALANCE_DATE >= '2022-01-01' and BALANCE_DATE <= '2022-01-31'
and user_address not in (lower('0x8b4334d4812C530574Bd4F2763FcD22dE94A969B'),lower('0x96F98Ed74639689C3A11daf38ef86E59F43417D3'))
and ADDRESS_NAME is null
group by user_address
order by maximum DESC
limit 10