Instructions to use Thireus/Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_SPLIT with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use Thireus/Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_SPLIT with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="Thireus/Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_SPLIT", filename="Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00001-of-01132.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Thireus/Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_SPLIT with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf Thireus/Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_SPLIT # Run inference directly in the terminal: llama-cli -hf Thireus/Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_SPLIT
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf Thireus/Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_SPLIT # Run inference directly in the terminal: llama-cli -hf Thireus/Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_SPLIT
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf Thireus/Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_SPLIT # Run inference directly in the terminal: ./llama-cli -hf Thireus/Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_SPLIT
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf Thireus/Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_SPLIT # Run inference directly in the terminal: ./build/bin/llama-cli -hf Thireus/Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_SPLIT
Use Docker
docker model run hf.co/Thireus/Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_SPLIT
- LM Studio
- Jan
- Ollama
How to use Thireus/Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_SPLIT with Ollama:
ollama run hf.co/Thireus/Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_SPLIT
- Unsloth Studio
How to use Thireus/Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_SPLIT with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Thireus/Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_SPLIT to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Thireus/Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_SPLIT to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Thireus/Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_SPLIT to start chatting
- Pi
How to use Thireus/Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_SPLIT with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf Thireus/Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_SPLIT
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "Thireus/Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_SPLIT" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use Thireus/Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_SPLIT with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf Thireus/Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_SPLIT
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default Thireus/Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_SPLIT
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use Thireus/Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_SPLIT with Docker Model Runner:
docker model run hf.co/Thireus/Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_SPLIT
- Lemonade
How to use Thireus/Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_SPLIT with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Thireus/Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_SPLIT
Run and chat with the model
lemonade run user.Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_SPLIT-{{QUANT_TAG}}List all available models
lemonade list
Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_SPLIT
Browse files- .gitattributes +1 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00001-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00001-of-01132.gguf.sig +0 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00002-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00003-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00004-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00005-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00006-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00007-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00008-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00009-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00010-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00011-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00012-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00013-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00014-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00015-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00016-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00017-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00018-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00019-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00020-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00021-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00022-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00023-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00024-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00025-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00026-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00027-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00028-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00029-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00030-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00031-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00032-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00033-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00034-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00035-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00036-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00037-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00038-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00039-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00040-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00041-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00042-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00043-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00044-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00045-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00046-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00047-of-01132.gguf +3 -0
- Qwen3-235B-A22B-Instruct-2507-THIREUS-Q8_K_R8-SPECIAL_TENSOR-00048-of-01132.gguf +3 -0
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
*.gguf filter=lfs diff=lfs merge=lfs -text
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b8784dc3c3e31e6630698df8503f8bff3a8fab411d18ba2877b3d2114e432f62
|
| 3 |
+
size 5933568
|
|
Binary file (566 Bytes). View file
|
|
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:16ad43316a8cb341f20278339dd352e36d456dab65aab87d59e92e809d347a80
|
| 3 |
+
size 661225664
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eb282901d0b2869f599acb3eeefd70e54ae80a5e224219f23521ed926b60eab4
|
| 3 |
+
size 704
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a30a2ec396b8a7a6627c8719a3d70d0b2dd101c3d8b92bd48bde2b4a6c212e69
|
| 3 |
+
size 2113728
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:71ecc3cd5dae4bf11fd3a06adb66998b488f9750b9e5b54b49d17f4316a3bb10
|
| 3 |
+
size 33816768
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:44717c11d0aea4f89010d5778fa87b8ae757c6274a147f9e9bbf7b46e1a04b89
|
| 3 |
+
size 704
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b18af9ddb16ff97c0b562d0e2c70251af37953a6d69a532ae1a73086d6e1d4fb
|
| 3 |
+
size 33816768
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8764a94e2925c7171aa75de8acc735e842b837b21e68de48aeb1b058462a0775
|
| 3 |
+
size 2113728
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:312ae2e216390af4a879bc376e7ee3ba72d1622ee23faf37a1a4005952afdacd
|
| 3 |
+
size 16544
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:60964d3deb74be9532c3226f7cd63ad20300465fcc29ac63ae3269a024710489
|
| 3 |
+
size 811598016
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:79196a531c2a381bffb794af80745f4f25863b2100c317c5f5b267d37cca4f7c
|
| 3 |
+
size 811598016
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4e480ef2bcfe6d0f1423cab07d683300f476421f7c7473dc92be4fc281b530aa
|
| 3 |
+
size 811598016
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:abfb5d9f5168c6d7ef78a703f829d00d67303e6deb655c4fb0add398be6ad898
|
| 3 |
+
size 2097344
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dea71437a137f914c44742162f96074663d2834a47698340e78d0756e4845fbf
|
| 3 |
+
size 16544
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f58a41387d127232ed411d91cea9baf12c16c4310a7204001fc8dd71e3b0b939
|
| 3 |
+
size 704
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d6abf1a1e91e6b6667d49efe478b2e69ad0febf6205f7fea21e0c0bdcbd419bf
|
| 3 |
+
size 2113728
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:75ccf68ef47d8681c3dac84876f35a32eb76eb0a50b5784b9b2760df7743951d
|
| 3 |
+
size 33816768
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d26b28071a9bcded95f0b79a62d5311d1024c40b0218a738fe3a0e60479e85da
|
| 3 |
+
size 704
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b04079fbdea92e6c97a544efa70c879503f96cc54d5c515433d118f033ff2ffe
|
| 3 |
+
size 33816768
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:267b0b242bab01ed11ff580141749f9a3cdd1eb5567ed960aa6c37c69d6e4f22
|
| 3 |
+
size 2113728
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4ea4cdcfe59758b63e37ebffbb788a00ed945446656484d46b99a10c20aae98d
|
| 3 |
+
size 16544
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7f4a1656b305eab89b8c76e13fc8429f16d3d0794de5cc8a8cdfa7f4a068fb12
|
| 3 |
+
size 811598016
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5745f4d22a20b5da67e4c409fbda4054d97f16eebd9dd2d528eb3aee825af844
|
| 3 |
+
size 811598016
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:251fc94bf03fd9ff02aead97be01cd3d211abc4c86f4c2942516517720551adb
|
| 3 |
+
size 811598016
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:949867e9fec2b34a1e8a70f91f7e456da32026583a5204ed0243a2d332ddfd97
|
| 3 |
+
size 2097344
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9042ed5c57e39c96150839d2d7b212ad6f58aa7c715c26c33e96984043845356
|
| 3 |
+
size 16544
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c502f8c7b64c9405aaccc43c2188c7bd0cc8fa4a46e7dc63ccca4a91e0758b6c
|
| 3 |
+
size 704
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1d7ccc7953b19488e49b88c0a74d91c48799f90d2be4c29f4b7364575c3b8814
|
| 3 |
+
size 2113728
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:152f019c539388e7750ea9b7391740802eb13a8314bde8f04e2f00c484d3972e
|
| 3 |
+
size 33816768
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4308d00605ff292953eea760e2461da2d461bfed904b7a12aaa683d13bb30b1f
|
| 3 |
+
size 704
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:860e53977f05900bee81b986daffb38105c4921c74cb309fb6ad777774c7c330
|
| 3 |
+
size 33816768
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ee7918ab8b84ab1284ac362e45421e97311d7ccd8f0c0c07e56d2a3e4819332c
|
| 3 |
+
size 2113728
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7c590cece962394ca0ab8aaa9abf968dbe9ea2c010bf87a17189c8a5fe08d47f
|
| 3 |
+
size 16544
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:db010e6b3669d8e70a7e394d8697b6289d662c4c9b37a0ea05f772046f19fed0
|
| 3 |
+
size 811598016
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:88eb6062b830ac413f87cb0b08f7fb57eb28c0ec50f1a62cc8a38b94be8b807c
|
| 3 |
+
size 811598016
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c940c07b4f62c987e503a6e562f648b6bd8e8ff27d1d38e2a2f563803edc035e
|
| 3 |
+
size 811598016
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:049ffb4b1b93aadaab23303539c2e089ce6ff45ded1c493f82f2985ef1d3a412
|
| 3 |
+
size 2097344
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1c4d94d5509c7808a604cf19a896cdc6ba0dc49ae8fbf9de0a0c1e2f7c74ecce
|
| 3 |
+
size 16544
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4e3728a90af327dbd1501b217bfebbc69e00ab26928732e55d90a39ca02b1c31
|
| 3 |
+
size 704
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0cbf73cc68fe9b87fccb2e3727502a3080f82704bd3e47d37872b7d78f15375a
|
| 3 |
+
size 2113728
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:835cedbcd953b4c188566d567e5c2f993ea0893701c9edd4263212efc8e2d36a
|
| 3 |
+
size 33816768
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4ba417b465b7640cc80f8fca5504bdbf60ace9fe2abaa4ee8c6ab05d409fe0f9
|
| 3 |
+
size 704
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:49e40400c150569ddf3c4873f7523e35a204991452f7aeabdb7a55d9734cefaf
|
| 3 |
+
size 33816768
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:054ffa4955af60e9b35d409d53a943413e728c982e50af492c12de760f92239a
|
| 3 |
+
size 2113728
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6fa1c8bc4b479f73ca07e812856280bee471f33e95b029df60c3265e190a7ac2
|
| 3 |
+
size 16544
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3e858727210802f0eb77a1245a5970b93b3a5b6ccf8cc23f3724ac77394365ac
|
| 3 |
+
size 811598016
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2429f5d4519c780b74d5acb55f256ee3b35bab11b832cdbe64b08c84d09cd4db
|
| 3 |
+
size 811598016
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:009a495d9fc468e8dbcbca120749b6f82f711bb381d802b86c03724fa45bd87e
|
| 3 |
+
size 811598016
|