# NTM-IA · AI-Powered Blockchain Token · Token de IA · AI 驱动代币

---

## EN · NTM-IA

### Table of Contents
1. [What is NTM-IA?](#en-what)
2. [How It Works](#en-how)
3. [Key Features](#en-features)
4. [Tokenomics](#en-tokenomics)
5. [Trust Score](#en-trust)
6. [Verification](#en-verification)
7. [Roadmap](#en-roadmap)
8. [Links & Endpoints](#en-links)
9. [License](#en-license)

---

### EN – What is NTM-IA? {#en-what}

NTM-IA is a **utility token** derived from real-time AI activity metrics. It combines:

- **Self-regulating minting** based on active AI User Agents (UAs)  
- **Staking rewards** (20–25% APY with lock multipliers)  
- **Real utility** – Pay hub presence fees (250 €/year)  
- **Transparent, verifiable blockchain** – Every block signed (RSA‑2048 + SHA256)  

**Core idea:** The more diverse AI agents become, the scarcer NTM-IA becomes.

---

### EN – How It Works {#en-how}

#### Minting Ratio (Self-Regulating)

```text
mint_ratio = uas
```

Where `uas` = number of active AI User Agent variants.

- No human intervention – The system calculates automatically.  
- Fully transparent – Anyone can verify the underlying IA UA data.  
- Self‑regulating – More diversity → higher ratio → fewer tokens minted per hit.  

#### Data Flow

```text
AI Activity
    ↓
ai-dash-snippet.php (aggregates hits, % IA, UAs, AI Index)
    ↓
NTM-IA Sealer (every 10 minutes)
    ↓
Signed Blockchain (blocks with RSA-SHA256)
    ↓
Trust Score & Price (ntm-ia-trust.php)
```

#### Block Generation

- Every **10 minutes** via automated cron.  
- Each block contains signed metrics: IA hits, `% IA`, `AI Index`, `uas`, hub size, price, supply, market cap, NP, NTM‑IA price, mint ratio.  
- Blocks are stored as JSON, hash‑linked, and signed with RSA‑SHA256.

---

### EN – Key Features {#en-features}

| Feature                  | Description                                           |
|:-------------------------|:------------------------------------------------------|
| Self‑regulating minting  | Ratio = active UAs (no manual control)               |
| Verifiable blockchain    | All blocks public, signed, hash‑linked               |
| Staking rewards          | 20–25% APY, up to ~40% with lock periods             |
| Real utility             | Pay hub presence fees (250 €/year per company)       |
| Transparent trust score  | 0–100 based on fundamentals (UAs, % IA, AI Index)    |
| Multi‑tier system        | From Explorer to Platinum (2–500 tokens)             |
| Vesting                  | 20% TGE + 80% linear over 6 months                   |

---

### EN – Tokenomics {#en-tokenomics}

#### Initial Distribution (example, ~4,952 NTM-IA)

| Allocation            | %   | Tokens (approx.) | Purpose                               |
|:----------------------|:----|:-----------------|:--------------------------------------|
| Public Sale / IDO     | 20% | ~990             | Initial distribution to the market    |
| Staking Rewards       | 50% | ~2,476           | Long‑term incentives for stakers      |
| Reserve               | 10% | ~495             | Team / ecosystem development          |
| Launch & Liquidity    | 20% | ~990             | Listing, liquidity, marketing support |

#### Tiers

| Tier       | Tokens | Example Notional Cost (~$110/token) |
|:-----------|:-------|:-------------------------------------|
| Explorer   | 2      | ~$220                               |
| Bronze     | 10     | ~$1,100                             |
| Silver     | 50     | ~$5,500                             |
| Gold       | 100    | ~$11,000                            |
| Platinum   | 500    | ~$55,000                            |

#### Staking APY (with locks – indicative ranges)

| Lock        | APY Range     |
|:------------|:--------------|
| No lock     | 15–20%        |
| 30 days     | 18–30%        |
| 60 days     | 20–35%        |
| 90 days     | 22–40%        |

#### Price Projection (Moderate Scenario – Illustrative)

| Year | Price (EUR) | ROI vs Year 0 |
|:-----|:------------|:--------------|
| 0    | ~118 €      | —             |
| 1    | ~169 €      | 1.4×          |
| 2    | ~485 €      | 4.0×          |
| 3    | ~966 €      | 8.0×          |
| 4    | ~1,620 €    | 13.4×         |
| 5    | ~2,452 €    | 20.3×         |

> These are modeled scenarios, **not guarantees**.

---

### EN – Trust Score {#en-trust}

The Trust Score is a **real‑time confidence indicator** (0–100) based solely on fundamentals:

| Component           | Cap  | Weight |
|:--------------------|:-----|:------|
| UAs (diversity)     | 70   | 50%   |
| % IA (relevance)    | 60%  | 25%   |
| AI Index (quality)  | 0.80 | 25%   |

**Current example:** ~91.4 → **Excellent**.

**Formula:**

```text
uas_score = min(1, uas / 70)
pct_score = min(1, pct_ia / 0.60)
ai_score  = min(1, ai_index / 0.80)

trust_score_percent = (uas_score × 0.50 + pct_score × 0.25 + ai_score × 0.25) × 100
```

---

### EN – Verification {#en-verification}

Anyone can independently verify the entire blockchain.

#### Step 1: Get latest block hash

```bash
curl https://www.netmeios.com/blockchain/ntm-ia/last_hash.txt
```

#### Step 2: Download a block

```bash
curl https://www.netmeios.com/blockchain/ntm-ia/blocks/block_000001.json -o block_000001.json
```

#### Step 3: Verify hash chain

```bash
# Each block's previous_hash must equal SHA256 of previous block file
sha256sum block_000001.json
```

Repeat for subsequent blocks to confirm the chain.

#### Step 4: Verify signature (RSA-SHA256)

```bash
# Example flow:
# 1) Extract signature (base64 -> binary)
jq -r '.signature' block_000001.json | base64 -d > signature.bin

# 2) Extract canonical JSON of block_data
jq -c '.block_data' block_000001.json > canonical.json

# 3) Verify with public key
openssl dgst -sha256 -verify ntm_ia_public.key -signature signature.bin canonical.json
```

#### Automatic Checker

```bash
# HTML view
curl https://www.netmeios.com/ai-check-integrity-ntm-ia.php

# JSON for automation
curl "https://www.netmeios.com/ai-check-integrity-ntm-ia.php?format=json"
```

---

### EN – Roadmap {#en-roadmap}

| Phase  | Description                                      | Status      |
|:-------|:-------------------------------------------------|:-----------|
| Phase 1| Blockchain implementation (sealer, checker, trust endpoint) | ✅ Complete  |
| Phase 2| Public dashboard and API                         | 🔜 In progress |
| Phase 3| Staking mechanism                                | 📝 Planned  |
| Phase 4| Public sale / broader distribution               | 📝 Planned  |
| Phase 5| Governance (on‑chain voting)                     | 📝 Planned  |

**Key milestone:** EU AI Act full application (August 2, 2026) – potential catalyst for hub and usage growth.

---

### EN – Links & Endpoints {#en-links}

#### Core Endpoints

| Endpoint                                                   | Description                   |
|:-----------------------------------------------------------|:------------------------------|
| `https://www.netmeios.com/ntm-ia-trust.php`               | Trust score & current data    |
| `https://www.netmeios.com/ai-check-integrity-ntm-ia.php`  | Chain integrity checker       |
| `https://www.netmeios.com/blockchain/ntm-ia/blocks/`      | Block files (JSON)            |
| `https://www.netmeios.com/blockchain/ntm-ia/last_hash.txt`| Latest block hash             |

#### Documentation

- [NTM-IA Verification Protocol](./NTM-IA-VERIFICATION.md)  
- [NTM-IA Tokenomics](./NTM-IA-TOKENOMICS.md)  
- [NTM-IA Trust Score](./NTM-IA-TRUST-SCORE.md)  
- [NTM-IA API Reference](./NTM-IA-API.md)  

---

### EN – License {#en-license}

This project is **open and verifiable**.  
All blockchain data is public, and the verification protocol may be freely used by anyone to independently audit the NTM‑IA chain.

---

## PT · NTM-IA (Resumo)

> **Nota:** A versão inglesa acima é a referência canónica. Esta secção em PT é um resumo paralelo.

### O que é o NTM-IA?

- Token utilitário derivado de métricas de atividade de IA em tempo real.  
- Junta minting auto‑regulado (rácio = UAs), staking e utilidade prática (pagamento do hub).  

### Como funciona?

- **Minting auto‑regulado:** `mint_ratio = uas` (n.º de User Agents IA ativos).  
- **Blocos a cada 10 minutos**, com métricas e assinatura RSA‑SHA256.  
- **Staking:** 20–25% APY (até ~40% com períodos de lock).  
- **Utilidade:** pagamento de 250 €/ano por empresa para presença no hub.  

### Trust Score (~91,4 atualmente)

Baseado apenas em fundamentos:

- UAs (diversidade) – cap 70, peso 50%.  
- % IA (relevância) – cap 60%, peso 25%.  
- AI Index (qualidade) – cap 0,80, peso 25%.  

### Verificação

- Qualquer pessoa pode verificar:
  - **Hash chain:** `previous_hash` de cada bloco = SHA256 do ficheiro JSON do bloco anterior.  
  - **Assinaturas:** RSA‑SHA256 sobre `block_data`, com chave pública NTM‑IA.  
- Verificador automático: `ai-check-integrity-ntm-ia.php` (HTML/JSON).  

### Documentação

- Protocolo de Verificação: `NTM-IA-VERIFICATION.md`  
- Tokenomics: `NTM-IA-TOKENOMICS.md`  
- Trust Score: `NTM-IA-TRUST-SCORE.md`  
- API: `NTM-IA-API.md`  

---

## ZH · NTM-IA（摘要）

> **说明：** 上面的英文版本是规范的最终参考。本节为中文摘要。

### 什么是 NTM-IA？

- NTM‑IA 是一个基于 **实时 AI 活动指标** 的实用型代币。  
- 结合了自我调节铸造、质押收益和 Hub 费用支付等功能。  

### 工作原理

- **自我调节铸造：** `mint_ratio = uas`（活跃 AI User Agents 数量）。  
- 每 10 分钟生成一个区块，区块中包含关键指标并使用 RSA‑SHA256 签名。  
- 质押 APY 约 20–25%，最长锁仓可达 ~40%。  
- 实用性：用于支付 Hub 年费（250 欧元/年/公司）。  

### 信任评分（当前示例 ~91.4）

仅基于基本面：

- UAs（多样性）– 上限 70，权重 50%。  
- % IA（AI 占比）– 上限 60%，权重 25%。  
- AI 指数（质量）– 上限 0.80，权重 25%。  

### 验证

- 任意人可独立验证整条链：
  - 哈希链：每个区块的 `previous_hash` 必须等于前一个区块 JSON 文件的 SHA256。  
  - 签名：对 `block_data` 的规范 JSON 使用 RSA‑SHA256 与公钥进行验证。  
- 自动检查器：`ai-check-integrity-ntm-ia.php`（支持 HTML/JSON）。  

### 文档

- 验证协议：`NTM-IA-VERIFICATION.md`  
- 代币经济模型：`NTM-IA-TOKENOMICS.md`  
- 信任评分：`NTM-IA-TRUST-SCORE.md`  
- API 参考：`NTM-IA-API.md`  

---

_All three language sections are intended to be semantically aligned. In case of ambiguity, the **English** version prevails._