Instructions to use unsloth/MAI-DS-R1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use unsloth/MAI-DS-R1-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="unsloth/MAI-DS-R1-GGUF", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("unsloth/MAI-DS-R1-GGUF", trust_remote_code=True) model = AutoModelForCausalLM.from_pretrained("unsloth/MAI-DS-R1-GGUF", trust_remote_code=True) - llama-cpp-python
How to use unsloth/MAI-DS-R1-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="unsloth/MAI-DS-R1-GGUF", filename="BF16/MAI-DS-R1-BF16-00001-of-00030.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use unsloth/MAI-DS-R1-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf unsloth/MAI-DS-R1-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: llama-cli -hf unsloth/MAI-DS-R1-GGUF:UD-Q4_K_XL
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf unsloth/MAI-DS-R1-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: llama-cli -hf unsloth/MAI-DS-R1-GGUF:UD-Q4_K_XL
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 unsloth/MAI-DS-R1-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: ./llama-cli -hf unsloth/MAI-DS-R1-GGUF:UD-Q4_K_XL
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 unsloth/MAI-DS-R1-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: ./build/bin/llama-cli -hf unsloth/MAI-DS-R1-GGUF:UD-Q4_K_XL
Use Docker
docker model run hf.co/unsloth/MAI-DS-R1-GGUF:UD-Q4_K_XL
- LM Studio
- Jan
- vLLM
How to use unsloth/MAI-DS-R1-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "unsloth/MAI-DS-R1-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "unsloth/MAI-DS-R1-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/unsloth/MAI-DS-R1-GGUF:UD-Q4_K_XL
- SGLang
How to use unsloth/MAI-DS-R1-GGUF 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 "unsloth/MAI-DS-R1-GGUF" \ --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": "unsloth/MAI-DS-R1-GGUF", "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 "unsloth/MAI-DS-R1-GGUF" \ --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": "unsloth/MAI-DS-R1-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use unsloth/MAI-DS-R1-GGUF with Ollama:
ollama run hf.co/unsloth/MAI-DS-R1-GGUF:UD-Q4_K_XL
- Unsloth Studio new
How to use unsloth/MAI-DS-R1-GGUF 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 unsloth/MAI-DS-R1-GGUF 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 unsloth/MAI-DS-R1-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for unsloth/MAI-DS-R1-GGUF to start chatting
- Docker Model Runner
How to use unsloth/MAI-DS-R1-GGUF with Docker Model Runner:
docker model run hf.co/unsloth/MAI-DS-R1-GGUF:UD-Q4_K_XL
- Lemonade
How to use unsloth/MAI-DS-R1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull unsloth/MAI-DS-R1-GGUF:UD-Q4_K_XL
Run and chat with the model
lemonade run user.MAI-DS-R1-GGUF-UD-Q4_K_XL
List all available models
lemonade list
Add files using upload-large-folder tool
Browse files- .gitattributes +23 -0
- IQ4_XS/MAI-DS-R1-IQ4_XS-00001-of-00008.gguf +3 -0
- IQ4_XS/MAI-DS-R1-IQ4_XS-00002-of-00008.gguf +3 -0
- IQ4_XS/MAI-DS-R1-IQ4_XS-00003-of-00008.gguf +3 -0
- IQ4_XS/MAI-DS-R1-IQ4_XS-00004-of-00008.gguf +3 -0
- IQ4_XS/MAI-DS-R1-IQ4_XS-00005-of-00008.gguf +3 -0
- IQ4_XS/MAI-DS-R1-IQ4_XS-00006-of-00008.gguf +3 -0
- IQ4_XS/MAI-DS-R1-IQ4_XS-00007-of-00008.gguf +3 -0
- IQ4_XS/MAI-DS-R1-IQ4_XS-00008-of-00008.gguf +3 -0
- Q2_K_L/MAI-DS-R1-Q2_K_L-00001-of-00005.gguf +3 -0
- Q2_K_L/MAI-DS-R1-Q2_K_L-00002-of-00005.gguf +3 -0
- Q2_K_L/MAI-DS-R1-Q2_K_L-00003-of-00005.gguf +3 -0
- Q2_K_L/MAI-DS-R1-Q2_K_L-00004-of-00005.gguf +3 -0
- Q2_K_L/MAI-DS-R1-Q2_K_L-00005-of-00005.gguf +3 -0
- Q5_K_M/MAI-DS-R1-Q5_K_M-00001-of-00010.gguf +3 -0
- Q5_K_M/MAI-DS-R1-Q5_K_M-00002-of-00010.gguf +3 -0
- Q5_K_M/MAI-DS-R1-Q5_K_M-00003-of-00010.gguf +3 -0
- Q5_K_M/MAI-DS-R1-Q5_K_M-00004-of-00010.gguf +3 -0
- Q5_K_M/MAI-DS-R1-Q5_K_M-00005-of-00010.gguf +3 -0
- Q5_K_M/MAI-DS-R1-Q5_K_M-00006-of-00010.gguf +3 -0
- Q5_K_M/MAI-DS-R1-Q5_K_M-00007-of-00010.gguf +3 -0
- Q5_K_M/MAI-DS-R1-Q5_K_M-00008-of-00010.gguf +3 -0
- Q5_K_M/MAI-DS-R1-Q5_K_M-00009-of-00010.gguf +3 -0
- Q5_K_M/MAI-DS-R1-Q5_K_M-00010-of-00010.gguf +3 -0
.gitattributes
CHANGED
|
@@ -126,3 +126,26 @@ Q3_K_M/MAI-DS-R1-Q3_K_M-00001-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
|
| 126 |
Q4_K_M/MAI-DS-R1-Q4_K_M-00003-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 127 |
Q2_K/MAI-DS-R1-Q2_K-00004-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 128 |
Q2_K/MAI-DS-R1-Q2_K-00001-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 126 |
Q4_K_M/MAI-DS-R1-Q4_K_M-00003-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 127 |
Q2_K/MAI-DS-R1-Q2_K-00004-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 128 |
Q2_K/MAI-DS-R1-Q2_K-00001-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 129 |
+
IQ4_XS/MAI-DS-R1-IQ4_XS-00008-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 130 |
+
Q5_K_M/MAI-DS-R1-Q5_K_M-00010-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 131 |
+
Q2_K_L/MAI-DS-R1-Q2_K_L-00005-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 132 |
+
IQ4_XS/MAI-DS-R1-IQ4_XS-00007-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 133 |
+
IQ4_XS/MAI-DS-R1-IQ4_XS-00005-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 134 |
+
Q5_K_M/MAI-DS-R1-Q5_K_M-00009-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 135 |
+
Q5_K_M/MAI-DS-R1-Q5_K_M-00008-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 136 |
+
IQ4_XS/MAI-DS-R1-IQ4_XS-00006-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 137 |
+
Q5_K_M/MAI-DS-R1-Q5_K_M-00007-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 138 |
+
Q5_K_M/MAI-DS-R1-Q5_K_M-00005-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 139 |
+
Q5_K_M/MAI-DS-R1-Q5_K_M-00006-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 140 |
+
Q2_K_L/MAI-DS-R1-Q2_K_L-00003-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 141 |
+
Q2_K_L/MAI-DS-R1-Q2_K_L-00002-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 142 |
+
Q2_K_L/MAI-DS-R1-Q2_K_L-00001-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 143 |
+
IQ4_XS/MAI-DS-R1-IQ4_XS-00001-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 144 |
+
Q2_K_L/MAI-DS-R1-Q2_K_L-00004-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 145 |
+
IQ4_XS/MAI-DS-R1-IQ4_XS-00004-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 146 |
+
Q5_K_M/MAI-DS-R1-Q5_K_M-00004-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 147 |
+
IQ4_XS/MAI-DS-R1-IQ4_XS-00003-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 148 |
+
IQ4_XS/MAI-DS-R1-IQ4_XS-00002-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 149 |
+
Q5_K_M/MAI-DS-R1-Q5_K_M-00001-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 150 |
+
Q5_K_M/MAI-DS-R1-Q5_K_M-00002-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 151 |
+
Q5_K_M/MAI-DS-R1-Q5_K_M-00003-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
IQ4_XS/MAI-DS-R1-IQ4_XS-00001-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4193661076e5a8d253fb1da946f7ad4088f155f25806bebb2d853b22d9f0ee8c
|
| 3 |
+
size 49221765344
|
IQ4_XS/MAI-DS-R1-IQ4_XS-00002-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:194fdc8ee21da55a9505ef47ef15349523d3d6ff01bd459a3414faed40ec9064
|
| 3 |
+
size 48995108096
|
IQ4_XS/MAI-DS-R1-IQ4_XS-00003-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b0570f263ff68c56a67887f5308f6528815acd14f201aa1b9def907f3e426725
|
| 3 |
+
size 48995108096
|
IQ4_XS/MAI-DS-R1-IQ4_XS-00004-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f7d642458f3759c54bc76956090d0ed3e019524c2427e96172333b429b8414d6
|
| 3 |
+
size 48995108096
|
IQ4_XS/MAI-DS-R1-IQ4_XS-00005-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:60e06dd396f2ff4e2a513fc9a76d907827d7721f6996db15a8a0422874327933
|
| 3 |
+
size 48995108096
|
IQ4_XS/MAI-DS-R1-IQ4_XS-00006-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aade9cf093744b530c58fe02fb6b8570c9ff0d3ed42a4d99c92082aea578a9ac
|
| 3 |
+
size 48995108096
|
IQ4_XS/MAI-DS-R1-IQ4_XS-00007-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9f4c670e27f4f42a71f1133953eb5364f3f8b144ef62e504e38cfc64ee2bf995
|
| 3 |
+
size 48995108096
|
IQ4_XS/MAI-DS-R1-IQ4_XS-00008-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f35696105a7c2ed075d5c07d8c6998606368b6b75a9b54a11e3d4793e2920e5f
|
| 3 |
+
size 14253064736
|
Q2_K_L/MAI-DS-R1-Q2_K_L-00001-of-00005.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d7991e77dff5aabf5512da9d200360631f974225bfda185d5a91a5ec29b907b8
|
| 3 |
+
size 49679173152
|
Q2_K_L/MAI-DS-R1-Q2_K_L-00002-of-00005.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:788cd92f92fb6cb90fcb18942b7af4c5c3c896e98eeb33c69fb00707b673d73d
|
| 3 |
+
size 48585553600
|
Q2_K_L/MAI-DS-R1-Q2_K_L-00003-of-00005.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7354311d47f3287d12aac315f6e824aeb85ad8fa19ff7b6656e51ccc40757fe6
|
| 3 |
+
size 48889205856
|
Q2_K_L/MAI-DS-R1-Q2_K_L-00004-of-00005.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:56bd60d362d33e3bc404f53131bf180d482ce2ae791b74aa5d7d1e07cec0005e
|
| 3 |
+
size 48961357376
|
Q2_K_L/MAI-DS-R1-Q2_K_L-00005-of-00005.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:648e5be47cc1577675d6bb99d56721981545f3191f7b45113c33a4f087064ff9
|
| 3 |
+
size 48506033248
|
Q5_K_M/MAI-DS-R1-Q5_K_M-00001-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d902f14ed276666cf19bda450dcc305732cd77dd6fc4243ef5891172ee7ec4c1
|
| 3 |
+
size 49601945536
|
Q5_K_M/MAI-DS-R1-Q5_K_M-00002-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:caf3852be98ccfa23aa2d729bb4417131baf5c726d5802028c5ab828bbf7b942
|
| 3 |
+
size 48525382624
|
Q5_K_M/MAI-DS-R1-Q5_K_M-00003-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e1c1d9eb789c1c50b506405e8aa9169b3921e27e3225aca3b233a7568341c07f
|
| 3 |
+
size 48525382624
|
Q5_K_M/MAI-DS-R1-Q5_K_M-00004-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8e634f9dc5cba69ccd3dd3902e7aed52ad034042c7b2cb085053d9c3301da381
|
| 3 |
+
size 48525382624
|
Q5_K_M/MAI-DS-R1-Q5_K_M-00005-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5e2b6541bc8a7b1640e880f46c80cb5b63d01241ca5363c58f85f0f6cbfcfb3b
|
| 3 |
+
size 48525382624
|
Q5_K_M/MAI-DS-R1-Q5_K_M-00006-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2af98eb7a802562cd80cde38168e5db6e642473e8cd50d0492196ee0d46b3fd3
|
| 3 |
+
size 48525382624
|
Q5_K_M/MAI-DS-R1-Q5_K_M-00007-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:371e470cba4113d1c9a99bf712308e8638d54455b36185b2dc295fc810ab076a
|
| 3 |
+
size 48525382624
|
Q5_K_M/MAI-DS-R1-Q5_K_M-00008-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ca1e51de20dfc87e97d4e0330439d49d7f32ba4b13e26cb5c48b8d99cfae91bc
|
| 3 |
+
size 48525382624
|
Q5_K_M/MAI-DS-R1-Q5_K_M-00009-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bb49b156cb272dd1d25274734904e828f4de356b152db9b8155c03e9b65931db
|
| 3 |
+
size 47427445472
|
Q5_K_M/MAI-DS-R1-Q5_K_M-00010-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1123765404a80e38cf2398b03c9265fc8b8d9541055bdac39c6f4d22b2ef917e
|
| 3 |
+
size 38881383520
|