初始化项目,由ModelHub XC社区提供模型

Model: agarwalanu3103/clarify-rl-grpo-qwen3-1-7b
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-06-16 04:40:17 +08:00
commit e3557c1aee
412 changed files with 26053 additions and 0 deletions

36
.gitattributes vendored Normal file
View File

@@ -0,0 +1,36 @@
*.7z filter=lfs diff=lfs merge=lfs -text
*.arrow filter=lfs diff=lfs merge=lfs -text
*.bin filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.ckpt filter=lfs diff=lfs merge=lfs -text
*.ftz filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.h5 filter=lfs diff=lfs merge=lfs -text
*.joblib filter=lfs diff=lfs merge=lfs -text
*.lfs.* filter=lfs diff=lfs merge=lfs -text
*.mlmodel filter=lfs diff=lfs merge=lfs -text
*.model filter=lfs diff=lfs merge=lfs -text
*.msgpack filter=lfs diff=lfs merge=lfs -text
*.npy filter=lfs diff=lfs merge=lfs -text
*.npz filter=lfs diff=lfs merge=lfs -text
*.onnx filter=lfs diff=lfs merge=lfs -text
*.ot filter=lfs diff=lfs merge=lfs -text
*.parquet filter=lfs diff=lfs merge=lfs -text
*.pb filter=lfs diff=lfs merge=lfs -text
*.pickle filter=lfs diff=lfs merge=lfs -text
*.pkl filter=lfs diff=lfs merge=lfs -text
*.pt filter=lfs diff=lfs merge=lfs -text
*.pth filter=lfs diff=lfs merge=lfs -text
*.rar filter=lfs diff=lfs merge=lfs -text
*.safetensors filter=lfs diff=lfs merge=lfs -text
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
*.tar.* filter=lfs diff=lfs merge=lfs -text
*.tar filter=lfs diff=lfs merge=lfs -text
*.tflite filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.wasm filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text
*tfevents* filter=lfs diff=lfs merge=lfs -text
tokenizer.json filter=lfs diff=lfs merge=lfs -text

70
README.md Normal file
View File

