MESNA
ANSEM, spelled backwards. Hold $ANSEM, get airdropped $MESNA.
const ticker = "ANSEM".split("").reverse().join("");
console.log(ticker); // "MESNA"
01 LIVE FEED
Price USD
...
Market Cap
...
Liquidity
...
24h Volume
...
awaiting contract address: feed running in simulation mode. real trades + airdrops stream in automatically once CA and distributor wallet are set.
02 ORIGIN

Every cycle, the timeline finds a name and runs it forward. $ANSEM ran forward. Coins were minted in his honor, airdrops rained on his holders, charts went up and to the right.

We looked at all of that and asked one question: what if you played the tape in reverse?

$MESNA is the mirror image. The reflection in the terminal glass. Not a fork, not a tribute. A reversal. Every fee $MESNA earns gets claimed, recycled into buybacks, and airdropped straight back to the wallets that started it all: $ANSEM holders. Same five letters. Read from the other side.

No presale. No team allocation. No claim site. No roadmap. Roadmaps only go forward, and we don't do forward.

03 HOW IT WORKS

The cycle, run in reverse order. Read bottom-up if you want it to make sense forward:

4
repeat the loop never ends. it just runs the other way.
3
airdrop to $ANSEM holders bought-back $MESNA flows straight to $ANSEM holders' wallets. weighted by √balance, so whales don't eat the table.
2
buy back $MESNA collected fees are converted into $MESNA on the open market. green candles, printed in reverse.
1
claim $MESNA creator fees trading fees from $MESNA accumulate on-chain. everything is verifiable on Solscan.

The distribution logic, in one honest snippet:

// snapshot $ANSEM holders: they get paid in $MESNA
// weight = sqrt(balance): sybil-resistant, whale-dampened
const holders = await getHolders(ANSEM_MINT);
const eligible = holders.filter(h => h.balance >= MIN_ANSEM_BALANCE);
const totalW  = eligible.reduce((s, h) => s + Math.sqrt(h.balance), 0);
for (const h of eligible.reverse()) {  // of course we iterate backwards
  const mesnaShare = mesnaPool * Math.sqrt(h.balance) / totalW;
  await sendMesna(h.owner, mesnaShare);
}
04 HOUSE RULES
05 TOKEN
CA: TBA: contract address drops soon
06 DISCLAIMER

$MESNA is a memecoin with no intrinsic value and no expectation of financial return. It is not affiliated with, endorsed by, or connected to Ansem or any other person. It exists for entertainment purposes only. Never invest more than you can afford to lose, especially in something whose entire thesis is "backwards".