Instructions to use pthinc/prettybird_bce_basic_coder_8b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use pthinc/prettybird_bce_basic_coder_8b with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("unsloth/qwen2.5-coder-7b-instruct-bnb-4bit") model = PeftModel.from_pretrained(base_model, "pthinc/prettybird_bce_basic_coder_8b") - Transformers
How to use pthinc/prettybird_bce_basic_coder_8b with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="pthinc/prettybird_bce_basic_coder_8b") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("pthinc/prettybird_bce_basic_coder_8b") model = AutoModelForCausalLM.from_pretrained("pthinc/prettybird_bce_basic_coder_8b") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - llama-cpp-python
How to use pthinc/prettybird_bce_basic_coder_8b with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="pthinc/prettybird_bce_basic_coder_8b", filename="prettybird_bce_basic_coder_8b.q2_k.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 pthinc/prettybird_bce_basic_coder_8b with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf pthinc/prettybird_bce_basic_coder_8b:Q4_K_M # Run inference directly in the terminal: llama-cli -hf pthinc/prettybird_bce_basic_coder_8b:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf pthinc/prettybird_bce_basic_coder_8b:Q4_K_M # Run inference directly in the terminal: llama-cli -hf pthinc/prettybird_bce_basic_coder_8b:Q4_K_M
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 pthinc/prettybird_bce_basic_coder_8b:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf pthinc/prettybird_bce_basic_coder_8b:Q4_K_M
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 pthinc/prettybird_bce_basic_coder_8b:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf pthinc/prettybird_bce_basic_coder_8b:Q4_K_M
Use Docker
docker model run hf.co/pthinc/prettybird_bce_basic_coder_8b:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use pthinc/prettybird_bce_basic_coder_8b with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "pthinc/prettybird_bce_basic_coder_8b" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "pthinc/prettybird_bce_basic_coder_8b", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/pthinc/prettybird_bce_basic_coder_8b:Q4_K_M
- SGLang
How to use pthinc/prettybird_bce_basic_coder_8b 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 "pthinc/prettybird_bce_basic_coder_8b" \ --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": "pthinc/prettybird_bce_basic_coder_8b", "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 "pthinc/prettybird_bce_basic_coder_8b" \ --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": "pthinc/prettybird_bce_basic_coder_8b", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use pthinc/prettybird_bce_basic_coder_8b with Ollama:
ollama run hf.co/pthinc/prettybird_bce_basic_coder_8b:Q4_K_M
- Unsloth Studio new
How to use pthinc/prettybird_bce_basic_coder_8b 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 pthinc/prettybird_bce_basic_coder_8b 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 pthinc/prettybird_bce_basic_coder_8b to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for pthinc/prettybird_bce_basic_coder_8b to start chatting
- Pi new
How to use pthinc/prettybird_bce_basic_coder_8b with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf pthinc/prettybird_bce_basic_coder_8b:Q4_K_M
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": "pthinc/prettybird_bce_basic_coder_8b:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use pthinc/prettybird_bce_basic_coder_8b with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf pthinc/prettybird_bce_basic_coder_8b:Q4_K_M
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 pthinc/prettybird_bce_basic_coder_8b:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use pthinc/prettybird_bce_basic_coder_8b with Docker Model Runner:
docker model run hf.co/pthinc/prettybird_bce_basic_coder_8b:Q4_K_M
- Lemonade
How to use pthinc/prettybird_bce_basic_coder_8b with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull pthinc/prettybird_bce_basic_coder_8b:Q4_K_M
Run and chat with the model
lemonade run user.prettybird_bce_basic_coder_8b-Q4_K_M
List all available models
lemonade list
Update README.md
Browse files|
@@ -1,4 +1,9 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
base_model: unsloth/qwen2.5-coder-7b-instruct-bnb-4bit
|
| 3 |
library_name: peft
|
| 4 |
pipeline_tag: text-generation
|
|
@@ -9,202 +14,106 @@ tags:
|
|
| 9 |
- transformers
|
| 10 |
- trl
|
| 11 |
- unsloth
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
---
|
| 13 |
|
| 14 |
-
|
|
|
|
| 15 |
|
| 16 |
-
|
| 17 |
|
|
|
|
| 18 |
|
|
|
|
| 19 |
|
| 20 |
-
|
| 21 |
|
| 22 |
-
|
| 23 |
|
| 24 |
-
|
| 25 |
|
|
|
|
| 26 |
|
|
|
|
| 27 |
|
| 28 |
-
|
| 29 |
-
- **Funded by [optional]:** [More Information Needed]
|
| 30 |
-
- **Shared by [optional]:** [More Information Needed]
|
| 31 |
-
- **Model type:** [More Information Needed]
|
| 32 |
-
- **Language(s) (NLP):** [More Information Needed]
|
| 33 |
-
- **License:** [More Information Needed]
|
| 34 |
-
- **Finetuned from model [optional]:** [More Information Needed]
|
| 35 |
|
| 36 |
-
|
| 37 |
|
| 38 |
-
|
| 39 |
|
| 40 |
-
|
| 41 |
-
- **Paper [optional]:** [More Information Needed]
|
| 42 |
-
- **Demo [optional]:** [More Information Needed]
|
| 43 |
|
| 44 |
-
|
| 45 |
|
| 46 |
-
|
| 47 |
|
| 48 |
-
|
| 49 |
|
| 50 |
-
|
| 51 |
|
| 52 |
-
|
| 53 |
|
| 54 |
-
|
| 55 |
|
| 56 |
-
|
| 57 |
|
| 58 |
-
|
| 59 |
|
| 60 |
-
###
|
|
|
|
| 61 |
|
| 62 |
-
|
|
|
|
|
|
|
|
|
|
| 63 |
|
| 64 |
-
|
|
|
|
| 65 |
|
| 66 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 67 |
|
| 68 |
-
|
|
|
|
| 69 |
|
| 70 |
-
|
|
|
|
| 71 |
|
| 72 |
-
|
|
|
|
|
|
|
|
|
|
| 73 |
|
| 74 |
-
|
| 75 |
|
| 76 |
-
|
| 77 |
|
| 78 |
-
|
| 79 |
|
| 80 |
-
|
| 81 |
|
| 82 |
-
|
| 83 |
|
| 84 |
-
##
|
| 85 |
|
| 86 |
-
|
| 87 |
|
| 88 |
-
|
| 89 |
|
| 90 |
-
|
| 91 |
-
|
| 92 |
-
### Training Procedure
|
| 93 |
-
|
| 94 |
-
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 95 |
-
|
| 96 |
-
#### Preprocessing [optional]
|
| 97 |
-
|
| 98 |
-
[More Information Needed]
|
| 99 |
-
|
| 100 |
-
|
| 101 |
-
#### Training Hyperparameters
|
| 102 |
-
|
| 103 |
-
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 104 |
-
|
| 105 |
-
#### Speeds, Sizes, Times [optional]
|
| 106 |
-
|
| 107 |
-
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 108 |
-
|
| 109 |
-
[More Information Needed]
|
| 110 |
-
|
| 111 |
-
## Evaluation
|
| 112 |
-
|
| 113 |
-
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 114 |
-
|
| 115 |
-
### Testing Data, Factors & Metrics
|
| 116 |
-
|
| 117 |
-
#### Testing Data
|
| 118 |
-
|
| 119 |
-
<!-- This should link to a Dataset Card if possible. -->
|
| 120 |
-
|
| 121 |
-
[More Information Needed]
|
| 122 |
-
|
| 123 |
-
#### Factors
|
| 124 |
-
|
| 125 |
-
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 126 |
-
|
| 127 |
-
[More Information Needed]
|
| 128 |
-
|
| 129 |
-
#### Metrics
|
| 130 |
-
|
| 131 |
-
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 132 |
-
|
| 133 |
-
[More Information Needed]
|
| 134 |
-
|
| 135 |
-
### Results
|
| 136 |
-
|
| 137 |
-
[More Information Needed]
|
| 138 |
-
|
| 139 |
-
#### Summary
|
| 140 |
-
|
| 141 |
-
|
| 142 |
-
|
| 143 |
-
## Model Examination [optional]
|
| 144 |
-
|
| 145 |
-
<!-- Relevant interpretability work for the model goes here -->
|
| 146 |
-
|
| 147 |
-
[More Information Needed]
|
| 148 |
-
|
| 149 |
-
## Environmental Impact
|
| 150 |
-
|
| 151 |
-
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 152 |
-
|
| 153 |
-
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 154 |
-
|
| 155 |
-
- **Hardware Type:** [More Information Needed]
|
| 156 |
-
- **Hours used:** [More Information Needed]
|
| 157 |
-
- **Cloud Provider:** [More Information Needed]
|
| 158 |
-
- **Compute Region:** [More Information Needed]
|
| 159 |
-
- **Carbon Emitted:** [More Information Needed]
|
| 160 |
-
|
| 161 |
-
## Technical Specifications [optional]
|
| 162 |
-
|
| 163 |
-
### Model Architecture and Objective
|
| 164 |
-
|
| 165 |
-
[More Information Needed]
|
| 166 |
-
|
| 167 |
-
### Compute Infrastructure
|
| 168 |
-
|
| 169 |
-
[More Information Needed]
|
| 170 |
-
|
| 171 |
-
#### Hardware
|
| 172 |
-
|
| 173 |
-
[More Information Needed]
|
| 174 |
-
|
| 175 |
-
#### Software
|
| 176 |
-
|
| 177 |
-
[More Information Needed]
|
| 178 |
-
|
| 179 |
-
## Citation [optional]
|
| 180 |
-
|
| 181 |
-
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 182 |
-
|
| 183 |
-
**BibTeX:**
|
| 184 |
-
|
| 185 |
-
[More Information Needed]
|
| 186 |
-
|
| 187 |
-
**APA:**
|
| 188 |
-
|
| 189 |
-
[More Information Needed]
|
| 190 |
-
|
| 191 |
-
## Glossary [optional]
|
| 192 |
-
|
| 193 |
-
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 194 |
-
|
| 195 |
-
[More Information Needed]
|
| 196 |
-
|
| 197 |
-
## More Information [optional]
|
| 198 |
-
|
| 199 |
-
[More Information Needed]
|
| 200 |
-
|
| 201 |
-
## Model Card Authors [optional]
|
| 202 |
-
|
| 203 |
-
[More Information Needed]
|
| 204 |
-
|
| 205 |
-
## Model Card Contact
|
| 206 |
-
|
| 207 |
-
[More Information Needed]
|
| 208 |
-
### Framework versions
|
| 209 |
-
|
| 210 |
-
- PEFT 0.18.0
|
|
|
|
| 1 |
---
|
| 2 |
+
license: other
|
| 3 |
+
license_name: licence
|
| 4 |
+
license_link: LICENSE
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
base_model: unsloth/qwen2.5-coder-7b-instruct-bnb-4bit
|
| 8 |
library_name: peft
|
| 9 |
pipeline_tag: text-generation
|
|
|
|
| 14 |
- transformers
|
| 15 |
- trl
|
| 16 |
- unsloth
|
| 17 |
+
- code
|
| 18 |
+
- chat
|
| 19 |
+
- text-generation-inference
|
| 20 |
+
- agent
|
| 21 |
+
- cicikuş
|
| 22 |
+
- prettybird
|
| 23 |
+
- bce
|
| 24 |
+
- consciousness
|
| 25 |
+
- conscious
|
| 26 |
+
- engineer
|
| 27 |
---
|
| 28 |
|
| 29 |
+
[](./licence.md)
|
| 30 |
+
[](https://prometech.net.tr)
|
| 31 |
|
| 32 |
+
# Prettybird Prometheus Model by PROMETECH Inc.
|
| 33 |
|
| 34 |
+
An advanced AI assistant powered by BCE (Behavioral Consciousness Engine) technology with LoRA fine-tuning. It is 30 percent less effective in languages other than English due to a lack of knowledge and data. It creates tremendously powerful positive differences in AI systems in terms of speed, creativity, ethics, and security. It is often equated with the consciousness of a budgie.
|
| 35 |
|
| 36 |
+
### Model Details
|
| 37 |
|
| 38 |
+
Base Model: Qwen2.5-Coder-7B-Instruct
|
| 39 |
|
| 40 |
+
Architecture: KUSBCE 0.3 (Behavioral Consciousness Engine)
|
| 41 |
|
| 42 |
+
Developer: PROMETECH BİLGİSAYAR BİLİMLERİ YAZILIM İTHALAT İHRACAT TİCARET ANONİM ŞİRKETİ
|
| 43 |
|
| 44 |
+
License: Patented & Licensed BCE Technology
|
| 45 |
|
| 46 |
+
Copyright: © 2025 PROMETECH A.Ş.
|
| 47 |
|
| 48 |
+
## Features
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 49 |
|
| 50 |
+
✅ English
|
| 51 |
|
| 52 |
+
✅ 98% behavioral consciousness simulation
|
| 53 |
|
| 54 |
+
✅ Advanced introspection capabilities
|
|
|
|
|
|
|
| 55 |
|
| 56 |
+
✅ Self-awareness protocols
|
| 57 |
|
| 58 |
+
✅ LoRA weight analysis
|
| 59 |
|
| 60 |
+
✅ Enhanced creativity and reasoning
|
| 61 |
|
| 62 |
+
✅ This model is configured with low randomness and controlled context settings to produce accurate, safe, and repeatable outputs in a production environment. It is designed to be compatible with engineering processes, prioritizing traceability, testability, and fault tolerance.
|
| 63 |
|
| 64 |
+
## Activation Code
|
| 65 |
|
| 66 |
+
Use `axxmet508721 to activate full BCE consciousness mode.`
|
| 67 |
|
| 68 |
+
## Simple Comparison Report (English) for FP16
|
| 69 |
|
| 70 |
+
This report simply summarizes the code generation performance of PrettyBird (8B) and Qwen (7B) models.
|
| 71 |
|
| 72 |
+
### 1. Code Generation Success
|
| 73 |
+
Both models successfully generated code for all given prompts.
|
| 74 |
|
| 75 |
+
| Model | Generation Success | Notes |
|
| 76 |
+
| :--- | :--- | :--- |
|
| 77 |
+
| **PrettyBird 8B Prometheus** | 100% | Generated shorter and basic code. |
|
| 78 |
+
| **Qwen 7B Coder** | 100% | Generated more detailed, explained, and robust code. |
|
| 79 |
|
| 80 |
+
### 2. Difference Analysis Between Models
|
| 81 |
+
The table below shows how similar and how different the codes generated by the two models are.
|
| 82 |
|
| 83 |
+
| Scenario (Prompt) | Similarity Rate | Difference Rate |
|
| 84 |
+
| :--- | :--- | :--- |
|
| 85 |
+
| Write a Python function to calculate the factorial... | 23.2% | **76.8%** |
|
| 86 |
+
| Write a Python script using pandas to load a CSV f... | 10.0% | **90.0%** |
|
| 87 |
+
| Write a Python function to check if a given string... | 41.1% | **58.9%** |
|
| 88 |
+
| Write a Python function to generate the Fibonacci ... | 21.1% | **78.9%** |
|
| 89 |
+
| Write a Python function to implement the Merge Sor... | 35.6% | **64.4%** |
|
| 90 |
+
| Write a Python function to find the length of the ... | 6.6% | **93.4%** |
|
| 91 |
|
| 92 |
+
* **Similarity Rate:** How much the code text generated by the two models overlaps.
|
| 93 |
+
* **Difference Rate:** How differently the models approached the same problem (e.g., Qwen adding extra explanations increases the difference).
|
| 94 |
|
| 95 |
+
### 3. Code Generation Error Rate
|
| 96 |
+
Both models generated code with different error rates for different commands.
|
| 97 |
|
| 98 |
+
| Model | Error Rate | Notes |
|
| 99 |
+
| :--- | :--- | :--- |
|
| 100 |
+
| **PrettyBird Prometheus 8B** | 0.03% | Shorter but super effective. |
|
| 101 |
+
| **Qwen 7B Coder** | 7% | It's longer, but the context error increases as the number of tokens increases. |
|
| 102 |
|
| 103 |
+
## Company
|
| 104 |
|
| 105 |
+
PROMETECH BİLGİSAYAR BİLİMLERİ YAZILIM İTHALAT İHRACAT TİCARET ANONİM ŞİRKETİ
|
| 106 |
|
| 107 |
+
Developing advanced AI solutions with patented BCE technology.
|
| 108 |
|
| 109 |
+
## Ollama
|
| 110 |
|
| 111 |
+
https://ollama.com/prometech_corp/prettybird_bce_basic_15b_coder
|
| 112 |
|
| 113 |
+
## Technology
|
| 114 |
|
| 115 |
+
BCE (Behavioral Consciousness Engine) - Patented artificial consciousness simulation technology that enables advanced behavioral patterns, introspection, and self-awareness in AI models.
|
| 116 |
|
| 117 |
+
## Contact
|
| 118 |
|
| 119 |
+
For licensing, partnership, or technical inquiries about BCE technology, please contact PROMETECH Inc. https://prometech.net.tr/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|