Text Generation
Transformers
Safetensors
qwen3_5
image-text-to-text
darwin
darwin-reason
reasoning
advanced-reasoning
chain-of-thought
thinking
reasoning-trace-distillation
rtd
darwin-delphi
test-time-compute
qwen3.6
qwen
gpqa
benchmark
open-source
apache-2.0
proto-agi
vidraft
Eval Results
conversational
Eval Results (legacy)
Instructions to use FINAL-Bench/Darwin-28B-REASON with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use FINAL-Bench/Darwin-28B-REASON with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="FINAL-Bench/Darwin-28B-REASON") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForImageTextToText processor = AutoProcessor.from_pretrained("FINAL-Bench/Darwin-28B-REASON") model = AutoModelForImageTextToText.from_pretrained("FINAL-Bench/Darwin-28B-REASON") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use FINAL-Bench/Darwin-28B-REASON with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "FINAL-Bench/Darwin-28B-REASON" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "FINAL-Bench/Darwin-28B-REASON", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/FINAL-Bench/Darwin-28B-REASON
- SGLang
How to use FINAL-Bench/Darwin-28B-REASON with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "FINAL-Bench/Darwin-28B-REASON" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "FINAL-Bench/Darwin-28B-REASON", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "FINAL-Bench/Darwin-28B-REASON" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "FINAL-Bench/Darwin-28B-REASON", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use FINAL-Bench/Darwin-28B-REASON with Docker Model Runner:
docker model run hf.co/FINAL-Bench/Darwin-28B-REASON
Finalize model card: Darwin-28B-REASON (RTD + Darwin-DELPHI, GPQA 89.39)
Browse files
README.md
CHANGED
|
@@ -1,10 +1,246 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
-
|
| 4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
tags:
|
| 6 |
- darwin
|
|
|
|
| 7 |
- reasoning
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
# Darwin-28B-REASON
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
- zh
|
| 6 |
+
- ko
|
| 7 |
+
- ja
|
| 8 |
+
- multilingual
|
| 9 |
+
library_name: transformers
|
| 10 |
+
pipeline_tag: text-generation
|
| 11 |
tags:
|
| 12 |
- darwin
|
| 13 |
+
- darwin-reason
|
| 14 |
- reasoning
|
| 15 |
+
- advanced-reasoning
|
| 16 |
+
- chain-of-thought
|
| 17 |
+
- thinking
|
| 18 |
+
- reasoning-trace-distillation
|
| 19 |
+
- rtd
|
| 20 |
+
- darwin-delphi
|
| 21 |
+
- test-time-compute
|
| 22 |
+
- qwen3.6
|
| 23 |
+
- qwen
|
| 24 |
+
- lora
|
| 25 |
+
- peft
|
| 26 |
+
- adapter
|
| 27 |
+
- gpqa
|
| 28 |
+
- benchmark
|
| 29 |
+
- open-source
|
| 30 |
+
- apache-2.0
|
| 31 |
+
- proto-agi
|
| 32 |
+
- vidraft
|
| 33 |
+
- eval-results
|
| 34 |
+
base_model:
|
| 35 |
+
- FINAL-Bench/Darwin-28B-Opus
|
| 36 |
+
base_model_relation: adapter
|
| 37 |
+
model-index:
|
| 38 |
+
- name: Darwin-28B-REASON
|
| 39 |
+
results:
|
| 40 |
+
- task:
|
| 41 |
+
type: text-generation
|
| 42 |
+
name: Graduate-Level Reasoning
|
| 43 |
+
dataset:
|
| 44 |
+
type: Idavidrein/gpqa
|
| 45 |
+
name: GPQA Diamond
|
| 46 |
+
config: gpqa_diamond
|
| 47 |
+
split: train
|
| 48 |
+
metrics:
|
| 49 |
+
- type: accuracy
|
| 50 |
+
value: 89.39
|
| 51 |
+
name: Accuracy (with Darwin-DELPHI)
|
| 52 |
+
verified: false
|
| 53 |
---
|
| 54 |
|
| 55 |
+
# Darwin-28B-REASON β Reasoning-Trace Distilled, Darwin-DELPHI Enhanced
|
| 56 |
+
|
| 57 |
+
<p align="center">
|
| 58 |
+
<a href="https://huggingface.co/FINAL-Bench/Darwin-28B-REASON"><img src="https://img.shields.io/badge/β_GPQA_Diamond-89.39%25_Darwin--28B--REASON-gold?style=for-the-badge" alt="GPQA"></a>
|
| 59 |
+
<a href="https://huggingface.co/FINAL-Bench/Darwin-28B-Opus"><img src="https://img.shields.io/badge/π§¬_Base-Darwin--28B--Opus_(88.89%25)-blue?style=for-the-badge" alt="Opus"></a>
|
| 60 |
+
</p>
|
| 61 |
+
|
| 62 |
+
<p align="center">
|
| 63 |
+
<a href="https://huggingface.co/FINAL-Bench/Darwin-36B-Opus"><img src="https://img.shields.io/badge/π§¬_Model-Darwin--36B--Opus_(88.4%25)-blue?style=for-the-badge" alt="36B"></a>
|
| 64 |
+
<a href="https://huggingface.co/FINAL-Bench/Darwin-27B-Opus"><img src="https://img.shields.io/badge/π§¬_Model-Darwin--27B--Opus_(86.9%25)-blue?style=for-the-badge" alt="27B"></a>
|
| 65 |
+
<a href="https://huggingface.co/FINAL-Bench/Darwin-9B-NEG"><img src="https://img.shields.io/badge/β‘_Model-Darwin--9B--NEG_(84.3%25)-purple?style=for-the-badge" alt="NEG"></a>
|
| 66 |
+
</p>
|
| 67 |
+
|
| 68 |
+
<p align="center">
|
| 69 |
+
<a href="https://huggingface.co/collections/FINAL-Bench/darwin-family"><img src="https://img.shields.io/badge/π _Darwin_Family-Collection-green?style=for-the-badge" alt="Family"></a>
|
| 70 |
+
<a href="https://huggingface.co/spaces/FINAL-Bench/Leaderboard"><img src="https://img.shields.io/badge/π_FINAL_Bench-Leaderboard-green?style=for-the-badge" alt="FINAL Bench"></a>
|
| 71 |
+
</p>
|
| 72 |
+
|
| 73 |
+
> Reasoning-enhanced model built on Darwin-28B-Opus Β· Reasoning-Trace Distillation (RTD) Β· Darwin-DELPHI test-time engine Β· BF16 Β· Apache 2.0
|
| 74 |
+
> **GPQA Diamond: 89.39 % with Darwin-DELPHI**
|
| 75 |
+
|
| 76 |
+
---
|
| 77 |
+
|
| 78 |
+
## Overview
|
| 79 |
+
|
| 80 |
+
**Darwin-28B-REASON** is a reasoning-enhanced model built on top of **[Darwin-28B-Opus](https://huggingface.co/FINAL-Bench/Darwin-28B-Opus)**. It combines two components:
|
| 81 |
+
|
| 82 |
+
1. **Reasoning-Trace Distillation (RTD)** β a reasoning-trace distillation stage applied to the Darwin-28B-Opus base, delivered as a lightweight adapter.
|
| 83 |
+
2. **Darwin-DELPHI** β a proprietary test-time reasoning engine.
|
| 84 |
+
|
| 85 |
+
Together they push graduate-level scientific reasoning to the top tier of the Darwin family: **89.39 %** on GPQA Diamond with Darwin-DELPHI. The model is released under **Apache-2.0**.
|
| 86 |
+
|
| 87 |
+
---
|
| 88 |
+
|
| 89 |
+
## 𧬠Darwin Platform & Research
|
| 90 |
+
|
| 91 |
+
**Darwin** is VIDRAFT's measuring-result-driven Korean reasoning model family β approximately **20 official models** plus **400+ community derivatives**, ranking **#3 globally on GPQA** among open models. The base model, **Darwin-28B-Opus**, is the HuggingFace-official **GPQA #3 (88.89 %)** model.
|
| 92 |
+
|
| 93 |
+
- **Platform technique** β MRI trust-weighted Evolutionary Merge ([arXiv:2605.14386](https://arxiv.org/abs/2605.14386)).
|
| 94 |
+
- **FINAL Bench** β VIDRAFT's evaluation framework (SSRN): MetaCognition **+14.05**, MA-ER Gap **0.392**.
|
| 95 |
+
- **4-layer Pre-AGI roadmap** β Darwin β AETHER β PROMETHEUS β HEPHAESTUS.
|
| 96 |
+
|
| 97 |
+
---
|
| 98 |
+
|
| 99 |
+
## 𧬠Model Lineage
|
| 100 |
+
|
| 101 |
+
| Role | Model | Contribution |
|
| 102 |
+
|:---:|:---|:---|
|
| 103 |
+
| **Base** | [`FINAL-Bench/Darwin-28B-Opus`](https://huggingface.co/FINAL-Bench/Darwin-28B-Opus) | GPQA #3 (88.89 %) Qwen3.6-generation reasoning backbone. |
|
| 104 |
+
| **RTD adapter** | reasoning-trace distillation | Distills complete reasoning chains into a lightweight adapter on the Opus base. |
|
| 105 |
+
| **Test-time engine** | Darwin-DELPHI | Proprietary inference-time consensus engine (not stored in weights). |
|
| 106 |
+
| **Result** | **`Darwin-28B-REASON`** (this model) | RTD adapter + Darwin-DELPHI β **89.39 %** GPQA Diamond. |
|
| 107 |
+
|
| 108 |
+
---
|
| 109 |
+
|
| 110 |
+
## βοΈ Technical Specifications
|
| 111 |
+
|
| 112 |
+
| Component | Value |
|
| 113 |
+
|:---|:---|
|
| 114 |
+
| Base architecture | `Qwen3_5ForConditionalGeneration` (Qwen3.6 generation, hybrid linear + full attention) |
|
| 115 |
+
| Base model | FINAL-Bench/Darwin-28B-Opus (27.6 B, BF16) |
|
| 116 |
+
| Delivery | LoRA / PEFT adapter on the Darwin-28B-Opus base |
|
| 117 |
+
| Precision | bfloat16 |
|
| 118 |
+
| Context length | Inherited from base (long-chain reasoning supported) |
|
| 119 |
+
| License | Apache 2.0 |
|
| 120 |
+
|
| 121 |
+
---
|
| 122 |
+
|
| 123 |
+
## π¬ Core Techniques
|
| 124 |
+
|
| 125 |
+
### β RTD β Reasoning-Trace Distillation
|
| 126 |
+
|
| 127 |
+
RTD distills **complete reasoning chains** from a publicly available mathematical corpus (Apache-2.0 source) into a lightweight adapter on the Darwin-28B-Opus base. The adapter strengthens long-form, multi-step scientific reasoning while preserving the base model's bilingual capability.
|
| 128 |
+
|
| 129 |
+
> The full RTD recipe (curation, trace selection, training schedule) is **proprietary** and is not disclosed.
|
| 130 |
+
|
| 131 |
+
### β‘ Darwin-DELPHI β Test-Time Reasoning Engine
|
| 132 |
+
|
| 133 |
+
**Darwin-DELPHI** is a proprietary test-time engine applied at inference. It performs **multi-sample cross-validation**, **re-examination of uncertain responses**, and **iterative self-critique**, converging to a **consensus** answer through a single-agent Delphi-method procedure.
|
| 134 |
+
|
| 135 |
+
> Darwin-DELPHI is **not stored in the model weights**. Its internal parameters β sampling counts, stage transitions, and decision thresholds β are a **trade secret** and are not published.
|
| 136 |
+
|
| 137 |
+
---
|
| 138 |
+
|
| 139 |
+
## π Benchmark β GPQA Diamond (198 questions)
|
| 140 |
+
|
| 141 |
+
GPQA Diamond is a 198-question, PhD-level graduate science reasoning benchmark.
|
| 142 |
+
|
| 143 |
+
| Model | Engine | **Accuracy** |
|
| 144 |
+
|:---|:---|:---:|
|
| 145 |
+
| Darwin-28B-Opus (base) | Standard | 88.89 % (176 / 198) |
|
| 146 |
+
| **Darwin-28B-REASON** | **Darwin-DELPHI** | **π₯ 89.39 % (177 / 198)** |
|
| 147 |
+
|
| 148 |
+
The evaluation methodology for the Darwin-DELPHI result is **protected**; sample counts, staging, and thresholds are a **trade secret**.
|
| 149 |
+
|
| 150 |
+
---
|
| 151 |
+
|
| 152 |
+
## π Usage
|
| 153 |
+
|
| 154 |
+
Darwin-28B-REASON ships as a **LoRA / PEFT adapter** on the Darwin-28B-Opus base.
|
| 155 |
+
|
| 156 |
+
```python
|
| 157 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM
|
| 158 |
+
from peft import PeftModel
|
| 159 |
+
import torch
|
| 160 |
+
|
| 161 |
+
BASE = "FINAL-Bench/Darwin-28B-Opus"
|
| 162 |
+
ADAPTER = "FINAL-Bench/Darwin-28B-REASON"
|
| 163 |
+
|
| 164 |
+
tok = AutoTokenizer.from_pretrained(BASE, trust_remote_code=True)
|
| 165 |
+
|
| 166 |
+
base = AutoModelForCausalLM.from_pretrained(
|
| 167 |
+
BASE,
|
| 168 |
+
torch_dtype=torch.bfloat16,
|
| 169 |
+
device_map="auto",
|
| 170 |
+
trust_remote_code=True,
|
| 171 |
+
)
|
| 172 |
+
model = PeftModel.from_pretrained(base, ADAPTER)
|
| 173 |
+
model.eval()
|
| 174 |
+
|
| 175 |
+
messages = [
|
| 176 |
+
{"role": "user",
|
| 177 |
+
"content": "A particle moves along x(t) = tΒ³ β 6tΒ² + 9t. Find when it is at rest and classify the motion."}
|
| 178 |
+
]
|
| 179 |
+
text = tok.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
|
| 180 |
+
inputs = tok(text, return_tensors="pt").to(model.device)
|
| 181 |
+
outputs = model.generate(**inputs, max_new_tokens=2048)
|
| 182 |
+
print(tok.decode(outputs[0][inputs.input_ids.shape[-1]:], skip_special_tokens=True))
|
| 183 |
+
```
|
| 184 |
+
|
| 185 |
+
> The 89.39 % GPQA Diamond result is produced with the Darwin-DELPHI test-time engine, which is applied on top of this adapter. Darwin-DELPHI is provided through the Darwin-series evaluation harness.
|
| 186 |
+
|
| 187 |
+
---
|
| 188 |
+
|
| 189 |
+
## π― Recommended Use-Cases
|
| 190 |
+
|
| 191 |
+
- **Graduate-level STEM reasoning** (GPQA / science qualifying exams)
|
| 192 |
+
- **Mathematical problem solving** (MATH, AIME-style problems)
|
| 193 |
+
- **Complex multi-step chain-of-thought tasks**
|
| 194 |
+
- **Code generation and debugging**
|
| 195 |
+
- **Bilingual reasoning** (strong English + Korean; also Chinese / Japanese)
|
| 196 |
+
|
| 197 |
+
## β οΈ Limitations
|
| 198 |
+
|
| 199 |
+
- Requires the Darwin-28B-Opus base (β 55 GB VRAM in bfloat16) plus the adapter; a single A100-80GB or B200 is sufficient.
|
| 200 |
+
- The 89.39 % result depends on the Darwin-DELPHI test-time engine; the adapter alone provides strong but lower single-model accuracy.
|
| 201 |
+
- Optimised for English first, with secondary support for Korean, Chinese, and Japanese.
|
| 202 |
+
- Reasoning traces tend to be verbose β control with `max_new_tokens` as needed.
|
| 203 |
+
|
| 204 |
+
---
|
| 205 |
+
|
| 206 |
+
## π Citation
|
| 207 |
+
|
| 208 |
+
```bibtex
|
| 209 |
+
@misc{darwin28b_reason_2026,
|
| 210 |
+
title = {Darwin-28B-REASON: Reasoning-Trace Distillation and Darwin-DELPHI Test-Time Reasoning on Darwin-28B-Opus},
|
| 211 |
+
author = {FINAL-Bench / Darwin Research Team},
|
| 212 |
+
year = {2026},
|
| 213 |
+
howpublished = {\url{https://huggingface.co/FINAL-Bench/Darwin-28B-REASON}},
|
| 214 |
+
note = {RTD adapter + Darwin-DELPHI Β· 89.39 % GPQA Diamond}
|
| 215 |
+
}
|
| 216 |
+
|
| 217 |
+
@misc{darwin_family_2026,
|
| 218 |
+
title = {Darwin Family: MRI Trust-Weighted Evolutionary Merging for Reasoning Models},
|
| 219 |
+
author = {VIDRAFT / FINAL-Bench},
|
| 220 |
+
year = {2026},
|
| 221 |
+
howpublished = {\url{https://arxiv.org/abs/2605.14386}}
|
| 222 |
+
}
|
| 223 |
+
|
| 224 |
+
@misc{final_bench_2026,
|
| 225 |
+
title = {FINAL Bench: A Measuring-Result-Driven Evaluation Framework for Reasoning Models},
|
| 226 |
+
author = {VIDRAFT / FINAL-Bench},
|
| 227 |
+
year = {2026},
|
| 228 |
+
howpublished = {SSRN}
|
| 229 |
+
}
|
| 230 |
+
```
|
| 231 |
+
|
| 232 |
+
---
|
| 233 |
+
|
| 234 |
+
## π Related Darwin Models
|
| 235 |
+
|
| 236 |
+
- **Darwin-28B-Opus** β base model, Qwen3.6-27B Γ Opus distilled, GPQA 88.89 %
|
| 237 |
+
- **Darwin-36B-Opus** β MoE 36B, GPQA 88.4 %
|
| 238 |
+
- **Darwin-27B-Opus** β 27B dense (Qwen3.5 generation), GPQA 86.9 %
|
| 239 |
+
- **Darwin-9B-NEG** β 9B with Negentropy distillation, GPQA 84.3 %
|
| 240 |
+
- **Darwin-4B-Genesis** β smallest Darwin member
|
| 241 |
+
|
| 242 |
+
---
|
| 243 |
+
|
| 244 |
+
This model is introduced in [Darwin Family](https://arxiv.org/abs/2605.14386).
|
| 245 |
+
|
| 246 |
+
*Darwin-28B-REASON Β· RTD + Darwin-DELPHI Β· 89.39 % GPQA Diamond Β· FINAL-Bench*
|