bedstead/bedstead.c
Ben Harris 8974fd292c Turn on line-drawing mode on long brackets etc
It doesn't work quite properly: some characters hit the left side of the
character cell, so I might want to separate the joins-leftward and
joins-upward flags.
2024-11-21 20:55:51 +00:00

3836 lines
167 KiB
C

/* -*- c-file-style: "bsd"; indent-tabs-mode: t; -*- */
/*
* Many of the character bitmaps below formed the typeface embodied in
* the SAA5050 series of character-generator chips originally made and
* sold by British company Mullard in the early 1980s. Copyright in the
* typeface will still be owned by Mullard's corporate successors, but
* under section 55 of the Copyright Designs and Patents Act 1988 that
* copyright is no longer infringed by the production or use of
* articles specifically designed or adapted for producing material in
* that typeface.
*
* The rest of the glyphs, and all of the code in this file, were
* written by Ben Harris <bjh21@bjh21.me.uk>, Simon Tatham
* <anakin@pobox.com>, and Marnanel Thurman <marnanel@thurman.org.uk>
* between 2009 and 2024.
*
* To the extent possible under law, Ben Harris, Simon Tatham, and
* Marnanel Thurman have dedicated all copyright and related and
* neighboring rights to this software and the embodied typeface to
* the public domain worldwide. This software and typeface are
* distributed without any warranty.
*
* You should have received a copy of the CC0 Public Domain Dedication
* along with this software. If not, see
* <http://creativecommons.org/publicdomain/zero/1.0/>.
*/
/*
* This is a program to construct an outline font from a bitmap. It's
* based on the character-rounding algorithm of the Mullard SAA5050
* series of Teletext character generators, and thus works best on
* character shapes in the same style of those of the SAA5050. This
* file includes all of the glyphs from the SAA5050, SAA5051, SAA5052,
* SAA5053, SAA5054, SAA5055, SAA5056, and SAA5057. The output is a
* Spline Font Database file suitable for feeding to Fontforge.
*
* The character-smoothing algorithm of the SAA5050 and friends is
* a fairly simple means of expanding a 5x9 pixel character to 10x18
* pixels for use on an interlaced display. All it does is to detect
* 2x2 clumps of pixels containing a diagonal line and add a couple of
* subpixels to it, like this:
*
* . # -> . . # # -> . . # # or # . -> # # . . -> # # . .
* # . . . # # . # # # . # # # . . # # # .
* # # . . # # # . . . # # . # # #
* # # . . # # . . . . # # . . # #
*
* This is applied to every occurrence of these patterns, even when
* they overlap, and the result is that thin diagonal lines are
* smoothed out while other features mostly remain the same.
*
* One way of extending this towards continuity would be to repeatedly
* double the resolution and add more pixels to diagonals each time,
* but this ends up with the diagonals being much too heavy. Instead,
* in places where the SAA5050 would add pixels, this program adds a
* largeish triangle to each unfilled pixel, and removes a small
* triangle from each filled one, something like this:
*
* . # -> . . # # -> . . / # or # . -> # # . . -> # \ . .
* # . . . # # . / # / . # # # . . \ # \ .
* # # . . / # / . . . # # . \ # \
* # # . . # / . . . . # # . . \ #
*
* The position of the lines is such that the diagonal stroke is the
* same width as a horizontal or vertical stroke (assuming square
* pixels). There are a few additional complications, in that the
* trimming of filled pixels can leave odd gaps where a diagonal stem
* joins another one, so the code detects this and doesn't trim in
* these cases:
*
* . # # -> . . # # # # -> . . / # # # -> . . / # # #
* # . . . . # # # # . / # / # # . / # # # #
* # # . . . . / # / . . . / # / . . .
* # # . . . . # / . . . . # / . . . .
*
* That is the interesting part of the program, and is in the dochar()
* function. Most of the rest is just dull geometry to join all the
* bits together into a sensible outline. Much of the code is wildly
* inefficient -- O(n^2) algorithms aren't much of a problem when you
* have at most a few thousand points to deal with.
*
* A rather nice feature of the outlines produced by this program is
* that when rasterised at precisely 10 or 20 pixels high, they
* produce the input and output respectively of the character-rounding
* process. While there are obious additional smoothings that could
* be applied, doing so would probably lose this nice property.
*
* The glyph bitmaps included below include all the ones from the various
* members of the SAA5050 family that I know about. They are as shown
* in the datasheet, and the English ones have been checked against a
* real SAA5050. Occasionally, different languages have different
* glyphs for the same character -- these are represented as
* alternates, with the default being the glyph that looks best.
*
* There are some extra glyphs included as well, some derived from
* standard ones and some made from whole cloth. They are built on
* the same 5x9 matrix as the originals, and processed in the same way.
*/
#include <assert.h>
#include <ctype.h>
#include <errno.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define XSIZE 6
#define YSIZE 10
/*
* Design parameters. These can vary between fonts in the Bedstead family.
*
* To faithfully represent the output of an SAA5050, we need to know a
* little about TV pixel aspect ratios:
*
* http://www.lurkertech.com/lg/video-systems/#sqnonsq
*
* The SAA5050 can be used to drive both 480i ("NTSC") and 576i
* ("PAL") displays. In 480i, industry convention is that you get
* square pixels with a pixel clock of 12+3/11 MHz. In 576i, you need
* 14.75 MHz. The SAA5050 takes a nominal 6MHz clock and uses both
* edges to output subpixels (duty cycle between 0.4 and 0.6). This
* means that the nominal pixel aspect ratios are 12+3/11:12 for 480i
* and 14.75:12 for 576i. These correspond to pixel widths of 102.3
* and 122.9 respectively.
*
* 102.3 is close enough to 100 that we may as well just use square
* pixels, which will work better on modern displays. Similarly,
* 122.9 is close to 125 and keeping the widths as simple fractions
* makes the fonts easier to work with.
*
* Double-height mode requires fonts half the usual width, hence the
* existence of ultra condensed and extra condensed forms. The other
* two widths just fill in the gap with the obvious fractions of the
* normal width.
*/
static struct width {
char const * option;
char const * suffix;
double xpix;
int ttfwidth;
} const widths[] = {
{ "--normal", "", 100.0, 5 },
{ "--ultra-condensed", " Ultra Condensed", 50.0, 1 },
{ "--extra-condensed", " Extra Condensed", 62.5, 2 },
{ "--condensed", " Condensed", 75.0, 3 },
{ "--semi-condensed", " Semi Condensed", 87.5, 4 },
{ "--extended", " Extended", 125.0, 7 },
};
static int const nwidths = sizeof(widths) / sizeof(widths[0]);
struct width const *width = &widths[0];
/* Size of output pixels in font design units (usually 1000/em) */
#define XPIX (width->xpix)
#define YPIX 100
/* Internally, we work in pixels 100 design units square */
#define XPIX_S 100
#define YPIX_S 100
#define XSCALE ((double)XPIX_S / (double)XPIX)
#define YSCALE ((double)YPIX_S / (double)YPIX)
/* Position of diagonal lines within pixels */
/* 29 is approximately 100 * (1-1/sqrt(2)) */
#define XQTR_S 29
#define YQTR_S 29
static struct weight {
char const *option;
char const *suffix;
int weight; /* Expressed in internal units */
int ttfweight;
} const weights[] = {
{ "--medium", "", 0, 500 },
{ "--light", " Light", 2 * XQTR_S - 100, 300 },
{ "--bold", " Bold", +50, 700 },
};
static int const nweights = sizeof(weights) / sizeof(weights[0]);
struct weight const *weight = &weights[0];
static void dochar(char const data[YSIZE], unsigned flags);
static void dochar_plotter(char const data[YSIZE], unsigned flags);
static void domosaic(unsigned code, bool sep);
static void domosaic4(unsigned code, bool sep);
static void doalias(char const *alias_of);
static void dopanose(void);
static void glyph_complement(void);
/* U(N) sets the code point and name of a glyph not in AGLFN */
#define U(N) 0x ## N, 0x ## N >= 0x10000 ? "u" #N : "uni" #N
#define ALIAS(alias, canonical) {{.alias_of=canonical},-1,alias,IS_ALIAS}
static struct glyph {
union {
/* Top row (and left column) don't appear in ROM. */
char data[YSIZE - 1];
char const *alias_of;
};
int_least32_t unicode;
char const *name;
uint_least8_t flags;
#define SEP 0x01 /* Separated graphics */
#define MOS6 0x02 /* 6-cell mosaic graphics character */
#define MOS4 0x04 /* 4-cell mosaic graphics character */
#define SEP6 (SEP | MOS6)
#define SEP4 (SEP | MOS4)
#define IS_ALIAS 0x08
#define LINE 0x10
} glyphs[] = {
/*
* The first batch of glyphs comes from the code tables at the end of
* the Mullard SAA5050 series datasheet, dated July 1982.
*/
/* US ASCII (SAA5055) character set */
{"\00\00\00\00\00\00\00\00\00", 0x0020, "space" },
{"\04\04\04\04\04\00\04\00\00", 0x0021, "exclam" },
{"\12\12\12\00\00\00\00\00\00", 0x0022, "quotedbl" },
{"\12\12\37\12\37\12\12\00\00", 0x0023, "numbersign" },
{"\16\25\24\16\05\25\16\00\00", 0x0024, "dollar" },
{"\30\31\02\04\10\23\03\00\00", 0x0025, "percent" },
{"\10\24\24\10\25\22\15\00\00", 0x0026, "ampersand" },
{"\04\04\10\00\00\00\00\00\00", 0x2019, "quoteright" },
{"\02\04\10\10\10\04\02\00\00", 0x0028, "parenleft" },
{"\10\04\02\02\02\04\10\00\00", 0x0029, "parenright" },
{"\04\25\16\04\16\25\04\00\00", 0x002a, "asterisk" },
{"\00\04\04\37\04\04\00\00\00", 0x002b, "plus" },
{"\00\00\00\00\00\04\04\10\00", 0x002c, "comma"},
{"\00\00\00\16\00\00\00\00\00", 0x002d, "hyphen" },
{"\00\00\00\00\00\00\04\00\00", 0x002e, "period"},
{"\00\01\02\04\10\20\00\00\00", 0x002f, "slash" },
{"\04\12\21\21\21\12\04\00\00", 0x0030, "zero" },
{"\04\14\04\04\04\04\16\00\00", 0x0031, "one" },
{"\16\21\01\06\10\20\37\00\00", 0x0032, "two" },
{"\37\01\02\06\01\21\16\00\00", 0x0033, "three" },
{"\02\06\12\22\37\02\02\00\00", 0x0034, "four" },
{"\37\20\36\01\01\21\16\00\00", 0x0035, "five" },
{"\06\10\20\36\21\21\16\00\00", 0x0036, "six" },
{"\37\01\02\04\10\10\10\00\00", 0x0037, "seven" },
{"\16\21\21\16\21\21\16\00\00", 0x0038, "eight" },
{"\16\21\21\17\01\02\14\00\00", 0x0039, "nine" },
{"\00\00\04\00\00\00\04\00\00", 0x003a, "colon"},
{"\00\00\04\00\00\04\04\10\00", 0x003b, "semicolon"},
{"\02\04\10\20\10\04\02\00\00", 0x003c, "less" },
{"\00\00\37\00\37\00\00\00\00", 0x003d, "equal" },
{"\10\04\02\01\02\04\10\00\00", 0x003e, "greater" },
{"\16\21\02\04\04\00\04\00\00", 0x003f, "question" },
{"\16\21\27\25\27\20\16\00\00", 0x0040, "at" },
{"\04\12\21\21\37\21\21\00\00", 0x0041, "A" },
{"\36\21\21\36\21\21\36\00\00", 0x0042, "B" },
{"\16\21\20\20\20\21\16\00\00", 0x0043, "C" },
{"\36\21\21\21\21\21\36\00\00", 0x0044, "D" },
{"\37\20\20\36\20\20\37\00\00", 0x0045, "E" },
{"\37\20\20\36\20\20\20\00\00", 0x0046, "F" },
{"\16\21\20\20\23\21\17\00\00", 0x0047, "G" },
{"\21\21\21\37\21\21\21\00\00", 0x0048, "H" },
{"\16\04\04\04\04\04\16\00\00", 0x0049, "I" },
{"\01\01\01\01\01\21\16\00\00", 0x004a, "J" },
{"\21\22\24\30\24\22\21\00\00", 0x004b, "K" },
{"\20\20\20\20\20\20\37\00\00", 0x004c, "L" },
{"\21\33\25\25\21\21\21\00\00", 0x004d, "M" },
{"\21\21\31\25\23\21\21\00\00", 0x004e, "N" },
{"\16\21\21\21\21\21\16\00\00", 0x004f, "O" },
{"\36\21\21\36\20\20\20\00\00", 0x0050, "P" },
{"\16\21\21\21\25\22\15\00\00", 0x0051, "Q" },
{"\36\21\21\36\24\22\21\00\00", 0x0052, "R" },
{"\16\21\20\16\01\21\16\00\00", 0x0053, "S" },
{"\37\04\04\04\04\04\04\00\00", 0x0054, "T" },
{"\21\21\21\21\21\21\16\00\00", 0x0055, "U" },
{"\21\21\21\12\12\04\04\00\00", 0x0056, "V" },
{"\21\21\21\25\25\25\12\00\00", 0x0057, "W" },
{"\21\21\12\04\12\21\21\00\00", 0x0058, "X" },
{"\21\21\12\04\04\04\04\00\00", 0x0059, "Y" },
{"\37\01\02\04\10\20\37\00\00", 0x005a, "Z" },
{"\17\10\10\10\10\10\17\00\00", 0x005b, "bracketleft" },
{"\00\20\10\04\02\01\00\00\00", 0x005c, "backslash" },
{"\36\02\02\02\02\02\36\00\00", 0x005d, "bracketright" },
{"\04\12\21\00\00\00\00\00\00", 0x005e, "asciicircum" },
{"\00\00\00\00\00\00\37\00\00", 0x005f, "underscore" },
{"\04\04\02\00\00\00\00\00\00", 0x201b, "quotereversed" },
{"\00\00\16\01\17\21\17\00\00", 0x0061, "a" },
{"\20\20\36\21\21\21\36\00\00", 0x0062, "b" },
{"\00\00\17\20\20\20\17\00\00", 0x0063, "c" },
{"\01\01\17\21\21\21\17\00\00", 0x0064, "d" },
{"\00\00\16\21\37\20\16\00\00", 0x0065, "e" },
{"\02\04\04\16\04\04\04\00\00", 0x0066, "f" },
{"\00\00\17\21\21\21\17\01\16", 0x0067, "g" },
{"\20\20\36\21\21\21\21\00\00", 0x0068, "h" },
{"\04\00\14\04\04\04\16\00\00", 0x0069, "i" },
{"\04\00\04\04\04\04\04\04\10", 0x006a, "j" },
{"\10\10\11\12\14\12\11\00\00", 0x006b, "k" },
{"\14\04\04\04\04\04\16\00\00", 0x006c, "l" },
{"\00\00\32\25\25\25\25\00\00", 0x006d, "m" },
{"\00\00\36\21\21\21\21\00\00", 0x006e, "n" },
{"\00\00\16\21\21\21\16\00\00", 0x006f, "o" },
{"\00\00\36\21\21\21\36\20\20", 0x0070, "p" },
{"\00\00\17\21\21\21\17\01\01", 0x0071, "q" },
{"\00\00\13\14\10\10\10\00\00", 0x0072, "r" },
{"\00\00\17\20\16\01\36\00\00", 0x0073, "s" },
{"\04\04\16\04\04\04\02\00\00", 0x0074, "t" },
{"\00\00\21\21\21\21\17\00\00", 0x0075, "u" },
{"\00\00\21\21\12\12\04\00\00", 0x0076, "v" },
{"\00\00\21\21\25\25\12\00\00", 0x0077, "w" },
{"\00\00\21\12\04\12\21\00\00", 0x0078, "x" },
{"\00\00\21\21\21\21\17\01\16", 0x0079, "y" },
{"\00\00\37\02\04\10\37\00\00", 0x007a, "z" },
{"\03\04\04\10\04\04\03\00\00", 0x007b, "braceleft" },
{"\04\04\04\00\04\04\04\00\00", 0x00a6, "brokenbar" },
{"\30\04\04\02\04\04\30\00\00", 0x007d, "braceright" },
{"\10\25\02\00\00\00\00\00\00", 0x007e, "asciitilde" },
{"\37\37\37\37\37\37\37\00\00", 0x25a0, "filledbox" },
/* Extra characters found in the English (SAA5050) character set */
{"\06\11\10\34\10\10\37\00\00", 0x00a3, "sterling" },
{"\04\04\04\00\00\00\00\00\00", 0x0027, "quotesingle" },
{"\00\04\10\37\10\04\00\00\00", 0x2190, "arrowleft" },
{"\20\20\20\20\26\01\02\04\07", 0x00bd, "onehalf" },
{"\00\04\02\37\02\04\00\00\00", 0x2192, "arrowright" },
{"\00\04\16\25\04\04\00\00\00", 0x2191, "arrowup" },
{"\00\00\00\37\00\00\00\00\00", 0x2014, "emdash" },
{"\10\10\10\10\11\03\05\07\01", 0x00bc, "onequarter" },
{"\12\12\12\12\12\12\12\00\00", 0x2016, "dblverticalbar" },
{"\30\04\30\04\31\03\05\07\01", 0x00be, "threequarters" },
{"\00\04\00\37\00\04\00\00\00", 0x00f7, "divide" },
/* Extra characters found in the German (SAA5051) character set */
{"\00\00\00\00\00\10\10\20\00", 0xf1d0, "comma.saa5051" },
{"\00\00\00\00\00\14\14\00\00", 0xf1d1, "period.saa5051" },
{"\00\00\00\10\00\00\10\00\00", 0xf1d2, "colon.saa5051" },
{"\00\00\10\00\00\10\10\20\00", 0xf1d3, "semicolon.saa5051" },
{"\16\21\01\02\04\00\04\00\00", 0xf1da, "question.saa5051" },
{"\16\21\20\16\21\16\01\21\16", 0x00a7, "section" },
{"\36\11\11\11\11\11\36\00\00", 0xf1db, "D.saa5051" },
{"\02\02\02\02\02\22\14\00\00", 0xf1dc, "J.saa5051" },
{"\10\10\10\10\10\10\17\00\00", 0xf1d5, "L.saa5051" },
{"\12\00\16\21\37\21\21\00\00", 0x00c4, "Adieresis" },
{"\12\00\16\21\21\21\16\00\00", 0x00d6, "Odieresis" },
{"\12\00\21\21\21\21\16\00\00", 0x00dc, "Udieresis" },
{"\06\11\06\00\00\00\00\00\00", 0x00b0, "degree" },
{"\04\00\14\04\04\04\04\04\10", 0xf1dd, "j.saa5051" },
{"\00\04\16\04\04\04\02\00\00", 0xf1de, "t.saa5051" },
{"\12\00\16\01\17\21\17\00\00", 0x00e4, "adieresis" },
{"\00\12\00\16\21\21\16\00\00", 0x00f6, "odieresis" },
{"\00\12\00\21\21\21\17\00\00", 0x00fc, "udieresis" },
{"\14\22\22\26\21\21\26\20\20", 0x00df, "germandbls" },
/* Extra characters found in the Swedish (SAA5052) character set */
{"\00\00\21\16\12\16\21\00\00", 0x00a4, "currency" },
ALIAS("comma.saa5052", "comma.saa5051"),
ALIAS("period.saa5052", "period.saa5051"),
ALIAS("colon.saa5052", "colon.saa5051"),
ALIAS("semicolon.saa5052", "semicolon.saa5051"),
ALIAS("question.saa5052", "question.saa5051"),
{"\02\04\37\20\36\20\37\00\00", 0x00c9, "Eacute" },
{"\16\11\11\11\11\11\16\00\00", 0xf1d4, "D.saa5052" },
ALIAS("J.saa5052", "J.saa5051"),
ALIAS("L.saa5052", "L.saa5051"),
{"\04\00\16\21\37\21\21\00\00", 0x00c5, "Aring" },
ALIAS("j.saa5052", "j.saa5051"),
ALIAS("t.saa5052", "t.saa5051"),
{"\02\04\16\21\37\20\16\00\00", 0x00e9, "eacute" },
{"\04\00\16\01\17\21\17\00\00", 0x00e5, "aring" },
/* Extra characters found in the Italian (SAA5053) character set */
{"\00\00\17\20\20\20\17\02\04", 0x00e7, "ccedilla" },
{"\10\04\21\21\21\21\17\00\00", 0x00f9, "ugrave" },
{"\10\04\16\01\17\21\17\00\00", 0x00e0, "agrave" },
{"\10\04\00\16\21\21\16\00\00", 0x00f2, "ograve" },
{"\10\04\16\21\37\20\16\00\00", 0x00e8, "egrave" },
{"\10\04\00\14\04\04\16\00\00", 0x00ec, "igrave" },
/* Extra characters found in the Belgian (SAA5054) character set */
{"\12\00\14\04\04\04\16\00\00", 0x00ef, "idieresis" },
{"\12\00\16\21\37\20\16\00\00", 0x00eb, "edieresis" },
{"\04\12\16\21\37\20\16\00\00", 0x00ea, "ecircumflex" },
{"\04\02\21\21\21\21\17\00\00", 0xf1d6, "ugrave.saa5054" },
{"\04\12\00\14\04\04\16\00\00", 0x00ee, "icircumflex" },
{"\04\12\16\01\17\21\17\00\00", 0x00e2, "acircumflex" },
{"\04\12\16\21\21\21\16\00\00", 0xf1d7, "ocircumflex.saa5054" },
{"\04\12\00\21\21\21\17\00\00", 0x00fb, "ucircumflex" },
{"\00\00\17\20\20\20\17\02\06", 0xf1d8, "ccedilla.saa5054" },
/* Extra characters found in the Hebrew (SAA5056) character set */
{"\00\21\11\25\22\21\21\00\00", U(05D0) }, /* alef */
{"\00\16\02\02\02\02\37\00\00", U(05D1) }, /* bet */
{"\00\03\01\01\03\05\11\00\00", U(05D2) }, /* gimel */
{"\00\37\02\02\02\02\02\00\00", U(05D3) }, /* dalet */
{"\00\37\01\01\21\21\21\00\00", U(05D4) }, /* he */
{"\00\14\04\04\04\04\04\00\00", U(05D5) }, /* vav */
{"\00\16\04\10\04\04\04\00\00", U(05D6) }, /* zayin */
{"\00\37\21\21\21\21\21\00\00", U(05D7) }, /* het */
{"\00\21\23\25\21\21\37\00\00", U(05D8) }, /* tet */
{"\00\14\04\00\00\00\00\00\00", U(05D9) }, /* yod */
{"\00\37\01\01\01\01\01\01\00", U(05DA) }, /* kaffinal */
{"\00\37\01\01\01\01\37\00\00", U(05DB) }, /* kaf */
{"\20\37\01\01\01\02\14\00\00", U(05DC) }, /* lamed */
{"\00\37\21\21\21\21\37\00\00", U(05DD) }, /* memfinal */
{"\00\26\11\21\21\21\27\00\00", U(05DE) }, /* mem */
{"\00\14\04\04\04\04\04\04\04", U(05DF) }, /* nunfinal */
{"\00\06\02\02\02\02\16\00\00", U(05E0) }, /* nun */
{"\00\37\11\21\21\21\16\00\00", U(05E1) }, /* samekh */
{"\00\11\11\11\11\12\34\00\00", U(05E2) }, /* ayin */
{"\00\37\11\15\01\01\01\01\00", U(05E3) }, /* pefinal */
{"\00\37\11\15\01\01\37\00\00", U(05E4) }, /* pe */
{"\00\31\12\14\10\10\10\10\00", U(05E5) }, /* tsadifinal */
{"\00\21\21\12\04\02\37\00\00", U(05E6) }, /* tsadi */
{"\00\37\01\11\11\12\10\10\00", U(05E7) }, /* qof */
{"\00\37\01\01\01\01\01\00\00", U(05E8) }, /* resh */
{"\00\25\25\25\31\21\36\00\00", U(05E9) }, /* shin */
{"\00\17\11\11\11\11\31\00\00", U(05EA) }, /* tav */
{"\00\00\25\25\16\00\00\00\00", 0xf1d9, "oldsheqel" },
/* Extra characters found in the Cyrillic (SAA5057) character set */
{"\00\00\21\21\35\25\35\00\00", U(044B) }, /* yeru */
{"\22\25\25\35\25\25\22\00\00", U(042E) }, /* Iu */
{"\16\21\21\21\37\21\21\00\00", U(0410) }, /* A */
{"\37\20\20\37\21\21\37\00\00", U(0411) }, /* Be */
{"\22\22\22\22\22\22\37\01\00", U(0426) }, /* Tse */
{"\06\12\12\12\12\12\37\21\00", U(0414) }, /* De */
{"\37\20\20\36\20\20\37\00\00", U(0415) }, /* Ie */
{"\04\37\25\25\25\37\04\00\00", U(0424) }, /* Ef */
{"\37\20\20\20\20\20\20\00\00", U(0413) }, /* Ghe */
{"\21\21\12\04\12\21\21\00\00", U(0425) }, /* Ha */
{"\21\21\23\25\31\21\21\00\00", U(0418) }, /* I */
{"\25\21\23\25\31\21\21\00\00", U(0419) }, /* Ishort */
{"\21\22\24\30\24\22\21\00\00", U(041A) }, /* Ka */
{"\07\11\11\11\11\11\31\00\00", U(041B) }, /* El */
{"\21\33\25\25\21\21\21\00\00", U(041C) }, /* Em */
{"\21\21\21\37\21\21\21\00\00", U(041D) }, /* En */
{"\16\21\21\21\21\21\16\00\00", U(041E) }, /* O */
{"\37\21\21\21\21\21\21\00\00", U(041F) }, /* Pe */
{"\17\21\21\17\05\11\21\00\00", U(042F) }, /* Ya */
{"\36\21\21\36\20\20\20\00\00", U(0420) }, /* Er */
{"\16\21\20\20\20\21\16\00\00", U(0421) }, /* Es */
{"\37\04\04\04\04\04\04\00\00", U(0422) }, /* Te */
{"\21\21\21\37\01\01\37\00\00", U(0423) }, /* U */
{"\25\25\25\16\25\25\25\00\00", U(0416) }, /* Zhe */
{"\36\21\21\36\21\21\36\00\00", U(0412) }, /* Ve */
{"\20\20\20\37\21\21\37\00\00", U(042C) }, /* Soft */
{"\30\10\10\17\11\11\17\00\00", U(042A) }, /* Hard */
{"\16\21\01\06\01\21\16\00\00", U(0417) }, /* Ze */
{"\25\25\25\25\25\25\37\00\00", U(0428) }, /* Sha */
{"\14\22\01\07\01\22\14\00\00", U(042D) }, /* E */
{"\25\25\25\25\25\25\37\01\00", U(0429) }, /* Shcha */
{"\21\21\21\37\01\01\01\00\00", U(0427) }, /* Che */
{"\21\21\21\35\25\25\35\00\00", U(042B) }, /* Yeru */
{"\00\00\22\25\35\25\22\00\00", U(044E) }, /* yu */
{"\00\00\16\01\17\21\17\00\00", U(0430) }, /* a */
{"\16\20\36\21\21\21\36\00\00", U(0431) }, /* be */
{"\00\00\22\22\22\22\37\01\00", U(0446) }, /* tse */
{"\00\00\06\12\12\12\37\21\00", U(0434) }, /* de */
{"\00\00\16\21\37\20\16\00\00", U(0435) }, /* ie */
{"\00\04\16\25\25\25\16\04\00", U(0444) }, /* ef */
{"\00\00\37\20\20\20\20\00\00", U(0433) }, /* ghe */
{"\00\00\21\12\04\12\21\00\00", U(0445) }, /* ha */
{"\00\00\21\23\25\31\21\00\00", U(0438) }, /* i */
{"\00\04\21\23\25\31\21\00\00", U(0439) }, /* ishort */
{"\00\00\21\22\34\22\21\00\00", U(043A) }, /* ka */
{"\00\00\07\11\11\11\31\00\00", U(043B) }, /* el */
{"\00\00\21\33\25\21\21\00\00", U(043C) }, /* em */
{"\00\00\21\21\37\21\21\00\00", U(043D) }, /* en */
{"\00\00\16\21\21\21\16\00\00", U(043E) }, /* o */
{"\00\00\37\21\21\21\21\00\00", U(043F) }, /* pe */
{"\00\00\17\21\17\05\31\00\00", U(044F) }, /* ya */
{"\00\00\36\21\21\21\36\20\20", U(0440) }, /* er */
{"\00\00\16\21\20\21\16\00\00", U(0441) }, /* es */
{"\00\00\37\04\04\04\04\00\00", U(0442) }, /* te */
{"\00\00\21\21\21\21\17\01\16", U(0443) }, /* u */
{"\00\00\25\25\16\25\25\00\00", U(0436) }, /* zhe */
{"\00\00\36\21\36\21\36\00\00", U(0432) }, /* ve */
{"\00\00\20\20\36\21\36\00\00", U(044C) }, /* soft */
{"\00\00\30\10\16\11\16\00\00", U(044A) }, /* hard */
{"\00\00\16\21\06\21\16\00\00", U(0437) }, /* ze */
{"\00\00\25\25\25\25\37\00\00", U(0448) }, /* sha */
{"\00\00\14\22\06\22\14\00\00", U(044D) }, /* e */
{"\00\00\25\25\25\25\37\01\00", U(0449) }, /* shcha */
{"\00\00\21\21\21\17\01\00\00", U(0447) }, /* che */
/* Mosaic graphics common to all versions */
{{0x00}, U(2003), /* em space */ MOS6 },
{{0x15}, 0x258c, "lfblock", MOS6 },
{{0x2a}, 0x2590, "rtblock", MOS6 },
{{0x3f}, 0x2588, "block", MOS6 },
#define M(u) { {0x ## u * 21 / 20 + 1}, U(1FB ## u), MOS6 }
/* */ M(00), M(01), M(02), M(03), M(04), M(05), M(06),
M(07), M(08), M(09), M(0A), M(0B), M(0C), M(0D), M(0E),
M(0F), M(10), M(11), M(12), M(13), M(14), M(15),
M(16), M(17), M(18), M(19), M(1A), M(1B), M(1C), M(1D),
M(1E), M(1F), M(20), M(21), M(22), M(23), M(24), M(25),
M(26), M(27), M(28), M(29), M(2A), M(2B), M(2C),
M(2D), M(2E), M(2F), M(30), M(31), M(32), M(33), M(34),
M(35), M(36), M(37), M(38), M(39), M(3A), M(3B),
#undef M
#define M(u) { {0x ## u - 0x50}, U(1CE ## u), SEP6 }
/* */ M(51), M(52), M(53), M(54), M(55), M(56), M(57),
M(58), M(59), M(5A), M(5B), M(5C), M(5D), M(5E), M(5F),
M(60), M(61), M(62), M(63), M(64), M(65), M(66), M(67),
M(68), M(69), M(6A), M(6B), M(6C), M(6D), M(6E), M(6F),
M(70), M(71), M(72), M(73), M(74), M(75), M(76), M(77),
M(78), M(79), M(7A), M(7B), M(7C), M(7D), M(7E), M(7F),
M(80), M(81), M(82), M(83), M(84), M(85), M(86), M(87),
M(88), M(89), M(8A), M(8B), M(8C), M(8D), M(8E), M(8F),
#undef M
/*
* The other batch of glyphs were specially designed for this font.
* These are kept sorted by Unicode code point. Glyphs accessed
* using OpenType features are next to their originals, even when
* they also have Private Use Area mappings.
*/
/* Basic Latin */
ALIAS("A.c2sc", "uni1D00"),
ALIAS("B.c2sc", "uni0299"),
ALIAS("C.c2sc", "uni1D04"),
ALIAS("D.c2sc", "uni1D05"),
ALIAS("E.c2sc", "uni1D07"),
ALIAS("F.c2sc", "uniA730"),
ALIAS("G.c2sc", "uni0262"),
ALIAS("H.c2sc", "uni029C"),
ALIAS("I.c2sc", "uni026A"),
ALIAS("J.c2sc", "uni1D0A"),
ALIAS("K.c2sc", "uni1D0B"),
ALIAS("L.c2sc", "uni029F"),
ALIAS("M.c2sc", "uni1D0D"),
ALIAS("N.c2sc", "uni0274"),
ALIAS("O.c2sc", "uni1D0F"),
ALIAS("P.c2sc", "uni1D18"),
ALIAS("Q.c2sc", "uniA7AF"),
ALIAS("R.c2sc", "uni0280"),
ALIAS("S.c2sc", "uniA731"),
ALIAS("T.c2sc", "uni1D1B"),
ALIAS("U.c2sc", "uni1D1C"),
ALIAS("V.c2sc", "uni1D20"),
ALIAS("W.c2sc", "uni1D21"),
{"\00\00\21\12\04\12\21\00\00", 0xf1c0, "X.c2sc" },
ALIAS("Y.c2sc", "uni028F"),
ALIAS("Z.c2sc", "uni1D22"),
{"\10\04\02\00\00\00\00\00\00", 0x0060, "grave" },
ALIAS("a.sc", "A.c2sc"),
ALIAS("b.sc", "B.c2sc"),
ALIAS("c.sc", "C.c2sc"),
ALIAS("d.sc", "D.c2sc"),
ALIAS("e.sc", "E.c2sc"),
ALIAS("f.sc", "F.c2sc"),
ALIAS("g.sc", "G.c2sc"),
ALIAS("h.sc", "H.c2sc"),
ALIAS("i.sc", "I.c2sc"),
ALIAS("j.sc", "J.c2sc"),
ALIAS("k.sc", "K.c2sc"),
ALIAS("l.sc", "L.c2sc"),
ALIAS("m.sc", "M.c2sc"),
ALIAS("n.sc", "N.c2sc"),
ALIAS("o.sc", "O.c2sc"),
ALIAS("p.sc", "P.c2sc"),
ALIAS("q.sc", "Q.c2sc"),
ALIAS("r.sc", "R.c2sc"),
ALIAS("s.sc", "S.c2sc"),
ALIAS("t.sc", "T.c2sc"),
ALIAS("u.sc", "U.c2sc"),
ALIAS("v.sc", "V.c2sc"),
ALIAS("w.sc", "W.c2sc"),
ALIAS("x.sc", "X.c2sc"),
ALIAS("y.sc", "Y.c2sc"),
ALIAS("z.sc", "Z.c2sc"),
{"\04\04\04\04\04\04\04\00\00", 0x007c, "bar" },
/* Latin-1 supplement */
{"\00\00\00\00\00\00\00\00\00", U(00A0) }, /* non-breaking space */
{"\00\00\04\00\04\04\04\04\04", 0x00a1, "exclamdown" },
{"\00\04\17\24\24\24\17\04\00", 0x00a2, "cent" },
{"\21\12\37\04\37\04\04\00\00", 0x00a5, "yen" },
{"\12\00\00\00\00\00\00\00\00", 0x00a8, "dieresis" },
{"\16\21\25\33\31\33\25\21\16", 0x00a9, "copyright" },
{"\16\01\17\21\17\00\37\00\00", 0x00aa, "ordfeminine" },
{"\00\00\00\11\22\11\00\00\00", 0x00ab, "guillemotleft" },
{"\00\00\37\01\01\00\00\00\00", 0x00ac, "logicalnot" },
{"\00\00\00\16\00\00\00\00\00", U(00AD) }, /* soft hyphen */
{"\16\21\35\33\33\35\33\21\16", 0x00ae, "registered" },
{"\16\00\00\00\00\00\00\00\00", 0x00af, "macron" },
{"\04\04\37\04\04\00\37\00\00", 0x00b1, "plusminus" },
{"\14\02\04\10\16\00\00\00\00", 0x00b2, "twosuperior" },
{"\14\02\14\02\14\00\00\00\00", 0x00b3, "threesuperior" },
{"\02\04\10\00\00\00\00\00\00", 0x00b4, "acute" },
{"\00\00\22\22\22\22\35\20\20", 0x00b5, "mu" },
{"\15\25\25\15\05\05\05\00\00", 0x00b6, "paragraph" },
{"\00\00\00\04\00\00\00\00\00", 0x00b7, "periodcentered" },
{"\00\00\00\00\00\00\04\02\04", 0x00b8, "cedilla" },
{"\04\14\04\04\16\00\00\00\00", 0x00b9, "onesuperior" },
{"\16\21\21\21\16\00\37\00\00", 0x00ba, "ordmasculine" },
{"\00\00\00\22\11\22\00\00\00", 0x00bb, "guillemotright" },
{"\00\00\04\00\04\04\10\21\16", 0x00bf, "questiondown" },
{"\10\04\16\21\37\21\21\00\00", 0x00c0, "Agrave" },
{"\02\04\16\21\37\21\21\00\00", 0x00c1, "Aacute" },
{"\04\12\16\21\37\21\21\00\00", 0x00c2, "Acircumflex" },
{"\05\12\16\21\37\21\21\00\00", 0x00c3, "Atilde" },
{"\17\24\24\26\34\24\27\00\00", 0x00c6, "AE" },
ALIAS("AE.c2sc", "uni1D01"),
{"\16\21\20\20\20\21\16\04\10", 0x00c7, "Ccedilla" },
{"\00\00\16\21\20\21\16\04\10", 0xf190, "Ccedilla.c2sc" },
{"\10\04\37\20\36\20\37\00\00", 0x00c8, "Egrave" },
{"\04\12\37\20\36\20\37\00\00", 0x00ca, "Ecircumflex" },
{"\12\00\37\20\36\20\37\00\00", 0x00cb, "Edieresis" },
{"\10\04\00\16\04\04\16\00\00", 0x00cc, "Igrave" },
{"\02\04\00\16\04\04\16\00\00", 0x00cd, "Iacute" },
{"\04\12\00\16\04\04\16\00\00", 0x00ce, "Icircumflex" },
{"\12\00\16\04\04\04\16\00\00", 0x00cf, "Idieresis" },
{"\16\11\11\35\11\11\16\00\00", 0x00d0, "Eth" },
ALIAS("Eth.c2sc", "uni1D06"),
{"\05\12\00\31\25\23\21\00\00", 0x00d1, "Ntilde" },
{"\10\04\16\21\21\21\16\00\00", 0x00d2, "Ograve" },
{"\02\04\16\21\21\21\16\00\00", 0x00d3, "Oacute" },
{"\04\12\16\21\21\21\16\00\00", 0x00d4, "Ocircumflex" },
{"\05\12\16\21\21\21\16\00\00", 0x00d5, "Otilde" },
{"\00\21\12\04\12\21\00\00\00", 0x00d7, "multiply" },
{"\15\22\25\25\25\11\26\00\00", 0x00d8, "Oslash" },
ALIAS("Oslash.c2sc", "oslash"),
{"\10\04\21\21\21\21\16\00\00", 0x00d9, "Ugrave" },
{"\02\04\21\21\21\21\16\00\00", 0x00da, "Uacute" },
{"\04\12\00\21\21\21\16\00\00", 0x00db, "Ucircumflex" },
{"\02\04\21\12\04\04\04\00\00", 0x00dd, "Yacute" },
{"\20\36\21\21\36\20\20\00\00", 0x00de, "Thorn" },
{"\00\00\20\36\21\36\20\00\00", 0xf1c2, "Thorn.c2sc" },
ALIAS("germandbls.sc", "uni1E9E.c2sc"),
ALIAS("agrave.sc", "Agrave"),
{"\02\04\16\01\17\21\17\00\00", 0x00e1, "aacute" },
ALIAS("aacute.sc", "Aacute"),
ALIAS("acircumflex.sc", "Acircumflex"),
{"\05\12\16\01\17\21\17\00\00", 0x00e3, "atilde" },
ALIAS("atilde.sc", "Atilde"),
ALIAS("adieresis.sc", "Adieresis"),
ALIAS("aring.sc", "Aring"),
{"\00\00\12\05\17\24\16\00\00", 0x00e6, "ae" },
ALIAS("ae.sc", "AE.c2sc"),
ALIAS("ccedilla.sc", "Ccedilla.c2sc"),
ALIAS("egrave.sc", "Egrave"),
ALIAS("eacute.sc", "Eacute"),
ALIAS("ecircumflex.sc", "Ecircumflex"),
ALIAS("edieresis.sc", "Edieresis"),
ALIAS("igrave.sc", "Igrave"),
{"\02\04\00\14\04\04\16\00\00", 0x00ed, "iacute" },
ALIAS("iacute.sc", "Iacute"),
ALIAS("idieresis.sc", "Idieresis"),
{"\32\04\12\01\17\21\16\00\00", 0x00f0, "eth" },
ALIAS("eth.sc", "Eth.c2sc"),
{"\05\12\36\21\21\21\21\00\00", 0x00f1, "ntilde" },
ALIAS("ntilde.sc", "Ntilde"),
ALIAS("ograve.sc", "Ograve"),
{"\02\04\00\16\21\21\16\00\00", 0x00f3, "oacute" },
ALIAS("oacute.sc", "Oacute"),
{"\04\12\00\16\21\21\16\00\00", 0x00f4, "ocircumflex" },
ALIAS("ocircumflex.sc", "Ocircumflex"),
{"\05\12\00\16\21\21\16\00\00", 0x00f5, "otilde" },
ALIAS("otilde.sc", "Otilde"),
ALIAS("odieresis.sc", "Odieresis"),
{"\00\00\15\22\25\11\26\00\00", 0x00f8, "oslash" },
ALIAS("ugrave.sc", "Ugrave"),
{"\02\04\21\21\21\21\17\00\00", 0x00fa, "uacute" },
ALIAS("uacute.sc", "Uacute"),
ALIAS("ucircumflex.sc", "Ucircumflex"),
ALIAS("udieresis.sc", "Udieresis"),
{"\02\04\21\21\21\21\17\01\16", 0x00fd, "yacute" },
ALIAS("yacute.sc", "Yacute"),
{"\20\20\36\21\21\21\36\20\20", 0x00fe, "thorn" },
ALIAS("thorn.sc", "Thorn.c2sc"),
{"\12\00\21\21\21\21\17\01\16", 0x00ff, "ydieresis" },
ALIAS("ydieresis.sc", "Ydieresis"),
/* Latin extended-A */
{"\16\00\16\21\37\21\21\00\00", 0x0100, "Amacron" },
{"\16\00\16\01\17\21\17\00\00", 0x0101, "amacron" },
ALIAS("amacron.sc", "Amacron"),
{"\04\12\21\21\37\21\21\02\01", 0x0104, "Aogonek" },
{"\00\00\04\12\21\37\21\02\01", 0xf191, "Aogonek.c2sc" },
{"\00\00\16\01\17\21\17\02\01", 0x0105, "aogonek" },
ALIAS("aogonek.sc", "Aogonek.c2sc"),
{"\02\04\16\21\20\21\16\00\00", 0x0106, "Cacute" },
{"\02\04\17\20\20\20\17\00\00", 0x0107, "cacute" },
ALIAS("cacute.sc", "Cacute"),
{"\04\12\16\21\20\21\16\00\00", 0x0108, "Ccircumflex" },
{"\04\12\17\20\20\20\17\00\00", 0x0109, "ccircumflex" },
ALIAS("ccircumflex.sc", "Ccircumflex"),
{"\04\00\16\21\20\21\16\00\00", 0x010a, "Cdotaccent" },
{"\04\00\17\20\20\20\17\00\00", 0x010b, "cdotaccent" },
ALIAS("cdotaccent.sc", "Cdotaccent"),
{"\12\04\16\21\20\21\16\00\00", 0x010c, "Ccaron" },
{"\12\04\17\20\20\20\17\00\00", 0x010d, "ccaron" },
ALIAS("ccaron.sc", "Ccaron"),
{"\12\04\36\21\21\21\36\00\00", 0x010e, "Dcaron" },
{"\05\05\14\24\24\24\14\00\00", 0x010f, "dcaron" },
ALIAS("dcaron.sc", "Dcaron"),
{"\16\11\11\35\11\11\16\00\00", 0x0110, "Dcroat" },
{"\00\00\16\11\35\11\16\00\00", 0xf192, "Dcroat.c2sc" },
{"\02\07\02\16\22\22\16\00\00", 0x0111, "dcroat" },
ALIAS("dcroat.sc", "Dcroat.c2sc"),
{"\16\00\37\20\36\20\37\00\00", 0x0112, "Emacron" },
{"\16\00\16\21\37\20\16\00\00", 0x0113, "emacron" },
ALIAS("emacron.sc", "Emacron"),
{"\04\00\37\20\36\20\37\00\00", 0x0116, "Edotaccent" },
{"\04\00\16\21\37\20\16\00\00", 0x0117, "edotaccent" },
ALIAS("edotaccent.sc", "Edotaccent"),
{"\37\20\20\36\20\20\37\02\01", 0x0118, "Eogonek" },
{"\00\00\37\20\36\20\37\02\01", 0xf193, "Eogonek.c2sc" },
{"\00\00\16\21\37\20\16\02\01", 0x0119, "eogonek" },
ALIAS("eogonek.sc", "Eogonek.c2sc"),
{"\12\04\37\20\36\20\37\00\00", 0x011a, "Ecaron" },
{"\12\04\16\21\37\20\16\00\00", 0x011b, "ecaron" },
ALIAS("ecaron.sc", "Ecaron"),
{"\04\12\17\20\23\21\17\00\00", 0x011c, "Gcircumflex" },
{"\04\12\17\21\21\21\17\01\16", 0x011d, "gcircumflex" },
ALIAS("gcircumflex.sc", "Gcircumflex"),
{"\04\00\17\20\23\21\17\00\00", 0x0120, "Gdotaccent" },
{"\04\00\17\21\21\21\17\01\16", 0x0121, "gdotaccent" },
ALIAS("gdotaccent.sc", "Gdotaccent"),
{"\21\37\21\37\21\21\21\00\00", 0x0126, "Hbar" },
{"\00\00\21\37\21\37\21\00\00", 0xf194, "Hbar.c2sc" },
{"\10\34\10\16\11\11\11\00\00", 0x0127, "hbar" },
ALIAS("hbar.sc", "Hbar.c2sc"),
{"\05\12\00\16\04\04\16\00\00", 0x0128, "Itilde" },
{"\05\12\00\14\04\04\16\00\00", 0x0129, "itilde" },
ALIAS("itilde.sc", "Itilde"),
{"\16\00\16\04\04\04\16\00\00", 0x012a, "Imacron" },
{"\16\00\14\04\04\04\16\00\00", 0x012b, "imacron" },
ALIAS("imacron.sc", "Imacron"),
{"\16\04\04\04\04\04\16\04\02", 0x012e, "Iogonek" },
{"\00\00\16\04\04\04\16\04\02", 0xf195, "Iogonek.c2sc" },
{"\04\00\14\04\04\04\16\04\02", 0x012f, "iogonek" },
ALIAS("iogonek.sc", "Iogonek.c2sc"),
{"\04\00\16\04\04\04\16\00\00", 0x0130, "Idotaccent" },
{"\00\00\14\04\04\04\16\00\00", 0x0131, "dotlessi" },
ALIAS("dotlessi.sc", "I.c2sc"),
{"\21\21\21\21\21\25\22\00\00", 0x0132, "IJ" },
{"\00\00\21\21\21\25\22\00\00", 0xf196, "IJ.c2sc" },
{"\11\00\31\11\11\11\35\01\02", 0x0133, "ij" },
ALIAS("ij.sc", "IJ.c2sc"),
{"\02\05\00\02\02\22\14\00\00", 0x0134, "Jcircumflex" },
{"\04\12\00\04\04\04\04\04\10", 0x0135, "jcircumflex" },
ALIAS("jcircumflex.sc", "Jcircumflex"),
{"\00\00\21\22\34\22\21\00\00", 0x0138, "kgreenlandic" },
{"\22\22\24\20\20\20\37\00\00", 0x013d, "Lcaron" },
{"\00\00\22\22\24\20\37\00\00", 0xf197, "Lcaron.c2sc" },
{"\31\11\12\10\10\10\34\00\00", 0x013e, "lcaron" },
ALIAS("lcaron.sc", "Lcaron.c2sc"),
{"\20\20\20\22\20\20\37\00\00", 0x013f, "Ldot" },
{"\00\00\20\22\20\20\37\00\00", 0xf198, "Ldot.c2sc" },
{"\30\10\10\11\10\10\34\00\00", 0x0140, "ldot" },
ALIAS("ldot.sc", "Ldot.c2sc"),
{"\10\10\14\30\10\10\17\00\00", 0x0141, "Lslash" },
{"\00\00\10\14\30\10\17\00\00", 0xf199, "Lslash.c2sc" },
{"\14\04\06\14\04\04\16\00\00", 0x0142, "lslash" },
ALIAS("lslash.sc", "Lslash.c2sc"),
{"\02\04\21\31\25\23\21\00\00", 0x0143, "Nacute" },
{"\02\04\36\21\21\21\21\00\00", 0x0144, "nacute" },
ALIAS("nacute.sc", "Nacute"),
{"\12\04\21\31\25\23\21\00\00", 0x0147, "Ncaron" },
{"\12\04\36\21\21\21\21\00\00", 0x0148, "ncaron" },
ALIAS("ncaron.sc", "Ncaron"),
{"\20\20\26\05\05\05\05\00\00", 0x0149, "napostrophe" },
{"\21\21\31\25\23\21\21\01\16", 0x014a, "Eng" },
{"\00\00\21\31\25\23\21\01\16", 0xf19a, "Eng.c2sc" },
{"\00\00\36\21\21\21\21\01\16", 0x014b, "eng" },
ALIAS("eng.sc", "Eng.c2sc"),
{"\16\00\16\21\21\21\16\00\00", 0x014c, "Omacron" },
{"\00\16\00\16\21\21\16\00\00", 0x014d, "omacron" },
ALIAS("omacron.sc", "Omacron"),
{"\17\24\24\26\24\24\17\00\00", 0x0152, "OE" },
ALIAS("OE.c2sc", "uni0276"),
{"\00\00\12\25\27\24\13\00\00", 0x0153, "oe" },
ALIAS("oe.sc", "OE.c2sc"),
{"\02\04\36\21\36\22\21\00\00", 0x0154, "Racute" },
{"\01\02\13\14\10\10\10\00\00", 0x0155, "racute" },
ALIAS("racute.sc", "Racute"),
{"\12\04\36\21\36\22\21\00\00", 0x0158, "Rcaron" },
{"\05\02\13\14\10\10\10\00\00", 0x0159, "rcaron" },
ALIAS("rcaron.sc", "Rcaron"),
{"\02\04\17\20\16\01\36\00\00", 0x015b, "sacute" },
{"\16\21\20\16\01\21\16\04\10", 0x015e, "Scedilla" },
ALIAS("Scedilla.c2sc", "scedilla"),
{"\00\00\17\20\16\01\36\04\10", 0x015f, "scedilla" },
{"\12\04\17\20\16\01\36\00\00", 0x0161, "scaron" },
{"\37\04\04\04\04\04\04\02\04", U(0162) }, /* Tcedilla */
{"\00\00\37\04\04\04\04\02\04", 0xf19b, "uni0162.c2sc" },
{"\04\04\16\04\04\05\02\02\04", U(0163) }, /* tcedilla */
ALIAS("uni0163.sc", "uni0162.c2sc"),
{"\12\04\37\04\04\04\04\00\00", 0x0164, "Tcaron" },
{"\11\11\34\10\10\10\04\00\00", 0x0165, "tcaron" },
ALIAS("tcaron.sc", "Tcaron"),
{"\16\00\21\21\21\21\16\00\00", 0x016a, "Umacron" },
{"\00\16\00\21\21\21\17\00\00", 0x016b, "umacron" },
ALIAS("umacron.sc", "Umacron"),
{"\04\00\21\21\21\21\16\00\00", 0x016e, "Uring" },
{"\04\00\21\21\21\21\17\00\00", 0x016f, "uring" },
{"\21\21\21\21\21\21\16\04\02", 0x0172, "Uogonek" },
{"\00\00\21\21\21\21\16\04\02", 0xf19c, "Uogonek.c2sc" },
{"\00\00\21\21\21\21\17\02\01", 0x0173, "uogonek" },
ALIAS("uogonek.sc", "Uogonek.c2sc"),
{"\04\12\00\21\25\25\12\00\00", 0x0174, "Wcircumflex" },
{"\04\12\00\21\21\25\12\00\00", 0x0175, "wcircumflex" },
ALIAS("wcircumflex.sc", "Wcircumflex"),
{"\04\12\00\21\12\04\04\00\00", 0x0176, "Ycircumflex" },
{"\04\12\00\21\21\21\17\01\16", 0x0177, "ycircumflex" },
ALIAS("ycircumflex.sc", "Ycircumflex"),
{"\12\00\21\12\04\04\04\00\00", 0x0178, "Ydieresis" },
{"\02\04\37\01\16\20\37\00\00", 0x0179, "Zacute" },
{"\02\04\37\02\04\10\37\00\00", 0x017a, "zacute" },
ALIAS("zacute.sc", "Zacute"),
{"\04\00\37\01\16\20\37\00\00", 0x017b, "Zdotaccent" },
{"\04\00\37\02\04\10\37\00\00", 0x017c, "zdotaccent" },
ALIAS("zdotaccent.sc", "Zdotaccent"),
{"\12\04\37\01\16\20\37\00\00", 0x017d, "Zcaron" },
{"\12\04\37\02\04\10\37\00\00", 0x017e, "zcaron" },
ALIAS("zcaron.sc", "Zcaron"),
{"\02\04\04\04\04\04\04\00\00", 0x017f, "longs" },
ALIAS("longs.sc", "S.c2sc"),
/* Latin extended-B */
{"\03\02\17\20\20\20\17\00\00", U(0188) }, /* Hooktop C */
{"\37\01\01\17\01\01\37\00\00", U(018E) }, /* reversed E */
ALIAS("uni018E.c2sc", "uni2C7B"),
{"\16\21\01\37\21\21\16\00\00", U(018F) }, /* Schwa */
ALIAS("uni018F.c2sc", "uni0259"),
{"\02\04\04\16\04\04\04\04\10", 0x0192, "florin" },
{"\06\10\11\12\14\12\11\00\00", U(0199) }, /* Hooktop K */
{"\30\04\16\04\12\12\21\00\00", U(019B) }, /* Barred lambda */
{"\00\00\36\21\21\21\21\01\01", U(019E) }, /* N, right leg */
{"\14\20\36\21\21\21\36\20\20", U(01A5) }, /* Hooktop P */
{"\16\21\01\16\20\21\16\00\00", U(01A7) }, /* Tone 2 (reversed S) */
ALIAS("uni01A7.c2sc", "uni01A8"),
{"\00\00\36\01\16\20\17\00\00", U(01A8) }, /* tone 2 (reversed s) */
{"\04\04\16\04\04\04\02\14\00", U(01AB) }, /* Left-hook T */
{"\02\04\16\04\04\04\02\00\00", U(01AD) }, /* Hooktop T */
{"\16\21\05\02\15\20\37\00\00", U(01BB) }, /* Barred two */
{"\04\04\04\04\04\04\04\04\04", U(01C0) }, /* Pipe */
{"\12\12\12\12\12\12\12\12\12", U(01C1) }, /* Double pipe */
{"\04\04\04\37\04\37\04\04\04", U(01C2) }, /* Double-barred pipe */
{"\04\04\04\04\04\00\04\00\00", U(01C3) }, /* Exclamation point */
{"\12\04\16\21\37\21\21\00\00", U(01CD) }, /* Acaron */
{"\12\04\16\01\17\21\17\00\00", U(01CE) }, /* acaron */
ALIAS("uni01CE.sc", "uni01CD"),
{"\12\04\00\16\04\04\16\00\00", U(01CF) }, /* Icaron */
{"\12\04\00\14\04\04\16\00\00", U(01D0) }, /* icaron */
ALIAS("uni01D0.sc", "uni01CF"),
{"\12\04\16\21\21\21\16\00\00", U(01D1) }, /* Ocaron */
{"\12\04\00\16\21\21\16\00\00", U(01D2) }, /* ocaron */
ALIAS("uni01D2.sc", "uni01D1"),
{"\12\04\21\21\21\21\16\00\00", U(01D3) }, /* Ucaron */
{"\12\04\21\21\21\21\17\00\00", U(01D4) }, /* ucaron */
ALIAS("uni01D4.sc", "uni01D3"),
{"\16\00\12\00\21\21\16\00\00", U(01D5) }, /* Udieresismacron */
{"\16\00\12\00\21\21\17\00\00", U(01D6) }, /* udieresismacron */
ALIAS("uni01D6.sc", "uni01D5"),
{"\02\04\21\00\21\21\16\00\00", U(01D7) }, /* Udieresisacute */
{"\02\04\21\00\21\21\17\00\00", U(01D8) }, /* udieresisacute */
ALIAS("uni01D8.sc", "uni01D7"),
{"\12\04\21\00\21\21\16\00\00", U(01D9) }, /* Udieresiscaron */
{"\12\04\21\00\21\21\17\00\00", U(01DA) }, /* Udieresiscaron */
ALIAS("uni01DA.sc", "uni01D9"),
{"\10\04\21\00\21\21\16\00\00", U(01DB) }, /* Udieresisgrave */
{"\10\04\21\00\21\21\17\00\00", U(01DC) }, /* Udieresisgrave */
ALIAS("uni01DC.sc", "uni01DB"),
{"\00\00\16\01\37\21\16\00\00", U(01DD) }, /* turned e */
ALIAS("uni01DD.sc", "uni018E.c2sc"),
{"\16\00\17\24\26\34\27\00\00", U(01E2) }, /* AEmacron */
{"\16\00\12\05\17\24\16\00\00", U(01E3) }, /* aemacron */
ALIAS("uni01E3.sc", "uni01E2"),
{"\12\04\00\04\04\04\04\04\10", U(01F0) }, /* J wedge */
{"\10\04\21\31\25\23\21\00\00", U(01F8) }, /* Ngrave */
{"\10\04\36\21\21\21\21\00\00", U(01F9) }, /* ngrave */
ALIAS("uni01F9.sc", "uni01F8"),
{"\16\00\21\12\04\04\04\00\00", U(0232) }, /* Ymacron */
{"\16\00\21\21\21\21\17\01\16", U(0233) }, /* ymacron */
ALIAS("uni0233.sc", "uni0232"),
{"\00\00\04\04\04\04\04\04\10", U(0237) }, /* dotlessj */
{"\00\00\17\20\16\01\36\04\03", U(023F) }, /* s with swash tail */
{"\00\00\37\02\04\10\30\04\03", U(0240) }, /* z with swash tail */
ALIAS("uni0240.sc", "uni2C7E.c2sc"),
{"\04\04\12\12\21\21\21\00\00", U(0245) }, /* turned V */
ALIAS("uni0245.c2sc", "uni028C"),
/* IPA extensions */
{"\00\00\36\21\36\20\16\00\00", U(0250) }, /* Turned a */
ALIAS("uni0250.sc", "uni2C6F.c2sc"),
{"\00\00\17\21\21\23\15\00\00", U(0251) }, /* Script a */
{"\00\00\26\31\21\21\36\00\00", U(0252) }, /* Turned script a */
{"\14\20\36\21\21\21\36\00\00", U(0253) }, /* Hooktop a */
{"\00\00\36\01\01\01\36\00\00", U(0254) }, /* Open o */
{"\00\00\17\20\22\25\16\04\00", U(0255) }, /* Curly-tail c */
{"\02\02\16\22\22\22\16\02\01", U(0256) }, /* Right-tail d */
{"\01\02\16\22\22\22\16\00\00", U(0257) }, /* Hooktop d */
{"\00\00\16\21\37\01\16\00\00", U(0258) }, /* Reversed e */
{"\00\00\16\01\37\21\16\00\00", U(0259) }, /* Schwa */
{"\00\00\30\04\35\26\10\00\00", U(025A) }, /* Right-hook schwa */
{"\00\00\17\20\16\20\17\00\00", U(025B) }, /* epsilon */
{"\00\00\36\01\16\01\36\00\00", U(025C) }, /* Reversed epsilon */
ALIAS("uni025C.sc", "uniA7AB.c2sc"),
{"\00\00\30\04\31\06\30\00\00", U(025D) }, /* Right-hook rev epsilon */
{"\00\00\16\21\26\21\16\00\00", U(025E) }, /* Closed reversed epsilon */
{"\00\00\04\04\04\16\04\04\10", U(025F) }, /* Barred dotless j */
{"\01\02\16\22\22\22\16\02\14", U(0260) }, /* Hooktop g */
{"\00\00\17\21\21\21\17\01\16", U(0261) }, /* Opentail g */
{"\00\00\17\20\23\21\17\00\00", U(0262) }, /* Small capital G */
{"\00\00\21\12\12\04\12\12\04", U(0263) }, /* gamma */
{"\00\00\33\04\12\12\04\00\00", U(0264) }, /* ram's horns */
{"\00\00\21\21\21\21\17\01\01", U(0265) }, /* Turned h */
{"\14\20\36\21\21\21\21\00\00", U(0266) }, /* Hooktop h */
ALIAS("uni0266.sc", "uniA7AA.c2sc"),
{"\14\20\36\21\21\21\21\01\06", U(0267) }, /* Hooktop heng */
{"\04\00\14\04\16\04\16\00\00", U(0268) }, /* Barred i */
{"\00\00\14\04\04\04\02\00\00", U(0269) }, /* iota */
{"\00\00\16\04\04\04\16\00\00", U(026A) }, /* Small capital I */
ALIAS("uni026A.sc", "uniA792.c2sc"),
{"\14\04\15\26\04\04\16\00\00", U(026B) }, /* l with tilde */
{"\14\04\14\25\16\04\16\00\00", U(026C) }, /* Belted L */
ALIAS("uni026C.sc", "uniA7AD.c2sc"),
{"\14\04\04\04\04\04\04\04\02", U(026D) }, /* Right-tail L */
{"\30\10\17\11\12\11\35\01\06", U(026E) }, /* l-ezh ligature */
{"\00\00\25\25\25\25\13\00\00", U(026F) }, /* Turned m */
{"\00\00\25\25\25\25\13\01\01", U(0270) }, /* Turned m, right tail */
{"\00\00\32\25\25\25\25\01\02", U(0271) }, /* Left-tail m (at right) */
{"\00\00\16\11\11\11\11\10\20", U(0272) }, /* Left-tail n (at left) */
{"\00\00\34\22\22\22\22\02\01", U(0273) }, /* Right-tail n */
{"\00\00\21\31\25\23\21\00\00", U(0274) }, /* Small capital N */
{"\00\00\16\21\37\21\16\00\00", U(0275) }, /* Barred o */
{"\00\00\17\24\27\24\17\00\00", U(0276) }, /* Small capital O-E ligature */
{"\00\00\16\21\25\25\12\00\00", U(0277) }, /* Closed omega */
{"\04\04\16\25\25\25\16\04\04", U(0278) }, /* phi */
{"\00\00\02\02\02\06\32\00\00", U(0279) }, /* Turned r */
{"\02\02\02\02\02\06\32\00\00", U(027A) }, /* Turned long-leg r */
{"\00\00\02\02\02\06\32\02\01", U(027B) }, /* Turned r, right tail */
{"\00\00\13\14\10\10\10\10\10", U(027C) }, /* Long-leg r */
{"\00\00\13\14\10\10\10\10\04", U(027D) }, /* Right-tail r */
{"\00\00\06\11\10\10\10\00\00", U(027E) }, /* Fish-hook r */
{"\00\00\36\21\36\22\21\00\00", U(0280) }, /* Small capital R */
{"\00\00\21\22\36\21\36\00\00", U(0281) }, /* Inverted small capital R */
{"\00\00\17\20\16\01\36\20\10", U(0282) }, /* Right-tail s (at left) */
{"\02\04\04\04\04\04\04\04\10", U(0283) }, /* esh */
{"\02\04\04\04\04\16\04\04\10", U(0284) }, /* Hooktop barred dotless j */
{"\02\04\04\04\04\16\24\24\10", U(0286) }, /* Curly-tail esh */
{"\00\00\10\04\04\04\16\04\04", U(0287) }, /* Turned t */
ALIAS("uni0287.sc", "uniA7B1.c2sc"),
{"\04\04\16\04\04\04\04\04\02", U(0288) }, /* Right-tail t */
{"\00\00\12\37\12\12\06\00\00", U(0289) }, /* Barred u */
{"\00\00\33\12\21\21\16\00\00", U(028A) }, /* upsilon */
{"\00\00\32\11\11\12\14\00\00", U(028B) }, /* Cursive v */
{"\00\00\04\12\12\21\21\00\00", U(028C) }, /* Turned v */
{"\00\00\12\25\25\21\21\00\00", U(028D) }, /* Turned w */
{"\16\20\34\22\21\21\21\00\00", U(028E) }, /* Turned y */
{"\00\00\21\12\04\04\04\00\00", U(028F) }, /* Small capital Y */
{"\00\00\36\04\10\20\36\02\01", U(0290) }, /* Right-tail z */
{"\00\00\37\02\04\10\36\05\02", U(0291) }, /* Curly-tail z */
{"\00\00\37\02\04\16\01\21\16", U(0292) }, /* ezh; Tailed z */
{"\00\00\37\02\04\02\11\25\16", U(0293) }, /* Curly-tail ezh */
{"\16\21\02\04\04\04\04\00\00", U(0294) }, /* Glottal stop */
{"\16\21\10\04\04\04\04\00\00", U(0295) }, /* Reversed glottal stop */
{"\04\04\04\04\02\21\16\00\00", U(0296) }, /* Inverted glottal stop */
{"\16\21\20\20\20\20\20\21\16", U(0297) }, /* Stretched c */
{"\16\21\21\25\21\21\16\00\00", U(0298) }, /* Bull's eye */
{"\00\00\36\21\36\21\36\00\00", U(0299) }, /* Small capital B */
{"\00\00\16\21\15\21\16\00\00", U(029A) }, /* Closed epsilon */
{"\01\02\16\20\26\22\16\00\00", U(029B) }, /* Hooktop small capital G */
{"\00\00\21\21\37\21\21\00\00", U(029C) }, /* Small capital H */
{"\04\00\04\04\04\16\24\24\10", U(029D) }, /* Curly-tail j */
ALIAS("uni029D.sc", "uniA7B2.c2sc"),
{"\00\00\22\12\06\12\22\02\02", U(029E) }, /* Turned k */
ALIAS("uni029E.sc", "uniA7B0.c2sc"),
{"\00\00\20\20\20\20\37\00\00", U(029F) }, /* Small capital L */
{"\06\01\17\21\21\21\17\01\01", U(02A0) }, /* Hooktop q */
{"\16\21\02\04\37\04\04\00\00", U(02A1) }, /* Barred glottal stop */
{"\16\21\10\04\37\04\04\00\00", U(02A2) }, /* Barred reversed glottal stop */
{"\04\04\17\25\26\26\17\00\00", U(02A3) }, /* dz ligature */
{"\04\04\17\25\26\25\15\01\06", U(02A4) }, /* dezh ligature */
{"\04\04\17\25\26\26\17\05\02", U(02A5) }, /* dz-curl ligature */
{"\20\20\37\24\22\21\16\00\00", U(02A6) }, /* ts ligature */
{"\11\12\36\12\12\12\06\02\04", U(02A7) }, /* tesh ligature */
{"\20\30\23\24\24\24\16\05\02", U(02A8) }, /* tc-curl ligature */
{"\10\20\20\36\25\25\25\01\06", U(02A9) }, /* feng ligature */
{"\30\10\13\14\12\11\36\00\00", U(02AA) }, /* ls ligature */
{"\30\10\17\11\12\14\37\00\00", U(02AB) }, /* lz ligature */
{"\00\00\25\12\00\25\12\00\00", U(02AC) }, /* bilabial percussive */
{"\00\00\16\12\00\16\12\00\00", U(02AD) }, /* bidental percussive */
/* Spacing modifier letters */
{"\20\20\30\24\24\00\00\00\00", U(02B0) }, /* Superscript h */
{"\10\00\10\10\10\20\00\00\00", U(02B2) }, /* Superscript j */
{"\10\10\20\20\00\00\00\00\00", U(02B9) }, /* modifier letter prime */
{"\11\11\22\22\00\00\00\00\00", U(02BA) }, /* modifier double prime */
{"\04\04\10\00\00\00\00\00\00", U(02BC) }, /* Modifier apostrophe */
{"\04\12\00\00\00\00\00\00\00", 0x02c6, "circumflex" },
{"\12\04\00\00\00\00\00\00\00", 0x02c7, "caron" },
{"\04\04\04\00\00\00\00\00\00", U(02C8) }, /* Vertical stroke (superior) */
{"\00\00\00\00\00\00\04\04\04", U(02CC) }, /* Vertical stroke (inferior) */
{"\00\00\12\04\00\04\12\00\00", U(02D0) }, /* Length mark */
{"\00\00\12\04\00\00\00\00\00", U(02D1) }, /* Half-length mark */
{"\21\16\00\00\00\00\00\00\00", 0x02d8, "breve" },
{"\04\00\00\00\00\00\00\00\00", 0x02d9, "dotaccent" },
{"\04\12\04\00\00\00\00\00\00", 0x02da, "ring" },
{"\00\00\00\00\00\00\04\10\04", 0x02db, "ogonek" },
{"\05\12\00\00\00\00\00\00\00", 0x02dc, "tilde" },
{"\11\22\00\00\00\00\00\00\00", 0x02dd, "hungarumlaut" },
{"\24\10\24\24\10\00\00\00\00", U(02E0) }, /* Superscript gamma */
{"\30\10\10\10\34\00\00\00\00", U(02E1) }, /* Superscript l */
{"\00\00\14\10\30\00\00\00\00", U(02E2) }, /* Superscript s */
{"\00\00\24\10\24\00\00\00\00", U(02E3) }, /* Superscript x */
{"\10\24\20\10\10\00\00\00\00", U(02E4) }, /* Superscript reversed glottal stop */
{"\37\01\01\01\01\01\01\00\00", U(02E5) }, /* Extra-high tone letter */
{"\01\37\01\01\01\01\01\00\00", U(02E6) }, /* High tone letter */
{"\01\01\01\37\01\01\01\00\00", U(02E7) }, /* Mid tone letter */
{"\01\01\01\01\01\37\01\00\00", U(02E8) }, /* Low tone letter */
{"\01\01\01\01\01\01\37\00\00", U(02E9) }, /* Extra-low tone letter */
/* Greek and Coptic */
{"\01\01\01\01\01\21\16\00\00", U(037F), }, /* Yot */
{"\04\00\00\00\00\00\00\00\00", 0x0384, "tonos" },
{"\04\25\00\00\00\00\00\00\00", 0x0385, "dieresistonos" },
{"\22\25\05\05\07\05\05\00\00", 0x0386, "Alphatonos" },
{"\27\24\04\06\04\04\07\00\00", 0x0388, "Epsilontonos" },
{"\25\25\05\07\05\05\05\00\00", 0x0389, "Etatonos" },
{"\27\22\02\02\02\02\07\00\00", 0x038a, "Iotatonos" },
{"\22\25\05\05\05\05\02\00\00", 0x038c, "Omicrontonos" },
{"\25\25\05\02\02\02\02\00\00", 0x038e, "Upsilontonos" },
{"\22\25\05\05\05\02\07\00\00", 0x038f, "Omegatonos" },
{"\04\25\00\14\04\04\02\00\00", 0x0390, "iotadieresistonos" },
{"\04\12\21\21\37\21\21\00\00", 0x0391, "Alpha" },
{"\36\21\21\36\21\21\36\00\00", 0x0392, "Beta" },
{"\37\20\20\20\20\20\20\00\00", 0x0393, "Gamma" },
{"\04\04\12\12\21\21\37\00\00", U(0394) }, /* Delta */
{"\37\20\20\36\20\20\37\00\00", 0x0395, "Epsilon" },
{"\37\01\02\04\10\20\37\00\00", 0x0396, "Zeta" },
{"\21\21\21\37\21\21\21\00\00", 0x0397, "Eta" },
{"\16\21\21\37\21\21\16\00\00", 0x0398, "Theta" },
{"\16\04\04\04\04\04\16\00\00", 0x0399, "Iota" },
{"\21\22\24\30\24\22\21\00\00", 0x039a, "Kappa" },
{"\04\04\12\12\21\21\21\00\00", 0x039b, "Lambda" },
{"\21\33\25\25\21\21\21\00\00", 0x039c, "Mu" },
{"\21\21\31\25\23\21\21\00\00", 0x039d, "Nu" },
{"\37\00\00\16\00\00\37\00\00", 0x039e, "Xi" },
{"\16\21\21\21\21\21\16\00\00", 0x039f, "Omicron" },
{"\37\21\21\21\21\21\21\00\00", 0x03a0, "Pi" },
{"\36\21\21\36\20\20\20\00\00", 0x03a1, "Rho" },
{"\37\20\10\04\10\20\37\00\00", 0x03a3, "Sigma" },
{"\37\04\04\04\04\04\04\00\00", 0x03a4, "Tau" },
{"\21\21\12\04\04\04\04\00\00", 0x03a5, "Upsilon" },
{"\04\16\25\25\25\16\04\00\00", 0x03a6, "Phi" },
{"\21\21\12\04\12\21\21\00\00", 0x03a7, "Chi" },
{"\25\25\25\25\25\16\04\00\00", 0x03a8, "Psi" },
{"\16\21\21\21\21\12\33\00\00", U(03A9) }, /* Omega */
{"\12\00\16\04\04\04\16\00\00", 0x03aa, "Iotadieresis" },
{"\12\00\21\12\04\04\04\00\00", 0x03ab, "Upsilondieresis" },
{"\04\00\15\22\22\22\15\00\00", 0x03ac, "alphatonos" },
{"\04\00\17\20\16\20\17\00\00", 0x03ad, "epsilontonos" },
{"\04\00\36\21\21\21\21\01\01", 0x03ae, "etatonos" },
{"\04\00\14\04\04\04\02\00\00", 0x03af, "iotatonos" },
{"\04\25\00\22\21\21\16\00\00", 0x03b0, "upsilondieresistonos" },
{"\00\00\15\22\22\22\15\00\00", 0x03b1, "alpha" },
{"\16\21\21\36\21\21\36\20\20", 0x03b2, "beta" },
{"\00\00\21\21\12\12\04\04\04", 0x03b3, "gamma" },
{"\17\20\16\21\21\21\16\00\00", 0x03b4, "delta" },
{"\00\00\17\20\16\20\17\00\00", 0x03b5, "epsilon" },
{"\36\02\04\10\20\20\14\02\04", 0x03b6, "zeta" },
{"\00\00\36\21\21\21\21\01\01", 0x03b7, "eta" },
{"\14\22\22\36\22\22\14\00\00", 0x03b8, "theta" },
{"\00\00\14\04\04\04\02\00\00", 0x03b9, "iota" },
{"\00\00\11\12\14\12\11\00\00", 0x03ba, "kappa" },
{"\30\04\04\12\12\21\21\00\00", 0x03bb, "lambda" },
{"\00\00\22\22\22\22\35\20\20", U(03BC) }, /* mu */
{"\00\00\21\21\11\12\04\00\00", 0x03bd, "nu" },
{"\16\20\20\16\20\20\16\01\02", 0x03be, "xi" },
{"\00\00\16\21\21\21\16\00\00", 0x03bf, "omicron" },
{"\00\00\37\12\12\12\11\00\00", 0x03c0, "pi" },
{"\00\00\16\21\21\21\36\20\20", 0x03c1, "rho" },
{"\00\00\17\20\20\20\16\01\02", 0x03c2, "sigma1" },
{"\00\00\17\22\21\21\16\00\00", 0x03c3, "sigma" },
{"\00\00\37\04\04\04\02\00\00", 0x03c4, "tau" },
{"\00\00\22\21\21\21\16\00\00", 0x03c5, "upsilon" },
{"\00\00\26\25\25\25\16\04\04", 0x03c6, "phi" },
{"\00\00\21\11\12\04\12\22\21", 0x03c7, "chi" },
{"\00\00\25\25\25\25\16\04\04", 0x03c8, "psi" },
{"\00\00\12\21\25\25\12\00\00", 0x03c9, "omega" },
{"\12\00\14\04\04\04\02\00\00", 0x03ca, "iotadieresis" },
{"\12\00\22\21\21\21\16\00\00", 0x03cb, "upsilondieresis" },
{"\04\00\16\21\21\21\16\00\00", 0x03cc, "omicrontonos" },
{"\04\00\22\21\21\21\16\00\00", 0x03cd, "upsilontonos" },
{"\04\00\12\21\25\25\12\00\00", 0x03ce, "omegatonos" },
{"\04\04\16\25\25\25\16\04\04", 0x03d5, "phi1" },
{"\04\00\04\04\04\04\04\04\10", U(03F3) }, /* yot */
/* Cyrillic */
{"\10\04\37\20\36\20\37\00\00", U(0400) }, /* Ie grave */
{"\12\00\37\20\36\20\37\00\00", U(0401) }, /* Yo */
{"\36\10\10\16\11\11\11\01\02", U(0402) }, /* Dje */
{"\06\11\20\34\20\11\06\00\00", U(0404) }, /* Ye Ukrainian */
{"\16\21\20\16\01\21\16\00\00", U(0405) }, /* Dze */
{"\16\04\04\04\04\04\16\00\00", U(0406) }, /* dotted I */
{"\12\00\16\04\04\04\16\00\00", U(0407) }, /* Yi */
{"\01\01\01\01\01\21\16\00\00", U(0408) }, /* Je */
{"\14\24\24\27\25\25\27\00\00", U(0409) }, /* Lje */
{"\24\24\24\37\25\25\27\00\00", U(040A) }, /* Nje */
{"\36\10\10\16\11\11\11\00\00", U(040B) }, /* Tshe */
{"\25\21\21\37\01\01\37\00\00", U(040E) }, /* short U */
{"\21\21\21\21\21\21\37\04\00", U(040F) }, /* Dzhe */
{"\10\04\16\21\37\20\16\00\00", U(0450) }, /* ie grave */
{"\12\00\16\21\37\20\16\00\00", U(0451) }, /* yo */
{"\10\36\10\16\11\11\11\01\02", U(0452) }, /* dje */
{"\00\00\14\22\30\22\14\00\00", U(0454) }, /* ye Ukrainian */
{"\00\00\17\20\16\01\36\00\00", U(0455) }, /* dze */
{"\04\00\14\04\04\04\16\00\00", U(0456) }, /* dotted i */
{"\12\00\14\04\04\04\16\00\00", U(0457) }, /* yi */
{"\04\00\04\04\04\04\04\04\10", U(0458) }, /* je */
{"\00\00\14\24\26\25\26\00\00", U(0459) }, /* lje */
{"\00\00\24\24\36\25\26\00\00", U(045A) }, /* nje */
{"\10\36\10\16\11\11\11\00\00", U(045B) }, /* tshe */
{"\00\04\21\21\21\21\17\01\16", U(045E) }, /* short u */
{"\00\00\21\21\21\21\37\04\00", U(045F) }, /* dzhe */
{"\01\37\20\20\20\20\20\00\00", U(0490) }, /* Ghe with upturn */
{"\00\01\37\20\20\20\20\00\00", U(0491) }, /* ghe with upturn */
{"\17\10\10\36\10\10\10\00\00", U(0492) }, /* Ghe with stroke */
{"\00\00\17\10\36\10\10\00\00", U(0493) }, /* ghe with stroke */
#ifdef ARMENIAN
/* Armenian */
{"\21\21\21\21\25\22\15\00\00", U(0531) }, /* Ayb */
{"\16\21\21\20\37\20\20\00\00", U(0532) }, /* Ben */
{"\14\22\22\22\17\02\02\00\00", U(0533) }, /* Gim */
{"\14\22\22\02\03\02\02\00\00", U(0534) }, /* Da */
{"\20\20\37\20\21\21\16\00\00", U(0535) }, /* Ech */
{"\16\21\21\01\01\22\37\00\00", U(0536) }, /* Za */
{"\20\20\20\37\20\20\36\00\00", U(0537) }, /* Eh */
{"\16\21\21\20\20\20\37\00\00", U(0538) }, /* Et */
{"\16\21\21\23\25\25\22\00\00", U(0539) }, /* To */
{"\02\02\17\22\22\22\14\00\00", U(053A) }, /* Zhe */
{"\20\20\36\21\21\21\20\00\00", U(053B) }, /* Ini */
{"\20\20\20\20\20\20\37\00\00", U(053C) }, /* Liwn */
{"\20\20\35\25\25\25\22\00\00", U(053D) }, /* Xeh */
{"\37\16\21\21\21\21\16\00\00", U(053E) }, /* Ca */
{"\20\21\21\17\01\01\01\00\00", U(053F) }, /* Ken */
{"\02\01\03\14\20\14\03\00\00", U(0540) }, /* Ho */
{"\16\21\21\01\15\22\15\00\00", U(0541) }, /* Ja */
{"\14\22\22\02\02\02\03\00\00", U(0542) }, /* Ghad */
{"\01\32\04\12\12\21\37\00\00", U(0543) }, /* Cheh */
{"\23\22\22\22\22\22\14\00\00", U(0544) }, /* Men */
{"\16\21\01\36\01\21\16\00\00", U(0545) }, /* Yi */
{"\30\10\10\10\11\11\06\00\00", U(0546) }, /* Now */
{"\30\07\10\20\21\21\16\00\00", U(0547) }, /* Sha */
{"\16\21\21\21\21\21\21\00\00", U(0548) }, /* Vo */
{"\16\21\21\01\02\34\03\00\00", U(0549) }, /* Cha */
{"\16\25\25\05\05\01\01\00\00", U(054A) }, /* Peh */
{"\16\21\21\31\05\26\37\00\00", U(054B) }, /* Jheh */
{"\14\22\22\23\22\22\22\00\00", U(054C) }, /* Ra */
{"\21\21\21\21\21\21\16\00\00", U(054D) }, /* Seh */
{"\02\22\22\22\16\02\03\00\00", U(054E) }, /* Vew */
{"\16\21\20\16\01\21\16\00\00", U(054F) }, /* Tiwn */
{"\16\21\21\20\20\20\20\00\00", U(0550) }, /* Reh */
{"\16\21\16\21\01\21\16\00\00", U(0551) }, /* Co */
{"\20\20\37\20\20\20\20\00\00", U(0552) }, /* Yiwn */
{"\04\16\25\25\25\16\04\00\00", U(0553) }, /* Piwr */
{"\06\11\11\16\10\37\10\00\00", U(0554) }, /* Keh */
{"\16\21\21\21\21\21\16\00\00", U(0555) }, /* Oh */
{"\14\24\16\05\25\25\16\00\00", U(0556) }, /* Feh */
{"\00\00\25\25\25\25\13\00\00", U(0561) }, /* ayb */
{"\00\00\36\21\21\20\37\20\20", U(0562) }, /* ben */
{"\00\00\16\22\22\22\17\02\02", U(0563) }, /* gim */
{"\00\00\34\22\22\22\23\02\02", U(0564) }, /* da */
{"\20\20\37\20\21\21\17\00\00", U(0565) }, /* ech */
{"\00\00\16\22\22\22\16\02\03", U(0566) }, /* za */
{"\20\20\37\20\20\20\36\00\00", U(0567) }, /* eh */
{"\00\00\36\21\21\21\21\20\37", U(0568) }, /* et */
{"\00\00\36\21\27\31\26\20\20", U(0569) }, /* to */
{"\02\02\17\22\22\22\14\00\00", U(056A) }, /* zhe */
{"\20\20\36\21\21\21\21\20\20", U(056B) }, /* ini */
{"\00\00\10\10\10\10\10\10\16", U(056C) }, /* liwn */
{"\20\20\35\25\25\25\23\20\20", U(056D) }, /* xeh */
{"\04\02\17\22\22\22\14\00\00", U(056E) }, /* ca */
{"\20\20\21\21\21\21\17\01\01", U(056F) }, /* ken */
{"\20\20\36\21\21\21\21\00\00", U(0570) }, /* ho */
{"\04\02\04\12\21\23\15\00\00", U(0571) }, /* ja */
{"\00\00\34\22\22\22\22\02\03", U(0572) }, /* ghad */
{"\07\10\36\11\11\11\07\00\00", U(0573) }, /* cheh */
{"\03\02\22\22\22\22\16\00\00", U(0574) }, /* men */
{"\00\00\04\04\04\04\04\04\10", U(0575) }, /* yi */
{"\30\10\11\11\11\11\07\00\00", U(0576) }, /* now */
{"\00\00\16\21\01\02\14\20\37", U(0577) }, /* sha */
{"\00\00\36\21\21\21\21\00\00", U(0578) }, /* vo */
{"\00\00\04\10\04\02\14\20\37", U(0579) }, /* cha */
{"\00\00\25\25\25\25\13\01\01", U(057A) }, /* peh */
{"\00\00\16\21\21\12\14\20\37", U(057B) }, /* jheh */
{"\00\00\36\21\21\22\23\00\00", U(057C) }, /* ra */
{"\00\00\21\21\21\21\17\00\00", U(057D) }, /* seh */
{"\02\02\22\22\22\22\16\02\03", U(057E) }, /* vew */
{"\00\00\26\25\25\25\15\00\00", U(057F) }, /* tiwn */
{"\00\00\36\21\21\21\21\20\20", U(0580) }, /* reh */
{"\00\00\17\21\21\21\17\01\16", U(0581) }, /* co */
{"\00\00\10\10\10\10\16\00\00", U(0582) }, /* yiwn */
{"\04\04\26\25\25\25\15\04\04", U(0583) }, /* piwr */
{"\00\00\16\11\11\16\10\37\10", U(0584) }, /* keh */
{"\00\00\16\21\21\21\16\00\00", U(0585) }, /* oh */
{"\14\24\16\05\25\25\16\04\04", U(0586) }, /* feh */
{"\20\20\24\24\24\24\17\00\00", U(0587) }, /* ech_yiwn */
{"\14\22\22\07\02\07\02\00\00", U(058F) }, /* armdram */
#endif
/* Phonetic extensions */
{"\00\00\16\21\37\21\21\00\00", U(1D00) }, /* small cap A */
{"\00\00\17\24\26\34\27\00\00", U(1D01) }, /* small cap AE */
{"\00\00\16\05\36\24\12\00\00", U(1D02) }, /* turned ae */
{"\00\00\16\21\20\21\16\00\00", U(1D04) }, /* small cap C */
{"\00\00\36\21\21\21\36\00\00", U(1D05) }, /* small cap D */
{"\00\00\16\11\35\11\16\00\00", U(1D06) }, /* small cap Eth */
{"\00\00\37\20\36\20\37\00\00", U(1D07) }, /* small cap E */
{"\00\00\16\04\04\04\06\00\04", U(1D09) }, /* turned i */
{"\00\00\01\01\01\21\16\00\00", U(1D0A) }, /* small cap J */
{"\00\00\21\22\34\22\21\00\00", U(1D0B) }, /* small cap K */
{"\00\00\21\33\25\21\21\00\00", U(1D0D) }, /* small cap M */
{"\00\00\21\23\25\31\21\00\00", U(1D0E) }, /* small cap reversed N */
{"\00\00\16\21\21\21\16\00\00", U(1D0F) }, /* small cap O */
{"\00\00\32\05\35\25\12\00\00", U(1D14) }, /* turned oe */
{"\00\00\36\21\36\20\20\00\00", U(1D18) }, /* small cap P */
{"\00\00\17\21\17\11\21\00\00", U(1D19) }, /* small cap reversed R */
{"\00\00\21\11\17\21\17\00\00", U(1D1A) }, /* small cap turned R */
{"\00\00\37\04\04\04\04\00\00", U(1D1B) }, /* small cap T */
{"\00\00\21\21\21\21\16\00\00", U(1D1C) }, /* small cap U */
{"\00\00\37\01\01\01\36\00\00", U(1D1D) }, /* sideways u */
{"\00\00\37\01\36\01\36\00\00", U(1D1F) }, /* sideways m */
{"\00\00\21\21\12\12\04\00\00", U(1D20) }, /* small cap V */
{"\00\00\21\21\25\25\12\00\00", U(1D21) }, /* small cap W */
{"\00\00\37\01\16\20\37\00\00", U(1D22) }, /* small cap Z */
{"\30\04\34\24\10\00\00\00\00", U(1D4A) }, /* Superscript schwa */
{"\00\00\00\00\04\00\14\04\16", U(1D62) }, /* iinferior */
{"\00\00\00\00\00\00\12\14\10", U(1D63) }, /* rinferior */
{"\00\00\00\00\00\00\12\12\06", U(1D64) }, /* uinferior */
{"\00\00\00\00\00\00\12\12\04", U(1D65) }, /* vinferior */
/* Phonetic extensions supplement */
{"\10\24\34\24\10\00\00\00\00", U(1DBF) }, /* Superscript theta */
/* Latin extended additional */
{"\04\00\36\21\36\21\36\00\00", U(1E02) }, /* Bdotaccent */
{"\24\20\36\21\21\21\36\00\00", U(1E03) }, /* bdotaccent */
ALIAS("uni1E03.sc", "uni1E02"),
{"\36\21\21\36\21\21\36\00\04", U(1E04) }, /* Bdotbelow */
{"\00\00\36\21\36\21\36\00\04", 0xf19d, "uni1E04.c2sc"},
{"\20\20\36\21\21\21\36\00\04", U(1E05) }, /* bdotbelow */
ALIAS("uni1E05.sc", "uni1E04.c2sc"),
{"\36\21\21\36\21\21\36\00\16", U(1E06) }, /* Bmacronbelow */
{"\00\00\36\21\36\21\36\00\16", 0xf19e, "uni1E06.c2sc"},
{"\20\20\36\21\21\21\36\00\16", U(1E07) }, /* bmacronbelow */
ALIAS("uni1E06.sc", "uni1E06.c2sc"),
{"\02\04\16\21\20\21\16\04\10", U(1E08) }, /* Ccedillaacute */
{"\02\04\17\20\20\20\17\04\10", U(1E09) }, /* ccedillaacute */
ALIAS("uni1E09.sc", "uni1E08"),
{"\04\00\36\21\21\21\36\00\00", U(1E0A) }, /* Ddotaccent */
{"\05\01\17\21\21\21\17\00\00", U(1E0B) }, /* ddotaccent */
ALIAS("uni1E0B.sc", "uni1E0A"),
{"\36\21\21\21\21\21\36\00\04", U(1E0C) }, /* Ddotbelow */
{"\00\00\36\21\21\21\36\00\04", 0xf19f, "uni1E0C.c2sc" },
{"\01\01\17\21\21\21\17\00\04", U(1E0D) }, /* ddotbelow */
ALIAS("uni1E0D.sc", "uni1E0C.c2sc"),
{"\36\21\21\21\21\21\36\00\16", U(1E0E) }, /* Dmacronbelow */
{"\00\00\36\21\21\21\36\00\16", 0xf1a0, "uni1E0E.c2sc" },
{"\01\01\17\21\21\21\17\00\16", U(1E0F) }, /* dmacronbelow */
ALIAS("uni1E0F.sc", "uni1E0E.c2sc"),
{"\36\21\21\21\21\21\36\04\10", U(1E10) }, /* Dcedilla */
{"\00\00\36\21\21\21\36\04\16", 0xf1a1, "uni1E10.c2sc" },
{"\01\01\17\21\21\21\17\04\10", U(1E11) }, /* dcedilla */
ALIAS("uni1E11.sc", "uni1E10.c2sc"),
{"\36\21\21\21\21\21\36\04\12", U(1E12) }, /* Dcircumflexbelow */
{"\00\00\36\21\21\21\36\04\12", 0xf1a2, "uni1E12.c2sc" },
{"\01\01\17\21\21\21\17\04\12", U(1E13) }, /* dcircumflexbelow */
ALIAS("uni1E13.sc", "uni1E12.c2sc"),
{"\37\20\20\36\20\20\37\04\12", U(1E18) }, /* Ecircumflexbelow */
{"\00\00\37\20\36\20\37\04\12", 0xf1a3, "uni1E18.c2sc" },
{"\00\00\16\21\37\20\16\04\12", U(1E19) }, /* ecircumflexbelow */
ALIAS("uni1E19.sc", "uni1E18.c2sc"),
{"\04\00\37\20\36\20\20\00\00", U(1E1E) }, /* Fdotaccent */
{"\04\00\02\04\16\04\04\00\00", U(1E1F) }, /* fdotaccent */
ALIAS("uni1E1F.sc", "uni1E1E"),
{"\16\00\17\20\23\21\17\00\00", U(1E20) }, /* Gmacron */
{"\16\00\17\21\21\21\17\01\16", U(1E21) }, /* gmacron */
ALIAS("uni1E21.sc", "uni1E20"),
{"\25\21\21\37\21\21\21\00\00", U(1E22) }, /* Hdotaccent */
{"\04\00\21\21\37\21\21\00\00", 0xf1a4, "uni1E22.c2sc" },
{"\24\20\36\21\21\21\21\00\00", U(1E23) }, /* hdotaccent */
ALIAS("uni1E23.sc", "uni1E22.c2sc"),
{"\21\21\21\37\21\21\21\00\04", U(1E24) }, /* Hdotbelow */
{"\00\00\21\21\37\21\21\00\04", 0xf1a5, "uni1E24.c2sc" },
{"\20\20\36\21\21\21\21\00\04", U(1E25) }, /* hdotbelow */
ALIAS("uni1E25.sc", "uni1E24.c2sc"),
{"\12\00\21\21\37\21\21\00\00", U(1E26) }, /* Hdieresis */
{"\25\20\36\21\21\21\21\00\00", U(1E27) }, /* hdieresis */
ALIAS("uni1E27.sc", "uni1E26"),
{"\21\21\37\21\21\21\04\02\04", U(1E28) }, /* Hcedilla */
{"\00\00\21\37\21\21\04\02\04", 0xf1a6, "uni1E28.c2sc" },
{"\20\20\36\21\21\21\04\02\04", U(1E29) }, /* hcedilla */
ALIAS("uni1E29.sc", "uni1E28"),
{"\21\22\24\30\24\22\21\00\04", U(1E32) }, /* Kdotbelow */
{"\10\10\11\12\14\12\11\00\04", U(1E33) }, /* kdotbelow */
{"\21\22\24\30\24\22\21\00\16", U(1E34) }, /* Kmacronbelow */
{"\00\00\21\22\34\22\21\00\16", 0xf1a7, "uni1E34.c2sc" },
{"\10\10\11\12\14\12\11\00\16", U(1E35) }, /* kmacronbelow */
ALIAS("uni1E35.sc", "uni1E34.c2sc"),
{"\20\20\20\20\20\20\37\00\04", U(1E36) }, /* Ldotbelow */
{"\00\00\20\20\20\20\37\00\04", 0xf1a8, "uni1E36.c2sc" },
{"\14\04\04\04\04\04\16\00\04", U(1E37) }, /* ldotbelow */
ALIAS("uni1E37.sc", "uni1E36.c2sc"),
{"\20\20\20\20\20\20\37\00\16", U(1E3A) }, /* Lmacronbelow */
{"\00\00\20\20\20\20\37\00\16", 0xf1a9, "uni1E3A.c2sc" },
{"\14\04\04\04\04\04\16\00\16", U(1E3B) }, /* lmacronbelow */
ALIAS("uni1E3B.sc", "uni1E3A.c2sc"),
{"\20\20\20\20\20\20\37\04\12", U(1E3C) }, /* Lcircumflexbelow */
{"\00\00\20\20\20\20\37\04\12", 0xf1aa, "uni1E3C.c2sc" },
{"\14\04\04\04\04\16\00\04\12", U(1E3D) }, /* lcircumflexbelow */
ALIAS("uni1E3D.sc", "uni1E3C.c2sc"),
{"\02\04\21\33\25\21\21\00\00", U(1E3E) }, /* Macute */
{"\02\04\00\32\25\25\25\00\00", U(1E3F) }, /* macute */
ALIAS("uni1E3F.sc", "uni1E3E"),
{"\04\21\33\25\21\21\21\00\00", U(1E40) }, /* Mdotaccent */
{"\04\00\21\33\25\21\21\00\00", 0xf1ab, "uni1E40.c2sc" },
{"\04\00\32\25\25\25\25\00\00", U(1E41) }, /* mdotaccent */
ALIAS("uni1E41.sc", "uni1E40.c2sc"),
{"\21\33\25\25\21\21\21\00\04", U(1E42) }, /* Mdotbelow */
{"\00\00\21\33\25\21\21\00\04", 0xf1ac, "uni1E42.c2sc" },
{"\00\00\32\25\25\25\25\00\04", U(1E43) }, /* mdotbelow */
ALIAS("uni1E43.sc", "uni1E42.c2sc"),
{"\25\21\31\25\23\21\21\00\00", U(1E44) }, /* Ndotaccent */
{"\04\00\21\31\25\23\21\00\00", 0xf1ad, "uni1E44.c2sc" },
{"\04\00\36\21\21\21\21\00\00", U(1E45) }, /* ndotaccent */
ALIAS("uni1E45.sc", "uni1E44.c2sc"),
{"\21\21\31\25\23\21\21\00\04", U(1E46) }, /* Ndotbelow */
{"\00\00\21\31\25\23\21\00\04", 0xf1ae, "uni1E46.c2sc" },
{"\00\00\36\21\21\21\21\00\04", U(1E47) }, /* ndotbelow */
ALIAS("uni1E47.sc", "uni1E46.c2sc"),
{"\21\21\31\25\23\21\21\00\16", U(1E48) }, /* Nmacronbelow */
{"\00\00\21\31\25\23\21\00\16", 0xf1af, "uni1E48.c2sc" },
{"\00\00\36\21\21\21\21\00\16", U(1E49) }, /* nmacronbelow */
ALIAS("uni1E49.sc", "uni1E48.c2sc"),
{"\02\04\36\21\36\20\20\00\00", U(1E54) }, /* Pacute */
{"\02\04\36\21\21\21\36\20\20", U(1E55) }, /* pacute */
ALIAS("uni1E55.sc", "uni1E54"),
{"\04\00\36\21\36\20\20\00\00", U(1E56) }, /* Pdotaccent */
{"\04\00\36\21\21\21\36\20\20", U(1E57) }, /* pdotaccent */
ALIAS("uni1E57.sc", "uni1E56"),
{"\04\00\36\21\36\22\21\00\00", U(1E58) }, /* Rdotaccent */
{"\04\00\13\14\10\10\10\00\00", U(1E59) }, /* rdotaccent */
ALIAS("uni1E59.sc", "uni1E58"),
{"\36\21\21\36\24\22\21\00\04", U(1E5A) }, /* Rdotbelow */
{"\00\00\36\21\36\22\21\00\04", 0xf1b0, "uni1E5A.c2sc" },
{"\00\00\13\14\10\10\10\00\04", U(1E5B) }, /* rdotbelow */
ALIAS("uni1E5B.sc", "uni1E5A.c2sc"),
{"\16\00\36\21\36\22\21\00\04", U(1E5C) }, /* Rdotbelowmacron */
{"\16\00\13\14\10\10\10\00\04", U(1E5D) }, /* rdotbelowmacron */
ALIAS("uni1E5D.sc", "uni1E5C"),
{"\36\21\21\36\24\22\21\00\16", U(1E5E) }, /* Rmacronbelow */
{"\00\00\36\21\36\22\21\00\16", 0xf1b1, "uni1E5E.c2sc" },
{"\00\00\13\14\10\10\10\00\16", U(1E5F) }, /* rmacronbelow */
ALIAS("uni1E5F.sc", "uni1E5E.c2sc"),
{"\16\21\20\16\01\21\16\00\04", U(1E62) }, /* Sdotbelow */
ALIAS("uni1E62.c2sc", "uni1E63"),
{"\00\00\17\20\16\01\36\00\04", U(1E63) }, /* sdotbelow */
{"\04\00\37\04\04\04\04\00\00", U(1E6A) }, /* Tdotaccent */
{"\04\00\04\16\04\04\02\00\00", U(1E6B) }, /* tdotaccent */
ALIAS("uni1E6B.sc", "uni1E6A"),
{"\37\04\04\04\04\04\04\00\04", U(1E6C) }, /* Tdotbelow */
{"\00\00\37\04\04\04\04\00\04", 0xf1b2, "uni1E6C.c2sc" },
{"\04\04\16\04\04\04\02\00\04", U(1E6D) }, /* tdotbelow */
ALIAS("uni1E6D.sc", "uni1E6C.c2sc"),
{"\37\04\04\04\04\04\04\00\16", U(1E6E) }, /* Tmacronbelow */
{"\00\00\37\04\04\04\04\00\16", 0xf1b3, "uni1E6E.c2sc" },
{"\04\04\16\04\04\04\02\00\16", U(1E6F) }, /* tmacronbelow */
ALIAS("uni1E6F.sc", "uni1E6E.c2sc"),
{"\37\04\04\04\04\04\00\04\12", U(1E70) }, /* Tcircumflexbelow */
{"\00\00\37\04\04\04\00\04\12", 0xf1b4, "uni1E70.c2sc" },
{"\04\04\16\04\04\02\00\04\12", U(1E71) }, /* tcircumflexbelow */
ALIAS("uni1E71.sc", "uni1E70.c2sc"),
{"\21\21\21\21\21\21\16\00\12", U(1E72) }, /* Udieresisbelow */
{"\00\00\21\21\21\21\16\00\12", 0xf1b5, "uni1E72.c2sc" },
{"\00\00\21\21\21\21\17\00\12", U(1E73) }, /* udieresisbelow */
ALIAS("uni1E73.sc", "uni1E72.c2sc"),
{"\21\21\21\21\21\21\16\04\12", U(1E76) }, /* Ucircumflexbelow */
{"\00\00\21\21\21\21\16\04\12", 0xf1b6, "uni1E76.c2sc" },
{"\00\00\21\21\21\21\17\04\12", U(1E77) }, /* ucircumflexbelow */
ALIAS("uni1E77.sc", "uni1E76.c2sc"),
{"\12\00\16\00\21\21\16\00\00", U(1E7A) }, /* Umacrondieresis */
{"\12\00\16\00\21\21\17\00\00", U(1E7B) }, /* umacrondieresis */
ALIAS("uni1E7B.sc", "uni1E7A"),
{"\21\21\21\12\12\04\04\00\04", U(1E7E) }, /* Vdotbelow */
ALIAS("uni1E7E.c2sc", "uni1E7F"),
{"\00\00\21\21\12\12\04\00\04", U(1E7F) }, /* vdotbelow */
{"\12\00\21\25\25\25\12\00\00", 0x1e84, "Wdieresis", },
{"\12\00\21\21\25\25\12\00\00", 0x1e85, "wdieresis", },
ALIAS("wdieresis.sc", "Wdieresis"),
{"\21\21\21\25\25\25\12\00\04", U(1E88) }, /* Wdotbelow */
ALIAS("uni1E88.c2sc", "uni1E89"),
{"\00\00\21\21\25\25\12\00\04", U(1E89) }, /* wdotbelow */
{"\25\21\12\04\12\21\21\00\00", U(1E8A) }, /* Xdotaccent */
ALIAS("uni1E8A.c2sc", "uni1E8B"),
{"\04\00\21\12\04\12\21\00\00", U(1E8B) }, /* xdotaccent */
{"\12\00\21\21\16\21\21\00\00", U(1E8C) }, /* Xdieresis */
{"\12\00\21\12\04\12\21\00\00", U(1E8D) }, /* xdieresis */
ALIAS("uni1E8D.sc", "uni1E8C"),
{"\25\21\12\04\04\04\04\00\00", U(1E8E) }, /* Ydotaccent */
{"\04\00\21\12\04\04\04\00\00", 0xf1b7, "uni1E8E.c2sc" },
{"\04\00\21\21\21\21\17\01\16", U(1E8F) }, /* ydotaccent */
ALIAS("uni1E8F.sc", "uni1E8E.c2sc"),
{"\04\12\37\01\16\20\37\00\00", U(1E90) }, /* Zcircumflex */
{"\04\12\37\02\04\10\37\00\00", U(1E91) }, /* zcircumflex */
ALIAS("uni1E91.sc", "uni1E90"),
{"\37\01\02\04\10\20\37\00\04", U(1E92) }, /* Zdotbelow */
{"\00\00\37\01\16\20\37\00\04", 0xf1b8, "uni1E92.c2sc" },
{"\00\00\37\02\04\10\37\00\04", U(1E93) }, /* zdotbelow */
ALIAS("uni1E93.sc", "uni1E92.c2sc"),
{"\37\01\02\04\10\20\37\00\16", U(1E94) }, /* Zmacronbelow */
{"\00\00\37\01\16\20\37\00\16", 0xf1b9, "uni1E94.c2sc" },
{"\00\00\37\02\04\10\37\00\16", U(1E95) }, /* zmacronbelow */
ALIAS("uni1E95.sc", "uni1E94.c2sc"),
{"\20\20\36\21\21\21\21\00\16", U(1E96) }, /* hmacronbelow */
{"\25\04\16\04\04\04\02\00\00", U(1E97) }, /* tdieresis */
{"\16\21\22\22\21\21\26\00\00", U(1E9E) }, /* Germandbls */
{"\00\00\16\21\22\21\26\00\00", 0xf1c1, "uni1E9E.c2sc" },
{"\04\12\21\21\37\21\21\00\04", U(1EA0) }, /* Adotbelow */
{"\00\00\16\21\37\21\21\00\04", 0xf1ba, "uni1EA0.c2sc" },
{"\00\00\16\01\17\21\17\00\04", U(1EA1) }, /* adotbelow */
ALIAS("uni1EA1.sc", "uni1EA0.c2sc"),
{"\37\20\20\36\20\20\37\00\04", U(1EB8) }, /* Edotbelow */
{"\00\00\37\20\36\20\37\00\04", 0xf1bb, "uni1EB8.c2sc" },
{"\00\00\16\21\37\20\16\00\04", U(1EB9) }, /* edotbelow */
ALIAS("uni1EB9.sc", "uni1EB8.c2sc"),
{"\16\04\04\04\04\04\16\00\04", U(1ECA) }, /* Idotbelow */
{"\00\00\16\04\04\04\16\00\04", 0xf1bc, "uni1ECA.c2sc" },
{"\04\00\14\04\04\04\16\00\04", U(1ECB) }, /* idotbelow */
ALIAS("uni1ECB.sc", "uni1ECA.c2sc"),
{"\16\21\21\21\21\21\16\00\04", U(1ECC) }, /* Odotbelow */
ALIAS("uni1ECC.c2sc", "uni1ECD"),
{"\00\00\16\21\21\21\16\00\04", U(1ECD) }, /* odotbelow */
{"\21\21\21\21\21\21\16\00\04", U(1EE4) }, /* Udotbelow */
{"\00\00\21\21\21\21\16\00\04", 0xf1bd, "uni1EE4.c2sc" },
{"\00\00\21\21\21\21\17\00\04", U(1EE5) }, /* udotbelow */
ALIAS("uni1EE5.sc", "uni1EE4.c2sc"),
{"\21\21\12\04\04\04\04\00\04", U(1EF4) }, /* Ydotbelow */
{"\00\00\21\12\04\04\04\00\04", 0xf1be, "uni1EF4.c2sc" },
{"\00\00\21\21\17\01\16\00\04", U(1EF5) }, /* ydotbelow */
ALIAS("uni1EF5.sc", "uni1EF4.c2sc"),
/* General punctuation */
{{0x00}, U(2001), MOS6 }, /* em quad */
{"\00\00\00\16\00\00\00\00\00", U(2010) }, /* hyphen */
{"\00\00\00\16\00\00\00\00\00", U(2011) }, /* non-breaking hyphen */
{"\00\00\00\36\00\00\00\00\00", 0x2013, "endash" },
{"\00\00\00\00\00\00\37\00\37", 0x2017, "underscoredbl" },
{"\02\04\04\00\00\00\00\00\00", 0x2018, "quoteleft" },
{"\00\00\00\00\00\04\04\10\00", 0x201a, "quotesinglbase" },
{"\11\22\22\00\00\00\00\00\00", 0x201c, "quotedblleft" },
{"\11\11\22\00\00\00\00\00\00", 0x201d, "quotedblright" },
{"\00\00\00\00\00\11\11\22\00", 0x201e, "quotedblbase" },
{"\22\22\11\00\00\00\00\00\00", U(201F) }, /* quotedblreversed */
{"\04\04\37\04\04\04\04\04\04", 0x2020, "dagger" },
{"\04\04\37\04\04\04\37\04\04", 0x2021, "daggerdbl" },
{"\00\00\16\16\16\00\00\00\00", 0x2022, "bullet" },
{"\00\00\00\00\00\00\25\00\00", 0x2026, "ellipsis" },
{"\21\22\04\10\20\05\05\00\00", 0x2030, "perthousand" },
{"\10\10\20\20\00\00\00\00\00", 0x2032, "minute" },
{"\11\11\22\22\00\00\00\00\00", 0x2033, "second" },
{"\02\02\01\01\00\00\00\00\00", U(2035) }, /* reversed prime */
{"\22\22\11\11\00\00\00\00\00", U(2036) }, /* reversed double prime */
{"\00\00\00\02\04\02\00\00\00", 0x2039, "guilsinglleft" },
{"\00\00\00\10\04\10\00\00\00", 0x203a, "guilsinglright" },
{"\25\21\12\04\25\04\12\21\25", U(203B) }, /* referencemark */
{"\12\12\12\12\12\00\12\00\00", 0x203c, "exclamdbl" },
{"\16\25\05\06\04\00\04\00\00", U(203D) }, /* interrobang */
{"\37\00\00\00\00\00\00\00\00", U(203E) }, /* overline */
{"\00\00\00\00\00\00\00\21\16", U(203F) }, /* Bottom tie bar */
{"\16\21\00\00\00\00\00\00\00", U(2040) }, /* character tie */
{"\01\01\02\02\04\10\10\20\20", 0x2044, "fraction" },
{"\12\25\05\11\12\00\12\00\00", U(2047) }, /* questiondbl */
{"\11\25\05\11\11\00\11\00\00", U(2048) }, /* question exclam */
{"\22\25\21\22\22\00\22\00\00", U(2049) }, /* exclam question */
{"\26\25\25\26\24\24\24\00\00", U(204B) }, /* reversed pilcrow */
{"\00\00\04\00\00\04\04\02\00", U(204F) }, /* reversed semicolon */
{"\21\01\02\04\10\20\21\00\00", U(2052) }, /* commercial minus */
{"\00\00\10\25\02\00\00\00\00", U(2053) }, /* swing dash */
{"\00\00\00\00\00\00\00\16\21", U(2054) }, /* inverted undertie */
{"\00\00\01\00\20\00\01\00\00", U(2056) }, /* three dots */
{"\00\00\04\00\21\00\04\00\00", U(2058) }, /* four dots */
{"\00\00\21\00\04\00\21\00\00", U(2059) }, /* five dots */
{"\04\00\00\00\00\00\04\00\00", U(205A) }, /* two dots */
{"\04\00\00\00\21\00\00\00\04", U(205B) }, /* large four dots */
{"\00\00\25\04\37\04\25\00\00", U(205C) }, /* dotted cross */
{"\04\00\00\04\00\00\04\00\00", U(205D) }, /* tricolon */
{"\04\00\04\00\04\00\04\00\00", U(205E) }, /* vertical four dots */
/* Subscripts and superscripts */
{"\04\12\12\12\04\00\00\00\00", U(2070) }, /* zerosuperior */
{"\04\00\14\04\16\00\00\00\00", U(2071) }, /* isuperior */
{"\02\06\12\16\02\00\00\00\00", U(2074) }, /* foursuperior */
{"\16\10\14\02\14\00\00\00\00", U(2075) }, /* fivesuperior */
{"\04\10\14\12\04\00\00\00\00", U(2076) }, /* sixsuperior */
{"\16\02\04\10\10\00\00\00\00", U(2077) }, /* sevensuperior */
{"\04\12\04\12\04\00\00\00\00", U(2078) }, /* eightsuperior */
{"\04\12\06\02\04\00\00\00\00", U(2079) }, /* ninesuperior */
{"\00\04\16\04\00\00\00\00\00", U(207A) }, /* plussuperior */
{"\00\00\16\00\00\00\00\00\00", U(207B) }, /* minussuperior */
{"\00\16\00\16\00\00\00\00\00", U(207C) }, /* equalssuperior */
{"\02\04\04\04\02\00\00\00\00", U(207D) }, /* parenleftsuperior */
{"\10\04\04\04\10\00\00\00\00", U(207E) }, /* parenrightsuperior */
{"\00\00\14\12\12\00\00\00\00", U(207F) }, /* nsuperior */
{"\00\00\00\00\04\12\12\12\04", U(2080) }, /* zeroinferior */
{"\00\00\00\00\04\14\04\04\16", U(2081) }, /* oneinferior */
{"\00\00\00\00\14\02\04\10\16", U(2082) }, /* twoinferior */
{"\00\00\00\00\14\02\14\02\14", U(2083) }, /* threeinferior */
{"\00\00\00\00\02\06\12\16\02", U(2084) }, /* fourinferior */
{"\00\00\00\00\16\10\14\02\14", U(2085) }, /* fiveinferior */
{"\00\00\00\00\04\10\14\12\04", U(2086) }, /* sixinferior */
{"\00\00\00\00\16\02\04\10\10", U(2087) }, /* seveninferior */
{"\00\00\00\00\04\12\04\12\04", U(2088) }, /* eightinferior */
{"\00\00\00\00\04\12\06\02\04", U(2089) }, /* nineinferior */
{"\00\00\00\00\00\04\16\04\00", U(208A) }, /* plusinferior */
{"\00\00\00\00\00\00\16\00\00", U(208B) }, /* minusinferior */
{"\00\00\00\00\00\16\00\16\00", U(208C) }, /* equalsinferior */
{"\00\00\00\00\02\04\04\04\02", U(208D) }, /* parenleftinferior */
{"\00\00\00\00\10\04\04\04\10", U(208E) }, /* parenrightinferior */
{"\00\00\00\00\00\00\06\12\06", U(2090) }, /* ainferior */
{"\00\00\00\00\04\12\16\10\06", U(2091) }, /* einferior */
{"\00\00\00\00\00\00\06\11\06", U(2092) }, /* oinferior */
{"\00\00\00\00\00\00\12\04\12", U(2093) }, /* xinferior */
{"\00\00\00\00\14\02\16\12\04", U(2094) }, /* schwainferior */
{"\00\00\00\00\10\10\14\12\12", U(2095) }, /* hinferior */
{"\00\00\00\00\10\10\12\14\12", U(2096) }, /* kinferior */
{"\00\00\00\00\14\04\04\04\16", U(2097) }, /* linferior */
{"\00\00\00\00\00\00\32\25\25", U(2098) }, /* minferior */
{"\00\00\00\00\00\00\14\12\12", U(2099) }, /* ninferior */
{"\00\00\00\00\00\14\12\14\10", U(209A) }, /* pinferior */
{"\00\00\00\00\06\10\04\02\14", U(209B) }, /* sinferior */
{"\00\00\00\00\04\16\04\04\02", U(209C) }, /* tinferior */
/* Currency symbols */
{"\16\20\27\24\16\04\07\00\00", U(20A0) }, /* euro-currency symbol */
{"\17\10\36\10\34\10\10\00\00", 0x20a3, "franc" },
{"\06\11\34\10\34\10\37\00\00", 0x20a4, "lira" },
{"\30\24\30\22\27\22\21\00\00", 0x20a7, "peseta" },
{"\31\25\25\21\25\25\26\00\00", U(20AA) }, /* newsheqel */
{"\06\11\34\10\34\11\06\00\00", 0x20ac, "Euro" },
/* Letterlike symbols */
{"\16\25\24\24\24\25\16\00\00", U(2102) }, /* double-struck C */
{"\35\25\25\27\25\25\35\00\00", U(210D) }, /* double-struck H */
{"\31\25\23\31\25\23\21\00\00", U(2115) }, /* double-struck N */
{"\16\21\35\33\33\35\31\21\16", U(2117) }, /* phonographic */
{"\36\25\25\26\24\24\34\00\00", U(2119) }, /* double-struck P */
{"\16\25\25\25\25\22\15\00\00", U(211A) }, /* double-struck Q */
{"\36\25\25\26\25\25\35\00\00", U(211D) }, /* double-struck R */
{"\37\05\11\22\24\24\37\00\00", U(2124) }, /* double-struck Z */
{"\16\21\21\21\21\12\33\00\00", 0x2126, "Omega" },
{"\33\12\21\21\21\21\16\00\00", U(2127) }, /* mho sign */
{"\00\00\10\04\04\04\06\00\00", U(2129) }, /* turned iota */
{"\01\01\01\17\01\01\37\00\00", U(2132) }, /* turned F */
{"\26\11\25\02\05\05\02\00\00", U(214B) }, /* turned ampersand */
{"\00\00\01\01\17\01\37\00\00", U(214E) }, /* small cap turned F */
/* Number forms */
{"\20\20\20\20\27\01\02\04\04", U(2150) }, /* oneseventh */
{"\20\20\20\20\22\05\03\01\02", U(2151) }, /* oneninth */
{"\10\10\10\10\00\22\25\25\22", U(2152) }, /* onetenth */
{"\20\20\20\20\26\01\06\01\06", 0x2153, "onethird" },
{"\20\10\10\20\32\01\02\01\02", 0x2154, "twothirds" },
{"\20\20\20\20\27\04\06\01\06", U(2155) }, /* onefifth */
{"\20\10\10\20\33\02\03\01\02", U(2156) }, /* twofifths */
{"\20\10\20\10\23\02\03\01\02", U(2157) }, /* threefifths */
{"\04\14\24\34\07\02\03\01\02", U(2158) }, /* fourfifths */
{"\20\20\20\20\22\04\06\05\02", U(2159) }, /* onesixth */
{"\30\20\30\10\22\04\06\05\02", U(215A) }, /* fivesixths */
{"\20\20\20\20\22\05\02\05\02", 0x215b, "oneeighth" },
{"\20\10\20\10\22\05\02\05\02", 0x215c, "threeeighths" },
{"\30\20\30\10\22\05\02\05\02", 0x215d, "fiveeighths" },
{"\34\04\10\20\22\05\02\05\02", 0x215e, "seveneighths" },
{"\10\24\24\10\02\01\02\01\02", U(2189) }, /* zerothirds */
{"\37\01\02\14\20\21\16\00\00", U(218A) }, /* turned 2 */
{"\16\21\20\14\10\20\37\00\00", U(218B) }, /* turned 3 */
/* Arrows */
{"\00\04\04\25\16\04\00\00\00", 0x2193, "arrowdown" },
{"\00\12\21\37\21\12\00\00\00", 0x2194, "arrowboth" },
{"\04\16\25\04\25\16\04\00\00", 0x2195, "arrowupdn" },
{"\00\36\30\24\22\01\00\00\00", U(2196) }, /* arrowupleft */
{"\00\17\03\05\11\20\00\00\00", U(2197) }, /* arrowupright */
{"\00\20\11\05\03\17\00\00\00", U(2198) }, /* arrowdownright */
{"\00\01\22\24\30\36\00\00\00", U(2199) }, /* arrowdownleft */
{"\00\05\11\37\11\05\00\00\00", U(21A4) }, /* arrowbarleft */
{"\00\04\16\25\04\37\00\00\00", U(21A5) }, /* arrowbarup" */
{"\00\24\22\37\22\24\00\00\00", U(21A6) }, /* arrowbarright */
{"\00\37\04\25\16\04\00\00\00", U(21A7) }, /* arrowbardown */
{"\04\16\25\04\25\16\37\00\00", 0x21a8, "arrowupdnbse" },
{"\02\01\05\11\36\10\04\00\00", U(21A9) }, /* arrowleft w/hook */
{"\10\20\24\22\17\02\04\00\00", U(21AA) }, /* arrowright w/hook */
{"\00\34\04\25\16\04\00\00\00", U(21B4) }, /* arrow right then down */
{"\01\05\11\37\10\04\00\00\00", 0x21b5, "carriagereturn" },
{"\24\30\37\30\25\03\37\03\05", U(21B9) }, /* arrowtabsleftright */
{"\00\04\10\37\00\00\00\00\00", U(21BC) }, /* harpoonleftbarbup */
{"\00\00\00\37\10\04\00\00\00", U(21BD) }, /* harpoonleftbarbdown */
{"\00\04\06\05\04\04\00\00\00", U(21BE) }, /* harpoonupbarbright */
{"\00\04\14\24\04\04\00\00\00", U(21BF) }, /* harpoonupbarbleft */
{"\00\04\02\37\00\00\00\00\00", U(21C0) }, /* harpoonrightbarbup */
{"\00\00\00\37\02\04\00\00\00", U(21C1) }, /* harpoonrightbarbdown */
{"\00\04\04\05\06\04\00\00\00", U(21C2) }, /* harpoondownbarbright */
{"\00\04\04\24\14\04\00\00\00", U(21C3) }, /* harpoondownbarbleft */
{"\04\10\37\00\37\02\04\00\00", U(21CB) }, /* harpoonsleftright */
{"\04\02\37\00\37\10\04\00\00", U(21CC) }, /* harpoonsrightleft */
{"\00\06\13\20\13\06\00\00\00", 0x21d0, "arrowdblleft" },
{"\04\12\21\33\12\12\12\00\00", 0x21d1, "arrowdblup" },
{"\00\14\32\01\32\14\00\00\00", 0x21d2, "arrowdblright" },
{"\12\12\12\33\21\12\04\00\00", 0x21d3, "arrowdbldown" },
{"\00\24\30\37\30\24\00\00\00", U(21E4) }, /* arrowtableft */
{"\00\05\03\37\03\05\00\00\00", U(21E5) }, /* arrowtabright */
{"\00\06\13\21\13\06\00\00\00", U(21E6) }, /* white left arrow */
{"\04\12\21\33\12\12\16\00\00", U(21E7) }, /* white up arrow */
{"\00\14\32\21\32\14\00\00\00", U(21E8) }, /* white right arrow */
{"\16\12\12\33\21\12\04\00\00", U(21E9) }, /* white down arrow */
{"\04\12\21\33\16\12\16\00\00", U(21EA) }, /* caps lock arrow */
/* Mathematical operators */
{"\21\21\37\21\12\12\04\00\00", 0x2200, "universal" },
{"\16\21\01\17\21\21\16\00\00", 0x2202, "partialdiff" },
{"\16\21\20\36\21\21\16\00\00", 0xf100, "partialdiff.rtlm" },
{"\37\01\01\37\01\01\37\00\00", 0x2203, "existential" },
{"\37\20\20\37\20\20\37\00\00", 0xf101, "existential.rtlm" },
{"\00\15\22\25\11\26\00\00\00", 0x2205, "emptyset" },
{"\04\04\12\12\21\21\37\00\00", 0x2206, "Delta" },
{"\37\21\21\12\12\04\04\00\00", 0x2207, "gradient" },
{"\17\20\20\37\20\20\17\00\00", 0x2208, "element" },
{"\00\17\20\37\20\17\00\00\00", U(220A) }, /* small element of */
{"\36\01\01\37\01\01\36\00\00", 0x220b, "suchthat" },
{"\00\36\01\37\01\36\00\00\00", U(220D) }, /* small has element */
{"\37\21\21\21\21\21\21\21\21", 0x220f, "product" },
{"\21\21\21\21\21\21\21\21\37", U(2210) }, /* n-ary coproduct */
{"\37\20\10\04\02\04\10\20\37", 0x2211, "summation" },
{"\37\01\02\04\10\04\02\01\37", 0xf102, "summation.rtlm" },
{"\00\00\00\37\00\00\00\00\00", 0x2212, "minus" },
{"\37\00\04\04\37\04\04\00\00", U(2213) }, /* minusplus */
{"\04\00\04\04\37\04\04\00\00", U(2214) }, /* dot plus */
{"\00\01\02\04\10\20\00\00\00", U(2215) }, /* division slash */
{"\00\20\10\04\02\01\00\00\00", U(2216) }, /* set minus */
ALIAS("uni2216.rtlm", "uni2215"),
{"\04\25\16\04\16\25\04\00\00", 0x2217, "asteriskmath" },
{"\00\00\04\12\12\04\00\00\00", U(2218) }, /* ring operator */
{"\00\00\04\16\04\00\00\00\00", U(2219) }, /* bulletoperator */
{"\07\04\04\04\24\14\04\00\00", 0x221a, "radical" },
{"\34\04\04\04\05\06\04\00\00", 0xf103, "radical.rtlm" },
{"\23\12\22\12\22\06\02\00\00", U(221B) }, /* cube root */
{"\22\21\22\21\22\30\20\00\00", 0xf104, "uni221B.rtlm" },
{"\15\25\35\05\01\03\01\00\00", U(221C) }, /* fourth root */
{"\23\25\27\21\20\30\20\00\00", 0xf105, "uni221C.rtlm" },
{"\00\12\25\24\25\12\00\00\00", 0x221d, "proportional" },
{"\00\12\25\05\25\12\00\00\00", 0xf106, "proportional.rtlm" },
{"\00\12\25\25\25\12\00\00\00", 0x221e, "infinity" },
{"\00\20\20\20\20\37\00\00\00", 0x221f, "orthogonal" },
{"\04\04\04\04\04\04\04\00\00", U(2223) }, /* divides */
{"\12\12\12\12\12\12\12\00\00", U(2225) }, /* parallel */
{"\00\00\04\12\21\00\00\00\00", 0x2227, "logicaland" },
{"\00\00\21\12\04\00\00\00\00", 0x2228, "logicalor" },
{"\00\16\21\21\21\21\00\00\00", 0x2229, "intersection" },
{"\00\21\21\21\21\16\00\00\00", 0x222a, "union" },
{"\02\05\04\04\04\04\04\24\10", 0x222b, "integral" },
{"\10\24\04\04\04\04\04\05\02", 0xf107, "integral.rtlm" },
{"\02\05\04\16\25\16\04\24\10", U(222E) }, /* contour integral */
{"\10\24\04\16\25\16\04\05\02", 0xf108, "uni222E.rtlm" },
{"\00\04\00\00\00\21\00\00\00", 0x2234, "therefore" },
{"\00\21\00\00\00\04\00\00\00", U(2235) }, /* because */
{"\00\04\00\00\00\04\00\00\00", U(2236) }, /* ratio */
{"\00\04\00\37\00\00\00\00\00", U(2238) }, /* dot minus */
{"\00\21\00\37\00\21\00\00\00", U(223A) }, /* geometric proportion */
{"\00\00\10\25\02\00\00\00\00", 0x223c, "similar" },
{"\00\00\02\25\10\00\00\00\00", U(223D) }, /* reversed tilde */
{"\00\02\11\25\22\10\00\00\00", U(223E) }, /* inverted lazy S */
{"\00\10\22\25\11\02\00\00\00", 0xf109, "uni223E.rtlm" },
{"\00\10\24\25\05\02\00\00\00", U(223F) }, /* sinewave */
{"\00\02\05\25\24\10\00\00\00", 0xf10a, "uni223F.rtlm" },
{"\00\37\00\10\25\02\00\00\00", U(2242) }, /* minus tilde */
{"\00\37\00\02\25\10\00\00\00", 0xf10b, "uni2242.rtlm" },
{"\00\10\25\02\00\37\00\00\00", U(2243) }, /* asymptotically equal */
{"\10\25\02\00\37\00\37\00\00", 0x2245, "congruent" },
ALIAS("congruent.rtlm", "uni224C"),
{"\00\10\25\02\10\25\02\00\00", 0x2248, "approxequal" },
{"\00\02\25\10\02\25\10\00\00", 0xf10c, "approxequal.rtlm" },
{"\02\25\10\00\37\00\37\00\00", U(224C) }, /* all equal to */
ALIAS("uni224C.rtlm", "congruent"),
{"\00\21\16\00\16\21\00\00\00", U(224D) }, /* equivalent to */
{"\00\04\33\00\33\04\00\00\00", U(224E) }, /* geom equiv to */
{"\00\04\33\00\37\00\00\00\00", U(224F) }, /* difference between */
{"\04\00\37\00\37\00\00\00\00", U(2250) }, /* approaches limit */
{"\04\00\37\00\37\00\04\00\00", U(2251) }, /* geometrically equal */
{"\20\00\37\00\37\00\01\00\00", U(2252) }, /* approx eq or image */
{"\01\00\37\00\37\00\20\00\00", U(2253) }, /* image or approx eq */
{"\16\21\00\37\00\37\00\00\00", U(2258) }, /* corresponds to */
{"\32\25\25\00\37\00\37\00\00", U(225E) }, /* measured by */
{"\00\02\37\04\37\10\00\00\00", 0x2260, "notequal" },
{"\00\10\37\04\37\02\00\00\00", 0xf10d, "notequal.rtlm" },
{"\00\37\00\37\00\37\00\00\00", 0x2261, "equivalence" },
{"\02\37\04\37\04\37\10\00\00", U(2262) }, /* not identical */
{"\10\37\04\37\04\37\02\00\00", 0xf10e, "uni2262.rtlm" },
{"\03\14\20\14\03\30\07\00\00", 0x2264, "lessequal" },
{"\30\06\01\06\30\03\34\00\00", 0x2265, "greaterequal" },
{"\12\04\12\12\12\04\12\00\00", U(226C) }, /* between */
{"\00\17\20\20\20\17\00\00\00", 0x2282, "propersubset" },
{"\00\36\01\01\01\36\00\00\00", 0x2283, "propersuperset" },
{"\17\20\20\20\17\00\37\00\00", 0x2286, "reflexsubset" },
{"\36\01\01\01\36\00\37\00\00", 0x2287, "reflexsuperset" },
{"\00\21\21\25\21\16\00\00\00", U(228D) }, /* union with dot */
{"\00\37\20\20\20\37\00\00\00", U(228F) }, /* square image of */
{"\00\37\01\01\01\37\00\00\00", U(2290) }, /* square original of */
{"\37\20\20\20\37\00\37\00\00", U(2291) }, /* sq img or equal */
{"\37\01\01\01\37\00\37\00\00", U(2292) }, /* sq orig or eq */
{"\00\37\21\21\21\21\00\00\00", U(2293) }, /* square cap */
{"\00\21\21\21\21\37\00\00\00", U(2294) }, /* square cup */
{"\16\25\25\37\25\25\16\00\00", 0x2295, "circleplus" },
{"\16\21\21\37\21\21\16\00\00", U(2296) }, /* circled minus (ESC) */
{"\16\21\33\25\33\21\16\00\00", 0x2297, "circlemultiply" },
{"\16\21\23\25\31\21\16\00\00", U(2298) }, /* circled slash */
{"\16\21\21\25\21\21\16\00\00", U(2299) }, /* circled dot (SI) */
{"\16\21\37\21\37\21\16\00\00", U(229C) }, /* circled equals */
{"\00\37\25\37\25\37\00\00\00", U(229E) }, /* squared plus */
{"\00\37\21\37\21\37\00\00\00", U(229F) }, /* squared minus (DLE) */
{"\00\37\21\25\21\37\00\00\00", U(22A1) }, /* squared dot */
{"\00\20\20\37\20\20\00\00\00", U(22A2) }, /* right tack */
{"\00\01\01\37\01\01\00\00\00", U(22A3) }, /* left tack */
{"\00\37\04\04\04\04\00\00\00", U(22A4) }, /* down tack */
{"\00\04\04\04\04\37\00\00\00", 0x22a5, "perpendicular" },
{"\00\10\10\16\10\10\00\00\00", U(22A6) }, /* assertion */
{"\00\10\16\10\16\10\00\00\00", U(22A7) }, /* models */
{"\00\02\16\02\16\02\00\00\00", 0xf10f, "uni22A7.rtlm" },
{"\00\20\37\20\37\20\00\00\00", U(22A8) }, /* true */
{"\00\24\24\27\24\24\00\00\00", U(22A9) }, /* forces */
{"\00\24\27\24\27\24\00\00\00", U(22AB) }, /* dbl v dbl rt tstile */
{"\00\00\02\35\02\00\00\00\00", U(22B8) }, /* multimap */
ALIAS("uni22B8.rtlm", "uni27DC"),
{"\00\21\12\04\00\37\00\00\00", U(22BB) }, /* xor */
{"\00\37\00\04\12\21\00\00\00", U(22BC) }, /* nand */
{"\00\37\00\21\12\04\00\00\00", U(22BD) }, /* nor */
{"\04\04\04\12\12\12\21\21\21", U(22C0) }, /* n-ary logical and */
{"\21\21\21\12\12\12\04\04\04", U(22C1) }, /* n-ary logical or */
{"\16\21\21\21\21\21\21\21\21", U(22C2) }, /* n-ary intersection */
{"\21\21\21\21\21\21\21\21\16", U(22C3) }, /* n-ary union */
{"\00\04\12\21\12\04\00\00\00", U(22C4) }, /* diamond operator */
{"\00\00\00\04\00\00\00\00\00", 0x22c5, "dotmath" },
{"\04\25\16\04\12\21\00\00\00", U(22C6) }, /* star operator */
{"\00\00\33\25\33\00\00\00\00", U(22C8) }, /* bowtie */
{"\00\20\10\04\12\21\00\00\00", U(22CB) }, /* left semidirect prod */
{"\00\01\02\04\12\21\00\00\00", U(22CC) }, /* right semidirect prod */
{"\00\02\25\10\00\37\00\00\00", U(22CD) }, /* reversed tilde equals */
{"\04\04\16\25\25\25\25\00\00", U(22D4) }, /* pitchfork */
{"\07\30\03\14\20\14\03\00\00", U(22DC) }, /* equal or less than */
{"\34\03\30\06\01\06\30\00\00", U(22DD) }, /* equal or greater than */
{"\00\04\00\04\00\04\00\00\00", U(22EE) }, /* vertical ellipsis */
{"\00\00\00\25\00\00\00\00\00", U(22EF) }, /* midline ellipsis */
{"\00\01\00\04\00\20\00\00\00", U(22F0) }, /* /-diagonal ellipsis */
{"\00\20\00\04\00\01\00\00\00", U(22F1) }, /* \-diagonal ellipsis */
{"\37\00\17\20\37\20\17\00\00", U(22F7) }, /* small element overbar */
{"\17\20\20\37\20\20\17\00\37", U(22F8) }, /* element of underbar */
{"\36\01\01\37\01\01\36\00\37", 0xf110, "uni22F8.rtlm" },
{"\37\00\36\01\37\01\36\00\00", U(22FE) }, /* small contains o'bar */
/* Miscellaneous technical */
{"\04\12\21\21\21\21\37\00\00", 0x2302, "house" },
{"\16\10\10\10\10\10\10\00\00", U(2308) }, /* left ceiling */
{"\16\02\02\02\02\02\02\00\00", U(2309) }, /* right ceiling */
{"\10\10\10\10\10\10\16\00\00", U(230A) }, /* left floor */
{"\02\02\02\02\02\02\16\00\00", U(230B) }, /* right floor */
{"\00\00\37\20\20\00\00\00\00", 0x2310, "revlogicalnot" },
{"\00\00\20\20\37\00\00\00\00", U(2319) }, /* turned logical not */
{"\37\20\20\20\20\00\00\00\00", U(231C) }, /* top left corner */
{"\37\01\01\01\01\00\00\00\00", U(231D) }, /* top right corner */
{"\00\00\20\20\20\20\37\00\00", U(231E) }, /* bottom left corner */
{"\00\00\01\01\01\01\37\00\00", U(231F) }, /* bottom right corner */
{"\00\00\02\05\04\04\04\04\04", 0x2320, "integraltp" },
{"\00\00\10\24\04\04\04\04\04", 0xf111, "integraltp.rtlm" },
{"\04\04\04\04\04\24\10\00\00", 0x2321, "integralbt", LINE },
{"\04\04\04\04\04\05\02\00\00", 0xf112, "integralbt.rtlm", LINE },
{"\02\02\04\10\04\02\02\00\00", 0x2329, "angleleft" },
{"\10\10\04\02\04\10\10\00\00", 0x232a, "angleright" },
{"\00\37\04\04\04\37\00\00\00", U(2336) }, /* APL I-beam */
{"\16\12\12\12\12\12\16\00\00", U(2337) }, /* APL squish quad */
{"\37\21\37\21\37\21\37\00\00", U(2338) }, /* APL quad equal */
{"\37\25\21\37\21\25\37\00\00", U(2339) }, /* APL quad divide */
{"\37\25\33\21\33\25\37\00\00", U(233A) }, /* APL quad diamond */
{"\37\21\25\33\25\21\37\00\00", U(233B) }, /* APL quad jot */
{"\04\16\25\25\25\16\04\00\00", U(233D) }, /* APL circle stile */
{"\16\21\25\33\25\21\16\00\00", U(233E) }, /* APL circle jot */
{"\00\01\12\04\12\20\00\00\00", U(233F) }, /* APL slash bar */
{"\00\20\12\04\12\01\00\00\00", U(2340) }, /* APL backslash bar */
{"\37\21\23\25\31\21\37\00\00", U(2341) }, /* APL quad slash */
{"\37\21\31\25\23\21\37\00\00", U(2342) }, /* APL quad backslash */
{"\00\26\11\25\22\15\00\00\00", U(2349) }, /* APL circle backslash */
{"\04\04\04\04\37\00\37\00\00", U(234A) }, /* APL down tack u'bar */
{"\04\04\12\12\25\25\37\04\04", U(234B) }, /* APL delta stile */
{"\04\16\25\25\16\04\37\00\00", U(234E) }, /* APL down tack jot */
{"\37\00\37\04\04\04\04\00\00", U(2351) }, /* APL up tack overbar */
{"\04\04\37\25\25\12\12\04\04", U(2352) }, /* APL del stile */
{"\37\04\16\25\25\16\04\00\00", U(2355) }, /* APL up tack jot */
{"\04\04\12\12\21\21\37\00\37", U(2359) }, /* APL delta underbar */
{"\00\16\25\33\25\21\00\00\00", U(235D) }, /* APL up shoe jot */
{"\37\25\25\21\21\21\37\00\00", U(235E) }, /* APL quote quad */
{"\16\25\37\25\33\21\16\00\00", U(235F) }, /* APL circle star */
{"\37\21\25\21\25\21\37\00\00", U(2360) }, /* APL quad colon */
{"\12\00\37\04\04\04\04\00\00", U(2361) }, /* APL up tack dieresis */
{"\12\00\37\21\12\12\04\00\00", U(2362) }, /* APL del dieresis */
{"\12\00\25\16\04\12\21\00\00", U(2363) }, /* APL star dieresis */
{"\12\00\04\12\12\04\00\00\00", U(2364) }, /* APL jot dieresis */
{"\12\00\16\21\21\16\00\00\00", U(2365) }, /* APL circle dieresis */
{"\12\00\10\25\02\00\00\00\00", U(2368) }, /* APL tilde dieresis */
{"\00\00\00\37\00\00\04\04\10", U(236A) }, /* APL comma bar */
{"\37\21\21\16\33\04\04\00\00", U(236B) }, /* APL del tilde */
{"\04\12\21\37\21\12\04\00\00", U(236C) }, /* APL zilde */
{"\10\25\02\00\21\12\04\00\00", U(2371) }, /* APL nor */
{"\10\25\02\00\04\12\21\00\00", U(2372) }, /* APL nand */
{"\00\00\14\04\04\04\02\00\00", U(2373) }, /* APL iota */
{"\00\00\16\21\21\21\36\20\20", U(2374) }, /* APL rho */
{"\00\00\12\21\25\25\12\00\00", U(2375) }, /* APL omega */
{"\00\00\15\22\22\22\15\00\37", U(2376) }, /* APL alpha underbar */
{"\17\20\37\20\17\00\37\00\00", U(2377) }, /* APL epsilon underbar */
{"\00\00\14\04\04\04\02\00\37", U(2378) }, /* APL iota underbar */
{"\00\00\12\21\25\25\12\00\37", U(2379) }, /* APL omega underbar*/
{"\00\00\15\22\22\22\15\00\00", U(237A) }, /* APL alpha */
{"\00\00\05\02\25\10\00\00\00", U(237B) }, /* crossed tick (NAK) */
{"\00\00\00\00\00\33\16\00\00", U(237D) }, /* nbsp symbol */
{"\00\16\21\37\12\33\00\00\00", U(237E) }, /* bell symbol (BEL) */
{"\04\04\04\12\04\04\04\00\00", U(237F) }, /* vert line w/dot (EOM) */
{"\16\21\21\33\25\21\16\00\00", U(2389) }, /* circled notched bar */
{"\16\21\37\33\25\21\16\00\00", U(238A) }, /* circled down triangle */
{"\00\16\12\12\12\33\00\00\00", U(238D) }, /* monostable (SYN) */
{"\00\07\12\12\12\34\00\00\00", U(238E) }, /* hysteresis */
{"\00\00\37\00\25\00\00\00\00", U(2393) }, /* directcurrent */
{"\37\21\21\21\21\21\37\00\00", U(2395) }, /* APL quad */
{"\02\04\10\10\10\10\10\10\10", U(239B) }, /* long parenleft top */
{"\10\10\10\10\10\10\10\10\10", U(239C), LINE }, /* long parenleft middle */
{"\10\10\10\10\10\04\02\00\00", U(239D), LINE }, /* long parenleft bottom */
{"\10\04\02\02\02\02\02\02\02", U(239E) }, /* long parenright top */
{"\02\02\02\02\02\02\02\02\02", U(239F), LINE }, /* long parenright middle */
{"\02\02\02\02\02\04\10\00\00", U(23A0), LINE }, /* long parenright bottom */
{"\17\10\10\10\10\10\10\10\10", U(23A1) }, /* long bracketleft top */
{"\10\10\10\10\10\10\10\10\10", U(23A2), LINE }, /* long bracketleft mid */
{"\10\10\10\10\10\10\17\00\00", U(23A3), LINE }, /* long bracketleft bot */
{"\36\02\02\02\02\02\02\02\02", U(23A4) }, /* long bracketright top */
{"\02\02\02\02\02\02\02\02\02", U(23A5), LINE }, /* long bracketright mid */
{"\02\02\02\02\02\02\36\00\00", U(23A6), LINE }, /* long bracketright bot */
{"\03\04\04\04\04\04\04\04\04", U(23A7) }, /* long braceleft top */
{"\04\04\04\10\04\04\04\04\04", U(23A8), LINE }, /* long braceleft middle */
{"\04\04\04\04\04\04\03\00\00", U(23A9), LINE }, /* long braceleft bottom */
{"\04\04\04\04\04\04\04\04\04", U(23AA), LINE }, /* long brace extension */
{"\30\04\04\04\04\04\04\04\04", U(23AB) }, /* long braceright top */
{"\04\04\04\02\04\04\04\04\04", U(23AC), LINE }, /* long braceright middle */
{"\04\04\04\04\04\04\30\00\00", U(23AD), LINE }, /* long braceright bottom */
{"\04\04\04\04\04\04\04\04\04", U(23AE), LINE }, /* integral extension */
{"\03\04\04\04\04\04\04\04\30", U(23B0) }, /* two-level brace / */
{"\30\04\04\04\04\04\04\04\03", U(23B1) }, /* two-level brace \ */
{"\37\20\10\10\04\04\02\02\01", U(23B2) }, /* summation top */
{"\01\02\02\04\04\10\10\20\37", U(23B3) }, /* summation bottom */
{"\37\00\00\00\00\00\00\00\00", U(23BA) }, /* horizontal scan 1 */
{"\00\00\37\00\00\00\00\00\00", U(23BB) }, /* horizontal scan 3 */
{"\00\00\00\00\00\00\37\00\00", U(23BC) }, /* horizontal scan 7 */
{"\00\00\00\00\00\00\00\00\37", U(23BD) }, /* horizontal scan 9 */
{"\04\04\37\00\16\00\04\00\00", U(23DA) }, /* earth */
/* Control pictures */
{"\32\26\22\22\00\11\11\11\06", U(2400) }, /* NUL */
{"\10\20\10\20\05\05\07\05\05", U(2401) }, /* SOH */
{"\10\20\10\20\05\05\02\05\05", U(2402) }, /* STX */
{"\34\20\30\20\35\05\02\05\05", U(2403) }, /* ETX */
{"\34\20\30\20\37\02\02\02\02", U(2404) }, /* EOT */
{"\34\20\30\22\35\05\05\02\01", U(2405) }, /* ENQ */
{"\10\24\34\24\25\05\06\05\05", U(2406) }, /* ACK */
{"\30\24\30\24\30\02\02\02\03", U(2407) }, /* BEL */
{"\30\24\30\24\30\01\02\01\02", U(2408) }, /* BS */
{"\24\24\34\24\27\02\02\02\02", U(2409) }, /* HT */
{"\20\20\20\20\37\04\06\04\04", U(240A) }, /* LF */
{"\24\24\24\10\17\02\02\02\02", U(240B) }, /* VT */
{"\34\20\30\20\27\04\06\04\04", U(240C) }, /* FF */
{"\14\20\20\20\16\05\06\05\05", U(240D) }, /* CR */
{"\14\20\10\04\30\02\05\05\02", U(240E) }, /* SO */
{"\14\20\10\04\31\01\01\01\01", U(240F) }, /* SI */
{"\30\24\24\24\30\02\02\02\03", U(2410) }, /* DLE */
{"\30\24\24\24\31\01\01\01\01", U(2411) }, /* DC1 */
{"\30\24\24\24\30\02\01\02\03", U(2412) }, /* DC2 */
{"\30\24\24\30\02\01\02\01\02", U(2413) }, /* DC3 */
{"\30\24\24\24\31\03\05\07\01", U(2414) }, /* DC4 */
{"\32\26\22\22\00\05\06\05\05", U(2415) }, /* NAK */
{"\10\20\10\20\05\05\02\02\02", U(2416) }, /* SYN */
{"\34\20\30\20\36\05\06\05\06", U(2417) }, /* ETB */
{"\14\20\20\14\00\15\13\11\11", U(2418) }, /* CAN */
{"\34\20\30\20\34\00\33\25\21", U(2419) }, /* EOM */
{"\10\20\10\20\06\05\06\05\06", U(241A) }, /* SUB */
{"\30\20\30\20\30\03\04\04\03", U(241B) }, /* ESC */
{"\34\20\30\20\23\04\02\01\06", U(241C) }, /* FS */
{"\14\20\20\24\14\01\02\01\02", U(241D) }, /* GS */
{"\30\24\30\24\24\01\02\01\02", U(241E) }, /* RS */
{"\22\22\14\00\03\04\02\01\06", U(241F) }, /* US */
{"\10\20\10\20\06\05\06\04\04", U(2420) }, /* SP */
{"\30\24\24\30\00\07\02\02\02", U(2421) }, /* DEL */
{"\00\00\00\00\00\21\37\00\00", U(2423) }, /* Visible space */
{"\32\26\22\22\00\04\04\04\07", U(2424) }, /* NL */
{"\04\11\22\04\11\22\04\00\00", U(2425) }, /* pictorial DEL */
{"\16\21\10\04\04\00\04\00\00", U(2426) }, /* pictorial SUB */
/* Box drawing */
{"\00\00\00\00\37\00\00\00\00", 0x2500, "SF100000", LINE },
{"\00\00\00\37\37\37\00\00\00", U(2501), LINE },
{"\04\04\04\04\04\04\04\04\04", 0x2502, "SF110000", LINE },
{"\16\16\16\16\16\16\16\16\16", U(2503), LINE },
{"\00\00\00\00\25\00\00\00\00", U(2504) },
{"\00\00\00\25\25\25\00\00\00", U(2505) },
{"\04\04\00\04\04\04\00\04\04", U(2506) },
{"\16\16\00\16\16\16\00\16\16", U(2507) },
{"\04\00\04\04\00\04\00\04\04", U(250A) },
{"\16\00\16\16\00\16\00\16\16", U(250B) },
{"\00\00\00\00\07\04\04\04\04", 0x250c, "SF010000", LINE },
{"\00\00\00\07\07\07\04\04\04", U(250D), LINE },
{"\00\00\00\00\17\16\16\16\16", U(250E), LINE },
{"\00\00\00\17\17\17\16\16\16", U(250F), LINE },
{"\00\00\00\00\34\04\04\04\04", 0x2510, "SF030000", LINE },
{"\00\00\00\34\34\34\04\04\04", U(2511), LINE },
{"\00\00\00\00\36\16\16\16\16", U(2512), LINE },
{"\00\00\00\36\36\36\16\16\16", U(2513), LINE },
{"\04\04\04\04\07\00\00\00\00", 0x2514, "SF020000", LINE },
{"\04\04\04\07\07\07\00\00\00", U(2515), LINE },
{"\16\16\16\16\17\00\00\00\00", U(2516), LINE },
{"\16\16\16\17\17\17\00\00\00", U(2517), LINE },
{"\04\04\04\04\34\00\00\00\00", 0x2518, "SF040000", LINE },
{"\04\04\04\34\34\34\00\00\00", U(2519), LINE },
{"\16\16\16\16\36\00\00\00\00", U(251A), LINE },
{"\16\16\16\36\36\36\00\00\00", U(251B), LINE },
{"\04\04\04\04\07\04\04\04\04", 0x251c, "SF080000", LINE },
{"\04\04\04\07\07\07\04\04\04", U(251D), LINE },
{"\16\16\16\16\17\04\04\04\04", U(251E), LINE },
{"\04\04\04\04\17\16\16\16\16", U(251F), LINE },
{"\16\16\16\16\17\16\16\16\16", U(2520), LINE },
{"\16\16\16\17\17\17\04\04\04", U(2521), LINE },
{"\04\04\04\17\17\17\16\16\16", U(2522), LINE },
{"\16\16\16\17\17\17\16\16\16", U(2523), LINE },
{"\04\04\04\04\34\04\04\04\04", 0x2524, "SF090000", LINE },
{"\04\04\04\34\34\34\04\04\04", U(2525), LINE },
{"\16\16\16\16\36\04\04\04\04", U(2526), LINE },
{"\04\04\04\04\36\16\16\16\16", U(2527), LINE },
{"\16\16\16\16\36\16\16\16\16", U(2528), LINE },
{"\16\16\16\36\36\36\04\04\04", U(2529), LINE },
{"\04\04\04\36\36\36\16\16\16", U(252A), LINE },
{"\16\16\16\36\36\36\16\16\16", U(252B), LINE },
{"\00\00\00\00\37\04\04\04\04", 0x252c, "SF060000", LINE },
{"\00\00\00\34\37\34\04\04\04", U(252D), LINE },
{"\00\00\00\07\37\07\04\04\04", U(252E), LINE },
{"\00\00\00\37\37\37\04\04\04", U(252F), LINE },
{"\00\00\00\00\37\16\16\16\16", U(2530), LINE },
{"\00\00\00\36\37\36\16\16\16", U(2531), LINE },
{"\00\00\00\17\37\17\16\16\16", U(2532), LINE },
{"\00\00\00\37\37\37\16\16\16", U(2533), LINE },
{"\04\04\04\04\37\00\00\00\00", 0x2534, "SF070000", LINE },
{"\04\04\04\34\37\34\00\00\00", U(2535), LINE },
{"\04\04\04\07\37\07\00\00\00", U(2536), LINE },
{"\04\04\04\37\37\37\00\00\00", U(2537), LINE },
{"\16\16\16\16\37\00\00\00\00", U(2538), LINE },
{"\16\16\16\36\37\36\00\00\00", U(2539), LINE },
{"\16\16\16\17\37\17\00\00\00", U(253A), LINE },
{"\16\16\16\37\37\37\00\00\00", U(253B), LINE },
{"\04\04\04\04\37\04\04\04\04", 0x253c, "SF050000", LINE },
{"\04\04\04\34\37\34\04\04\04", U(253D), LINE },
{"\04\04\04\07\37\07\04\04\04", U(253E), LINE },
{"\04\04\04\37\37\37\04\04\04", U(253F), LINE },
{"\16\16\16\16\37\04\04\04\04", U(2540), LINE },
{"\04\04\04\04\37\16\16\16\16", U(2541), LINE },
{"\16\16\16\16\37\16\16\16\16", U(2542), LINE },
{"\16\16\16\36\37\36\04\04\04", U(2543), LINE },
{"\16\16\16\17\37\17\04\04\04", U(2544), LINE },
{"\04\04\04\36\37\36\16\16\16", U(2545), LINE },
{"\04\04\04\17\37\17\16\16\16", U(2546), LINE },
{"\16\16\16\37\37\37\04\04\04", U(2547), LINE },
{"\04\04\04\37\37\37\16\16\16", U(2548), LINE },
{"\16\16\16\36\37\36\16\16\16", U(2549), LINE },
{"\16\16\16\17\37\17\16\16\16", U(254A), LINE },
{"\16\16\16\37\37\37\16\16\16", U(254B), LINE },
{"\00\00\00\00\33\00\00\00\00", U(254C) },
{"\00\00\00\33\33\33\00\00\00", U(254D) },
{"\04\04\04\04\00\04\04\04\04", U(254E) },
{"\16\16\16\16\00\16\16\16\16", U(254F) },
{"\00\00\00\37\00\37\00\00\00", 0x2550, "SF430000", LINE },
{"\12\12\12\12\12\12\12\12\12", 0x2551, "SF240000", LINE },
{"\00\00\00\07\04\07\04\04\04", 0x2552, "SF510000", LINE },
{"\00\00\00\00\17\12\12\12\12", 0x2553, "SF520000", LINE },
{"\00\00\00\17\10\13\12\12\12", 0x2554, "SF390000", LINE },
{"\00\00\00\34\04\34\04\04\04", 0x2555, "SF220000", LINE },
{"\00\00\00\00\36\12\12\12\12", 0x2556, "SF210000", LINE },
{"\00\00\00\36\02\32\12\12\12", 0x2557, "SF250000", LINE },
{"\04\04\04\07\04\07\00\00\00", 0x2558, "SF500000", LINE },
{"\12\12\12\12\17\00\00\00\00", 0x2559, "SF490000", LINE },
{"\12\12\12\13\10\17\00\00\00", 0x255a, "SF380000", LINE },
{"\04\04\04\34\04\34\00\00\00", 0x255b, "SF280000", LINE },
{"\12\12\12\12\36\00\00\00\00", 0x255c, "SF270000", LINE },
{"\12\12\12\32\02\36\00\00\00", 0x255d, "SF260000", LINE },
{"\04\04\04\07\04\07\04\04\04", 0x255e, "SF360000", LINE },
{"\12\12\12\12\13\12\12\12\12", 0x255f, "SF370000", LINE },
{"\12\12\12\13\10\13\12\12\12", 0x2560, "SF420000", LINE },
{"\04\04\04\34\04\34\04\04\04", 0x2561, "SF190000", LINE },
{"\12\12\12\12\32\12\12\12\12", 0x2562, "SF200000", LINE },
{"\12\12\12\32\02\32\12\12\12", 0x2563, "SF230000", LINE },
{"\00\00\00\37\00\37\04\04\04", 0x2564, "SF470000", LINE },
{"\00\00\00\00\37\12\12\12\12", 0x2565, "SF480000", LINE },
{"\00\00\00\37\00\33\12\12\12", 0x2566, "SF410000", LINE },
{"\04\04\04\37\00\37\00\00\00", 0x2567, "SF450000", LINE },
{"\12\12\12\12\37\00\00\00\00", 0x2568, "SF460000", LINE },
{"\12\12\12\33\00\37\00\00\00", 0x2569, "SF400000", LINE },
{"\04\04\04\37\04\37\04\04\04", 0x256a, "SF540000", LINE },
{"\12\12\12\12\37\12\12\12\12", 0x256b, "SF530000", LINE },
{"\12\12\12\33\00\33\12\12\12", 0x256c, "SF440000", LINE },
{"\00\00\00\00\03\04\04\04\04", U(256D), LINE },
{"\00\00\00\00\30\04\04\04\04", U(256E), LINE },
{"\04\04\04\04\30\00\00\00\00", U(256F), LINE },
{"\04\04\04\04\03\00\00\00\00", U(2570), LINE },
{"\00\00\00\00\34\00\00\00\00", U(2574), LINE },
{"\04\04\04\04\04\00\00\00\00", U(2575), LINE },
{"\00\00\00\00\07\00\00\00\00", U(2576), LINE },
{"\00\00\00\00\04\04\04\04\04", U(2577), LINE },
{"\00\00\00\34\34\34\00\00\00", U(2578), LINE },
{"\16\16\16\16\16\00\00\00\00", U(2579), LINE },
{"\00\00\00\07\07\07\00\00\00", U(257A), LINE },
{"\00\00\00\00\16\16\16\16\16", U(257B), LINE },
{"\00\00\00\07\37\07\00\00\00", U(257C), LINE },
{"\04\04\04\04\16\16\16\16\16", U(257D), LINE },
{"\00\00\00\34\37\34\00\00\00", U(257E), LINE },
{"\16\16\16\16\16\04\04\04\04", U(257F), LINE },
/* Block elements */
{{0x03}, 0x2580, "upblock", MOS4 }, {{0x3}, 0xf1e3, "upblock.sep4", SEP4 },
{{0x0c}, 0x2584, "dnblock", MOS4 }, {{0xc}, 0xf1ec, "dnblock.sep4", SEP4 },
{{0xf}, 0xf1ef, "block.sep4", SEP4 },
{{0x5}, 0xf1e5, "lfblock.sep4", SEP4 },
{{0xa}, 0xf1ea, "rtblock.sep4", SEP4 },
{"\25\00\12\00\25\00\12\00\25", 0x2591, "ltshade" },
{"\22\11\04\22\11\04\22\11\04", 0x2592, "shade" },
{"\25\37\12\37\25\37\12\37\25", 0x2593, "dkshade" },
#define M(x, u) { {x}, U(u), MOS4 }, { {x}, 0xf1e0 + x, "uni" #u ".sep4", SEP4 }
M( 4, 2596), M( 8, 2597), M( 1, 2598), M(13, 2599),
M( 9, 259A), M( 7, 259B), M(11, 259C), M( 2, 259D),
M( 6, 259E), M(14, 259F),
#undef M
/* Geometric shapes */
{"\37\21\21\21\21\21\37\00\00", 0x25a1, "H22073" },
{"\00\00\16\16\16\00\00\00\00", 0x25aa, "H18543" },
{"\00\00\16\12\16\00\00\00\00", 0x25ab, "H18551" },
{"\00\00\37\37\37\00\00\00\00", 0x25ac, "filledrect" },
{"\00\00\37\21\37\00\00\00\00", U(25AD) }, /* rect */
{"\04\04\16\16\37\37\37\00\00", 0x25b2, "triagup" },
{"\10\14\16\17\16\14\10\00\00", U(25B6) }, /* blacktriangleright */
{"\30\24\22\21\22\24\30\00\00", U(25B7) }, /* whitetriangleright */
{"\00\20\34\37\34\20\00\00\00", 0x25ba, "triagrt" },
{"\37\37\37\16\16\04\04\00\00", 0x25bc, "triagdn" },
{"\01\03\07\17\07\03\01\00\00", U(25C0) }, /* blacktriangleleft */
{"\03\05\11\21\11\05\03\00\00", U(25C1) }, /* whitetriangleleft */
{"\00\01\07\37\07\01\00\00\00", 0x25c4, "triaglf" },
{"\00\04\16\37\16\04\00\00\00", U(25C6) }, /* black diamond shape */
{"\00\04\12\21\12\04\00\00\00", U(25C7) }, /* white diamond shape */
{"\04\12\12\21\12\12\04\00\00", 0x25ca, "lozenge" },
{"\00\16\21\21\21\16\00\00\00", 0x25cb, "circle" },
{"\00\04\21\00\21\04\00\00\00", U(25CC) }, /* dottedcircle */
{"\00\16\37\37\37\16\00\00\00", 0x25cf, "H18533" },
{"\37\37\21\21\21\37\37\00\00", 0x25d8, "invbullet" },
{"\37\21\04\16\04\21\37\00\00", 0x25d9, "invcircle" },
{"\00\00\16\12\16\00\00\00\00", 0x25e6, "openbullet" },
{"\00\37\25\25\25\37\00\00\00", U(25EB) }, /* squared vertical line */
{"\00\37\25\35\21\37\00\00\00", U(25F0) }, /* square UL quad (FS) */
{"\00\37\21\35\25\37\00\00\00", U(25F1) }, /* square LL quad (GS) */
{"\00\37\21\27\25\37\00\00\00", U(25F2) }, /* square LR quad (RS) */
{"\00\37\25\27\21\37\00\00\00", U(25F3) }, /* square UR quad (US) */
{"\00\16\25\35\21\16\00\00\00", U(25F4) }, /* circle UL quad (DC4) */
{"\00\16\21\35\25\16\00\00\00", U(25F5) }, /* circle LL quad (DC3) */
{"\00\16\21\27\25\16\00\00\00", U(25F6) }, /* circle LR quad (DC2) */
{"\00\16\25\27\21\16\00\00\00", U(25F7) }, /* circle UR quad (DC1) */
/* Miscellaneous symbols */
{"\01\02\04\10\05\03\07\00\00", U(2607) }, /* lightning */
{"\37\22\24\30\25\23\27\00\00", U(2608) }, /* thunderstorm */
{"\00\16\21\25\21\16\00\00\00", U(2609) }, /* astrological sun */
{"\00\37\00\37\00\37\00\00\00", U(2630) }, /* Yijing trigrams... */
{"\00\33\00\37\00\37\00\00\00", U(2631) },
{"\00\37\00\33\00\37\00\00\00", U(2632) },
{"\00\33\00\33\00\37\00\00\00", U(2633) },
{"\00\37\00\37\00\33\00\00\00", U(2634) },
{"\00\33\00\37\00\33\00\00\00", U(2635) },
{"\00\37\00\33\00\33\00\00\00", U(2636) },
{"\00\33\00\33\00\33\00\00\00", U(2637) },
{"\00\12\00\00\16\21\00\00\00", U(2639) }, /* frownface */
{"\00\12\00\00\21\16\00\00\00", 0x263a, "smileface" },
{"\16\37\25\37\37\21\16\00\00", 0x263b, "invsmileface" },
{"\00\25\16\33\16\25\00\00\00", 0x263c, "sun" },
{"\16\21\21\16\04\16\04\00\00", 0x2640, "female" },
{"\07\03\05\14\22\22\14\00\00", 0x2642, "male" },
{"\00\04\16\37\37\04\16\00\00", 0x2660, "spade" },
{"\00\16\16\37\37\04\16\00\00", 0x2663, "club" },
{"\00\12\37\37\16\04\00\00\00", 0x2665, "heart" },
{"\00\04\16\37\16\04\00\00\00", 0x2666, "diamond" },
{"\02\02\02\02\06\16\04\00\00", U(2669) }, /* crotchet */
{"\04\06\05\05\14\34\10\00\00", 0x266a, "musicalnote" },
{"\03\15\11\11\13\33\30\00\00", 0x266b, "musicalnotedbl" },
{"\17\11\17\11\11\33\33\00\00", U(266C) }, /* semiquavers */
{"\10\10\13\15\11\12\14\00\00", U(266D) }, /* flat */
{"\10\13\15\11\13\15\01\00\00", U(266E) }, /* natural */
{"\02\13\16\33\16\32\10\00\00", U(266F) }, /* sharp */
{"\00\16\21\23\21\16\00\00\00", U(2686) }, /* wht circle dot right */
{"\00\16\21\33\21\16\00\00\00", U(2687) }, /* wht circle two dots */
{"\00\16\37\35\37\16\00\00\00", U(2688) }, /* blk circle dot right */
{"\00\16\37\25\37\16\00\00\00", U(2689) }, /* blk circle two dots */
{"\00\00\00\37\00\00\00\00\00", U(268A) }, /* Yijing monogram yang */
{"\00\00\00\33\00\00\00\00\00", U(268B) }, /* Yijing monogram yin */
{"\00\00\37\00\37\00\00\00\00", U(268C) }, /* Yijing digrams... */
{"\00\00\33\00\37\00\00\00\00", U(268D) },
{"\00\00\37\00\33\00\00\00\00", U(268E) },
{"\00\00\33\00\33\00\00\00\00", U(268F) },
/* Dingbats */
{"\00\04\22\17\22\04\00\00\00", U(2708) }, /* airplane */
{"\00\00\01\02\24\10\00\00\00", U(2713) }, /* tick (ACK) */
{"\16\04\25\37\25\04\16\00\00", U(2720) }, /* maltese cross */
/* Miscellaneous mathematical symbols-A */
{"\04\04\04\16\04\04\04\00\00", U(27CA) }, /* vert bar horiz stroke */
{"\00\25\25\25\25\16\00\00\00", U(27D2) }, /* upward element of */
{"\04\04\04\04\04\04\04\04\37", U(27D8) }, /* large up tack */
{"\37\04\04\04\04\04\04\04\04", U(27D9) }, /* large down tack */
{"\00\00\10\27\10\00\00\00\00", U(27DC) }, /* left multimap */
ALIAS("uni27DC.rtlm", "uni22B8"),
{"\02\02\04\10\04\02\02\00\00", U(27E8) }, /* left angle bracket */
{"\10\10\04\02\04\10\10\00\00", U(27E9) }, /* right angle bracket */
{"\02\04\04\04\04\04\02\00\00", U(27EE) }, /* flattened parenleft */
{"\10\04\04\04\04\04\10\00\00", U(27EF) }, /* flattened parenright */
/* Supplemental arrows-B */
{"\00\37\16\25\04\04\00\00\00", U(2912) }, /* arrowupbar */
{"\00\04\04\25\16\37\00\00\00", U(2913) }, /* arrowdownbar */
{"\00\04\16\25\04\30\00\00\00", U(2934) }, /* arrow right curve up */
{"\00\30\04\25\16\04\00\00\00", U(2935) }, /* arrow right curve down */
{"\01\05\11\36\10\04\00\00\00", U(2936) }, /* arrow down curve left */
{"\20\24\22\17\02\04\00\00\00", U(2937) }, /* arrow down curve right */
{"\00\04\10\37\02\04\00\00\00", U(294A) }, /* harpoon lf up rt dn */
{"\00\04\02\37\10\04\00\00\00", U(294B) }, /* harpoon lf dn rt up */
{"\04\06\05\04\24\14\04\00\00", U(294C) }, /* harpoon up rt dn lf */
{"\04\14\24\04\05\06\04\00\00", U(294D) }, /* harpoon up lf dn rt */
{"\00\12\21\37\00\00\00\00\00", U(294E) }, /* harpoon lf up rt up */
{"\04\06\05\04\05\06\04\00\00", U(294F) }, /* harpoon up rt dn rt */
{"\00\00\00\37\21\12\00\00\00", U(2950) }, /* harpoon lf dn rt dn */
{"\04\14\24\04\24\14\04\00\00", U(2951) }, /* harpoon up lf dn lf */
{"\00\24\30\37\20\20\00\00\00", U(2952) }, /* harpoons to bars... */
{"\00\05\03\37\01\01\00\00\00", U(2953) },
{"\00\37\06\05\04\04\00\00\00", U(2954) },
{"\00\04\04\05\06\37\00\00\00", U(2955) },
{"\00\20\20\37\30\24\00\00\00", U(2956) },
{"\00\01\01\37\03\05\00\00\00", U(2957) },
{"\00\37\14\24\04\04\00\00\00", U(2958) },
{"\00\04\04\24\14\37\00\00\00", U(2959) },
{"\00\05\11\37\01\01\00\00\00", U(295A) }, /* ... and from bars */
{"\00\24\22\37\20\20\00\00\00", U(295B) },
{"\00\04\06\05\04\37\00\00\00", U(295C) },
{"\00\37\04\05\06\04\00\00\00", U(295D) },
{"\00\01\01\37\11\05\00\00\00", U(295E) },
{"\00\20\20\37\22\24\00\00\00", U(295F) },
{"\00\04\14\24\04\37\00\00\00", U(2960) },
{"\00\37\04\24\14\04\00\00\00", U(2961) },
{"\04\10\37\00\37\10\04\00\00", U(2962) }, /* paired harpoons */
{"\04\02\37\00\37\02\04\00\00", U(2964) },
{"\04\10\37\00\04\02\37\00\00", U(2966) },
{"\37\10\04\00\37\02\04\00\00", U(2967) },
{"\04\02\37\00\04\10\37\00\00", U(2968) },
{"\37\02\04\00\37\10\04\00\00", U(2969) },
{"\04\10\37\00\37\00\00\00\00", U(296A) },
{"\00\00\37\00\37\10\04\00\00", U(296B) },
{"\04\02\37\00\37\00\00\00\00", U(296C) },
{"\00\00\37\00\37\02\04\00\00", U(296D) },
/* Miscellaneous mathematical symbols-B */
{"\25\25\25\25\25\25\25\00\00", U(2980) }, /* triple vertical bar */
{"\00\16\25\25\25\16\00\00\00", U(29B6) }, /* circled vert bar */
{"\00\16\25\37\21\16\00\00\00", U(29BA) }, /* circled horiz up */
/* Supplemental mathematical operators */
{"\16\21\21\21\25\21\21\21\16", U(2A00) }, /* n-ary circled dot */
{"\16\21\25\25\37\25\25\21\16", U(2A01) }, /* n-ary circled plus */
{"\16\21\21\33\25\33\21\21\16", U(2A02) }, /* n-ary circled times */
{"\21\21\21\21\25\21\21\21\16", U(2A03) }, /* n-ary union dot */
{"\21\21\25\25\37\25\25\21\16", U(2A04) }, /* n-ary union plus */
{"\02\05\04\04\37\04\04\24\10", U(2A0D) }, /* integral with bar */
{"\10\24\04\04\37\04\04\05\02", 0xf113, "uni2A0D.rtlm" },
{"\02\05\04\37\04\37\04\24\10", U(2A0E) }, /* integral w/dbl bar */
{"\10\24\04\37\04\37\04\05\02", 0xf114, "uni2A0E.rtlm" },
{"\02\05\04\37\25\37\04\24\10", U(2A16) }, /* integral w/square */
{"\10\24\04\37\25\37\04\05\02", 0xf115, "uni2A16.rtlm" },
{"\02\05\04\16\25\25\04\24\10", U(2A19) }, /* integral w/cap */
{"\10\24\04\16\25\25\04\05\02", 0xf116, "uni2A19.rtlm" },
{"\02\05\04\25\25\16\04\24\10", U(2A1A) }, /* integral w/cup */
{"\10\24\04\25\25\16\04\05\02", 0xf117, "uni2A1A.rtlm" },
{"\04\04\37\04\04\00\04\00\00", U(2A25) }, /* plus dot */
{"\00\00\00\37\00\04\00\00\00", U(2A2A) }, /* minus dot */
{"\00\20\00\37\00\01\00\00\00", U(2A2B) }, /* minus falling dots */
{"\00\01\00\37\00\20\00\00\00", U(2A2C) }, /* minus rising dots */
{"\04\21\12\04\12\21\00\00\00", U(2A30) }, /* dot times */
{"\00\16\21\25\21\21\00\00\00", U(2A40) }, /* intersection with dot */
{"\04\00\04\12\21\00\00\00\00", U(2A51) }, /* dot and */
{"\04\00\21\12\04\00\00\00\00", U(2A52) }, /* dot or */
{"\37\00\37\00\04\12\21\00\00", U(2A5E) }, /* double bar and */
{"\00\04\12\21\00\37\00\00\00", U(2A5F) }, /* and bar */
{"\04\12\21\00\37\00\37\00\00", U(2A60) }, /* and double bar */
{"\37\00\37\00\21\12\04\00\00", U(2A62) }, /* double bar or */
{"\21\12\04\00\37\00\37\00\00", U(2A63) }, /* or double bar */
{"\00\00\37\00\37\00\04\00\00", U(2A66) }, /* equals dot */
{"\04\00\37\00\37\00\37\00\00", U(2A67) }, /* dot identical */
{"\04\00\10\25\02\00\00\00\00", U(2A6A) }, /* dot tilde */
{"\04\00\02\25\10\00\00\00\00", 0xf118, "uni2A6A.rtlm" },
{"\00\01\10\25\02\20\00\00\00", U(2A6B) }, /* tilde rising dots */
{"\00\20\02\25\10\01\00\00\00", 0xf119, "uni2A6B.rtlm" },
{"\37\00\37\00\10\25\02\00\00", U(2A73) }, /* equals tilde */
{"\37\00\37\00\02\25\10\00\00", 0xf11a, "uni2A73.rtlm" },
{"\12\00\37\00\37\00\12\00\00", U(2A77) }, /* equals with four dots */
{"\04\33\00\37\00\37\00\00\00", U(2AAE) }, /* bumpy equals */
{"\00\17\20\24\20\17\00\00\00", U(2ABD) }, /* subset with dot */
{"\00\36\01\05\01\36\00\00\00", U(2ABE) }, /* superset with dot */
{"\17\20\17\00\04\16\04\00\00", U(2ABF) }, /* subset plus */
{"\36\01\36\00\04\16\04\00\00", U(2AC0) }, /* superset plus */
{"\17\20\17\00\12\04\12\00\00", U(2AC1) }, /* subset times */
{"\36\01\36\00\12\04\12\00\00", U(2AC2) }, /* superset times */
{"\04\00\17\20\17\00\37\00\00", U(2AC3) }, /* dot subset or equal */
{"\04\00\36\01\36\00\37\00\00", U(2AC4) }, /* dot superset or equal */
{"\17\20\17\00\37\00\37\00\00", U(2AC5) }, /* subset equals */
{"\36\01\36\00\37\00\37\00\00", U(2AC6) }, /* superset equals */
{"\17\20\17\00\10\25\02\00\00", U(2AC7) }, /* subset tilde */
{"\36\01\36\00\02\25\10\00\00", 0xf11b, "uni2AC7.rtlm" },
{"\36\01\36\00\10\25\02\00\00", U(2AC8) }, /* superset tilde */
{"\17\20\17\00\02\25\10\00\00", 0xf11c, "uni2AC8.rtlm" },
{"\00\17\21\21\21\17\00\00\00", U(2ACF) }, /* closed subset */
{"\00\36\21\21\21\36\00\00\00", U(2AD0) }, /* closed superset */
{"\17\21\21\21\17\00\37\00\00", U(2AD1) }, /* closed subset or eq */
{"\36\21\21\21\36\00\37\00\00", U(2AD2) }, /* closed superset or eq */
{"\17\20\17\00\36\01\36\00\00", U(2AD3) }, /* subset superset */
{"\36\01\36\00\17\20\17\00\00", U(2AD4) }, /* superset subset */
{"\17\20\17\00\17\20\17\00\00", U(2AD5) }, /* subset subset */
{"\36\01\36\00\36\01\36\00\00", U(2AD6) }, /* superset superset */
{"\00\16\25\25\25\25\00\00\00", U(2AD9) }, /* downward element of */
{"\16\04\16\25\25\25\25\00\00", U(2ADA) }, /* tee top pitchfork */
{"\04\16\25\25\25\25\04\00\00", U(2ADB) }, /* transversal i'section */
{"\00\02\02\16\02\02\00\00\00", U(2ADE) }, /* short left tack */
{"\00\00\37\04\04\00\00\00\00", U(2ADF) }, /* short down tack */
{"\00\00\04\04\37\00\00\00\00", U(2AE0) }, /* short up tack */
{"\20\37\20\37\20\37\20\00\00", U(2AE2) }, /* triple rt turnstile */
{"\01\37\01\37\01\37\01\00\00", 0xf11d, "uni2AE2.rtlm" },
{"\00\05\05\35\05\05\00\00\00", U(2AE3) }, /* dbl vert left tstile */
{"\00\01\37\01\37\01\00\00\00", U(2AE4) }, /* dbl left turnstile */
{"\00\05\35\05\35\05\00\00\00", U(2AE5) }, /* dbl v dbl left tstile */
{"\00\24\24\37\24\24\00\00\00", U(2AE6) },
{"\00\05\05\37\05\05\00\00\00", 0xf11e, "uni2AE6.rtlm" },
{"\00\37\00\37\04\04\00\00\00", U(2AE7) }, /* short down tack o'bar */
{"\00\04\04\37\00\37\00\00\00", U(2AE8) }, /* short up tack u'bar */
{"\04\04\37\00\37\04\04\00\00", U(2AE9) }, /* short up down tacks */
{"\00\37\12\12\12\12\00\00\00", U(2AEA) }, /* dbl down tack */
{"\00\12\12\12\12\37\00\00\00", U(2AEB) }, /* dbl up tack */
{"\00\37\01\37\01\01\00\00\00", U(2AEC) }, /* dbl not sign */
{"\00\37\20\37\20\20\00\00\00", U(2AED) }, /* dbl reversed not */
{"\12\12\12\37\12\12\12\00\00", U(2AF2) }, /* dbl v bar h stroke */
{"\25\25\25\25\25\25\25\00\00", U(2AF4) }, /* triple v bar operator */
{"\25\25\25\37\25\25\25\00\00", U(2AF5) }, /* triple v bar h stroke */
{"\25\25\25\25\25\25\25\25\25", U(2AFC) }, /* large triple vert bar */
{"\16\12\12\12\12\12\16\00\00", U(2AFE) }, /* white vert bar */
{"\16\12\12\12\12\12\12\12\16", U(2AFF) }, /* n-ary white vert bar */
/* Miscellaneous symbols and arrows */
{"\00\25\00\21\00\25\00\00\00", U(2B1A) }, /* dottedsquare */
/* Latin extended-C */
{"\21\21\37\21\21\12\04\00\00", U(2C6F) }, /* turned A */
{"\00\00\21\21\37\21\16\00\00", 0xf1bf, "uni2C6F.c2sc" },
{"\00\00\22\25\24\24\10\00\00", U(2C71) }, /* vhook */
{"\00\00\37\01\17\01\37\00\00", U(2C7B) }, /* small cap turned E */
{"\00\00\00\00\04\00\04\04\10", U(2C7C) }, /* jinferior */
{"\16\21\20\16\01\21\16\04\03", U(2C7E) }, /* S with swash tail */
ALIAS("uni2C7E.c2sc", "uni023F"),
{"\37\01\02\04\10\20\30\04\03", U(2C7F) }, /* Z with swash tail */
{"\00\00\37\01\16\20\30\04\03", 0xf1c3, "uni2C7F.c2sc" },
/* Supplemental punctuation */
{"\02\04\10\02\04\10\00\00\00", U(2E17) }, /* dbl oblique hyphen */
{"\00\00\04\00\04\14\24\25\16", U(2E18) }, /* gnaborretni */
{"\12\00\00\16\00\00\00\00\00", U(2E1A) }, /* hyphendieresis */
{"\04\12\04\00\10\25\02\00\00", U(2E1B) }, /* tilde ring above */
{"\04\00\10\25\02\00\00\00\00", U(2E1E) }, /* tilde dot above */
{"\00\00\10\25\02\00\04\00\00", U(2E1F) }, /* tilde dot below */
{"\17\10\10\10\00\00\00\00\00", U(2E22) }, /* top half bracketleft */
{"\36\02\02\02\00\00\00\00\00", U(2E23) }, /* top half bracketright */
{"\00\00\00\10\10\10\17\00\00", U(2E24) }, /* bot half bracketleft */
{"\00\00\00\02\02\02\36\00\00", U(2E25) }, /* bot half bracketright */
{"\11\22\22\22\22\22\11\00\00", U(2E28) }, /* left double paren */
{"\22\11\11\11\11\11\22\00\00", U(2E29) }, /* right double paren */
{"\00\00\21\00\00\00\04\00\00", U(2E2A) }, /* two dots over one */
{"\00\00\04\00\00\00\21\00\00", U(2E2B) }, /* one dot over two */
{"\00\00\21\00\00\00\21\00\00", U(2E2C) }, /* squared four dots */
{"\00\00\04\00\25\00\04\00\00", U(2E2D) }, /* five dot mark */
{"\16\21\10\04\04\00\04\00\00", U(2E2E) }, /* reversed question */
{"\00\00\00\00\00\02\04\04\00", U(2E32) }, /* turned comma */
{"\00\02\04\04\00\00\04\00\00", U(2E35) }, /* turned semicolon */
{"\04\04\34\04\04\04\04\04\04", U(2E36) }, /* dagger w/left guard */
{"\04\04\07\04\04\04\04\04\04", U(2E37) }, /* dagger w/right guard */
{"\04\04\04\04\04\04\37\04\04", U(2E38) }, /* turned dagger */
{"\16\21\20\16\21\16\00\00\00", U(2E39) }, /* top half section */
{"\00\00\16\00\16\00\00\00\00", U(2E40) }, /* double hyphen */
{"\00\00\00\00\00\04\04\02\00", U(2E41) }, /* reversed comma */
{"\00\00\00\00\00\22\22\11\00", U(2E42) }, /* dbl low rev9 quote */
{"\04\04\37\04\37\04\37\04\04", U(2E4B) }, /* triple dagger */
{"\17\10\10\34\10\10\17\00\00", U(2E55) }, /* bracketleft stroke */
ALIAS("uni2E55.rtlm", "uni2E56"),
{"\36\02\02\07\02\02\36\00\00", U(2E56) }, /* bracketright stroke */
ALIAS("uni2E56.rtlm", "uni2E55"),
{"\17\10\34\10\34\10\17\00\00", U(2E57) }, /* bracketleft dbl strk */
ALIAS("uni2E57.rtlm", "uni2E58"),
{"\36\02\07\02\07\02\36\00\00", U(2E58) }, /* bracketright dbl strk */
ALIAS("uni2E58.rtlm", "uni2E57"),
{"\02\04\10\10\00\00\00\00\00", U(2E59) }, /* top half parenleft */
ALIAS("uni2E59.rtlm", "uni2E5A"),
{"\10\04\02\02\00\00\00\00\00", U(2E5A) }, /* top half parenright */
ALIAS("uni2E5A.rtlm", "uni2E59"),
{"\00\00\00\10\10\04\02\00\00", U(2E5B) }, /* bot half parenleft */
ALIAS("uni2E5B.rtlm", "uni2E5C"),
{"\00\00\00\02\02\04\10\00\00", U(2E5C) }, /* bot half parenright */
ALIAS("uni2E5C.rtlm", "uni2E5B"),
{"\00\00\02\04\10\00\00\00\00", U(2E5D) }, /* oblique hyphen */
/* Latin extended-D */
{"\21\21\21\37\21\21\21\01\16", U(A726) }, /* Heng */
{"\00\00\21\21\37\21\21\01\16", 0xf1c4, "uniA726.c2sc" },
{"\20\20\36\21\21\21\21\01\06", U(A727) }, /* heng */
ALIAS("uniA727.sc", "uniA726.c2sc"),
{"\00\00\37\20\36\20\20\00\00", U(A730) }, /* small cap F */
{"\00\00\17\20\16\01\36\00\00", U(A731) }, /* small cap S */
{"\37\01\01\01\01\01\01\00\00", U(A780) }, /* turned L */
{"\16\04\04\04\04\04\06\00\00", U(A781) }, /* turned l */
{"\21\21\21\37\01\01\01\00\00", U(A78D) }, /* cap turned h */
{"\06\11\10\34\10\11\06\00\00", U(A792) }, /* C with bar */
{"\00\00\06\11\34\11\06\00\00", 0xf1c5, "uniA792.c2sc" },
{"\00\00\07\10\34\10\07\00\00", U(A793) }, /* c with bar */
ALIAS("uniA793.sc", "uniA792.c2sc"),
{"\11\31\11\17\11\11\11\00\00", U(A7AA) }, /* H with hook */
{"\00\00\11\31\17\11\11\00\00", 0xf1c6, "uniA7AA.c2sc" },
{"\16\21\01\06\01\21\16\00\00", U(A7AB) }, /* reversed Epsilon */
{"\00\00\16\21\06\21\16\00\00", 0xf1c7, "uniA7AB.c2sc" },
{"\04\04\14\25\16\04\07\00\00", U(A7AD) }, /* belted L */
{"\00\00\14\25\16\04\07\00\00", 0xf1c8, "uniA7AD.c2sc" },
{"\37\25\04\04\04\25\37\00\00", U(A7AE) }, /* cap small-cap I */
{"\00\00\37\25\04\25\37\00\00", 0xf1c9, "uniA7AE.c2sc" },
{"\00\00\16\21\25\22\15\00\00", U(A7AF) }, /* small cap Q */
{"\21\11\05\03\05\11\21\00\00", U(A7B0) }, /* turned K */
{"\00\00\21\11\07\11\21\00\00", 0xf1ca, "uniA7B0.c2sc" },
{"\04\04\04\04\04\04\37\00\00", U(A7B1) }, /* turned T */
{"\00\00\04\04\04\04\37\00\00", 0xf1cb, "uniA7B1.c2sc" },
{"\01\01\01\11\25\25\16\04\00", U(A7B2) }, /* crossed-tail J */
{"\00\00\01\01\11\25\16\04\00", 0xf1cc, "uniA7B2.c2sc" },
{"\37\01\01\17\01\01\01\00\00", U(A7FB) }, /* reversed F */
{"\17\21\21\17\01\01\01\00\00", U(A7FC) }, /* reversed P */
{"\21\21\21\25\25\33\21\00\00", U(A7FD) }, /* inverted M */
/* Private use area */
/* U+EE00--U+EE7F: zvbi mosaic graphics */
#define M(x) {{(0x##x & 0x1f)|((0x##x & 0x40)>>1)}, U(EE##x), \
(0x##x & 0x20 ? SEP6 : MOS6)}
M(00), M(01), M(02), M(03), M(04), M(05), M(06), M(07),
M(08), M(09), M(0A), M(0B), M(0C), M(0D), M(0E), M(0F),
M(10), M(11), M(12), M(13), M(14), M(15), M(16), M(17),
M(18), M(19), M(1A), M(1B), M(1C), M(1D), M(1E), M(1F),
M(20), M(21), M(22), M(23), M(24), M(25), M(26), M(27),
M(28), M(29), M(2A), M(2B), M(2C), M(2D), M(2E), M(2F),
M(30), M(31), M(32), M(33), M(34), M(35), M(36), M(37),
M(38), M(39), M(3A), M(3B), M(3C), M(3D), M(3E), M(3F),
M(40), M(41), M(42), M(43), M(44), M(45), M(46), M(47),
M(48), M(49), M(4A), M(4B), M(4C), M(4D), M(4E), M(4F),
M(50), M(51), M(52), M(53), M(54), M(55), M(56), M(57),
M(58), M(59), M(5A), M(5B), M(5C), M(5D), M(5E), M(5F),
M(60), M(61), M(62), M(63), M(64), M(65), M(66), M(67),
M(68), M(69), M(6A), M(6B), M(6C), M(6D), M(6E), M(6F),
M(70), M(71), M(72), M(73), M(74), M(75), M(76), M(77),
M(78), M(79), M(7A), M(7B), M(7C), M(7D), M(7E), M(7F),
#undef M
/*
* Characters in the private use area are used for Bedstead glyphs
* that would otherwise be unencoded so as to make them easier to
* use. These encodings should be stable, but they do not use uniXXXX
* glyph names. They appear scattered across the glyph list, and not
* here.
*/
/* Alphabetic presentation forms */
{"\06\10\36\12\12\12\17\00\00", 0xfb01, "fi" },
{"\06\12\12\36\12\12\17\00\00", 0xfb02, "fl" },
/* Halfwidth and fullwidth forms */
{"\04\04\04\04\04\04\04\04\04", U(FFE8) }, /* halfwidth U+2502 */
{"\00\04\10\37\10\04\00\00\00", U(FFE9) }, /* halfwidth U+2190 */
{"\00\04\16\25\04\04\00\00\00", U(FFEA) }, /* halfwidth U+2191 */
{"\00\04\02\37\02\04\00\00\00", U(FFEB) }, /* halfwidth U+2192 */
{"\00\04\04\25\16\04\00\00\00", U(FFEC) }, /* halfwidth U+2193 */
{"\37\37\37\37\37\37\37\00\00", U(FFED) }, /* halfwidth U+25A0 */
{"\00\16\21\21\21\16\00\00\00", U(FFEE) }, /* halfwidth U+25CB */
/* Specials */
{"\16\21\25\11\16\12\16\00\00", U(FFFD) }, /* replacement */
/* Shavian */
{"\30\04\04\04\04\04\04\00\00", U(10450) }, /* peep */
{"\14\24\04\04\04\04\04\00\00", U(10451) }, /* tot */
{"\04\04\04\14\20\20\14\00\00", U(10452) }, /* kick */
{"\04\04\04\04\04\04\30\00\00", U(10453) }, /* fee */
{"\14\02\01\17\21\21\16\00\00", U(10454) }, /* thigh */
{"\17\20\16\01\01\01\36\00\00", U(10455) }, /* so */
{"\01\02\04\10\20\20\16\00\00", U(10456) }, /* sure */
{"\15\22\04\10\20\20\16\00\00", U(10457) }, /* church */
{"\20\20\10\04\02\01\01\00\00", U(10458) }, /* yea */
{"\04\12\21\12\04\12\21\00\00", U(10459) }, /* hung */
{"\00\00\04\04\04\04\04\04\03", U(1045A) }, /* bib */
{"\00\00\04\04\04\04\04\05\06", U(1045B) }, /* dead */
{"\00\00\06\01\01\06\04\04\04", U(1045C) }, /* gag */
{"\00\00\03\04\04\04\04\04\04", U(1045D) }, /* vow */
{"\00\00\16\21\21\36\20\10\06", U(1045E) }, /* they */
{"\00\00\36\01\01\01\16\20\17", U(1045F) }, /* zoo */
{"\00\00\16\01\01\02\04\10\20", U(10460) }, /* measure */
{"\00\00\16\01\01\02\04\11\26", U(10461) }, /* judge */
{"\00\00\01\01\02\04\10\20\20", U(10462) }, /* woe */
{"\00\00\21\12\04\12\21\12\04", U(10463) }, /* ha-ha */
{"\00\00\17\20\20\20\17\00\00", U(10464) }, /* loll */
{"\00\00\03\02\04\10\30\00\00", U(10465) }, /* mime */
{"\00\00\04\04\04\04\04\00\00", U(10466) }, /* if */
{"\00\00\04\04\04\04\03\00\00", U(10467) }, /* egg */
{"\00\00\04\04\04\04\30\00\00", U(10468) }, /* ash */
{"\00\00\03\04\04\04\04\00\00", U(10469) }, /* ado */
{"\00\00\30\04\04\04\04\00\00", U(1046A) }, /* on */
{"\00\00\21\21\12\12\04\00\00", U(1046B) }, /* wool */
{"\00\00\04\10\34\04\02\00\00", U(1046C) }, /* out */
{"\00\00\06\10\07\02\34\00\00", U(1046D) }, /* ah */
{"\00\00\36\01\01\01\36\00\00", U(1046E) }, /* roar */
{"\00\00\30\10\04\02\03\00\00", U(1046F) }, /* nun */
{"\00\00\20\23\25\31\01\00\00", U(10470) }, /* eat */
{"\00\00\37\20\10\04\03\00\00", U(10471) }, /* age */
{"\00\00\37\01\02\04\30\00\00", U(10472) }, /* ice */
{"\00\00\37\01\16\20\20\00\00", U(10473) }, /* up */
{"\00\00\16\21\21\21\16\00\00", U(10474) }, /* oak */
{"\00\00\04\12\12\21\21\00\00", U(10475) }, /* ooze */
{"\00\00\30\07\02\04\10\00\00", U(10476) }, /* oil */
{"\00\00\34\03\01\02\01\00\00", U(10477) }, /* awe */
{"\00\00\16\22\21\11\32\00\00", U(10478) }, /* are */
{"\00\00\13\22\21\11\16\00\00", U(10479) }, /* or */
{"\00\00\16\21\11\21\22\00\00", U(1047A) }, /* air */
{"\00\00\11\21\22\21\16\00\00", U(1047B) }, /* err */
{"\00\00\06\11\21\21\26\00\00", U(1047C) }, /* array */
{"\00\00\26\31\21\21\26\00\00", U(1047D) }, /* ear */
{"\00\00\27\30\20\20\20\00\00", U(1047E) }, /* ian */
{"\00\00\20\20\22\25\15\00\00", U(1047F) }, /* yew */
/* Musical symbols */
{"\04\04\04\04\04\04\04\04\04", U(1D100) }, /* bar line */
{"\12\12\12\12\12\12\12\12\12", U(1D101) }, /* double bar line */
{"\13\13\13\13\13\13\13\13\13", U(1D102) }, /* final bar line */
{"\32\32\32\32\32\32\32\32\32", U(1D103) }, /* reversed ditto */
{"\04\04\00\04\04\04\00\04\04", U(1D104) }, /* dashed bar line */
{"\00\00\04\04\04\04\04\00\00", U(1D105) }, /* short bar line */
{"\24\24\24\25\24\25\24\24\24", U(1D106) }, /* start repeat */
{"\05\05\05\25\05\25\05\05\05", U(1D107) }, /* end repeat */
{"\00\00\00\04\00\04\00\00\00", U(1D108) }, /* repeat dots */
{"\10\24\21\12\04\12\21\05\02", U(1D10B) }, /* segno */
{"\16\21\25\00\00\00\00\00\00", U(1D110) }, /* fermata */
{"\00\00\00\00\00\00\25\21\16", U(1D111) }, /* fermata below */
{"\00\00\00\00\37\00\00\00\00", U(1D116) }, /* 1-line stave */
{"\00\00\00\37\00\37\00\00\00", U(1D117) }, /* 2-line stave */
{"\00\00\37\00\37\00\37\00\00", U(1D118) }, /* 3-line stave */
{"\00\37\00\37\00\37\00\37\00", U(1D119) }, /* 4-line stave */
{"\37\00\37\00\37\00\37\00\37", U(1D11A) }, /* 5-line stave */
{"\04\12\12\12\14\26\25\16\04", U(1D11E) }, /* G clef */
{"\25\25\25\26\24\26\25\25\25", U(1D121) }, /* C clef */
{"\10\25\04\05\10\20\00\00\00", U(1D122) }, /* F clef */
{"\00\33\33\04\33\33\00\00\00", U(1D12A) }, /* double sharp */
{"\04\24\27\35\25\26\30\00\00", U(1D12B) }, /* double flat */
{"\00\00\37\16\37\00\00\00\00", U(1D13A) }, /* breve rest */
{"\00\00\37\16\00\00\00\00\00", U(1D13B) }, /* semibreve rest */
{"\00\00\00\16\37\00\00\00\00", U(1D13C) }, /* minim rest */
/* Mathematical alphanumeric symbols */
{"\16\25\25\35\25\25\27\00\00", U(1D538) }, /* double-struck A */
{"\36\25\25\26\25\25\36\00\00", U(1D539) }, /* double-struck B */
{"\36\25\25\25\25\25\36\00\00", U(1D53B) }, /* double-struck D */
{"\37\24\24\26\24\24\37\00\00", U(1D53C) }, /* double-struck E */
{"\37\24\24\26\24\24\34\00\00", U(1D53D) }, /* double-struck F */
{"\16\25\24\24\27\25\17\00\00", U(1D53E) }, /* double-struck G */
{"\37\12\12\12\12\12\37\00\00", U(1D540) }, /* double-struck I */
{"\07\05\05\05\05\25\16\00\00", U(1D541) }, /* double-struck J */
{"\35\25\25\26\25\25\35\00\00", U(1D542) }, /* double-struck K */
{"\34\24\24\24\24\24\37\00\00", U(1D543) }, /* double-struck L */
{"\21\33\25\25\25\25\27\00\00", U(1D544) }, /* double-struck M */
{"\16\25\25\25\25\25\16\00\00", U(1D546) }, /* double-struck O */
{"\17\24\22\11\05\05\36\00\00", U(1D54A) }, /* double-struck S */
{"\37\12\12\12\12\12\16\00\00", U(1D54B) }, /* double-struck T */
{"\35\25\25\25\25\25\16\00\00", U(1D54C) }, /* double-struck U */
{"\35\25\22\12\12\04\04\00\00", U(1D54D) }, /* double-struck V */
{"\35\25\25\25\25\25\12\00\00", U(1D54E) }, /* double-struck W */
{"\35\25\22\12\11\25\27\00\00", U(1D54F) }, /* double-struck X */
{"\35\25\22\12\12\12\16\00\00", U(1D550) }, /* double-struck Y */
{"\00\00\16\05\15\25\17\00\00", U(1D552) }, /* double-struck a */
{"\34\24\26\25\25\25\36\00\00", U(1D553) }, /* double-struck b */
{"\00\00\17\24\24\24\17\00\00", U(1D554) }, /* double-struck c */
{"\07\05\15\25\25\25\17\00\00", U(1D555) }, /* double-struck d */
{"\00\00\16\25\27\24\16\00\00", U(1D556) }, /* double-struck e */
{"\07\12\12\33\12\12\16\00\00", U(1D557) }, /* double-struck f */
{"\00\00\17\25\25\25\17\01\16", U(1D558) }, /* double-struck g */
{"\34\24\26\25\25\25\35\00\00", U(1D559) }, /* double-struck h */
{"\16\00\36\12\12\12\37\00\00", U(1D55A) }, /* double-struck i */
{"\16\00\16\12\12\12\12\12\34", U(1D55B) }, /* double-struck j */
{"\34\24\25\25\26\25\35\00\00", U(1D55C) }, /* double-struck k */
{"\36\12\12\12\12\12\37\00\00", U(1D55D) }, /* double-struck l */
{"\00\00\32\25\25\25\35\00\00", U(1D55E) }, /* double-struck m */
{"\00\00\36\25\25\25\35\00\00", U(1D55F) }, /* double-struck n */
{"\00\00\16\25\25\25\16\00\00", U(1D560) }, /* double-struck o */
{"\00\00\36\25\25\25\26\24\34", U(1D561) }, /* double-struck p */
{"\00\00\17\25\25\25\15\05\07", U(1D562) }, /* double-struck q */
{"\00\00\35\26\24\24\34\00\00", U(1D563) }, /* double-struck r */
{"\00\00\17\22\11\05\36\00\00", U(1D564) }, /* double-struck s */
{"\16\12\33\12\12\12\07\00\00", U(1D565) }, /* double-struck t */
{"\00\00\27\25\25\25\17\00\00", U(1D566) }, /* double-struck u */
{"\00\00\35\25\22\12\04\00\00", U(1D567) }, /* double-struck v */
{"\00\00\35\25\25\25\12\00\00", U(1D568) }, /* double-struck w */
{"\00\00\35\22\12\11\27\00\00", U(1D569) }, /* double-struck x */
{"\00\00\27\25\25\25\17\01\16", U(1D56A) }, /* double-struck y */
{"\00\00\37\11\12\22\37\00\00", U(1D56B) }, /* double-struck z */
/* Transport and map symbols */
{"\04\12\12\12\33\33\25\00\00", U(1F680) }, /* rocket */
{"\00\34\10\11\27\10\00\00\00", U(1F681) }, /* helicopter */
{"\00\00\13\36\37\25\00\00\00", U(1F682) }, /* steamlocomotive */
{"\00\07\17\27\37\11\00\00\00", U(1F69A) }, /* deliverytruck */
/* Symbols for legacy computing */
{"\30\24\22\21\27\30\00\00\00", U(1FBB0) }, /* arrowheadptr */
{"\00\12\33\00\33\12\00\00\00", U(1FBBB) }, /* voided Greek cross */
{"\00\37\01\05\01\37\00\00\00", U(1FBBC) }, /* right open square dot */
{"\12\25\21\12\21\25\12\00\00", U(1FBC0) }, /* RISC OS close button */
{"\37\21\35\31\37\33\37\00\00", U(1FBC4) }, /* invquestion */
{"\04\12\12\04\37\04\04\12\21", U(1FBC5) }, /* stick figure */
{"\04\12\12\04\25\16\04\12\21", U(1FBC6) }, /* ... with arms up */
{"\04\12\12\04\15\26\04\12\11", U(1FBC7) }, /* ... leaning left */
{"\04\12\12\04\26\15\04\12\22", U(1FBC8) }, /* ... leaning right */
{"\04\12\12\04\37\12\21\37\12", U(1FBC9) }, /* ... wearing dress */
{"\04\12\21\21\25\33\21\00\00", U(1FBCA) }, /* white chevron up */
/*
* Backward compatibility aliases. These are glyphs whose name has
* changed and where we want to keep the old name working. The first
* group were added in Bedstead 002.002.
*/
ALIAS("uni2126", "Omega"),
ALIAS("uni2295", "circleplus"),
#define UA(u) ALIAS("uni" #u, "u" #u)
UA(10450), UA(10451), UA(10452), UA(10453), UA(10454), UA(10455), UA(10456),
UA(10457), UA(10458), UA(10459), UA(1045A), UA(1045B), UA(1045C), UA(1045D),
UA(1045E), UA(1045F), UA(10460), UA(10461), UA(10462), UA(10463), UA(10464),
UA(10465), UA(10466), UA(10467), UA(10468), UA(10469), UA(1046A), UA(1046B),
UA(1046C), UA(1046D), UA(1046E), UA(1046F), UA(10470), UA(10471), UA(10472),
UA(10473), UA(10474), UA(10475), UA(10476), UA(10477), UA(10478), UA(10479),
UA(1047A), UA(1047B), UA(1047C), UA(1047D), UA(1047E), UA(1047F), UA(1F680),
UA(1F681), UA(1F682), UA(1F69A), UA(1FBB0), UA(1FBBB), UA(1FBBC), UA(1FBC0),
UA(1FBC4), UA(1FBC5), UA(1FBC6), UA(1FBC7), UA(1FBC8), UA(1FBC9), UA(1FBCA),
#undef UA
#define UA6(u) ALIAS("uni" #u, "u" #u), ALIAS("uni" #u ".sep6", "u" #u ".sep6")
UA6(1FB00), UA6(1FB01), UA6(1FB02),
UA6(1FB03), UA6(1FB04), UA6(1FB05), UA6(1FB06),
UA6(1FB07), UA6(1FB08), UA6(1FB09), UA6(1FB0A),
UA6(1FB0B), UA6(1FB0C), UA6(1FB0D), UA6(1FB0E),
UA6(1FB0F), UA6(1FB10), UA6(1FB11), UA6(1FB12),
UA6(1FB13), UA6(1FB14), UA6(1FB15),
UA6(1FB16), UA6(1FB17), UA6(1FB18), UA6(1FB19),
UA6(1FB1A), UA6(1FB1B), UA6(1FB1C), UA6(1FB1D),
UA6(1FB1E), UA6(1FB1F), UA6(1FB20), UA6(1FB21),
UA6(1FB22), UA6(1FB23), UA6(1FB24), UA6(1FB25),
UA6(1FB26), UA6(1FB27), UA6(1FB28),
UA6(1FB29), UA6(1FB2A), UA6(1FB2B), UA6(1FB2C),
UA6(1FB2D), UA6(1FB2E), UA6(1FB2F), UA6(1FB30),
UA6(1FB31), UA6(1FB32), UA6(1FB33), UA6(1FB34),
UA6(1FB35), UA6(1FB36), UA6(1FB37), UA6(1FB38),
UA6(1FB39), UA6(1FB3A), UA6(1FB3B),
#undef UA6
/*
* Further compatibility aliases, added in 002.007 when Unicode 16
* gave proper code points for separated 6-cell mosaic graphics. Not
* actually implemented as aliases because it's simpler to directly
* generate the glyphs.
*/
#define M(u) { {0x ## u * 21 / 20 + 1}, -1, "u1FB" #u ".sep6", SEP6 }
/* */ M(00), M(01), M(02), M(03), M(04), M(05), M(06),
M(07), M(08), M(09), M(0A), M(0B), M(0C), M(0D), M(0E),
M(0F), M(10), M(11), M(12), M(13), M(14), M(15),
M(16), M(17), M(18), M(19), M(1A), M(1B), M(1C), M(1D),
M(1E), M(1F), M(20), M(21), M(22), M(23), M(24), M(25),
M(26), M(27), M(28), M(29), M(2A), M(2B), M(2C),
M(2D), M(2E), M(2F), M(30), M(31), M(32), M(33), M(34),
M(35), M(36), M(37), M(38), M(39), M(3A), M(3B),
#undef M
ALIAS("lfblock.sep6", "u1CE65"),
ALIAS("rtblock.sep6", "u1CE7A"),
ALIAS("block.sep6", "u1CE8F"),
/* Compatibility alias added after 002.009. */
ALIAS("Wdieresis.sc", "wdieresis"),
/* and finally */
{"\37\21\21\21\21\21\37\00\00", 0xf1ff, ".notdef" },
};
#undef U
#define NGLYPHS (sizeof(glyphs) / sizeof(glyphs[0]))
static int const nglyphs = NGLYPHS;
static struct glyph const *glyphs_by_name[NGLYPHS];
static void dolookups(struct glyph const *);
static bool
getpix(char const data[YSIZE - 1], int x, int y, unsigned flags)
{
/*
* Pixel co-ordinates count from (0,0) in the top left of the
* character cell. In the glyph array, the top row isn't
* represented and the columns are right-aligned in a char.
* Like the top row, the left column of the character cell
* always reads as 0.
*/
if (flags & LINE) {
/* Line-drawing characters repeat top row and left column. */
if (x == 0) x = 1;
if (y == 0) y = 1;
}
if (x < 1 || x >= XSIZE || y < 1 || y >= YSIZE)
return 0;
else
return (data[y - 1] >> (XSIZE - x - 1)) & 1;
}
static bool plottermode = false;
static char *
get_fullname(void)
{
#define FULLNAME_MAX 100
static char fullname[FULLNAME_MAX];
sprintf(fullname, "Bedstead%s%s", weight->suffix, width->suffix);
return fullname;
}
static char *
fullname_to_fontname(char const *fullname)
{
#define FONTNAME_MAX 29 /* Adobe-recommended limit */
static char fontname[FONTNAME_MAX + 1];
char *op = fontname;
char const *p = fullname;
bool gotfamily = false;
while (*p != '\0') {
assert(op - fontname <= FONTNAME_MAX);
if (*p == ' ') {
if (!gotfamily) {
*op++ = '-';
gotfamily = true;
}
} else {
*op++ = *p;
}
++p;
}
*op++ = '\0';
return fontname;
}
static int
compare_glyphs_by_name(const void *va, const void *vb)
{
struct glyph const * const *ap = va, * const *bp = vb;
struct glyph const *a = *ap, *b = *bp;
return strcmp(a->name, b->name);
}
static int
compare_glyph_to_name(const void *vn, const void *vg)
{
struct glyph const * const *gp = vg;
struct glyph const *g = *gp;
char const *name = vn;
return strcmp(name, g->name);
}
static struct glyph const *
get_glyph_by_name(char const *name)
{
struct glyph const * const *gp;
gp = bsearch(name, glyphs_by_name, nglyphs,
sizeof(glyphs_by_name[0]), &compare_glyph_to_name);
assert(gp != NULL);
return *gp;
}
/*
* Compare glyphs in a way that will put them in an order that
* FontForge won't change. This should mean that our glyph IDs match
* FontForge's, so that we can use them in tables that FontForge
* doesn't understand.
*/
static int
compare_glyphs_by_ffid(const void *va, const void *vb)
{
struct glyph const *a = va, *b = vb;
/* .notdef comes first. */
if (strcmp(a->name, ".notdef") == 0) return -1;
if (strcmp(b->name, ".notdef") == 0) return +1;
/* Then characters with Unicode code-points in order. */
if ((unsigned)a->unicode < (unsigned)b->unicode) return -1;
if ((unsigned)a->unicode > (unsigned)b->unicode) return +1;
/* Finally sort by glyph name for an arbitrary stable order. */
return strcmp(a->name, b->name);
}
int
main(int argc, char **argv)
{
int i;
int extraglyphs = 0;
char *endptr;
if (argc == 2 && strcmp(argv[1], "--complement") == 0) {
glyph_complement();
return EXIT_SUCCESS;
}
while (argc > 1) {
for (i = 0; i < nwidths; i++)
if (strcmp(argv[1], widths[i].option) == 0) {
width = &widths[i];
argv++; argc--;
goto next;
}
for (i = 0; i < nweights; i++)
if (strcmp(argv[1], weights[i].option) == 0) {
weight = &weights[i];
argv++; argc--;
goto next;
}
if (strcmp(argv[1], "--plotter") == 0) {
plottermode = true;
argv++; argc--;
} else if (strcmp(argv[1], "--") == 0) {
argv++; argc--;
break;
} else if (argv[1][0] == '-') {
fprintf(stderr, "unknown option '%s'\n", argv[1]);
return EXIT_FAILURE;
} else break;
argv++; argc--;
next:;
}
if (argc > 1) {
char data[YSIZE];
int i, y;
unsigned long u;
for (y = 0; y < YSIZE; y++)
data[y] = 0;
y = 0;
for (i = 1; i < argc; i++) {
if (y >= YSIZE) {
fprintf(stderr, "too many arguments\n");
return EXIT_FAILURE;
}
u = strtoul(argv[i], &endptr, 0);
if (u > 077 || !argv[i] || *endptr) {
fprintf(stderr, "invalid argument \"%s\"\n",
argv[i]);
return EXIT_FAILURE;
}
data[y++] = u;
}
dochar(data, 0);
return EXIT_SUCCESS;
}
/* Put glyphs into FontForge-compatible order. */
qsort(glyphs, nglyphs, sizeof(glyphs[0]), &compare_glyphs_by_ffid);
for (i = 0; i < nglyphs; i++)
if (glyphs[i].unicode == -1)
extraglyphs++;
printf("SplineFontDB: 3.0\n");
printf("FontName: %s\n", fullname_to_fontname(get_fullname()));
printf("FullName: %s\n", get_fullname());
printf("FamilyName: Bedstead\n");
if ((weight->ttfweight == 500 || weight->ttfweight == 700) &&
width->suffix[0] == '\0')
/* Normal width; regular or bold */
printf("LangName: 1033 \"\" \"Bedstead\" \"%s\"\n",
weight->suffix[0] ? weight->suffix + 1 : "Regular");
else
/*
* Slightly unusual face, so we need to set the
* "Preferred" family and style.
*/
printf("LangName: 1033 \"\" \"Bedstead%s%s\" \"%s\" \"\" \"\" "
"\"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\" \"\" "
"\"\" \"Bedstead\" \"%s%s\"\n",
weight->ttfweight == 700 ? "" : weight->suffix,
width->suffix,
weight->ttfweight == 700 ? weight->suffix+1 : "Regular",
weight->suffix[0] ? weight->suffix+1 : "",
weight->suffix[0] ? width->suffix :
width->suffix[0] ? width->suffix+1 : "");
printf("Weight:%s\n", weight->suffix[0] ? weight->suffix : " Medium");
printf("OS2_WeightWidthSlopeOnly: 1\n");
printf("Copyright: Dedicated to the public domain\n");
printf("Version: 002.009\n");
printf("ItalicAngle: 0\n");
printf("UnderlinePosition: %g\n", (double)(-3 * YPIX / 2));
printf("UnderlineWidth: %g\n", (double)(YPIX));
printf("OS2StrikeYPos: %d\n", (int)(3 * YPIX));
printf("OS2StrikeYSize: %d\n", (int)(YPIX));
printf("Ascent: %g\n", (double)(8 * YPIX));
printf("Descent: %g\n", (double)(2 * YPIX));
/* Sub/Superscript are three by five pixels */
printf("OS2SubXSize: %d\n", (int)(YSIZE * YPIX * 3 / (XSIZE - 1)));
printf("OS2SupXSize: %d\n", (int)(YSIZE * YPIX * 3 / (XSIZE - 1)));
printf("OS2SubYSize: %d\n", (int)(YSIZE * YPIX * 5 / (YSIZE - 3)));
printf("OS2SupYSize: %d\n", (int)(YSIZE * YPIX * 5 / (YSIZE - 3)));
printf("OS2SubXOff: 0\n");
printf("OS2SupXOff: 0\n");
printf("OS2SubYOff: %d\n", (int)(2 * YPIX));
printf("OS2SupYOff: %d\n", (int)(2 * YPIX));
printf("FSType: 0\n");
printf("TTFWeight: %d\n", weight->ttfweight);
printf("TTFWidth: %d\n", width->ttfwidth);
dopanose();
printf("OS2Vendor: 'PfEd'\n");
printf("OS2FamilyClass: %d\n", 0x080a);
printf("LayerCount: 2\n");
printf("Layer: 0 0 \"Back\" 1\n");
printf("Layer: 1 0 \"Fore\" 0\n");
printf("Encoding: UnicodeFull\n");
printf("NameList: Adobe Glyph List\n");
printf("DisplaySize: -24\n");
printf("AntiAlias: 1\n");
printf("FitToEm: 1\n");
if (plottermode) {
printf("StrokedFont: 1\n");
printf("StrokeWidth: 50\n");
}
printf("BeginPrivate: 5\n");
printf(" StdHW 6 [%4g]\n", (double)YPIX);
printf(" StdVW 6 [%4g]\n",
(double)(XPIX * (100 + weight->weight) / 100));
printf(" BlueValues 35 [0 0 %4g %4g %4g %4g %4g %4g]\n",
(double)(YPIX * 5), (double)(YPIX * 5),
(double)(YPIX * 6), (double)(YPIX * 6),
(double)(YPIX * 7), (double)(YPIX * 7));
printf(" OtherBlues 21 [%4g %4g %4g %4g]\n",
(double)(YPIX * -2), (double)(YPIX * -2),
(double)(YPIX * 1), (double)(YPIX * 1));
printf(" BlueFuzz 1 0\n");
printf("EndPrivate\n");
printf("Lookup: 3 0 0 \"aalt: all alternates\" {\"aalt\"} "
"['aalt' ('DFLT' <'dflt'> 'latn' <'dflt'>)]\n");
printf("Lookup: 1 0 0 \"smcp: lower-case to small caps\" "
"{\"smcp\" (\"sc\")} "
"['smcp' ('latn' <'dflt'>)]\n");
printf("Lookup: 1 0 0 \"c2sc: upper-case to small caps\" "
"{\"c2sc\" (\"c2sc\")} "
"['c2sc' ('latn' <'dflt'>)]\n");
printf("Lookup: 1 0 0 \"rtlm: right-to-left mirrored forms\" "
"{\"rtlm\" (\"rtlm\")} "
"['rtlm' ('DFLT' <'dflt'> 'latn' <'dflt'>)]\n");
printf("Lookup: 1 0 0 \"ss01: SAA5051 forms\" {\"ss01\" (\"saa5051\")} "
"['ss01' ('DFLT' <'dflt'> 'latn' <'dflt'>)]\n");
printf("OtfFeatName: 'ss01' 1033 \"SAA5051\"\n");
printf("Lookup: 1 0 0 \"ss02: SAA5052 forms\" {\"ss02\" (\"saa5052\")} "
"['ss02' ('DFLT' <'dflt'> 'latn' <'dflt'>)]\n");
printf("OtfFeatName: 'ss02' 1033 \"SAA5052\"\n");
printf("Lookup: 1 0 0 \"ss04: SAA5054 forms\" {\"ss04\" (\"saa5054\")} "
"['ss04' ('DFLT' <'dflt'> 'latn' <'dflt'>)]\n");
printf("OtfFeatName: 'ss04' 1033 \"SAA5054\"\n");
printf("Lookup: 1 0 0 \"ss14: 4-cell separated graphics\" "
"{\"ss14\" (\"sep4\")} "
"['ss14' ('DFLT' <'dflt'> 'latn' <'dflt'>)]\n");
printf("OtfFeatName: 'ss14' 1033 \"4-cell separated graphics\"\n");
printf("Lookup: 1 0 0 \"ss16: 6-cell separated graphics\" "
"{\"ss16\" (\"sep6\")} "
"['ss16' ('DFLT' <'dflt'> 'latn' <'dflt'>)]\n");
printf("OtfFeatName: 'ss16' 1033 \"6-cell separated graphics\"\n");
printf("Lookup: 257 0 0 \"palt: proportional metrics\" {\"palt\"} "
"['palt' ('DFLT' <'dflt'> 'latn' <'dflt'>)]\n");
printf("BeginChars: %ld %d\n", 0x110000L + extraglyphs, nglyphs);
extraglyphs = 0;
for (i = 0; i < nglyphs; i++)
glyphs_by_name[i] = glyphs + i;
qsort(glyphs_by_name, nglyphs, sizeof(glyphs_by_name[0]),
&compare_glyphs_by_name);
for (i = 0; i < nglyphs; i++) {
printf("\nStartChar: %s\n", glyphs[i].name);
printf("Encoding: %ld %ld %d\n",
(long)(glyphs[i].unicode != -1 ? glyphs[i].unicode :
0x110000 + extraglyphs++),
(long)glyphs[i].unicode, i);
printf("Width: %g\n", (double)(XSIZE * XPIX));
if (glyphs[i].flags & (MOS6|MOS4))
printf("Flags: W\n");
else
printf("Flags: HW\n");
printf("LayerCount: 2\n");
dolookups(&glyphs[i]);
if (glyphs[i].flags & IS_ALIAS)
doalias(glyphs[i].alias_of);
else if (glyphs[i].flags & MOS6)
domosaic(glyphs[i].data[0],
(glyphs[i].flags & SEP) != 0);
else if (glyphs[i].flags & MOS4)
domosaic4(glyphs[i].data[0],
(glyphs[i].flags & SEP) != 0);
else {
if (plottermode)
dochar_plotter(glyphs[i].data, glyphs[i].flags);
else
dochar(glyphs[i].data, glyphs[i].flags);
}
printf("EndChar\n");
}
printf("EndChars\n");
printf("EndSplineFont\n");
return EXIT_SUCCESS;
}
static void
dopanose(void)
{
/*
* PANOSE is a complex font categorisation scheme. It's not
* entirely unused, and is a mandatory part of the 'OS/2'
* table, so it would be nice to get it right. This procedure
* calculates the PANOSE code for a Bedstead variant based on
* its design parameters.
*
* See <http://panose.com> for the full details.
*
* PANOSE has some rules that divert Latin Text fonts into the
* Latin Decorative category. One applies if ConRat > 1.
* However, by definition ConRat is at most 1, so this never
* applies. The other case is for very wide or narrow fonts,
* but this is checked after checking for monospaced fonts,
* and Bedstead is monospaced. Thus all Bedstead variants can
* be treated as Latin Text fonts.
*/
int panose[10];
int stdvw;
assert(YPIX == 100); /* Make sums easier. */
panose[0] = 2; /* Latin Text */
/*
* WStem(I) = stdvw
* FootWid = 2 * XPIX + stdvw
* FootRat = 2 * XPIX / stdvw
* FootRat exceeds 1.6, but A, E, H and N are sans-serif
* So re-calculate FootRat based on H
* WStem(H) = stdvw
* FootWid(H) = stdvw
* FootRat(H) = 1
* So Bedstead is Sans Serif
* Flared excluded by FootRat
* StemCor = 0
* RonRat = 0
* Rounded excluded by RonRat
* FootPitch = 0 deg
* Perpendicular Sans Serif excluded by FootPitch
* EWid = 4 * XPIX + stdvw
* EOut = 4 * XPIX + stdvw
* SerOb = 1
* So Normal Sans Serif.
*/
panose[1] = 11; /* Normal Sans Serif */
stdvw = XPIX * (100 + weight->weight) / 100;
/* WeightRat == 700/StdVW */
if (stdvw <= 20) /* WeightRat >= 35 */
panose[2] = 2; /* Very Light */
else if (stdvw < 39) /* WeightRat > 17.9 */
panose[2] = 3; /* Light */
else if (stdvw <= 70) /* WeightRat >= 10 */
panose[2] = 4; /* Thin */
else if (stdvw <= 94) /* WeightRat > 7.44 */
panose[2] = 5; /* Book */
else if (stdvw < 128) /* WeightRat > 5.5 */
panose[2] = 6; /* Medium */
else if (stdvw < 156) /* WeightRat > 4.5 */
panose[2] = 7; /* Demi */
else if (stdvw <= 200) /* WeightRat >= 3.5 */
panose[2] = 8; /* Bold */
else if (stdvw <= 280) /* WeightRat >= 2.5 */
panose[2] = 9; /* Heavy */
else if (stdvw <= 350) /* WeightRat >= 2.0 */
panose[2] = 10; /* Black */
else
panose[2] = 11; /* Extra Black */
/*
* To make life simpler, ignore diagonals when calculating
* ConRat.
*/
/* J and M are the same width. */
panose[3] = 9; /* Monospaced */
/* ConRat == min(StdVW / 100, 100 / StdVW) */
if (stdvw > 80 && stdvw < 125)
panose[4] = 2; /* None */
else if (stdvw > 65 && stdvw < 154)
panose[4] = 3; /* Very Low */
else if (stdvw > 48 && stdvw < 209)
panose[4] = 4; /* Low */
else if (stdvw > 30 && stdvw < 334)
panose[4] = 5; /* Medium Low */
else if (stdvw > 20 && stdvw < 500)
panose[4] = 6; /* Medium */
else if (stdvw > 15 && stdvw < 667)
panose[4] = 7; /* Medium High */
else if (stdvw > 8 && stdvw < 1250)
panose[4] = 8; /* High */
else
panose[4] = 9; /* Very High */
/*
* Trying to work out Speed values by algebra made my head
* hurt, as did learning enough Maxima to get it to help. So
* I sketched it in GeoGebra and played with the numbers.
* Speed varies with weight, but seems to be independent of
* XPIX.
*/
assert(XQTR_S == 29 && YQTR_S == 29); /* Only tested these values. */
if (panose[4] == 2)
panose[5] = 2; /* No Variation */
else if (weight->weight < 12) { /* Speed < ~0.9602 */
if (stdvw > YPIX)
panose[5] = 7; /* Rapid/Vertical */
else
panose[5] = 8; /* Rapid/Horizontal */
} else {
if (stdvw > YPIX)
panose[5] = 5; /* Gradual/Vertical */
else
panose[5] = 6; /* Gradual/Horizontal */
}
/* Unusually shaped 'A' means no fit here. */
panose[6] = 1; /* No Fit */
/*
* We declare that our O is not Off Center.
*
* Like Speed, OutCurv seems to be independent of XPIX.
*/
if (weight->weight <= -80)
panose[7] = 3; /* Normal/Weighted */
else if (weight->weight <= 90)
panose[7] = 4; /* Normal/Boxed */
else
panose[7] = 5; /* Normal/Flattened */
/*
* TrimRat is independent of XPIX.
* TrimRat = ((100-2*XQTR_S) + weight->weight) / (100 + weight->weight)
* = (42 + weight->weight) / (100 + weight->weight)
* So between 0 and 0.613.
*/
if (weight->weight >= 45)
panose[8] = 2; /* Standard/Trimmed */
else
panose[8] = 3; /* Standard/Pointed */
/*
* DuckRat = XRat = 5/7
*/
panose[9] = 7; /* Ducking/Large */
printf("Panose: %d %d %d %d %d %d %d %d %d %d\n",
panose[0], panose[1], panose[2], panose[3], panose[4],
panose[5], panose[6], panose[7], panose[8], panose[9]);
}
static void
dopalt(struct glyph const *g)
{
int i;
unsigned char cols = 0;
int dx = 0, dh = 0;
while (g->flags & IS_ALIAS)
g = get_glyph_by_name(g->alias_of);
if (g->flags & (MOS6|MOS4)) return;
/*
* For proportional layout, we'd like a left side-bearing of
* one pixel, and a right side-bearing of zero. Space
* characters get an advance width of three pixels.
*/
for (i = 0; i < YSIZE - 1; i++)
cols |= g->data[i] & ((1 << XSIZE) - 1);
if (cols == 0)
dh = 3 - XSIZE;
else {
while (!(cols & 1 << (XSIZE - 2))) {
cols <<= 1;
dx--;
}
while (!(cols & 1)) {
cols >>= 1;
dh--;
}
}
if (dx || dh)
printf("Position2: \"palt\" dx=%d dy=0 dh=%d dv=0\n",
(int)(dx * XPIX), (int)(dh * XPIX));
}
static void
dolookups(struct glyph const *g)
{
char prefix[32];
struct glyph const **found, **gp;
size_t plen;
bool any_alt = false;
plen = sprintf(prefix, "%s.", g->name);
assert(plen < 32);
/* Look for related glyphs */
found = bsearch(&g, glyphs_by_name, nglyphs, sizeof(glyphs_by_name[0]),
&compare_glyphs_by_name);
assert(found != NULL);
for (gp = found + 1; gp < glyphs_by_name + nglyphs; gp++) {
if (strncmp(prefix, (*gp)->name, plen) != 0) break;
any_alt = true;
if (strcmp((*gp)->name + plen, "saa5051") == 0)
printf("Substitution2: \"ss01\" %s\n", (*gp)->name);
if (strcmp((*gp)->name + plen, "saa5052") == 0)
printf("Substitution2: \"ss02\" %s\n", (*gp)->name);
if (strcmp((*gp)->name + plen, "saa5054") == 0)
printf("Substitution2: \"ss04\" %s\n", (*gp)->name);
if (strcmp((*gp)->name + plen, "sep4") == 0)
printf("Substitution2: \"ss14\" %s\n", (*gp)->name);
if (strcmp((*gp)->name + plen, "sep6") == 0)
printf("Substitution2: \"ss16\" %s\n", (*gp)->name);
if (strcmp((*gp)->name + plen, "sc") == 0)
printf("Substitution2: \"smcp\" %s\n", (*gp)->name);
if (strcmp((*gp)->name + plen, "c2sc") == 0)
printf("Substitution2: \"c2sc\" %s\n", (*gp)->name);
if (strcmp((*gp)->name + plen, "rtlm") == 0)
printf("Substitution2: \"rtlm\" %s\n", (*gp)->name);
}
if (any_alt) {
printf("AlternateSubs2: \"aalt\"");
for (gp = found + 1; gp < glyphs_by_name + nglyphs; gp++) {
if (strncmp(prefix, (*gp)->name, plen) != 0) break;
printf(" %s", (*gp)->name);
}
printf("\n");
}
dopalt(g);
}
typedef struct vec {
int x, y;
} vec;
typedef struct point {
struct point *next, *prev;
struct vec v;
} point;
#define MAXPOINTS (XSIZE * YSIZE * 20)
static point points[MAXPOINTS];
static int nextpoint;
static void
clearpath(void)
{
nextpoint = 0;
}
static void
moveto(unsigned x, unsigned y)
{
struct point *p = &points[nextpoint++];
p->v.x = x; p->v.y = y;
p->next = p->prev = NULL;
}
static void
lineto(unsigned x, unsigned y)
{
struct point *p = &points[nextpoint++];
p->v.x = x; p->v.y = y;
p->next = NULL;
p->prev = p - 1;
p->prev->next = p;
}
static void
closepath(void)
{
struct point *p = &points[nextpoint - 1];
while (p->prev) p--;
p->prev = points + nextpoint - 1;
points[nextpoint - 1].next = p;
}
static void
killpoint(point *p)
{
p->prev->next = p->next;
p->next->prev = p->prev;
p->next = p->prev = NULL;
}
static vec const zero = { 0, 0 };
static bool
vec_eqp(vec v1, vec v2)
{
return v1.x == v2.x && v1.y == v2.y;
}
static vec
vec_sub(vec v1, vec v2)
{
vec ret;
ret.x = v1.x - v2.x; ret.y = v1.y - v2.y;
return ret;
}
static int
gcd(int a, int b)
{
int t;
while (b != 0) {
t = b;
b = a % b;
a = t;
}
return a;
}
/* Return the shortest representable vector parallel to the argument. */
static vec
vec_bearing(vec v)
{
vec ret;
int d = gcd(abs(v.x), abs(v.y));
if (d != 0) {
ret.x = v.x / d;
ret.y = v.y / d;
} else {
ret.x = 0;
ret.y = 0;
}
return ret;
}
/* If p is identical to its successor, remove p. */
static void
fix_identical(point *p)
{
if (!p->next) return;
if (vec_eqp(p->next->v, p->v))
killpoint(p);
}
/* Are a, b, and c distinct collinear points in that order? */
static bool
vec_inline3(vec a, vec b, vec c)
{
return
vec_eqp(vec_bearing(vec_sub(b, a)), vec_bearing(vec_sub(c, b))) &&
!vec_eqp(vec_bearing(vec_sub(b, a)), zero);
}
/* Are a, b, c, and d distinct collinear points in that order? */
static bool
vec_inline4(vec a, vec b, vec c, vec d)
{
return vec_inline3(a, b, c) && vec_inline3(b, c, d);
}
/* If p is on the line between its predecessor and successor, remove p. */
static void
fix_collinear(point *p)
{
if (!p->next) return;
if (vec_inline3(p->prev->v, p->v, p->next->v))
killpoint(p);
}
/* If p is the only point on its path, remove p. */
static void
fix_isolated(point *p)
{
if (p->next == p)
killpoint(p);
}
static bool done_anything;
static void
fix_edges(point *a0, point *b0)
{
point *a1 = a0->next, *b1 = b0->next;
assert(a1->prev == a0); assert(b1->prev == b0);
assert(a0 != a1); assert(a0 != b0);
assert(a1 != b1); assert(b0 != b1);
if (vec_eqp(vec_bearing(vec_sub(a0->v, a1->v)),
vec_bearing(vec_sub(b1->v, b0->v))) &&
(vec_inline4(a0->v, b1->v, a1->v, b0->v) ||
vec_inline4(a0->v, b1->v, b0->v, a1->v) ||
vec_inline4(b1->v, a0->v, b0->v, a1->v) ||
vec_inline4(b1->v, a0->v, a1->v, b0->v) ||
vec_eqp(a0->v, b1->v) || vec_eqp(a1->v, b0->v))) {
a0->next = b1; b1->prev = a0;
b0->next = a1; a1->prev = b0;
fix_isolated(a0);
fix_identical(a0);
fix_collinear(b1);
fix_isolated(b0);
fix_identical(b0);
fix_collinear(a1);
done_anything = true;
}
}
static void
clean_path(void)
{
int i, j;
do {
done_anything = false;
for (i = 0; i < nextpoint; i++)
for (j = i+1; points[i].next && j < nextpoint; j++)
if (points[j].next)
fix_edges(&points[i], &points[j]);
} while (done_anything);
}
static void
emit_contour(point *p0)
{
point *p = p0, *p1;
do {
printf(" %g %g %s 1\n",
(double)p->v.x / XSCALE,
(double)p->v.y / YSCALE - 2*YPIX,
p == p0 && p->next ? "m" : "l");
p1 = p->next;
p->prev = p->next = NULL;
p = p1;
} while (p);
}
static void
emit_path(void)
{
int i, pass;
point *p;
bool started = false;
/*
* On the first pass, emit open contours (if there are any).
* On the second pass, emit all remaining contours.
*/
for (pass = 0; pass <= 1; pass++) {
for (i = 0; i < nextpoint; i++) {
p = &points[i];
if (p->next && (!p->prev || pass == 1)) {
if (!started) printf("Fore\nSplineSet\n");
started = true;
emit_contour(p);
}
}
}
if (started) printf("EndSplineSet\n");
}
/*
* To vary the weight of Bedstead, we just vary the thickness of
* vertical strokes. More precisely, we pretend that the weight
* variation is achieved by moving the rising edges of the output
* waveform of the SAA5050. This is implemented by moving all left
* edges left and right. The code below is not fully general: it can
* handle cases where the slack in horizontal lines doesn't run out,
* and one special case where it does. This means it should work
* correctly for the range (2 * XQTR_S - 1) < weight < (2 * XQTR_S).
*/
static void
adjust_weight(void)
{
int i, X, Y, PX, PY, NX, NY, W = weight->weight;
point *p;
struct vec moves[MAXPOINTS];
for (i = 0; i < nextpoint; i++) {
p = &points[i];
if (p->next == NULL) continue;
assert(p->prev != NULL);
moves[i].x = moves[i].y = 0;
X = p->v.x; Y = p->v.y;
PX = p->prev->v.x; PY = p->prev->v.y;
NX = p->next->v.x; NY = p->next->v.y;
/* Move left-edge points horizontally */
if (PY <= Y && Y <= NY) {
moves[i].x -= W;
/*
* These two clauses deal in an ad-hoc way
* with the special cases (all four seen on
* the "asterisk" glyph) where the bevel of an
* inside corner gets completely consumed by
* boldening.
*/
if (W > XQTR_S && PY == Y && PX == X - XQTR_S) {
moves[i].y += W - XQTR_S;
if (NX != X) moves[i].x += W - XQTR_S;
killpoint(p->prev);
}
if (W > XQTR_S && NY == Y && NX == X - XQTR_S) {
moves[i].y -= W - XQTR_S;
if (PX != X) moves[i].x += W - XQTR_S;
killpoint(p->next);
}
}
/* Move top inner corner points along NE/SW diagonal */
if (PY < Y && Y > NY && PX > X && X > NX) {
moves[i].x -= W/2;
moves[i].y -= W/2;
}
/* Move bottom inner corner points along NW/SE diagonal */
if (PY > Y && Y < NY && PX < X && X < NX) {
moves[i].x -= W/2;
moves[i].y += W/2;
}
}
for (i = 0; i < nextpoint; i++) {
p = &points[i];
if (p->next == NULL) continue;
assert(p->prev != NULL);
p->v.x += moves[i].x;
p->v.y += moves[i].y;
/* Make sure line-drawing characters don't overflow. */
if (p->v.x < 0) p->v.x = 0;
}
}
static void
blackpixel(int x, int y, bool bl, bool br, bool tr, bool tl)
{
x *= XPIX_S; y *= YPIX_S;
if (bl) moveto(x, y);
else { moveto(x+XQTR_S, y); lineto(x, y+YQTR_S); }
if (tl) lineto(x, y+YPIX_S);
else { lineto(x, y+YPIX_S-YQTR_S); lineto(x+XQTR_S, y+YPIX_S); }
if (tr) lineto(x+XPIX_S, y+YPIX_S);
else { lineto(x+XPIX_S-XQTR_S, y+YPIX_S);
lineto(x+XPIX_S, y+YPIX_S-YQTR_S); }
if (br) lineto(x+XPIX_S, y);
else { lineto(x+XPIX_S, y+YQTR_S); lineto(x+XPIX_S-XQTR_S, y); }
closepath();
}
static void
whitepixel(int x, int y, bool bl, bool br, bool tr, bool tl)
{
x *= XPIX_S; y *= YPIX_S;
if (bl) {
moveto(x, y); lineto(x, y+YPIX_S-YQTR_S);
if (br) { lineto(x+XPIX_S/2, y+YPIX_S/2-YQTR_S);
lineto(x+XQTR_S, y); }
else lineto(x+XPIX_S-XQTR_S, y);
closepath();
}
if (tl) {
moveto(x, y+YPIX_S); lineto(x+XPIX_S-XQTR_S, y+YPIX_S);
if (bl) { lineto(x+XPIX_S/2-XQTR_S, y+YPIX_S/2);
lineto(x, y+YPIX_S-YQTR_S); }
else lineto(x, y+YQTR_S);
closepath();
}
if (tr) {
moveto(x+XPIX_S, y+YPIX_S); lineto(x+XPIX_S, y+YQTR_S);
if (tl) { lineto(x+XPIX_S/2, y+YPIX_S/2+YQTR_S);
lineto(x+XPIX_S-XQTR_S, y+YPIX_S); }
else lineto(x+XQTR_S, y+YPIX_S);
closepath();
}
if (br) {
moveto(x+XPIX_S, y); lineto(x+XQTR_S, y);
if (tr) { lineto(x+XPIX_S/2+XQTR_S, y+YPIX_S/2);
lineto(x+XPIX_S, y+YQTR_S); }
else lineto(x+XPIX_S, y+YPIX_S-YQTR_S);
closepath();
}
}
static void
dochar(char const data[YSIZE], unsigned flags)
{
int x, y;
#define GETPIX(x,y) (getpix(data, (x), (y), flags))
#define L GETPIX(x-1, y)
#define R GETPIX(x+1, y)
#define U GETPIX(x, y-1)
#define D GETPIX(x, y+1)
#define UL GETPIX(x-1, y-1)
#define UR GETPIX(x+1, y-1)
#define DL GETPIX(x-1, y+1)
#define DR GETPIX(x+1, y+1)
clearpath();
for (x = 0; x < XSIZE; x++) {
for (y = 0; y < YSIZE; y++) {
if (GETPIX(x, y)) {
bool tl, tr, bl, br;
/* Assume filled in */
tl = tr = bl = br = true;
/* Check for diagonals */
if ((UL && !U && !L) || (DR && !D && !R))
tr = bl = false;
if ((UR && !U && !R) || (DL && !D && !L))
tl = br = false;
/* Avoid odd gaps */
if (L || UL || U) tl = true;
if (R || UR || U) tr = true;
if (L || DL || D) bl = true;
if (R || DR || D) br = true;
blackpixel(x, YSIZE - y - 1, bl, br, tr, tl);
} else {
bool tl, tr, bl, br;
/* Assume clear */
tl = tr = bl = br = false;
/* white pixel -- just diagonals */
if (L && U && !UL) tl = true;
if (R && U && !UR) tr = true;
if (L && D && !DL) bl = true;
if (R && D && !DR) br = true;
whitepixel(x, YSIZE - y - 1, bl, br, tr, tl);
}
}
}
clean_path();
adjust_weight();
emit_path();
}
static void
reverse_contour(point *a)
{
point *tmp;
while (a->prev != NULL)
a = a->prev;
while (a != NULL) {
tmp = a->next;
a->next = a->prev;
a->prev = tmp;
a = tmp;
}
}
/* Join together two points each at the end of a contour */
static void
join_ends(point *a, point *b)
{
point *tmp;
if (a->prev == NULL && b->next == NULL) {
tmp = a; a = b; b = tmp;
}
if (a->prev == NULL)
reverse_contour(a);
if (b->next == NULL)
reverse_contour(b);
assert(a->next == NULL);
assert(a->prev != NULL);
assert(b->prev == NULL);
assert(b->next != NULL);
assert(vec_eqp(a->v, b->v));
a->next = b;
b->prev = a;
fix_identical(a); /* Will delete a */
fix_collinear(b); /* Might delete b */
}
static bool
point_endp(point *p)
{
return p->next == NULL || p->prev == NULL;
}
static bool
point_deadp(point *p)
{
return p->next == NULL && p->prev == NULL;
}
static void
clean_skeleton()
{
int i, j;
/* Pass 1: join collinear connected segments */
for (i = 0; i < nextpoint; i++) {
if (point_deadp(&points[i]))
continue;
for (j = 0; j < nextpoint; j++) {
if (point_deadp(&points[j]))
continue;
if (vec_eqp(points[i].v, points[j].v) &&
points[i].next == NULL && points[j].prev == NULL &&
vec_inline3(points[i].prev->v, points[i].v,
points[j].next->v))
join_ends(&points[i], &points[j]);
if (point_deadp(&points[i]))
break;
}
}
/* Pass 2: join any connected segments */
for (i = 0; i < nextpoint; i++) {
if (point_deadp(&points[i]))
continue;
for (j = i+1; j < nextpoint; j++) {
if (point_deadp(&points[j]))
continue;
if (vec_eqp(points[i].v, points[j].v) &&
point_endp(&points[i]) && point_endp(&points[j]))
join_ends(&points[i], &points[j]);
if (point_deadp(&points[i]))
break;
}
}
}
static void
dochar_plotter(char const data[YSIZE], unsigned flags)
{
int x, y;
#define CONNECT(dx, dy) do { \
moveto(x * XPIX_S, (YSIZE-y-1) * YPIX_S); \
lineto((x+dx) * XPIX_S, (YSIZE-y-1+dy) * YPIX_S); \
} while (0)
clearpath();
for (x = 0; x < XSIZE; x++) {
for (y = 0; y < YSIZE; y++) {
if (GETPIX(x, y)) {
if (R) CONNECT(1, 0);
if (D) CONNECT(0, -1);
if (DR && !D && !R) CONNECT(1, -1);
if (DL && !D && !L) CONNECT(-1, -1);
if (!U && !D && !L && !R &&
!UL && !UR && !DL && !DR) {
/* draw a dot */
CONNECT(0, 0);
}
}
}
}
clean_skeleton();
emit_path();
}
static void
tile(int x0, int y0, int x1, int y1)
{
x0 *= XPIX_S; y0 *= YPIX_S;
x1 *= XPIX_S; y1 *= YPIX_S;
moveto(x0, y0); lineto(x0, y1); lineto(x1, y1); lineto(x1, y0);
closepath();
}
static void
domosaic(unsigned code, bool sep)
{
clearpath();
if (code & 1) tile(0 + sep, 7 + sep, 3, 10);
if (code & 2) tile(3 + sep, 7 + sep, 6, 10);
if (code & 4) tile(0 + sep, 3 + sep, 3, 7);
if (code & 8) tile(3 + sep, 3 + sep, 6, 7);
if (code & 16) tile(0 + sep, 0 + sep, 3, 3);
if (code & 32) tile(3 + sep, 0 + sep, 6, 3);
clean_path();
emit_path();
}
static void
domosaic4(unsigned code, bool sep)
{
clearpath();
if (code & 1) tile(0 + sep, 5 + sep, 3, 10);
if (code & 2) tile(3 + sep, 5 + sep, 6, 10);
if (code & 4) tile(0 + sep, 0 + sep, 3, 5);
if (code & 8) tile(3 + sep, 0 + sep, 6, 5);
clean_path();
emit_path();
}
static void
doalias(char const *alias_of)
{
struct glyph const *g;
g = get_glyph_by_name(alias_of);
printf("Refer: %td %d N 1 0 0 1 0 0 1\n", g - glyphs, g->unicode);
}
static int
byunicode(const void *va, const void *vb)
{
struct glyph const *a = *(struct glyph const **)va,
*b = *(struct glyph const **)vb;
/* Cast to unsigned so -1 sorts last. */
if ((unsigned)a->unicode < (unsigned)b->unicode) return -1;
if ((unsigned)a->unicode > (unsigned)b->unicode) return +1;
return strcmp(a->name, b->name);
}
static void
glyph_complement()
{
int const nrow = 16, ncol=12;
long unicol = 32/nrow;
int i, col = -1, row = 0;
int npages = 0;
bool newcol = false;
struct glyph const *sorted[nglyphs], *g;
for (i = 0; i < nglyphs; i++)
sorted[i] = &glyphs[i];
qsort(sorted, nglyphs, sizeof(sorted[0]), &byunicode);
printf("%%!PS-Adobe\n");
printf("%%%%Creator: bedstead\n");
printf("%%%%Title: Bedstead Glyph Complement\n");
printf("/xfont /Bedstead findfont 20 scalefont def\n");
printf("/nfont /Bedstead findfont 10 scalefont def\n");
printf("/lfont /Bedstead findfont 4 scalefont def\n");
printf("/str 50 string def\n");
printf("/centre {\n");
printf(" dup stringwidth pop 2 div neg 0 rmoveto show\n");
printf("} def\n");
printf("/label {\n");
printf(" lfont setfont centre\n");
printf("} def\n");
/* unicode glyphname exemplify -- */
printf("/exemplify {\n");
printf(" xfont setfont dup 14 14 moveto glyphshow\n");
printf(" 0 0 moveto 0 40 lineto 40 40 lineto 40 0 lineto closepath\n");
printf(" 1 setlinewidth gsave stroke grestore clip\n");
printf(" 0.1 setlinewidth\n");
printf(" 14 10 moveto 14 30 lineto 26 30 lineto 26 10 lineto\n");
printf(" closepath stroke\n");
printf(" 20 36 moveto str cvs label\n");
printf(" 20 2 moveto label\n");
printf("} def\n");
printf("/colnum {\n");
printf(" nfont setfont 20 42 moveto centre\n");
printf("} def\n");
printf("/rownums {\n");
printf(" nfont setfont 0 1 15 {\n");
printf(" dup -40 mul 16.5 add -10 exch moveto\n");
printf(" 16 1 string cvrs show\n");
printf(" } for\n");
printf("} def\n");
printf("%%%%EndProlog\n");
for (i = 0; i < nglyphs; i++) {
g = sorted[i];
if (g->unicode / nrow != unicol ||
(g->unicode == -1 && row == nrow)) {
if (++col == ncol) {
printf("grestore showpage\n");
col = -1;
}
unicol = g->unicode / nrow;
row = 0;
newcol = true;
}
if (col == -1) {
++npages;
printf("%%%%Page: %d %d\n", npages, npages);
printf("gsave 60 700 translate rownums\n");
col = 0;
newcol = true;
}
if (newcol && g->unicode != -1) {
printf("gsave %d 0 translate (%03lX) colnum grestore\n",
col * 40, unicol);
newcol = false;
}
printf("gsave %d %d translate ",
(col * 40),
(int)-((g->unicode == -1 ?
row++ : g->unicode % nrow) * 40));
if (g->unicode != -1)
printf("(U+%04lX)", (long)g->unicode);
else
printf("()");
printf("/%s ", g->name);
printf("exemplify grestore\n");
}
printf("showpage\n");
printf("%%%%EOF\n");
}