Text-to-Speech
Transformers
ONNX
GGUF
Chinese
English
voice-dialogue
speech-recognition
large-language-model
asr
tts
llm
chinese
english
real-time
conversational
Instructions to use MoYoYoTech/VoiceDialogue with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use MoYoYoTech/VoiceDialogue with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-to-speech", model="MoYoYoTech/VoiceDialogue") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("MoYoYoTech/VoiceDialogue", dtype="auto") - llama-cpp-python
How to use MoYoYoTech/VoiceDialogue with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="MoYoYoTech/VoiceDialogue", filename="assets/models/llm/qwen/Qwen3-8B-Q6_K.gguf", )
llm.create_chat_completion( messages = "\"The answer to the universe is 42\"" )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use MoYoYoTech/VoiceDialogue with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf MoYoYoTech/VoiceDialogue:Q6_K # Run inference directly in the terminal: llama cli -hf MoYoYoTech/VoiceDialogue:Q6_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf MoYoYoTech/VoiceDialogue:Q6_K # Run inference directly in the terminal: llama cli -hf MoYoYoTech/VoiceDialogue:Q6_K
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 MoYoYoTech/VoiceDialogue:Q6_K # Run inference directly in the terminal: ./llama-cli -hf MoYoYoTech/VoiceDialogue:Q6_K
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 MoYoYoTech/VoiceDialogue:Q6_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf MoYoYoTech/VoiceDialogue:Q6_K
Use Docker
docker model run hf.co/MoYoYoTech/VoiceDialogue:Q6_K
- LM Studio
- Jan
- Ollama
How to use MoYoYoTech/VoiceDialogue with Ollama:
ollama run hf.co/MoYoYoTech/VoiceDialogue:Q6_K
- Unsloth Studio
How to use MoYoYoTech/VoiceDialogue 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 MoYoYoTech/VoiceDialogue 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 MoYoYoTech/VoiceDialogue to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for MoYoYoTech/VoiceDialogue to start chatting
- Pi
How to use MoYoYoTech/VoiceDialogue with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf MoYoYoTech/VoiceDialogue:Q6_K
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": "MoYoYoTech/VoiceDialogue:Q6_K" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use MoYoYoTech/VoiceDialogue with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf MoYoYoTech/VoiceDialogue:Q6_K
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 MoYoYoTech/VoiceDialogue:Q6_K
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use MoYoYoTech/VoiceDialogue with Docker Model Runner:
docker model run hf.co/MoYoYoTech/VoiceDialogue:Q6_K
- Lemonade
How to use MoYoYoTech/VoiceDialogue with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull MoYoYoTech/VoiceDialogue:Q6_K
Run and chat with the model
lemonade run user.VoiceDialogue-Q6_K
List all available models
lemonade list
liumaolin commited on
Commit ·
1d3b1b4
1
Parent(s): 69a220c
Refactor assets files
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- {resources → assets}/audio/jfk.flac +0 -0
- {resources → assets}/audio/white_noise.wav +0 -0
- {resources → assets}/libraries/libAudioCapture.dylib +0 -0
- {models/asr → assets/models/asr/funasr}/punc_ct-transformer_cn-en-common-vocab471067-large/.mdl +0 -0
- {models/asr → assets/models/asr/funasr}/punc_ct-transformer_cn-en-common-vocab471067-large/.msc +0 -0
- {models/asr → assets/models/asr/funasr}/punc_ct-transformer_cn-en-common-vocab471067-large/.mv +0 -0
- {models/asr → assets/models/asr/funasr}/punc_ct-transformer_cn-en-common-vocab471067-large/README.md +0 -0
- {models/asr → assets/models/asr/funasr}/punc_ct-transformer_cn-en-common-vocab471067-large/config.yaml +0 -0
- models/asr/speech_fsmn_vad_zh-cn-16k-common-pytorch/fig/struct.png → assets/models/asr/funasr/punc_ct-transformer_cn-en-common-vocab471067-large/configuration.json +2 -2
- {models/asr → assets/models/asr/funasr}/punc_ct-transformer_cn-en-common-vocab471067-large/example/punc_example.txt +0 -0
- {models/asr → assets/models/asr/funasr}/punc_ct-transformer_cn-en-common-vocab471067-large/fig/struct.png +0 -0
- {models/asr → assets/models/asr/funasr}/punc_ct-transformer_cn-en-common-vocab471067-large/jieba.c.dict +0 -0
- {models/asr → assets/models/asr/funasr}/punc_ct-transformer_cn-en-common-vocab471067-large/jieba_usr_dict +0 -0
- {models/asr → assets/models/asr/funasr}/punc_ct-transformer_cn-en-common-vocab471067-large/model_quant.onnx +0 -0
- models/asr/speech_fsmn_vad_zh-cn-16k-common-pytorch/example/vad_example.wav → assets/models/asr/funasr/punc_ct-transformer_cn-en-common-vocab471067-large/tokens.json +2 -2
- {models/asr → assets/models/asr/funasr}/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/.mdl +0 -0
- {models/asr → assets/models/asr/funasr}/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/.msc +0 -0
- {models/asr → assets/models/asr/funasr}/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/.mv +0 -0
- {models/asr → assets/models/asr/funasr}/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/README.md +0 -0
- {models/asr → assets/models/asr/funasr}/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/am.mvn +0 -0
- {models/asr → assets/models/asr/funasr}/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/asr_example_hotword.wav +0 -0
- {models/asr → assets/models/asr/funasr}/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/config.yaml +0 -0
- models/asr/speech_fsmn_vad_zh-cn-16k-common-pytorch/model.pt → assets/models/asr/funasr/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/configuration.json +2 -2
- {models/asr → assets/models/asr/funasr}/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/example/asr_example.wav +0 -0
- {models/asr → assets/models/asr/funasr}/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/example/hotword.txt +0 -0
- {models/asr → assets/models/asr/funasr}/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/fig/res.png +0 -0
- {models/asr → assets/models/asr/funasr}/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/fig/seaco.png +0 -0
- {models/asr → assets/models/asr/funasr}/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/model_eb_quant.onnx +0 -0
- {models/asr → assets/models/asr/funasr}/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/model_quant.onnx +0 -0
- {models/asr → assets/models/asr/funasr}/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/seg_dict +0 -0
- assets/models/asr/funasr/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/tokens.json +3 -0
- {models/asr → assets/models/asr/whisper}/ggml-large-v3-turbo-encoder.mlmodelc/analytics/coremldata.bin +0 -0
- {models/asr → assets/models/asr/whisper}/ggml-large-v3-turbo-encoder.mlmodelc/coremldata.bin +0 -0
- assets/models/asr/whisper/ggml-large-v3-turbo-encoder.mlmodelc/metadata.json +3 -0
- {models/asr → assets/models/asr/whisper}/ggml-large-v3-turbo-encoder.mlmodelc/model.mil +0 -0
- {models/asr → assets/models/asr/whisper}/ggml-large-v3-turbo-encoder.mlmodelc/weights/weight.bin +0 -0
- {models/asr → assets/models/asr/whisper}/ggml-large-v3-turbo-q5_0.bin +0 -0
- {models/asr → assets/models/asr/whisper}/ggml-medium-encoder.mlmodelc/analytics/coremldata.bin +0 -0
- {models/asr → assets/models/asr/whisper}/ggml-medium-encoder.mlmodelc/coremldata.bin +0 -0
- assets/models/asr/whisper/ggml-medium-encoder.mlmodelc/metadata.json +3 -0
- {models/asr → assets/models/asr/whisper}/ggml-medium-encoder.mlmodelc/model.mil +0 -0
- {models/asr → assets/models/asr/whisper}/ggml-medium-encoder.mlmodelc/weights/weight.bin +0 -0
- {models/asr → assets/models/asr/whisper}/ggml-medium-q5_0.bin +0 -0
- {models/llm → assets/models/llm/qwen}/Qwen2.5-14B-Instruct.Q4_0.gguf +0 -0
- {models/tts → assets/models/tts/kokoro}/kokoro-v1.0.int8.onnx +0 -0
- {models/tts → assets/models/tts/kokoro}/voices-v1.0.bin +0 -0
- assets/models/tts/moyoyo/GPT_weights/luoxiang_best_gpt.ckpt +3 -0
- assets/models/tts/moyoyo/GPT_weights/mabaoguo_best_gpt.ckpt +3 -0
- assets/models/tts/moyoyo/GPT_weights/mayun_best_gpt.ckpt +3 -0
- assets/models/tts/moyoyo/GPT_weights/shenyi_best_gpt.ckpt +3 -0
{resources → assets}/audio/jfk.flac
RENAMED
|
File without changes
|
{resources → assets}/audio/white_noise.wav
RENAMED
|
File without changes
|
{resources → assets}/libraries/libAudioCapture.dylib
RENAMED
|
File without changes
|
{models/asr → assets/models/asr/funasr}/punc_ct-transformer_cn-en-common-vocab471067-large/.mdl
RENAMED
|
File without changes
|
{models/asr → assets/models/asr/funasr}/punc_ct-transformer_cn-en-common-vocab471067-large/.msc
RENAMED
|
File without changes
|
{models/asr → assets/models/asr/funasr}/punc_ct-transformer_cn-en-common-vocab471067-large/.mv
RENAMED
|
File without changes
|
{models/asr → assets/models/asr/funasr}/punc_ct-transformer_cn-en-common-vocab471067-large/README.md
RENAMED
|
File without changes
|
{models/asr → assets/models/asr/funasr}/punc_ct-transformer_cn-en-common-vocab471067-large/config.yaml
RENAMED
|
File without changes
|
models/asr/speech_fsmn_vad_zh-cn-16k-common-pytorch/fig/struct.png → assets/models/asr/funasr/punc_ct-transformer_cn-en-common-vocab471067-large/configuration.json
RENAMED
|
@@ -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:7043245e6264cea789404e498a6f55a330a18585a4690d35dfe71741e6982237
|
| 3 |
+
size 450
|
{models/asr → assets/models/asr/funasr}/punc_ct-transformer_cn-en-common-vocab471067-large/example/punc_example.txt
RENAMED
|
File without changes
|
{models/asr → assets/models/asr/funasr}/punc_ct-transformer_cn-en-common-vocab471067-large/fig/struct.png
RENAMED
|
File without changes
|
{models/asr → assets/models/asr/funasr}/punc_ct-transformer_cn-en-common-vocab471067-large/jieba.c.dict
RENAMED
|
File without changes
|
{models/asr → assets/models/asr/funasr}/punc_ct-transformer_cn-en-common-vocab471067-large/jieba_usr_dict
RENAMED
|
File without changes
|
{models/asr → assets/models/asr/funasr}/punc_ct-transformer_cn-en-common-vocab471067-large/model_quant.onnx
RENAMED
|
File without changes
|
models/asr/speech_fsmn_vad_zh-cn-16k-common-pytorch/example/vad_example.wav → assets/models/asr/funasr/punc_ct-transformer_cn-en-common-vocab471067-large/tokens.json
RENAMED
|
@@ -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:89951fe0669380ed33298ee048c4a2b0ebcaaf6ee8f332d85c281c41d0f38392
|
| 3 |
+
size 8280697
|
{models/asr → assets/models/asr/funasr}/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/.mdl
RENAMED
|
File without changes
|
{models/asr → assets/models/asr/funasr}/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/.msc
RENAMED
|
File without changes
|
{models/asr → assets/models/asr/funasr}/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/.mv
RENAMED
|
File without changes
|
{models/asr → assets/models/asr/funasr}/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/README.md
RENAMED
|
File without changes
|
{models/asr → assets/models/asr/funasr}/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/am.mvn
RENAMED
|
File without changes
|
{models/asr → assets/models/asr/funasr}/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/asr_example_hotword.wav
RENAMED
|
File without changes
|
{models/asr → assets/models/asr/funasr}/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/config.yaml
RENAMED
|
File without changes
|
models/asr/speech_fsmn_vad_zh-cn-16k-common-pytorch/model.pt → assets/models/asr/funasr/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/configuration.json
RENAMED
|
@@ -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:1acac324430b5a4680ef5ee2947575443ab2039a92c8a0551665f6bc9a606b41
|
| 3 |
+
size 478
|
{models/asr → assets/models/asr/funasr}/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/example/asr_example.wav
RENAMED
|
File without changes
|
{models/asr → assets/models/asr/funasr}/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/example/hotword.txt
RENAMED
|
File without changes
|
{models/asr → assets/models/asr/funasr}/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/fig/res.png
RENAMED
|
File without changes
|
{models/asr → assets/models/asr/funasr}/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/fig/seaco.png
RENAMED
|
File without changes
|
{models/asr → assets/models/asr/funasr}/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/model_eb_quant.onnx
RENAMED
|
File without changes
|
{models/asr → assets/models/asr/funasr}/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/model_quant.onnx
RENAMED
|
File without changes
|
{models/asr → assets/models/asr/funasr}/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/seg_dict
RENAMED
|
File without changes
|
assets/models/asr/funasr/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch/tokens.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2b20c2b12572d682afff84ce1c8d560f67b8b32a4c1f21567411d141ed352127
|
| 3 |
+
size 93676
|
{models/asr → assets/models/asr/whisper}/ggml-large-v3-turbo-encoder.mlmodelc/analytics/coremldata.bin
RENAMED
|
File without changes
|
{models/asr → assets/models/asr/whisper}/ggml-large-v3-turbo-encoder.mlmodelc/coremldata.bin
RENAMED
|
File without changes
|
assets/models/asr/whisper/ggml-large-v3-turbo-encoder.mlmodelc/metadata.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:abbc7efde83370a022741db8f266096436f2a1173a5448092fd2c98405a64ba2
|
| 3 |
+
size 1767
|
{models/asr → assets/models/asr/whisper}/ggml-large-v3-turbo-encoder.mlmodelc/model.mil
RENAMED
|
File without changes
|
{models/asr → assets/models/asr/whisper}/ggml-large-v3-turbo-encoder.mlmodelc/weights/weight.bin
RENAMED
|
File without changes
|
{models/asr → assets/models/asr/whisper}/ggml-large-v3-turbo-q5_0.bin
RENAMED
|
File without changes
|
{models/asr → assets/models/asr/whisper}/ggml-medium-encoder.mlmodelc/analytics/coremldata.bin
RENAMED
|
File without changes
|
{models/asr → assets/models/asr/whisper}/ggml-medium-encoder.mlmodelc/coremldata.bin
RENAMED
|
File without changes
|
assets/models/asr/whisper/ggml-medium-encoder.mlmodelc/metadata.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:52d6c763e79c2c4063ca043673a4863b296271d1ea3ce31f7b2a968887582598
|
| 3 |
+
size 1488
|
{models/asr → assets/models/asr/whisper}/ggml-medium-encoder.mlmodelc/model.mil
RENAMED
|
File without changes
|
{models/asr → assets/models/asr/whisper}/ggml-medium-encoder.mlmodelc/weights/weight.bin
RENAMED
|
File without changes
|
{models/asr → assets/models/asr/whisper}/ggml-medium-q5_0.bin
RENAMED
|
File without changes
|
{models/llm → assets/models/llm/qwen}/Qwen2.5-14B-Instruct.Q4_0.gguf
RENAMED
|
File without changes
|
{models/tts → assets/models/tts/kokoro}/kokoro-v1.0.int8.onnx
RENAMED
|
File without changes
|
{models/tts → assets/models/tts/kokoro}/voices-v1.0.bin
RENAMED
|
File without changes
|
assets/models/tts/moyoyo/GPT_weights/luoxiang_best_gpt.ckpt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5692ebe7346b5941ae30814e6cb73eeef946e6c660bac81e305ad24d28fe049b
|
| 3 |
+
size 155312957
|
assets/models/tts/moyoyo/GPT_weights/mabaoguo_best_gpt.ckpt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:23571ee7c1400c930d7e96512ab2e280656eebd2a27257651569b90ee8fdf0e2
|
| 3 |
+
size 155312658
|
assets/models/tts/moyoyo/GPT_weights/mayun_best_gpt.ckpt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ff9c818bac7fa1c3d1d67fef208296c5d2fdb91f11e3f740f403212f8517fc81
|
| 3 |
+
size 155312957
|
assets/models/tts/moyoyo/GPT_weights/shenyi_best_gpt.ckpt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b86f0aa86145748bbaedea02a36e141e038df8974bb42552f50df4508de37593
|
| 3 |
+
size 155312957
|