File size: 2,347 Bytes
bc20498
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
export namespace values {
  const ht: '\t'
  const lf: '\n'
  const cr: '\r'
  const space: ' '
  const exclamationMark: '!'
  const quotationMark: '"'
  const numberSign: '#'
  const dollarSign: '$'
  const percentSign: '%'
  const ampersand: '&'
  const apostrophe: "'"
  const leftParenthesis: '('
  const rightParenthesis: ')'
  const asterisk: '*'
  const plusSign: '+'
  const comma: ','
  const dash: '-'
  const dot: '.'
  const slash: '/'
  const digit0: '0'
  const digit1: '1'
  const digit2: '2'
  const digit3: '3'
  const digit4: '4'
  const digit5: '5'
  const digit6: '6'
  const digit7: '7'
  const digit8: '8'
  const digit9: '9'
  const colon: ':'
  const semicolon: ';'
  const lessThan: '<'
  const equalsTo: '='
  const greaterThan: '>'
  const questionMark: '?'
  const atSign: '@'
  const uppercaseA: 'A'
  const uppercaseB: 'B'
  const uppercaseC: 'C'
  const uppercaseD: 'D'
  const uppercaseE: 'E'
  const uppercaseF: 'F'
  const uppercaseG: 'G'
  const uppercaseH: 'H'
  const uppercaseI: 'I'
  const uppercaseJ: 'J'
  const uppercaseK: 'K'
  const uppercaseL: 'L'
  const uppercaseM: 'M'
  const uppercaseN: 'N'
  const uppercaseO: 'O'
  const uppercaseP: 'P'
  const uppercaseQ: 'Q'
  const uppercaseR: 'R'
  const uppercaseS: 'S'
  const uppercaseT: 'T'
  const uppercaseU: 'U'
  const uppercaseV: 'V'
  const uppercaseW: 'W'
  const uppercaseX: 'X'
  const uppercaseY: 'Y'
  const uppercaseZ: 'Z'
  const leftSquareBracket: '['
  const backslash: '\\'
  const rightSquareBracket: ']'
  const caret: '^'
  const underscore: '_'
  const graveAccent: '`'
  const lowercaseA: 'a'
  const lowercaseB: 'b'
  const lowercaseC: 'c'
  const lowercaseD: 'd'
  const lowercaseE: 'e'
  const lowercaseF: 'f'
  const lowercaseG: 'g'
  const lowercaseH: 'h'
  const lowercaseI: 'i'
  const lowercaseJ: 'j'
  const lowercaseK: 'k'
  const lowercaseL: 'l'
  const lowercaseM: 'm'
  const lowercaseN: 'n'
  const lowercaseO: 'o'
  const lowercaseP: 'p'
  const lowercaseQ: 'q'
  const lowercaseR: 'r'
  const lowercaseS: 's'
  const lowercaseT: 't'
  const lowercaseU: 'u'
  const lowercaseV: 'v'
  const lowercaseW: 'w'
  const lowercaseX: 'x'
  const lowercaseY: 'y'
  const lowercaseZ: 'z'
  const leftCurlyBrace: '{'
  const verticalBar: '|'
  const rightCurlyBrace: '}'
  const tilde: '~'
  const replacementCharacter: '�'
}