@@ -0,0 +1,70 @@
---
base_model: Qwen/Qwen3-1.7B
library_name: transformers
model_name: clarify-rl-grpo-qwen3-1-7b
tags:
- generated_from_trainer
- trackio:https://huggingface.co/spaces/agarwalanu3103/huggingface-static-96fd33
- hf_jobs
- trl
- grpo
- trackio
licence: license
---
# Model Card for clarify-rl-grpo-qwen3-1-7b
This model is a fine-tuned version of [Qwen/Qwen3-1.7B](https://huggingface.co/Qwen/Qwen3-1.7B).
It has been trained using [TRL](https://github.com/huggingface/trl).
## Quick start
```python
from transformers import pipeline
question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
generator = pipeline("text-generation", model="agarwalanu3103/clarify-rl-grpo-qwen3-1-7b", device="cuda")
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
print(output["generated_text"])
```
## Training procedure
This model was trained with GRPO, a method introduced in [DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models](https://huggingface.co/papers/2402.03300).
### Framework versions
- TRL: 1.2.0
- Transformers: 5.7.0.dev0
- Pytorch: 2.8.0
- Datasets: 4.8.4
- Tokenizers: 0.22.2
## Citations
Cite GRPO as:
```bibtex
@article{shao2024deepseekmath,
title = {{DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models}},
author = {Zhihong Shao and Peiyi Wang and Qihao Zhu and Runxin Xu and Junxiao Song and Mingchuan Zhang and Y. K. Li and Y. Wu and Daya Guo},
year = 2024,
eprint = {arXiv:2402.03300},
}
```
Cite TRL as:
```bibtex
@software{vonwerra2020trl,
title = {{TRL: Transformers Reinforcement Learning}},
author = {von Werra, Leandro and Belkada, Younes and Tunstall, Lewis and Beeching, Edward and Thrush, Tristan and Lambert, Nathan and Huang, Shengyi and Rasul, Kashif and Gallouédec, Quentin},
license = {Apache-2.0},
url = {https://github.com/huggingface/trl},
year = {2020}
}
```

89
chat_template.jinja Normal file
View File

@@ -0,0 +1,89 @@
{%- if tools %}
{{- '<|im_start|>system\n' }}
{%- if messages[0].role == 'system' %}
{{- messages[0].content + '\n\n' }}
{%- endif %}
{{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
{%- for tool in tools %}
{{- "\n" }}
{{- tool | tojson }}
{%- endfor %}
{{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
{%- else %}
{%- if messages[0].role == 'system' %}
{{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
{%- endif %}
{%- endif %}
{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
{%- for message in messages[::-1] %}
{%- set index = (messages|length - 1) - loop.index0 %}
{%- if ns.multi_step_tool and message.role == "user" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
{%- set ns.multi_step_tool = false %}
{%- set ns.last_query_index = index %}
{%- endif %}
{%- endfor %}
{%- for message in messages %}
{%- if message.content is string %}
{%- set content = message.content %}
{%- else %}
{%- set content = '' %}
{%- endif %}
{%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
{{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
{%- elif message.role == "assistant" %}
{%- set reasoning_content = '' %}
{%- if message.reasoning_content is string %}
{%- set reasoning_content = message.reasoning_content %}
{%- else %}
{%- if '</think>' in content %}
{%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
{%- set content = content.split('</think>')[-1].lstrip('\n') %}
{%- endif %}
{%- endif %}
{%- if loop.index0 > ns.last_query_index %}
{%- if loop.last or (not loop.last and reasoning_content) %}
{{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
{%- else %}
{{- '<|im_start|>' + message.role + '\n' + content }}
{%- endif %}
{%- else %}
{{- '<|im_start|>' + message.role + '\n' + content }}
{%- endif %}
{%- if message.tool_calls %}
{%- for tool_call in message.tool_calls %}
{%- if (loop.first and content) or (not loop.first) %}
{{- '\n' }}
{%- endif %}
{%- if tool_call.function %}
{%- set tool_call = tool_call.function %}
{%- endif %}
{{- '<tool_call>\n{"name": "' }}
{{- tool_call.name }}
{{- '", "arguments": ' }}
{%- if tool_call.arguments is string %}
{{- tool_call.arguments }}
{%- else %}
{{- tool_call.arguments | tojson }}
{%- endif %}
{{- '}\n</tool_call>' }}
{%- endfor %}
{%- endif %}
{{- '<|im_end|>\n' }}
{%- elif message.role == "tool" %}
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
{{- '<|im_start|>user' }}
{%- endif %}
{{- '\n<tool_response>\n' }}
{{- content }}
{{- '\n</tool_response>' }}
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
{{- '<|im_end|>\n' }}
{%- endif %}
{%- endif %}
{%- endfor %}
{%- if add_generation_prompt %}
{{- '<|im_start|>assistant\n' }}
{%- if enable_thinking is defined and enable_thinking is false %}
{{- '<think>\n\n</think>\n\n' }}
{%- endif %}
{%- endif %}

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:80c1945435b7e7b06e891ce09c17ab9cd42574b4172a8e441168382e50185811
size 26922

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:afc4538b204fd02555b5d3e3c455c9eb69a5c065c6e472be609a8265f5293352
size 27838

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1b46dacea2471ad2234368d5d2dbda8da70e9bad0fd81236e0962c5b17d354e9
size 26468

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2a9c279b392e14c34bc59a0e5d7f716bfdbb0b619ceda66ba4c8f12aac46637b
size 30491

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cf5da141471e0bf275fcf62778d12c5787ea0aa836662a9f38cdc06bc363333f
size 26302

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3fc8b09e2c9279338442e74f229982e199104d18c38df353c2489d57ea52f2a7
size 33068

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c9fbc8bdd26e9bf14ba0dce2203907682cac5df96311cfb12dafd757a057b270
size 32853

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2fe7ca8c47a8b7d71019e8d057dedf439cf7f1a94fbce4b16d13a91989c6be64
size 21904

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a69cd55b2b64794e9684cd99ae0041641084131469d34d58b1e5061f96f49047
size 26668

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3a33356b74632c4fbd8de6aa6e57309aab81f36fad1168342c984216256ed146
size 32640

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:87523a41c72bcdce8a4b64f1809d1b6f4af2109ddf8315121af74fc59d49934b
size 27752

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d41be8eb8650acf3a527a37a4be89e5438634b15f0b1f45126fdbe7901ff0e2d
size 30824

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:605fbe1ee0e643260656801145e2d8aa28958e96ad0e06d1f2b459f5c4a7e8a7
size 30468

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5066828270bc14442f0038304c2de2412d6bf9316da1a95d0025d3096d12e77e
size 31508

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b35021cf4fc765884be27964b407dee1d3be79373d380059b0dfc64305af10c9
size 27009

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a30bf881eefb8f8596cb9c92b249be969c2efd27f65f4f69d5a412b1f5ef41cb
size 32068

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f9ef94e37947d6fb834720c84de23fe7ec65eb90f919ebd147353cee8cf07aac
size 27895

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c9bdefd0f7337a8347881e7c5e778ea31a814b8ec8431b7a8a87acaef6d78273
size 32197

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:74f9d7cd82299579f3bf1cd4e172734f5dc52cc6720e82d2065bf7240e818dd4
size 27058

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:eccf61fbbab38fd75d69acc787859deb5c180528ee33249101cf4c9403008690
size 26608

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fe6bf9a401bc5f7aadd2c982ff0e19c22f75bd261eae731c5d1b49a5bfeaba6a
size 27892

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a5941358a8d17f0ff4584b4947f2aba97db811ab2e27ff63c0cfdc859b3adcd9
size 31211

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fa1f6d37c0cd27fd7601ad5535171f27a84ba3254c354bc8eda4317c934f9e30
size 31706

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:03dc372705a211f0d6ff23d07acf6292fa3f1d68e719cc1253cf027d8c89e44e
size 26553

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:09fb9e92597a905a715e2bbcd6b176bcb000a6799688f5c58a7b2bfe28f8b83d
size 27928

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0ef76335f2a5874d6c0a1ab168f01a0290f3753d3971e205e4f449ca79740c3a
size 22184

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0dc4feba3d4639346834e8f1aacd6fef8acbf82c99b0c7285991a9ed0a56011f
size 31463

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3abf738bf729777c1c2c034d91b1c730549968c672fd17ad4d9fcf9d1a421edd
size 27792

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7cecb9f799a084b5f518dbcb43fad522234baed293aab90e0c5029efb405adbc
size 30191

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6d78cb7683957cadc0aa9cf754e2594041be88ba9d524b6ff0ee48a80cb6854e
size 31964

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:37105e4013c76cf4b454cb18bcb309ade3a8c9541db53c98864e94095400f5dd
size 29919

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:39397e7e81a0e745b1a166ee8ddade1a5e20d6ac92185999a32065492fdff119
size 30916

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fae1696a2d4d438537e0a023a99e97982ca852862c0d6ca43d84d6924101c999
size 31176

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7786ba7c67c21227717677058d97ffb87cd174105726a230e916209be5a16ee8
size 25512

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ff9ec33562450974267114341cbfac5ff5fe49861acb96a525df2d73c7f3bb06
size 31309

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7476e3ececccc0b7ca4d639f9cab5a0a87fef9c334d14c9cfc1fc8aa92c0938d
size 30583

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:321cbec5c3f477b46ff1fbd51c026a02a2edc02b160b90589a679fc8c7884736
size 30046

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5b120c568fdb747132cbc33d371410fdaf156656aa80367fba0c3c583934f6a9
size 26507

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c7323cc7b31fd05d1b47fc94a9285ddc3c8e0743364b3c854c871e13b4cc0655
size 28122

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6dede953de7d65b3f3bc6f55f62746e37859562f3e6f432d24a23c6fb7dc7be8
size 25531

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7ea91621bc884eed80b8f5cad514c3f6dba2a262cc25f49b53a66694b68756ad
size 29538

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cd038f313db4562c05a5839fc6e83d0a9f7ef20965360442100e6604721fcfc3
size 28112

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:13272ba15e2b74a7265d151afda1541420b06e4eb6bf4c4011fe0f486be8af62
size 30578

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:55d34ebfcce2bf043d51dec85b7c505d9d2e820f77e19d072a5ccb4873734fad
size 28052

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:43bf8f76f36218e4c1cc32a129544d24361684a908d28d6cc52efde87bb1e33b
size 25862

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:33ca04b419e8ae262db4160cf7b1e3b6813a40783908a091a1180ccd33e34e1b
size 29826

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:996bebae9c8dc1d9207963a977900ea692a727ea0ca689ea5bcf1599c6b9dae8
size 29932

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8f4efde7cdc92865fe902ef00accb889df0e83052b6e347401a7ad339c751f82
size 27856

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9e5174c1489665010b37ac9313f442a0af2f09c02ed2724a0f7c7c9e8139a13f
size 25657

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3e18f2854f7634023e25d38ba9ade8861a056b6ec88ae73d1991bacbb7a96d08
size 29384

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d6428f9556c79fdac5669dc50792e61dd75658bd4e95eba0d755eb9633aee133
size 29730

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:eebe9b2bc18d08f965d823dd25e832f214822c73be045da48b59b1e2d80b3547
size 28076

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:32ca924e6407ad198f774f5f8702b8c5e2043a7a9bd199901f5c9d790aba0036
size 25719

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:18eb76e36c9b74150c141b29eb80b753a8b0270fc491cc350ffa623228ce4577
size 28359

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:58adc8cabcbc87d013b5231f2c38857774d16990b6e4dc84ea8c49689b27b4e6
size 28858

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cfcdd900c0254e00e6ca78b6b4884ecbe690ea13ef46a220b2863cd1389c3338
size 30876

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:78c906029313feaec75325eff8e49a798401cd329fc02b3c56605183ea35e690
size 28494

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a3aa47b6b17129731c67c43be1a13d5a0a857cbe0972cf86d2a73fc0e21a0ea2
size 24339

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6f4c648fe48f9aaa5650968dd47c256a8a066d0c8207829929fb1bc53d68af76
size 23753

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:88ccc4eda8eb827b113fc4ffc700d5479cfbe6e4681cda8186b76f1324fb8e01
size 28592

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5fc112d3127dd6028b7b1686270027e4c271793b4dc4986f8feb9e119d4599e7
size 26701

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:49775844594a7e97a66b868a8d733780de2bc7aecea1711737073737aed58fb2
size 27596

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5bd64cd8b5f13fa385c82f5b5c03ffa04bb949e3402219f5bd81b28f038809ec
size 27552

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:33d8476f7c0341613bd30a3369efa8c4f9bf8815893af708299479432fd382c0
size 28696

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c450e7761e9a47b4cfe65d144383a4aa50084ebfbef0bf556d266af891b3e177
size 28279

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6718dd8d923322c662da26a34241398ed1bea86052d2bbd5a4b2f2d337b7ed3d
size 28744

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:767c9131637a9e92be805d8054e6c42a1a372cf98754881d0c794cfb70d1791b
size 28387

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:976cf83ace483253225d5a78e74edc175a249114cdff0a610ee77f7bc525f33a
size 28152

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0c8426c7459edb80fdc80dc539aa41b87adc39ede4722e1aba70be2194a93358
size 24385

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:405661b0738d945849363e0f2ad058560ec49df12f0ac520635e9ff4c8a4af2c
size 28447

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:18b6211f68a1f71b26c5df082d62ab98edba253f299a610550d28092826d3ccc
size 28320

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4efdbdf7f5b386f14c292ed463f9984e4bbf631f3bff2abd3f177dee2e800f31
size 26464

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1875d1e41b5a9c0a66af8499ceba86f332e8c46315ad82406e4a9f6b66c5f452
size 26710

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9e8f894d809171b741f115aeb24766bdab40f3bd7939bdf14b8d867aa43af145
size 27505

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4655185f7b5d1d9da3830bcc6ae84f24fdc13ee3e98f2ba604afdd8caba92d61
size 28010

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8ce6ce5c35dc909de46089d8f9497b9e547453bf4564aa45a1625306b0025895
size 27493

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a3589708748e472b2dc89cc9b5b3e4dac8bf22a7aa86660281e9af57f8e013db
size 26578

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6067dd185a1a1f6c650baf41ea3b28c7c4a57a43b9c60e08715e25c7651f6814
size 28226

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f0ba1b455571e3a4fa0d00d52da18f0df7c608d22224c2374b2088e692d4683f
size 27292

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:82f26cae97dfbdc20b92d2e6411f00783452a98893b4ce8b53f477803a740fee
size 27301

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7e24642483823b386c6c5c1ee1de61b28224ca286b9e395bcf2fb1f5fdf640d1
size 23734

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:97f602fbf0d0f98677da5cc28325962b2ccf30680271f7fdf8c1617f684e1f28
size 29322

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5fdc404044da0789d9d8cba6957d45295c6a65d7378c26d5825caf200f1fcb2f
size 28381

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:86bd120e5b365265126e326ab66459a234436177d2975a04f1a48eb3281444a0
size 27371

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4521731630fca35a189e00beeb2aeead2de33d4b73ea4d9b175d51cb4ba1924d
size 28963

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:110eebb03220bc95608c9e8a3ea04581dfc21f82cbdc147622a9be46123805c0
size 27779

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9939482be85222e7c5e2452d44d72b0716124c78e31d603652c9ed4458ed3875
size 28028

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b7b2829fdf78df8118156252d16b77b1c90b6e70ac87f0b82fb06e194327aea0
size 27743

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:245cabdd38360dc78eafd56d26bd85a7b0cecdff01a0613b2d1023a274dd48a2
size 28459

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:180495825b055d230fa43d6a5ff5fd621e43b6404f894e5a0e0d10d6513d0f51
size 29025

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:191aa7372aadb13bbbd700d8617763849657f428de1cf085e03f1e65579aea5d
size 28534

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4159b1a4abfb5fa7e2d67cc1a35a43797d178177f21c69838f1acab7d133f070
size 27600

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:afbb22f460e19562d04ca56ae2aec8d71d708143432aa7e1185c154fea358c8a
size 27905

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5b39572b44ffef5504228f1532a899a04c8b032ee4c9e3b187f520e850d724a3
size 27667

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f68d066dfac012f6c17fc155fb39772be34b0f24b7942f4b532b89d5930603b9
size 27446

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c90d4fcbc93f0a3df616eb4bfc721ec2500d0d7d4e302258c402929be82d3f37
size 27728

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:14f5d34a3bb383bb944e142cfacf5ac4f99ca799ea7f537b493fc9e7775bebcc
size 25937

Some files were not shown because too many files have changed in this diff Show More