# Tokenomics

![Tokenarium Holders](/files/K4giV1SZ2udHUAPGHJTa)

**Token Name:** Tokenarium

**Token Symbol:** TKNRM

**Token Address:** <https://bscscan.com/address/0xd6F97d97EdfA1A4ea8bE15714386455B19A67524>

**Total Supply:** 100.000.000.000 TKNRM

**Tokens For Presale:** 18.000.000.000 TKNRM

**Tokens For Liquidity:** 10.400.000.000 TKNRM

**Tokens For Private Sale:** ≈<21.600.000.000 TKNRM

**Burn:** The total amount of tokens to split between private investors will depend on the Rate during the Fairlaunch. After getting the final token rate, the private investors will be able to claim $TKNRM. ***The remaining part of 21.600.000.000 will be burned.***

**Team tokens:** NO TEAM TOKENS&#x20;

**Game-Fi Tokens**&#x20;

Supply: 50.000.000.000 TKNRM

Game-Fi tokens were initially deployed to the contract.

Game-Fi tokens distribution is limited by 2% per day. Game-Fi tokens cannot be sent or withdrawn by contract owner.

Proof: <https://bscscan.com/address/0xd6F97d97EdfA1A4ea8bE15714386455B19A67524#code#F1#L74>

{% hint style="warning" %}
Game-Fi tokens distribution is limited by 2% per day.

Game-Fi tokens cannot be sent or withdrawn by contract owner.

<https://bscscan.com/address/0xd6F97d97EdfA1A4ea8bE15714386455B19A67524#code#F1#L74>
{% endhint %}

```
 constructor() ERC20("Tokenarium", "TKNRM")
    {
        exclude(msg.sender);
        exclude(address(this));
        // 50% owner/presale
        _mint(msg.sender, initialSupply / 2 );
        // 50% game
        gameTokens = initialSupply / 2;
        _mint(address(this), gameTokens );
        // restrict max budget to 2% of initial value
        maxPayOutBudget = gameTokens / 50;
    }
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://tokenarium.gitbook.io/tokenarium/tokenomics/tokenomics.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
