1# -*- coding: utf8 -*-
2class Charset:
3
4    common_name = "Archaic Greek Letters"
5    native_name = "Archaic Greek Letters"
6    key = 0x03e0  # Greek letter SAMPI
7    abbreviation = 'GREKa'
8
9    glyphs = [
10        0x0370,
11        0x0371,
12        0x0372,
13        0x0373,
14        0x0376,
15        0x0377
16    ]
17    glyphs += list(range(0x03d8, 0x03e1))
18    glyphs += [
19        0x03f7,
20        0x03f8,
21        0x03fa,
22        0x03fb
23    ]
24
25
26
27