select date(block_timestamp) as day, sum(amount) as total_usdc_outflow, sum(total_usdc_outflow) over ( order by day ) as cumulative_outflow
from solana.core.fact_transfers a,solana.core.dim_labels b
where a.TX_TO = b.address
and mint='EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v'
and day >= CURRENT_DATE - 90
group by day