> For the complete documentation index, see [llms.txt](https://doc.cryptostone.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.cryptostone.org/mining-system/08_coexistence_of_a_single_collection_and_12_stones.md).

# 08 Single Collection Structure

CryptoStone does not separate the 12 stones into individual NFT collections. All gemstones are issued from one Gem NFT contract.

However, each NFT is distinguished by the `stoneType` attribute.

| Token ID | Stone Type | Weight  | Color | Clarity | Cut    |
| -------- | ---------- | ------- | ----- | ------- | ------ |
| #10291   | Diamond    | 3.42 CT | D     | VVS1    | 6 Star |
| #58102   | Ruby       | 8.13 CT | G     | VS2     | 4 Star |
| #77410   | Sapphire   | 1.25 CT | E     | IF      | 5 Star |

This structure has the following advantages.

| Advantage                           | Description                                                                               |
| ----------------------------------- | ----------------------------------------------------------------------------------------- |
| Unified collection                  | Maintains the single collection identity of CryptoStone.                                  |
| Concentrated transaction data       | Prevents collection value and transaction data from being fragmented across marketplaces. |
| Easier rarity management            | Allows all gemstones to be compared within one rarity ranking system.                     |
| Preservation of STONX individuality | Expresses the independence of each gemstone through the `stoneType` attribute.            |
| Supply limitation                   | The NFT contract can verify maximum supply by STONX.                                      |

The NFT contract separately manages issuance quantity by STONX.

```
maxSupplyByStone[Diamond] = 110,000
mintedByStone[Diamond] < maxSupplyByStone[Diamond]
```

Therefore, even if an issuance request comes from the Diamond Pool, no further Diamond NFTs can be issued once the maximum Diamond supply has been reached.


---

# 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://doc.cryptostone.org/mining-system/08_coexistence_of_a_single_collection_and_12_stones.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.
