openvino-ci commited on
Commit
8fc8dbd
·
verified ·
1 Parent(s): c1c21f7

Upload folder using huggingface_hub

Browse files
README.md ADDED
@@ -0,0 +1,154 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - vision
5
+ - image-text-to-text
6
+ language:
7
+ - en
8
+ pipeline_tag: image-text-to-text
9
+ inference: true
10
+ base_model:
11
+ - llava-hf/llava-v1.6-mistral-7b-hf
12
+ base_model_relation: quantized
13
+ ---
14
+
15
+ # llava-v1.6-mistral-7b-hf-int4-ov
16
+
17
+ * Model creator: [llava-hf](https://huggingface.co/llava-hf)
18
+ * Original model: [llava-v1.6-mistral-7b-hf](https://huggingface.co/llava-hf/llava-v1.6-mistral-7b-hf)
19
+
20
+ ## Description
21
+
22
+ This is [llava-hf/llava-v1.6-mistral-7b-hf](https://huggingface.co/llava-hf/llava-v1.6-mistral-7b-hf) model converted to the [OpenVINO™ IR](https://docs.openvino.ai/2025/documentation/openvino-ir-format.html) (Intermediate Representation) format with weights compressed to INT4 by [NNCF](https://github.com/openvinotoolkit/nncf).
23
+
24
+
25
+ ## Quantization Parameters
26
+
27
+ Weight compression was performed using `nncf.compress_weights` with the following parameters:
28
+
29
+ * mode: **INT4_ASYM**
30
+ * ratio: **1.0**
31
+ * group_size: **128**
32
+
33
+
34
+ ## Compatibility
35
+
36
+ The provided OpenVINO™ IR model is compatible with:
37
+
38
+ * OpenVINO version 2025.2.0 and higher
39
+ * Optimum Intel 1.26.0 and higher
40
+
41
+ ## Running Model Inference with [Optimum Intel](https://huggingface.co/docs/optimum/intel/index)
42
+
43
+ 1. Install packages required for using [Optimum Intel](https://huggingface.co/docs/optimum/intel/index) integration with the OpenVINO backend:
44
+
45
+ ```
46
+ pip install --pre -U --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/pre-release openvino_tokenizers openvino
47
+
48
+ pip install git+https://github.com/huggingface/optimum-intel.git
49
+ ```
50
+
51
+ 2. Run model inference
52
+
53
+ ```
54
+ from PIL import Image
55
+ import requests
56
+ from optimum.intel.openvino import OVModelForVisualCausalLM
57
+ from transformers import AutoTokenizer, TextStreamer
58
+
59
+ model_id = "OpenVINO/llava-v1.6-mistral-7b-hf-int4-ov"
60
+
61
+ tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
62
+
63
+ ov_model = OVModelForVisualCausalLM.from_pretrained(model_id, trust_remote_code=True)
64
+ prompt = "What is unusual on this picture?"
65
+
66
+ url = "https://github.com/openvinotoolkit/openvino_notebooks/assets/29454499/d5fbbd1a-d484-415c-88cb-9986625b7b11"
67
+ image = Image.open(requests.get(url, stream=True).raw)
68
+
69
+ inputs = ov_model.preprocess_inputs(text=prompt, image=image, tokenizer=tokenizer, config=ov_model.config)
70
+
71
+ generation_args = {
72
+ "max_new_tokens": 100,
73
+ "streamer": TextStreamer(tokenizer, skip_prompt=True, skip_special_tokens=True)
74
+ }
75
+
76
+ generate_ids = ov_model.generate(**inputs, **generation_args)
77
+
78
+ generate_ids = generate_ids[:, inputs['input_ids'].shape[1]:]
79
+ response = tokenizer.batch_decode(generate_ids, skip_special_tokens=True)[0]
80
+
81
+ ```
82
+
83
+ ## Running Model Inference with [OpenVINO GenAI](https://github.com/openvinotoolkit/openvino.genai)
84
+
85
+ 1. Install packages required for using OpenVINO GenAI.
86
+ ```
87
+ pip install --pre -U --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/pre-release openvino openvino-tokenizers openvino-genai
88
+
89
+ pip install huggingface_hub
90
+ ```
91
+
92
+ 2. Download model from HuggingFace Hub
93
+
94
+ ```
95
+ import huggingface_hub as hf_hub
96
+
97
+ model_id = "OpenVINO/llava-v1.6-mistral-7b-hf-int4-ov"
98
+ model_path = "llava-v1.6-mistral-7b-hf-int4-ov"
99
+
100
+ hf_hub.snapshot_download(model_id, local_dir=model_path)
101
+
102
+ ```
103
+
104
+ 1. Run model inference:
105
+
106
+ ```
107
+ import openvino_genai as ov_genai
108
+ import requests
109
+ from PIL import Image
110
+ from io import BytesIO
111
+ import numpy as np
112
+ import openvino as ov
113
+
114
+ device = "CPU"
115
+ pipe = ov_genai.VLMPipeline(model_path, device)
116
+
117
+ def load_image(image_file):
118
+ if isinstance(image_file, str) and (image_file.startswith("http") or image_file.startswith("https")):
119
+ response = requests.get(image_file)
120
+ image = Image.open(BytesIO(response.content)).convert("RGB")
121
+ else:
122
+ image = Image.open(image_file).convert("RGB")
123
+ image_data = np.array(image.getdata()).reshape(1, image.size[1], image.size[0], 3).astype(np.byte)
124
+ return ov.Tensor(image_data)
125
+
126
+ prompt = "What is unusual on this picture?"
127
+
128
+ url = "https://github.com/openvinotoolkit/openvino_notebooks/assets/29454499/d5fbbd1a-d484-415c-88cb-9986625b7b11"
129
+ image_tensor = load_image(url)
130
+
131
+ def streamer(subword: str) -> bool:
132
+ print(subword, end="", flush=True)
133
+ return False
134
+
135
+ pipe.start_chat()
136
+ output = pipe.generate(prompt, image=image_tensor, max_new_tokens=100, streamer=streamer)
137
+ pipe.finish_chat()
138
+ ```
139
+
140
+ More GenAI usage examples can be found in OpenVINO GenAI library [docs](https://github.com/openvinotoolkit/openvino.genai/blob/master/src/README.md) and [samples](https://github.com/openvinotoolkit/openvino.genai?tab=readme-ov-file#openvino-genai-samples)
141
+
142
+
143
+ ## Limitations
144
+
145
+ Check the original [model card](https://huggingface.co/llava-hf/llava-v1.6-mistral-7b-hf) for limitations.
146
+
147
+ ## Legal information
148
+
149
+ The original model is distributed under [apache-2.0](https://huggingface.co/datasets/choosealicense/licenses/blob/main/markdown/apache-2.0.md) license. More details can be found in [original model card](https://huggingface.co/llava-hf/llava-v1.6-mistral-7b-hf).
150
+
151
+ ## Disclaimer
152
+
153
+ Intel is committed to respecting human rights and avoiding causing or contributing to adverse impacts on human rights. See [Intel’s Global Human Rights Principles](https://www.intel.com/content/dam/www/central-libraries/us/en/documents/policy-human-rights.pdf). Intel’s products and software are intended only to be used in applications that do not cause or contribute to adverse impacts on human rights.
154
+
added_tokens.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "<image>": 32000,
3
+ "<pad>": 32001
4
+ }
chat_template.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "chat_template": "{% for message in messages %}{% if message['role'] == 'system' %}{{ '<<SYS>>\n' + message['content'][0]['text'] + '\n<</SYS>>\n\n' }}{% elif message['role'] == 'user' %}{{ '[INST] ' }}{# Render all images first #}{% for content in message['content'] | selectattr('type', 'equalto', 'image') %}{{ '<image>\n' }}{% endfor %}{# Render all text next #}{% for content in message['content'] | selectattr('type', 'equalto', 'text') %}{{ content['text'] }}{% endfor %}{{' [/INST]' }}{% elif message['role'] == 'assistant' %}{{ ' ' + message['content'][0]['text'] + '</s> '}}{% else %}{{ raise_exception('Only user and assistant roles are supported!') }}{% endif %}{% endfor %}"
3
+ }
config.json ADDED
@@ -0,0 +1,4180 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_attn_implementation_autoset": true,
3
+ "architectures": [
4
+ "LlavaNextForConditionalGeneration"
5
+ ],
6
+ "ignore_index": -100,
7
+ "image_grid_pinpoints": [
8
+ [
9
+ 336,
10
+ 672
11
+ ],
12
+ [
13
+ 672,
14
+ 336
15
+ ],
16
+ [
17
+ 672,
18
+ 672
19
+ ],
20
+ [
21
+ 1008,
22
+ 336
23
+ ],
24
+ [
25
+ 336,
26
+ 1008
27
+ ]
28
+ ],
29
+ "image_newline": [
30
+ -0.0166015625,
31
+ -0.0068359375,
32
+ 0.00122833251953125,
33
+ 0.0125732421875,
34
+ -0.00122833251953125,
35
+ -0.00579833984375,
36
+ 0.007232666015625,
37
+ -0.004119873046875,
38
+ -0.00537109375,
39
+ 0.034423828125,
40
+ 0.0257568359375,
41
+ 0.00482177734375,
42
+ -0.01361083984375,
43
+ 4.935264587402344e-05,
44
+ -0.004302978515625,
45
+ 0.028076171875,
46
+ 1.0251998901367188e-05,
47
+ 0.00482177734375,
48
+ 0.007049560546875,
49
+ 0.00830078125,
50
+ 0.00689697265625,
51
+ -0.0150146484375,
52
+ -0.03662109375,
53
+ -0.0172119140625,
54
+ 0.017333984375,
55
+ -0.007080078125,
56
+ -0.0033111572265625,
57
+ 0.021484375,
58
+ 0.01324462890625,
59
+ 0.013671875,
60
+ -0.00518798828125,
61
+ 0.01031494140625,
62
+ 0.0184326171875,
63
+ 0.044189453125,
64
+ -0.016845703125,
65
+ 0.0263671875,
66
+ -0.00970458984375,
67
+ 0.004486083984375,
68
+ -0.02685546875,
69
+ -0.00136566162109375,
70
+ 0.005645751953125,
71
+ 0.00885009765625,
72
+ 0.00732421875,
73
+ 0.0101318359375,
74
+ -0.006744384765625,
75
+ -0.01708984375,
76
+ -0.02197265625,
77
+ -0.023681640625,
78
+ -0.00079345703125,
79
+ -0.01019287109375,
80
+ 0.02685546875,
81
+ 0.0035858154296875,
82
+ 0.016357421875,
83
+ -0.01348876953125,
84
+ 0.0255126953125,
85
+ 0.01043701171875,
86
+ -0.0067138671875,
87
+ -0.0091552734375,
88
+ -0.0208740234375,
89
+ -0.000885009765625,
90
+ 0.01904296875,
91
+ 0.0157470703125,
92
+ 0.00124359130859375,
93
+ -0.0458984375,
94
+ -0.013427734375,
95
+ 0.0030517578125,
96
+ 0.0166015625,
97
+ 4.2438507080078125e-05,
98
+ 0.0174560546875,
99
+ -0.0012664794921875,
100
+ -0.0014190673828125,
101
+ -0.01361083984375,
102
+ 0.01214599609375,
103
+ -0.0233154296875,
104
+ -0.01220703125,
105
+ 0.032958984375,
106
+ 0.00823974609375,
107
+ 0.007476806640625,
108
+ -0.005615234375,
109
+ 0.0235595703125,
110
+ -0.002227783203125,
111
+ -0.031982421875,
112
+ 0.0244140625,
113
+ 0.0096435546875,
114
+ -0.00860595703125,
115
+ 0.0213623046875,
116
+ -0.01409912109375,
117
+ -0.01123046875,
118
+ -0.0120849609375,
119
+ 0.0103759765625,
120
+ -0.0107421875,
121
+ -0.0262451171875,
122
+ -0.015380859375,
123
+ 0.0157470703125,
124
+ 0.02001953125,
125
+ 0.01104736328125,
126
+ -0.0186767578125,
127
+ 0.0004787445068359375,
128
+ -0.00927734375,
129
+ 0.01177978515625,
130
+ 0.0118408203125,
131
+ -0.00836181640625,
132
+ -0.006500244140625,
133
+ -0.03466796875,
134
+ -0.032470703125,
135
+ 0.021240234375,
136
+ 0.018310546875,
137
+ -0.00555419921875,
138
+ -0.01708984375,
139
+ -0.0084228515625,
140
+ -0.007659912109375,
141
+ 0.004150390625,
142
+ -0.01177978515625,
143
+ 0.019775390625,
144
+ 0.0289306640625,
145
+ -0.0072021484375,
146
+ -0.0089111328125,
147
+ 0.0179443359375,
148
+ 0.0194091796875,
149
+ -0.0203857421875,
150
+ -0.0177001953125,
151
+ 0.00098419189453125,
152
+ 0.0035552978515625,
153
+ -0.012451171875,
154
+ 0.02685546875,
155
+ -0.0091552734375,
156
+ -0.00836181640625,
157
+ 0.00921630859375,
158
+ 0.013671875,
159
+ -0.00011157989501953125,
160
+ -0.0147705078125,
161
+ -0.035888671875,
162
+ -0.00555419921875,
163
+ 0.014892578125,
164
+ -0.011962890625,
165
+ 0.00142669677734375,
166
+ 0.026123046875,
167
+ 0.0213623046875,
168
+ 0.026611328125,
169
+ 0.004608154296875,
170
+ 0.000698089599609375,
171
+ -0.00051116943359375,
172
+ 0.02734375,
173
+ 0.0020751953125,
174
+ 0.00518798828125,
175
+ -0.0030975341796875,
176
+ -0.016357421875,
177
+ 0.0140380859375,
178
+ 0.01519775390625,
179
+ 0.0289306640625,
180
+ 0.004119873046875,
181
+ -0.00201416015625,
182
+ -0.000820159912109375,
183
+ -0.014404296875,
184
+ 0.032958984375,
185
+ 0.0020294189453125,
186
+ 0.0203857421875,
187
+ -0.007415771484375,
188
+ 0.018798828125,
189
+ -0.021240234375,
190
+ -0.01416015625,
191
+ 0.01007080078125,
192
+ -0.0103759765625,
193
+ -0.0001583099365234375,
194
+ 0.00390625,
195
+ -0.0020904541015625,
196
+ 0.007049560546875,
197
+ -0.022705078125,
198
+ -0.0186767578125,
199
+ -0.01068115234375,
200
+ 0.01141357421875,
201
+ 0.0185546875,
202
+ -0.0026397705078125,
203
+ -0.01708984375,
204
+ -0.004791259765625,
205
+ -0.021728515625,
206
+ -0.004302978515625,
207
+ 0.01806640625,
208
+ -0.0020599365234375,
209
+ 0.0120849609375,
210
+ -0.00092315673828125,
211
+ 0.023193359375,
212
+ 0.0198974609375,
213
+ 0.0130615234375,
214
+ -0.01361083984375,
215
+ 0.01019287109375,
216
+ 0.021240234375,
217
+ 0.0133056640625,
218
+ 0.008544921875,
219
+ -0.000789642333984375,
220
+ -0.0113525390625,
221
+ 0.001312255859375,
222
+ -0.0003910064697265625,
223
+ -0.0206298828125,
224
+ 0.0145263671875,
225
+ -0.01470947265625,
226
+ -0.00738525390625,
227
+ -0.02392578125,
228
+ -0.0106201171875,
229
+ 0.001190185546875,
230
+ 0.01806640625,
231
+ 0.015625,
232
+ -0.00372314453125,
233
+ -0.0004520416259765625,
234
+ 0.00543212890625,
235
+ 0.0198974609375,
236
+ 0.0166015625,
237
+ 0.011474609375,
238
+ -0.01251220703125,
239
+ -0.01611328125,
240
+ -0.00946044921875,
241
+ 0.010009765625,
242
+ 0.00836181640625,
243
+ 0.00015163421630859375,
244
+ 0.00640869140625,
245
+ 0.00946044921875,
246
+ 0.007080078125,
247
+ -0.00070953369140625,
248
+ 0.0177001953125,
249
+ 0.001678466796875,
250
+ 0.0086669921875,
251
+ 0.006927490234375,
252
+ 0.0142822265625,
253
+ -0.019775390625,
254
+ -0.00836181640625,
255
+ 0.00469970703125,
256
+ -0.026123046875,
257
+ 0.0177001953125,
258
+ -0.01287841796875,
259
+ 0.00537109375,
260
+ 0.00408935546875,
261
+ 0.01141357421875,
262
+ 0.01300048828125,
263
+ 0.018798828125,
264
+ -0.00121307373046875,
265
+ -0.0166015625,
266
+ 0.02685546875,
267
+ 0.00946044921875,
268
+ -0.0111083984375,
269
+ -0.038818359375,
270
+ -0.016845703125,
271
+ 0.01513671875,
272
+ -0.006805419921875,
273
+ -0.005462646484375,
274
+ -0.01129150390625,
275
+ -0.0034027099609375,
276
+ 0.014404296875,
277
+ 0.00799560546875,
278
+ -0.004638671875,
279
+ 0.00335693359375,
280
+ -0.0089111328125,
281
+ -0.004852294921875,
282
+ 0.005950927734375,
283
+ -0.038330078125,
284
+ 0.02685546875,
285
+ -0.02001953125,
286
+ -0.024658203125,
287
+ -0.008056640625,
288
+ -0.019287109375,
289
+ -0.01202392578125,
290
+ -0.0186767578125,
291
+ -0.0010986328125,
292
+ -0.0159912109375,
293
+ -0.01483154296875,
294
+ -0.0079345703125,
295
+ -0.02099609375,
296
+ -0.000858306884765625,
297
+ 0.005401611328125,
298
+ 0.000888824462890625,
299
+ -0.019775390625,
300
+ 0.004364013671875,
301
+ -0.0033111572265625,
302
+ 0.01068115234375,
303
+ -0.0081787109375,
304
+ -0.01104736328125,
305
+ 0.0155029296875,
306
+ -0.0118408203125,
307
+ -0.00531005859375,
308
+ -0.00102996826171875,
309
+ 0.01324462890625,
310
+ -0.029296875,
311
+ -0.017822265625,
312
+ -0.00665283203125,
313
+ 0.00872802734375,
314
+ -0.0054931640625,
315
+ -0.02880859375,
316
+ -0.018310546875,
317
+ 0.01409912109375,
318
+ -0.03564453125,
319
+ 0.010009765625,
320
+ 0.00811767578125,
321
+ -0.002288818359375,
322
+ 0.0206298828125,
323
+ -0.004669189453125,
324
+ 0.0018768310546875,
325
+ -0.0186767578125,
326
+ 0.0091552734375,
327
+ -0.000659942626953125,
328
+ -0.022216796875,
329
+ -0.032958984375,
330
+ -0.013916015625,
331
+ -0.0150146484375,
332
+ 0.012451171875,
333
+ -0.032470703125,
334
+ -0.041015625,
335
+ 0.0005645751953125,
336
+ -0.003692626953125,
337
+ 0.012451171875,
338
+ 0.013671875,
339
+ 0.01385498046875,
340
+ 0.006683349609375,
341
+ -0.0274658203125,
342
+ 0.0185546875,
343
+ -0.0147705078125,
344
+ -0.019775390625,
345
+ 0.00182342529296875,
346
+ -0.00970458984375,
347
+ -0.00750732421875,
348
+ -0.0152587890625,
349
+ -0.018310546875,
350
+ -0.007720947265625,
351
+ 0.0245361328125,
352
+ 0.01190185546875,
353
+ -0.0059814453125,
354
+ 0.006927490234375,
355
+ 0.021240234375,
356
+ 0.0023345947265625,
357
+ -0.026611328125,
358
+ -0.0101318359375,
359
+ -0.0135498046875,
360
+ 0.01348876953125,
361
+ -0.007781982421875,
362
+ -0.0125732421875,
363
+ -0.00762939453125,
364
+ 0.048583984375,
365
+ -0.0159912109375,
366
+ -0.0155029296875,
367
+ 0.005828857421875,
368
+ -0.015625,
369
+ -0.02978515625,
370
+ -0.0107421875,
371
+ -0.0181884765625,
372
+ -0.0015716552734375,
373
+ -0.0286865234375,
374
+ -0.00933837890625,
375
+ 0.018798828125,
376
+ -0.00396728515625,
377
+ -0.006927490234375,
378
+ -0.01416015625,
379
+ 0.009765625,
380
+ -0.0277099609375,
381
+ 0.033203125,
382
+ 0.0274658203125,
383
+ -0.01007080078125,
384
+ 0.0054931640625,
385
+ -0.01263427734375,
386
+ -0.00701904296875,
387
+ 0.0001735687255859375,
388
+ 0.005950927734375,
389
+ -0.01434326171875,
390
+ 0.00909423828125,
391
+ -0.0045166015625,
392
+ 0.00130462646484375,
393
+ 0.012451171875,
394
+ 0.0076904296875,
395
+ 0.00750732421875,
396
+ -0.0035247802734375,
397
+ -0.01513671875,
398
+ 0.017822265625,
399
+ -0.00909423828125,
400
+ -0.017822265625,
401
+ 0.0225830078125,
402
+ 0.03466796875,
403
+ 0.0205078125,
404
+ 0.03076171875,
405
+ 0.028564453125,
406
+ -0.006378173828125,
407
+ -0.0234375,
408
+ 0.0025787353515625,
409
+ -0.005035400390625,
410
+ -0.01397705078125,
411
+ 0.0035400390625,
412
+ -0.00897216796875,
413
+ 0.005706787109375,
414
+ 0.00665283203125,
415
+ -0.0263671875,
416
+ 0.006317138671875,
417
+ 0.00970458984375,
418
+ 0.02197265625,
419
+ -0.0194091796875,
420
+ -0.01318359375,
421
+ -0.03173828125,
422
+ 0.038330078125,
423
+ 0.0150146484375,
424
+ -0.0242919921875,
425
+ 0.0037841796875,
426
+ -0.0169677734375,
427
+ 0.0040283203125,
428
+ -0.0004024505615234375,
429
+ 0.01324462890625,
430
+ 0.007171630859375,
431
+ 0.005889892578125,
432
+ -0.00677490234375,
433
+ 0.005462646484375,
434
+ -0.0087890625,
435
+ 0.007537841796875,
436
+ 0.0233154296875,
437
+ 0.00799560546875,
438
+ 0.0162353515625,
439
+ 0.00982666015625,
440
+ -0.021240234375,
441
+ -0.020751953125,
442
+ 0.0024261474609375,
443
+ 0.011962890625,
444
+ 0.0147705078125,
445
+ 0.0037689208984375,
446
+ 0.00946044921875,
447
+ -0.0029144287109375,
448
+ 4.792213439941406e-05,
449
+ 0.00250244140625,
450
+ 0.01287841796875,
451
+ 0.00116729736328125,
452
+ 0.004791259765625,
453
+ 0.0211181640625,
454
+ -0.036376953125,
455
+ 0.0234375,
456
+ -0.004302978515625,
457
+ 0.01025390625,
458
+ 0.0191650390625,
459
+ -0.031494140625,
460
+ 0.01025390625,
461
+ 0.010009765625,
462
+ -0.00109100341796875,
463
+ 0.0059814453125,
464
+ -0.0194091796875,
465
+ -0.0250244140625,
466
+ -0.03515625,
467
+ -0.007537841796875,
468
+ -0.0035247802734375,
469
+ -0.002288818359375,
470
+ 0.005523681640625,
471
+ 0.01544189453125,
472
+ -0.010986328125,
473
+ 0.0240478515625,
474
+ 0.01263427734375,
475
+ 0.01409912109375,
476
+ -0.0308837890625,
477
+ -0.026123046875,
478
+ 0.008544921875,
479
+ 0.00921630859375,
480
+ 0.01287841796875,
481
+ -0.0120849609375,
482
+ -0.018310546875,
483
+ -0.01806640625,
484
+ -0.0164794921875,
485
+ 0.01190185546875,
486
+ -0.0228271484375,
487
+ -0.00148773193359375,
488
+ -0.0296630859375,
489
+ -0.01409912109375,
490
+ 0.004150390625,
491
+ 0.008056640625,
492
+ 0.00176239013671875,
493
+ 0.0152587890625,
494
+ -0.02294921875,
495
+ 0.00125885009765625,
496
+ -0.016357421875,
497
+ 0.0017852783203125,
498
+ -0.02197265625,
499
+ 0.01544189453125,
500
+ -0.017333984375,
501
+ 0.011962890625,
502
+ -0.01214599609375,
503
+ 0.00537109375,
504
+ 0.0084228515625,
505
+ 0.0174560546875,
506
+ 0.01068115234375,
507
+ -0.0225830078125,
508
+ -0.0260009765625,
509
+ 0.01025390625,
510
+ -0.00958251953125,
511
+ -0.033447265625,
512
+ -0.01483154296875,
513
+ 0.01611328125,
514
+ 0.02197265625,
515
+ 0.000530242919921875,
516
+ -0.0172119140625,
517
+ 0.006866455078125,
518
+ 0.0150146484375,
519
+ -0.01019287109375,
520
+ -0.0037078857421875,
521
+ -0.01165771484375,
522
+ -0.007781982421875,
523
+ -0.00787353515625,
524
+ -0.00677490234375,
525
+ -0.00775146484375,
526
+ 0.03759765625,
527
+ -0.0147705078125,
528
+ 0.00787353515625,
529
+ -0.034912109375,
530
+ -0.0211181640625,
531
+ 0.0159912109375,
532
+ -0.00408935546875,
533
+ -0.003875732421875,
534
+ -0.02734375,
535
+ -0.0005035400390625,
536
+ -0.030029296875,
537
+ -0.00494384765625,
538
+ 0.00167083740234375,
539
+ -0.02685546875,
540
+ -0.046142578125,
541
+ -0.000850677490234375,
542
+ -0.00144195556640625,
543
+ -0.0059814453125,
544
+ 0.0244140625,
545
+ -0.0277099609375,
546
+ 0.004730224609375,
547
+ 0.013427734375,
548
+ -0.00701904296875,
549
+ 0.020263671875,
550
+ -0.0023956298828125,
551
+ -0.0025177001953125,
552
+ -0.03515625,
553
+ 0.0035400390625,
554
+ -0.005340576171875,
555
+ 0.00848388671875,
556
+ 0.0009613037109375,
557
+ 0.01141357421875,
558
+ 0.0101318359375,
559
+ 0.0098876953125,
560
+ -0.0308837890625,
561
+ 0.00689697265625,
562
+ -0.0179443359375,
563
+ -0.01409912109375,
564
+ -0.002105712890625,
565
+ 0.01287841796875,
566
+ -0.023193359375,
567
+ -0.04296875,
568
+ -0.0093994140625,
569
+ -0.00439453125,
570
+ 0.01214599609375,
571
+ -0.0185546875,
572
+ 0.01080322265625,
573
+ 0.017333984375,
574
+ -0.00017547607421875,
575
+ -0.01129150390625,
576
+ -0.0033111572265625,
577
+ 0.0091552734375,
578
+ -0.00543212890625,
579
+ -0.032470703125,
580
+ -0.006500244140625,
581
+ -0.016845703125,
582
+ 0.0079345703125,
583
+ -0.03564453125,
584
+ -0.00173187255859375,
585
+ -0.0133056640625,
586
+ 0.01019287109375,
587
+ -0.006622314453125,
588
+ 0.00634765625,
589
+ -0.0150146484375,
590
+ 0.006195068359375,
591
+ 0.003570556640625,
592
+ 0.0035858154296875,
593
+ 0.01336669921875,
594
+ 0.0050048828125,
595
+ -0.0174560546875,
596
+ -0.033935546875,
597
+ 0.024169921875,
598
+ -0.00225830078125,
599
+ -0.0218505859375,
600
+ -0.006439208984375,
601
+ -0.01025390625,
602
+ -0.010498046875,
603
+ -0.0213623046875,
604
+ -0.003173828125,
605
+ -0.03515625,
606
+ -0.0198974609375,
607
+ 0.015869140625,
608
+ 0.000598907470703125,
609
+ -0.01544189453125,
610
+ 0.044677734375,
611
+ -0.00262451171875,
612
+ -0.0059814453125,
613
+ 0.0030670166015625,
614
+ -0.0018157958984375,
615
+ 0.007476806640625,
616
+ -0.0023193359375,
617
+ 0.016357421875,
618
+ -0.007110595703125,
619
+ 0.00323486328125,
620
+ -0.01068115234375,
621
+ -0.01025390625,
622
+ 0.0024871826171875,
623
+ 0.0157470703125,
624
+ 0.000972747802734375,
625
+ 0.006378173828125,
626
+ 0.0123291015625,
627
+ -0.0234375,
628
+ 0.0205078125,
629
+ -0.0189208984375,
630
+ -0.007537841796875,
631
+ -0.0157470703125,
632
+ 0.0201416015625,
633
+ 0.004730224609375,
634
+ 0.031982421875,
635
+ -0.0142822265625,
636
+ 0.01226806640625,
637
+ 0.0002880096435546875,
638
+ -0.028564453125,
639
+ 0.01226806640625,
640
+ -0.01129150390625,
641
+ 0.011962890625,
642
+ 0.0235595703125,
643
+ -0.0067138671875,
644
+ 0.02392578125,
645
+ 0.000926971435546875,
646
+ 0.0087890625,
647
+ -0.00193023681640625,
648
+ 0.004669189453125,
649
+ -0.0174560546875,
650
+ -0.010498046875,
651
+ 0.0177001953125,
652
+ 0.0029754638671875,
653
+ -0.015380859375,
654
+ 0.0028839111328125,
655
+ 0.0283203125,
656
+ -0.00592041015625,
657
+ 0.01092529296875,
658
+ -0.01104736328125,
659
+ -0.00958251953125,
660
+ 0.0033721923828125,
661
+ -0.02099609375,
662
+ 0.028076171875,
663
+ -0.005523681640625,
664
+ 0.0005035400390625,
665
+ -0.0123291015625,
666
+ -0.0013885498046875,
667
+ -0.0126953125,
668
+ -0.0146484375,
669
+ 0.017333984375,
670
+ 0.00994873046875,
671
+ -0.01214599609375,
672
+ 0.0024871826171875,
673
+ 0.01226806640625,
674
+ -0.01123046875,
675
+ 0.00439453125,
676
+ 0.008544921875,
677
+ 0.00714111328125,
678
+ -0.01123046875,
679
+ -0.0242919921875,
680
+ -0.01458740234375,
681
+ -0.017333984375,
682
+ 0.00933837890625,
683
+ 0.0252685546875,
684
+ -0.021240234375,
685
+ 0.011962890625,
686
+ -0.0234375,
687
+ -0.01171875,
688
+ 0.00921630859375,
689
+ 0.01007080078125,
690
+ -0.01336669921875,
691
+ 0.0050048828125,
692
+ 0.00531005859375,
693
+ -0.012939453125,
694
+ 0.01239013671875,
695
+ -0.0078125,
696
+ 0.01458740234375,
697
+ -0.0047607421875,
698
+ 0.00897216796875,
699
+ 0.00933837890625,
700
+ -0.0096435546875,
701
+ -0.0224609375,
702
+ 0.021728515625,
703
+ 0.0196533203125,
704
+ 0.01470947265625,
705
+ -0.00933837890625,
706
+ 0.0291748046875,
707
+ -0.00970458984375,
708
+ 0.016357421875,
709
+ -0.01361083984375,
710
+ 0.005950927734375,
711
+ -0.00775146484375,
712
+ 0.0244140625,
713
+ -0.0242919921875,
714
+ -0.004638671875,
715
+ 0.00799560546875,
716
+ 0.0147705078125,
717
+ -0.0181884765625,
718
+ 0.0166015625,
719
+ -0.0228271484375,
720
+ -0.0247802734375,
721
+ -0.000400543212890625,
722
+ 0.00013446807861328125,
723
+ 0.01171875,
724
+ 0.030029296875,
725
+ 0.009765625,
726
+ -0.00107574462890625,
727
+ -0.0115966796875,
728
+ 0.001190185546875,
729
+ -0.01409912109375,
730
+ 0.00274658203125,
731
+ 0.0250244140625,
732
+ 0.02734375,
733
+ -0.0068359375,
734
+ 0.00133514404296875,
735
+ -0.0098876953125,
736
+ 0.0262451171875,
737
+ -0.02978515625,
738
+ 0.00433349609375,
739
+ 0.0108642578125,
740
+ -0.00933837890625,
741
+ 0.00390625,
742
+ 0.0186767578125,
743
+ -0.0091552734375,
744
+ -0.0016937255859375,
745
+ 0.0037078857421875,
746
+ -0.004364013671875,
747
+ 0.01385498046875,
748
+ -0.0108642578125,
749
+ 0.017333984375,
750
+ -0.003143310546875,
751
+ -0.013671875,
752
+ -0.021240234375,
753
+ -0.004638671875,
754
+ 0.015625,
755
+ -0.008056640625,
756
+ -0.00811767578125,
757
+ 0.012939453125,
758
+ -0.0126953125,
759
+ 0.00051116943359375,
760
+ 0.0255126953125,
761
+ 0.00726318359375,
762
+ -0.0224609375,
763
+ -0.0255126953125,
764
+ -0.0028839111328125,
765
+ 0.0294189453125,
766
+ -0.015625,
767
+ -0.0208740234375,
768
+ -0.0240478515625,
769
+ -0.00897216796875,
770
+ 0.007110595703125,
771
+ 0.0174560546875,
772
+ -0.017333984375,
773
+ 0.037353515625,
774
+ 0.01202392578125,
775
+ -0.03857421875,
776
+ -0.0230712890625,
777
+ -0.0036773681640625,
778
+ -0.0235595703125,
779
+ -0.013671875,
780
+ 0.01171875,
781
+ -0.01214599609375,
782
+ 0.0101318359375,
783
+ -0.0128173828125,
784
+ 0.0517578125,
785
+ 0.00439453125,
786
+ -0.00015735626220703125,
787
+ 0.0108642578125,
788
+ -0.0225830078125,
789
+ -0.0130615234375,
790
+ -0.023193359375,
791
+ -0.0257568359375,
792
+ 0.005126953125,
793
+ 0.0001087188720703125,
794
+ 0.0140380859375,
795
+ 0.024658203125,
796
+ -0.004974365234375,
797
+ -0.0033416748046875,
798
+ 0.01513671875,
799
+ -0.0225830078125,
800
+ 0.02392578125,
801
+ 0.0009002685546875,
802
+ -0.00201416015625,
803
+ 0.02685546875,
804
+ 0.001922607421875,
805
+ -0.022216796875,
806
+ -0.01165771484375,
807
+ 0.005767822265625,
808
+ 0.01129150390625,
809
+ -0.0242919921875,
810
+ -0.0135498046875,
811
+ 0.004638671875,
812
+ -0.0023651123046875,
813
+ -0.00604248046875,
814
+ -0.016357421875,
815
+ -0.005401611328125,
816
+ -0.00579833984375,
817
+ -0.0157470703125,
818
+ 0.0220947265625,
819
+ -0.0037384033203125,
820
+ -0.026123046875,
821
+ -0.01416015625,
822
+ -0.01904296875,
823
+ -0.0201416015625,
824
+ -0.0125732421875,
825
+ 0.0167236328125,
826
+ -0.0079345703125,
827
+ 0.0137939453125,
828
+ -0.0159912109375,
829
+ -0.0244140625,
830
+ 0.004058837890625,
831
+ 0.00060272216796875,
832
+ -0.030029296875,
833
+ 0.0244140625,
834
+ -0.007720947265625,
835
+ 0.00153350830078125,
836
+ 0.01141357421875,
837
+ -0.0289306640625,
838
+ 0.016357421875,
839
+ 0.0250244140625,
840
+ 0.0137939453125,
841
+ 0.0108642578125,
842
+ -0.0167236328125,
843
+ 0.0045166015625,
844
+ -0.0205078125,
845
+ 0.01300048828125,
846
+ -0.0299072265625,
847
+ -0.041259765625,
848
+ 0.000713348388671875,
849
+ 0.003021240234375,
850
+ -0.00176239013671875,
851
+ -0.016845703125,
852
+ -0.0135498046875,
853
+ 0.017578125,
854
+ -0.029541015625,
855
+ -0.0147705078125,
856
+ -0.0185546875,
857
+ -0.00054168701171875,
858
+ 0.004638671875,
859
+ 0.003509521484375,
860
+ -0.0115966796875,
861
+ 0.0238037109375,
862
+ 0.0062255859375,
863
+ 0.021240234375,
864
+ -0.0252685546875,
865
+ 0.0223388671875,
866
+ 0.006622314453125,
867
+ 0.024169921875,
868
+ -0.0225830078125,
869
+ -0.02197265625,
870
+ 0.01513671875,
871
+ 0.00543212890625,
872
+ -0.01129150390625,
873
+ -0.01611328125,
874
+ -0.00897216796875,
875
+ -0.0186767578125,
876
+ -0.0050048828125,
877
+ 0.0027923583984375,
878
+ 0.0068359375,
879
+ 0.0029296875,
880
+ 0.00439453125,
881
+ -0.025634765625,
882
+ 0.02783203125,
883
+ -0.00360107421875,
884
+ -0.0031585693359375,
885
+ -0.00543212890625,
886
+ -0.026123046875,
887
+ -0.030029296875,
888
+ -0.0130615234375,
889
+ 0.00124359130859375,
890
+ -0.0017852783203125,
891
+ 0.00872802734375,
892
+ -0.0042724609375,
893
+ -0.0087890625,
894
+ 0.007080078125,
895
+ -0.0086669921875,
896
+ 0.0155029296875,
897
+ 0.016845703125,
898
+ -0.006256103515625,
899
+ -0.00164794921875,
900
+ -0.007415771484375,
901
+ 0.01312255859375,
902
+ -0.00140380859375,
903
+ 0.009033203125,
904
+ -0.01361083984375,
905
+ -0.00933837890625,
906
+ 0.017578125,
907
+ 0.003875732421875,
908
+ -0.021240234375,
909
+ 0.0208740234375,
910
+ 0.009521484375,
911
+ -0.00311279296875,
912
+ 0.0240478515625,
913
+ 0.01263427734375,
914
+ 0.007232666015625,
915
+ -0.0302734375,
916
+ -0.008056640625,
917
+ 0.003509521484375,
918
+ 0.00182342529296875,
919
+ 0.01019287109375,
920
+ 0.03271484375,
921
+ -0.0098876953125,
922
+ 0.01422119140625,
923
+ 0.007598876953125,
924
+ -9.59634780883789e-06,
925
+ -0.021240234375,
926
+ -0.000545501708984375,
927
+ 0.04833984375,
928
+ -0.007781982421875,
929
+ -0.033447265625,
930
+ -0.002471923828125,
931
+ -0.0322265625,
932
+ 0.0062255859375,
933
+ 0.003662109375,
934
+ -0.006591796875,
935
+ -0.004638671875,
936
+ 0.00921630859375,
937
+ -0.0091552734375,
938
+ -0.013427734375,
939
+ -0.0103759765625,
940
+ 0.00616455078125,
941
+ -8.404254913330078e-06,
942
+ 0.00165557861328125,
943
+ 0.0035400390625,
944
+ 0.00927734375,
945
+ 0.0086669921875,
946
+ -0.0184326171875,
947
+ 0.002777099609375,
948
+ 0.01446533203125,
949
+ -0.00335693359375,
950
+ -0.001129150390625,
951
+ -0.009521484375,
952
+ -0.0020904541015625,
953
+ 0.0196533203125,
954
+ 0.01043701171875,
955
+ 0.02294921875,
956
+ -0.0028076171875,
957
+ -0.01556396484375,
958
+ 0.022216796875,
959
+ -0.0247802734375,
960
+ 0.00185394287109375,
961
+ -0.0118408203125,
962
+ -0.006591796875,
963
+ -0.00157928466796875,
964
+ -0.018310546875,
965
+ 0.0281982421875,
966
+ -0.0172119140625,
967
+ -0.016845703125,
968
+ 0.0262451171875,
969
+ -0.00421142578125,
970
+ 0.00732421875,
971
+ 0.0106201171875,
972
+ -0.005584716796875,
973
+ 0.0179443359375,
974
+ -0.0233154296875,
975
+ -0.004486083984375,
976
+ 0.0025787353515625,
977
+ -0.01007080078125,
978
+ 0.01953125,
979
+ 0.01275634765625,
980
+ 0.00439453125,
981
+ 0.0299072265625,
982
+ 0.0211181640625,
983
+ -0.0208740234375,
984
+ -0.00994873046875,
985
+ 0.0033416748046875,
986
+ -0.000614166259765625,
987
+ 0.003265380859375,
988
+ -0.043212890625,
989
+ -0.0216064453125,
990
+ -0.01275634765625,
991
+ 0.002838134765625,
992
+ 0.0048828125,
993
+ -0.00494384765625,
994
+ 0.00823974609375,
995
+ 0.0035552978515625,
996
+ 0.0036773681640625,
997
+ -0.01141357421875,
998
+ 0.02001953125,
999
+ 0.00872802734375,
1000
+ 0.0238037109375,
1001
+ -0.008544921875,
1002
+ -0.0107421875,
1003
+ -0.01806640625,
1004
+ 0.0081787109375,
1005
+ 0.000553131103515625,
1006
+ 0.01904296875,
1007
+ -0.00836181640625,
1008
+ 0.0086669921875,
1009
+ 0.0135498046875,
1010
+ -0.044921875,
1011
+ 0.002685546875,
1012
+ 0.01470947265625,
1013
+ 0.003631591796875,
1014
+ -0.0030670166015625,
1015
+ 0.01312255859375,
1016
+ -0.0257568359375,
1017
+ -0.0152587890625,
1018
+ 0.01226806640625,
1019
+ 0.0179443359375,
1020
+ 0.00982666015625,
1021
+ -0.037109375,
1022
+ 0.017822265625,
1023
+ 0.011474609375,
1024
+ -0.0027313232421875,
1025
+ -0.021728515625,
1026
+ -0.001190185546875,
1027
+ 0.0166015625,
1028
+ 0.00909423828125,
1029
+ -0.02587890625,
1030
+ 0.03173828125,
1031
+ -0.012939453125,
1032
+ -0.033203125,
1033
+ 0.01153564453125,
1034
+ -0.01275634765625,
1035
+ 0.0016632080078125,
1036
+ 0.0274658203125,
1037
+ -0.00054168701171875,
1038
+ 0.008056640625,
1039
+ 0.000835418701171875,
1040
+ -0.004852294921875,
1041
+ 0.017578125,
1042
+ 0.007080078125,
1043
+ -0.031982421875,
1044
+ 0.000644683837890625,
1045
+ 0.002716064453125,
1046
+ 0.01507568359375,
1047
+ 0.018310546875,
1048
+ 0.00141143798828125,
1049
+ 0.0142822265625,
1050
+ 0.0247802734375,
1051
+ -0.0216064453125,
1052
+ 0.0272216796875,
1053
+ 0.01220703125,
1054
+ 0.035400390625,
1055
+ -0.00323486328125,
1056
+ -0.0014801025390625,
1057
+ -0.01220703125,
1058
+ -0.01373291015625,
1059
+ 0.009033203125,
1060
+ -0.01458740234375,
1061
+ -0.0216064453125,
1062
+ -0.0196533203125,
1063
+ -0.0103759765625,
1064
+ 0.00750732421875,
1065
+ -0.018310546875,
1066
+ 0.01324462890625,
1067
+ 0.002166748046875,
1068
+ -0.00567626953125,
1069
+ 0.005584716796875,
1070
+ 0.0030059814453125,
1071
+ 0.005462646484375,
1072
+ 0.00775146484375,
1073
+ -0.002593994140625,
1074
+ -0.0064697265625,
1075
+ 0.00701904296875,
1076
+ 0.008056640625,
1077
+ -0.016845703125,
1078
+ 0.0291748046875,
1079
+ 0.01507568359375,
1080
+ -0.0140380859375,
1081
+ -0.029541015625,
1082
+ -0.006683349609375,
1083
+ -0.0079345703125,
1084
+ -0.0308837890625,
1085
+ 0.0021514892578125,
1086
+ 0.006317138671875,
1087
+ 0.012451171875,
1088
+ -0.00165557861328125,
1089
+ -0.004547119140625,
1090
+ -0.0157470703125,
1091
+ -0.000934600830078125,
1092
+ 0.0128173828125,
1093
+ 0.0196533203125,
1094
+ -0.0113525390625,
1095
+ -0.003204345703125,
1096
+ -0.01483154296875,
1097
+ 0.0128173828125,
1098
+ -0.0042724609375,
1099
+ -0.003265380859375,
1100
+ 0.00072479248046875,
1101
+ 0.01385498046875,
1102
+ -0.01263427734375,
1103
+ 0.0093994140625,
1104
+ 0.0155029296875,
1105
+ -0.023681640625,
1106
+ 0.00494384765625,
1107
+ -0.01806640625,
1108
+ -0.014404296875,
1109
+ 0.007171630859375,
1110
+ 0.0147705078125,
1111
+ 0.004180908203125,
1112
+ 0.0233154296875,
1113
+ 0.00665283203125,
1114
+ -0.0021514892578125,
1115
+ -0.01708984375,
1116
+ -0.0038909912109375,
1117
+ 0.021728515625,
1118
+ -0.0269775390625,
1119
+ 0.0181884765625,
1120
+ -0.026123046875,
1121
+ 0.0142822265625,
1122
+ -0.010009765625,
1123
+ -0.0012664794921875,
1124
+ -0.0145263671875,
1125
+ 0.0020904541015625,
1126
+ 0.0059814453125,
1127
+ 0.000926971435546875,
1128
+ 0.00848388671875,
1129
+ 0.001708984375,
1130
+ -0.00982666015625,
1131
+ 0.00506591796875,
1132
+ -0.018310546875,
1133
+ 0.007720947265625,
1134
+ -0.031494140625,
1135
+ -0.0038299560546875,
1136
+ -0.00946044921875,
1137
+ 0.010498046875,
1138
+ -0.0106201171875,
1139
+ -0.018310546875,
1140
+ -0.01116943359375,
1141
+ 0.00174713134765625,
1142
+ 0.01129150390625,
1143
+ -0.0120849609375,
1144
+ 0.010986328125,
1145
+ 0.0185546875,
1146
+ 0.0003643035888671875,
1147
+ 0.01025390625,
1148
+ 0.04541015625,
1149
+ -0.045166015625,
1150
+ 0.01495361328125,
1151
+ 0.0159912109375,
1152
+ -0.025390625,
1153
+ 0.004486083984375,
1154
+ -0.00171661376953125,
1155
+ -0.0211181640625,
1156
+ 0.00138092041015625,
1157
+ 0.00738525390625,
1158
+ -0.0020599365234375,
1159
+ -0.0205078125,
1160
+ 0.0189208984375,
1161
+ 0.0238037109375,
1162
+ 0.00439453125,
1163
+ -0.004302978515625,
1164
+ 0.01300048828125,
1165
+ -0.0074462890625,
1166
+ 0.0135498046875,
1167
+ 0.018310546875,
1168
+ -0.01068115234375,
1169
+ -0.025390625,
1170
+ 0.0037384033203125,
1171
+ -0.006927490234375,
1172
+ 0.005279541015625,
1173
+ -0.02734375,
1174
+ -0.00958251953125,
1175
+ -0.026611328125,
1176
+ 0.024169921875,
1177
+ -0.015869140625,
1178
+ -0.02294921875,
1179
+ -0.0150146484375,
1180
+ -0.00193023681640625,
1181
+ 0.0074462890625,
1182
+ 0.00201416015625,
1183
+ 0.0152587890625,
1184
+ -0.01318359375,
1185
+ -0.002410888671875,
1186
+ 0.006805419921875,
1187
+ -0.0255126953125,
1188
+ 0.006988525390625,
1189
+ -0.0262451171875,
1190
+ 0.003265380859375,
1191
+ -0.005523681640625,
1192
+ -0.005126953125,
1193
+ 0.0162353515625,
1194
+ 0.02490234375,
1195
+ 0.0218505859375,
1196
+ -0.0020294189453125,
1197
+ -0.0084228515625,
1198
+ 0.004669189453125,
1199
+ 0.01513671875,
1200
+ 0.0155029296875,
1201
+ 0.00885009765625,
1202
+ 0.033447265625,
1203
+ 0.02783203125,
1204
+ 0.0052490234375,
1205
+ 0.0169677734375,
1206
+ 0.00970458984375,
1207
+ -0.010986328125,
1208
+ 0.0118408203125,
1209
+ -0.009521484375,
1210
+ 0.01300048828125,
1211
+ 0.010009765625,
1212
+ -0.015869140625,
1213
+ -0.0050048828125,
1214
+ 0.0108642578125,
1215
+ 0.0076904296875,
1216
+ -0.005523681640625,
1217
+ 0.0126953125,
1218
+ -0.0164794921875,
1219
+ 0.0223388671875,
1220
+ -0.02978515625,
1221
+ -0.01031494140625,
1222
+ 0.0030059814453125,
1223
+ 0.023193359375,
1224
+ 0.004852294921875,
1225
+ -0.026611328125,
1226
+ 0.0086669921875,
1227
+ -0.0057373046875,
1228
+ 0.0009613037109375,
1229
+ 0.01220703125,
1230
+ 0.0177001953125,
1231
+ 0.00146484375,
1232
+ 0.0205078125,
1233
+ 0.025146484375,
1234
+ -0.00109100341796875,
1235
+ -0.02294921875,
1236
+ -0.004119873046875,
1237
+ -0.0026702880859375,
1238
+ -0.0098876953125,
1239
+ -0.00897216796875,
1240
+ -0.0037078857421875,
1241
+ -0.0181884765625,
1242
+ 0.0235595703125,
1243
+ 0.01904296875,
1244
+ -0.00213623046875,
1245
+ -0.0306396484375,
1246
+ 0.010498046875,
1247
+ 0.0189208984375,
1248
+ 0.0181884765625,
1249
+ 0.001800537109375,
1250
+ -0.006591796875,
1251
+ -0.0027313232421875,
1252
+ 0.0004425048828125,
1253
+ -0.0196533203125,
1254
+ -0.009765625,
1255
+ -0.0048828125,
1256
+ 0.0128173828125,
1257
+ -0.01373291015625,
1258
+ -0.00634765625,
1259
+ -0.007110595703125,
1260
+ 0.0093994140625,
1261
+ 0.00933837890625,
1262
+ -0.00823974609375,
1263
+ 0.0023651123046875,
1264
+ -0.0140380859375,
1265
+ 0.003021240234375,
1266
+ -0.006866455078125,
1267
+ 0.0025787353515625,
1268
+ -0.023681640625,
1269
+ 0.01031494140625,
1270
+ 0.02490234375,
1271
+ -9.870529174804688e-05,
1272
+ 0.01470947265625,
1273
+ 0.0201416015625,
1274
+ -0.01507568359375,
1275
+ -0.00537109375,
1276
+ 0.00225830078125,
1277
+ -0.0150146484375,
1278
+ -0.00445556640625,
1279
+ 0.0186767578125,
1280
+ 0.00823974609375,
1281
+ 0.03173828125,
1282
+ -0.0059814453125,
1283
+ -0.005615234375,
1284
+ -0.0155029296875,
1285
+ 0.020751953125,
1286
+ -0.00469970703125,
1287
+ -0.0047607421875,
1288
+ -0.035888671875,
1289
+ 0.007110595703125,
1290
+ 0.008056640625,
1291
+ 0.004638671875,
1292
+ 0.0179443359375,
1293
+ 0.01385498046875,
1294
+ -0.0003604888916015625,
1295
+ -0.005950927734375,
1296
+ 0.004852294921875,
1297
+ -0.033935546875,
1298
+ -0.01141357421875,
1299
+ -0.0031280517578125,
1300
+ -0.00836181640625,
1301
+ 0.02197265625,
1302
+ 0.002777099609375,
1303
+ 0.017578125,
1304
+ 0.0037994384765625,
1305
+ 0.03955078125,
1306
+ 0.0115966796875,
1307
+ 0.007568359375,
1308
+ 0.0106201171875,
1309
+ 0.02294921875,
1310
+ 0.00994873046875,
1311
+ 0.021484375,
1312
+ -0.0252685546875,
1313
+ -0.006134033203125,
1314
+ 0.022705078125,
1315
+ -0.00830078125,
1316
+ -0.01507568359375,
1317
+ -0.00518798828125,
1318
+ -0.0208740234375,
1319
+ 0.0115966796875,
1320
+ 0.009033203125,
1321
+ -0.013427734375,
1322
+ -0.03125,
1323
+ -0.0072021484375,
1324
+ -0.01446533203125,
1325
+ 0.00160980224609375,
1326
+ -0.003662109375,
1327
+ 0.0103759765625,
1328
+ -0.0274658203125,
1329
+ 0.00017547607421875,
1330
+ 0.000885009765625,
1331
+ -0.004852294921875,
1332
+ 0.0118408203125,
1333
+ 0.004852294921875,
1334
+ -0.0198974609375,
1335
+ -0.0140380859375,
1336
+ 0.017578125,
1337
+ -0.028076171875,
1338
+ -0.0230712890625,
1339
+ -0.0224609375,
1340
+ -0.00186920166015625,
1341
+ 0.000823974609375,
1342
+ -0.00640869140625,
1343
+ 0.0306396484375,
1344
+ -0.00250244140625,
1345
+ -0.01458740234375,
1346
+ -0.0179443359375,
1347
+ -0.004364013671875,
1348
+ -0.0052490234375,
1349
+ -0.01104736328125,
1350
+ -0.00909423828125,
1351
+ 0.01953125,
1352
+ 0.01141357421875,
1353
+ 0.025634765625,
1354
+ -0.0189208984375,
1355
+ 0.0196533203125,
1356
+ 0.00138092041015625,
1357
+ -0.0242919921875,
1358
+ 0.0028839111328125,
1359
+ -0.019775390625,
1360
+ 0.0029296875,
1361
+ -0.033935546875,
1362
+ -0.0106201171875,
1363
+ -0.00567626953125,
1364
+ -0.0167236328125,
1365
+ 0.00860595703125,
1366
+ -0.010986328125,
1367
+ 0.0277099609375,
1368
+ -0.0067138671875,
1369
+ 0.007537841796875,
1370
+ 0.006622314453125,
1371
+ 0.0054931640625,
1372
+ -0.0004119873046875,
1373
+ 0.0015106201171875,
1374
+ 0.013916015625,
1375
+ -0.00994873046875,
1376
+ -0.0142822265625,
1377
+ -0.03076171875,
1378
+ -0.0091552734375,
1379
+ 0.01239013671875,
1380
+ -0.002288818359375,
1381
+ 0.013916015625,
1382
+ 0.004547119140625,
1383
+ 0.01556396484375,
1384
+ -0.0186767578125,
1385
+ 0.025390625,
1386
+ -0.00994873046875,
1387
+ 0.0244140625,
1388
+ 0.00157928466796875,
1389
+ -0.0059814453125,
1390
+ -0.034912109375,
1391
+ -0.016845703125,
1392
+ -0.005767822265625,
1393
+ -0.021484375,
1394
+ 0.006378173828125,
1395
+ 0.00537109375,
1396
+ 0.00058746337890625,
1397
+ -0.0079345703125,
1398
+ 0.00775146484375,
1399
+ -0.0115966796875,
1400
+ -0.010009765625,
1401
+ 0.010009765625,
1402
+ -0.01446533203125,
1403
+ 0.01422119140625,
1404
+ 0.02587890625,
1405
+ -0.0186767578125,
1406
+ 0.0274658203125,
1407
+ 0.037841796875,
1408
+ -0.0033416748046875,
1409
+ -0.0244140625,
1410
+ 0.006103515625,
1411
+ 0.00872802734375,
1412
+ -0.005645751953125,
1413
+ -0.03662109375,
1414
+ 0.005462646484375,
1415
+ -0.0224609375,
1416
+ -0.006256103515625,
1417
+ 0.006256103515625,
1418
+ 0.0159912109375,
1419
+ -0.02001953125,
1420
+ -0.00537109375,
1421
+ -0.031982421875,
1422
+ 0.006866455078125,
1423
+ -0.00191497802734375,
1424
+ -0.0166015625,
1425
+ -0.0133056640625,
1426
+ -0.0198974609375,
1427
+ -0.0027313232421875,
1428
+ 0.019287109375,
1429
+ -0.0079345703125,
1430
+ 0.0028839111328125,
1431
+ -0.0361328125,
1432
+ -0.006744384765625,
1433
+ 0.01544189453125,
1434
+ -0.0034332275390625,
1435
+ -0.03125,
1436
+ -0.01397705078125,
1437
+ -0.000335693359375,
1438
+ 0.027099609375,
1439
+ -0.022705078125,
1440
+ 0.00958251953125,
1441
+ 0.005126953125,
1442
+ 0.0155029296875,
1443
+ -0.011474609375,
1444
+ 0.0147705078125,
1445
+ -0.0257568359375,
1446
+ -0.006072998046875,
1447
+ 0.0081787109375,
1448
+ 0.01019287109375,
1449
+ -0.007110595703125,
1450
+ 0.0108642578125,
1451
+ -0.00311279296875,
1452
+ 0.00531005859375,
1453
+ 0.0020751953125,
1454
+ 0.0216064453125,
1455
+ -0.01806640625,
1456
+ -0.0028076171875,
1457
+ 0.0419921875,
1458
+ -0.003570556640625,
1459
+ 0.01141357421875,
1460
+ -1.609325408935547e-05,
1461
+ 0.01092529296875,
1462
+ 0.007080078125,
1463
+ 0.0025787353515625,
1464
+ 0.0030670166015625,
1465
+ 0.0010528564453125,
1466
+ -0.00848388671875,
1467
+ 0.0093994140625,
1468
+ -2.002716064453125e-05,
1469
+ 0.01055908203125,
1470
+ 0.0079345703125,
1471
+ 0.017822265625,
1472
+ -0.007537841796875,
1473
+ 0.001739501953125,
1474
+ 0.016845703125,
1475
+ 0.019287109375,
1476
+ 0.003875732421875,
1477
+ 0.0111083984375,
1478
+ 0.0001621246337890625,
1479
+ 0.00177001953125,
1480
+ 0.0211181640625,
1481
+ -0.00762939453125,
1482
+ 0.01171875,
1483
+ 0.009765625,
1484
+ -0.00958251953125,
1485
+ 0.023681640625,
1486
+ 0.00543212890625,
1487
+ 0.0166015625,
1488
+ -0.006011962890625,
1489
+ 0.010498046875,
1490
+ 0.00909423828125,
1491
+ 0.026611328125,
1492
+ -0.012451171875,
1493
+ -0.01129150390625,
1494
+ 0.01019287109375,
1495
+ -0.000545501708984375,
1496
+ 0.03466796875,
1497
+ 0.0174560546875,
1498
+ -0.0177001953125,
1499
+ -0.005126953125,
1500
+ -0.032470703125,
1501
+ -0.0196533203125,
1502
+ 0.031494140625,
1503
+ -0.034912109375,
1504
+ -0.0064697265625,
1505
+ -0.005218505859375,
1506
+ -0.0146484375,
1507
+ -0.012939453125,
1508
+ -0.0064697265625,
1509
+ 0.000637054443359375,
1510
+ 0.01129150390625,
1511
+ 0.01068115234375,
1512
+ -0.02001953125,
1513
+ 0.00147247314453125,
1514
+ 0.0020904541015625,
1515
+ 0.00090789794921875,
1516
+ 0.0211181640625,
1517
+ -0.0023193359375,
1518
+ 0.00848388671875,
1519
+ 0.00494384765625,
1520
+ -0.01275634765625,
1521
+ 0.007080078125,
1522
+ 0.00927734375,
1523
+ 0.0267333984375,
1524
+ 0.0098876953125,
1525
+ -0.00653076171875,
1526
+ -0.0164794921875,
1527
+ -0.0250244140625,
1528
+ -0.0050048828125,
1529
+ 0.00084686279296875,
1530
+ -0.0281982421875,
1531
+ 0.026611328125,
1532
+ -0.0086669921875,
1533
+ 0.00677490234375,
1534
+ -0.0223388671875,
1535
+ 0.02197265625,
1536
+ 0.0184326171875,
1537
+ 0.0064697265625,
1538
+ -0.0113525390625,
1539
+ 0.039306640625,
1540
+ 0.00518798828125,
1541
+ -0.0004177093505859375,
1542
+ 0.046875,
1543
+ 0.0146484375,
1544
+ -0.033203125,
1545
+ -0.017578125,
1546
+ -0.00506591796875,
1547
+ 0.01953125,
1548
+ 0.004425048828125,
1549
+ 0.00238037109375,
1550
+ -0.0247802734375,
1551
+ 0.030517578125,
1552
+ 0.0031890869140625,
1553
+ -0.0233154296875,
1554
+ -0.014892578125,
1555
+ 0.0064697265625,
1556
+ 0.00421142578125,
1557
+ -0.004608154296875,
1558
+ 0.0167236328125,
1559
+ -0.004852294921875,
1560
+ 0.01202392578125,
1561
+ 0.015869140625,
1562
+ -0.010009765625,
1563
+ 0.004791259765625,
1564
+ 0.01275634765625,
1565
+ -0.01470947265625,
1566
+ -0.01422119140625,
1567
+ -0.015625,
1568
+ 0.0027008056640625,
1569
+ 0.009765625,
1570
+ -0.02880859375,
1571
+ -0.00051116943359375,
1572
+ 0.0023193359375,
1573
+ 0.001373291015625,
1574
+ -0.0023193359375,
1575
+ -0.016357421875,
1576
+ 0.0264892578125,
1577
+ 0.01025390625,
1578
+ -0.0257568359375,
1579
+ -0.00909423828125,
1580
+ -0.0015411376953125,
1581
+ 0.02880859375,
1582
+ 0.0169677734375,
1583
+ -0.042724609375,
1584
+ 0.0069580078125,
1585
+ 2.086162567138672e-05,
1586
+ -0.0023956298828125,
1587
+ -0.00164794921875,
1588
+ -0.0028228759765625,
1589
+ 0.0150146484375,
1590
+ 0.00787353515625,
1591
+ 0.0115966796875,
1592
+ 0.00885009765625,
1593
+ -0.005950927734375,
1594
+ 0.004180908203125,
1595
+ 0.006195068359375,
1596
+ -0.010009765625,
1597
+ 0.008056640625,
1598
+ 0.02392578125,
1599
+ -0.035888671875,
1600
+ 0.006744384765625,
1601
+ -0.01226806640625,
1602
+ 0.00860595703125,
1603
+ -0.0030517578125,
1604
+ 0.001373291015625,
1605
+ -0.0123291015625,
1606
+ 0.0159912109375,
1607
+ -0.01409912109375,
1608
+ -0.0017242431640625,
1609
+ 0.000408172607421875,
1610
+ -0.0013885498046875,
1611
+ -0.00168609619140625,
1612
+ 0.01123046875,
1613
+ 0.0101318359375,
1614
+ 0.00714111328125,
1615
+ -0.00921630859375,
1616
+ 0.0223388671875,
1617
+ 0.038818359375,
1618
+ 0.0218505859375,
1619
+ -0.008544921875,
1620
+ 0.0024566650390625,
1621
+ 0.0098876953125,
1622
+ 0.0050048828125,
1623
+ 0.007354736328125,
1624
+ -0.0057373046875,
1625
+ 0.00286865234375,
1626
+ -0.001373291015625,
1627
+ 0.016357421875,
1628
+ 0.00153350830078125,
1629
+ -0.017822265625,
1630
+ 0.005401611328125,
1631
+ -0.0078125,
1632
+ -0.0211181640625,
1633
+ 0.0027008056640625,
1634
+ 0.00750732421875,
1635
+ 0.0169677734375,
1636
+ 0.0211181640625,
1637
+ -0.002471923828125,
1638
+ 0.0240478515625,
1639
+ 0.0050048828125,
1640
+ 0.00982666015625,
1641
+ 0.004302978515625,
1642
+ -0.0185546875,
1643
+ -0.002166748046875,
1644
+ -0.00616455078125,
1645
+ 0.001708984375,
1646
+ 0.0150146484375,
1647
+ 0.0169677734375,
1648
+ 0.01104736328125,
1649
+ -0.0380859375,
1650
+ 0.00017642974853515625,
1651
+ 0.011474609375,
1652
+ 0.02880859375,
1653
+ 0.001953125,
1654
+ -0.01068115234375,
1655
+ 0.0130615234375,
1656
+ -0.0303955078125,
1657
+ 0.00148773193359375,
1658
+ -0.0289306640625,
1659
+ -0.00183868408203125,
1660
+ 0.0007781982421875,
1661
+ 0.000194549560546875,
1662
+ 0.0167236328125,
1663
+ 0.0198974609375,
1664
+ 0.03564453125,
1665
+ 0.019287109375,
1666
+ -0.02392578125,
1667
+ 0.0301513671875,
1668
+ -0.003997802734375,
1669
+ -0.01904296875,
1670
+ -0.0026397705078125,
1671
+ 0.00099945068359375,
1672
+ 0.01470947265625,
1673
+ -0.0106201171875,
1674
+ 0.0286865234375,
1675
+ -0.028076171875,
1676
+ -0.007110595703125,
1677
+ 0.030029296875,
1678
+ -0.0439453125,
1679
+ 0.020263671875,
1680
+ -0.0019683837890625,
1681
+ 0.0128173828125,
1682
+ 0.0230712890625,
1683
+ -0.00408935546875,
1684
+ 0.00762939453125,
1685
+ -0.006256103515625,
1686
+ -0.0013275146484375,
1687
+ 0.002593994140625,
1688
+ -8.535385131835938e-05,
1689
+ 0.000629425048828125,
1690
+ 0.029541015625,
1691
+ -0.000850677490234375,
1692
+ 0.017333984375,
1693
+ 0.0162353515625,
1694
+ 0.0098876953125,
1695
+ 0.0059814453125,
1696
+ -0.01025390625,
1697
+ 0.001983642578125,
1698
+ -0.0101318359375,
1699
+ -0.001312255859375,
1700
+ 0.0125732421875,
1701
+ -0.01025390625,
1702
+ -0.00127410888671875,
1703
+ 0.01165771484375,
1704
+ 0.006134033203125,
1705
+ 8.392333984375e-05,
1706
+ 0.0174560546875,
1707
+ 0.001434326171875,
1708
+ -0.03125,
1709
+ 0.0009918212890625,
1710
+ 0.0147705078125,
1711
+ 0.0076904296875,
1712
+ 0.0108642578125,
1713
+ -0.01513671875,
1714
+ 0.0107421875,
1715
+ 0.005218505859375,
1716
+ 0.0033111572265625,
1717
+ -0.00119781494140625,
1718
+ 0.0108642578125,
1719
+ -0.0002765655517578125,
1720
+ 0.0103759765625,
1721
+ 0.017578125,
1722
+ 0.0118408203125,
1723
+ -0.0264892578125,
1724
+ -0.033203125,
1725
+ 0.00494384765625,
1726
+ -0.006011962890625,
1727
+ -0.027587890625,
1728
+ 0.019775390625,
1729
+ 0.0072021484375,
1730
+ 0.0159912109375,
1731
+ -0.0067138671875,
1732
+ 0.005218505859375,
1733
+ -0.02880859375,
1734
+ -0.006317138671875,
1735
+ -0.00982666015625,
1736
+ 0.00872802734375,
1737
+ 0.0107421875,
1738
+ 0.0118408203125,
1739
+ -0.00872802734375,
1740
+ -0.0196533203125,
1741
+ 0.043212890625,
1742
+ 0.0140380859375,
1743
+ -0.00118255615234375,
1744
+ -0.0020904541015625,
1745
+ -0.0184326171875,
1746
+ 0.0142822265625,
1747
+ 0.011962890625,
1748
+ 0.0274658203125,
1749
+ 0.004241943359375,
1750
+ 0.0079345703125,
1751
+ -0.010009765625,
1752
+ -0.00147247314453125,
1753
+ -0.005645751953125,
1754
+ 0.00555419921875,
1755
+ -0.0018157958984375,
1756
+ 0.00067138671875,
1757
+ 0.00014781951904296875,
1758
+ 0.01287841796875,
1759
+ 0.0035858154296875,
1760
+ -0.00738525390625,
1761
+ 0.005218505859375,
1762
+ 0.00811767578125,
1763
+ -0.004241943359375,
1764
+ 0.035400390625,
1765
+ 0.01123046875,
1766
+ -0.029541015625,
1767
+ -0.0064697265625,
1768
+ -0.013671875,
1769
+ 0.0087890625,
1770
+ 0.0135498046875,
1771
+ -0.0234375,
1772
+ 0.0303955078125,
1773
+ -0.00994873046875,
1774
+ 0.002471923828125,
1775
+ -0.00494384765625,
1776
+ -0.0157470703125,
1777
+ 0.00213623046875,
1778
+ -0.038330078125,
1779
+ -0.047119140625,
1780
+ -0.005859375,
1781
+ 0.00830078125,
1782
+ -0.01275634765625,
1783
+ -0.0172119140625,
1784
+ -0.0089111328125,
1785
+ 0.01123046875,
1786
+ -0.01708984375,
1787
+ -0.011962890625,
1788
+ 0.01177978515625,
1789
+ 0.0155029296875,
1790
+ -0.015869140625,
1791
+ 0.00921630859375,
1792
+ 0.006500244140625,
1793
+ 0.0026397705078125,
1794
+ 0.00665283203125,
1795
+ -0.01171875,
1796
+ -0.001434326171875,
1797
+ -0.0169677734375,
1798
+ -0.01708984375,
1799
+ 0.0303955078125,
1800
+ 0.016845703125,
1801
+ 0.01708984375,
1802
+ 0.00823974609375,
1803
+ 0.0284423828125,
1804
+ 0.03125,
1805
+ 0.0257568359375,
1806
+ 0.00927734375,
1807
+ 0.019775390625,
1808
+ 0.00262451171875,
1809
+ 1.537799835205078e-05,
1810
+ 0.00433349609375,
1811
+ 0.025390625,
1812
+ -0.0022125244140625,
1813
+ 0.012939453125,
1814
+ 0.003814697265625,
1815
+ -0.007781982421875,
1816
+ -0.0045166015625,
1817
+ 2.682209014892578e-05,
1818
+ -0.004608154296875,
1819
+ 0.007720947265625,
1820
+ 0.017822265625,
1821
+ 0.00019550323486328125,
1822
+ -0.0069580078125,
1823
+ -0.02392578125,
1824
+ -0.0126953125,
1825
+ -0.0279541015625,
1826
+ -0.003997802734375,
1827
+ 0.01904296875,
1828
+ 0.00159454345703125,
1829
+ -0.0032196044921875,
1830
+ 0.0025177001953125,
1831
+ 0.007720947265625,
1832
+ 0.01336669921875,
1833
+ -0.007110595703125,
1834
+ -0.00933837890625,
1835
+ -0.008056640625,
1836
+ 0.033203125,
1837
+ 0.030029296875,
1838
+ -0.004119873046875,
1839
+ 0.016357421875,
1840
+ -0.0032806396484375,
1841
+ 0.00653076171875,
1842
+ 0.0098876953125,
1843
+ 0.0015411376953125,
1844
+ -0.0030517578125,
1845
+ -0.007476806640625,
1846
+ 0.02099609375,
1847
+ 0.0031585693359375,
1848
+ -0.017822265625,
1849
+ 0.0003204345703125,
1850
+ -0.00506591796875,
1851
+ -0.00946044921875,
1852
+ -0.00799560546875,
1853
+ -0.006744384765625,
1854
+ 0.00933837890625,
1855
+ -0.0125732421875,
1856
+ 0.006500244140625,
1857
+ -0.00128173828125,
1858
+ 0.0203857421875,
1859
+ -0.019775390625,
1860
+ -0.0238037109375,
1861
+ 0.002166748046875,
1862
+ -0.0146484375,
1863
+ 0.028564453125,
1864
+ -0.0162353515625,
1865
+ -0.0235595703125,
1866
+ 0.004974365234375,
1867
+ -0.00537109375,
1868
+ -0.025146484375,
1869
+ 0.00970458984375,
1870
+ 0.02880859375,
1871
+ 0.006195068359375,
1872
+ -0.0087890625,
1873
+ 0.018798828125,
1874
+ 0.00311279296875,
1875
+ -0.0010223388671875,
1876
+ -0.0184326171875,
1877
+ -0.0211181640625,
1878
+ 0.0118408203125,
1879
+ 0.0030975341796875,
1880
+ 0.0185546875,
1881
+ 0.010986328125,
1882
+ 0.01251220703125,
1883
+ 0.021728515625,
1884
+ -0.039794921875,
1885
+ -0.005706787109375,
1886
+ 0.002227783203125,
1887
+ 0.036376953125,
1888
+ -0.00982666015625,
1889
+ -0.0096435546875,
1890
+ 0.00543212890625,
1891
+ 0.01708984375,
1892
+ -0.0111083984375,
1893
+ 0.006622314453125,
1894
+ 0.006195068359375,
1895
+ 0.01611328125,
1896
+ 0.003204345703125,
1897
+ 0.0050048828125,
1898
+ -0.006988525390625,
1899
+ -0.0093994140625,
1900
+ -0.024169921875,
1901
+ 0.002471923828125,
1902
+ 0.0019073486328125,
1903
+ 0.029541015625,
1904
+ 0.007568359375,
1905
+ -0.0009918212890625,
1906
+ 0.0003032684326171875,
1907
+ -0.0179443359375,
1908
+ 0.005462646484375,
1909
+ -0.0235595703125,
1910
+ -0.003509521484375,
1911
+ 9.894371032714844e-06,
1912
+ -0.0252685546875,
1913
+ -0.0115966796875,
1914
+ 0.029541015625,
1915
+ 0.00421142578125,
1916
+ 0.03125,
1917
+ -0.007568359375,
1918
+ 0.0089111328125,
1919
+ -0.00390625,
1920
+ 0.031982421875,
1921
+ -0.01708984375,
1922
+ -0.0262451171875,
1923
+ -0.019775390625,
1924
+ 0.00994873046875,
1925
+ 0.015869140625,
1926
+ 0.007293701171875,
1927
+ 0.0054931640625,
1928
+ -0.01141357421875,
1929
+ 0.004425048828125,
1930
+ 0.004638671875,
1931
+ 0.0220947265625,
1932
+ 0.0184326171875,
1933
+ -0.0023040771484375,
1934
+ 0.0272216796875,
1935
+ -0.005950927734375,
1936
+ 0.0125732421875,
1937
+ 0.015380859375,
1938
+ 0.00311279296875,
1939
+ -0.015380859375,
1940
+ -0.0206298828125,
1941
+ -0.00634765625,
1942
+ 0.009765625,
1943
+ -0.010986328125,
1944
+ 0.018798828125,
1945
+ 0.017822265625,
1946
+ 0.020263671875,
1947
+ 0.006988525390625,
1948
+ -0.015380859375,
1949
+ -0.0032501220703125,
1950
+ 0.0135498046875,
1951
+ -0.00860595703125,
1952
+ -0.00927734375,
1953
+ 0.011962890625,
1954
+ -0.03173828125,
1955
+ 0.00604248046875,
1956
+ 0.01177978515625,
1957
+ -0.01177978515625,
1958
+ 0.018310546875,
1959
+ 0.0111083984375,
1960
+ 0.00341796875,
1961
+ 0.01385498046875,
1962
+ -0.022216796875,
1963
+ 0.001861572265625,
1964
+ -0.0244140625,
1965
+ 0.0203857421875,
1966
+ 0.015625,
1967
+ -0.007568359375,
1968
+ 0.021240234375,
1969
+ -0.003570556640625,
1970
+ 0.01251220703125,
1971
+ 0.00103759765625,
1972
+ -0.02880859375,
1973
+ 0.000720977783203125,
1974
+ -0.0107421875,
1975
+ 0.015869140625,
1976
+ -0.0034027099609375,
1977
+ 0.000499725341796875,
1978
+ 0.00885009765625,
1979
+ 0.0037078857421875,
1980
+ 0.00274658203125,
1981
+ -0.00119781494140625,
1982
+ 0.00811767578125,
1983
+ -0.0169677734375,
1984
+ 0.013671875,
1985
+ -0.01348876953125,
1986
+ -0.00830078125,
1987
+ 0.01361083984375,
1988
+ 0.00921630859375,
1989
+ 0.0262451171875,
1990
+ 0.004058837890625,
1991
+ -0.01031494140625,
1992
+ -0.000865936279296875,
1993
+ 0.0211181640625,
1994
+ 0.02001953125,
1995
+ -0.015380859375,
1996
+ -0.00408935546875,
1997
+ -0.0277099609375,
1998
+ -0.0220947265625,
1999
+ -0.01220703125,
2000
+ -0.01385498046875,
2001
+ -0.008544921875,
2002
+ 0.0091552734375,
2003
+ 0.0155029296875,
2004
+ -0.004608154296875,
2005
+ 0.004638671875,
2006
+ -0.01385498046875,
2007
+ -0.00823974609375,
2008
+ -0.004150390625,
2009
+ -0.01287841796875,
2010
+ 0.02197265625,
2011
+ -0.0113525390625,
2012
+ -0.0303955078125,
2013
+ 0.0034027099609375,
2014
+ -0.01123046875,
2015
+ -0.0045166015625,
2016
+ -0.0164794921875,
2017
+ 0.006683349609375,
2018
+ -0.00433349609375,
2019
+ 0.0179443359375,
2020
+ 0.002227783203125,
2021
+ 0.01104736328125,
2022
+ 0.01434326171875,
2023
+ -0.0098876953125,
2024
+ -0.007415771484375,
2025
+ -0.00628662109375,
2026
+ 0.00494384765625,
2027
+ 0.0113525390625,
2028
+ 0.0179443359375,
2029
+ -0.001800537109375,
2030
+ 0.010986328125,
2031
+ 0.0296630859375,
2032
+ 0.0289306640625,
2033
+ -0.021728515625,
2034
+ -0.014892578125,
2035
+ 0.009033203125,
2036
+ -0.006103515625,
2037
+ -0.017578125,
2038
+ 0.005523681640625,
2039
+ 0.003631591796875,
2040
+ 0.0021514892578125,
2041
+ 0.002777099609375,
2042
+ 0.00121307373046875,
2043
+ 0.02734375,
2044
+ 0.0311279296875,
2045
+ 0.00927734375,
2046
+ 0.001495361328125,
2047
+ 0.0224609375,
2048
+ -0.01611328125,
2049
+ -0.0155029296875,
2050
+ 0.045166015625,
2051
+ 0.0177001953125,
2052
+ 0.01953125,
2053
+ 0.023193359375,
2054
+ 0.003631591796875,
2055
+ -0.01055908203125,
2056
+ -0.000476837158203125,
2057
+ -0.0087890625,
2058
+ 0.0022125244140625,
2059
+ 0.000858306884765625,
2060
+ 0.0103759765625,
2061
+ 0.0028839111328125,
2062
+ 0.00933837890625,
2063
+ -0.038330078125,
2064
+ 0.004058837890625,
2065
+ 0.013427734375,
2066
+ -0.006439208984375,
2067
+ -0.00179290771484375,
2068
+ -0.02197265625,
2069
+ -0.01495361328125,
2070
+ -0.0037078857421875,
2071
+ 0.0032806396484375,
2072
+ 0.010498046875,
2073
+ -0.00970458984375,
2074
+ 0.010009765625,
2075
+ -0.02001953125,
2076
+ -0.01153564453125,
2077
+ -0.0196533203125,
2078
+ -0.005157470703125,
2079
+ 0.001190185546875,
2080
+ 0.00238037109375,
2081
+ 0.007232666015625,
2082
+ -0.01422119140625,
2083
+ 0.0140380859375,
2084
+ -0.002777099609375,
2085
+ -0.0027008056640625,
2086
+ 0.0169677734375,
2087
+ 0.0166015625,
2088
+ 0.0004367828369140625,
2089
+ 0.0028076171875,
2090
+ 0.04296875,
2091
+ 0.00787353515625,
2092
+ -0.01519775390625,
2093
+ -0.017578125,
2094
+ -0.006591796875,
2095
+ 0.01177978515625,
2096
+ 0.01806640625,
2097
+ -0.005126953125,
2098
+ -2.2172927856445312e-05,
2099
+ 0.01202392578125,
2100
+ 0.03662109375,
2101
+ -0.01434326171875,
2102
+ -0.0086669921875,
2103
+ 0.032958984375,
2104
+ -0.01153564453125,
2105
+ -0.004730224609375,
2106
+ 3.910064697265625e-05,
2107
+ -0.0164794921875,
2108
+ -0.001556396484375,
2109
+ 0.01422119140625,
2110
+ -0.031494140625,
2111
+ -0.001983642578125,
2112
+ 0.002960205078125,
2113
+ -0.041015625,
2114
+ -0.006683349609375,
2115
+ 0.000621795654296875,
2116
+ 0.0264892578125,
2117
+ -0.0030364990234375,
2118
+ -0.0341796875,
2119
+ 0.01080322265625,
2120
+ -0.00408935546875,
2121
+ -0.005126953125,
2122
+ 0.0101318359375,
2123
+ -0.0166015625,
2124
+ 0.010986328125,
2125
+ -0.0167236328125,
2126
+ -0.0052490234375,
2127
+ 0.037353515625,
2128
+ -0.031005859375,
2129
+ -0.0145263671875,
2130
+ 0.009033203125,
2131
+ 0.0247802734375,
2132
+ -0.00897216796875,
2133
+ 0.0021209716796875,
2134
+ -0.00604248046875,
2135
+ 0.002777099609375,
2136
+ -0.023681640625,
2137
+ -0.01007080078125,
2138
+ 0.00775146484375,
2139
+ -0.007293701171875,
2140
+ 0.0035247802734375,
2141
+ -0.0159912109375,
2142
+ 0.000690460205078125,
2143
+ 0.0120849609375,
2144
+ 0.0162353515625,
2145
+ 0.0120849609375,
2146
+ -0.0038299560546875,
2147
+ -0.013671875,
2148
+ -0.007415771484375,
2149
+ -0.01116943359375,
2150
+ -0.045166015625,
2151
+ -0.0302734375,
2152
+ -0.01611328125,
2153
+ -0.004791259765625,
2154
+ 0.006317138671875,
2155
+ 0.0150146484375,
2156
+ 0.0025482177734375,
2157
+ 0.008544921875,
2158
+ 0.004638671875,
2159
+ -0.015869140625,
2160
+ -0.0223388671875,
2161
+ -0.001373291015625,
2162
+ 0.040283203125,
2163
+ -0.01611328125,
2164
+ -0.013671875,
2165
+ -0.03125,
2166
+ 0.01123046875,
2167
+ 0.017333984375,
2168
+ -0.016845703125,
2169
+ 0.00018978118896484375,
2170
+ -0.01708984375,
2171
+ -0.00194549560546875,
2172
+ -0.023681640625,
2173
+ -0.0308837890625,
2174
+ -0.00836181640625,
2175
+ 0.0155029296875,
2176
+ -0.01129150390625,
2177
+ -0.006591796875,
2178
+ -0.0245361328125,
2179
+ -0.01171875,
2180
+ 0.0145263671875,
2181
+ 0.0011749267578125,
2182
+ 0.01312255859375,
2183
+ 0.0257568359375,
2184
+ 0.00640869140625,
2185
+ -0.00982666015625,
2186
+ 0.0181884765625,
2187
+ -0.009033203125,
2188
+ 0.0113525390625,
2189
+ 0.0247802734375,
2190
+ -0.01397705078125,
2191
+ 0.0185546875,
2192
+ 0.00167083740234375,
2193
+ 0.0037994384765625,
2194
+ -0.031982421875,
2195
+ -0.0269775390625,
2196
+ -0.00701904296875,
2197
+ 0.01409912109375,
2198
+ 0.0120849609375,
2199
+ -0.0277099609375,
2200
+ 0.00012302398681640625,
2201
+ -0.00543212890625,
2202
+ -0.00860595703125,
2203
+ -0.0111083984375,
2204
+ 0.0045166015625,
2205
+ 0.0034942626953125,
2206
+ 0.004150390625,
2207
+ -0.00787353515625,
2208
+ -0.00408935546875,
2209
+ -0.01300048828125,
2210
+ -0.0164794921875,
2211
+ -0.010498046875,
2212
+ 0.0301513671875,
2213
+ 0.00885009765625,
2214
+ 0.01513671875,
2215
+ 0.0322265625,
2216
+ 0.012451171875,
2217
+ -0.00994873046875,
2218
+ 0.0050048828125,
2219
+ 0.0023345947265625,
2220
+ -0.01080322265625,
2221
+ -0.007415771484375,
2222
+ 0.0022735595703125,
2223
+ -0.0027008056640625,
2224
+ 0.031982421875,
2225
+ 0.00067901611328125,
2226
+ -0.0169677734375,
2227
+ 0.000640869140625,
2228
+ -0.01025390625,
2229
+ -0.0198974609375,
2230
+ -0.005401611328125,
2231
+ 0.0264892578125,
2232
+ 0.0250244140625,
2233
+ 0.0033721923828125,
2234
+ 0.01263427734375,
2235
+ -0.017333984375,
2236
+ 0.004150390625,
2237
+ 0.000713348388671875,
2238
+ -0.000934600830078125,
2239
+ 0.031982421875,
2240
+ -0.04052734375,
2241
+ -0.00061798095703125,
2242
+ -0.00023937225341796875,
2243
+ -0.000576019287109375,
2244
+ 0.014892578125,
2245
+ -0.0091552734375,
2246
+ 0.01458740234375,
2247
+ 0.0087890625,
2248
+ 0.005828857421875,
2249
+ 0.017578125,
2250
+ 0.01031494140625,
2251
+ 0.00799560546875,
2252
+ -0.016845703125,
2253
+ 0.007537841796875,
2254
+ -0.0223388671875,
2255
+ 0.01312255859375,
2256
+ -0.016845703125,
2257
+ 0.00164031982421875,
2258
+ 0.01165771484375,
2259
+ -0.01214599609375,
2260
+ 0.04638671875,
2261
+ -0.01129150390625,
2262
+ -0.0079345703125,
2263
+ -0.01318359375,
2264
+ 0.0164794921875,
2265
+ 0.0026702880859375,
2266
+ -0.00049591064453125,
2267
+ 8.821487426757812e-06,
2268
+ 0.0011444091796875,
2269
+ 0.01226806640625,
2270
+ 0.0184326171875,
2271
+ -0.017333984375,
2272
+ 0.00518798828125,
2273
+ 0.017333984375,
2274
+ -0.004852294921875,
2275
+ -0.02880859375,
2276
+ 2.4080276489257812e-05,
2277
+ -0.01348876953125,
2278
+ -0.0035400390625,
2279
+ -0.00445556640625,
2280
+ 0.002593994140625,
2281
+ -0.01275634765625,
2282
+ 0.00970458984375,
2283
+ 0.00799560546875,
2284
+ -8.046627044677734e-06,
2285
+ 0.00946044921875,
2286
+ 0.015869140625,
2287
+ -0.0264892578125,
2288
+ -0.01904296875,
2289
+ -0.018798828125,
2290
+ -0.025390625,
2291
+ 0.00885009765625,
2292
+ -0.0206298828125,
2293
+ -0.022216796875,
2294
+ 0.0106201171875,
2295
+ -0.0020599365234375,
2296
+ 0.0052490234375,
2297
+ -0.0157470703125,
2298
+ 0.017822265625,
2299
+ 0.004638671875,
2300
+ -0.0029296875,
2301
+ -0.00457763671875,
2302
+ 0.0218505859375,
2303
+ -0.01092529296875,
2304
+ -0.01531982421875,
2305
+ -0.0194091796875,
2306
+ -0.003265380859375,
2307
+ -0.005279541015625,
2308
+ -0.0223388671875,
2309
+ -0.006744384765625,
2310
+ -0.0203857421875,
2311
+ 0.003326416015625,
2312
+ -0.0167236328125,
2313
+ -0.016845703125,
2314
+ 0.005340576171875,
2315
+ -0.0091552734375,
2316
+ 0.004974365234375,
2317
+ 0.0205078125,
2318
+ 0.01214599609375,
2319
+ -1.52587890625e-05,
2320
+ 0.0002307891845703125,
2321
+ -0.01251220703125,
2322
+ 0.0021820068359375,
2323
+ -0.0174560546875,
2324
+ 0.0034332275390625,
2325
+ 0.005828857421875,
2326
+ 0.011474609375,
2327
+ 0.01312255859375,
2328
+ -0.0283203125,
2329
+ 0.0234375,
2330
+ 0.017578125,
2331
+ 0.0079345703125,
2332
+ -0.014892578125,
2333
+ 0.0191650390625,
2334
+ 0.0035247802734375,
2335
+ -0.014404296875,
2336
+ 0.00897216796875,
2337
+ -0.017578125,
2338
+ 0.0026092529296875,
2339
+ -0.02197265625,
2340
+ -0.0150146484375,
2341
+ 0.0047607421875,
2342
+ -0.007415771484375,
2343
+ -0.01422119140625,
2344
+ -0.01318359375,
2345
+ 0.0191650390625,
2346
+ 0.01513671875,
2347
+ -0.0238037109375,
2348
+ 0.016357421875,
2349
+ -0.00860595703125,
2350
+ 0.00152587890625,
2351
+ 0.0213623046875,
2352
+ -0.0146484375,
2353
+ 0.0262451171875,
2354
+ 0.033203125,
2355
+ 0.007171630859375,
2356
+ 0.0062255859375,
2357
+ 0.0361328125,
2358
+ 0.01007080078125,
2359
+ -0.0038909912109375,
2360
+ -0.01287841796875,
2361
+ 0.0072021484375,
2362
+ -0.0030059814453125,
2363
+ 0.00074005126953125,
2364
+ 0.01092529296875,
2365
+ -0.0296630859375,
2366
+ -0.0206298828125,
2367
+ -0.01055908203125,
2368
+ 0.0155029296875,
2369
+ 0.017333984375,
2370
+ -0.0034637451171875,
2371
+ -0.0147705078125,
2372
+ 0.00250244140625,
2373
+ -0.01214599609375,
2374
+ 0.0247802734375,
2375
+ -0.0189208984375,
2376
+ 0.0303955078125,
2377
+ -0.0272216796875,
2378
+ -0.01092529296875,
2379
+ -0.003997802734375,
2380
+ -0.0023040771484375,
2381
+ -0.010498046875,
2382
+ 0.017333984375,
2383
+ -0.007293701171875,
2384
+ 0.000835418701171875,
2385
+ 0.00023365020751953125,
2386
+ -0.00019168853759765625,
2387
+ 0.0184326171875,
2388
+ 0.02392578125,
2389
+ -0.0296630859375,
2390
+ -0.00872802734375,
2391
+ 0.0126953125,
2392
+ -0.021484375,
2393
+ -0.001312255859375,
2394
+ -0.00787353515625,
2395
+ -0.0074462890625,
2396
+ 0.0250244140625,
2397
+ 0.009521484375,
2398
+ -0.00131988525390625,
2399
+ -2.2292137145996094e-05,
2400
+ 0.0169677734375,
2401
+ 0.0186767578125,
2402
+ 0.000949859619140625,
2403
+ -0.01556396484375,
2404
+ 0.005462646484375,
2405
+ 0.006439208984375,
2406
+ 0.0024871826171875,
2407
+ 0.006927490234375,
2408
+ 0.01324462890625,
2409
+ -0.01446533203125,
2410
+ -0.0184326171875,
2411
+ 0.0098876953125,
2412
+ 0.01324462890625,
2413
+ 0.011962890625,
2414
+ 0.034912109375,
2415
+ -0.003326416015625,
2416
+ -0.02099609375,
2417
+ 2.2649765014648438e-05,
2418
+ -0.026611328125,
2419
+ 0.031494140625,
2420
+ 0.03173828125,
2421
+ 0.0027008056640625,
2422
+ 0.0233154296875,
2423
+ -0.013427734375,
2424
+ 0.0120849609375,
2425
+ 0.004638671875,
2426
+ 0.044189453125,
2427
+ 0.00152587890625,
2428
+ -0.013671875,
2429
+ -0.00347900390625,
2430
+ 0.00159454345703125,
2431
+ -0.00173187255859375,
2432
+ -0.002410888671875,
2433
+ 0.026123046875,
2434
+ -0.0005645751953125,
2435
+ -0.0162353515625,
2436
+ -0.00634765625,
2437
+ 0.00897216796875,
2438
+ 0.033203125,
2439
+ 0.0301513671875,
2440
+ 0.0157470703125,
2441
+ 0.000598907470703125,
2442
+ -0.005035400390625,
2443
+ 5.841255187988281e-06,
2444
+ 0.01434326171875,
2445
+ 0.00022411346435546875,
2446
+ -0.010009765625,
2447
+ -0.006134033203125,
2448
+ -0.00341796875,
2449
+ 0.01202392578125,
2450
+ -0.001861572265625,
2451
+ 0.0196533203125,
2452
+ -0.020263671875,
2453
+ 0.0233154296875,
2454
+ -0.01104736328125,
2455
+ -0.03564453125,
2456
+ 0.033447265625,
2457
+ -0.01263427734375,
2458
+ -0.001434326171875,
2459
+ -0.00701904296875,
2460
+ 0.006561279296875,
2461
+ -0.0059814453125,
2462
+ 0.0162353515625,
2463
+ -0.0123291015625,
2464
+ 0.004302978515625,
2465
+ -0.0021820068359375,
2466
+ 0.0032196044921875,
2467
+ -0.0042724609375,
2468
+ 0.004913330078125,
2469
+ 0.0162353515625,
2470
+ 0.00494384765625,
2471
+ 0.000396728515625,
2472
+ -0.00958251953125,
2473
+ -0.00689697265625,
2474
+ 0.00457763671875,
2475
+ -0.007415771484375,
2476
+ -0.0186767578125,
2477
+ 0.0025634765625,
2478
+ -0.036376953125,
2479
+ 0.036865234375,
2480
+ -0.0240478515625,
2481
+ -0.01458740234375,
2482
+ 0.0028533935546875,
2483
+ 0.0211181640625,
2484
+ 0.0146484375,
2485
+ -0.01190185546875,
2486
+ 0.005218505859375,
2487
+ -0.01190185546875,
2488
+ -0.01129150390625,
2489
+ 0.008544921875,
2490
+ -0.0096435546875,
2491
+ -0.016357421875,
2492
+ 0.01458740234375,
2493
+ 0.00689697265625,
2494
+ -0.004364013671875,
2495
+ 0.0299072265625,
2496
+ 0.002105712890625,
2497
+ -0.0235595703125,
2498
+ -0.0024261474609375,
2499
+ -0.00994873046875,
2500
+ -0.010986328125,
2501
+ 0.00311279296875,
2502
+ 0.01385498046875,
2503
+ -0.0164794921875,
2504
+ 0.0084228515625,
2505
+ 0.0211181640625,
2506
+ -0.007781982421875,
2507
+ 0.0135498046875,
2508
+ 0.0115966796875,
2509
+ -0.0031280517578125,
2510
+ 0.016845703125,
2511
+ -0.00150299072265625,
2512
+ 0.0081787109375,
2513
+ 0.0206298828125,
2514
+ -0.00653076171875,
2515
+ 0.00689697265625,
2516
+ -0.01177978515625,
2517
+ 0.006011962890625,
2518
+ 0.0185546875,
2519
+ 0.0054931640625,
2520
+ -0.00238037109375,
2521
+ -0.0169677734375,
2522
+ -0.01422119140625,
2523
+ -0.0108642578125,
2524
+ 0.0113525390625,
2525
+ -0.020263671875,
2526
+ -0.034912109375,
2527
+ 0.024658203125,
2528
+ -0.01708984375,
2529
+ 0.00360107421875,
2530
+ -0.00897216796875,
2531
+ -0.00058746337890625,
2532
+ -0.0032806396484375,
2533
+ -0.0216064453125,
2534
+ -0.01373291015625,
2535
+ -0.00086212158203125,
2536
+ -0.004364013671875,
2537
+ -0.00083160400390625,
2538
+ -0.025634765625,
2539
+ -0.001251220703125,
2540
+ 0.0263671875,
2541
+ 0.01373291015625,
2542
+ -0.0140380859375,
2543
+ 0.015625,
2544
+ -0.0035400390625,
2545
+ -0.01611328125,
2546
+ 0.00982666015625,
2547
+ 0.00787353515625,
2548
+ -0.0164794921875,
2549
+ 0.0123291015625,
2550
+ 0.0029296875,
2551
+ 0.00396728515625,
2552
+ -0.040283203125,
2553
+ -0.0081787109375,
2554
+ 0.0118408203125,
2555
+ 0.0179443359375,
2556
+ 0.01239013671875,
2557
+ 0.00439453125,
2558
+ -0.0111083984375,
2559
+ -0.02099609375,
2560
+ -9.47713851928711e-06,
2561
+ 0.006561279296875,
2562
+ -9.1552734375e-05,
2563
+ 0.002471923828125,
2564
+ -0.003082275390625,
2565
+ -0.00173187255859375,
2566
+ 0.0289306640625,
2567
+ 0.0289306640625,
2568
+ 0.018798828125,
2569
+ -0.0023345947265625,
2570
+ 0.004150390625,
2571
+ -0.0184326171875,
2572
+ 0.017822265625,
2573
+ -0.00787353515625,
2574
+ -0.0174560546875,
2575
+ 0.023193359375,
2576
+ 0.0118408203125,
2577
+ -0.013671875,
2578
+ -0.041748046875,
2579
+ -0.0164794921875,
2580
+ 0.0093994140625,
2581
+ 0.00885009765625,
2582
+ 0.0024566650390625,
2583
+ 0.001129150390625,
2584
+ 0.0026397705078125,
2585
+ 0.0191650390625,
2586
+ -0.00518798828125,
2587
+ -0.0162353515625,
2588
+ -0.000583648681640625,
2589
+ 0.0230712890625,
2590
+ -0.04052734375,
2591
+ -0.00677490234375,
2592
+ 0.01361083984375,
2593
+ 0.01373291015625,
2594
+ -0.00946044921875,
2595
+ -0.01251220703125,
2596
+ -0.016845703125,
2597
+ 0.01318359375,
2598
+ 0.0230712890625,
2599
+ -0.0274658203125,
2600
+ 0.01422119140625,
2601
+ -0.026611328125,
2602
+ -0.00982666015625,
2603
+ 0.00738525390625,
2604
+ 0.024169921875,
2605
+ -0.013916015625,
2606
+ -0.0164794921875,
2607
+ 0.004302978515625,
2608
+ 0.002410888671875,
2609
+ -0.01019287109375,
2610
+ 0.00070953369140625,
2611
+ -0.01324462890625,
2612
+ 0.007354736328125,
2613
+ 0.00860595703125,
2614
+ 0.00506591796875,
2615
+ 0.0216064453125,
2616
+ -0.01513671875,
2617
+ -0.00311279296875,
2618
+ -0.0201416015625,
2619
+ -0.0029144287109375,
2620
+ -0.01080322265625,
2621
+ -0.00653076171875,
2622
+ 0.0308837890625,
2623
+ 0.00738525390625,
2624
+ 0.01214599609375,
2625
+ 2.658367156982422e-05,
2626
+ 0.0010986328125,
2627
+ -0.004119873046875,
2628
+ -0.00848388671875,
2629
+ -0.00028228759765625,
2630
+ 6.246566772460938e-05,
2631
+ 0.0225830078125,
2632
+ -0.0072021484375,
2633
+ 0.0201416015625,
2634
+ 0.01513671875,
2635
+ 0.029296875,
2636
+ -0.0038299560546875,
2637
+ -0.00408935546875,
2638
+ 0.0135498046875,
2639
+ 0.001373291015625,
2640
+ 0.018310546875,
2641
+ 0.00927734375,
2642
+ -0.0108642578125,
2643
+ -0.01519775390625,
2644
+ 0.0189208984375,
2645
+ -0.0140380859375,
2646
+ -0.00128173828125,
2647
+ -0.005096435546875,
2648
+ -0.0017547607421875,
2649
+ 0.02783203125,
2650
+ -0.01434326171875,
2651
+ 0.00701904296875,
2652
+ 0.02294921875,
2653
+ -0.00946044921875,
2654
+ -0.0181884765625,
2655
+ 0.01190185546875,
2656
+ -0.0218505859375,
2657
+ -0.004119873046875,
2658
+ -0.00531005859375,
2659
+ 0.00872802734375,
2660
+ -0.01416015625,
2661
+ -0.000579833984375,
2662
+ -0.002532958984375,
2663
+ 0.002960205078125,
2664
+ 0.0098876953125,
2665
+ 0.006256103515625,
2666
+ 0.0159912109375,
2667
+ 0.001495361328125,
2668
+ -0.009765625,
2669
+ -0.0106201171875,
2670
+ 0.0022430419921875,
2671
+ 0.0150146484375,
2672
+ -0.01531982421875,
2673
+ -0.0042724609375,
2674
+ -0.0294189453125,
2675
+ 0.00396728515625,
2676
+ -0.0125732421875,
2677
+ 0.0177001953125,
2678
+ -0.005523681640625,
2679
+ -0.007293701171875,
2680
+ 0.009033203125,
2681
+ 0.0240478515625,
2682
+ -0.00799560546875,
2683
+ 0.006103515625,
2684
+ 0.040771484375,
2685
+ -0.040283203125,
2686
+ 0.009521484375,
2687
+ 0.009765625,
2688
+ -0.0146484375,
2689
+ -0.01287841796875,
2690
+ 0.03857421875,
2691
+ -0.0213623046875,
2692
+ 0.00616455078125,
2693
+ -0.02978515625,
2694
+ -0.00885009765625,
2695
+ -0.002532958984375,
2696
+ 0.0308837890625,
2697
+ -0.0115966796875,
2698
+ 0.018310546875,
2699
+ 0.0020599365234375,
2700
+ -0.007415771484375,
2701
+ 0.00762939453125,
2702
+ -0.0098876953125,
2703
+ -1.0251998901367188e-05,
2704
+ 0.0164794921875,
2705
+ -0.026611328125,
2706
+ 0.013916015625,
2707
+ 0.00927734375,
2708
+ -0.004669189453125,
2709
+ 0.01953125,
2710
+ -0.0234375,
2711
+ 0.020263671875,
2712
+ 0.00628662109375,
2713
+ -0.034912109375,
2714
+ -0.03466796875,
2715
+ 0.0118408203125,
2716
+ 0.0167236328125,
2717
+ -0.03271484375,
2718
+ 0.00457763671875,
2719
+ 0.0034942626953125,
2720
+ 0.0093994140625,
2721
+ -0.00543212890625,
2722
+ -0.017822265625,
2723
+ 0.0185546875,
2724
+ -0.00982666015625,
2725
+ 0.0074462890625,
2726
+ -0.0159912109375,
2727
+ -0.0177001953125,
2728
+ -0.0106201171875,
2729
+ 0.01422119140625,
2730
+ 0.00311279296875,
2731
+ -0.0079345703125,
2732
+ -0.0185546875,
2733
+ -0.00921630859375,
2734
+ 0.011962890625,
2735
+ 0.00830078125,
2736
+ -0.01953125,
2737
+ -0.004791259765625,
2738
+ 0.0242919921875,
2739
+ 0.01373291015625,
2740
+ 0.01104736328125,
2741
+ -0.0024566650390625,
2742
+ 0.01251220703125,
2743
+ 0.0250244140625,
2744
+ 0.0091552734375,
2745
+ -0.0021514892578125,
2746
+ 0.0059814453125,
2747
+ -0.0069580078125,
2748
+ 0.0086669921875,
2749
+ 0.0162353515625,
2750
+ -0.00128173828125,
2751
+ -0.01275634765625,
2752
+ -0.0011444091796875,
2753
+ -0.0032196044921875,
2754
+ -0.00830078125,
2755
+ -0.00518798828125,
2756
+ -0.004547119140625,
2757
+ -0.0011749267578125,
2758
+ 0.00421142578125,
2759
+ 0.0028228759765625,
2760
+ 0.0162353515625,
2761
+ -0.0113525390625,
2762
+ 0.009033203125,
2763
+ -0.0164794921875,
2764
+ -0.018310546875,
2765
+ -0.01275634765625,
2766
+ -0.0086669921875,
2767
+ -0.01202392578125,
2768
+ 0.003173828125,
2769
+ 0.0098876953125,
2770
+ 0.012451171875,
2771
+ 0.0211181640625,
2772
+ -0.0034332275390625,
2773
+ -0.0004119873046875,
2774
+ 0.00860595703125,
2775
+ -0.006317138671875,
2776
+ 0.0036773681640625,
2777
+ -0.00714111328125,
2778
+ 0.01519775390625,
2779
+ 0.020263671875,
2780
+ -0.01385498046875,
2781
+ -0.01434326171875,
2782
+ -0.0038604736328125,
2783
+ 0.0174560546875,
2784
+ 0.0157470703125,
2785
+ -0.0274658203125,
2786
+ 0.0267333984375,
2787
+ -0.006683349609375,
2788
+ -0.00165557861328125,
2789
+ -0.008056640625,
2790
+ 0.004547119140625,
2791
+ -0.01031494140625,
2792
+ 0.005828857421875,
2793
+ -0.000820159912109375,
2794
+ -0.01470947265625,
2795
+ 0.00726318359375,
2796
+ 0.00109100341796875,
2797
+ 0.0078125,
2798
+ -0.00665283203125,
2799
+ 0.0155029296875,
2800
+ -0.003997802734375,
2801
+ 0.002838134765625,
2802
+ 0.007659912109375,
2803
+ 0.00445556640625,
2804
+ -0.02734375,
2805
+ 0.0026092529296875,
2806
+ -0.01446533203125,
2807
+ -0.00347900390625,
2808
+ -0.006561279296875,
2809
+ -0.014404296875,
2810
+ -0.01190185546875,
2811
+ -0.004730224609375,
2812
+ -0.0126953125,
2813
+ -0.00384521484375,
2814
+ -0.01611328125,
2815
+ 0.030517578125,
2816
+ 0.01177978515625,
2817
+ -0.00421142578125,
2818
+ -0.0203857421875,
2819
+ -0.020263671875,
2820
+ -0.03076171875,
2821
+ 0.0196533203125,
2822
+ -0.01092529296875,
2823
+ -0.0028839111328125,
2824
+ 0.002899169921875,
2825
+ 0.01708984375,
2826
+ 0.0016021728515625,
2827
+ 0.00518798828125,
2828
+ 0.0029449462890625,
2829
+ -0.0133056640625,
2830
+ 0.01153564453125,
2831
+ -0.0169677734375,
2832
+ 0.0135498046875,
2833
+ -0.015625,
2834
+ 0.0021514892578125,
2835
+ -0.005157470703125,
2836
+ 0.009033203125,
2837
+ -0.01080322265625,
2838
+ -0.00836181640625,
2839
+ -0.01531982421875,
2840
+ 0.026611328125,
2841
+ -0.01708984375,
2842
+ 0.005523681640625,
2843
+ 0.007781982421875,
2844
+ -0.000865936279296875,
2845
+ -0.01171875,
2846
+ -0.002105712890625,
2847
+ -0.023193359375,
2848
+ 1.150369644165039e-05,
2849
+ 0.027587890625,
2850
+ -0.020751953125,
2851
+ 0.0198974609375,
2852
+ -0.00665283203125,
2853
+ 0.005767822265625,
2854
+ -0.0037384033203125,
2855
+ -0.042724609375,
2856
+ -0.01544189453125,
2857
+ -0.005279541015625,
2858
+ 0.00567626953125,
2859
+ 0.0230712890625,
2860
+ -0.0311279296875,
2861
+ -0.003631591796875,
2862
+ -0.007568359375,
2863
+ 0.0037078857421875,
2864
+ -0.0286865234375,
2865
+ 0.0267333984375,
2866
+ 0.000591278076171875,
2867
+ 0.006866455078125,
2868
+ 0.00494384765625,
2869
+ -0.037353515625,
2870
+ -0.0034942626953125,
2871
+ 0.0020751953125,
2872
+ 0.016845703125,
2873
+ 0.00396728515625,
2874
+ 0.00830078125,
2875
+ -0.0172119140625,
2876
+ 0.003997802734375,
2877
+ 0.003265380859375,
2878
+ 0.003692626953125,
2879
+ 0.000492095947265625,
2880
+ -0.007171630859375,
2881
+ -0.0020294189453125,
2882
+ -0.0028228759765625,
2883
+ 0.00677490234375,
2884
+ -0.0157470703125,
2885
+ 0.00384521484375,
2886
+ 0.002349853515625,
2887
+ 0.010986328125,
2888
+ 0.00372314453125,
2889
+ -0.01068115234375,
2890
+ -0.01507568359375,
2891
+ -0.007293701171875,
2892
+ 0.010009765625,
2893
+ 0.0172119140625,
2894
+ -0.032470703125,
2895
+ -0.00836181640625,
2896
+ -0.0205078125,
2897
+ 0.00130462646484375,
2898
+ 0.00162506103515625,
2899
+ -0.005523681640625,
2900
+ 0.007354736328125,
2901
+ -0.0189208984375,
2902
+ 0.024169921875,
2903
+ 0.0169677734375,
2904
+ 9.655952453613281e-06,
2905
+ -0.008056640625,
2906
+ -0.00994873046875,
2907
+ -0.02978515625,
2908
+ -0.0068359375,
2909
+ 0.00390625,
2910
+ -0.01708984375,
2911
+ -0.0101318359375,
2912
+ 0.0274658203125,
2913
+ -0.01397705078125,
2914
+ 0.003387451171875,
2915
+ 0.020751953125,
2916
+ -0.01544189453125,
2917
+ -0.01458740234375,
2918
+ 0.007720947265625,
2919
+ -0.00634765625,
2920
+ -0.005279541015625,
2921
+ 0.00274658203125,
2922
+ 0.0042724609375,
2923
+ -0.0194091796875,
2924
+ 0.000736236572265625,
2925
+ -0.0059814453125,
2926
+ 0.037353515625,
2927
+ 0.01904296875,
2928
+ 0.02783203125,
2929
+ 0.00872802734375,
2930
+ -0.00145721435546875,
2931
+ -0.036865234375,
2932
+ -0.000690460205078125,
2933
+ -0.0018310546875,
2934
+ 0.007415771484375,
2935
+ -0.00823974609375,
2936
+ -0.0152587890625,
2937
+ -0.000576019287109375,
2938
+ 0.00994873046875,
2939
+ 0.002960205078125,
2940
+ -0.00579833984375,
2941
+ 0.017822265625,
2942
+ -0.018310546875,
2943
+ -0.02099609375,
2944
+ 0.038330078125,
2945
+ -0.01092529296875,
2946
+ 0.004638671875,
2947
+ 0.00494384765625,
2948
+ -0.014892578125,
2949
+ 0.002532958984375,
2950
+ 0.0208740234375,
2951
+ -0.00262451171875,
2952
+ 0.0047607421875,
2953
+ 0.01080322265625,
2954
+ 0.01171875,
2955
+ 0.02001953125,
2956
+ 0.00872802734375,
2957
+ -0.0030517578125,
2958
+ -0.03173828125,
2959
+ 0.0247802734375,
2960
+ -0.00238037109375,
2961
+ 0.0269775390625,
2962
+ -0.00762939453125,
2963
+ 0.0206298828125,
2964
+ -0.0033721923828125,
2965
+ 0.009521484375,
2966
+ 0.0040283203125,
2967
+ -0.028076171875,
2968
+ 0.0198974609375,
2969
+ -0.02099609375,
2970
+ -0.01324462890625,
2971
+ 0.00250244140625,
2972
+ -0.022216796875,
2973
+ 0.015869140625,
2974
+ 0.0093994140625,
2975
+ -0.01287841796875,
2976
+ -0.0146484375,
2977
+ 0.0025482177734375,
2978
+ 0.021484375,
2979
+ -0.0157470703125,
2980
+ 0.0172119140625,
2981
+ 0.00872802734375,
2982
+ -0.01220703125,
2983
+ -0.0223388671875,
2984
+ -0.0128173828125,
2985
+ 0.019775390625,
2986
+ 0.003814697265625,
2987
+ 0.00156402587890625,
2988
+ 0.009765625,
2989
+ 1.537799835205078e-05,
2990
+ 0.00433349609375,
2991
+ 0.02001953125,
2992
+ 0.0036468505859375,
2993
+ -0.0220947265625,
2994
+ -0.01361083984375,
2995
+ 0.01141357421875,
2996
+ 0.00543212890625,
2997
+ 0.02294921875,
2998
+ -0.002105712890625,
2999
+ -0.0093994140625,
3000
+ 0.020751953125,
3001
+ -4.5299530029296875e-06,
3002
+ 0.019287109375,
3003
+ 0.01458740234375,
3004
+ -0.006134033203125,
3005
+ 0.0186767578125,
3006
+ -0.00921630859375,
3007
+ -0.0062255859375,
3008
+ -0.0201416015625,
3009
+ 0.005889892578125,
3010
+ 0.045166015625,
3011
+ 0.004791259765625,
3012
+ 0.0103759765625,
3013
+ 0.00885009765625,
3014
+ 0.0191650390625,
3015
+ -0.00482177734375,
3016
+ 0.0235595703125,
3017
+ 0.0047607421875,
3018
+ 0.002166748046875,
3019
+ -0.003509521484375,
3020
+ -0.016357421875,
3021
+ 0.02880859375,
3022
+ -0.0157470703125,
3023
+ 0.00080108642578125,
3024
+ 0.0098876953125,
3025
+ -0.00787353515625,
3026
+ 0.0054931640625,
3027
+ 0.00179290771484375,
3028
+ 0.01141357421875,
3029
+ -0.01190185546875,
3030
+ -0.0014801025390625,
3031
+ -0.0218505859375,
3032
+ -0.00714111328125,
3033
+ 0.006378173828125,
3034
+ -0.0185546875,
3035
+ 0.006683349609375,
3036
+ 0.00933837890625,
3037
+ -0.0166015625,
3038
+ -0.00604248046875,
3039
+ -0.01043701171875,
3040
+ -0.00994873046875,
3041
+ 0.023681640625,
3042
+ 0.02978515625,
3043
+ -0.000629425048828125,
3044
+ 0.0279541015625,
3045
+ -0.0245361328125,
3046
+ 0.00537109375,
3047
+ 0.0079345703125,
3048
+ 0.034912109375,
3049
+ -0.018310546875,
3050
+ 0.01495361328125,
3051
+ 0.0267333984375,
3052
+ 0.01080322265625,
3053
+ -0.01531982421875,
3054
+ -0.01287841796875,
3055
+ -0.0079345703125,
3056
+ -0.005706787109375,
3057
+ 0.0220947265625,
3058
+ -0.007171630859375,
3059
+ -0.0115966796875,
3060
+ -0.0252685546875,
3061
+ -0.0167236328125,
3062
+ -0.019287109375,
3063
+ 0.00139617919921875,
3064
+ 0.00885009765625,
3065
+ -0.0262451171875,
3066
+ 0.010009765625,
3067
+ 0.0157470703125,
3068
+ -0.01531982421875,
3069
+ 0.006591796875,
3070
+ -0.015869140625,
3071
+ -0.0206298828125,
3072
+ 0.0019378662109375,
3073
+ 0.0068359375,
3074
+ -0.00927734375,
3075
+ -0.03466796875,
3076
+ 0.0020294189453125,
3077
+ 0.0152587890625,
3078
+ 0.00921630859375,
3079
+ 0.013916015625,
3080
+ 0.012939453125,
3081
+ 0.005584716796875,
3082
+ 0.003814697265625,
3083
+ -0.0059814453125,
3084
+ -0.0201416015625,
3085
+ -0.02978515625,
3086
+ 0.00811767578125,
3087
+ 0.0191650390625,
3088
+ -0.006744384765625,
3089
+ -0.005706787109375,
3090
+ 0.01531982421875,
3091
+ 0.0107421875,
3092
+ -0.0086669921875,
3093
+ 0.038818359375,
3094
+ -0.0185546875,
3095
+ 0.0245361328125,
3096
+ 0.006103515625,
3097
+ -0.01470947265625,
3098
+ -0.0240478515625,
3099
+ -0.00885009765625,
3100
+ 0.01007080078125,
3101
+ 0.01611328125,
3102
+ -0.03369140625,
3103
+ 0.0157470703125,
3104
+ -0.012939453125,
3105
+ 0.005950927734375,
3106
+ -0.00182342529296875,
3107
+ 0.01519775390625,
3108
+ 0.0022125244140625,
3109
+ 6.771087646484375e-05,
3110
+ -0.004730224609375,
3111
+ -0.02197265625,
3112
+ -0.004730224609375,
3113
+ -0.014892578125,
3114
+ -0.0213623046875,
3115
+ -0.01611328125,
3116
+ 0.01458740234375,
3117
+ -0.01214599609375,
3118
+ -0.00909423828125,
3119
+ -0.00927734375,
3120
+ 0.006072998046875,
3121
+ -0.003936767578125,
3122
+ -0.02001953125,
3123
+ -0.0113525390625,
3124
+ 0.002960205078125,
3125
+ -0.004119873046875,
3126
+ 0.0022735595703125,
3127
+ -0.01513671875,
3128
+ 0.027587890625,
3129
+ -0.01251220703125,
3130
+ -0.0027923583984375,
3131
+ 0.006439208984375,
3132
+ -0.0079345703125,
3133
+ 0.0185546875,
3134
+ -0.00933837890625,
3135
+ -0.0224609375,
3136
+ 0.0166015625,
3137
+ -0.00848388671875,
3138
+ -0.00408935546875,
3139
+ -0.006927490234375,
3140
+ 0.0120849609375,
3141
+ 0.0048828125,
3142
+ 0.0211181640625,
3143
+ 0.01904296875,
3144
+ 0.0166015625,
3145
+ 0.0014801025390625,
3146
+ 0.00823974609375,
3147
+ -0.02197265625,
3148
+ -0.00078582763671875,
3149
+ -0.00738525390625,
3150
+ 0.01483154296875,
3151
+ -0.0025482177734375,
3152
+ 0.00116729736328125,
3153
+ -0.0223388671875,
3154
+ -0.0007171630859375,
3155
+ 0.012939453125,
3156
+ 0.006866455078125,
3157
+ 0.0103759765625,
3158
+ -0.0042724609375,
3159
+ 0.02001953125,
3160
+ -0.0299072265625,
3161
+ 0.0184326171875,
3162
+ 0.0164794921875,
3163
+ -0.0020599365234375,
3164
+ -0.018798828125,
3165
+ 0.0123291015625,
3166
+ 0.0111083984375,
3167
+ 0.0019989013671875,
3168
+ 0.0201416015625,
3169
+ -0.000370025634765625,
3170
+ 0.0203857421875,
3171
+ 0.006103515625,
3172
+ -0.01104736328125,
3173
+ -0.01708984375,
3174
+ 0.01068115234375,
3175
+ -0.00139617919921875,
3176
+ -0.021240234375,
3177
+ 0.0019378662109375,
3178
+ 0.006256103515625,
3179
+ 0.0101318359375,
3180
+ 0.00811767578125,
3181
+ 0.00579833984375,
3182
+ -0.0115966796875,
3183
+ 0.0098876953125,
3184
+ 0.0023651123046875,
3185
+ 0.00022411346435546875,
3186
+ -0.0098876953125,
3187
+ 0.01422119140625,
3188
+ -0.014404296875,
3189
+ -0.025390625,
3190
+ -0.014892578125,
3191
+ -0.024658203125,
3192
+ 0.0157470703125,
3193
+ 0.00982666015625,
3194
+ -0.01043701171875,
3195
+ -0.01031494140625,
3196
+ -0.009033203125,
3197
+ 0.01287841796875,
3198
+ -0.0167236328125,
3199
+ -0.0137939453125,
3200
+ -0.0301513671875,
3201
+ -0.0230712890625,
3202
+ -0.023193359375,
3203
+ 0.016845703125,
3204
+ 0.001007080078125,
3205
+ -0.0164794921875,
3206
+ 0.000560760498046875,
3207
+ 0.00640869140625,
3208
+ -0.00897216796875,
3209
+ -0.01031494140625,
3210
+ -0.0303955078125,
3211
+ -0.0042724609375,
3212
+ -0.0269775390625,
3213
+ 0.03076171875,
3214
+ 0.0059814453125,
3215
+ -0.00616455078125,
3216
+ 0.0038604736328125,
3217
+ -0.0024261474609375,
3218
+ -0.027099609375,
3219
+ 0.01458740234375,
3220
+ 0.00128173828125,
3221
+ 0.009033203125,
3222
+ -0.01806640625,
3223
+ 0.0035858154296875,
3224
+ -0.0146484375,
3225
+ 0.0019683837890625,
3226
+ 0.015380859375,
3227
+ -0.01129150390625,
3228
+ -0.00494384765625,
3229
+ -0.00860595703125,
3230
+ -0.0128173828125,
3231
+ 0.0201416015625,
3232
+ 0.01385498046875,
3233
+ -0.00927734375,
3234
+ -0.01165771484375,
3235
+ 0.0015106201171875,
3236
+ -0.0009002685546875,
3237
+ 0.0242919921875,
3238
+ 0.00958251953125,
3239
+ 0.01422119140625,
3240
+ -0.0146484375,
3241
+ -0.020263671875,
3242
+ -0.00054931640625,
3243
+ 0.0322265625,
3244
+ 0.0194091796875,
3245
+ 0.00933837890625,
3246
+ 0.0120849609375,
3247
+ 0.01495361328125,
3248
+ -0.004302978515625,
3249
+ 0.005035400390625,
3250
+ -0.0181884765625,
3251
+ 0.00067901611328125,
3252
+ 0.005615234375,
3253
+ -0.0208740234375,
3254
+ -0.007659912109375,
3255
+ -0.0205078125,
3256
+ -0.0174560546875,
3257
+ -0.0191650390625,
3258
+ -0.00086212158203125,
3259
+ 0.02734375,
3260
+ -0.0128173828125,
3261
+ -0.0064697265625,
3262
+ -0.003204345703125,
3263
+ 0.00011777877807617188,
3264
+ -0.041259765625,
3265
+ 0.0159912109375,
3266
+ 0.0267333984375,
3267
+ -0.010009765625,
3268
+ 0.00689697265625,
3269
+ 0.026123046875,
3270
+ 0.01336669921875,
3271
+ -0.018798828125,
3272
+ -0.00125885009765625,
3273
+ -0.037109375,
3274
+ 0.0118408203125,
3275
+ 0.002777099609375,
3276
+ 0.00726318359375,
3277
+ -6.580352783203125e-05,
3278
+ 0.01300048828125,
3279
+ 0.004608154296875,
3280
+ 0.028564453125,
3281
+ -0.00112152099609375,
3282
+ -0.00701904296875,
3283
+ 0.00811767578125,
3284
+ 0.006378173828125,
3285
+ -0.0108642578125,
3286
+ -0.01226806640625,
3287
+ -0.007171630859375,
3288
+ -0.006439208984375,
3289
+ 0.025146484375,
3290
+ -0.00634765625,
3291
+ 0.007720947265625,
3292
+ 0.004241943359375,
3293
+ 0.01318359375,
3294
+ -0.005096435546875,
3295
+ 0.0157470703125,
3296
+ 0.005096435546875,
3297
+ -0.0033111572265625,
3298
+ -0.005615234375,
3299
+ 0.006072998046875,
3300
+ 0.00421142578125,
3301
+ 0.00885009765625,
3302
+ 0.01239013671875,
3303
+ -0.024658203125,
3304
+ -0.00921630859375,
3305
+ 0.03271484375,
3306
+ -0.03076171875,
3307
+ -0.010986328125,
3308
+ -0.00064849853515625,
3309
+ -0.0218505859375,
3310
+ 0.021728515625,
3311
+ 0.00151824951171875,
3312
+ -0.0015411376953125,
3313
+ -0.0012969970703125,
3314
+ 0.000576019287109375,
3315
+ 0.004608154296875,
3316
+ -0.0291748046875,
3317
+ -0.024169921875,
3318
+ 0.006591796875,
3319
+ 0.020751953125,
3320
+ 0.0106201171875,
3321
+ 0.00860595703125,
3322
+ -0.0145263671875,
3323
+ -0.0020294189453125,
3324
+ -0.0113525390625,
3325
+ 0.006378173828125,
3326
+ -0.02490234375,
3327
+ 0.024169921875,
3328
+ -0.033203125,
3329
+ -0.0142822265625,
3330
+ 0.009033203125,
3331
+ -0.001068115234375,
3332
+ 0.00592041015625,
3333
+ 0.01806640625,
3334
+ 0.0034332275390625,
3335
+ 0.0103759765625,
3336
+ -0.004669189453125,
3337
+ -0.02294921875,
3338
+ -0.0020294189453125,
3339
+ 0.0223388671875,
3340
+ 0.0186767578125,
3341
+ -0.0012054443359375,
3342
+ -0.015625,
3343
+ -0.01123046875,
3344
+ -0.002838134765625,
3345
+ 0.00982666015625,
3346
+ -0.0045166015625,
3347
+ -0.00518798828125,
3348
+ -0.00390625,
3349
+ 0.006683349609375,
3350
+ -0.033935546875,
3351
+ -0.00099945068359375,
3352
+ -0.00433349609375,
3353
+ -0.0224609375,
3354
+ -0.0107421875,
3355
+ -0.0078125,
3356
+ -0.00193023681640625,
3357
+ -0.004058837890625,
3358
+ -0.007049560546875,
3359
+ 0.0074462890625,
3360
+ 0.00029754638671875,
3361
+ 0.0279541015625,
3362
+ -0.0022125244140625,
3363
+ 0.01385498046875,
3364
+ -0.00147247314453125,
3365
+ 0.004241943359375,
3366
+ 0.01165771484375,
3367
+ -0.00048828125,
3368
+ -0.008056640625,
3369
+ -0.00092315673828125,
3370
+ -0.017578125,
3371
+ 0.0037994384765625,
3372
+ -0.006805419921875,
3373
+ -0.0184326171875,
3374
+ -0.004425048828125,
3375
+ -0.01611328125,
3376
+ -0.0164794921875,
3377
+ 0.0186767578125,
3378
+ 0.0011749267578125,
3379
+ 0.0012359619140625,
3380
+ 0.021484375,
3381
+ -0.0150146484375,
3382
+ 0.01141357421875,
3383
+ 0.012451171875,
3384
+ 0.00077056884765625,
3385
+ 0.000457763671875,
3386
+ -0.005859375,
3387
+ -0.007659912109375,
3388
+ 0.0004863739013671875,
3389
+ 0.01446533203125,
3390
+ -0.01165771484375,
3391
+ -0.0106201171875,
3392
+ -0.0194091796875,
3393
+ 0.01507568359375,
3394
+ 0.0267333984375,
3395
+ 0.01019287109375,
3396
+ 0.004852294921875,
3397
+ 0.01116943359375,
3398
+ -0.006561279296875,
3399
+ 0.0081787109375,
3400
+ -0.01104736328125,
3401
+ -0.0123291015625,
3402
+ -0.0235595703125,
3403
+ 0.0020294189453125,
3404
+ -0.01129150390625,
3405
+ -0.015380859375,
3406
+ 0.013916015625,
3407
+ -0.000942230224609375,
3408
+ 0.0018768310546875,
3409
+ 0.00555419921875,
3410
+ 0.00714111328125,
3411
+ 0.003753662109375,
3412
+ 0.0177001953125,
3413
+ -0.0038604736328125,
3414
+ -0.01007080078125,
3415
+ 0.0198974609375,
3416
+ -0.0005035400390625,
3417
+ -0.0028076171875,
3418
+ 0.0174560546875,
3419
+ 0.00799560546875,
3420
+ -0.004547119140625,
3421
+ 0.0196533203125,
3422
+ 0.0036163330078125,
3423
+ 0.01275634765625,
3424
+ 0.034423828125,
3425
+ 0.00335693359375,
3426
+ -0.00958251953125,
3427
+ 0.004547119140625,
3428
+ -0.0252685546875,
3429
+ 0.0091552734375,
3430
+ 0.000804901123046875,
3431
+ -0.01348876953125,
3432
+ -0.002166748046875,
3433
+ 0.0078125,
3434
+ 0.00726318359375,
3435
+ -0.00946044921875,
3436
+ 0.0064697265625,
3437
+ -0.010009765625,
3438
+ 0.03466796875,
3439
+ 0.0281982421875,
3440
+ -0.0108642578125,
3441
+ 0.01068115234375,
3442
+ -0.01483154296875,
3443
+ -0.0013275146484375,
3444
+ 0.01904296875,
3445
+ 0.023193359375,
3446
+ -0.0022430419921875,
3447
+ 0.00628662109375,
3448
+ 0.00732421875,
3449
+ -0.0196533203125,
3450
+ -0.00787353515625,
3451
+ 0.00897216796875,
3452
+ 0.004302978515625,
3453
+ -0.0022125244140625,
3454
+ -0.007354736328125,
3455
+ -0.00823974609375,
3456
+ 0.0172119140625,
3457
+ 0.003021240234375,
3458
+ -0.0018768310546875,
3459
+ 0.0081787109375,
3460
+ -0.0018157958984375,
3461
+ -0.0208740234375,
3462
+ -0.0096435546875,
3463
+ 0.005767822265625,
3464
+ -0.012451171875,
3465
+ -0.015380859375,
3466
+ 0.003997802734375,
3467
+ -0.0052490234375,
3468
+ -0.011962890625,
3469
+ -0.007537841796875,
3470
+ 0.00872802734375,
3471
+ -0.0155029296875,
3472
+ 0.0142822265625,
3473
+ 0.0223388671875,
3474
+ 0.03369140625,
3475
+ 0.033447265625,
3476
+ 0.0028228759765625,
3477
+ -0.005706787109375,
3478
+ 0.0036163330078125,
3479
+ -0.00982666015625,
3480
+ 0.02392578125,
3481
+ -0.01300048828125,
3482
+ 0.03515625,
3483
+ 0.00579833984375,
3484
+ -0.01239013671875,
3485
+ 0.00360107421875,
3486
+ 0.0245361328125,
3487
+ 0.0123291015625,
3488
+ -0.004852294921875,
3489
+ 0.016845703125,
3490
+ 0.00872802734375,
3491
+ 0.0184326171875,
3492
+ 0.01287841796875,
3493
+ -0.00138092041015625,
3494
+ -0.013427734375,
3495
+ -0.0224609375,
3496
+ -0.006866455078125,
3497
+ 0.0177001953125,
3498
+ 0.021240234375,
3499
+ -0.0035400390625,
3500
+ -0.021728515625,
3501
+ 8.96453857421875e-05,
3502
+ -0.00604248046875,
3503
+ -0.00994873046875,
3504
+ -0.0272216796875,
3505
+ -0.01043701171875,
3506
+ 0.0281982421875,
3507
+ -0.0294189453125,
3508
+ 0.021728515625,
3509
+ 0.033447265625,
3510
+ 0.0030670166015625,
3511
+ -0.01904296875,
3512
+ -0.000850677490234375,
3513
+ 0.00665283203125,
3514
+ -0.01220703125,
3515
+ 0.00811767578125,
3516
+ 0.001068115234375,
3517
+ 0.016845703125,
3518
+ 0.01019287109375,
3519
+ 0.0025482177734375,
3520
+ -0.01190185546875,
3521
+ 0.024169921875,
3522
+ 0.0164794921875,
3523
+ 0.0107421875,
3524
+ -0.0040283203125,
3525
+ 0.00182342529296875,
3526
+ -0.0098876953125,
3527
+ -0.0023193359375,
3528
+ -0.0010986328125,
3529
+ -0.024169921875,
3530
+ -0.00107574462890625,
3531
+ 0.02783203125,
3532
+ 0.0206298828125,
3533
+ 0.0157470703125,
3534
+ -0.023681640625,
3535
+ -0.013427734375,
3536
+ 0.006683349609375,
3537
+ -0.00927734375,
3538
+ 0.01055908203125,
3539
+ -0.003753662109375,
3540
+ -0.00726318359375,
3541
+ 0.00994873046875,
3542
+ 0.0120849609375,
3543
+ 0.018310546875,
3544
+ 0.01055908203125,
3545
+ -0.0201416015625,
3546
+ 0.01104736328125,
3547
+ 0.006561279296875,
3548
+ -0.00970458984375,
3549
+ -0.0167236328125,
3550
+ -0.0498046875,
3551
+ -0.004913330078125,
3552
+ 0.00732421875,
3553
+ -0.003936767578125,
3554
+ -0.0002651214599609375,
3555
+ -0.00823974609375,
3556
+ -0.005950927734375,
3557
+ -0.00433349609375,
3558
+ -0.01507568359375,
3559
+ 0.0159912109375,
3560
+ 0.032958984375,
3561
+ 0.0157470703125,
3562
+ -0.0096435546875,
3563
+ -0.00567626953125,
3564
+ 0.039306640625,
3565
+ -0.0235595703125,
3566
+ 0.0172119140625,
3567
+ 0.007568359375,
3568
+ 0.035888671875,
3569
+ -0.021728515625,
3570
+ -0.003936767578125,
3571
+ -0.01556396484375,
3572
+ 0.020751953125,
3573
+ -0.0150146484375,
3574
+ -0.0023345947265625,
3575
+ 0.01495361328125,
3576
+ -0.0155029296875,
3577
+ -0.01007080078125,
3578
+ -0.01251220703125,
3579
+ 0.0050048828125,
3580
+ -0.006103515625,
3581
+ 0.014892578125,
3582
+ -0.0093994140625,
3583
+ 0.004425048828125,
3584
+ 0.0025177001953125,
3585
+ 0.0361328125,
3586
+ -0.00167083740234375,
3587
+ 0.00885009765625,
3588
+ -0.0010223388671875,
3589
+ 0.0006561279296875,
3590
+ -0.0166015625,
3591
+ 0.034912109375,
3592
+ -0.03466796875,
3593
+ 0.01190185546875,
3594
+ -0.0146484375,
3595
+ 0.0169677734375,
3596
+ 0.006011962890625,
3597
+ 0.0172119140625,
3598
+ -0.00927734375,
3599
+ -0.0145263671875,
3600
+ -0.00958251953125,
3601
+ -0.0150146484375,
3602
+ -0.005340576171875,
3603
+ -0.002197265625,
3604
+ 0.0128173828125,
3605
+ 0.044189453125,
3606
+ 0.007598876953125,
3607
+ -0.0057373046875,
3608
+ 0.01129150390625,
3609
+ 0.0301513671875,
3610
+ 0.005279541015625,
3611
+ -0.0146484375,
3612
+ -0.0234375,
3613
+ -0.00848388671875,
3614
+ -0.00075531005859375,
3615
+ -0.005706787109375,
3616
+ -0.01214599609375,
3617
+ 0.009033203125,
3618
+ 0.00193023681640625,
3619
+ 0.00927734375,
3620
+ -0.016845703125,
3621
+ 0.006195068359375,
3622
+ -0.033935546875,
3623
+ 0.0030364990234375,
3624
+ 0.001556396484375,
3625
+ 0.00872802734375,
3626
+ 0.04052734375,
3627
+ -0.01953125,
3628
+ -0.01312255859375,
3629
+ -0.015380859375,
3630
+ 0.022705078125,
3631
+ -0.01385498046875,
3632
+ 0.0244140625,
3633
+ 0.004669189453125,
3634
+ -0.00439453125,
3635
+ -0.004669189453125,
3636
+ -0.012451171875,
3637
+ 0.026123046875,
3638
+ -0.025634765625,
3639
+ 0.035888671875,
3640
+ 0.000598907470703125,
3641
+ 0.02685546875,
3642
+ 0.0037384033203125,
3643
+ -0.0308837890625,
3644
+ -0.0322265625,
3645
+ -0.0103759765625,
3646
+ -0.00194549560546875,
3647
+ -0.003021240234375,
3648
+ 0.010009765625,
3649
+ -0.0026397705078125,
3650
+ 0.0140380859375,
3651
+ -0.0159912109375,
3652
+ -0.00909423828125,
3653
+ -0.003082275390625,
3654
+ 0.004180908203125,
3655
+ 0.017333984375,
3656
+ -0.00191497802734375,
3657
+ -0.0025482177734375,
3658
+ 0.00958251953125,
3659
+ -0.010986328125,
3660
+ 0.0172119140625,
3661
+ -0.0023956298828125,
3662
+ -0.01025390625,
3663
+ -0.01397705078125,
3664
+ 0.02001953125,
3665
+ -0.0023956298828125,
3666
+ -0.0201416015625,
3667
+ 0.0196533203125,
3668
+ 0.0031280517578125,
3669
+ 0.003265380859375,
3670
+ -0.00689697265625,
3671
+ 0.022705078125,
3672
+ -0.0225830078125,
3673
+ 0.0028076171875,
3674
+ -0.0322265625,
3675
+ 0.03271484375,
3676
+ -0.0106201171875,
3677
+ 0.002197265625,
3678
+ 0.01171875,
3679
+ 0.022705078125,
3680
+ -0.033447265625,
3681
+ 0.0125732421875,
3682
+ 0.0181884765625,
3683
+ -0.023193359375,
3684
+ -0.0201416015625,
3685
+ -0.013671875,
3686
+ 0.0081787109375,
3687
+ 0.004547119140625,
3688
+ -0.0225830078125,
3689
+ 0.005615234375,
3690
+ -0.02490234375,
3691
+ 0.002899169921875,
3692
+ 0.00421142578125,
3693
+ 0.018798828125,
3694
+ 0.02197265625,
3695
+ -0.002838134765625,
3696
+ -0.041748046875,
3697
+ 0.01446533203125,
3698
+ -0.018798828125,
3699
+ -0.006591796875,
3700
+ -0.0185546875,
3701
+ 0.01031494140625,
3702
+ -0.008544921875,
3703
+ 0.028076171875,
3704
+ 0.0311279296875,
3705
+ 0.031005859375,
3706
+ 8.296966552734375e-05,
3707
+ 0.01953125,
3708
+ -0.00469970703125,
3709
+ 0.01397705078125,
3710
+ 0.031982421875,
3711
+ 0.00012969970703125,
3712
+ 0.004791259765625,
3713
+ 0.0023193359375,
3714
+ 0.005889892578125,
3715
+ 0.006195068359375,
3716
+ -0.010009765625,
3717
+ 0.006011962890625,
3718
+ -0.0179443359375,
3719
+ -7.486343383789062e-05,
3720
+ -0.000751495361328125,
3721
+ 0.01171875,
3722
+ 0.0027008056640625,
3723
+ -0.00579833984375,
3724
+ 0.0012664794921875,
3725
+ 0.004913330078125,
3726
+ -0.02880859375,
3727
+ -0.017333984375,
3728
+ -0.016845703125,
3729
+ 0.00390625,
3730
+ 0.013916015625,
3731
+ 0.001617431640625,
3732
+ 0.0123291015625,
3733
+ -0.015869140625,
3734
+ -0.0179443359375,
3735
+ -0.01416015625,
3736
+ 0.0291748046875,
3737
+ 0.002166748046875,
3738
+ -0.0101318359375,
3739
+ -0.01220703125,
3740
+ -0.00531005859375,
3741
+ -0.01220703125,
3742
+ -0.027587890625,
3743
+ -0.01611328125,
3744
+ -0.01312255859375,
3745
+ -0.004913330078125,
3746
+ -0.0054931640625,
3747
+ 0.0164794921875,
3748
+ 0.002960205078125,
3749
+ 0.01531982421875,
3750
+ -0.0025634765625,
3751
+ -0.0201416015625,
3752
+ 0.0023040771484375,
3753
+ -0.0194091796875,
3754
+ 0.00098419189453125,
3755
+ 0.0050048828125,
3756
+ 0.00078582763671875,
3757
+ -0.01177978515625,
3758
+ 0.02099609375,
3759
+ 0.0299072265625,
3760
+ -0.01031494140625,
3761
+ -0.004180908203125,
3762
+ -0.01104736328125,
3763
+ 0.01043701171875,
3764
+ -0.02001953125,
3765
+ 0.00518798828125,
3766
+ -0.02001953125,
3767
+ 0.0021209716796875,
3768
+ -0.0079345703125,
3769
+ 0.033447265625,
3770
+ 0.01068115234375,
3771
+ -0.020263671875,
3772
+ 0.0025177001953125,
3773
+ 0.00537109375,
3774
+ 0.01434326171875,
3775
+ -0.03173828125,
3776
+ 0.00958251953125,
3777
+ -0.0244140625,
3778
+ -0.006195068359375,
3779
+ 0.00139617919921875,
3780
+ 0.01220703125,
3781
+ 0.0033721923828125,
3782
+ 0.0072021484375,
3783
+ -0.036865234375,
3784
+ -0.007354736328125,
3785
+ -0.01092529296875,
3786
+ -0.002227783203125,
3787
+ -0.005279541015625,
3788
+ -0.004364013671875,
3789
+ -0.025634765625,
3790
+ 0.0062255859375,
3791
+ 0.0478515625,
3792
+ 0.01202392578125,
3793
+ -0.01239013671875,
3794
+ -0.0072021484375,
3795
+ 0.00372314453125,
3796
+ -0.01531982421875,
3797
+ 0.0262451171875,
3798
+ 0.004913330078125,
3799
+ -0.020751953125,
3800
+ -0.0252685546875,
3801
+ 0.019287109375,
3802
+ -0.0228271484375,
3803
+ 0.0289306640625,
3804
+ -0.007781982421875,
3805
+ -0.0033721923828125,
3806
+ 0.000827789306640625,
3807
+ -0.00506591796875,
3808
+ -0.0244140625,
3809
+ -0.0108642578125,
3810
+ -0.02587890625,
3811
+ -0.034423828125,
3812
+ 0.03125,
3813
+ -0.018798828125,
3814
+ -0.021728515625,
3815
+ 0.00787353515625,
3816
+ 0.01251220703125,
3817
+ -0.0089111328125,
3818
+ -0.0023956298828125,
3819
+ 0.0184326171875,
3820
+ 0.006988525390625,
3821
+ -0.0179443359375,
3822
+ -0.004119873046875,
3823
+ 0.003448486328125,
3824
+ -0.03466796875,
3825
+ -0.01025390625,
3826
+ -0.002532958984375,
3827
+ 0.007476806640625,
3828
+ 0.016845703125,
3829
+ 0.0203857421875,
3830
+ -0.0230712890625,
3831
+ 0.033203125,
3832
+ -0.001190185546875,
3833
+ -0.009033203125,
3834
+ -0.02099609375,
3835
+ -0.006195068359375,
3836
+ -0.0302734375,
3837
+ -0.00604248046875,
3838
+ 0.02099609375,
3839
+ 0.021728515625,
3840
+ -0.00677490234375,
3841
+ -0.012939453125,
3842
+ 0.01324462890625,
3843
+ -0.018798828125,
3844
+ 0.00052642822265625,
3845
+ -0.0201416015625,
3846
+ -0.00933837890625,
3847
+ 0.0096435546875,
3848
+ -0.0101318359375,
3849
+ -0.007293701171875,
3850
+ -0.022216796875,
3851
+ 0.006103515625,
3852
+ -0.019775390625,
3853
+ 0.0194091796875,
3854
+ 0.009765625,
3855
+ -0.01531982421875,
3856
+ 0.00396728515625,
3857
+ 0.0087890625,
3858
+ -0.0196533203125,
3859
+ -0.01171875,
3860
+ 0.03857421875,
3861
+ -0.0220947265625,
3862
+ -0.0205078125,
3863
+ 0.0167236328125,
3864
+ -0.003570556640625,
3865
+ -0.005584716796875,
3866
+ 0.0277099609375,
3867
+ 0.0038299560546875,
3868
+ 1.5854835510253906e-05,
3869
+ 0.0031585693359375,
3870
+ 0.0179443359375,
3871
+ -0.01177978515625,
3872
+ 0.0010528564453125,
3873
+ 0.0142822265625,
3874
+ -0.004669189453125,
3875
+ -0.0089111328125,
3876
+ -0.0294189453125,
3877
+ 0.0031890869140625,
3878
+ 0.0146484375,
3879
+ 0.01153564453125,
3880
+ -0.0274658203125,
3881
+ 0.0225830078125,
3882
+ -0.0135498046875,
3883
+ 0.003204345703125,
3884
+ 0.0186767578125,
3885
+ 0.0179443359375,
3886
+ 0.015869140625,
3887
+ -0.0169677734375,
3888
+ 0.004486083984375,
3889
+ -0.0042724609375,
3890
+ -0.01019287109375,
3891
+ 0.01251220703125,
3892
+ 0.007049560546875,
3893
+ 0.004486083984375,
3894
+ -0.00799560546875,
3895
+ -0.0034332275390625,
3896
+ -0.01361083984375,
3897
+ 0.00897216796875,
3898
+ 0.028564453125,
3899
+ -0.00360107421875,
3900
+ -0.01904296875,
3901
+ -0.001312255859375,
3902
+ -0.0252685546875,
3903
+ 0.0025787353515625,
3904
+ 0.0177001953125,
3905
+ 0.01373291015625,
3906
+ 0.01019287109375,
3907
+ -0.01116943359375,
3908
+ 0.0255126953125,
3909
+ -0.0028228759765625,
3910
+ 0.00701904296875,
3911
+ -0.015869140625,
3912
+ -0.0177001953125,
3913
+ -0.010009765625,
3914
+ 0.003662109375,
3915
+ 0.001434326171875,
3916
+ 0.01361083984375,
3917
+ -0.00994873046875,
3918
+ 0.00830078125,
3919
+ 0.0106201171875,
3920
+ 0.0196533203125,
3921
+ 0.016357421875,
3922
+ 0.01318359375,
3923
+ -0.006805419921875,
3924
+ -0.0014801025390625,
3925
+ 0.000553131103515625,
3926
+ 0.0208740234375,
3927
+ -4.470348358154297e-06,
3928
+ 0.0111083984375,
3929
+ 0.01220703125,
3930
+ 0.025390625,
3931
+ 0.006591796875,
3932
+ 0.0211181640625,
3933
+ 0.007598876953125,
3934
+ -0.00170135498046875,
3935
+ -0.0079345703125,
3936
+ 0.0010986328125,
3937
+ -0.00860595703125,
3938
+ -0.027099609375,
3939
+ -0.006500244140625,
3940
+ -0.0054931640625,
3941
+ 0.01806640625,
3942
+ 0.00182342529296875,
3943
+ 0.0108642578125,
3944
+ -0.0157470703125,
3945
+ 0.02587890625,
3946
+ 0.006927490234375,
3947
+ -0.01300048828125,
3948
+ 0.024658203125,
3949
+ 0.00396728515625,
3950
+ 0.017822265625,
3951
+ 0.01239013671875,
3952
+ 0.006195068359375,
3953
+ 0.0016021728515625,
3954
+ -0.0205078125,
3955
+ -0.01904296875,
3956
+ 0.0111083984375,
3957
+ -0.006561279296875,
3958
+ -0.0322265625,
3959
+ 0.01123046875,
3960
+ -0.012939453125,
3961
+ 0.0225830078125,
3962
+ -0.0045166015625,
3963
+ 0.0015106201171875,
3964
+ -0.0274658203125,
3965
+ -0.00092315673828125,
3966
+ 0.0022430419921875,
3967
+ 0.0079345703125,
3968
+ 0.0155029296875,
3969
+ -0.01904296875,
3970
+ 0.01104736328125,
3971
+ -0.00604248046875,
3972
+ 0.0035400390625,
3973
+ 0.01397705078125,
3974
+ 0.01513671875,
3975
+ -0.0302734375,
3976
+ -0.022705078125,
3977
+ -0.0181884765625,
3978
+ 0.0166015625,
3979
+ 0.001800537109375,
3980
+ -0.004852294921875,
3981
+ 0.0103759765625,
3982
+ 0.004058837890625,
3983
+ 0.003204345703125,
3984
+ -0.031982421875,
3985
+ -0.00604248046875,
3986
+ -0.019287109375,
3987
+ -0.00347900390625,
3988
+ 0.0234375,
3989
+ -0.0299072265625,
3990
+ 0.00921630859375,
3991
+ 0.0089111328125,
3992
+ -0.002471923828125,
3993
+ 0.0101318359375,
3994
+ 0.021484375,
3995
+ 0.0015716552734375,
3996
+ -0.030029296875,
3997
+ 0.0037841796875,
3998
+ 0.01068115234375,
3999
+ 0.001800537109375,
4000
+ -0.015380859375,
4001
+ 0.015869140625,
4002
+ -0.005035400390625,
4003
+ 0.021484375,
4004
+ -0.01080322265625,
4005
+ -0.0205078125,
4006
+ 0.0135498046875,
4007
+ -0.0108642578125,
4008
+ -0.0029449462890625,
4009
+ -0.0201416015625,
4010
+ 0.003204345703125,
4011
+ 0.01507568359375,
4012
+ -0.01409912109375,
4013
+ -0.0157470703125,
4014
+ 0.018310546875,
4015
+ -0.0027008056640625,
4016
+ -0.01239013671875,
4017
+ 0.0281982421875,
4018
+ -0.00970458984375,
4019
+ -0.00372314453125,
4020
+ 0.0017547607421875,
4021
+ -0.0032196044921875,
4022
+ -0.01336669921875,
4023
+ 0.00701904296875,
4024
+ 0.00555419921875,
4025
+ -0.004486083984375,
4026
+ 0.013671875,
4027
+ -0.0179443359375,
4028
+ -0.00408935546875,
4029
+ 0.0185546875,
4030
+ 0.00811767578125,
4031
+ -0.009033203125,
4032
+ -0.005096435546875,
4033
+ 0.021240234375,
4034
+ -0.003997802734375,
4035
+ -0.005096435546875,
4036
+ 0.0299072265625,
4037
+ -0.01507568359375,
4038
+ -0.003814697265625,
4039
+ 0.011962890625,
4040
+ -0.0022735595703125,
4041
+ -0.038818359375,
4042
+ -0.01611328125,
4043
+ 0.0072021484375,
4044
+ 0.0014801025390625,
4045
+ -0.015869140625,
4046
+ -0.0191650390625,
4047
+ -0.0235595703125,
4048
+ 3.790855407714844e-05,
4049
+ -0.0303955078125,
4050
+ 0.02685546875,
4051
+ 0.0040283203125,
4052
+ 0.01708984375,
4053
+ 0.014892578125,
4054
+ -0.0115966796875,
4055
+ -0.0033111572265625,
4056
+ 0.01251220703125,
4057
+ -0.01080322265625,
4058
+ -0.0125732421875,
4059
+ -0.01007080078125,
4060
+ 0.01080322265625,
4061
+ 0.0240478515625,
4062
+ 0.0174560546875,
4063
+ 0.028076171875,
4064
+ -0.0203857421875,
4065
+ 0.00518798828125,
4066
+ 0.0184326171875,
4067
+ -0.00909423828125,
4068
+ -0.003570556640625,
4069
+ 0.00555419921875,
4070
+ 0.0111083984375,
4071
+ 0.0133056640625,
4072
+ -0.0220947265625,
4073
+ -0.00762939453125,
4074
+ -0.005279541015625,
4075
+ -0.0235595703125,
4076
+ -0.01263427734375,
4077
+ -0.0164794921875,
4078
+ 0.017822265625,
4079
+ 0.0250244140625,
4080
+ -0.0108642578125,
4081
+ 0.033447265625,
4082
+ -0.01904296875,
4083
+ -0.004119873046875,
4084
+ -0.0031585693359375,
4085
+ -0.034423828125,
4086
+ 0.0196533203125,
4087
+ 0.031982421875,
4088
+ 0.0201416015625,
4089
+ 0.01116943359375,
4090
+ -0.0205078125,
4091
+ 0.037353515625,
4092
+ 0.015869140625,
4093
+ 0.006072998046875,
4094
+ 0.01507568359375,
4095
+ 0.002777099609375,
4096
+ 0.0130615234375,
4097
+ 0.000354766845703125,
4098
+ -0.01519775390625,
4099
+ 0.01422119140625,
4100
+ -0.0045166015625,
4101
+ 0.0086669921875,
4102
+ 8.726119995117188e-05,
4103
+ -0.003143310546875,
4104
+ 0.01318359375,
4105
+ 0.0167236328125,
4106
+ -0.0301513671875,
4107
+ 0.001861572265625,
4108
+ 0.026123046875,
4109
+ -0.01458740234375,
4110
+ 0.029052734375,
4111
+ 0.0012969970703125,
4112
+ 0.0027923583984375,
4113
+ 0.003662109375,
4114
+ 0.0260009765625,
4115
+ 0.0126953125,
4116
+ -0.005615234375,
4117
+ 0.01007080078125,
4118
+ 0.002166748046875,
4119
+ 0.004180908203125,
4120
+ -0.0035858154296875,
4121
+ -0.000125885009765625,
4122
+ 0.01556396484375,
4123
+ 0.005950927734375,
4124
+ 0.0184326171875,
4125
+ 0.00075531005859375
4126
+ ],
4127
+ "image_seq_length": 576,
4128
+ "image_token_index": 32000,
4129
+ "model_type": "llava_next",
4130
+ "multimodal_projector_bias": true,
4131
+ "projector_hidden_act": "gelu",
4132
+ "text_config": {
4133
+ "_name_or_path": "mistralai/Mistral-7B-Instruct-v0.2",
4134
+ "architectures": [
4135
+ "MistralForCausalLM"
4136
+ ],
4137
+ "attention_dropout": 0.0,
4138
+ "head_dim": 128,
4139
+ "hidden_act": "silu",
4140
+ "hidden_size": 4096,
4141
+ "initializer_range": 0.02,
4142
+ "intermediate_size": 14336,
4143
+ "max_position_embeddings": 32768,
4144
+ "model_type": "mistral",
4145
+ "num_attention_heads": 32,
4146
+ "num_hidden_layers": 32,
4147
+ "num_key_value_heads": 8,
4148
+ "rms_norm_eps": 1e-05,
4149
+ "rope_theta": 1000000.0,
4150
+ "sliding_window": null,
4151
+ "torch_dtype": "float16",
4152
+ "use_cache": true,
4153
+ "vocab_size": 32064
4154
+ },
4155
+ "tie_word_embeddings": false,
4156
+ "torch_dtype": "float16",
4157
+ "transformers_version": "4.51.3",
4158
+ "use_image_newline_parameter": true,
4159
+ "vision_config": {
4160
+ "attention_dropout": 0.0,
4161
+ "hidden_act": "quick_gelu",
4162
+ "hidden_size": 1024,
4163
+ "image_size": 336,
4164
+ "initializer_factor": 1.0,
4165
+ "initializer_range": 0.02,
4166
+ "intermediate_size": 4096,
4167
+ "layer_norm_eps": 1e-05,
4168
+ "model_type": "clip_vision_model",
4169
+ "num_attention_heads": 16,
4170
+ "num_channels": 3,
4171
+ "num_hidden_layers": 24,
4172
+ "patch_size": 14,
4173
+ "projection_dim": 768,
4174
+ "torch_dtype": "float16",
4175
+ "vocab_size": 32000
4176
+ },
4177
+ "vision_feature_layer": -2,
4178
+ "vision_feature_select_strategy": "default",
4179
+ "vocab_size": 32064
4180
+ }
generation_config.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 1,
4
+ "eos_token_id": 2,
5
+ "transformers_version": "4.51.3"
6
+ }
openvino_config.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dtype": "int4",
3
+ "input_info": null,
4
+ "optimum_version": "1.27.0",
5
+ "quantization_config": {
6
+ "all_layers": null,
7
+ "backup_precision": null,
8
+ "bits": 4,
9
+ "dataset": null,
10
+ "dtype": "int4",
11
+ "gptq": null,
12
+ "group_size": 128,
13
+ "ignored_scope": null,
14
+ "lora_correction": null,
15
+ "num_samples": null,
16
+ "processor": null,
17
+ "quant_method": "default",
18
+ "ratio": 1.0,
19
+ "scale_estimation": null,
20
+ "sensitivity_metric": null,
21
+ "statistics_path": null,
22
+ "sym": false,
23
+ "tokenizer": null,
24
+ "trust_remote_code": false
25
+ },
26
+ "save_onnx_model": false,
27
+ "transformers_version": "4.51.3"
28
+ }
openvino_detokenizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ed21d5e1462601c6497c05b8ebf96f96a0871ac70d93da3e204708ba2766793
3
+ size 460725
openvino_detokenizer.xml ADDED
@@ -0,0 +1,353 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <net name="detokenizer" version="11">
3
+ <layers>
4
+ <layer id="0" name="Parameter_1978251" type="Parameter" version="opset1">
5
+ <data shape="?,?" element_type="i64" />
6
+ <output>
7
+ <port id="0" precision="I64" names="Parameter_1978251">
8
+ <dim>-1</dim>
9
+ <dim>-1</dim>
10
+ </port>
11
+ </output>
12
+ </layer>
13
+ <layer id="1" name="Convert_1978446" type="Convert" version="opset1">
14
+ <data destination_type="i32" />
15
+ <input>
16
+ <port id="0" precision="I64">
17
+ <dim>-1</dim>
18
+ <dim>-1</dim>
19
+ </port>
20
+ </input>
21
+ <output>
22
+ <port id="1" precision="I32">
23
+ <dim>-1</dim>
24
+ <dim>-1</dim>
25
+ </port>
26
+ </output>
27
+ </layer>
28
+ <layer id="2" name="Constant_1978204" type="Const" version="opset1">
29
+ <data element_type="i32" shape="32002" offset="0" size="128008" />
30
+ <output>
31
+ <port id="0" precision="I32">
32
+ <dim>32002</dim>
33
+ </port>
34
+ </output>
35
+ </layer>
36
+ <layer id="3" name="Constant_1978206" type="Const" version="opset1">
37
+ <data element_type="i32" shape="32002" offset="128008" size="128008" />
38
+ <output>
39
+ <port id="0" precision="I32">
40
+ <dim>32002</dim>
41
+ </port>
42
+ </output>
43
+ </layer>
44
+ <layer id="4" name="Constant_1978208" type="Const" version="opset1">
45
+ <data element_type="u8" shape="204682" offset="256016" size="204682" />
46
+ <output>
47
+ <port id="0" precision="U8">
48
+ <dim>204682</dim>
49
+ </port>
50
+ </output>
51
+ </layer>
52
+ <layer id="5" name="Slice_1978256" type="Const" version="opset1">
53
+ <data element_type="i32" shape="5" offset="460698" size="20" />
54
+ <output>
55
+ <port id="0" precision="I32">
56
+ <dim>5</dim>
57
+ </port>
58
+ </output>
59
+ </layer>
60
+ <layer id="6" name="VocabDecoder_1978258" type="VocabDecoder" version="extension">
61
+ <data skip_tokens="" />
62
+ <input>
63
+ <port id="0" precision="I32">
64
+ <dim>-1</dim>
65
+ <dim>-1</dim>
66
+ </port>
67
+ <port id="1" precision="I32">
68
+ <dim>32002</dim>
69
+ </port>
70
+ <port id="2" precision="I32">
71
+ <dim>32002</dim>
72
+ </port>
73
+ <port id="3" precision="U8">
74
+ <dim>204682</dim>
75
+ </port>
76
+ <port id="4" precision="I32">
77
+ <dim>5</dim>
78
+ </port>
79
+ </input>
80
+ <output>
81
+ <port id="5" precision="I32">
82
+ <dim>-1</dim>
83
+ </port>
84
+ <port id="6" precision="I32">
85
+ <dim>-1</dim>
86
+ </port>
87
+ <port id="7" precision="I32">
88
+ <dim>-1</dim>
89
+ </port>
90
+ <port id="8" precision="I32">
91
+ <dim>-1</dim>
92
+ </port>
93
+ <port id="9" precision="U8">
94
+ <dim>-1</dim>
95
+ </port>
96
+ </output>
97
+ </layer>
98
+ <layer id="7" name="Constant_1978260" type="Const" version="opset1">
99
+ <data element_type="u8" shape="3" offset="460718" size="3" />
100
+ <output>
101
+ <port id="0" precision="U8">
102
+ <dim>3</dim>
103
+ </port>
104
+ </output>
105
+ </layer>
106
+ <layer id="8" name="Constant_1978262" type="Const" version="opset1">
107
+ <data element_type="u8" shape="1" offset="460721" size="1" />
108
+ <output>
109
+ <port id="0" precision="U8">
110
+ <dim>1</dim>
111
+ </port>
112
+ </output>
113
+ </layer>
114
+ <layer id="9" name="RegexNormalization_1978263" type="RegexNormalization" version="extension">
115
+ <data global_replace="true" />
116
+ <input>
117
+ <port id="0" precision="I32">
118
+ <dim>-1</dim>
119
+ </port>
120
+ <port id="1" precision="I32">
121
+ <dim>-1</dim>
122
+ </port>
123
+ <port id="2" precision="U8">
124
+ <dim>-1</dim>
125
+ </port>
126
+ <port id="3" precision="U8">
127
+ <dim>3</dim>
128
+ </port>
129
+ <port id="4" precision="U8">
130
+ <dim>1</dim>
131
+ </port>
132
+ </input>
133
+ <output>
134
+ <port id="5" precision="I32">
135
+ <dim>-1</dim>
136
+ </port>
137
+ <port id="6" precision="I32">
138
+ <dim>-1</dim>
139
+ </port>
140
+ <port id="7" precision="U8">
141
+ <dim>-1</dim>
142
+ </port>
143
+ </output>
144
+ </layer>
145
+ <layer id="10" name="ByteFallback_1978264" type="ByteFallback" version="extension">
146
+ <input>
147
+ <port id="0" precision="I32">
148
+ <dim>-1</dim>
149
+ </port>
150
+ <port id="1" precision="I32">
151
+ <dim>-1</dim>
152
+ </port>
153
+ <port id="2" precision="U8">
154
+ <dim>-1</dim>
155
+ </port>
156
+ </input>
157
+ <output>
158
+ <port id="3" precision="I32">
159
+ <dim>-1</dim>
160
+ </port>
161
+ <port id="4" precision="I32">
162
+ <dim>-1</dim>
163
+ </port>
164
+ <port id="5" precision="U8">
165
+ <dim>-1</dim>
166
+ </port>
167
+ </output>
168
+ </layer>
169
+ <layer id="11" name="FuzeRagged_1978265" type="FuzeRagged" version="extension">
170
+ <input>
171
+ <port id="0" precision="I32">
172
+ <dim>-1</dim>
173
+ </port>
174
+ <port id="1" precision="I32">
175
+ <dim>-1</dim>
176
+ </port>
177
+ <port id="2" precision="I32">
178
+ <dim>-1</dim>
179
+ </port>
180
+ <port id="3" precision="I32">
181
+ <dim>-1</dim>
182
+ </port>
183
+ </input>
184
+ <output>
185
+ <port id="4" precision="I32">
186
+ <dim>-1</dim>
187
+ </port>
188
+ <port id="5" precision="I32">
189
+ <dim>-1</dim>
190
+ </port>
191
+ </output>
192
+ </layer>
193
+ <layer id="12" name="Constant_1978267" type="Const" version="opset1">
194
+ <data element_type="u8" shape="2" offset="460722" size="2" />
195
+ <output>
196
+ <port id="0" precision="U8">
197
+ <dim>2</dim>
198
+ </port>
199
+ </output>
200
+ </layer>
201
+ <layer id="13" name="Constant_1978269" type="Const" version="opset1">
202
+ <data element_type="u8" shape="0" offset="460724" size="1" />
203
+ <output>
204
+ <port id="0" precision="U8">
205
+ <dim>0</dim>
206
+ </port>
207
+ </output>
208
+ </layer>
209
+ <layer id="14" name="RegexNormalization_1978270" type="RegexNormalization" version="extension">
210
+ <data global_replace="true" />
211
+ <input>
212
+ <port id="0" precision="I32">
213
+ <dim>-1</dim>
214
+ </port>
215
+ <port id="1" precision="I32">
216
+ <dim>-1</dim>
217
+ </port>
218
+ <port id="2" precision="U8">
219
+ <dim>-1</dim>
220
+ </port>
221
+ <port id="3" precision="U8">
222
+ <dim>2</dim>
223
+ </port>
224
+ <port id="4" precision="U8">
225
+ <dim>0</dim>
226
+ </port>
227
+ </input>
228
+ <output>
229
+ <port id="5" precision="I32">
230
+ <dim>-1</dim>
231
+ </port>
232
+ <port id="6" precision="I32">
233
+ <dim>-1</dim>
234
+ </port>
235
+ <port id="7" precision="U8">
236
+ <dim>-1</dim>
237
+ </port>
238
+ </output>
239
+ </layer>
240
+ <layer id="15" name="UTF8Validate_1978271" type="UTF8Validate" version="extension">
241
+ <data replace_mode="true" />
242
+ <input>
243
+ <port id="0" precision="I32">
244
+ <dim>-1</dim>
245
+ </port>
246
+ <port id="1" precision="I32">
247
+ <dim>-1</dim>
248
+ </port>
249
+ <port id="2" precision="U8">
250
+ <dim>-1</dim>
251
+ </port>
252
+ </input>
253
+ <output>
254
+ <port id="3" precision="I32">
255
+ <dim>-1</dim>
256
+ </port>
257
+ <port id="4" precision="I32">
258
+ <dim>-1</dim>
259
+ </port>
260
+ <port id="5" precision="U8">
261
+ <dim>-1</dim>
262
+ </port>
263
+ </output>
264
+ </layer>
265
+ <layer id="16" name="StringTensorPack_1978272" type="StringTensorPack" version="opset15">
266
+ <input>
267
+ <port id="0" precision="I32">
268
+ <dim>-1</dim>
269
+ </port>
270
+ <port id="1" precision="I32">
271
+ <dim>-1</dim>
272
+ </port>
273
+ <port id="2" precision="U8">
274
+ <dim>-1</dim>
275
+ </port>
276
+ </input>
277
+ <output>
278
+ <port id="3" precision="STRING" names="Result_1978273,string_output">
279
+ <dim>-1</dim>
280
+ </port>
281
+ </output>
282
+ </layer>
283
+ <layer id="17" name="Result_1978273" type="Result" version="opset1" output_names="Result_1978273,string_output">
284
+ <input>
285
+ <port id="0" precision="STRING">
286
+ <dim>-1</dim>
287
+ </port>
288
+ </input>
289
+ </layer>
290
+ </layers>
291
+ <edges>
292
+ <edge from-layer="0" from-port="0" to-layer="1" to-port="0" />
293
+ <edge from-layer="1" from-port="1" to-layer="6" to-port="0" />
294
+ <edge from-layer="2" from-port="0" to-layer="6" to-port="1" />
295
+ <edge from-layer="3" from-port="0" to-layer="6" to-port="2" />
296
+ <edge from-layer="4" from-port="0" to-layer="6" to-port="3" />
297
+ <edge from-layer="5" from-port="0" to-layer="6" to-port="4" />
298
+ <edge from-layer="6" from-port="6" to-layer="11" to-port="1" />
299
+ <edge from-layer="6" from-port="5" to-layer="11" to-port="0" />
300
+ <edge from-layer="6" from-port="8" to-layer="9" to-port="1" />
301
+ <edge from-layer="6" from-port="7" to-layer="9" to-port="0" />
302
+ <edge from-layer="6" from-port="9" to-layer="9" to-port="2" />
303
+ <edge from-layer="7" from-port="0" to-layer="9" to-port="3" />
304
+ <edge from-layer="8" from-port="0" to-layer="9" to-port="4" />
305
+ <edge from-layer="9" from-port="5" to-layer="10" to-port="0" />
306
+ <edge from-layer="9" from-port="6" to-layer="10" to-port="1" />
307
+ <edge from-layer="9" from-port="7" to-layer="10" to-port="2" />
308
+ <edge from-layer="10" from-port="3" to-layer="11" to-port="2" />
309
+ <edge from-layer="10" from-port="4" to-layer="11" to-port="3" />
310
+ <edge from-layer="10" from-port="5" to-layer="14" to-port="2" />
311
+ <edge from-layer="11" from-port="5" to-layer="14" to-port="1" />
312
+ <edge from-layer="11" from-port="4" to-layer="14" to-port="0" />
313
+ <edge from-layer="12" from-port="0" to-layer="14" to-port="3" />
314
+ <edge from-layer="13" from-port="0" to-layer="14" to-port="4" />
315
+ <edge from-layer="14" from-port="5" to-layer="15" to-port="0" />
316
+ <edge from-layer="14" from-port="6" to-layer="15" to-port="1" />
317
+ <edge from-layer="14" from-port="7" to-layer="15" to-port="2" />
318
+ <edge from-layer="15" from-port="3" to-layer="16" to-port="0" />
319
+ <edge from-layer="15" from-port="4" to-layer="16" to-port="1" />
320
+ <edge from-layer="15" from-port="5" to-layer="16" to-port="2" />
321
+ <edge from-layer="16" from-port="3" to-layer="17" to-port="0" />
322
+ </edges>
323
+ <rt_info>
324
+ <add_attention_mask value="True" />
325
+ <add_prefix_space />
326
+ <add_special_tokens value="True" />
327
+ <bos_token_id value="1" />
328
+ <chat_template value="{{ bos_token }}{% for message in messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% if message['role'] == 'user' %}{{ '[INST] ' + message['content'] + ' [/INST]' }}{% elif message['role'] == 'assistant' %}{{ message['content'] + eos_token}}{% else %}{{ raise_exception('Only user and assistant roles are supported!') }}{% endif %}{% endfor %}" />
329
+ <clean_up_tokenization_spaces />
330
+ <detokenizer_input_type value="i64" />
331
+ <eos_token_id value="2" />
332
+ <handle_special_tokens_with_re />
333
+ <max_length />
334
+ <number_of_inputs value="1" />
335
+ <openvino_tokenizers_version value="2025.2.0.1-567-7885335c24b" />
336
+ <openvino_version value="2025.2.0-19140-c01cd93e24d-releases/2025/2" />
337
+ <original_post_processor_template value="{&quot;type&quot;: &quot;TemplateProcessing&quot;, &quot;single&quot;: [{&quot;SpecialToken&quot;: {&quot;id&quot;: &quot;&lt;s>&quot;, &quot;type_id&quot;: 0}}, {&quot;Sequence&quot;: {&quot;id&quot;: &quot;A&quot;, &quot;type_id&quot;: 0}}], &quot;pair&quot;: [{&quot;SpecialToken&quot;: {&quot;id&quot;: &quot;&lt;s>&quot;, &quot;type_id&quot;: 0}}, {&quot;Sequence&quot;: {&quot;id&quot;: &quot;A&quot;, &quot;type_id&quot;: 0}}, {&quot;SpecialToken&quot;: {&quot;id&quot;: &quot;&lt;s>&quot;, &quot;type_id&quot;: 1}}, {&quot;Sequence&quot;: {&quot;id&quot;: &quot;B&quot;, &quot;type_id&quot;: 1}}], &quot;special_tokens&quot;: {&quot;&lt;s>&quot;: {&quot;id&quot;: &quot;&lt;s>&quot;, &quot;ids&quot;: [1], &quot;tokens&quot;: [&quot;&lt;s>&quot;]}}}" />
338
+ <original_tokenizer_class value="&lt;class 'transformers.models.llama.tokenization_llama_fast.LlamaTokenizerFast'>" />
339
+ <pad_token_id value="32001" />
340
+ <processed_post_processor_template value="{&quot;single&quot;: {&quot;ids&quot;: [1, -1], &quot;type_ids&quot;: [0, 0]}, &quot;pair&quot;: {&quot;ids&quot;: [1, -1, 1, -2], &quot;type_ids&quot;: [0, 0, 1, 1]}}" />
341
+ <sentencepiece_version value="0.2.1" />
342
+ <skip_special_tokens value="True" />
343
+ <streaming_detokenizer value="False" />
344
+ <tiktoken_version value="0.9.0" />
345
+ <tokenizer_output_type value="i64" />
346
+ <tokenizers_version value="0.21.4" />
347
+ <transformers_version value="4.51.3" />
348
+ <use_max_padding value="False" />
349
+ <use_sentencepiece_backend value="False" />
350
+ <utf8_replace_mode value="replace" />
351
+ <with_detokenizer value="True" />
352
+ </rt_info>
353
+ </net>
openvino_language_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a7bf33646885d5add4126a8e2344361a2b30d8d176301cf1ddccefcda218fc50
3
+ size 3758471692
openvino_language_model.xml ADDED
The diff for this file is too large to render. See raw diff
 
openvino_text_embeddings_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:afe7eea2905d2db1929ec66b1733bff1373f24b71d86dcd75b0f1b11be3159a9
3
+ size 131398276
openvino_text_embeddings_model.xml ADDED
@@ -0,0 +1,174 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <net name="Model3" version="11">
3
+ <layers>
4
+ <layer id="0" name="input" type="Parameter" version="opset1">
5
+ <data shape="?,?" element_type="i64" />
6
+ <output>
7
+ <port id="0" precision="I64" names="input">
8
+ <dim>-1</dim>
9
+ <dim>-1</dim>
10
+ </port>
11
+ </output>
12
+ </layer>
13
+ <layer id="1" name="self.weight" type="Const" version="opset1">
14
+ <data element_type="i8" shape="32064, 4096" offset="0" size="131334144" />
15
+ <output>
16
+ <port id="0" precision="I8">
17
+ <dim>32064</dim>
18
+ <dim>4096</dim>
19
+ </port>
20
+ </output>
21
+ </layer>
22
+ <layer id="2" name="Convert_1281676" type="Convert" version="opset1">
23
+ <data destination_type="f16" />
24
+ <input>
25
+ <port id="0" precision="I8">
26
+ <dim>32064</dim>
27
+ <dim>4096</dim>
28
+ </port>
29
+ </input>
30
+ <output>
31
+ <port id="1" precision="FP16">
32
+ <dim>32064</dim>
33
+ <dim>4096</dim>
34
+ </port>
35
+ </output>
36
+ </layer>
37
+ <layer id="3" name="self.weight/scale" type="Const" version="opset1">
38
+ <data element_type="f16" shape="32064, 1" offset="131334144" size="64128" />
39
+ <output>
40
+ <port id="0" precision="FP16">
41
+ <dim>32064</dim>
42
+ <dim>1</dim>
43
+ </port>
44
+ </output>
45
+ </layer>
46
+ <layer id="4" name="self.weight/fq_weights_0" type="Multiply" version="opset1">
47
+ <data auto_broadcast="numpy" />
48
+ <input>
49
+ <port id="0" precision="FP16">
50
+ <dim>32064</dim>
51
+ <dim>4096</dim>
52
+ </port>
53
+ <port id="1" precision="FP16">
54
+ <dim>32064</dim>
55
+ <dim>1</dim>
56
+ </port>
57
+ </input>
58
+ <output>
59
+ <port id="2" precision="FP16">
60
+ <dim>32064</dim>
61
+ <dim>4096</dim>
62
+ </port>
63
+ </output>
64
+ </layer>
65
+ <layer id="5" name="self.weight/fq_weights_0/convert" type="Convert" version="opset1">
66
+ <data destination_type="f32" />
67
+ <input>
68
+ <port id="0" precision="FP16">
69
+ <dim>32064</dim>
70
+ <dim>4096</dim>
71
+ </port>
72
+ </input>
73
+ <output>
74
+ <port id="1" precision="FP32">
75
+ <dim>32064</dim>
76
+ <dim>4096</dim>
77
+ </port>
78
+ </output>
79
+ </layer>
80
+ <layer id="6" name="ov_ext::embedding/Convert" type="Convert" version="opset1">
81
+ <data destination_type="i32" />
82
+ <input>
83
+ <port id="0" precision="I64">
84
+ <dim>-1</dim>
85
+ <dim>-1</dim>
86
+ </port>
87
+ </input>
88
+ <output>
89
+ <port id="1" precision="I32">
90
+ <dim>-1</dim>
91
+ <dim>-1</dim>
92
+ </port>
93
+ </output>
94
+ </layer>
95
+ <layer id="7" name="ov_ext::embedding/Constant" type="Const" version="opset1">
96
+ <data element_type="i32" shape="" offset="131398272" size="4" />
97
+ <output>
98
+ <port id="0" precision="I32" />
99
+ </output>
100
+ </layer>
101
+ <layer id="8" name="ov_ext::embedding/Gather" type="Gather" version="opset8">
102
+ <data batch_dims="0" />
103
+ <input>
104
+ <port id="0" precision="FP32">
105
+ <dim>32064</dim>
106
+ <dim>4096</dim>
107
+ </port>
108
+ <port id="1" precision="I32">
109
+ <dim>-1</dim>
110
+ <dim>-1</dim>
111
+ </port>
112
+ <port id="2" precision="I32" />
113
+ </input>
114
+ <output>
115
+ <port id="3" precision="FP32" names="inputs_embeds">
116
+ <dim>-1</dim>
117
+ <dim>-1</dim>
118
+ <dim>4096</dim>
119
+ </port>
120
+ </output>
121
+ </layer>
122
+ <layer id="9" name="Result_20076" type="Result" version="opset1" output_names="inputs_embeds">
123
+ <input>
124
+ <port id="0" precision="FP32">
125
+ <dim>-1</dim>
126
+ <dim>-1</dim>
127
+ <dim>4096</dim>
128
+ </port>
129
+ </input>
130
+ </layer>
131
+ </layers>
132
+ <edges>
133
+ <edge from-layer="0" from-port="0" to-layer="6" to-port="0" />
134
+ <edge from-layer="1" from-port="0" to-layer="2" to-port="0" />
135
+ <edge from-layer="2" from-port="1" to-layer="4" to-port="0" />
136
+ <edge from-layer="3" from-port="0" to-layer="4" to-port="1" />
137
+ <edge from-layer="4" from-port="2" to-layer="5" to-port="0" />
138
+ <edge from-layer="5" from-port="1" to-layer="8" to-port="0" />
139
+ <edge from-layer="6" from-port="1" to-layer="8" to-port="1" />
140
+ <edge from-layer="7" from-port="0" to-layer="8" to-port="2" />
141
+ <edge from-layer="8" from-port="3" to-layer="9" to-port="0" />
142
+ </edges>
143
+ <rt_info>
144
+ <Runtime_version value="2025.2.0-19140-c01cd93e24d-releases/2025/2" />
145
+ <conversion_parameters>
146
+ <framework value="pytorch" />
147
+ <is_python_object value="True" />
148
+ </conversion_parameters>
149
+ <nncf>
150
+ <friendly_names_were_updated value="True" />
151
+ <weight_compression>
152
+ <advanced_parameters value="{'statistics_path': None, 'awq_params': {'subset_size': 32, 'percent_to_apply': 0.002, 'alpha_min': 0.0, 'alpha_max': 1.0, 'steps': 100}, 'scale_estimation_params': {'subset_size': 64, 'initial_steps': 5, 'scale_steps': 5, 'weight_penalty': -1.0}, 'gptq_params': {'damp_percent': 0.1, 'block_size': 128, 'subset_size': 128}, 'lora_correction_params': {'adapter_rank': 8, 'num_iterations': 3, 'apply_regularization': True, 'subset_size': 128, 'use_int8_adapters': True}}" />
153
+ <all_layers value="False" />
154
+ <awq value="False" />
155
+ <backup_mode value="int8_asym" />
156
+ <gptq value="False" />
157
+ <group_size value="-1" />
158
+ <ignored_scope value="[]" />
159
+ <lora_correction value="False" />
160
+ <mode value="int8_sym" />
161
+ <ratio value="1.0" />
162
+ <scale_estimation value="False" />
163
+ <sensitivity_metric value="weight_quantization_error" />
164
+ </weight_compression>
165
+ </nncf>
166
+ <optimum>
167
+ <nncf_version value="2.15.0" />
168
+ <optimum_intel_version value="1.26.0.dev0+e9c57b9" />
169
+ <optimum_version value="1.27.0" />
170
+ <pytorch_version value="2.8.0+cpu" />
171
+ <transformers_version value="4.51.3" />
172
+ </optimum>
173
+ </rt_info>
174
+ </net>
openvino_tokenizer.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:010190668a942108e7748a126e41a28c1047b66c67dcc42b19b6a5f74b07f12a
3
+ size 1810020
openvino_tokenizer.xml ADDED
@@ -0,0 +1,824 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <net name="tokenizer" version="11">
3
+ <layers>
4
+ <layer id="0" name="Parameter_1978116" type="Parameter" version="opset1">
5
+ <data shape="?" element_type="string" />
6
+ <output>
7
+ <port id="0" precision="STRING" names="Parameter_1978116">
8
+ <dim>-1</dim>
9
+ </port>
10
+ </output>
11
+ </layer>
12
+ <layer id="1" name="Constant_1978235" type="Const" version="opset1">
13
+ <data element_type="i32" shape="" offset="0" size="4" />
14
+ <output>
15
+ <port id="0" precision="I32" />
16
+ </output>
17
+ </layer>
18
+ <layer id="2" name="Constant_1978236" type="Const" version="opset1">
19
+ <data element_type="i32" shape="" offset="4" size="4" />
20
+ <output>
21
+ <port id="0" precision="I32" />
22
+ </output>
23
+ </layer>
24
+ <layer id="3" name="Constant_1978237" type="Const" version="opset1">
25
+ <data element_type="i32" shape="1" offset="4" size="4" />
26
+ <output>
27
+ <port id="0" precision="I32">
28
+ <dim>1</dim>
29
+ </port>
30
+ </output>
31
+ </layer>
32
+ <layer id="4" name="Constant_1978122" type="Const" version="opset1">
33
+ <data element_type="i64" shape="" offset="8" size="8" />
34
+ <output>
35
+ <port id="0" precision="I64" />
36
+ </output>
37
+ </layer>
38
+ <layer id="5" name="StringTensorUnpack_1978117" type="StringTensorUnpack" version="opset15">
39
+ <input>
40
+ <port id="0" precision="STRING">
41
+ <dim>-1</dim>
42
+ </port>
43
+ </input>
44
+ <output>
45
+ <port id="1" precision="I32">
46
+ <dim>-1</dim>
47
+ </port>
48
+ <port id="2" precision="I32">
49
+ <dim>-1</dim>
50
+ </port>
51
+ <port id="3" precision="U8">
52
+ <dim>-1</dim>
53
+ </port>
54
+ </output>
55
+ </layer>
56
+ <layer id="6" name="ShapeOf_1978118" type="ShapeOf" version="opset3">
57
+ <data output_type="i64" />
58
+ <input>
59
+ <port id="0" precision="I32">
60
+ <dim>-1</dim>
61
+ </port>
62
+ </input>
63
+ <output>
64
+ <port id="1" precision="I64">
65
+ <dim>1</dim>
66
+ </port>
67
+ </output>
68
+ </layer>
69
+ <layer id="7" name="Constant_1978119" type="Const" version="opset1">
70
+ <data element_type="i64" shape="" offset="8" size="8" />
71
+ <output>
72
+ <port id="0" precision="I64" />
73
+ </output>
74
+ </layer>
75
+ <layer id="8" name="Constant_1978120" type="Const" version="opset1">
76
+ <data element_type="i64" shape="" offset="8" size="8" />
77
+ <output>
78
+ <port id="0" precision="I64" />
79
+ </output>
80
+ </layer>
81
+ <layer id="9" name="Gather_1978121" type="Gather" version="opset8">
82
+ <data batch_dims="0" />
83
+ <input>
84
+ <port id="0" precision="I64">
85
+ <dim>1</dim>
86
+ </port>
87
+ <port id="1" precision="I64" />
88
+ <port id="2" precision="I64" />
89
+ </input>
90
+ <output>
91
+ <port id="3" precision="I64" />
92
+ </output>
93
+ </layer>
94
+ <layer id="10" name="Constant_1978123" type="Const" version="opset1">
95
+ <data element_type="i64" shape="" offset="16" size="8" />
96
+ <output>
97
+ <port id="0" precision="I64" />
98
+ </output>
99
+ </layer>
100
+ <layer id="11" name="Range_1978124" type="Range" version="opset4">
101
+ <data output_type="i32" />
102
+ <input>
103
+ <port id="0" precision="I64" />
104
+ <port id="1" precision="I64" />
105
+ <port id="2" precision="I64" />
106
+ </input>
107
+ <output>
108
+ <port id="3" precision="I32">
109
+ <dim>-1</dim>
110
+ </port>
111
+ </output>
112
+ </layer>
113
+ <layer id="12" name="Constant_1978125" type="Const" version="opset1">
114
+ <data element_type="i64" shape="" offset="16" size="8" />
115
+ <output>
116
+ <port id="0" precision="I64" />
117
+ </output>
118
+ </layer>
119
+ <layer id="13" name="Constant_1978126" type="Const" version="opset1">
120
+ <data element_type="i64" shape="" offset="16" size="8" />
121
+ <output>
122
+ <port id="0" precision="I64" />
123
+ </output>
124
+ </layer>
125
+ <layer id="14" name="Add_1978127" type="Add" version="opset1">
126
+ <data auto_broadcast="numpy" />
127
+ <input>
128
+ <port id="0" precision="I64" />
129
+ <port id="1" precision="I64" />
130
+ </input>
131
+ <output>
132
+ <port id="2" precision="I64" />
133
+ </output>
134
+ </layer>
135
+ <layer id="15" name="Constant_1978128" type="Const" version="opset1">
136
+ <data element_type="i64" shape="" offset="16" size="8" />
137
+ <output>
138
+ <port id="0" precision="I64" />
139
+ </output>
140
+ </layer>
141
+ <layer id="16" name="Range_1978129" type="Range" version="opset4">
142
+ <data output_type="i32" />
143
+ <input>
144
+ <port id="0" precision="I64" />
145
+ <port id="1" precision="I64" />
146
+ <port id="2" precision="I64" />
147
+ </input>
148
+ <output>
149
+ <port id="3" precision="I32">
150
+ <dim>-1</dim>
151
+ </port>
152
+ </output>
153
+ </layer>
154
+ <layer id="17" name="Constant_1978191" type="Const" version="opset1">
155
+ <data element_type="u8" shape="49" offset="24" size="49" />
156
+ <output>
157
+ <port id="0" precision="U8">
158
+ <dim>49</dim>
159
+ </port>
160
+ </output>
161
+ </layer>
162
+ <layer id="18" name="SpecialTokensSplit_1978192" type="SpecialTokensSplit" version="extension">
163
+ <input>
164
+ <port id="0" precision="I32">
165
+ <dim>-1</dim>
166
+ </port>
167
+ <port id="1" precision="I32">
168
+ <dim>-1</dim>
169
+ </port>
170
+ <port id="2" precision="I32">
171
+ <dim>-1</dim>
172
+ </port>
173
+ <port id="3" precision="I32">
174
+ <dim>-1</dim>
175
+ </port>
176
+ <port id="4" precision="U8">
177
+ <dim>-1</dim>
178
+ </port>
179
+ <port id="5" precision="U8">
180
+ <dim>49</dim>
181
+ </port>
182
+ </input>
183
+ <output>
184
+ <port id="6" precision="I32">
185
+ <dim>-1</dim>
186
+ </port>
187
+ <port id="7" precision="I32">
188
+ <dim>-1</dim>
189
+ </port>
190
+ <port id="8" precision="I32">
191
+ <dim>-1</dim>
192
+ </port>
193
+ <port id="9" precision="I32">
194
+ <dim>-1</dim>
195
+ </port>
196
+ <port id="10" precision="U8">
197
+ <dim>-1</dim>
198
+ </port>
199
+ <port id="11" precision="BOOL">
200
+ <dim>-1</dim>
201
+ </port>
202
+ </output>
203
+ </layer>
204
+ <layer id="19" name="Constant_1978194" type="Const" version="opset1">
205
+ <data element_type="u8" shape="13" offset="73" size="13" />
206
+ <output>
207
+ <port id="0" precision="U8">
208
+ <dim>13</dim>
209
+ </port>
210
+ </output>
211
+ </layer>
212
+ <layer id="20" name="Constant_1978196" type="Const" version="opset1">
213
+ <data element_type="u8" shape="5" offset="86" size="5" />
214
+ <output>
215
+ <port id="0" precision="U8">
216
+ <dim>5</dim>
217
+ </port>
218
+ </output>
219
+ </layer>
220
+ <layer id="21" name="RegexNormalization_1978197" type="RegexNormalization" version="extension">
221
+ <data global_replace="true" />
222
+ <input>
223
+ <port id="0" precision="I32">
224
+ <dim>-1</dim>
225
+ </port>
226
+ <port id="1" precision="I32">
227
+ <dim>-1</dim>
228
+ </port>
229
+ <port id="2" precision="U8">
230
+ <dim>-1</dim>
231
+ </port>
232
+ <port id="3" precision="BOOL">
233
+ <dim>-1</dim>
234
+ </port>
235
+ <port id="4" precision="U8">
236
+ <dim>13</dim>
237
+ </port>
238
+ <port id="5" precision="U8">
239
+ <dim>5</dim>
240
+ </port>
241
+ </input>
242
+ <output>
243
+ <port id="6" precision="I32">
244
+ <dim>-1</dim>
245
+ </port>
246
+ <port id="7" precision="I32">
247
+ <dim>-1</dim>
248
+ </port>
249
+ <port id="8" precision="U8">
250
+ <dim>-1</dim>
251
+ </port>
252
+ <port id="9" precision="BOOL">
253
+ <dim>-1</dim>
254
+ </port>
255
+ </output>
256
+ </layer>
257
+ <layer id="22" name="Constant_1978199" type="Const" version="opset1">
258
+ <data element_type="u8" shape="1" offset="91" size="1" />
259
+ <output>
260
+ <port id="0" precision="U8">
261
+ <dim>1</dim>
262
+ </port>
263
+ </output>
264
+ </layer>
265
+ <layer id="23" name="Constant_1978201" type="Const" version="opset1">
266
+ <data element_type="u8" shape="3" offset="92" size="3" />
267
+ <output>
268
+ <port id="0" precision="U8">
269
+ <dim>3</dim>
270
+ </port>
271
+ </output>
272
+ </layer>
273
+ <layer id="24" name="RegexNormalization_1978202" type="RegexNormalization" version="extension">
274
+ <data global_replace="true" />
275
+ <input>
276
+ <port id="0" precision="I32">
277
+ <dim>-1</dim>
278
+ </port>
279
+ <port id="1" precision="I32">
280
+ <dim>-1</dim>
281
+ </port>
282
+ <port id="2" precision="U8">
283
+ <dim>-1</dim>
284
+ </port>
285
+ <port id="3" precision="BOOL">
286
+ <dim>-1</dim>
287
+ </port>
288
+ <port id="4" precision="U8">
289
+ <dim>1</dim>
290
+ </port>
291
+ <port id="5" precision="U8">
292
+ <dim>3</dim>
293
+ </port>
294
+ </input>
295
+ <output>
296
+ <port id="6" precision="I32">
297
+ <dim>-1</dim>
298
+ </port>
299
+ <port id="7" precision="I32">
300
+ <dim>-1</dim>
301
+ </port>
302
+ <port id="8" precision="U8">
303
+ <dim>-1</dim>
304
+ </port>
305
+ <port id="9" precision="BOOL">
306
+ <dim>-1</dim>
307
+ </port>
308
+ </output>
309
+ </layer>
310
+ <layer id="25" name="Constant_1978204" type="Const" version="opset1">
311
+ <data element_type="i32" shape="32002" offset="95" size="128008" />
312
+ <output>
313
+ <port id="0" precision="I32">
314
+ <dim>32002</dim>
315
+ </port>
316
+ </output>
317
+ </layer>
318
+ <layer id="26" name="Constant_1978206" type="Const" version="opset1">
319
+ <data element_type="i32" shape="32002" offset="128103" size="128008" />
320
+ <output>
321
+ <port id="0" precision="I32">
322
+ <dim>32002</dim>
323
+ </port>
324
+ </output>
325
+ </layer>
326
+ <layer id="27" name="Constant_1978208" type="Const" version="opset1">
327
+ <data element_type="u8" shape="204682" offset="256111" size="204682" />
328
+ <output>
329
+ <port id="0" precision="U8">
330
+ <dim>204682</dim>
331
+ </port>
332
+ </output>
333
+ </layer>
334
+ <layer id="28" name="Constant_1978216" type="Const" version="opset1">
335
+ <data element_type="i32" shape="58980" offset="460793" size="235920" />
336
+ <output>
337
+ <port id="0" precision="I32">
338
+ <dim>58980</dim>
339
+ </port>
340
+ </output>
341
+ </layer>
342
+ <layer id="29" name="Constant_1978218" type="Const" version="opset1">
343
+ <data element_type="i32" shape="58980" offset="696713" size="235920" />
344
+ <output>
345
+ <port id="0" precision="I32">
346
+ <dim>58980</dim>
347
+ </port>
348
+ </output>
349
+ </layer>
350
+ <layer id="30" name="Constant_1978220" type="Const" version="opset1">
351
+ <data element_type="u8" shape="243852" offset="932633" size="243852" />
352
+ <output>
353
+ <port id="0" precision="U8">
354
+ <dim>243852</dim>
355
+ </port>
356
+ </output>
357
+ </layer>
358
+ <layer id="31" name="Constant_1978222" type="Const" version="opset1">
359
+ <data element_type="i32" shape="58980" offset="1176485" size="235920" />
360
+ <output>
361
+ <port id="0" precision="I32">
362
+ <dim>58980</dim>
363
+ </port>
364
+ </output>
365
+ </layer>
366
+ <layer id="32" name="Constant_1978224" type="Const" version="opset1">
367
+ <data element_type="i32" shape="58980" offset="1412405" size="235920" />
368
+ <output>
369
+ <port id="0" precision="I32">
370
+ <dim>58980</dim>
371
+ </port>
372
+ </output>
373
+ </layer>
374
+ <layer id="33" name="Constant_1978226" type="Const" version="opset1">
375
+ <data element_type="u8" shape="161603" offset="1648325" size="161603" />
376
+ <output>
377
+ <port id="0" precision="U8">
378
+ <dim>161603</dim>
379
+ </port>
380
+ </output>
381
+ </layer>
382
+ <layer id="34" name="Constant_1978210" type="Const" version="opset1">
383
+ <data element_type="i32" shape="4" offset="1809928" size="16" />
384
+ <output>
385
+ <port id="0" precision="I32">
386
+ <dim>4</dim>
387
+ </port>
388
+ </output>
389
+ </layer>
390
+ <layer id="35" name="Constant_1978212" type="Const" version="opset1">
391
+ <data element_type="i32" shape="4" offset="1809944" size="16" />
392
+ <output>
393
+ <port id="0" precision="I32">
394
+ <dim>4</dim>
395
+ </port>
396
+ </output>
397
+ </layer>
398
+ <layer id="36" name="Constant_1978214" type="Const" version="opset1">
399
+ <data element_type="u8" shape="19" offset="1809960" size="19" />
400
+ <output>
401
+ <port id="0" precision="U8">
402
+ <dim>19</dim>
403
+ </port>
404
+ </output>
405
+ </layer>
406
+ <layer id="37" name="Constant_1978227" type="Const" version="opset1">
407
+ <data element_type="i32" shape="4" offset="1809979" size="16" />
408
+ <output>
409
+ <port id="0" precision="I32">
410
+ <dim>4</dim>
411
+ </port>
412
+ </output>
413
+ </layer>
414
+ <layer id="38" name="BPETokenizer_1978228" type="BPETokenizer" version="extension">
415
+ <data unk_token="&lt;unk>" fuse_unk="true" suffix_indicator="" end_suffix="" byte_fallback="true" cache_capacity="20000" />
416
+ <input>
417
+ <port id="0" precision="I32">
418
+ <dim>-1</dim>
419
+ </port>
420
+ <port id="1" precision="I32">
421
+ <dim>-1</dim>
422
+ </port>
423
+ <port id="2" precision="I32">
424
+ <dim>-1</dim>
425
+ </port>
426
+ <port id="3" precision="I32">
427
+ <dim>-1</dim>
428
+ </port>
429
+ <port id="4" precision="U8">
430
+ <dim>-1</dim>
431
+ </port>
432
+ <port id="5" precision="I32">
433
+ <dim>32002</dim>
434
+ </port>
435
+ <port id="6" precision="I32">
436
+ <dim>32002</dim>
437
+ </port>
438
+ <port id="7" precision="U8">
439
+ <dim>204682</dim>
440
+ </port>
441
+ <port id="8" precision="I32">
442
+ <dim>58980</dim>
443
+ </port>
444
+ <port id="9" precision="I32">
445
+ <dim>58980</dim>
446
+ </port>
447
+ <port id="10" precision="U8">
448
+ <dim>243852</dim>
449
+ </port>
450
+ <port id="11" precision="I32">
451
+ <dim>58980</dim>
452
+ </port>
453
+ <port id="12" precision="I32">
454
+ <dim>58980</dim>
455
+ </port>
456
+ <port id="13" precision="U8">
457
+ <dim>161603</dim>
458
+ </port>
459
+ <port id="14" precision="I32">
460
+ <dim>4</dim>
461
+ </port>
462
+ <port id="15" precision="I32">
463
+ <dim>4</dim>
464
+ </port>
465
+ <port id="16" precision="U8">
466
+ <dim>19</dim>
467
+ </port>
468
+ <port id="17" precision="I32">
469
+ <dim>4</dim>
470
+ </port>
471
+ </input>
472
+ <output>
473
+ <port id="18" precision="I32">
474
+ <dim>-1</dim>
475
+ </port>
476
+ <port id="19" precision="I32">
477
+ <dim>-1</dim>
478
+ </port>
479
+ <port id="20" precision="I32">
480
+ <dim>-1</dim>
481
+ </port>
482
+ </output>
483
+ </layer>
484
+ <layer id="39" name="Constant_1978229" type="Const" version="opset1">
485
+ <data element_type="i32" shape="" offset="1809995" size="4" />
486
+ <output>
487
+ <port id="0" precision="I32" />
488
+ </output>
489
+ </layer>
490
+ <layer id="40" name="Constant_1978231" type="Const" version="opset1">
491
+ <data element_type="u8" shape="4" offset="1809999" size="4" />
492
+ <output>
493
+ <port id="0" precision="U8">
494
+ <dim>4</dim>
495
+ </port>
496
+ </output>
497
+ </layer>
498
+ <layer id="41" name="Constant_1978233" type="Const" version="opset1">
499
+ <data element_type="u8" shape="13" offset="1810003" size="13" />
500
+ <output>
501
+ <port id="0" precision="U8">
502
+ <dim>13</dim>
503
+ </port>
504
+ </output>
505
+ </layer>
506
+ <layer id="42" name="Truncate_1978234" type="Truncate" version="extension">
507
+ <data m_num_inputs="1" />
508
+ <input>
509
+ <port id="0" precision="I32">
510
+ <dim>-1</dim>
511
+ </port>
512
+ <port id="1" precision="I32">
513
+ <dim>-1</dim>
514
+ </port>
515
+ <port id="2" precision="I32">
516
+ <dim>-1</dim>
517
+ </port>
518
+ <port id="3" precision="I32" />
519
+ <port id="4" precision="U8">
520
+ <dim>4</dim>
521
+ </port>
522
+ <port id="5" precision="U8">
523
+ <dim>13</dim>
524
+ </port>
525
+ </input>
526
+ <output>
527
+ <port id="6" precision="I32">
528
+ <dim>-1</dim>
529
+ </port>
530
+ <port id="7" precision="I32">
531
+ <dim>-1</dim>
532
+ </port>
533
+ <port id="8" precision="I32">
534
+ <dim>-1</dim>
535
+ </port>
536
+ </output>
537
+ </layer>
538
+ <layer id="43" name="Constant_1978238" type="Const" version="opset1">
539
+ <data element_type="i32" shape="2" offset="8" size="8" />
540
+ <output>
541
+ <port id="0" precision="I32">
542
+ <dim>2</dim>
543
+ </port>
544
+ </output>
545
+ </layer>
546
+ <layer id="44" name="CombineSegments_1978239" type="CombineSegments" version="extension">
547
+ <input>
548
+ <port id="0" precision="I32" />
549
+ <port id="1" precision="I32" />
550
+ <port id="2" precision="I32">
551
+ <dim>1</dim>
552
+ </port>
553
+ <port id="3" precision="I32">
554
+ <dim>-1</dim>
555
+ </port>
556
+ <port id="4" precision="I32">
557
+ <dim>-1</dim>
558
+ </port>
559
+ <port id="5" precision="I32">
560
+ <dim>-1</dim>
561
+ </port>
562
+ <port id="6" precision="I32">
563
+ <dim>2</dim>
564
+ </port>
565
+ </input>
566
+ <output>
567
+ <port id="7" precision="I32">
568
+ <dim>-1</dim>
569
+ </port>
570
+ <port id="8" precision="I32">
571
+ <dim>-1</dim>
572
+ </port>
573
+ <port id="9" precision="I32">
574
+ <dim>-1</dim>
575
+ </port>
576
+ <port id="10" precision="I32">
577
+ <dim>-1</dim>
578
+ </port>
579
+ <port id="11" precision="I32">
580
+ <dim>-1</dim>
581
+ </port>
582
+ <port id="12" precision="I32">
583
+ <dim>-1</dim>
584
+ </port>
585
+ </output>
586
+ </layer>
587
+ <layer id="45" name="Subtract_1978240" type="Subtract" version="opset1">
588
+ <data auto_broadcast="numpy" />
589
+ <input>
590
+ <port id="0" precision="I32">
591
+ <dim>-1</dim>
592
+ </port>
593
+ <port id="1" precision="I32">
594
+ <dim>-1</dim>
595
+ </port>
596
+ </input>
597
+ <output>
598
+ <port id="2" precision="I32">
599
+ <dim>-1</dim>
600
+ </port>
601
+ </output>
602
+ </layer>
603
+ <layer id="46" name="Constant_1978241" type="Const" version="opset1">
604
+ <data element_type="i32" shape="" offset="0" size="4" />
605
+ <output>
606
+ <port id="0" precision="I32" />
607
+ </output>
608
+ </layer>
609
+ <layer id="47" name="ReduceMax_1978242" type="ReduceMax" version="opset1">
610
+ <data keep_dims="false" />
611
+ <input>
612
+ <port id="0" precision="I32">
613
+ <dim>-1</dim>
614
+ </port>
615
+ <port id="1" precision="I32" />
616
+ </input>
617
+ <output>
618
+ <port id="2" precision="I32" />
619
+ </output>
620
+ </layer>
621
+ <layer id="48" name="Constant_1978243" type="Const" version="opset1">
622
+ <data element_type="i32" shape="" offset="1810016" size="4" />
623
+ <output>
624
+ <port id="0" precision="I32" />
625
+ </output>
626
+ </layer>
627
+ <layer id="49" name="RaggedToDense_1978244" type="RaggedToDense" version="extension">
628
+ <data pad_right="false" m_pad_max_length="false" />
629
+ <input>
630
+ <port id="0" precision="I32">
631
+ <dim>-1</dim>
632
+ </port>
633
+ <port id="1" precision="I32">
634
+ <dim>-1</dim>
635
+ </port>
636
+ <port id="2" precision="I32">
637
+ <dim>-1</dim>
638
+ </port>
639
+ <port id="3" precision="I32" />
640
+ <port id="4" precision="I32" />
641
+ </input>
642
+ <output>
643
+ <port id="5" precision="I32">
644
+ <dim>-1</dim>
645
+ <dim>-1</dim>
646
+ </port>
647
+ <port id="6" precision="BOOL">
648
+ <dim>-1</dim>
649
+ <dim>-1</dim>
650
+ </port>
651
+ </output>
652
+ </layer>
653
+ <layer id="50" name="Convert_1978245" type="Convert" version="opset1">
654
+ <data destination_type="i32" />
655
+ <input>
656
+ <port id="0" precision="BOOL">
657
+ <dim>-1</dim>
658
+ <dim>-1</dim>
659
+ </port>
660
+ </input>
661
+ <output>
662
+ <port id="1" precision="I32">
663
+ <dim>-1</dim>
664
+ <dim>-1</dim>
665
+ </port>
666
+ </output>
667
+ </layer>
668
+ <layer id="51" name="Convert_1978245.0" type="Convert" version="opset1">
669
+ <data destination_type="i64" />
670
+ <input>
671
+ <port id="0" precision="I32">
672
+ <dim>-1</dim>
673
+ <dim>-1</dim>
674
+ </port>
675
+ </input>
676
+ <output>
677
+ <port id="1" precision="I64" names="attention_mask">
678
+ <dim>-1</dim>
679
+ <dim>-1</dim>
680
+ </port>
681
+ </output>
682
+ </layer>
683
+ <layer id="53" name="RaggedToDense_1978244.0" type="Convert" version="opset1">
684
+ <data destination_type="i64" />
685
+ <input>
686
+ <port id="0" precision="I32">
687
+ <dim>-1</dim>
688
+ <dim>-1</dim>
689
+ </port>
690
+ </input>
691
+ <output>
692
+ <port id="1" precision="I64" names="input_ids">
693
+ <dim>-1</dim>
694
+ <dim>-1</dim>
695
+ </port>
696
+ </output>
697
+ </layer>
698
+ <layer id="54" name="Result_1978248" type="Result" version="opset1" output_names="input_ids">
699
+ <input>
700
+ <port id="0" precision="I64">
701
+ <dim>-1</dim>
702
+ <dim>-1</dim>
703
+ </port>
704
+ </input>
705
+ </layer>
706
+ <layer id="52" name="Result_1978250" type="Result" version="opset1" output_names="attention_mask">
707
+ <input>
708
+ <port id="0" precision="I64">
709
+ <dim>-1</dim>
710
+ <dim>-1</dim>
711
+ </port>
712
+ </input>
713
+ </layer>
714
+ </layers>
715
+ <edges>
716
+ <edge from-layer="0" from-port="0" to-layer="5" to-port="0" />
717
+ <edge from-layer="1" from-port="0" to-layer="44" to-port="0" />
718
+ <edge from-layer="2" from-port="0" to-layer="44" to-port="1" />
719
+ <edge from-layer="3" from-port="0" to-layer="44" to-port="2" />
720
+ <edge from-layer="4" from-port="0" to-layer="11" to-port="0" />
721
+ <edge from-layer="5" from-port="1" to-layer="6" to-port="0" />
722
+ <edge from-layer="5" from-port="3" to-layer="18" to-port="4" />
723
+ <edge from-layer="5" from-port="2" to-layer="18" to-port="3" />
724
+ <edge from-layer="5" from-port="1" to-layer="18" to-port="2" />
725
+ <edge from-layer="6" from-port="1" to-layer="9" to-port="0" />
726
+ <edge from-layer="7" from-port="0" to-layer="9" to-port="1" />
727
+ <edge from-layer="8" from-port="0" to-layer="9" to-port="2" />
728
+ <edge from-layer="9" from-port="3" to-layer="14" to-port="0" />
729
+ <edge from-layer="9" from-port="3" to-layer="11" to-port="1" />
730
+ <edge from-layer="10" from-port="0" to-layer="11" to-port="2" />
731
+ <edge from-layer="11" from-port="3" to-layer="18" to-port="0" />
732
+ <edge from-layer="12" from-port="0" to-layer="16" to-port="0" />
733
+ <edge from-layer="13" from-port="0" to-layer="14" to-port="1" />
734
+ <edge from-layer="14" from-port="2" to-layer="16" to-port="1" />
735
+ <edge from-layer="15" from-port="0" to-layer="16" to-port="2" />
736
+ <edge from-layer="16" from-port="3" to-layer="18" to-port="1" />
737
+ <edge from-layer="17" from-port="0" to-layer="18" to-port="5" />
738
+ <edge from-layer="18" from-port="6" to-layer="38" to-port="0" />
739
+ <edge from-layer="18" from-port="7" to-layer="38" to-port="1" />
740
+ <edge from-layer="18" from-port="11" to-layer="21" to-port="3" />
741
+ <edge from-layer="18" from-port="10" to-layer="21" to-port="2" />
742
+ <edge from-layer="18" from-port="9" to-layer="21" to-port="1" />
743
+ <edge from-layer="18" from-port="8" to-layer="21" to-port="0" />
744
+ <edge from-layer="19" from-port="0" to-layer="21" to-port="4" />
745
+ <edge from-layer="20" from-port="0" to-layer="21" to-port="5" />
746
+ <edge from-layer="21" from-port="6" to-layer="24" to-port="0" />
747
+ <edge from-layer="21" from-port="9" to-layer="24" to-port="3" />
748
+ <edge from-layer="21" from-port="8" to-layer="24" to-port="2" />
749
+ <edge from-layer="21" from-port="7" to-layer="24" to-port="1" />
750
+ <edge from-layer="22" from-port="0" to-layer="24" to-port="4" />
751
+ <edge from-layer="23" from-port="0" to-layer="24" to-port="5" />
752
+ <edge from-layer="24" from-port="6" to-layer="38" to-port="2" />
753
+ <edge from-layer="24" from-port="7" to-layer="38" to-port="3" />
754
+ <edge from-layer="24" from-port="8" to-layer="38" to-port="4" />
755
+ <edge from-layer="25" from-port="0" to-layer="38" to-port="5" />
756
+ <edge from-layer="26" from-port="0" to-layer="38" to-port="6" />
757
+ <edge from-layer="27" from-port="0" to-layer="38" to-port="7" />
758
+ <edge from-layer="28" from-port="0" to-layer="38" to-port="8" />
759
+ <edge from-layer="29" from-port="0" to-layer="38" to-port="9" />
760
+ <edge from-layer="30" from-port="0" to-layer="38" to-port="10" />
761
+ <edge from-layer="31" from-port="0" to-layer="38" to-port="11" />
762
+ <edge from-layer="32" from-port="0" to-layer="38" to-port="12" />
763
+ <edge from-layer="33" from-port="0" to-layer="38" to-port="13" />
764
+ <edge from-layer="34" from-port="0" to-layer="38" to-port="14" />
765
+ <edge from-layer="35" from-port="0" to-layer="38" to-port="15" />
766
+ <edge from-layer="36" from-port="0" to-layer="38" to-port="16" />
767
+ <edge from-layer="37" from-port="0" to-layer="38" to-port="17" />
768
+ <edge from-layer="38" from-port="18" to-layer="42" to-port="0" />
769
+ <edge from-layer="38" from-port="19" to-layer="42" to-port="1" />
770
+ <edge from-layer="38" from-port="20" to-layer="42" to-port="2" />
771
+ <edge from-layer="39" from-port="0" to-layer="42" to-port="3" />
772
+ <edge from-layer="40" from-port="0" to-layer="42" to-port="4" />
773
+ <edge from-layer="41" from-port="0" to-layer="42" to-port="5" />
774
+ <edge from-layer="42" from-port="8" to-layer="44" to-port="5" />
775
+ <edge from-layer="42" from-port="7" to-layer="44" to-port="4" />
776
+ <edge from-layer="42" from-port="6" to-layer="44" to-port="3" />
777
+ <edge from-layer="43" from-port="0" to-layer="44" to-port="6" />
778
+ <edge from-layer="44" from-port="8" to-layer="45" to-port="0" />
779
+ <edge from-layer="44" from-port="7" to-layer="45" to-port="1" />
780
+ <edge from-layer="44" from-port="7" to-layer="49" to-port="0" />
781
+ <edge from-layer="44" from-port="8" to-layer="49" to-port="1" />
782
+ <edge from-layer="44" from-port="9" to-layer="49" to-port="2" />
783
+ <edge from-layer="45" from-port="2" to-layer="47" to-port="0" />
784
+ <edge from-layer="46" from-port="0" to-layer="47" to-port="1" />
785
+ <edge from-layer="47" from-port="2" to-layer="49" to-port="3" />
786
+ <edge from-layer="48" from-port="0" to-layer="49" to-port="4" />
787
+ <edge from-layer="49" from-port="6" to-layer="50" to-port="0" />
788
+ <edge from-layer="49" from-port="5" to-layer="53" to-port="0" />
789
+ <edge from-layer="50" from-port="1" to-layer="51" to-port="0" />
790
+ <edge from-layer="51" from-port="1" to-layer="52" to-port="0" />
791
+ <edge from-layer="53" from-port="1" to-layer="54" to-port="0" />
792
+ </edges>
793
+ <rt_info>
794
+ <add_attention_mask value="True" />
795
+ <add_prefix_space />
796
+ <add_special_tokens value="True" />
797
+ <bos_token_id value="1" />
798
+ <chat_template value="{% for message in messages %}{% if message['role'] == 'system' %}{{ '&lt;&lt;SYS>>&#10;' + message['content'][0]['text'] + '&#10;&lt;&lt;/SYS>>&#10;&#10;' }}{% elif message['role'] == 'user' %}{{ '[INST] ' }}{# Render all images first #}{% for content in message['content'] | selectattr('type', 'equalto', 'image') %}{{ '&lt;image>&#10;' }}{% endfor %}{# Render all text next #}{% for content in message['content'] | selectattr('type', 'equalto', 'text') %}{{ content['text'] }}{% endfor %}{{' [/INST]' }}{% elif message['role'] == 'assistant' %}{{ ' ' + message['content'][0]['text'] + '&lt;/s> '}}{% else %}{{ raise_exception('Only user and assistant roles are supported!') }}{% endif %}{% endfor %}" />
799
+ <clean_up_tokenization_spaces />
800
+ <detokenizer_input_type value="i64" />
801
+ <eos_token_id value="2" />
802
+ <handle_special_tokens_with_re />
803
+ <max_length />
804
+ <number_of_inputs value="1" />
805
+ <openvino_tokenizers_version value="2025.2.0.1-567-7885335c24b" />
806
+ <openvino_version value="2025.2.0-19140-c01cd93e24d-releases/2025/2" />
807
+ <original_post_processor_template value="{&quot;type&quot;: &quot;TemplateProcessing&quot;, &quot;single&quot;: [{&quot;SpecialToken&quot;: {&quot;id&quot;: &quot;&lt;s>&quot;, &quot;type_id&quot;: 0}}, {&quot;Sequence&quot;: {&quot;id&quot;: &quot;A&quot;, &quot;type_id&quot;: 0}}], &quot;pair&quot;: [{&quot;SpecialToken&quot;: {&quot;id&quot;: &quot;&lt;s>&quot;, &quot;type_id&quot;: 0}}, {&quot;Sequence&quot;: {&quot;id&quot;: &quot;A&quot;, &quot;type_id&quot;: 0}}, {&quot;SpecialToken&quot;: {&quot;id&quot;: &quot;&lt;s>&quot;, &quot;type_id&quot;: 1}}, {&quot;Sequence&quot;: {&quot;id&quot;: &quot;B&quot;, &quot;type_id&quot;: 1}}], &quot;special_tokens&quot;: {&quot;&lt;s>&quot;: {&quot;id&quot;: &quot;&lt;s>&quot;, &quot;ids&quot;: [1], &quot;tokens&quot;: [&quot;&lt;s>&quot;]}}}" />
808
+ <original_tokenizer_class value="&lt;class 'transformers.models.llama.tokenization_llama_fast.LlamaTokenizerFast'>" />
809
+ <pad_token_id value="32001" />
810
+ <processed_post_processor_template value="{&quot;single&quot;: {&quot;ids&quot;: [1, -1], &quot;type_ids&quot;: [0, 0]}, &quot;pair&quot;: {&quot;ids&quot;: [1, -1, 1, -2], &quot;type_ids&quot;: [0, 0, 1, 1]}}" />
811
+ <sentencepiece_version value="0.2.1" />
812
+ <simplified_chat_template value="{% for message in messages %}{% if message['role'] == 'system' %}{{ '&lt;&lt;SYS>>&#10;' + message['content'] + '&#10;&lt;&lt;/SYS>>&#10;&#10;' }}{% elif message['role'] == 'user' %}{{ '[INST] ' + message['content'] + ' [/INST]' }}{% elif message['role'] == 'assistant' %}{{ ' ' + message['content'] + '&lt;/s> ' }}{% else %}{{ raise_exception('Only user and assistant roles are supported!') }}{% endif %}{% endfor %}" />
813
+ <skip_special_tokens value="True" />
814
+ <streaming_detokenizer value="False" />
815
+ <tiktoken_version value="0.9.0" />
816
+ <tokenizer_output_type value="i64" />
817
+ <tokenizers_version value="0.21.4" />
818
+ <transformers_version value="4.51.3" />
819
+ <use_max_padding value="False" />
820
+ <use_sentencepiece_backend value="False" />
821
+ <utf8_replace_mode value="replace" />
822
+ <with_detokenizer value="True" />
823
+ </rt_info>
824
+ </net>
openvino_vision_embeddings_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0ed7cdfab9c87aeaf34fc85c0254f82d3873f9624d73b2ead2486561edb2f443
3
+ size 315056276
openvino_vision_embeddings_model.xml ADDED
The diff for this file is too large to render. See raw diff
 
preprocessor_config.json ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "aspect_ratio_setting": "anyres",
3
+ "crop_size": {
4
+ "height": 336,
5
+ "width": 336
6
+ },
7
+ "do_center_crop": true,
8
+ "do_convert_rgb": true,
9
+ "do_normalize": true,
10
+ "do_pad": true,
11
+ "do_rescale": true,
12
+ "do_resize": true,
13
+ "image_grid_pinpoints": [
14
+ [
15
+ 336,
16
+ 672
17
+ ],
18
+ [
19
+ 672,
20
+ 336
21
+ ],
22
+ [
23
+ 672,
24
+ 672
25
+ ],
26
+ [
27
+ 1008,
28
+ 336
29
+ ],
30
+ [
31
+ 336,
32
+ 1008
33
+ ]
34
+ ],
35
+ "image_mean": [
36
+ 0.48145466,
37
+ 0.4578275,
38
+ 0.40821073
39
+ ],
40
+ "image_processor_type": "LlavaNextImageProcessor",
41
+ "image_std": [
42
+ 0.26862954,
43
+ 0.26130258,
44
+ 0.27577711
45
+ ],
46
+ "processor_class": "LlavaNextProcessor",
47
+ "resample": 3,
48
+ "rescale_factor": 0.00392156862745098,
49
+ "size": {
50
+ "shortest_edge": 336
51
+ }
52
+ }
processor_config.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "image_token": "<image>",
3
+ "num_additional_image_tokens": 1,
4
+ "patch_size": 14,
5
+ "processor_class": "LlavaNextProcessor",
6
+ "vision_feature_select_strategy": "default"
7
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "</s>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "image_token": "<image>",
17
+ "pad_token": {
18
+ "content": "<pad>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ },
24
+ "unk_token": {
25
+ "content": "<unk>",
26
+ "lstrip": false,
27
+ "normalized": false,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ }
31
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dadfd56d766715c61d2ef780a525ab43b8e6da4de6865bda3d95fdef5e134055
3
+ size 493443
tokenizer_config.json ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "add_prefix_space": null,
5
+ "added_tokens_decoder": {
6
+ "0": {
7
+ "content": "<unk>",
8
+ "lstrip": false,
9
+ "normalized": false,
10
+ "rstrip": false,
11
+ "single_word": false,
12
+ "special": true
13
+ },
14
+ "1": {
15
+ "content": "<s>",
16
+ "lstrip": false,
17
+ "normalized": false,
18
+ "rstrip": false,
19
+ "single_word": false,
20
+ "special": true
21
+ },
22
+ "2": {
23
+ "content": "</s>",
24
+ "lstrip": false,
25
+ "normalized": false,
26
+ "rstrip": false,
27
+ "single_word": false,
28
+ "special": true
29
+ },
30
+ "32000": {
31
+ "content": "<image>",
32
+ "lstrip": false,
33
+ "normalized": false,
34
+ "rstrip": false,
35
+ "single_word": false,
36
+ "special": true
37
+ },
38
+ "32001": {
39
+ "content": "<pad>",
40
+ "lstrip": false,
41
+ "normalized": false,
42
+ "rstrip": false,
43
+ "single_word": false,
44
+ "special": true
45
+ }
46
+ },
47
+ "additional_special_tokens": [],
48
+ "bos_token": "<s>",
49
+ "chat_template": "{{ bos_token }}{% for message in messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% if message['role'] == 'user' %}{{ '[INST] ' + message['content'] + ' [/INST]' }}{% elif message['role'] == 'assistant' %}{{ message['content'] + eos_token}}{% else %}{{ raise_exception('Only user and assistant roles are supported!') }}{% endif %}{% endfor %}",
50
+ "clean_up_tokenization_spaces": false,
51
+ "eos_token": "</s>",
52
+ "extra_special_tokens": {
53
+ "image_token": "<image>"
54
+ },
55
+ "image_token": "<image>",
56
+ "legacy": true,
57
+ "max_length": null,
58
+ "model_max_length": 1000000000000000019884624838656,
59
+ "pad_to_multiple_of": null,
60
+ "pad_token": "<pad>",
61
+ "pad_token_type_id": 0,
62
+ "padding_side": "left",
63
+ "processor_class": "LlavaNextProcessor",
64
+ "sp_model_kwargs": {},
65
+ "spaces_between_special_tokens": false,
66
+ "tokenizer_class": "LlamaTokenizer",
67
+ "unk_token": "<unk>",
68
+ "use_default_system_prompt": false
69
+ }