Instructions to use addyo07/vox-models with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use addyo07/vox-models with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="addyo07/vox-models", filename="llm/gemma4/Gemma-4-E2B-Uncensored-HauhauCS-Aggressive-Q2_K_P.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use addyo07/vox-models with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf addyo07/vox-models:Q4_K_M # Run inference directly in the terminal: llama-cli -hf addyo07/vox-models:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf addyo07/vox-models:Q4_K_M # Run inference directly in the terminal: llama-cli -hf addyo07/vox-models: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 addyo07/vox-models:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf addyo07/vox-models: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 addyo07/vox-models:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf addyo07/vox-models:Q4_K_M
Use Docker
docker model run hf.co/addyo07/vox-models:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use addyo07/vox-models with Ollama:
ollama run hf.co/addyo07/vox-models:Q4_K_M
- Unsloth Studio new
How to use addyo07/vox-models 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 addyo07/vox-models 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 addyo07/vox-models to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for addyo07/vox-models to start chatting
- Pi new
How to use addyo07/vox-models with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf addyo07/vox-models: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": "addyo07/vox-models:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use addyo07/vox-models with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf addyo07/vox-models: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 addyo07/vox-models:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use addyo07/vox-models with Docker Model Runner:
docker model run hf.co/addyo07/vox-models:Q4_K_M
- Lemonade
How to use addyo07/vox-models with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull addyo07/vox-models:Q4_K_M
Run and chat with the model
lemonade run user.vox-models-Q4_K_M
List all available models
lemonade list
addy-hypr4 commited on
Commit ·
527332b
1
Parent(s): 8f99f92
updated translit model and changed qwen asr to finetuned verisonv
Browse files- .gitattributes +2 -0
- manifest.json +12 -12
- stt/qwen3-asr/conv_frontend.onnx +1 -1
- stt/qwen3-asr/decoder.int8.onnx +2 -2
- stt/qwen3-asr/encoder.int8.onnx +1 -1
- translit/decoder.onnx +2 -2
- translit/encoder.onnx +2 -2
- translit/input_vocab.json +100 -66
- translit/target_vocab.json +61 -25
.gitattributes
CHANGED
|
@@ -47,3 +47,5 @@ tts/kokoro/model.onnx filter=lfs diff=lfs merge=lfs -text
|
|
| 47 |
tts/kokoro/*.bin filter=lfs diff=lfs merge=lfs -text
|
| 48 |
tts/kokoro/*.tar.gz filter=lfs diff=lfs merge=lfs -text
|
| 49 |
*.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
| 47 |
tts/kokoro/*.bin filter=lfs diff=lfs merge=lfs -text
|
| 48 |
tts/kokoro/*.tar.gz filter=lfs diff=lfs merge=lfs -text
|
| 49 |
*.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
stt filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
translit filter=lfs diff=lfs merge=lfs -text
|
manifest.json
CHANGED
|
@@ -12,50 +12,50 @@
|
|
| 12 |
{
|
| 13 |
"id": "translit_encoder",
|
| 14 |
"path": "translit/encoder.onnx",
|
| 15 |
-
"size":
|
| 16 |
-
"sha256": "
|
| 17 |
"required": true
|
| 18 |
},
|
| 19 |
{
|
| 20 |
"id": "translit_decoder",
|
| 21 |
"path": "translit/decoder.onnx",
|
| 22 |
-
"size":
|
| 23 |
-
"sha256": "
|
| 24 |
"required": true
|
| 25 |
},
|
| 26 |
{
|
| 27 |
"id": "translit_input_vocab",
|
| 28 |
"path": "translit/input_vocab.json",
|
| 29 |
-
"size":
|
| 30 |
-
"sha256": "
|
| 31 |
"required": true
|
| 32 |
},
|
| 33 |
{
|
| 34 |
"id": "translit_target_vocab",
|
| 35 |
"path": "translit/target_vocab.json",
|
| 36 |
-
"size":
|
| 37 |
-
"sha256": "
|
| 38 |
"required": true
|
| 39 |
},
|
| 40 |
{
|
| 41 |
"id": "stt_conv_frontend",
|
| 42 |
"path": "stt/qwen3-asr/conv_frontend.onnx",
|
| 43 |
"size": 44148281,
|
| 44 |
-
"sha256": "
|
| 45 |
"required": true
|
| 46 |
},
|
| 47 |
{
|
| 48 |
"id": "stt_encoder",
|
| 49 |
"path": "stt/qwen3-asr/encoder.int8.onnx",
|
| 50 |
"size": 182491662,
|
| 51 |
-
"sha256": "
|
| 52 |
"required": true
|
| 53 |
},
|
| 54 |
{
|
| 55 |
"id": "stt_decoder",
|
| 56 |
"path": "stt/qwen3-asr/decoder.int8.onnx",
|
| 57 |
-
"size":
|
| 58 |
-
"sha256": "
|
| 59 |
"required": true
|
| 60 |
},
|
| 61 |
{
|
|
|
|
| 12 |
{
|
| 13 |
"id": "translit_encoder",
|
| 14 |
"path": "translit/encoder.onnx",
|
| 15 |
+
"size": 9529392,
|
| 16 |
+
"sha256": "af1ed31d5af319a353587c746b5c7540646e154d977d7614081c30f8bfb40564",
|
| 17 |
"required": true
|
| 18 |
},
|
| 19 |
{
|
| 20 |
"id": "translit_decoder",
|
| 21 |
"path": "translit/decoder.onnx",
|
| 22 |
+
"size": 6819685,
|
| 23 |
+
"sha256": "4930f3460baf4c0f75a346e1320579469b4ff5e00d3e62375cbcb0cee5120aa3",
|
| 24 |
"required": true
|
| 25 |
},
|
| 26 |
{
|
| 27 |
"id": "translit_input_vocab",
|
| 28 |
"path": "translit/input_vocab.json",
|
| 29 |
+
"size": 1395,
|
| 30 |
+
"sha256": "b7126832254c449c9a208ec650feae5682a7f77323fd2e9bf2ad29c1ab7332e2",
|
| 31 |
"required": true
|
| 32 |
},
|
| 33 |
{
|
| 34 |
"id": "translit_target_vocab",
|
| 35 |
"path": "translit/target_vocab.json",
|
| 36 |
+
"size": 787,
|
| 37 |
+
"sha256": "bd5e364110187e05fcbf00529af0facf45a7838e2aa6b410390af1d80ff08f96",
|
| 38 |
"required": true
|
| 39 |
},
|
| 40 |
{
|
| 41 |
"id": "stt_conv_frontend",
|
| 42 |
"path": "stt/qwen3-asr/conv_frontend.onnx",
|
| 43 |
"size": 44148281,
|
| 44 |
+
"sha256": "1f38b879b0871c9f689b092ad4fa85c68ef473c585dcf53d50a029fe8a0ab0cb",
|
| 45 |
"required": true
|
| 46 |
},
|
| 47 |
{
|
| 48 |
"id": "stt_encoder",
|
| 49 |
"path": "stt/qwen3-asr/encoder.int8.onnx",
|
| 50 |
"size": 182491662,
|
| 51 |
+
"sha256": "ae0cf814d9cd5249b98a1aa9199511d0c0a0c5c8b3059532637fa3cb4785c60c",
|
| 52 |
"required": true
|
| 53 |
},
|
| 54 |
{
|
| 55 |
"id": "stt_decoder",
|
| 56 |
"path": "stt/qwen3-asr/decoder.int8.onnx",
|
| 57 |
+
"size": 755914121,
|
| 58 |
+
"sha256": "9604e5f8c06c90c167ecfa63368783b8622125771b11ec595a3e1dcbcf239dd5",
|
| 59 |
"required": true
|
| 60 |
},
|
| 61 |
{
|
stt/qwen3-asr/conv_frontend.onnx
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 44148281
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1f38b879b0871c9f689b092ad4fa85c68ef473c585dcf53d50a029fe8a0ab0cb
|
| 3 |
size 44148281
|
stt/qwen3-asr/decoder.int8.onnx
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9604e5f8c06c90c167ecfa63368783b8622125771b11ec595a3e1dcbcf239dd5
|
| 3 |
+
size 755914121
|
stt/qwen3-asr/encoder.int8.onnx
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 182491662
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ae0cf814d9cd5249b98a1aa9199511d0c0a0c5c8b3059532637fa3cb4785c60c
|
| 3 |
size 182491662
|
translit/decoder.onnx
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4930f3460baf4c0f75a346e1320579469b4ff5e00d3e62375cbcb0cee5120aa3
|
| 3 |
+
size 6819685
|
translit/encoder.onnx
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:af1ed31d5af319a353587c746b5c7540646e154d977d7614081c30f8bfb40564
|
| 3 |
+
size 9529392
|
translit/input_vocab.json
CHANGED
|
@@ -3,73 +3,107 @@
|
|
| 3 |
"<unk>": 1,
|
| 4 |
"<s>": 2,
|
| 5 |
"</s>": 3,
|
| 6 |
-
"
|
| 7 |
-
"
|
| 8 |
-
"
|
| 9 |
-
"
|
| 10 |
-
"
|
| 11 |
-
"
|
| 12 |
-
"
|
| 13 |
-
"
|
| 14 |
"ं": 12,
|
| 15 |
-
"
|
| 16 |
-
"
|
| 17 |
-
"
|
| 18 |
-
"
|
| 19 |
-
"
|
| 20 |
-
"
|
| 21 |
-
"
|
| 22 |
-
"
|
| 23 |
-
"
|
| 24 |
-
"
|
| 25 |
"ी": 23,
|
| 26 |
-
"
|
| 27 |
-
"
|
| 28 |
-
"
|
| 29 |
-
"
|
| 30 |
-
"
|
| 31 |
-
"
|
| 32 |
-
"
|
| 33 |
-
"
|
| 34 |
-
"
|
| 35 |
-
"
|
| 36 |
-
"
|
| 37 |
-
"
|
| 38 |
-
"
|
| 39 |
-
"
|
| 40 |
-
"
|
| 41 |
-
"
|
| 42 |
-
"
|
| 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 |
"ॅ": 66,
|
| 69 |
-
"
|
| 70 |
-
"
|
| 71 |
-
"
|
| 72 |
-
"
|
| 73 |
-
"
|
| 74 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 75 |
}
|
|
|
|
| 3 |
"<unk>": 1,
|
| 4 |
"<s>": 2,
|
| 5 |
"</s>": 3,
|
| 6 |
+
"ग": 4,
|
| 7 |
+
"ण": 5,
|
| 8 |
+
"प": 6,
|
| 9 |
+
"ि": 7,
|
| 10 |
+
"त": 8,
|
| 11 |
+
"ा": 9,
|
| 12 |
+
"ड": 10,
|
| 13 |
+
"ु": 11,
|
| 14 |
"ं": 12,
|
| 15 |
+
"र": 13,
|
| 16 |
+
"य": 14,
|
| 17 |
+
"ल": 15,
|
| 18 |
+
"ो": 16,
|
| 19 |
+
"ह": 17,
|
| 20 |
+
"व": 18,
|
| 21 |
+
"ट": 19,
|
| 22 |
+
"ब": 20,
|
| 23 |
+
"्": 21,
|
| 24 |
+
"ू": 22,
|
| 25 |
"ी": 23,
|
| 26 |
+
"म": 24,
|
| 27 |
+
"ए": 25,
|
| 28 |
+
"।": 26,
|
| 29 |
+
"श": 27,
|
| 30 |
+
"े": 28,
|
| 31 |
+
"फ": 29,
|
| 32 |
+
"़": 30,
|
| 33 |
+
"न": 31,
|
| 34 |
+
"क": 32,
|
| 35 |
+
"च": 33,
|
| 36 |
+
"स": 34,
|
| 37 |
+
"द": 35,
|
| 38 |
+
"भ": 36,
|
| 39 |
+
"ध": 37,
|
| 40 |
+
"ष": 38,
|
| 41 |
+
"ठ": 39,
|
| 42 |
+
"ै": 40,
|
| 43 |
+
"ज": 41,
|
| 44 |
+
"छ": 42,
|
| 45 |
+
"अ": 43,
|
| 46 |
+
"ृ": 44,
|
| 47 |
+
"ख": 45,
|
| 48 |
+
"ॉ": 46,
|
| 49 |
+
"आ": 47,
|
| 50 |
+
"ई": 48,
|
| 51 |
+
"थ": 49,
|
| 52 |
+
"ौ": 50,
|
| 53 |
+
"ऊ": 51,
|
| 54 |
+
"झ": 52,
|
| 55 |
+
"उ": 53,
|
| 56 |
+
"घ": 54,
|
| 57 |
+
"ओ": 55,
|
| 58 |
+
"इ": 56,
|
| 59 |
+
"ऐ": 57,
|
| 60 |
+
"ँ": 58,
|
| 61 |
+
"ः": 59,
|
| 62 |
+
"ऑ": 60,
|
| 63 |
+
"ढ": 61,
|
| 64 |
+
"औ": 62,
|
| 65 |
+
"ऋ": 63,
|
| 66 |
+
"ञ": 64,
|
| 67 |
+
"ॊ": 65,
|
| 68 |
"ॅ": 66,
|
| 69 |
+
"८": 67,
|
| 70 |
+
"ज़": 68,
|
| 71 |
+
"५": 69,
|
| 72 |
+
"६": 70,
|
| 73 |
+
"ङ": 71,
|
| 74 |
+
"ळ": 72,
|
| 75 |
+
"ड़": 73,
|
| 76 |
+
"४": 74,
|
| 77 |
+
"॰": 75,
|
| 78 |
+
"ढ़": 76,
|
| 79 |
+
"फ़": 77,
|
| 80 |
+
"ॐ": 78,
|
| 81 |
+
"३": 79,
|
| 82 |
+
"२": 80,
|
| 83 |
+
"क़": 81,
|
| 84 |
+
"०": 82,
|
| 85 |
+
"ऍ": 83,
|
| 86 |
+
"ॄ": 84,
|
| 87 |
+
"१": 85,
|
| 88 |
+
"ख़": 86,
|
| 89 |
+
"॥": 87,
|
| 90 |
+
"ॆ": 88,
|
| 91 |
+
"ग़": 89,
|
| 92 |
+
"९": 90,
|
| 93 |
+
"७": 91,
|
| 94 |
+
"ऒ": 92,
|
| 95 |
+
"॔": 93,
|
| 96 |
+
"॒": 94,
|
| 97 |
+
"ऎ": 95,
|
| 98 |
+
"ऽ": 96,
|
| 99 |
+
"ऩ": 97,
|
| 100 |
+
"ॠ": 98,
|
| 101 |
+
"॑": 99,
|
| 102 |
+
"ऱ": 100,
|
| 103 |
+
"ऴ": 101,
|
| 104 |
+
"ॣ": 102,
|
| 105 |
+
"ऌ": 103,
|
| 106 |
+
"ॡ": 104,
|
| 107 |
+
"य़": 105,
|
| 108 |
+
"॓": 106
|
| 109 |
}
|
translit/target_vocab.json
CHANGED
|
@@ -3,31 +3,67 @@
|
|
| 3 |
"<unk>": 1,
|
| 4 |
"<s>": 2,
|
| 5 |
"</s>": 3,
|
| 6 |
-
"
|
| 7 |
"a": 5,
|
| 8 |
-
"
|
| 9 |
-
"
|
| 10 |
-
"
|
| 11 |
-
"
|
| 12 |
-
"
|
| 13 |
-
"
|
| 14 |
-
"
|
| 15 |
-
"
|
| 16 |
-
"
|
| 17 |
-
"
|
| 18 |
-
"
|
| 19 |
-
"
|
| 20 |
-
"
|
| 21 |
-
"
|
| 22 |
-
"
|
| 23 |
-
"
|
| 24 |
-
"
|
| 25 |
-
"
|
| 26 |
-
"
|
| 27 |
-
"
|
| 28 |
-
"
|
| 29 |
-
"
|
| 30 |
-
"
|
| 31 |
"q": 29,
|
| 32 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
}
|
|
|
|
| 3 |
"<unk>": 1,
|
| 4 |
"<s>": 2,
|
| 5 |
"</s>": 3,
|
| 6 |
+
"g": 4,
|
| 7 |
"a": 5,
|
| 8 |
+
"n": 6,
|
| 9 |
+
"p": 7,
|
| 10 |
+
"i": 8,
|
| 11 |
+
"t": 9,
|
| 12 |
+
"d": 10,
|
| 13 |
+
"u": 11,
|
| 14 |
+
"r": 12,
|
| 15 |
+
"l": 13,
|
| 16 |
+
"o": 14,
|
| 17 |
+
"h": 15,
|
| 18 |
+
"w": 16,
|
| 19 |
+
"b": 17,
|
| 20 |
+
"y": 18,
|
| 21 |
+
"m": 19,
|
| 22 |
+
"e": 20,
|
| 23 |
+
"s": 21,
|
| 24 |
+
"k": 22,
|
| 25 |
+
"c": 23,
|
| 26 |
+
"v": 24,
|
| 27 |
+
"j": 25,
|
| 28 |
+
"x": 26,
|
| 29 |
+
"z": 27,
|
| 30 |
+
"f": 28,
|
| 31 |
"q": 29,
|
| 32 |
+
"è": 30,
|
| 33 |
+
"ч": 31,
|
| 34 |
+
"â": 32,
|
| 35 |
+
"ň": 33,
|
| 36 |
+
"é": 34,
|
| 37 |
+
"и": 35,
|
| 38 |
+
"ř": 36,
|
| 39 |
+
"ऐ": 37,
|
| 40 |
+
"ŕ": 38,
|
| 41 |
+
"ť": 39,
|
| 42 |
+
"ż": 40,
|
| 43 |
+
"ü": 41,
|
| 44 |
+
"ő": 42,
|
| 45 |
+
"ĺ": 43,
|
| 46 |
+
"ş": 44,
|
| 47 |
+
"ɓ": 45,
|
| 48 |
+
"ö": 46,
|
| 49 |
+
"ä": 47,
|
| 50 |
+
"ð": 48,
|
| 51 |
+
" ": 49,
|
| 52 |
+
"τ": 50,
|
| 53 |
+
"ú": 51,
|
| 54 |
+
"ж": 52,
|
| 55 |
+
"β": 53,
|
| 56 |
+
"ž": 54,
|
| 57 |
+
"û": 55,
|
| 58 |
+
"с": 56,
|
| 59 |
+
"т": 57,
|
| 60 |
+
"ड": 58,
|
| 61 |
+
"म": 59,
|
| 62 |
+
"प": 60,
|
| 63 |
+
"स": 61,
|
| 64 |
+
"क": 62,
|
| 65 |
+
"ब": 63,
|
| 66 |
+
"ल": 64,
|
| 67 |
+
"ट": 65,
|
| 68 |
+
"à": 66
|
| 69 |
}
|