|
|||
Prex Home / Browse Source - Prex Version: 0.9.0 |
|||
root/bsp/drv/arm/gba/kbd_img.h/* [<][>][^][v][top][bottom][index][help] */INCLUDED FROM1 /*- 2 * Copyright (c) 2005-2006, Kohsuke Ohtani 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 3. Neither the name of the author nor the names of any co-contributors 14 * may be used to endorse or promote products derived from this software 15 * without specific prior written permission. 16 * 17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27 * SUCH DAMAGE. 28 */ 29 30 /* 31 * kbd_img.h 32 */ 33 34 const unsigned char cursor_bitmap[] = { 35 36 /* 37 * Cursor size 09 38 */ 39 0xFF,0x01,0x01,0x01,0x01,0x01,0x01,0x01, 40 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, 41 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 42 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 43 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 44 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 45 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 46 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 47 48 /* 49 * Cursor size 11 50 */ 51 0xFF,0x01,0x01,0x01,0x01,0x01,0x01,0x01, 52 0x07,0x04,0x04,0x04,0x04,0x04,0x04,0x04, 53 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 54 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 55 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 56 0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 57 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 58 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 59 60 /* 61 * Cursor size 12 62 */ 63 0xFF,0x01,0x01,0x01,0x01,0x01,0x01,0x01, 64 0x0F,0x08,0x08,0x08,0x08,0x08,0x08,0x08, 65 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 66 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 67 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 68 0x0F,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 69 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 70 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 71 72 /* 73 * Cursor size 13 74 */ 75 0xFF,0x01,0x01,0x01,0x01,0x01,0x01,0x01, 76 0x1F,0x10,0x10,0x10,0x10,0x10,0x10,0x10, 77 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 78 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 79 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 80 0x1F,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 81 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 82 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 83 84 /* 85 * Cursor size 15 86 */ 87 0xFF,0x01,0x01,0x01,0x01,0x01,0x01,0x01, 88 0x7F,0x40,0x40,0x40,0x40,0x40,0x40,0x40, 89 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 90 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 91 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 92 0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 93 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 94 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 95 96 /* 97 * Cursor size 17 98 */ 99 0xFF,0x01,0x01,0x01,0x01,0x01,0x01,0x01, 100 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 101 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, 102 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 103 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 104 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 105 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 106 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 107 108 /* 109 * Cursor size 19 110 */ 111 0xFF,0x01,0x01,0x01,0x01,0x01,0x01,0x01, 112 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 113 0x07,0x04,0x04,0x04,0x04,0x04,0x04,0x04, 114 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 115 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 116 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 117 0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 118 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 119 120 /* 121 * Cursor size 52 122 */ 123 0xFF,0x01,0x01,0x01,0x01,0x01,0x01,0x01, 124 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 125 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 126 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 127 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 128 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 129 0x1F,0x10,0x10,0x10,0x10,0x10,0x10,0x10, 130 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 131 132 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 133 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 134 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 135 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 136 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 137 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 138 0x1F,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 139 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 140 141 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 142 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 143 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 144 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 145 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 146 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 147 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 148 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 149 150 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 151 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 152 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 153 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 154 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 155 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 156 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 157 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 158 159 0xFF,0x01,0x01,0x01,0x01,0x01,0x01,0x01, 160 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 161 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 162 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 163 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 164 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 165 0x1F,0x10,0x10,0x10,0x10,0x10,0x10,0x10, 166 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 167 168 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 169 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 170 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 171 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 172 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 173 0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 174 0x1F,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 175 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 176 177 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 178 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 179 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 180 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 181 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 182 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 183 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 184 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 185 186 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 187 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 188 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 189 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 190 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 191 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 192 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 193 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 194 195 }; 196 197 198 /* 199 * Keyboard 1 (normal) 200 */ 201 const unsigned char kbd1_bitmap[] = { 202 203 0xFF,0xFF,0xFF,0x0F,0xEF,0xEF,0xEF,0xEF, 204 0xFF,0xFF,0xFF,0x00,0xEF,0xEE,0x6D,0xEF, 205 0xFF,0xFF,0xFF,0x00,0xEF,0x2E,0xEE,0x6E, 206 0xFF,0xFF,0xFF,0x00,0xEF,0x2C,0xEB,0x2C, 207 0xFF,0xFF,0xFF,0x00,0xEF,0xAC,0xAB,0xAC, 208 0xFF,0xFF,0xFF,0x00,0xEF,0x2D,0xAD,0x2D, 209 0xFF,0xFF,0xFF,0x00,0xEF,0x68,0xAF,0x2C, 210 0xFF,0xFF,0xFF,0x00,0xEF,0x2C,0xEF,0xEC, 211 212 0xFF,0xFF,0xFF,0x00,0xEF,0x68,0xAB,0x6D, 213 0xFF,0xFF,0xFF,0x00,0xEF,0x6C,0xAB,0x6C, 214 0xFF,0xFF,0xFF,0x00,0xEF,0x6C,0xAB,0xA8, 215 0xFF,0xFF,0xFF,0x00,0xEF,0xEC,0xEB,0x6B, 216 0xFF,0xFF,0xFF,0x00,0xEF,0xEF,0x6F,0xEC, 217 0xFF,0xFF,0xFF,0x00,0xEF,0xEF,0xEC,0x6F, 218 0xFF,0xFF,0xFF,0x00,0xFF,0xFD,0xFE,0x00, 219 0xFF,0xFF,0xFF,0xF8,0xFB,0xFB,0xFB,0xFB, 220 221 0xEF,0xEF,0xEF,0x0F,0xEF,0x2F,0xEF,0xEF, 222 0xEF,0xEF,0xEF,0x00,0xFF,0xB8,0xAE,0x26, 223 0xAE,0x2E,0xEF,0x00,0xFB,0x1B,0x6B,0x6A, 224 0xEF,0x28,0xEF,0x00,0xFB,0xAB,0xAB,0xAB, 225 0x2B,0xEC,0xEF,0x00,0xFB,0x1A,0xEA,0x0A, 226 0xE8,0x2D,0xEF,0x00,0xFB,0x2B,0xCA,0xEA, 227 0xAB,0x6C,0xEF,0x00,0xFB,0xBA,0x0B,0xBB, 228 0xEB,0xEC,0xEF,0x00,0xFB,0xEB,0xEA,0x1B, 229 230 0xAE,0x6E,0xEF,0x00,0xFB,0xEA,0xEA,0xEA, 231 0xEB,0x6C,0xEF,0x00,0xFB,0xBA,0xFA,0xBA, 232 0xAB,0x6C,0xEF,0x00,0xFB,0x1B,0xEB,0xEB, 233 0xEB,0xEC,0xEF,0x00,0xFB,0x0B,0xEA,0x0A, 234 0x6F,0xEF,0xEF,0x00,0xFB,0x3B,0xBA,0xBB, 235 0xEC,0xEF,0xEF,0x00,0xFB,0x9B,0xBB,0xBB, 236 0xFE,0xFD,0xFF,0x00,0xFB,0xEB,0xDB,0xBB, 237 0xFB,0xFB,0xFB,0xF8,0xFB,0xFB,0xFB,0xFB, 238 239 0xEF,0xEF,0xEF,0x0F,0xEF,0x6F,0xAF,0xAF, 240 0xAA,0x22,0xFF,0x00,0xFF,0xF8,0xBF,0x9F, 241 0x1A,0x7A,0xFB,0x00,0xEF,0x6F,0xE8,0x6A, 242 0xAB,0x5B,0xFB,0x00,0xEF,0x6C,0xAB,0x68, 243 0xEA,0x1B,0xFB,0x00,0xEF,0xE8,0x6F,0xAC, 244 0xEB,0xEA,0xFB,0x00,0xEF,0xEB,0x68,0x2B, 245 0xBB,0x7B,0xFB,0x00,0xEF,0x68,0xAF,0x6C, 246 0xFB,0x0A,0xFB,0x00,0xEF,0xAC,0xAB,0x28, 247 248 0x6A,0x9B,0xFB,0x00,0xEF,0xEF,0xEC,0xEB, 249 0xBA,0xBA,0xFB,0x00,0xEF,0xAD,0xAF,0xAD, 250 0xEB,0x1B,0xFB,0x00,0xEF,0xEB,0xED,0xEE, 251 0xEA,0xEB,0xFB,0x00,0xEF,0xEE,0xEE,0xEE, 252 0xBB,0x3B,0xFB,0x00,0xEF,0xEF,0xEE,0xEF, 253 0xBB,0x9B,0xFB,0x00,0xEF,0xEE,0xEE,0x6F, 254 0x7B,0xFB,0xFB,0x00,0xFF,0xBD,0xBE,0x80, 255 0xFB,0xFA,0xFB,0xF8,0xFB,0xFB,0xFB,0xFB, 256 257 0xAF,0x6F,0xEF,0x0F,0xEF,0x2F,0xAF,0x2F, 258 0xAF,0x88,0xFF,0x00,0xFF,0xFA,0xBB,0xE2, 259 0xA8,0x6E,0xEF,0x00,0xBF,0xBD,0xB6,0xA2, 260 0xEB,0x28,0xEF,0x00,0xBF,0xA0,0xB7,0xBB, 261 0xAB,0x6C,0xEF,0x00,0xBF,0xAE,0xB5,0xBB, 262 0x6B,0x68,0xEF,0x00,0xBF,0xB1,0xAE,0xBE, 263 0xEF,0x6F,0xEF,0x00,0xBF,0xAE,0xAE,0xB5, 264 0xAB,0xAC,0xEF,0x00,0xBF,0xBE,0xBE,0xB0, 265 266 0xAB,0x6B,0xEF,0x00,0xBF,0xB0,0xAE,0xAE, 267 0x2D,0xAC,0xEF,0x00,0xBF,0xB5,0xAA,0xAA, 268 0xED,0xEB,0xEF,0x00,0xBF,0xBF,0xBF,0xBF, 269 0xEE,0x6D,0xEF,0x00,0xBF,0xBF,0xBF,0xBF, 270 0xEE,0xEF,0xEF,0x00,0xBF,0xAF,0xB7,0xBB, 271 0xEF,0xEF,0xEF,0x00,0xFF,0x8A,0xAA,0xAA, 272 0xFE,0xFD,0xFF,0x00,0xFE,0x32,0xAA,0xAA, 273 0xFB,0xFB,0xFB,0xF8,0xFB,0xFA,0xFA,0xFA, 274 275 0xEF,0x2F,0xEF,0x0F,0xEF,0x2F,0xAF,0x2F, 276 0xAA,0xAA,0xFF,0x00,0x7F,0x49,0x6D,0x69, 277 0xB4,0xB6,0xBF,0x00,0xFF,0x45,0x55,0x55, 278 0xBD,0xA0,0xBF,0x00,0xFB,0xCA,0xAB,0xAA, 279 0xB5,0xAE,0xBF,0x00,0xBF,0xA8,0xAA,0xA8, 280 0xAE,0xB1,0xBF,0x00,0xFF,0xFF,0xFF,0xFF, 281 0xB5,0xBB,0xBF,0x00,0xFF,0xFF,0xFF,0xFF, 282 0xAE,0xB0,0xBF,0x00,0xFF,0xFF,0xFF,0xFF, 283 284 0xAE,0xAE,0xBF,0x00,0xFF,0xFF,0xFF,0xFF, 285 0xAA,0xAA,0xBF,0x00,0xFF,0xFF,0xFF,0xFF, 286 0xBB,0xBD,0xBF,0x00,0xFF,0xFF,0xFF,0xFF, 287 0xBF,0xBB,0xBF,0x00,0xFB,0xBB,0xBB,0xAB, 288 0xBD,0xBE,0xBF,0x00,0xFB,0xBB,0x1B,0xAA, 289 0x8A,0xE8,0xFF,0x00,0xFB,0xBB,0xDB,0x0A, 290 0xAA,0xB2,0xFE,0x00,0xFB,0xBB,0x7B,0x0A, 291 0xFA,0xFA,0xFB,0xF8,0xFB,0xFB,0xFB,0xFA, 292 293 0xAF,0x2F,0xEF,0x0F,0xFF,0xFF,0xFF,0xFF, 294 0x6B,0x49,0x7F,0x00,0xFF,0xFF,0xFF,0xFF, 295 0xD5,0x55,0xFF,0x00,0xFF,0xFF,0xFF,0xFF, 296 0xAA,0xCA,0xFB,0x00,0xFF,0xFF,0xFF,0xFF, 297 0xAE,0xA8,0xBF,0x00,0xFF,0xFF,0xFF,0xFF, 298 0xFF,0xFF,0xFF,0x00,0xFF,0xFF,0xFF,0xFF, 299 0xFF,0xFF,0xFF,0x00,0xFF,0xFF,0xFF,0xFF, 300 0xFF,0xFF,0xFF,0x00,0xFF,0xFF,0xFF,0xFF, 301 302 0xFF,0xFF,0xFF,0x00,0xFF,0xFF,0xFF,0xFF, 303 0xFF,0xFF,0xFF,0x00,0xFF,0xFF,0xFF,0xFF, 304 0xFF,0xFF,0xFF,0x00,0xFF,0xFF,0xFF,0xFF, 305 0x1B,0xBB,0xFB,0x00,0xFF,0xFF,0xFF,0xFF, 306 0xBB,0xBB,0xFB,0x00,0xFF,0xFF,0xFF,0xFF, 307 0xDB,0xBB,0xFB,0x00,0xFF,0xFF,0xFF,0xFF, 308 0x7B,0xBB,0xFB,0x00,0xFF,0xFF,0xFF,0xFF, 309 0xFB,0xFB,0xFB,0xF8,0xFF,0xFF,0xFF,0xFF, 310 311 }; 312 313 314 /* 315 * Keyboard 2 (Shifted) 316 */ 317 const unsigned char kbd2_bitmap[] = { 318 319 320 0xFF,0xFF,0xFF,0x0F,0xEF,0x6F,0xAF,0xEF, 321 0xFF,0xFF,0xFF,0x00,0xEF,0xED,0xEE,0xEF, 322 0xFF,0xFF,0xFF,0x00,0xEF,0x6E,0xAE,0xAE, 323 0xFF,0xFF,0xFF,0x00,0xEF,0x68,0x2A,0x68, 324 0xFF,0xFF,0xFF,0x00,0xEF,0x6D,0xA8,0x2D, 325 0xFF,0xFF,0xFF,0x00,0xEF,0xA8,0xEE,0xE8, 326 0xFF,0xFF,0xFF,0x00,0xEF,0xEB,0x6D,0xEE, 327 0xFF,0xFF,0xFF,0x00,0xEF,0x6E,0xAD,0x6F, 328 329 0xFF,0xFF,0xFF,0x00,0xEF,0xEE,0xAD,0x6A, 330 0xFF,0xFF,0xFF,0x00,0xEF,0xEE,0x6A,0x6C, 331 0xFF,0xFF,0xFF,0x00,0xEF,0xEE,0xEF,0xEF, 332 0xFF,0xFF,0xFF,0x00,0xEF,0xEE,0xED,0xED, 333 0xFF,0xFF,0xFF,0x00,0xEF,0xEF,0xEF,0x2F, 334 0xFF,0xFF,0xFF,0x00,0xEF,0xEE,0xEE,0x68, 335 0xFF,0xFF,0xFF,0x00,0xFF,0xFD,0xFE,0x00, 336 0xFF,0xFF,0xFF,0xF8,0xFB,0xFB,0xFB,0xFB, 337 338 0xEF,0xEF,0xEF,0x0F,0xEF,0x2F,0xEF,0xEF, 339 0xEF,0xEF,0xEF,0x00,0xFF,0xB8,0xAE,0x26, 340 0xAF,0x6E,0xEF,0x00,0xFB,0x1B,0xEB,0xAA, 341 0x2F,0x6C,0xEF,0x00,0xFB,0xEB,0xEA,0xAA, 342 0xE8,0x2D,0xEF,0x00,0xFB,0x0A,0xEA,0x0A, 343 0x6A,0xAC,0xEF,0x00,0xFB,0x0A,0xEB,0x0B, 344 0xEF,0xEB,0xEF,0x00,0xFB,0x0B,0xBA,0xBB, 345 0xAF,0x2F,0xEF,0x00,0xFB,0xEA,0xEB,0x5B, 346 347 0xAD,0xEA,0xEF,0x00,0xFB,0xEA,0xEA,0xEB, 348 0x6A,0xEE,0xEF,0x00,0xFB,0xBA,0xBA,0xBA, 349 0xEF,0xEE,0xEF,0x00,0xFB,0x1B,0xEB,0xEB, 350 0xED,0x2E,0xEF,0x00,0xFB,0x0B,0xEA,0xEA, 351 0xEF,0xE8,0xEF,0x00,0xFB,0x3B,0xBA,0xDA, 352 0xEE,0xEE,0xEF,0x00,0xFB,0x9B,0xBB,0x7B, 353 0xFE,0xFD,0xFF,0x00,0xFB,0xBB,0xBB,0xFB, 354 0xFB,0xFB,0xFB,0xF8,0xFB,0xFB,0xFB,0xFB, 355 356 0xEF,0xEF,0xEF,0x0F,0xEF,0x6F,0xAF,0xAF, 357 0xAA,0x22,0xFF,0x00,0xFF,0xF8,0xBF,0x9F, 358 0x6A,0x9A,0xFB,0x00,0xEF,0x6F,0xA8,0xAA, 359 0x4B,0xEA,0xFB,0x00,0xEF,0x6C,0xAB,0x6B, 360 0xEA,0x0A,0xFB,0x00,0xEF,0x28,0xAF,0xAC, 361 0xEB,0xEA,0xFB,0x00,0xEF,0x2C,0xAB,0x2B, 362 0xBA,0xBA,0xFB,0x00,0xEF,0x68,0xAF,0xAC, 363 0xBB,0xBB,0xFB,0x00,0xEF,0xA8,0xAF,0x28, 364 365 0xEB,0x1B,0xFB,0x00,0xEF,0x6B,0xEB,0xE8, 366 0xBA,0xBB,0xFB,0x00,0xEF,0xA8,0xAB,0xAB, 367 0xEB,0x1B,0xFB,0x00,0xEF,0xAB,0xAD,0xAE, 368 0x0A,0xEB,0xFB,0x00,0xEF,0xEF,0xEF,0xEF, 369 0xBB,0x3B,0xFB,0x00,0xEF,0x6F,0x6E,0xEF, 370 0xBB,0x9B,0xFB,0x00,0xEF,0xED,0xED,0x6F, 371 0xBB,0xBB,0xFB,0x00,0xFF,0xBD,0xBE,0x80, 372 0xFB,0xFB,0xFB,0xF8,0xFB,0xFB,0xFB,0xFB, 373 374 0xAF,0x6F,0xEF,0x0F,0xEF,0x2F,0xAF,0x2F, 375 0xAF,0x88,0xFF,0x00,0xFF,0xFA,0xBB,0xE2, 376 0x28,0xAE,0xEF,0x00,0xBF,0xBD,0xB6,0xA2, 377 0xE8,0x2B,0xEF,0x00,0xBF,0xA0,0xB7,0xBB, 378 0xAB,0x2C,0xEF,0x00,0xBF,0xAE,0xB5,0xBB, 379 0xAB,0xAC,0xEF,0x00,0xBF,0xA1,0xBE,0xBE, 380 0xAF,0x6F,0xEF,0x00,0xBF,0xAE,0xAE,0xB5, 381 0xAB,0xA8,0xEF,0x00,0xBF,0xB0,0xAE,0xB0, 382 383 0xAB,0x6B,0xEF,0x00,0xBF,0xAE,0xAC,0xAA, 384 0x2B,0xAC,0xEF,0x00,0xBF,0xAE,0xA4,0xAA, 385 0xAD,0x2B,0xEF,0x00,0xBF,0xB7,0xBB,0xBD, 386 0xEF,0xE8,0xEF,0x00,0xBF,0xBD,0xBB,0xB7, 387 0xEE,0xEF,0xEF,0x00,0xBF,0xB1,0xAE,0xB3, 388 0xEF,0xEF,0xEF,0x00,0xFF,0x8A,0xAA,0xAA, 389 0xFE,0xFD,0xFF,0x00,0xFE,0x32,0xAA,0xAA, 390 0xFB,0xFB,0xFB,0xF8,0xFB,0xFA,0xFA,0xFA, 391 392 0xEF,0x2F,0xEF,0x0F,0xEF,0x2F,0xAF,0x2F, 393 0xAA,0xAA,0xFF,0x00,0x7F,0x49,0x6D,0x69, 394 0xB4,0xB6,0xBF,0x00,0xFF,0x45,0x55,0x55, 395 0xBD,0xA0,0xBF,0x00,0xFB,0xCA,0xAB,0xAA, 396 0xB5,0xAE,0xBF,0x00,0xBF,0xA8,0xAA,0xA8, 397 0xBE,0xA1,0xBF,0x00,0xFF,0xFF,0xFF,0xFF, 398 0xB5,0xBB,0xBF,0x00,0xFF,0xFF,0xFF,0xFF, 399 0xAE,0xB0,0xBF,0x00,0xFF,0xFF,0xFF,0xFF, 400 401 0xA6,0xAE,0xBF,0x00,0xFF,0xFF,0xFF,0xFF, 402 0xAE,0xAE,0xBF,0x00,0xFF,0xFF,0xFF,0xFF, 403 0xBB,0xB7,0xBF,0x00,0xFF,0xFF,0xFF,0xFF, 404 0xBB,0xBD,0xBF,0x00,0xFB,0xBB,0xBB,0xAB, 405 0xBF,0xBB,0xBF,0x00,0xFB,0xBB,0x1B,0xAA, 406 0x8A,0xE8,0xFF,0x00,0xFB,0xBB,0xDB,0x0A, 407 0xAA,0xB2,0xFE,0x00,0xFB,0xBB,0x7B,0x0A, 408 0xFA,0xFA,0xFB,0xF8,0xFB,0xFB,0xFB,0xFA, 409 410 0xAF,0x2F,0xEF,0x0F,0xFF,0xFF,0xFF,0xFF, 411 0x6B,0x49,0x7F,0x00,0xFF,0xFF,0xFF,0xFF, 412 0xD5,0x55,0xFF,0x00,0xFF,0xFF,0xFF,0xFF, 413 0xAA,0xCA,0xFB,0x00,0xFF,0xFF,0xFF,0xFF, 414 0xAE,0xA8,0xBF,0x00,0xFF,0xFF,0xFF,0xFF, 415 0xFF,0xFF,0xFF,0x00,0xFF,0xFF,0xFF,0xFF, 416 0xFF,0xFF,0xFF,0x00,0xFF,0xFF,0xFF,0xFF, 417 0xFF,0xFF,0xFF,0x00,0xFF,0xFF,0xFF,0xFF, 418 419 0xFF,0xFF,0xFF,0x00,0xFF,0xFF,0xFF,0xFF, 420 0xFF,0xFF,0xFF,0x00,0xFF,0xFF,0xFF,0xFF, 421 0xFF,0xFF,0xFF,0x00,0xFF,0xFF,0xFF,0xFF, 422 0x1B,0xBB,0xFB,0x00,0xFF,0xFF,0xFF,0xFF, 423 0xBB,0xBB,0xFB,0x00,0xFF,0xFF,0xFF,0xFF, 424 0xDB,0xBB,0xFB,0x00,0xFF,0xFF,0xFF,0xFF, 425 0x7B,0xBB,0xFB,0x00,0xFF,0xFF,0xFF,0xFF, 426 0xFB,0xFB,0xFB,0xF8,0xFF,0xFF,0xFF,0xFF, 427 428 }; /* [<][>][^][v][top][bottom][index][help] */ | |||
Copyright© 2005-2009 Kohsuke Ohtani |