Add tiny processor fixture for testing
Browse files- .gitattributes +1 -0
- chat_template.jinja +145 -0
- config.json +91 -0
- generation_config.json +13 -0
- preprocessor_config.json +19 -0
- tokenizer.json +1981 -0
- tokenizer_config.json +42 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,145 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- if enable_thinking is not defined -%}
|
| 2 |
+
{%- set enable_thinking = false -%}
|
| 3 |
+
{%- endif -%}
|
| 4 |
+
{%- macro render_content(content, is_system_content=false) -%}
|
| 5 |
+
{%- if content is string -%}
|
| 6 |
+
{{- content -}}
|
| 7 |
+
{%- elif content is iterable and content is not mapping -%}
|
| 8 |
+
{%- set ns = namespace(parts=[]) -%}
|
| 9 |
+
{%- for item in content -%}
|
| 10 |
+
{%- if 'image' in item or 'image_url' in item or item.type == 'image' -%}
|
| 11 |
+
{%- if is_system_content -%}
|
| 12 |
+
{{- raise_exception('System message cannot contain images.') -}}
|
| 13 |
+
{%- endif -%}
|
| 14 |
+
{%- set ns.parts = ns.parts + ['<|image_pad|>'] -%}
|
| 15 |
+
{%- elif 'video' in item or item.type == 'video' -%}
|
| 16 |
+
{%- if is_system_content -%}
|
| 17 |
+
{{- raise_exception('System message cannot contain videos.') -}}
|
| 18 |
+
{%- endif -%}
|
| 19 |
+
{%- set ns.parts = ns.parts + ['<|video_pad|>'] -%}
|
| 20 |
+
{%- elif 'text' in item -%}
|
| 21 |
+
{%- set ns.parts = ns.parts + [item.text] -%}
|
| 22 |
+
{%- else -%}
|
| 23 |
+
{{- raise_exception('Unexpected item type in content.') -}}
|
| 24 |
+
{%- endif -%}
|
| 25 |
+
{%- endfor -%}
|
| 26 |
+
{{- ns.parts | join('\n') -}}
|
| 27 |
+
{%- elif content is none or content is undefined -%}
|
| 28 |
+
{{- '' -}}
|
| 29 |
+
{%- else -%}
|
| 30 |
+
{{- raise_exception('Unexpected content type.') -}}
|
| 31 |
+
{%- endif -%}
|
| 32 |
+
{%- endmacro -%}
|
| 33 |
+
{%- if not messages %}
|
| 34 |
+
{{- raise_exception('No messages provided.') }}
|
| 35 |
+
{%- endif %}
|
| 36 |
+
{%- if tools and tools is iterable and tools is not mapping %}
|
| 37 |
+
{{- '<|im_start|>system\n' }}
|
| 38 |
+
{{- "# Tools\n\nYou have access to the following functions:\n\n<tools>" }}
|
| 39 |
+
{%- for tool in tools %}
|
| 40 |
+
{{- "\n" }}
|
| 41 |
+
{{- tool | tojson }}
|
| 42 |
+
{%- endfor %}
|
| 43 |
+
{{- "\n</tools>" }}
|
| 44 |
+
{{- '\n\nIf you choose to call a function ONLY reply in the following format with NO suffix:\n\n<tool_call>\n<function=example_function_name>\n<parameter=example_parameter_1>\nvalue_1\n</parameter>\n<parameter=example_parameter_2>\nThis is the value for the second parameter\nthat can span\nmultiple lines\n</parameter>\n</function>\n</tool_call>\n\n<IMPORTANT>\nReminder:\n- Function calls MUST follow the specified format: an inner <function=...></function> block must be nested within <tool_call></tool_call> XML tags\n- Required parameters MUST be specified\n- You may provide optional reasoning for your function call in natural language BEFORE the function call, but NOT after\n- If there is no function call available, answer the question like normal with your current knowledge and do not tell the user about function calls\n</IMPORTANT>' }}
|
| 45 |
+
{%- if messages[0].role == 'system' %}
|
| 46 |
+
{%- set content = render_content(messages[0].content, true)|trim %}
|
| 47 |
+
{%- if content %}
|
| 48 |
+
{{- '\n\n' + content }}
|
| 49 |
+
{%- endif %}
|
| 50 |
+
{%- endif %}
|
| 51 |
+
{{- '<|im_end|>\n' }}
|
| 52 |
+
{%- else %}
|
| 53 |
+
{%- if messages[0].role == 'system' %}
|
| 54 |
+
{%- set content = render_content(messages[0].content, true)|trim %}
|
| 55 |
+
{{- '<|im_start|>system\n' + content + '<|im_end|>\n' }}
|
| 56 |
+
{%- endif %}
|
| 57 |
+
{%- endif %}
|
| 58 |
+
{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
|
| 59 |
+
{%- for message in messages[::-1] %}
|
| 60 |
+
{%- set index = (messages|length - 1) - loop.index0 %}
|
| 61 |
+
{%- if ns.multi_step_tool and message.role == "user" %}
|
| 62 |
+
{%- set content = render_content(message.content)|trim %}
|
| 63 |
+
{%- if not(content.startswith('<tool_response>') and content.endswith('</tool_response>')) %}
|
| 64 |
+
{%- set ns.multi_step_tool = false %}
|
| 65 |
+
{%- set ns.last_query_index = index %}
|
| 66 |
+
{%- endif %}
|
| 67 |
+
{%- endif %}
|
| 68 |
+
{%- endfor %}
|
| 69 |
+
{%- if ns.multi_step_tool %}
|
| 70 |
+
{{- raise_exception('No user query found in messages.') }}
|
| 71 |
+
{%- endif %}
|
| 72 |
+
{%- for message in messages %}
|
| 73 |
+
{%- set content = render_content(message.content)|trim %}
|
| 74 |
+
{%- if message.role == "system" %}
|
| 75 |
+
{%- if not loop.first %}
|
| 76 |
+
{{- raise_exception('System message must be at the beginning.') }}
|
| 77 |
+
{%- endif %}
|
| 78 |
+
{%- elif message.role == "user" %}
|
| 79 |
+
{{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
|
| 80 |
+
{%- elif message.role == "assistant" %}
|
| 81 |
+
{%- set reasoning_content = '' %}
|
| 82 |
+
{%- if message.reasoning_content is string %}
|
| 83 |
+
{%- set reasoning_content = message.reasoning_content %}
|
| 84 |
+
{%- else %}
|
| 85 |
+
{%- if '</think>' in content %}
|
| 86 |
+
{%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
|
| 87 |
+
{%- set content = content.split('</think>')[-1].lstrip('\n') %}
|
| 88 |
+
{%- endif %}
|
| 89 |
+
{%- endif %}
|
| 90 |
+
{%- set reasoning_content = reasoning_content|trim %}
|
| 91 |
+
{%- if loop.index0 > ns.last_query_index %}
|
| 92 |
+
{{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content + '\n</think>\n\n' + content }}
|
| 93 |
+
{%- else %}
|
| 94 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 95 |
+
{%- endif %}
|
| 96 |
+
{%- if message.tool_calls and message.tool_calls is iterable and message.tool_calls is not mapping %}
|
| 97 |
+
{%- for tool_call in message.tool_calls %}
|
| 98 |
+
{%- if tool_call.function is defined %}
|
| 99 |
+
{%- set tool_call = tool_call.function %}
|
| 100 |
+
{%- endif %}
|
| 101 |
+
{%- if loop.first %}
|
| 102 |
+
{%- if content|trim %}
|
| 103 |
+
{{- '\n\n<tool_call>\n<function=' + tool_call.name + '>\n' }}
|
| 104 |
+
{%- else %}
|
| 105 |
+
{{- '<tool_call>\n<function=' + tool_call.name + '>\n' }}
|
| 106 |
+
{%- endif %}
|
| 107 |
+
{%- else %}
|
| 108 |
+
{{- '\n<tool_call>\n<function=' + tool_call.name + '>\n' }}
|
| 109 |
+
{%- endif %}
|
| 110 |
+
{%- if tool_call.arguments is defined %}
|
| 111 |
+
{%- for args_name, args_value in tool_call.arguments|items %}
|
| 112 |
+
{{- '<parameter=' + args_name + '>\n' }}
|
| 113 |
+
{%- set args_value = args_value | tojson | safe if args_value is mapping or (args_value is sequence and args_value is not string) else args_value | string %}
|
| 114 |
+
{{- args_value }}
|
| 115 |
+
{{- '\n</parameter>\n' }}
|
| 116 |
+
{%- endfor %}
|
| 117 |
+
{%- endif %}
|
| 118 |
+
{{- '</function>\n</tool_call>' }}
|
| 119 |
+
{%- endfor %}
|
| 120 |
+
{%- endif %}
|
| 121 |
+
{{- '<|im_end|>\n' }}
|
| 122 |
+
{%- elif message.role == "tool" %}
|
| 123 |
+
{%- if loop.previtem and loop.previtem.role != "tool" %}
|
| 124 |
+
{{- '<|im_start|>user' }}
|
| 125 |
+
{%- endif %}
|
| 126 |
+
{{- '\n<tool_response>\n' }}
|
| 127 |
+
{{- content }}
|
| 128 |
+
{{- '\n</tool_response>' }}
|
| 129 |
+
{%- if not loop.last and loop.nextitem.role != "tool" %}
|
| 130 |
+
{{- '<|im_end|>\n' }}
|
| 131 |
+
{%- elif loop.last %}
|
| 132 |
+
{{- '<|im_end|>\n' }}
|
| 133 |
+
{%- endif %}
|
| 134 |
+
{%- else %}
|
| 135 |
+
{{- raise_exception('Unexpected message role.') }}
|
| 136 |
+
{%- endif %}
|
| 137 |
+
{%- endfor %}
|
| 138 |
+
{%- if add_generation_prompt %}
|
| 139 |
+
{{- '<|im_start|>assistant\n' }}
|
| 140 |
+
{%- if enable_thinking is defined and enable_thinking is false %}
|
| 141 |
+
{{- '<think>\n\n</think>\n\n' }}
|
| 142 |
+
{%- else %}
|
| 143 |
+
{{- '<think>\n' }}
|
| 144 |
+
{%- endif %}
|
| 145 |
+
{%- endif %}
|
config.json
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"MiniCPMV4_6ForConditionalGeneration"
|
| 4 |
+
],
|
| 5 |
+
"bos_token_id": null,
|
| 6 |
+
"drop_vision_last_layer": false,
|
| 7 |
+
"eos_token_id": 500,
|
| 8 |
+
"image_size": 1120,
|
| 9 |
+
"model_type": "minicpmv4_6",
|
| 10 |
+
"pad_token_id": null,
|
| 11 |
+
"tie_word_embeddings": true,
|
| 12 |
+
"transformers_version": "5.7.0",
|
| 13 |
+
"use_cache": true,
|
| 14 |
+
"vision_config": {
|
| 15 |
+
"attention_dropout": 0.0,
|
| 16 |
+
"hidden_act": "gelu_pytorch_tanh",
|
| 17 |
+
"hidden_size": 1152,
|
| 18 |
+
"image_size": 980,
|
| 19 |
+
"intermediate_size": 4304,
|
| 20 |
+
"layer_norm_eps": 1e-06,
|
| 21 |
+
"model_type": "minicpmv4_6_vision",
|
| 22 |
+
"num_attention_heads": 16,
|
| 23 |
+
"num_channels": 3,
|
| 24 |
+
"num_hidden_layers": 27,
|
| 25 |
+
"patch_size": 14
|
| 26 |
+
},
|
| 27 |
+
"text_config": {
|
| 28 |
+
"attention_bias": false,
|
| 29 |
+
"attention_dropout": 0.0,
|
| 30 |
+
"attn_output_gate": true,
|
| 31 |
+
"full_attention_interval": 4,
|
| 32 |
+
"head_dim": 256,
|
| 33 |
+
"hidden_act": "silu",
|
| 34 |
+
"hidden_size": 1024,
|
| 35 |
+
"initializer_range": 0.02,
|
| 36 |
+
"intermediate_size": 3584,
|
| 37 |
+
"layer_types": [
|
| 38 |
+
"linear_attention",
|
| 39 |
+
"linear_attention",
|
| 40 |
+
"linear_attention",
|
| 41 |
+
"full_attention",
|
| 42 |
+
"linear_attention",
|
| 43 |
+
"linear_attention",
|
| 44 |
+
"linear_attention",
|
| 45 |
+
"full_attention",
|
| 46 |
+
"linear_attention",
|
| 47 |
+
"linear_attention",
|
| 48 |
+
"linear_attention",
|
| 49 |
+
"full_attention",
|
| 50 |
+
"linear_attention",
|
| 51 |
+
"linear_attention",
|
| 52 |
+
"linear_attention",
|
| 53 |
+
"full_attention",
|
| 54 |
+
"linear_attention",
|
| 55 |
+
"linear_attention",
|
| 56 |
+
"linear_attention",
|
| 57 |
+
"full_attention",
|
| 58 |
+
"linear_attention",
|
| 59 |
+
"linear_attention",
|
| 60 |
+
"linear_attention",
|
| 61 |
+
"full_attention"
|
| 62 |
+
],
|
| 63 |
+
"linear_conv_kernel_dim": 4,
|
| 64 |
+
"linear_key_head_dim": 128,
|
| 65 |
+
"linear_num_key_heads": 16,
|
| 66 |
+
"linear_num_value_heads": 16,
|
| 67 |
+
"linear_value_head_dim": 128,
|
| 68 |
+
"mamba_ssm_dtype": "float32",
|
| 69 |
+
"max_position_embeddings": 262144,
|
| 70 |
+
"mlp_only_layers": [],
|
| 71 |
+
"mtp_num_hidden_layers": 1,
|
| 72 |
+
"mtp_use_dedicated_embeddings": false,
|
| 73 |
+
"num_attention_heads": 8,
|
| 74 |
+
"num_hidden_layers": 24,
|
| 75 |
+
"num_key_value_heads": 2,
|
| 76 |
+
"partial_rotary_factor": 0.25,
|
| 77 |
+
"rms_norm_eps": 1e-06,
|
| 78 |
+
"rope_parameters": {
|
| 79 |
+
"partial_rotary_factor": 0.25,
|
| 80 |
+
"rope_theta": 10000000,
|
| 81 |
+
"rope_type": "default"
|
| 82 |
+
},
|
| 83 |
+
"vocab_size": 248094,
|
| 84 |
+
"model_type": "qwen3_5_text",
|
| 85 |
+
"tie_word_embeddings": true
|
| 86 |
+
},
|
| 87 |
+
"insert_layer_id": 6,
|
| 88 |
+
"image_token_id": 248056,
|
| 89 |
+
"video_token_id": 248057,
|
| 90 |
+
"vocab_size": 500
|
| 91 |
+
}
|
generation_config.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token_id": 248045,
|
| 3 |
+
"do_sample": true,
|
| 4 |
+
"eos_token_id": [
|
| 5 |
+
248044,
|
| 6 |
+
248046
|
| 7 |
+
],
|
| 8 |
+
"temperature": 0.7,
|
| 9 |
+
"top_k": 0,
|
| 10 |
+
"top_p": 1.0,
|
| 11 |
+
"repetition_penalty": 1.0,
|
| 12 |
+
"transformers_version": "5.7.0"
|
| 13 |
+
}
|
preprocessor_config.json
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"image_processor_type": "MiniCPMV4_6ImageProcessor",
|
| 3 |
+
"processor_class": "MiniCPMV4_6Processor",
|
| 4 |
+
"max_slice_nums": 9,
|
| 5 |
+
"scale_resolution": 448,
|
| 6 |
+
"patch_size": 14,
|
| 7 |
+
"use_image_id": true,
|
| 8 |
+
"slice_mode": true,
|
| 9 |
+
"image_mean": [
|
| 10 |
+
0.5,
|
| 11 |
+
0.5,
|
| 12 |
+
0.5
|
| 13 |
+
],
|
| 14 |
+
"image_std": [
|
| 15 |
+
0.5,
|
| 16 |
+
0.5,
|
| 17 |
+
0.5
|
| 18 |
+
]
|
| 19 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,1981 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"version": "1.0",
|
| 3 |
+
"truncation": null,
|
| 4 |
+
"padding": null,
|
| 5 |
+
"added_tokens": [
|
| 6 |
+
{
|
| 7 |
+
"id": 500,
|
| 8 |
+
"content": "<|endoftext|>",
|
| 9 |
+
"single_word": false,
|
| 10 |
+
"lstrip": false,
|
| 11 |
+
"rstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"special": true
|
| 14 |
+
},
|
| 15 |
+
{
|
| 16 |
+
"id": 501,
|
| 17 |
+
"content": "<|im_start|>",
|
| 18 |
+
"single_word": false,
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"normalized": false,
|
| 22 |
+
"special": true
|
| 23 |
+
},
|
| 24 |
+
{
|
| 25 |
+
"id": 502,
|
| 26 |
+
"content": "<|im_end|>",
|
| 27 |
+
"single_word": false,
|
| 28 |
+
"lstrip": false,
|
| 29 |
+
"rstrip": false,
|
| 30 |
+
"normalized": false,
|
| 31 |
+
"special": true
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"id": 503,
|
| 35 |
+
"content": "<|object_ref_start|>",
|
| 36 |
+
"single_word": false,
|
| 37 |
+
"lstrip": false,
|
| 38 |
+
"rstrip": false,
|
| 39 |
+
"normalized": false,
|
| 40 |
+
"special": true
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"id": 504,
|
| 44 |
+
"content": "<|object_ref_end|>",
|
| 45 |
+
"single_word": false,
|
| 46 |
+
"lstrip": false,
|
| 47 |
+
"rstrip": false,
|
| 48 |
+
"normalized": false,
|
| 49 |
+
"special": true
|
| 50 |
+
},
|
| 51 |
+
{
|
| 52 |
+
"id": 505,
|
| 53 |
+
"content": "<|box_start|>",
|
| 54 |
+
"single_word": false,
|
| 55 |
+
"lstrip": false,
|
| 56 |
+
"rstrip": false,
|
| 57 |
+
"normalized": false,
|
| 58 |
+
"special": true
|
| 59 |
+
},
|
| 60 |
+
{
|
| 61 |
+
"id": 506,
|
| 62 |
+
"content": "<|box_end|>",
|
| 63 |
+
"single_word": false,
|
| 64 |
+
"lstrip": false,
|
| 65 |
+
"rstrip": false,
|
| 66 |
+
"normalized": false,
|
| 67 |
+
"special": true
|
| 68 |
+
},
|
| 69 |
+
{
|
| 70 |
+
"id": 507,
|
| 71 |
+
"content": "<|quad_start|>",
|
| 72 |
+
"single_word": false,
|
| 73 |
+
"lstrip": false,
|
| 74 |
+
"rstrip": false,
|
| 75 |
+
"normalized": false,
|
| 76 |
+
"special": true
|
| 77 |
+
},
|
| 78 |
+
{
|
| 79 |
+
"id": 508,
|
| 80 |
+
"content": "<|quad_end|>",
|
| 81 |
+
"single_word": false,
|
| 82 |
+
"lstrip": false,
|
| 83 |
+
"rstrip": false,
|
| 84 |
+
"normalized": false,
|
| 85 |
+
"special": true
|
| 86 |
+
},
|
| 87 |
+
{
|
| 88 |
+
"id": 509,
|
| 89 |
+
"content": "<|vision_start|>",
|
| 90 |
+
"single_word": false,
|
| 91 |
+
"lstrip": false,
|
| 92 |
+
"rstrip": false,
|
| 93 |
+
"normalized": false,
|
| 94 |
+
"special": true
|
| 95 |
+
},
|
| 96 |
+
{
|
| 97 |
+
"id": 510,
|
| 98 |
+
"content": "<|vision_end|>",
|
| 99 |
+
"single_word": false,
|
| 100 |
+
"lstrip": false,
|
| 101 |
+
"rstrip": false,
|
| 102 |
+
"normalized": false,
|
| 103 |
+
"special": true
|
| 104 |
+
},
|
| 105 |
+
{
|
| 106 |
+
"id": 511,
|
| 107 |
+
"content": "<|vision_pad|>",
|
| 108 |
+
"single_word": false,
|
| 109 |
+
"lstrip": false,
|
| 110 |
+
"rstrip": false,
|
| 111 |
+
"normalized": false,
|
| 112 |
+
"special": true
|
| 113 |
+
},
|
| 114 |
+
{
|
| 115 |
+
"id": 512,
|
| 116 |
+
"content": "<|image_pad|>",
|
| 117 |
+
"single_word": false,
|
| 118 |
+
"lstrip": false,
|
| 119 |
+
"rstrip": false,
|
| 120 |
+
"normalized": false,
|
| 121 |
+
"special": true
|
| 122 |
+
},
|
| 123 |
+
{
|
| 124 |
+
"id": 513,
|
| 125 |
+
"content": "<|video_pad|>",
|
| 126 |
+
"single_word": false,
|
| 127 |
+
"lstrip": false,
|
| 128 |
+
"rstrip": false,
|
| 129 |
+
"normalized": false,
|
| 130 |
+
"special": true
|
| 131 |
+
},
|
| 132 |
+
{
|
| 133 |
+
"id": 514,
|
| 134 |
+
"content": "<tool_call>",
|
| 135 |
+
"single_word": false,
|
| 136 |
+
"lstrip": false,
|
| 137 |
+
"rstrip": false,
|
| 138 |
+
"normalized": false,
|
| 139 |
+
"special": false
|
| 140 |
+
},
|
| 141 |
+
{
|
| 142 |
+
"id": 515,
|
| 143 |
+
"content": "</tool_call>",
|
| 144 |
+
"single_word": false,
|
| 145 |
+
"lstrip": false,
|
| 146 |
+
"rstrip": false,
|
| 147 |
+
"normalized": false,
|
| 148 |
+
"special": false
|
| 149 |
+
},
|
| 150 |
+
{
|
| 151 |
+
"id": 516,
|
| 152 |
+
"content": "<|fim_prefix|>",
|
| 153 |
+
"single_word": false,
|
| 154 |
+
"lstrip": false,
|
| 155 |
+
"rstrip": false,
|
| 156 |
+
"normalized": false,
|
| 157 |
+
"special": false
|
| 158 |
+
},
|
| 159 |
+
{
|
| 160 |
+
"id": 517,
|
| 161 |
+
"content": "<|fim_middle|>",
|
| 162 |
+
"single_word": false,
|
| 163 |
+
"lstrip": false,
|
| 164 |
+
"rstrip": false,
|
| 165 |
+
"normalized": false,
|
| 166 |
+
"special": false
|
| 167 |
+
},
|
| 168 |
+
{
|
| 169 |
+
"id": 518,
|
| 170 |
+
"content": "<|fim_suffix|>",
|
| 171 |
+
"single_word": false,
|
| 172 |
+
"lstrip": false,
|
| 173 |
+
"rstrip": false,
|
| 174 |
+
"normalized": false,
|
| 175 |
+
"special": false
|
| 176 |
+
},
|
| 177 |
+
{
|
| 178 |
+
"id": 519,
|
| 179 |
+
"content": "<|fim_pad|>",
|
| 180 |
+
"single_word": false,
|
| 181 |
+
"lstrip": false,
|
| 182 |
+
"rstrip": false,
|
| 183 |
+
"normalized": false,
|
| 184 |
+
"special": false
|
| 185 |
+
},
|
| 186 |
+
{
|
| 187 |
+
"id": 520,
|
| 188 |
+
"content": "<|repo_name|>",
|
| 189 |
+
"single_word": false,
|
| 190 |
+
"lstrip": false,
|
| 191 |
+
"rstrip": false,
|
| 192 |
+
"normalized": false,
|
| 193 |
+
"special": false
|
| 194 |
+
},
|
| 195 |
+
{
|
| 196 |
+
"id": 521,
|
| 197 |
+
"content": "<|file_sep|>",
|
| 198 |
+
"single_word": false,
|
| 199 |
+
"lstrip": false,
|
| 200 |
+
"rstrip": false,
|
| 201 |
+
"normalized": false,
|
| 202 |
+
"special": false
|
| 203 |
+
},
|
| 204 |
+
{
|
| 205 |
+
"id": 522,
|
| 206 |
+
"content": "<tool_response>",
|
| 207 |
+
"single_word": false,
|
| 208 |
+
"lstrip": false,
|
| 209 |
+
"rstrip": false,
|
| 210 |
+
"normalized": false,
|
| 211 |
+
"special": false
|
| 212 |
+
},
|
| 213 |
+
{
|
| 214 |
+
"id": 523,
|
| 215 |
+
"content": "</tool_response>",
|
| 216 |
+
"single_word": false,
|
| 217 |
+
"lstrip": false,
|
| 218 |
+
"rstrip": false,
|
| 219 |
+
"normalized": false,
|
| 220 |
+
"special": false
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"id": 524,
|
| 224 |
+
"content": "<think>",
|
| 225 |
+
"single_word": false,
|
| 226 |
+
"lstrip": false,
|
| 227 |
+
"rstrip": false,
|
| 228 |
+
"normalized": false,
|
| 229 |
+
"special": false
|
| 230 |
+
},
|
| 231 |
+
{
|
| 232 |
+
"id": 525,
|
| 233 |
+
"content": "</think>",
|
| 234 |
+
"single_word": false,
|
| 235 |
+
"lstrip": false,
|
| 236 |
+
"rstrip": false,
|
| 237 |
+
"normalized": false,
|
| 238 |
+
"special": false
|
| 239 |
+
},
|
| 240 |
+
{
|
| 241 |
+
"id": 526,
|
| 242 |
+
"content": "<|audio_start|>",
|
| 243 |
+
"single_word": false,
|
| 244 |
+
"lstrip": false,
|
| 245 |
+
"rstrip": false,
|
| 246 |
+
"normalized": false,
|
| 247 |
+
"special": true
|
| 248 |
+
},
|
| 249 |
+
{
|
| 250 |
+
"id": 527,
|
| 251 |
+
"content": "<|audio_end|>",
|
| 252 |
+
"single_word": false,
|
| 253 |
+
"lstrip": false,
|
| 254 |
+
"rstrip": false,
|
| 255 |
+
"normalized": false,
|
| 256 |
+
"special": true
|
| 257 |
+
},
|
| 258 |
+
{
|
| 259 |
+
"id": 528,
|
| 260 |
+
"content": "<tts_pad>",
|
| 261 |
+
"single_word": false,
|
| 262 |
+
"lstrip": false,
|
| 263 |
+
"rstrip": false,
|
| 264 |
+
"normalized": false,
|
| 265 |
+
"special": true
|
| 266 |
+
},
|
| 267 |
+
{
|
| 268 |
+
"id": 529,
|
| 269 |
+
"content": "<tts_text_bos>",
|
| 270 |
+
"single_word": false,
|
| 271 |
+
"lstrip": false,
|
| 272 |
+
"rstrip": false,
|
| 273 |
+
"normalized": false,
|
| 274 |
+
"special": true
|
| 275 |
+
},
|
| 276 |
+
{
|
| 277 |
+
"id": 530,
|
| 278 |
+
"content": "<tts_text_eod>",
|
| 279 |
+
"single_word": false,
|
| 280 |
+
"lstrip": false,
|
| 281 |
+
"rstrip": false,
|
| 282 |
+
"normalized": false,
|
| 283 |
+
"special": true
|
| 284 |
+
},
|
| 285 |
+
{
|
| 286 |
+
"id": 531,
|
| 287 |
+
"content": "<tts_text_bos_single>",
|
| 288 |
+
"single_word": false,
|
| 289 |
+
"lstrip": false,
|
| 290 |
+
"rstrip": false,
|
| 291 |
+
"normalized": false,
|
| 292 |
+
"special": true
|
| 293 |
+
},
|
| 294 |
+
{
|
| 295 |
+
"id": 532,
|
| 296 |
+
"content": "<|audio_pad|>",
|
| 297 |
+
"single_word": false,
|
| 298 |
+
"lstrip": false,
|
| 299 |
+
"rstrip": false,
|
| 300 |
+
"normalized": false,
|
| 301 |
+
"special": true
|
| 302 |
+
},
|
| 303 |
+
{
|
| 304 |
+
"id": 533,
|
| 305 |
+
"content": "<unk>",
|
| 306 |
+
"single_word": false,
|
| 307 |
+
"lstrip": false,
|
| 308 |
+
"rstrip": false,
|
| 309 |
+
"normalized": false,
|
| 310 |
+
"special": true
|
| 311 |
+
},
|
| 312 |
+
{
|
| 313 |
+
"id": 534,
|
| 314 |
+
"content": "<image>",
|
| 315 |
+
"single_word": false,
|
| 316 |
+
"lstrip": false,
|
| 317 |
+
"rstrip": false,
|
| 318 |
+
"normalized": false,
|
| 319 |
+
"special": true
|
| 320 |
+
},
|
| 321 |
+
{
|
| 322 |
+
"id": 535,
|
| 323 |
+
"content": "</image>",
|
| 324 |
+
"single_word": false,
|
| 325 |
+
"lstrip": false,
|
| 326 |
+
"rstrip": false,
|
| 327 |
+
"normalized": false,
|
| 328 |
+
"special": true
|
| 329 |
+
},
|
| 330 |
+
{
|
| 331 |
+
"id": 536,
|
| 332 |
+
"content": "<ref>",
|
| 333 |
+
"single_word": false,
|
| 334 |
+
"lstrip": false,
|
| 335 |
+
"rstrip": false,
|
| 336 |
+
"normalized": false,
|
| 337 |
+
"special": true
|
| 338 |
+
},
|
| 339 |
+
{
|
| 340 |
+
"id": 537,
|
| 341 |
+
"content": "</ref>",
|
| 342 |
+
"single_word": false,
|
| 343 |
+
"lstrip": false,
|
| 344 |
+
"rstrip": false,
|
| 345 |
+
"normalized": false,
|
| 346 |
+
"special": true
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"id": 538,
|
| 350 |
+
"content": "<box>",
|
| 351 |
+
"single_word": false,
|
| 352 |
+
"lstrip": false,
|
| 353 |
+
"rstrip": false,
|
| 354 |
+
"normalized": false,
|
| 355 |
+
"special": true
|
| 356 |
+
},
|
| 357 |
+
{
|
| 358 |
+
"id": 539,
|
| 359 |
+
"content": "</box>",
|
| 360 |
+
"single_word": false,
|
| 361 |
+
"lstrip": false,
|
| 362 |
+
"rstrip": false,
|
| 363 |
+
"normalized": false,
|
| 364 |
+
"special": true
|
| 365 |
+
},
|
| 366 |
+
{
|
| 367 |
+
"id": 540,
|
| 368 |
+
"content": "<quad>",
|
| 369 |
+
"single_word": false,
|
| 370 |
+
"lstrip": false,
|
| 371 |
+
"rstrip": false,
|
| 372 |
+
"normalized": false,
|
| 373 |
+
"special": true
|
| 374 |
+
},
|
| 375 |
+
{
|
| 376 |
+
"id": 541,
|
| 377 |
+
"content": "</quad>",
|
| 378 |
+
"single_word": false,
|
| 379 |
+
"lstrip": false,
|
| 380 |
+
"rstrip": false,
|
| 381 |
+
"normalized": false,
|
| 382 |
+
"special": true
|
| 383 |
+
},
|
| 384 |
+
{
|
| 385 |
+
"id": 542,
|
| 386 |
+
"content": "<point>",
|
| 387 |
+
"single_word": false,
|
| 388 |
+
"lstrip": false,
|
| 389 |
+
"rstrip": false,
|
| 390 |
+
"normalized": false,
|
| 391 |
+
"special": true
|
| 392 |
+
},
|
| 393 |
+
{
|
| 394 |
+
"id": 543,
|
| 395 |
+
"content": "</point>",
|
| 396 |
+
"single_word": false,
|
| 397 |
+
"lstrip": false,
|
| 398 |
+
"rstrip": false,
|
| 399 |
+
"normalized": false,
|
| 400 |
+
"special": true
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"id": 544,
|
| 404 |
+
"content": "<slice>",
|
| 405 |
+
"single_word": false,
|
| 406 |
+
"lstrip": false,
|
| 407 |
+
"rstrip": false,
|
| 408 |
+
"normalized": false,
|
| 409 |
+
"special": true
|
| 410 |
+
},
|
| 411 |
+
{
|
| 412 |
+
"id": 545,
|
| 413 |
+
"content": "</slice>",
|
| 414 |
+
"single_word": false,
|
| 415 |
+
"lstrip": false,
|
| 416 |
+
"rstrip": false,
|
| 417 |
+
"normalized": false,
|
| 418 |
+
"special": true
|
| 419 |
+
},
|
| 420 |
+
{
|
| 421 |
+
"id": 546,
|
| 422 |
+
"content": "<image_id>",
|
| 423 |
+
"single_word": false,
|
| 424 |
+
"lstrip": false,
|
| 425 |
+
"rstrip": false,
|
| 426 |
+
"normalized": false,
|
| 427 |
+
"special": true
|
| 428 |
+
},
|
| 429 |
+
{
|
| 430 |
+
"id": 547,
|
| 431 |
+
"content": "</image_id>",
|
| 432 |
+
"single_word": false,
|
| 433 |
+
"lstrip": false,
|
| 434 |
+
"rstrip": false,
|
| 435 |
+
"normalized": false,
|
| 436 |
+
"special": true
|
| 437 |
+
},
|
| 438 |
+
{
|
| 439 |
+
"id": 548,
|
| 440 |
+
"content": "<timestamp>",
|
| 441 |
+
"single_word": false,
|
| 442 |
+
"lstrip": false,
|
| 443 |
+
"rstrip": false,
|
| 444 |
+
"normalized": false,
|
| 445 |
+
"special": true
|
| 446 |
+
},
|
| 447 |
+
{
|
| 448 |
+
"id": 549,
|
| 449 |
+
"content": "</timestamp>",
|
| 450 |
+
"single_word": false,
|
| 451 |
+
"lstrip": false,
|
| 452 |
+
"rstrip": false,
|
| 453 |
+
"normalized": false,
|
| 454 |
+
"special": true
|
| 455 |
+
}
|
| 456 |
+
],
|
| 457 |
+
"normalizer": {
|
| 458 |
+
"type": "NFC"
|
| 459 |
+
},
|
| 460 |
+
"pre_tokenizer": {
|
| 461 |
+
"type": "Sequence",
|
| 462 |
+
"pretokenizers": [
|
| 463 |
+
{
|
| 464 |
+
"type": "Split",
|
| 465 |
+
"pattern": {
|
| 466 |
+
"Regex": "(?i:'s|'t|'re|'ve|'m|'ll|'d)|[^\\r\\n\\p{L}\\p{N}]?[\\p{L}\\p{M}]+|\\p{N}| ?[^\\s\\p{L}\\p{M}\\p{N}]+[\\r\\n]*|\\s*[\\r\\n]+|\\s+(?!\\S)|\\s+"
|
| 467 |
+
},
|
| 468 |
+
"behavior": "Isolated",
|
| 469 |
+
"invert": false
|
| 470 |
+
},
|
| 471 |
+
{
|
| 472 |
+
"type": "ByteLevel",
|
| 473 |
+
"add_prefix_space": false,
|
| 474 |
+
"trim_offsets": false,
|
| 475 |
+
"use_regex": false
|
| 476 |
+
}
|
| 477 |
+
]
|
| 478 |
+
},
|
| 479 |
+
"post_processor": {
|
| 480 |
+
"type": "ByteLevel",
|
| 481 |
+
"add_prefix_space": false,
|
| 482 |
+
"trim_offsets": false,
|
| 483 |
+
"use_regex": false
|
| 484 |
+
},
|
| 485 |
+
"decoder": {
|
| 486 |
+
"type": "ByteLevel",
|
| 487 |
+
"add_prefix_space": false,
|
| 488 |
+
"trim_offsets": false,
|
| 489 |
+
"use_regex": false
|
| 490 |
+
},
|
| 491 |
+
"model": {
|
| 492 |
+
"type": "BPE",
|
| 493 |
+
"dropout": null,
|
| 494 |
+
"unk_token": null,
|
| 495 |
+
"continuing_subword_prefix": "",
|
| 496 |
+
"end_of_word_suffix": "",
|
| 497 |
+
"fuse_unk": false,
|
| 498 |
+
"byte_fallback": false,
|
| 499 |
+
"ignore_merges": false,
|
| 500 |
+
"vocab": {
|
| 501 |
+
"!": 0,
|
| 502 |
+
"\"": 1,
|
| 503 |
+
"#": 2,
|
| 504 |
+
"$": 3,
|
| 505 |
+
"%": 4,
|
| 506 |
+
"&": 5,
|
| 507 |
+
"'": 6,
|
| 508 |
+
"(": 7,
|
| 509 |
+
")": 8,
|
| 510 |
+
"*": 9,
|
| 511 |
+
"+": 10,
|
| 512 |
+
",": 11,
|
| 513 |
+
"-": 12,
|
| 514 |
+
".": 13,
|
| 515 |
+
"/": 14,
|
| 516 |
+
"0": 15,
|
| 517 |
+
"1": 16,
|
| 518 |
+
"2": 17,
|
| 519 |
+
"3": 18,
|
| 520 |
+
"4": 19,
|
| 521 |
+
"5": 20,
|
| 522 |
+
"6": 21,
|
| 523 |
+
"7": 22,
|
| 524 |
+
"8": 23,
|
| 525 |
+
"9": 24,
|
| 526 |
+
":": 25,
|
| 527 |
+
";": 26,
|
| 528 |
+
"<": 27,
|
| 529 |
+
"=": 28,
|
| 530 |
+
">": 29,
|
| 531 |
+
"?": 30,
|
| 532 |
+
"@": 31,
|
| 533 |
+
"A": 32,
|
| 534 |
+
"B": 33,
|
| 535 |
+
"C": 34,
|
| 536 |
+
"D": 35,
|
| 537 |
+
"E": 36,
|
| 538 |
+
"F": 37,
|
| 539 |
+
"G": 38,
|
| 540 |
+
"H": 39,
|
| 541 |
+
"I": 40,
|
| 542 |
+
"J": 41,
|
| 543 |
+
"K": 42,
|
| 544 |
+
"L": 43,
|
| 545 |
+
"M": 44,
|
| 546 |
+
"N": 45,
|
| 547 |
+
"O": 46,
|
| 548 |
+
"P": 47,
|
| 549 |
+
"Q": 48,
|
| 550 |
+
"R": 49,
|
| 551 |
+
"S": 50,
|
| 552 |
+
"T": 51,
|
| 553 |
+
"U": 52,
|
| 554 |
+
"V": 53,
|
| 555 |
+
"W": 54,
|
| 556 |
+
"X": 55,
|
| 557 |
+
"Y": 56,
|
| 558 |
+
"Z": 57,
|
| 559 |
+
"[": 58,
|
| 560 |
+
"\\": 59,
|
| 561 |
+
"]": 60,
|
| 562 |
+
"^": 61,
|
| 563 |
+
"_": 62,
|
| 564 |
+
"`": 63,
|
| 565 |
+
"a": 64,
|
| 566 |
+
"b": 65,
|
| 567 |
+
"c": 66,
|
| 568 |
+
"d": 67,
|
| 569 |
+
"e": 68,
|
| 570 |
+
"f": 69,
|
| 571 |
+
"g": 70,
|
| 572 |
+
"h": 71,
|
| 573 |
+
"i": 72,
|
| 574 |
+
"j": 73,
|
| 575 |
+
"k": 74,
|
| 576 |
+
"l": 75,
|
| 577 |
+
"m": 76,
|
| 578 |
+
"n": 77,
|
| 579 |
+
"o": 78,
|
| 580 |
+
"p": 79,
|
| 581 |
+
"q": 80,
|
| 582 |
+
"r": 81,
|
| 583 |
+
"s": 82,
|
| 584 |
+
"t": 83,
|
| 585 |
+
"u": 84,
|
| 586 |
+
"v": 85,
|
| 587 |
+
"w": 86,
|
| 588 |
+
"x": 87,
|
| 589 |
+
"y": 88,
|
| 590 |
+
"z": 89,
|
| 591 |
+
"{": 90,
|
| 592 |
+
"|": 91,
|
| 593 |
+
"}": 92,
|
| 594 |
+
"~": 93,
|
| 595 |
+
"¡": 94,
|
| 596 |
+
"¢": 95,
|
| 597 |
+
"£": 96,
|
| 598 |
+
"¤": 97,
|
| 599 |
+
"¥": 98,
|
| 600 |
+
"¦": 99,
|
| 601 |
+
"§": 100,
|
| 602 |
+
"¨": 101,
|
| 603 |
+
"©": 102,
|
| 604 |
+
"ª": 103,
|
| 605 |
+
"«": 104,
|
| 606 |
+
"¬": 105,
|
| 607 |
+
"®": 106,
|
| 608 |
+
"¯": 107,
|
| 609 |
+
"°": 108,
|
| 610 |
+
"±": 109,
|
| 611 |
+
"²": 110,
|
| 612 |
+
"³": 111,
|
| 613 |
+
"´": 112,
|
| 614 |
+
"µ": 113,
|
| 615 |
+
"¶": 114,
|
| 616 |
+
"·": 115,
|
| 617 |
+
"¸": 116,
|
| 618 |
+
"¹": 117,
|
| 619 |
+
"º": 118,
|
| 620 |
+
"»": 119,
|
| 621 |
+
"¼": 120,
|
| 622 |
+
"½": 121,
|
| 623 |
+
"¾": 122,
|
| 624 |
+
"¿": 123,
|
| 625 |
+
"À": 124,
|
| 626 |
+
"Á": 125,
|
| 627 |
+
"Â": 126,
|
| 628 |
+
"Ã": 127,
|
| 629 |
+
"Ä": 128,
|
| 630 |
+
"Å": 129,
|
| 631 |
+
"Æ": 130,
|
| 632 |
+
"Ç": 131,
|
| 633 |
+
"È": 132,
|
| 634 |
+
"É": 133,
|
| 635 |
+
"Ê": 134,
|
| 636 |
+
"Ë": 135,
|
| 637 |
+
"Ì": 136,
|
| 638 |
+
"Í": 137,
|
| 639 |
+
"Î": 138,
|
| 640 |
+
"Ï": 139,
|
| 641 |
+
"Ð": 140,
|
| 642 |
+
"Ñ": 141,
|
| 643 |
+
"Ò": 142,
|
| 644 |
+
"Ó": 143,
|
| 645 |
+
"Ô": 144,
|
| 646 |
+
"Õ": 145,
|
| 647 |
+
"Ö": 146,
|
| 648 |
+
"×": 147,
|
| 649 |
+
"Ø": 148,
|
| 650 |
+
"Ù": 149,
|
| 651 |
+
"Ú": 150,
|
| 652 |
+
"Û": 151,
|
| 653 |
+
"Ü": 152,
|
| 654 |
+
"Ý": 153,
|
| 655 |
+
"Þ": 154,
|
| 656 |
+
"ß": 155,
|
| 657 |
+
"à": 156,
|
| 658 |
+
"á": 157,
|
| 659 |
+
"â": 158,
|
| 660 |
+
"ã": 159,
|
| 661 |
+
"ä": 160,
|
| 662 |
+
"å": 161,
|
| 663 |
+
"æ": 162,
|
| 664 |
+
"ç": 163,
|
| 665 |
+
"è": 164,
|
| 666 |
+
"é": 165,
|
| 667 |
+
"ê": 166,
|
| 668 |
+
"ë": 167,
|
| 669 |
+
"ì": 168,
|
| 670 |
+
"í": 169,
|
| 671 |
+
"î": 170,
|
| 672 |
+
"ï": 171,
|
| 673 |
+
"ð": 172,
|
| 674 |
+
"ñ": 173,
|
| 675 |
+
"ò": 174,
|
| 676 |
+
"ó": 175,
|
| 677 |
+
"ô": 176,
|
| 678 |
+
"õ": 177,
|
| 679 |
+
"ö": 178,
|
| 680 |
+
"÷": 179,
|
| 681 |
+
"ø": 180,
|
| 682 |
+
"ù": 181,
|
| 683 |
+
"ú": 182,
|
| 684 |
+
"û": 183,
|
| 685 |
+
"ü": 184,
|
| 686 |
+
"ý": 185,
|
| 687 |
+
"þ": 186,
|
| 688 |
+
"ÿ": 187,
|
| 689 |
+
"Ā": 188,
|
| 690 |
+
"ā": 189,
|
| 691 |
+
"Ă": 190,
|
| 692 |
+
"ă": 191,
|
| 693 |
+
"Ą": 192,
|
| 694 |
+
"ą": 193,
|
| 695 |
+
"Ć": 194,
|
| 696 |
+
"ć": 195,
|
| 697 |
+
"Ĉ": 196,
|
| 698 |
+
"ĉ": 197,
|
| 699 |
+
"Ċ": 198,
|
| 700 |
+
"ċ": 199,
|
| 701 |
+
"Č": 200,
|
| 702 |
+
"č": 201,
|
| 703 |
+
"Ď": 202,
|
| 704 |
+
"ď": 203,
|
| 705 |
+
"Đ": 204,
|
| 706 |
+
"đ": 205,
|
| 707 |
+
"Ē": 206,
|
| 708 |
+
"ē": 207,
|
| 709 |
+
"Ĕ": 208,
|
| 710 |
+
"ĕ": 209,
|
| 711 |
+
"Ė": 210,
|
| 712 |
+
"ė": 211,
|
| 713 |
+
"Ę": 212,
|
| 714 |
+
"ę": 213,
|
| 715 |
+
"Ě": 214,
|
| 716 |
+
"ě": 215,
|
| 717 |
+
"Ĝ": 216,
|
| 718 |
+
"ĝ": 217,
|
| 719 |
+
"Ğ": 218,
|
| 720 |
+
"ğ": 219,
|
| 721 |
+
"Ġ": 220,
|
| 722 |
+
"ġ": 221,
|
| 723 |
+
"Ģ": 222,
|
| 724 |
+
"ģ": 223,
|
| 725 |
+
"Ĥ": 224,
|
| 726 |
+
"ĥ": 225,
|
| 727 |
+
"Ħ": 226,
|
| 728 |
+
"ħ": 227,
|
| 729 |
+
"Ĩ": 228,
|
| 730 |
+
"ĩ": 229,
|
| 731 |
+
"Ī": 230,
|
| 732 |
+
"ī": 231,
|
| 733 |
+
"Ĭ": 232,
|
| 734 |
+
"ĭ": 233,
|
| 735 |
+
"Į": 234,
|
| 736 |
+
"į": 235,
|
| 737 |
+
"İ": 236,
|
| 738 |
+
"ı": 237,
|
| 739 |
+
"IJ": 238,
|
| 740 |
+
"ij": 239,
|
| 741 |
+
"Ĵ": 240,
|
| 742 |
+
"ĵ": 241,
|
| 743 |
+
"Ķ": 242,
|
| 744 |
+
"ķ": 243,
|
| 745 |
+
"ĸ": 244,
|
| 746 |
+
"Ĺ": 245,
|
| 747 |
+
"ĺ": 246,
|
| 748 |
+
"Ļ": 247,
|
| 749 |
+
"ļ": 248,
|
| 750 |
+
"Ľ": 249,
|
| 751 |
+
"ľ": 250,
|
| 752 |
+
"Ŀ": 251,
|
| 753 |
+
"ŀ": 252,
|
| 754 |
+
"Ł": 253,
|
| 755 |
+
"ł": 254,
|
| 756 |
+
"Ń": 255,
|
| 757 |
+
"ĠĠ": 256,
|
| 758 |
+
"ĠĠĠĠ": 257,
|
| 759 |
+
"in": 258,
|
| 760 |
+
"Ġt": 259,
|
| 761 |
+
"ĠĠĠĠĠĠĠĠ": 260,
|
| 762 |
+
"er": 261,
|
| 763 |
+
"ĠĠĠ": 262,
|
| 764 |
+
"on": 263,
|
| 765 |
+
"Ġa": 264,
|
| 766 |
+
"re": 265,
|
| 767 |
+
"at": 266,
|
| 768 |
+
"st": 267,
|
| 769 |
+
"en": 268,
|
| 770 |
+
"or": 269,
|
| 771 |
+
"Ġth": 270,
|
| 772 |
+
"ĊĊ": 271,
|
| 773 |
+
"Ġc": 272,
|
| 774 |
+
"le": 273,
|
| 775 |
+
"Ġs": 274,
|
| 776 |
+
"it": 275,
|
| 777 |
+
"an": 276,
|
| 778 |
+
"ar": 277,
|
| 779 |
+
"al": 278,
|
| 780 |
+
"Ġthe": 279,
|
| 781 |
+
"Ġp": 280,
|
| 782 |
+
"Ġf": 281,
|
| 783 |
+
"ou": 282,
|
| 784 |
+
"Ġ=": 283,
|
| 785 |
+
"is": 284,
|
| 786 |
+
"ĠĠĠĠĠĠĠ": 285,
|
| 787 |
+
"ing": 286,
|
| 788 |
+
"es": 287,
|
| 789 |
+
"Ġw": 288,
|
| 790 |
+
"ion": 289,
|
| 791 |
+
"ed": 290,
|
| 792 |
+
"ic": 291,
|
| 793 |
+
"Ġb": 292,
|
| 794 |
+
"Ġd": 293,
|
| 795 |
+
"et": 294,
|
| 796 |
+
"Ġm": 295,
|
| 797 |
+
"Ġo": 296,
|
| 798 |
+
"ĉĉ": 297,
|
| 799 |
+
"ro": 298,
|
| 800 |
+
"as": 299,
|
| 801 |
+
"el": 300,
|
| 802 |
+
"ct": 301,
|
| 803 |
+
"nd": 302,
|
| 804 |
+
"Ġin": 303,
|
| 805 |
+
"Ġh": 304,
|
| 806 |
+
"ent": 305,
|
| 807 |
+
"id": 306,
|
| 808 |
+
"Ġn": 307,
|
| 809 |
+
"am": 308,
|
| 810 |
+
"ĠĠĠĠĠĠĠĠĠĠĠ": 309,
|
| 811 |
+
"Ġto": 310,
|
| 812 |
+
"Ġre": 311,
|
| 813 |
+
"--": 312,
|
| 814 |
+
"Ġ{": 313,
|
| 815 |
+
"Ġof": 314,
|
| 816 |
+
"om": 315,
|
| 817 |
+
"im": 316,
|
| 818 |
+
"čĊ": 317,
|
| 819 |
+
"Ġ(": 318,
|
| 820 |
+
"il": 319,
|
| 821 |
+
"//": 320,
|
| 822 |
+
"Ġand": 321,
|
| 823 |
+
"ur": 322,
|
| 824 |
+
"se": 323,
|
| 825 |
+
"Ġl": 324,
|
| 826 |
+
"ex": 325,
|
| 827 |
+
"ĠS": 326,
|
| 828 |
+
"ad": 327,
|
| 829 |
+
"Ġ\"": 328,
|
| 830 |
+
"ch": 329,
|
| 831 |
+
"ut": 330,
|
| 832 |
+
"if": 331,
|
| 833 |
+
"**": 332,
|
| 834 |
+
"Ġ}": 333,
|
| 835 |
+
"em": 334,
|
| 836 |
+
"ol": 335,
|
| 837 |
+
"ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ": 336,
|
| 838 |
+
"th": 337,
|
| 839 |
+
"Ġg": 338,
|
| 840 |
+
"ig": 339,
|
| 841 |
+
"iv": 340,
|
| 842 |
+
"ce": 341,
|
| 843 |
+
"od": 342,
|
| 844 |
+
"Ġv": 343,
|
| 845 |
+
"ate": 344,
|
| 846 |
+
"ĠT": 345,
|
| 847 |
+
"ag": 346,
|
| 848 |
+
"ay": 347,
|
| 849 |
+
"Ġ*": 348,
|
| 850 |
+
"ot": 349,
|
| 851 |
+
"us": 350,
|
| 852 |
+
"ĠC": 351,
|
| 853 |
+
"Ġst": 352,
|
| 854 |
+
"ĠI": 353,
|
| 855 |
+
"un": 354,
|
| 856 |
+
"ul": 355,
|
| 857 |
+
"ue": 356,
|
| 858 |
+
"ĠA": 357,
|
| 859 |
+
"ow": 358,
|
| 860 |
+
"Ġ'": 359,
|
| 861 |
+
"ew": 360,
|
| 862 |
+
"Ġ<": 361,
|
| 863 |
+
"ation": 362,
|
| 864 |
+
"()": 363,
|
| 865 |
+
"Ġfor": 364,
|
| 866 |
+
"ab": 365,
|
| 867 |
+
"ort": 366,
|
| 868 |
+
"um": 367,
|
| 869 |
+
"ame": 368,
|
| 870 |
+
"Ġis": 369,
|
| 871 |
+
"pe": 370,
|
| 872 |
+
"tr": 371,
|
| 873 |
+
"ck": 372,
|
| 874 |
+
"âĢ": 373,
|
| 875 |
+
"Ġy": 374,
|
| 876 |
+
"ist": 375,
|
| 877 |
+
"----": 376,
|
| 878 |
+
"he": 377,
|
| 879 |
+
"Ġe": 378,
|
| 880 |
+
"lo": 379,
|
| 881 |
+
"ĠM": 380,
|
| 882 |
+
"Ġbe": 381,
|
| 883 |
+
"ers": 382,
|
| 884 |
+
"Ġon": 383,
|
| 885 |
+
"Ġcon": 384,
|
| 886 |
+
"ap": 385,
|
| 887 |
+
"ub": 386,
|
| 888 |
+
"ĠP": 387,
|
| 889 |
+
"ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ": 388,
|
| 890 |
+
"ass": 389,
|
| 891 |
+
"int": 390,
|
| 892 |
+
"ly": 391,
|
| 893 |
+
"urn": 392,
|
| 894 |
+
"Ġ$": 393,
|
| 895 |
+
"av": 394,
|
| 896 |
+
"port": 395,
|
| 897 |
+
"ir": 396,
|
| 898 |
+
"->": 397,
|
| 899 |
+
"nt": 398,
|
| 900 |
+
"ction": 399,
|
| 901 |
+
"end": 400,
|
| 902 |
+
"Ġde": 401,
|
| 903 |
+
"ith": 402,
|
| 904 |
+
"out": 403,
|
| 905 |
+
"turn": 404,
|
| 906 |
+
"our": 405,
|
| 907 |
+
"ĠĠĠĠĠ": 406,
|
| 908 |
+
"lic": 407,
|
| 909 |
+
"res": 408,
|
| 910 |
+
"pt": 409,
|
| 911 |
+
"==": 410,
|
| 912 |
+
"Ġthis": 411,
|
| 913 |
+
"Ġwh": 412,
|
| 914 |
+
"Ġif": 413,
|
| 915 |
+
"ĠD": 414,
|
| 916 |
+
"ver": 415,
|
| 917 |
+
"age": 416,
|
| 918 |
+
"ĠB": 417,
|
| 919 |
+
"ht": 418,
|
| 920 |
+
"ext": 419,
|
| 921 |
+
"=\"": 420,
|
| 922 |
+
"Ġthat": 421,
|
| 923 |
+
"****": 422,
|
| 924 |
+
"ĠR": 423,
|
| 925 |
+
"Ġit": 424,
|
| 926 |
+
"ess": 425,
|
| 927 |
+
"ĠF": 426,
|
| 928 |
+
"Ġr": 427,
|
| 929 |
+
"os": 428,
|
| 930 |
+
"and": 429,
|
| 931 |
+
"Ġas": 430,
|
| 932 |
+
"ect": 431,
|
| 933 |
+
"ke": 432,
|
| 934 |
+
"rom": 433,
|
| 935 |
+
"Ġ//": 434,
|
| 936 |
+
"con": 435,
|
| 937 |
+
"ĠL": 436,
|
| 938 |
+
"(\"": 437,
|
| 939 |
+
"qu": 438,
|
| 940 |
+
"lass": 439,
|
| 941 |
+
"Ġwith": 440,
|
| 942 |
+
"iz": 441,
|
| 943 |
+
"de": 442,
|
| 944 |
+
"ĠN": 443,
|
| 945 |
+
"Ġal": 444,
|
| 946 |
+
"op": 445,
|
| 947 |
+
"up": 446,
|
| 948 |
+
"get": 447,
|
| 949 |
+
"ile": 448,
|
| 950 |
+
"Ġan": 449,
|
| 951 |
+
"ata": 450,
|
| 952 |
+
"ore": 451,
|
| 953 |
+
"ri": 452,
|
| 954 |
+
"Ġpro": 453,
|
| 955 |
+
"ĉĉĉĉ": 454,
|
| 956 |
+
"ter": 455,
|
| 957 |
+
"ain": 456,
|
| 958 |
+
"ĠW": 457,
|
| 959 |
+
"ĠE": 458,
|
| 960 |
+
"Ġcom": 459,
|
| 961 |
+
"Ġreturn": 460,
|
| 962 |
+
"art": 461,
|
| 963 |
+
"ĠH": 462,
|
| 964 |
+
"ack": 463,
|
| 965 |
+
"import": 464,
|
| 966 |
+
"ublic": 465,
|
| 967 |
+
"Ġor": 466,
|
| 968 |
+
"est": 467,
|
| 969 |
+
"ment": 468,
|
| 970 |
+
"ĠG": 469,
|
| 971 |
+
"able": 470,
|
| 972 |
+
"Ġ-": 471,
|
| 973 |
+
"ine": 472,
|
| 974 |
+
"ill": 473,
|
| 975 |
+
"ind": 474,
|
| 976 |
+
"ere": 475,
|
| 977 |
+
"::": 476,
|
| 978 |
+
"ity": 477,
|
| 979 |
+
"Ġ+": 478,
|
| 980 |
+
"Ġtr": 479,
|
| 981 |
+
"elf": 480,
|
| 982 |
+
"ight": 481,
|
| 983 |
+
"('": 482,
|
| 984 |
+
"orm": 483,
|
| 985 |
+
"ult": 484,
|
| 986 |
+
"str": 485,
|
| 987 |
+
"..": 486,
|
| 988 |
+
"\",": 487,
|
| 989 |
+
"Ġyou": 488,
|
| 990 |
+
"ype": 489,
|
| 991 |
+
"pl": 490,
|
| 992 |
+
"Ġnew": 491,
|
| 993 |
+
"Ġj": 492,
|
| 994 |
+
"ĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠĠ": 493,
|
| 995 |
+
"Ġfrom": 494,
|
| 996 |
+
"Ġex": 495,
|
| 997 |
+
"ĠO": 496,
|
| 998 |
+
"ld": 497,
|
| 999 |
+
"Ġ[": 498,
|
| 1000 |
+
"oc": 499
|
| 1001 |
+
},
|
| 1002 |
+
"merges": [
|
| 1003 |
+
[
|
| 1004 |
+
"Ġ",
|
| 1005 |
+
"Ġ"
|
| 1006 |
+
],
|
| 1007 |
+
[
|
| 1008 |
+
"ĠĠ",
|
| 1009 |
+
"ĠĠ"
|
| 1010 |
+
],
|
| 1011 |
+
[
|
| 1012 |
+
"i",
|
| 1013 |
+
"n"
|
| 1014 |
+
],
|
| 1015 |
+
[
|
| 1016 |
+
"Ġ",
|
| 1017 |
+
"t"
|
| 1018 |
+
],
|
| 1019 |
+
[
|
| 1020 |
+
"ĠĠĠĠ",
|
| 1021 |
+
"ĠĠĠĠ"
|
| 1022 |
+
],
|
| 1023 |
+
[
|
| 1024 |
+
"e",
|
| 1025 |
+
"r"
|
| 1026 |
+
],
|
| 1027 |
+
[
|
| 1028 |
+
"ĠĠ",
|
| 1029 |
+
"Ġ"
|
| 1030 |
+
],
|
| 1031 |
+
[
|
| 1032 |
+
"o",
|
| 1033 |
+
"n"
|
| 1034 |
+
],
|
| 1035 |
+
[
|
| 1036 |
+
"Ġ",
|
| 1037 |
+
"a"
|
| 1038 |
+
],
|
| 1039 |
+
[
|
| 1040 |
+
"r",
|
| 1041 |
+
"e"
|
| 1042 |
+
],
|
| 1043 |
+
[
|
| 1044 |
+
"a",
|
| 1045 |
+
"t"
|
| 1046 |
+
],
|
| 1047 |
+
[
|
| 1048 |
+
"s",
|
| 1049 |
+
"t"
|
| 1050 |
+
],
|
| 1051 |
+
[
|
| 1052 |
+
"e",
|
| 1053 |
+
"n"
|
| 1054 |
+
],
|
| 1055 |
+
[
|
| 1056 |
+
"o",
|
| 1057 |
+
"r"
|
| 1058 |
+
],
|
| 1059 |
+
[
|
| 1060 |
+
"Ġt",
|
| 1061 |
+
"h"
|
| 1062 |
+
],
|
| 1063 |
+
[
|
| 1064 |
+
"Ċ",
|
| 1065 |
+
"Ċ"
|
| 1066 |
+
],
|
| 1067 |
+
[
|
| 1068 |
+
"Ġ",
|
| 1069 |
+
"c"
|
| 1070 |
+
],
|
| 1071 |
+
[
|
| 1072 |
+
"l",
|
| 1073 |
+
"e"
|
| 1074 |
+
],
|
| 1075 |
+
[
|
| 1076 |
+
"Ġ",
|
| 1077 |
+
"s"
|
| 1078 |
+
],
|
| 1079 |
+
[
|
| 1080 |
+
"i",
|
| 1081 |
+
"t"
|
| 1082 |
+
],
|
| 1083 |
+
[
|
| 1084 |
+
"a",
|
| 1085 |
+
"n"
|
| 1086 |
+
],
|
| 1087 |
+
[
|
| 1088 |
+
"a",
|
| 1089 |
+
"r"
|
| 1090 |
+
],
|
| 1091 |
+
[
|
| 1092 |
+
"a",
|
| 1093 |
+
"l"
|
| 1094 |
+
],
|
| 1095 |
+
[
|
| 1096 |
+
"Ġth",
|
| 1097 |
+
"e"
|
| 1098 |
+
],
|
| 1099 |
+
[
|
| 1100 |
+
"Ġ",
|
| 1101 |
+
"p"
|
| 1102 |
+
],
|
| 1103 |
+
[
|
| 1104 |
+
"Ġ",
|
| 1105 |
+
"f"
|
| 1106 |
+
],
|
| 1107 |
+
[
|
| 1108 |
+
"o",
|
| 1109 |
+
"u"
|
| 1110 |
+
],
|
| 1111 |
+
[
|
| 1112 |
+
"Ġ",
|
| 1113 |
+
"="
|
| 1114 |
+
],
|
| 1115 |
+
[
|
| 1116 |
+
"i",
|
| 1117 |
+
"s"
|
| 1118 |
+
],
|
| 1119 |
+
[
|
| 1120 |
+
"ĠĠĠĠ",
|
| 1121 |
+
"ĠĠĠ"
|
| 1122 |
+
],
|
| 1123 |
+
[
|
| 1124 |
+
"in",
|
| 1125 |
+
"g"
|
| 1126 |
+
],
|
| 1127 |
+
[
|
| 1128 |
+
"e",
|
| 1129 |
+
"s"
|
| 1130 |
+
],
|
| 1131 |
+
[
|
| 1132 |
+
"Ġ",
|
| 1133 |
+
"w"
|
| 1134 |
+
],
|
| 1135 |
+
[
|
| 1136 |
+
"i",
|
| 1137 |
+
"on"
|
| 1138 |
+
],
|
| 1139 |
+
[
|
| 1140 |
+
"e",
|
| 1141 |
+
"d"
|
| 1142 |
+
],
|
| 1143 |
+
[
|
| 1144 |
+
"i",
|
| 1145 |
+
"c"
|
| 1146 |
+
],
|
| 1147 |
+
[
|
| 1148 |
+
"Ġ",
|
| 1149 |
+
"b"
|
| 1150 |
+
],
|
| 1151 |
+
[
|
| 1152 |
+
"Ġ",
|
| 1153 |
+
"d"
|
| 1154 |
+
],
|
| 1155 |
+
[
|
| 1156 |
+
"e",
|
| 1157 |
+
"t"
|
| 1158 |
+
],
|
| 1159 |
+
[
|
| 1160 |
+
"Ġ",
|
| 1161 |
+
"m"
|
| 1162 |
+
],
|
| 1163 |
+
[
|
| 1164 |
+
"Ġ",
|
| 1165 |
+
"o"
|
| 1166 |
+
],
|
| 1167 |
+
[
|
| 1168 |
+
"ĉ",
|
| 1169 |
+
"ĉ"
|
| 1170 |
+
],
|
| 1171 |
+
[
|
| 1172 |
+
"r",
|
| 1173 |
+
"o"
|
| 1174 |
+
],
|
| 1175 |
+
[
|
| 1176 |
+
"a",
|
| 1177 |
+
"s"
|
| 1178 |
+
],
|
| 1179 |
+
[
|
| 1180 |
+
"e",
|
| 1181 |
+
"l"
|
| 1182 |
+
],
|
| 1183 |
+
[
|
| 1184 |
+
"c",
|
| 1185 |
+
"t"
|
| 1186 |
+
],
|
| 1187 |
+
[
|
| 1188 |
+
"n",
|
| 1189 |
+
"d"
|
| 1190 |
+
],
|
| 1191 |
+
[
|
| 1192 |
+
"Ġ",
|
| 1193 |
+
"in"
|
| 1194 |
+
],
|
| 1195 |
+
[
|
| 1196 |
+
"Ġ",
|
| 1197 |
+
"h"
|
| 1198 |
+
],
|
| 1199 |
+
[
|
| 1200 |
+
"en",
|
| 1201 |
+
"t"
|
| 1202 |
+
],
|
| 1203 |
+
[
|
| 1204 |
+
"i",
|
| 1205 |
+
"d"
|
| 1206 |
+
],
|
| 1207 |
+
[
|
| 1208 |
+
"Ġ",
|
| 1209 |
+
"n"
|
| 1210 |
+
],
|
| 1211 |
+
[
|
| 1212 |
+
"a",
|
| 1213 |
+
"m"
|
| 1214 |
+
],
|
| 1215 |
+
[
|
| 1216 |
+
"ĠĠĠĠĠĠĠĠ",
|
| 1217 |
+
"ĠĠĠ"
|
| 1218 |
+
],
|
| 1219 |
+
[
|
| 1220 |
+
"Ġt",
|
| 1221 |
+
"o"
|
| 1222 |
+
],
|
| 1223 |
+
[
|
| 1224 |
+
"Ġ",
|
| 1225 |
+
"re"
|
| 1226 |
+
],
|
| 1227 |
+
[
|
| 1228 |
+
"-",
|
| 1229 |
+
"-"
|
| 1230 |
+
],
|
| 1231 |
+
[
|
| 1232 |
+
"Ġ",
|
| 1233 |
+
"{"
|
| 1234 |
+
],
|
| 1235 |
+
[
|
| 1236 |
+
"Ġo",
|
| 1237 |
+
"f"
|
| 1238 |
+
],
|
| 1239 |
+
[
|
| 1240 |
+
"o",
|
| 1241 |
+
"m"
|
| 1242 |
+
],
|
| 1243 |
+
[
|
| 1244 |
+
"i",
|
| 1245 |
+
"m"
|
| 1246 |
+
],
|
| 1247 |
+
[
|
| 1248 |
+
"č",
|
| 1249 |
+
"Ċ"
|
| 1250 |
+
],
|
| 1251 |
+
[
|
| 1252 |
+
"Ġ",
|
| 1253 |
+
"("
|
| 1254 |
+
],
|
| 1255 |
+
[
|
| 1256 |
+
"i",
|
| 1257 |
+
"l"
|
| 1258 |
+
],
|
| 1259 |
+
[
|
| 1260 |
+
"/",
|
| 1261 |
+
"/"
|
| 1262 |
+
],
|
| 1263 |
+
[
|
| 1264 |
+
"Ġa",
|
| 1265 |
+
"nd"
|
| 1266 |
+
],
|
| 1267 |
+
[
|
| 1268 |
+
"u",
|
| 1269 |
+
"r"
|
| 1270 |
+
],
|
| 1271 |
+
[
|
| 1272 |
+
"s",
|
| 1273 |
+
"e"
|
| 1274 |
+
],
|
| 1275 |
+
[
|
| 1276 |
+
"Ġ",
|
| 1277 |
+
"l"
|
| 1278 |
+
],
|
| 1279 |
+
[
|
| 1280 |
+
"e",
|
| 1281 |
+
"x"
|
| 1282 |
+
],
|
| 1283 |
+
[
|
| 1284 |
+
"Ġ",
|
| 1285 |
+
"S"
|
| 1286 |
+
],
|
| 1287 |
+
[
|
| 1288 |
+
"a",
|
| 1289 |
+
"d"
|
| 1290 |
+
],
|
| 1291 |
+
[
|
| 1292 |
+
"Ġ",
|
| 1293 |
+
"\""
|
| 1294 |
+
],
|
| 1295 |
+
[
|
| 1296 |
+
"c",
|
| 1297 |
+
"h"
|
| 1298 |
+
],
|
| 1299 |
+
[
|
| 1300 |
+
"u",
|
| 1301 |
+
"t"
|
| 1302 |
+
],
|
| 1303 |
+
[
|
| 1304 |
+
"i",
|
| 1305 |
+
"f"
|
| 1306 |
+
],
|
| 1307 |
+
[
|
| 1308 |
+
"*",
|
| 1309 |
+
"*"
|
| 1310 |
+
],
|
| 1311 |
+
[
|
| 1312 |
+
"Ġ",
|
| 1313 |
+
"}"
|
| 1314 |
+
],
|
| 1315 |
+
[
|
| 1316 |
+
"e",
|
| 1317 |
+
"m"
|
| 1318 |
+
],
|
| 1319 |
+
[
|
| 1320 |
+
"o",
|
| 1321 |
+
"l"
|
| 1322 |
+
],
|
| 1323 |
+
[
|
| 1324 |
+
"ĠĠĠĠĠĠĠĠ",
|
| 1325 |
+
"ĠĠĠĠĠĠĠĠ"
|
| 1326 |
+
],
|
| 1327 |
+
[
|
| 1328 |
+
"t",
|
| 1329 |
+
"h"
|
| 1330 |
+
],
|
| 1331 |
+
[
|
| 1332 |
+
"Ġ",
|
| 1333 |
+
"g"
|
| 1334 |
+
],
|
| 1335 |
+
[
|
| 1336 |
+
"i",
|
| 1337 |
+
"g"
|
| 1338 |
+
],
|
| 1339 |
+
[
|
| 1340 |
+
"i",
|
| 1341 |
+
"v"
|
| 1342 |
+
],
|
| 1343 |
+
[
|
| 1344 |
+
"c",
|
| 1345 |
+
"e"
|
| 1346 |
+
],
|
| 1347 |
+
[
|
| 1348 |
+
"o",
|
| 1349 |
+
"d"
|
| 1350 |
+
],
|
| 1351 |
+
[
|
| 1352 |
+
"Ġ",
|
| 1353 |
+
"v"
|
| 1354 |
+
],
|
| 1355 |
+
[
|
| 1356 |
+
"at",
|
| 1357 |
+
"e"
|
| 1358 |
+
],
|
| 1359 |
+
[
|
| 1360 |
+
"Ġ",
|
| 1361 |
+
"T"
|
| 1362 |
+
],
|
| 1363 |
+
[
|
| 1364 |
+
"a",
|
| 1365 |
+
"g"
|
| 1366 |
+
],
|
| 1367 |
+
[
|
| 1368 |
+
"a",
|
| 1369 |
+
"y"
|
| 1370 |
+
],
|
| 1371 |
+
[
|
| 1372 |
+
"Ġ",
|
| 1373 |
+
"*"
|
| 1374 |
+
],
|
| 1375 |
+
[
|
| 1376 |
+
"o",
|
| 1377 |
+
"t"
|
| 1378 |
+
],
|
| 1379 |
+
[
|
| 1380 |
+
"u",
|
| 1381 |
+
"s"
|
| 1382 |
+
],
|
| 1383 |
+
[
|
| 1384 |
+
"Ġ",
|
| 1385 |
+
"C"
|
| 1386 |
+
],
|
| 1387 |
+
[
|
| 1388 |
+
"Ġ",
|
| 1389 |
+
"st"
|
| 1390 |
+
],
|
| 1391 |
+
[
|
| 1392 |
+
"Ġ",
|
| 1393 |
+
"I"
|
| 1394 |
+
],
|
| 1395 |
+
[
|
| 1396 |
+
"u",
|
| 1397 |
+
"n"
|
| 1398 |
+
],
|
| 1399 |
+
[
|
| 1400 |
+
"u",
|
| 1401 |
+
"l"
|
| 1402 |
+
],
|
| 1403 |
+
[
|
| 1404 |
+
"u",
|
| 1405 |
+
"e"
|
| 1406 |
+
],
|
| 1407 |
+
[
|
| 1408 |
+
"Ġ",
|
| 1409 |
+
"A"
|
| 1410 |
+
],
|
| 1411 |
+
[
|
| 1412 |
+
"o",
|
| 1413 |
+
"w"
|
| 1414 |
+
],
|
| 1415 |
+
[
|
| 1416 |
+
"Ġ",
|
| 1417 |
+
"'"
|
| 1418 |
+
],
|
| 1419 |
+
[
|
| 1420 |
+
"e",
|
| 1421 |
+
"w"
|
| 1422 |
+
],
|
| 1423 |
+
[
|
| 1424 |
+
"Ġ",
|
| 1425 |
+
"<"
|
| 1426 |
+
],
|
| 1427 |
+
[
|
| 1428 |
+
"at",
|
| 1429 |
+
"ion"
|
| 1430 |
+
],
|
| 1431 |
+
[
|
| 1432 |
+
"(",
|
| 1433 |
+
")"
|
| 1434 |
+
],
|
| 1435 |
+
[
|
| 1436 |
+
"Ġf",
|
| 1437 |
+
"or"
|
| 1438 |
+
],
|
| 1439 |
+
[
|
| 1440 |
+
"a",
|
| 1441 |
+
"b"
|
| 1442 |
+
],
|
| 1443 |
+
[
|
| 1444 |
+
"or",
|
| 1445 |
+
"t"
|
| 1446 |
+
],
|
| 1447 |
+
[
|
| 1448 |
+
"u",
|
| 1449 |
+
"m"
|
| 1450 |
+
],
|
| 1451 |
+
[
|
| 1452 |
+
"am",
|
| 1453 |
+
"e"
|
| 1454 |
+
],
|
| 1455 |
+
[
|
| 1456 |
+
"Ġ",
|
| 1457 |
+
"is"
|
| 1458 |
+
],
|
| 1459 |
+
[
|
| 1460 |
+
"p",
|
| 1461 |
+
"e"
|
| 1462 |
+
],
|
| 1463 |
+
[
|
| 1464 |
+
"t",
|
| 1465 |
+
"r"
|
| 1466 |
+
],
|
| 1467 |
+
[
|
| 1468 |
+
"c",
|
| 1469 |
+
"k"
|
| 1470 |
+
],
|
| 1471 |
+
[
|
| 1472 |
+
"â",
|
| 1473 |
+
"Ģ"
|
| 1474 |
+
],
|
| 1475 |
+
[
|
| 1476 |
+
"Ġ",
|
| 1477 |
+
"y"
|
| 1478 |
+
],
|
| 1479 |
+
[
|
| 1480 |
+
"i",
|
| 1481 |
+
"st"
|
| 1482 |
+
],
|
| 1483 |
+
[
|
| 1484 |
+
"--",
|
| 1485 |
+
"--"
|
| 1486 |
+
],
|
| 1487 |
+
[
|
| 1488 |
+
"h",
|
| 1489 |
+
"e"
|
| 1490 |
+
],
|
| 1491 |
+
[
|
| 1492 |
+
"Ġ",
|
| 1493 |
+
"e"
|
| 1494 |
+
],
|
| 1495 |
+
[
|
| 1496 |
+
"l",
|
| 1497 |
+
"o"
|
| 1498 |
+
],
|
| 1499 |
+
[
|
| 1500 |
+
"Ġ",
|
| 1501 |
+
"M"
|
| 1502 |
+
],
|
| 1503 |
+
[
|
| 1504 |
+
"Ġb",
|
| 1505 |
+
"e"
|
| 1506 |
+
],
|
| 1507 |
+
[
|
| 1508 |
+
"er",
|
| 1509 |
+
"s"
|
| 1510 |
+
],
|
| 1511 |
+
[
|
| 1512 |
+
"Ġ",
|
| 1513 |
+
"on"
|
| 1514 |
+
],
|
| 1515 |
+
[
|
| 1516 |
+
"Ġc",
|
| 1517 |
+
"on"
|
| 1518 |
+
],
|
| 1519 |
+
[
|
| 1520 |
+
"a",
|
| 1521 |
+
"p"
|
| 1522 |
+
],
|
| 1523 |
+
[
|
| 1524 |
+
"u",
|
| 1525 |
+
"b"
|
| 1526 |
+
],
|
| 1527 |
+
[
|
| 1528 |
+
"Ġ",
|
| 1529 |
+
"P"
|
| 1530 |
+
],
|
| 1531 |
+
[
|
| 1532 |
+
"ĠĠĠĠĠĠĠĠ",
|
| 1533 |
+
"ĠĠĠĠĠĠĠ"
|
| 1534 |
+
],
|
| 1535 |
+
[
|
| 1536 |
+
"as",
|
| 1537 |
+
"s"
|
| 1538 |
+
],
|
| 1539 |
+
[
|
| 1540 |
+
"in",
|
| 1541 |
+
"t"
|
| 1542 |
+
],
|
| 1543 |
+
[
|
| 1544 |
+
"l",
|
| 1545 |
+
"y"
|
| 1546 |
+
],
|
| 1547 |
+
[
|
| 1548 |
+
"ur",
|
| 1549 |
+
"n"
|
| 1550 |
+
],
|
| 1551 |
+
[
|
| 1552 |
+
"Ġ",
|
| 1553 |
+
"$"
|
| 1554 |
+
],
|
| 1555 |
+
[
|
| 1556 |
+
"a",
|
| 1557 |
+
"v"
|
| 1558 |
+
],
|
| 1559 |
+
[
|
| 1560 |
+
"p",
|
| 1561 |
+
"ort"
|
| 1562 |
+
],
|
| 1563 |
+
[
|
| 1564 |
+
"i",
|
| 1565 |
+
"r"
|
| 1566 |
+
],
|
| 1567 |
+
[
|
| 1568 |
+
"-",
|
| 1569 |
+
">"
|
| 1570 |
+
],
|
| 1571 |
+
[
|
| 1572 |
+
"n",
|
| 1573 |
+
"t"
|
| 1574 |
+
],
|
| 1575 |
+
[
|
| 1576 |
+
"ct",
|
| 1577 |
+
"ion"
|
| 1578 |
+
],
|
| 1579 |
+
[
|
| 1580 |
+
"en",
|
| 1581 |
+
"d"
|
| 1582 |
+
],
|
| 1583 |
+
[
|
| 1584 |
+
"Ġd",
|
| 1585 |
+
"e"
|
| 1586 |
+
],
|
| 1587 |
+
[
|
| 1588 |
+
"it",
|
| 1589 |
+
"h"
|
| 1590 |
+
],
|
| 1591 |
+
[
|
| 1592 |
+
"ou",
|
| 1593 |
+
"t"
|
| 1594 |
+
],
|
| 1595 |
+
[
|
| 1596 |
+
"t",
|
| 1597 |
+
"urn"
|
| 1598 |
+
],
|
| 1599 |
+
[
|
| 1600 |
+
"ou",
|
| 1601 |
+
"r"
|
| 1602 |
+
],
|
| 1603 |
+
[
|
| 1604 |
+
"ĠĠĠĠ",
|
| 1605 |
+
"Ġ"
|
| 1606 |
+
],
|
| 1607 |
+
[
|
| 1608 |
+
"l",
|
| 1609 |
+
"ic"
|
| 1610 |
+
],
|
| 1611 |
+
[
|
| 1612 |
+
"re",
|
| 1613 |
+
"s"
|
| 1614 |
+
],
|
| 1615 |
+
[
|
| 1616 |
+
"p",
|
| 1617 |
+
"t"
|
| 1618 |
+
],
|
| 1619 |
+
[
|
| 1620 |
+
"=",
|
| 1621 |
+
"="
|
| 1622 |
+
],
|
| 1623 |
+
[
|
| 1624 |
+
"Ġth",
|
| 1625 |
+
"is"
|
| 1626 |
+
],
|
| 1627 |
+
[
|
| 1628 |
+
"Ġw",
|
| 1629 |
+
"h"
|
| 1630 |
+
],
|
| 1631 |
+
[
|
| 1632 |
+
"Ġ",
|
| 1633 |
+
"if"
|
| 1634 |
+
],
|
| 1635 |
+
[
|
| 1636 |
+
"Ġ",
|
| 1637 |
+
"D"
|
| 1638 |
+
],
|
| 1639 |
+
[
|
| 1640 |
+
"v",
|
| 1641 |
+
"er"
|
| 1642 |
+
],
|
| 1643 |
+
[
|
| 1644 |
+
"ag",
|
| 1645 |
+
"e"
|
| 1646 |
+
],
|
| 1647 |
+
[
|
| 1648 |
+
"Ġ",
|
| 1649 |
+
"B"
|
| 1650 |
+
],
|
| 1651 |
+
[
|
| 1652 |
+
"h",
|
| 1653 |
+
"t"
|
| 1654 |
+
],
|
| 1655 |
+
[
|
| 1656 |
+
"ex",
|
| 1657 |
+
"t"
|
| 1658 |
+
],
|
| 1659 |
+
[
|
| 1660 |
+
"=",
|
| 1661 |
+
"\""
|
| 1662 |
+
],
|
| 1663 |
+
[
|
| 1664 |
+
"Ġth",
|
| 1665 |
+
"at"
|
| 1666 |
+
],
|
| 1667 |
+
[
|
| 1668 |
+
"**",
|
| 1669 |
+
"**"
|
| 1670 |
+
],
|
| 1671 |
+
[
|
| 1672 |
+
"Ġ",
|
| 1673 |
+
"R"
|
| 1674 |
+
],
|
| 1675 |
+
[
|
| 1676 |
+
"Ġ",
|
| 1677 |
+
"it"
|
| 1678 |
+
],
|
| 1679 |
+
[
|
| 1680 |
+
"es",
|
| 1681 |
+
"s"
|
| 1682 |
+
],
|
| 1683 |
+
[
|
| 1684 |
+
"Ġ",
|
| 1685 |
+
"F"
|
| 1686 |
+
],
|
| 1687 |
+
[
|
| 1688 |
+
"Ġ",
|
| 1689 |
+
"r"
|
| 1690 |
+
],
|
| 1691 |
+
[
|
| 1692 |
+
"o",
|
| 1693 |
+
"s"
|
| 1694 |
+
],
|
| 1695 |
+
[
|
| 1696 |
+
"an",
|
| 1697 |
+
"d"
|
| 1698 |
+
],
|
| 1699 |
+
[
|
| 1700 |
+
"Ġa",
|
| 1701 |
+
"s"
|
| 1702 |
+
],
|
| 1703 |
+
[
|
| 1704 |
+
"e",
|
| 1705 |
+
"ct"
|
| 1706 |
+
],
|
| 1707 |
+
[
|
| 1708 |
+
"k",
|
| 1709 |
+
"e"
|
| 1710 |
+
],
|
| 1711 |
+
[
|
| 1712 |
+
"ro",
|
| 1713 |
+
"m"
|
| 1714 |
+
],
|
| 1715 |
+
[
|
| 1716 |
+
"Ġ",
|
| 1717 |
+
"//"
|
| 1718 |
+
],
|
| 1719 |
+
[
|
| 1720 |
+
"c",
|
| 1721 |
+
"on"
|
| 1722 |
+
],
|
| 1723 |
+
[
|
| 1724 |
+
"Ġ",
|
| 1725 |
+
"L"
|
| 1726 |
+
],
|
| 1727 |
+
[
|
| 1728 |
+
"(",
|
| 1729 |
+
"\""
|
| 1730 |
+
],
|
| 1731 |
+
[
|
| 1732 |
+
"q",
|
| 1733 |
+
"u"
|
| 1734 |
+
],
|
| 1735 |
+
[
|
| 1736 |
+
"l",
|
| 1737 |
+
"ass"
|
| 1738 |
+
],
|
| 1739 |
+
[
|
| 1740 |
+
"Ġw",
|
| 1741 |
+
"ith"
|
| 1742 |
+
],
|
| 1743 |
+
[
|
| 1744 |
+
"i",
|
| 1745 |
+
"z"
|
| 1746 |
+
],
|
| 1747 |
+
[
|
| 1748 |
+
"d",
|
| 1749 |
+
"e"
|
| 1750 |
+
],
|
| 1751 |
+
[
|
| 1752 |
+
"Ġ",
|
| 1753 |
+
"N"
|
| 1754 |
+
],
|
| 1755 |
+
[
|
| 1756 |
+
"Ġa",
|
| 1757 |
+
"l"
|
| 1758 |
+
],
|
| 1759 |
+
[
|
| 1760 |
+
"o",
|
| 1761 |
+
"p"
|
| 1762 |
+
],
|
| 1763 |
+
[
|
| 1764 |
+
"u",
|
| 1765 |
+
"p"
|
| 1766 |
+
],
|
| 1767 |
+
[
|
| 1768 |
+
"g",
|
| 1769 |
+
"et"
|
| 1770 |
+
],
|
| 1771 |
+
[
|
| 1772 |
+
"i",
|
| 1773 |
+
"le"
|
| 1774 |
+
],
|
| 1775 |
+
[
|
| 1776 |
+
"Ġa",
|
| 1777 |
+
"n"
|
| 1778 |
+
],
|
| 1779 |
+
[
|
| 1780 |
+
"at",
|
| 1781 |
+
"a"
|
| 1782 |
+
],
|
| 1783 |
+
[
|
| 1784 |
+
"o",
|
| 1785 |
+
"re"
|
| 1786 |
+
],
|
| 1787 |
+
[
|
| 1788 |
+
"r",
|
| 1789 |
+
"i"
|
| 1790 |
+
],
|
| 1791 |
+
[
|
| 1792 |
+
"Ġp",
|
| 1793 |
+
"ro"
|
| 1794 |
+
],
|
| 1795 |
+
[
|
| 1796 |
+
"ĉĉ",
|
| 1797 |
+
"ĉĉ"
|
| 1798 |
+
],
|
| 1799 |
+
[
|
| 1800 |
+
"t",
|
| 1801 |
+
"er"
|
| 1802 |
+
],
|
| 1803 |
+
[
|
| 1804 |
+
"a",
|
| 1805 |
+
"in"
|
| 1806 |
+
],
|
| 1807 |
+
[
|
| 1808 |
+
"Ġ",
|
| 1809 |
+
"W"
|
| 1810 |
+
],
|
| 1811 |
+
[
|
| 1812 |
+
"Ġ",
|
| 1813 |
+
"E"
|
| 1814 |
+
],
|
| 1815 |
+
[
|
| 1816 |
+
"Ġc",
|
| 1817 |
+
"om"
|
| 1818 |
+
],
|
| 1819 |
+
[
|
| 1820 |
+
"Ġre",
|
| 1821 |
+
"turn"
|
| 1822 |
+
],
|
| 1823 |
+
[
|
| 1824 |
+
"ar",
|
| 1825 |
+
"t"
|
| 1826 |
+
],
|
| 1827 |
+
[
|
| 1828 |
+
"Ġ",
|
| 1829 |
+
"H"
|
| 1830 |
+
],
|
| 1831 |
+
[
|
| 1832 |
+
"a",
|
| 1833 |
+
"ck"
|
| 1834 |
+
],
|
| 1835 |
+
[
|
| 1836 |
+
"im",
|
| 1837 |
+
"port"
|
| 1838 |
+
],
|
| 1839 |
+
[
|
| 1840 |
+
"ub",
|
| 1841 |
+
"lic"
|
| 1842 |
+
],
|
| 1843 |
+
[
|
| 1844 |
+
"Ġ",
|
| 1845 |
+
"or"
|
| 1846 |
+
],
|
| 1847 |
+
[
|
| 1848 |
+
"e",
|
| 1849 |
+
"st"
|
| 1850 |
+
],
|
| 1851 |
+
[
|
| 1852 |
+
"m",
|
| 1853 |
+
"ent"
|
| 1854 |
+
],
|
| 1855 |
+
[
|
| 1856 |
+
"Ġ",
|
| 1857 |
+
"G"
|
| 1858 |
+
],
|
| 1859 |
+
[
|
| 1860 |
+
"ab",
|
| 1861 |
+
"le"
|
| 1862 |
+
],
|
| 1863 |
+
[
|
| 1864 |
+
"Ġ",
|
| 1865 |
+
"-"
|
| 1866 |
+
],
|
| 1867 |
+
[
|
| 1868 |
+
"in",
|
| 1869 |
+
"e"
|
| 1870 |
+
],
|
| 1871 |
+
[
|
| 1872 |
+
"il",
|
| 1873 |
+
"l"
|
| 1874 |
+
],
|
| 1875 |
+
[
|
| 1876 |
+
"in",
|
| 1877 |
+
"d"
|
| 1878 |
+
],
|
| 1879 |
+
[
|
| 1880 |
+
"er",
|
| 1881 |
+
"e"
|
| 1882 |
+
],
|
| 1883 |
+
[
|
| 1884 |
+
":",
|
| 1885 |
+
":"
|
| 1886 |
+
],
|
| 1887 |
+
[
|
| 1888 |
+
"it",
|
| 1889 |
+
"y"
|
| 1890 |
+
],
|
| 1891 |
+
[
|
| 1892 |
+
"Ġ",
|
| 1893 |
+
"+"
|
| 1894 |
+
],
|
| 1895 |
+
[
|
| 1896 |
+
"Ġt",
|
| 1897 |
+
"r"
|
| 1898 |
+
],
|
| 1899 |
+
[
|
| 1900 |
+
"el",
|
| 1901 |
+
"f"
|
| 1902 |
+
],
|
| 1903 |
+
[
|
| 1904 |
+
"ig",
|
| 1905 |
+
"ht"
|
| 1906 |
+
],
|
| 1907 |
+
[
|
| 1908 |
+
"(",
|
| 1909 |
+
"'"
|
| 1910 |
+
],
|
| 1911 |
+
[
|
| 1912 |
+
"or",
|
| 1913 |
+
"m"
|
| 1914 |
+
],
|
| 1915 |
+
[
|
| 1916 |
+
"ul",
|
| 1917 |
+
"t"
|
| 1918 |
+
],
|
| 1919 |
+
[
|
| 1920 |
+
"st",
|
| 1921 |
+
"r"
|
| 1922 |
+
],
|
| 1923 |
+
[
|
| 1924 |
+
".",
|
| 1925 |
+
"."
|
| 1926 |
+
],
|
| 1927 |
+
[
|
| 1928 |
+
"\"",
|
| 1929 |
+
","
|
| 1930 |
+
],
|
| 1931 |
+
[
|
| 1932 |
+
"Ġy",
|
| 1933 |
+
"ou"
|
| 1934 |
+
],
|
| 1935 |
+
[
|
| 1936 |
+
"y",
|
| 1937 |
+
"pe"
|
| 1938 |
+
],
|
| 1939 |
+
[
|
| 1940 |
+
"p",
|
| 1941 |
+
"l"
|
| 1942 |
+
],
|
| 1943 |
+
[
|
| 1944 |
+
"Ġn",
|
| 1945 |
+
"ew"
|
| 1946 |
+
],
|
| 1947 |
+
[
|
| 1948 |
+
"Ġ",
|
| 1949 |
+
"j"
|
| 1950 |
+
],
|
| 1951 |
+
[
|
| 1952 |
+
"ĠĠĠĠĠĠĠĠ",
|
| 1953 |
+
"ĠĠĠĠĠĠĠĠĠĠĠ"
|
| 1954 |
+
],
|
| 1955 |
+
[
|
| 1956 |
+
"Ġf",
|
| 1957 |
+
"rom"
|
| 1958 |
+
],
|
| 1959 |
+
[
|
| 1960 |
+
"Ġ",
|
| 1961 |
+
"ex"
|
| 1962 |
+
],
|
| 1963 |
+
[
|
| 1964 |
+
"Ġ",
|
| 1965 |
+
"O"
|
| 1966 |
+
],
|
| 1967 |
+
[
|
| 1968 |
+
"l",
|
| 1969 |
+
"d"
|
| 1970 |
+
],
|
| 1971 |
+
[
|
| 1972 |
+
"Ġ",
|
| 1973 |
+
"["
|
| 1974 |
+
],
|
| 1975 |
+
[
|
| 1976 |
+
"o",
|
| 1977 |
+
"c"
|
| 1978 |
+
]
|
| 1979 |
+
]
|
| 1980 |
+
}
|
| 1981 |
+
}
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"audio_bos_token": "<|audio_start|>",
|
| 4 |
+
"audio_eos_token": "<|audio_end|>",
|
| 5 |
+
"audio_token": "<|audio_pad|>",
|
| 6 |
+
"backend": "tokenizers",
|
| 7 |
+
"bos_token": "<|im_start|>",
|
| 8 |
+
"clean_up_tokenization_spaces": false,
|
| 9 |
+
"eos_token": "<|im_end|>",
|
| 10 |
+
"errors": "replace",
|
| 11 |
+
"extra_special_tokens": {
|
| 12 |
+
"image_token": "<|image_pad|>",
|
| 13 |
+
"video_token": "<|video_pad|>",
|
| 14 |
+
"image_start_token": "<image>",
|
| 15 |
+
"image_end_token": "</image>",
|
| 16 |
+
"slice_start_token": "<slice>",
|
| 17 |
+
"slice_end_token": "</slice>",
|
| 18 |
+
"image_id_start_token": "<image_id>",
|
| 19 |
+
"image_id_end_token": "</image_id>"
|
| 20 |
+
},
|
| 21 |
+
"image_token": "<|image_pad|>",
|
| 22 |
+
"is_local": true,
|
| 23 |
+
"model_max_length": 262144,
|
| 24 |
+
"model_specific_special_tokens": {
|
| 25 |
+
"audio_bos_token": "<|audio_start|>",
|
| 26 |
+
"audio_eos_token": "<|audio_end|>",
|
| 27 |
+
"audio_token": "<|audio_pad|>",
|
| 28 |
+
"image_token": "<|image_pad|>",
|
| 29 |
+
"video_token": "<|video_pad|>",
|
| 30 |
+
"vision_bos_token": "<|vision_start|>",
|
| 31 |
+
"vision_eos_token": "<|vision_end|>"
|
| 32 |
+
},
|
| 33 |
+
"pad_token": "<|endoftext|>",
|
| 34 |
+
"pretokenize_regex": "(?i:'s|'t|'re|'ve|'m|'ll|'d)|[^\\r\\n\\p{L}\\p{N}]?[\\p{L}\\p{M}]+|\\p{N}| ?[^\\s\\p{L}\\p{M}\\p{N}]+[\\r\\n]*|\\s*[\\r\\n]+|\\s+(?!\\S)|\\s+",
|
| 35 |
+
"split_special_tokens": false,
|
| 36 |
+
"unk_token": "<unk>",
|
| 37 |
+
"video_token": "<|video_pad|>",
|
| 38 |
+
"vision_bos_token": "<|vision_start|>",
|
| 39 |
+
"vision_eos_token": "<|vision_end|>",
|
| 40 |
+
"chat_template": "{%- if enable_thinking is not defined -%}\n {%- set enable_thinking = false -%}\n{%- endif -%}\n{%- macro render_content(content, is_system_content=false) -%}\n {%- if content is string -%}\n {{- content -}}\n {%- elif content is iterable and content is not mapping -%}\n {%- set ns = namespace(parts=[]) -%}\n {%- for item in content -%}\n {%- if 'image' in item or 'image_url' in item or item.type == 'image' -%}\n {%- if is_system_content -%}\n {{- raise_exception('System message cannot contain images.') -}}\n {%- endif -%}\n {%- set ns.parts = ns.parts + ['<|image_pad|>'] -%}\n {%- elif 'video' in item or item.type == 'video' -%}\n {%- if is_system_content -%}\n {{- raise_exception('System message cannot contain videos.') -}}\n {%- endif -%}\n {%- set ns.parts = ns.parts + ['<|video_pad|>'] -%}\n {%- elif 'text' in item -%}\n {%- set ns.parts = ns.parts + [item.text] -%}\n {%- else -%}\n {{- raise_exception('Unexpected item type in content.') -}}\n {%- endif -%}\n {%- endfor -%}\n {{- ns.parts | join('\\n') -}}\n {%- elif content is none or content is undefined -%}\n {{- '' -}}\n {%- else -%}\n {{- raise_exception('Unexpected content type.') -}}\n {%- endif -%}\n{%- endmacro -%}\n{%- if not messages %}\n {{- raise_exception('No messages provided.') }}\n{%- endif %}\n{%- if tools and tools is iterable and tools is not mapping %}\n {{- '<|im_start|>system\\n' }}\n {{- \"# Tools\\n\\nYou have access to the following functions:\\n\\n<tools>\" }}\n {%- for tool in tools %}\n {{- \"\\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\\n</tools>\" }}\n {{- '\\n\\nIf you choose to call a function ONLY reply in the following format with NO suffix:\\n\\n<tool_call>\\n<function=example_function_name>\\n<parameter=example_parameter_1>\\nvalue_1\\n</parameter>\\n<parameter=example_parameter_2>\\nThis is the value for the second parameter\\nthat can span\\nmultiple lines\\n</parameter>\\n</function>\\n</tool_call>\\n\\n<IMPORTANT>\\nReminder:\\n- Function calls MUST follow the specified format: an inner <function=...></function> block must be nested within <tool_call></tool_call> XML tags\\n- Required parameters MUST be specified\\n- You may provide optional reasoning for your function call in natural language BEFORE the function call, but NOT after\\n- If there is no function call available, answer the question like normal with your current knowledge and do not tell the user about function calls\\n</IMPORTANT>' }}\n {%- if messages[0].role == 'system' %}\n {%- set content = render_content(messages[0].content, true)|trim %}\n {%- if content %}\n {{- '\\n\\n' + content }}\n {%- endif %}\n {%- endif %}\n {{- '<|im_end|>\\n' }}\n{%- else %}\n {%- if messages[0].role == 'system' %}\n {%- set content = render_content(messages[0].content, true)|trim %}\n {{- '<|im_start|>system\\n' + content + '<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}\n{%- for message in messages[::-1] %}\n {%- set index = (messages|length - 1) - loop.index0 %}\n {%- if ns.multi_step_tool and message.role == \"user\" %}\n {%- set content = render_content(message.content)|trim %}\n {%- if not(content.startswith('<tool_response>') and content.endswith('</tool_response>')) %}\n {%- set ns.multi_step_tool = false %}\n {%- set ns.last_query_index = index %}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if ns.multi_step_tool %}\n {{- raise_exception('No user query found in messages.') }}\n{%- endif %}\n{%- for message in messages %}\n {%- set content = render_content(message.content)|trim %}\n {%- if message.role == \"system\" %}\n {%- if not loop.first %}\n {{- raise_exception('System message must be at the beginning.') }}\n {%- endif %}\n {%- elif message.role == \"user\" %}\n {{- '<|im_start|>' + message.role + '\\n' + content + '<|im_end|>' + '\\n' }}\n {%- elif message.role == \"assistant\" %}\n {%- set reasoning_content = '' %}\n {%- if message.reasoning_content is string %}\n {%- set reasoning_content = message.reasoning_content %}\n {%- else %}\n {%- if '</think>' in content %}\n {%- set reasoning_content = content.split('</think>')[0].rstrip('\\n').split('<think>')[-1].lstrip('\\n') %}\n {%- set content = content.split('</think>')[-1].lstrip('\\n') %}\n {%- endif %}\n {%- endif %}\n {%- set reasoning_content = reasoning_content|trim %}\n {%- if loop.index0 > ns.last_query_index %}\n {{- '<|im_start|>' + message.role + '\\n<think>\\n' + reasoning_content + '\\n</think>\\n\\n' + content }}\n {%- else %}\n {{- '<|im_start|>' + message.role + '\\n' + content }}\n {%- endif %}\n {%- if message.tool_calls and message.tool_calls is iterable and message.tool_calls is not mapping %}\n {%- for tool_call in message.tool_calls %}\n {%- if tool_call.function is defined %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {%- if loop.first %}\n {%- if content|trim %}\n {{- '\\n\\n<tool_call>\\n<function=' + tool_call.name + '>\\n' }}\n {%- else %}\n {{- '<tool_call>\\n<function=' + tool_call.name + '>\\n' }}\n {%- endif %}\n {%- else %}\n {{- '\\n<tool_call>\\n<function=' + tool_call.name + '>\\n' }}\n {%- endif %}\n {%- if tool_call.arguments is defined %}\n {%- for args_name, args_value in tool_call.arguments|items %}\n {{- '<parameter=' + args_name + '>\\n' }}\n {%- set args_value = args_value | tojson | safe if args_value is mapping or (args_value is sequence and args_value is not string) else args_value | string %}\n {{- args_value }}\n {{- '\\n</parameter>\\n' }}\n {%- endfor %}\n {%- endif %}\n {{- '</function>\\n</tool_call>' }}\n {%- endfor %}\n {%- endif %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if loop.previtem and loop.previtem.role != \"tool\" %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {{- content }}\n {{- '\\n</tool_response>' }}\n {%- if not loop.last and loop.nextitem.role != \"tool\" %}\n {{- '<|im_end|>\\n' }}\n {%- elif loop.last %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- else %}\n {{- raise_exception('Unexpected message role.') }}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\\n' }}\n {%- if enable_thinking is defined and enable_thinking is false %}\n {{- '<think>\\n\\n</think>\\n\\n' }}\n {%- else %}\n {{- '<think>\\n' }}\n {%- endif %}\n{%- endif %}\n",
|
| 41 |
+
"tokenizer_class": "Qwen2Tokenizer"
|
| 42 |
+
}
|