E_paper, E_ink, Screen size 1.54", resolution 200x200, 4 wire spi, Waveshare, Black and White, Kl25Z, 8 wire print connector, supply 3.3 Volt, IL0373 Controller, font size is 8, 12, 16 and 24.

Dependencies:   mbed

Committer:
GerritPathuis
Date:
Sat Mar 31 08:40:16 2018 +0000
Revision:
10:08e026240a5f
Parent:
3:e4399b5ceb4b
Minor text update

Who changed what in which revision?

UserRevisionLine numberNew contents of line
GerritPathuis 1:d27a7e06c233 1 /**
GerritPathuis 1:d27a7e06c233 2 ******************************************************************************
GerritPathuis 1:d27a7e06c233 3 * @file font24.c
GerritPathuis 1:d27a7e06c233 4 * @author MCD Application Team
GerritPathuis 1:d27a7e06c233 5 * @version V1.0.0
GerritPathuis 1:d27a7e06c233 6 * @date 18-February-2014
GerritPathuis 1:d27a7e06c233 7 * @brief This file provides text font24 for STM32xx-EVAL's LCD driver.
GerritPathuis 1:d27a7e06c233 8 ******************************************************************************
GerritPathuis 1:d27a7e06c233 9 * @attention
GerritPathuis 1:d27a7e06c233 10 *
GerritPathuis 1:d27a7e06c233 11 * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
GerritPathuis 1:d27a7e06c233 12 *
GerritPathuis 1:d27a7e06c233 13 * Redistribution and use in source and binary forms, with or without modification,
GerritPathuis 1:d27a7e06c233 14 * are permitted provided that the following conditions are met:
GerritPathuis 1:d27a7e06c233 15 * 1. Redistributions of source code must retain the above copyright notice,
GerritPathuis 1:d27a7e06c233 16 * this list of conditions and the following disclaimer.
GerritPathuis 1:d27a7e06c233 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
GerritPathuis 1:d27a7e06c233 18 * this list of conditions and the following disclaimer in the documentation
GerritPathuis 1:d27a7e06c233 19 * and/or other materials provided with the distribution.
GerritPathuis 1:d27a7e06c233 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
GerritPathuis 1:d27a7e06c233 21 * may be used to endorse or promote products derived from this software
GerritPathuis 1:d27a7e06c233 22 * without specific prior written permission.
GerritPathuis 1:d27a7e06c233 23 *
GerritPathuis 1:d27a7e06c233 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
GerritPathuis 1:d27a7e06c233 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
GerritPathuis 1:d27a7e06c233 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
GerritPathuis 1:d27a7e06c233 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
GerritPathuis 1:d27a7e06c233 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
GerritPathuis 1:d27a7e06c233 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
GerritPathuis 1:d27a7e06c233 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
GerritPathuis 1:d27a7e06c233 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
GerritPathuis 1:d27a7e06c233 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
GerritPathuis 1:d27a7e06c233 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
GerritPathuis 1:d27a7e06c233 34 *
GerritPathuis 1:d27a7e06c233 35 ******************************************************************************
GerritPathuis 1:d27a7e06c233 36 */
GerritPathuis 1:d27a7e06c233 37
GerritPathuis 1:d27a7e06c233 38 /* Includes ------------------------------------------------------------------*/
GerritPathuis 1:d27a7e06c233 39 #include "fonts.h"
GerritPathuis 1:d27a7e06c233 40
GerritPathuis 3:e4399b5ceb4b 41 const uint8_t Font24_Table []=
GerritPathuis 1:d27a7e06c233 42 {
GerritPathuis 1:d27a7e06c233 43 // @0 ' ' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 44 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 45 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 46 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 47 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 48 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 49 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 50 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 51 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 52 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 53 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 54 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 55 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 56 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 57 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 58 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 59 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 60 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 61 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 62 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 63 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 64 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 65 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 66 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 67 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 68
GerritPathuis 1:d27a7e06c233 69 // @72 '!' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 70 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 71 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 72 0x03, 0x80, 0x00, // ###
GerritPathuis 1:d27a7e06c233 73 0x03, 0x80, 0x00, // ###
GerritPathuis 1:d27a7e06c233 74 0x03, 0x80, 0x00, // ###
GerritPathuis 1:d27a7e06c233 75 0x03, 0x80, 0x00, // ###
GerritPathuis 1:d27a7e06c233 76 0x03, 0x80, 0x00, // ###
GerritPathuis 1:d27a7e06c233 77 0x03, 0x80, 0x00, // ###
GerritPathuis 1:d27a7e06c233 78 0x03, 0x80, 0x00, // ###
GerritPathuis 1:d27a7e06c233 79 0x03, 0x80, 0x00, // ###
GerritPathuis 1:d27a7e06c233 80 0x03, 0x80, 0x00, // ###
GerritPathuis 1:d27a7e06c233 81 0x01, 0x00, 0x00, // #
GerritPathuis 1:d27a7e06c233 82 0x01, 0x00, 0x00, // #
GerritPathuis 1:d27a7e06c233 83 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 84 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 85 0x03, 0x80, 0x00, // ###
GerritPathuis 1:d27a7e06c233 86 0x03, 0x80, 0x00, // ###
GerritPathuis 1:d27a7e06c233 87 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 88 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 89 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 90 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 91 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 92 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 93 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 94
GerritPathuis 1:d27a7e06c233 95 // @144 '"' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 96 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 97 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 98 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 99 0x0E, 0x70, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 100 0x0E, 0x70, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 101 0x0E, 0x70, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 102 0x04, 0x20, 0x00, // # #
GerritPathuis 1:d27a7e06c233 103 0x04, 0x20, 0x00, // # #
GerritPathuis 1:d27a7e06c233 104 0x04, 0x20, 0x00, // # #
GerritPathuis 1:d27a7e06c233 105 0x04, 0x20, 0x00, // # #
GerritPathuis 1:d27a7e06c233 106 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 107 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 108 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 109 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 110 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 111 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 112 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 113 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 114 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 115 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 116 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 117 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 118 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 119 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 120
GerritPathuis 1:d27a7e06c233 121 // @216 '#' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 122 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 123 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 124 0x06, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 125 0x06, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 126 0x06, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 127 0x06, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 128 0x06, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 129 0x3F, 0xF8, 0x00, // ###########
GerritPathuis 1:d27a7e06c233 130 0x3F, 0xF8, 0x00, // ###########
GerritPathuis 1:d27a7e06c233 131 0x06, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 132 0x0C, 0xC0, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 133 0x3F, 0xF8, 0x00, // ###########
GerritPathuis 1:d27a7e06c233 134 0x3F, 0xF8, 0x00, // ###########
GerritPathuis 1:d27a7e06c233 135 0x0C, 0xC0, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 136 0x0C, 0xC0, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 137 0x0C, 0xC0, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 138 0x0C, 0xC0, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 139 0x0C, 0xC0, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 140 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 141 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 142 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 143 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 144 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 145 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 146
GerritPathuis 1:d27a7e06c233 147 // @288 '$' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 148 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 149 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 150 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 151 0x07, 0xB0, 0x00, // #### ##
GerritPathuis 1:d27a7e06c233 152 0x0F, 0xF0, 0x00, // ########
GerritPathuis 1:d27a7e06c233 153 0x18, 0x70, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 154 0x18, 0x70, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 155 0x1C, 0x00, 0x00, // ###
GerritPathuis 1:d27a7e06c233 156 0x0F, 0x80, 0x00, // #####
GerritPathuis 1:d27a7e06c233 157 0x07, 0xE0, 0x00, // ######
GerritPathuis 1:d27a7e06c233 158 0x00, 0xF0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 159 0x18, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 160 0x1C, 0x30, 0x00, // ### ##
GerritPathuis 1:d27a7e06c233 161 0x1C, 0x70, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 162 0x1F, 0xE0, 0x00, // ########
GerritPathuis 1:d27a7e06c233 163 0x1B, 0xC0, 0x00, // ## ####
GerritPathuis 1:d27a7e06c233 164 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 165 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 166 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 167 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 168 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 169 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 170 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 171 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 172
GerritPathuis 1:d27a7e06c233 173 // @360 '%' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 174 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 175 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 176 0x07, 0x80, 0x00, // ####
GerritPathuis 1:d27a7e06c233 177 0x0F, 0xC0, 0x00, // ######
GerritPathuis 1:d27a7e06c233 178 0x1C, 0xE0, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 179 0x18, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 180 0x18, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 181 0x1C, 0xE0, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 182 0x0F, 0xF8, 0x00, // #########
GerritPathuis 1:d27a7e06c233 183 0x07, 0xE0, 0x00, // ######
GerritPathuis 1:d27a7e06c233 184 0x1F, 0xF0, 0x00, // #########
GerritPathuis 1:d27a7e06c233 185 0x07, 0x38, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 186 0x06, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 187 0x06, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 188 0x07, 0x38, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 189 0x03, 0xF0, 0x00, // ######
GerritPathuis 1:d27a7e06c233 190 0x01, 0xE0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 191 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 192 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 193 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 194 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 195 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 196 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 197 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 198
GerritPathuis 1:d27a7e06c233 199 // @432 '&' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 200 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 201 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 202 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 203 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 204 0x03, 0xF0, 0x00, // ######
GerritPathuis 1:d27a7e06c233 205 0x07, 0xF0, 0x00, // #######
GerritPathuis 1:d27a7e06c233 206 0x0C, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 207 0x0C, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 208 0x0C, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 209 0x06, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 210 0x07, 0x00, 0x00, // ###
GerritPathuis 1:d27a7e06c233 211 0x0F, 0x9C, 0x00, // ##### ###
GerritPathuis 1:d27a7e06c233 212 0x1D, 0xFC, 0x00, // ### #######
GerritPathuis 1:d27a7e06c233 213 0x18, 0xF0, 0x00, // ## ####
GerritPathuis 1:d27a7e06c233 214 0x18, 0x70, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 215 0x0F, 0xFC, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 216 0x07, 0xDC, 0x00, // ##### ###
GerritPathuis 1:d27a7e06c233 217 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 218 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 219 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 220 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 221 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 222 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 223 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 224
GerritPathuis 1:d27a7e06c233 225 // @504 ''' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 226 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 227 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 228 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 229 0x03, 0x80, 0x00, // ###
GerritPathuis 1:d27a7e06c233 230 0x03, 0x80, 0x00, // ###
GerritPathuis 1:d27a7e06c233 231 0x03, 0x80, 0x00, // ###
GerritPathuis 1:d27a7e06c233 232 0x01, 0x00, 0x00, // #
GerritPathuis 1:d27a7e06c233 233 0x01, 0x00, 0x00, // #
GerritPathuis 1:d27a7e06c233 234 0x01, 0x00, 0x00, // #
GerritPathuis 1:d27a7e06c233 235 0x01, 0x00, 0x00, // #
GerritPathuis 1:d27a7e06c233 236 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 237 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 238 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 239 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 240 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 241 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 242 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 243 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 244 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 245 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 246 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 247 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 248 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 249 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 250
GerritPathuis 1:d27a7e06c233 251 // @576 '(' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 252 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 253 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 254 0x00, 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 255 0x00, 0x38, 0x00, // ###
GerritPathuis 1:d27a7e06c233 256 0x00, 0x70, 0x00, // ###
GerritPathuis 1:d27a7e06c233 257 0x00, 0xF0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 258 0x00, 0xE0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 259 0x00, 0xE0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 260 0x01, 0xC0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 261 0x01, 0xC0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 262 0x01, 0xC0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 263 0x01, 0xC0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 264 0x01, 0xC0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 265 0x01, 0xC0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 266 0x00, 0xE0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 267 0x00, 0xE0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 268 0x00, 0x70, 0x00, // ###
GerritPathuis 1:d27a7e06c233 269 0x00, 0x70, 0x00, // ###
GerritPathuis 1:d27a7e06c233 270 0x00, 0x38, 0x00, // ###
GerritPathuis 1:d27a7e06c233 271 0x00, 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 272 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 273 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 274 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 275 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 276
GerritPathuis 1:d27a7e06c233 277 // @648 ')' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 278 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 279 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 280 0x18, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 281 0x1C, 0x00, 0x00, // ###
GerritPathuis 1:d27a7e06c233 282 0x0E, 0x00, 0x00, // ###
GerritPathuis 1:d27a7e06c233 283 0x0E, 0x00, 0x00, // ###
GerritPathuis 1:d27a7e06c233 284 0x07, 0x00, 0x00, // ###
GerritPathuis 1:d27a7e06c233 285 0x07, 0x00, 0x00, // ###
GerritPathuis 1:d27a7e06c233 286 0x03, 0x80, 0x00, // ###
GerritPathuis 1:d27a7e06c233 287 0x03, 0x80, 0x00, // ###
GerritPathuis 1:d27a7e06c233 288 0x03, 0x80, 0x00, // ###
GerritPathuis 1:d27a7e06c233 289 0x03, 0x80, 0x00, // ###
GerritPathuis 1:d27a7e06c233 290 0x03, 0x80, 0x00, // ###
GerritPathuis 1:d27a7e06c233 291 0x03, 0x80, 0x00, // ###
GerritPathuis 1:d27a7e06c233 292 0x07, 0x00, 0x00, // ###
GerritPathuis 1:d27a7e06c233 293 0x07, 0x00, 0x00, // ###
GerritPathuis 1:d27a7e06c233 294 0x0F, 0x00, 0x00, // ####
GerritPathuis 1:d27a7e06c233 295 0x0E, 0x00, 0x00, // ###
GerritPathuis 1:d27a7e06c233 296 0x1C, 0x00, 0x00, // ###
GerritPathuis 1:d27a7e06c233 297 0x18, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 298 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 299 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 300 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 301 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 302
GerritPathuis 1:d27a7e06c233 303 // @720 '*' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 304 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 305 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 306 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 307 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 308 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 309 0x1D, 0xB8, 0x00, // ### ## ###
GerritPathuis 1:d27a7e06c233 310 0x1F, 0xF8, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 311 0x07, 0xE0, 0x00, // ######
GerritPathuis 1:d27a7e06c233 312 0x03, 0xC0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 313 0x03, 0xC0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 314 0x06, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 315 0x06, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 316 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 317 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 318 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 319 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 320 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 321 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 322 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 323 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 324 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 325 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 326 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 327 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 328
GerritPathuis 1:d27a7e06c233 329 // @792 '+' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 330 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 331 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 332 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 333 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 334 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 335 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 336 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 337 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 338 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 339 0x3F, 0xFC, 0x00, // ############
GerritPathuis 1:d27a7e06c233 340 0x3F, 0xFC, 0x00, // ############
GerritPathuis 1:d27a7e06c233 341 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 342 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 343 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 344 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 345 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 346 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 347 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 348 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 349 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 350 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 351 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 352 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 353 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 354
GerritPathuis 1:d27a7e06c233 355 // @864 ',' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 356 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 357 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 358 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 359 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 360 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 361 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 362 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 363 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 364 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 365 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 366 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 367 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 368 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 369 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 370 0x00, 0xE0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 371 0x00, 0xC0, 0x00, // ##
GerritPathuis 1:d27a7e06c233 372 0x01, 0xC0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 373 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 374 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 375 0x03, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 376 0x03, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 377 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 378 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 379 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 380
GerritPathuis 1:d27a7e06c233 381 // @936 '-' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 382 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 383 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 384 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 385 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 386 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 387 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 388 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 389 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 390 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 391 0x1F, 0xF8, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 392 0x1F, 0xF8, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 393 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 394 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 395 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 396 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 397 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 398 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 399 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 400 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 401 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 402 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 403 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 404 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 405 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 406
GerritPathuis 1:d27a7e06c233 407 // @1008 '.' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 408 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 409 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 410 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 411 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 412 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 413 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 414 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 415 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 416 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 417 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 418 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 419 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 420 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 421 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 422 0x03, 0xC0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 423 0x03, 0xC0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 424 0x03, 0xC0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 425 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 426 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 427 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 428 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 429 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 430 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 431 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 432
GerritPathuis 1:d27a7e06c233 433 // @1080 '/' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 434 0x00, 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 435 0x00, 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 436 0x00, 0x38, 0x00, // ###
GerritPathuis 1:d27a7e06c233 437 0x00, 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 438 0x00, 0x70, 0x00, // ###
GerritPathuis 1:d27a7e06c233 439 0x00, 0x60, 0x00, // ##
GerritPathuis 1:d27a7e06c233 440 0x00, 0x60, 0x00, // ##
GerritPathuis 1:d27a7e06c233 441 0x00, 0xC0, 0x00, // ##
GerritPathuis 1:d27a7e06c233 442 0x00, 0xC0, 0x00, // ##
GerritPathuis 1:d27a7e06c233 443 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 444 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 445 0x03, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 446 0x03, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 447 0x06, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 448 0x06, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 449 0x0E, 0x00, 0x00, // ###
GerritPathuis 1:d27a7e06c233 450 0x0C, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 451 0x1C, 0x00, 0x00, // ###
GerritPathuis 1:d27a7e06c233 452 0x18, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 453 0x18, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 454 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 455 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 456 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 457 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 458
GerritPathuis 1:d27a7e06c233 459 // @1152 '0' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 460 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 461 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 462 0x03, 0xC0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 463 0x07, 0xE0, 0x00, // ######
GerritPathuis 1:d27a7e06c233 464 0x0C, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 465 0x0C, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 466 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 467 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 468 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 469 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 470 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 471 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 472 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 473 0x0C, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 474 0x0C, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 475 0x07, 0xE0, 0x00, // ######
GerritPathuis 1:d27a7e06c233 476 0x03, 0xC0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 477 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 478 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 479 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 480 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 481 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 482 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 483 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 484
GerritPathuis 1:d27a7e06c233 485 // @1224 '1' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 486 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 487 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 488 0x00, 0x80, 0x00, // #
GerritPathuis 1:d27a7e06c233 489 0x07, 0x80, 0x00, // ####
GerritPathuis 1:d27a7e06c233 490 0x1F, 0x80, 0x00, // ######
GerritPathuis 1:d27a7e06c233 491 0x1D, 0x80, 0x00, // ### ##
GerritPathuis 1:d27a7e06c233 492 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 493 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 494 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 495 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 496 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 497 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 498 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 499 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 500 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 501 0x1F, 0xF8, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 502 0x1F, 0xF8, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 503 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 504 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 505 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 506 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 507 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 508 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 509 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 510
GerritPathuis 1:d27a7e06c233 511 // @1296 '2' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 512 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 513 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 514 0x07, 0xC0, 0x00, // #####
GerritPathuis 1:d27a7e06c233 515 0x1F, 0xF0, 0x00, // #########
GerritPathuis 1:d27a7e06c233 516 0x38, 0x30, 0x00, // ### ##
GerritPathuis 1:d27a7e06c233 517 0x30, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 518 0x30, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 519 0x00, 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 520 0x00, 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 521 0x00, 0x60, 0x00, // ##
GerritPathuis 1:d27a7e06c233 522 0x01, 0xC0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 523 0x03, 0x80, 0x00, // ###
GerritPathuis 1:d27a7e06c233 524 0x06, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 525 0x0C, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 526 0x18, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 527 0x3F, 0xF8, 0x00, // ###########
GerritPathuis 1:d27a7e06c233 528 0x3F, 0xF8, 0x00, // ###########
GerritPathuis 1:d27a7e06c233 529 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 530 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 531 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 532 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 533 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 534 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 535 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 536
GerritPathuis 1:d27a7e06c233 537 // @1368 '3' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 538 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 539 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 540 0x03, 0xC0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 541 0x0F, 0xE0, 0x00, // #######
GerritPathuis 1:d27a7e06c233 542 0x0C, 0x70, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 543 0x00, 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 544 0x00, 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 545 0x00, 0x60, 0x00, // ##
GerritPathuis 1:d27a7e06c233 546 0x03, 0xC0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 547 0x03, 0xE0, 0x00, // #####
GerritPathuis 1:d27a7e06c233 548 0x00, 0x70, 0x00, // ###
GerritPathuis 1:d27a7e06c233 549 0x00, 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 550 0x00, 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 551 0x00, 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 552 0x18, 0x38, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 553 0x1F, 0xF0, 0x00, // #########
GerritPathuis 1:d27a7e06c233 554 0x0F, 0xC0, 0x00, // ######
GerritPathuis 1:d27a7e06c233 555 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 556 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 557 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 558 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 559 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 560 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 561 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 562
GerritPathuis 1:d27a7e06c233 563 // @1440 '4' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 564 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 565 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 566 0x00, 0xE0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 567 0x01, 0xE0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 568 0x01, 0xE0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 569 0x03, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 570 0x06, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 571 0x06, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 572 0x0C, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 573 0x0C, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 574 0x18, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 575 0x30, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 576 0x3F, 0xF8, 0x00, // ###########
GerritPathuis 1:d27a7e06c233 577 0x3F, 0xF8, 0x00, // ###########
GerritPathuis 1:d27a7e06c233 578 0x00, 0x60, 0x00, // ##
GerritPathuis 1:d27a7e06c233 579 0x03, 0xF8, 0x00, // #######
GerritPathuis 1:d27a7e06c233 580 0x03, 0xF8, 0x00, // #######
GerritPathuis 1:d27a7e06c233 581 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 582 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 583 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 584 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 585 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 586 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 587 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 588
GerritPathuis 1:d27a7e06c233 589 // @1512 '5' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 590 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 591 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 592 0x1F, 0xF0, 0x00, // #########
GerritPathuis 1:d27a7e06c233 593 0x1F, 0xF0, 0x00, // #########
GerritPathuis 1:d27a7e06c233 594 0x18, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 595 0x18, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 596 0x18, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 597 0x1B, 0xC0, 0x00, // ## ####
GerritPathuis 1:d27a7e06c233 598 0x1F, 0xF0, 0x00, // #########
GerritPathuis 1:d27a7e06c233 599 0x1C, 0x30, 0x00, // ### ##
GerritPathuis 1:d27a7e06c233 600 0x00, 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 601 0x00, 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 602 0x00, 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 603 0x00, 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 604 0x30, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 605 0x3F, 0xF0, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 606 0x0F, 0xC0, 0x00, // ######
GerritPathuis 1:d27a7e06c233 607 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 608 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 609 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 610 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 611 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 612 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 613 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 614
GerritPathuis 1:d27a7e06c233 615 // @1584 '6' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 616 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 617 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 618 0x00, 0xF8, 0x00, // #####
GerritPathuis 1:d27a7e06c233 619 0x03, 0xF8, 0x00, // #######
GerritPathuis 1:d27a7e06c233 620 0x07, 0x00, 0x00, // ###
GerritPathuis 1:d27a7e06c233 621 0x0E, 0x00, 0x00, // ###
GerritPathuis 1:d27a7e06c233 622 0x0C, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 623 0x18, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 624 0x1B, 0xC0, 0x00, // ## ####
GerritPathuis 1:d27a7e06c233 625 0x1F, 0xF0, 0x00, // #########
GerritPathuis 1:d27a7e06c233 626 0x1C, 0x30, 0x00, // ### ##
GerritPathuis 1:d27a7e06c233 627 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 628 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 629 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 630 0x0C, 0x38, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 631 0x0F, 0xF0, 0x00, // ########
GerritPathuis 1:d27a7e06c233 632 0x03, 0xE0, 0x00, // #####
GerritPathuis 1:d27a7e06c233 633 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 634 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 635 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 636 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 637 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 638 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 639 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 640
GerritPathuis 1:d27a7e06c233 641 // @1656 '7' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 642 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 643 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 644 0x1F, 0xF8, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 645 0x1F, 0xF8, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 646 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 647 0x18, 0x38, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 648 0x00, 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 649 0x00, 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 650 0x00, 0x70, 0x00, // ###
GerritPathuis 1:d27a7e06c233 651 0x00, 0x60, 0x00, // ##
GerritPathuis 1:d27a7e06c233 652 0x00, 0x60, 0x00, // ##
GerritPathuis 1:d27a7e06c233 653 0x00, 0xE0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 654 0x00, 0xC0, 0x00, // ##
GerritPathuis 1:d27a7e06c233 655 0x00, 0xC0, 0x00, // ##
GerritPathuis 1:d27a7e06c233 656 0x01, 0xC0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 657 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 658 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 659 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 660 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 661 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 662 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 663 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 664 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 665 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 666
GerritPathuis 1:d27a7e06c233 667 // @1728 '8' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 668 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 669 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 670 0x07, 0xE0, 0x00, // ######
GerritPathuis 1:d27a7e06c233 671 0x0F, 0xF0, 0x00, // ########
GerritPathuis 1:d27a7e06c233 672 0x1C, 0x38, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 673 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 674 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 675 0x0C, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 676 0x07, 0xE0, 0x00, // ######
GerritPathuis 1:d27a7e06c233 677 0x07, 0xE0, 0x00, // ######
GerritPathuis 1:d27a7e06c233 678 0x0C, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 679 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 680 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 681 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 682 0x1C, 0x38, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 683 0x0F, 0xF0, 0x00, // ########
GerritPathuis 1:d27a7e06c233 684 0x07, 0xE0, 0x00, // ######
GerritPathuis 1:d27a7e06c233 685 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 686 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 687 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 688 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 689 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 690 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 691 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 692
GerritPathuis 1:d27a7e06c233 693 // @1800 '9' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 694 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 695 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 696 0x07, 0xC0, 0x00, // #####
GerritPathuis 1:d27a7e06c233 697 0x0F, 0xF0, 0x00, // ########
GerritPathuis 1:d27a7e06c233 698 0x1C, 0x30, 0x00, // ### ##
GerritPathuis 1:d27a7e06c233 699 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 700 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 701 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 702 0x0C, 0x38, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 703 0x0F, 0xF8, 0x00, // #########
GerritPathuis 1:d27a7e06c233 704 0x03, 0xD8, 0x00, // #### ##
GerritPathuis 1:d27a7e06c233 705 0x00, 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 706 0x00, 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 707 0x00, 0x70, 0x00, // ###
GerritPathuis 1:d27a7e06c233 708 0x00, 0xE0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 709 0x1F, 0xC0, 0x00, // #######
GerritPathuis 1:d27a7e06c233 710 0x1F, 0x00, 0x00, // #####
GerritPathuis 1:d27a7e06c233 711 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 712 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 713 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 714 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 715 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 716 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 717 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 718
GerritPathuis 1:d27a7e06c233 719 // @1872 ':' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 720 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 721 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 722 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 723 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 724 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 725 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 726 0x03, 0xC0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 727 0x03, 0xC0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 728 0x03, 0xC0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 729 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 730 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 731 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 732 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 733 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 734 0x03, 0xC0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 735 0x03, 0xC0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 736 0x03, 0xC0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 737 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 738 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 739 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 740 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 741 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 742 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 743 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 744
GerritPathuis 1:d27a7e06c233 745 // @1944 ';' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 746 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 747 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 748 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 749 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 750 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 751 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 752 0x00, 0xF0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 753 0x00, 0xF0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 754 0x00, 0xF0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 755 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 756 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 757 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 758 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 759 0x00, 0xE0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 760 0x01, 0xC0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 761 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 762 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 763 0x03, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 764 0x02, 0x00, 0x00, // #
GerritPathuis 1:d27a7e06c233 765 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 766 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 767 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 768 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 769 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 770
GerritPathuis 1:d27a7e06c233 771 // @2016 '<' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 772 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 773 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 774 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 775 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 776 0x00, 0x1C, 0x00, // ###
GerritPathuis 1:d27a7e06c233 777 0x00, 0x3C, 0x00, // ####
GerritPathuis 1:d27a7e06c233 778 0x00, 0xF0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 779 0x03, 0xC0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 780 0x0F, 0x00, 0x00, // ####
GerritPathuis 1:d27a7e06c233 781 0x3C, 0x00, 0x00, // ####
GerritPathuis 1:d27a7e06c233 782 0xF0, 0x00, 0x00, // ####
GerritPathuis 1:d27a7e06c233 783 0x3C, 0x00, 0x00, // ####
GerritPathuis 1:d27a7e06c233 784 0x0F, 0x00, 0x00, // ####
GerritPathuis 1:d27a7e06c233 785 0x03, 0xC0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 786 0x00, 0xF0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 787 0x00, 0x3C, 0x00, // ####
GerritPathuis 1:d27a7e06c233 788 0x00, 0x1C, 0x00, // ###
GerritPathuis 1:d27a7e06c233 789 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 790 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 791 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 792 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 793 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 794 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 795 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 796
GerritPathuis 1:d27a7e06c233 797 // @2088 '=' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 798 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 799 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 800 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 801 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 802 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 803 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 804 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 805 0x7F, 0xFC, 0x00, // #############
GerritPathuis 1:d27a7e06c233 806 0x7F, 0xFC, 0x00, // #############
GerritPathuis 1:d27a7e06c233 807 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 808 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 809 0x7F, 0xFC, 0x00, // #############
GerritPathuis 1:d27a7e06c233 810 0x7F, 0xFC, 0x00, // #############
GerritPathuis 1:d27a7e06c233 811 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 812 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 813 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 814 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 815 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 816 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 817 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 818 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 819 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 820 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 821 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 822
GerritPathuis 1:d27a7e06c233 823 // @2160 '>' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 824 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 825 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 826 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 827 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 828 0x70, 0x00, 0x00, // ###
GerritPathuis 1:d27a7e06c233 829 0x78, 0x00, 0x00, // ####
GerritPathuis 1:d27a7e06c233 830 0x1E, 0x00, 0x00, // ####
GerritPathuis 1:d27a7e06c233 831 0x07, 0x80, 0x00, // ####
GerritPathuis 1:d27a7e06c233 832 0x01, 0xE0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 833 0x00, 0x78, 0x00, // ####
GerritPathuis 1:d27a7e06c233 834 0x00, 0x1E, 0x00, // ####
GerritPathuis 1:d27a7e06c233 835 0x00, 0x78, 0x00, // ####
GerritPathuis 1:d27a7e06c233 836 0x01, 0xE0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 837 0x07, 0x80, 0x00, // ####
GerritPathuis 1:d27a7e06c233 838 0x1E, 0x00, 0x00, // ####
GerritPathuis 1:d27a7e06c233 839 0x78, 0x00, 0x00, // ####
GerritPathuis 1:d27a7e06c233 840 0x70, 0x00, 0x00, // ###
GerritPathuis 1:d27a7e06c233 841 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 842 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 843 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 844 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 845 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 846 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 847 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 848
GerritPathuis 1:d27a7e06c233 849 // @2232 '?' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 850 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 851 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 852 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 853 0x07, 0xC0, 0x00, // #####
GerritPathuis 1:d27a7e06c233 854 0x0F, 0xE0, 0x00, // #######
GerritPathuis 1:d27a7e06c233 855 0x18, 0x70, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 856 0x18, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 857 0x18, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 858 0x00, 0x70, 0x00, // ###
GerritPathuis 1:d27a7e06c233 859 0x00, 0xE0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 860 0x03, 0xC0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 861 0x03, 0x80, 0x00, // ###
GerritPathuis 1:d27a7e06c233 862 0x03, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 863 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 864 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 865 0x07, 0x00, 0x00, // ###
GerritPathuis 1:d27a7e06c233 866 0x07, 0x00, 0x00, // ###
GerritPathuis 1:d27a7e06c233 867 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 868 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 869 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 870 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 871 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 872 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 873 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 874
GerritPathuis 1:d27a7e06c233 875 // @2304 '@' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 876 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 877 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 878 0x03, 0xE0, 0x00, // #####
GerritPathuis 1:d27a7e06c233 879 0x07, 0xF0, 0x00, // #######
GerritPathuis 1:d27a7e06c233 880 0x0E, 0x38, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 881 0x0C, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 882 0x18, 0x78, 0x00, // ## ####
GerritPathuis 1:d27a7e06c233 883 0x18, 0xF8, 0x00, // ## #####
GerritPathuis 1:d27a7e06c233 884 0x19, 0xD8, 0x00, // ## ### ##
GerritPathuis 1:d27a7e06c233 885 0x19, 0x98, 0x00, // ## ## ##
GerritPathuis 1:d27a7e06c233 886 0x19, 0x98, 0x00, // ## ## ##
GerritPathuis 1:d27a7e06c233 887 0x19, 0x98, 0x00, // ## ## ##
GerritPathuis 1:d27a7e06c233 888 0x18, 0xF8, 0x00, // ## #####
GerritPathuis 1:d27a7e06c233 889 0x18, 0x78, 0x00, // ## ####
GerritPathuis 1:d27a7e06c233 890 0x18, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 891 0x0C, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 892 0x0E, 0x18, 0x00, // ### ##
GerritPathuis 1:d27a7e06c233 893 0x07, 0xF8, 0x00, // ########
GerritPathuis 1:d27a7e06c233 894 0x03, 0xE0, 0x00, // #####
GerritPathuis 1:d27a7e06c233 895 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 896 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 897 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 898 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 899 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 900
GerritPathuis 1:d27a7e06c233 901 // @2376 'A' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 902 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 903 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 904 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 905 0x1F, 0x80, 0x00, // ######
GerritPathuis 1:d27a7e06c233 906 0x1F, 0xC0, 0x00, // #######
GerritPathuis 1:d27a7e06c233 907 0x01, 0xC0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 908 0x03, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 909 0x03, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 910 0x06, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 911 0x06, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 912 0x0C, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 913 0x0F, 0xF8, 0x00, // #########
GerritPathuis 1:d27a7e06c233 914 0x1F, 0xF8, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 915 0x18, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 916 0x30, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 917 0xFC, 0x7F, 0x00, // ###### #######
GerritPathuis 1:d27a7e06c233 918 0xFC, 0x7F, 0x00, // ###### #######
GerritPathuis 1:d27a7e06c233 919 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 920 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 921 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 922 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 923 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 924 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 925 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 926
GerritPathuis 1:d27a7e06c233 927 // @2448 'B' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 928 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 929 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 930 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 931 0x7F, 0xE0, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 932 0x7F, 0xF0, 0x00, // ###########
GerritPathuis 1:d27a7e06c233 933 0x18, 0x38, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 934 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 935 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 936 0x18, 0x38, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 937 0x1F, 0xF0, 0x00, // #########
GerritPathuis 1:d27a7e06c233 938 0x1F, 0xF8, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 939 0x18, 0x1C, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 940 0x18, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 941 0x18, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 942 0x18, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 943 0x7F, 0xF8, 0x00, // ############
GerritPathuis 1:d27a7e06c233 944 0x7F, 0xF0, 0x00, // ###########
GerritPathuis 1:d27a7e06c233 945 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 946 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 947 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 948 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 949 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 950 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 951 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 952
GerritPathuis 1:d27a7e06c233 953 // @2520 'C' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 954 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 955 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 956 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 957 0x03, 0xEC, 0x00, // ##### ##
GerritPathuis 1:d27a7e06c233 958 0x0F, 0xFC, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 959 0x1C, 0x1C, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 960 0x18, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 961 0x30, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 962 0x30, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 963 0x30, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 964 0x30, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 965 0x30, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 966 0x30, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 967 0x18, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 968 0x1C, 0x1C, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 969 0x0F, 0xF8, 0x00, // #########
GerritPathuis 1:d27a7e06c233 970 0x03, 0xF0, 0x00, // ######
GerritPathuis 1:d27a7e06c233 971 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 972 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 973 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 974 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 975 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 976 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 977 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 978
GerritPathuis 1:d27a7e06c233 979 // @2592 'D' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 980 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 981 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 982 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 983 0x7F, 0xC0, 0x00, // #########
GerritPathuis 1:d27a7e06c233 984 0x7F, 0xF0, 0x00, // ###########
GerritPathuis 1:d27a7e06c233 985 0x18, 0x38, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 986 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 987 0x18, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 988 0x18, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 989 0x18, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 990 0x18, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 991 0x18, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 992 0x18, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 993 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 994 0x18, 0x38, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 995 0x7F, 0xF0, 0x00, // ###########
GerritPathuis 1:d27a7e06c233 996 0x7F, 0xE0, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 997 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 998 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 999 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1000 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1001 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1002 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1003 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1004
GerritPathuis 1:d27a7e06c233 1005 // @2664 'E' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1006 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1007 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1008 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1009 0x7F, 0xF8, 0x00, // ############
GerritPathuis 1:d27a7e06c233 1010 0x7F, 0xF8, 0x00, // ############
GerritPathuis 1:d27a7e06c233 1011 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1012 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1013 0x19, 0x98, 0x00, // ## ## ##
GerritPathuis 1:d27a7e06c233 1014 0x19, 0x80, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1015 0x1F, 0x80, 0x00, // ######
GerritPathuis 1:d27a7e06c233 1016 0x1F, 0x80, 0x00, // ######
GerritPathuis 1:d27a7e06c233 1017 0x19, 0x80, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1018 0x19, 0x98, 0x00, // ## ## ##
GerritPathuis 1:d27a7e06c233 1019 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1020 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1021 0x7F, 0xF8, 0x00, // ############
GerritPathuis 1:d27a7e06c233 1022 0x7F, 0xF8, 0x00, // ############
GerritPathuis 1:d27a7e06c233 1023 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1024 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1025 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1026 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1027 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1028 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1029 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1030
GerritPathuis 1:d27a7e06c233 1031 // @2736 'F' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1032 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1033 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1034 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1035 0x3F, 0xFC, 0x00, // ############
GerritPathuis 1:d27a7e06c233 1036 0x3F, 0xFC, 0x00, // ############
GerritPathuis 1:d27a7e06c233 1037 0x0C, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1038 0x0C, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1039 0x0C, 0xCC, 0x00, // ## ## ##
GerritPathuis 1:d27a7e06c233 1040 0x0C, 0xC0, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1041 0x0F, 0xC0, 0x00, // ######
GerritPathuis 1:d27a7e06c233 1042 0x0F, 0xC0, 0x00, // ######
GerritPathuis 1:d27a7e06c233 1043 0x0C, 0xC0, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1044 0x0C, 0xC0, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1045 0x0C, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1046 0x0C, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1047 0x3F, 0xC0, 0x00, // ########
GerritPathuis 1:d27a7e06c233 1048 0x3F, 0xC0, 0x00, // ########
GerritPathuis 1:d27a7e06c233 1049 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1050 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1051 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1052 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1053 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1054 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1055 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1056
GerritPathuis 1:d27a7e06c233 1057 // @2808 'G' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1058 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1059 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1060 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1061 0x03, 0xEC, 0x00, // ##### ##
GerritPathuis 1:d27a7e06c233 1062 0x0F, 0xFC, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 1063 0x1C, 0x1C, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 1064 0x18, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1065 0x30, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1066 0x30, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1067 0x30, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1068 0x30, 0xFE, 0x00, // ## #######
GerritPathuis 1:d27a7e06c233 1069 0x30, 0xFE, 0x00, // ## #######
GerritPathuis 1:d27a7e06c233 1070 0x30, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1071 0x38, 0x0C, 0x00, // ### ##
GerritPathuis 1:d27a7e06c233 1072 0x1C, 0x1C, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 1073 0x0F, 0xFC, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 1074 0x03, 0xF0, 0x00, // ######
GerritPathuis 1:d27a7e06c233 1075 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1076 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1077 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1078 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1079 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1080 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1081 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1082
GerritPathuis 1:d27a7e06c233 1083 // @2880 'H' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1084 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1085 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1086 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1087 0x7E, 0x7E, 0x00, // ###### ######
GerritPathuis 1:d27a7e06c233 1088 0x7E, 0x7E, 0x00, // ###### ######
GerritPathuis 1:d27a7e06c233 1089 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1090 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1091 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1092 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1093 0x1F, 0xF8, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 1094 0x1F, 0xF8, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 1095 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1096 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1097 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1098 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1099 0x7E, 0x7E, 0x00, // ###### ######
GerritPathuis 1:d27a7e06c233 1100 0x7E, 0x7E, 0x00, // ###### ######
GerritPathuis 1:d27a7e06c233 1101 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1102 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1103 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1104 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1105 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1106 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1107 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1108
GerritPathuis 1:d27a7e06c233 1109 // @2952 'I' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1110 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1111 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1112 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1113 0x1F, 0xF8, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 1114 0x1F, 0xF8, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 1115 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1116 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1117 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1118 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1119 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1120 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1121 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1122 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1123 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1124 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1125 0x1F, 0xF8, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 1126 0x1F, 0xF8, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 1127 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1128 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1129 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1130 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1131 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1132 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1133 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1134
GerritPathuis 1:d27a7e06c233 1135 // @3024 'J' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1136 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1137 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1138 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1139 0x07, 0xFE, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 1140 0x07, 0xFE, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 1141 0x00, 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1142 0x00, 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1143 0x00, 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1144 0x00, 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1145 0x00, 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1146 0x30, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1147 0x30, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1148 0x30, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1149 0x30, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1150 0x30, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1151 0x3F, 0xE0, 0x00, // #########
GerritPathuis 1:d27a7e06c233 1152 0x0F, 0x80, 0x00, // #####
GerritPathuis 1:d27a7e06c233 1153 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1154 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1155 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1156 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1157 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1158 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1159 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1160
GerritPathuis 1:d27a7e06c233 1161 // @3096 'K' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1162 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1163 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1164 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1165 0x7F, 0x3E, 0x00, // ####### #####
GerritPathuis 1:d27a7e06c233 1166 0x7F, 0x3E, 0x00, // ####### #####
GerritPathuis 1:d27a7e06c233 1167 0x18, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1168 0x18, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1169 0x18, 0xC0, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1170 0x19, 0x80, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1171 0x1B, 0x80, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 1172 0x1F, 0xC0, 0x00, // #######
GerritPathuis 1:d27a7e06c233 1173 0x1C, 0xE0, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 1174 0x18, 0x70, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 1175 0x18, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1176 0x18, 0x38, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 1177 0x7F, 0x1F, 0x00, // ####### #####
GerritPathuis 1:d27a7e06c233 1178 0x7F, 0x1F, 0x00, // ####### #####
GerritPathuis 1:d27a7e06c233 1179 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1180 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1181 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1182 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1183 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1184 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1185 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1186
GerritPathuis 1:d27a7e06c233 1187 // @3168 'L' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1188 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1189 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1190 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1191 0x7F, 0x80, 0x00, // ########
GerritPathuis 1:d27a7e06c233 1192 0x7F, 0x80, 0x00, // ########
GerritPathuis 1:d27a7e06c233 1193 0x0C, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1194 0x0C, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1195 0x0C, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1196 0x0C, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1197 0x0C, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1198 0x0C, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1199 0x0C, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1200 0x0C, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1201 0x0C, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1202 0x0C, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1203 0x7F, 0xFC, 0x00, // #############
GerritPathuis 1:d27a7e06c233 1204 0x7F, 0xFC, 0x00, // #############
GerritPathuis 1:d27a7e06c233 1205 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1206 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1207 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1208 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1209 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1210 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1211 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1212
GerritPathuis 1:d27a7e06c233 1213 // @3240 'M' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1214 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1215 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1216 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1217 0xF0, 0x0F, 0x00, // #### ####
GerritPathuis 1:d27a7e06c233 1218 0xF8, 0x1F, 0x00, // ##### #####
GerritPathuis 1:d27a7e06c233 1219 0x38, 0x1C, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 1220 0x3C, 0x3C, 0x00, // #### ####
GerritPathuis 1:d27a7e06c233 1221 0x3C, 0x3C, 0x00, // #### ####
GerritPathuis 1:d27a7e06c233 1222 0x36, 0x6C, 0x00, // ## ## ## ##
GerritPathuis 1:d27a7e06c233 1223 0x36, 0x6C, 0x00, // ## ## ## ##
GerritPathuis 1:d27a7e06c233 1224 0x33, 0xCC, 0x00, // ## #### ##
GerritPathuis 1:d27a7e06c233 1225 0x33, 0xCC, 0x00, // ## #### ##
GerritPathuis 1:d27a7e06c233 1226 0x31, 0x8C, 0x00, // ## ## ##
GerritPathuis 1:d27a7e06c233 1227 0x30, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1228 0x30, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1229 0xFE, 0x7F, 0x00, // ####### #######
GerritPathuis 1:d27a7e06c233 1230 0xFE, 0x7F, 0x00, // ####### #######
GerritPathuis 1:d27a7e06c233 1231 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1232 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1233 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1234 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1235 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1236 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1237 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1238
GerritPathuis 1:d27a7e06c233 1239 // @3312 'N' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1240 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1241 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1242 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1243 0x78, 0xFE, 0x00, // #### #######
GerritPathuis 1:d27a7e06c233 1244 0x78, 0xFE, 0x00, // #### #######
GerritPathuis 1:d27a7e06c233 1245 0x1C, 0x18, 0x00, // ### ##
GerritPathuis 1:d27a7e06c233 1246 0x1E, 0x18, 0x00, // #### ##
GerritPathuis 1:d27a7e06c233 1247 0x1F, 0x18, 0x00, // ##### ##
GerritPathuis 1:d27a7e06c233 1248 0x1B, 0x18, 0x00, // ## ## ##
GerritPathuis 1:d27a7e06c233 1249 0x1B, 0x98, 0x00, // ## ### ##
GerritPathuis 1:d27a7e06c233 1250 0x19, 0xD8, 0x00, // ## ### ##
GerritPathuis 1:d27a7e06c233 1251 0x18, 0xD8, 0x00, // ## ## ##
GerritPathuis 1:d27a7e06c233 1252 0x18, 0xF8, 0x00, // ## #####
GerritPathuis 1:d27a7e06c233 1253 0x18, 0x78, 0x00, // ## ####
GerritPathuis 1:d27a7e06c233 1254 0x18, 0x38, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 1255 0x7F, 0x18, 0x00, // ####### ##
GerritPathuis 1:d27a7e06c233 1256 0x7F, 0x18, 0x00, // ####### ##
GerritPathuis 1:d27a7e06c233 1257 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1258 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1259 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1260 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1261 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1262 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1263 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1264
GerritPathuis 1:d27a7e06c233 1265 // @3384 'O' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1266 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1267 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1268 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1269 0x03, 0xC0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 1270 0x0F, 0xF0, 0x00, // ########
GerritPathuis 1:d27a7e06c233 1271 0x1C, 0x38, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 1272 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1273 0x38, 0x1C, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 1274 0x30, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1275 0x30, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1276 0x30, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1277 0x30, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1278 0x38, 0x1C, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 1279 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1280 0x1C, 0x38, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 1281 0x0F, 0xF0, 0x00, // ########
GerritPathuis 1:d27a7e06c233 1282 0x03, 0xC0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 1283 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1284 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1285 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1286 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1287 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1288 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1289 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1290
GerritPathuis 1:d27a7e06c233 1291 // @3456 'P' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1292 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1293 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1294 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1295 0x3F, 0xF0, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 1296 0x3F, 0xF8, 0x00, // ###########
GerritPathuis 1:d27a7e06c233 1297 0x0C, 0x1C, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 1298 0x0C, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1299 0x0C, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1300 0x0C, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1301 0x0C, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1302 0x0F, 0xF8, 0x00, // #########
GerritPathuis 1:d27a7e06c233 1303 0x0F, 0xE0, 0x00, // #######
GerritPathuis 1:d27a7e06c233 1304 0x0C, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1305 0x0C, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1306 0x0C, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1307 0x3F, 0xC0, 0x00, // ########
GerritPathuis 1:d27a7e06c233 1308 0x3F, 0xC0, 0x00, // ########
GerritPathuis 1:d27a7e06c233 1309 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1310 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1311 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1312 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1313 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1314 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1315 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1316
GerritPathuis 1:d27a7e06c233 1317 // @3528 'Q' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1318 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1319 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1320 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1321 0x03, 0xC0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 1322 0x0F, 0xF0, 0x00, // ########
GerritPathuis 1:d27a7e06c233 1323 0x1C, 0x38, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 1324 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1325 0x38, 0x1C, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 1326 0x30, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1327 0x30, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1328 0x30, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1329 0x30, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1330 0x38, 0x1C, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 1331 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1332 0x1C, 0x38, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 1333 0x0F, 0xF0, 0x00, // ########
GerritPathuis 1:d27a7e06c233 1334 0x07, 0xC0, 0x00, // #####
GerritPathuis 1:d27a7e06c233 1335 0x07, 0xCC, 0x00, // ##### ##
GerritPathuis 1:d27a7e06c233 1336 0x0F, 0xFC, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 1337 0x0C, 0x38, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 1338 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1339 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1340 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1341 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1342
GerritPathuis 1:d27a7e06c233 1343 // @3600 'R' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1344 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1345 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1346 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1347 0x7F, 0xE0, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 1348 0x7F, 0xF0, 0x00, // ###########
GerritPathuis 1:d27a7e06c233 1349 0x18, 0x38, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 1350 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1351 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1352 0x18, 0x38, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 1353 0x1F, 0xF0, 0x00, // #########
GerritPathuis 1:d27a7e06c233 1354 0x1F, 0xC0, 0x00, // #######
GerritPathuis 1:d27a7e06c233 1355 0x18, 0xE0, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 1356 0x18, 0x70, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 1357 0x18, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1358 0x18, 0x38, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 1359 0x7F, 0x1E, 0x00, // ####### ####
GerritPathuis 1:d27a7e06c233 1360 0x7F, 0x0E, 0x00, // ####### ###
GerritPathuis 1:d27a7e06c233 1361 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1362 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1363 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1364 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1365 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1366 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1367 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1368
GerritPathuis 1:d27a7e06c233 1369 // @3672 'S' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1370 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1371 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1372 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1373 0x07, 0xD8, 0x00, // ##### ##
GerritPathuis 1:d27a7e06c233 1374 0x0F, 0xF8, 0x00, // #########
GerritPathuis 1:d27a7e06c233 1375 0x1C, 0x38, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 1376 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1377 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1378 0x1E, 0x00, 0x00, // ####
GerritPathuis 1:d27a7e06c233 1379 0x0F, 0xC0, 0x00, // ######
GerritPathuis 1:d27a7e06c233 1380 0x03, 0xF0, 0x00, // ######
GerritPathuis 1:d27a7e06c233 1381 0x00, 0x78, 0x00, // ####
GerritPathuis 1:d27a7e06c233 1382 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1383 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1384 0x1C, 0x38, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 1385 0x1F, 0xF0, 0x00, // #########
GerritPathuis 1:d27a7e06c233 1386 0x1B, 0xE0, 0x00, // ## #####
GerritPathuis 1:d27a7e06c233 1387 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1388 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1389 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1390 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1391 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1392 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1393 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1394
GerritPathuis 1:d27a7e06c233 1395 // @3744 'T' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1396 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1397 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1398 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1399 0x3F, 0xFC, 0x00, // ############
GerritPathuis 1:d27a7e06c233 1400 0x3F, 0xFC, 0x00, // ############
GerritPathuis 1:d27a7e06c233 1401 0x31, 0x8C, 0x00, // ## ## ##
GerritPathuis 1:d27a7e06c233 1402 0x31, 0x8C, 0x00, // ## ## ##
GerritPathuis 1:d27a7e06c233 1403 0x31, 0x8C, 0x00, // ## ## ##
GerritPathuis 1:d27a7e06c233 1404 0x31, 0x8C, 0x00, // ## ## ##
GerritPathuis 1:d27a7e06c233 1405 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1406 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1407 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1408 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1409 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1410 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1411 0x0F, 0xF0, 0x00, // ########
GerritPathuis 1:d27a7e06c233 1412 0x0F, 0xF0, 0x00, // ########
GerritPathuis 1:d27a7e06c233 1413 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1414 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1415 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1416 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1417 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1418 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1419 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1420
GerritPathuis 1:d27a7e06c233 1421 // @3816 'U' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1422 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1423 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1424 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1425 0x7E, 0x7E, 0x00, // ###### ######
GerritPathuis 1:d27a7e06c233 1426 0x7E, 0x7E, 0x00, // ###### ######
GerritPathuis 1:d27a7e06c233 1427 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1428 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1429 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1430 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1431 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1432 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1433 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1434 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1435 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1436 0x0C, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1437 0x0F, 0xF0, 0x00, // ########
GerritPathuis 1:d27a7e06c233 1438 0x03, 0xC0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 1439 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1440 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1441 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1442 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1443 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1444 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1445 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1446
GerritPathuis 1:d27a7e06c233 1447 // @3888 'V' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1448 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1449 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1450 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1451 0x7F, 0x7F, 0x00, // ####### #######
GerritPathuis 1:d27a7e06c233 1452 0x7F, 0x7F, 0x00, // ####### #######
GerritPathuis 1:d27a7e06c233 1453 0x18, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1454 0x0C, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1455 0x0C, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1456 0x0C, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1457 0x06, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1458 0x06, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1459 0x03, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1460 0x03, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1461 0x03, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1462 0x01, 0xC0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 1463 0x01, 0xC0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 1464 0x00, 0x80, 0x00, // #
GerritPathuis 1:d27a7e06c233 1465 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1466 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1467 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1468 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1469 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1470 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1471 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1472
GerritPathuis 1:d27a7e06c233 1473 // @3960 'W' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1474 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1475 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1476 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1477 0xFE, 0x3F, 0x80, // ####### #######
GerritPathuis 1:d27a7e06c233 1478 0xFE, 0x3F, 0x80, // ####### #######
GerritPathuis 1:d27a7e06c233 1479 0x30, 0x06, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1480 0x30, 0x06, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1481 0x30, 0x86, 0x00, // ## # ##
GerritPathuis 1:d27a7e06c233 1482 0x19, 0xCC, 0x00, // ## ### ##
GerritPathuis 1:d27a7e06c233 1483 0x19, 0xCC, 0x00, // ## ### ##
GerritPathuis 1:d27a7e06c233 1484 0x1B, 0x6C, 0x00, // ## ## ## ##
GerritPathuis 1:d27a7e06c233 1485 0x1B, 0x6C, 0x00, // ## ## ## ##
GerritPathuis 1:d27a7e06c233 1486 0x1E, 0x7C, 0x00, // #### #####
GerritPathuis 1:d27a7e06c233 1487 0x0E, 0x38, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 1488 0x0E, 0x38, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 1489 0x0C, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1490 0x0C, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1491 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1492 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1493 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1494 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1495 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1496 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1497 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1498
GerritPathuis 1:d27a7e06c233 1499 // @4032 'X' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1500 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1501 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1502 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1503 0x7E, 0x7E, 0x00, // ###### ######
GerritPathuis 1:d27a7e06c233 1504 0x7E, 0x7E, 0x00, // ###### ######
GerritPathuis 1:d27a7e06c233 1505 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1506 0x0C, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1507 0x06, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1508 0x03, 0xC0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 1509 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1510 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1511 0x03, 0xC0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 1512 0x06, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1513 0x0C, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1514 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1515 0x7E, 0x7E, 0x00, // ###### ######
GerritPathuis 1:d27a7e06c233 1516 0x7E, 0x7E, 0x00, // ###### ######
GerritPathuis 1:d27a7e06c233 1517 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1518 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1519 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1520 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1521 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1522 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1523 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1524
GerritPathuis 1:d27a7e06c233 1525 // @4104 'Y' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1526 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1527 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1528 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1529 0x7C, 0x7E, 0x00, // ##### ######
GerritPathuis 1:d27a7e06c233 1530 0x7C, 0x7E, 0x00, // ##### ######
GerritPathuis 1:d27a7e06c233 1531 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1532 0x0C, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1533 0x06, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1534 0x06, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1535 0x03, 0xC0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 1536 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1537 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1538 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1539 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1540 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1541 0x0F, 0xF0, 0x00, // ########
GerritPathuis 1:d27a7e06c233 1542 0x0F, 0xF0, 0x00, // ########
GerritPathuis 1:d27a7e06c233 1543 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1544 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1545 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1546 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1547 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1548 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1549 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1550
GerritPathuis 1:d27a7e06c233 1551 // @4176 'Z' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1552 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1553 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1554 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1555 0x1F, 0xF8, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 1556 0x1F, 0xF8, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 1557 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1558 0x18, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1559 0x18, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1560 0x18, 0xC0, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1561 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1562 0x03, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1563 0x06, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1564 0x0C, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1565 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1566 0x30, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1567 0x3F, 0xF8, 0x00, // ###########
GerritPathuis 1:d27a7e06c233 1568 0x3F, 0xF8, 0x00, // ###########
GerritPathuis 1:d27a7e06c233 1569 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1570 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1571 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1572 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1573 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1574 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1575 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1576
GerritPathuis 1:d27a7e06c233 1577 // @4248 '[' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1578 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1579 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1580 0x01, 0xF0, 0x00, // #####
GerritPathuis 1:d27a7e06c233 1581 0x01, 0xF0, 0x00, // #####
GerritPathuis 1:d27a7e06c233 1582 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1583 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1584 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1585 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1586 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1587 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1588 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1589 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1590 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1591 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1592 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1593 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1594 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1595 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1596 0x01, 0xF0, 0x00, // #####
GerritPathuis 1:d27a7e06c233 1597 0x01, 0xF0, 0x00, // #####
GerritPathuis 1:d27a7e06c233 1598 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1599 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1600 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1601 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1602
GerritPathuis 1:d27a7e06c233 1603 // @4320 '\' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1604 0x18, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1605 0x18, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1606 0x1C, 0x00, 0x00, // ###
GerritPathuis 1:d27a7e06c233 1607 0x0C, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1608 0x0E, 0x00, 0x00, // ###
GerritPathuis 1:d27a7e06c233 1609 0x06, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1610 0x06, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1611 0x03, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1612 0x03, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1613 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1614 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1615 0x00, 0xC0, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1616 0x00, 0xC0, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1617 0x00, 0x60, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1618 0x00, 0x60, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1619 0x00, 0x70, 0x00, // ###
GerritPathuis 1:d27a7e06c233 1620 0x00, 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1621 0x00, 0x38, 0x00, // ###
GerritPathuis 1:d27a7e06c233 1622 0x00, 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1623 0x00, 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1624 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1625 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1626 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1627 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1628
GerritPathuis 1:d27a7e06c233 1629 // @4392 ']' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1630 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1631 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1632 0x0F, 0x80, 0x00, // #####
GerritPathuis 1:d27a7e06c233 1633 0x0F, 0x80, 0x00, // #####
GerritPathuis 1:d27a7e06c233 1634 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1635 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1636 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1637 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1638 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1639 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1640 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1641 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1642 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1643 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1644 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1645 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1646 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1647 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1648 0x0F, 0x80, 0x00, // #####
GerritPathuis 1:d27a7e06c233 1649 0x0F, 0x80, 0x00, // #####
GerritPathuis 1:d27a7e06c233 1650 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1651 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1652 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1653 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1654
GerritPathuis 1:d27a7e06c233 1655 // @4464 '^' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1656 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1657 0x00, 0x80, 0x00, // #
GerritPathuis 1:d27a7e06c233 1658 0x01, 0xC0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 1659 0x03, 0xE0, 0x00, // #####
GerritPathuis 1:d27a7e06c233 1660 0x07, 0x70, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 1661 0x06, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1662 0x0C, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1663 0x18, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1664 0x10, 0x04, 0x00, // # #
GerritPathuis 1:d27a7e06c233 1665 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1666 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1667 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1668 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1669 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1670 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1671 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1672 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1673 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1674 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1675 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1676 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1677 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1678 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1679 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1680
GerritPathuis 1:d27a7e06c233 1681 // @4536 '_' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1682 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1683 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1684 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1685 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1686 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1687 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1688 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1689 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1690 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1691 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1692 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1693 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1694 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1695 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1696 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1697 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1698 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1699 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1700 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1701 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1702 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1703 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1704 0xFF, 0xFF, 0x00, // ################
GerritPathuis 1:d27a7e06c233 1705 0xFF, 0xFF, 0x00, // ################
GerritPathuis 1:d27a7e06c233 1706
GerritPathuis 1:d27a7e06c233 1707 // @4608 '`' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1708 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1709 0x03, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1710 0x03, 0x80, 0x00, // ###
GerritPathuis 1:d27a7e06c233 1711 0x00, 0xE0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 1712 0x00, 0x60, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1713 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1714 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1715 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1716 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1717 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1718 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1719 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1720 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1721 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1722 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1723 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1724 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1725 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1726 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1727 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1728 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1729 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1730 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1731 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1732
GerritPathuis 1:d27a7e06c233 1733 // @4680 'a' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1734 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1735 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1736 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1737 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1738 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1739 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1740 0x0F, 0xC0, 0x00, // ######
GerritPathuis 1:d27a7e06c233 1741 0x1F, 0xE0, 0x00, // ########
GerritPathuis 1:d27a7e06c233 1742 0x00, 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1743 0x00, 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1744 0x07, 0xF0, 0x00, // #######
GerritPathuis 1:d27a7e06c233 1745 0x1F, 0xF0, 0x00, // #########
GerritPathuis 1:d27a7e06c233 1746 0x38, 0x30, 0x00, // ### ##
GerritPathuis 1:d27a7e06c233 1747 0x30, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1748 0x30, 0x70, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 1749 0x1F, 0xFC, 0x00, // ###########
GerritPathuis 1:d27a7e06c233 1750 0x0F, 0xBC, 0x00, // ##### ####
GerritPathuis 1:d27a7e06c233 1751 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1752 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1753 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1754 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1755 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1756 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1757 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1758
GerritPathuis 1:d27a7e06c233 1759 // @4752 'b' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1760 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1761 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1762 0x78, 0x00, 0x00, // ####
GerritPathuis 1:d27a7e06c233 1763 0x78, 0x00, 0x00, // ####
GerritPathuis 1:d27a7e06c233 1764 0x18, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1765 0x18, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1766 0x1B, 0xE0, 0x00, // ## #####
GerritPathuis 1:d27a7e06c233 1767 0x1F, 0xF8, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 1768 0x1C, 0x18, 0x00, // ### ##
GerritPathuis 1:d27a7e06c233 1769 0x18, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1770 0x18, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1771 0x18, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1772 0x18, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1773 0x18, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1774 0x1C, 0x18, 0x00, // ### ##
GerritPathuis 1:d27a7e06c233 1775 0x7F, 0xF8, 0x00, // ############
GerritPathuis 1:d27a7e06c233 1776 0x7B, 0xE0, 0x00, // #### #####
GerritPathuis 1:d27a7e06c233 1777 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1778 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1779 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1780 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1781 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1782 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1783 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1784
GerritPathuis 1:d27a7e06c233 1785 // @4824 'c' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1786 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1787 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1788 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1789 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1790 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1791 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1792 0x03, 0xEC, 0x00, // ##### ##
GerritPathuis 1:d27a7e06c233 1793 0x0F, 0xFC, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 1794 0x1C, 0x1C, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 1795 0x38, 0x0C, 0x00, // ### ##
GerritPathuis 1:d27a7e06c233 1796 0x30, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1797 0x30, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1798 0x30, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1799 0x38, 0x0C, 0x00, // ### ##
GerritPathuis 1:d27a7e06c233 1800 0x1C, 0x1C, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 1801 0x0F, 0xF8, 0x00, // #########
GerritPathuis 1:d27a7e06c233 1802 0x03, 0xF0, 0x00, // ######
GerritPathuis 1:d27a7e06c233 1803 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1804 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1805 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1806 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1807 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1808 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1809 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1810
GerritPathuis 1:d27a7e06c233 1811 // @4896 'd' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1812 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1813 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1814 0x00, 0x78, 0x00, // ####
GerritPathuis 1:d27a7e06c233 1815 0x00, 0x78, 0x00, // ####
GerritPathuis 1:d27a7e06c233 1816 0x00, 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1817 0x00, 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1818 0x07, 0xD8, 0x00, // ##### ##
GerritPathuis 1:d27a7e06c233 1819 0x1F, 0xF8, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 1820 0x18, 0x38, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 1821 0x30, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1822 0x30, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1823 0x30, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1824 0x30, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1825 0x30, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1826 0x18, 0x38, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 1827 0x1F, 0xFE, 0x00, // ############
GerritPathuis 1:d27a7e06c233 1828 0x07, 0xDE, 0x00, // ##### ####
GerritPathuis 1:d27a7e06c233 1829 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1830 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1831 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1832 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1833 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1834 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1835 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1836
GerritPathuis 1:d27a7e06c233 1837 // @4968 'e' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1838 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1839 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1840 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1841 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1842 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1843 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1844 0x07, 0xE0, 0x00, // ######
GerritPathuis 1:d27a7e06c233 1845 0x1F, 0xF8, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 1846 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1847 0x30, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1848 0x3F, 0xFC, 0x00, // ############
GerritPathuis 1:d27a7e06c233 1849 0x3F, 0xFC, 0x00, // ############
GerritPathuis 1:d27a7e06c233 1850 0x30, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1851 0x30, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1852 0x18, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1853 0x1F, 0xFC, 0x00, // ###########
GerritPathuis 1:d27a7e06c233 1854 0x07, 0xF0, 0x00, // #######
GerritPathuis 1:d27a7e06c233 1855 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1856 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1857 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1858 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1859 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1860 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1861 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1862
GerritPathuis 1:d27a7e06c233 1863 // @5040 'f' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1864 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1865 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1866 0x01, 0xFC, 0x00, // #######
GerritPathuis 1:d27a7e06c233 1867 0x03, 0xFC, 0x00, // ########
GerritPathuis 1:d27a7e06c233 1868 0x06, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1869 0x06, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1870 0x3F, 0xF8, 0x00, // ###########
GerritPathuis 1:d27a7e06c233 1871 0x3F, 0xF8, 0x00, // ###########
GerritPathuis 1:d27a7e06c233 1872 0x06, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1873 0x06, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1874 0x06, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1875 0x06, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1876 0x06, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1877 0x06, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1878 0x06, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1879 0x3F, 0xF0, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 1880 0x3F, 0xF0, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 1881 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1882 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1883 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1884 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1885 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1886 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1887 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1888
GerritPathuis 1:d27a7e06c233 1889 // @5112 'g' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1890 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1891 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1892 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1893 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1894 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1895 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1896 0x07, 0xDE, 0x00, // ##### ####
GerritPathuis 1:d27a7e06c233 1897 0x1F, 0xFE, 0x00, // ############
GerritPathuis 1:d27a7e06c233 1898 0x18, 0x38, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 1899 0x30, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1900 0x30, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1901 0x30, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1902 0x30, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1903 0x30, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1904 0x18, 0x38, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 1905 0x1F, 0xF8, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 1906 0x07, 0xD8, 0x00, // ##### ##
GerritPathuis 1:d27a7e06c233 1907 0x00, 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1908 0x00, 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1909 0x00, 0x38, 0x00, // ###
GerritPathuis 1:d27a7e06c233 1910 0x0F, 0xF0, 0x00, // ########
GerritPathuis 1:d27a7e06c233 1911 0x0F, 0xC0, 0x00, // ######
GerritPathuis 1:d27a7e06c233 1912 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1913 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1914
GerritPathuis 1:d27a7e06c233 1915 // @5184 'h' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1916 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1917 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1918 0x78, 0x00, 0x00, // ####
GerritPathuis 1:d27a7e06c233 1919 0x78, 0x00, 0x00, // ####
GerritPathuis 1:d27a7e06c233 1920 0x18, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1921 0x18, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1922 0x1B, 0xE0, 0x00, // ## #####
GerritPathuis 1:d27a7e06c233 1923 0x1F, 0xF0, 0x00, // #########
GerritPathuis 1:d27a7e06c233 1924 0x1C, 0x38, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 1925 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1926 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1927 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1928 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1929 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1930 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 1931 0x7E, 0x7E, 0x00, // ###### ######
GerritPathuis 1:d27a7e06c233 1932 0x7E, 0x7E, 0x00, // ###### ######
GerritPathuis 1:d27a7e06c233 1933 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1934 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1935 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1936 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1937 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1938 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1939 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1940
GerritPathuis 1:d27a7e06c233 1941 // @5256 'i' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1942 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1943 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1944 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1945 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1946 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1947 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1948 0x1F, 0x80, 0x00, // ######
GerritPathuis 1:d27a7e06c233 1949 0x1F, 0x80, 0x00, // ######
GerritPathuis 1:d27a7e06c233 1950 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1951 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1952 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1953 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1954 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1955 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1956 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1957 0x3F, 0xFC, 0x00, // ############
GerritPathuis 1:d27a7e06c233 1958 0x3F, 0xFC, 0x00, // ############
GerritPathuis 1:d27a7e06c233 1959 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1960 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1961 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1962 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1963 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1964 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1965 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1966
GerritPathuis 1:d27a7e06c233 1967 // @5328 'j' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1968 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1969 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1970 0x00, 0xC0, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1971 0x00, 0xC0, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1972 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1973 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1974 0x1F, 0xF0, 0x00, // #########
GerritPathuis 1:d27a7e06c233 1975 0x1F, 0xF0, 0x00, // #########
GerritPathuis 1:d27a7e06c233 1976 0x00, 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1977 0x00, 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1978 0x00, 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1979 0x00, 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1980 0x00, 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1981 0x00, 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1982 0x00, 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1983 0x00, 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1984 0x00, 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1985 0x00, 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1986 0x00, 0x30, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1987 0x00, 0x70, 0x00, // ###
GerritPathuis 1:d27a7e06c233 1988 0x1F, 0xE0, 0x00, // ########
GerritPathuis 1:d27a7e06c233 1989 0x1F, 0x80, 0x00, // ######
GerritPathuis 1:d27a7e06c233 1990 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1991 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1992
GerritPathuis 1:d27a7e06c233 1993 // @5400 'k' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 1994 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1995 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 1996 0x3C, 0x00, 0x00, // ####
GerritPathuis 1:d27a7e06c233 1997 0x3C, 0x00, 0x00, // ####
GerritPathuis 1:d27a7e06c233 1998 0x0C, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 1999 0x0C, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2000 0x0C, 0xF8, 0x00, // ## #####
GerritPathuis 1:d27a7e06c233 2001 0x0C, 0xF8, 0x00, // ## #####
GerritPathuis 1:d27a7e06c233 2002 0x0C, 0xC0, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2003 0x0D, 0x80, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2004 0x0F, 0x80, 0x00, // #####
GerritPathuis 1:d27a7e06c233 2005 0x0F, 0x00, 0x00, // ####
GerritPathuis 1:d27a7e06c233 2006 0x0F, 0x80, 0x00, // #####
GerritPathuis 1:d27a7e06c233 2007 0x0D, 0xC0, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 2008 0x0C, 0xE0, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 2009 0x3C, 0x7C, 0x00, // #### #####
GerritPathuis 1:d27a7e06c233 2010 0x3C, 0x7C, 0x00, // #### #####
GerritPathuis 1:d27a7e06c233 2011 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2012 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2013 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2014 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2015 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2016 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2017 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2018
GerritPathuis 1:d27a7e06c233 2019 // @5472 'l' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 2020 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2021 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2022 0x1F, 0x80, 0x00, // ######
GerritPathuis 1:d27a7e06c233 2023 0x1F, 0x80, 0x00, // ######
GerritPathuis 1:d27a7e06c233 2024 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2025 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2026 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2027 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2028 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2029 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2030 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2031 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2032 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2033 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2034 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2035 0x3F, 0xFC, 0x00, // ############
GerritPathuis 1:d27a7e06c233 2036 0x3F, 0xFC, 0x00, // ############
GerritPathuis 1:d27a7e06c233 2037 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2038 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2039 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2040 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2041 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2042 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2043 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2044
GerritPathuis 1:d27a7e06c233 2045 // @5544 'm' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 2046 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2047 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2048 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2049 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2050 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2051 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2052 0xF7, 0x78, 0x00, // #### ### ####
GerritPathuis 1:d27a7e06c233 2053 0xFF, 0xFC, 0x00, // ##############
GerritPathuis 1:d27a7e06c233 2054 0x39, 0xCC, 0x00, // ### ### ##
GerritPathuis 1:d27a7e06c233 2055 0x31, 0x8C, 0x00, // ## ## ##
GerritPathuis 1:d27a7e06c233 2056 0x31, 0x8C, 0x00, // ## ## ##
GerritPathuis 1:d27a7e06c233 2057 0x31, 0x8C, 0x00, // ## ## ##
GerritPathuis 1:d27a7e06c233 2058 0x31, 0x8C, 0x00, // ## ## ##
GerritPathuis 1:d27a7e06c233 2059 0x31, 0x8C, 0x00, // ## ## ##
GerritPathuis 1:d27a7e06c233 2060 0x31, 0x8C, 0x00, // ## ## ##
GerritPathuis 1:d27a7e06c233 2061 0xFD, 0xEF, 0x00, // ###### #### ####
GerritPathuis 1:d27a7e06c233 2062 0xFD, 0xEF, 0x00, // ###### #### ####
GerritPathuis 1:d27a7e06c233 2063 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2064 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2065 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2066 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2067 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2068 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2069 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2070
GerritPathuis 1:d27a7e06c233 2071 // @5616 'n' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 2072 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2073 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2074 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2075 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2076 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2077 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2078 0x7B, 0xE0, 0x00, // #### #####
GerritPathuis 1:d27a7e06c233 2079 0x7F, 0xF0, 0x00, // ###########
GerritPathuis 1:d27a7e06c233 2080 0x1C, 0x38, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 2081 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2082 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2083 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2084 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2085 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2086 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2087 0x7E, 0x7E, 0x00, // ###### ######
GerritPathuis 1:d27a7e06c233 2088 0x7E, 0x7E, 0x00, // ###### ######
GerritPathuis 1:d27a7e06c233 2089 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2090 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2091 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2092 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2093 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2094 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2095 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2096
GerritPathuis 1:d27a7e06c233 2097 // @5688 'o' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 2098 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2099 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2100 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2101 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2102 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2103 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2104 0x03, 0xC0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 2105 0x0F, 0xF0, 0x00, // ########
GerritPathuis 1:d27a7e06c233 2106 0x1C, 0x38, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 2107 0x38, 0x1C, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 2108 0x30, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2109 0x30, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2110 0x30, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2111 0x38, 0x1C, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 2112 0x1C, 0x38, 0x00, // ### ###
GerritPathuis 1:d27a7e06c233 2113 0x0F, 0xF0, 0x00, // ########
GerritPathuis 1:d27a7e06c233 2114 0x03, 0xC0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 2115 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2116 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2117 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2118 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2119 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2120 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2121 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2122
GerritPathuis 1:d27a7e06c233 2123 // @5760 'p' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 2124 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2125 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2126 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2127 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2128 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2129 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2130 0x7B, 0xE0, 0x00, // #### #####
GerritPathuis 1:d27a7e06c233 2131 0x7F, 0xF8, 0x00, // ############
GerritPathuis 1:d27a7e06c233 2132 0x1C, 0x18, 0x00, // ### ##
GerritPathuis 1:d27a7e06c233 2133 0x18, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2134 0x18, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2135 0x18, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2136 0x18, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2137 0x18, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2138 0x1C, 0x18, 0x00, // ### ##
GerritPathuis 1:d27a7e06c233 2139 0x1F, 0xF8, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 2140 0x1B, 0xE0, 0x00, // ## #####
GerritPathuis 1:d27a7e06c233 2141 0x18, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2142 0x18, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2143 0x18, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2144 0x7F, 0x00, 0x00, // #######
GerritPathuis 1:d27a7e06c233 2145 0x7F, 0x00, 0x00, // #######
GerritPathuis 1:d27a7e06c233 2146 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2147 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2148
GerritPathuis 1:d27a7e06c233 2149 // @5832 'q' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 2150 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2151 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2152 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2153 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2154 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2155 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2156 0x07, 0xDE, 0x00, // ##### ####
GerritPathuis 1:d27a7e06c233 2157 0x1F, 0xFE, 0x00, // ############
GerritPathuis 1:d27a7e06c233 2158 0x18, 0x38, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 2159 0x30, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2160 0x30, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2161 0x30, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2162 0x30, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2163 0x30, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2164 0x18, 0x38, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 2165 0x1F, 0xF8, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 2166 0x07, 0xD8, 0x00, // ##### ##
GerritPathuis 1:d27a7e06c233 2167 0x00, 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2168 0x00, 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2169 0x00, 0x18, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2170 0x00, 0xFE, 0x00, // #######
GerritPathuis 1:d27a7e06c233 2171 0x00, 0xFE, 0x00, // #######
GerritPathuis 1:d27a7e06c233 2172 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2173 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2174
GerritPathuis 1:d27a7e06c233 2175 // @5904 'r' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 2176 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2177 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2178 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2179 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2180 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2181 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2182 0x3E, 0x78, 0x00, // ##### ####
GerritPathuis 1:d27a7e06c233 2183 0x3E, 0xFC, 0x00, // ##### ######
GerritPathuis 1:d27a7e06c233 2184 0x07, 0xCC, 0x00, // ##### ##
GerritPathuis 1:d27a7e06c233 2185 0x07, 0x00, 0x00, // ###
GerritPathuis 1:d27a7e06c233 2186 0x06, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2187 0x06, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2188 0x06, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2189 0x06, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2190 0x06, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2191 0x3F, 0xF0, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 2192 0x3F, 0xF0, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 2193 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2194 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2195 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2196 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2197 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2198 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2199 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2200
GerritPathuis 1:d27a7e06c233 2201 // @5976 's' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 2202 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2203 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2204 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2205 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2206 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2207 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2208 0x07, 0xF8, 0x00, // ########
GerritPathuis 1:d27a7e06c233 2209 0x0F, 0xF8, 0x00, // #########
GerritPathuis 1:d27a7e06c233 2210 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2211 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2212 0x1F, 0x80, 0x00, // ######
GerritPathuis 1:d27a7e06c233 2213 0x0F, 0xF0, 0x00, // ########
GerritPathuis 1:d27a7e06c233 2214 0x00, 0xF8, 0x00, // #####
GerritPathuis 1:d27a7e06c233 2215 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2216 0x18, 0x38, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 2217 0x1F, 0xF0, 0x00, // #########
GerritPathuis 1:d27a7e06c233 2218 0x1F, 0xE0, 0x00, // ########
GerritPathuis 1:d27a7e06c233 2219 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2220 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2221 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2222 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2223 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2224 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2225 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2226
GerritPathuis 1:d27a7e06c233 2227 // @6048 't' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 2228 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2229 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2230 0x0C, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2231 0x0C, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2232 0x0C, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2233 0x0C, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2234 0x3F, 0xF0, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 2235 0x3F, 0xF0, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 2236 0x0C, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2237 0x0C, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2238 0x0C, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2239 0x0C, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2240 0x0C, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2241 0x0C, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2242 0x0C, 0x1C, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 2243 0x07, 0xFC, 0x00, // #########
GerritPathuis 1:d27a7e06c233 2244 0x03, 0xF0, 0x00, // ######
GerritPathuis 1:d27a7e06c233 2245 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2246 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2247 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2248 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2249 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2250 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2251 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2252
GerritPathuis 1:d27a7e06c233 2253 // @6120 'u' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 2254 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2255 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2256 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2257 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2258 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2259 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2260 0x78, 0x78, 0x00, // #### ####
GerritPathuis 1:d27a7e06c233 2261 0x78, 0x78, 0x00, // #### ####
GerritPathuis 1:d27a7e06c233 2262 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2263 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2264 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2265 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2266 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2267 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2268 0x18, 0x38, 0x00, // ## ###
GerritPathuis 1:d27a7e06c233 2269 0x0F, 0xFE, 0x00, // ###########
GerritPathuis 1:d27a7e06c233 2270 0x07, 0xDE, 0x00, // ##### ####
GerritPathuis 1:d27a7e06c233 2271 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2272 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2273 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2274 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2275 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2276 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2277 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2278
GerritPathuis 1:d27a7e06c233 2279 // @6192 'v' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 2280 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2281 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2282 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2283 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2284 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2285 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2286 0x7C, 0x3E, 0x00, // ##### #####
GerritPathuis 1:d27a7e06c233 2287 0x7C, 0x3E, 0x00, // ##### #####
GerritPathuis 1:d27a7e06c233 2288 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2289 0x18, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2290 0x0C, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2291 0x0C, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2292 0x06, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2293 0x06, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2294 0x07, 0xE0, 0x00, // ######
GerritPathuis 1:d27a7e06c233 2295 0x03, 0xC0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 2296 0x03, 0xC0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 2297 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2298 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2299 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2300 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2301 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2302 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2303 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2304
GerritPathuis 1:d27a7e06c233 2305 // @6264 'w' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 2306 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2307 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2308 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2309 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2310 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2311 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2312 0x78, 0x3C, 0x00, // #### ####
GerritPathuis 1:d27a7e06c233 2313 0x78, 0x3C, 0x00, // #### ####
GerritPathuis 1:d27a7e06c233 2314 0x31, 0x18, 0x00, // ## # ##
GerritPathuis 1:d27a7e06c233 2315 0x33, 0x98, 0x00, // ## ### ##
GerritPathuis 1:d27a7e06c233 2316 0x33, 0x98, 0x00, // ## ### ##
GerritPathuis 1:d27a7e06c233 2317 0x1A, 0xB0, 0x00, // ## # # ##
GerritPathuis 1:d27a7e06c233 2318 0x1E, 0xF0, 0x00, // #### ####
GerritPathuis 1:d27a7e06c233 2319 0x1E, 0xF0, 0x00, // #### ####
GerritPathuis 1:d27a7e06c233 2320 0x1C, 0x60, 0x00, // ### ##
GerritPathuis 1:d27a7e06c233 2321 0x0C, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2322 0x0C, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2323 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2324 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2325 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2326 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2327 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2328 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2329 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2330
GerritPathuis 1:d27a7e06c233 2331 // @6336 'x' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 2332 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2333 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2334 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2335 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2336 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2337 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2338 0x3E, 0x7C, 0x00, // ##### #####
GerritPathuis 1:d27a7e06c233 2339 0x3E, 0x7C, 0x00, // ##### #####
GerritPathuis 1:d27a7e06c233 2340 0x0C, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2341 0x06, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2342 0x03, 0xC0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 2343 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2344 0x03, 0xC0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 2345 0x06, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2346 0x0C, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2347 0x3E, 0x7C, 0x00, // ##### #####
GerritPathuis 1:d27a7e06c233 2348 0x3E, 0x7C, 0x00, // ##### #####
GerritPathuis 1:d27a7e06c233 2349 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2350 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2351 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2352 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2353 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2354 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2355 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2356
GerritPathuis 1:d27a7e06c233 2357 // @6408 'y' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 2358 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2359 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2360 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2361 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2362 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2363 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2364 0x7E, 0x1F, 0x00, // ###### #####
GerritPathuis 1:d27a7e06c233 2365 0x7E, 0x1F, 0x00, // ###### #####
GerritPathuis 1:d27a7e06c233 2366 0x18, 0x0C, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2367 0x0C, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2368 0x0C, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2369 0x06, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2370 0x06, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2371 0x03, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2372 0x03, 0xE0, 0x00, // #####
GerritPathuis 1:d27a7e06c233 2373 0x01, 0xC0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 2374 0x00, 0xC0, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2375 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2376 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2377 0x03, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2378 0x3F, 0xC0, 0x00, // ########
GerritPathuis 1:d27a7e06c233 2379 0x3F, 0xC0, 0x00, // ########
GerritPathuis 1:d27a7e06c233 2380 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2381 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2382
GerritPathuis 1:d27a7e06c233 2383 // @6480 'z' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 2384 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2385 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2386 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2387 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2388 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2389 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2390 0x1F, 0xF8, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 2391 0x1F, 0xF8, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 2392 0x18, 0x30, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2393 0x18, 0x60, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2394 0x00, 0xC0, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2395 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2396 0x03, 0x00, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2397 0x06, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2398 0x0C, 0x18, 0x00, // ## ##
GerritPathuis 1:d27a7e06c233 2399 0x1F, 0xF8, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 2400 0x1F, 0xF8, 0x00, // ##########
GerritPathuis 1:d27a7e06c233 2401 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2402 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2403 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2404 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2405 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2406 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2407 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2408
GerritPathuis 1:d27a7e06c233 2409 // @6552 '{' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 2410 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2411 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2412 0x00, 0xE0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 2413 0x01, 0xE0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 2414 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2415 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2416 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2417 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2418 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2419 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2420 0x03, 0x80, 0x00, // ###
GerritPathuis 1:d27a7e06c233 2421 0x07, 0x00, 0x00, // ###
GerritPathuis 1:d27a7e06c233 2422 0x03, 0x80, 0x00, // ###
GerritPathuis 1:d27a7e06c233 2423 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2424 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2425 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2426 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2427 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2428 0x01, 0xE0, 0x00, // ####
GerritPathuis 1:d27a7e06c233 2429 0x00, 0xE0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 2430 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2431 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2432 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2433 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2434
GerritPathuis 1:d27a7e06c233 2435 // @6624 '|' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 2436 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2437 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2438 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2439 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2440 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2441 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2442 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2443 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2444 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2445 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2446 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2447 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2448 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2449 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2450 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2451 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2452 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2453 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2454 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2455 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2456 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2457 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2458 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2459 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2460
GerritPathuis 1:d27a7e06c233 2461 // @6696 '}' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 2462 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2463 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2464 0x07, 0x00, 0x00, // ###
GerritPathuis 1:d27a7e06c233 2465 0x07, 0x80, 0x00, // ####
GerritPathuis 1:d27a7e06c233 2466 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2467 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2468 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2469 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2470 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2471 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2472 0x01, 0xC0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 2473 0x00, 0xE0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 2474 0x01, 0xC0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 2475 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2476 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2477 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2478 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2479 0x01, 0x80, 0x00, // ##
GerritPathuis 1:d27a7e06c233 2480 0x07, 0x80, 0x00, // ####
GerritPathuis 1:d27a7e06c233 2481 0x07, 0x00, 0x00, // ###
GerritPathuis 1:d27a7e06c233 2482 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2483 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2484 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2485 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2486
GerritPathuis 1:d27a7e06c233 2487 // @6768 '~' (17 pixels wide)
GerritPathuis 1:d27a7e06c233 2488 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2489 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2490 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2491 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2492 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2493 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2494 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2495 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2496 0x0E, 0x00, 0x00, // ###
GerritPathuis 1:d27a7e06c233 2497 0x1F, 0x18, 0x00, // ##### ##
GerritPathuis 1:d27a7e06c233 2498 0x3B, 0xB8, 0x00, // ### ### ###
GerritPathuis 1:d27a7e06c233 2499 0x31, 0xF0, 0x00, // ## #####
GerritPathuis 1:d27a7e06c233 2500 0x00, 0xE0, 0x00, // ###
GerritPathuis 1:d27a7e06c233 2501 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2502 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2503 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2504 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2505 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2506 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2507 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2508 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2509 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2510 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2511 0x00, 0x00, 0x00, //
GerritPathuis 1:d27a7e06c233 2512 };
GerritPathuis 1:d27a7e06c233 2513
GerritPathuis 1:d27a7e06c233 2514 sFONT Font24 = {
GerritPathuis 1:d27a7e06c233 2515 Font24_Table,
GerritPathuis 1:d27a7e06c233 2516 17, /* Width */
GerritPathuis 1:d27a7e06c233 2517 24, /* Height */
GerritPathuis 1:d27a7e06c233 2518 };
GerritPathuis 1:d27a7e06c233 2519
GerritPathuis 1:d27a7e06c233 2520 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
GerritPathuis 1:d27a7e06c233 2521