> For the complete documentation index, see [llms.txt](https://tokenarium.gitbook.io/tokenarium/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tokenarium.gitbook.io/tokenarium/tokenomics/tokenomics.md).

# 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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
