diff options
author | bbrfkr <bbrfkr@gmail.com> | 2021-06-07 14:08:20 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-06 22:08:20 -0700 |
commit | 7b666245d6e6baea939e0088fbbf9104d8efaca1 (patch) | |
tree | ab6aa9d8594731bd377aa53faa8d02faa0cae78f | |
parent | 23631de1919da3de393d1870d8c9606d1cd4849b (diff) | |
download | qmk_firmware-7b666245d6e6baea939e0088fbbf9104d8efaca1.tar.gz qmk_firmware-7b666245d6e6baea939e0088fbbf9104d8efaca1.zip |
[Keyboard] add molecule (#12601)
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
-rw-r--r-- | keyboards/molecule/adns.c | 254 | ||||
-rw-r--r-- | keyboards/molecule/adns.h | 36 | ||||
-rw-r--r-- | keyboards/molecule/adns9800_srom_A6.h | 3081 | ||||
-rwxr-xr-x | keyboards/molecule/config.h | 159 | ||||
-rwxr-xr-x | keyboards/molecule/info.json | 215 | ||||
-rwxr-xr-x | keyboards/molecule/keymaps/default/keymap.c | 39 | ||||
-rwxr-xr-x | keyboards/molecule/keymaps/default/readme.md | 1 | ||||
-rwxr-xr-x | keyboards/molecule/molecule.c | 17 | ||||
-rwxr-xr-x | keyboards/molecule/molecule.h | 40 | ||||
-rwxr-xr-x | keyboards/molecule/readme.md | 21 | ||||
-rwxr-xr-x | keyboards/molecule/rules.mk | 27 |
11 files changed, 3890 insertions, 0 deletions
diff --git a/keyboards/molecule/adns.c b/keyboards/molecule/adns.c new file mode 100644 index 000000000..be40cf7ea --- /dev/null +++ b/keyboards/molecule/adns.c | |||
@@ -0,0 +1,254 @@ | |||
1 | /* Copyright 2020 Richard Sutherland <rich@brickbots.com> | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | #include "spi_master.h" | ||
17 | #include "adns.h" | ||
18 | #include "debug.h" | ||
19 | #include "quantum.h" | ||
20 | #include "pointing_device.h" | ||
21 | #include "adns9800_srom_A6.h" | ||
22 | |||
23 | // registers | ||
24 | #define REG_Product_ID 0x00 | ||
25 | #define REG_Revision_ID 0x01 | ||
26 | #define REG_Motion 0x02 | ||
27 | #define REG_Delta_X_L 0x03 | ||
28 | #define REG_Delta_X_H 0x04 | ||
29 | #define REG_Delta_Y_L 0x05 | ||
30 | #define REG_Delta_Y_H 0x06 | ||
31 | #define REG_SQUAL 0x07 | ||
32 | #define REG_Pixel_Sum 0x08 | ||
33 | #define REG_Maximum_Pixel 0x09 | ||
34 | #define REG_Minimum_Pixel 0x0a | ||
35 | #define REG_Shutter_Lower 0x0b | ||
36 | #define REG_Shutter_Upper 0x0c | ||
37 | #define REG_Frame_Period_Lower 0x0d | ||
38 | #define REG_Frame_Period_Upper 0x0e | ||
39 | #define REG_Configuration_I 0x0f | ||
40 | #define REG_Configuration_II 0x10 | ||
41 | #define REG_Frame_Capture 0x12 | ||
42 | #define REG_SROM_Enable 0x13 | ||
43 | #define REG_Run_Downshift 0x14 | ||
44 | #define REG_Rest1_Rate 0x15 | ||
45 | #define REG_Rest1_Downshift 0x16 | ||
46 | #define REG_Rest2_Rate 0x17 | ||
47 | #define REG_Rest2_Downshift 0x18 | ||
48 | #define REG_Rest3_Rate 0x19 | ||
49 | #define REG_Frame_Period_Max_Bound_Lower 0x1a | ||
50 | #define REG_Frame_Period_Max_Bound_Upper 0x1b | ||
51 | #define REG_Frame_Period_Min_Bound_Lower 0x1c | ||
52 | #define REG_Frame_Period_Min_Bound_Upper 0x1d | ||
53 | #define REG_Shutter_Max_Bound_Lower 0x1e | ||
54 | #define REG_Shutter_Max_Bound_Upper 0x1f | ||
55 | #define REG_LASER_CTRL0 0x20 | ||
56 | #define REG_Observation 0x24 | ||
57 | #define REG_Data_Out_Lower 0x25 | ||
58 | #define REG_Data_Out_Upper 0x26 | ||
59 | #define REG_SROM_ID 0x2a | ||
60 | #define REG_Lift_Detection_Thr 0x2e | ||
61 | #define REG_Configuration_V 0x2f | ||
62 | #define REG_Configuration_IV 0x39 | ||
63 | #define REG_Power_Up_Reset 0x3a | ||
64 | #define REG_Shutdown 0x3b | ||
65 | #define REG_Inverse_Product_ID 0x3f | ||
66 | #define REG_Motion_Burst 0x50 | ||
67 | #define REG_SROM_Load_Burst 0x62 | ||
68 | #define REG_Pixel_Burst 0x64 | ||
69 | |||
70 | // pins | ||
71 | #define NCS F7 | ||
72 | |||
73 | extern const uint16_t firmware_length; | ||
74 | extern const uint8_t firmware_data[]; | ||
75 | |||
76 | enum motion_burst_propertr{ | ||
77 | motion = 0, | ||
78 | observation, | ||
79 | delta_x_l, | ||
80 | delta_x_h, | ||
81 | delta_y_l, | ||
82 | delta_y_h, | ||
83 | squal, | ||
84 | pixel_sum, | ||
85 | maximum_pixel, | ||
86 | minimum_pixel, | ||
87 | shutter_upper, | ||
88 | shutter_lower, | ||
89 | frame_period_upper, | ||
90 | frame_period_lower, | ||
91 | end_data | ||
92 | }; | ||
93 | |||
94 | void adns_begin(void){ | ||
95 | spi_start(NCS, false, 3, 8); | ||
96 | } | ||
97 | |||
98 | void adns_end(void){ | ||
99 | spi_stop(); | ||
100 | } | ||
101 | |||
102 | void adns_write(uint8_t reg_addr, uint8_t data){ | ||
103 | |||
104 | adns_begin(); | ||
105 | //send address of the register, with MSBit = 1 to indicate it's a write | ||
106 | spi_write(reg_addr | 0x80 ); | ||
107 | spi_write(data); | ||
108 | |||
109 | // tSCLK-NCS for write operation | ||
110 | wait_us(20); | ||
111 | |||
112 | |||
113 | // tSWW/tSWR (=120us) minus tSCLK-NCS. Could be shortened, but is looks like a safe lower bound | ||
114 | wait_us(100); | ||
115 | adns_end(); | ||
116 | } | ||
117 | |||
118 | uint8_t adns_read(uint8_t reg_addr){ | ||
119 | |||
120 | |||
121 | adns_begin(); | ||
122 | // send adress of the register, with MSBit = 0 to indicate it's a read | ||
123 | spi_write(reg_addr & 0x7f ); | ||
124 | uint8_t data = spi_read(); | ||
125 | |||
126 | // tSCLK-NCS for read operation is 120ns | ||
127 | wait_us(1); | ||
128 | |||
129 | |||
130 | // tSRW/tSRR (=20us) minus tSCLK-NCS | ||
131 | wait_us(19); | ||
132 | |||
133 | adns_end(); | ||
134 | return data; | ||
135 | } | ||
136 | |||
137 | void pointing_device_init(void) { | ||
138 | dprint("STARTING INTI\n"); | ||
139 | |||
140 | spi_init(); | ||
141 | // reset serial port | ||
142 | adns_begin(); | ||
143 | adns_end(); | ||
144 | |||
145 | // reboot | ||
146 | adns_write(REG_Power_Up_Reset, 0x5a); | ||
147 | wait_ms(50); | ||
148 | // read registers and discard | ||
149 | adns_read(REG_Motion); | ||
150 | adns_read(REG_Delta_X_L); | ||
151 | adns_read(REG_Delta_X_H); | ||
152 | adns_read(REG_Delta_Y_L); | ||
153 | adns_read(REG_Delta_Y_H); | ||
154 | |||
155 | // upload firmware | ||
156 | |||
157 | // set the configuration_IV register in 3k firmware mode | ||
158 | // bit 1 = 1 for 3k mode, other bits are reserved | ||
159 | adns_write(REG_Configuration_IV, 0x02); | ||
160 | |||
161 | // write 0x1d in SROM_enable reg for initializing | ||
162 | adns_write(REG_SROM_Enable, 0x1d); | ||
163 | |||
164 | // wait for more than one frame period | ||
165 | // assume that the frame rate is as low as 100fps... even if it should never be that low | ||
166 | wait_ms(10); | ||
167 | |||
168 | // write 0x18 to SROM_enable to start SROM download | ||
169 | adns_write(REG_SROM_Enable, 0x18); | ||
170 | |||
171 | // write the SROM file (=firmware data) | ||
172 | |||
173 | // write burst destination adress | ||
174 | adns_begin(); | ||
175 | spi_write(REG_SROM_Load_Burst | 0x80); | ||
176 | wait_us(15); | ||
177 | // send all bytes of the firmware | ||
178 | unsigned char c; | ||
179 | for(int i = 0; i < firmware_length; i++){ | ||
180 | c = (unsigned char)pgm_read_byte(firmware_data + i); | ||
181 | spi_write(c); | ||
182 | wait_us(15); | ||
183 | } | ||
184 | |||
185 | adns_end(); | ||
186 | wait_ms(10); | ||
187 | |||
188 | // enable laser(bit 0 = 0b), in normal mode (bits 3,2,1 = 000b) | ||
189 | // reading the actual value of the register is important because the real | ||
190 | // default value is different from what is said in the datasheet, and if you | ||
191 | // change the reserved bytes (like by writing 0x00...) it would not work. | ||
192 | uint8_t laser_ctrl0 = adns_read(REG_LASER_CTRL0); | ||
193 | adns_write(REG_LASER_CTRL0, laser_ctrl0 & 0xf0); | ||
194 | |||
195 | wait_ms(1); | ||
196 | |||
197 | // set the configuration_I register to set the CPI | ||
198 | // 0x01 = 50, minimum | ||
199 | // 0x44 = 3400, default | ||
200 | // 0x8e = 7100 | ||
201 | // 0xA4 = 8200, maximum | ||
202 | adns_write(REG_Configuration_I, 0x10); | ||
203 | |||
204 | wait_ms(100); | ||
205 | dprint("INIT ENDED\n"); | ||
206 | } | ||
207 | |||
208 | int16_t convertDeltaToInt(uint8_t high, uint8_t low){ | ||
209 | |||
210 | // join bytes into twos compliment | ||
211 | //int16_t twos_comp = (high << 8) | low; | ||
212 | //return twos_comp; | ||
213 | return (high << 8) | low; | ||
214 | } | ||
215 | |||
216 | motion_delta_t readSensor(void) { | ||
217 | adns_begin(); | ||
218 | |||
219 | // read from Motion_Burst to enable burt mode | ||
220 | spi_write(REG_Motion_Burst & 0x7f); | ||
221 | |||
222 | // Wait one frame per docs, thanks u/kbjunky | ||
223 | wait_us(100); | ||
224 | uint8_t burst_data[pixel_sum]; | ||
225 | |||
226 | for (int i = 0; i < pixel_sum; ++i) { | ||
227 | burst_data[i] = spi_read(); | ||
228 | } | ||
229 | |||
230 | uint16_t delta_x = convertDeltaToInt(burst_data[delta_x_h], burst_data[delta_x_l]); | ||
231 | uint16_t delta_y = convertDeltaToInt(burst_data[delta_y_h], burst_data[delta_y_l]); | ||
232 | // Only consider the MSB for motion as this byte has other status bits | ||
233 | uint8_t motion_ind = burst_data[motion] & 0b10000000; | ||
234 | adns_end(); | ||
235 | |||
236 | motion_delta_t delta = {delta_x, delta_y, motion_ind}; | ||
237 | return delta; | ||
238 | } | ||
239 | |||
240 | void pointing_device_task(void) { | ||
241 | motion_delta_t delta = readSensor(); | ||
242 | |||
243 | report_mouse_t report = pointing_device_get_report(); | ||
244 | |||
245 | if(delta.motion_ind) { | ||
246 | // clamp deltas from -127 to 127 | ||
247 | report.x = delta.delta_x < -127 ? -127 : delta.delta_x > 127 ? 127 : delta.delta_x; | ||
248 | report.x = -report.x; | ||
249 | report.y = delta.delta_y < -127 ? -127 : delta.delta_y > 127 ? 127 : delta.delta_y; | ||
250 | } | ||
251 | |||
252 | pointing_device_set_report(report); | ||
253 | pointing_device_send(); | ||
254 | } | ||
diff --git a/keyboards/molecule/adns.h b/keyboards/molecule/adns.h new file mode 100644 index 000000000..d684d3cbc --- /dev/null +++ b/keyboards/molecule/adns.h | |||
@@ -0,0 +1,36 @@ | |||
1 | /* Copyright 2020 Richard Sutherland <rich@brickbots.com> | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | #pragma once | ||
17 | |||
18 | void adns_begin(void); | ||
19 | |||
20 | void adns_end(void); | ||
21 | |||
22 | void adns_write(uint8_t reg_addr, uint8_t data); | ||
23 | |||
24 | uint8_t adns_read(uint8_t reg_addr); | ||
25 | |||
26 | |||
27 | int16_t convertDeltaToInt(uint8_t high, uint8_t low); | ||
28 | |||
29 | struct _motion_delta { | ||
30 | int16_t delta_x; | ||
31 | int16_t delta_y; | ||
32 | int8_t motion_ind; | ||
33 | }; | ||
34 | typedef struct _motion_delta motion_delta_t; | ||
35 | |||
36 | motion_delta_t readSensor(void); | ||
diff --git a/keyboards/molecule/adns9800_srom_A6.h b/keyboards/molecule/adns9800_srom_A6.h new file mode 100644 index 000000000..fddf30589 --- /dev/null +++ b/keyboards/molecule/adns9800_srom_A6.h | |||
@@ -0,0 +1,3081 @@ | |||
1 | // ADNS-9800 Firmware bytecode is Copyright Avago Technologies. | ||
2 | // Originally formatted for Arduino use by MrJohnK - https://github.com/mrjohnk | ||
3 | |||
4 | #pragma once | ||
5 | |||
6 | #include "progmem.h" | ||
7 | |||
8 | const uint16_t firmware_length = 3070; | ||
9 | |||
10 | const uint8_t firmware_data[] PROGMEM = { | ||
11 | 0x03, | ||
12 | 0xa6, | ||
13 | 0x68, | ||
14 | 0x1e, | ||
15 | 0x7d, | ||
16 | 0x10, | ||
17 | 0x7e, | ||
18 | 0x7e, | ||
19 | 0x5f, | ||
20 | 0x1c, | ||
21 | 0xb8, | ||
22 | 0xf2, | ||
23 | 0x47, | ||
24 | 0x0c, | ||
25 | 0x7b, | ||
26 | 0x74, | ||
27 | 0x4b, | ||
28 | 0x14, | ||
29 | 0x8b, | ||
30 | 0x75, | ||
31 | 0x66, | ||
32 | 0x51, | ||
33 | 0x0b, | ||
34 | 0x8c, | ||
35 | 0x76, | ||
36 | 0x74, | ||
37 | 0x4b, | ||
38 | 0x14, | ||
39 | 0xaa, | ||
40 | 0xd6, | ||
41 | 0x0f, | ||
42 | 0x9c, | ||
43 | 0xba, | ||
44 | 0xf6, | ||
45 | 0x6e, | ||
46 | 0x3f, | ||
47 | 0xdd, | ||
48 | 0x38, | ||
49 | 0xd5, | ||
50 | 0x02, | ||
51 | 0x80, | ||
52 | 0x9b, | ||
53 | 0x82, | ||
54 | 0x6d, | ||
55 | 0x58, | ||
56 | 0x13, | ||
57 | 0xa4, | ||
58 | 0xab, | ||
59 | 0xb5, | ||
60 | 0xc9, | ||
61 | 0x10, | ||
62 | 0xa2, | ||
63 | 0xc6, | ||
64 | 0x0a, | ||
65 | 0x7f, | ||
66 | 0x5d, | ||
67 | 0x19, | ||
68 | 0x91, | ||
69 | 0xa0, | ||
70 | 0xa3, | ||
71 | 0xce, | ||
72 | 0xeb, | ||
73 | 0x3e, | ||
74 | 0xc9, | ||
75 | 0xf1, | ||
76 | 0x60, | ||
77 | 0x42, | ||
78 | 0xe7, | ||
79 | 0x4c, | ||
80 | 0xfb, | ||
81 | 0x74, | ||
82 | 0x6a, | ||
83 | 0x56, | ||
84 | 0x2e, | ||
85 | 0xbf, | ||
86 | 0xdd, | ||
87 | 0x38, | ||
88 | 0xd3, | ||
89 | 0x05, | ||
90 | 0x88, | ||
91 | 0x92, | ||
92 | 0xa6, | ||
93 | 0xce, | ||
94 | 0xff, | ||
95 | 0x5d, | ||
96 | 0x38, | ||
97 | 0xd1, | ||
98 | 0xcf, | ||
99 | 0xef, | ||
100 | 0x58, | ||
101 | 0xcb, | ||
102 | 0x65, | ||
103 | 0x48, | ||
104 | 0xf0, | ||
105 | 0x35, | ||
106 | 0x85, | ||
107 | 0xa9, | ||
108 | 0xb2, | ||
109 | 0x8f, | ||
110 | 0x5e, | ||
111 | 0xf3, | ||
112 | 0x80, | ||
113 | 0x94, | ||
114 | 0x97, | ||
115 | 0x7e, | ||
116 | 0x75, | ||
117 | 0x97, | ||
118 | 0x87, | ||
119 | 0x73, | ||
120 | 0x13, | ||
121 | 0xb0, | ||
122 | 0x8a, | ||
123 | 0x69, | ||
124 | 0xd4, | ||
125 | 0x0a, | ||
126 | 0xde, | ||
127 | 0xc1, | ||
128 | 0x79, | ||
129 | 0x59, | ||
130 | 0x36, | ||
131 | 0xdb, | ||
132 | 0x9d, | ||
133 | 0xd6, | ||
134 | 0xb8, | ||
135 | 0x15, | ||
136 | 0x6f, | ||
137 | 0xce, | ||
138 | 0x3c, | ||
139 | 0x72, | ||
140 | 0x32, | ||
141 | 0x45, | ||
142 | 0x88, | ||
143 | 0xdf, | ||
144 | 0x6c, | ||
145 | 0xa5, | ||
146 | 0x6d, | ||
147 | 0xe8, | ||
148 | 0x76, | ||
149 | 0x96, | ||
150 | 0x14, | ||
151 | 0x74, | ||
152 | 0x20, | ||
153 | 0xdc, | ||
154 | 0xf4, | ||
155 | 0xfa, | ||
156 | 0x37, | ||
157 | 0x6a, | ||
158 | 0x27, | ||
159 | 0x32, | ||
160 | 0xe3, | ||
161 | 0x29, | ||
162 | 0xbf, | ||
163 | 0xc4, | ||
164 | 0xc7, | ||
165 | 0x06, | ||
166 | 0x9d, | ||
167 | 0x58, | ||
168 | 0xe7, | ||
169 | 0x87, | ||
170 | 0x7c, | ||
171 | 0x2e, | ||
172 | 0x9f, | ||
173 | 0x6e, | ||
174 | 0x49, | ||
175 | 0x07, | ||
176 | 0x5d, | ||
177 | 0x23, | ||
178 | 0x64, | ||
179 | 0x54, | ||
180 | 0x83, | ||
181 | 0x6e, | ||
182 | 0xcb, | ||
183 | 0xb7, | ||
184 | 0x77, | ||
185 | 0xf7, | ||
186 | 0x2b, | ||
187 | 0x6e, | ||
188 | 0x0f, | ||
189 | 0x2e, | ||
190 | 0x66, | ||
191 | 0x12, | ||
192 | 0x60, | ||
193 | 0x55, | ||
194 | 0x65, | ||
195 | 0xfc, | ||
196 | 0x43, | ||
197 | 0xb3, | ||
198 | 0x58, | ||
199 | 0x73, | ||
200 | 0x5b, | ||
201 | 0xe8, | ||
202 | 0x67, | ||
203 | 0x04, | ||
204 | 0x43, | ||
205 | 0x02, | ||
206 | 0xde, | ||
207 | 0xb3, | ||
208 | 0x89, | ||
209 | 0xa0, | ||
210 | 0x6d, | ||
211 | 0x3a, | ||
212 | 0x27, | ||
213 | 0x79, | ||
214 | 0x64, | ||
215 | 0x5b, | ||
216 | 0x0c, | ||
217 | 0x16, | ||
218 | 0x9e, | ||
219 | 0x66, | ||
220 | 0xb1, | ||
221 | 0x8b, | ||
222 | 0x87, | ||
223 | 0x0c, | ||
224 | 0x5d, | ||
225 | 0xf2, | ||
226 | 0xb6, | ||
227 | 0x3d, | ||
228 | 0x71, | ||
229 | 0xdf, | ||
230 | 0x42, | ||
231 | 0x03, | ||
232 | 0x8a, | ||
233 | 0x06, | ||
234 | 0x8d, | ||
235 | 0xef, | ||
236 | 0x1d, | ||
237 | 0xa8, | ||
238 | 0x96, | ||
239 | 0x5c, | ||
240 | 0xed, | ||
241 | 0x31, | ||
242 | 0x61, | ||
243 | 0x5c, | ||
244 | 0xa1, | ||
245 | 0x34, | ||
246 | 0xf6, | ||
247 | 0x8c, | ||
248 | 0x08, | ||
249 | 0x60, | ||
250 | 0x33, | ||
251 | 0x07, | ||
252 | 0x00, | ||
253 | 0x3e, | ||
254 | 0x79, | ||
255 | 0x95, | ||
256 | 0x1b, | ||
257 | 0x43, | ||
258 | 0x7f, | ||
259 | 0xfe, | ||
260 | 0xb6, | ||
261 | 0xa6, | ||
262 | 0xd4, | ||
263 | 0x9d, | ||
264 | 0x76, | ||
265 | 0x72, | ||
266 | 0xbf, | ||
267 | 0xad, | ||
268 | 0xc0, | ||
269 | 0x15, | ||
270 | 0xe8, | ||
271 | 0x37, | ||
272 | 0x31, | ||
273 | 0xa3, | ||
274 | 0x72, | ||
275 | 0x63, | ||
276 | 0x52, | ||
277 | 0x1d, | ||
278 | 0x1c, | ||
279 | 0x5d, | ||
280 | 0x51, | ||
281 | 0x1b, | ||
282 | 0xe1, | ||
283 | 0xa9, | ||
284 | 0xed, | ||
285 | 0x60, | ||
286 | 0x32, | ||
287 | 0x3e, | ||
288 | 0xa9, | ||
289 | 0x50, | ||
290 | 0x28, | ||
291 | 0x53, | ||
292 | 0x06, | ||
293 | 0x59, | ||
294 | 0xe2, | ||
295 | 0xfc, | ||
296 | 0xe7, | ||
297 | 0x02, | ||
298 | 0x64, | ||
299 | 0x39, | ||
300 | 0x21, | ||
301 | 0x56, | ||
302 | 0x4a, | ||
303 | 0xa5, | ||
304 | 0x40, | ||
305 | 0x80, | ||
306 | 0x81, | ||
307 | 0xd5, | ||
308 | 0x5a, | ||
309 | 0x60, | ||
310 | 0x7b, | ||
311 | 0x68, | ||
312 | 0x84, | ||
313 | 0xf1, | ||
314 | 0xe0, | ||
315 | 0xb1, | ||
316 | 0xb6, | ||
317 | 0x5b, | ||
318 | 0xdf, | ||
319 | 0xa8, | ||
320 | 0x1d, | ||
321 | 0x6d, | ||
322 | 0x65, | ||
323 | 0x20, | ||
324 | 0xc0, | ||
325 | 0xa2, | ||
326 | 0xb9, | ||
327 | 0xd9, | ||
328 | 0xbb, | ||
329 | 0x00, | ||
330 | 0xa6, | ||
331 | 0xdb, | ||
332 | 0x8b, | ||
333 | 0x01, | ||
334 | 0x53, | ||
335 | 0x91, | ||
336 | 0xfe, | ||
337 | 0xc4, | ||
338 | 0x51, | ||
339 | 0x85, | ||
340 | 0xb0, | ||
341 | 0x96, | ||
342 | 0x7f, | ||
343 | 0xfd, | ||
344 | 0x51, | ||
345 | 0xdd, | ||
346 | 0x14, | ||
347 | 0x03, | ||
348 | 0x67, | ||
349 | 0x2e, | ||
350 | 0x75, | ||
351 | 0x1c, | ||
352 | 0x76, | ||
353 | 0xd3, | ||
354 | 0x6e, | ||
355 | 0xdd, | ||
356 | 0x99, | ||
357 | 0x55, | ||
358 | 0x76, | ||
359 | 0xe5, | ||
360 | 0xab, | ||
361 | 0x23, | ||
362 | 0xfc, | ||
363 | 0x4a, | ||
364 | 0xd5, | ||
365 | 0xc6, | ||
366 | 0xe8, | ||
367 | 0x2e, | ||
368 | 0xca, | ||
369 | 0x8a, | ||
370 | 0xb3, | ||
371 | 0xf6, | ||
372 | 0x8c, | ||
373 | 0x6c, | ||
374 | 0xb0, | ||
375 | 0xe9, | ||
376 | 0xf2, | ||
377 | 0xe7, | ||
378 | 0x9e, | ||
379 | 0x69, | ||
380 | 0x41, | ||
381 | 0xed, | ||
382 | 0xf1, | ||
383 | 0x6d, | ||
384 | 0xd2, | ||
385 | 0x86, | ||
386 | 0xd8, | ||
387 | 0x7e, | ||
388 | 0xcb, | ||
389 | 0x5d, | ||
390 | 0x47, | ||
391 | 0x6c, | ||
392 | 0x85, | ||
393 | 0x6a, | ||
394 | 0x23, | ||
395 | 0xed, | ||
396 | 0x20, | ||
397 | 0x40, | ||
398 | 0x93, | ||
399 | 0xb4, | ||
400 | 0x20, | ||
401 | 0xc7, | ||
402 | 0xa5, | ||
403 | 0xc9, | ||
404 | 0xaf, | ||
405 | 0x03, | ||
406 | 0x15, | ||
407 | 0xac, | ||
408 | 0x19, | ||
409 | 0xe5, | ||
410 | 0x2a, | ||
411 | 0x36, | ||
412 | 0xdf, | ||
413 | 0x6d, | ||
414 | 0xc5, | ||
415 | 0x8c, | ||
416 | 0x80, | ||
417 | 0x07, | ||
418 | 0xce, | ||
419 | 0x92, | ||
420 | 0x0c, | ||
421 | 0xd8, | ||
422 | 0x06, | ||
423 | 0x62, | ||
424 | 0x0f, | ||
425 | 0xdd, | ||
426 | 0x48, | ||
427 | 0x46, | ||
428 | 0x1a, | ||
429 | 0x53, | ||
430 | 0xc7, | ||
431 | 0x8a, | ||
432 | 0x8c, | ||
433 | 0x5d, | ||
434 | 0x5d, | ||
435 | 0xb4, | ||
436 | 0xa1, | ||
437 | 0x02, | ||
438 | 0xd3, | ||
439 | 0xa9, | ||
440 | 0xb8, | ||
441 | 0xf3, | ||
442 | 0x94, | ||
443 | 0x8f, | ||
444 | 0x3f, | ||
445 | 0xe5, | ||
446 | 0x54, | ||
447 | 0xd4, | ||
448 | 0x11, | ||
449 | 0x65, | ||
450 | 0xb2, | ||
451 | 0x5e, | ||
452 | 0x09, | ||
453 | 0x0b, | ||
454 | 0x81, | ||
455 | 0xe3, | ||
456 | 0x75, | ||
457 | 0xa7, | ||
458 | 0x89, | ||
459 | 0x81, | ||
460 | 0x39, | ||
461 | 0x6c, | ||
462 | 0x46, | ||
463 | 0xf6, | ||
464 | 0x06, | ||
465 | 0x9f, | ||
466 | 0x27, | ||
467 | 0x3b, | ||
468 | 0xb6, | ||
469 | 0x2d, | ||
470 | 0x5f, | ||
471 | 0x1d, | ||
472 | 0x4b, | ||
473 | 0xd4, | ||
474 | 0x7b, | ||
475 | 0x1d, | ||
476 | 0x61, | ||
477 | 0x74, | ||
478 | 0x89, | ||
479 | 0xe4, | ||
480 | 0xe3, | ||
481 | 0xbd, | ||
482 | 0x98, | ||
483 | 0x1b, | ||
484 | 0xc4, | ||
485 | 0x51, | ||
486 | 0x3b, | ||
487 | 0xa4, | ||
488 | 0xfa, | ||
489 | 0xe0, | ||
490 | 0x92, | ||
491 | 0xf7, | ||
492 | 0xbe, | ||
493 | 0xf2, | ||
494 | 0x4d, | ||
495 | 0xbb, | ||
496 | 0xff, | ||
497 | 0xad, | ||
498 | 0x4f, | ||
499 | 0x6d, | ||
500 | 0x68, | ||
501 | 0xc2, | ||
502 | 0x79, | ||
503 | 0x40, | ||
504 | 0xaa, | ||
505 | 0x9b, | ||
506 | 0x8f, | ||
507 | 0x0c, | ||
508 | 0x32, | ||
509 | 0x4b, | ||
510 | 0x5f, | ||
511 | 0x3e, | ||
512 | 0xab, | ||
513 | 0x59, | ||
514 | 0x98, | ||
515 | 0xb3, | ||
516 | 0xf5, | ||
517 | 0x1d, | ||
518 | 0xac, | ||
519 | 0x5e, | ||
520 | 0xbc, | ||
521 | 0x78, | ||
522 | 0xd3, | ||
523 | 0x01, | ||
524 | 0x6c, | ||
525 | 0x64, | ||
526 | 0x15, | ||
527 | 0x2f, | ||
528 | 0xd8, | ||
529 | 0x71, | ||
530 | 0xa6, | ||
531 | 0x2d, | ||
532 | 0x45, | ||
533 | 0xe1, | ||
534 | 0x22, | ||
535 | 0x42, | ||
536 | 0xe4, | ||
537 | 0x4e, | ||
538 | 0x04, | ||
539 | 0x3c, | ||
540 | 0x7d, | ||
541 | 0xf4, | ||
542 | 0x40, | ||
543 | 0x21, | ||
544 | 0xb4, | ||
545 | 0x67, | ||
546 | 0x05, | ||
547 | 0xa8, | ||
548 | 0xe2, | ||
549 | 0xf3, | ||
550 | 0x72, | ||
551 | 0x87, | ||
552 | 0x4c, | ||
553 | 0x7d, | ||
554 | 0xd9, | ||
555 | 0x1b, | ||
556 | 0x65, | ||
557 | 0x97, | ||
558 | 0xf3, | ||
559 | 0xc2, | ||
560 | 0xe3, | ||
561 | 0xe4, | ||
562 | 0xc8, | ||
563 | 0xd2, | ||
564 | 0xde, | ||
565 | 0xf6, | ||
566 | 0xef, | ||
567 | 0xdc, | ||
568 | 0xbb, | ||
569 | 0x44, | ||
570 | 0x08, | ||
571 | 0x5e, | ||
572 | 0xe2, | ||
573 | 0x45, | ||
574 | 0x27, | ||
575 | 0x01, | ||
576 | 0xb0, | ||
577 | 0xf6, | ||
578 | 0x43, | ||
579 | 0xe7, | ||
580 | 0x3a, | ||
581 | 0xf6, | ||
582 | 0xdc, | ||
583 | 0x9d, | ||
584 | 0xed, | ||
585 | 0xf3, | ||
586 | 0xc5, | ||
587 | 0x0c, | ||
588 | 0xb8, | ||
589 | 0x9c, | ||
590 | 0x98, | ||
591 | 0x3a, | ||
592 | 0xd8, | ||
593 | 0x36, | ||
594 | 0xee, | ||
595 | 0x96, | ||
596 | 0x72, | ||
597 | 0x67, | ||
598 | 0xe7, | ||
599 | 0x81, | ||
600 | 0x91, | ||
601 | 0xd5, | ||
602 | 0x05, | ||
603 | 0x0a, | ||
604 | 0xe0, | ||
605 | 0x82, | ||
606 | 0xd5, | ||
607 | 0x8f, | ||
608 | 0xe8, | ||
609 | 0xf9, | ||
610 | 0xb0, | ||
611 | 0xc9, | ||
612 | 0xcf, | ||
613 | 0x93, | ||
614 | 0xe7, | ||
615 | 0x04, | ||
616 | 0xc5, | ||
617 | 0xbc, | ||
618 | 0x2b, | ||
619 | 0x43, | ||
620 | 0x56, | ||
621 | 0x7e, | ||
622 | 0xe8, | ||
623 | 0x67, | ||
624 | 0x7c, | ||
625 | 0xe5, | ||
626 | 0xfb, | ||
627 | 0x49, | ||
628 | 0xad, | ||
629 | 0x5e, | ||
630 | 0x9f, | ||
631 | 0x25, | ||
632 | 0x13, | ||
633 | 0xde, | ||
634 | 0x6e, | ||
635 | 0x6e, | ||
636 | 0xe9, | ||
637 | 0xf1, | ||
638 | 0xec, | ||
639 | 0x87, | ||
640 | 0x0b, | ||
641 | 0x59, | ||
642 | 0x81, | ||
643 | 0x76, | ||
644 | 0x84, | ||
645 | 0x76, | ||
646 | 0xb3, | ||
647 | 0x24, | ||
648 | 0xaf, | ||
649 | 0x30, | ||
650 | 0xfd, | ||
651 | 0x27, | ||
652 | 0x8b, | ||
653 | 0xab, | ||
654 | 0xd8, | ||
655 | 0x00, | ||
656 | 0x8b, | ||
657 | 0x9b, | ||
658 | 0x0c, | ||
659 | 0xd2, | ||
660 | 0xb2, | ||
661 | 0x4e, | ||
662 | 0x5e, | ||
663 | 0x9d, | ||
664 | 0x1d, | ||
665 | 0x96, | ||
666 | 0x01, | ||
667 | 0x00, | ||
668 | 0x67, | ||
669 | 0xc1, | ||
670 | 0x5f, | ||
671 | 0x02, | ||
672 | 0x20, | ||
673 | 0xfd, | ||
674 | 0x45, | ||
675 | 0x6a, | ||
676 | 0x01, | ||
677 | 0x60, | ||
678 | 0x58, | ||
679 | 0x45, | ||
680 | 0xca, | ||
681 | 0x47, | ||
682 | 0x21, | ||
683 | 0x90, | ||
684 | 0x5a, | ||
685 | 0xc4, | ||
686 | 0x43, | ||
687 | 0x26, | ||
688 | 0x1a, | ||
689 | 0xd7, | ||
690 | 0xa5, | ||
691 | 0x4a, | ||
692 | 0xb2, | ||
693 | 0x5d, | ||
694 | 0x2b, | ||
695 | 0x35, | ||
696 | 0x49, | ||
697 | 0xfb, | ||
698 | 0xa5, | ||
699 | 0x17, | ||
700 | 0x92, | ||
701 | 0x21, | ||
702 | 0x1e, | ||
703 | 0x93, | ||
704 | 0x96, | ||
705 | 0x67, | ||
706 | 0xa2, | ||
707 | 0x7e, | ||
708 | 0x36, | ||
709 | 0x7a, | ||
710 | 0xde, | ||
711 | 0x5f, | ||
712 | 0xbe, | ||
713 | 0x7a, | ||
714 | 0x58, | ||
715 | 0x9d, | ||
716 | 0xf8, | ||
717 | 0x78, | ||
718 | 0xa3, | ||
719 | 0xfa, | ||
720 | 0xc8, | ||
721 | 0xd5, | ||
722 | 0x17, | ||
723 | 0xf0, | ||
724 | 0x21, | ||
725 | 0x97, | ||
726 | 0x8c, | ||
727 | 0x80, | ||
728 | 0xb5, | ||
729 | 0x4b, | ||
730 | 0x3b, | ||
731 | 0xbd, | ||
732 | 0xbb, | ||
733 | 0x41, | ||
734 | 0x21, | ||
735 | 0xa8, | ||
736 | 0x50, | ||
737 | 0x67, | ||
738 | 0xf7, | ||
739 | 0xe7, | ||
740 | 0x19, | ||
741 | 0x80, | ||
742 | 0x10, | ||
743 | 0x8e, | ||
744 | 0xce, | ||
745 | 0x04, | ||
746 | 0x18, | ||
747 | 0x3f, | ||
748 | 0x51, | ||
749 | 0x6b, | ||
750 | 0x77, | ||
751 | 0xd8, | ||
752 | 0x9e, | ||
753 | 0x16, | ||
754 | 0xaf, | ||
755 | 0xec, | ||
756 | 0xef, | ||
757 | 0x48, | ||
758 | 0x16, | ||
759 | 0x4d, | ||
760 | 0x9e, | ||
761 | 0x85, | ||
762 | 0x38, | ||
763 | 0x18, | ||
764 | 0x3e, | ||
765 | 0xd4, | ||
766 | 0x28, | ||
767 | 0x87, | ||
768 | 0x60, | ||
769 | 0x2a, | ||
770 | 0xf6, | ||
771 | 0x7f, | ||
772 | 0x09, | ||
773 | 0x86, | ||
774 | 0x6f, | ||
775 | 0x9c, | ||
776 | 0x3c, | ||
777 | 0x3a, | ||
778 | 0xff, | ||
779 | 0xab, | ||
780 | 0xd0, | ||
781 | 0x61, | ||
782 | 0xa2, | ||
783 | 0x97, | ||
784 | 0x0d, | ||
785 | 0x71, | ||
786 | 0x94, | ||
787 | 0x7e, | ||
788 | 0xfd, | ||
789 | 0xb9, | ||
790 | 0x80, | ||
791 | 0x02, | ||
792 | 0x89, | ||
793 | 0x6a, | ||
794 | 0xb3, | ||
795 | 0x84, | ||
796 | 0x6c, | ||
797 | 0x2a, | ||
798 | 0x77, | ||
799 | 0x62, | ||
800 | 0xbe, | ||
801 | 0x0b, | ||
802 | 0xf4, | ||
803 | 0xaf, | ||
804 | 0xac, | ||
805 | 0x7b, | ||
806 | 0x7c, | ||
807 | 0x8e, | ||
808 | 0xca, | ||
809 | 0x01, | ||
810 | 0xba, | ||
811 | 0x71, | ||
812 | 0x78, | ||
813 | 0x94, | ||
814 | 0xfd, | ||
815 | 0xb5, | ||
816 | 0x39, | ||
817 | 0xa4, | ||
818 | 0x4d, | ||
819 | 0x2f, | ||
820 | 0x78, | ||
821 | 0xcf, | ||
822 | 0xca, | ||
823 | 0x92, | ||
824 | 0x0c, | ||
825 | 0x1a, | ||
826 | 0x99, | ||
827 | 0x48, | ||
828 | 0x4c, | ||
829 | 0x11, | ||
830 | 0x96, | ||
831 | 0xb5, | ||
832 | 0x4e, | ||
833 | 0x41, | ||
834 | 0x28, | ||
835 | 0xe4, | ||
836 | 0xa6, | ||
837 | 0xfe, | ||
838 | 0x4b, | ||
839 | 0x72, | ||
840 | 0x91, | ||
841 | 0xe7, | ||
842 | 0xd4, | ||
843 | 0xdd, | ||
844 | 0x9f, | ||
845 | 0x12, | ||
846 | 0xe6, | ||
847 | 0x29, | ||
848 | 0x38, | ||
849 | 0xce, | ||
850 | 0x45, | ||
851 | 0xae, | ||
852 | 0x02, | ||
853 | 0xb8, | ||
854 | 0x24, | ||
855 | 0xae, | ||
856 | 0xbd, | ||
857 | 0xe9, | ||
858 | 0x66, | ||
859 | 0x08, | ||
860 | 0x62, | ||
861 | 0xa2, | ||
862 | 0x2c, | ||
863 | 0x2b, | ||
864 | 0x00, | ||
865 | 0xe2, | ||
866 | 0x23, | ||
867 | 0xd9, | ||
868 | 0xc4, | ||
869 | 0x48, | ||
870 | 0xe4, | ||
871 | 0xd3, | ||
872 | 0xac, | ||
873 | 0xbb, | ||
874 | 0x34, | ||
875 | 0xc7, | ||
876 | 0xf0, | ||
877 | 0xe3, | ||
878 | 0x4f, | ||
879 | 0xb9, | ||
880 | 0x30, | ||
881 | 0xea, | ||
882 | 0xa2, | ||
883 | 0x12, | ||
884 | 0xf1, | ||
885 | 0x30, | ||
886 | 0x2c, | ||
887 | 0x36, | ||
888 | 0xde, | ||
889 | 0x48, | ||
890 | 0xf2, | ||
891 | 0xb0, | ||
892 | 0x4c, | ||
893 | 0x43, | ||
894 | 0x3f, | ||
895 | 0x2e, | ||
896 | 0x58, | ||
897 | 0xe4, | ||
898 | 0x20, | ||
899 | 0xe3, | ||
900 | 0x58, | ||
901 | 0xcd, | ||
902 | 0x31, | ||
903 | 0x22, | ||
904 | 0xf0, | ||
905 | 0xa2, | ||
906 | 0x2a, | ||
907 | 0xe6, | ||
908 | 0x19, | ||
909 | 0x90, | ||
910 | 0x55, | ||
911 | 0x86, | ||
912 | 0xf6, | ||
913 | 0x55, | ||
914 | 0x79, | ||
915 | 0xd1, | ||
916 | 0xd7, | ||
917 | 0x46, | ||
918 | 0x2f, | ||
919 | 0xc0, | ||
920 | 0xdc, | ||
921 | 0x99, | ||
922 | 0xe8, | ||
923 | 0xf3, | ||
924 | 0x6a, | ||
925 | 0xdf, | ||
926 | 0x7f, | ||
927 | 0xeb, | ||
928 | 0x24, | ||
929 | 0x4a, | ||
930 | 0x1e, | ||
931 | 0x5a, | ||
932 | 0x75, | ||
933 | 0xde, | ||
934 | 0x2f, | ||
935 | 0x5c, | ||
936 | 0x19, | ||
937 | 0x61, | ||
938 | 0x03, | ||
939 | 0x53, | ||
940 | 0x54, | ||
941 | 0x6a, | ||
942 | 0x3b, | ||
943 | 0x18, | ||
944 | 0x70, | ||
945 | 0xb6, | ||
946 | 0x4f, | ||
947 | 0xf1, | ||
948 | 0x9c, | ||
949 | 0x0a, | ||
950 | 0x59, | ||
951 | 0x9d, | ||
952 | 0x19, | ||
953 | 0x92, | ||
954 | 0x65, | ||
955 | 0x8c, | ||
956 | 0x83, | ||
957 | 0x14, | ||
958 | 0x2d, | ||
959 | 0x44, | ||
960 | 0x8a, | ||
961 | 0x75, | ||
962 | 0xa9, | ||
963 | 0xf5, | ||
964 | 0x90, | ||
965 | 0xd2, | ||
966 | 0x66, | ||
967 | 0x4e, | ||
968 | 0xfa, | ||
969 | 0x69, | ||
970 | 0x0f, | ||
971 | 0x5b, | ||
972 | 0x0b, | ||
973 | 0x98, | ||
974 | 0x65, | ||
975 | 0xc8, | ||
976 | 0x11, | ||
977 | 0x42, | ||
978 | 0x59, | ||
979 | 0x7f, | ||
980 | 0xdd, | ||
981 | 0x1b, | ||
982 | 0x75, | ||
983 | 0x17, | ||
984 | 0x31, | ||
985 | 0x4c, | ||
986 | 0x75, | ||
987 | 0x58, | ||
988 | 0xeb, | ||
989 | 0x58, | ||
990 | 0x63, | ||
991 | 0x7d, | ||
992 | 0xf2, | ||
993 | 0xa6, | ||
994 | 0xc2, | ||
995 | 0x6e, | ||
996 | 0xb7, | ||
997 | 0x3f, | ||
998 | 0x3e, | ||
999 | 0x5e, | ||
1000 | 0x47, | ||
1001 | 0xad, | ||
1002 | 0xb7, | ||
1003 | 0x04, | ||
1004 | 0xe8, | ||
1005 | 0x05, | ||
1006 | 0xf8, | ||
1007 | 0xb2, | ||
1008 | 0xcf, | ||
1009 | 0x19, | ||
1010 | 0xf3, | ||
1011 | 0xd2, | ||
1012 | 0x85, | ||
1013 | 0xfe, | ||
1014 | 0x3e, | ||
1015 | 0x3e, | ||
1016 | 0xb1, | ||
1017 | 0x62, | ||
1018 | 0x08, | ||
1019 | 0x2c, | ||
1020 | 0x10, | ||
1021 | 0x07, | ||
1022 | 0x0d, | ||
1023 | 0x73, | ||
1024 | 0x90, | ||
1025 | 0x17, | ||
1026 | 0xfa, | ||
1027 | 0x9b, | ||
1028 | 0x56, | ||
1029 | 0x02, | ||
1030 | 0x75, | ||
1031 | 0xf9, | ||
1032 | 0x51, | ||
1033 | 0xe0, | ||
1034 | 0xe9, | ||
1035 | 0x1a, | ||
1036 | 0x7b, | ||
1037 | 0x9f, | ||
1038 | 0xb3, | ||
1039 | 0xf3, | ||
1040 | 0x98, | ||
1041 | 0xb8, | ||
1042 | 0x1c, | ||
1043 | 0x9c, | ||
1044 | 0xe1, | ||
1045 | 0xd5, | ||
1046 | 0x35, | ||
1047 | 0xae, | ||
1048 | 0xc8, | ||
1049 | 0x60, | ||
1050 | 0x48, | ||
1051 | 0x11, | ||
1052 | 0x09, | ||
1053 | 0x94, | ||
1054 | 0x6b, | ||
1055 | 0xd0, | ||
1056 | 0x8b, | ||
1057 | 0x15, | ||
1058 | 0xbc, | ||
1059 | 0x05, | ||
1060 | 0x68, | ||
1061 | 0xd3, | ||
1062 | 0x54, | ||
1063 | 0x8a, | ||
1064 | 0x51, | ||
1065 | 0x39, | ||
1066 | 0x5c, | ||
1067 | 0x42, | ||
1068 | 0x76, | ||
1069 | 0xce, | ||
1070 | 0xd8, | ||
1071 | 0xad, | ||
1072 | 0x89, | ||
1073 | 0x30, | ||
1074 | 0xc9, | ||
1075 | 0x05, | ||
1076 | 0x1c, | ||
1077 | 0xcc, | ||
1078 | 0x94, | ||
1079 | 0x3f, | ||
1080 | 0x0f, | ||
1081 | 0x90, | ||
1082 | 0x6f, | ||
1083 | 0x72, | ||
1084 | 0x2d, | ||
1085 | 0x85, | ||
1086 | 0x64, | ||
1087 | 0x9a, | ||
1088 | 0xb9, | ||
1089 | 0x23, | ||
1090 | 0xf9, | ||
1091 | 0x0b, | ||
1092 | 0xc3, | ||
1093 | 0x7c, | ||
1094 | 0x39, | ||
1095 | 0x0f, | ||
1096 | 0x97, | ||
1097 | 0x07, | ||
1098 | 0x97, | ||
1099 | 0xda, | ||
1100 | 0x58, | ||
1101 | 0x48, | ||
1102 | 0x33, | ||
1103 | 0x05, | ||
1104 | 0x23, | ||
1105 | 0xb8, | ||
1106 | 0x82, | ||
1107 | 0xe8, | ||
1108 | 0xd3, | ||
1109 | 0x53, | ||
1110 | 0x89, | ||
1111 | 0xaf, | ||
1112 | 0x33, | ||
1113 | 0x80, | ||
1114 | 0x22, | ||
1115 | 0x84, | ||
1116 | 0x0c, | ||
1117 | 0x95, | ||
1118 | 0x5c, | ||
1119 | 0x67, | ||
1120 | 0xb8, | ||
1121 | 0x77, | ||
1122 | 0x0c, | ||
1123 | 0x5c, | ||
1124 | 0xa2, | ||
1125 | 0x5f, | ||
1126 | 0x3d, | ||
1127 | 0x58, | ||
1128 | 0x0f, | ||
1129 | 0x27, | ||
1130 | 0xf3, | ||
1131 | 0x2f, | ||
1132 | 0xae, | ||
1133 | 0x48, | ||
1134 | 0xbd, | ||
1135 | 0x0b, | ||
1136 | 0x6f, | ||
1137 | 0x54, | ||
1138 | 0xfb, | ||
1139 | 0x67, | ||
1140 | 0x4c, | ||
1141 | 0xea, | ||
1142 | 0x32, | ||
1143 | 0x27, | ||
1144 | 0xf1, | ||
1145 | 0xfa, | ||
1146 | 0xe2, | ||
1147 | 0xb0, | ||
1148 | 0xec, | ||
1149 | 0x0b, | ||
1150 | 0x15, | ||
1151 | 0xb4, | ||
1152 | 0x70, | ||
1153 | 0xf6, | ||
1154 | 0x5c, | ||
1155 | 0xdd, | ||
1156 | 0x71, | ||
1157 | 0x60, | ||
1158 | 0xc3, | ||
1159 | 0xc1, | ||
1160 | 0xa8, | ||
1161 | 0x32, | ||
1162 | 0x65, | ||
1163 | 0xac, | ||
1164 | 0x7a, | ||
1165 | 0x77, | ||
1166 | 0x41, | ||
1167 | 0xe5, | ||
1168 | 0xa9, | ||
1169 | 0x6b, | ||
1170 | 0x11, | ||
1171 | 0x81, | ||
1172 | 0xfa, | ||
1173 | 0x34, | ||
1174 | 0x8d, | ||
1175 | 0xfb, | ||
1176 | 0xc1, | ||
1177 | 0x80, | ||
1178 | 0x6e, | ||
1179 | 0xc4, | ||
1180 | 0x60, | ||
1181 | 0x30, | ||
1182 | 0x07, | ||
1183 | 0xd4, | ||
1184 | 0x8b, | ||
1185 | 0x67, | ||
1186 | 0xbd, | ||
1187 | 0xaa, | ||
1188 | 0x8c, | ||
1189 | 0x9c, | ||
1190 | 0x64, | ||
1191 | 0xac, | ||
1192 | 0xdb, | ||
1193 | 0x0b, | ||
1194 | 0x24, | ||
1195 | 0x8b, | ||
1196 | 0x63, | ||
1197 | 0x6f, | ||
1198 | 0xe6, | ||
1199 | 0xbc, | ||
1200 | 0xe7, | ||
1201 | 0x33, | ||
1202 | 0xa4, | ||
1203 | 0x4a, | ||
1204 | 0x4c, | ||
1205 | 0xa7, | ||
1206 | 0x9f, | ||
1207 | 0x43, | ||
1208 | 0x53, | ||
1209 | 0xd2, | ||
1210 | 0xbb, | ||
1211 | 0x8f, | ||
1212 | 0x43, | ||
1213 | 0xc7, | ||
1214 | 0x3d, | ||
1215 | 0x78, | ||
1216 | 0x68, | ||
1217 | 0x3f, | ||
1218 | 0xa5, | ||
1219 | 0x3d, | ||
1220 | 0xca, | ||
1221 | 0x69, | ||
1222 | 0x84, | ||
1223 | 0xa6, | ||
1224 | 0x97, | ||
1225 | 0x2d, | ||
1226 | 0xc0, | ||
1227 | 0x7d, | ||
1228 | 0x31, | ||
1229 | 0x34, | ||
1230 | 0x55, | ||
1231 | 0x1d, | ||
1232 | 0x07, | ||
1233 | 0xb1, | ||
1234 | 0x5f, | ||
1235 | 0x40, | ||
1236 | 0x5c, | ||
1237 | 0x93, | ||
1238 | 0xb0, | ||
1239 | 0xbc, | ||
1240 | 0x7c, | ||
1241 | 0xb0, | ||
1242 | 0xbc, | ||
1243 | 0xe7, | ||
1244 | 0x12, | ||
1245 | 0xee, | ||
1246 | 0x6b, | ||
1247 | 0x2b, | ||
1248 | 0xd3, | ||
1249 | 0x4d, | ||
1250 | 0x67, | ||
1251 | 0x70, | ||
1252 | 0x3a, | ||
1253 | 0x9a, | ||
1254 | 0xf2, | ||
1255 | 0x3c, | ||
1256 | 0x7c, | ||
1257 | 0x81, | ||
1258 | 0xfa, | ||
1259 | 0xd7, | ||
1260 | 0xd9, | ||
1261 | 0x90, | ||
1262 | 0x91, | ||
1263 | 0x81, | ||
1264 | 0xb8, | ||
1265 | 0xb1, | ||
1266 | 0xf3, | ||
1267 | 0x48, | ||
1268 | 0x6a, | ||
1269 | 0x26, | ||
1270 | 0x4f, | ||
1271 | 0x0c, | ||
1272 | 0xce, | ||
1273 | 0xb0, | ||
1274 | 0x9e, | ||
1275 | 0xfd, | ||
1276 | 0x4a, | ||
1277 | 0x3a, | ||
1278 | 0xaf, | ||
1279 | 0xac, | ||
1280 | 0x5b, | ||
1281 | 0x3f, | ||
1282 | 0xbf, | ||
1283 | 0x44, | ||
1284 | 0x5a, | ||
1285 | 0xa3, | ||
1286 | 0x19, | ||
1287 | 0x1e, | ||
1288 | 0x4b, | ||
1289 | 0xe7, | ||
1290 | 0x36, | ||
1291 | 0x6a, | ||
1292 | 0xd7, | ||
1293 | 0x20, | ||
1294 | 0xae, | ||
1295 | 0xd7, | ||
1296 | 0x7d, | ||
1297 | 0x3b, | ||
1298 | 0xe7, | ||
1299 | 0xff, | ||
1300 | 0x3a, | ||
1301 | 0x86, | ||
1302 | 0x2e, | ||
1303 | 0xd0, | ||
1304 | 0x4a, | ||
1305 | 0x3e, | ||
1306 | 0xaf, | ||
1307 | 0x9f, | ||
1308 | 0x8e, | ||
1309 | 0x01, | ||
1310 | 0xbf, | ||
1311 | 0xf8, | ||
1312 | 0x4f, | ||
1313 | 0xc1, | ||
1314 | 0xe8, | ||
1315 | 0x6f, | ||
1316 | 0x74, | ||
1317 | 0xe1, | ||
1318 | 0x45, | ||
1319 | 0xd3, | ||
1320 | 0xf7, | ||
1321 | 0x04, | ||
1322 | 0x6a, | ||
1323 | 0x4b, | ||
1324 | 0x9d, | ||
1325 | 0xec, | ||
1326 | 0x33, | ||
1327 | 0x27, | ||
1328 | 0x76, | ||
1329 | 0xd7, | ||
1330 | 0xc5, | ||
1331 | 0xe1, | ||
1332 | 0xb0, | ||
1333 | 0x3b, | ||
1334 | 0x0e, | ||
1335 | 0x23, | ||
1336 | 0xec, | ||
1337 | 0xf0, | ||
1338 | 0x86, | ||
1339 | 0xd2, | ||
1340 | 0x1a, | ||
1341 | 0xbf, | ||
1342 | 0x3d, | ||
1343 | 0x04, | ||
1344 | 0x62, | ||
1345 | 0xb3, | ||
1346 | 0x6c, | ||
1347 | 0xb2, | ||
1348 | 0xeb, | ||
1349 | 0x17, | ||
1350 | 0x05, | ||
1351 | 0xa6, | ||
1352 | 0x0a, | ||
1353 | 0x8a, | ||
1354 | 0x7e, | ||
1355 | 0x83, | ||
1356 | 0x1c, | ||
1357 | 0xb6, | ||
1358 | 0x37, | ||
1359 | 0x09, | ||
1360 | 0xc6, | ||
1361 | 0x0b, | ||
1362 | 0x70, | ||
1363 | 0x3c, | ||
1364 | 0xb5, | ||
1365 | 0x93, | ||
1366 | 0x81, | ||
1367 | 0xd8, | ||
1368 | 0x93, | ||
1369 | 0xa0, | ||
1370 | 0x5f, | ||
1371 | 0x1e, | ||
1372 | 0x08, | ||
1373 | 0xe2, | ||
1374 | 0xc6, | ||
1375 | 0xe5, | ||
1376 | 0xc9, | ||
1377 | 0x72, | ||
1378 | 0xf1, | ||
1379 | 0xf1, | ||
1380 | 0xc1, | ||
1381 | 0xed, | ||
1382 | 0xd5, | ||
1383 | 0x58, | ||
1384 | 0x93, | ||
1385 | 0x83, | ||
1386 | 0xf8, | ||
1387 | 0x65, | ||
1388 | 0x67, | ||
1389 | 0x2e, | ||
1390 | 0x0d, | ||
1391 | 0xa9, | ||
1392 | 0xf1, | ||
1393 | 0x64, | ||
1394 | 0x12, | ||
1395 | 0xe6, | ||
1396 | 0x4c, | ||
1397 | 0xea, | ||
1398 | 0x15, | ||
1399 | 0x3f, | ||
1400 | 0x8c, | ||
1401 | 0x1a, | ||
1402 | 0xb6, | ||
1403 | 0xbf, | ||
1404 | 0xf6, | ||
1405 | 0xb9, | ||
1406 | 0x52, | ||
1407 | 0x35, | ||
1408 | 0x09, | ||
1409 | 0xb0, | ||
1410 | 0xe6, | ||
1411 | 0xf7, | ||
1412 | 0xcd, | ||
1413 | 0xf1, | ||
1414 | 0xa5, | ||
1415 | 0xaa, | ||
1416 | 0x81, | ||
1417 | 0xd1, | ||
1418 | 0x81, | ||
1419 | 0x6f, | ||
1420 | 0xb4, | ||
1421 | 0xa9, | ||
1422 | 0x66, | ||
1423 | 0x1f, | ||
1424 | 0xfc, | ||
1425 | 0x48, | ||
1426 | 0xc0, | ||
1427 | 0xb6, | ||
1428 | 0xd1, | ||
1429 | 0x8b, | ||
1430 | 0x06, | ||
1431 | 0x2f, | ||
1432 | 0xf6, | ||
1433 | 0xef, | ||
1434 | 0x1f, | ||
1435 | 0x0a, | ||
1436 | 0xe6, | ||
1437 | 0xce, | ||
1438 | 0x3a, | ||
1439 | 0x4a, | ||
1440 | 0x55, | ||
1441 | 0xbf, | ||
1442 | 0x6d, | ||
1443 | 0xf9, | ||
1444 | 0x4d, | ||
1445 | 0xd4, | ||
1446 | 0x08, | ||
1447 | 0x45, | ||
1448 | 0x4b, | ||
1449 | 0xc3, | ||
1450 | 0x66, | ||
1451 | 0x19, | ||
1452 | 0x92, | ||
1453 | 0x10, | ||
1454 | 0xe1, | ||
1455 | 0x17, | ||
1456 | 0x8e, | ||
1457 | 0x28, | ||
1458 | 0x91, | ||
1459 | 0x16, | ||
1460 | 0xbf, | ||
1461 | 0x3c, | ||
1462 | 0xee, | ||
1463 | 0xa3, | ||
1464 | 0xa6, | ||
1465 | 0x99, | ||
1466 | 0x92, | ||
1467 | 0x10, | ||
1468 | 0xe1, | ||
1469 | 0xf6, | ||
1470 | 0xcc, | ||
1471 | 0xac, | ||
1472 | 0xb8, | ||
1473 | 0x65, | ||
1474 | 0x0b, | ||
1475 | 0x43, | ||
1476 | 0x66, | ||
1477 | 0xf8, | ||
1478 | 0xe3, | ||
1479 | 0xe5, | ||
1480 | 0x3f, | ||
1481 | 0x24, | ||
1482 | 0x89, | ||
1483 | 0x47, | ||
1484 | 0x5d, | ||
1485 | 0x78, | ||
1486 | 0x43, | ||
1487 | 0xd0, | ||
1488 | 0x61, | ||
1489 | 0x17, | ||
1490 | 0xbd, | ||
1491 | 0x5b, | ||
1492 | 0x64, | ||
1493 | 0x54, | ||
1494 | 0x08, | ||
1495 | 0x45, | ||
1496 | 0x59, | ||
1497 | 0x93, | ||
1498 | 0xf6, | ||
1499 | 0x95, | ||
1500 | 0x8a, | ||
1501 | 0x41, | ||
1502 | 0x51, | ||
1503 | 0x62, | ||
1504 | 0x4b, | ||
1505 | 0x51, | ||
1506 | 0x02, | ||
1507 | 0x30, | ||
1508 | 0x73, | ||
1509 | 0xc7, | ||
1510 | 0x87, | ||
1511 | 0xc5, | ||
1512 | 0x4b, | ||
1513 | 0xa2, | ||
1514 | 0x97, | ||
1515 | 0x0f, | ||
1516 | 0xe8, | ||
1517 | 0x46, | ||
1518 | 0x5f, | ||
1519 | 0x7e, | ||
1520 | 0x2a, | ||
1521 | 0xe1, | ||
1522 | 0x30, | ||
1523 | 0x20, | ||
1524 | 0xb0, | ||
1525 | 0xfa, | ||
1526 | 0xe7, | ||
1527 | 0xce, | ||
1528 | 0x61, | ||
1529 | 0x42, | ||
1530 | 0x57, | ||
1531 | 0x6e, | ||
1532 | 0x21, | ||
1533 | 0xf3, | ||
1534 | 0x7a, | ||
1535 | 0xec, | ||
1536 | 0xe3, | ||
1537 | 0x25, | ||
1538 | 0xc7, | ||
1539 | 0x25, | ||
1540 | 0xf3, | ||
1541 | 0x67, | ||
1542 | 0xa7, | ||
1543 | 0x57, | ||
1544 | 0x40, | ||
1545 | 0x00, | ||
1546 | 0x02, | ||
1547 | 0xcf, | ||
1548 | 0x1c, | ||
1549 | 0x80, | ||
1550 | 0x77, | ||
1551 | 0x67, | ||
1552 | 0xbd, | ||
1553 | 0x70, | ||
1554 | 0xa1, | ||
1555 | 0x19, | ||
1556 | 0x92, | ||
1557 | 0x31, | ||
1558 | 0x75, | ||
1559 | 0x93, | ||
1560 | 0x27, | ||
1561 | 0x27, | ||
1562 | 0xb6, | ||
1563 | 0x82, | ||
1564 | 0xe4, | ||
1565 | 0xeb, | ||
1566 | 0x1d, | ||
1567 | 0x78, | ||
1568 | 0x48, | ||
1569 | 0xe7, | ||
1570 | 0xa5, | ||
1571 | 0x5e, | ||
1572 | 0x57, | ||
1573 | 0xef, | ||
1574 | 0x64, | ||
1575 | 0x28, | ||
1576 | 0x64, | ||
1577 | 0x1b, | ||
1578 | 0xf6, | ||
1579 | 0x11, | ||
1580 | 0xb2, | ||
1581 | 0x03, | ||
1582 | 0x9d, | ||
1583 | 0xb9, | ||
1584 | 0x18, | ||
1585 | 0x02, | ||
1586 | 0x27, | ||
1587 | 0xf7, | ||
1588 | 0xbe, | ||
1589 | 0x9d, | ||
1590 | 0x55, | ||
1591 | 0xfc, | ||
1592 | 0x00, | ||
1593 | 0xd2, | ||
1594 | 0xc7, | ||
1595 | 0xae, | ||
1596 | 0xad, | ||
1597 | 0x0b, | ||
1598 | 0xc5, | ||
1599 | 0xe9, | ||
1600 | 0x42, | ||
1601 | 0x41, | ||
1602 | 0x48, | ||
1603 | 0xd8, | ||
1604 | 0x32, | ||
1605 | 0xcf, | ||
1606 | 0xf6, | ||
1607 | 0x0f, | ||
1608 | 0xf5, | ||
1609 | 0xbc, | ||
1610 | 0x97, | ||
1611 | 0xc6, | ||
1612 | 0x99, | ||
1613 | 0x47, | ||
1614 | 0x76, | ||
1615 | 0xbd, | ||
1616 | 0x89, | ||
1617 | 0x06, | ||
1618 | 0x0f, | ||
1619 | 0x63, | ||
1620 | 0x0c, | ||
1621 | 0x51, | ||
1622 | 0xd4, | ||
1623 | 0x5e, | ||
1624 | 0xea, | ||
1625 | 0x48, | ||
1626 | 0xa8, | ||
1627 | 0xa2, | ||
1628 | 0x56, | ||
1629 | 0x1c, | ||
1630 | 0x79, | ||
1631 | 0x84, | ||
1632 | 0x86, | ||
1633 | 0x40, | ||
1634 | 0x88, | ||
1635 | 0x41, | ||
1636 | 0x76, | ||
1637 | 0x55, | ||
1638 | 0xfc, | ||
1639 | 0xc2, | ||
1640 | 0xd7, | ||
1641 | 0xfd, | ||
1642 | 0xc9, | ||
1643 | 0xc7, | ||
1644 | 0x80, | ||
1645 | 0x61, | ||
1646 | 0x35, | ||
1647 | 0xa7, | ||
1648 | 0x43, | ||
1649 | 0x20, | ||
1650 | 0xf7, | ||
1651 | 0xeb, | ||
1652 | 0x6c, | ||
1653 | 0x66, | ||
1654 | 0x13, | ||
1655 | 0xb0, | ||
1656 | 0xec, | ||
1657 | 0x02, | ||
1658 | 0x75, | ||
1659 | 0x3e, | ||
1660 | 0x4b, | ||
1661 | 0xaf, | ||
1662 | 0xb9, | ||
1663 | 0x5d, | ||
1664 | 0x40, | ||
1665 | 0xda, | ||
1666 | 0xd6, | ||
1667 | 0x6e, | ||
1668 | 0x2d, | ||
1669 | 0x39, | ||
1670 | 0x54, | ||
1671 | 0xc2, | ||
1672 | 0x95, | ||
1673 | 0x35, | ||
1674 | 0x54, | ||
1675 | 0x25, | ||
1676 | 0x72, | ||
1677 | 0xe1, | ||
1678 | 0x78, | ||
1679 | 0xb8, | ||
1680 | 0xeb, | ||
1681 | 0xc1, | ||
1682 | 0x16, | ||
1683 | 0x58, | ||
1684 | 0x0f, | ||
1685 | 0x9c, | ||
1686 | 0x9b, | ||
1687 | 0xb4, | ||
1688 | 0xea, | ||
1689 | 0x37, | ||
1690 | 0xec, | ||
1691 | 0x3b, | ||
1692 | 0x11, | ||
1693 | 0xba, | ||
1694 | 0xd5, | ||
1695 | 0x8a, | ||
1696 | 0xa9, | ||
1697 | 0xe3, | ||
1698 | 0x98, | ||
1699 | 0x00, | ||
1700 | 0x51, | ||
1701 | 0x1c, | ||
1702 | 0x14, | ||
1703 | 0xe0, | ||
1704 | 0x40, | ||
1705 | 0x96, | ||
1706 | 0xe5, | ||
1707 | 0xe9, | ||
1708 | 0xf2, | ||
1709 | 0x21, | ||
1710 | 0x22, | ||
1711 | 0xb1, | ||
1712 | 0x23, | ||
1713 | 0x60, | ||
1714 | 0x78, | ||
1715 | 0xd3, | ||
1716 | 0x17, | ||
1717 | 0xf8, | ||
1718 | 0x7a, | ||
1719 | 0xa5, | ||
1720 | 0xa8, | ||
1721 | 0xba, | ||
1722 | 0x20, | ||
1723 | 0xd3, | ||
1724 | 0x15, | ||
1725 | 0x1e, | ||
1726 | 0x32, | ||
1727 | 0xe4, | ||
1728 | 0x5e, | ||
1729 | 0x15, | ||
1730 | 0x48, | ||
1731 | 0xae, | ||
1732 | 0xa9, | ||
1733 | 0xe5, | ||
1734 | 0xb8, | ||
1735 | 0x33, | ||
1736 | 0xec, | ||
1737 | 0xe8, | ||
1738 | 0xa2, | ||
1739 | 0x42, | ||
1740 | 0xac, | ||
1741 | 0xbf, | ||
1742 | 0x10, | ||
1743 | 0x84, | ||
1744 | 0x53, | ||
1745 | 0x87, | ||
1746 | 0x19, | ||
1747 | 0xb4, | ||
1748 | 0x5f, | ||
1749 | 0x76, | ||
1750 | 0x4d, | ||
1751 | 0x01, | ||
1752 | 0x9d, | ||
1753 | 0x56, | ||
1754 | 0x74, | ||
1755 | 0xd9, | ||
1756 | 0x5c, | ||
1757 | 0x97, | ||
1758 | 0xe7, | ||
1759 | 0x88, | ||
1760 | 0xea, | ||
1761 | 0x3a, | ||
1762 | 0xbf, | ||
1763 | 0xdc, | ||
1764 | 0x4c, | ||
1765 | 0x33, | ||
1766 | 0x8a, | ||
1767 | 0x16, | ||
1768 | 0xb9, | ||
1769 | 0x5b, | ||
1770 | 0xfa, | ||
1771 | 0xd8, | ||
1772 | 0x42, | ||
1773 | 0xa7, | ||
1774 | 0xbb, | ||
1775 | 0x3c, | ||
1776 | 0x04, | ||
1777 | 0x27, | ||
1778 | 0x78, | ||
1779 | 0x49, | ||
1780 | 0x81, | ||
1781 | 0x2a, | ||
1782 | 0x5a, | ||
1783 | 0x7d, | ||
1784 | 0x7c, | ||
1785 | 0x23, | ||
1786 | 0xa8, | ||
1787 | 0xba, | ||
1788 | 0xf7, | ||
1789 | 0x9a, | ||
1790 | 0x9f, | ||
1791 | 0xd2, | ||
1792 | 0x66, | ||
1793 | 0x3e, | ||
1794 | 0x38, | ||
1795 | 0x3c, | ||
1796 | 0x75, | ||
1797 | 0xf9, | ||
1798 | 0xd1, | ||
1799 | 0x30, | ||
1800 | 0x26, | ||
1801 | 0x30, | ||
1802 | 0x6e, | ||
1803 | 0x5a, | ||
1804 | 0x6e, | ||
1805 | 0xdc, | ||
1806 | 0x6a, | ||
1807 | 0x69, | ||
1808 | 0x32, | ||
1809 | 0x50, | ||
1810 | 0x33, | ||
1811 | 0x47, | ||
1812 | 0x9e, | ||
1813 | 0xa4, | ||
1814 | 0xa8, | ||
1815 | 0x64, | ||
1816 | 0x66, | ||
1817 | 0xf0, | ||
1818 | 0x8a, | ||
1819 | 0xe4, | ||
1820 | 0xfd, | ||
1821 | 0x27, | ||
1822 | 0x6f, | ||
1823 | 0x51, | ||
1824 | 0x25, | ||
1825 | 0x8b, | ||
1826 | 0x43, | ||
1827 | 0x74, | ||
1828 | 0xc9, | ||
1829 | 0x8e, | ||
1830 | 0xbd, | ||
1831 | 0x88, | ||
1832 | 0x31, | ||
1833 | 0xbe, | ||
1834 | 0xec, | ||
1835 | 0x65, | ||
1836 | 0xd2, | ||
1837 | 0xcb, | ||
1838 | 0x8d, | ||
1839 | 0x5a, | ||
1840 | 0x13, | ||
1841 | 0x48, | ||
1842 | 0x16, | ||
1843 | 0x8c, | ||
1844 | 0x61, | ||
1845 | 0x0b, | ||
1846 | 0x11, | ||
1847 | 0xf6, | ||
1848 | 0xc6, | ||
1849 | 0x66, | ||
1850 | 0xae, | ||
1851 | 0xc3, | ||
1852 | 0xcc, | ||
1853 | 0x0c, | ||
1854 | 0xd2, | ||
1855 | 0xe1, | ||
1856 | 0x9f, | ||
1857 | 0x82, | ||
1858 | 0x41, | ||
1859 | 0x3f, | ||
1860 | 0x56, | ||
1861 | 0xf9, | ||
1862 | 0x73, | ||
1863 | 0xef, | ||
1864 | 0xdc, | ||
1865 | 0x30, | ||
1866 | 0x50, | ||
1867 | 0xcf, | ||
1868 | 0xb6, | ||
1869 | 0x7f, | ||
1870 | 0xbc, | ||
1871 | 0xd0, | ||
1872 | 0xb3, | ||
1873 | 0x10, | ||
1874 | 0xab, | ||
1875 | 0x24, | ||
1876 | 0xe4, | ||
1877 | 0xec, | ||
1878 | 0xad, | ||
1879 | 0x18, | ||
1880 | 0x8c, | ||
1881 | 0x39, | ||
1882 | 0x2d, | ||
1883 | 0x30, | ||
1884 | 0x4c, | ||
1885 | 0xc5, | ||
1886 | 0x40, | ||
1887 | 0x0d, | ||
1888 | 0xf6, | ||
1889 | 0xac, | ||
1890 | 0xd6, | ||
1891 | 0x18, | ||
1892 | 0x5d, | ||
1893 | 0x96, | ||
1894 | 0xbf, | ||
1895 | 0x5f, | ||
1896 | 0x71, | ||
1897 | 0x75, | ||
1898 | 0x96, | ||
1899 | 0x22, | ||
1900 | 0x97, | ||
1901 | 0x0f, | ||
1902 | 0x02, | ||
1903 | 0x94, | ||
1904 | 0x6e, | ||
1905 | 0xa6, | ||
1906 | 0xae, | ||
1907 | 0x6d, | ||
1908 | 0x8f, | ||
1909 | 0x1e, | ||
1910 | 0xca, | ||
1911 | 0x12, | ||
1912 | 0x9b, | ||
1913 | 0x2a, | ||
1914 | 0x1c, | ||
1915 | 0xce, | ||
1916 | 0xa9, | ||
1917 | 0xee, | ||
1918 | 0xfd, | ||
1919 | 0x12, | ||
1920 | 0x8e, | ||
1921 | 0xfc, | ||
1922 | 0xed, | ||
1923 | 0x09, | ||
1924 | 0x33, | ||
1925 | 0xba, | ||
1926 | 0xf4, | ||
1927 | 0x1a, | ||
1928 | 0x15, | ||
1929 | 0xf6, | ||
1930 | 0x9d, | ||
1931 | 0x87, | ||
1932 | 0x16, | ||
1933 | 0x43, | ||
1934 | 0x7c, | ||
1935 | 0x78, | ||
1936 | 0x57, | ||
1937 | 0xe1, | ||
1938 | 0x44, | ||
1939 | 0xc9, | ||
1940 | 0xeb, | ||
1941 | 0x1f, | ||
1942 | 0x58, | ||
1943 | 0x4d, | ||
1944 | 0xc1, | ||
1945 | 0x49, | ||
1946 | 0x11, | ||
1947 | 0x5c, | ||
1948 | 0xb2, | ||
1949 | 0x11, | ||
1950 | 0xa8, | ||
1951 | 0x55, | ||
1952 | 0x16, | ||
1953 | 0xf1, | ||
1954 | 0xc6, | ||
1955 | 0x50, | ||
1956 | 0xe9, | ||
1957 | 0x87, | ||
1958 | 0x89, | ||
1959 | 0xf6, | ||
1960 | 0xcf, | ||
1961 | 0xd8, | ||
1962 | 0x9c, | ||
1963 | 0x51, | ||
1964 | 0xa7, | ||
1965 | 0xbc, | ||
1966 | 0x5b, | ||
1967 | 0x31, | ||
1968 | 0x6d, | ||
1969 | 0x4d, | ||
1970 | 0x51, | ||
1971 | 0xd0, | ||
1972 | 0x4c, | ||
1973 | 0xbc, | ||
1974 | 0x0d, | ||
1975 | 0x58, | ||
1976 | 0x2d, | ||
1977 | 0x7b, | ||
1978 | 0x88, | ||
1979 | 0x7a, | ||
1980 | 0xf9, | ||
1981 | 0x8e, | ||
1982 | 0xd6, | ||
1983 | 0x40, | ||
1984 | 0x4d, | ||
1985 | 0xbb, | ||
1986 | 0xbe, | ||
1987 | 0xc4, | ||
1988 | 0xe5, | ||
1989 | 0x07, | ||
1990 | 0xfc, | ||
1991 | 0xd9, | ||
1992 | 0x7b, | ||
1993 | 0x6d, | ||
1994 | 0xa6, | ||
1995 | 0x42, | ||
1996 | 0x57, | ||
1997 | 0x8f, | ||
1998 | 0x02, | ||
1999 | 0x94, | ||
2000 | 0x4f, | ||
2001 | 0xe4, | ||
2002 | 0x2a, | ||
2003 | 0x65, | ||
2004 | 0xe2, | ||
2005 | 0x19, | ||
2006 | 0x5a, | ||
2007 | 0x50, | ||
2008 | 0xe1, | ||
2009 | 0x25, | ||
2010 | 0x65, | ||
2011 | 0x4a, | ||
2012 | 0x60, | ||
2013 | 0xc2, | ||
2014 | 0xcd, | ||
2015 | 0xa8, | ||
2016 | 0xec, | ||
2017 | 0x05, | ||
2018 | 0x2e, | ||
2019 | 0x87, | ||
2020 | 0x7b, | ||
2021 | 0x95, | ||
2022 | 0xb7, | ||
2023 | 0x4f, | ||
2024 | 0xa0, | ||
2025 | 0x0b, | ||
2026 | 0x1b, | ||
2027 | 0x4a, | ||
2028 | 0x7f, | ||
2029 | 0x92, | ||
2030 | 0xc8, | ||
2031 | 0x90, | ||
2032 | 0xee, | ||
2033 | 0x89, | ||
2034 | 0x1e, | ||
2035 | 0x10, | ||
2036 | 0xd2, | ||
2037 | 0x85, | ||
2038 | 0xe4, | ||
2039 | 0x9f, | ||
2040 | 0x63, | ||
2041 | 0xc8, | ||
2042 | 0x12, | ||
2043 | 0xbb, | ||
2044 | 0x4e, | ||
2045 | 0xb8, | ||
2046 | 0xcf, | ||
2047 | 0x0a, | ||
2048 | 0xec, | ||
2049 | 0x18, | ||
2050 | 0x4e, | ||
2051 | 0xe6, | ||
2052 | 0x7c, | ||
2053 | 0xb3, | ||
2054 | 0x33, | ||
2055 | 0x26, | ||
2056 | 0xc7, | ||
2057 | 0x1f, | ||
2058 | 0xd2, | ||
2059 | 0x04, | ||
2060 | 0x23, | ||
2061 | 0xea, | ||
2062 | 0x07, | ||
2063 | 0x0c, | ||
2064 | 0x5f, | ||
2065 | 0x90, | ||
2066 | 0xbd, | ||
2067 | 0xa7, | ||
2068 | 0x6a, | ||
2069 | 0x0f, | ||
2070 | 0x4a, | ||
2071 | 0xd6, | ||
2072 | 0x10, | ||
2073 | 0x01, | ||
2074 | 0x3c, | ||
2075 | 0x12, | ||
2076 | 0x29, | ||
2077 | 0x2e, | ||
2078 | 0x96, | ||
2079 | 0xc0, | ||
2080 | 0x4d, | ||
2081 | 0xbb, | ||
2082 | 0xbe, | ||
2083 | 0xe5, | ||
2084 | 0xa7, | ||
2085 | 0x83, | ||
2086 | 0xd5, | ||
2087 | 0x6a, | ||
2088 | 0x3c, | ||
2089 | 0xe3, | ||
2090 | 0x5b, | ||
2091 | 0xb8, | ||
2092 | 0xf2, | ||
2093 | 0x5c, | ||
2094 | 0x6d, | ||
2095 | 0x1f, | ||
2096 | 0xa6, | ||
2097 | 0xf3, | ||
2098 | 0x12, | ||
2099 | 0x24, | ||
2100 | 0xf6, | ||
2101 | 0xd6, | ||
2102 | 0x3b, | ||
2103 | 0x10, | ||
2104 | 0x14, | ||
2105 | 0x09, | ||
2106 | 0x07, | ||
2107 | 0x82, | ||
2108 | 0xe8, | ||
2109 | 0x30, | ||
2110 | 0x6a, | ||
2111 | 0x99, | ||
2112 | 0xdc, | ||
2113 | 0x95, | ||
2114 | 0x01, | ||
2115 | 0x9c, | ||
2116 | 0xd4, | ||
2117 | 0x68, | ||
2118 | 0x3b, | ||
2119 | 0xca, | ||
2120 | 0x98, | ||
2121 | 0x12, | ||
2122 | 0xab, | ||
2123 | 0x77, | ||
2124 | 0x25, | ||
2125 | 0x15, | ||
2126 | 0x7d, | ||
2127 | 0x10, | ||
2128 | 0x32, | ||
2129 | 0x45, | ||
2130 | 0x98, | ||
2131 | 0xcd, | ||
2132 | 0x7a, | ||
2133 | 0xdf, | ||
2134 | 0x71, | ||
2135 | 0x8a, | ||
2136 | 0x75, | ||
2137 | 0xc1, | ||
2138 | 0x1c, | ||
2139 | 0xd4, | ||
2140 | 0x68, | ||
2141 | 0x25, | ||
2142 | 0xeb, | ||
2143 | 0xbb, | ||
2144 | 0x54, | ||
2145 | 0x27, | ||
2146 | 0x6f, | ||
2147 | 0x2a, | ||
2148 | 0xf7, | ||
2149 | 0xb9, | ||
2150 | 0x98, | ||
2151 | 0x03, | ||
2152 | 0x27, | ||
2153 | 0xde, | ||
2154 | 0x24, | ||
2155 | 0xa8, | ||
2156 | 0xbb, | ||
2157 | 0x98, | ||
2158 | 0xc2, | ||
2159 | 0x84, | ||
2160 | 0xff, | ||
2161 | 0x9b, | ||
2162 | 0x51, | ||
2163 | 0xd8, | ||
2164 | 0x53, | ||
2165 | 0x50, | ||
2166 | 0xda, | ||
2167 | 0xf5, | ||
2168 | 0x88, | ||
2169 | 0xaa, | ||
2170 | 0x87, | ||
2171 | 0x2f, | ||
2172 | 0xae, | ||
2173 | 0xd6, | ||
2174 | 0xea, | ||
2175 | 0x6b, | ||
2176 | 0xde, | ||
2177 | 0xc8, | ||
2178 | 0xd7, | ||
2179 | 0xa7, | ||
2180 | 0x28, | ||
2181 | 0x65, | ||
2182 | 0x81, | ||
2183 | 0xe8, | ||
2184 | 0xb2, | ||
2185 | 0x3b, | ||
2186 | 0x1d, | ||
2187 | 0x4f, | ||
2188 | 0x75, | ||
2189 | 0x8f, | ||
2190 | 0x9f, | ||
2191 | 0x7a, | ||
2192 | 0x74, | ||
2193 | 0x8e, | ||
2194 | 0xc1, | ||
2195 | 0x5f, | ||
2196 | 0x9a, | ||
2197 | 0xa8, | ||
2198 | 0x9d, | ||
2199 | 0xfa, | ||
2200 | 0x03, | ||
2201 | 0xa3, | ||
2202 | 0x71, | ||
2203 | 0x9b, | ||
2204 | 0x37, | ||
2205 | 0x6d, | ||
2206 | 0xd5, | ||
2207 | 0x0b, | ||
2208 | 0xf5, | ||
2209 | 0xe1, | ||
2210 | 0xa1, | ||
2211 | 0x1b, | ||
2212 | 0x01, | ||
2213 | 0x6a, | ||
2214 | 0xc6, | ||
2215 | 0x67, | ||
2216 | 0xaa, | ||
2217 | 0xea, | ||
2218 | 0x2c, | ||
2219 | 0x9d, | ||
2220 | 0xa4, | ||
2221 | 0xd2, | ||
2222 | 0x6e, | ||
2223 | 0xfc, | ||
2224 | 0xde, | ||
2225 | 0x2e, | ||
2226 | 0x7f, | ||
2227 | 0x94, | ||
2228 | 0x69, | ||
2229 | 0xe5, | ||
2230 | 0x4a, | ||
2231 | 0xe0, | ||
2232 | 0x01, | ||
2233 | 0x48, | ||
2234 | 0x3c, | ||
2235 | 0x6b, | ||
2236 | 0xf7, | ||
2237 | 0x1e, | ||
2238 | 0xb6, | ||
2239 | 0x0b, | ||
2240 | 0x5f, | ||
2241 | 0xf9, | ||
2242 | 0x2e, | ||
2243 | 0x07, | ||
2244 | 0xc5, | ||
2245 | 0xe8, | ||
2246 | 0xae, | ||
2247 | 0x37, | ||
2248 | 0x1b, | ||
2249 | 0xbc, | ||
2250 | 0x3c, | ||
2251 | 0xd8, | ||
2252 | 0xd5, | ||
2253 | 0x0b, | ||
2254 | 0x91, | ||
2255 | 0x9e, | ||
2256 | 0x80, | ||
2257 | 0x24, | ||
2258 | 0xf5, | ||
2259 | 0x06, | ||
2260 | 0x0c, | ||
2261 | 0x0e, | ||
2262 | 0x98, | ||
2263 | 0x07, | ||
2264 | 0x96, | ||
2265 | 0x2d, | ||
2266 | 0x19, | ||
2267 | 0xdc, | ||
2268 | 0x58, | ||
2269 | 0x93, | ||
2270 | 0xcc, | ||
2271 | 0xfb, | ||
2272 | 0x4e, | ||
2273 | 0xeb, | ||
2274 | 0xbd, | ||
2275 | 0x0f, | ||
2276 | 0xf5, | ||
2277 | 0xaf, | ||
2278 | 0x01, | ||
2279 | 0xfa, | ||
2280 | 0xf1, | ||
2281 | 0x7c, | ||
2282 | 0x43, | ||
2283 | 0x8c, | ||
2284 | 0xb8, | ||
2285 | 0x56, | ||
2286 | 0x3e, | ||
2287 | 0xbe, | ||
2288 | 0x77, | ||
2289 | 0x4e, | ||
2290 | 0x2b, | ||
2291 | 0xf7, | ||
2292 | 0xbb, | ||
2293 | 0xb7, | ||
2294 | 0x45, | ||
2295 | 0x47, | ||
2296 | 0xcd, | ||
2297 | 0xcc, | ||
2298 | 0xa6, | ||
2299 | 0x4c, | ||
2300 | 0x72, | ||
2301 | 0x7b, | ||
2302 | 0x6a, | ||
2303 | 0x2a, | ||
2304 | 0x70, | ||
2305 | 0x13, | ||
2306 | 0x07, | ||
2307 | 0xfd, | ||
2308 | 0xb8, | ||
2309 | 0x9c, | ||
2310 | 0x98, | ||
2311 | 0x3a, | ||
2312 | 0xd8, | ||
2313 | 0x23, | ||
2314 | 0x67, | ||
2315 | 0x5b, | ||
2316 | 0x34, | ||
2317 | 0xd5, | ||
2318 | 0x14, | ||
2319 | 0x0c, | ||
2320 | 0xab, | ||
2321 | 0x77, | ||
2322 | 0x1f, | ||
2323 | 0xf8, | ||
2324 | 0x3d, | ||
2325 | 0x5a, | ||
2326 | 0x9f, | ||
2327 | 0x92, | ||
2328 | 0xb7, | ||
2329 | 0x2c, | ||
2330 | 0xad, | ||
2331 | 0x31, | ||
2332 | 0xde, | ||
2333 | 0x61, | ||
2334 | 0x07, | ||
2335 | 0xb3, | ||
2336 | 0x6b, | ||
2337 | 0xf7, | ||
2338 | 0x38, | ||
2339 | 0x15, | ||
2340 | 0x95, | ||
2341 | 0x46, | ||
2342 | 0x14, | ||
2343 | 0x48, | ||
2344 | 0x53, | ||
2345 | 0x69, | ||
2346 | 0x52, | ||
2347 | 0x66, | ||
2348 | 0x07, | ||
2349 | 0x6d, | ||
2350 | 0x83, | ||
2351 | 0x71, | ||
2352 | 0x8a, | ||
2353 | 0x67, | ||
2354 | 0x25, | ||
2355 | 0x20, | ||
2356 | 0x0f, | ||
2357 | 0xfe, | ||
2358 | 0xd7, | ||
2359 | 0x02, | ||
2360 | 0xd7, | ||
2361 | 0x6e, | ||
2362 | 0x2c, | ||
2363 | 0xd2, | ||
2364 | 0x1a, | ||
2365 | 0x0a, | ||
2366 | 0x5d, | ||
2367 | 0xfd, | ||
2368 | 0x0f, | ||
2369 | 0x74, | ||
2370 | 0xe3, | ||
2371 | 0xa4, | ||
2372 | 0x36, | ||
2373 | 0x07, | ||
2374 | 0x9a, | ||
2375 | 0xdf, | ||
2376 | 0xd4, | ||
2377 | 0x79, | ||
2378 | 0xbf, | ||
2379 | 0xef, | ||
2380 | 0x59, | ||
2381 | 0xc0, | ||
2382 | 0x44, | ||
2383 | 0x52, | ||
2384 | 0x87, | ||
2385 | 0x9a, | ||
2386 | 0x6e, | ||
2387 | 0x1d, | ||
2388 | 0x0e, | ||
2389 | 0xee, | ||
2390 | 0xde, | ||
2391 | 0x2e, | ||
2392 | 0x1a, | ||
2393 | 0xa9, | ||
2394 | 0x8f, | ||
2395 | 0x3a, | ||
2396 | 0xc9, | ||
2397 | 0xba, | ||
2398 | 0xec, | ||
2399 | 0x99, | ||
2400 | 0x78, | ||
2401 | 0x2d, | ||
2402 | 0x55, | ||
2403 | 0x6b, | ||
2404 | 0x14, | ||
2405 | 0xc2, | ||
2406 | 0x06, | ||
2407 | 0xd5, | ||
2408 | 0xfc, | ||
2409 | 0x93, | ||
2410 | 0x53, | ||
2411 | 0x4d, | ||
2412 | 0x11, | ||
2413 | 0x8c, | ||
2414 | 0xf8, | ||
2415 | 0xfa, | ||
2416 | 0x79, | ||
2417 | 0x7c, | ||
2418 | 0xa6, | ||
2419 | 0x64, | ||
2420 | 0xae, | ||
2421 | 0x61, | ||
2422 | 0xb8, | ||
2423 | 0x7b, | ||
2424 | 0x94, | ||
2425 | 0x56, | ||
2426 | 0xa6, | ||
2427 | 0x39, | ||
2428 | 0x78, | ||
2429 | 0x9a, | ||
2430 | 0xe5, | ||
2431 | 0xc7, | ||
2432 | 0xdf, | ||
2433 | 0x18, | ||
2434 | 0x63, | ||
2435 | 0x23, | ||
2436 | 0x9c, | ||
2437 | 0xfa, | ||
2438 | 0x66, | ||
2439 | 0xbb, | ||
2440 | 0xb7, | ||
2441 | 0x5a, | ||
2442 | 0x27, | ||
2443 | 0x4c, | ||
2444 | 0xd1, | ||
2445 | 0xa1, | ||
2446 | 0x83, | ||
2447 | 0x22, | ||
2448 | 0xb3, | ||
2449 | 0x52, | ||
2450 | 0x49, | ||
2451 | 0x35, | ||
2452 | 0xb0, | ||
2453 | 0x22, | ||
2454 | 0x83, | ||
2455 | 0x59, | ||
2456 | 0x12, | ||
2457 | 0x00, | ||
2458 | 0x16, | ||
2459 | 0x98, | ||
2460 | 0xdd, | ||
2461 | 0xad, | ||
2462 | 0xc2, | ||
2463 | 0x94, | ||
2464 | 0xf9, | ||
2465 | 0xd3, | ||
2466 | 0x7b, | ||
2467 | 0x64, | ||
2468 | 0x7f, | ||
2469 | 0x44, | ||
2470 | 0x3e, | ||
2471 | 0x3c, | ||
2472 | 0x8b, | ||
2473 | 0x9a, | ||
2474 | 0x83, | ||
2475 | 0x9c, | ||
2476 | 0x69, | ||
2477 | 0x6b, | ||
2478 | 0xe4, | ||
2479 | 0xdf, | ||
2480 | 0x9f, | ||
2481 | 0xed, | ||
2482 | 0x54, | ||
2483 | 0x1f, | ||
2484 | 0xe5, | ||
2485 | 0x5d, | ||
2486 | 0x7a, | ||
2487 | 0x05, | ||
2488 | 0x82, | ||
2489 | 0xb3, | ||
2490 | 0xdd, | ||
2491 | 0xef, | ||
2492 | 0xfc, | ||
2493 | 0x53, | ||
2494 | 0x96, | ||
2495 | 0xb0, | ||
2496 | 0x2c, | ||
2497 | 0x5a, | ||
2498 | 0xf8, | ||
2499 | 0xdf, | ||
2500 | 0x9c, | ||
2501 | 0x8b, | ||
2502 | 0x16, | ||
2503 | 0x4e, | ||
2504 | 0xdf, | ||
2505 | 0xda, | ||
2506 | 0x4d, | ||
2507 | 0x09, | ||
2508 | 0x09, | ||
2509 | 0x69, | ||
2510 | 0x50, | ||
2511 | 0x03, | ||
2512 | 0x65, | ||
2513 | 0xd8, | ||
2514 | 0x73, | ||
2515 | 0x70, | ||
2516 | 0xe8, | ||
2517 | 0x86, | ||
2518 | 0xbf, | ||
2519 | 0xbb, | ||
2520 | 0x35, | ||
2521 | 0xce, | ||
2522 | 0xb2, | ||
2523 | 0x46, | ||
2524 | 0xcb, | ||
2525 | 0x02, | ||
2526 | 0x00, | ||
2527 | 0x5b, | ||
2528 | 0xb4, | ||
2529 | 0xe2, | ||
2530 | 0xc6, | ||
2531 | 0x8f, | ||
2532 | 0x2f, | ||
2533 | 0x98, | ||
2534 | 0xaf, | ||
2535 | 0x87, | ||
2536 | 0x4b, | ||
2537 | 0x48, | ||
2538 | 0x45, | ||
2539 | 0xed, | ||
2540 | 0xcc, | ||
2541 | 0x1d, | ||
2542 | 0xe6, | ||
2543 | 0x58, | ||
2544 | 0xd6, | ||
2545 | 0xf2, | ||
2546 | 0x50, | ||
2547 | 0x25, | ||
2548 | 0x9f, | ||
2549 | 0x52, | ||
2550 | 0xc7, | ||
2551 | 0xcb, | ||
2552 | 0x8a, | ||
2553 | 0x17, | ||
2554 | 0x9d, | ||
2555 | 0x5b, | ||
2556 | 0xe5, | ||
2557 | 0xc8, | ||
2558 | 0xd7, | ||
2559 | 0x72, | ||
2560 | 0xb7, | ||
2561 | 0x52, | ||
2562 | 0xb2, | ||
2563 | 0xc4, | ||
2564 | 0x98, | ||
2565 | 0xe3, | ||
2566 | 0x7a, | ||
2567 | 0x17, | ||
2568 | 0x3e, | ||
2569 | 0xc6, | ||
2570 | 0x60, | ||
2571 | 0xa7, | ||
2572 | 0x97, | ||
2573 | 0xb0, | ||
2574 | 0xcf, | ||
2575 | 0x18, | ||
2576 | 0x81, | ||
2577 | 0x53, | ||
2578 | 0x84, | ||
2579 | 0x4c, | ||
2580 | 0xd5, | ||
2581 | 0x17, | ||
2582 | 0x32, | ||
2583 | 0x03, | ||
2584 | 0x13, | ||
2585 | 0x39, | ||
2586 | 0x51, | ||
2587 | 0x09, | ||
2588 | 0x10, | ||
2589 | 0xe3, | ||
2590 | 0x77, | ||
2591 | 0x49, | ||
2592 | 0x4f, | ||
2593 | 0x62, | ||
2594 | 0x01, | ||
2595 | 0xbf, | ||
2596 | 0x8c, | ||
2597 | 0x9a, | ||
2598 | 0xe0, | ||
2599 | 0x41, | ||
2600 | 0x9e, | ||
2601 | 0x89, | ||
2602 | 0x74, | ||
2603 | 0x36, | ||
2604 | 0xf9, | ||
2605 | 0x96, | ||
2606 | 0x86, | ||
2607 | 0x2e, | ||
2608 | 0x96, | ||
2609 | 0x1c, | ||
2610 | 0x4a, | ||
2611 | 0xb7, | ||
2612 | 0x2b, | ||
2613 | 0x4a, | ||
2614 | 0x97, | ||
2615 | 0xbc, | ||
2616 | 0x99, | ||
2617 | 0x40, | ||
2618 | 0xa3, | ||
2619 | 0xe0, | ||
2620 | 0x3d, | ||
2621 | 0xc8, | ||
2622 | 0xad, | ||
2623 | 0x2f, | ||
2624 | 0xdf, | ||
2625 | 0x4f, | ||
2626 | 0x2c, | ||
2627 | 0xc4, | ||
2628 | 0x69, | ||
2629 | 0x82, | ||
2630 | 0x9f, | ||
2631 | 0x9b, | ||
2632 | 0x81, | ||
2633 | 0x0c, | ||
2634 | 0x61, | ||
2635 | 0x5c, | ||
2636 | 0xa5, | ||
2637 | 0x9d, | ||
2638 | 0x8c, | ||
2639 | 0x89, | ||
2640 | 0xc0, | ||
2641 | 0x2c, | ||
2642 | 0xb4, | ||
2643 | 0x4a, | ||
2644 | 0x33, | ||
2645 | 0x4e, | ||
2646 | 0xeb, | ||
2647 | 0xa2, | ||
2648 | 0x56, | ||
2649 | 0x40, | ||
2650 | 0xc0, | ||
2651 | 0xc2, | ||
2652 | 0x46, | ||
2653 | 0xaf, | ||
2654 | 0x6a, | ||
2655 | 0xfc, | ||
2656 | 0x67, | ||
2657 | 0xd1, | ||
2658 | 0x80, | ||
2659 | 0x5e, | ||
2660 | 0xc5, | ||
2661 | 0x6d, | ||
2662 | 0x84, | ||
2663 | 0x43, | ||
2664 | 0x27, | ||
2665 | 0x3f, | ||
2666 | 0x55, | ||
2667 | 0x15, | ||
2668 | 0x96, | ||
2669 | 0x6a, | ||
2670 | 0xa0, | ||
2671 | 0xa5, | ||
2672 | 0xda, | ||
2673 | 0xb7, | ||
2674 | 0xff, | ||
2675 | 0xb7, | ||
2676 | 0x75, | ||
2677 | 0x6e, | ||
2678 | 0x4c, | ||
2679 | 0x49, | ||
2680 | 0x91, | ||
2681 | 0x9d, | ||
2682 | 0x22, | ||
2683 | 0xa3, | ||
2684 | 0x46, | ||
2685 | 0xea, | ||
2686 | 0xed, | ||
2687 | 0x9a, | ||
2688 | 0x00, | ||
2689 | 0xe2, | ||
2690 | 0x32, | ||
2691 | 0xc3, | ||
2692 | 0xd6, | ||
2693 | 0xa9, | ||
2694 | 0x71, | ||
2695 | 0x20, | ||
2696 | 0x55, | ||
2697 | 0xa3, | ||
2698 | 0x19, | ||
2699 | 0xed, | ||
2700 | 0xf8, | ||
2701 | 0x4f, | ||
2702 | 0xa7, | ||
2703 | 0x12, | ||
2704 | 0x9c, | ||
2705 | 0x66, | ||
2706 | 0x87, | ||
2707 | 0xaf, | ||
2708 | 0x4e, | ||
2709 | 0xb7, | ||
2710 | 0xf0, | ||
2711 | 0xdb, | ||
2712 | 0xbf, | ||
2713 | 0xef, | ||
2714 | 0xf0, | ||
2715 | 0xf6, | ||
2716 | 0xaf, | ||
2717 | 0xea, | ||
2718 | 0xda, | ||
2719 | 0x09, | ||
2720 | 0xfe, | ||
2721 | 0xde, | ||
2722 | 0x38, | ||
2723 | 0x5c, | ||
2724 | 0xa5, | ||
2725 | 0xa2, | ||
2726 | 0xdf, | ||
2727 | 0x99, | ||
2728 | 0x45, | ||
2729 | 0xa8, | ||
2730 | 0xe4, | ||
2731 | 0xe7, | ||
2732 | 0x92, | ||
2733 | 0xac, | ||
2734 | 0x67, | ||
2735 | 0xaa, | ||
2736 | 0x4f, | ||
2737 | 0xbf, | ||
2738 | 0x77, | ||
2739 | 0x3e, | ||
2740 | 0xa2, | ||
2741 | 0x40, | ||
2742 | 0x49, | ||
2743 | 0x22, | ||
2744 | 0x4a, | ||
2745 | 0x1e, | ||
2746 | 0x3b, | ||
2747 | 0xaa, | ||
2748 | 0x70, | ||
2749 | 0x7f, | ||
2750 | 0x95, | ||
2751 | 0xaf, | ||
2752 | 0x37, | ||
2753 | 0x4b, | ||
2754 | 0xfc, | ||
2755 | 0x99, | ||
2756 | 0xe2, | ||
2757 | 0xe0, | ||
2758 | 0xba, | ||
2759 | 0xd7, | ||
2760 | 0x34, | ||
2761 | 0xce, | ||
2762 | 0x55, | ||
2763 | 0x88, | ||
2764 | 0x5b, | ||
2765 | 0x84, | ||
2766 | 0x1b, | ||
2767 | 0x57, | ||
2768 | 0xc4, | ||
2769 | 0x80, | ||
2770 | 0x03, | ||
2771 | 0x53, | ||
2772 | 0xc9, | ||
2773 | 0x2f, | ||
2774 | 0x93, | ||
2775 | 0x04, | ||
2776 | 0x4d, | ||
2777 | 0xd5, | ||
2778 | 0x96, | ||
2779 | 0xe5, | ||
2780 | 0x70, | ||
2781 | 0xa6, | ||
2782 | 0x6e, | ||
2783 | 0x63, | ||
2784 | 0x5d, | ||
2785 | 0x9d, | ||
2786 | 0x6c, | ||
2787 | 0xdb, | ||
2788 | 0x02, | ||
2789 | 0x0a, | ||
2790 | 0xa9, | ||
2791 | 0xda, | ||
2792 | 0x8b, | ||
2793 | 0x53, | ||
2794 | 0xdc, | ||
2795 | 0xd9, | ||
2796 | 0x9a, | ||
2797 | 0xc5, | ||
2798 | 0x94, | ||
2799 | 0x2c, | ||
2800 | 0x91, | ||
2801 | 0x92, | ||
2802 | 0x2a, | ||
2803 | 0xde, | ||
2804 | 0xbb, | ||
2805 | 0x8b, | ||
2806 | 0x13, | ||
2807 | 0xb9, | ||
2808 | 0x19, | ||
2809 | 0x96, | ||
2810 | 0x64, | ||
2811 | 0xcc, | ||
2812 | 0xf2, | ||
2813 | 0x64, | ||
2814 | 0x39, | ||
2815 | 0xb7, | ||
2816 | 0x75, | ||
2817 | 0x49, | ||
2818 | 0xe9, | ||
2819 | 0x86, | ||
2820 | 0xc2, | ||
2821 | 0x86, | ||
2822 | 0x62, | ||
2823 | 0xd9, | ||
2824 | 0x24, | ||
2825 | 0xd3, | ||
2826 | 0x81, | ||
2827 | 0x35, | ||
2828 | 0x49, | ||
2829 | 0xfc, | ||
2830 | 0xa0, | ||
2831 | 0xa5, | ||
2832 | 0xa0, | ||
2833 | 0x93, | ||
2834 | 0x05, | ||
2835 | 0x64, | ||
2836 | 0xb4, | ||
2837 | 0x1a, | ||
2838 | 0x57, | ||
2839 | 0xce, | ||
2840 | 0x0c, | ||
2841 | 0x90, | ||
2842 | 0x02, | ||
2843 | 0x27, | ||
2844 | 0xc5, | ||
2845 | 0x7a, | ||
2846 | 0x2b, | ||
2847 | 0x5d, | ||
2848 | 0xae, | ||
2849 | 0x3e, | ||
2850 | 0xd5, | ||
2851 | 0xdd, | ||
2852 | 0x10, | ||
2853 | 0x7c, | ||
2854 | 0x14, | ||
2855 | 0xea, | ||
2856 | 0x3a, | ||
2857 | 0x08, | ||
2858 | 0xac, | ||
2859 | 0x72, | ||
2860 | 0x4e, | ||
2861 | 0x90, | ||
2862 | 0x3d, | ||
2863 | 0x3b, | ||
2864 | 0x7c, | ||
2865 | 0x86, | ||
2866 | 0x2e, | ||
2867 | 0xeb, | ||
2868 | 0xd4, | ||
2869 | 0x06, | ||
2870 | 0x70, | ||
2871 | 0xe6, | ||
2872 | 0xc7, | ||
2873 | 0xfb, | ||
2874 | 0x5f, | ||
2875 | 0xbd, | ||
2876 | 0x18, | ||
2877 | 0xf4, | ||
2878 | 0x11, | ||
2879 | 0xa4, | ||
2880 | 0x1a, | ||
2881 | 0x93, | ||
2882 | 0xc3, | ||
2883 | 0xbe, | ||
2884 | 0xd9, | ||
2885 | 0xfb, | ||
2886 | 0x26, | ||
2887 | 0x48, | ||
2888 | 0x2f, | ||
2889 | 0x37, | ||
2890 | 0x3c, | ||
2891 | 0xd0, | ||
2892 | 0x03, | ||
2893 | 0x47, | ||
2894 | 0x1a, | ||
2895 | 0xf7, | ||
2896 | 0x62, | ||
2897 | 0x19, | ||
2898 | 0x24, | ||
2899 | 0x5c, | ||
2900 | 0xf4, | ||
2901 | 0xa8, | ||
2902 | 0x92, | ||
2903 | 0x20, | ||
2904 | 0x7a, | ||
2905 | 0xf2, | ||
2906 | 0x9e, | ||
2907 | 0x2a, | ||
2908 | 0xc5, | ||
2909 | 0x95, | ||
2910 | 0xa2, | ||
2911 | 0xfb, | ||
2912 | 0xa4, | ||
2913 | 0xea, | ||
2914 | 0x85, | ||
2915 | 0xd8, | ||
2916 | 0x56, | ||
2917 | 0xb7, | ||
2918 | 0x70, | ||
2919 | 0xd1, | ||
2920 | 0x60, | ||
2921 | 0x30, | ||
2922 | 0xa5, | ||
2923 | 0x30, | ||
2924 | 0x82, | ||
2925 | 0x70, | ||
2926 | 0xdc, | ||
2927 | 0x7a, | ||
2928 | 0x65, | ||
2929 | 0x8a, | ||
2930 | 0x36, | ||
2931 | 0x3f, | ||
2932 | 0x5b, | ||
2933 | 0x0c, | ||
2934 | 0xae, | ||
2935 | 0x54, | ||
2936 | 0x7c, | ||
2937 | 0xd3, | ||
2938 | 0x57, | ||
2939 | 0x84, | ||
2940 | 0x7b, | ||
2941 | 0x3a, | ||
2942 | 0x65, | ||
2943 | 0x18, | ||
2944 | 0x81, | ||
2945 | 0xee, | ||
2946 | 0x05, | ||
2947 | 0x9b, | ||
2948 | 0x44, | ||
2949 | 0x4d, | ||
2950 | 0xb8, | ||
2951 | 0xda, | ||
2952 | 0xa2, | ||
2953 | 0xa1, | ||
2954 | 0xc9, | ||
2955 | 0x15, | ||
2956 | 0xd3, | ||
2957 | 0x73, | ||
2958 | 0x03, | ||
2959 | 0x0e, | ||
2960 | 0x43, | ||
2961 | 0xe9, | ||
2962 | 0x8e, | ||
2963 | 0x15, | ||
2964 | 0xf9, | ||
2965 | 0xbe, | ||
2966 | 0xc6, | ||
2967 | 0xc5, | ||
2968 | 0x8a, | ||
2969 | 0xe5, | ||
2970 | 0xc0, | ||
2971 | 0x1e, | ||
2972 | 0xc2, | ||
2973 | 0x37, | ||
2974 | 0x9e, | ||
2975 | 0x2a, | ||
2976 | 0x26, | ||
2977 | 0xa5, | ||
2978 | 0xa0, | ||
2979 | 0xbd, | ||
2980 | 0x24, | ||
2981 | 0x5f, | ||
2982 | 0xb9, | ||
2983 | 0xc1, | ||
2984 | 0xab, | ||
2985 | 0x34, | ||
2986 | 0x48, | ||
2987 | 0xb9, | ||
2988 | 0x5d, | ||
2989 | 0x98, | ||
2990 | 0xb4, | ||
2991 | 0x65, | ||
2992 | 0x18, | ||
2993 | 0xf3, | ||
2994 | 0x63, | ||
2995 | 0x19, | ||
2996 | 0x44, | ||
2997 | 0x1b, | ||
2998 | 0x11, | ||
2999 | 0x16, | ||
3000 | 0xff, | ||
3001 | 0xdc, | ||
3002 | 0xf1, | ||
3003 | 0x79, | ||
3004 | 0x08, | ||
3005 | 0x86, | ||
3006 | 0x0f, | ||
3007 | 0x52, | ||
3008 | 0x98, | ||
3009 | 0x73, | ||
3010 | 0xc4, | ||
3011 | 0x92, | ||
3012 | 0x90, | ||
3013 | 0x2b, | ||
3014 | 0x47, | ||
3015 | 0x09, | ||
3016 | 0xd0, | ||
3017 | 0x43, | ||
3018 | 0x6c, | ||
3019 | 0x2f, | ||
3020 | 0x20, | ||
3021 | 0xeb, | ||
3022 | 0xdc, | ||
3023 | 0xda, | ||
3024 | 0xc5, | ||
3025 | 0x08, | ||
3026 | 0x7b, | ||
3027 | 0x94, | ||
3028 | 0x42, | ||
3029 | 0x30, | ||
3030 | 0x6a, | ||
3031 | 0xc7, | ||
3032 | 0xda, | ||
3033 | 0x8c, | ||
3034 | 0xc3, | ||
3035 | 0x76, | ||
3036 | 0xa7, | ||
3037 | 0xa5, | ||
3038 | 0xcc, | ||
3039 | 0x62, | ||
3040 | 0x13, | ||
3041 | 0x00, | ||
3042 | 0x60, | ||
3043 | 0x31, | ||
3044 | 0x58, | ||
3045 | 0x44, | ||
3046 | 0x9b, | ||
3047 | 0xf5, | ||
3048 | 0x64, | ||
3049 | 0x14, | ||
3050 | 0xf5, | ||
3051 | 0x11, | ||
3052 | 0xc5, | ||
3053 | 0x54, | ||
3054 | 0x52, | ||
3055 | 0x83, | ||
3056 | 0xd4, | ||
3057 | 0x73, | ||
3058 | 0x01, | ||
3059 | 0x16, | ||
3060 | 0x0e, | ||
3061 | 0xb3, | ||
3062 | 0x7a, | ||
3063 | 0x29, | ||
3064 | 0x69, | ||
3065 | 0x35, | ||
3066 | 0x56, | ||
3067 | 0xd4, | ||
3068 | 0xee, | ||
3069 | 0x8a, | ||
3070 | 0x17, | ||
3071 | 0xa2, | ||
3072 | 0x99, | ||
3073 | 0x24, | ||
3074 | 0x9c, | ||
3075 | 0xd7, | ||
3076 | 0x8f, | ||
3077 | 0xdb, | ||
3078 | 0x55, | ||
3079 | 0xb5, | ||
3080 | 0x3e | ||
3081 | }; | ||
diff --git a/keyboards/molecule/config.h b/keyboards/molecule/config.h new file mode 100755 index 000000000..e3bc5ad34 --- /dev/null +++ b/keyboards/molecule/config.h | |||
@@ -0,0 +1,159 @@ | |||
1 | /* | ||
2 | Copyright 2021 bbrfkr | ||
3 | |||
4 | This program is free software: you can redistribute it and/or modify | ||
5 | it under the terms of the GNU General Public License as published by | ||
6 | the Free Software Foundation, either version 2 of the License, or | ||
7 | (at your option) any later version. | ||
8 | |||
9 | This program is distributed in the hope that it will be useful, | ||
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | GNU General Public License for more details. | ||
13 | |||
14 | You should have received a copy of the GNU General Public License | ||
15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
16 | */ | ||
17 | |||
18 | #pragma once | ||
19 | |||
20 | #include "config_common.h" | ||
21 | |||
22 | /* USB Device descriptor parameter */ | ||
23 | #define VENDOR_ID 0xFEED | ||
24 | #define PRODUCT_ID 0x0000 | ||
25 | #define DEVICE_VER 0x0001 | ||
26 | #define MANUFACTURER bbrfkr | ||
27 | #define PRODUCT molecule | ||
28 | |||
29 | /* key matrix size */ | ||
30 | #define MATRIX_ROWS 4 | ||
31 | #define MATRIX_COLS 10 | ||
32 | |||
33 | /* | ||
34 | * Keyboard Matrix Assignments | ||
35 | * | ||
36 | * Change this to how you wired your keyboard | ||
37 | * COLS: AVR pins used for columns, left to right | ||
38 | * ROWS: AVR pins used for rows, top to bottom | ||
39 | * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) | ||
40 | * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) | ||
41 | * | ||
42 | */ | ||
43 | #define MATRIX_ROW_PINS { F4, F5, F6, B6 } | ||
44 | #define MATRIX_COL_PINS { D3, D2, D1, D0, D4, C6, D7, E6, B4, B5 } | ||
45 | #define UNUSED_PINS | ||
46 | |||
47 | /* COL2ROW, ROW2COL */ | ||
48 | #define DIODE_DIRECTION ROW2COL | ||
49 | |||
50 | /* | ||
51 | * Split Keyboard specific options, make sure you have 'SPLIT_KEYBOARD = yes' in your rules.mk, and define SOFT_SERIAL_PIN. | ||
52 | */ | ||
53 | // #define SOFT_SERIAL_PIN D2 // or D1, D2, D3, E6 | ||
54 | // #define USE_SERIAL | ||
55 | |||
56 | //#define BACKLIGHT_PIN B7 | ||
57 | //#define BACKLIGHT_LEVELS 3 | ||
58 | //#define BACKLIGHT_BREATHING | ||
59 | |||
60 | /* underglow LED */ | ||
61 | // #define RGB_DI_PIN D3 | ||
62 | // #ifdef RGBLIGHT_ENABLE | ||
63 | // # define RGBLED_NUM 10 | ||
64 | // # define RGBLED_SPLIT { 5, 5 } | ||
65 | // # define RGBLIGHT_ANIMATIONS | ||
66 | // #endif | ||
67 | |||
68 | //#define RGB_DI_PIN E2 | ||
69 | //#ifdef RGB_DI_PIN | ||
70 | //# define RGBLED_NUM 16 | ||
71 | //# define RGBLIGHT_HUE_STEP 8 | ||
72 | //# define RGBLIGHT_SAT_STEP 8 | ||
73 | //# define RGBLIGHT_VAL_STEP 8 | ||
74 | //# define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */ | ||
75 | //# define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */ | ||
76 | /*== all animations enable ==*/ | ||
77 | //# define RGBLIGHT_ANIMATIONS | ||
78 | /*== or choose animations ==*/ | ||
79 | //# define RGBLIGHT_EFFECT_BREATHING | ||
80 | //# define RGBLIGHT_EFFECT_RAINBOW_MOOD | ||
81 | //# define RGBLIGHT_EFFECT_RAINBOW_SWIRL | ||
82 | //# define RGBLIGHT_EFFECT_SNAKE | ||
83 | //# define RGBLIGHT_EFFECT_KNIGHT | ||
84 | //# define RGBLIGHT_EFFECT_CHRISTMAS | ||
85 | //# define RGBLIGHT_EFFECT_STATIC_GRADIENT | ||
86 | //# define RGBLIGHT_EFFECT_RGB_TEST | ||
87 | //# define RGBLIGHT_EFFECT_ALTERNATING | ||
88 | /*== customize breathing effect ==*/ | ||
89 | /*==== (DEFAULT) use fixed table instead of exp() and sin() ====*/ | ||
90 | //# define RGBLIGHT_BREATHE_TABLE_SIZE 256 // 256(default) or 128 or 64 | ||
91 | /*==== use exp() and sin() ====*/ | ||
92 | //# define RGBLIGHT_EFFECT_BREATHE_CENTER 1.85 // 1 to 2.7 | ||
93 | //# define RGBLIGHT_EFFECT_BREATHE_MAX 255 // 0 to 255 | ||
94 | //#endif | ||
95 | |||
96 | |||
97 | /* OLED */ | ||
98 | #define OLED_TIMEOUT 0 | ||
99 | |||
100 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
101 | #define DEBOUNCE 5 | ||
102 | |||
103 | /* define if matrix has ghost (lacks anti-ghosting diodes) */ | ||
104 | //#define MATRIX_HAS_GHOST | ||
105 | |||
106 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
107 | #define LOCKING_SUPPORT_ENABLE | ||
108 | /* Locking resynchronize hack */ | ||
109 | #define LOCKING_RESYNC_ENABLE | ||
110 | |||
111 | /* If defined, GRAVE_ESC will always act as ESC when CTRL is held. | ||
112 | * This is useful for the Windows task manager shortcut (ctrl+shift+esc). | ||
113 | */ | ||
114 | //#define GRAVE_ESC_CTRL_OVERRIDE | ||
115 | |||
116 | /* | ||
117 | * Force NKRO | ||
118 | * | ||
119 | * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved | ||
120 | * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the | ||
121 | * makefile for this to work.) | ||
122 | * | ||
123 | * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N) | ||
124 | * until the next keyboard reset. | ||
125 | * | ||
126 | * NKRO may prevent your keystrokes from being detected in the BIOS, but it is | ||
127 | * fully operational during normal computer usage. | ||
128 | * | ||
129 | * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N) | ||
130 | * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by | ||
131 | * bootmagic, NKRO mode will always be enabled until it is toggled again during a | ||
132 | * power-up. | ||
133 | * | ||
134 | */ | ||
135 | //#define FORCE_NKRO | ||
136 | |||
137 | /* | ||
138 | * Feature disable options | ||
139 | * These options are also useful to firmware size reduction. | ||
140 | */ | ||
141 | |||
142 | /* disable debug print */ | ||
143 | //#define NO_DEBUG | ||
144 | |||
145 | /* disable print */ | ||
146 | //#define NO_PRINT | ||
147 | |||
148 | /* disable action features */ | ||
149 | //#define NO_ACTION_LAYER | ||
150 | //#define NO_ACTION_TAPPING | ||
151 | //#define NO_ACTION_ONESHOT | ||
152 | |||
153 | /* disable these deprecated features by default */ | ||
154 | #define NO_ACTION_MACRO | ||
155 | #define NO_ACTION_FUNCTION | ||
156 | |||
157 | /* Bootmagic Lite key configuration */ | ||
158 | //#define BOOTMAGIC_LITE_ROW 0 | ||
159 | //#define BOOTMAGIC_LITE_COLUMN 0 | ||
diff --git a/keyboards/molecule/info.json b/keyboards/molecule/info.json new file mode 100755 index 000000000..516464b7a --- /dev/null +++ b/keyboards/molecule/info.json | |||
@@ -0,0 +1,215 @@ | |||
1 | { | ||
2 | "keyboard_name": "molecule", | ||
3 | "url": "https://github.com/bbrfkr/keyboards/tree/master/molecule", | ||
4 | "maintainer": "bbrfkr", | ||
5 | "width": 14.75, | ||
6 | "height": 5, | ||
7 | "layouts": { | ||
8 | "LAYOUT": { | ||
9 | "layout": [ | ||
10 | { | ||
11 | "label":"E", | ||
12 | "x":2, | ||
13 | "y":0 | ||
14 | }, | ||
15 | { | ||
16 | "label":"I", | ||
17 | "x":11.75, | ||
18 | "y":0 | ||
19 | }, | ||
20 | { | ||
21 | "label":"W", | ||
22 | "x":1, | ||
23 | "y":0.25 | ||
24 | }, | ||
25 | { | ||
26 | "label":"O", | ||
27 | "x":12.75, | ||
28 | "y":0.25 | ||
29 | }, | ||
30 | { | ||
31 | "label":"R", | ||
32 | "x":3, | ||
33 | "y":0.5 | ||
34 | }, | ||
35 | { | ||
36 | "label":"U", | ||
37 | "x":10.75, | ||
38 | "y":0.5 | ||
39 | }, | ||
40 | { | ||
41 | "label":"T", | ||
42 | "x":4, | ||
43 | "y":0.75 | ||
44 | }, | ||
45 | { | ||
46 | "label":"Y", | ||
47 | "x":9.75, | ||
48 | "y":0.75 | ||
49 | }, | ||
50 | { | ||
51 | "label":"Q", | ||
52 | "x":0, | ||
53 | "y":1 | ||
54 | }, | ||
55 | { | ||
56 | "label":"D", | ||
57 | "x":2, | ||
58 | "y":1 | ||
59 | }, | ||
60 | { | ||
61 | "label":"K", | ||
62 | "x":11.75, | ||
63 | "y":1 | ||
64 | }, | ||
65 | { | ||
66 | "label":"P", | ||
67 | "x":13.75, | ||
68 | "y":1 | ||
69 | }, | ||
70 | { | ||
71 | "label":"S", | ||
72 | "x":1, | ||
73 | "y":1.25 | ||
74 | }, | ||
75 | { | ||
76 | "label":"L", | ||
77 | "x":12.75, | ||
78 | "y":1.25 | ||
79 | }, | ||
80 | { | ||
81 | "label":"F", | ||
82 | "x":3, | ||
83 | "y":1.5 | ||
84 | }, | ||
85 | { | ||
86 | "label":"J", | ||
87 | "x":10.75, | ||
88 | "y":1.5 | ||
89 | }, | ||
90 | { | ||
91 | "label":"G", | ||
92 | "x":4, | ||
93 | "y":1.75 | ||
94 | }, | ||
95 | { | ||
96 | "label":"H", | ||
97 | "x":9.75, | ||
98 | "y":1.75 | ||
99 | }, | ||
100 | { | ||
101 | "label":"A", | ||
102 | "x":0, | ||
103 | "y":2 | ||
104 | }, | ||
105 | { | ||
106 | "label":"C", | ||
107 | "x":2, | ||
108 | "y":2 | ||
109 | }, | ||
110 | { | ||
111 | "label":",", | ||
112 | "x":11.75, | ||
113 | "y":2 | ||
114 | }, | ||
115 | { | ||
116 | "label":";", | ||
117 | "x":13.75, | ||
118 | "y":2 | ||
119 | }, | ||
120 | { | ||
121 | "label":"X", | ||
122 | "x":1, | ||
123 | "y":2.25 | ||
124 | }, | ||
125 | { | ||
126 | "label":".", | ||
127 | "x":12.75, | ||
128 | "y":2.25 | ||
129 | }, | ||
130 | { | ||
131 | "label":"V", | ||
132 | "x":3, | ||
133 | "y":2.5 | ||
134 | }, | ||
135 | { | ||
136 | "label":"M", | ||
137 | "x":10.75, | ||
138 | "y":2.5 | ||
139 | }, | ||
140 | { | ||
141 | "label":"B", | ||
142 | "x":4, | ||
143 | "y":2.75 | ||
144 | }, | ||
145 | { | ||
146 | "label":"N", | ||
147 | "x":9.75, | ||
148 | "y":2.75 | ||
149 | }, | ||
150 | { | ||
151 | "label":"Z", | ||
152 | "x":0, | ||
153 | "y":3 | ||
154 | }, | ||
155 | { | ||
156 | "label":"Shift", | ||
157 | "x":2, | ||
158 | "y":3 | ||
159 | }, | ||
160 | { | ||
161 | "label":"Alt", | ||
162 | "x":5.25, | ||
163 | "y":3 | ||
164 | }, | ||
165 | { | ||
166 | "label":"Super", | ||
167 | "x":8.5, | ||
168 | "y":3 | ||
169 | }, | ||
170 | { | ||
171 | "label":"Shift", | ||
172 | "x":11.75, | ||
173 | "y":3 | ||
174 | }, | ||
175 | { | ||
176 | "label":"/", | ||
177 | "x":13.75, | ||
178 | "y":3 | ||
179 | }, | ||
180 | { | ||
181 | "label":"Ctrl", | ||
182 | "x":1, | ||
183 | "y":3.25 | ||
184 | }, | ||
185 | { | ||
186 | "label":"Space", | ||
187 | "x":6.25, | ||
188 | "y":3.25, | ||
189 | "h":1.5 | ||
190 | }, | ||
191 | { | ||
192 | "label":"Enter", | ||
193 | "x":7.5, | ||
194 | "y":3.25, | ||
195 | "h":1.5 | ||
196 | }, | ||
197 | { | ||
198 | "label":"Ctrl", | ||
199 | "x":12.75, | ||
200 | "y":3.25 | ||
201 | }, | ||
202 | { | ||
203 | "label":"Lower", | ||
204 | "x":5.25, | ||
205 | "y":4 | ||
206 | }, | ||
207 | { | ||
208 | "label":"Raise", | ||
209 | "x":8.5, | ||
210 | "y":4 | ||
211 | } | ||
212 | ] | ||
213 | } | ||
214 | } | ||
215 | } \ No newline at end of file | ||
diff --git a/keyboards/molecule/keymaps/default/keymap.c b/keyboards/molecule/keymaps/default/keymap.c new file mode 100755 index 000000000..ddc01403c --- /dev/null +++ b/keyboards/molecule/keymaps/default/keymap.c | |||
@@ -0,0 +1,39 @@ | |||
1 | /* Copyright 2021 bbrfkr | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | #include QMK_KEYBOARD_H | ||
17 | |||
18 | // Defines names for use in layer keycodes and the keymap | ||
19 | enum layer_names { | ||
20 | _QWERTY_BASE, | ||
21 | _EUCALYN_BASE, | ||
22 | _LOWER, | ||
23 | _RAISE, | ||
24 | _FN, | ||
25 | }; | ||
26 | |||
27 | // Defines the keycodes used by our macros in process_record_user | ||
28 | enum custom_keycodes { | ||
29 | QMKBEST = SAFE_RANGE, | ||
30 | QMKURL | ||
31 | }; | ||
32 | |||
33 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
34 | [_QWERTY_BASE] = LAYOUT(KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_LCTL, KC_LSFT, MO(2), KC_LALT, KC_SPC, KC_ENT, KC_RGUI, MO(3), KC_RSFT, KC_RCTL), | ||
35 | [_EUCALYN_BASE] = LAYOUT(KC_Q, KC_W, KC_COMM, KC_DOT, KC_SCLN, KC_M, KC_R, KC_D, KC_Y, KC_P, KC_A, KC_O, KC_E, KC_I, KC_U, KC_G, KC_T, KC_K, KC_S, KC_N, KC_Z, KC_X, KC_C, KC_V, KC_F, KC_B, KC_H, KC_J, KC_L, KC_SLSH, KC_LCTL, KC_LSFT, MO(2), KC_LALT, KC_SPC, KC_ENT, KC_RGUI, MO(3), KC_RSFT, KC_RCTL), | ||
36 | [_LOWER] = LAYOUT(KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_F2, KC_F3, KC_WH_U, KC_F4, KC_F5, KC_F6, KC_F7, KC_UP, KC_F8, KC_F9, KC_F1, KC_MS_BTN2, KC_WH_D, KC_MS_BTN1, KC_F11, KC_F12, KC_LEFT, KC_DOWN, KC_RGHT, KC_F10, KC_LCTL, KC_LSFT, KC_TRNS, KC_LALT, KC_SPC, KC_ENT, KC_RGUI, MO(4), KC_RSFT, KC_RCTL), | ||
37 | [_RAISE] = LAYOUT(KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_ESC, KC_DEL, KC_BSPC, KC_GRV, KC_BSLS, KC_MINS, KC_EQL, KC_QUOT, KC_LCBR, KC_RCBR, KC_CAPS, KC_TAB, KC_PSCR, KC_TILD, KC_PIPE, KC_UNDS, KC_PLUS, KC_DQUO, KC_LBRC, KC_RBRC, KC_LCTL, KC_LSFT, MO(4), KC_LALT, KC_SPC, KC_ENT, KC_RGUI, KC_TRNS, KC_RSFT, KC_RCTL), | ||
38 | [_FN] = LAYOUT(KC_VOLU, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_BRIU, KC_VOLD, KC_NO, KC_NO, KC_NO, DF(0), DF(1), KC_NO, KC_NO, KC_NO, KC_BRID, KC_MUTE, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_LCTL, KC_LSFT, KC_TRNS, KC_LALT, KC_SPC, KC_ENT, KC_RGUI, KC_TRNS, KC_RSFT, KC_RCTL) | ||
39 | }; | ||
diff --git a/keyboards/molecule/keymaps/default/readme.md b/keyboards/molecule/keymaps/default/readme.md new file mode 100755 index 000000000..136c2c986 --- /dev/null +++ b/keyboards/molecule/keymaps/default/readme.md | |||
@@ -0,0 +1 @@ | |||
# The default keymap for molecule | |||
diff --git a/keyboards/molecule/molecule.c b/keyboards/molecule/molecule.c new file mode 100755 index 000000000..c5f035289 --- /dev/null +++ b/keyboards/molecule/molecule.c | |||
@@ -0,0 +1,17 @@ | |||
1 | /* Copyright 2021 bbrfkr | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | |||
17 | #include "molecule.h" | ||
diff --git a/keyboards/molecule/molecule.h b/keyboards/molecule/molecule.h new file mode 100755 index 000000000..2db7a92ad --- /dev/null +++ b/keyboards/molecule/molecule.h | |||
@@ -0,0 +1,40 @@ | |||
1 | /* Copyright 2021 bbrfkr | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | |||
17 | #pragma once | ||
18 | |||
19 | #include "quantum.h" | ||
20 | |||
21 | /* This is a shortcut to help you visually see your layout. | ||
22 | * | ||
23 | * The first section contains all of the arguments representing the physical | ||
24 | * layout of the board and position of the keys. | ||
25 | * | ||
26 | * The second converts the arguments into a two-dimensional array which | ||
27 | * represents the switch matrix. | ||
28 | */ | ||
29 | #define LAYOUT( \ | ||
30 | L00, L01, L02, L03, L04, R00, R01, R02, R03, R04, \ | ||
31 | L10, L11, L12, L13, L14, R10, R11, R12, R13, R14, \ | ||
32 | L20, L21, L22, L23, L24, R20, R21, R22, R23, R24, \ | ||
33 | L30, L31, L32, L33, L34, R30, R31, R32, R33, R34 \ | ||
34 | ) \ | ||
35 | { \ | ||
36 | { L00, L01, L02, L03, L04, R00, R01, R02, R03, R04 }, \ | ||
37 | { L10, L11, L12, L13, L14, R10, R11, R12, R13, R14 }, \ | ||
38 | { L20, L21, L22, L23, L24, R20, R21, R22, R23, R24 }, \ | ||
39 | { L30, L31, L32, L33, L34, R30, R31, R32, R33, R34 }, \ | ||
40 | } | ||
diff --git a/keyboards/molecule/readme.md b/keyboards/molecule/readme.md new file mode 100755 index 000000000..1538157ec --- /dev/null +++ b/keyboards/molecule/readme.md | |||
@@ -0,0 +1,21 @@ | |||
1 | # molecule | ||
2 | |||
3 | [](https://i.imgur.com/uYCeS4Yh.jpg) | ||
4 | |||
5 | A 40 keys keyboard with trackball. | ||
6 | |||
7 | * Keyboard Maintainer: [bbrfkr](https://github.com/bbrfkr) [@bbrfkr](https://twitter.com/bbrfkr) | ||
8 | * Hardware Supported: molecule PCB, Pro Micro | ||
9 | * Hardware Availability: https://bbrfkr.booth.pm/ | ||
10 | |||
11 | Make example for this keyboard (after setting up your build environment): | ||
12 | |||
13 | make molecule:default | ||
14 | |||
15 | Flashing example for this keyboard: | ||
16 | |||
17 | make molecule:default:flash | ||
18 | |||
19 | See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs). | ||
20 | |||
21 | This keyboard project includes [aball](https://github.com/brickbots/aball) project source code partially. | ||
diff --git a/keyboards/molecule/rules.mk b/keyboards/molecule/rules.mk new file mode 100755 index 000000000..9130ab8ec --- /dev/null +++ b/keyboards/molecule/rules.mk | |||
@@ -0,0 +1,27 @@ | |||
1 | # MCU name | ||
2 | MCU = atmega32u4 | ||
3 | |||
4 | # Bootloader selection | ||
5 | BOOTLOADER = atmel-dfu | ||
6 | |||
7 | # Build Options | ||
8 | # change yes to no to disable | ||
9 | # | ||
10 | BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration | ||
11 | MOUSEKEY_ENABLE = yes # Mouse keys | ||
12 | EXTRAKEY_ENABLE = yes # Audio control and System control | ||
13 | CONSOLE_ENABLE = no # Console for debug | ||
14 | COMMAND_ENABLE = no # Commands for debug and configuration | ||
15 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | ||
16 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | ||
17 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
18 | NKRO_ENABLE = no # USB Nkey Rollover | ||
19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | ||
21 | BLUETOOTH_ENABLE = no # Enable Bluetooth | ||
22 | AUDIO_ENABLE = no # Audio output | ||
23 | |||
24 | # Add trackball support | ||
25 | POINTING_DEVICE_ENABLE = yes | ||
26 | SRC += adns.c | ||
27 | QUANTUM_LIB_SRC += spi_master.c | ||