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

Model: Dar3devil/incident-commander-qwen3-1.7b-grpo-shaped
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-07-14 04:27:09 +08:00
commit 2976744603
149 changed files with 772 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

68
README.md Normal file
View File

@@ -0,0 +1,68 @@
---
base_model: Qwen/Qwen3-1.7B
library_name: transformers
model_name: incident-commander-qwen3-1.7b-grpo-shaped
tags:
- generated_from_trainer
- grpo
- trl
- hf_jobs
licence: license
---
# Model Card for incident-commander-qwen3-1.7b-grpo-shaped
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="Dar3devil/incident-commander-qwen3-1.7b-grpo-shaped", 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.3.0.dev0
- Transformers: 5.7.0.dev0
- Pytorch: 2.11.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:c0ed63e08e58ac43a6d78eeeaf6cdcc84fe0d679826633e71908c0f46433d7d8
size 10745

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

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