Text Generation
Transformers
Safetensors
Romanian
English
rost
romanian
bilingual
nanochat
conversational
custom_code
Instructions to use rostlabs/rost-1b-instruct with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use rostlabs/rost-1b-instruct with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="rostlabs/rost-1b-instruct", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("rostlabs/rost-1b-instruct", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use rostlabs/rost-1b-instruct with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "rostlabs/rost-1b-instruct" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "rostlabs/rost-1b-instruct", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/rostlabs/rost-1b-instruct
- SGLang
How to use rostlabs/rost-1b-instruct 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 "rostlabs/rost-1b-instruct" \ --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": "rostlabs/rost-1b-instruct", "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 "rostlabs/rost-1b-instruct" \ --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": "rostlabs/rost-1b-instruct", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use rostlabs/rost-1b-instruct with Docker Model Runner:
docker model run hf.co/rostlabs/rost-1b-instruct
Remove the float32 shards, superseded by model.safetensors
Browse files- model.safetensors.index.json +0 -182
model.safetensors.index.json
DELETED
|
@@ -1,182 +0,0 @@
|
|
| 1 |
-
{
|
| 2 |
-
"metadata": {
|
| 3 |
-
"total_size": 5536488488
|
| 4 |
-
},
|
| 5 |
-
"weight_map": {
|
| 6 |
-
"resid_lambdas": "model-00001-of-00002.safetensors",
|
| 7 |
-
"x0_lambdas": "model-00001-of-00002.safetensors",
|
| 8 |
-
"smear_lambda": "model-00001-of-00002.safetensors",
|
| 9 |
-
"backout_lambda": "model-00001-of-00002.safetensors",
|
| 10 |
-
"transformer.wte.weight": "model-00001-of-00002.safetensors",
|
| 11 |
-
"transformer.h.0.attn.c_q.weight": "model-00001-of-00002.safetensors",
|
| 12 |
-
"transformer.h.0.attn.c_k.weight": "model-00001-of-00002.safetensors",
|
| 13 |
-
"transformer.h.0.attn.c_v.weight": "model-00001-of-00002.safetensors",
|
| 14 |
-
"transformer.h.0.attn.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 15 |
-
"transformer.h.0.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
| 16 |
-
"transformer.h.0.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 17 |
-
"transformer.h.1.attn.c_q.weight": "model-00001-of-00002.safetensors",
|
| 18 |
-
"transformer.h.1.attn.c_k.weight": "model-00001-of-00002.safetensors",
|
| 19 |
-
"transformer.h.1.attn.c_v.weight": "model-00001-of-00002.safetensors",
|
| 20 |
-
"transformer.h.1.attn.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 21 |
-
"transformer.h.1.attn.ve_gate.weight": "model-00001-of-00002.safetensors",
|
| 22 |
-
"transformer.h.1.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
| 23 |
-
"transformer.h.1.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 24 |
-
"transformer.h.2.attn.c_q.weight": "model-00001-of-00002.safetensors",
|
| 25 |
-
"transformer.h.2.attn.c_k.weight": "model-00001-of-00002.safetensors",
|
| 26 |
-
"transformer.h.2.attn.c_v.weight": "model-00001-of-00002.safetensors",
|
| 27 |
-
"transformer.h.2.attn.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 28 |
-
"transformer.h.2.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
| 29 |
-
"transformer.h.2.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 30 |
-
"transformer.h.3.attn.c_q.weight": "model-00001-of-00002.safetensors",
|
| 31 |
-
"transformer.h.3.attn.c_k.weight": "model-00001-of-00002.safetensors",
|
| 32 |
-
"transformer.h.3.attn.c_v.weight": "model-00001-of-00002.safetensors",
|
| 33 |
-
"transformer.h.3.attn.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 34 |
-
"transformer.h.3.attn.ve_gate.weight": "model-00001-of-00002.safetensors",
|
| 35 |
-
"transformer.h.3.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
| 36 |
-
"transformer.h.3.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 37 |
-
"transformer.h.4.attn.c_q.weight": "model-00001-of-00002.safetensors",
|
| 38 |
-
"transformer.h.4.attn.c_k.weight": "model-00001-of-00002.safetensors",
|
| 39 |
-
"transformer.h.4.attn.c_v.weight": "model-00001-of-00002.safetensors",
|
| 40 |
-
"transformer.h.4.attn.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 41 |
-
"transformer.h.4.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
| 42 |
-
"transformer.h.4.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 43 |
-
"transformer.h.5.attn.c_q.weight": "model-00001-of-00002.safetensors",
|
| 44 |
-
"transformer.h.5.attn.c_k.weight": "model-00001-of-00002.safetensors",
|
| 45 |
-
"transformer.h.5.attn.c_v.weight": "model-00001-of-00002.safetensors",
|
| 46 |
-
"transformer.h.5.attn.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 47 |
-
"transformer.h.5.attn.ve_gate.weight": "model-00001-of-00002.safetensors",
|
| 48 |
-
"transformer.h.5.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
| 49 |
-
"transformer.h.5.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 50 |
-
"transformer.h.6.attn.c_q.weight": "model-00001-of-00002.safetensors",
|
| 51 |
-
"transformer.h.6.attn.c_k.weight": "model-00001-of-00002.safetensors",
|
| 52 |
-
"transformer.h.6.attn.c_v.weight": "model-00001-of-00002.safetensors",
|
| 53 |
-
"transformer.h.6.attn.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 54 |
-
"transformer.h.6.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
| 55 |
-
"transformer.h.6.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 56 |
-
"transformer.h.7.attn.c_q.weight": "model-00001-of-00002.safetensors",
|
| 57 |
-
"transformer.h.7.attn.c_k.weight": "model-00001-of-00002.safetensors",
|
| 58 |
-
"transformer.h.7.attn.c_v.weight": "model-00001-of-00002.safetensors",
|
| 59 |
-
"transformer.h.7.attn.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 60 |
-
"transformer.h.7.attn.ve_gate.weight": "model-00001-of-00002.safetensors",
|
| 61 |
-
"transformer.h.7.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
| 62 |
-
"transformer.h.7.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 63 |
-
"transformer.h.8.attn.c_q.weight": "model-00001-of-00002.safetensors",
|
| 64 |
-
"transformer.h.8.attn.c_k.weight": "model-00001-of-00002.safetensors",
|
| 65 |
-
"transformer.h.8.attn.c_v.weight": "model-00001-of-00002.safetensors",
|
| 66 |
-
"transformer.h.8.attn.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 67 |
-
"transformer.h.8.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
| 68 |
-
"transformer.h.8.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 69 |
-
"transformer.h.9.attn.c_q.weight": "model-00001-of-00002.safetensors",
|
| 70 |
-
"transformer.h.9.attn.c_k.weight": "model-00001-of-00002.safetensors",
|
| 71 |
-
"transformer.h.9.attn.c_v.weight": "model-00001-of-00002.safetensors",
|
| 72 |
-
"transformer.h.9.attn.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 73 |
-
"transformer.h.9.attn.ve_gate.weight": "model-00001-of-00002.safetensors",
|
| 74 |
-
"transformer.h.9.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
| 75 |
-
"transformer.h.9.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 76 |
-
"transformer.h.10.attn.c_q.weight": "model-00001-of-00002.safetensors",
|
| 77 |
-
"transformer.h.10.attn.c_k.weight": "model-00001-of-00002.safetensors",
|
| 78 |
-
"transformer.h.10.attn.c_v.weight": "model-00001-of-00002.safetensors",
|
| 79 |
-
"transformer.h.10.attn.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 80 |
-
"transformer.h.10.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
| 81 |
-
"transformer.h.10.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 82 |
-
"transformer.h.11.attn.c_q.weight": "model-00001-of-00002.safetensors",
|
| 83 |
-
"transformer.h.11.attn.c_k.weight": "model-00001-of-00002.safetensors",
|
| 84 |
-
"transformer.h.11.attn.c_v.weight": "model-00001-of-00002.safetensors",
|
| 85 |
-
"transformer.h.11.attn.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 86 |
-
"transformer.h.11.attn.ve_gate.weight": "model-00001-of-00002.safetensors",
|
| 87 |
-
"transformer.h.11.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
| 88 |
-
"transformer.h.11.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 89 |
-
"transformer.h.12.attn.c_q.weight": "model-00001-of-00002.safetensors",
|
| 90 |
-
"transformer.h.12.attn.c_k.weight": "model-00001-of-00002.safetensors",
|
| 91 |
-
"transformer.h.12.attn.c_v.weight": "model-00001-of-00002.safetensors",
|
| 92 |
-
"transformer.h.12.attn.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 93 |
-
"transformer.h.12.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
| 94 |
-
"transformer.h.12.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 95 |
-
"transformer.h.13.attn.c_q.weight": "model-00001-of-00002.safetensors",
|
| 96 |
-
"transformer.h.13.attn.c_k.weight": "model-00001-of-00002.safetensors",
|
| 97 |
-
"transformer.h.13.attn.c_v.weight": "model-00001-of-00002.safetensors",
|
| 98 |
-
"transformer.h.13.attn.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 99 |
-
"transformer.h.13.attn.ve_gate.weight": "model-00001-of-00002.safetensors",
|
| 100 |
-
"transformer.h.13.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
| 101 |
-
"transformer.h.13.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 102 |
-
"transformer.h.14.attn.c_q.weight": "model-00001-of-00002.safetensors",
|
| 103 |
-
"transformer.h.14.attn.c_k.weight": "model-00001-of-00002.safetensors",
|
| 104 |
-
"transformer.h.14.attn.c_v.weight": "model-00001-of-00002.safetensors",
|
| 105 |
-
"transformer.h.14.attn.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 106 |
-
"transformer.h.14.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
| 107 |
-
"transformer.h.14.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 108 |
-
"transformer.h.15.attn.c_q.weight": "model-00001-of-00002.safetensors",
|
| 109 |
-
"transformer.h.15.attn.c_k.weight": "model-00001-of-00002.safetensors",
|
| 110 |
-
"transformer.h.15.attn.c_v.weight": "model-00001-of-00002.safetensors",
|
| 111 |
-
"transformer.h.15.attn.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 112 |
-
"transformer.h.15.attn.ve_gate.weight": "model-00001-of-00002.safetensors",
|
| 113 |
-
"transformer.h.15.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
| 114 |
-
"transformer.h.15.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 115 |
-
"transformer.h.16.attn.c_q.weight": "model-00001-of-00002.safetensors",
|
| 116 |
-
"transformer.h.16.attn.c_k.weight": "model-00001-of-00002.safetensors",
|
| 117 |
-
"transformer.h.16.attn.c_v.weight": "model-00001-of-00002.safetensors",
|
| 118 |
-
"transformer.h.16.attn.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 119 |
-
"transformer.h.16.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
| 120 |
-
"transformer.h.16.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 121 |
-
"transformer.h.17.attn.c_q.weight": "model-00001-of-00002.safetensors",
|
| 122 |
-
"transformer.h.17.attn.c_k.weight": "model-00001-of-00002.safetensors",
|
| 123 |
-
"transformer.h.17.attn.c_v.weight": "model-00001-of-00002.safetensors",
|
| 124 |
-
"transformer.h.17.attn.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 125 |
-
"transformer.h.17.attn.ve_gate.weight": "model-00001-of-00002.safetensors",
|
| 126 |
-
"transformer.h.17.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
| 127 |
-
"transformer.h.17.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 128 |
-
"transformer.h.18.attn.c_q.weight": "model-00001-of-00002.safetensors",
|
| 129 |
-
"transformer.h.18.attn.c_k.weight": "model-00001-of-00002.safetensors",
|
| 130 |
-
"transformer.h.18.attn.c_v.weight": "model-00001-of-00002.safetensors",
|
| 131 |
-
"transformer.h.18.attn.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 132 |
-
"transformer.h.18.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
| 133 |
-
"transformer.h.18.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 134 |
-
"transformer.h.19.attn.c_q.weight": "model-00001-of-00002.safetensors",
|
| 135 |
-
"transformer.h.19.attn.c_k.weight": "model-00001-of-00002.safetensors",
|
| 136 |
-
"transformer.h.19.attn.c_v.weight": "model-00001-of-00002.safetensors",
|
| 137 |
-
"transformer.h.19.attn.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 138 |
-
"transformer.h.19.attn.ve_gate.weight": "model-00001-of-00002.safetensors",
|
| 139 |
-
"transformer.h.19.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
| 140 |
-
"transformer.h.19.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 141 |
-
"transformer.h.20.attn.c_q.weight": "model-00001-of-00002.safetensors",
|
| 142 |
-
"transformer.h.20.attn.c_k.weight": "model-00001-of-00002.safetensors",
|
| 143 |
-
"transformer.h.20.attn.c_v.weight": "model-00001-of-00002.safetensors",
|
| 144 |
-
"transformer.h.20.attn.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 145 |
-
"transformer.h.20.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
| 146 |
-
"transformer.h.20.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 147 |
-
"transformer.h.21.attn.c_q.weight": "model-00001-of-00002.safetensors",
|
| 148 |
-
"transformer.h.21.attn.c_k.weight": "model-00001-of-00002.safetensors",
|
| 149 |
-
"transformer.h.21.attn.c_v.weight": "model-00001-of-00002.safetensors",
|
| 150 |
-
"transformer.h.21.attn.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 151 |
-
"transformer.h.21.attn.ve_gate.weight": "model-00001-of-00002.safetensors",
|
| 152 |
-
"transformer.h.21.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
| 153 |
-
"transformer.h.21.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 154 |
-
"transformer.h.22.attn.c_q.weight": "model-00001-of-00002.safetensors",
|
| 155 |
-
"transformer.h.22.attn.c_k.weight": "model-00001-of-00002.safetensors",
|
| 156 |
-
"transformer.h.22.attn.c_v.weight": "model-00001-of-00002.safetensors",
|
| 157 |
-
"transformer.h.22.attn.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 158 |
-
"transformer.h.22.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
| 159 |
-
"transformer.h.22.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 160 |
-
"transformer.h.23.attn.c_q.weight": "model-00001-of-00002.safetensors",
|
| 161 |
-
"transformer.h.23.attn.c_k.weight": "model-00001-of-00002.safetensors",
|
| 162 |
-
"transformer.h.23.attn.c_v.weight": "model-00001-of-00002.safetensors",
|
| 163 |
-
"transformer.h.23.attn.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 164 |
-
"transformer.h.23.attn.ve_gate.weight": "model-00001-of-00002.safetensors",
|
| 165 |
-
"transformer.h.23.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
| 166 |
-
"transformer.h.23.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
| 167 |
-
"lm_head.weight": "model-00001-of-00002.safetensors",
|
| 168 |
-
"smear_gate.weight": "model-00001-of-00002.safetensors",
|
| 169 |
-
"value_embeds.1.weight": "model-00001-of-00002.safetensors",
|
| 170 |
-
"value_embeds.3.weight": "model-00001-of-00002.safetensors",
|
| 171 |
-
"value_embeds.5.weight": "model-00001-of-00002.safetensors",
|
| 172 |
-
"value_embeds.7.weight": "model-00001-of-00002.safetensors",
|
| 173 |
-
"value_embeds.9.weight": "model-00002-of-00002.safetensors",
|
| 174 |
-
"value_embeds.11.weight": "model-00002-of-00002.safetensors",
|
| 175 |
-
"value_embeds.13.weight": "model-00002-of-00002.safetensors",
|
| 176 |
-
"value_embeds.15.weight": "model-00002-of-00002.safetensors",
|
| 177 |
-
"value_embeds.17.weight": "model-00002-of-00002.safetensors",
|
| 178 |
-
"value_embeds.19.weight": "model-00002-of-00002.safetensors",
|
| 179 |
-
"value_embeds.21.weight": "model-00002-of-00002.safetensors",
|
| 180 |
-
"value_embeds.23.weight": "model-00002-of-00002.safetensors"
|
| 181 |
-
}
|
| 182 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|