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

Model: 2022uec1542/clarify-rl-grpo-qwen3-1-7b
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-06-16 05:23:17 +08:00
commit c7810a6963
312 changed files with 22252 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/2022uec1542/huggingface-static-439ae7
- trl
- hf_jobs
- trackio
- grpo
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="2022uec1542/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:d5b8dcdd330b9dc41ec5200149a8476512777cf1dab46804032683a5664d00e7
size 31016

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

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