From 56e3553c5601b0e748d371e657f851bf756e22cc Mon Sep 17 00:00:00 2001 From: jespergravgaard Date: Wed, 26 Aug 2020 01:24:04 +0200 Subject: [PATCH] Recoded #pragma parsing to allow unknown pragmas (as long as they follow the parenthesized syntax). Closes #324 --- .../dk/camelot64/kickc/parser/CParser.java | 15 + .../dk/camelot64/kickc/parser/KickCLexer.g4 | 13 - .../camelot64/kickc/parser/KickCLexer.interp | 41 +- .../dk/camelot64/kickc/parser/KickCLexer.java | 1554 +++++------ .../camelot64/kickc/parser/KickCLexer.tokens | 362 ++- .../dk/camelot64/kickc/parser/KickCParser.g4 | 28 +- .../camelot64/kickc/parser/KickCParser.interp | 32 +- .../camelot64/kickc/parser/KickCParser.java | 2367 +++++++---------- .../camelot64/kickc/parser/KickCParser.tokens | 362 ++- .../kickc/parser/KickCParserBaseListener.java | 120 +- .../kickc/parser/KickCParserBaseVisitor.java | 68 +- .../kickc/parser/KickCParserListener.java | 164 +- .../kickc/parser/KickCParserVisitor.java | 90 +- .../Pass0GenerateStatementSequence.java | 268 +- .../kickc/preprocessor/CPreprocessor.java | 4 +- .../dk/camelot64/kickc/test/TestPrograms.java | 5 + src/test/kc/pragma-unknown.c | 9 + src/test/ref/pragma-unknown.asm | 12 + src/test/ref/pragma-unknown.cfg | 8 + src/test/ref/pragma-unknown.log | 154 ++ src/test/ref/pragma-unknown.sym | 4 + src/test/vs.code/kickc-test.code-workspace | 3 +- 22 files changed, 2467 insertions(+), 3216 deletions(-) create mode 100644 src/test/kc/pragma-unknown.c create mode 100644 src/test/ref/pragma-unknown.asm create mode 100644 src/test/ref/pragma-unknown.cfg create mode 100644 src/test/ref/pragma-unknown.log create mode 100644 src/test/ref/pragma-unknown.sym diff --git a/src/main/java/dk/camelot64/kickc/parser/CParser.java b/src/main/java/dk/camelot64/kickc/parser/CParser.java index d05462d29..8674e6c0a 100644 --- a/src/main/java/dk/camelot64/kickc/parser/CParser.java +++ b/src/main/java/dk/camelot64/kickc/parser/CParser.java @@ -28,6 +28,21 @@ public class CParser { /** The hidden lexer channel containing comments. */ public static final int CHANNEL_COMMENTS = 2; + /** Pragma Names. */ + public static final String PRAGMA_TARGET = "target"; + public static final String PRAGMA_CPU = "cpu"; + public static final String PRAGMA_VAR_MODEL = "var_model"; + public static final String PRAGMA_LINKSCRIPT = "link"; + public static final String PRAGMA_EXTENSION = "extension"; + public static final String PRAGMA_EMULATOR = "emulator"; + public static final String PRAGMA_ENCODING = "encoding"; + public static final String PRAGMA_CODE_SEG = "code_seg"; + public static final String PRAGMA_DATA_SEG = "data_seg"; + public static final String PRAGMA_PC = "pc"; + public static final String PRAGMA_CALLING = "calling"; + public static final String PRAGMA_ZP_RESERVE = "zp_reserve"; + public static final String PRAGMA_CONSTRUCTOR_FOR = "constructor_for"; + /** The Program. */ private Program program; diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 index b70e2a5ae..143e99fa1 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 @@ -62,16 +62,6 @@ ASSIGN_COMPOUND : '+=' | '-=' | '*=' | '/=' | '%=' | '<<=' | '>>=' | '&=' | '|=' // Keywords TYPEDEF: 'typedef' ; -RESERVE: 'zp_reserve' ; -PC:'pc'; -TARGET:'target'; -LINK:'link'; -EXTENSION:'extension'; -EMULATOR:'emulator'; -CPU:'cpu'; -CODESEG:'code_seg'; -DATASEG:'data_seg'; -ENCODING:'encoding'; CONST: 'const' ; EXTERN: 'extern' ; EXPORT: 'export' ; @@ -88,10 +78,7 @@ ADDRESS_MAINMEM: '__mem' ; FORM_SSA: '__ssa' ; FORM_MA: '__ma' ; INTRINSIC: '__intrinsic' ; -CALLING: 'calling'; CALLINGCONVENTION: '__stackcall' | '__phicall' ; -VARMODEL: 'var_model'; -CONSTRUCTORFOR: 'constructor_for'; IF: 'if' ; ELSE: 'else' ; WHILE: 'while' ; diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.interp b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.interp index 26d5217e0..2d587f755 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.interp +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.interp @@ -39,16 +39,6 @@ null '=' null 'typedef' -'zp_reserve' -'pc' -'target' -'link' -'extension' -'emulator' -'cpu' -'code_seg' -'data_seg' -'encoding' 'const' 'extern' 'export' @@ -65,10 +55,7 @@ null '__ssa' '__ma' '__intrinsic' -'calling' null -'var_model' -'constructor_for' 'if' 'else' 'while' @@ -208,16 +195,6 @@ LOGIC_OR ASSIGN ASSIGN_COMPOUND TYPEDEF -RESERVE -PC -TARGET -LINK -EXTENSION -EMULATOR -CPU -CODESEG -DATASEG -ENCODING CONST EXTERN EXPORT @@ -234,10 +211,7 @@ ADDRESS_MAINMEM FORM_SSA FORM_MA INTRINSIC -CALLING CALLINGCONVENTION -VARMODEL -CONSTRUCTORFOR IF ELSE WHILE @@ -375,16 +349,6 @@ LOGIC_OR ASSIGN ASSIGN_COMPOUND TYPEDEF -RESERVE -PC -TARGET -LINK -EXTENSION -EMULATOR -CPU -CODESEG -DATASEG -ENCODING CONST EXTERN EXPORT @@ -401,10 +365,7 @@ ADDRESS_MAINMEM FORM_SSA FORM_MA INTRINSIC -CALLING CALLINGCONVENTION -VARMODEL -CONSTRUCTORFOR IF ELSE WHILE @@ -523,4 +484,4 @@ ASM_MODE IMPORT_MODE atn: -[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 168, 2031, 8, 1, 8, 1, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 4, 115, 9, 115, 4, 116, 9, 116, 4, 117, 9, 117, 4, 118, 9, 118, 4, 119, 9, 119, 4, 120, 9, 120, 4, 121, 9, 121, 4, 122, 9, 122, 4, 123, 9, 123, 4, 124, 9, 124, 4, 125, 9, 125, 4, 126, 9, 126, 4, 127, 9, 127, 4, 128, 9, 128, 4, 129, 9, 129, 4, 130, 9, 130, 4, 131, 9, 131, 4, 132, 9, 132, 4, 133, 9, 133, 4, 134, 9, 134, 4, 135, 9, 135, 4, 136, 9, 136, 4, 137, 9, 137, 4, 138, 9, 138, 4, 139, 9, 139, 4, 140, 9, 140, 4, 141, 9, 141, 4, 142, 9, 142, 4, 143, 9, 143, 4, 144, 9, 144, 4, 145, 9, 145, 4, 146, 9, 146, 4, 147, 9, 147, 4, 148, 9, 148, 4, 149, 9, 149, 4, 150, 9, 150, 4, 151, 9, 151, 4, 152, 9, 152, 4, 153, 9, 153, 4, 154, 9, 154, 4, 155, 9, 155, 4, 156, 9, 156, 4, 157, 9, 157, 4, 158, 9, 158, 4, 159, 9, 159, 4, 160, 9, 160, 4, 161, 9, 161, 4, 162, 9, 162, 4, 163, 9, 163, 4, 164, 9, 164, 4, 165, 9, 165, 4, 166, 9, 166, 4, 167, 9, 167, 4, 168, 9, 168, 4, 169, 9, 169, 4, 170, 9, 170, 4, 171, 9, 171, 4, 172, 9, 172, 4, 173, 9, 173, 4, 174, 9, 174, 4, 175, 9, 175, 4, 176, 9, 176, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 4, 3, 4, 3, 5, 3, 5, 3, 6, 3, 6, 3, 7, 3, 7, 3, 8, 3, 8, 3, 9, 3, 9, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 17, 3, 17, 3, 18, 3, 18, 3, 19, 3, 19, 3, 20, 3, 20, 3, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 24, 3, 24, 3, 25, 3, 25, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 37, 3, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 5, 38, 465, 10, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 5, 67, 704, 10, 67, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 93, 3, 93, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 5, 94, 895, 10, 94, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 5, 95, 934, 10, 95, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 5, 96, 945, 10, 96, 3, 97, 3, 97, 3, 97, 3, 97, 7, 97, 951, 10, 97, 12, 97, 14, 97, 954, 11, 97, 3, 97, 3, 97, 3, 97, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 5, 102, 1001, 10, 102, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 106, 3, 106, 3, 106, 3, 106, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 111, 3, 111, 5, 111, 1057, 10, 111, 3, 112, 3, 112, 3, 112, 5, 112, 1062, 10, 112, 3, 113, 3, 113, 3, 113, 3, 113, 3, 113, 5, 113, 1069, 10, 113, 3, 113, 7, 113, 1072, 10, 113, 12, 113, 14, 113, 1075, 11, 113, 3, 113, 3, 113, 6, 113, 1079, 10, 113, 13, 113, 14, 113, 1080, 3, 114, 7, 114, 1084, 10, 114, 12, 114, 14, 114, 1087, 11, 114, 3, 114, 3, 114, 6, 114, 1091, 10, 114, 13, 114, 14, 114, 1092, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 5, 115, 1100, 10, 115, 3, 115, 7, 115, 1103, 10, 115, 12, 115, 14, 115, 1106, 11, 115, 3, 115, 3, 115, 6, 115, 1110, 10, 115, 13, 115, 14, 115, 1111, 3, 116, 3, 116, 3, 116, 5, 116, 1117, 10, 116, 3, 116, 3, 116, 3, 116, 5, 116, 1122, 10, 116, 3, 117, 3, 117, 3, 117, 6, 117, 1127, 10, 117, 13, 117, 14, 117, 1128, 3, 117, 3, 117, 6, 117, 1133, 10, 117, 13, 117, 14, 117, 1134, 5, 117, 1137, 10, 117, 3, 118, 6, 118, 1140, 10, 118, 13, 118, 14, 118, 1141, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 5, 119, 1149, 10, 119, 3, 119, 6, 119, 1152, 10, 119, 13, 119, 14, 119, 1153, 3, 120, 3, 120, 3, 121, 3, 121, 3, 122, 3, 122, 3, 123, 3, 123, 7, 123, 1164, 10, 123, 12, 123, 14, 123, 1167, 11, 123, 3, 123, 3, 123, 3, 124, 3, 124, 3, 125, 3, 125, 3, 126, 3, 126, 3, 126, 3, 126, 7, 126, 1179, 10, 126, 12, 126, 14, 126, 1182, 11, 126, 3, 126, 3, 126, 5, 126, 1186, 10, 126, 3, 126, 3, 126, 5, 126, 1190, 10, 126, 5, 126, 1192, 10, 126, 3, 126, 5, 126, 1195, 10, 126, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 5, 127, 1203, 10, 127, 3, 127, 5, 127, 1206, 10, 127, 3, 127, 3, 127, 3, 128, 6, 128, 1211, 10, 128, 13, 128, 14, 128, 1212, 3, 128, 3, 128, 3, 129, 3, 129, 3, 129, 3, 129, 7, 129, 1221, 10, 129, 12, 129, 14, 129, 1224, 11, 129, 3, 129, 3, 129, 3, 130, 3, 130, 3, 130, 3, 130, 7, 130, 1232, 10, 130, 12, 130, 14, 130, 1235, 11, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 5, 132, 1798, 10, 132, 3, 133, 3, 133, 3, 134, 3, 134, 3, 135, 3, 135, 3, 136, 3, 136, 3, 137, 3, 137, 3, 138, 3, 138, 3, 139, 3, 139, 3, 140, 3, 140, 3, 141, 3, 141, 3, 141, 3, 142, 3, 142, 3, 142, 3, 143, 3, 143, 3, 144, 3, 144, 3, 145, 3, 145, 3, 146, 3, 146, 3, 147, 3, 147, 3, 148, 3, 148, 3, 149, 3, 149, 3, 149, 3, 150, 3, 150, 3, 150, 3, 151, 3, 151, 5, 151, 1842, 10, 151, 3, 152, 3, 152, 3, 152, 5, 152, 1847, 10, 152, 3, 153, 3, 153, 7, 153, 1851, 10, 153, 12, 153, 14, 153, 1854, 11, 153, 3, 153, 3, 153, 6, 153, 1858, 10, 153, 13, 153, 14, 153, 1859, 3, 154, 7, 154, 1863, 10, 154, 12, 154, 14, 154, 1866, 11, 154, 3, 154, 3, 154, 6, 154, 1870, 10, 154, 13, 154, 14, 154, 1871, 3, 155, 3, 155, 7, 155, 1876, 10, 155, 12, 155, 14, 155, 1879, 11, 155, 3, 155, 3, 155, 6, 155, 1883, 10, 155, 13, 155, 14, 155, 1884, 3, 156, 3, 156, 3, 156, 5, 156, 1890, 10, 156, 3, 157, 3, 157, 6, 157, 1894, 10, 157, 13, 157, 14, 157, 1895, 3, 158, 6, 158, 1899, 10, 158, 13, 158, 14, 158, 1900, 3, 159, 3, 159, 6, 159, 1905, 10, 159, 13, 159, 14, 159, 1906, 3, 160, 3, 160, 3, 161, 3, 161, 3, 162, 3, 162, 3, 163, 3, 163, 3, 163, 3, 163, 5, 163, 1919, 10, 163, 3, 163, 3, 163, 3, 164, 3, 164, 6, 164, 1925, 10, 164, 13, 164, 14, 164, 1926, 3, 165, 3, 165, 7, 165, 1931, 10, 165, 12, 165, 14, 165, 1934, 11, 165, 3, 166, 3, 166, 7, 166, 1938, 10, 166, 12, 166, 14, 166, 1941, 11, 166, 3, 167, 3, 167, 3, 168, 3, 168, 3, 169, 6, 169, 1948, 10, 169, 13, 169, 14, 169, 1949, 3, 169, 3, 169, 3, 170, 3, 170, 3, 170, 3, 170, 7, 170, 1958, 10, 170, 12, 170, 14, 170, 1961, 11, 170, 3, 170, 3, 170, 3, 171, 3, 171, 3, 171, 3, 171, 7, 171, 1969, 10, 171, 12, 171, 14, 171, 1972, 11, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 172, 3, 172, 6, 172, 1981, 10, 172, 13, 172, 14, 172, 1982, 3, 172, 3, 172, 3, 172, 3, 173, 3, 173, 3, 173, 3, 173, 7, 173, 1992, 10, 173, 12, 173, 14, 173, 1995, 11, 173, 3, 173, 3, 173, 3, 173, 3, 174, 6, 174, 2001, 10, 174, 13, 174, 14, 174, 2002, 3, 174, 3, 174, 3, 175, 3, 175, 3, 175, 3, 175, 7, 175, 2011, 10, 175, 12, 175, 14, 175, 2014, 11, 175, 3, 175, 3, 175, 3, 176, 3, 176, 3, 176, 3, 176, 7, 176, 2022, 10, 176, 12, 176, 14, 176, 2025, 11, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 6, 952, 1233, 1970, 2023, 2, 177, 5, 4, 7, 5, 9, 6, 11, 7, 13, 8, 15, 9, 17, 10, 19, 11, 21, 12, 23, 13, 25, 14, 27, 15, 29, 16, 31, 17, 33, 18, 35, 19, 37, 20, 39, 21, 41, 22, 43, 23, 45, 24, 47, 25, 49, 26, 51, 27, 53, 28, 55, 29, 57, 30, 59, 31, 61, 32, 63, 33, 65, 34, 67, 35, 69, 36, 71, 37, 73, 38, 75, 39, 77, 40, 79, 41, 81, 42, 83, 43, 85, 44, 87, 45, 89, 46, 91, 47, 93, 48, 95, 49, 97, 50, 99, 51, 101, 52, 103, 53, 105, 54, 107, 55, 109, 56, 111, 57, 113, 58, 115, 59, 117, 60, 119, 61, 121, 62, 123, 63, 125, 64, 127, 65, 129, 66, 131, 67, 133, 68, 135, 69, 137, 70, 139, 71, 141, 72, 143, 73, 145, 74, 147, 75, 149, 76, 151, 77, 153, 78, 155, 79, 157, 80, 159, 81, 161, 82, 163, 83, 165, 84, 167, 85, 169, 86, 171, 87, 173, 88, 175, 89, 177, 90, 179, 91, 181, 92, 183, 93, 185, 94, 187, 95, 189, 96, 191, 97, 193, 98, 195, 99, 197, 100, 199, 101, 201, 102, 203, 103, 205, 104, 207, 105, 209, 106, 211, 107, 213, 108, 215, 109, 217, 110, 219, 111, 221, 112, 223, 113, 225, 114, 227, 115, 229, 116, 231, 117, 233, 118, 235, 119, 237, 120, 239, 121, 241, 2, 243, 2, 245, 2, 247, 122, 249, 2, 251, 2, 253, 123, 255, 124, 257, 125, 259, 126, 261, 127, 263, 128, 265, 129, 267, 130, 269, 131, 271, 132, 273, 133, 275, 134, 277, 135, 279, 136, 281, 137, 283, 138, 285, 139, 287, 140, 289, 141, 291, 142, 293, 143, 295, 144, 297, 145, 299, 146, 301, 147, 303, 148, 305, 149, 307, 150, 309, 151, 311, 152, 313, 153, 315, 154, 317, 155, 319, 156, 321, 2, 323, 2, 325, 2, 327, 157, 329, 158, 331, 159, 333, 160, 335, 2, 337, 2, 339, 161, 341, 162, 343, 163, 345, 164, 347, 165, 349, 166, 351, 167, 353, 168, 5, 2, 3, 4, 21, 4, 2, 117, 117, 119, 119, 7, 2, 100, 102, 107, 107, 110, 110, 117, 117, 121, 121, 4, 2, 68, 68, 100, 100, 3, 2, 50, 51, 3, 2, 50, 59, 5, 2, 50, 59, 67, 72, 99, 104, 5, 2, 67, 92, 97, 97, 99, 124, 6, 2, 50, 59, 67, 92, 97, 97, 99, 124, 3, 2, 36, 36, 3, 2, 124, 124, 4, 2, 114, 114, 117, 117, 4, 2, 111, 111, 119, 119, 7, 2, 36, 36, 41, 41, 104, 104, 112, 112, 116, 116, 4, 2, 50, 59, 99, 104, 3, 2, 41, 41, 6, 2, 11, 12, 15, 15, 34, 34, 162, 162, 4, 2, 12, 12, 15, 15, 4, 2, 45, 45, 47, 47, 7, 2, 47, 59, 67, 92, 94, 94, 97, 97, 99, 124, 2, 2268, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, 65, 3, 2, 2, 2, 2, 67, 3, 2, 2, 2, 2, 69, 3, 2, 2, 2, 2, 71, 3, 2, 2, 2, 2, 73, 3, 2, 2, 2, 2, 75, 3, 2, 2, 2, 2, 77, 3, 2, 2, 2, 2, 79, 3, 2, 2, 2, 2, 81, 3, 2, 2, 2, 2, 83, 3, 2, 2, 2, 2, 85, 3, 2, 2, 2, 2, 87, 3, 2, 2, 2, 2, 89, 3, 2, 2, 2, 2, 91, 3, 2, 2, 2, 2, 93, 3, 2, 2, 2, 2, 95, 3, 2, 2, 2, 2, 97, 3, 2, 2, 2, 2, 99, 3, 2, 2, 2, 2, 101, 3, 2, 2, 2, 2, 103, 3, 2, 2, 2, 2, 105, 3, 2, 2, 2, 2, 107, 3, 2, 2, 2, 2, 109, 3, 2, 2, 2, 2, 111, 3, 2, 2, 2, 2, 113, 3, 2, 2, 2, 2, 115, 3, 2, 2, 2, 2, 117, 3, 2, 2, 2, 2, 119, 3, 2, 2, 2, 2, 121, 3, 2, 2, 2, 2, 123, 3, 2, 2, 2, 2, 125, 3, 2, 2, 2, 2, 127, 3, 2, 2, 2, 2, 129, 3, 2, 2, 2, 2, 131, 3, 2, 2, 2, 2, 133, 3, 2, 2, 2, 2, 135, 3, 2, 2, 2, 2, 137, 3, 2, 2, 2, 2, 139, 3, 2, 2, 2, 2, 141, 3, 2, 2, 2, 2, 143, 3, 2, 2, 2, 2, 145, 3, 2, 2, 2, 2, 147, 3, 2, 2, 2, 2, 149, 3, 2, 2, 2, 2, 151, 3, 2, 2, 2, 2, 153, 3, 2, 2, 2, 2, 155, 3, 2, 2, 2, 2, 157, 3, 2, 2, 2, 2, 159, 3, 2, 2, 2, 2, 161, 3, 2, 2, 2, 2, 163, 3, 2, 2, 2, 2, 165, 3, 2, 2, 2, 2, 167, 3, 2, 2, 2, 2, 169, 3, 2, 2, 2, 2, 171, 3, 2, 2, 2, 2, 173, 3, 2, 2, 2, 2, 175, 3, 2, 2, 2, 2, 177, 3, 2, 2, 2, 2, 179, 3, 2, 2, 2, 2, 181, 3, 2, 2, 2, 2, 183, 3, 2, 2, 2, 2, 185, 3, 2, 2, 2, 2, 187, 3, 2, 2, 2, 2, 189, 3, 2, 2, 2, 2, 191, 3, 2, 2, 2, 2, 193, 3, 2, 2, 2, 2, 195, 3, 2, 2, 2, 2, 197, 3, 2, 2, 2, 2, 199, 3, 2, 2, 2, 2, 201, 3, 2, 2, 2, 2, 203, 3, 2, 2, 2, 2, 205, 3, 2, 2, 2, 2, 207, 3, 2, 2, 2, 2, 209, 3, 2, 2, 2, 2, 211, 3, 2, 2, 2, 2, 213, 3, 2, 2, 2, 2, 215, 3, 2, 2, 2, 2, 217, 3, 2, 2, 2, 2, 219, 3, 2, 2, 2, 2, 221, 3, 2, 2, 2, 2, 223, 3, 2, 2, 2, 2, 225, 3, 2, 2, 2, 2, 227, 3, 2, 2, 2, 2, 229, 3, 2, 2, 2, 2, 231, 3, 2, 2, 2, 2, 233, 3, 2, 2, 2, 2, 235, 3, 2, 2, 2, 2, 237, 3, 2, 2, 2, 2, 239, 3, 2, 2, 2, 2, 247, 3, 2, 2, 2, 2, 253, 3, 2, 2, 2, 2, 255, 3, 2, 2, 2, 2, 257, 3, 2, 2, 2, 2, 259, 3, 2, 2, 2, 2, 261, 3, 2, 2, 2, 3, 263, 3, 2, 2, 2, 3, 265, 3, 2, 2, 2, 3, 267, 3, 2, 2, 2, 3, 269, 3, 2, 2, 2, 3, 271, 3, 2, 2, 2, 3, 273, 3, 2, 2, 2, 3, 275, 3, 2, 2, 2, 3, 277, 3, 2, 2, 2, 3, 279, 3, 2, 2, 2, 3, 281, 3, 2, 2, 2, 3, 283, 3, 2, 2, 2, 3, 285, 3, 2, 2, 2, 3, 287, 3, 2, 2, 2, 3, 289, 3, 2, 2, 2, 3, 291, 3, 2, 2, 2, 3, 293, 3, 2, 2, 2, 3, 295, 3, 2, 2, 2, 3, 297, 3, 2, 2, 2, 3, 299, 3, 2, 2, 2, 3, 301, 3, 2, 2, 2, 3, 303, 3, 2, 2, 2, 3, 305, 3, 2, 2, 2, 3, 307, 3, 2, 2, 2, 3, 309, 3, 2, 2, 2, 3, 311, 3, 2, 2, 2, 3, 313, 3, 2, 2, 2, 3, 315, 3, 2, 2, 2, 3, 317, 3, 2, 2, 2, 3, 319, 3, 2, 2, 2, 3, 327, 3, 2, 2, 2, 3, 329, 3, 2, 2, 2, 3, 331, 3, 2, 2, 2, 3, 333, 3, 2, 2, 2, 3, 339, 3, 2, 2, 2, 3, 341, 3, 2, 2, 2, 3, 343, 3, 2, 2, 2, 4, 345, 3, 2, 2, 2, 4, 347, 3, 2, 2, 2, 4, 349, 3, 2, 2, 2, 4, 351, 3, 2, 2, 2, 4, 353, 3, 2, 2, 2, 5, 355, 3, 2, 2, 2, 7, 358, 3, 2, 2, 2, 9, 360, 3, 2, 2, 2, 11, 362, 3, 2, 2, 2, 13, 364, 3, 2, 2, 2, 15, 366, 3, 2, 2, 2, 17, 368, 3, 2, 2, 2, 19, 370, 3, 2, 2, 2, 21, 372, 3, 2, 2, 2, 23, 374, 3, 2, 2, 2, 25, 377, 3, 2, 2, 2, 27, 381, 3, 2, 2, 2, 29, 383, 3, 2, 2, 2, 31, 385, 3, 2, 2, 2, 33, 388, 3, 2, 2, 2, 35, 390, 3, 2, 2, 2, 37, 392, 3, 2, 2, 2, 39, 394, 3, 2, 2, 2, 41, 396, 3, 2, 2, 2, 43, 398, 3, 2, 2, 2, 45, 401, 3, 2, 2, 2, 47, 404, 3, 2, 2, 2, 49, 406, 3, 2, 2, 2, 51, 408, 3, 2, 2, 2, 53, 410, 3, 2, 2, 2, 55, 412, 3, 2, 2, 2, 57, 415, 3, 2, 2, 2, 59, 418, 3, 2, 2, 2, 61, 421, 3, 2, 2, 2, 63, 424, 3, 2, 2, 2, 65, 426, 3, 2, 2, 2, 67, 429, 3, 2, 2, 2, 69, 432, 3, 2, 2, 2, 71, 434, 3, 2, 2, 2, 73, 437, 3, 2, 2, 2, 75, 440, 3, 2, 2, 2, 77, 464, 3, 2, 2, 2, 79, 466, 3, 2, 2, 2, 81, 474, 3, 2, 2, 2, 83, 485, 3, 2, 2, 2, 85, 488, 3, 2, 2, 2, 87, 495, 3, 2, 2, 2, 89, 500, 3, 2, 2, 2, 91, 510, 3, 2, 2, 2, 93, 519, 3, 2, 2, 2, 95, 523, 3, 2, 2, 2, 97, 532, 3, 2, 2, 2, 99, 541, 3, 2, 2, 2, 101, 550, 3, 2, 2, 2, 103, 556, 3, 2, 2, 2, 105, 563, 3, 2, 2, 2, 107, 570, 3, 2, 2, 2, 109, 576, 3, 2, 2, 2, 111, 583, 3, 2, 2, 2, 113, 592, 3, 2, 2, 2, 115, 599, 3, 2, 2, 2, 117, 609, 3, 2, 2, 2, 119, 618, 3, 2, 2, 2, 121, 631, 3, 2, 2, 2, 123, 641, 3, 2, 2, 2, 125, 646, 3, 2, 2, 2, 127, 652, 3, 2, 2, 2, 129, 658, 3, 2, 2, 2, 131, 663, 3, 2, 2, 2, 133, 675, 3, 2, 2, 2, 135, 703, 3, 2, 2, 2, 137, 705, 3, 2, 2, 2, 139, 715, 3, 2, 2, 2, 141, 731, 3, 2, 2, 2, 143, 734, 3, 2, 2, 2, 145, 739, 3, 2, 2, 2, 147, 745, 3, 2, 2, 2, 149, 748, 3, 2, 2, 2, 151, 752, 3, 2, 2, 2, 153, 759, 3, 2, 2, 2, 155, 766, 3, 2, 2, 2, 157, 772, 3, 2, 2, 2, 159, 781, 3, 2, 2, 2, 161, 787, 3, 2, 2, 2, 163, 795, 3, 2, 2, 2, 165, 800, 3, 2, 2, 2, 167, 807, 3, 2, 2, 2, 169, 812, 3, 2, 2, 2, 171, 819, 3, 2, 2, 2, 173, 826, 3, 2, 2, 2, 175, 834, 3, 2, 2, 2, 177, 842, 3, 2, 2, 2, 179, 851, 3, 2, 2, 2, 181, 856, 3, 2, 2, 2, 183, 865, 3, 2, 2, 2, 185, 871, 3, 2, 2, 2, 187, 878, 3, 2, 2, 2, 189, 894, 3, 2, 2, 2, 191, 933, 3, 2, 2, 2, 193, 944, 3, 2, 2, 2, 195, 946, 3, 2, 2, 2, 197, 958, 3, 2, 2, 2, 199, 968, 3, 2, 2, 2, 201, 979, 3, 2, 2, 2, 203, 987, 3, 2, 2, 2, 205, 1000, 3, 2, 2, 2, 207, 1002, 3, 2, 2, 2, 209, 1009, 3, 2, 2, 2, 211, 1016, 3, 2, 2, 2, 213, 1024, 3, 2, 2, 2, 215, 1028, 3, 2, 2, 2, 217, 1034, 3, 2, 2, 2, 219, 1040, 3, 2, 2, 2, 221, 1047, 3, 2, 2, 2, 223, 1056, 3, 2, 2, 2, 225, 1061, 3, 2, 2, 2, 227, 1068, 3, 2, 2, 2, 229, 1085, 3, 2, 2, 2, 231, 1099, 3, 2, 2, 2, 233, 1116, 3, 2, 2, 2, 235, 1136, 3, 2, 2, 2, 237, 1139, 3, 2, 2, 2, 239, 1148, 3, 2, 2, 2, 241, 1155, 3, 2, 2, 2, 243, 1157, 3, 2, 2, 2, 245, 1159, 3, 2, 2, 2, 247, 1161, 3, 2, 2, 2, 249, 1170, 3, 2, 2, 2, 251, 1172, 3, 2, 2, 2, 253, 1174, 3, 2, 2, 2, 255, 1196, 3, 2, 2, 2, 257, 1210, 3, 2, 2, 2, 259, 1216, 3, 2, 2, 2, 261, 1227, 3, 2, 2, 2, 263, 1241, 3, 2, 2, 2, 265, 1797, 3, 2, 2, 2, 267, 1799, 3, 2, 2, 2, 269, 1801, 3, 2, 2, 2, 271, 1803, 3, 2, 2, 2, 273, 1805, 3, 2, 2, 2, 275, 1807, 3, 2, 2, 2, 277, 1809, 3, 2, 2, 2, 279, 1811, 3, 2, 2, 2, 281, 1813, 3, 2, 2, 2, 283, 1815, 3, 2, 2, 2, 285, 1818, 3, 2, 2, 2, 287, 1821, 3, 2, 2, 2, 289, 1823, 3, 2, 2, 2, 291, 1825, 3, 2, 2, 2, 293, 1827, 3, 2, 2, 2, 295, 1829, 3, 2, 2, 2, 297, 1831, 3, 2, 2, 2, 299, 1833, 3, 2, 2, 2, 301, 1836, 3, 2, 2, 2, 303, 1841, 3, 2, 2, 2, 305, 1846, 3, 2, 2, 2, 307, 1848, 3, 2, 2, 2, 309, 1864, 3, 2, 2, 2, 311, 1873, 3, 2, 2, 2, 313, 1889, 3, 2, 2, 2, 315, 1891, 3, 2, 2, 2, 317, 1898, 3, 2, 2, 2, 319, 1902, 3, 2, 2, 2, 321, 1908, 3, 2, 2, 2, 323, 1910, 3, 2, 2, 2, 325, 1912, 3, 2, 2, 2, 327, 1914, 3, 2, 2, 2, 329, 1922, 3, 2, 2, 2, 331, 1928, 3, 2, 2, 2, 333, 1935, 3, 2, 2, 2, 335, 1942, 3, 2, 2, 2, 337, 1944, 3, 2, 2, 2, 339, 1947, 3, 2, 2, 2, 341, 1953, 3, 2, 2, 2, 343, 1964, 3, 2, 2, 2, 345, 1978, 3, 2, 2, 2, 347, 1987, 3, 2, 2, 2, 349, 2000, 3, 2, 2, 2, 351, 2006, 3, 2, 2, 2, 353, 2017, 3, 2, 2, 2, 355, 356, 7, 125, 2, 2, 356, 357, 8, 2, 2, 2, 357, 6, 3, 2, 2, 2, 358, 359, 7, 127, 2, 2, 359, 8, 3, 2, 2, 2, 360, 361, 7, 93, 2, 2, 361, 10, 3, 2, 2, 2, 362, 363, 7, 95, 2, 2, 363, 12, 3, 2, 2, 2, 364, 365, 7, 42, 2, 2, 365, 14, 3, 2, 2, 2, 366, 367, 7, 43, 2, 2, 367, 16, 3, 2, 2, 2, 368, 369, 7, 61, 2, 2, 369, 18, 3, 2, 2, 2, 370, 371, 7, 60, 2, 2, 371, 20, 3, 2, 2, 2, 372, 373, 7, 46, 2, 2, 373, 22, 3, 2, 2, 2, 374, 375, 7, 48, 2, 2, 375, 376, 7, 48, 2, 2, 376, 24, 3, 2, 2, 2, 377, 378, 7, 48, 2, 2, 378, 379, 7, 48, 2, 2, 379, 380, 7, 48, 2, 2, 380, 26, 3, 2, 2, 2, 381, 382, 7, 65, 2, 2, 382, 28, 3, 2, 2, 2, 383, 384, 7, 48, 2, 2, 384, 30, 3, 2, 2, 2, 385, 386, 7, 47, 2, 2, 386, 387, 7, 64, 2, 2, 387, 32, 3, 2, 2, 2, 388, 389, 7, 45, 2, 2, 389, 34, 3, 2, 2, 2, 390, 391, 7, 47, 2, 2, 391, 36, 3, 2, 2, 2, 392, 393, 7, 44, 2, 2, 393, 38, 3, 2, 2, 2, 394, 395, 7, 49, 2, 2, 395, 40, 3, 2, 2, 2, 396, 397, 7, 39, 2, 2, 397, 42, 3, 2, 2, 2, 398, 399, 7, 45, 2, 2, 399, 400, 7, 45, 2, 2, 400, 44, 3, 2, 2, 2, 401, 402, 7, 47, 2, 2, 402, 403, 7, 47, 2, 2, 403, 46, 3, 2, 2, 2, 404, 405, 7, 40, 2, 2, 405, 48, 3, 2, 2, 2, 406, 407, 7, 128, 2, 2, 407, 50, 3, 2, 2, 2, 408, 409, 7, 96, 2, 2, 409, 52, 3, 2, 2, 2, 410, 411, 7, 126, 2, 2, 411, 54, 3, 2, 2, 2, 412, 413, 7, 62, 2, 2, 413, 414, 7, 62, 2, 2, 414, 56, 3, 2, 2, 2, 415, 416, 7, 64, 2, 2, 416, 417, 7, 64, 2, 2, 417, 58, 3, 2, 2, 2, 418, 419, 7, 63, 2, 2, 419, 420, 7, 63, 2, 2, 420, 60, 3, 2, 2, 2, 421, 422, 7, 35, 2, 2, 422, 423, 7, 63, 2, 2, 423, 62, 3, 2, 2, 2, 424, 425, 7, 62, 2, 2, 425, 64, 3, 2, 2, 2, 426, 427, 7, 62, 2, 2, 427, 428, 7, 63, 2, 2, 428, 66, 3, 2, 2, 2, 429, 430, 7, 64, 2, 2, 430, 431, 7, 63, 2, 2, 431, 68, 3, 2, 2, 2, 432, 433, 7, 64, 2, 2, 433, 70, 3, 2, 2, 2, 434, 435, 7, 40, 2, 2, 435, 436, 7, 40, 2, 2, 436, 72, 3, 2, 2, 2, 437, 438, 7, 126, 2, 2, 438, 439, 7, 126, 2, 2, 439, 74, 3, 2, 2, 2, 440, 441, 7, 63, 2, 2, 441, 76, 3, 2, 2, 2, 442, 443, 7, 45, 2, 2, 443, 465, 7, 63, 2, 2, 444, 445, 7, 47, 2, 2, 445, 465, 7, 63, 2, 2, 446, 447, 7, 44, 2, 2, 447, 465, 7, 63, 2, 2, 448, 449, 7, 49, 2, 2, 449, 465, 7, 63, 2, 2, 450, 451, 7, 39, 2, 2, 451, 465, 7, 63, 2, 2, 452, 453, 7, 62, 2, 2, 453, 454, 7, 62, 2, 2, 454, 465, 7, 63, 2, 2, 455, 456, 7, 64, 2, 2, 456, 457, 7, 64, 2, 2, 457, 465, 7, 63, 2, 2, 458, 459, 7, 40, 2, 2, 459, 465, 7, 63, 2, 2, 460, 461, 7, 126, 2, 2, 461, 465, 7, 63, 2, 2, 462, 463, 7, 96, 2, 2, 463, 465, 7, 63, 2, 2, 464, 442, 3, 2, 2, 2, 464, 444, 3, 2, 2, 2, 464, 446, 3, 2, 2, 2, 464, 448, 3, 2, 2, 2, 464, 450, 3, 2, 2, 2, 464, 452, 3, 2, 2, 2, 464, 455, 3, 2, 2, 2, 464, 458, 3, 2, 2, 2, 464, 460, 3, 2, 2, 2, 464, 462, 3, 2, 2, 2, 465, 78, 3, 2, 2, 2, 466, 467, 7, 118, 2, 2, 467, 468, 7, 123, 2, 2, 468, 469, 7, 114, 2, 2, 469, 470, 7, 103, 2, 2, 470, 471, 7, 102, 2, 2, 471, 472, 7, 103, 2, 2, 472, 473, 7, 104, 2, 2, 473, 80, 3, 2, 2, 2, 474, 475, 7, 124, 2, 2, 475, 476, 7, 114, 2, 2, 476, 477, 7, 97, 2, 2, 477, 478, 7, 116, 2, 2, 478, 479, 7, 103, 2, 2, 479, 480, 7, 117, 2, 2, 480, 481, 7, 103, 2, 2, 481, 482, 7, 116, 2, 2, 482, 483, 7, 120, 2, 2, 483, 484, 7, 103, 2, 2, 484, 82, 3, 2, 2, 2, 485, 486, 7, 114, 2, 2, 486, 487, 7, 101, 2, 2, 487, 84, 3, 2, 2, 2, 488, 489, 7, 118, 2, 2, 489, 490, 7, 99, 2, 2, 490, 491, 7, 116, 2, 2, 491, 492, 7, 105, 2, 2, 492, 493, 7, 103, 2, 2, 493, 494, 7, 118, 2, 2, 494, 86, 3, 2, 2, 2, 495, 496, 7, 110, 2, 2, 496, 497, 7, 107, 2, 2, 497, 498, 7, 112, 2, 2, 498, 499, 7, 109, 2, 2, 499, 88, 3, 2, 2, 2, 500, 501, 7, 103, 2, 2, 501, 502, 7, 122, 2, 2, 502, 503, 7, 118, 2, 2, 503, 504, 7, 103, 2, 2, 504, 505, 7, 112, 2, 2, 505, 506, 7, 117, 2, 2, 506, 507, 7, 107, 2, 2, 507, 508, 7, 113, 2, 2, 508, 509, 7, 112, 2, 2, 509, 90, 3, 2, 2, 2, 510, 511, 7, 103, 2, 2, 511, 512, 7, 111, 2, 2, 512, 513, 7, 119, 2, 2, 513, 514, 7, 110, 2, 2, 514, 515, 7, 99, 2, 2, 515, 516, 7, 118, 2, 2, 516, 517, 7, 113, 2, 2, 517, 518, 7, 116, 2, 2, 518, 92, 3, 2, 2, 2, 519, 520, 7, 101, 2, 2, 520, 521, 7, 114, 2, 2, 521, 522, 7, 119, 2, 2, 522, 94, 3, 2, 2, 2, 523, 524, 7, 101, 2, 2, 524, 525, 7, 113, 2, 2, 525, 526, 7, 102, 2, 2, 526, 527, 7, 103, 2, 2, 527, 528, 7, 97, 2, 2, 528, 529, 7, 117, 2, 2, 529, 530, 7, 103, 2, 2, 530, 531, 7, 105, 2, 2, 531, 96, 3, 2, 2, 2, 532, 533, 7, 102, 2, 2, 533, 534, 7, 99, 2, 2, 534, 535, 7, 118, 2, 2, 535, 536, 7, 99, 2, 2, 536, 537, 7, 97, 2, 2, 537, 538, 7, 117, 2, 2, 538, 539, 7, 103, 2, 2, 539, 540, 7, 105, 2, 2, 540, 98, 3, 2, 2, 2, 541, 542, 7, 103, 2, 2, 542, 543, 7, 112, 2, 2, 543, 544, 7, 101, 2, 2, 544, 545, 7, 113, 2, 2, 545, 546, 7, 102, 2, 2, 546, 547, 7, 107, 2, 2, 547, 548, 7, 112, 2, 2, 548, 549, 7, 105, 2, 2, 549, 100, 3, 2, 2, 2, 550, 551, 7, 101, 2, 2, 551, 552, 7, 113, 2, 2, 552, 553, 7, 112, 2, 2, 553, 554, 7, 117, 2, 2, 554, 555, 7, 118, 2, 2, 555, 102, 3, 2, 2, 2, 556, 557, 7, 103, 2, 2, 557, 558, 7, 122, 2, 2, 558, 559, 7, 118, 2, 2, 559, 560, 7, 103, 2, 2, 560, 561, 7, 116, 2, 2, 561, 562, 7, 112, 2, 2, 562, 104, 3, 2, 2, 2, 563, 564, 7, 103, 2, 2, 564, 565, 7, 122, 2, 2, 565, 566, 7, 114, 2, 2, 566, 567, 7, 113, 2, 2, 567, 568, 7, 116, 2, 2, 568, 569, 7, 118, 2, 2, 569, 106, 3, 2, 2, 2, 570, 571, 7, 99, 2, 2, 571, 572, 7, 110, 2, 2, 572, 573, 7, 107, 2, 2, 573, 574, 7, 105, 2, 2, 574, 575, 7, 112, 2, 2, 575, 108, 3, 2, 2, 2, 576, 577, 7, 107, 2, 2, 577, 578, 7, 112, 2, 2, 578, 579, 7, 110, 2, 2, 579, 580, 7, 107, 2, 2, 580, 581, 7, 112, 2, 2, 581, 582, 7, 103, 2, 2, 582, 110, 3, 2, 2, 2, 583, 584, 7, 120, 2, 2, 584, 585, 7, 113, 2, 2, 585, 586, 7, 110, 2, 2, 586, 587, 7, 99, 2, 2, 587, 588, 7, 118, 2, 2, 588, 589, 7, 107, 2, 2, 589, 590, 7, 110, 2, 2, 590, 591, 7, 103, 2, 2, 591, 112, 3, 2, 2, 2, 592, 593, 7, 117, 2, 2, 593, 594, 7, 118, 2, 2, 594, 595, 7, 99, 2, 2, 595, 596, 7, 118, 2, 2, 596, 597, 7, 107, 2, 2, 597, 598, 7, 101, 2, 2, 598, 114, 3, 2, 2, 2, 599, 600, 7, 107, 2, 2, 600, 601, 7, 112, 2, 2, 601, 602, 7, 118, 2, 2, 602, 603, 7, 103, 2, 2, 603, 604, 7, 116, 2, 2, 604, 605, 7, 116, 2, 2, 605, 606, 7, 119, 2, 2, 606, 607, 7, 114, 2, 2, 607, 608, 7, 118, 2, 2, 608, 116, 3, 2, 2, 2, 609, 610, 7, 116, 2, 2, 610, 611, 7, 103, 2, 2, 611, 612, 7, 105, 2, 2, 612, 613, 7, 107, 2, 2, 613, 614, 7, 117, 2, 2, 614, 615, 7, 118, 2, 2, 615, 616, 7, 103, 2, 2, 616, 617, 7, 116, 2, 2, 617, 118, 3, 2, 2, 2, 618, 619, 7, 97, 2, 2, 619, 620, 7, 97, 2, 2, 620, 621, 7, 124, 2, 2, 621, 622, 7, 114, 2, 2, 622, 623, 7, 97, 2, 2, 623, 624, 7, 116, 2, 2, 624, 625, 7, 103, 2, 2, 625, 626, 7, 117, 2, 2, 626, 627, 7, 103, 2, 2, 627, 628, 7, 116, 2, 2, 628, 629, 7, 120, 2, 2, 629, 630, 7, 103, 2, 2, 630, 120, 3, 2, 2, 2, 631, 632, 7, 97, 2, 2, 632, 633, 7, 97, 2, 2, 633, 634, 7, 99, 2, 2, 634, 635, 7, 102, 2, 2, 635, 636, 7, 102, 2, 2, 636, 637, 7, 116, 2, 2, 637, 638, 7, 103, 2, 2, 638, 639, 7, 117, 2, 2, 639, 640, 7, 117, 2, 2, 640, 122, 3, 2, 2, 2, 641, 642, 7, 97, 2, 2, 642, 643, 7, 97, 2, 2, 643, 644, 7, 124, 2, 2, 644, 645, 7, 114, 2, 2, 645, 124, 3, 2, 2, 2, 646, 647, 7, 97, 2, 2, 647, 648, 7, 97, 2, 2, 648, 649, 7, 111, 2, 2, 649, 650, 7, 103, 2, 2, 650, 651, 7, 111, 2, 2, 651, 126, 3, 2, 2, 2, 652, 653, 7, 97, 2, 2, 653, 654, 7, 97, 2, 2, 654, 655, 7, 117, 2, 2, 655, 656, 7, 117, 2, 2, 656, 657, 7, 99, 2, 2, 657, 128, 3, 2, 2, 2, 658, 659, 7, 97, 2, 2, 659, 660, 7, 97, 2, 2, 660, 661, 7, 111, 2, 2, 661, 662, 7, 99, 2, 2, 662, 130, 3, 2, 2, 2, 663, 664, 7, 97, 2, 2, 664, 665, 7, 97, 2, 2, 665, 666, 7, 107, 2, 2, 666, 667, 7, 112, 2, 2, 667, 668, 7, 118, 2, 2, 668, 669, 7, 116, 2, 2, 669, 670, 7, 107, 2, 2, 670, 671, 7, 112, 2, 2, 671, 672, 7, 117, 2, 2, 672, 673, 7, 107, 2, 2, 673, 674, 7, 101, 2, 2, 674, 132, 3, 2, 2, 2, 675, 676, 7, 101, 2, 2, 676, 677, 7, 99, 2, 2, 677, 678, 7, 110, 2, 2, 678, 679, 7, 110, 2, 2, 679, 680, 7, 107, 2, 2, 680, 681, 7, 112, 2, 2, 681, 682, 7, 105, 2, 2, 682, 134, 3, 2, 2, 2, 683, 684, 7, 97, 2, 2, 684, 685, 7, 97, 2, 2, 685, 686, 7, 117, 2, 2, 686, 687, 7, 118, 2, 2, 687, 688, 7, 99, 2, 2, 688, 689, 7, 101, 2, 2, 689, 690, 7, 109, 2, 2, 690, 691, 7, 101, 2, 2, 691, 692, 7, 99, 2, 2, 692, 693, 7, 110, 2, 2, 693, 704, 7, 110, 2, 2, 694, 695, 7, 97, 2, 2, 695, 696, 7, 97, 2, 2, 696, 697, 7, 114, 2, 2, 697, 698, 7, 106, 2, 2, 698, 699, 7, 107, 2, 2, 699, 700, 7, 101, 2, 2, 700, 701, 7, 99, 2, 2, 701, 702, 7, 110, 2, 2, 702, 704, 7, 110, 2, 2, 703, 683, 3, 2, 2, 2, 703, 694, 3, 2, 2, 2, 704, 136, 3, 2, 2, 2, 705, 706, 7, 120, 2, 2, 706, 707, 7, 99, 2, 2, 707, 708, 7, 116, 2, 2, 708, 709, 7, 97, 2, 2, 709, 710, 7, 111, 2, 2, 710, 711, 7, 113, 2, 2, 711, 712, 7, 102, 2, 2, 712, 713, 7, 103, 2, 2, 713, 714, 7, 110, 2, 2, 714, 138, 3, 2, 2, 2, 715, 716, 7, 101, 2, 2, 716, 717, 7, 113, 2, 2, 717, 718, 7, 112, 2, 2, 718, 719, 7, 117, 2, 2, 719, 720, 7, 118, 2, 2, 720, 721, 7, 116, 2, 2, 721, 722, 7, 119, 2, 2, 722, 723, 7, 101, 2, 2, 723, 724, 7, 118, 2, 2, 724, 725, 7, 113, 2, 2, 725, 726, 7, 116, 2, 2, 726, 727, 7, 97, 2, 2, 727, 728, 7, 104, 2, 2, 728, 729, 7, 113, 2, 2, 729, 730, 7, 116, 2, 2, 730, 140, 3, 2, 2, 2, 731, 732, 7, 107, 2, 2, 732, 733, 7, 104, 2, 2, 733, 142, 3, 2, 2, 2, 734, 735, 7, 103, 2, 2, 735, 736, 7, 110, 2, 2, 736, 737, 7, 117, 2, 2, 737, 738, 7, 103, 2, 2, 738, 144, 3, 2, 2, 2, 739, 740, 7, 121, 2, 2, 740, 741, 7, 106, 2, 2, 741, 742, 7, 107, 2, 2, 742, 743, 7, 110, 2, 2, 743, 744, 7, 103, 2, 2, 744, 146, 3, 2, 2, 2, 745, 746, 7, 102, 2, 2, 746, 747, 7, 113, 2, 2, 747, 148, 3, 2, 2, 2, 748, 749, 7, 104, 2, 2, 749, 750, 7, 113, 2, 2, 750, 751, 7, 116, 2, 2, 751, 150, 3, 2, 2, 2, 752, 753, 7, 117, 2, 2, 753, 754, 7, 121, 2, 2, 754, 755, 7, 107, 2, 2, 755, 756, 7, 118, 2, 2, 756, 757, 7, 101, 2, 2, 757, 758, 7, 106, 2, 2, 758, 152, 3, 2, 2, 2, 759, 760, 7, 116, 2, 2, 760, 761, 7, 103, 2, 2, 761, 762, 7, 118, 2, 2, 762, 763, 7, 119, 2, 2, 763, 764, 7, 116, 2, 2, 764, 765, 7, 112, 2, 2, 765, 154, 3, 2, 2, 2, 766, 767, 7, 100, 2, 2, 767, 768, 7, 116, 2, 2, 768, 769, 7, 103, 2, 2, 769, 770, 7, 99, 2, 2, 770, 771, 7, 109, 2, 2, 771, 156, 3, 2, 2, 2, 772, 773, 7, 101, 2, 2, 773, 774, 7, 113, 2, 2, 774, 775, 7, 112, 2, 2, 775, 776, 7, 118, 2, 2, 776, 777, 7, 107, 2, 2, 777, 778, 7, 112, 2, 2, 778, 779, 7, 119, 2, 2, 779, 780, 7, 103, 2, 2, 780, 158, 3, 2, 2, 2, 781, 782, 7, 99, 2, 2, 782, 783, 7, 117, 2, 2, 783, 784, 7, 111, 2, 2, 784, 785, 3, 2, 2, 2, 785, 786, 8, 79, 3, 2, 786, 160, 3, 2, 2, 2, 787, 788, 7, 102, 2, 2, 788, 789, 7, 103, 2, 2, 789, 790, 7, 104, 2, 2, 790, 791, 7, 99, 2, 2, 791, 792, 7, 119, 2, 2, 792, 793, 7, 110, 2, 2, 793, 794, 7, 118, 2, 2, 794, 162, 3, 2, 2, 2, 795, 796, 7, 101, 2, 2, 796, 797, 7, 99, 2, 2, 797, 798, 7, 117, 2, 2, 798, 799, 7, 103, 2, 2, 799, 164, 3, 2, 2, 2, 800, 801, 7, 117, 2, 2, 801, 802, 7, 118, 2, 2, 802, 803, 7, 116, 2, 2, 803, 804, 7, 119, 2, 2, 804, 805, 7, 101, 2, 2, 805, 806, 7, 118, 2, 2, 806, 166, 3, 2, 2, 2, 807, 808, 7, 103, 2, 2, 808, 809, 7, 112, 2, 2, 809, 810, 7, 119, 2, 2, 810, 811, 7, 111, 2, 2, 811, 168, 3, 2, 2, 2, 812, 813, 7, 117, 2, 2, 813, 814, 7, 107, 2, 2, 814, 815, 7, 124, 2, 2, 815, 816, 7, 103, 2, 2, 816, 817, 7, 113, 2, 2, 817, 818, 7, 104, 2, 2, 818, 170, 3, 2, 2, 2, 819, 820, 7, 118, 2, 2, 820, 821, 7, 123, 2, 2, 821, 822, 7, 114, 2, 2, 822, 823, 7, 103, 2, 2, 823, 824, 7, 107, 2, 2, 824, 825, 7, 102, 2, 2, 825, 172, 3, 2, 2, 2, 826, 827, 7, 102, 2, 2, 827, 828, 7, 103, 2, 2, 828, 829, 7, 104, 2, 2, 829, 830, 7, 107, 2, 2, 830, 831, 7, 112, 2, 2, 831, 832, 7, 103, 2, 2, 832, 833, 7, 102, 2, 2, 833, 174, 3, 2, 2, 2, 834, 835, 7, 109, 2, 2, 835, 836, 7, 107, 2, 2, 836, 837, 7, 101, 2, 2, 837, 838, 7, 109, 2, 2, 838, 839, 7, 99, 2, 2, 839, 840, 7, 117, 2, 2, 840, 841, 7, 111, 2, 2, 841, 176, 3, 2, 2, 2, 842, 843, 7, 116, 2, 2, 843, 844, 7, 103, 2, 2, 844, 845, 7, 117, 2, 2, 845, 846, 7, 113, 2, 2, 846, 847, 7, 119, 2, 2, 847, 848, 7, 116, 2, 2, 848, 849, 7, 101, 2, 2, 849, 850, 7, 103, 2, 2, 850, 178, 3, 2, 2, 2, 851, 852, 7, 119, 2, 2, 852, 853, 7, 117, 2, 2, 853, 854, 7, 103, 2, 2, 854, 855, 7, 117, 2, 2, 855, 180, 3, 2, 2, 2, 856, 857, 7, 101, 2, 2, 857, 858, 7, 110, 2, 2, 858, 859, 7, 113, 2, 2, 859, 860, 7, 100, 2, 2, 860, 861, 7, 100, 2, 2, 861, 862, 7, 103, 2, 2, 862, 863, 7, 116, 2, 2, 863, 864, 7, 117, 2, 2, 864, 182, 3, 2, 2, 2, 865, 866, 7, 100, 2, 2, 866, 867, 7, 123, 2, 2, 867, 868, 7, 118, 2, 2, 868, 869, 7, 103, 2, 2, 869, 870, 7, 117, 2, 2, 870, 184, 3, 2, 2, 2, 871, 872, 7, 101, 2, 2, 872, 873, 7, 123, 2, 2, 873, 874, 7, 101, 2, 2, 874, 875, 7, 110, 2, 2, 875, 876, 7, 103, 2, 2, 876, 877, 7, 117, 2, 2, 877, 186, 3, 2, 2, 2, 878, 879, 7, 35, 2, 2, 879, 188, 3, 2, 2, 2, 880, 881, 7, 117, 2, 2, 881, 882, 7, 107, 2, 2, 882, 883, 7, 105, 2, 2, 883, 884, 7, 112, 2, 2, 884, 885, 7, 103, 2, 2, 885, 895, 7, 102, 2, 2, 886, 887, 7, 119, 2, 2, 887, 888, 7, 112, 2, 2, 888, 889, 7, 117, 2, 2, 889, 890, 7, 107, 2, 2, 890, 891, 7, 105, 2, 2, 891, 892, 7, 112, 2, 2, 892, 893, 7, 103, 2, 2, 893, 895, 7, 102, 2, 2, 894, 880, 3, 2, 2, 2, 894, 886, 3, 2, 2, 2, 895, 190, 3, 2, 2, 2, 896, 897, 7, 100, 2, 2, 897, 898, 7, 123, 2, 2, 898, 899, 7, 118, 2, 2, 899, 934, 7, 103, 2, 2, 900, 901, 7, 121, 2, 2, 901, 902, 7, 113, 2, 2, 902, 903, 7, 116, 2, 2, 903, 934, 7, 102, 2, 2, 904, 905, 7, 102, 2, 2, 905, 906, 7, 121, 2, 2, 906, 907, 7, 113, 2, 2, 907, 908, 7, 116, 2, 2, 908, 934, 7, 102, 2, 2, 909, 910, 7, 100, 2, 2, 910, 911, 7, 113, 2, 2, 911, 912, 7, 113, 2, 2, 912, 934, 7, 110, 2, 2, 913, 914, 7, 101, 2, 2, 914, 915, 7, 106, 2, 2, 915, 916, 7, 99, 2, 2, 916, 934, 7, 116, 2, 2, 917, 918, 7, 117, 2, 2, 918, 919, 7, 106, 2, 2, 919, 920, 7, 113, 2, 2, 920, 921, 7, 116, 2, 2, 921, 934, 7, 118, 2, 2, 922, 923, 7, 107, 2, 2, 923, 924, 7, 112, 2, 2, 924, 934, 7, 118, 2, 2, 925, 926, 7, 110, 2, 2, 926, 927, 7, 113, 2, 2, 927, 928, 7, 112, 2, 2, 928, 934, 7, 105, 2, 2, 929, 930, 7, 120, 2, 2, 930, 931, 7, 113, 2, 2, 931, 932, 7, 107, 2, 2, 932, 934, 7, 102, 2, 2, 933, 896, 3, 2, 2, 2, 933, 900, 3, 2, 2, 2, 933, 904, 3, 2, 2, 2, 933, 909, 3, 2, 2, 2, 933, 913, 3, 2, 2, 2, 933, 917, 3, 2, 2, 2, 933, 922, 3, 2, 2, 2, 933, 925, 3, 2, 2, 2, 933, 929, 3, 2, 2, 2, 934, 192, 3, 2, 2, 2, 935, 936, 7, 118, 2, 2, 936, 937, 7, 116, 2, 2, 937, 938, 7, 119, 2, 2, 938, 945, 7, 103, 2, 2, 939, 940, 7, 104, 2, 2, 940, 941, 7, 99, 2, 2, 941, 942, 7, 110, 2, 2, 942, 943, 7, 117, 2, 2, 943, 945, 7, 103, 2, 2, 944, 935, 3, 2, 2, 2, 944, 939, 3, 2, 2, 2, 945, 194, 3, 2, 2, 2, 946, 947, 7, 125, 2, 2, 947, 948, 7, 125, 2, 2, 948, 952, 3, 2, 2, 2, 949, 951, 11, 2, 2, 2, 950, 949, 3, 2, 2, 2, 951, 954, 3, 2, 2, 2, 952, 953, 3, 2, 2, 2, 952, 950, 3, 2, 2, 2, 953, 955, 3, 2, 2, 2, 954, 952, 3, 2, 2, 2, 955, 956, 7, 127, 2, 2, 956, 957, 7, 127, 2, 2, 957, 196, 3, 2, 2, 2, 958, 959, 7, 37, 2, 2, 959, 960, 7, 107, 2, 2, 960, 961, 7, 111, 2, 2, 961, 962, 7, 114, 2, 2, 962, 963, 7, 113, 2, 2, 963, 964, 7, 116, 2, 2, 964, 965, 7, 118, 2, 2, 965, 966, 3, 2, 2, 2, 966, 967, 8, 98, 4, 2, 967, 198, 3, 2, 2, 2, 968, 969, 7, 37, 2, 2, 969, 970, 7, 107, 2, 2, 970, 971, 7, 112, 2, 2, 971, 972, 7, 101, 2, 2, 972, 973, 7, 110, 2, 2, 973, 974, 7, 119, 2, 2, 974, 975, 7, 102, 2, 2, 975, 976, 7, 103, 2, 2, 976, 977, 3, 2, 2, 2, 977, 978, 8, 99, 5, 2, 978, 200, 3, 2, 2, 2, 979, 980, 7, 37, 2, 2, 980, 981, 7, 114, 2, 2, 981, 982, 7, 116, 2, 2, 982, 983, 7, 99, 2, 2, 983, 984, 7, 105, 2, 2, 984, 985, 7, 111, 2, 2, 985, 986, 7, 99, 2, 2, 986, 202, 3, 2, 2, 2, 987, 988, 7, 37, 2, 2, 988, 989, 7, 102, 2, 2, 989, 990, 7, 103, 2, 2, 990, 991, 7, 104, 2, 2, 991, 992, 7, 107, 2, 2, 992, 993, 7, 112, 2, 2, 993, 994, 7, 103, 2, 2, 994, 204, 3, 2, 2, 2, 995, 996, 7, 94, 2, 2, 996, 1001, 7, 12, 2, 2, 997, 998, 7, 94, 2, 2, 998, 999, 7, 15, 2, 2, 999, 1001, 7, 12, 2, 2, 1000, 995, 3, 2, 2, 2, 1000, 997, 3, 2, 2, 2, 1001, 206, 3, 2, 2, 2, 1002, 1003, 7, 37, 2, 2, 1003, 1004, 7, 119, 2, 2, 1004, 1005, 7, 112, 2, 2, 1005, 1006, 7, 102, 2, 2, 1006, 1007, 7, 103, 2, 2, 1007, 1008, 7, 104, 2, 2, 1008, 208, 3, 2, 2, 2, 1009, 1010, 7, 37, 2, 2, 1010, 1011, 7, 107, 2, 2, 1011, 1012, 7, 104, 2, 2, 1012, 1013, 7, 102, 2, 2, 1013, 1014, 7, 103, 2, 2, 1014, 1015, 7, 104, 2, 2, 1015, 210, 3, 2, 2, 2, 1016, 1017, 7, 37, 2, 2, 1017, 1018, 7, 107, 2, 2, 1018, 1019, 7, 104, 2, 2, 1019, 1020, 7, 112, 2, 2, 1020, 1021, 7, 102, 2, 2, 1021, 1022, 7, 103, 2, 2, 1022, 1023, 7, 104, 2, 2, 1023, 212, 3, 2, 2, 2, 1024, 1025, 7, 37, 2, 2, 1025, 1026, 7, 107, 2, 2, 1026, 1027, 7, 104, 2, 2, 1027, 214, 3, 2, 2, 2, 1028, 1029, 7, 37, 2, 2, 1029, 1030, 7, 103, 2, 2, 1030, 1031, 7, 110, 2, 2, 1031, 1032, 7, 107, 2, 2, 1032, 1033, 7, 104, 2, 2, 1033, 216, 3, 2, 2, 2, 1034, 1035, 7, 37, 2, 2, 1035, 1036, 7, 103, 2, 2, 1036, 1037, 7, 110, 2, 2, 1037, 1038, 7, 117, 2, 2, 1038, 1039, 7, 103, 2, 2, 1039, 218, 3, 2, 2, 2, 1040, 1041, 7, 37, 2, 2, 1041, 1042, 7, 103, 2, 2, 1042, 1043, 7, 112, 2, 2, 1043, 1044, 7, 102, 2, 2, 1044, 1045, 7, 107, 2, 2, 1045, 1046, 7, 104, 2, 2, 1046, 220, 3, 2, 2, 2, 1047, 1048, 7, 37, 2, 2, 1048, 1049, 7, 103, 2, 2, 1049, 1050, 7, 116, 2, 2, 1050, 1051, 7, 116, 2, 2, 1051, 1052, 7, 113, 2, 2, 1052, 1053, 7, 116, 2, 2, 1053, 222, 3, 2, 2, 2, 1054, 1057, 5, 225, 112, 2, 1055, 1057, 5, 233, 116, 2, 1056, 1054, 3, 2, 2, 2, 1056, 1055, 3, 2, 2, 2, 1057, 224, 3, 2, 2, 2, 1058, 1062, 5, 227, 113, 2, 1059, 1062, 5, 229, 114, 2, 1060, 1062, 5, 231, 115, 2, 1061, 1058, 3, 2, 2, 2, 1061, 1059, 3, 2, 2, 2, 1061, 1060, 3, 2, 2, 2, 1062, 226, 3, 2, 2, 2, 1063, 1069, 7, 39, 2, 2, 1064, 1065, 7, 50, 2, 2, 1065, 1069, 7, 100, 2, 2, 1066, 1067, 7, 50, 2, 2, 1067, 1069, 7, 68, 2, 2, 1068, 1063, 3, 2, 2, 2, 1068, 1064, 3, 2, 2, 2, 1068, 1066, 3, 2, 2, 2, 1069, 1073, 3, 2, 2, 2, 1070, 1072, 5, 241, 120, 2, 1071, 1070, 3, 2, 2, 2, 1072, 1075, 3, 2, 2, 2, 1073, 1071, 3, 2, 2, 2, 1073, 1074, 3, 2, 2, 2, 1074, 1076, 3, 2, 2, 2, 1075, 1073, 3, 2, 2, 2, 1076, 1078, 7, 48, 2, 2, 1077, 1079, 5, 241, 120, 2, 1078, 1077, 3, 2, 2, 2, 1079, 1080, 3, 2, 2, 2, 1080, 1078, 3, 2, 2, 2, 1080, 1081, 3, 2, 2, 2, 1081, 228, 3, 2, 2, 2, 1082, 1084, 5, 243, 121, 2, 1083, 1082, 3, 2, 2, 2, 1084, 1087, 3, 2, 2, 2, 1085, 1083, 3, 2, 2, 2, 1085, 1086, 3, 2, 2, 2, 1086, 1088, 3, 2, 2, 2, 1087, 1085, 3, 2, 2, 2, 1088, 1090, 7, 48, 2, 2, 1089, 1091, 5, 243, 121, 2, 1090, 1089, 3, 2, 2, 2, 1091, 1092, 3, 2, 2, 2, 1092, 1090, 3, 2, 2, 2, 1092, 1093, 3, 2, 2, 2, 1093, 230, 3, 2, 2, 2, 1094, 1100, 7, 38, 2, 2, 1095, 1096, 7, 50, 2, 2, 1096, 1100, 7, 122, 2, 2, 1097, 1098, 7, 50, 2, 2, 1098, 1100, 7, 90, 2, 2, 1099, 1094, 3, 2, 2, 2, 1099, 1095, 3, 2, 2, 2, 1099, 1097, 3, 2, 2, 2, 1100, 1104, 3, 2, 2, 2, 1101, 1103, 5, 245, 122, 2, 1102, 1101, 3, 2, 2, 2, 1103, 1106, 3, 2, 2, 2, 1104, 1102, 3, 2, 2, 2, 1104, 1105, 3, 2, 2, 2, 1105, 1107, 3, 2, 2, 2, 1106, 1104, 3, 2, 2, 2, 1107, 1109, 7, 48, 2, 2, 1108, 1110, 5, 245, 122, 2, 1109, 1108, 3, 2, 2, 2, 1110, 1111, 3, 2, 2, 2, 1111, 1109, 3, 2, 2, 2, 1111, 1112, 3, 2, 2, 2, 1112, 232, 3, 2, 2, 2, 1113, 1117, 5, 237, 118, 2, 1114, 1117, 5, 239, 119, 2, 1115, 1117, 5, 235, 117, 2, 1116, 1113, 3, 2, 2, 2, 1116, 1114, 3, 2, 2, 2, 1116, 1115, 3, 2, 2, 2, 1117, 1121, 3, 2, 2, 2, 1118, 1119, 9, 2, 2, 2, 1119, 1122, 9, 3, 2, 2, 1120, 1122, 7, 110, 2, 2, 1121, 1118, 3, 2, 2, 2, 1121, 1120, 3, 2, 2, 2, 1121, 1122, 3, 2, 2, 2, 1122, 234, 3, 2, 2, 2, 1123, 1124, 7, 50, 2, 2, 1124, 1126, 9, 4, 2, 2, 1125, 1127, 5, 241, 120, 2, 1126, 1125, 3, 2, 2, 2, 1127, 1128, 3, 2, 2, 2, 1128, 1126, 3, 2, 2, 2, 1128, 1129, 3, 2, 2, 2, 1129, 1137, 3, 2, 2, 2, 1130, 1132, 7, 39, 2, 2, 1131, 1133, 5, 241, 120, 2, 1132, 1131, 3, 2, 2, 2, 1133, 1134, 3, 2, 2, 2, 1134, 1132, 3, 2, 2, 2, 1134, 1135, 3, 2, 2, 2, 1135, 1137, 3, 2, 2, 2, 1136, 1123, 3, 2, 2, 2, 1136, 1130, 3, 2, 2, 2, 1137, 236, 3, 2, 2, 2, 1138, 1140, 5, 243, 121, 2, 1139, 1138, 3, 2, 2, 2, 1140, 1141, 3, 2, 2, 2, 1141, 1139, 3, 2, 2, 2, 1141, 1142, 3, 2, 2, 2, 1142, 238, 3, 2, 2, 2, 1143, 1149, 7, 38, 2, 2, 1144, 1145, 7, 50, 2, 2, 1145, 1149, 7, 122, 2, 2, 1146, 1147, 7, 50, 2, 2, 1147, 1149, 7, 90, 2, 2, 1148, 1143, 3, 2, 2, 2, 1148, 1144, 3, 2, 2, 2, 1148, 1146, 3, 2, 2, 2, 1149, 1151, 3, 2, 2, 2, 1150, 1152, 5, 245, 122, 2, 1151, 1150, 3, 2, 2, 2, 1152, 1153, 3, 2, 2, 2, 1153, 1151, 3, 2, 2, 2, 1153, 1154, 3, 2, 2, 2, 1154, 240, 3, 2, 2, 2, 1155, 1156, 9, 5, 2, 2, 1156, 242, 3, 2, 2, 2, 1157, 1158, 9, 6, 2, 2, 1158, 244, 3, 2, 2, 2, 1159, 1160, 9, 7, 2, 2, 1160, 246, 3, 2, 2, 2, 1161, 1165, 5, 249, 124, 2, 1162, 1164, 5, 251, 125, 2, 1163, 1162, 3, 2, 2, 2, 1164, 1167, 3, 2, 2, 2, 1165, 1163, 3, 2, 2, 2, 1165, 1166, 3, 2, 2, 2, 1166, 1168, 3, 2, 2, 2, 1167, 1165, 3, 2, 2, 2, 1168, 1169, 8, 123, 6, 2, 1169, 248, 3, 2, 2, 2, 1170, 1171, 9, 8, 2, 2, 1171, 250, 3, 2, 2, 2, 1172, 1173, 9, 9, 2, 2, 1173, 252, 3, 2, 2, 2, 1174, 1180, 7, 36, 2, 2, 1175, 1176, 7, 94, 2, 2, 1176, 1179, 7, 36, 2, 2, 1177, 1179, 10, 10, 2, 2, 1178, 1175, 3, 2, 2, 2, 1178, 1177, 3, 2, 2, 2, 1179, 1182, 3, 2, 2, 2, 1180, 1178, 3, 2, 2, 2, 1180, 1181, 3, 2, 2, 2, 1181, 1183, 3, 2, 2, 2, 1182, 1180, 3, 2, 2, 2, 1183, 1185, 7, 36, 2, 2, 1184, 1186, 9, 11, 2, 2, 1185, 1184, 3, 2, 2, 2, 1185, 1186, 3, 2, 2, 2, 1186, 1191, 3, 2, 2, 2, 1187, 1189, 9, 12, 2, 2, 1188, 1190, 9, 13, 2, 2, 1189, 1188, 3, 2, 2, 2, 1189, 1190, 3, 2, 2, 2, 1190, 1192, 3, 2, 2, 2, 1191, 1187, 3, 2, 2, 2, 1191, 1192, 3, 2, 2, 2, 1192, 1194, 3, 2, 2, 2, 1193, 1195, 9, 11, 2, 2, 1194, 1193, 3, 2, 2, 2, 1194, 1195, 3, 2, 2, 2, 1195, 254, 3, 2, 2, 2, 1196, 1205, 7, 41, 2, 2, 1197, 1202, 7, 94, 2, 2, 1198, 1203, 9, 14, 2, 2, 1199, 1200, 7, 122, 2, 2, 1200, 1201, 9, 15, 2, 2, 1201, 1203, 9, 15, 2, 2, 1202, 1198, 3, 2, 2, 2, 1202, 1199, 3, 2, 2, 2, 1203, 1206, 3, 2, 2, 2, 1204, 1206, 10, 16, 2, 2, 1205, 1197, 3, 2, 2, 2, 1205, 1204, 3, 2, 2, 2, 1206, 1207, 3, 2, 2, 2, 1207, 1208, 7, 41, 2, 2, 1208, 256, 3, 2, 2, 2, 1209, 1211, 9, 17, 2, 2, 1210, 1209, 3, 2, 2, 2, 1211, 1212, 3, 2, 2, 2, 1212, 1210, 3, 2, 2, 2, 1212, 1213, 3, 2, 2, 2, 1213, 1214, 3, 2, 2, 2, 1214, 1215, 8, 128, 7, 2, 1215, 258, 3, 2, 2, 2, 1216, 1217, 7, 49, 2, 2, 1217, 1218, 7, 49, 2, 2, 1218, 1222, 3, 2, 2, 2, 1219, 1221, 10, 18, 2, 2, 1220, 1219, 3, 2, 2, 2, 1221, 1224, 3, 2, 2, 2, 1222, 1220, 3, 2, 2, 2, 1222, 1223, 3, 2, 2, 2, 1223, 1225, 3, 2, 2, 2, 1224, 1222, 3, 2, 2, 2, 1225, 1226, 8, 129, 8, 2, 1226, 260, 3, 2, 2, 2, 1227, 1228, 7, 49, 2, 2, 1228, 1229, 7, 44, 2, 2, 1229, 1233, 3, 2, 2, 2, 1230, 1232, 11, 2, 2, 2, 1231, 1230, 3, 2, 2, 2, 1232, 1235, 3, 2, 2, 2, 1233, 1234, 3, 2, 2, 2, 1233, 1231, 3, 2, 2, 2, 1234, 1236, 3, 2, 2, 2, 1235, 1233, 3, 2, 2, 2, 1236, 1237, 7, 44, 2, 2, 1237, 1238, 7, 49, 2, 2, 1238, 1239, 3, 2, 2, 2, 1239, 1240, 8, 130, 8, 2, 1240, 262, 3, 2, 2, 2, 1241, 1242, 7, 48, 2, 2, 1242, 1243, 7, 100, 2, 2, 1243, 1244, 7, 123, 2, 2, 1244, 1245, 7, 118, 2, 2, 1245, 1246, 7, 103, 2, 2, 1246, 264, 3, 2, 2, 2, 1247, 1248, 7, 100, 2, 2, 1248, 1249, 7, 116, 2, 2, 1249, 1798, 7, 109, 2, 2, 1250, 1251, 7, 113, 2, 2, 1251, 1252, 7, 116, 2, 2, 1252, 1798, 7, 99, 2, 2, 1253, 1254, 7, 109, 2, 2, 1254, 1255, 7, 107, 2, 2, 1255, 1798, 7, 110, 2, 2, 1256, 1257, 7, 117, 2, 2, 1257, 1258, 7, 110, 2, 2, 1258, 1798, 7, 113, 2, 2, 1259, 1260, 7, 112, 2, 2, 1260, 1261, 7, 113, 2, 2, 1261, 1798, 7, 114, 2, 2, 1262, 1263, 7, 99, 2, 2, 1263, 1264, 7, 117, 2, 2, 1264, 1798, 7, 110, 2, 2, 1265, 1266, 7, 114, 2, 2, 1266, 1267, 7, 106, 2, 2, 1267, 1798, 7, 114, 2, 2, 1268, 1269, 7, 99, 2, 2, 1269, 1270, 7, 112, 2, 2, 1270, 1798, 7, 101, 2, 2, 1271, 1272, 7, 100, 2, 2, 1272, 1273, 7, 114, 2, 2, 1273, 1798, 7, 110, 2, 2, 1274, 1275, 7, 101, 2, 2, 1275, 1276, 7, 110, 2, 2, 1276, 1798, 7, 101, 2, 2, 1277, 1278, 7, 108, 2, 2, 1278, 1279, 7, 117, 2, 2, 1279, 1798, 7, 116, 2, 2, 1280, 1281, 7, 99, 2, 2, 1281, 1282, 7, 112, 2, 2, 1282, 1798, 7, 102, 2, 2, 1283, 1284, 7, 116, 2, 2, 1284, 1285, 7, 110, 2, 2, 1285, 1798, 7, 99, 2, 2, 1286, 1287, 7, 100, 2, 2, 1287, 1288, 7, 107, 2, 2, 1288, 1798, 7, 118, 2, 2, 1289, 1290, 7, 116, 2, 2, 1290, 1291, 7, 113, 2, 2, 1291, 1798, 7, 110, 2, 2, 1292, 1293, 7, 114, 2, 2, 1293, 1294, 7, 110, 2, 2, 1294, 1798, 7, 99, 2, 2, 1295, 1296, 7, 114, 2, 2, 1296, 1297, 7, 110, 2, 2, 1297, 1798, 7, 114, 2, 2, 1298, 1299, 7, 100, 2, 2, 1299, 1300, 7, 111, 2, 2, 1300, 1798, 7, 107, 2, 2, 1301, 1302, 7, 117, 2, 2, 1302, 1303, 7, 103, 2, 2, 1303, 1798, 7, 101, 2, 2, 1304, 1305, 7, 116, 2, 2, 1305, 1306, 7, 118, 2, 2, 1306, 1798, 7, 107, 2, 2, 1307, 1308, 7, 103, 2, 2, 1308, 1309, 7, 113, 2, 2, 1309, 1798, 7, 116, 2, 2, 1310, 1311, 7, 117, 2, 2, 1311, 1312, 7, 116, 2, 2, 1312, 1798, 7, 103, 2, 2, 1313, 1314, 7, 110, 2, 2, 1314, 1315, 7, 117, 2, 2, 1315, 1798, 7, 116, 2, 2, 1316, 1317, 7, 114, 2, 2, 1317, 1318, 7, 106, 2, 2, 1318, 1798, 7, 99, 2, 2, 1319, 1320, 7, 99, 2, 2, 1320, 1321, 7, 110, 2, 2, 1321, 1798, 7, 116, 2, 2, 1322, 1323, 7, 108, 2, 2, 1323, 1324, 7, 111, 2, 2, 1324, 1798, 7, 114, 2, 2, 1325, 1326, 7, 100, 2, 2, 1326, 1327, 7, 120, 2, 2, 1327, 1798, 7, 101, 2, 2, 1328, 1329, 7, 101, 2, 2, 1329, 1330, 7, 110, 2, 2, 1330, 1798, 7, 107, 2, 2, 1331, 1332, 7, 116, 2, 2, 1332, 1333, 7, 118, 2, 2, 1333, 1798, 7, 117, 2, 2, 1334, 1335, 7, 99, 2, 2, 1335, 1336, 7, 102, 2, 2, 1336, 1798, 7, 101, 2, 2, 1337, 1338, 7, 116, 2, 2, 1338, 1339, 7, 116, 2, 2, 1339, 1798, 7, 99, 2, 2, 1340, 1341, 7, 100, 2, 2, 1341, 1342, 7, 120, 2, 2, 1342, 1798, 7, 117, 2, 2, 1343, 1344, 7, 117, 2, 2, 1344, 1345, 7, 103, 2, 2, 1345, 1798, 7, 107, 2, 2, 1346, 1347, 7, 117, 2, 2, 1347, 1348, 7, 99, 2, 2, 1348, 1798, 7, 122, 2, 2, 1349, 1350, 7, 117, 2, 2, 1350, 1351, 7, 118, 2, 2, 1351, 1798, 7, 123, 2, 2, 1352, 1353, 7, 117, 2, 2, 1353, 1354, 7, 118, 2, 2, 1354, 1798, 7, 99, 2, 2, 1355, 1356, 7, 117, 2, 2, 1356, 1357, 7, 118, 2, 2, 1357, 1798, 7, 122, 2, 2, 1358, 1359, 7, 102, 2, 2, 1359, 1360, 7, 103, 2, 2, 1360, 1798, 7, 123, 2, 2, 1361, 1362, 7, 118, 2, 2, 1362, 1363, 7, 122, 2, 2, 1363, 1798, 7, 99, 2, 2, 1364, 1365, 7, 122, 2, 2, 1365, 1366, 7, 99, 2, 2, 1366, 1798, 7, 99, 2, 2, 1367, 1368, 7, 100, 2, 2, 1368, 1369, 7, 101, 2, 2, 1369, 1798, 7, 101, 2, 2, 1370, 1371, 7, 99, 2, 2, 1371, 1372, 7, 106, 2, 2, 1372, 1798, 7, 122, 2, 2, 1373, 1374, 7, 118, 2, 2, 1374, 1375, 7, 123, 2, 2, 1375, 1798, 7, 99, 2, 2, 1376, 1377, 7, 118, 2, 2, 1377, 1378, 7, 122, 2, 2, 1378, 1798, 7, 117, 2, 2, 1379, 1380, 7, 118, 2, 2, 1380, 1381, 7, 99, 2, 2, 1381, 1798, 7, 117, 2, 2, 1382, 1383, 7, 117, 2, 2, 1383, 1384, 7, 106, 2, 2, 1384, 1798, 7, 123, 2, 2, 1385, 1386, 7, 117, 2, 2, 1386, 1387, 7, 106, 2, 2, 1387, 1798, 7, 122, 2, 2, 1388, 1389, 7, 110, 2, 2, 1389, 1390, 7, 102, 2, 2, 1390, 1798, 7, 123, 2, 2, 1391, 1392, 7, 110, 2, 2, 1392, 1393, 7, 102, 2, 2, 1393, 1798, 7, 99, 2, 2, 1394, 1395, 7, 110, 2, 2, 1395, 1396, 7, 102, 2, 2, 1396, 1798, 7, 122, 2, 2, 1397, 1398, 7, 110, 2, 2, 1398, 1399, 7, 99, 2, 2, 1399, 1798, 7, 122, 2, 2, 1400, 1401, 7, 118, 2, 2, 1401, 1402, 7, 99, 2, 2, 1402, 1798, 7, 123, 2, 2, 1403, 1404, 7, 118, 2, 2, 1404, 1405, 7, 99, 2, 2, 1405, 1798, 7, 122, 2, 2, 1406, 1407, 7, 100, 2, 2, 1407, 1408, 7, 101, 2, 2, 1408, 1798, 7, 117, 2, 2, 1409, 1410, 7, 101, 2, 2, 1410, 1411, 7, 110, 2, 2, 1411, 1798, 7, 120, 2, 2, 1412, 1413, 7, 118, 2, 2, 1413, 1414, 7, 117, 2, 2, 1414, 1798, 7, 122, 2, 2, 1415, 1416, 7, 110, 2, 2, 1416, 1417, 7, 99, 2, 2, 1417, 1798, 7, 117, 2, 2, 1418, 1419, 7, 101, 2, 2, 1419, 1420, 7, 114, 2, 2, 1420, 1798, 7, 123, 2, 2, 1421, 1422, 7, 101, 2, 2, 1422, 1423, 7, 111, 2, 2, 1423, 1798, 7, 114, 2, 2, 1424, 1425, 7, 101, 2, 2, 1425, 1426, 7, 114, 2, 2, 1426, 1798, 7, 122, 2, 2, 1427, 1428, 7, 102, 2, 2, 1428, 1429, 7, 101, 2, 2, 1429, 1798, 7, 114, 2, 2, 1430, 1431, 7, 102, 2, 2, 1431, 1432, 7, 103, 2, 2, 1432, 1798, 7, 101, 2, 2, 1433, 1434, 7, 107, 2, 2, 1434, 1435, 7, 112, 2, 2, 1435, 1798, 7, 101, 2, 2, 1436, 1437, 7, 99, 2, 2, 1437, 1438, 7, 122, 2, 2, 1438, 1798, 7, 117, 2, 2, 1439, 1440, 7, 100, 2, 2, 1440, 1441, 7, 112, 2, 2, 1441, 1798, 7, 103, 2, 2, 1442, 1443, 7, 101, 2, 2, 1443, 1444, 7, 110, 2, 2, 1444, 1798, 7, 102, 2, 2, 1445, 1446, 7, 117, 2, 2, 1446, 1447, 7, 100, 2, 2, 1447, 1798, 7, 101, 2, 2, 1448, 1449, 7, 107, 2, 2, 1449, 1450, 7, 117, 2, 2, 1450, 1798, 7, 101, 2, 2, 1451, 1452, 7, 107, 2, 2, 1452, 1453, 7, 112, 2, 2, 1453, 1798, 7, 122, 2, 2, 1454, 1455, 7, 100, 2, 2, 1455, 1456, 7, 103, 2, 2, 1456, 1798, 7, 115, 2, 2, 1457, 1458, 7, 117, 2, 2, 1458, 1459, 7, 103, 2, 2, 1459, 1798, 7, 102, 2, 2, 1460, 1461, 7, 102, 2, 2, 1461, 1462, 7, 103, 2, 2, 1462, 1798, 7, 122, 2, 2, 1463, 1464, 7, 107, 2, 2, 1464, 1465, 7, 112, 2, 2, 1465, 1798, 7, 123, 2, 2, 1466, 1467, 7, 116, 2, 2, 1467, 1468, 7, 113, 2, 2, 1468, 1798, 7, 116, 2, 2, 1469, 1470, 7, 100, 2, 2, 1470, 1471, 7, 100, 2, 2, 1471, 1472, 7, 116, 2, 2, 1472, 1798, 7, 50, 2, 2, 1473, 1474, 7, 100, 2, 2, 1474, 1475, 7, 100, 2, 2, 1475, 1476, 7, 116, 2, 2, 1476, 1798, 7, 51, 2, 2, 1477, 1478, 7, 100, 2, 2, 1478, 1479, 7, 100, 2, 2, 1479, 1480, 7, 116, 2, 2, 1480, 1798, 7, 52, 2, 2, 1481, 1482, 7, 100, 2, 2, 1482, 1483, 7, 100, 2, 2, 1483, 1484, 7, 116, 2, 2, 1484, 1798, 7, 53, 2, 2, 1485, 1486, 7, 100, 2, 2, 1486, 1487, 7, 100, 2, 2, 1487, 1488, 7, 116, 2, 2, 1488, 1798, 7, 54, 2, 2, 1489, 1490, 7, 100, 2, 2, 1490, 1491, 7, 100, 2, 2, 1491, 1492, 7, 116, 2, 2, 1492, 1798, 7, 55, 2, 2, 1493, 1494, 7, 100, 2, 2, 1494, 1495, 7, 100, 2, 2, 1495, 1496, 7, 116, 2, 2, 1496, 1798, 7, 56, 2, 2, 1497, 1498, 7, 100, 2, 2, 1498, 1499, 7, 100, 2, 2, 1499, 1500, 7, 116, 2, 2, 1500, 1798, 7, 57, 2, 2, 1501, 1502, 7, 100, 2, 2, 1502, 1503, 7, 100, 2, 2, 1503, 1504, 7, 117, 2, 2, 1504, 1798, 7, 50, 2, 2, 1505, 1506, 7, 100, 2, 2, 1506, 1507, 7, 100, 2, 2, 1507, 1508, 7, 117, 2, 2, 1508, 1798, 7, 51, 2, 2, 1509, 1510, 7, 100, 2, 2, 1510, 1511, 7, 100, 2, 2, 1511, 1512, 7, 117, 2, 2, 1512, 1798, 7, 52, 2, 2, 1513, 1514, 7, 100, 2, 2, 1514, 1515, 7, 100, 2, 2, 1515, 1516, 7, 117, 2, 2, 1516, 1798, 7, 53, 2, 2, 1517, 1518, 7, 100, 2, 2, 1518, 1519, 7, 100, 2, 2, 1519, 1520, 7, 117, 2, 2, 1520, 1798, 7, 54, 2, 2, 1521, 1522, 7, 100, 2, 2, 1522, 1523, 7, 100, 2, 2, 1523, 1524, 7, 117, 2, 2, 1524, 1798, 7, 55, 2, 2, 1525, 1526, 7, 100, 2, 2, 1526, 1527, 7, 100, 2, 2, 1527, 1528, 7, 117, 2, 2, 1528, 1798, 7, 56, 2, 2, 1529, 1530, 7, 100, 2, 2, 1530, 1531, 7, 100, 2, 2, 1531, 1532, 7, 117, 2, 2, 1532, 1798, 7, 57, 2, 2, 1533, 1534, 7, 100, 2, 2, 1534, 1535, 7, 116, 2, 2, 1535, 1798, 7, 99, 2, 2, 1536, 1537, 7, 114, 2, 2, 1537, 1538, 7, 106, 2, 2, 1538, 1798, 7, 122, 2, 2, 1539, 1540, 7, 114, 2, 2, 1540, 1541, 7, 106, 2, 2, 1541, 1798, 7, 123, 2, 2, 1542, 1543, 7, 114, 2, 2, 1543, 1544, 7, 110, 2, 2, 1544, 1798, 7, 122, 2, 2, 1545, 1546, 7, 114, 2, 2, 1546, 1547, 7, 110, 2, 2, 1547, 1798, 7, 123, 2, 2, 1548, 1549, 7, 116, 2, 2, 1549, 1550, 7, 111, 2, 2, 1550, 1551, 7, 100, 2, 2, 1551, 1798, 7, 50, 2, 2, 1552, 1553, 7, 116, 2, 2, 1553, 1554, 7, 111, 2, 2, 1554, 1555, 7, 100, 2, 2, 1555, 1798, 7, 51, 2, 2, 1556, 1557, 7, 116, 2, 2, 1557, 1558, 7, 111, 2, 2, 1558, 1559, 7, 100, 2, 2, 1559, 1798, 7, 52, 2, 2, 1560, 1561, 7, 116, 2, 2, 1561, 1562, 7, 111, 2, 2, 1562, 1563, 7, 100, 2, 2, 1563, 1798, 7, 53, 2, 2, 1564, 1565, 7, 116, 2, 2, 1565, 1566, 7, 111, 2, 2, 1566, 1567, 7, 100, 2, 2, 1567, 1798, 7, 54, 2, 2, 1568, 1569, 7, 116, 2, 2, 1569, 1570, 7, 111, 2, 2, 1570, 1571, 7, 100, 2, 2, 1571, 1798, 7, 55, 2, 2, 1572, 1573, 7, 116, 2, 2, 1573, 1574, 7, 111, 2, 2, 1574, 1575, 7, 100, 2, 2, 1575, 1798, 7, 56, 2, 2, 1576, 1577, 7, 116, 2, 2, 1577, 1578, 7, 111, 2, 2, 1578, 1579, 7, 100, 2, 2, 1579, 1798, 7, 57, 2, 2, 1580, 1581, 7, 117, 2, 2, 1581, 1582, 7, 111, 2, 2, 1582, 1583, 7, 100, 2, 2, 1583, 1798, 7, 50, 2, 2, 1584, 1585, 7, 117, 2, 2, 1585, 1586, 7, 111, 2, 2, 1586, 1587, 7, 100, 2, 2, 1587, 1798, 7, 51, 2, 2, 1588, 1589, 7, 117, 2, 2, 1589, 1590, 7, 111, 2, 2, 1590, 1591, 7, 100, 2, 2, 1591, 1798, 7, 52, 2, 2, 1592, 1593, 7, 117, 2, 2, 1593, 1594, 7, 111, 2, 2, 1594, 1595, 7, 100, 2, 2, 1595, 1798, 7, 53, 2, 2, 1596, 1597, 7, 117, 2, 2, 1597, 1598, 7, 111, 2, 2, 1598, 1599, 7, 100, 2, 2, 1599, 1798, 7, 54, 2, 2, 1600, 1601, 7, 117, 2, 2, 1601, 1602, 7, 111, 2, 2, 1602, 1603, 7, 100, 2, 2, 1603, 1798, 7, 55, 2, 2, 1604, 1605, 7, 117, 2, 2, 1605, 1606, 7, 111, 2, 2, 1606, 1607, 7, 100, 2, 2, 1607, 1798, 7, 56, 2, 2, 1608, 1609, 7, 117, 2, 2, 1609, 1610, 7, 111, 2, 2, 1610, 1611, 7, 100, 2, 2, 1611, 1798, 7, 57, 2, 2, 1612, 1613, 7, 117, 2, 2, 1613, 1614, 7, 118, 2, 2, 1614, 1798, 7, 114, 2, 2, 1615, 1616, 7, 117, 2, 2, 1616, 1617, 7, 118, 2, 2, 1617, 1798, 7, 124, 2, 2, 1618, 1619, 7, 118, 2, 2, 1619, 1620, 7, 116, 2, 2, 1620, 1798, 7, 100, 2, 2, 1621, 1622, 7, 118, 2, 2, 1622, 1623, 7, 117, 2, 2, 1623, 1798, 7, 100, 2, 2, 1624, 1625, 7, 121, 2, 2, 1625, 1626, 7, 99, 2, 2, 1626, 1798, 7, 107, 2, 2, 1627, 1628, 7, 101, 2, 2, 1628, 1629, 7, 110, 2, 2, 1629, 1798, 7, 103, 2, 2, 1630, 1631, 7, 117, 2, 2, 1631, 1632, 7, 103, 2, 2, 1632, 1798, 7, 103, 2, 2, 1633, 1634, 7, 118, 2, 2, 1634, 1635, 7, 117, 2, 2, 1635, 1798, 7, 123, 2, 2, 1636, 1637, 7, 110, 2, 2, 1637, 1638, 7, 100, 2, 2, 1638, 1639, 7, 114, 2, 2, 1639, 1798, 7, 110, 2, 2, 1640, 1641, 7, 107, 2, 2, 1641, 1642, 7, 112, 2, 2, 1642, 1798, 7, 124, 2, 2, 1643, 1644, 7, 118, 2, 2, 1644, 1645, 7, 123, 2, 2, 1645, 1798, 7, 117, 2, 2, 1646, 1647, 7, 110, 2, 2, 1647, 1648, 7, 100, 2, 2, 1648, 1649, 7, 111, 2, 2, 1649, 1798, 7, 107, 2, 2, 1650, 1651, 7, 102, 2, 2, 1651, 1652, 7, 103, 2, 2, 1652, 1798, 7, 124, 2, 2, 1653, 1654, 7, 112, 2, 2, 1654, 1655, 7, 103, 2, 2, 1655, 1798, 7, 105, 2, 2, 1656, 1657, 7, 99, 2, 2, 1657, 1658, 7, 117, 2, 2, 1658, 1798, 7, 116, 2, 2, 1659, 1660, 7, 118, 2, 2, 1660, 1661, 7, 99, 2, 2, 1661, 1798, 7, 124, 2, 2, 1662, 1663, 7, 110, 2, 2, 1663, 1664, 7, 100, 2, 2, 1664, 1665, 7, 120, 2, 2, 1665, 1798, 7, 101, 2, 2, 1666, 1667, 7, 118, 2, 2, 1667, 1668, 7, 99, 2, 2, 1668, 1798, 7, 100, 2, 2, 1669, 1670, 7, 111, 2, 2, 1670, 1671, 7, 99, 2, 2, 1671, 1798, 7, 114, 2, 2, 1672, 1673, 7, 116, 2, 2, 1673, 1674, 7, 118, 2, 2, 1674, 1798, 7, 112, 2, 2, 1675, 1676, 7, 110, 2, 2, 1676, 1677, 7, 100, 2, 2, 1677, 1678, 7, 117, 2, 2, 1678, 1798, 7, 116, 2, 2, 1679, 1680, 7, 118, 2, 2, 1680, 1681, 7, 124, 2, 2, 1681, 1798, 7, 99, 2, 2, 1682, 1683, 7, 110, 2, 2, 1683, 1684, 7, 100, 2, 2, 1684, 1685, 7, 120, 2, 2, 1685, 1798, 7, 117, 2, 2, 1686, 1687, 7, 118, 2, 2, 1687, 1688, 7, 100, 2, 2, 1688, 1798, 7, 99, 2, 2, 1689, 1690, 7, 110, 2, 2, 1690, 1691, 7, 100, 2, 2, 1691, 1692, 7, 116, 2, 2, 1692, 1798, 7, 99, 2, 2, 1693, 1694, 7, 110, 2, 2, 1694, 1695, 7, 100, 2, 2, 1695, 1696, 7, 101, 2, 2, 1696, 1798, 7, 101, 2, 2, 1697, 1698, 7, 110, 2, 2, 1698, 1699, 7, 102, 2, 2, 1699, 1798, 7, 124, 2, 2, 1700, 1701, 7, 110, 2, 2, 1701, 1702, 7, 100, 2, 2, 1702, 1703, 7, 101, 2, 2, 1703, 1798, 7, 117, 2, 2, 1704, 1705, 7, 101, 2, 2, 1705, 1706, 7, 114, 2, 2, 1706, 1798, 7, 124, 2, 2, 1707, 1708, 7, 102, 2, 2, 1708, 1709, 7, 103, 2, 2, 1709, 1798, 7, 121, 2, 2, 1710, 1711, 7, 99, 2, 2, 1711, 1712, 7, 117, 2, 2, 1712, 1798, 7, 121, 2, 2, 1713, 1714, 7, 110, 2, 2, 1714, 1715, 7, 100, 2, 2, 1715, 1716, 7, 112, 2, 2, 1716, 1798, 7, 103, 2, 2, 1717, 1718, 7, 114, 2, 2, 1718, 1719, 7, 106, 2, 2, 1719, 1798, 7, 124, 2, 2, 1720, 1721, 7, 107, 2, 2, 1721, 1722, 7, 112, 2, 2, 1722, 1798, 7, 121, 2, 2, 1723, 1724, 7, 116, 2, 2, 1724, 1725, 7, 113, 2, 2, 1725, 1798, 7, 121, 2, 2, 1726, 1727, 7, 110, 2, 2, 1727, 1728, 7, 100, 2, 2, 1728, 1729, 7, 103, 2, 2, 1729, 1798, 7, 115, 2, 2, 1730, 1731, 7, 114, 2, 2, 1731, 1732, 7, 106, 2, 2, 1732, 1798, 7, 121, 2, 2, 1733, 1734, 7, 114, 2, 2, 1734, 1735, 7, 110, 2, 2, 1735, 1798, 7, 124, 2, 2, 1736, 1737, 7, 103, 2, 2, 1737, 1738, 7, 113, 2, 2, 1738, 1798, 7, 111, 2, 2, 1739, 1740, 7, 99, 2, 2, 1740, 1741, 7, 102, 2, 2, 1741, 1742, 7, 101, 2, 2, 1742, 1798, 7, 115, 2, 2, 1743, 1744, 7, 99, 2, 2, 1744, 1745, 7, 112, 2, 2, 1745, 1746, 7, 102, 2, 2, 1746, 1798, 7, 115, 2, 2, 1747, 1748, 7, 99, 2, 2, 1748, 1749, 7, 117, 2, 2, 1749, 1750, 7, 110, 2, 2, 1750, 1798, 7, 115, 2, 2, 1751, 1752, 7, 99, 2, 2, 1752, 1753, 7, 117, 2, 2, 1753, 1754, 7, 116, 2, 2, 1754, 1798, 7, 115, 2, 2, 1755, 1756, 7, 100, 2, 2, 1756, 1757, 7, 107, 2, 2, 1757, 1758, 7, 118, 2, 2, 1758, 1798, 7, 115, 2, 2, 1759, 1760, 7, 101, 2, 2, 1760, 1761, 7, 114, 2, 2, 1761, 1798, 7, 115, 2, 2, 1762, 1763, 7, 102, 2, 2, 1763, 1764, 7, 103, 2, 2, 1764, 1798, 7, 115, 2, 2, 1765, 1766, 7, 103, 2, 2, 1766, 1767, 7, 113, 2, 2, 1767, 1768, 7, 116, 2, 2, 1768, 1798, 7, 115, 2, 2, 1769, 1770, 7, 107, 2, 2, 1770, 1771, 7, 112, 2, 2, 1771, 1798, 7, 115, 2, 2, 1772, 1773, 7, 110, 2, 2, 1773, 1774, 7, 102, 2, 2, 1774, 1798, 7, 115, 2, 2, 1775, 1776, 7, 110, 2, 2, 1776, 1777, 7, 117, 2, 2, 1777, 1778, 7, 116, 2, 2, 1778, 1798, 7, 115, 2, 2, 1779, 1780, 7, 113, 2, 2, 1780, 1781, 7, 116, 2, 2, 1781, 1798, 7, 115, 2, 2, 1782, 1783, 7, 116, 2, 2, 1783, 1784, 7, 113, 2, 2, 1784, 1785, 7, 110, 2, 2, 1785, 1798, 7, 115, 2, 2, 1786, 1787, 7, 116, 2, 2, 1787, 1788, 7, 113, 2, 2, 1788, 1789, 7, 116, 2, 2, 1789, 1798, 7, 115, 2, 2, 1790, 1791, 7, 117, 2, 2, 1791, 1792, 7, 100, 2, 2, 1792, 1793, 7, 101, 2, 2, 1793, 1798, 7, 115, 2, 2, 1794, 1795, 7, 117, 2, 2, 1795, 1796, 7, 118, 2, 2, 1796, 1798, 7, 115, 2, 2, 1797, 1247, 3, 2, 2, 2, 1797, 1250, 3, 2, 2, 2, 1797, 1253, 3, 2, 2, 2, 1797, 1256, 3, 2, 2, 2, 1797, 1259, 3, 2, 2, 2, 1797, 1262, 3, 2, 2, 2, 1797, 1265, 3, 2, 2, 2, 1797, 1268, 3, 2, 2, 2, 1797, 1271, 3, 2, 2, 2, 1797, 1274, 3, 2, 2, 2, 1797, 1277, 3, 2, 2, 2, 1797, 1280, 3, 2, 2, 2, 1797, 1283, 3, 2, 2, 2, 1797, 1286, 3, 2, 2, 2, 1797, 1289, 3, 2, 2, 2, 1797, 1292, 3, 2, 2, 2, 1797, 1295, 3, 2, 2, 2, 1797, 1298, 3, 2, 2, 2, 1797, 1301, 3, 2, 2, 2, 1797, 1304, 3, 2, 2, 2, 1797, 1307, 3, 2, 2, 2, 1797, 1310, 3, 2, 2, 2, 1797, 1313, 3, 2, 2, 2, 1797, 1316, 3, 2, 2, 2, 1797, 1319, 3, 2, 2, 2, 1797, 1322, 3, 2, 2, 2, 1797, 1325, 3, 2, 2, 2, 1797, 1328, 3, 2, 2, 2, 1797, 1331, 3, 2, 2, 2, 1797, 1334, 3, 2, 2, 2, 1797, 1337, 3, 2, 2, 2, 1797, 1340, 3, 2, 2, 2, 1797, 1343, 3, 2, 2, 2, 1797, 1346, 3, 2, 2, 2, 1797, 1349, 3, 2, 2, 2, 1797, 1352, 3, 2, 2, 2, 1797, 1355, 3, 2, 2, 2, 1797, 1358, 3, 2, 2, 2, 1797, 1361, 3, 2, 2, 2, 1797, 1364, 3, 2, 2, 2, 1797, 1367, 3, 2, 2, 2, 1797, 1370, 3, 2, 2, 2, 1797, 1373, 3, 2, 2, 2, 1797, 1376, 3, 2, 2, 2, 1797, 1379, 3, 2, 2, 2, 1797, 1382, 3, 2, 2, 2, 1797, 1385, 3, 2, 2, 2, 1797, 1388, 3, 2, 2, 2, 1797, 1391, 3, 2, 2, 2, 1797, 1394, 3, 2, 2, 2, 1797, 1397, 3, 2, 2, 2, 1797, 1400, 3, 2, 2, 2, 1797, 1403, 3, 2, 2, 2, 1797, 1406, 3, 2, 2, 2, 1797, 1409, 3, 2, 2, 2, 1797, 1412, 3, 2, 2, 2, 1797, 1415, 3, 2, 2, 2, 1797, 1418, 3, 2, 2, 2, 1797, 1421, 3, 2, 2, 2, 1797, 1424, 3, 2, 2, 2, 1797, 1427, 3, 2, 2, 2, 1797, 1430, 3, 2, 2, 2, 1797, 1433, 3, 2, 2, 2, 1797, 1436, 3, 2, 2, 2, 1797, 1439, 3, 2, 2, 2, 1797, 1442, 3, 2, 2, 2, 1797, 1445, 3, 2, 2, 2, 1797, 1448, 3, 2, 2, 2, 1797, 1451, 3, 2, 2, 2, 1797, 1454, 3, 2, 2, 2, 1797, 1457, 3, 2, 2, 2, 1797, 1460, 3, 2, 2, 2, 1797, 1463, 3, 2, 2, 2, 1797, 1466, 3, 2, 2, 2, 1797, 1469, 3, 2, 2, 2, 1797, 1473, 3, 2, 2, 2, 1797, 1477, 3, 2, 2, 2, 1797, 1481, 3, 2, 2, 2, 1797, 1485, 3, 2, 2, 2, 1797, 1489, 3, 2, 2, 2, 1797, 1493, 3, 2, 2, 2, 1797, 1497, 3, 2, 2, 2, 1797, 1501, 3, 2, 2, 2, 1797, 1505, 3, 2, 2, 2, 1797, 1509, 3, 2, 2, 2, 1797, 1513, 3, 2, 2, 2, 1797, 1517, 3, 2, 2, 2, 1797, 1521, 3, 2, 2, 2, 1797, 1525, 3, 2, 2, 2, 1797, 1529, 3, 2, 2, 2, 1797, 1533, 3, 2, 2, 2, 1797, 1536, 3, 2, 2, 2, 1797, 1539, 3, 2, 2, 2, 1797, 1542, 3, 2, 2, 2, 1797, 1545, 3, 2, 2, 2, 1797, 1548, 3, 2, 2, 2, 1797, 1552, 3, 2, 2, 2, 1797, 1556, 3, 2, 2, 2, 1797, 1560, 3, 2, 2, 2, 1797, 1564, 3, 2, 2, 2, 1797, 1568, 3, 2, 2, 2, 1797, 1572, 3, 2, 2, 2, 1797, 1576, 3, 2, 2, 2, 1797, 1580, 3, 2, 2, 2, 1797, 1584, 3, 2, 2, 2, 1797, 1588, 3, 2, 2, 2, 1797, 1592, 3, 2, 2, 2, 1797, 1596, 3, 2, 2, 2, 1797, 1600, 3, 2, 2, 2, 1797, 1604, 3, 2, 2, 2, 1797, 1608, 3, 2, 2, 2, 1797, 1612, 3, 2, 2, 2, 1797, 1615, 3, 2, 2, 2, 1797, 1618, 3, 2, 2, 2, 1797, 1621, 3, 2, 2, 2, 1797, 1624, 3, 2, 2, 2, 1797, 1627, 3, 2, 2, 2, 1797, 1630, 3, 2, 2, 2, 1797, 1633, 3, 2, 2, 2, 1797, 1636, 3, 2, 2, 2, 1797, 1640, 3, 2, 2, 2, 1797, 1643, 3, 2, 2, 2, 1797, 1646, 3, 2, 2, 2, 1797, 1650, 3, 2, 2, 2, 1797, 1653, 3, 2, 2, 2, 1797, 1656, 3, 2, 2, 2, 1797, 1659, 3, 2, 2, 2, 1797, 1662, 3, 2, 2, 2, 1797, 1666, 3, 2, 2, 2, 1797, 1669, 3, 2, 2, 2, 1797, 1672, 3, 2, 2, 2, 1797, 1675, 3, 2, 2, 2, 1797, 1679, 3, 2, 2, 2, 1797, 1682, 3, 2, 2, 2, 1797, 1686, 3, 2, 2, 2, 1797, 1689, 3, 2, 2, 2, 1797, 1693, 3, 2, 2, 2, 1797, 1697, 3, 2, 2, 2, 1797, 1700, 3, 2, 2, 2, 1797, 1704, 3, 2, 2, 2, 1797, 1707, 3, 2, 2, 2, 1797, 1710, 3, 2, 2, 2, 1797, 1713, 3, 2, 2, 2, 1797, 1717, 3, 2, 2, 2, 1797, 1720, 3, 2, 2, 2, 1797, 1723, 3, 2, 2, 2, 1797, 1726, 3, 2, 2, 2, 1797, 1730, 3, 2, 2, 2, 1797, 1733, 3, 2, 2, 2, 1797, 1736, 3, 2, 2, 2, 1797, 1739, 3, 2, 2, 2, 1797, 1743, 3, 2, 2, 2, 1797, 1747, 3, 2, 2, 2, 1797, 1751, 3, 2, 2, 2, 1797, 1755, 3, 2, 2, 2, 1797, 1759, 3, 2, 2, 2, 1797, 1762, 3, 2, 2, 2, 1797, 1765, 3, 2, 2, 2, 1797, 1769, 3, 2, 2, 2, 1797, 1772, 3, 2, 2, 2, 1797, 1775, 3, 2, 2, 2, 1797, 1779, 3, 2, 2, 2, 1797, 1782, 3, 2, 2, 2, 1797, 1786, 3, 2, 2, 2, 1797, 1790, 3, 2, 2, 2, 1797, 1794, 3, 2, 2, 2, 1798, 266, 3, 2, 2, 2, 1799, 1800, 7, 37, 2, 2, 1800, 268, 3, 2, 2, 2, 1801, 1802, 7, 60, 2, 2, 1802, 270, 3, 2, 2, 2, 1803, 1804, 7, 46, 2, 2, 1804, 272, 3, 2, 2, 2, 1805, 1806, 7, 42, 2, 2, 1806, 274, 3, 2, 2, 2, 1807, 1808, 7, 43, 2, 2, 1808, 276, 3, 2, 2, 2, 1809, 1810, 7, 93, 2, 2, 1810, 278, 3, 2, 2, 2, 1811, 1812, 7, 95, 2, 2, 1812, 280, 3, 2, 2, 2, 1813, 1814, 7, 48, 2, 2, 1814, 282, 3, 2, 2, 2, 1815, 1816, 7, 62, 2, 2, 1816, 1817, 7, 62, 2, 2, 1817, 284, 3, 2, 2, 2, 1818, 1819, 7, 64, 2, 2, 1819, 1820, 7, 64, 2, 2, 1820, 286, 3, 2, 2, 2, 1821, 1822, 7, 45, 2, 2, 1822, 288, 3, 2, 2, 2, 1823, 1824, 7, 47, 2, 2, 1824, 290, 3, 2, 2, 2, 1825, 1826, 7, 62, 2, 2, 1826, 292, 3, 2, 2, 2, 1827, 1828, 7, 64, 2, 2, 1828, 294, 3, 2, 2, 2, 1829, 1830, 7, 44, 2, 2, 1830, 296, 3, 2, 2, 2, 1831, 1832, 7, 49, 2, 2, 1832, 298, 3, 2, 2, 2, 1833, 1834, 7, 125, 2, 2, 1834, 1835, 8, 149, 9, 2, 1835, 300, 3, 2, 2, 2, 1836, 1837, 7, 127, 2, 2, 1837, 1838, 8, 150, 10, 2, 1838, 302, 3, 2, 2, 2, 1839, 1842, 5, 305, 152, 2, 1840, 1842, 5, 313, 156, 2, 1841, 1839, 3, 2, 2, 2, 1841, 1840, 3, 2, 2, 2, 1842, 304, 3, 2, 2, 2, 1843, 1847, 5, 307, 153, 2, 1844, 1847, 5, 309, 154, 2, 1845, 1847, 5, 311, 155, 2, 1846, 1843, 3, 2, 2, 2, 1846, 1844, 3, 2, 2, 2, 1846, 1845, 3, 2, 2, 2, 1847, 306, 3, 2, 2, 2, 1848, 1852, 7, 39, 2, 2, 1849, 1851, 5, 321, 160, 2, 1850, 1849, 3, 2, 2, 2, 1851, 1854, 3, 2, 2, 2, 1852, 1850, 3, 2, 2, 2, 1852, 1853, 3, 2, 2, 2, 1853, 1855, 3, 2, 2, 2, 1854, 1852, 3, 2, 2, 2, 1855, 1857, 7, 48, 2, 2, 1856, 1858, 5, 321, 160, 2, 1857, 1856, 3, 2, 2, 2, 1858, 1859, 3, 2, 2, 2, 1859, 1857, 3, 2, 2, 2, 1859, 1860, 3, 2, 2, 2, 1860, 308, 3, 2, 2, 2, 1861, 1863, 5, 323, 161, 2, 1862, 1861, 3, 2, 2, 2, 1863, 1866, 3, 2, 2, 2, 1864, 1862, 3, 2, 2, 2, 1864, 1865, 3, 2, 2, 2, 1865, 1867, 3, 2, 2, 2, 1866, 1864, 3, 2, 2, 2, 1867, 1869, 7, 48, 2, 2, 1868, 1870, 5, 323, 161, 2, 1869, 1868, 3, 2, 2, 2, 1870, 1871, 3, 2, 2, 2, 1871, 1869, 3, 2, 2, 2, 1871, 1872, 3, 2, 2, 2, 1872, 310, 3, 2, 2, 2, 1873, 1877, 7, 38, 2, 2, 1874, 1876, 5, 325, 162, 2, 1875, 1874, 3, 2, 2, 2, 1876, 1879, 3, 2, 2, 2, 1877, 1875, 3, 2, 2, 2, 1877, 1878, 3, 2, 2, 2, 1878, 1880, 3, 2, 2, 2, 1879, 1877, 3, 2, 2, 2, 1880, 1882, 7, 48, 2, 2, 1881, 1883, 5, 325, 162, 2, 1882, 1881, 3, 2, 2, 2, 1883, 1884, 3, 2, 2, 2, 1884, 1882, 3, 2, 2, 2, 1884, 1885, 3, 2, 2, 2, 1885, 312, 3, 2, 2, 2, 1886, 1890, 5, 317, 158, 2, 1887, 1890, 5, 319, 159, 2, 1888, 1890, 5, 315, 157, 2, 1889, 1886, 3, 2, 2, 2, 1889, 1887, 3, 2, 2, 2, 1889, 1888, 3, 2, 2, 2, 1890, 314, 3, 2, 2, 2, 1891, 1893, 7, 39, 2, 2, 1892, 1894, 5, 321, 160, 2, 1893, 1892, 3, 2, 2, 2, 1894, 1895, 3, 2, 2, 2, 1895, 1893, 3, 2, 2, 2, 1895, 1896, 3, 2, 2, 2, 1896, 316, 3, 2, 2, 2, 1897, 1899, 5, 323, 161, 2, 1898, 1897, 3, 2, 2, 2, 1899, 1900, 3, 2, 2, 2, 1900, 1898, 3, 2, 2, 2, 1900, 1901, 3, 2, 2, 2, 1901, 318, 3, 2, 2, 2, 1902, 1904, 7, 38, 2, 2, 1903, 1905, 5, 325, 162, 2, 1904, 1903, 3, 2, 2, 2, 1905, 1906, 3, 2, 2, 2, 1906, 1904, 3, 2, 2, 2, 1906, 1907, 3, 2, 2, 2, 1907, 320, 3, 2, 2, 2, 1908, 1909, 9, 5, 2, 2, 1909, 322, 3, 2, 2, 2, 1910, 1911, 9, 6, 2, 2, 1911, 324, 3, 2, 2, 2, 1912, 1913, 9, 7, 2, 2, 1913, 326, 3, 2, 2, 2, 1914, 1918, 7, 41, 2, 2, 1915, 1916, 7, 94, 2, 2, 1916, 1919, 9, 14, 2, 2, 1917, 1919, 10, 16, 2, 2, 1918, 1915, 3, 2, 2, 2, 1918, 1917, 3, 2, 2, 2, 1919, 1920, 3, 2, 2, 2, 1920, 1921, 7, 41, 2, 2, 1921, 328, 3, 2, 2, 2, 1922, 1924, 5, 331, 165, 2, 1923, 1925, 9, 19, 2, 2, 1924, 1923, 3, 2, 2, 2, 1925, 1926, 3, 2, 2, 2, 1926, 1924, 3, 2, 2, 2, 1926, 1927, 3, 2, 2, 2, 1927, 330, 3, 2, 2, 2, 1928, 1932, 7, 35, 2, 2, 1929, 1931, 5, 337, 168, 2, 1930, 1929, 3, 2, 2, 2, 1931, 1934, 3, 2, 2, 2, 1932, 1930, 3, 2, 2, 2, 1932, 1933, 3, 2, 2, 2, 1933, 332, 3, 2, 2, 2, 1934, 1932, 3, 2, 2, 2, 1935, 1939, 5, 335, 167, 2, 1936, 1938, 5, 337, 168, 2, 1937, 1936, 3, 2, 2, 2, 1938, 1941, 3, 2, 2, 2, 1939, 1937, 3, 2, 2, 2, 1939, 1940, 3, 2, 2, 2, 1940, 334, 3, 2, 2, 2, 1941, 1939, 3, 2, 2, 2, 1942, 1943, 9, 8, 2, 2, 1943, 336, 3, 2, 2, 2, 1944, 1945, 9, 9, 2, 2, 1945, 338, 3, 2, 2, 2, 1946, 1948, 9, 17, 2, 2, 1947, 1946, 3, 2, 2, 2, 1948, 1949, 3, 2, 2, 2, 1949, 1947, 3, 2, 2, 2, 1949, 1950, 3, 2, 2, 2, 1950, 1951, 3, 2, 2, 2, 1951, 1952, 8, 169, 7, 2, 1952, 340, 3, 2, 2, 2, 1953, 1954, 7, 49, 2, 2, 1954, 1955, 7, 49, 2, 2, 1955, 1959, 3, 2, 2, 2, 1956, 1958, 10, 18, 2, 2, 1957, 1956, 3, 2, 2, 2, 1958, 1961, 3, 2, 2, 2, 1959, 1957, 3, 2, 2, 2, 1959, 1960, 3, 2, 2, 2, 1960, 1962, 3, 2, 2, 2, 1961, 1959, 3, 2, 2, 2, 1962, 1963, 8, 170, 8, 2, 1963, 342, 3, 2, 2, 2, 1964, 1965, 7, 49, 2, 2, 1965, 1966, 7, 44, 2, 2, 1966, 1970, 3, 2, 2, 2, 1967, 1969, 11, 2, 2, 2, 1968, 1967, 3, 2, 2, 2, 1969, 1972, 3, 2, 2, 2, 1970, 1971, 3, 2, 2, 2, 1970, 1968, 3, 2, 2, 2, 1971, 1973, 3, 2, 2, 2, 1972, 1970, 3, 2, 2, 2, 1973, 1974, 7, 44, 2, 2, 1974, 1975, 7, 49, 2, 2, 1975, 1976, 3, 2, 2, 2, 1976, 1977, 8, 171, 8, 2, 1977, 344, 3, 2, 2, 2, 1978, 1980, 7, 62, 2, 2, 1979, 1981, 9, 20, 2, 2, 1980, 1979, 3, 2, 2, 2, 1981, 1982, 3, 2, 2, 2, 1982, 1980, 3, 2, 2, 2, 1982, 1983, 3, 2, 2, 2, 1983, 1984, 3, 2, 2, 2, 1984, 1985, 7, 64, 2, 2, 1985, 1986, 8, 172, 11, 2, 1986, 346, 3, 2, 2, 2, 1987, 1993, 7, 36, 2, 2, 1988, 1989, 7, 94, 2, 2, 1989, 1992, 7, 36, 2, 2, 1990, 1992, 10, 10, 2, 2, 1991, 1988, 3, 2, 2, 2, 1991, 1990, 3, 2, 2, 2, 1992, 1995, 3, 2, 2, 2, 1993, 1991, 3, 2, 2, 2, 1993, 1994, 3, 2, 2, 2, 1994, 1996, 3, 2, 2, 2, 1995, 1993, 3, 2, 2, 2, 1996, 1997, 7, 36, 2, 2, 1997, 1998, 8, 173, 12, 2, 1998, 348, 3, 2, 2, 2, 1999, 2001, 9, 17, 2, 2, 2000, 1999, 3, 2, 2, 2, 2001, 2002, 3, 2, 2, 2, 2002, 2000, 3, 2, 2, 2, 2002, 2003, 3, 2, 2, 2, 2003, 2004, 3, 2, 2, 2, 2004, 2005, 8, 174, 7, 2, 2005, 350, 3, 2, 2, 2, 2006, 2007, 7, 49, 2, 2, 2007, 2008, 7, 49, 2, 2, 2008, 2012, 3, 2, 2, 2, 2009, 2011, 10, 18, 2, 2, 2010, 2009, 3, 2, 2, 2, 2011, 2014, 3, 2, 2, 2, 2012, 2010, 3, 2, 2, 2, 2012, 2013, 3, 2, 2, 2, 2013, 2015, 3, 2, 2, 2, 2014, 2012, 3, 2, 2, 2, 2015, 2016, 8, 175, 8, 2, 2016, 352, 3, 2, 2, 2, 2017, 2018, 7, 49, 2, 2, 2018, 2019, 7, 44, 2, 2, 2019, 2023, 3, 2, 2, 2, 2020, 2022, 11, 2, 2, 2, 2021, 2020, 3, 2, 2, 2, 2022, 2025, 3, 2, 2, 2, 2023, 2024, 3, 2, 2, 2, 2023, 2021, 3, 2, 2, 2, 2024, 2026, 3, 2, 2, 2, 2025, 2023, 3, 2, 2, 2, 2026, 2027, 7, 44, 2, 2, 2027, 2028, 7, 49, 2, 2, 2028, 2029, 3, 2, 2, 2, 2029, 2030, 8, 176, 8, 2, 2030, 354, 3, 2, 2, 2, 68, 2, 3, 4, 464, 703, 894, 933, 944, 952, 1000, 1056, 1061, 1068, 1073, 1080, 1085, 1092, 1099, 1104, 1111, 1116, 1121, 1128, 1134, 1136, 1141, 1148, 1153, 1165, 1178, 1180, 1185, 1189, 1191, 1194, 1202, 1205, 1212, 1222, 1233, 1797, 1841, 1846, 1852, 1859, 1864, 1871, 1877, 1884, 1889, 1895, 1900, 1906, 1918, 1926, 1932, 1939, 1949, 1959, 1970, 1982, 1991, 1993, 2002, 2012, 2023, 13, 3, 2, 2, 3, 79, 3, 3, 98, 4, 3, 99, 5, 3, 123, 6, 2, 3, 2, 2, 4, 2, 3, 149, 7, 3, 150, 8, 3, 172, 9, 3, 173, 10] \ No newline at end of file +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 155, 1895, 8, 1, 8, 1, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 4, 115, 9, 115, 4, 116, 9, 116, 4, 117, 9, 117, 4, 118, 9, 118, 4, 119, 9, 119, 4, 120, 9, 120, 4, 121, 9, 121, 4, 122, 9, 122, 4, 123, 9, 123, 4, 124, 9, 124, 4, 125, 9, 125, 4, 126, 9, 126, 4, 127, 9, 127, 4, 128, 9, 128, 4, 129, 9, 129, 4, 130, 9, 130, 4, 131, 9, 131, 4, 132, 9, 132, 4, 133, 9, 133, 4, 134, 9, 134, 4, 135, 9, 135, 4, 136, 9, 136, 4, 137, 9, 137, 4, 138, 9, 138, 4, 139, 9, 139, 4, 140, 9, 140, 4, 141, 9, 141, 4, 142, 9, 142, 4, 143, 9, 143, 4, 144, 9, 144, 4, 145, 9, 145, 4, 146, 9, 146, 4, 147, 9, 147, 4, 148, 9, 148, 4, 149, 9, 149, 4, 150, 9, 150, 4, 151, 9, 151, 4, 152, 9, 152, 4, 153, 9, 153, 4, 154, 9, 154, 4, 155, 9, 155, 4, 156, 9, 156, 4, 157, 9, 157, 4, 158, 9, 158, 4, 159, 9, 159, 4, 160, 9, 160, 4, 161, 9, 161, 4, 162, 9, 162, 4, 163, 9, 163, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 4, 3, 4, 3, 5, 3, 5, 3, 6, 3, 6, 3, 7, 3, 7, 3, 8, 3, 8, 3, 9, 3, 9, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 17, 3, 17, 3, 18, 3, 18, 3, 19, 3, 19, 3, 20, 3, 20, 3, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 24, 3, 24, 3, 25, 3, 25, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 37, 3, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 5, 38, 439, 10, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 5, 56, 594, 10, 56, 3, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 5, 81, 759, 10, 81, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 5, 82, 798, 10, 82, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 5, 83, 809, 10, 83, 3, 84, 3, 84, 3, 84, 3, 84, 7, 84, 815, 10, 84, 12, 84, 14, 84, 818, 11, 84, 3, 84, 3, 84, 3, 84, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 5, 89, 865, 10, 89, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 93, 3, 93, 3, 93, 3, 93, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 98, 3, 98, 5, 98, 921, 10, 98, 3, 99, 3, 99, 3, 99, 5, 99, 926, 10, 99, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 5, 100, 933, 10, 100, 3, 100, 7, 100, 936, 10, 100, 12, 100, 14, 100, 939, 11, 100, 3, 100, 3, 100, 6, 100, 943, 10, 100, 13, 100, 14, 100, 944, 3, 101, 7, 101, 948, 10, 101, 12, 101, 14, 101, 951, 11, 101, 3, 101, 3, 101, 6, 101, 955, 10, 101, 13, 101, 14, 101, 956, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 5, 102, 964, 10, 102, 3, 102, 7, 102, 967, 10, 102, 12, 102, 14, 102, 970, 11, 102, 3, 102, 3, 102, 6, 102, 974, 10, 102, 13, 102, 14, 102, 975, 3, 103, 3, 103, 3, 103, 5, 103, 981, 10, 103, 3, 103, 3, 103, 3, 103, 5, 103, 986, 10, 103, 3, 104, 3, 104, 3, 104, 6, 104, 991, 10, 104, 13, 104, 14, 104, 992, 3, 104, 3, 104, 6, 104, 997, 10, 104, 13, 104, 14, 104, 998, 5, 104, 1001, 10, 104, 3, 105, 6, 105, 1004, 10, 105, 13, 105, 14, 105, 1005, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 5, 106, 1013, 10, 106, 3, 106, 6, 106, 1016, 10, 106, 13, 106, 14, 106, 1017, 3, 107, 3, 107, 3, 108, 3, 108, 3, 109, 3, 109, 3, 110, 3, 110, 7, 110, 1028, 10, 110, 12, 110, 14, 110, 1031, 11, 110, 3, 110, 3, 110, 3, 111, 3, 111, 3, 112, 3, 112, 3, 113, 3, 113, 3, 113, 3, 113, 7, 113, 1043, 10, 113, 12, 113, 14, 113, 1046, 11, 113, 3, 113, 3, 113, 5, 113, 1050, 10, 113, 3, 113, 3, 113, 5, 113, 1054, 10, 113, 5, 113, 1056, 10, 113, 3, 113, 5, 113, 1059, 10, 113, 3, 114, 3, 114, 3, 114, 3, 114, 3, 114, 3, 114, 5, 114, 1067, 10, 114, 3, 114, 5, 114, 1070, 10, 114, 3, 114, 3, 114, 3, 115, 6, 115, 1075, 10, 115, 13, 115, 14, 115, 1076, 3, 115, 3, 115, 3, 116, 3, 116, 3, 116, 3, 116, 7, 116, 1085, 10, 116, 12, 116, 14, 116, 1088, 11, 116, 3, 116, 3, 116, 3, 117, 3, 117, 3, 117, 3, 117, 7, 117, 1096, 10, 117, 12, 117, 14, 117, 1099, 11, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 5, 119, 1662, 10, 119, 3, 120, 3, 120, 3, 121, 3, 121, 3, 122, 3, 122, 3, 123, 3, 123, 3, 124, 3, 124, 3, 125, 3, 125, 3, 126, 3, 126, 3, 127, 3, 127, 3, 128, 3, 128, 3, 128, 3, 129, 3, 129, 3, 129, 3, 130, 3, 130, 3, 131, 3, 131, 3, 132, 3, 132, 3, 133, 3, 133, 3, 134, 3, 134, 3, 135, 3, 135, 3, 136, 3, 136, 3, 136, 3, 137, 3, 137, 3, 137, 3, 138, 3, 138, 5, 138, 1706, 10, 138, 3, 139, 3, 139, 3, 139, 5, 139, 1711, 10, 139, 3, 140, 3, 140, 7, 140, 1715, 10, 140, 12, 140, 14, 140, 1718, 11, 140, 3, 140, 3, 140, 6, 140, 1722, 10, 140, 13, 140, 14, 140, 1723, 3, 141, 7, 141, 1727, 10, 141, 12, 141, 14, 141, 1730, 11, 141, 3, 141, 3, 141, 6, 141, 1734, 10, 141, 13, 141, 14, 141, 1735, 3, 142, 3, 142, 7, 142, 1740, 10, 142, 12, 142, 14, 142, 1743, 11, 142, 3, 142, 3, 142, 6, 142, 1747, 10, 142, 13, 142, 14, 142, 1748, 3, 143, 3, 143, 3, 143, 5, 143, 1754, 10, 143, 3, 144, 3, 144, 6, 144, 1758, 10, 144, 13, 144, 14, 144, 1759, 3, 145, 6, 145, 1763, 10, 145, 13, 145, 14, 145, 1764, 3, 146, 3, 146, 6, 146, 1769, 10, 146, 13, 146, 14, 146, 1770, 3, 147, 3, 147, 3, 148, 3, 148, 3, 149, 3, 149, 3, 150, 3, 150, 3, 150, 3, 150, 5, 150, 1783, 10, 150, 3, 150, 3, 150, 3, 151, 3, 151, 6, 151, 1789, 10, 151, 13, 151, 14, 151, 1790, 3, 152, 3, 152, 7, 152, 1795, 10, 152, 12, 152, 14, 152, 1798, 11, 152, 3, 153, 3, 153, 7, 153, 1802, 10, 153, 12, 153, 14, 153, 1805, 11, 153, 3, 154, 3, 154, 3, 155, 3, 155, 3, 156, 6, 156, 1812, 10, 156, 13, 156, 14, 156, 1813, 3, 156, 3, 156, 3, 157, 3, 157, 3, 157, 3, 157, 7, 157, 1822, 10, 157, 12, 157, 14, 157, 1825, 11, 157, 3, 157, 3, 157, 3, 158, 3, 158, 3, 158, 3, 158, 7, 158, 1833, 10, 158, 12, 158, 14, 158, 1836, 11, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 159, 3, 159, 6, 159, 1845, 10, 159, 13, 159, 14, 159, 1846, 3, 159, 3, 159, 3, 159, 3, 160, 3, 160, 3, 160, 3, 160, 7, 160, 1856, 10, 160, 12, 160, 14, 160, 1859, 11, 160, 3, 160, 3, 160, 3, 160, 3, 161, 6, 161, 1865, 10, 161, 13, 161, 14, 161, 1866, 3, 161, 3, 161, 3, 162, 3, 162, 3, 162, 3, 162, 7, 162, 1875, 10, 162, 12, 162, 14, 162, 1878, 11, 162, 3, 162, 3, 162, 3, 163, 3, 163, 3, 163, 3, 163, 7, 163, 1886, 10, 163, 12, 163, 14, 163, 1889, 11, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 6, 816, 1097, 1834, 1887, 2, 164, 5, 4, 7, 5, 9, 6, 11, 7, 13, 8, 15, 9, 17, 10, 19, 11, 21, 12, 23, 13, 25, 14, 27, 15, 29, 16, 31, 17, 33, 18, 35, 19, 37, 20, 39, 21, 41, 22, 43, 23, 45, 24, 47, 25, 49, 26, 51, 27, 53, 28, 55, 29, 57, 30, 59, 31, 61, 32, 63, 33, 65, 34, 67, 35, 69, 36, 71, 37, 73, 38, 75, 39, 77, 40, 79, 41, 81, 42, 83, 43, 85, 44, 87, 45, 89, 46, 91, 47, 93, 48, 95, 49, 97, 50, 99, 51, 101, 52, 103, 53, 105, 54, 107, 55, 109, 56, 111, 57, 113, 58, 115, 59, 117, 60, 119, 61, 121, 62, 123, 63, 125, 64, 127, 65, 129, 66, 131, 67, 133, 68, 135, 69, 137, 70, 139, 71, 141, 72, 143, 73, 145, 74, 147, 75, 149, 76, 151, 77, 153, 78, 155, 79, 157, 80, 159, 81, 161, 82, 163, 83, 165, 84, 167, 85, 169, 86, 171, 87, 173, 88, 175, 89, 177, 90, 179, 91, 181, 92, 183, 93, 185, 94, 187, 95, 189, 96, 191, 97, 193, 98, 195, 99, 197, 100, 199, 101, 201, 102, 203, 103, 205, 104, 207, 105, 209, 106, 211, 107, 213, 108, 215, 2, 217, 2, 219, 2, 221, 109, 223, 2, 225, 2, 227, 110, 229, 111, 231, 112, 233, 113, 235, 114, 237, 115, 239, 116, 241, 117, 243, 118, 245, 119, 247, 120, 249, 121, 251, 122, 253, 123, 255, 124, 257, 125, 259, 126, 261, 127, 263, 128, 265, 129, 267, 130, 269, 131, 271, 132, 273, 133, 275, 134, 277, 135, 279, 136, 281, 137, 283, 138, 285, 139, 287, 140, 289, 141, 291, 142, 293, 143, 295, 2, 297, 2, 299, 2, 301, 144, 303, 145, 305, 146, 307, 147, 309, 2, 311, 2, 313, 148, 315, 149, 317, 150, 319, 151, 321, 152, 323, 153, 325, 154, 327, 155, 5, 2, 3, 4, 21, 4, 2, 117, 117, 119, 119, 7, 2, 100, 102, 107, 107, 110, 110, 117, 117, 121, 121, 4, 2, 68, 68, 100, 100, 3, 2, 50, 51, 3, 2, 50, 59, 5, 2, 50, 59, 67, 72, 99, 104, 5, 2, 67, 92, 97, 97, 99, 124, 6, 2, 50, 59, 67, 92, 97, 97, 99, 124, 3, 2, 36, 36, 3, 2, 124, 124, 4, 2, 114, 114, 117, 117, 4, 2, 111, 111, 119, 119, 7, 2, 36, 36, 41, 41, 104, 104, 112, 112, 116, 116, 4, 2, 50, 59, 99, 104, 3, 2, 41, 41, 6, 2, 11, 12, 15, 15, 34, 34, 162, 162, 4, 2, 12, 12, 15, 15, 4, 2, 45, 45, 47, 47, 7, 2, 47, 59, 67, 92, 94, 94, 97, 97, 99, 124, 2, 2132, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, 65, 3, 2, 2, 2, 2, 67, 3, 2, 2, 2, 2, 69, 3, 2, 2, 2, 2, 71, 3, 2, 2, 2, 2, 73, 3, 2, 2, 2, 2, 75, 3, 2, 2, 2, 2, 77, 3, 2, 2, 2, 2, 79, 3, 2, 2, 2, 2, 81, 3, 2, 2, 2, 2, 83, 3, 2, 2, 2, 2, 85, 3, 2, 2, 2, 2, 87, 3, 2, 2, 2, 2, 89, 3, 2, 2, 2, 2, 91, 3, 2, 2, 2, 2, 93, 3, 2, 2, 2, 2, 95, 3, 2, 2, 2, 2, 97, 3, 2, 2, 2, 2, 99, 3, 2, 2, 2, 2, 101, 3, 2, 2, 2, 2, 103, 3, 2, 2, 2, 2, 105, 3, 2, 2, 2, 2, 107, 3, 2, 2, 2, 2, 109, 3, 2, 2, 2, 2, 111, 3, 2, 2, 2, 2, 113, 3, 2, 2, 2, 2, 115, 3, 2, 2, 2, 2, 117, 3, 2, 2, 2, 2, 119, 3, 2, 2, 2, 2, 121, 3, 2, 2, 2, 2, 123, 3, 2, 2, 2, 2, 125, 3, 2, 2, 2, 2, 127, 3, 2, 2, 2, 2, 129, 3, 2, 2, 2, 2, 131, 3, 2, 2, 2, 2, 133, 3, 2, 2, 2, 2, 135, 3, 2, 2, 2, 2, 137, 3, 2, 2, 2, 2, 139, 3, 2, 2, 2, 2, 141, 3, 2, 2, 2, 2, 143, 3, 2, 2, 2, 2, 145, 3, 2, 2, 2, 2, 147, 3, 2, 2, 2, 2, 149, 3, 2, 2, 2, 2, 151, 3, 2, 2, 2, 2, 153, 3, 2, 2, 2, 2, 155, 3, 2, 2, 2, 2, 157, 3, 2, 2, 2, 2, 159, 3, 2, 2, 2, 2, 161, 3, 2, 2, 2, 2, 163, 3, 2, 2, 2, 2, 165, 3, 2, 2, 2, 2, 167, 3, 2, 2, 2, 2, 169, 3, 2, 2, 2, 2, 171, 3, 2, 2, 2, 2, 173, 3, 2, 2, 2, 2, 175, 3, 2, 2, 2, 2, 177, 3, 2, 2, 2, 2, 179, 3, 2, 2, 2, 2, 181, 3, 2, 2, 2, 2, 183, 3, 2, 2, 2, 2, 185, 3, 2, 2, 2, 2, 187, 3, 2, 2, 2, 2, 189, 3, 2, 2, 2, 2, 191, 3, 2, 2, 2, 2, 193, 3, 2, 2, 2, 2, 195, 3, 2, 2, 2, 2, 197, 3, 2, 2, 2, 2, 199, 3, 2, 2, 2, 2, 201, 3, 2, 2, 2, 2, 203, 3, 2, 2, 2, 2, 205, 3, 2, 2, 2, 2, 207, 3, 2, 2, 2, 2, 209, 3, 2, 2, 2, 2, 211, 3, 2, 2, 2, 2, 213, 3, 2, 2, 2, 2, 221, 3, 2, 2, 2, 2, 227, 3, 2, 2, 2, 2, 229, 3, 2, 2, 2, 2, 231, 3, 2, 2, 2, 2, 233, 3, 2, 2, 2, 2, 235, 3, 2, 2, 2, 3, 237, 3, 2, 2, 2, 3, 239, 3, 2, 2, 2, 3, 241, 3, 2, 2, 2, 3, 243, 3, 2, 2, 2, 3, 245, 3, 2, 2, 2, 3, 247, 3, 2, 2, 2, 3, 249, 3, 2, 2, 2, 3, 251, 3, 2, 2, 2, 3, 253, 3, 2, 2, 2, 3, 255, 3, 2, 2, 2, 3, 257, 3, 2, 2, 2, 3, 259, 3, 2, 2, 2, 3, 261, 3, 2, 2, 2, 3, 263, 3, 2, 2, 2, 3, 265, 3, 2, 2, 2, 3, 267, 3, 2, 2, 2, 3, 269, 3, 2, 2, 2, 3, 271, 3, 2, 2, 2, 3, 273, 3, 2, 2, 2, 3, 275, 3, 2, 2, 2, 3, 277, 3, 2, 2, 2, 3, 279, 3, 2, 2, 2, 3, 281, 3, 2, 2, 2, 3, 283, 3, 2, 2, 2, 3, 285, 3, 2, 2, 2, 3, 287, 3, 2, 2, 2, 3, 289, 3, 2, 2, 2, 3, 291, 3, 2, 2, 2, 3, 293, 3, 2, 2, 2, 3, 301, 3, 2, 2, 2, 3, 303, 3, 2, 2, 2, 3, 305, 3, 2, 2, 2, 3, 307, 3, 2, 2, 2, 3, 313, 3, 2, 2, 2, 3, 315, 3, 2, 2, 2, 3, 317, 3, 2, 2, 2, 4, 319, 3, 2, 2, 2, 4, 321, 3, 2, 2, 2, 4, 323, 3, 2, 2, 2, 4, 325, 3, 2, 2, 2, 4, 327, 3, 2, 2, 2, 5, 329, 3, 2, 2, 2, 7, 332, 3, 2, 2, 2, 9, 334, 3, 2, 2, 2, 11, 336, 3, 2, 2, 2, 13, 338, 3, 2, 2, 2, 15, 340, 3, 2, 2, 2, 17, 342, 3, 2, 2, 2, 19, 344, 3, 2, 2, 2, 21, 346, 3, 2, 2, 2, 23, 348, 3, 2, 2, 2, 25, 351, 3, 2, 2, 2, 27, 355, 3, 2, 2, 2, 29, 357, 3, 2, 2, 2, 31, 359, 3, 2, 2, 2, 33, 362, 3, 2, 2, 2, 35, 364, 3, 2, 2, 2, 37, 366, 3, 2, 2, 2, 39, 368, 3, 2, 2, 2, 41, 370, 3, 2, 2, 2, 43, 372, 3, 2, 2, 2, 45, 375, 3, 2, 2, 2, 47, 378, 3, 2, 2, 2, 49, 380, 3, 2, 2, 2, 51, 382, 3, 2, 2, 2, 53, 384, 3, 2, 2, 2, 55, 386, 3, 2, 2, 2, 57, 389, 3, 2, 2, 2, 59, 392, 3, 2, 2, 2, 61, 395, 3, 2, 2, 2, 63, 398, 3, 2, 2, 2, 65, 400, 3, 2, 2, 2, 67, 403, 3, 2, 2, 2, 69, 406, 3, 2, 2, 2, 71, 408, 3, 2, 2, 2, 73, 411, 3, 2, 2, 2, 75, 414, 3, 2, 2, 2, 77, 438, 3, 2, 2, 2, 79, 440, 3, 2, 2, 2, 81, 448, 3, 2, 2, 2, 83, 454, 3, 2, 2, 2, 85, 461, 3, 2, 2, 2, 87, 468, 3, 2, 2, 2, 89, 474, 3, 2, 2, 2, 91, 481, 3, 2, 2, 2, 93, 490, 3, 2, 2, 2, 95, 497, 3, 2, 2, 2, 97, 507, 3, 2, 2, 2, 99, 516, 3, 2, 2, 2, 101, 529, 3, 2, 2, 2, 103, 539, 3, 2, 2, 2, 105, 544, 3, 2, 2, 2, 107, 550, 3, 2, 2, 2, 109, 556, 3, 2, 2, 2, 111, 561, 3, 2, 2, 2, 113, 593, 3, 2, 2, 2, 115, 595, 3, 2, 2, 2, 117, 598, 3, 2, 2, 2, 119, 603, 3, 2, 2, 2, 121, 609, 3, 2, 2, 2, 123, 612, 3, 2, 2, 2, 125, 616, 3, 2, 2, 2, 127, 623, 3, 2, 2, 2, 129, 630, 3, 2, 2, 2, 131, 636, 3, 2, 2, 2, 133, 645, 3, 2, 2, 2, 135, 651, 3, 2, 2, 2, 137, 659, 3, 2, 2, 2, 139, 664, 3, 2, 2, 2, 141, 671, 3, 2, 2, 2, 143, 676, 3, 2, 2, 2, 145, 683, 3, 2, 2, 2, 147, 690, 3, 2, 2, 2, 149, 698, 3, 2, 2, 2, 151, 706, 3, 2, 2, 2, 153, 715, 3, 2, 2, 2, 155, 720, 3, 2, 2, 2, 157, 729, 3, 2, 2, 2, 159, 735, 3, 2, 2, 2, 161, 742, 3, 2, 2, 2, 163, 758, 3, 2, 2, 2, 165, 797, 3, 2, 2, 2, 167, 808, 3, 2, 2, 2, 169, 810, 3, 2, 2, 2, 171, 822, 3, 2, 2, 2, 173, 832, 3, 2, 2, 2, 175, 843, 3, 2, 2, 2, 177, 851, 3, 2, 2, 2, 179, 864, 3, 2, 2, 2, 181, 866, 3, 2, 2, 2, 183, 873, 3, 2, 2, 2, 185, 880, 3, 2, 2, 2, 187, 888, 3, 2, 2, 2, 189, 892, 3, 2, 2, 2, 191, 898, 3, 2, 2, 2, 193, 904, 3, 2, 2, 2, 195, 911, 3, 2, 2, 2, 197, 920, 3, 2, 2, 2, 199, 925, 3, 2, 2, 2, 201, 932, 3, 2, 2, 2, 203, 949, 3, 2, 2, 2, 205, 963, 3, 2, 2, 2, 207, 980, 3, 2, 2, 2, 209, 1000, 3, 2, 2, 2, 211, 1003, 3, 2, 2, 2, 213, 1012, 3, 2, 2, 2, 215, 1019, 3, 2, 2, 2, 217, 1021, 3, 2, 2, 2, 219, 1023, 3, 2, 2, 2, 221, 1025, 3, 2, 2, 2, 223, 1034, 3, 2, 2, 2, 225, 1036, 3, 2, 2, 2, 227, 1038, 3, 2, 2, 2, 229, 1060, 3, 2, 2, 2, 231, 1074, 3, 2, 2, 2, 233, 1080, 3, 2, 2, 2, 235, 1091, 3, 2, 2, 2, 237, 1105, 3, 2, 2, 2, 239, 1661, 3, 2, 2, 2, 241, 1663, 3, 2, 2, 2, 243, 1665, 3, 2, 2, 2, 245, 1667, 3, 2, 2, 2, 247, 1669, 3, 2, 2, 2, 249, 1671, 3, 2, 2, 2, 251, 1673, 3, 2, 2, 2, 253, 1675, 3, 2, 2, 2, 255, 1677, 3, 2, 2, 2, 257, 1679, 3, 2, 2, 2, 259, 1682, 3, 2, 2, 2, 261, 1685, 3, 2, 2, 2, 263, 1687, 3, 2, 2, 2, 265, 1689, 3, 2, 2, 2, 267, 1691, 3, 2, 2, 2, 269, 1693, 3, 2, 2, 2, 271, 1695, 3, 2, 2, 2, 273, 1697, 3, 2, 2, 2, 275, 1700, 3, 2, 2, 2, 277, 1705, 3, 2, 2, 2, 279, 1710, 3, 2, 2, 2, 281, 1712, 3, 2, 2, 2, 283, 1728, 3, 2, 2, 2, 285, 1737, 3, 2, 2, 2, 287, 1753, 3, 2, 2, 2, 289, 1755, 3, 2, 2, 2, 291, 1762, 3, 2, 2, 2, 293, 1766, 3, 2, 2, 2, 295, 1772, 3, 2, 2, 2, 297, 1774, 3, 2, 2, 2, 299, 1776, 3, 2, 2, 2, 301, 1778, 3, 2, 2, 2, 303, 1786, 3, 2, 2, 2, 305, 1792, 3, 2, 2, 2, 307, 1799, 3, 2, 2, 2, 309, 1806, 3, 2, 2, 2, 311, 1808, 3, 2, 2, 2, 313, 1811, 3, 2, 2, 2, 315, 1817, 3, 2, 2, 2, 317, 1828, 3, 2, 2, 2, 319, 1842, 3, 2, 2, 2, 321, 1851, 3, 2, 2, 2, 323, 1864, 3, 2, 2, 2, 325, 1870, 3, 2, 2, 2, 327, 1881, 3, 2, 2, 2, 329, 330, 7, 125, 2, 2, 330, 331, 8, 2, 2, 2, 331, 6, 3, 2, 2, 2, 332, 333, 7, 127, 2, 2, 333, 8, 3, 2, 2, 2, 334, 335, 7, 93, 2, 2, 335, 10, 3, 2, 2, 2, 336, 337, 7, 95, 2, 2, 337, 12, 3, 2, 2, 2, 338, 339, 7, 42, 2, 2, 339, 14, 3, 2, 2, 2, 340, 341, 7, 43, 2, 2, 341, 16, 3, 2, 2, 2, 342, 343, 7, 61, 2, 2, 343, 18, 3, 2, 2, 2, 344, 345, 7, 60, 2, 2, 345, 20, 3, 2, 2, 2, 346, 347, 7, 46, 2, 2, 347, 22, 3, 2, 2, 2, 348, 349, 7, 48, 2, 2, 349, 350, 7, 48, 2, 2, 350, 24, 3, 2, 2, 2, 351, 352, 7, 48, 2, 2, 352, 353, 7, 48, 2, 2, 353, 354, 7, 48, 2, 2, 354, 26, 3, 2, 2, 2, 355, 356, 7, 65, 2, 2, 356, 28, 3, 2, 2, 2, 357, 358, 7, 48, 2, 2, 358, 30, 3, 2, 2, 2, 359, 360, 7, 47, 2, 2, 360, 361, 7, 64, 2, 2, 361, 32, 3, 2, 2, 2, 362, 363, 7, 45, 2, 2, 363, 34, 3, 2, 2, 2, 364, 365, 7, 47, 2, 2, 365, 36, 3, 2, 2, 2, 366, 367, 7, 44, 2, 2, 367, 38, 3, 2, 2, 2, 368, 369, 7, 49, 2, 2, 369, 40, 3, 2, 2, 2, 370, 371, 7, 39, 2, 2, 371, 42, 3, 2, 2, 2, 372, 373, 7, 45, 2, 2, 373, 374, 7, 45, 2, 2, 374, 44, 3, 2, 2, 2, 375, 376, 7, 47, 2, 2, 376, 377, 7, 47, 2, 2, 377, 46, 3, 2, 2, 2, 378, 379, 7, 40, 2, 2, 379, 48, 3, 2, 2, 2, 380, 381, 7, 128, 2, 2, 381, 50, 3, 2, 2, 2, 382, 383, 7, 96, 2, 2, 383, 52, 3, 2, 2, 2, 384, 385, 7, 126, 2, 2, 385, 54, 3, 2, 2, 2, 386, 387, 7, 62, 2, 2, 387, 388, 7, 62, 2, 2, 388, 56, 3, 2, 2, 2, 389, 390, 7, 64, 2, 2, 390, 391, 7, 64, 2, 2, 391, 58, 3, 2, 2, 2, 392, 393, 7, 63, 2, 2, 393, 394, 7, 63, 2, 2, 394, 60, 3, 2, 2, 2, 395, 396, 7, 35, 2, 2, 396, 397, 7, 63, 2, 2, 397, 62, 3, 2, 2, 2, 398, 399, 7, 62, 2, 2, 399, 64, 3, 2, 2, 2, 400, 401, 7, 62, 2, 2, 401, 402, 7, 63, 2, 2, 402, 66, 3, 2, 2, 2, 403, 404, 7, 64, 2, 2, 404, 405, 7, 63, 2, 2, 405, 68, 3, 2, 2, 2, 406, 407, 7, 64, 2, 2, 407, 70, 3, 2, 2, 2, 408, 409, 7, 40, 2, 2, 409, 410, 7, 40, 2, 2, 410, 72, 3, 2, 2, 2, 411, 412, 7, 126, 2, 2, 412, 413, 7, 126, 2, 2, 413, 74, 3, 2, 2, 2, 414, 415, 7, 63, 2, 2, 415, 76, 3, 2, 2, 2, 416, 417, 7, 45, 2, 2, 417, 439, 7, 63, 2, 2, 418, 419, 7, 47, 2, 2, 419, 439, 7, 63, 2, 2, 420, 421, 7, 44, 2, 2, 421, 439, 7, 63, 2, 2, 422, 423, 7, 49, 2, 2, 423, 439, 7, 63, 2, 2, 424, 425, 7, 39, 2, 2, 425, 439, 7, 63, 2, 2, 426, 427, 7, 62, 2, 2, 427, 428, 7, 62, 2, 2, 428, 439, 7, 63, 2, 2, 429, 430, 7, 64, 2, 2, 430, 431, 7, 64, 2, 2, 431, 439, 7, 63, 2, 2, 432, 433, 7, 40, 2, 2, 433, 439, 7, 63, 2, 2, 434, 435, 7, 126, 2, 2, 435, 439, 7, 63, 2, 2, 436, 437, 7, 96, 2, 2, 437, 439, 7, 63, 2, 2, 438, 416, 3, 2, 2, 2, 438, 418, 3, 2, 2, 2, 438, 420, 3, 2, 2, 2, 438, 422, 3, 2, 2, 2, 438, 424, 3, 2, 2, 2, 438, 426, 3, 2, 2, 2, 438, 429, 3, 2, 2, 2, 438, 432, 3, 2, 2, 2, 438, 434, 3, 2, 2, 2, 438, 436, 3, 2, 2, 2, 439, 78, 3, 2, 2, 2, 440, 441, 7, 118, 2, 2, 441, 442, 7, 123, 2, 2, 442, 443, 7, 114, 2, 2, 443, 444, 7, 103, 2, 2, 444, 445, 7, 102, 2, 2, 445, 446, 7, 103, 2, 2, 446, 447, 7, 104, 2, 2, 447, 80, 3, 2, 2, 2, 448, 449, 7, 101, 2, 2, 449, 450, 7, 113, 2, 2, 450, 451, 7, 112, 2, 2, 451, 452, 7, 117, 2, 2, 452, 453, 7, 118, 2, 2, 453, 82, 3, 2, 2, 2, 454, 455, 7, 103, 2, 2, 455, 456, 7, 122, 2, 2, 456, 457, 7, 118, 2, 2, 457, 458, 7, 103, 2, 2, 458, 459, 7, 116, 2, 2, 459, 460, 7, 112, 2, 2, 460, 84, 3, 2, 2, 2, 461, 462, 7, 103, 2, 2, 462, 463, 7, 122, 2, 2, 463, 464, 7, 114, 2, 2, 464, 465, 7, 113, 2, 2, 465, 466, 7, 116, 2, 2, 466, 467, 7, 118, 2, 2, 467, 86, 3, 2, 2, 2, 468, 469, 7, 99, 2, 2, 469, 470, 7, 110, 2, 2, 470, 471, 7, 107, 2, 2, 471, 472, 7, 105, 2, 2, 472, 473, 7, 112, 2, 2, 473, 88, 3, 2, 2, 2, 474, 475, 7, 107, 2, 2, 475, 476, 7, 112, 2, 2, 476, 477, 7, 110, 2, 2, 477, 478, 7, 107, 2, 2, 478, 479, 7, 112, 2, 2, 479, 480, 7, 103, 2, 2, 480, 90, 3, 2, 2, 2, 481, 482, 7, 120, 2, 2, 482, 483, 7, 113, 2, 2, 483, 484, 7, 110, 2, 2, 484, 485, 7, 99, 2, 2, 485, 486, 7, 118, 2, 2, 486, 487, 7, 107, 2, 2, 487, 488, 7, 110, 2, 2, 488, 489, 7, 103, 2, 2, 489, 92, 3, 2, 2, 2, 490, 491, 7, 117, 2, 2, 491, 492, 7, 118, 2, 2, 492, 493, 7, 99, 2, 2, 493, 494, 7, 118, 2, 2, 494, 495, 7, 107, 2, 2, 495, 496, 7, 101, 2, 2, 496, 94, 3, 2, 2, 2, 497, 498, 7, 107, 2, 2, 498, 499, 7, 112, 2, 2, 499, 500, 7, 118, 2, 2, 500, 501, 7, 103, 2, 2, 501, 502, 7, 116, 2, 2, 502, 503, 7, 116, 2, 2, 503, 504, 7, 119, 2, 2, 504, 505, 7, 114, 2, 2, 505, 506, 7, 118, 2, 2, 506, 96, 3, 2, 2, 2, 507, 508, 7, 116, 2, 2, 508, 509, 7, 103, 2, 2, 509, 510, 7, 105, 2, 2, 510, 511, 7, 107, 2, 2, 511, 512, 7, 117, 2, 2, 512, 513, 7, 118, 2, 2, 513, 514, 7, 103, 2, 2, 514, 515, 7, 116, 2, 2, 515, 98, 3, 2, 2, 2, 516, 517, 7, 97, 2, 2, 517, 518, 7, 97, 2, 2, 518, 519, 7, 124, 2, 2, 519, 520, 7, 114, 2, 2, 520, 521, 7, 97, 2, 2, 521, 522, 7, 116, 2, 2, 522, 523, 7, 103, 2, 2, 523, 524, 7, 117, 2, 2, 524, 525, 7, 103, 2, 2, 525, 526, 7, 116, 2, 2, 526, 527, 7, 120, 2, 2, 527, 528, 7, 103, 2, 2, 528, 100, 3, 2, 2, 2, 529, 530, 7, 97, 2, 2, 530, 531, 7, 97, 2, 2, 531, 532, 7, 99, 2, 2, 532, 533, 7, 102, 2, 2, 533, 534, 7, 102, 2, 2, 534, 535, 7, 116, 2, 2, 535, 536, 7, 103, 2, 2, 536, 537, 7, 117, 2, 2, 537, 538, 7, 117, 2, 2, 538, 102, 3, 2, 2, 2, 539, 540, 7, 97, 2, 2, 540, 541, 7, 97, 2, 2, 541, 542, 7, 124, 2, 2, 542, 543, 7, 114, 2, 2, 543, 104, 3, 2, 2, 2, 544, 545, 7, 97, 2, 2, 545, 546, 7, 97, 2, 2, 546, 547, 7, 111, 2, 2, 547, 548, 7, 103, 2, 2, 548, 549, 7, 111, 2, 2, 549, 106, 3, 2, 2, 2, 550, 551, 7, 97, 2, 2, 551, 552, 7, 97, 2, 2, 552, 553, 7, 117, 2, 2, 553, 554, 7, 117, 2, 2, 554, 555, 7, 99, 2, 2, 555, 108, 3, 2, 2, 2, 556, 557, 7, 97, 2, 2, 557, 558, 7, 97, 2, 2, 558, 559, 7, 111, 2, 2, 559, 560, 7, 99, 2, 2, 560, 110, 3, 2, 2, 2, 561, 562, 7, 97, 2, 2, 562, 563, 7, 97, 2, 2, 563, 564, 7, 107, 2, 2, 564, 565, 7, 112, 2, 2, 565, 566, 7, 118, 2, 2, 566, 567, 7, 116, 2, 2, 567, 568, 7, 107, 2, 2, 568, 569, 7, 112, 2, 2, 569, 570, 7, 117, 2, 2, 570, 571, 7, 107, 2, 2, 571, 572, 7, 101, 2, 2, 572, 112, 3, 2, 2, 2, 573, 574, 7, 97, 2, 2, 574, 575, 7, 97, 2, 2, 575, 576, 7, 117, 2, 2, 576, 577, 7, 118, 2, 2, 577, 578, 7, 99, 2, 2, 578, 579, 7, 101, 2, 2, 579, 580, 7, 109, 2, 2, 580, 581, 7, 101, 2, 2, 581, 582, 7, 99, 2, 2, 582, 583, 7, 110, 2, 2, 583, 594, 7, 110, 2, 2, 584, 585, 7, 97, 2, 2, 585, 586, 7, 97, 2, 2, 586, 587, 7, 114, 2, 2, 587, 588, 7, 106, 2, 2, 588, 589, 7, 107, 2, 2, 589, 590, 7, 101, 2, 2, 590, 591, 7, 99, 2, 2, 591, 592, 7, 110, 2, 2, 592, 594, 7, 110, 2, 2, 593, 573, 3, 2, 2, 2, 593, 584, 3, 2, 2, 2, 594, 114, 3, 2, 2, 2, 595, 596, 7, 107, 2, 2, 596, 597, 7, 104, 2, 2, 597, 116, 3, 2, 2, 2, 598, 599, 7, 103, 2, 2, 599, 600, 7, 110, 2, 2, 600, 601, 7, 117, 2, 2, 601, 602, 7, 103, 2, 2, 602, 118, 3, 2, 2, 2, 603, 604, 7, 121, 2, 2, 604, 605, 7, 106, 2, 2, 605, 606, 7, 107, 2, 2, 606, 607, 7, 110, 2, 2, 607, 608, 7, 103, 2, 2, 608, 120, 3, 2, 2, 2, 609, 610, 7, 102, 2, 2, 610, 611, 7, 113, 2, 2, 611, 122, 3, 2, 2, 2, 612, 613, 7, 104, 2, 2, 613, 614, 7, 113, 2, 2, 614, 615, 7, 116, 2, 2, 615, 124, 3, 2, 2, 2, 616, 617, 7, 117, 2, 2, 617, 618, 7, 121, 2, 2, 618, 619, 7, 107, 2, 2, 619, 620, 7, 118, 2, 2, 620, 621, 7, 101, 2, 2, 621, 622, 7, 106, 2, 2, 622, 126, 3, 2, 2, 2, 623, 624, 7, 116, 2, 2, 624, 625, 7, 103, 2, 2, 625, 626, 7, 118, 2, 2, 626, 627, 7, 119, 2, 2, 627, 628, 7, 116, 2, 2, 628, 629, 7, 112, 2, 2, 629, 128, 3, 2, 2, 2, 630, 631, 7, 100, 2, 2, 631, 632, 7, 116, 2, 2, 632, 633, 7, 103, 2, 2, 633, 634, 7, 99, 2, 2, 634, 635, 7, 109, 2, 2, 635, 130, 3, 2, 2, 2, 636, 637, 7, 101, 2, 2, 637, 638, 7, 113, 2, 2, 638, 639, 7, 112, 2, 2, 639, 640, 7, 118, 2, 2, 640, 641, 7, 107, 2, 2, 641, 642, 7, 112, 2, 2, 642, 643, 7, 119, 2, 2, 643, 644, 7, 103, 2, 2, 644, 132, 3, 2, 2, 2, 645, 646, 7, 99, 2, 2, 646, 647, 7, 117, 2, 2, 647, 648, 7, 111, 2, 2, 648, 649, 3, 2, 2, 2, 649, 650, 8, 66, 3, 2, 650, 134, 3, 2, 2, 2, 651, 652, 7, 102, 2, 2, 652, 653, 7, 103, 2, 2, 653, 654, 7, 104, 2, 2, 654, 655, 7, 99, 2, 2, 655, 656, 7, 119, 2, 2, 656, 657, 7, 110, 2, 2, 657, 658, 7, 118, 2, 2, 658, 136, 3, 2, 2, 2, 659, 660, 7, 101, 2, 2, 660, 661, 7, 99, 2, 2, 661, 662, 7, 117, 2, 2, 662, 663, 7, 103, 2, 2, 663, 138, 3, 2, 2, 2, 664, 665, 7, 117, 2, 2, 665, 666, 7, 118, 2, 2, 666, 667, 7, 116, 2, 2, 667, 668, 7, 119, 2, 2, 668, 669, 7, 101, 2, 2, 669, 670, 7, 118, 2, 2, 670, 140, 3, 2, 2, 2, 671, 672, 7, 103, 2, 2, 672, 673, 7, 112, 2, 2, 673, 674, 7, 119, 2, 2, 674, 675, 7, 111, 2, 2, 675, 142, 3, 2, 2, 2, 676, 677, 7, 117, 2, 2, 677, 678, 7, 107, 2, 2, 678, 679, 7, 124, 2, 2, 679, 680, 7, 103, 2, 2, 680, 681, 7, 113, 2, 2, 681, 682, 7, 104, 2, 2, 682, 144, 3, 2, 2, 2, 683, 684, 7, 118, 2, 2, 684, 685, 7, 123, 2, 2, 685, 686, 7, 114, 2, 2, 686, 687, 7, 103, 2, 2, 687, 688, 7, 107, 2, 2, 688, 689, 7, 102, 2, 2, 689, 146, 3, 2, 2, 2, 690, 691, 7, 102, 2, 2, 691, 692, 7, 103, 2, 2, 692, 693, 7, 104, 2, 2, 693, 694, 7, 107, 2, 2, 694, 695, 7, 112, 2, 2, 695, 696, 7, 103, 2, 2, 696, 697, 7, 102, 2, 2, 697, 148, 3, 2, 2, 2, 698, 699, 7, 109, 2, 2, 699, 700, 7, 107, 2, 2, 700, 701, 7, 101, 2, 2, 701, 702, 7, 109, 2, 2, 702, 703, 7, 99, 2, 2, 703, 704, 7, 117, 2, 2, 704, 705, 7, 111, 2, 2, 705, 150, 3, 2, 2, 2, 706, 707, 7, 116, 2, 2, 707, 708, 7, 103, 2, 2, 708, 709, 7, 117, 2, 2, 709, 710, 7, 113, 2, 2, 710, 711, 7, 119, 2, 2, 711, 712, 7, 116, 2, 2, 712, 713, 7, 101, 2, 2, 713, 714, 7, 103, 2, 2, 714, 152, 3, 2, 2, 2, 715, 716, 7, 119, 2, 2, 716, 717, 7, 117, 2, 2, 717, 718, 7, 103, 2, 2, 718, 719, 7, 117, 2, 2, 719, 154, 3, 2, 2, 2, 720, 721, 7, 101, 2, 2, 721, 722, 7, 110, 2, 2, 722, 723, 7, 113, 2, 2, 723, 724, 7, 100, 2, 2, 724, 725, 7, 100, 2, 2, 725, 726, 7, 103, 2, 2, 726, 727, 7, 116, 2, 2, 727, 728, 7, 117, 2, 2, 728, 156, 3, 2, 2, 2, 729, 730, 7, 100, 2, 2, 730, 731, 7, 123, 2, 2, 731, 732, 7, 118, 2, 2, 732, 733, 7, 103, 2, 2, 733, 734, 7, 117, 2, 2, 734, 158, 3, 2, 2, 2, 735, 736, 7, 101, 2, 2, 736, 737, 7, 123, 2, 2, 737, 738, 7, 101, 2, 2, 738, 739, 7, 110, 2, 2, 739, 740, 7, 103, 2, 2, 740, 741, 7, 117, 2, 2, 741, 160, 3, 2, 2, 2, 742, 743, 7, 35, 2, 2, 743, 162, 3, 2, 2, 2, 744, 745, 7, 117, 2, 2, 745, 746, 7, 107, 2, 2, 746, 747, 7, 105, 2, 2, 747, 748, 7, 112, 2, 2, 748, 749, 7, 103, 2, 2, 749, 759, 7, 102, 2, 2, 750, 751, 7, 119, 2, 2, 751, 752, 7, 112, 2, 2, 752, 753, 7, 117, 2, 2, 753, 754, 7, 107, 2, 2, 754, 755, 7, 105, 2, 2, 755, 756, 7, 112, 2, 2, 756, 757, 7, 103, 2, 2, 757, 759, 7, 102, 2, 2, 758, 744, 3, 2, 2, 2, 758, 750, 3, 2, 2, 2, 759, 164, 3, 2, 2, 2, 760, 761, 7, 100, 2, 2, 761, 762, 7, 123, 2, 2, 762, 763, 7, 118, 2, 2, 763, 798, 7, 103, 2, 2, 764, 765, 7, 121, 2, 2, 765, 766, 7, 113, 2, 2, 766, 767, 7, 116, 2, 2, 767, 798, 7, 102, 2, 2, 768, 769, 7, 102, 2, 2, 769, 770, 7, 121, 2, 2, 770, 771, 7, 113, 2, 2, 771, 772, 7, 116, 2, 2, 772, 798, 7, 102, 2, 2, 773, 774, 7, 100, 2, 2, 774, 775, 7, 113, 2, 2, 775, 776, 7, 113, 2, 2, 776, 798, 7, 110, 2, 2, 777, 778, 7, 101, 2, 2, 778, 779, 7, 106, 2, 2, 779, 780, 7, 99, 2, 2, 780, 798, 7, 116, 2, 2, 781, 782, 7, 117, 2, 2, 782, 783, 7, 106, 2, 2, 783, 784, 7, 113, 2, 2, 784, 785, 7, 116, 2, 2, 785, 798, 7, 118, 2, 2, 786, 787, 7, 107, 2, 2, 787, 788, 7, 112, 2, 2, 788, 798, 7, 118, 2, 2, 789, 790, 7, 110, 2, 2, 790, 791, 7, 113, 2, 2, 791, 792, 7, 112, 2, 2, 792, 798, 7, 105, 2, 2, 793, 794, 7, 120, 2, 2, 794, 795, 7, 113, 2, 2, 795, 796, 7, 107, 2, 2, 796, 798, 7, 102, 2, 2, 797, 760, 3, 2, 2, 2, 797, 764, 3, 2, 2, 2, 797, 768, 3, 2, 2, 2, 797, 773, 3, 2, 2, 2, 797, 777, 3, 2, 2, 2, 797, 781, 3, 2, 2, 2, 797, 786, 3, 2, 2, 2, 797, 789, 3, 2, 2, 2, 797, 793, 3, 2, 2, 2, 798, 166, 3, 2, 2, 2, 799, 800, 7, 118, 2, 2, 800, 801, 7, 116, 2, 2, 801, 802, 7, 119, 2, 2, 802, 809, 7, 103, 2, 2, 803, 804, 7, 104, 2, 2, 804, 805, 7, 99, 2, 2, 805, 806, 7, 110, 2, 2, 806, 807, 7, 117, 2, 2, 807, 809, 7, 103, 2, 2, 808, 799, 3, 2, 2, 2, 808, 803, 3, 2, 2, 2, 809, 168, 3, 2, 2, 2, 810, 811, 7, 125, 2, 2, 811, 812, 7, 125, 2, 2, 812, 816, 3, 2, 2, 2, 813, 815, 11, 2, 2, 2, 814, 813, 3, 2, 2, 2, 815, 818, 3, 2, 2, 2, 816, 817, 3, 2, 2, 2, 816, 814, 3, 2, 2, 2, 817, 819, 3, 2, 2, 2, 818, 816, 3, 2, 2, 2, 819, 820, 7, 127, 2, 2, 820, 821, 7, 127, 2, 2, 821, 170, 3, 2, 2, 2, 822, 823, 7, 37, 2, 2, 823, 824, 7, 107, 2, 2, 824, 825, 7, 111, 2, 2, 825, 826, 7, 114, 2, 2, 826, 827, 7, 113, 2, 2, 827, 828, 7, 116, 2, 2, 828, 829, 7, 118, 2, 2, 829, 830, 3, 2, 2, 2, 830, 831, 8, 85, 4, 2, 831, 172, 3, 2, 2, 2, 832, 833, 7, 37, 2, 2, 833, 834, 7, 107, 2, 2, 834, 835, 7, 112, 2, 2, 835, 836, 7, 101, 2, 2, 836, 837, 7, 110, 2, 2, 837, 838, 7, 119, 2, 2, 838, 839, 7, 102, 2, 2, 839, 840, 7, 103, 2, 2, 840, 841, 3, 2, 2, 2, 841, 842, 8, 86, 5, 2, 842, 174, 3, 2, 2, 2, 843, 844, 7, 37, 2, 2, 844, 845, 7, 114, 2, 2, 845, 846, 7, 116, 2, 2, 846, 847, 7, 99, 2, 2, 847, 848, 7, 105, 2, 2, 848, 849, 7, 111, 2, 2, 849, 850, 7, 99, 2, 2, 850, 176, 3, 2, 2, 2, 851, 852, 7, 37, 2, 2, 852, 853, 7, 102, 2, 2, 853, 854, 7, 103, 2, 2, 854, 855, 7, 104, 2, 2, 855, 856, 7, 107, 2, 2, 856, 857, 7, 112, 2, 2, 857, 858, 7, 103, 2, 2, 858, 178, 3, 2, 2, 2, 859, 860, 7, 94, 2, 2, 860, 865, 7, 12, 2, 2, 861, 862, 7, 94, 2, 2, 862, 863, 7, 15, 2, 2, 863, 865, 7, 12, 2, 2, 864, 859, 3, 2, 2, 2, 864, 861, 3, 2, 2, 2, 865, 180, 3, 2, 2, 2, 866, 867, 7, 37, 2, 2, 867, 868, 7, 119, 2, 2, 868, 869, 7, 112, 2, 2, 869, 870, 7, 102, 2, 2, 870, 871, 7, 103, 2, 2, 871, 872, 7, 104, 2, 2, 872, 182, 3, 2, 2, 2, 873, 874, 7, 37, 2, 2, 874, 875, 7, 107, 2, 2, 875, 876, 7, 104, 2, 2, 876, 877, 7, 102, 2, 2, 877, 878, 7, 103, 2, 2, 878, 879, 7, 104, 2, 2, 879, 184, 3, 2, 2, 2, 880, 881, 7, 37, 2, 2, 881, 882, 7, 107, 2, 2, 882, 883, 7, 104, 2, 2, 883, 884, 7, 112, 2, 2, 884, 885, 7, 102, 2, 2, 885, 886, 7, 103, 2, 2, 886, 887, 7, 104, 2, 2, 887, 186, 3, 2, 2, 2, 888, 889, 7, 37, 2, 2, 889, 890, 7, 107, 2, 2, 890, 891, 7, 104, 2, 2, 891, 188, 3, 2, 2, 2, 892, 893, 7, 37, 2, 2, 893, 894, 7, 103, 2, 2, 894, 895, 7, 110, 2, 2, 895, 896, 7, 107, 2, 2, 896, 897, 7, 104, 2, 2, 897, 190, 3, 2, 2, 2, 898, 899, 7, 37, 2, 2, 899, 900, 7, 103, 2, 2, 900, 901, 7, 110, 2, 2, 901, 902, 7, 117, 2, 2, 902, 903, 7, 103, 2, 2, 903, 192, 3, 2, 2, 2, 904, 905, 7, 37, 2, 2, 905, 906, 7, 103, 2, 2, 906, 907, 7, 112, 2, 2, 907, 908, 7, 102, 2, 2, 908, 909, 7, 107, 2, 2, 909, 910, 7, 104, 2, 2, 910, 194, 3, 2, 2, 2, 911, 912, 7, 37, 2, 2, 912, 913, 7, 103, 2, 2, 913, 914, 7, 116, 2, 2, 914, 915, 7, 116, 2, 2, 915, 916, 7, 113, 2, 2, 916, 917, 7, 116, 2, 2, 917, 196, 3, 2, 2, 2, 918, 921, 5, 199, 99, 2, 919, 921, 5, 207, 103, 2, 920, 918, 3, 2, 2, 2, 920, 919, 3, 2, 2, 2, 921, 198, 3, 2, 2, 2, 922, 926, 5, 201, 100, 2, 923, 926, 5, 203, 101, 2, 924, 926, 5, 205, 102, 2, 925, 922, 3, 2, 2, 2, 925, 923, 3, 2, 2, 2, 925, 924, 3, 2, 2, 2, 926, 200, 3, 2, 2, 2, 927, 933, 7, 39, 2, 2, 928, 929, 7, 50, 2, 2, 929, 933, 7, 100, 2, 2, 930, 931, 7, 50, 2, 2, 931, 933, 7, 68, 2, 2, 932, 927, 3, 2, 2, 2, 932, 928, 3, 2, 2, 2, 932, 930, 3, 2, 2, 2, 933, 937, 3, 2, 2, 2, 934, 936, 5, 215, 107, 2, 935, 934, 3, 2, 2, 2, 936, 939, 3, 2, 2, 2, 937, 935, 3, 2, 2, 2, 937, 938, 3, 2, 2, 2, 938, 940, 3, 2, 2, 2, 939, 937, 3, 2, 2, 2, 940, 942, 7, 48, 2, 2, 941, 943, 5, 215, 107, 2, 942, 941, 3, 2, 2, 2, 943, 944, 3, 2, 2, 2, 944, 942, 3, 2, 2, 2, 944, 945, 3, 2, 2, 2, 945, 202, 3, 2, 2, 2, 946, 948, 5, 217, 108, 2, 947, 946, 3, 2, 2, 2, 948, 951, 3, 2, 2, 2, 949, 947, 3, 2, 2, 2, 949, 950, 3, 2, 2, 2, 950, 952, 3, 2, 2, 2, 951, 949, 3, 2, 2, 2, 952, 954, 7, 48, 2, 2, 953, 955, 5, 217, 108, 2, 954, 953, 3, 2, 2, 2, 955, 956, 3, 2, 2, 2, 956, 954, 3, 2, 2, 2, 956, 957, 3, 2, 2, 2, 957, 204, 3, 2, 2, 2, 958, 964, 7, 38, 2, 2, 959, 960, 7, 50, 2, 2, 960, 964, 7, 122, 2, 2, 961, 962, 7, 50, 2, 2, 962, 964, 7, 90, 2, 2, 963, 958, 3, 2, 2, 2, 963, 959, 3, 2, 2, 2, 963, 961, 3, 2, 2, 2, 964, 968, 3, 2, 2, 2, 965, 967, 5, 219, 109, 2, 966, 965, 3, 2, 2, 2, 967, 970, 3, 2, 2, 2, 968, 966, 3, 2, 2, 2, 968, 969, 3, 2, 2, 2, 969, 971, 3, 2, 2, 2, 970, 968, 3, 2, 2, 2, 971, 973, 7, 48, 2, 2, 972, 974, 5, 219, 109, 2, 973, 972, 3, 2, 2, 2, 974, 975, 3, 2, 2, 2, 975, 973, 3, 2, 2, 2, 975, 976, 3, 2, 2, 2, 976, 206, 3, 2, 2, 2, 977, 981, 5, 211, 105, 2, 978, 981, 5, 213, 106, 2, 979, 981, 5, 209, 104, 2, 980, 977, 3, 2, 2, 2, 980, 978, 3, 2, 2, 2, 980, 979, 3, 2, 2, 2, 981, 985, 3, 2, 2, 2, 982, 983, 9, 2, 2, 2, 983, 986, 9, 3, 2, 2, 984, 986, 7, 110, 2, 2, 985, 982, 3, 2, 2, 2, 985, 984, 3, 2, 2, 2, 985, 986, 3, 2, 2, 2, 986, 208, 3, 2, 2, 2, 987, 988, 7, 50, 2, 2, 988, 990, 9, 4, 2, 2, 989, 991, 5, 215, 107, 2, 990, 989, 3, 2, 2, 2, 991, 992, 3, 2, 2, 2, 992, 990, 3, 2, 2, 2, 992, 993, 3, 2, 2, 2, 993, 1001, 3, 2, 2, 2, 994, 996, 7, 39, 2, 2, 995, 997, 5, 215, 107, 2, 996, 995, 3, 2, 2, 2, 997, 998, 3, 2, 2, 2, 998, 996, 3, 2, 2, 2, 998, 999, 3, 2, 2, 2, 999, 1001, 3, 2, 2, 2, 1000, 987, 3, 2, 2, 2, 1000, 994, 3, 2, 2, 2, 1001, 210, 3, 2, 2, 2, 1002, 1004, 5, 217, 108, 2, 1003, 1002, 3, 2, 2, 2, 1004, 1005, 3, 2, 2, 2, 1005, 1003, 3, 2, 2, 2, 1005, 1006, 3, 2, 2, 2, 1006, 212, 3, 2, 2, 2, 1007, 1013, 7, 38, 2, 2, 1008, 1009, 7, 50, 2, 2, 1009, 1013, 7, 122, 2, 2, 1010, 1011, 7, 50, 2, 2, 1011, 1013, 7, 90, 2, 2, 1012, 1007, 3, 2, 2, 2, 1012, 1008, 3, 2, 2, 2, 1012, 1010, 3, 2, 2, 2, 1013, 1015, 3, 2, 2, 2, 1014, 1016, 5, 219, 109, 2, 1015, 1014, 3, 2, 2, 2, 1016, 1017, 3, 2, 2, 2, 1017, 1015, 3, 2, 2, 2, 1017, 1018, 3, 2, 2, 2, 1018, 214, 3, 2, 2, 2, 1019, 1020, 9, 5, 2, 2, 1020, 216, 3, 2, 2, 2, 1021, 1022, 9, 6, 2, 2, 1022, 218, 3, 2, 2, 2, 1023, 1024, 9, 7, 2, 2, 1024, 220, 3, 2, 2, 2, 1025, 1029, 5, 223, 111, 2, 1026, 1028, 5, 225, 112, 2, 1027, 1026, 3, 2, 2, 2, 1028, 1031, 3, 2, 2, 2, 1029, 1027, 3, 2, 2, 2, 1029, 1030, 3, 2, 2, 2, 1030, 1032, 3, 2, 2, 2, 1031, 1029, 3, 2, 2, 2, 1032, 1033, 8, 110, 6, 2, 1033, 222, 3, 2, 2, 2, 1034, 1035, 9, 8, 2, 2, 1035, 224, 3, 2, 2, 2, 1036, 1037, 9, 9, 2, 2, 1037, 226, 3, 2, 2, 2, 1038, 1044, 7, 36, 2, 2, 1039, 1040, 7, 94, 2, 2, 1040, 1043, 7, 36, 2, 2, 1041, 1043, 10, 10, 2, 2, 1042, 1039, 3, 2, 2, 2, 1042, 1041, 3, 2, 2, 2, 1043, 1046, 3, 2, 2, 2, 1044, 1042, 3, 2, 2, 2, 1044, 1045, 3, 2, 2, 2, 1045, 1047, 3, 2, 2, 2, 1046, 1044, 3, 2, 2, 2, 1047, 1049, 7, 36, 2, 2, 1048, 1050, 9, 11, 2, 2, 1049, 1048, 3, 2, 2, 2, 1049, 1050, 3, 2, 2, 2, 1050, 1055, 3, 2, 2, 2, 1051, 1053, 9, 12, 2, 2, 1052, 1054, 9, 13, 2, 2, 1053, 1052, 3, 2, 2, 2, 1053, 1054, 3, 2, 2, 2, 1054, 1056, 3, 2, 2, 2, 1055, 1051, 3, 2, 2, 2, 1055, 1056, 3, 2, 2, 2, 1056, 1058, 3, 2, 2, 2, 1057, 1059, 9, 11, 2, 2, 1058, 1057, 3, 2, 2, 2, 1058, 1059, 3, 2, 2, 2, 1059, 228, 3, 2, 2, 2, 1060, 1069, 7, 41, 2, 2, 1061, 1066, 7, 94, 2, 2, 1062, 1067, 9, 14, 2, 2, 1063, 1064, 7, 122, 2, 2, 1064, 1065, 9, 15, 2, 2, 1065, 1067, 9, 15, 2, 2, 1066, 1062, 3, 2, 2, 2, 1066, 1063, 3, 2, 2, 2, 1067, 1070, 3, 2, 2, 2, 1068, 1070, 10, 16, 2, 2, 1069, 1061, 3, 2, 2, 2, 1069, 1068, 3, 2, 2, 2, 1070, 1071, 3, 2, 2, 2, 1071, 1072, 7, 41, 2, 2, 1072, 230, 3, 2, 2, 2, 1073, 1075, 9, 17, 2, 2, 1074, 1073, 3, 2, 2, 2, 1075, 1076, 3, 2, 2, 2, 1076, 1074, 3, 2, 2, 2, 1076, 1077, 3, 2, 2, 2, 1077, 1078, 3, 2, 2, 2, 1078, 1079, 8, 115, 7, 2, 1079, 232, 3, 2, 2, 2, 1080, 1081, 7, 49, 2, 2, 1081, 1082, 7, 49, 2, 2, 1082, 1086, 3, 2, 2, 2, 1083, 1085, 10, 18, 2, 2, 1084, 1083, 3, 2, 2, 2, 1085, 1088, 3, 2, 2, 2, 1086, 1084, 3, 2, 2, 2, 1086, 1087, 3, 2, 2, 2, 1087, 1089, 3, 2, 2, 2, 1088, 1086, 3, 2, 2, 2, 1089, 1090, 8, 116, 8, 2, 1090, 234, 3, 2, 2, 2, 1091, 1092, 7, 49, 2, 2, 1092, 1093, 7, 44, 2, 2, 1093, 1097, 3, 2, 2, 2, 1094, 1096, 11, 2, 2, 2, 1095, 1094, 3, 2, 2, 2, 1096, 1099, 3, 2, 2, 2, 1097, 1098, 3, 2, 2, 2, 1097, 1095, 3, 2, 2, 2, 1098, 1100, 3, 2, 2, 2, 1099, 1097, 3, 2, 2, 2, 1100, 1101, 7, 44, 2, 2, 1101, 1102, 7, 49, 2, 2, 1102, 1103, 3, 2, 2, 2, 1103, 1104, 8, 117, 8, 2, 1104, 236, 3, 2, 2, 2, 1105, 1106, 7, 48, 2, 2, 1106, 1107, 7, 100, 2, 2, 1107, 1108, 7, 123, 2, 2, 1108, 1109, 7, 118, 2, 2, 1109, 1110, 7, 103, 2, 2, 1110, 238, 3, 2, 2, 2, 1111, 1112, 7, 100, 2, 2, 1112, 1113, 7, 116, 2, 2, 1113, 1662, 7, 109, 2, 2, 1114, 1115, 7, 113, 2, 2, 1115, 1116, 7, 116, 2, 2, 1116, 1662, 7, 99, 2, 2, 1117, 1118, 7, 109, 2, 2, 1118, 1119, 7, 107, 2, 2, 1119, 1662, 7, 110, 2, 2, 1120, 1121, 7, 117, 2, 2, 1121, 1122, 7, 110, 2, 2, 1122, 1662, 7, 113, 2, 2, 1123, 1124, 7, 112, 2, 2, 1124, 1125, 7, 113, 2, 2, 1125, 1662, 7, 114, 2, 2, 1126, 1127, 7, 99, 2, 2, 1127, 1128, 7, 117, 2, 2, 1128, 1662, 7, 110, 2, 2, 1129, 1130, 7, 114, 2, 2, 1130, 1131, 7, 106, 2, 2, 1131, 1662, 7, 114, 2, 2, 1132, 1133, 7, 99, 2, 2, 1133, 1134, 7, 112, 2, 2, 1134, 1662, 7, 101, 2, 2, 1135, 1136, 7, 100, 2, 2, 1136, 1137, 7, 114, 2, 2, 1137, 1662, 7, 110, 2, 2, 1138, 1139, 7, 101, 2, 2, 1139, 1140, 7, 110, 2, 2, 1140, 1662, 7, 101, 2, 2, 1141, 1142, 7, 108, 2, 2, 1142, 1143, 7, 117, 2, 2, 1143, 1662, 7, 116, 2, 2, 1144, 1145, 7, 99, 2, 2, 1145, 1146, 7, 112, 2, 2, 1146, 1662, 7, 102, 2, 2, 1147, 1148, 7, 116, 2, 2, 1148, 1149, 7, 110, 2, 2, 1149, 1662, 7, 99, 2, 2, 1150, 1151, 7, 100, 2, 2, 1151, 1152, 7, 107, 2, 2, 1152, 1662, 7, 118, 2, 2, 1153, 1154, 7, 116, 2, 2, 1154, 1155, 7, 113, 2, 2, 1155, 1662, 7, 110, 2, 2, 1156, 1157, 7, 114, 2, 2, 1157, 1158, 7, 110, 2, 2, 1158, 1662, 7, 99, 2, 2, 1159, 1160, 7, 114, 2, 2, 1160, 1161, 7, 110, 2, 2, 1161, 1662, 7, 114, 2, 2, 1162, 1163, 7, 100, 2, 2, 1163, 1164, 7, 111, 2, 2, 1164, 1662, 7, 107, 2, 2, 1165, 1166, 7, 117, 2, 2, 1166, 1167, 7, 103, 2, 2, 1167, 1662, 7, 101, 2, 2, 1168, 1169, 7, 116, 2, 2, 1169, 1170, 7, 118, 2, 2, 1170, 1662, 7, 107, 2, 2, 1171, 1172, 7, 103, 2, 2, 1172, 1173, 7, 113, 2, 2, 1173, 1662, 7, 116, 2, 2, 1174, 1175, 7, 117, 2, 2, 1175, 1176, 7, 116, 2, 2, 1176, 1662, 7, 103, 2, 2, 1177, 1178, 7, 110, 2, 2, 1178, 1179, 7, 117, 2, 2, 1179, 1662, 7, 116, 2, 2, 1180, 1181, 7, 114, 2, 2, 1181, 1182, 7, 106, 2, 2, 1182, 1662, 7, 99, 2, 2, 1183, 1184, 7, 99, 2, 2, 1184, 1185, 7, 110, 2, 2, 1185, 1662, 7, 116, 2, 2, 1186, 1187, 7, 108, 2, 2, 1187, 1188, 7, 111, 2, 2, 1188, 1662, 7, 114, 2, 2, 1189, 1190, 7, 100, 2, 2, 1190, 1191, 7, 120, 2, 2, 1191, 1662, 7, 101, 2, 2, 1192, 1193, 7, 101, 2, 2, 1193, 1194, 7, 110, 2, 2, 1194, 1662, 7, 107, 2, 2, 1195, 1196, 7, 116, 2, 2, 1196, 1197, 7, 118, 2, 2, 1197, 1662, 7, 117, 2, 2, 1198, 1199, 7, 99, 2, 2, 1199, 1200, 7, 102, 2, 2, 1200, 1662, 7, 101, 2, 2, 1201, 1202, 7, 116, 2, 2, 1202, 1203, 7, 116, 2, 2, 1203, 1662, 7, 99, 2, 2, 1204, 1205, 7, 100, 2, 2, 1205, 1206, 7, 120, 2, 2, 1206, 1662, 7, 117, 2, 2, 1207, 1208, 7, 117, 2, 2, 1208, 1209, 7, 103, 2, 2, 1209, 1662, 7, 107, 2, 2, 1210, 1211, 7, 117, 2, 2, 1211, 1212, 7, 99, 2, 2, 1212, 1662, 7, 122, 2, 2, 1213, 1214, 7, 117, 2, 2, 1214, 1215, 7, 118, 2, 2, 1215, 1662, 7, 123, 2, 2, 1216, 1217, 7, 117, 2, 2, 1217, 1218, 7, 118, 2, 2, 1218, 1662, 7, 99, 2, 2, 1219, 1220, 7, 117, 2, 2, 1220, 1221, 7, 118, 2, 2, 1221, 1662, 7, 122, 2, 2, 1222, 1223, 7, 102, 2, 2, 1223, 1224, 7, 103, 2, 2, 1224, 1662, 7, 123, 2, 2, 1225, 1226, 7, 118, 2, 2, 1226, 1227, 7, 122, 2, 2, 1227, 1662, 7, 99, 2, 2, 1228, 1229, 7, 122, 2, 2, 1229, 1230, 7, 99, 2, 2, 1230, 1662, 7, 99, 2, 2, 1231, 1232, 7, 100, 2, 2, 1232, 1233, 7, 101, 2, 2, 1233, 1662, 7, 101, 2, 2, 1234, 1235, 7, 99, 2, 2, 1235, 1236, 7, 106, 2, 2, 1236, 1662, 7, 122, 2, 2, 1237, 1238, 7, 118, 2, 2, 1238, 1239, 7, 123, 2, 2, 1239, 1662, 7, 99, 2, 2, 1240, 1241, 7, 118, 2, 2, 1241, 1242, 7, 122, 2, 2, 1242, 1662, 7, 117, 2, 2, 1243, 1244, 7, 118, 2, 2, 1244, 1245, 7, 99, 2, 2, 1245, 1662, 7, 117, 2, 2, 1246, 1247, 7, 117, 2, 2, 1247, 1248, 7, 106, 2, 2, 1248, 1662, 7, 123, 2, 2, 1249, 1250, 7, 117, 2, 2, 1250, 1251, 7, 106, 2, 2, 1251, 1662, 7, 122, 2, 2, 1252, 1253, 7, 110, 2, 2, 1253, 1254, 7, 102, 2, 2, 1254, 1662, 7, 123, 2, 2, 1255, 1256, 7, 110, 2, 2, 1256, 1257, 7, 102, 2, 2, 1257, 1662, 7, 99, 2, 2, 1258, 1259, 7, 110, 2, 2, 1259, 1260, 7, 102, 2, 2, 1260, 1662, 7, 122, 2, 2, 1261, 1262, 7, 110, 2, 2, 1262, 1263, 7, 99, 2, 2, 1263, 1662, 7, 122, 2, 2, 1264, 1265, 7, 118, 2, 2, 1265, 1266, 7, 99, 2, 2, 1266, 1662, 7, 123, 2, 2, 1267, 1268, 7, 118, 2, 2, 1268, 1269, 7, 99, 2, 2, 1269, 1662, 7, 122, 2, 2, 1270, 1271, 7, 100, 2, 2, 1271, 1272, 7, 101, 2, 2, 1272, 1662, 7, 117, 2, 2, 1273, 1274, 7, 101, 2, 2, 1274, 1275, 7, 110, 2, 2, 1275, 1662, 7, 120, 2, 2, 1276, 1277, 7, 118, 2, 2, 1277, 1278, 7, 117, 2, 2, 1278, 1662, 7, 122, 2, 2, 1279, 1280, 7, 110, 2, 2, 1280, 1281, 7, 99, 2, 2, 1281, 1662, 7, 117, 2, 2, 1282, 1283, 7, 101, 2, 2, 1283, 1284, 7, 114, 2, 2, 1284, 1662, 7, 123, 2, 2, 1285, 1286, 7, 101, 2, 2, 1286, 1287, 7, 111, 2, 2, 1287, 1662, 7, 114, 2, 2, 1288, 1289, 7, 101, 2, 2, 1289, 1290, 7, 114, 2, 2, 1290, 1662, 7, 122, 2, 2, 1291, 1292, 7, 102, 2, 2, 1292, 1293, 7, 101, 2, 2, 1293, 1662, 7, 114, 2, 2, 1294, 1295, 7, 102, 2, 2, 1295, 1296, 7, 103, 2, 2, 1296, 1662, 7, 101, 2, 2, 1297, 1298, 7, 107, 2, 2, 1298, 1299, 7, 112, 2, 2, 1299, 1662, 7, 101, 2, 2, 1300, 1301, 7, 99, 2, 2, 1301, 1302, 7, 122, 2, 2, 1302, 1662, 7, 117, 2, 2, 1303, 1304, 7, 100, 2, 2, 1304, 1305, 7, 112, 2, 2, 1305, 1662, 7, 103, 2, 2, 1306, 1307, 7, 101, 2, 2, 1307, 1308, 7, 110, 2, 2, 1308, 1662, 7, 102, 2, 2, 1309, 1310, 7, 117, 2, 2, 1310, 1311, 7, 100, 2, 2, 1311, 1662, 7, 101, 2, 2, 1312, 1313, 7, 107, 2, 2, 1313, 1314, 7, 117, 2, 2, 1314, 1662, 7, 101, 2, 2, 1315, 1316, 7, 107, 2, 2, 1316, 1317, 7, 112, 2, 2, 1317, 1662, 7, 122, 2, 2, 1318, 1319, 7, 100, 2, 2, 1319, 1320, 7, 103, 2, 2, 1320, 1662, 7, 115, 2, 2, 1321, 1322, 7, 117, 2, 2, 1322, 1323, 7, 103, 2, 2, 1323, 1662, 7, 102, 2, 2, 1324, 1325, 7, 102, 2, 2, 1325, 1326, 7, 103, 2, 2, 1326, 1662, 7, 122, 2, 2, 1327, 1328, 7, 107, 2, 2, 1328, 1329, 7, 112, 2, 2, 1329, 1662, 7, 123, 2, 2, 1330, 1331, 7, 116, 2, 2, 1331, 1332, 7, 113, 2, 2, 1332, 1662, 7, 116, 2, 2, 1333, 1334, 7, 100, 2, 2, 1334, 1335, 7, 100, 2, 2, 1335, 1336, 7, 116, 2, 2, 1336, 1662, 7, 50, 2, 2, 1337, 1338, 7, 100, 2, 2, 1338, 1339, 7, 100, 2, 2, 1339, 1340, 7, 116, 2, 2, 1340, 1662, 7, 51, 2, 2, 1341, 1342, 7, 100, 2, 2, 1342, 1343, 7, 100, 2, 2, 1343, 1344, 7, 116, 2, 2, 1344, 1662, 7, 52, 2, 2, 1345, 1346, 7, 100, 2, 2, 1346, 1347, 7, 100, 2, 2, 1347, 1348, 7, 116, 2, 2, 1348, 1662, 7, 53, 2, 2, 1349, 1350, 7, 100, 2, 2, 1350, 1351, 7, 100, 2, 2, 1351, 1352, 7, 116, 2, 2, 1352, 1662, 7, 54, 2, 2, 1353, 1354, 7, 100, 2, 2, 1354, 1355, 7, 100, 2, 2, 1355, 1356, 7, 116, 2, 2, 1356, 1662, 7, 55, 2, 2, 1357, 1358, 7, 100, 2, 2, 1358, 1359, 7, 100, 2, 2, 1359, 1360, 7, 116, 2, 2, 1360, 1662, 7, 56, 2, 2, 1361, 1362, 7, 100, 2, 2, 1362, 1363, 7, 100, 2, 2, 1363, 1364, 7, 116, 2, 2, 1364, 1662, 7, 57, 2, 2, 1365, 1366, 7, 100, 2, 2, 1366, 1367, 7, 100, 2, 2, 1367, 1368, 7, 117, 2, 2, 1368, 1662, 7, 50, 2, 2, 1369, 1370, 7, 100, 2, 2, 1370, 1371, 7, 100, 2, 2, 1371, 1372, 7, 117, 2, 2, 1372, 1662, 7, 51, 2, 2, 1373, 1374, 7, 100, 2, 2, 1374, 1375, 7, 100, 2, 2, 1375, 1376, 7, 117, 2, 2, 1376, 1662, 7, 52, 2, 2, 1377, 1378, 7, 100, 2, 2, 1378, 1379, 7, 100, 2, 2, 1379, 1380, 7, 117, 2, 2, 1380, 1662, 7, 53, 2, 2, 1381, 1382, 7, 100, 2, 2, 1382, 1383, 7, 100, 2, 2, 1383, 1384, 7, 117, 2, 2, 1384, 1662, 7, 54, 2, 2, 1385, 1386, 7, 100, 2, 2, 1386, 1387, 7, 100, 2, 2, 1387, 1388, 7, 117, 2, 2, 1388, 1662, 7, 55, 2, 2, 1389, 1390, 7, 100, 2, 2, 1390, 1391, 7, 100, 2, 2, 1391, 1392, 7, 117, 2, 2, 1392, 1662, 7, 56, 2, 2, 1393, 1394, 7, 100, 2, 2, 1394, 1395, 7, 100, 2, 2, 1395, 1396, 7, 117, 2, 2, 1396, 1662, 7, 57, 2, 2, 1397, 1398, 7, 100, 2, 2, 1398, 1399, 7, 116, 2, 2, 1399, 1662, 7, 99, 2, 2, 1400, 1401, 7, 114, 2, 2, 1401, 1402, 7, 106, 2, 2, 1402, 1662, 7, 122, 2, 2, 1403, 1404, 7, 114, 2, 2, 1404, 1405, 7, 106, 2, 2, 1405, 1662, 7, 123, 2, 2, 1406, 1407, 7, 114, 2, 2, 1407, 1408, 7, 110, 2, 2, 1408, 1662, 7, 122, 2, 2, 1409, 1410, 7, 114, 2, 2, 1410, 1411, 7, 110, 2, 2, 1411, 1662, 7, 123, 2, 2, 1412, 1413, 7, 116, 2, 2, 1413, 1414, 7, 111, 2, 2, 1414, 1415, 7, 100, 2, 2, 1415, 1662, 7, 50, 2, 2, 1416, 1417, 7, 116, 2, 2, 1417, 1418, 7, 111, 2, 2, 1418, 1419, 7, 100, 2, 2, 1419, 1662, 7, 51, 2, 2, 1420, 1421, 7, 116, 2, 2, 1421, 1422, 7, 111, 2, 2, 1422, 1423, 7, 100, 2, 2, 1423, 1662, 7, 52, 2, 2, 1424, 1425, 7, 116, 2, 2, 1425, 1426, 7, 111, 2, 2, 1426, 1427, 7, 100, 2, 2, 1427, 1662, 7, 53, 2, 2, 1428, 1429, 7, 116, 2, 2, 1429, 1430, 7, 111, 2, 2, 1430, 1431, 7, 100, 2, 2, 1431, 1662, 7, 54, 2, 2, 1432, 1433, 7, 116, 2, 2, 1433, 1434, 7, 111, 2, 2, 1434, 1435, 7, 100, 2, 2, 1435, 1662, 7, 55, 2, 2, 1436, 1437, 7, 116, 2, 2, 1437, 1438, 7, 111, 2, 2, 1438, 1439, 7, 100, 2, 2, 1439, 1662, 7, 56, 2, 2, 1440, 1441, 7, 116, 2, 2, 1441, 1442, 7, 111, 2, 2, 1442, 1443, 7, 100, 2, 2, 1443, 1662, 7, 57, 2, 2, 1444, 1445, 7, 117, 2, 2, 1445, 1446, 7, 111, 2, 2, 1446, 1447, 7, 100, 2, 2, 1447, 1662, 7, 50, 2, 2, 1448, 1449, 7, 117, 2, 2, 1449, 1450, 7, 111, 2, 2, 1450, 1451, 7, 100, 2, 2, 1451, 1662, 7, 51, 2, 2, 1452, 1453, 7, 117, 2, 2, 1453, 1454, 7, 111, 2, 2, 1454, 1455, 7, 100, 2, 2, 1455, 1662, 7, 52, 2, 2, 1456, 1457, 7, 117, 2, 2, 1457, 1458, 7, 111, 2, 2, 1458, 1459, 7, 100, 2, 2, 1459, 1662, 7, 53, 2, 2, 1460, 1461, 7, 117, 2, 2, 1461, 1462, 7, 111, 2, 2, 1462, 1463, 7, 100, 2, 2, 1463, 1662, 7, 54, 2, 2, 1464, 1465, 7, 117, 2, 2, 1465, 1466, 7, 111, 2, 2, 1466, 1467, 7, 100, 2, 2, 1467, 1662, 7, 55, 2, 2, 1468, 1469, 7, 117, 2, 2, 1469, 1470, 7, 111, 2, 2, 1470, 1471, 7, 100, 2, 2, 1471, 1662, 7, 56, 2, 2, 1472, 1473, 7, 117, 2, 2, 1473, 1474, 7, 111, 2, 2, 1474, 1475, 7, 100, 2, 2, 1475, 1662, 7, 57, 2, 2, 1476, 1477, 7, 117, 2, 2, 1477, 1478, 7, 118, 2, 2, 1478, 1662, 7, 114, 2, 2, 1479, 1480, 7, 117, 2, 2, 1480, 1481, 7, 118, 2, 2, 1481, 1662, 7, 124, 2, 2, 1482, 1483, 7, 118, 2, 2, 1483, 1484, 7, 116, 2, 2, 1484, 1662, 7, 100, 2, 2, 1485, 1486, 7, 118, 2, 2, 1486, 1487, 7, 117, 2, 2, 1487, 1662, 7, 100, 2, 2, 1488, 1489, 7, 121, 2, 2, 1489, 1490, 7, 99, 2, 2, 1490, 1662, 7, 107, 2, 2, 1491, 1492, 7, 101, 2, 2, 1492, 1493, 7, 110, 2, 2, 1493, 1662, 7, 103, 2, 2, 1494, 1495, 7, 117, 2, 2, 1495, 1496, 7, 103, 2, 2, 1496, 1662, 7, 103, 2, 2, 1497, 1498, 7, 118, 2, 2, 1498, 1499, 7, 117, 2, 2, 1499, 1662, 7, 123, 2, 2, 1500, 1501, 7, 110, 2, 2, 1501, 1502, 7, 100, 2, 2, 1502, 1503, 7, 114, 2, 2, 1503, 1662, 7, 110, 2, 2, 1504, 1505, 7, 107, 2, 2, 1505, 1506, 7, 112, 2, 2, 1506, 1662, 7, 124, 2, 2, 1507, 1508, 7, 118, 2, 2, 1508, 1509, 7, 123, 2, 2, 1509, 1662, 7, 117, 2, 2, 1510, 1511, 7, 110, 2, 2, 1511, 1512, 7, 100, 2, 2, 1512, 1513, 7, 111, 2, 2, 1513, 1662, 7, 107, 2, 2, 1514, 1515, 7, 102, 2, 2, 1515, 1516, 7, 103, 2, 2, 1516, 1662, 7, 124, 2, 2, 1517, 1518, 7, 112, 2, 2, 1518, 1519, 7, 103, 2, 2, 1519, 1662, 7, 105, 2, 2, 1520, 1521, 7, 99, 2, 2, 1521, 1522, 7, 117, 2, 2, 1522, 1662, 7, 116, 2, 2, 1523, 1524, 7, 118, 2, 2, 1524, 1525, 7, 99, 2, 2, 1525, 1662, 7, 124, 2, 2, 1526, 1527, 7, 110, 2, 2, 1527, 1528, 7, 100, 2, 2, 1528, 1529, 7, 120, 2, 2, 1529, 1662, 7, 101, 2, 2, 1530, 1531, 7, 118, 2, 2, 1531, 1532, 7, 99, 2, 2, 1532, 1662, 7, 100, 2, 2, 1533, 1534, 7, 111, 2, 2, 1534, 1535, 7, 99, 2, 2, 1535, 1662, 7, 114, 2, 2, 1536, 1537, 7, 116, 2, 2, 1537, 1538, 7, 118, 2, 2, 1538, 1662, 7, 112, 2, 2, 1539, 1540, 7, 110, 2, 2, 1540, 1541, 7, 100, 2, 2, 1541, 1542, 7, 117, 2, 2, 1542, 1662, 7, 116, 2, 2, 1543, 1544, 7, 118, 2, 2, 1544, 1545, 7, 124, 2, 2, 1545, 1662, 7, 99, 2, 2, 1546, 1547, 7, 110, 2, 2, 1547, 1548, 7, 100, 2, 2, 1548, 1549, 7, 120, 2, 2, 1549, 1662, 7, 117, 2, 2, 1550, 1551, 7, 118, 2, 2, 1551, 1552, 7, 100, 2, 2, 1552, 1662, 7, 99, 2, 2, 1553, 1554, 7, 110, 2, 2, 1554, 1555, 7, 100, 2, 2, 1555, 1556, 7, 116, 2, 2, 1556, 1662, 7, 99, 2, 2, 1557, 1558, 7, 110, 2, 2, 1558, 1559, 7, 100, 2, 2, 1559, 1560, 7, 101, 2, 2, 1560, 1662, 7, 101, 2, 2, 1561, 1562, 7, 110, 2, 2, 1562, 1563, 7, 102, 2, 2, 1563, 1662, 7, 124, 2, 2, 1564, 1565, 7, 110, 2, 2, 1565, 1566, 7, 100, 2, 2, 1566, 1567, 7, 101, 2, 2, 1567, 1662, 7, 117, 2, 2, 1568, 1569, 7, 101, 2, 2, 1569, 1570, 7, 114, 2, 2, 1570, 1662, 7, 124, 2, 2, 1571, 1572, 7, 102, 2, 2, 1572, 1573, 7, 103, 2, 2, 1573, 1662, 7, 121, 2, 2, 1574, 1575, 7, 99, 2, 2, 1575, 1576, 7, 117, 2, 2, 1576, 1662, 7, 121, 2, 2, 1577, 1578, 7, 110, 2, 2, 1578, 1579, 7, 100, 2, 2, 1579, 1580, 7, 112, 2, 2, 1580, 1662, 7, 103, 2, 2, 1581, 1582, 7, 114, 2, 2, 1582, 1583, 7, 106, 2, 2, 1583, 1662, 7, 124, 2, 2, 1584, 1585, 7, 107, 2, 2, 1585, 1586, 7, 112, 2, 2, 1586, 1662, 7, 121, 2, 2, 1587, 1588, 7, 116, 2, 2, 1588, 1589, 7, 113, 2, 2, 1589, 1662, 7, 121, 2, 2, 1590, 1591, 7, 110, 2, 2, 1591, 1592, 7, 100, 2, 2, 1592, 1593, 7, 103, 2, 2, 1593, 1662, 7, 115, 2, 2, 1594, 1595, 7, 114, 2, 2, 1595, 1596, 7, 106, 2, 2, 1596, 1662, 7, 121, 2, 2, 1597, 1598, 7, 114, 2, 2, 1598, 1599, 7, 110, 2, 2, 1599, 1662, 7, 124, 2, 2, 1600, 1601, 7, 103, 2, 2, 1601, 1602, 7, 113, 2, 2, 1602, 1662, 7, 111, 2, 2, 1603, 1604, 7, 99, 2, 2, 1604, 1605, 7, 102, 2, 2, 1605, 1606, 7, 101, 2, 2, 1606, 1662, 7, 115, 2, 2, 1607, 1608, 7, 99, 2, 2, 1608, 1609, 7, 112, 2, 2, 1609, 1610, 7, 102, 2, 2, 1610, 1662, 7, 115, 2, 2, 1611, 1612, 7, 99, 2, 2, 1612, 1613, 7, 117, 2, 2, 1613, 1614, 7, 110, 2, 2, 1614, 1662, 7, 115, 2, 2, 1615, 1616, 7, 99, 2, 2, 1616, 1617, 7, 117, 2, 2, 1617, 1618, 7, 116, 2, 2, 1618, 1662, 7, 115, 2, 2, 1619, 1620, 7, 100, 2, 2, 1620, 1621, 7, 107, 2, 2, 1621, 1622, 7, 118, 2, 2, 1622, 1662, 7, 115, 2, 2, 1623, 1624, 7, 101, 2, 2, 1624, 1625, 7, 114, 2, 2, 1625, 1662, 7, 115, 2, 2, 1626, 1627, 7, 102, 2, 2, 1627, 1628, 7, 103, 2, 2, 1628, 1662, 7, 115, 2, 2, 1629, 1630, 7, 103, 2, 2, 1630, 1631, 7, 113, 2, 2, 1631, 1632, 7, 116, 2, 2, 1632, 1662, 7, 115, 2, 2, 1633, 1634, 7, 107, 2, 2, 1634, 1635, 7, 112, 2, 2, 1635, 1662, 7, 115, 2, 2, 1636, 1637, 7, 110, 2, 2, 1637, 1638, 7, 102, 2, 2, 1638, 1662, 7, 115, 2, 2, 1639, 1640, 7, 110, 2, 2, 1640, 1641, 7, 117, 2, 2, 1641, 1642, 7, 116, 2, 2, 1642, 1662, 7, 115, 2, 2, 1643, 1644, 7, 113, 2, 2, 1644, 1645, 7, 116, 2, 2, 1645, 1662, 7, 115, 2, 2, 1646, 1647, 7, 116, 2, 2, 1647, 1648, 7, 113, 2, 2, 1648, 1649, 7, 110, 2, 2, 1649, 1662, 7, 115, 2, 2, 1650, 1651, 7, 116, 2, 2, 1651, 1652, 7, 113, 2, 2, 1652, 1653, 7, 116, 2, 2, 1653, 1662, 7, 115, 2, 2, 1654, 1655, 7, 117, 2, 2, 1655, 1656, 7, 100, 2, 2, 1656, 1657, 7, 101, 2, 2, 1657, 1662, 7, 115, 2, 2, 1658, 1659, 7, 117, 2, 2, 1659, 1660, 7, 118, 2, 2, 1660, 1662, 7, 115, 2, 2, 1661, 1111, 3, 2, 2, 2, 1661, 1114, 3, 2, 2, 2, 1661, 1117, 3, 2, 2, 2, 1661, 1120, 3, 2, 2, 2, 1661, 1123, 3, 2, 2, 2, 1661, 1126, 3, 2, 2, 2, 1661, 1129, 3, 2, 2, 2, 1661, 1132, 3, 2, 2, 2, 1661, 1135, 3, 2, 2, 2, 1661, 1138, 3, 2, 2, 2, 1661, 1141, 3, 2, 2, 2, 1661, 1144, 3, 2, 2, 2, 1661, 1147, 3, 2, 2, 2, 1661, 1150, 3, 2, 2, 2, 1661, 1153, 3, 2, 2, 2, 1661, 1156, 3, 2, 2, 2, 1661, 1159, 3, 2, 2, 2, 1661, 1162, 3, 2, 2, 2, 1661, 1165, 3, 2, 2, 2, 1661, 1168, 3, 2, 2, 2, 1661, 1171, 3, 2, 2, 2, 1661, 1174, 3, 2, 2, 2, 1661, 1177, 3, 2, 2, 2, 1661, 1180, 3, 2, 2, 2, 1661, 1183, 3, 2, 2, 2, 1661, 1186, 3, 2, 2, 2, 1661, 1189, 3, 2, 2, 2, 1661, 1192, 3, 2, 2, 2, 1661, 1195, 3, 2, 2, 2, 1661, 1198, 3, 2, 2, 2, 1661, 1201, 3, 2, 2, 2, 1661, 1204, 3, 2, 2, 2, 1661, 1207, 3, 2, 2, 2, 1661, 1210, 3, 2, 2, 2, 1661, 1213, 3, 2, 2, 2, 1661, 1216, 3, 2, 2, 2, 1661, 1219, 3, 2, 2, 2, 1661, 1222, 3, 2, 2, 2, 1661, 1225, 3, 2, 2, 2, 1661, 1228, 3, 2, 2, 2, 1661, 1231, 3, 2, 2, 2, 1661, 1234, 3, 2, 2, 2, 1661, 1237, 3, 2, 2, 2, 1661, 1240, 3, 2, 2, 2, 1661, 1243, 3, 2, 2, 2, 1661, 1246, 3, 2, 2, 2, 1661, 1249, 3, 2, 2, 2, 1661, 1252, 3, 2, 2, 2, 1661, 1255, 3, 2, 2, 2, 1661, 1258, 3, 2, 2, 2, 1661, 1261, 3, 2, 2, 2, 1661, 1264, 3, 2, 2, 2, 1661, 1267, 3, 2, 2, 2, 1661, 1270, 3, 2, 2, 2, 1661, 1273, 3, 2, 2, 2, 1661, 1276, 3, 2, 2, 2, 1661, 1279, 3, 2, 2, 2, 1661, 1282, 3, 2, 2, 2, 1661, 1285, 3, 2, 2, 2, 1661, 1288, 3, 2, 2, 2, 1661, 1291, 3, 2, 2, 2, 1661, 1294, 3, 2, 2, 2, 1661, 1297, 3, 2, 2, 2, 1661, 1300, 3, 2, 2, 2, 1661, 1303, 3, 2, 2, 2, 1661, 1306, 3, 2, 2, 2, 1661, 1309, 3, 2, 2, 2, 1661, 1312, 3, 2, 2, 2, 1661, 1315, 3, 2, 2, 2, 1661, 1318, 3, 2, 2, 2, 1661, 1321, 3, 2, 2, 2, 1661, 1324, 3, 2, 2, 2, 1661, 1327, 3, 2, 2, 2, 1661, 1330, 3, 2, 2, 2, 1661, 1333, 3, 2, 2, 2, 1661, 1337, 3, 2, 2, 2, 1661, 1341, 3, 2, 2, 2, 1661, 1345, 3, 2, 2, 2, 1661, 1349, 3, 2, 2, 2, 1661, 1353, 3, 2, 2, 2, 1661, 1357, 3, 2, 2, 2, 1661, 1361, 3, 2, 2, 2, 1661, 1365, 3, 2, 2, 2, 1661, 1369, 3, 2, 2, 2, 1661, 1373, 3, 2, 2, 2, 1661, 1377, 3, 2, 2, 2, 1661, 1381, 3, 2, 2, 2, 1661, 1385, 3, 2, 2, 2, 1661, 1389, 3, 2, 2, 2, 1661, 1393, 3, 2, 2, 2, 1661, 1397, 3, 2, 2, 2, 1661, 1400, 3, 2, 2, 2, 1661, 1403, 3, 2, 2, 2, 1661, 1406, 3, 2, 2, 2, 1661, 1409, 3, 2, 2, 2, 1661, 1412, 3, 2, 2, 2, 1661, 1416, 3, 2, 2, 2, 1661, 1420, 3, 2, 2, 2, 1661, 1424, 3, 2, 2, 2, 1661, 1428, 3, 2, 2, 2, 1661, 1432, 3, 2, 2, 2, 1661, 1436, 3, 2, 2, 2, 1661, 1440, 3, 2, 2, 2, 1661, 1444, 3, 2, 2, 2, 1661, 1448, 3, 2, 2, 2, 1661, 1452, 3, 2, 2, 2, 1661, 1456, 3, 2, 2, 2, 1661, 1460, 3, 2, 2, 2, 1661, 1464, 3, 2, 2, 2, 1661, 1468, 3, 2, 2, 2, 1661, 1472, 3, 2, 2, 2, 1661, 1476, 3, 2, 2, 2, 1661, 1479, 3, 2, 2, 2, 1661, 1482, 3, 2, 2, 2, 1661, 1485, 3, 2, 2, 2, 1661, 1488, 3, 2, 2, 2, 1661, 1491, 3, 2, 2, 2, 1661, 1494, 3, 2, 2, 2, 1661, 1497, 3, 2, 2, 2, 1661, 1500, 3, 2, 2, 2, 1661, 1504, 3, 2, 2, 2, 1661, 1507, 3, 2, 2, 2, 1661, 1510, 3, 2, 2, 2, 1661, 1514, 3, 2, 2, 2, 1661, 1517, 3, 2, 2, 2, 1661, 1520, 3, 2, 2, 2, 1661, 1523, 3, 2, 2, 2, 1661, 1526, 3, 2, 2, 2, 1661, 1530, 3, 2, 2, 2, 1661, 1533, 3, 2, 2, 2, 1661, 1536, 3, 2, 2, 2, 1661, 1539, 3, 2, 2, 2, 1661, 1543, 3, 2, 2, 2, 1661, 1546, 3, 2, 2, 2, 1661, 1550, 3, 2, 2, 2, 1661, 1553, 3, 2, 2, 2, 1661, 1557, 3, 2, 2, 2, 1661, 1561, 3, 2, 2, 2, 1661, 1564, 3, 2, 2, 2, 1661, 1568, 3, 2, 2, 2, 1661, 1571, 3, 2, 2, 2, 1661, 1574, 3, 2, 2, 2, 1661, 1577, 3, 2, 2, 2, 1661, 1581, 3, 2, 2, 2, 1661, 1584, 3, 2, 2, 2, 1661, 1587, 3, 2, 2, 2, 1661, 1590, 3, 2, 2, 2, 1661, 1594, 3, 2, 2, 2, 1661, 1597, 3, 2, 2, 2, 1661, 1600, 3, 2, 2, 2, 1661, 1603, 3, 2, 2, 2, 1661, 1607, 3, 2, 2, 2, 1661, 1611, 3, 2, 2, 2, 1661, 1615, 3, 2, 2, 2, 1661, 1619, 3, 2, 2, 2, 1661, 1623, 3, 2, 2, 2, 1661, 1626, 3, 2, 2, 2, 1661, 1629, 3, 2, 2, 2, 1661, 1633, 3, 2, 2, 2, 1661, 1636, 3, 2, 2, 2, 1661, 1639, 3, 2, 2, 2, 1661, 1643, 3, 2, 2, 2, 1661, 1646, 3, 2, 2, 2, 1661, 1650, 3, 2, 2, 2, 1661, 1654, 3, 2, 2, 2, 1661, 1658, 3, 2, 2, 2, 1662, 240, 3, 2, 2, 2, 1663, 1664, 7, 37, 2, 2, 1664, 242, 3, 2, 2, 2, 1665, 1666, 7, 60, 2, 2, 1666, 244, 3, 2, 2, 2, 1667, 1668, 7, 46, 2, 2, 1668, 246, 3, 2, 2, 2, 1669, 1670, 7, 42, 2, 2, 1670, 248, 3, 2, 2, 2, 1671, 1672, 7, 43, 2, 2, 1672, 250, 3, 2, 2, 2, 1673, 1674, 7, 93, 2, 2, 1674, 252, 3, 2, 2, 2, 1675, 1676, 7, 95, 2, 2, 1676, 254, 3, 2, 2, 2, 1677, 1678, 7, 48, 2, 2, 1678, 256, 3, 2, 2, 2, 1679, 1680, 7, 62, 2, 2, 1680, 1681, 7, 62, 2, 2, 1681, 258, 3, 2, 2, 2, 1682, 1683, 7, 64, 2, 2, 1683, 1684, 7, 64, 2, 2, 1684, 260, 3, 2, 2, 2, 1685, 1686, 7, 45, 2, 2, 1686, 262, 3, 2, 2, 2, 1687, 1688, 7, 47, 2, 2, 1688, 264, 3, 2, 2, 2, 1689, 1690, 7, 62, 2, 2, 1690, 266, 3, 2, 2, 2, 1691, 1692, 7, 64, 2, 2, 1692, 268, 3, 2, 2, 2, 1693, 1694, 7, 44, 2, 2, 1694, 270, 3, 2, 2, 2, 1695, 1696, 7, 49, 2, 2, 1696, 272, 3, 2, 2, 2, 1697, 1698, 7, 125, 2, 2, 1698, 1699, 8, 136, 9, 2, 1699, 274, 3, 2, 2, 2, 1700, 1701, 7, 127, 2, 2, 1701, 1702, 8, 137, 10, 2, 1702, 276, 3, 2, 2, 2, 1703, 1706, 5, 279, 139, 2, 1704, 1706, 5, 287, 143, 2, 1705, 1703, 3, 2, 2, 2, 1705, 1704, 3, 2, 2, 2, 1706, 278, 3, 2, 2, 2, 1707, 1711, 5, 281, 140, 2, 1708, 1711, 5, 283, 141, 2, 1709, 1711, 5, 285, 142, 2, 1710, 1707, 3, 2, 2, 2, 1710, 1708, 3, 2, 2, 2, 1710, 1709, 3, 2, 2, 2, 1711, 280, 3, 2, 2, 2, 1712, 1716, 7, 39, 2, 2, 1713, 1715, 5, 295, 147, 2, 1714, 1713, 3, 2, 2, 2, 1715, 1718, 3, 2, 2, 2, 1716, 1714, 3, 2, 2, 2, 1716, 1717, 3, 2, 2, 2, 1717, 1719, 3, 2, 2, 2, 1718, 1716, 3, 2, 2, 2, 1719, 1721, 7, 48, 2, 2, 1720, 1722, 5, 295, 147, 2, 1721, 1720, 3, 2, 2, 2, 1722, 1723, 3, 2, 2, 2, 1723, 1721, 3, 2, 2, 2, 1723, 1724, 3, 2, 2, 2, 1724, 282, 3, 2, 2, 2, 1725, 1727, 5, 297, 148, 2, 1726, 1725, 3, 2, 2, 2, 1727, 1730, 3, 2, 2, 2, 1728, 1726, 3, 2, 2, 2, 1728, 1729, 3, 2, 2, 2, 1729, 1731, 3, 2, 2, 2, 1730, 1728, 3, 2, 2, 2, 1731, 1733, 7, 48, 2, 2, 1732, 1734, 5, 297, 148, 2, 1733, 1732, 3, 2, 2, 2, 1734, 1735, 3, 2, 2, 2, 1735, 1733, 3, 2, 2, 2, 1735, 1736, 3, 2, 2, 2, 1736, 284, 3, 2, 2, 2, 1737, 1741, 7, 38, 2, 2, 1738, 1740, 5, 299, 149, 2, 1739, 1738, 3, 2, 2, 2, 1740, 1743, 3, 2, 2, 2, 1741, 1739, 3, 2, 2, 2, 1741, 1742, 3, 2, 2, 2, 1742, 1744, 3, 2, 2, 2, 1743, 1741, 3, 2, 2, 2, 1744, 1746, 7, 48, 2, 2, 1745, 1747, 5, 299, 149, 2, 1746, 1745, 3, 2, 2, 2, 1747, 1748, 3, 2, 2, 2, 1748, 1746, 3, 2, 2, 2, 1748, 1749, 3, 2, 2, 2, 1749, 286, 3, 2, 2, 2, 1750, 1754, 5, 291, 145, 2, 1751, 1754, 5, 293, 146, 2, 1752, 1754, 5, 289, 144, 2, 1753, 1750, 3, 2, 2, 2, 1753, 1751, 3, 2, 2, 2, 1753, 1752, 3, 2, 2, 2, 1754, 288, 3, 2, 2, 2, 1755, 1757, 7, 39, 2, 2, 1756, 1758, 5, 295, 147, 2, 1757, 1756, 3, 2, 2, 2, 1758, 1759, 3, 2, 2, 2, 1759, 1757, 3, 2, 2, 2, 1759, 1760, 3, 2, 2, 2, 1760, 290, 3, 2, 2, 2, 1761, 1763, 5, 297, 148, 2, 1762, 1761, 3, 2, 2, 2, 1763, 1764, 3, 2, 2, 2, 1764, 1762, 3, 2, 2, 2, 1764, 1765, 3, 2, 2, 2, 1765, 292, 3, 2, 2, 2, 1766, 1768, 7, 38, 2, 2, 1767, 1769, 5, 299, 149, 2, 1768, 1767, 3, 2, 2, 2, 1769, 1770, 3, 2, 2, 2, 1770, 1768, 3, 2, 2, 2, 1770, 1771, 3, 2, 2, 2, 1771, 294, 3, 2, 2, 2, 1772, 1773, 9, 5, 2, 2, 1773, 296, 3, 2, 2, 2, 1774, 1775, 9, 6, 2, 2, 1775, 298, 3, 2, 2, 2, 1776, 1777, 9, 7, 2, 2, 1777, 300, 3, 2, 2, 2, 1778, 1782, 7, 41, 2, 2, 1779, 1780, 7, 94, 2, 2, 1780, 1783, 9, 14, 2, 2, 1781, 1783, 10, 16, 2, 2, 1782, 1779, 3, 2, 2, 2, 1782, 1781, 3, 2, 2, 2, 1783, 1784, 3, 2, 2, 2, 1784, 1785, 7, 41, 2, 2, 1785, 302, 3, 2, 2, 2, 1786, 1788, 5, 305, 152, 2, 1787, 1789, 9, 19, 2, 2, 1788, 1787, 3, 2, 2, 2, 1789, 1790, 3, 2, 2, 2, 1790, 1788, 3, 2, 2, 2, 1790, 1791, 3, 2, 2, 2, 1791, 304, 3, 2, 2, 2, 1792, 1796, 7, 35, 2, 2, 1793, 1795, 5, 311, 155, 2, 1794, 1793, 3, 2, 2, 2, 1795, 1798, 3, 2, 2, 2, 1796, 1794, 3, 2, 2, 2, 1796, 1797, 3, 2, 2, 2, 1797, 306, 3, 2, 2, 2, 1798, 1796, 3, 2, 2, 2, 1799, 1803, 5, 309, 154, 2, 1800, 1802, 5, 311, 155, 2, 1801, 1800, 3, 2, 2, 2, 1802, 1805, 3, 2, 2, 2, 1803, 1801, 3, 2, 2, 2, 1803, 1804, 3, 2, 2, 2, 1804, 308, 3, 2, 2, 2, 1805, 1803, 3, 2, 2, 2, 1806, 1807, 9, 8, 2, 2, 1807, 310, 3, 2, 2, 2, 1808, 1809, 9, 9, 2, 2, 1809, 312, 3, 2, 2, 2, 1810, 1812, 9, 17, 2, 2, 1811, 1810, 3, 2, 2, 2, 1812, 1813, 3, 2, 2, 2, 1813, 1811, 3, 2, 2, 2, 1813, 1814, 3, 2, 2, 2, 1814, 1815, 3, 2, 2, 2, 1815, 1816, 8, 156, 7, 2, 1816, 314, 3, 2, 2, 2, 1817, 1818, 7, 49, 2, 2, 1818, 1819, 7, 49, 2, 2, 1819, 1823, 3, 2, 2, 2, 1820, 1822, 10, 18, 2, 2, 1821, 1820, 3, 2, 2, 2, 1822, 1825, 3, 2, 2, 2, 1823, 1821, 3, 2, 2, 2, 1823, 1824, 3, 2, 2, 2, 1824, 1826, 3, 2, 2, 2, 1825, 1823, 3, 2, 2, 2, 1826, 1827, 8, 157, 8, 2, 1827, 316, 3, 2, 2, 2, 1828, 1829, 7, 49, 2, 2, 1829, 1830, 7, 44, 2, 2, 1830, 1834, 3, 2, 2, 2, 1831, 1833, 11, 2, 2, 2, 1832, 1831, 3, 2, 2, 2, 1833, 1836, 3, 2, 2, 2, 1834, 1835, 3, 2, 2, 2, 1834, 1832, 3, 2, 2, 2, 1835, 1837, 3, 2, 2, 2, 1836, 1834, 3, 2, 2, 2, 1837, 1838, 7, 44, 2, 2, 1838, 1839, 7, 49, 2, 2, 1839, 1840, 3, 2, 2, 2, 1840, 1841, 8, 158, 8, 2, 1841, 318, 3, 2, 2, 2, 1842, 1844, 7, 62, 2, 2, 1843, 1845, 9, 20, 2, 2, 1844, 1843, 3, 2, 2, 2, 1845, 1846, 3, 2, 2, 2, 1846, 1844, 3, 2, 2, 2, 1846, 1847, 3, 2, 2, 2, 1847, 1848, 3, 2, 2, 2, 1848, 1849, 7, 64, 2, 2, 1849, 1850, 8, 159, 11, 2, 1850, 320, 3, 2, 2, 2, 1851, 1857, 7, 36, 2, 2, 1852, 1853, 7, 94, 2, 2, 1853, 1856, 7, 36, 2, 2, 1854, 1856, 10, 10, 2, 2, 1855, 1852, 3, 2, 2, 2, 1855, 1854, 3, 2, 2, 2, 1856, 1859, 3, 2, 2, 2, 1857, 1855, 3, 2, 2, 2, 1857, 1858, 3, 2, 2, 2, 1858, 1860, 3, 2, 2, 2, 1859, 1857, 3, 2, 2, 2, 1860, 1861, 7, 36, 2, 2, 1861, 1862, 8, 160, 12, 2, 1862, 322, 3, 2, 2, 2, 1863, 1865, 9, 17, 2, 2, 1864, 1863, 3, 2, 2, 2, 1865, 1866, 3, 2, 2, 2, 1866, 1864, 3, 2, 2, 2, 1866, 1867, 3, 2, 2, 2, 1867, 1868, 3, 2, 2, 2, 1868, 1869, 8, 161, 7, 2, 1869, 324, 3, 2, 2, 2, 1870, 1871, 7, 49, 2, 2, 1871, 1872, 7, 49, 2, 2, 1872, 1876, 3, 2, 2, 2, 1873, 1875, 10, 18, 2, 2, 1874, 1873, 3, 2, 2, 2, 1875, 1878, 3, 2, 2, 2, 1876, 1874, 3, 2, 2, 2, 1876, 1877, 3, 2, 2, 2, 1877, 1879, 3, 2, 2, 2, 1878, 1876, 3, 2, 2, 2, 1879, 1880, 8, 162, 8, 2, 1880, 326, 3, 2, 2, 2, 1881, 1882, 7, 49, 2, 2, 1882, 1883, 7, 44, 2, 2, 1883, 1887, 3, 2, 2, 2, 1884, 1886, 11, 2, 2, 2, 1885, 1884, 3, 2, 2, 2, 1886, 1889, 3, 2, 2, 2, 1887, 1888, 3, 2, 2, 2, 1887, 1885, 3, 2, 2, 2, 1888, 1890, 3, 2, 2, 2, 1889, 1887, 3, 2, 2, 2, 1890, 1891, 7, 44, 2, 2, 1891, 1892, 7, 49, 2, 2, 1892, 1893, 3, 2, 2, 2, 1893, 1894, 8, 163, 8, 2, 1894, 328, 3, 2, 2, 2, 68, 2, 3, 4, 438, 593, 758, 797, 808, 816, 864, 920, 925, 932, 937, 944, 949, 956, 963, 968, 975, 980, 985, 992, 998, 1000, 1005, 1012, 1017, 1029, 1042, 1044, 1049, 1053, 1055, 1058, 1066, 1069, 1076, 1086, 1097, 1661, 1705, 1710, 1716, 1723, 1728, 1735, 1741, 1748, 1753, 1759, 1764, 1770, 1782, 1790, 1796, 1803, 1813, 1823, 1834, 1846, 1855, 1857, 1866, 1876, 1887, 13, 3, 2, 2, 3, 66, 3, 3, 85, 4, 3, 86, 5, 3, 110, 6, 2, 3, 2, 2, 4, 2, 3, 136, 7, 3, 137, 8, 3, 159, 9, 3, 160, 10] \ No newline at end of file diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java index 65c08da61..121ff6d48 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java @@ -25,31 +25,29 @@ public class KickCLexer extends Lexer { MODULO=20, INC=21, DEC=22, AND=23, BIT_NOT=24, BIT_XOR=25, BIT_OR=26, SHIFT_LEFT=27, SHIFT_RIGHT=28, EQUAL=29, NOT_EQUAL=30, LESS_THAN=31, LESS_THAN_EQUAL=32, GREATER_THAN_EQUAL=33, GREATER_THAN=34, LOGIC_AND=35, LOGIC_OR=36, ASSIGN=37, - ASSIGN_COMPOUND=38, TYPEDEF=39, RESERVE=40, PC=41, TARGET=42, LINK=43, - EXTENSION=44, EMULATOR=45, CPU=46, CODESEG=47, DATASEG=48, ENCODING=49, - CONST=50, EXTERN=51, EXPORT=52, ALIGN=53, INLINE=54, VOLATILE=55, STATIC=56, - INTERRUPT=57, REGISTER=58, LOCAL_RESERVE=59, ADDRESS=60, ADDRESS_ZEROPAGE=61, - ADDRESS_MAINMEM=62, FORM_SSA=63, FORM_MA=64, INTRINSIC=65, CALLING=66, - CALLINGCONVENTION=67, VARMODEL=68, CONSTRUCTORFOR=69, IF=70, ELSE=71, - WHILE=72, DO=73, FOR=74, SWITCH=75, RETURN=76, BREAK=77, CONTINUE=78, - ASM=79, DEFAULT=80, CASE=81, STRUCT=82, ENUM=83, SIZEOF=84, TYPEID=85, - DEFINED=86, KICKASM=87, RESOURCE=88, USES=89, CLOBBERS=90, BYTES=91, CYCLES=92, - LOGIC_NOT=93, SIGNEDNESS=94, SIMPLETYPE=95, BOOLEAN=96, KICKASM_BODY=97, - IMPORT=98, INCLUDE=99, PRAGMA=100, DEFINE=101, DEFINE_CONTINUE=102, UNDEF=103, - IFDEF=104, IFNDEF=105, IFIF=106, ELIF=107, IFELSE=108, ENDIF=109, ERROR=110, - NUMBER=111, NUMFLOAT=112, BINFLOAT=113, DECFLOAT=114, HEXFLOAT=115, NUMINT=116, - BININTEGER=117, DECINTEGER=118, HEXINTEGER=119, NAME=120, STRING=121, - CHAR=122, WS=123, COMMENT_LINE=124, COMMENT_BLOCK=125, ASM_BYTE=126, ASM_MNEMONIC=127, - ASM_IMM=128, ASM_COLON=129, ASM_COMMA=130, ASM_PAR_BEGIN=131, ASM_PAR_END=132, - ASM_BRACKET_BEGIN=133, ASM_BRACKET_END=134, ASM_DOT=135, ASM_SHIFT_LEFT=136, - ASM_SHIFT_RIGHT=137, ASM_PLUS=138, ASM_MINUS=139, ASM_LESS_THAN=140, ASM_GREATER_THAN=141, - ASM_MULTIPLY=142, ASM_DIVIDE=143, ASM_CURLY_BEGIN=144, ASM_CURLY_END=145, - ASM_NUMBER=146, ASM_NUMFLOAT=147, ASM_BINFLOAT=148, ASM_DECFLOAT=149, - ASM_HEXFLOAT=150, ASM_NUMINT=151, ASM_BININTEGER=152, ASM_DECINTEGER=153, - ASM_HEXINTEGER=154, ASM_CHAR=155, ASM_MULTI_REL=156, ASM_MULTI_NAME=157, - ASM_NAME=158, ASM_WS=159, ASM_COMMENT_LINE=160, ASM_COMMENT_BLOCK=161, - IMPORT_SYSTEMFILE=162, IMPORT_LOCALFILE=163, IMPORT_WS=164, IMPORT_COMMENT_LINE=165, - IMPORT_COMMENT_BLOCK=166; + ASSIGN_COMPOUND=38, TYPEDEF=39, CONST=40, EXTERN=41, EXPORT=42, ALIGN=43, + INLINE=44, VOLATILE=45, STATIC=46, INTERRUPT=47, REGISTER=48, LOCAL_RESERVE=49, + ADDRESS=50, ADDRESS_ZEROPAGE=51, ADDRESS_MAINMEM=52, FORM_SSA=53, FORM_MA=54, + INTRINSIC=55, CALLINGCONVENTION=56, IF=57, ELSE=58, WHILE=59, DO=60, FOR=61, + SWITCH=62, RETURN=63, BREAK=64, CONTINUE=65, ASM=66, DEFAULT=67, CASE=68, + STRUCT=69, ENUM=70, SIZEOF=71, TYPEID=72, DEFINED=73, KICKASM=74, RESOURCE=75, + USES=76, CLOBBERS=77, BYTES=78, CYCLES=79, LOGIC_NOT=80, SIGNEDNESS=81, + SIMPLETYPE=82, BOOLEAN=83, KICKASM_BODY=84, IMPORT=85, INCLUDE=86, PRAGMA=87, + DEFINE=88, DEFINE_CONTINUE=89, UNDEF=90, IFDEF=91, IFNDEF=92, IFIF=93, + ELIF=94, IFELSE=95, ENDIF=96, ERROR=97, NUMBER=98, NUMFLOAT=99, BINFLOAT=100, + DECFLOAT=101, HEXFLOAT=102, NUMINT=103, BININTEGER=104, DECINTEGER=105, + HEXINTEGER=106, NAME=107, STRING=108, CHAR=109, WS=110, COMMENT_LINE=111, + COMMENT_BLOCK=112, ASM_BYTE=113, ASM_MNEMONIC=114, ASM_IMM=115, ASM_COLON=116, + ASM_COMMA=117, ASM_PAR_BEGIN=118, ASM_PAR_END=119, ASM_BRACKET_BEGIN=120, + ASM_BRACKET_END=121, ASM_DOT=122, ASM_SHIFT_LEFT=123, ASM_SHIFT_RIGHT=124, + ASM_PLUS=125, ASM_MINUS=126, ASM_LESS_THAN=127, ASM_GREATER_THAN=128, + ASM_MULTIPLY=129, ASM_DIVIDE=130, ASM_CURLY_BEGIN=131, ASM_CURLY_END=132, + ASM_NUMBER=133, ASM_NUMFLOAT=134, ASM_BINFLOAT=135, ASM_DECFLOAT=136, + ASM_HEXFLOAT=137, ASM_NUMINT=138, ASM_BININTEGER=139, ASM_DECINTEGER=140, + ASM_HEXINTEGER=141, ASM_CHAR=142, ASM_MULTI_REL=143, ASM_MULTI_NAME=144, + ASM_NAME=145, ASM_WS=146, ASM_COMMENT_LINE=147, ASM_COMMENT_BLOCK=148, + IMPORT_SYSTEMFILE=149, IMPORT_LOCALFILE=150, IMPORT_WS=151, IMPORT_COMMENT_LINE=152, + IMPORT_COMMENT_BLOCK=153; public static final int ASM_MODE=1, IMPORT_MODE=2; public static String[] channelNames = { @@ -68,11 +66,9 @@ public class KickCLexer extends Lexer { "DEC", "AND", "BIT_NOT", "BIT_XOR", "BIT_OR", "SHIFT_LEFT", "SHIFT_RIGHT", "EQUAL", "NOT_EQUAL", "LESS_THAN", "LESS_THAN_EQUAL", "GREATER_THAN_EQUAL", "GREATER_THAN", "LOGIC_AND", "LOGIC_OR", "ASSIGN", "ASSIGN_COMPOUND", - "TYPEDEF", "RESERVE", "PC", "TARGET", "LINK", "EXTENSION", "EMULATOR", - "CPU", "CODESEG", "DATASEG", "ENCODING", "CONST", "EXTERN", "EXPORT", - "ALIGN", "INLINE", "VOLATILE", "STATIC", "INTERRUPT", "REGISTER", "LOCAL_RESERVE", - "ADDRESS", "ADDRESS_ZEROPAGE", "ADDRESS_MAINMEM", "FORM_SSA", "FORM_MA", - "INTRINSIC", "CALLING", "CALLINGCONVENTION", "VARMODEL", "CONSTRUCTORFOR", + "TYPEDEF", "CONST", "EXTERN", "EXPORT", "ALIGN", "INLINE", "VOLATILE", + "STATIC", "INTERRUPT", "REGISTER", "LOCAL_RESERVE", "ADDRESS", "ADDRESS_ZEROPAGE", + "ADDRESS_MAINMEM", "FORM_SSA", "FORM_MA", "INTRINSIC", "CALLINGCONVENTION", "IF", "ELSE", "WHILE", "DO", "FOR", "SWITCH", "RETURN", "BREAK", "CONTINUE", "ASM", "DEFAULT", "CASE", "STRUCT", "ENUM", "SIZEOF", "TYPEID", "DEFINED", "KICKASM", "RESOURCE", "USES", "CLOBBERS", "BYTES", "CYCLES", "LOGIC_NOT", @@ -101,12 +97,10 @@ public class KickCLexer extends Lexer { null, null, null, null, null, null, null, null, "';'", null, null, "'..'", "'...'", "'?'", null, "'->'", null, null, null, null, "'%'", "'++'", "'--'", "'&'", "'~'", "'^'", "'|'", null, null, "'=='", "'!='", null, - "'<='", "'>='", null, "'&&'", "'||'", "'='", null, "'typedef'", "'zp_reserve'", - "'pc'", "'target'", "'link'", "'extension'", "'emulator'", "'cpu'", "'code_seg'", - "'data_seg'", "'encoding'", "'const'", "'extern'", "'export'", "'align'", - "'inline'", "'volatile'", "'static'", "'interrupt'", "'register'", "'__zp_reserve'", - "'__address'", "'__zp'", "'__mem'", "'__ssa'", "'__ma'", "'__intrinsic'", - "'calling'", null, "'var_model'", "'constructor_for'", "'if'", "'else'", + "'<='", "'>='", null, "'&&'", "'||'", "'='", null, "'typedef'", "'const'", + "'extern'", "'export'", "'align'", "'inline'", "'volatile'", "'static'", + "'interrupt'", "'register'", "'__zp_reserve'", "'__address'", "'__zp'", + "'__mem'", "'__ssa'", "'__ma'", "'__intrinsic'", null, "'if'", "'else'", "'while'", "'do'", "'for'", "'switch'", "'return'", "'break'", "'continue'", "'asm'", "'default'", "'case'", "'struct'", "'enum'", "'sizeof'", "'typeid'", "'defined'", "'kickasm'", "'resource'", "'uses'", "'clobbers'", "'bytes'", @@ -126,11 +120,9 @@ public class KickCLexer extends Lexer { "INC", "DEC", "AND", "BIT_NOT", "BIT_XOR", "BIT_OR", "SHIFT_LEFT", "SHIFT_RIGHT", "EQUAL", "NOT_EQUAL", "LESS_THAN", "LESS_THAN_EQUAL", "GREATER_THAN_EQUAL", "GREATER_THAN", "LOGIC_AND", "LOGIC_OR", "ASSIGN", "ASSIGN_COMPOUND", - "TYPEDEF", "RESERVE", "PC", "TARGET", "LINK", "EXTENSION", "EMULATOR", - "CPU", "CODESEG", "DATASEG", "ENCODING", "CONST", "EXTERN", "EXPORT", - "ALIGN", "INLINE", "VOLATILE", "STATIC", "INTERRUPT", "REGISTER", "LOCAL_RESERVE", - "ADDRESS", "ADDRESS_ZEROPAGE", "ADDRESS_MAINMEM", "FORM_SSA", "FORM_MA", - "INTRINSIC", "CALLING", "CALLINGCONVENTION", "VARMODEL", "CONSTRUCTORFOR", + "TYPEDEF", "CONST", "EXTERN", "EXPORT", "ALIGN", "INLINE", "VOLATILE", + "STATIC", "INTERRUPT", "REGISTER", "LOCAL_RESERVE", "ADDRESS", "ADDRESS_ZEROPAGE", + "ADDRESS_MAINMEM", "FORM_SSA", "FORM_MA", "INTRINSIC", "CALLINGCONVENTION", "IF", "ELSE", "WHILE", "DO", "FOR", "SWITCH", "RETURN", "BREAK", "CONTINUE", "ASM", "DEFAULT", "CASE", "STRUCT", "ENUM", "SIZEOF", "TYPEID", "DEFINED", "KICKASM", "RESOURCE", "USES", "CLOBBERS", "BYTES", "CYCLES", "LOGIC_NOT", @@ -228,28 +220,28 @@ public class KickCLexer extends Lexer { case 0: CURLY_BEGIN_action((RuleContext)_localctx, actionIndex); break; - case 77: + case 64: ASM_action((RuleContext)_localctx, actionIndex); break; - case 96: + case 83: IMPORT_action((RuleContext)_localctx, actionIndex); break; - case 97: + case 84: INCLUDE_action((RuleContext)_localctx, actionIndex); break; - case 121: + case 108: NAME_action((RuleContext)_localctx, actionIndex); break; - case 147: + case 134: ASM_CURLY_BEGIN_action((RuleContext)_localctx, actionIndex); break; - case 148: + case 135: ASM_CURLY_END_action((RuleContext)_localctx, actionIndex); break; - case 170: + case 157: IMPORT_SYSTEMFILE_action((RuleContext)_localctx, actionIndex); break; - case 171: + case 158: IMPORT_LOCALFILE_action((RuleContext)_localctx, actionIndex); break; } @@ -319,7 +311,7 @@ public class KickCLexer extends Lexer { } public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\u00a8\u07ef\b\1\b"+ + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\u009b\u0767\b\1\b"+ "\1\b\1\4\2\t\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t"+ "\4\n\t\n\4\13\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21"+ "\t\21\4\22\t\22\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30"+ @@ -341,152 +333,103 @@ public class KickCLexer extends Lexer { "\t\u0096\4\u0097\t\u0097\4\u0098\t\u0098\4\u0099\t\u0099\4\u009a\t\u009a"+ "\4\u009b\t\u009b\4\u009c\t\u009c\4\u009d\t\u009d\4\u009e\t\u009e\4\u009f"+ "\t\u009f\4\u00a0\t\u00a0\4\u00a1\t\u00a1\4\u00a2\t\u00a2\4\u00a3\t\u00a3"+ - "\4\u00a4\t\u00a4\4\u00a5\t\u00a5\4\u00a6\t\u00a6\4\u00a7\t\u00a7\4\u00a8"+ - "\t\u00a8\4\u00a9\t\u00a9\4\u00aa\t\u00aa\4\u00ab\t\u00ab\4\u00ac\t\u00ac"+ - "\4\u00ad\t\u00ad\4\u00ae\t\u00ae\4\u00af\t\u00af\4\u00b0\t\u00b0\3\2\3"+ - "\2\3\2\3\3\3\3\3\4\3\4\3\5\3\5\3\6\3\6\3\7\3\7\3\b\3\b\3\t\3\t\3\n\3\n"+ - "\3\13\3\13\3\13\3\f\3\f\3\f\3\f\3\r\3\r\3\16\3\16\3\17\3\17\3\17\3\20"+ - "\3\20\3\21\3\21\3\22\3\22\3\23\3\23\3\24\3\24\3\25\3\25\3\25\3\26\3\26"+ - "\3\26\3\27\3\27\3\30\3\30\3\31\3\31\3\32\3\32\3\33\3\33\3\33\3\34\3\34"+ - "\3\34\3\35\3\35\3\35\3\36\3\36\3\36\3\37\3\37\3 \3 \3 \3!\3!\3!\3\"\3"+ - "\"\3#\3#\3#\3$\3$\3$\3%\3%\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3"+ - "&\3&\3&\3&\3&\3&\3&\3&\5&\u01d1\n&\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3("+ - "\3(\3(\3(\3(\3(\3(\3(\3(\3(\3(\3)\3)\3)\3*\3*\3*\3*\3*\3*\3*\3+\3+\3+"+ - "\3+\3+\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3-\3-\3-\3-\3-\3-\3-\3-\3-\3.\3."+ - "\3.\3.\3/\3/\3/\3/\3/\3/\3/\3/\3/\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3"+ - "\60\3\60\3\61\3\61\3\61\3\61\3\61\3\61\3\61\3\61\3\61\3\62\3\62\3\62\3"+ - "\62\3\62\3\62\3\63\3\63\3\63\3\63\3\63\3\63\3\63\3\64\3\64\3\64\3\64\3"+ - "\64\3\64\3\64\3\65\3\65\3\65\3\65\3\65\3\65\3\66\3\66\3\66\3\66\3\66\3"+ - "\66\3\66\3\67\3\67\3\67\3\67\3\67\3\67\3\67\3\67\3\67\38\38\38\38\38\3"+ - "8\38\39\39\39\39\39\39\39\39\39\39\3:\3:\3:\3:\3:\3:\3:\3:\3:\3;\3;\3"+ - ";\3;\3;\3;\3;\3;\3;\3;\3;\3;\3;\3<\3<\3<\3<\3<\3<\3<\3<\3<\3<\3=\3=\3"+ - "=\3=\3=\3>\3>\3>\3>\3>\3>\3?\3?\3?\3?\3?\3?\3@\3@\3@\3@\3@\3A\3A\3A\3"+ - "A\3A\3A\3A\3A\3A\3A\3A\3A\3B\3B\3B\3B\3B\3B\3B\3B\3C\3C\3C\3C\3C\3C\3"+ - "C\3C\3C\3C\3C\3C\3C\3C\3C\3C\3C\3C\3C\3C\5C\u02c0\nC\3D\3D\3D\3D\3D\3"+ - "D\3D\3D\3D\3D\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3F\3F\3"+ - "F\3G\3G\3G\3G\3G\3H\3H\3H\3H\3H\3H\3I\3I\3I\3J\3J\3J\3J\3K\3K\3K\3K\3"+ - "K\3K\3K\3L\3L\3L\3L\3L\3L\3L\3M\3M\3M\3M\3M\3M\3N\3N\3N\3N\3N\3N\3N\3"+ - "N\3N\3O\3O\3O\3O\3O\3O\3P\3P\3P\3P\3P\3P\3P\3P\3Q\3Q\3Q\3Q\3Q\3R\3R\3"+ - "R\3R\3R\3R\3R\3S\3S\3S\3S\3S\3T\3T\3T\3T\3T\3T\3T\3U\3U\3U\3U\3U\3U\3"+ - "U\3V\3V\3V\3V\3V\3V\3V\3V\3W\3W\3W\3W\3W\3W\3W\3W\3X\3X\3X\3X\3X\3X\3"+ - "X\3X\3X\3Y\3Y\3Y\3Y\3Y\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3[\3[\3[\3[\3[\3[\3"+ - "\\\3\\\3\\\3\\\3\\\3\\\3\\\3]\3]\3^\3^\3^\3^\3^\3^\3^\3^\3^\3^\3^\3^\3"+ - "^\3^\5^\u037f\n^\3_\3_\3_\3_\3_\3_\3_\3_\3_\3_\3_\3_\3_\3_\3_\3_\3_\3"+ - "_\3_\3_\3_\3_\3_\3_\3_\3_\3_\3_\3_\3_\3_\3_\3_\3_\3_\3_\3_\5_\u03a6\n"+ - "_\3`\3`\3`\3`\3`\3`\3`\3`\3`\5`\u03b1\n`\3a\3a\3a\3a\7a\u03b7\na\fa\16"+ - "a\u03ba\13a\3a\3a\3a\3b\3b\3b\3b\3b\3b\3b\3b\3b\3b\3c\3c\3c\3c\3c\3c\3"+ - "c\3c\3c\3c\3c\3d\3d\3d\3d\3d\3d\3d\3d\3e\3e\3e\3e\3e\3e\3e\3e\3f\3f\3"+ - "f\3f\3f\5f\u03e9\nf\3g\3g\3g\3g\3g\3g\3g\3h\3h\3h\3h\3h\3h\3h\3i\3i\3"+ - "i\3i\3i\3i\3i\3i\3j\3j\3j\3j\3k\3k\3k\3k\3k\3k\3l\3l\3l\3l\3l\3l\3m\3"+ - "m\3m\3m\3m\3m\3m\3n\3n\3n\3n\3n\3n\3n\3o\3o\5o\u0421\no\3p\3p\3p\5p\u0426"+ - "\np\3q\3q\3q\3q\3q\5q\u042d\nq\3q\7q\u0430\nq\fq\16q\u0433\13q\3q\3q\6"+ - "q\u0437\nq\rq\16q\u0438\3r\7r\u043c\nr\fr\16r\u043f\13r\3r\3r\6r\u0443"+ - "\nr\rr\16r\u0444\3s\3s\3s\3s\3s\5s\u044c\ns\3s\7s\u044f\ns\fs\16s\u0452"+ - "\13s\3s\3s\6s\u0456\ns\rs\16s\u0457\3t\3t\3t\5t\u045d\nt\3t\3t\3t\5t\u0462"+ - "\nt\3u\3u\3u\6u\u0467\nu\ru\16u\u0468\3u\3u\6u\u046d\nu\ru\16u\u046e\5"+ - "u\u0471\nu\3v\6v\u0474\nv\rv\16v\u0475\3w\3w\3w\3w\3w\5w\u047d\nw\3w\6"+ - "w\u0480\nw\rw\16w\u0481\3x\3x\3y\3y\3z\3z\3{\3{\7{\u048c\n{\f{\16{\u048f"+ - "\13{\3{\3{\3|\3|\3}\3}\3~\3~\3~\3~\7~\u049b\n~\f~\16~\u049e\13~\3~\3~"+ - "\5~\u04a2\n~\3~\3~\5~\u04a6\n~\5~\u04a8\n~\3~\5~\u04ab\n~\3\177\3\177"+ - "\3\177\3\177\3\177\3\177\5\177\u04b3\n\177\3\177\5\177\u04b6\n\177\3\177"+ - "\3\177\3\u0080\6\u0080\u04bb\n\u0080\r\u0080\16\u0080\u04bc\3\u0080\3"+ - "\u0080\3\u0081\3\u0081\3\u0081\3\u0081\7\u0081\u04c5\n\u0081\f\u0081\16"+ - "\u0081\u04c8\13\u0081\3\u0081\3\u0081\3\u0082\3\u0082\3\u0082\3\u0082"+ - "\7\u0082\u04d0\n\u0082\f\u0082\16\u0082\u04d3\13\u0082\3\u0082\3\u0082"+ - "\3\u0082\3\u0082\3\u0082\3\u0083\3\u0083\3\u0083\3\u0083\3\u0083\3\u0083"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084\3\u0084"+ - "\3\u0084\5\u0084\u0706\n\u0084\3\u0085\3\u0085\3\u0086\3\u0086\3\u0087"+ - "\3\u0087\3\u0088\3\u0088\3\u0089\3\u0089\3\u008a\3\u008a\3\u008b\3\u008b"+ - "\3\u008c\3\u008c\3\u008d\3\u008d\3\u008d\3\u008e\3\u008e\3\u008e\3\u008f"+ - "\3\u008f\3\u0090\3\u0090\3\u0091\3\u0091\3\u0092\3\u0092\3\u0093\3\u0093"+ - "\3\u0094\3\u0094\3\u0095\3\u0095\3\u0095\3\u0096\3\u0096\3\u0096\3\u0097"+ - "\3\u0097\5\u0097\u0732\n\u0097\3\u0098\3\u0098\3\u0098\5\u0098\u0737\n"+ - "\u0098\3\u0099\3\u0099\7\u0099\u073b\n\u0099\f\u0099\16\u0099\u073e\13"+ - "\u0099\3\u0099\3\u0099\6\u0099\u0742\n\u0099\r\u0099\16\u0099\u0743\3"+ - "\u009a\7\u009a\u0747\n\u009a\f\u009a\16\u009a\u074a\13\u009a\3\u009a\3"+ - "\u009a\6\u009a\u074e\n\u009a\r\u009a\16\u009a\u074f\3\u009b\3\u009b\7"+ - "\u009b\u0754\n\u009b\f\u009b\16\u009b\u0757\13\u009b\3\u009b\3\u009b\6"+ - "\u009b\u075b\n\u009b\r\u009b\16\u009b\u075c\3\u009c\3\u009c\3\u009c\5"+ - "\u009c\u0762\n\u009c\3\u009d\3\u009d\6\u009d\u0766\n\u009d\r\u009d\16"+ - "\u009d\u0767\3\u009e\6\u009e\u076b\n\u009e\r\u009e\16\u009e\u076c\3\u009f"+ - "\3\u009f\6\u009f\u0771\n\u009f\r\u009f\16\u009f\u0772\3\u00a0\3\u00a0"+ - "\3\u00a1\3\u00a1\3\u00a2\3\u00a2\3\u00a3\3\u00a3\3\u00a3\3\u00a3\5\u00a3"+ - "\u077f\n\u00a3\3\u00a3\3\u00a3\3\u00a4\3\u00a4\6\u00a4\u0785\n\u00a4\r"+ - "\u00a4\16\u00a4\u0786\3\u00a5\3\u00a5\7\u00a5\u078b\n\u00a5\f\u00a5\16"+ - "\u00a5\u078e\13\u00a5\3\u00a6\3\u00a6\7\u00a6\u0792\n\u00a6\f\u00a6\16"+ - "\u00a6\u0795\13\u00a6\3\u00a7\3\u00a7\3\u00a8\3\u00a8\3\u00a9\6\u00a9"+ - "\u079c\n\u00a9\r\u00a9\16\u00a9\u079d\3\u00a9\3\u00a9\3\u00aa\3\u00aa"+ - "\3\u00aa\3\u00aa\7\u00aa\u07a6\n\u00aa\f\u00aa\16\u00aa\u07a9\13\u00aa"+ - "\3\u00aa\3\u00aa\3\u00ab\3\u00ab\3\u00ab\3\u00ab\7\u00ab\u07b1\n\u00ab"+ - "\f\u00ab\16\u00ab\u07b4\13\u00ab\3\u00ab\3\u00ab\3\u00ab\3\u00ab\3\u00ab"+ - "\3\u00ac\3\u00ac\6\u00ac\u07bd\n\u00ac\r\u00ac\16\u00ac\u07be\3\u00ac"+ - "\3\u00ac\3\u00ac\3\u00ad\3\u00ad\3\u00ad\3\u00ad\7\u00ad\u07c8\n\u00ad"+ - "\f\u00ad\16\u00ad\u07cb\13\u00ad\3\u00ad\3\u00ad\3\u00ad\3\u00ae\6\u00ae"+ - "\u07d1\n\u00ae\r\u00ae\16\u00ae\u07d2\3\u00ae\3\u00ae\3\u00af\3\u00af"+ - "\3\u00af\3\u00af\7\u00af\u07db\n\u00af\f\u00af\16\u00af\u07de\13\u00af"+ - "\3\u00af\3\u00af\3\u00b0\3\u00b0\3\u00b0\3\u00b0\7\u00b0\u07e6\n\u00b0"+ - "\f\u00b0\16\u00b0\u07e9\13\u00b0\3\u00b0\3\u00b0\3\u00b0\3\u00b0\3\u00b0"+ - "\6\u03b8\u04d1\u07b2\u07e7\2\u00b1\5\4\7\5\t\6\13\7\r\b\17\t\21\n\23\13"+ + "\3\2\3\2\3\2\3\3\3\3\3\4\3\4\3\5\3\5\3\6\3\6\3\7\3\7\3\b\3\b\3\t\3\t\3"+ + "\n\3\n\3\13\3\13\3\13\3\f\3\f\3\f\3\f\3\r\3\r\3\16\3\16\3\17\3\17\3\17"+ + "\3\20\3\20\3\21\3\21\3\22\3\22\3\23\3\23\3\24\3\24\3\25\3\25\3\25\3\26"+ + "\3\26\3\26\3\27\3\27\3\30\3\30\3\31\3\31\3\32\3\32\3\33\3\33\3\33\3\34"+ + "\3\34\3\34\3\35\3\35\3\35\3\36\3\36\3\36\3\37\3\37\3 \3 \3 \3!\3!\3!\3"+ + "\"\3\"\3#\3#\3#\3$\3$\3$\3%\3%\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&"+ + "\3&\3&\3&\3&\3&\3&\3&\3&\3&\5&\u01b7\n&\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3"+ + "\'\3(\3(\3(\3(\3(\3(\3)\3)\3)\3)\3)\3)\3)\3*\3*\3*\3*\3*\3*\3*\3+\3+\3"+ + "+\3+\3+\3+\3,\3,\3,\3,\3,\3,\3,\3-\3-\3-\3-\3-\3-\3-\3-\3-\3.\3.\3.\3"+ + ".\3.\3.\3.\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3\60\3\60\3\60\3\60\3\60\3\60"+ + "\3\60\3\60\3\60\3\61\3\61\3\61\3\61\3\61\3\61\3\61\3\61\3\61\3\61\3\61"+ + "\3\61\3\61\3\62\3\62\3\62\3\62\3\62\3\62\3\62\3\62\3\62\3\62\3\63\3\63"+ + "\3\63\3\63\3\63\3\64\3\64\3\64\3\64\3\64\3\64\3\65\3\65\3\65\3\65\3\65"+ + "\3\65\3\66\3\66\3\66\3\66\3\66\3\67\3\67\3\67\3\67\3\67\3\67\3\67\3\67"+ + "\3\67\3\67\3\67\3\67\38\38\38\38\38\38\38\38\38\38\38\38\38\38\38\38\3"+ + "8\38\38\38\58\u0252\n8\39\39\39\3:\3:\3:\3:\3:\3;\3;\3;\3;\3;\3;\3<\3"+ + "<\3<\3=\3=\3=\3=\3>\3>\3>\3>\3>\3>\3>\3?\3?\3?\3?\3?\3?\3?\3@\3@\3@\3"+ + "@\3@\3@\3A\3A\3A\3A\3A\3A\3A\3A\3A\3B\3B\3B\3B\3B\3B\3C\3C\3C\3C\3C\3"+ + "C\3C\3C\3D\3D\3D\3D\3D\3E\3E\3E\3E\3E\3E\3E\3F\3F\3F\3F\3F\3G\3G\3G\3"+ + "G\3G\3G\3G\3H\3H\3H\3H\3H\3H\3H\3I\3I\3I\3I\3I\3I\3I\3I\3J\3J\3J\3J\3"+ + "J\3J\3J\3J\3K\3K\3K\3K\3K\3K\3K\3K\3K\3L\3L\3L\3L\3L\3M\3M\3M\3M\3M\3"+ + "M\3M\3M\3M\3N\3N\3N\3N\3N\3N\3O\3O\3O\3O\3O\3O\3O\3P\3P\3Q\3Q\3Q\3Q\3"+ + "Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3Q\5Q\u02f7\nQ\3R\3R\3R\3R\3R\3R\3R\3R\3R\3"+ + "R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3R\3"+ + "R\3R\3R\3R\3R\5R\u031e\nR\3S\3S\3S\3S\3S\3S\3S\3S\3S\5S\u0329\nS\3T\3"+ + "T\3T\3T\7T\u032f\nT\fT\16T\u0332\13T\3T\3T\3T\3U\3U\3U\3U\3U\3U\3U\3U"+ + "\3U\3U\3V\3V\3V\3V\3V\3V\3V\3V\3V\3V\3V\3W\3W\3W\3W\3W\3W\3W\3W\3X\3X"+ + "\3X\3X\3X\3X\3X\3X\3Y\3Y\3Y\3Y\3Y\5Y\u0361\nY\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3["+ + "\3[\3[\3[\3[\3[\3[\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3]\3]\3]\3]\3^\3^\3"+ + "^\3^\3^\3^\3_\3_\3_\3_\3_\3_\3`\3`\3`\3`\3`\3`\3`\3a\3a\3a\3a\3a\3a\3"+ + "a\3b\3b\5b\u0399\nb\3c\3c\3c\5c\u039e\nc\3d\3d\3d\3d\3d\5d\u03a5\nd\3"+ + "d\7d\u03a8\nd\fd\16d\u03ab\13d\3d\3d\6d\u03af\nd\rd\16d\u03b0\3e\7e\u03b4"+ + "\ne\fe\16e\u03b7\13e\3e\3e\6e\u03bb\ne\re\16e\u03bc\3f\3f\3f\3f\3f\5f"+ + "\u03c4\nf\3f\7f\u03c7\nf\ff\16f\u03ca\13f\3f\3f\6f\u03ce\nf\rf\16f\u03cf"+ + "\3g\3g\3g\5g\u03d5\ng\3g\3g\3g\5g\u03da\ng\3h\3h\3h\6h\u03df\nh\rh\16"+ + "h\u03e0\3h\3h\6h\u03e5\nh\rh\16h\u03e6\5h\u03e9\nh\3i\6i\u03ec\ni\ri\16"+ + "i\u03ed\3j\3j\3j\3j\3j\5j\u03f5\nj\3j\6j\u03f8\nj\rj\16j\u03f9\3k\3k\3"+ + "l\3l\3m\3m\3n\3n\7n\u0404\nn\fn\16n\u0407\13n\3n\3n\3o\3o\3p\3p\3q\3q"+ + "\3q\3q\7q\u0413\nq\fq\16q\u0416\13q\3q\3q\5q\u041a\nq\3q\3q\5q\u041e\n"+ + "q\5q\u0420\nq\3q\5q\u0423\nq\3r\3r\3r\3r\3r\3r\5r\u042b\nr\3r\5r\u042e"+ + "\nr\3r\3r\3s\6s\u0433\ns\rs\16s\u0434\3s\3s\3t\3t\3t\3t\7t\u043d\nt\f"+ + "t\16t\u0440\13t\3t\3t\3u\3u\3u\3u\7u\u0448\nu\fu\16u\u044b\13u\3u\3u\3"+ + "u\3u\3u\3v\3v\3v\3v\3v\3v\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3"+ + "w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3"+ + "w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3"+ + "w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3"+ + "w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3"+ + "w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3"+ + "w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3"+ + "w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3"+ + "w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3"+ + "w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3"+ + "w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3"+ + "w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3"+ + "w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3"+ + "w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3"+ + "w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3"+ + "w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3"+ + "w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3"+ + "w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3"+ + "w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3"+ + "w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3"+ + "w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3"+ + "w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3"+ + "w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3"+ + "w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3w\3"+ + "w\3w\3w\3w\3w\3w\3w\5w\u067e\nw\3x\3x\3y\3y\3z\3z\3{\3{\3|\3|\3}\3}\3"+ + "~\3~\3\177\3\177\3\u0080\3\u0080\3\u0080\3\u0081\3\u0081\3\u0081\3\u0082"+ + "\3\u0082\3\u0083\3\u0083\3\u0084\3\u0084\3\u0085\3\u0085\3\u0086\3\u0086"+ + "\3\u0087\3\u0087\3\u0088\3\u0088\3\u0088\3\u0089\3\u0089\3\u0089\3\u008a"+ + "\3\u008a\5\u008a\u06aa\n\u008a\3\u008b\3\u008b\3\u008b\5\u008b\u06af\n"+ + "\u008b\3\u008c\3\u008c\7\u008c\u06b3\n\u008c\f\u008c\16\u008c\u06b6\13"+ + "\u008c\3\u008c\3\u008c\6\u008c\u06ba\n\u008c\r\u008c\16\u008c\u06bb\3"+ + "\u008d\7\u008d\u06bf\n\u008d\f\u008d\16\u008d\u06c2\13\u008d\3\u008d\3"+ + "\u008d\6\u008d\u06c6\n\u008d\r\u008d\16\u008d\u06c7\3\u008e\3\u008e\7"+ + "\u008e\u06cc\n\u008e\f\u008e\16\u008e\u06cf\13\u008e\3\u008e\3\u008e\6"+ + "\u008e\u06d3\n\u008e\r\u008e\16\u008e\u06d4\3\u008f\3\u008f\3\u008f\5"+ + "\u008f\u06da\n\u008f\3\u0090\3\u0090\6\u0090\u06de\n\u0090\r\u0090\16"+ + "\u0090\u06df\3\u0091\6\u0091\u06e3\n\u0091\r\u0091\16\u0091\u06e4\3\u0092"+ + "\3\u0092\6\u0092\u06e9\n\u0092\r\u0092\16\u0092\u06ea\3\u0093\3\u0093"+ + "\3\u0094\3\u0094\3\u0095\3\u0095\3\u0096\3\u0096\3\u0096\3\u0096\5\u0096"+ + "\u06f7\n\u0096\3\u0096\3\u0096\3\u0097\3\u0097\6\u0097\u06fd\n\u0097\r"+ + "\u0097\16\u0097\u06fe\3\u0098\3\u0098\7\u0098\u0703\n\u0098\f\u0098\16"+ + "\u0098\u0706\13\u0098\3\u0099\3\u0099\7\u0099\u070a\n\u0099\f\u0099\16"+ + "\u0099\u070d\13\u0099\3\u009a\3\u009a\3\u009b\3\u009b\3\u009c\6\u009c"+ + "\u0714\n\u009c\r\u009c\16\u009c\u0715\3\u009c\3\u009c\3\u009d\3\u009d"+ + "\3\u009d\3\u009d\7\u009d\u071e\n\u009d\f\u009d\16\u009d\u0721\13\u009d"+ + "\3\u009d\3\u009d\3\u009e\3\u009e\3\u009e\3\u009e\7\u009e\u0729\n\u009e"+ + "\f\u009e\16\u009e\u072c\13\u009e\3\u009e\3\u009e\3\u009e\3\u009e\3\u009e"+ + "\3\u009f\3\u009f\6\u009f\u0735\n\u009f\r\u009f\16\u009f\u0736\3\u009f"+ + "\3\u009f\3\u009f\3\u00a0\3\u00a0\3\u00a0\3\u00a0\7\u00a0\u0740\n\u00a0"+ + "\f\u00a0\16\u00a0\u0743\13\u00a0\3\u00a0\3\u00a0\3\u00a0\3\u00a1\6\u00a1"+ + "\u0749\n\u00a1\r\u00a1\16\u00a1\u074a\3\u00a1\3\u00a1\3\u00a2\3\u00a2"+ + "\3\u00a2\3\u00a2\7\u00a2\u0753\n\u00a2\f\u00a2\16\u00a2\u0756\13\u00a2"+ + "\3\u00a2\3\u00a2\3\u00a3\3\u00a3\3\u00a3\3\u00a3\7\u00a3\u075e\n\u00a3"+ + "\f\u00a3\16\u00a3\u0761\13\u00a3\3\u00a3\3\u00a3\3\u00a3\3\u00a3\3\u00a3"+ + "\6\u0330\u0449\u072a\u075f\2\u00a4\5\4\7\5\t\6\13\7\r\b\17\t\21\n\23\13"+ "\25\f\27\r\31\16\33\17\35\20\37\21!\22#\23%\24\'\25)\26+\27-\30/\31\61"+ "\32\63\33\65\34\67\359\36;\37= ?!A\"C#E$G%I&K\'M(O)Q*S+U,W-Y.[/]\60_\61"+ "a\62c\63e\64g\65i\66k\67m8o9q:s;u{?}@\177A\u0081B\u0083C\u0085D\u0087"+ @@ -494,637 +437,598 @@ public class KickCLexer extends Lexer { "O\u009dP\u009fQ\u00a1R\u00a3S\u00a5T\u00a7U\u00a9V\u00abW\u00adX\u00af"+ "Y\u00b1Z\u00b3[\u00b5\\\u00b7]\u00b9^\u00bb_\u00bd`\u00bfa\u00c1b\u00c3"+ "c\u00c5d\u00c7e\u00c9f\u00cbg\u00cdh\u00cfi\u00d1j\u00d3k\u00d5l\u00d7"+ - "m\u00d9n\u00dbo\u00ddp\u00dfq\u00e1r\u00e3s\u00e5t\u00e7u\u00e9v\u00eb"+ - "w\u00edx\u00efy\u00f1\2\u00f3\2\u00f5\2\u00f7z\u00f9\2\u00fb\2\u00fd{"+ - "\u00ff|\u0101}\u0103~\u0105\177\u0107\u0080\u0109\u0081\u010b\u0082\u010d"+ + "\2\u00d9\2\u00db\2\u00ddm\u00df\2\u00e1\2\u00e3n\u00e5o\u00e7p\u00e9q"+ + "\u00ebr\u00eds\u00eft\u00f1u\u00f3v\u00f5w\u00f7x\u00f9y\u00fbz\u00fd"+ + "{\u00ff|\u0101}\u0103~\u0105\177\u0107\u0080\u0109\u0081\u010b\u0082\u010d"+ "\u0083\u010f\u0084\u0111\u0085\u0113\u0086\u0115\u0087\u0117\u0088\u0119"+ "\u0089\u011b\u008a\u011d\u008b\u011f\u008c\u0121\u008d\u0123\u008e\u0125"+ - "\u008f\u0127\u0090\u0129\u0091\u012b\u0092\u012d\u0093\u012f\u0094\u0131"+ - "\u0095\u0133\u0096\u0135\u0097\u0137\u0098\u0139\u0099\u013b\u009a\u013d"+ - "\u009b\u013f\u009c\u0141\2\u0143\2\u0145\2\u0147\u009d\u0149\u009e\u014b"+ - "\u009f\u014d\u00a0\u014f\2\u0151\2\u0153\u00a1\u0155\u00a2\u0157\u00a3"+ - "\u0159\u00a4\u015b\u00a5\u015d\u00a6\u015f\u00a7\u0161\u00a8\5\2\3\4\25"+ - "\4\2uuww\7\2dfkknnuuyy\4\2DDdd\3\2\62\63\3\2\62;\5\2\62;CHch\5\2C\\aa"+ - "c|\6\2\62;C\\aac|\3\2$$\3\2||\4\2rruu\4\2ooww\7\2$$))hhpptt\4\2\62;ch"+ - "\3\2))\6\2\13\f\17\17\"\"\u00a2\u00a2\4\2\f\f\17\17\4\2--//\7\2/;C\\^"+ - "^aac|\2\u08dc\2\5\3\2\2\2\2\7\3\2\2\2\2\t\3\2\2\2\2\13\3\2\2\2\2\r\3\2"+ - "\2\2\2\17\3\2\2\2\2\21\3\2\2\2\2\23\3\2\2\2\2\25\3\2\2\2\2\27\3\2\2\2"+ - "\2\31\3\2\2\2\2\33\3\2\2\2\2\35\3\2\2\2\2\37\3\2\2\2\2!\3\2\2\2\2#\3\2"+ - "\2\2\2%\3\2\2\2\2\'\3\2\2\2\2)\3\2\2\2\2+\3\2\2\2\2-\3\2\2\2\2/\3\2\2"+ - "\2\2\61\3\2\2\2\2\63\3\2\2\2\2\65\3\2\2\2\2\67\3\2\2\2\29\3\2\2\2\2;\3"+ - "\2\2\2\2=\3\2\2\2\2?\3\2\2\2\2A\3\2\2\2\2C\3\2\2\2\2E\3\2\2\2\2G\3\2\2"+ - "\2\2I\3\2\2\2\2K\3\2\2\2\2M\3\2\2\2\2O\3\2\2\2\2Q\3\2\2\2\2S\3\2\2\2\2"+ - "U\3\2\2\2\2W\3\2\2\2\2Y\3\2\2\2\2[\3\2\2\2\2]\3\2\2\2\2_\3\2\2\2\2a\3"+ - "\2\2\2\2c\3\2\2\2\2e\3\2\2\2\2g\3\2\2\2\2i\3\2\2\2\2k\3\2\2\2\2m\3\2\2"+ - "\2\2o\3\2\2\2\2q\3\2\2\2\2s\3\2\2\2\2u\3\2\2\2\2w\3\2\2\2\2y\3\2\2\2\2"+ - "{\3\2\2\2\2}\3\2\2\2\2\177\3\2\2\2\2\u0081\3\2\2\2\2\u0083\3\2\2\2\2\u0085"+ - "\3\2\2\2\2\u0087\3\2\2\2\2\u0089\3\2\2\2\2\u008b\3\2\2\2\2\u008d\3\2\2"+ - "\2\2\u008f\3\2\2\2\2\u0091\3\2\2\2\2\u0093\3\2\2\2\2\u0095\3\2\2\2\2\u0097"+ - "\3\2\2\2\2\u0099\3\2\2\2\2\u009b\3\2\2\2\2\u009d\3\2\2\2\2\u009f\3\2\2"+ - "\2\2\u00a1\3\2\2\2\2\u00a3\3\2\2\2\2\u00a5\3\2\2\2\2\u00a7\3\2\2\2\2\u00a9"+ - "\3\2\2\2\2\u00ab\3\2\2\2\2\u00ad\3\2\2\2\2\u00af\3\2\2\2\2\u00b1\3\2\2"+ - "\2\2\u00b3\3\2\2\2\2\u00b5\3\2\2\2\2\u00b7\3\2\2\2\2\u00b9\3\2\2\2\2\u00bb"+ - "\3\2\2\2\2\u00bd\3\2\2\2\2\u00bf\3\2\2\2\2\u00c1\3\2\2\2\2\u00c3\3\2\2"+ - "\2\2\u00c5\3\2\2\2\2\u00c7\3\2\2\2\2\u00c9\3\2\2\2\2\u00cb\3\2\2\2\2\u00cd"+ - "\3\2\2\2\2\u00cf\3\2\2\2\2\u00d1\3\2\2\2\2\u00d3\3\2\2\2\2\u00d5\3\2\2"+ - "\2\2\u00d7\3\2\2\2\2\u00d9\3\2\2\2\2\u00db\3\2\2\2\2\u00dd\3\2\2\2\2\u00df"+ - "\3\2\2\2\2\u00e1\3\2\2\2\2\u00e3\3\2\2\2\2\u00e5\3\2\2\2\2\u00e7\3\2\2"+ - "\2\2\u00e9\3\2\2\2\2\u00eb\3\2\2\2\2\u00ed\3\2\2\2\2\u00ef\3\2\2\2\2\u00f7"+ - "\3\2\2\2\2\u00fd\3\2\2\2\2\u00ff\3\2\2\2\2\u0101\3\2\2\2\2\u0103\3\2\2"+ - "\2\2\u0105\3\2\2\2\3\u0107\3\2\2\2\3\u0109\3\2\2\2\3\u010b\3\2\2\2\3\u010d"+ - "\3\2\2\2\3\u010f\3\2\2\2\3\u0111\3\2\2\2\3\u0113\3\2\2\2\3\u0115\3\2\2"+ - "\2\3\u0117\3\2\2\2\3\u0119\3\2\2\2\3\u011b\3\2\2\2\3\u011d\3\2\2\2\3\u011f"+ - "\3\2\2\2\3\u0121\3\2\2\2\3\u0123\3\2\2\2\3\u0125\3\2\2\2\3\u0127\3\2\2"+ - "\2\3\u0129\3\2\2\2\3\u012b\3\2\2\2\3\u012d\3\2\2\2\3\u012f\3\2\2\2\3\u0131"+ - "\3\2\2\2\3\u0133\3\2\2\2\3\u0135\3\2\2\2\3\u0137\3\2\2\2\3\u0139\3\2\2"+ - "\2\3\u013b\3\2\2\2\3\u013d\3\2\2\2\3\u013f\3\2\2\2\3\u0147\3\2\2\2\3\u0149"+ - "\3\2\2\2\3\u014b\3\2\2\2\3\u014d\3\2\2\2\3\u0153\3\2\2\2\3\u0155\3\2\2"+ - "\2\3\u0157\3\2\2\2\4\u0159\3\2\2\2\4\u015b\3\2\2\2\4\u015d\3\2\2\2\4\u015f"+ - "\3\2\2\2\4\u0161\3\2\2\2\5\u0163\3\2\2\2\7\u0166\3\2\2\2\t\u0168\3\2\2"+ - "\2\13\u016a\3\2\2\2\r\u016c\3\2\2\2\17\u016e\3\2\2\2\21\u0170\3\2\2\2"+ - "\23\u0172\3\2\2\2\25\u0174\3\2\2\2\27\u0176\3\2\2\2\31\u0179\3\2\2\2\33"+ - "\u017d\3\2\2\2\35\u017f\3\2\2\2\37\u0181\3\2\2\2!\u0184\3\2\2\2#\u0186"+ - "\3\2\2\2%\u0188\3\2\2\2\'\u018a\3\2\2\2)\u018c\3\2\2\2+\u018e\3\2\2\2"+ - "-\u0191\3\2\2\2/\u0194\3\2\2\2\61\u0196\3\2\2\2\63\u0198\3\2\2\2\65\u019a"+ - "\3\2\2\2\67\u019c\3\2\2\29\u019f\3\2\2\2;\u01a2\3\2\2\2=\u01a5\3\2\2\2"+ - "?\u01a8\3\2\2\2A\u01aa\3\2\2\2C\u01ad\3\2\2\2E\u01b0\3\2\2\2G\u01b2\3"+ - "\2\2\2I\u01b5\3\2\2\2K\u01b8\3\2\2\2M\u01d0\3\2\2\2O\u01d2\3\2\2\2Q\u01da"+ - "\3\2\2\2S\u01e5\3\2\2\2U\u01e8\3\2\2\2W\u01ef\3\2\2\2Y\u01f4\3\2\2\2["+ - "\u01fe\3\2\2\2]\u0207\3\2\2\2_\u020b\3\2\2\2a\u0214\3\2\2\2c\u021d\3\2"+ - "\2\2e\u0226\3\2\2\2g\u022c\3\2\2\2i\u0233\3\2\2\2k\u023a\3\2\2\2m\u0240"+ - "\3\2\2\2o\u0247\3\2\2\2q\u0250\3\2\2\2s\u0257\3\2\2\2u\u0261\3\2\2\2w"+ - "\u026a\3\2\2\2y\u0277\3\2\2\2{\u0281\3\2\2\2}\u0286\3\2\2\2\177\u028c"+ - "\3\2\2\2\u0081\u0292\3\2\2\2\u0083\u0297\3\2\2\2\u0085\u02a3\3\2\2\2\u0087"+ - "\u02bf\3\2\2\2\u0089\u02c1\3\2\2\2\u008b\u02cb\3\2\2\2\u008d\u02db\3\2"+ - "\2\2\u008f\u02de\3\2\2\2\u0091\u02e3\3\2\2\2\u0093\u02e9\3\2\2\2\u0095"+ - "\u02ec\3\2\2\2\u0097\u02f0\3\2\2\2\u0099\u02f7\3\2\2\2\u009b\u02fe\3\2"+ - "\2\2\u009d\u0304\3\2\2\2\u009f\u030d\3\2\2\2\u00a1\u0313\3\2\2\2\u00a3"+ - "\u031b\3\2\2\2\u00a5\u0320\3\2\2\2\u00a7\u0327\3\2\2\2\u00a9\u032c\3\2"+ - "\2\2\u00ab\u0333\3\2\2\2\u00ad\u033a\3\2\2\2\u00af\u0342\3\2\2\2\u00b1"+ - "\u034a\3\2\2\2\u00b3\u0353\3\2\2\2\u00b5\u0358\3\2\2\2\u00b7\u0361\3\2"+ - "\2\2\u00b9\u0367\3\2\2\2\u00bb\u036e\3\2\2\2\u00bd\u037e\3\2\2\2\u00bf"+ - "\u03a5\3\2\2\2\u00c1\u03b0\3\2\2\2\u00c3\u03b2\3\2\2\2\u00c5\u03be\3\2"+ - "\2\2\u00c7\u03c8\3\2\2\2\u00c9\u03d3\3\2\2\2\u00cb\u03db\3\2\2\2\u00cd"+ - "\u03e8\3\2\2\2\u00cf\u03ea\3\2\2\2\u00d1\u03f1\3\2\2\2\u00d3\u03f8\3\2"+ - "\2\2\u00d5\u0400\3\2\2\2\u00d7\u0404\3\2\2\2\u00d9\u040a\3\2\2\2\u00db"+ - "\u0410\3\2\2\2\u00dd\u0417\3\2\2\2\u00df\u0420\3\2\2\2\u00e1\u0425\3\2"+ - "\2\2\u00e3\u042c\3\2\2\2\u00e5\u043d\3\2\2\2\u00e7\u044b\3\2\2\2\u00e9"+ - "\u045c\3\2\2\2\u00eb\u0470\3\2\2\2\u00ed\u0473\3\2\2\2\u00ef\u047c\3\2"+ - "\2\2\u00f1\u0483\3\2\2\2\u00f3\u0485\3\2\2\2\u00f5\u0487\3\2\2\2\u00f7"+ - "\u0489\3\2\2\2\u00f9\u0492\3\2\2\2\u00fb\u0494\3\2\2\2\u00fd\u0496\3\2"+ - "\2\2\u00ff\u04ac\3\2\2\2\u0101\u04ba\3\2\2\2\u0103\u04c0\3\2\2\2\u0105"+ - "\u04cb\3\2\2\2\u0107\u04d9\3\2\2\2\u0109\u0705\3\2\2\2\u010b\u0707\3\2"+ - "\2\2\u010d\u0709\3\2\2\2\u010f\u070b\3\2\2\2\u0111\u070d\3\2\2\2\u0113"+ - "\u070f\3\2\2\2\u0115\u0711\3\2\2\2\u0117\u0713\3\2\2\2\u0119\u0715\3\2"+ - "\2\2\u011b\u0717\3\2\2\2\u011d\u071a\3\2\2\2\u011f\u071d\3\2\2\2\u0121"+ - "\u071f\3\2\2\2\u0123\u0721\3\2\2\2\u0125\u0723\3\2\2\2\u0127\u0725\3\2"+ - "\2\2\u0129\u0727\3\2\2\2\u012b\u0729\3\2\2\2\u012d\u072c\3\2\2\2\u012f"+ - "\u0731\3\2\2\2\u0131\u0736\3\2\2\2\u0133\u0738\3\2\2\2\u0135\u0748\3\2"+ - "\2\2\u0137\u0751\3\2\2\2\u0139\u0761\3\2\2\2\u013b\u0763\3\2\2\2\u013d"+ - "\u076a\3\2\2\2\u013f\u076e\3\2\2\2\u0141\u0774\3\2\2\2\u0143\u0776\3\2"+ - "\2\2\u0145\u0778\3\2\2\2\u0147\u077a\3\2\2\2\u0149\u0782\3\2\2\2\u014b"+ - "\u0788\3\2\2\2\u014d\u078f\3\2\2\2\u014f\u0796\3\2\2\2\u0151\u0798\3\2"+ - "\2\2\u0153\u079b\3\2\2\2\u0155\u07a1\3\2\2\2\u0157\u07ac\3\2\2\2\u0159"+ - "\u07ba\3\2\2\2\u015b\u07c3\3\2\2\2\u015d\u07d0\3\2\2\2\u015f\u07d6\3\2"+ - "\2\2\u0161\u07e1\3\2\2\2\u0163\u0164\7}\2\2\u0164\u0165\b\2\2\2\u0165"+ - "\6\3\2\2\2\u0166\u0167\7\177\2\2\u0167\b\3\2\2\2\u0168\u0169\7]\2\2\u0169"+ - "\n\3\2\2\2\u016a\u016b\7_\2\2\u016b\f\3\2\2\2\u016c\u016d\7*\2\2\u016d"+ - "\16\3\2\2\2\u016e\u016f\7+\2\2\u016f\20\3\2\2\2\u0170\u0171\7=\2\2\u0171"+ - "\22\3\2\2\2\u0172\u0173\7<\2\2\u0173\24\3\2\2\2\u0174\u0175\7.\2\2\u0175"+ - "\26\3\2\2\2\u0176\u0177\7\60\2\2\u0177\u0178\7\60\2\2\u0178\30\3\2\2\2"+ - "\u0179\u017a\7\60\2\2\u017a\u017b\7\60\2\2\u017b\u017c\7\60\2\2\u017c"+ - "\32\3\2\2\2\u017d\u017e\7A\2\2\u017e\34\3\2\2\2\u017f\u0180\7\60\2\2\u0180"+ - "\36\3\2\2\2\u0181\u0182\7/\2\2\u0182\u0183\7@\2\2\u0183 \3\2\2\2\u0184"+ - "\u0185\7-\2\2\u0185\"\3\2\2\2\u0186\u0187\7/\2\2\u0187$\3\2\2\2\u0188"+ - "\u0189\7,\2\2\u0189&\3\2\2\2\u018a\u018b\7\61\2\2\u018b(\3\2\2\2\u018c"+ - "\u018d\7\'\2\2\u018d*\3\2\2\2\u018e\u018f\7-\2\2\u018f\u0190\7-\2\2\u0190"+ - ",\3\2\2\2\u0191\u0192\7/\2\2\u0192\u0193\7/\2\2\u0193.\3\2\2\2\u0194\u0195"+ - "\7(\2\2\u0195\60\3\2\2\2\u0196\u0197\7\u0080\2\2\u0197\62\3\2\2\2\u0198"+ - "\u0199\7`\2\2\u0199\64\3\2\2\2\u019a\u019b\7~\2\2\u019b\66\3\2\2\2\u019c"+ - "\u019d\7>\2\2\u019d\u019e\7>\2\2\u019e8\3\2\2\2\u019f\u01a0\7@\2\2\u01a0"+ - "\u01a1\7@\2\2\u01a1:\3\2\2\2\u01a2\u01a3\7?\2\2\u01a3\u01a4\7?\2\2\u01a4"+ - "<\3\2\2\2\u01a5\u01a6\7#\2\2\u01a6\u01a7\7?\2\2\u01a7>\3\2\2\2\u01a8\u01a9"+ - "\7>\2\2\u01a9@\3\2\2\2\u01aa\u01ab\7>\2\2\u01ab\u01ac\7?\2\2\u01acB\3"+ - "\2\2\2\u01ad\u01ae\7@\2\2\u01ae\u01af\7?\2\2\u01afD\3\2\2\2\u01b0\u01b1"+ - "\7@\2\2\u01b1F\3\2\2\2\u01b2\u01b3\7(\2\2\u01b3\u01b4\7(\2\2\u01b4H\3"+ - "\2\2\2\u01b5\u01b6\7~\2\2\u01b6\u01b7\7~\2\2\u01b7J\3\2\2\2\u01b8\u01b9"+ - "\7?\2\2\u01b9L\3\2\2\2\u01ba\u01bb\7-\2\2\u01bb\u01d1\7?\2\2\u01bc\u01bd"+ - "\7/\2\2\u01bd\u01d1\7?\2\2\u01be\u01bf\7,\2\2\u01bf\u01d1\7?\2\2\u01c0"+ - "\u01c1\7\61\2\2\u01c1\u01d1\7?\2\2\u01c2\u01c3\7\'\2\2\u01c3\u01d1\7?"+ - "\2\2\u01c4\u01c5\7>\2\2\u01c5\u01c6\7>\2\2\u01c6\u01d1\7?\2\2\u01c7\u01c8"+ - "\7@\2\2\u01c8\u01c9\7@\2\2\u01c9\u01d1\7?\2\2\u01ca\u01cb\7(\2\2\u01cb"+ - "\u01d1\7?\2\2\u01cc\u01cd\7~\2\2\u01cd\u01d1\7?\2\2\u01ce\u01cf\7`\2\2"+ - "\u01cf\u01d1\7?\2\2\u01d0\u01ba\3\2\2\2\u01d0\u01bc\3\2\2\2\u01d0\u01be"+ - "\3\2\2\2\u01d0\u01c0\3\2\2\2\u01d0\u01c2\3\2\2\2\u01d0\u01c4\3\2\2\2\u01d0"+ - "\u01c7\3\2\2\2\u01d0\u01ca\3\2\2\2\u01d0\u01cc\3\2\2\2\u01d0\u01ce\3\2"+ - "\2\2\u01d1N\3\2\2\2\u01d2\u01d3\7v\2\2\u01d3\u01d4\7{\2\2\u01d4\u01d5"+ - "\7r\2\2\u01d5\u01d6\7g\2\2\u01d6\u01d7\7f\2\2\u01d7\u01d8\7g\2\2\u01d8"+ - "\u01d9\7h\2\2\u01d9P\3\2\2\2\u01da\u01db\7|\2\2\u01db\u01dc\7r\2\2\u01dc"+ - "\u01dd\7a\2\2\u01dd\u01de\7t\2\2\u01de\u01df\7g\2\2\u01df\u01e0\7u\2\2"+ - "\u01e0\u01e1\7g\2\2\u01e1\u01e2\7t\2\2\u01e2\u01e3\7x\2\2\u01e3\u01e4"+ - "\7g\2\2\u01e4R\3\2\2\2\u01e5\u01e6\7r\2\2\u01e6\u01e7\7e\2\2\u01e7T\3"+ - "\2\2\2\u01e8\u01e9\7v\2\2\u01e9\u01ea\7c\2\2\u01ea\u01eb\7t\2\2\u01eb"+ - "\u01ec\7i\2\2\u01ec\u01ed\7g\2\2\u01ed\u01ee\7v\2\2\u01eeV\3\2\2\2\u01ef"+ - "\u01f0\7n\2\2\u01f0\u01f1\7k\2\2\u01f1\u01f2\7p\2\2\u01f2\u01f3\7m\2\2"+ - "\u01f3X\3\2\2\2\u01f4\u01f5\7g\2\2\u01f5\u01f6\7z\2\2\u01f6\u01f7\7v\2"+ - "\2\u01f7\u01f8\7g\2\2\u01f8\u01f9\7p\2\2\u01f9\u01fa\7u\2\2\u01fa\u01fb"+ - "\7k\2\2\u01fb\u01fc\7q\2\2\u01fc\u01fd\7p\2\2\u01fdZ\3\2\2\2\u01fe\u01ff"+ - "\7g\2\2\u01ff\u0200\7o\2\2\u0200\u0201\7w\2\2\u0201\u0202\7n\2\2\u0202"+ - "\u0203\7c\2\2\u0203\u0204\7v\2\2\u0204\u0205\7q\2\2\u0205\u0206\7t\2\2"+ - "\u0206\\\3\2\2\2\u0207\u0208\7e\2\2\u0208\u0209\7r\2\2\u0209\u020a\7w"+ - "\2\2\u020a^\3\2\2\2\u020b\u020c\7e\2\2\u020c\u020d\7q\2\2\u020d\u020e"+ - "\7f\2\2\u020e\u020f\7g\2\2\u020f\u0210\7a\2\2\u0210\u0211\7u\2\2\u0211"+ - "\u0212\7g\2\2\u0212\u0213\7i\2\2\u0213`\3\2\2\2\u0214\u0215\7f\2\2\u0215"+ - "\u0216\7c\2\2\u0216\u0217\7v\2\2\u0217\u0218\7c\2\2\u0218\u0219\7a\2\2"+ - "\u0219\u021a\7u\2\2\u021a\u021b\7g\2\2\u021b\u021c\7i\2\2\u021cb\3\2\2"+ - "\2\u021d\u021e\7g\2\2\u021e\u021f\7p\2\2\u021f\u0220\7e\2\2\u0220\u0221"+ - "\7q\2\2\u0221\u0222\7f\2\2\u0222\u0223\7k\2\2\u0223\u0224\7p\2\2\u0224"+ - "\u0225\7i\2\2\u0225d\3\2\2\2\u0226\u0227\7e\2\2\u0227\u0228\7q\2\2\u0228"+ - "\u0229\7p\2\2\u0229\u022a\7u\2\2\u022a\u022b\7v\2\2\u022bf\3\2\2\2\u022c"+ - "\u022d\7g\2\2\u022d\u022e\7z\2\2\u022e\u022f\7v\2\2\u022f\u0230\7g\2\2"+ - "\u0230\u0231\7t\2\2\u0231\u0232\7p\2\2\u0232h\3\2\2\2\u0233\u0234\7g\2"+ - "\2\u0234\u0235\7z\2\2\u0235\u0236\7r\2\2\u0236\u0237\7q\2\2\u0237\u0238"+ - "\7t\2\2\u0238\u0239\7v\2\2\u0239j\3\2\2\2\u023a\u023b\7c\2\2\u023b\u023c"+ - "\7n\2\2\u023c\u023d\7k\2\2\u023d\u023e\7i\2\2\u023e\u023f\7p\2\2\u023f"+ - "l\3\2\2\2\u0240\u0241\7k\2\2\u0241\u0242\7p\2\2\u0242\u0243\7n\2\2\u0243"+ - "\u0244\7k\2\2\u0244\u0245\7p\2\2\u0245\u0246\7g\2\2\u0246n\3\2\2\2\u0247"+ - "\u0248\7x\2\2\u0248\u0249\7q\2\2\u0249\u024a\7n\2\2\u024a\u024b\7c\2\2"+ - "\u024b\u024c\7v\2\2\u024c\u024d\7k\2\2\u024d\u024e\7n\2\2\u024e\u024f"+ - "\7g\2\2\u024fp\3\2\2\2\u0250\u0251\7u\2\2\u0251\u0252\7v\2\2\u0252\u0253"+ - "\7c\2\2\u0253\u0254\7v\2\2\u0254\u0255\7k\2\2\u0255\u0256\7e\2\2\u0256"+ - "r\3\2\2\2\u0257\u0258\7k\2\2\u0258\u0259\7p\2\2\u0259\u025a\7v\2\2\u025a"+ - "\u025b\7g\2\2\u025b\u025c\7t\2\2\u025c\u025d\7t\2\2\u025d\u025e\7w\2\2"+ - "\u025e\u025f\7r\2\2\u025f\u0260\7v\2\2\u0260t\3\2\2\2\u0261\u0262\7t\2"+ - "\2\u0262\u0263\7g\2\2\u0263\u0264\7i\2\2\u0264\u0265\7k\2\2\u0265\u0266"+ - "\7u\2\2\u0266\u0267\7v\2\2\u0267\u0268\7g\2\2\u0268\u0269\7t\2\2\u0269"+ - "v\3\2\2\2\u026a\u026b\7a\2\2\u026b\u026c\7a\2\2\u026c\u026d\7|\2\2\u026d"+ - "\u026e\7r\2\2\u026e\u026f\7a\2\2\u026f\u0270\7t\2\2\u0270\u0271\7g\2\2"+ - "\u0271\u0272\7u\2\2\u0272\u0273\7g\2\2\u0273\u0274\7t\2\2\u0274\u0275"+ - "\7x\2\2\u0275\u0276\7g\2\2\u0276x\3\2\2\2\u0277\u0278\7a\2\2\u0278\u0279"+ - "\7a\2\2\u0279\u027a\7c\2\2\u027a\u027b\7f\2\2\u027b\u027c\7f\2\2\u027c"+ - "\u027d\7t\2\2\u027d\u027e\7g\2\2\u027e\u027f\7u\2\2\u027f\u0280\7u\2\2"+ - "\u0280z\3\2\2\2\u0281\u0282\7a\2\2\u0282\u0283\7a\2\2\u0283\u0284\7|\2"+ - "\2\u0284\u0285\7r\2\2\u0285|\3\2\2\2\u0286\u0287\7a\2\2\u0287\u0288\7"+ - "a\2\2\u0288\u0289\7o\2\2\u0289\u028a\7g\2\2\u028a\u028b\7o\2\2\u028b~"+ - "\3\2\2\2\u028c\u028d\7a\2\2\u028d\u028e\7a\2\2\u028e\u028f\7u\2\2\u028f"+ - "\u0290\7u\2\2\u0290\u0291\7c\2\2\u0291\u0080\3\2\2\2\u0292\u0293\7a\2"+ - "\2\u0293\u0294\7a\2\2\u0294\u0295\7o\2\2\u0295\u0296\7c\2\2\u0296\u0082"+ - "\3\2\2\2\u0297\u0298\7a\2\2\u0298\u0299\7a\2\2\u0299\u029a\7k\2\2\u029a"+ - "\u029b\7p\2\2\u029b\u029c\7v\2\2\u029c\u029d\7t\2\2\u029d\u029e\7k\2\2"+ - "\u029e\u029f\7p\2\2\u029f\u02a0\7u\2\2\u02a0\u02a1\7k\2\2\u02a1\u02a2"+ - "\7e\2\2\u02a2\u0084\3\2\2\2\u02a3\u02a4\7e\2\2\u02a4\u02a5\7c\2\2\u02a5"+ - "\u02a6\7n\2\2\u02a6\u02a7\7n\2\2\u02a7\u02a8\7k\2\2\u02a8\u02a9\7p\2\2"+ - "\u02a9\u02aa\7i\2\2\u02aa\u0086\3\2\2\2\u02ab\u02ac\7a\2\2\u02ac\u02ad"+ - "\7a\2\2\u02ad\u02ae\7u\2\2\u02ae\u02af\7v\2\2\u02af\u02b0\7c\2\2\u02b0"+ - "\u02b1\7e\2\2\u02b1\u02b2\7m\2\2\u02b2\u02b3\7e\2\2\u02b3\u02b4\7c\2\2"+ - "\u02b4\u02b5\7n\2\2\u02b5\u02c0\7n\2\2\u02b6\u02b7\7a\2\2\u02b7\u02b8"+ - "\7a\2\2\u02b8\u02b9\7r\2\2\u02b9\u02ba\7j\2\2\u02ba\u02bb\7k\2\2\u02bb"+ - "\u02bc\7e\2\2\u02bc\u02bd\7c\2\2\u02bd\u02be\7n\2\2\u02be\u02c0\7n\2\2"+ - "\u02bf\u02ab\3\2\2\2\u02bf\u02b6\3\2\2\2\u02c0\u0088\3\2\2\2\u02c1\u02c2"+ - "\7x\2\2\u02c2\u02c3\7c\2\2\u02c3\u02c4\7t\2\2\u02c4\u02c5\7a\2\2\u02c5"+ - "\u02c6\7o\2\2\u02c6\u02c7\7q\2\2\u02c7\u02c8\7f\2\2\u02c8\u02c9\7g\2\2"+ - "\u02c9\u02ca\7n\2\2\u02ca\u008a\3\2\2\2\u02cb\u02cc\7e\2\2\u02cc\u02cd"+ - "\7q\2\2\u02cd\u02ce\7p\2\2\u02ce\u02cf\7u\2\2\u02cf\u02d0\7v\2\2\u02d0"+ - "\u02d1\7t\2\2\u02d1\u02d2\7w\2\2\u02d2\u02d3\7e\2\2\u02d3\u02d4\7v\2\2"+ - "\u02d4\u02d5\7q\2\2\u02d5\u02d6\7t\2\2\u02d6\u02d7\7a\2\2\u02d7\u02d8"+ - "\7h\2\2\u02d8\u02d9\7q\2\2\u02d9\u02da\7t\2\2\u02da\u008c\3\2\2\2\u02db"+ - "\u02dc\7k\2\2\u02dc\u02dd\7h\2\2\u02dd\u008e\3\2\2\2\u02de\u02df\7g\2"+ - "\2\u02df\u02e0\7n\2\2\u02e0\u02e1\7u\2\2\u02e1\u02e2\7g\2\2\u02e2\u0090"+ - "\3\2\2\2\u02e3\u02e4\7y\2\2\u02e4\u02e5\7j\2\2\u02e5\u02e6\7k\2\2\u02e6"+ - "\u02e7\7n\2\2\u02e7\u02e8\7g\2\2\u02e8\u0092\3\2\2\2\u02e9\u02ea\7f\2"+ - "\2\u02ea\u02eb\7q\2\2\u02eb\u0094\3\2\2\2\u02ec\u02ed\7h\2\2\u02ed\u02ee"+ - "\7q\2\2\u02ee\u02ef\7t\2\2\u02ef\u0096\3\2\2\2\u02f0\u02f1\7u\2\2\u02f1"+ - "\u02f2\7y\2\2\u02f2\u02f3\7k\2\2\u02f3\u02f4\7v\2\2\u02f4\u02f5\7e\2\2"+ - "\u02f5\u02f6\7j\2\2\u02f6\u0098\3\2\2\2\u02f7\u02f8\7t\2\2\u02f8\u02f9"+ - "\7g\2\2\u02f9\u02fa\7v\2\2\u02fa\u02fb\7w\2\2\u02fb\u02fc\7t\2\2\u02fc"+ - "\u02fd\7p\2\2\u02fd\u009a\3\2\2\2\u02fe\u02ff\7d\2\2\u02ff\u0300\7t\2"+ - "\2\u0300\u0301\7g\2\2\u0301\u0302\7c\2\2\u0302\u0303\7m\2\2\u0303\u009c"+ - "\3\2\2\2\u0304\u0305\7e\2\2\u0305\u0306\7q\2\2\u0306\u0307\7p\2\2\u0307"+ - "\u0308\7v\2\2\u0308\u0309\7k\2\2\u0309\u030a\7p\2\2\u030a\u030b\7w\2\2"+ - "\u030b\u030c\7g\2\2\u030c\u009e\3\2\2\2\u030d\u030e\7c\2\2\u030e\u030f"+ - "\7u\2\2\u030f\u0310\7o\2\2\u0310\u0311\3\2\2\2\u0311\u0312\bO\3\2\u0312"+ - "\u00a0\3\2\2\2\u0313\u0314\7f\2\2\u0314\u0315\7g\2\2\u0315\u0316\7h\2"+ - "\2\u0316\u0317\7c\2\2\u0317\u0318\7w\2\2\u0318\u0319\7n\2\2\u0319\u031a"+ - "\7v\2\2\u031a\u00a2\3\2\2\2\u031b\u031c\7e\2\2\u031c\u031d\7c\2\2\u031d"+ - "\u031e\7u\2\2\u031e\u031f\7g\2\2\u031f\u00a4\3\2\2\2\u0320\u0321\7u\2"+ - "\2\u0321\u0322\7v\2\2\u0322\u0323\7t\2\2\u0323\u0324\7w\2\2\u0324\u0325"+ - "\7e\2\2\u0325\u0326\7v\2\2\u0326\u00a6\3\2\2\2\u0327\u0328\7g\2\2\u0328"+ - "\u0329\7p\2\2\u0329\u032a\7w\2\2\u032a\u032b\7o\2\2\u032b\u00a8\3\2\2"+ - "\2\u032c\u032d\7u\2\2\u032d\u032e\7k\2\2\u032e\u032f\7|\2\2\u032f\u0330"+ - "\7g\2\2\u0330\u0331\7q\2\2\u0331\u0332\7h\2\2\u0332\u00aa\3\2\2\2\u0333"+ - "\u0334\7v\2\2\u0334\u0335\7{\2\2\u0335\u0336\7r\2\2\u0336\u0337\7g\2\2"+ - "\u0337\u0338\7k\2\2\u0338\u0339\7f\2\2\u0339\u00ac\3\2\2\2\u033a\u033b"+ - "\7f\2\2\u033b\u033c\7g\2\2\u033c\u033d\7h\2\2\u033d\u033e\7k\2\2\u033e"+ - "\u033f\7p\2\2\u033f\u0340\7g\2\2\u0340\u0341\7f\2\2\u0341\u00ae\3\2\2"+ - "\2\u0342\u0343\7m\2\2\u0343\u0344\7k\2\2\u0344\u0345\7e\2\2\u0345\u0346"+ - "\7m\2\2\u0346\u0347\7c\2\2\u0347\u0348\7u\2\2\u0348\u0349\7o\2\2\u0349"+ - "\u00b0\3\2\2\2\u034a\u034b\7t\2\2\u034b\u034c\7g\2\2\u034c\u034d\7u\2"+ - "\2\u034d\u034e\7q\2\2\u034e\u034f\7w\2\2\u034f\u0350\7t\2\2\u0350\u0351"+ - "\7e\2\2\u0351\u0352\7g\2\2\u0352\u00b2\3\2\2\2\u0353\u0354\7w\2\2\u0354"+ - "\u0355\7u\2\2\u0355\u0356\7g\2\2\u0356\u0357\7u\2\2\u0357\u00b4\3\2\2"+ - "\2\u0358\u0359\7e\2\2\u0359\u035a\7n\2\2\u035a\u035b\7q\2\2\u035b\u035c"+ - "\7d\2\2\u035c\u035d\7d\2\2\u035d\u035e\7g\2\2\u035e\u035f\7t\2\2\u035f"+ - "\u0360\7u\2\2\u0360\u00b6\3\2\2\2\u0361\u0362\7d\2\2\u0362\u0363\7{\2"+ - "\2\u0363\u0364\7v\2\2\u0364\u0365\7g\2\2\u0365\u0366\7u\2\2\u0366\u00b8"+ - "\3\2\2\2\u0367\u0368\7e\2\2\u0368\u0369\7{\2\2\u0369\u036a\7e\2\2\u036a"+ - "\u036b\7n\2\2\u036b\u036c\7g\2\2\u036c\u036d\7u\2\2\u036d\u00ba\3\2\2"+ - "\2\u036e\u036f\7#\2\2\u036f\u00bc\3\2\2\2\u0370\u0371\7u\2\2\u0371\u0372"+ - "\7k\2\2\u0372\u0373\7i\2\2\u0373\u0374\7p\2\2\u0374\u0375\7g\2\2\u0375"+ - "\u037f\7f\2\2\u0376\u0377\7w\2\2\u0377\u0378\7p\2\2\u0378\u0379\7u\2\2"+ - "\u0379\u037a\7k\2\2\u037a\u037b\7i\2\2\u037b\u037c\7p\2\2\u037c\u037d"+ - "\7g\2\2\u037d\u037f\7f\2\2\u037e\u0370\3\2\2\2\u037e\u0376\3\2\2\2\u037f"+ - "\u00be\3\2\2\2\u0380\u0381\7d\2\2\u0381\u0382\7{\2\2\u0382\u0383\7v\2"+ - "\2\u0383\u03a6\7g\2\2\u0384\u0385\7y\2\2\u0385\u0386\7q\2\2\u0386\u0387"+ - "\7t\2\2\u0387\u03a6\7f\2\2\u0388\u0389\7f\2\2\u0389\u038a\7y\2\2\u038a"+ - "\u038b\7q\2\2\u038b\u038c\7t\2\2\u038c\u03a6\7f\2\2\u038d\u038e\7d\2\2"+ - "\u038e\u038f\7q\2\2\u038f\u0390\7q\2\2\u0390\u03a6\7n\2\2\u0391\u0392"+ - "\7e\2\2\u0392\u0393\7j\2\2\u0393\u0394\7c\2\2\u0394\u03a6\7t\2\2\u0395"+ - "\u0396\7u\2\2\u0396\u0397\7j\2\2\u0397\u0398\7q\2\2\u0398\u0399\7t\2\2"+ - "\u0399\u03a6\7v\2\2\u039a\u039b\7k\2\2\u039b\u039c\7p\2\2\u039c\u03a6"+ - "\7v\2\2\u039d\u039e\7n\2\2\u039e\u039f\7q\2\2\u039f\u03a0\7p\2\2\u03a0"+ - "\u03a6\7i\2\2\u03a1\u03a2\7x\2\2\u03a2\u03a3\7q\2\2\u03a3\u03a4\7k\2\2"+ - "\u03a4\u03a6\7f\2\2\u03a5\u0380\3\2\2\2\u03a5\u0384\3\2\2\2\u03a5\u0388"+ - "\3\2\2\2\u03a5\u038d\3\2\2\2\u03a5\u0391\3\2\2\2\u03a5\u0395\3\2\2\2\u03a5"+ - "\u039a\3\2\2\2\u03a5\u039d\3\2\2\2\u03a5\u03a1\3\2\2\2\u03a6\u00c0\3\2"+ - "\2\2\u03a7\u03a8\7v\2\2\u03a8\u03a9\7t\2\2\u03a9\u03aa\7w\2\2\u03aa\u03b1"+ - "\7g\2\2\u03ab\u03ac\7h\2\2\u03ac\u03ad\7c\2\2\u03ad\u03ae\7n\2\2\u03ae"+ - "\u03af\7u\2\2\u03af\u03b1\7g\2\2\u03b0\u03a7\3\2\2\2\u03b0\u03ab\3\2\2"+ - "\2\u03b1\u00c2\3\2\2\2\u03b2\u03b3\7}\2\2\u03b3\u03b4\7}\2\2\u03b4\u03b8"+ - "\3\2\2\2\u03b5\u03b7\13\2\2\2\u03b6\u03b5\3\2\2\2\u03b7\u03ba\3\2\2\2"+ - "\u03b8\u03b9\3\2\2\2\u03b8\u03b6\3\2\2\2\u03b9\u03bb\3\2\2\2\u03ba\u03b8"+ - "\3\2\2\2\u03bb\u03bc\7\177\2\2\u03bc\u03bd\7\177\2\2\u03bd\u00c4\3\2\2"+ - "\2\u03be\u03bf\7%\2\2\u03bf\u03c0\7k\2\2\u03c0\u03c1\7o\2\2\u03c1\u03c2"+ - "\7r\2\2\u03c2\u03c3\7q\2\2\u03c3\u03c4\7t\2\2\u03c4\u03c5\7v\2\2\u03c5"+ - "\u03c6\3\2\2\2\u03c6\u03c7\bb\4\2\u03c7\u00c6\3\2\2\2\u03c8\u03c9\7%\2"+ - "\2\u03c9\u03ca\7k\2\2\u03ca\u03cb\7p\2\2\u03cb\u03cc\7e\2\2\u03cc\u03cd"+ - "\7n\2\2\u03cd\u03ce\7w\2\2\u03ce\u03cf\7f\2\2\u03cf\u03d0\7g\2\2\u03d0"+ - "\u03d1\3\2\2\2\u03d1\u03d2\bc\5\2\u03d2\u00c8\3\2\2\2\u03d3\u03d4\7%\2"+ - "\2\u03d4\u03d5\7r\2\2\u03d5\u03d6\7t\2\2\u03d6\u03d7\7c\2\2\u03d7\u03d8"+ - "\7i\2\2\u03d8\u03d9\7o\2\2\u03d9\u03da\7c\2\2\u03da\u00ca\3\2\2\2\u03db"+ - "\u03dc\7%\2\2\u03dc\u03dd\7f\2\2\u03dd\u03de\7g\2\2\u03de\u03df\7h\2\2"+ - "\u03df\u03e0\7k\2\2\u03e0\u03e1\7p\2\2\u03e1\u03e2\7g\2\2\u03e2\u00cc"+ - "\3\2\2\2\u03e3\u03e4\7^\2\2\u03e4\u03e9\7\f\2\2\u03e5\u03e6\7^\2\2\u03e6"+ - "\u03e7\7\17\2\2\u03e7\u03e9\7\f\2\2\u03e8\u03e3\3\2\2\2\u03e8\u03e5\3"+ - "\2\2\2\u03e9\u00ce\3\2\2\2\u03ea\u03eb\7%\2\2\u03eb\u03ec\7w\2\2\u03ec"+ - "\u03ed\7p\2\2\u03ed\u03ee\7f\2\2\u03ee\u03ef\7g\2\2\u03ef\u03f0\7h\2\2"+ - "\u03f0\u00d0\3\2\2\2\u03f1\u03f2\7%\2\2\u03f2\u03f3\7k\2\2\u03f3\u03f4"+ - "\7h\2\2\u03f4\u03f5\7f\2\2\u03f5\u03f6\7g\2\2\u03f6\u03f7\7h\2\2\u03f7"+ - "\u00d2\3\2\2\2\u03f8\u03f9\7%\2\2\u03f9\u03fa\7k\2\2\u03fa\u03fb\7h\2"+ - "\2\u03fb\u03fc\7p\2\2\u03fc\u03fd\7f\2\2\u03fd\u03fe\7g\2\2\u03fe\u03ff"+ - "\7h\2\2\u03ff\u00d4\3\2\2\2\u0400\u0401\7%\2\2\u0401\u0402\7k\2\2\u0402"+ - "\u0403\7h\2\2\u0403\u00d6\3\2\2\2\u0404\u0405\7%\2\2\u0405\u0406\7g\2"+ - "\2\u0406\u0407\7n\2\2\u0407\u0408\7k\2\2\u0408\u0409\7h\2\2\u0409\u00d8"+ - "\3\2\2\2\u040a\u040b\7%\2\2\u040b\u040c\7g\2\2\u040c\u040d\7n\2\2\u040d"+ - "\u040e\7u\2\2\u040e\u040f\7g\2\2\u040f\u00da\3\2\2\2\u0410\u0411\7%\2"+ - "\2\u0411\u0412\7g\2\2\u0412\u0413\7p\2\2\u0413\u0414\7f\2\2\u0414\u0415"+ - "\7k\2\2\u0415\u0416\7h\2\2\u0416\u00dc\3\2\2\2\u0417\u0418\7%\2\2\u0418"+ - "\u0419\7g\2\2\u0419\u041a\7t\2\2\u041a\u041b\7t\2\2\u041b\u041c\7q\2\2"+ - "\u041c\u041d\7t\2\2\u041d\u00de\3\2\2\2\u041e\u0421\5\u00e1p\2\u041f\u0421"+ - "\5\u00e9t\2\u0420\u041e\3\2\2\2\u0420\u041f\3\2\2\2\u0421\u00e0\3\2\2"+ - "\2\u0422\u0426\5\u00e3q\2\u0423\u0426\5\u00e5r\2\u0424\u0426\5\u00e7s"+ - "\2\u0425\u0422\3\2\2\2\u0425\u0423\3\2\2\2\u0425\u0424\3\2\2\2\u0426\u00e2"+ - "\3\2\2\2\u0427\u042d\7\'\2\2\u0428\u0429\7\62\2\2\u0429\u042d\7d\2\2\u042a"+ - "\u042b\7\62\2\2\u042b\u042d\7D\2\2\u042c\u0427\3\2\2\2\u042c\u0428\3\2"+ - "\2\2\u042c\u042a\3\2\2\2\u042d\u0431\3\2\2\2\u042e\u0430\5\u00f1x\2\u042f"+ - "\u042e\3\2\2\2\u0430\u0433\3\2\2\2\u0431\u042f\3\2\2\2\u0431\u0432\3\2"+ - "\2\2\u0432\u0434\3\2\2\2\u0433\u0431\3\2\2\2\u0434\u0436\7\60\2\2\u0435"+ - "\u0437\5\u00f1x\2\u0436\u0435\3\2\2\2\u0437\u0438\3\2\2\2\u0438\u0436"+ - "\3\2\2\2\u0438\u0439\3\2\2\2\u0439\u00e4\3\2\2\2\u043a\u043c\5\u00f3y"+ - "\2\u043b\u043a\3\2\2\2\u043c\u043f\3\2\2\2\u043d\u043b\3\2\2\2\u043d\u043e"+ - "\3\2\2\2\u043e\u0440\3\2\2\2\u043f\u043d\3\2\2\2\u0440\u0442\7\60\2\2"+ - "\u0441\u0443\5\u00f3y\2\u0442\u0441\3\2\2\2\u0443\u0444\3\2\2\2\u0444"+ - "\u0442\3\2\2\2\u0444\u0445\3\2\2\2\u0445\u00e6\3\2\2\2\u0446\u044c\7&"+ - "\2\2\u0447\u0448\7\62\2\2\u0448\u044c\7z\2\2\u0449\u044a\7\62\2\2\u044a"+ - "\u044c\7Z\2\2\u044b\u0446\3\2\2\2\u044b\u0447\3\2\2\2\u044b\u0449\3\2"+ - "\2\2\u044c\u0450\3\2\2\2\u044d\u044f\5\u00f5z\2\u044e\u044d\3\2\2\2\u044f"+ - "\u0452\3\2\2\2\u0450\u044e\3\2\2\2\u0450\u0451\3\2\2\2\u0451\u0453\3\2"+ - "\2\2\u0452\u0450\3\2\2\2\u0453\u0455\7\60\2\2\u0454\u0456\5\u00f5z\2\u0455"+ - "\u0454\3\2\2\2\u0456\u0457\3\2\2\2\u0457\u0455\3\2\2\2\u0457\u0458\3\2"+ - "\2\2\u0458\u00e8\3\2\2\2\u0459\u045d\5\u00edv\2\u045a\u045d\5\u00efw\2"+ - "\u045b\u045d\5\u00ebu\2\u045c\u0459\3\2\2\2\u045c\u045a\3\2\2\2\u045c"+ - "\u045b\3\2\2\2\u045d\u0461\3\2\2\2\u045e\u045f\t\2\2\2\u045f\u0462\t\3"+ - "\2\2\u0460\u0462\7n\2\2\u0461\u045e\3\2\2\2\u0461\u0460\3\2\2\2\u0461"+ - "\u0462\3\2\2\2\u0462\u00ea\3\2\2\2\u0463\u0464\7\62\2\2\u0464\u0466\t"+ - "\4\2\2\u0465\u0467\5\u00f1x\2\u0466\u0465\3\2\2\2\u0467\u0468\3\2\2\2"+ - "\u0468\u0466\3\2\2\2\u0468\u0469\3\2\2\2\u0469\u0471\3\2\2\2\u046a\u046c"+ - "\7\'\2\2\u046b\u046d\5\u00f1x\2\u046c\u046b\3\2\2\2\u046d\u046e\3\2\2"+ - "\2\u046e\u046c\3\2\2\2\u046e\u046f\3\2\2\2\u046f\u0471\3\2\2\2\u0470\u0463"+ - "\3\2\2\2\u0470\u046a\3\2\2\2\u0471\u00ec\3\2\2\2\u0472\u0474\5\u00f3y"+ - "\2\u0473\u0472\3\2\2\2\u0474\u0475\3\2\2\2\u0475\u0473\3\2\2\2\u0475\u0476"+ - "\3\2\2\2\u0476\u00ee\3\2\2\2\u0477\u047d\7&\2\2\u0478\u0479\7\62\2\2\u0479"+ - "\u047d\7z\2\2\u047a\u047b\7\62\2\2\u047b\u047d\7Z\2\2\u047c\u0477\3\2"+ - "\2\2\u047c\u0478\3\2\2\2\u047c\u047a\3\2\2\2\u047d\u047f\3\2\2\2\u047e"+ - "\u0480\5\u00f5z\2\u047f\u047e\3\2\2\2\u0480\u0481\3\2\2\2\u0481\u047f"+ - "\3\2\2\2\u0481\u0482\3\2\2\2\u0482\u00f0\3\2\2\2\u0483\u0484\t\5\2\2\u0484"+ - "\u00f2\3\2\2\2\u0485\u0486\t\6\2\2\u0486\u00f4\3\2\2\2\u0487\u0488\t\7"+ - "\2\2\u0488\u00f6\3\2\2\2\u0489\u048d\5\u00f9|\2\u048a\u048c\5\u00fb}\2"+ - "\u048b\u048a\3\2\2\2\u048c\u048f\3\2\2\2\u048d\u048b\3\2\2\2\u048d\u048e"+ - "\3\2\2\2\u048e\u0490\3\2\2\2\u048f\u048d\3\2\2\2\u0490\u0491\b{\6\2\u0491"+ - "\u00f8\3\2\2\2\u0492\u0493\t\b\2\2\u0493\u00fa\3\2\2\2\u0494\u0495\t\t"+ - "\2\2\u0495\u00fc\3\2\2\2\u0496\u049c\7$\2\2\u0497\u0498\7^\2\2\u0498\u049b"+ - "\7$\2\2\u0499\u049b\n\n\2\2\u049a\u0497\3\2\2\2\u049a\u0499\3\2\2\2\u049b"+ - "\u049e\3\2\2\2\u049c\u049a\3\2\2\2\u049c\u049d\3\2\2\2\u049d\u049f\3\2"+ - "\2\2\u049e\u049c\3\2\2\2\u049f\u04a1\7$\2\2\u04a0\u04a2\t\13\2\2\u04a1"+ - "\u04a0\3\2\2\2\u04a1\u04a2\3\2\2\2\u04a2\u04a7\3\2\2\2\u04a3\u04a5\t\f"+ - "\2\2\u04a4\u04a6\t\r\2\2\u04a5\u04a4\3\2\2\2\u04a5\u04a6\3\2\2\2\u04a6"+ - "\u04a8\3\2\2\2\u04a7\u04a3\3\2\2\2\u04a7\u04a8\3\2\2\2\u04a8\u04aa\3\2"+ - "\2\2\u04a9\u04ab\t\13\2\2\u04aa\u04a9\3\2\2\2\u04aa\u04ab\3\2\2\2\u04ab"+ - "\u00fe\3\2\2\2\u04ac\u04b5\7)\2\2\u04ad\u04b2\7^\2\2\u04ae\u04b3\t\16"+ - "\2\2\u04af\u04b0\7z\2\2\u04b0\u04b1\t\17\2\2\u04b1\u04b3\t\17\2\2\u04b2"+ - "\u04ae\3\2\2\2\u04b2\u04af\3\2\2\2\u04b3\u04b6\3\2\2\2\u04b4\u04b6\n\20"+ - "\2\2\u04b5\u04ad\3\2\2\2\u04b5\u04b4\3\2\2\2\u04b6\u04b7\3\2\2\2\u04b7"+ - "\u04b8\7)\2\2\u04b8\u0100\3\2\2\2\u04b9\u04bb\t\21\2\2\u04ba\u04b9\3\2"+ - "\2\2\u04bb\u04bc\3\2\2\2\u04bc\u04ba\3\2\2\2\u04bc\u04bd\3\2\2\2\u04bd"+ - "\u04be\3\2\2\2\u04be\u04bf\b\u0080\7\2\u04bf\u0102\3\2\2\2\u04c0\u04c1"+ - "\7\61\2\2\u04c1\u04c2\7\61\2\2\u04c2\u04c6\3\2\2\2\u04c3\u04c5\n\22\2"+ - "\2\u04c4\u04c3\3\2\2\2\u04c5\u04c8\3\2\2\2\u04c6\u04c4\3\2\2\2\u04c6\u04c7"+ - "\3\2\2\2\u04c7\u04c9\3\2\2\2\u04c8\u04c6\3\2\2\2\u04c9\u04ca\b\u0081\b"+ - "\2\u04ca\u0104\3\2\2\2\u04cb\u04cc\7\61\2\2\u04cc\u04cd\7,\2\2\u04cd\u04d1"+ - "\3\2\2\2\u04ce\u04d0\13\2\2\2\u04cf\u04ce\3\2\2\2\u04d0\u04d3\3\2\2\2"+ - "\u04d1\u04d2\3\2\2\2\u04d1\u04cf\3\2\2\2\u04d2\u04d4\3\2\2\2\u04d3\u04d1"+ - "\3\2\2\2\u04d4\u04d5\7,\2\2\u04d5\u04d6\7\61\2\2\u04d6\u04d7\3\2\2\2\u04d7"+ - "\u04d8\b\u0082\b\2\u04d8\u0106\3\2\2\2\u04d9\u04da\7\60\2\2\u04da\u04db"+ - "\7d\2\2\u04db\u04dc\7{\2\2\u04dc\u04dd\7v\2\2\u04dd\u04de\7g\2\2\u04de"+ - "\u0108\3\2\2\2\u04df\u04e0\7d\2\2\u04e0\u04e1\7t\2\2\u04e1\u0706\7m\2"+ - "\2\u04e2\u04e3\7q\2\2\u04e3\u04e4\7t\2\2\u04e4\u0706\7c\2\2\u04e5\u04e6"+ - "\7m\2\2\u04e6\u04e7\7k\2\2\u04e7\u0706\7n\2\2\u04e8\u04e9\7u\2\2\u04e9"+ - "\u04ea\7n\2\2\u04ea\u0706\7q\2\2\u04eb\u04ec\7p\2\2\u04ec\u04ed\7q\2\2"+ - "\u04ed\u0706\7r\2\2\u04ee\u04ef\7c\2\2\u04ef\u04f0\7u\2\2\u04f0\u0706"+ - "\7n\2\2\u04f1\u04f2\7r\2\2\u04f2\u04f3\7j\2\2\u04f3\u0706\7r\2\2\u04f4"+ - "\u04f5\7c\2\2\u04f5\u04f6\7p\2\2\u04f6\u0706\7e\2\2\u04f7\u04f8\7d\2\2"+ - "\u04f8\u04f9\7r\2\2\u04f9\u0706\7n\2\2\u04fa\u04fb\7e\2\2\u04fb\u04fc"+ - "\7n\2\2\u04fc\u0706\7e\2\2\u04fd\u04fe\7l\2\2\u04fe\u04ff\7u\2\2\u04ff"+ - "\u0706\7t\2\2\u0500\u0501\7c\2\2\u0501\u0502\7p\2\2\u0502\u0706\7f\2\2"+ - "\u0503\u0504\7t\2\2\u0504\u0505\7n\2\2\u0505\u0706\7c\2\2\u0506\u0507"+ - "\7d\2\2\u0507\u0508\7k\2\2\u0508\u0706\7v\2\2\u0509\u050a\7t\2\2\u050a"+ - "\u050b\7q\2\2\u050b\u0706\7n\2\2\u050c\u050d\7r\2\2\u050d\u050e\7n\2\2"+ - "\u050e\u0706\7c\2\2\u050f\u0510\7r\2\2\u0510\u0511\7n\2\2\u0511\u0706"+ - "\7r\2\2\u0512\u0513\7d\2\2\u0513\u0514\7o\2\2\u0514\u0706\7k\2\2\u0515"+ - "\u0516\7u\2\2\u0516\u0517\7g\2\2\u0517\u0706\7e\2\2\u0518\u0519\7t\2\2"+ - "\u0519\u051a\7v\2\2\u051a\u0706\7k\2\2\u051b\u051c\7g\2\2\u051c\u051d"+ - "\7q\2\2\u051d\u0706\7t\2\2\u051e\u051f\7u\2\2\u051f\u0520\7t\2\2\u0520"+ - "\u0706\7g\2\2\u0521\u0522\7n\2\2\u0522\u0523\7u\2\2\u0523\u0706\7t\2\2"+ - "\u0524\u0525\7r\2\2\u0525\u0526\7j\2\2\u0526\u0706\7c\2\2\u0527\u0528"+ - "\7c\2\2\u0528\u0529\7n\2\2\u0529\u0706\7t\2\2\u052a\u052b\7l\2\2\u052b"+ - "\u052c\7o\2\2\u052c\u0706\7r\2\2\u052d\u052e\7d\2\2\u052e\u052f\7x\2\2"+ - "\u052f\u0706\7e\2\2\u0530\u0531\7e\2\2\u0531\u0532\7n\2\2\u0532\u0706"+ - "\7k\2\2\u0533\u0534\7t\2\2\u0534\u0535\7v\2\2\u0535\u0706\7u\2\2\u0536"+ - "\u0537\7c\2\2\u0537\u0538\7f\2\2\u0538\u0706\7e\2\2\u0539\u053a\7t\2\2"+ - "\u053a\u053b\7t\2\2\u053b\u0706\7c\2\2\u053c\u053d\7d\2\2\u053d\u053e"+ - "\7x\2\2\u053e\u0706\7u\2\2\u053f\u0540\7u\2\2\u0540\u0541\7g\2\2\u0541"+ - "\u0706\7k\2\2\u0542\u0543\7u\2\2\u0543\u0544\7c\2\2\u0544\u0706\7z\2\2"+ - "\u0545\u0546\7u\2\2\u0546\u0547\7v\2\2\u0547\u0706\7{\2\2\u0548\u0549"+ - "\7u\2\2\u0549\u054a\7v\2\2\u054a\u0706\7c\2\2\u054b\u054c\7u\2\2\u054c"+ - "\u054d\7v\2\2\u054d\u0706\7z\2\2\u054e\u054f\7f\2\2\u054f\u0550\7g\2\2"+ - "\u0550\u0706\7{\2\2\u0551\u0552\7v\2\2\u0552\u0553\7z\2\2\u0553\u0706"+ - "\7c\2\2\u0554\u0555\7z\2\2\u0555\u0556\7c\2\2\u0556\u0706\7c\2\2\u0557"+ - "\u0558\7d\2\2\u0558\u0559\7e\2\2\u0559\u0706\7e\2\2\u055a\u055b\7c\2\2"+ - "\u055b\u055c\7j\2\2\u055c\u0706\7z\2\2\u055d\u055e\7v\2\2\u055e\u055f"+ - "\7{\2\2\u055f\u0706\7c\2\2\u0560\u0561\7v\2\2\u0561\u0562\7z\2\2\u0562"+ - "\u0706\7u\2\2\u0563\u0564\7v\2\2\u0564\u0565\7c\2\2\u0565\u0706\7u\2\2"+ - "\u0566\u0567\7u\2\2\u0567\u0568\7j\2\2\u0568\u0706\7{\2\2\u0569\u056a"+ - "\7u\2\2\u056a\u056b\7j\2\2\u056b\u0706\7z\2\2\u056c\u056d\7n\2\2\u056d"+ - "\u056e\7f\2\2\u056e\u0706\7{\2\2\u056f\u0570\7n\2\2\u0570\u0571\7f\2\2"+ - "\u0571\u0706\7c\2\2\u0572\u0573\7n\2\2\u0573\u0574\7f\2\2\u0574\u0706"+ - "\7z\2\2\u0575\u0576\7n\2\2\u0576\u0577\7c\2\2\u0577\u0706\7z\2\2\u0578"+ - "\u0579\7v\2\2\u0579\u057a\7c\2\2\u057a\u0706\7{\2\2\u057b\u057c\7v\2\2"+ - "\u057c\u057d\7c\2\2\u057d\u0706\7z\2\2\u057e\u057f\7d\2\2\u057f\u0580"+ - "\7e\2\2\u0580\u0706\7u\2\2\u0581\u0582\7e\2\2\u0582\u0583\7n\2\2\u0583"+ - "\u0706\7x\2\2\u0584\u0585\7v\2\2\u0585\u0586\7u\2\2\u0586\u0706\7z\2\2"+ - "\u0587\u0588\7n\2\2\u0588\u0589\7c\2\2\u0589\u0706\7u\2\2\u058a\u058b"+ - "\7e\2\2\u058b\u058c\7r\2\2\u058c\u0706\7{\2\2\u058d\u058e\7e\2\2\u058e"+ - "\u058f\7o\2\2\u058f\u0706\7r\2\2\u0590\u0591\7e\2\2\u0591\u0592\7r\2\2"+ - "\u0592\u0706\7z\2\2\u0593\u0594\7f\2\2\u0594\u0595\7e\2\2\u0595\u0706"+ - "\7r\2\2\u0596\u0597\7f\2\2\u0597\u0598\7g\2\2\u0598\u0706\7e\2\2\u0599"+ - "\u059a\7k\2\2\u059a\u059b\7p\2\2\u059b\u0706\7e\2\2\u059c\u059d\7c\2\2"+ - "\u059d\u059e\7z\2\2\u059e\u0706\7u\2\2\u059f\u05a0\7d\2\2\u05a0\u05a1"+ - "\7p\2\2\u05a1\u0706\7g\2\2\u05a2\u05a3\7e\2\2\u05a3\u05a4\7n\2\2\u05a4"+ - "\u0706\7f\2\2\u05a5\u05a6\7u\2\2\u05a6\u05a7\7d\2\2\u05a7\u0706\7e\2\2"+ - "\u05a8\u05a9\7k\2\2\u05a9\u05aa\7u\2\2\u05aa\u0706\7e\2\2\u05ab\u05ac"+ - "\7k\2\2\u05ac\u05ad\7p\2\2\u05ad\u0706\7z\2\2\u05ae\u05af\7d\2\2\u05af"+ - "\u05b0\7g\2\2\u05b0\u0706\7s\2\2\u05b1\u05b2\7u\2\2\u05b2\u05b3\7g\2\2"+ - "\u05b3\u0706\7f\2\2\u05b4\u05b5\7f\2\2\u05b5\u05b6\7g\2\2\u05b6\u0706"+ - "\7z\2\2\u05b7\u05b8\7k\2\2\u05b8\u05b9\7p\2\2\u05b9\u0706\7{\2\2\u05ba"+ - "\u05bb\7t\2\2\u05bb\u05bc\7q\2\2\u05bc\u0706\7t\2\2\u05bd\u05be\7d\2\2"+ - "\u05be\u05bf\7d\2\2\u05bf\u05c0\7t\2\2\u05c0\u0706\7\62\2\2\u05c1\u05c2"+ - "\7d\2\2\u05c2\u05c3\7d\2\2\u05c3\u05c4\7t\2\2\u05c4\u0706\7\63\2\2\u05c5"+ - "\u05c6\7d\2\2\u05c6\u05c7\7d\2\2\u05c7\u05c8\7t\2\2\u05c8\u0706\7\64\2"+ - "\2\u05c9\u05ca\7d\2\2\u05ca\u05cb\7d\2\2\u05cb\u05cc\7t\2\2\u05cc\u0706"+ - "\7\65\2\2\u05cd\u05ce\7d\2\2\u05ce\u05cf\7d\2\2\u05cf\u05d0\7t\2\2\u05d0"+ - "\u0706\7\66\2\2\u05d1\u05d2\7d\2\2\u05d2\u05d3\7d\2\2\u05d3\u05d4\7t\2"+ - "\2\u05d4\u0706\7\67\2\2\u05d5\u05d6\7d\2\2\u05d6\u05d7\7d\2\2\u05d7\u05d8"+ - "\7t\2\2\u05d8\u0706\78\2\2\u05d9\u05da\7d\2\2\u05da\u05db\7d\2\2\u05db"+ - "\u05dc\7t\2\2\u05dc\u0706\79\2\2\u05dd\u05de\7d\2\2\u05de\u05df\7d\2\2"+ - "\u05df\u05e0\7u\2\2\u05e0\u0706\7\62\2\2\u05e1\u05e2\7d\2\2\u05e2\u05e3"+ - "\7d\2\2\u05e3\u05e4\7u\2\2\u05e4\u0706\7\63\2\2\u05e5\u05e6\7d\2\2\u05e6"+ - "\u05e7\7d\2\2\u05e7\u05e8\7u\2\2\u05e8\u0706\7\64\2\2\u05e9\u05ea\7d\2"+ - "\2\u05ea\u05eb\7d\2\2\u05eb\u05ec\7u\2\2\u05ec\u0706\7\65\2\2\u05ed\u05ee"+ - "\7d\2\2\u05ee\u05ef\7d\2\2\u05ef\u05f0\7u\2\2\u05f0\u0706\7\66\2\2\u05f1"+ - "\u05f2\7d\2\2\u05f2\u05f3\7d\2\2\u05f3\u05f4\7u\2\2\u05f4\u0706\7\67\2"+ - "\2\u05f5\u05f6\7d\2\2\u05f6\u05f7\7d\2\2\u05f7\u05f8\7u\2\2\u05f8\u0706"+ - "\78\2\2\u05f9\u05fa\7d\2\2\u05fa\u05fb\7d\2\2\u05fb\u05fc\7u\2\2\u05fc"+ - "\u0706\79\2\2\u05fd\u05fe\7d\2\2\u05fe\u05ff\7t\2\2\u05ff\u0706\7c\2\2"+ - "\u0600\u0601\7r\2\2\u0601\u0602\7j\2\2\u0602\u0706\7z\2\2\u0603\u0604"+ - "\7r\2\2\u0604\u0605\7j\2\2\u0605\u0706\7{\2\2\u0606\u0607\7r\2\2\u0607"+ - "\u0608\7n\2\2\u0608\u0706\7z\2\2\u0609\u060a\7r\2\2\u060a\u060b\7n\2\2"+ - "\u060b\u0706\7{\2\2\u060c\u060d\7t\2\2\u060d\u060e\7o\2\2\u060e\u060f"+ - "\7d\2\2\u060f\u0706\7\62\2\2\u0610\u0611\7t\2\2\u0611\u0612\7o\2\2\u0612"+ - "\u0613\7d\2\2\u0613\u0706\7\63\2\2\u0614\u0615\7t\2\2\u0615\u0616\7o\2"+ - "\2\u0616\u0617\7d\2\2\u0617\u0706\7\64\2\2\u0618\u0619\7t\2\2\u0619\u061a"+ - "\7o\2\2\u061a\u061b\7d\2\2\u061b\u0706\7\65\2\2\u061c\u061d\7t\2\2\u061d"+ - "\u061e\7o\2\2\u061e\u061f\7d\2\2\u061f\u0706\7\66\2\2\u0620\u0621\7t\2"+ - "\2\u0621\u0622\7o\2\2\u0622\u0623\7d\2\2\u0623\u0706\7\67\2\2\u0624\u0625"+ - "\7t\2\2\u0625\u0626\7o\2\2\u0626\u0627\7d\2\2\u0627\u0706\78\2\2\u0628"+ - "\u0629\7t\2\2\u0629\u062a\7o\2\2\u062a\u062b\7d\2\2\u062b\u0706\79\2\2"+ - "\u062c\u062d\7u\2\2\u062d\u062e\7o\2\2\u062e\u062f\7d\2\2\u062f\u0706"+ - "\7\62\2\2\u0630\u0631\7u\2\2\u0631\u0632\7o\2\2\u0632\u0633\7d\2\2\u0633"+ - "\u0706\7\63\2\2\u0634\u0635\7u\2\2\u0635\u0636\7o\2\2\u0636\u0637\7d\2"+ - "\2\u0637\u0706\7\64\2\2\u0638\u0639\7u\2\2\u0639\u063a\7o\2\2\u063a\u063b"+ - "\7d\2\2\u063b\u0706\7\65\2\2\u063c\u063d\7u\2\2\u063d\u063e\7o\2\2\u063e"+ - "\u063f\7d\2\2\u063f\u0706\7\66\2\2\u0640\u0641\7u\2\2\u0641\u0642\7o\2"+ - "\2\u0642\u0643\7d\2\2\u0643\u0706\7\67\2\2\u0644\u0645\7u\2\2\u0645\u0646"+ - "\7o\2\2\u0646\u0647\7d\2\2\u0647\u0706\78\2\2\u0648\u0649\7u\2\2\u0649"+ - "\u064a\7o\2\2\u064a\u064b\7d\2\2\u064b\u0706\79\2\2\u064c\u064d\7u\2\2"+ - "\u064d\u064e\7v\2\2\u064e\u0706\7r\2\2\u064f\u0650\7u\2\2\u0650\u0651"+ - "\7v\2\2\u0651\u0706\7|\2\2\u0652\u0653\7v\2\2\u0653\u0654\7t\2\2\u0654"+ - "\u0706\7d\2\2\u0655\u0656\7v\2\2\u0656\u0657\7u\2\2\u0657\u0706\7d\2\2"+ - "\u0658\u0659\7y\2\2\u0659\u065a\7c\2\2\u065a\u0706\7k\2\2\u065b\u065c"+ - "\7e\2\2\u065c\u065d\7n\2\2\u065d\u0706\7g\2\2\u065e\u065f\7u\2\2\u065f"+ - "\u0660\7g\2\2\u0660\u0706\7g\2\2\u0661\u0662\7v\2\2\u0662\u0663\7u\2\2"+ - "\u0663\u0706\7{\2\2\u0664\u0665\7n\2\2\u0665\u0666\7d\2\2\u0666\u0667"+ - "\7r\2\2\u0667\u0706\7n\2\2\u0668\u0669\7k\2\2\u0669\u066a\7p\2\2\u066a"+ - "\u0706\7|\2\2\u066b\u066c\7v\2\2\u066c\u066d\7{\2\2\u066d\u0706\7u\2\2"+ - "\u066e\u066f\7n\2\2\u066f\u0670\7d\2\2\u0670\u0671\7o\2\2\u0671\u0706"+ - "\7k\2\2\u0672\u0673\7f\2\2\u0673\u0674\7g\2\2\u0674\u0706\7|\2\2\u0675"+ - "\u0676\7p\2\2\u0676\u0677\7g\2\2\u0677\u0706\7i\2\2\u0678\u0679\7c\2\2"+ - "\u0679\u067a\7u\2\2\u067a\u0706\7t\2\2\u067b\u067c\7v\2\2\u067c\u067d"+ - "\7c\2\2\u067d\u0706\7|\2\2\u067e\u067f\7n\2\2\u067f\u0680\7d\2\2\u0680"+ - "\u0681\7x\2\2\u0681\u0706\7e\2\2\u0682\u0683\7v\2\2\u0683\u0684\7c\2\2"+ - "\u0684\u0706\7d\2\2\u0685\u0686\7o\2\2\u0686\u0687\7c\2\2\u0687\u0706"+ - "\7r\2\2\u0688\u0689\7t\2\2\u0689\u068a\7v\2\2\u068a\u0706\7p\2\2\u068b"+ - "\u068c\7n\2\2\u068c\u068d\7d\2\2\u068d\u068e\7u\2\2\u068e\u0706\7t\2\2"+ - "\u068f\u0690\7v\2\2\u0690\u0691\7|\2\2\u0691\u0706\7c\2\2\u0692\u0693"+ - "\7n\2\2\u0693\u0694\7d\2\2\u0694\u0695\7x\2\2\u0695\u0706\7u\2\2\u0696"+ - "\u0697\7v\2\2\u0697\u0698\7d\2\2\u0698\u0706\7c\2\2\u0699\u069a\7n\2\2"+ - "\u069a\u069b\7d\2\2\u069b\u069c\7t\2\2\u069c\u0706\7c\2\2\u069d\u069e"+ - "\7n\2\2\u069e\u069f\7d\2\2\u069f\u06a0\7e\2\2\u06a0\u0706\7e\2\2\u06a1"+ - "\u06a2\7n\2\2\u06a2\u06a3\7f\2\2\u06a3\u0706\7|\2\2\u06a4\u06a5\7n\2\2"+ - "\u06a5\u06a6\7d\2\2\u06a6\u06a7\7e\2\2\u06a7\u0706\7u\2\2\u06a8\u06a9"+ - "\7e\2\2\u06a9\u06aa\7r\2\2\u06aa\u0706\7|\2\2\u06ab\u06ac\7f\2\2\u06ac"+ - "\u06ad\7g\2\2\u06ad\u0706\7y\2\2\u06ae\u06af\7c\2\2\u06af\u06b0\7u\2\2"+ - "\u06b0\u0706\7y\2\2\u06b1\u06b2\7n\2\2\u06b2\u06b3\7d\2\2\u06b3\u06b4"+ - "\7p\2\2\u06b4\u0706\7g\2\2\u06b5\u06b6\7r\2\2\u06b6\u06b7\7j\2\2\u06b7"+ - "\u0706\7|\2\2\u06b8\u06b9\7k\2\2\u06b9\u06ba\7p\2\2\u06ba\u0706\7y\2\2"+ - "\u06bb\u06bc\7t\2\2\u06bc\u06bd\7q\2\2\u06bd\u0706\7y\2\2\u06be\u06bf"+ - "\7n\2\2\u06bf\u06c0\7d\2\2\u06c0\u06c1\7g\2\2\u06c1\u0706\7s\2\2\u06c2"+ - "\u06c3\7r\2\2\u06c3\u06c4\7j\2\2\u06c4\u0706\7y\2\2\u06c5\u06c6\7r\2\2"+ - "\u06c6\u06c7\7n\2\2\u06c7\u0706\7|\2\2\u06c8\u06c9\7g\2\2\u06c9\u06ca"+ - "\7q\2\2\u06ca\u0706\7o\2\2\u06cb\u06cc\7c\2\2\u06cc\u06cd\7f\2\2\u06cd"+ - "\u06ce\7e\2\2\u06ce\u0706\7s\2\2\u06cf\u06d0\7c\2\2\u06d0\u06d1\7p\2\2"+ - "\u06d1\u06d2\7f\2\2\u06d2\u0706\7s\2\2\u06d3\u06d4\7c\2\2\u06d4\u06d5"+ - "\7u\2\2\u06d5\u06d6\7n\2\2\u06d6\u0706\7s\2\2\u06d7\u06d8\7c\2\2\u06d8"+ - "\u06d9\7u\2\2\u06d9\u06da\7t\2\2\u06da\u0706\7s\2\2\u06db\u06dc\7d\2\2"+ - "\u06dc\u06dd\7k\2\2\u06dd\u06de\7v\2\2\u06de\u0706\7s\2\2\u06df\u06e0"+ - "\7e\2\2\u06e0\u06e1\7r\2\2\u06e1\u0706\7s\2\2\u06e2\u06e3\7f\2\2\u06e3"+ - "\u06e4\7g\2\2\u06e4\u0706\7s\2\2\u06e5\u06e6\7g\2\2\u06e6\u06e7\7q\2\2"+ - "\u06e7\u06e8\7t\2\2\u06e8\u0706\7s\2\2\u06e9\u06ea\7k\2\2\u06ea\u06eb"+ - "\7p\2\2\u06eb\u0706\7s\2\2\u06ec\u06ed\7n\2\2\u06ed\u06ee\7f\2\2\u06ee"+ - "\u0706\7s\2\2\u06ef\u06f0\7n\2\2\u06f0\u06f1\7u\2\2\u06f1\u06f2\7t\2\2"+ - "\u06f2\u0706\7s\2\2\u06f3\u06f4\7q\2\2\u06f4\u06f5\7t\2\2\u06f5\u0706"+ - "\7s\2\2\u06f6\u06f7\7t\2\2\u06f7\u06f8\7q\2\2\u06f8\u06f9\7n\2\2\u06f9"+ - "\u0706\7s\2\2\u06fa\u06fb\7t\2\2\u06fb\u06fc\7q\2\2\u06fc\u06fd\7t\2\2"+ - "\u06fd\u0706\7s\2\2\u06fe\u06ff\7u\2\2\u06ff\u0700\7d\2\2\u0700\u0701"+ - "\7e\2\2\u0701\u0706\7s\2\2\u0702\u0703\7u\2\2\u0703\u0704\7v\2\2\u0704"+ - "\u0706\7s\2\2\u0705\u04df\3\2\2\2\u0705\u04e2\3\2\2\2\u0705\u04e5\3\2"+ - "\2\2\u0705\u04e8\3\2\2\2\u0705\u04eb\3\2\2\2\u0705\u04ee\3\2\2\2\u0705"+ - "\u04f1\3\2\2\2\u0705\u04f4\3\2\2\2\u0705\u04f7\3\2\2\2\u0705\u04fa\3\2"+ - "\2\2\u0705\u04fd\3\2\2\2\u0705\u0500\3\2\2\2\u0705\u0503\3\2\2\2\u0705"+ - "\u0506\3\2\2\2\u0705\u0509\3\2\2\2\u0705\u050c\3\2\2\2\u0705\u050f\3\2"+ - "\2\2\u0705\u0512\3\2\2\2\u0705\u0515\3\2\2\2\u0705\u0518\3\2\2\2\u0705"+ - "\u051b\3\2\2\2\u0705\u051e\3\2\2\2\u0705\u0521\3\2\2\2\u0705\u0524\3\2"+ - "\2\2\u0705\u0527\3\2\2\2\u0705\u052a\3\2\2\2\u0705\u052d\3\2\2\2\u0705"+ - "\u0530\3\2\2\2\u0705\u0533\3\2\2\2\u0705\u0536\3\2\2\2\u0705\u0539\3\2"+ - "\2\2\u0705\u053c\3\2\2\2\u0705\u053f\3\2\2\2\u0705\u0542\3\2\2\2\u0705"+ - "\u0545\3\2\2\2\u0705\u0548\3\2\2\2\u0705\u054b\3\2\2\2\u0705\u054e\3\2"+ - "\2\2\u0705\u0551\3\2\2\2\u0705\u0554\3\2\2\2\u0705\u0557\3\2\2\2\u0705"+ - "\u055a\3\2\2\2\u0705\u055d\3\2\2\2\u0705\u0560\3\2\2\2\u0705\u0563\3\2"+ - "\2\2\u0705\u0566\3\2\2\2\u0705\u0569\3\2\2\2\u0705\u056c\3\2\2\2\u0705"+ - "\u056f\3\2\2\2\u0705\u0572\3\2\2\2\u0705\u0575\3\2\2\2\u0705\u0578\3\2"+ - "\2\2\u0705\u057b\3\2\2\2\u0705\u057e\3\2\2\2\u0705\u0581\3\2\2\2\u0705"+ - "\u0584\3\2\2\2\u0705\u0587\3\2\2\2\u0705\u058a\3\2\2\2\u0705\u058d\3\2"+ - "\2\2\u0705\u0590\3\2\2\2\u0705\u0593\3\2\2\2\u0705\u0596\3\2\2\2\u0705"+ - "\u0599\3\2\2\2\u0705\u059c\3\2\2\2\u0705\u059f\3\2\2\2\u0705\u05a2\3\2"+ - "\2\2\u0705\u05a5\3\2\2\2\u0705\u05a8\3\2\2\2\u0705\u05ab\3\2\2\2\u0705"+ - "\u05ae\3\2\2\2\u0705\u05b1\3\2\2\2\u0705\u05b4\3\2\2\2\u0705\u05b7\3\2"+ - "\2\2\u0705\u05ba\3\2\2\2\u0705\u05bd\3\2\2\2\u0705\u05c1\3\2\2\2\u0705"+ - "\u05c5\3\2\2\2\u0705\u05c9\3\2\2\2\u0705\u05cd\3\2\2\2\u0705\u05d1\3\2"+ - "\2\2\u0705\u05d5\3\2\2\2\u0705\u05d9\3\2\2\2\u0705\u05dd\3\2\2\2\u0705"+ - "\u05e1\3\2\2\2\u0705\u05e5\3\2\2\2\u0705\u05e9\3\2\2\2\u0705\u05ed\3\2"+ - "\2\2\u0705\u05f1\3\2\2\2\u0705\u05f5\3\2\2\2\u0705\u05f9\3\2\2\2\u0705"+ - "\u05fd\3\2\2\2\u0705\u0600\3\2\2\2\u0705\u0603\3\2\2\2\u0705\u0606\3\2"+ - "\2\2\u0705\u0609\3\2\2\2\u0705\u060c\3\2\2\2\u0705\u0610\3\2\2\2\u0705"+ - "\u0614\3\2\2\2\u0705\u0618\3\2\2\2\u0705\u061c\3\2\2\2\u0705\u0620\3\2"+ - "\2\2\u0705\u0624\3\2\2\2\u0705\u0628\3\2\2\2\u0705\u062c\3\2\2\2\u0705"+ - "\u0630\3\2\2\2\u0705\u0634\3\2\2\2\u0705\u0638\3\2\2\2\u0705\u063c\3\2"+ - "\2\2\u0705\u0640\3\2\2\2\u0705\u0644\3\2\2\2\u0705\u0648\3\2\2\2\u0705"+ - "\u064c\3\2\2\2\u0705\u064f\3\2\2\2\u0705\u0652\3\2\2\2\u0705\u0655\3\2"+ - "\2\2\u0705\u0658\3\2\2\2\u0705\u065b\3\2\2\2\u0705\u065e\3\2\2\2\u0705"+ - "\u0661\3\2\2\2\u0705\u0664\3\2\2\2\u0705\u0668\3\2\2\2\u0705\u066b\3\2"+ - "\2\2\u0705\u066e\3\2\2\2\u0705\u0672\3\2\2\2\u0705\u0675\3\2\2\2\u0705"+ - "\u0678\3\2\2\2\u0705\u067b\3\2\2\2\u0705\u067e\3\2\2\2\u0705\u0682\3\2"+ - "\2\2\u0705\u0685\3\2\2\2\u0705\u0688\3\2\2\2\u0705\u068b\3\2\2\2\u0705"+ - "\u068f\3\2\2\2\u0705\u0692\3\2\2\2\u0705\u0696\3\2\2\2\u0705\u0699\3\2"+ - "\2\2\u0705\u069d\3\2\2\2\u0705\u06a1\3\2\2\2\u0705\u06a4\3\2\2\2\u0705"+ - "\u06a8\3\2\2\2\u0705\u06ab\3\2\2\2\u0705\u06ae\3\2\2\2\u0705\u06b1\3\2"+ - "\2\2\u0705\u06b5\3\2\2\2\u0705\u06b8\3\2\2\2\u0705\u06bb\3\2\2\2\u0705"+ - "\u06be\3\2\2\2\u0705\u06c2\3\2\2\2\u0705\u06c5\3\2\2\2\u0705\u06c8\3\2"+ - "\2\2\u0705\u06cb\3\2\2\2\u0705\u06cf\3\2\2\2\u0705\u06d3\3\2\2\2\u0705"+ - "\u06d7\3\2\2\2\u0705\u06db\3\2\2\2\u0705\u06df\3\2\2\2\u0705\u06e2\3\2"+ - "\2\2\u0705\u06e5\3\2\2\2\u0705\u06e9\3\2\2\2\u0705\u06ec\3\2\2\2\u0705"+ - "\u06ef\3\2\2\2\u0705\u06f3\3\2\2\2\u0705\u06f6\3\2\2\2\u0705\u06fa\3\2"+ - "\2\2\u0705\u06fe\3\2\2\2\u0705\u0702\3\2\2\2\u0706\u010a\3\2\2\2\u0707"+ - "\u0708\7%\2\2\u0708\u010c\3\2\2\2\u0709\u070a\7<\2\2\u070a\u010e\3\2\2"+ - "\2\u070b\u070c\7.\2\2\u070c\u0110\3\2\2\2\u070d\u070e\7*\2\2\u070e\u0112"+ - "\3\2\2\2\u070f\u0710\7+\2\2\u0710\u0114\3\2\2\2\u0711\u0712\7]\2\2\u0712"+ - "\u0116\3\2\2\2\u0713\u0714\7_\2\2\u0714\u0118\3\2\2\2\u0715\u0716\7\60"+ - "\2\2\u0716\u011a\3\2\2\2\u0717\u0718\7>\2\2\u0718\u0719\7>\2\2\u0719\u011c"+ - "\3\2\2\2\u071a\u071b\7@\2\2\u071b\u071c\7@\2\2\u071c\u011e\3\2\2\2\u071d"+ - "\u071e\7-\2\2\u071e\u0120\3\2\2\2\u071f\u0720\7/\2\2\u0720\u0122\3\2\2"+ - "\2\u0721\u0722\7>\2\2\u0722\u0124\3\2\2\2\u0723\u0724\7@\2\2\u0724\u0126"+ - "\3\2\2\2\u0725\u0726\7,\2\2\u0726\u0128\3\2\2\2\u0727\u0728\7\61\2\2\u0728"+ - "\u012a\3\2\2\2\u0729\u072a\7}\2\2\u072a\u072b\b\u0095\t\2\u072b\u012c"+ - "\3\2\2\2\u072c\u072d\7\177\2\2\u072d\u072e\b\u0096\n\2\u072e\u012e\3\2"+ - "\2\2\u072f\u0732\5\u0131\u0098\2\u0730\u0732\5\u0139\u009c\2\u0731\u072f"+ - "\3\2\2\2\u0731\u0730\3\2\2\2\u0732\u0130\3\2\2\2\u0733\u0737\5\u0133\u0099"+ - "\2\u0734\u0737\5\u0135\u009a\2\u0735\u0737\5\u0137\u009b\2\u0736\u0733"+ - "\3\2\2\2\u0736\u0734\3\2\2\2\u0736\u0735\3\2\2\2\u0737\u0132\3\2\2\2\u0738"+ - "\u073c\7\'\2\2\u0739\u073b\5\u0141\u00a0\2\u073a\u0739\3\2\2\2\u073b\u073e"+ - "\3\2\2\2\u073c\u073a\3\2\2\2\u073c\u073d\3\2\2\2\u073d\u073f\3\2\2\2\u073e"+ - "\u073c\3\2\2\2\u073f\u0741\7\60\2\2\u0740\u0742\5\u0141\u00a0\2\u0741"+ - "\u0740\3\2\2\2\u0742\u0743\3\2\2\2\u0743\u0741\3\2\2\2\u0743\u0744\3\2"+ - "\2\2\u0744\u0134\3\2\2\2\u0745\u0747\5\u0143\u00a1\2\u0746\u0745\3\2\2"+ - "\2\u0747\u074a\3\2\2\2\u0748\u0746\3\2\2\2\u0748\u0749\3\2\2\2\u0749\u074b"+ - "\3\2\2\2\u074a\u0748\3\2\2\2\u074b\u074d\7\60\2\2\u074c\u074e\5\u0143"+ - "\u00a1\2\u074d\u074c\3\2\2\2\u074e\u074f\3\2\2\2\u074f\u074d\3\2\2\2\u074f"+ - "\u0750\3\2\2\2\u0750\u0136\3\2\2\2\u0751\u0755\7&\2\2\u0752\u0754\5\u0145"+ - "\u00a2\2\u0753\u0752\3\2\2\2\u0754\u0757\3\2\2\2\u0755\u0753\3\2\2\2\u0755"+ - "\u0756\3\2\2\2\u0756\u0758\3\2\2\2\u0757\u0755\3\2\2\2\u0758\u075a\7\60"+ - "\2\2\u0759\u075b\5\u0145\u00a2\2\u075a\u0759\3\2\2\2\u075b\u075c\3\2\2"+ - "\2\u075c\u075a\3\2\2\2\u075c\u075d\3\2\2\2\u075d\u0138\3\2\2\2\u075e\u0762"+ - "\5\u013d\u009e\2\u075f\u0762\5\u013f\u009f\2\u0760\u0762\5\u013b\u009d"+ - "\2\u0761\u075e\3\2\2\2\u0761\u075f\3\2\2\2\u0761\u0760\3\2\2\2\u0762\u013a"+ - "\3\2\2\2\u0763\u0765\7\'\2\2\u0764\u0766\5\u0141\u00a0\2\u0765\u0764\3"+ - "\2\2\2\u0766\u0767\3\2\2\2\u0767\u0765\3\2\2\2\u0767\u0768\3\2\2\2\u0768"+ - "\u013c\3\2\2\2\u0769\u076b\5\u0143\u00a1\2\u076a\u0769\3\2\2\2\u076b\u076c"+ - "\3\2\2\2\u076c\u076a\3\2\2\2\u076c\u076d\3\2\2\2\u076d\u013e\3\2\2\2\u076e"+ - "\u0770\7&\2\2\u076f\u0771\5\u0145\u00a2\2\u0770\u076f\3\2\2\2\u0771\u0772"+ - "\3\2\2\2\u0772\u0770\3\2\2\2\u0772\u0773\3\2\2\2\u0773\u0140\3\2\2\2\u0774"+ - "\u0775\t\5\2\2\u0775\u0142\3\2\2\2\u0776\u0777\t\6\2\2\u0777\u0144\3\2"+ - "\2\2\u0778\u0779\t\7\2\2\u0779\u0146\3\2\2\2\u077a\u077e\7)\2\2\u077b"+ - "\u077c\7^\2\2\u077c\u077f\t\16\2\2\u077d\u077f\n\20\2\2\u077e\u077b\3"+ - "\2\2\2\u077e\u077d\3\2\2\2\u077f\u0780\3\2\2\2\u0780\u0781\7)\2\2\u0781"+ - "\u0148\3\2\2\2\u0782\u0784\5\u014b\u00a5\2\u0783\u0785\t\23\2\2\u0784"+ - "\u0783\3\2\2\2\u0785\u0786\3\2\2\2\u0786\u0784\3\2\2\2\u0786\u0787\3\2"+ - "\2\2\u0787\u014a\3\2\2\2\u0788\u078c\7#\2\2\u0789\u078b\5\u0151\u00a8"+ - "\2\u078a\u0789\3\2\2\2\u078b\u078e\3\2\2\2\u078c\u078a\3\2\2\2\u078c\u078d"+ - "\3\2\2\2\u078d\u014c\3\2\2\2\u078e\u078c\3\2\2\2\u078f\u0793\5\u014f\u00a7"+ - "\2\u0790\u0792\5\u0151\u00a8\2\u0791\u0790\3\2\2\2\u0792\u0795\3\2\2\2"+ - "\u0793\u0791\3\2\2\2\u0793\u0794\3\2\2\2\u0794\u014e\3\2\2\2\u0795\u0793"+ - "\3\2\2\2\u0796\u0797\t\b\2\2\u0797\u0150\3\2\2\2\u0798\u0799\t\t\2\2\u0799"+ - "\u0152\3\2\2\2\u079a\u079c\t\21\2\2\u079b\u079a\3\2\2\2\u079c\u079d\3"+ - "\2\2\2\u079d\u079b\3\2\2\2\u079d\u079e\3\2\2\2\u079e\u079f\3\2\2\2\u079f"+ - "\u07a0\b\u00a9\7\2\u07a0\u0154\3\2\2\2\u07a1\u07a2\7\61\2\2\u07a2\u07a3"+ - "\7\61\2\2\u07a3\u07a7\3\2\2\2\u07a4\u07a6\n\22\2\2\u07a5\u07a4\3\2\2\2"+ - "\u07a6\u07a9\3\2\2\2\u07a7\u07a5\3\2\2\2\u07a7\u07a8\3\2\2\2\u07a8\u07aa"+ - "\3\2\2\2\u07a9\u07a7\3\2\2\2\u07aa\u07ab\b\u00aa\b\2\u07ab\u0156\3\2\2"+ - "\2\u07ac\u07ad\7\61\2\2\u07ad\u07ae\7,\2\2\u07ae\u07b2\3\2\2\2\u07af\u07b1"+ - "\13\2\2\2\u07b0\u07af\3\2\2\2\u07b1\u07b4\3\2\2\2\u07b2\u07b3\3\2\2\2"+ - "\u07b2\u07b0\3\2\2\2\u07b3\u07b5\3\2\2\2\u07b4\u07b2\3\2\2\2\u07b5\u07b6"+ - "\7,\2\2\u07b6\u07b7\7\61\2\2\u07b7\u07b8\3\2\2\2\u07b8\u07b9\b\u00ab\b"+ - "\2\u07b9\u0158\3\2\2\2\u07ba\u07bc\7>\2\2\u07bb\u07bd\t\24\2\2\u07bc\u07bb"+ - "\3\2\2\2\u07bd\u07be\3\2\2\2\u07be\u07bc\3\2\2\2\u07be\u07bf\3\2\2\2\u07bf"+ - "\u07c0\3\2\2\2\u07c0\u07c1\7@\2\2\u07c1\u07c2\b\u00ac\13\2\u07c2\u015a"+ - "\3\2\2\2\u07c3\u07c9\7$\2\2\u07c4\u07c5\7^\2\2\u07c5\u07c8\7$\2\2\u07c6"+ - "\u07c8\n\n\2\2\u07c7\u07c4\3\2\2\2\u07c7\u07c6\3\2\2\2\u07c8\u07cb\3\2"+ - "\2\2\u07c9\u07c7\3\2\2\2\u07c9\u07ca\3\2\2\2\u07ca\u07cc\3\2\2\2\u07cb"+ - "\u07c9\3\2\2\2\u07cc\u07cd\7$\2\2\u07cd\u07ce\b\u00ad\f\2\u07ce\u015c"+ - "\3\2\2\2\u07cf\u07d1\t\21\2\2\u07d0\u07cf\3\2\2\2\u07d1\u07d2\3\2\2\2"+ - "\u07d2\u07d0\3\2\2\2\u07d2\u07d3\3\2\2\2\u07d3\u07d4\3\2\2\2\u07d4\u07d5"+ - "\b\u00ae\7\2\u07d5\u015e\3\2\2\2\u07d6\u07d7\7\61\2\2\u07d7\u07d8\7\61"+ - "\2\2\u07d8\u07dc\3\2\2\2\u07d9\u07db\n\22\2\2\u07da\u07d9\3\2\2\2\u07db"+ - "\u07de\3\2\2\2\u07dc\u07da\3\2\2\2\u07dc\u07dd\3\2\2\2\u07dd\u07df\3\2"+ - "\2\2\u07de\u07dc\3\2\2\2\u07df\u07e0\b\u00af\b\2\u07e0\u0160\3\2\2\2\u07e1"+ - "\u07e2\7\61\2\2\u07e2\u07e3\7,\2\2\u07e3\u07e7\3\2\2\2\u07e4\u07e6\13"+ - "\2\2\2\u07e5\u07e4\3\2\2\2\u07e6\u07e9\3\2\2\2\u07e7\u07e8\3\2\2\2\u07e7"+ - "\u07e5\3\2\2\2\u07e8\u07ea\3\2\2\2\u07e9\u07e7\3\2\2\2\u07ea\u07eb\7,"+ - "\2\2\u07eb\u07ec\7\61\2\2\u07ec\u07ed\3\2\2\2\u07ed\u07ee\b\u00b0\b\2"+ - "\u07ee\u0162\3\2\2\2D\2\3\4\u01d0\u02bf\u037e\u03a5\u03b0\u03b8\u03e8"+ - "\u0420\u0425\u042c\u0431\u0438\u043d\u0444\u044b\u0450\u0457\u045c\u0461"+ - "\u0468\u046e\u0470\u0475\u047c\u0481\u048d\u049a\u049c\u04a1\u04a5\u04a7"+ - "\u04aa\u04b2\u04b5\u04bc\u04c6\u04d1\u0705\u0731\u0736\u073c\u0743\u0748"+ - "\u074f\u0755\u075c\u0761\u0767\u076c\u0772\u077e\u0786\u078c\u0793\u079d"+ - "\u07a7\u07b2\u07be\u07c7\u07c9\u07d2\u07dc\u07e7\r\3\2\2\3O\3\3b\4\3c"+ - "\5\3{\6\2\3\2\2\4\2\3\u0095\7\3\u0096\b\3\u00ac\t\3\u00ad\n"; + "\u008f\u0127\2\u0129\2\u012b\2\u012d\u0090\u012f\u0091\u0131\u0092\u0133"+ + "\u0093\u0135\2\u0137\2\u0139\u0094\u013b\u0095\u013d\u0096\u013f\u0097"+ + "\u0141\u0098\u0143\u0099\u0145\u009a\u0147\u009b\5\2\3\4\25\4\2uuww\7"+ + "\2dfkknnuuyy\4\2DDdd\3\2\62\63\3\2\62;\5\2\62;CHch\5\2C\\aac|\6\2\62;"+ + "C\\aac|\3\2$$\3\2||\4\2rruu\4\2ooww\7\2$$))hhpptt\4\2\62;ch\3\2))\6\2"+ + "\13\f\17\17\"\"\u00a2\u00a2\4\2\f\f\17\17\4\2--//\7\2/;C\\^^aac|\2\u0854"+ + "\2\5\3\2\2\2\2\7\3\2\2\2\2\t\3\2\2\2\2\13\3\2\2\2\2\r\3\2\2\2\2\17\3\2"+ + "\2\2\2\21\3\2\2\2\2\23\3\2\2\2\2\25\3\2\2\2\2\27\3\2\2\2\2\31\3\2\2\2"+ + "\2\33\3\2\2\2\2\35\3\2\2\2\2\37\3\2\2\2\2!\3\2\2\2\2#\3\2\2\2\2%\3\2\2"+ + "\2\2\'\3\2\2\2\2)\3\2\2\2\2+\3\2\2\2\2-\3\2\2\2\2/\3\2\2\2\2\61\3\2\2"+ + "\2\2\63\3\2\2\2\2\65\3\2\2\2\2\67\3\2\2\2\29\3\2\2\2\2;\3\2\2\2\2=\3\2"+ + "\2\2\2?\3\2\2\2\2A\3\2\2\2\2C\3\2\2\2\2E\3\2\2\2\2G\3\2\2\2\2I\3\2\2\2"+ + "\2K\3\2\2\2\2M\3\2\2\2\2O\3\2\2\2\2Q\3\2\2\2\2S\3\2\2\2\2U\3\2\2\2\2W"+ + "\3\2\2\2\2Y\3\2\2\2\2[\3\2\2\2\2]\3\2\2\2\2_\3\2\2\2\2a\3\2\2\2\2c\3\2"+ + "\2\2\2e\3\2\2\2\2g\3\2\2\2\2i\3\2\2\2\2k\3\2\2\2\2m\3\2\2\2\2o\3\2\2\2"+ + "\2q\3\2\2\2\2s\3\2\2\2\2u\3\2\2\2\2w\3\2\2\2\2y\3\2\2\2\2{\3\2\2\2\2}"+ + "\3\2\2\2\2\177\3\2\2\2\2\u0081\3\2\2\2\2\u0083\3\2\2\2\2\u0085\3\2\2\2"+ + "\2\u0087\3\2\2\2\2\u0089\3\2\2\2\2\u008b\3\2\2\2\2\u008d\3\2\2\2\2\u008f"+ + "\3\2\2\2\2\u0091\3\2\2\2\2\u0093\3\2\2\2\2\u0095\3\2\2\2\2\u0097\3\2\2"+ + "\2\2\u0099\3\2\2\2\2\u009b\3\2\2\2\2\u009d\3\2\2\2\2\u009f\3\2\2\2\2\u00a1"+ + "\3\2\2\2\2\u00a3\3\2\2\2\2\u00a5\3\2\2\2\2\u00a7\3\2\2\2\2\u00a9\3\2\2"+ + "\2\2\u00ab\3\2\2\2\2\u00ad\3\2\2\2\2\u00af\3\2\2\2\2\u00b1\3\2\2\2\2\u00b3"+ + "\3\2\2\2\2\u00b5\3\2\2\2\2\u00b7\3\2\2\2\2\u00b9\3\2\2\2\2\u00bb\3\2\2"+ + "\2\2\u00bd\3\2\2\2\2\u00bf\3\2\2\2\2\u00c1\3\2\2\2\2\u00c3\3\2\2\2\2\u00c5"+ + "\3\2\2\2\2\u00c7\3\2\2\2\2\u00c9\3\2\2\2\2\u00cb\3\2\2\2\2\u00cd\3\2\2"+ + "\2\2\u00cf\3\2\2\2\2\u00d1\3\2\2\2\2\u00d3\3\2\2\2\2\u00d5\3\2\2\2\2\u00dd"+ + "\3\2\2\2\2\u00e3\3\2\2\2\2\u00e5\3\2\2\2\2\u00e7\3\2\2\2\2\u00e9\3\2\2"+ + "\2\2\u00eb\3\2\2\2\3\u00ed\3\2\2\2\3\u00ef\3\2\2\2\3\u00f1\3\2\2\2\3\u00f3"+ + "\3\2\2\2\3\u00f5\3\2\2\2\3\u00f7\3\2\2\2\3\u00f9\3\2\2\2\3\u00fb\3\2\2"+ + "\2\3\u00fd\3\2\2\2\3\u00ff\3\2\2\2\3\u0101\3\2\2\2\3\u0103\3\2\2\2\3\u0105"+ + "\3\2\2\2\3\u0107\3\2\2\2\3\u0109\3\2\2\2\3\u010b\3\2\2\2\3\u010d\3\2\2"+ + "\2\3\u010f\3\2\2\2\3\u0111\3\2\2\2\3\u0113\3\2\2\2\3\u0115\3\2\2\2\3\u0117"+ + "\3\2\2\2\3\u0119\3\2\2\2\3\u011b\3\2\2\2\3\u011d\3\2\2\2\3\u011f\3\2\2"+ + "\2\3\u0121\3\2\2\2\3\u0123\3\2\2\2\3\u0125\3\2\2\2\3\u012d\3\2\2\2\3\u012f"+ + "\3\2\2\2\3\u0131\3\2\2\2\3\u0133\3\2\2\2\3\u0139\3\2\2\2\3\u013b\3\2\2"+ + "\2\3\u013d\3\2\2\2\4\u013f\3\2\2\2\4\u0141\3\2\2\2\4\u0143\3\2\2\2\4\u0145"+ + "\3\2\2\2\4\u0147\3\2\2\2\5\u0149\3\2\2\2\7\u014c\3\2\2\2\t\u014e\3\2\2"+ + "\2\13\u0150\3\2\2\2\r\u0152\3\2\2\2\17\u0154\3\2\2\2\21\u0156\3\2\2\2"+ + "\23\u0158\3\2\2\2\25\u015a\3\2\2\2\27\u015c\3\2\2\2\31\u015f\3\2\2\2\33"+ + "\u0163\3\2\2\2\35\u0165\3\2\2\2\37\u0167\3\2\2\2!\u016a\3\2\2\2#\u016c"+ + "\3\2\2\2%\u016e\3\2\2\2\'\u0170\3\2\2\2)\u0172\3\2\2\2+\u0174\3\2\2\2"+ + "-\u0177\3\2\2\2/\u017a\3\2\2\2\61\u017c\3\2\2\2\63\u017e\3\2\2\2\65\u0180"+ + "\3\2\2\2\67\u0182\3\2\2\29\u0185\3\2\2\2;\u0188\3\2\2\2=\u018b\3\2\2\2"+ + "?\u018e\3\2\2\2A\u0190\3\2\2\2C\u0193\3\2\2\2E\u0196\3\2\2\2G\u0198\3"+ + "\2\2\2I\u019b\3\2\2\2K\u019e\3\2\2\2M\u01b6\3\2\2\2O\u01b8\3\2\2\2Q\u01c0"+ + "\3\2\2\2S\u01c6\3\2\2\2U\u01cd\3\2\2\2W\u01d4\3\2\2\2Y\u01da\3\2\2\2["+ + "\u01e1\3\2\2\2]\u01ea\3\2\2\2_\u01f1\3\2\2\2a\u01fb\3\2\2\2c\u0204\3\2"+ + "\2\2e\u0211\3\2\2\2g\u021b\3\2\2\2i\u0220\3\2\2\2k\u0226\3\2\2\2m\u022c"+ + "\3\2\2\2o\u0231\3\2\2\2q\u0251\3\2\2\2s\u0253\3\2\2\2u\u0256\3\2\2\2w"+ + "\u025b\3\2\2\2y\u0261\3\2\2\2{\u0264\3\2\2\2}\u0268\3\2\2\2\177\u026f"+ + "\3\2\2\2\u0081\u0276\3\2\2\2\u0083\u027c\3\2\2\2\u0085\u0285\3\2\2\2\u0087"+ + "\u028b\3\2\2\2\u0089\u0293\3\2\2\2\u008b\u0298\3\2\2\2\u008d\u029f\3\2"+ + "\2\2\u008f\u02a4\3\2\2\2\u0091\u02ab\3\2\2\2\u0093\u02b2\3\2\2\2\u0095"+ + "\u02ba\3\2\2\2\u0097\u02c2\3\2\2\2\u0099\u02cb\3\2\2\2\u009b\u02d0\3\2"+ + "\2\2\u009d\u02d9\3\2\2\2\u009f\u02df\3\2\2\2\u00a1\u02e6\3\2\2\2\u00a3"+ + "\u02f6\3\2\2\2\u00a5\u031d\3\2\2\2\u00a7\u0328\3\2\2\2\u00a9\u032a\3\2"+ + "\2\2\u00ab\u0336\3\2\2\2\u00ad\u0340\3\2\2\2\u00af\u034b\3\2\2\2\u00b1"+ + "\u0353\3\2\2\2\u00b3\u0360\3\2\2\2\u00b5\u0362\3\2\2\2\u00b7\u0369\3\2"+ + "\2\2\u00b9\u0370\3\2\2\2\u00bb\u0378\3\2\2\2\u00bd\u037c\3\2\2\2\u00bf"+ + "\u0382\3\2\2\2\u00c1\u0388\3\2\2\2\u00c3\u038f\3\2\2\2\u00c5\u0398\3\2"+ + "\2\2\u00c7\u039d\3\2\2\2\u00c9\u03a4\3\2\2\2\u00cb\u03b5\3\2\2\2\u00cd"+ + "\u03c3\3\2\2\2\u00cf\u03d4\3\2\2\2\u00d1\u03e8\3\2\2\2\u00d3\u03eb\3\2"+ + "\2\2\u00d5\u03f4\3\2\2\2\u00d7\u03fb\3\2\2\2\u00d9\u03fd\3\2\2\2\u00db"+ + "\u03ff\3\2\2\2\u00dd\u0401\3\2\2\2\u00df\u040a\3\2\2\2\u00e1\u040c\3\2"+ + "\2\2\u00e3\u040e\3\2\2\2\u00e5\u0424\3\2\2\2\u00e7\u0432\3\2\2\2\u00e9"+ + "\u0438\3\2\2\2\u00eb\u0443\3\2\2\2\u00ed\u0451\3\2\2\2\u00ef\u067d\3\2"+ + "\2\2\u00f1\u067f\3\2\2\2\u00f3\u0681\3\2\2\2\u00f5\u0683\3\2\2\2\u00f7"+ + "\u0685\3\2\2\2\u00f9\u0687\3\2\2\2\u00fb\u0689\3\2\2\2\u00fd\u068b\3\2"+ + "\2\2\u00ff\u068d\3\2\2\2\u0101\u068f\3\2\2\2\u0103\u0692\3\2\2\2\u0105"+ + "\u0695\3\2\2\2\u0107\u0697\3\2\2\2\u0109\u0699\3\2\2\2\u010b\u069b\3\2"+ + "\2\2\u010d\u069d\3\2\2\2\u010f\u069f\3\2\2\2\u0111\u06a1\3\2\2\2\u0113"+ + "\u06a4\3\2\2\2\u0115\u06a9\3\2\2\2\u0117\u06ae\3\2\2\2\u0119\u06b0\3\2"+ + "\2\2\u011b\u06c0\3\2\2\2\u011d\u06c9\3\2\2\2\u011f\u06d9\3\2\2\2\u0121"+ + "\u06db\3\2\2\2\u0123\u06e2\3\2\2\2\u0125\u06e6\3\2\2\2\u0127\u06ec\3\2"+ + "\2\2\u0129\u06ee\3\2\2\2\u012b\u06f0\3\2\2\2\u012d\u06f2\3\2\2\2\u012f"+ + "\u06fa\3\2\2\2\u0131\u0700\3\2\2\2\u0133\u0707\3\2\2\2\u0135\u070e\3\2"+ + "\2\2\u0137\u0710\3\2\2\2\u0139\u0713\3\2\2\2\u013b\u0719\3\2\2\2\u013d"+ + "\u0724\3\2\2\2\u013f\u0732\3\2\2\2\u0141\u073b\3\2\2\2\u0143\u0748\3\2"+ + "\2\2\u0145\u074e\3\2\2\2\u0147\u0759\3\2\2\2\u0149\u014a\7}\2\2\u014a"+ + "\u014b\b\2\2\2\u014b\6\3\2\2\2\u014c\u014d\7\177\2\2\u014d\b\3\2\2\2\u014e"+ + "\u014f\7]\2\2\u014f\n\3\2\2\2\u0150\u0151\7_\2\2\u0151\f\3\2\2\2\u0152"+ + "\u0153\7*\2\2\u0153\16\3\2\2\2\u0154\u0155\7+\2\2\u0155\20\3\2\2\2\u0156"+ + "\u0157\7=\2\2\u0157\22\3\2\2\2\u0158\u0159\7<\2\2\u0159\24\3\2\2\2\u015a"+ + "\u015b\7.\2\2\u015b\26\3\2\2\2\u015c\u015d\7\60\2\2\u015d\u015e\7\60\2"+ + "\2\u015e\30\3\2\2\2\u015f\u0160\7\60\2\2\u0160\u0161\7\60\2\2\u0161\u0162"+ + "\7\60\2\2\u0162\32\3\2\2\2\u0163\u0164\7A\2\2\u0164\34\3\2\2\2\u0165\u0166"+ + "\7\60\2\2\u0166\36\3\2\2\2\u0167\u0168\7/\2\2\u0168\u0169\7@\2\2\u0169"+ + " \3\2\2\2\u016a\u016b\7-\2\2\u016b\"\3\2\2\2\u016c\u016d\7/\2\2\u016d"+ + "$\3\2\2\2\u016e\u016f\7,\2\2\u016f&\3\2\2\2\u0170\u0171\7\61\2\2\u0171"+ + "(\3\2\2\2\u0172\u0173\7\'\2\2\u0173*\3\2\2\2\u0174\u0175\7-\2\2\u0175"+ + "\u0176\7-\2\2\u0176,\3\2\2\2\u0177\u0178\7/\2\2\u0178\u0179\7/\2\2\u0179"+ + ".\3\2\2\2\u017a\u017b\7(\2\2\u017b\60\3\2\2\2\u017c\u017d\7\u0080\2\2"+ + "\u017d\62\3\2\2\2\u017e\u017f\7`\2\2\u017f\64\3\2\2\2\u0180\u0181\7~\2"+ + "\2\u0181\66\3\2\2\2\u0182\u0183\7>\2\2\u0183\u0184\7>\2\2\u01848\3\2\2"+ + "\2\u0185\u0186\7@\2\2\u0186\u0187\7@\2\2\u0187:\3\2\2\2\u0188\u0189\7"+ + "?\2\2\u0189\u018a\7?\2\2\u018a<\3\2\2\2\u018b\u018c\7#\2\2\u018c\u018d"+ + "\7?\2\2\u018d>\3\2\2\2\u018e\u018f\7>\2\2\u018f@\3\2\2\2\u0190\u0191\7"+ + ">\2\2\u0191\u0192\7?\2\2\u0192B\3\2\2\2\u0193\u0194\7@\2\2\u0194\u0195"+ + "\7?\2\2\u0195D\3\2\2\2\u0196\u0197\7@\2\2\u0197F\3\2\2\2\u0198\u0199\7"+ + "(\2\2\u0199\u019a\7(\2\2\u019aH\3\2\2\2\u019b\u019c\7~\2\2\u019c\u019d"+ + "\7~\2\2\u019dJ\3\2\2\2\u019e\u019f\7?\2\2\u019fL\3\2\2\2\u01a0\u01a1\7"+ + "-\2\2\u01a1\u01b7\7?\2\2\u01a2\u01a3\7/\2\2\u01a3\u01b7\7?\2\2\u01a4\u01a5"+ + "\7,\2\2\u01a5\u01b7\7?\2\2\u01a6\u01a7\7\61\2\2\u01a7\u01b7\7?\2\2\u01a8"+ + "\u01a9\7\'\2\2\u01a9\u01b7\7?\2\2\u01aa\u01ab\7>\2\2\u01ab\u01ac\7>\2"+ + "\2\u01ac\u01b7\7?\2\2\u01ad\u01ae\7@\2\2\u01ae\u01af\7@\2\2\u01af\u01b7"+ + "\7?\2\2\u01b0\u01b1\7(\2\2\u01b1\u01b7\7?\2\2\u01b2\u01b3\7~\2\2\u01b3"+ + "\u01b7\7?\2\2\u01b4\u01b5\7`\2\2\u01b5\u01b7\7?\2\2\u01b6\u01a0\3\2\2"+ + "\2\u01b6\u01a2\3\2\2\2\u01b6\u01a4\3\2\2\2\u01b6\u01a6\3\2\2\2\u01b6\u01a8"+ + "\3\2\2\2\u01b6\u01aa\3\2\2\2\u01b6\u01ad\3\2\2\2\u01b6\u01b0\3\2\2\2\u01b6"+ + "\u01b2\3\2\2\2\u01b6\u01b4\3\2\2\2\u01b7N\3\2\2\2\u01b8\u01b9\7v\2\2\u01b9"+ + "\u01ba\7{\2\2\u01ba\u01bb\7r\2\2\u01bb\u01bc\7g\2\2\u01bc\u01bd\7f\2\2"+ + "\u01bd\u01be\7g\2\2\u01be\u01bf\7h\2\2\u01bfP\3\2\2\2\u01c0\u01c1\7e\2"+ + "\2\u01c1\u01c2\7q\2\2\u01c2\u01c3\7p\2\2\u01c3\u01c4\7u\2\2\u01c4\u01c5"+ + "\7v\2\2\u01c5R\3\2\2\2\u01c6\u01c7\7g\2\2\u01c7\u01c8\7z\2\2\u01c8\u01c9"+ + "\7v\2\2\u01c9\u01ca\7g\2\2\u01ca\u01cb\7t\2\2\u01cb\u01cc\7p\2\2\u01cc"+ + "T\3\2\2\2\u01cd\u01ce\7g\2\2\u01ce\u01cf\7z\2\2\u01cf\u01d0\7r\2\2\u01d0"+ + "\u01d1\7q\2\2\u01d1\u01d2\7t\2\2\u01d2\u01d3\7v\2\2\u01d3V\3\2\2\2\u01d4"+ + "\u01d5\7c\2\2\u01d5\u01d6\7n\2\2\u01d6\u01d7\7k\2\2\u01d7\u01d8\7i\2\2"+ + "\u01d8\u01d9\7p\2\2\u01d9X\3\2\2\2\u01da\u01db\7k\2\2\u01db\u01dc\7p\2"+ + "\2\u01dc\u01dd\7n\2\2\u01dd\u01de\7k\2\2\u01de\u01df\7p\2\2\u01df\u01e0"+ + "\7g\2\2\u01e0Z\3\2\2\2\u01e1\u01e2\7x\2\2\u01e2\u01e3\7q\2\2\u01e3\u01e4"+ + "\7n\2\2\u01e4\u01e5\7c\2\2\u01e5\u01e6\7v\2\2\u01e6\u01e7\7k\2\2\u01e7"+ + "\u01e8\7n\2\2\u01e8\u01e9\7g\2\2\u01e9\\\3\2\2\2\u01ea\u01eb\7u\2\2\u01eb"+ + "\u01ec\7v\2\2\u01ec\u01ed\7c\2\2\u01ed\u01ee\7v\2\2\u01ee\u01ef\7k\2\2"+ + "\u01ef\u01f0\7e\2\2\u01f0^\3\2\2\2\u01f1\u01f2\7k\2\2\u01f2\u01f3\7p\2"+ + "\2\u01f3\u01f4\7v\2\2\u01f4\u01f5\7g\2\2\u01f5\u01f6\7t\2\2\u01f6\u01f7"+ + "\7t\2\2\u01f7\u01f8\7w\2\2\u01f8\u01f9\7r\2\2\u01f9\u01fa\7v\2\2\u01fa"+ + "`\3\2\2\2\u01fb\u01fc\7t\2\2\u01fc\u01fd\7g\2\2\u01fd\u01fe\7i\2\2\u01fe"+ + "\u01ff\7k\2\2\u01ff\u0200\7u\2\2\u0200\u0201\7v\2\2\u0201\u0202\7g\2\2"+ + "\u0202\u0203\7t\2\2\u0203b\3\2\2\2\u0204\u0205\7a\2\2\u0205\u0206\7a\2"+ + "\2\u0206\u0207\7|\2\2\u0207\u0208\7r\2\2\u0208\u0209\7a\2\2\u0209\u020a"+ + "\7t\2\2\u020a\u020b\7g\2\2\u020b\u020c\7u\2\2\u020c\u020d\7g\2\2\u020d"+ + "\u020e\7t\2\2\u020e\u020f\7x\2\2\u020f\u0210\7g\2\2\u0210d\3\2\2\2\u0211"+ + "\u0212\7a\2\2\u0212\u0213\7a\2\2\u0213\u0214\7c\2\2\u0214\u0215\7f\2\2"+ + "\u0215\u0216\7f\2\2\u0216\u0217\7t\2\2\u0217\u0218\7g\2\2\u0218\u0219"+ + "\7u\2\2\u0219\u021a\7u\2\2\u021af\3\2\2\2\u021b\u021c\7a\2\2\u021c\u021d"+ + "\7a\2\2\u021d\u021e\7|\2\2\u021e\u021f\7r\2\2\u021fh\3\2\2\2\u0220\u0221"+ + "\7a\2\2\u0221\u0222\7a\2\2\u0222\u0223\7o\2\2\u0223\u0224\7g\2\2\u0224"+ + "\u0225\7o\2\2\u0225j\3\2\2\2\u0226\u0227\7a\2\2\u0227\u0228\7a\2\2\u0228"+ + "\u0229\7u\2\2\u0229\u022a\7u\2\2\u022a\u022b\7c\2\2\u022bl\3\2\2\2\u022c"+ + "\u022d\7a\2\2\u022d\u022e\7a\2\2\u022e\u022f\7o\2\2\u022f\u0230\7c\2\2"+ + "\u0230n\3\2\2\2\u0231\u0232\7a\2\2\u0232\u0233\7a\2\2\u0233\u0234\7k\2"+ + "\2\u0234\u0235\7p\2\2\u0235\u0236\7v\2\2\u0236\u0237\7t\2\2\u0237\u0238"+ + "\7k\2\2\u0238\u0239\7p\2\2\u0239\u023a\7u\2\2\u023a\u023b\7k\2\2\u023b"+ + "\u023c\7e\2\2\u023cp\3\2\2\2\u023d\u023e\7a\2\2\u023e\u023f\7a\2\2\u023f"+ + "\u0240\7u\2\2\u0240\u0241\7v\2\2\u0241\u0242\7c\2\2\u0242\u0243\7e\2\2"+ + "\u0243\u0244\7m\2\2\u0244\u0245\7e\2\2\u0245\u0246\7c\2\2\u0246\u0247"+ + "\7n\2\2\u0247\u0252\7n\2\2\u0248\u0249\7a\2\2\u0249\u024a\7a\2\2\u024a"+ + "\u024b\7r\2\2\u024b\u024c\7j\2\2\u024c\u024d\7k\2\2\u024d\u024e\7e\2\2"+ + "\u024e\u024f\7c\2\2\u024f\u0250\7n\2\2\u0250\u0252\7n\2\2\u0251\u023d"+ + "\3\2\2\2\u0251\u0248\3\2\2\2\u0252r\3\2\2\2\u0253\u0254\7k\2\2\u0254\u0255"+ + "\7h\2\2\u0255t\3\2\2\2\u0256\u0257\7g\2\2\u0257\u0258\7n\2\2\u0258\u0259"+ + "\7u\2\2\u0259\u025a\7g\2\2\u025av\3\2\2\2\u025b\u025c\7y\2\2\u025c\u025d"+ + "\7j\2\2\u025d\u025e\7k\2\2\u025e\u025f\7n\2\2\u025f\u0260\7g\2\2\u0260"+ + "x\3\2\2\2\u0261\u0262\7f\2\2\u0262\u0263\7q\2\2\u0263z\3\2\2\2\u0264\u0265"+ + "\7h\2\2\u0265\u0266\7q\2\2\u0266\u0267\7t\2\2\u0267|\3\2\2\2\u0268\u0269"+ + "\7u\2\2\u0269\u026a\7y\2\2\u026a\u026b\7k\2\2\u026b\u026c\7v\2\2\u026c"+ + "\u026d\7e\2\2\u026d\u026e\7j\2\2\u026e~\3\2\2\2\u026f\u0270\7t\2\2\u0270"+ + "\u0271\7g\2\2\u0271\u0272\7v\2\2\u0272\u0273\7w\2\2\u0273\u0274\7t\2\2"+ + "\u0274\u0275\7p\2\2\u0275\u0080\3\2\2\2\u0276\u0277\7d\2\2\u0277\u0278"+ + "\7t\2\2\u0278\u0279\7g\2\2\u0279\u027a\7c\2\2\u027a\u027b\7m\2\2\u027b"+ + "\u0082\3\2\2\2\u027c\u027d\7e\2\2\u027d\u027e\7q\2\2\u027e\u027f\7p\2"+ + "\2\u027f\u0280\7v\2\2\u0280\u0281\7k\2\2\u0281\u0282\7p\2\2\u0282\u0283"+ + "\7w\2\2\u0283\u0284\7g\2\2\u0284\u0084\3\2\2\2\u0285\u0286\7c\2\2\u0286"+ + "\u0287\7u\2\2\u0287\u0288\7o\2\2\u0288\u0289\3\2\2\2\u0289\u028a\bB\3"+ + "\2\u028a\u0086\3\2\2\2\u028b\u028c\7f\2\2\u028c\u028d\7g\2\2\u028d\u028e"+ + "\7h\2\2\u028e\u028f\7c\2\2\u028f\u0290\7w\2\2\u0290\u0291\7n\2\2\u0291"+ + "\u0292\7v\2\2\u0292\u0088\3\2\2\2\u0293\u0294\7e\2\2\u0294\u0295\7c\2"+ + "\2\u0295\u0296\7u\2\2\u0296\u0297\7g\2\2\u0297\u008a\3\2\2\2\u0298\u0299"+ + "\7u\2\2\u0299\u029a\7v\2\2\u029a\u029b\7t\2\2\u029b\u029c\7w\2\2\u029c"+ + "\u029d\7e\2\2\u029d\u029e\7v\2\2\u029e\u008c\3\2\2\2\u029f\u02a0\7g\2"+ + "\2\u02a0\u02a1\7p\2\2\u02a1\u02a2\7w\2\2\u02a2\u02a3\7o\2\2\u02a3\u008e"+ + "\3\2\2\2\u02a4\u02a5\7u\2\2\u02a5\u02a6\7k\2\2\u02a6\u02a7\7|\2\2\u02a7"+ + "\u02a8\7g\2\2\u02a8\u02a9\7q\2\2\u02a9\u02aa\7h\2\2\u02aa\u0090\3\2\2"+ + "\2\u02ab\u02ac\7v\2\2\u02ac\u02ad\7{\2\2\u02ad\u02ae\7r\2\2\u02ae\u02af"+ + "\7g\2\2\u02af\u02b0\7k\2\2\u02b0\u02b1\7f\2\2\u02b1\u0092\3\2\2\2\u02b2"+ + "\u02b3\7f\2\2\u02b3\u02b4\7g\2\2\u02b4\u02b5\7h\2\2\u02b5\u02b6\7k\2\2"+ + "\u02b6\u02b7\7p\2\2\u02b7\u02b8\7g\2\2\u02b8\u02b9\7f\2\2\u02b9\u0094"+ + "\3\2\2\2\u02ba\u02bb\7m\2\2\u02bb\u02bc\7k\2\2\u02bc\u02bd\7e\2\2\u02bd"+ + "\u02be\7m\2\2\u02be\u02bf\7c\2\2\u02bf\u02c0\7u\2\2\u02c0\u02c1\7o\2\2"+ + "\u02c1\u0096\3\2\2\2\u02c2\u02c3\7t\2\2\u02c3\u02c4\7g\2\2\u02c4\u02c5"+ + "\7u\2\2\u02c5\u02c6\7q\2\2\u02c6\u02c7\7w\2\2\u02c7\u02c8\7t\2\2\u02c8"+ + "\u02c9\7e\2\2\u02c9\u02ca\7g\2\2\u02ca\u0098\3\2\2\2\u02cb\u02cc\7w\2"+ + "\2\u02cc\u02cd\7u\2\2\u02cd\u02ce\7g\2\2\u02ce\u02cf\7u\2\2\u02cf\u009a"+ + "\3\2\2\2\u02d0\u02d1\7e\2\2\u02d1\u02d2\7n\2\2\u02d2\u02d3\7q\2\2\u02d3"+ + "\u02d4\7d\2\2\u02d4\u02d5\7d\2\2\u02d5\u02d6\7g\2\2\u02d6\u02d7\7t\2\2"+ + "\u02d7\u02d8\7u\2\2\u02d8\u009c\3\2\2\2\u02d9\u02da\7d\2\2\u02da\u02db"+ + "\7{\2\2\u02db\u02dc\7v\2\2\u02dc\u02dd\7g\2\2\u02dd\u02de\7u\2\2\u02de"+ + "\u009e\3\2\2\2\u02df\u02e0\7e\2\2\u02e0\u02e1\7{\2\2\u02e1\u02e2\7e\2"+ + "\2\u02e2\u02e3\7n\2\2\u02e3\u02e4\7g\2\2\u02e4\u02e5\7u\2\2\u02e5\u00a0"+ + "\3\2\2\2\u02e6\u02e7\7#\2\2\u02e7\u00a2\3\2\2\2\u02e8\u02e9\7u\2\2\u02e9"+ + "\u02ea\7k\2\2\u02ea\u02eb\7i\2\2\u02eb\u02ec\7p\2\2\u02ec\u02ed\7g\2\2"+ + "\u02ed\u02f7\7f\2\2\u02ee\u02ef\7w\2\2\u02ef\u02f0\7p\2\2\u02f0\u02f1"+ + "\7u\2\2\u02f1\u02f2\7k\2\2\u02f2\u02f3\7i\2\2\u02f3\u02f4\7p\2\2\u02f4"+ + "\u02f5\7g\2\2\u02f5\u02f7\7f\2\2\u02f6\u02e8\3\2\2\2\u02f6\u02ee\3\2\2"+ + "\2\u02f7\u00a4\3\2\2\2\u02f8\u02f9\7d\2\2\u02f9\u02fa\7{\2\2\u02fa\u02fb"+ + "\7v\2\2\u02fb\u031e\7g\2\2\u02fc\u02fd\7y\2\2\u02fd\u02fe\7q\2\2\u02fe"+ + "\u02ff\7t\2\2\u02ff\u031e\7f\2\2\u0300\u0301\7f\2\2\u0301\u0302\7y\2\2"+ + "\u0302\u0303\7q\2\2\u0303\u0304\7t\2\2\u0304\u031e\7f\2\2\u0305\u0306"+ + "\7d\2\2\u0306\u0307\7q\2\2\u0307\u0308\7q\2\2\u0308\u031e\7n\2\2\u0309"+ + "\u030a\7e\2\2\u030a\u030b\7j\2\2\u030b\u030c\7c\2\2\u030c\u031e\7t\2\2"+ + "\u030d\u030e\7u\2\2\u030e\u030f\7j\2\2\u030f\u0310\7q\2\2\u0310\u0311"+ + "\7t\2\2\u0311\u031e\7v\2\2\u0312\u0313\7k\2\2\u0313\u0314\7p\2\2\u0314"+ + "\u031e\7v\2\2\u0315\u0316\7n\2\2\u0316\u0317\7q\2\2\u0317\u0318\7p\2\2"+ + "\u0318\u031e\7i\2\2\u0319\u031a\7x\2\2\u031a\u031b\7q\2\2\u031b\u031c"+ + "\7k\2\2\u031c\u031e\7f\2\2\u031d\u02f8\3\2\2\2\u031d\u02fc\3\2\2\2\u031d"+ + "\u0300\3\2\2\2\u031d\u0305\3\2\2\2\u031d\u0309\3\2\2\2\u031d\u030d\3\2"+ + "\2\2\u031d\u0312\3\2\2\2\u031d\u0315\3\2\2\2\u031d\u0319\3\2\2\2\u031e"+ + "\u00a6\3\2\2\2\u031f\u0320\7v\2\2\u0320\u0321\7t\2\2\u0321\u0322\7w\2"+ + "\2\u0322\u0329\7g\2\2\u0323\u0324\7h\2\2\u0324\u0325\7c\2\2\u0325\u0326"+ + "\7n\2\2\u0326\u0327\7u\2\2\u0327\u0329\7g\2\2\u0328\u031f\3\2\2\2\u0328"+ + "\u0323\3\2\2\2\u0329\u00a8\3\2\2\2\u032a\u032b\7}\2\2\u032b\u032c\7}\2"+ + "\2\u032c\u0330\3\2\2\2\u032d\u032f\13\2\2\2\u032e\u032d\3\2\2\2\u032f"+ + "\u0332\3\2\2\2\u0330\u0331\3\2\2\2\u0330\u032e\3\2\2\2\u0331\u0333\3\2"+ + "\2\2\u0332\u0330\3\2\2\2\u0333\u0334\7\177\2\2\u0334\u0335\7\177\2\2\u0335"+ + "\u00aa\3\2\2\2\u0336\u0337\7%\2\2\u0337\u0338\7k\2\2\u0338\u0339\7o\2"+ + "\2\u0339\u033a\7r\2\2\u033a\u033b\7q\2\2\u033b\u033c\7t\2\2\u033c\u033d"+ + "\7v\2\2\u033d\u033e\3\2\2\2\u033e\u033f\bU\4\2\u033f\u00ac\3\2\2\2\u0340"+ + "\u0341\7%\2\2\u0341\u0342\7k\2\2\u0342\u0343\7p\2\2\u0343\u0344\7e\2\2"+ + "\u0344\u0345\7n\2\2\u0345\u0346\7w\2\2\u0346\u0347\7f\2\2\u0347\u0348"+ + "\7g\2\2\u0348\u0349\3\2\2\2\u0349\u034a\bV\5\2\u034a\u00ae\3\2\2\2\u034b"+ + "\u034c\7%\2\2\u034c\u034d\7r\2\2\u034d\u034e\7t\2\2\u034e\u034f\7c\2\2"+ + "\u034f\u0350\7i\2\2\u0350\u0351\7o\2\2\u0351\u0352\7c\2\2\u0352\u00b0"+ + "\3\2\2\2\u0353\u0354\7%\2\2\u0354\u0355\7f\2\2\u0355\u0356\7g\2\2\u0356"+ + "\u0357\7h\2\2\u0357\u0358\7k\2\2\u0358\u0359\7p\2\2\u0359\u035a\7g\2\2"+ + "\u035a\u00b2\3\2\2\2\u035b\u035c\7^\2\2\u035c\u0361\7\f\2\2\u035d\u035e"+ + "\7^\2\2\u035e\u035f\7\17\2\2\u035f\u0361\7\f\2\2\u0360\u035b\3\2\2\2\u0360"+ + "\u035d\3\2\2\2\u0361\u00b4\3\2\2\2\u0362\u0363\7%\2\2\u0363\u0364\7w\2"+ + "\2\u0364\u0365\7p\2\2\u0365\u0366\7f\2\2\u0366\u0367\7g\2\2\u0367\u0368"+ + "\7h\2\2\u0368\u00b6\3\2\2\2\u0369\u036a\7%\2\2\u036a\u036b\7k\2\2\u036b"+ + "\u036c\7h\2\2\u036c\u036d\7f\2\2\u036d\u036e\7g\2\2\u036e\u036f\7h\2\2"+ + "\u036f\u00b8\3\2\2\2\u0370\u0371\7%\2\2\u0371\u0372\7k\2\2\u0372\u0373"+ + "\7h\2\2\u0373\u0374\7p\2\2\u0374\u0375\7f\2\2\u0375\u0376\7g\2\2\u0376"+ + "\u0377\7h\2\2\u0377\u00ba\3\2\2\2\u0378\u0379\7%\2\2\u0379\u037a\7k\2"+ + "\2\u037a\u037b\7h\2\2\u037b\u00bc\3\2\2\2\u037c\u037d\7%\2\2\u037d\u037e"+ + "\7g\2\2\u037e\u037f\7n\2\2\u037f\u0380\7k\2\2\u0380\u0381\7h\2\2\u0381"+ + "\u00be\3\2\2\2\u0382\u0383\7%\2\2\u0383\u0384\7g\2\2\u0384\u0385\7n\2"+ + "\2\u0385\u0386\7u\2\2\u0386\u0387\7g\2\2\u0387\u00c0\3\2\2\2\u0388\u0389"+ + "\7%\2\2\u0389\u038a\7g\2\2\u038a\u038b\7p\2\2\u038b\u038c\7f\2\2\u038c"+ + "\u038d\7k\2\2\u038d\u038e\7h\2\2\u038e\u00c2\3\2\2\2\u038f\u0390\7%\2"+ + "\2\u0390\u0391\7g\2\2\u0391\u0392\7t\2\2\u0392\u0393\7t\2\2\u0393\u0394"+ + "\7q\2\2\u0394\u0395\7t\2\2\u0395\u00c4\3\2\2\2\u0396\u0399\5\u00c7c\2"+ + "\u0397\u0399\5\u00cfg\2\u0398\u0396\3\2\2\2\u0398\u0397\3\2\2\2\u0399"+ + "\u00c6\3\2\2\2\u039a\u039e\5\u00c9d\2\u039b\u039e\5\u00cbe\2\u039c\u039e"+ + "\5\u00cdf\2\u039d\u039a\3\2\2\2\u039d\u039b\3\2\2\2\u039d\u039c\3\2\2"+ + "\2\u039e\u00c8\3\2\2\2\u039f\u03a5\7\'\2\2\u03a0\u03a1\7\62\2\2\u03a1"+ + "\u03a5\7d\2\2\u03a2\u03a3\7\62\2\2\u03a3\u03a5\7D\2\2\u03a4\u039f\3\2"+ + "\2\2\u03a4\u03a0\3\2\2\2\u03a4\u03a2\3\2\2\2\u03a5\u03a9\3\2\2\2\u03a6"+ + "\u03a8\5\u00d7k\2\u03a7\u03a6\3\2\2\2\u03a8\u03ab\3\2\2\2\u03a9\u03a7"+ + "\3\2\2\2\u03a9\u03aa\3\2\2\2\u03aa\u03ac\3\2\2\2\u03ab\u03a9\3\2\2\2\u03ac"+ + "\u03ae\7\60\2\2\u03ad\u03af\5\u00d7k\2\u03ae\u03ad\3\2\2\2\u03af\u03b0"+ + "\3\2\2\2\u03b0\u03ae\3\2\2\2\u03b0\u03b1\3\2\2\2\u03b1\u00ca\3\2\2\2\u03b2"+ + "\u03b4\5\u00d9l\2\u03b3\u03b2\3\2\2\2\u03b4\u03b7\3\2\2\2\u03b5\u03b3"+ + "\3\2\2\2\u03b5\u03b6\3\2\2\2\u03b6\u03b8\3\2\2\2\u03b7\u03b5\3\2\2\2\u03b8"+ + "\u03ba\7\60\2\2\u03b9\u03bb\5\u00d9l\2\u03ba\u03b9\3\2\2\2\u03bb\u03bc"+ + "\3\2\2\2\u03bc\u03ba\3\2\2\2\u03bc\u03bd\3\2\2\2\u03bd\u00cc\3\2\2\2\u03be"+ + "\u03c4\7&\2\2\u03bf\u03c0\7\62\2\2\u03c0\u03c4\7z\2\2\u03c1\u03c2\7\62"+ + "\2\2\u03c2\u03c4\7Z\2\2\u03c3\u03be\3\2\2\2\u03c3\u03bf\3\2\2\2\u03c3"+ + "\u03c1\3\2\2\2\u03c4\u03c8\3\2\2\2\u03c5\u03c7\5\u00dbm\2\u03c6\u03c5"+ + "\3\2\2\2\u03c7\u03ca\3\2\2\2\u03c8\u03c6\3\2\2\2\u03c8\u03c9\3\2\2\2\u03c9"+ + "\u03cb\3\2\2\2\u03ca\u03c8\3\2\2\2\u03cb\u03cd\7\60\2\2\u03cc\u03ce\5"+ + "\u00dbm\2\u03cd\u03cc\3\2\2\2\u03ce\u03cf\3\2\2\2\u03cf\u03cd\3\2\2\2"+ + "\u03cf\u03d0\3\2\2\2\u03d0\u00ce\3\2\2\2\u03d1\u03d5\5\u00d3i\2\u03d2"+ + "\u03d5\5\u00d5j\2\u03d3\u03d5\5\u00d1h\2\u03d4\u03d1\3\2\2\2\u03d4\u03d2"+ + "\3\2\2\2\u03d4\u03d3\3\2\2\2\u03d5\u03d9\3\2\2\2\u03d6\u03d7\t\2\2\2\u03d7"+ + "\u03da\t\3\2\2\u03d8\u03da\7n\2\2\u03d9\u03d6\3\2\2\2\u03d9\u03d8\3\2"+ + "\2\2\u03d9\u03da\3\2\2\2\u03da\u00d0\3\2\2\2\u03db\u03dc\7\62\2\2\u03dc"+ + "\u03de\t\4\2\2\u03dd\u03df\5\u00d7k\2\u03de\u03dd\3\2\2\2\u03df\u03e0"+ + "\3\2\2\2\u03e0\u03de\3\2\2\2\u03e0\u03e1\3\2\2\2\u03e1\u03e9\3\2\2\2\u03e2"+ + "\u03e4\7\'\2\2\u03e3\u03e5\5\u00d7k\2\u03e4\u03e3\3\2\2\2\u03e5\u03e6"+ + "\3\2\2\2\u03e6\u03e4\3\2\2\2\u03e6\u03e7\3\2\2\2\u03e7\u03e9\3\2\2\2\u03e8"+ + "\u03db\3\2\2\2\u03e8\u03e2\3\2\2\2\u03e9\u00d2\3\2\2\2\u03ea\u03ec\5\u00d9"+ + "l\2\u03eb\u03ea\3\2\2\2\u03ec\u03ed\3\2\2\2\u03ed\u03eb\3\2\2\2\u03ed"+ + "\u03ee\3\2\2\2\u03ee\u00d4\3\2\2\2\u03ef\u03f5\7&\2\2\u03f0\u03f1\7\62"+ + "\2\2\u03f1\u03f5\7z\2\2\u03f2\u03f3\7\62\2\2\u03f3\u03f5\7Z\2\2\u03f4"+ + "\u03ef\3\2\2\2\u03f4\u03f0\3\2\2\2\u03f4\u03f2\3\2\2\2\u03f5\u03f7\3\2"+ + "\2\2\u03f6\u03f8\5\u00dbm\2\u03f7\u03f6\3\2\2\2\u03f8\u03f9\3\2\2\2\u03f9"+ + "\u03f7\3\2\2\2\u03f9\u03fa\3\2\2\2\u03fa\u00d6\3\2\2\2\u03fb\u03fc\t\5"+ + "\2\2\u03fc\u00d8\3\2\2\2\u03fd\u03fe\t\6\2\2\u03fe\u00da\3\2\2\2\u03ff"+ + "\u0400\t\7\2\2\u0400\u00dc\3\2\2\2\u0401\u0405\5\u00dfo\2\u0402\u0404"+ + "\5\u00e1p\2\u0403\u0402\3\2\2\2\u0404\u0407\3\2\2\2\u0405\u0403\3\2\2"+ + "\2\u0405\u0406\3\2\2\2\u0406\u0408\3\2\2\2\u0407\u0405\3\2\2\2\u0408\u0409"+ + "\bn\6\2\u0409\u00de\3\2\2\2\u040a\u040b\t\b\2\2\u040b\u00e0\3\2\2\2\u040c"+ + "\u040d\t\t\2\2\u040d\u00e2\3\2\2\2\u040e\u0414\7$\2\2\u040f\u0410\7^\2"+ + "\2\u0410\u0413\7$\2\2\u0411\u0413\n\n\2\2\u0412\u040f\3\2\2\2\u0412\u0411"+ + "\3\2\2\2\u0413\u0416\3\2\2\2\u0414\u0412\3\2\2\2\u0414\u0415\3\2\2\2\u0415"+ + "\u0417\3\2\2\2\u0416\u0414\3\2\2\2\u0417\u0419\7$\2\2\u0418\u041a\t\13"+ + "\2\2\u0419\u0418\3\2\2\2\u0419\u041a\3\2\2\2\u041a\u041f\3\2\2\2\u041b"+ + "\u041d\t\f\2\2\u041c\u041e\t\r\2\2\u041d\u041c\3\2\2\2\u041d\u041e\3\2"+ + "\2\2\u041e\u0420\3\2\2\2\u041f\u041b\3\2\2\2\u041f\u0420\3\2\2\2\u0420"+ + "\u0422\3\2\2\2\u0421\u0423\t\13\2\2\u0422\u0421\3\2\2\2\u0422\u0423\3"+ + "\2\2\2\u0423\u00e4\3\2\2\2\u0424\u042d\7)\2\2\u0425\u042a\7^\2\2\u0426"+ + "\u042b\t\16\2\2\u0427\u0428\7z\2\2\u0428\u0429\t\17\2\2\u0429\u042b\t"+ + "\17\2\2\u042a\u0426\3\2\2\2\u042a\u0427\3\2\2\2\u042b\u042e\3\2\2\2\u042c"+ + "\u042e\n\20\2\2\u042d\u0425\3\2\2\2\u042d\u042c\3\2\2\2\u042e\u042f\3"+ + "\2\2\2\u042f\u0430\7)\2\2\u0430\u00e6\3\2\2\2\u0431\u0433\t\21\2\2\u0432"+ + "\u0431\3\2\2\2\u0433\u0434\3\2\2\2\u0434\u0432\3\2\2\2\u0434\u0435\3\2"+ + "\2\2\u0435\u0436\3\2\2\2\u0436\u0437\bs\7\2\u0437\u00e8\3\2\2\2\u0438"+ + "\u0439\7\61\2\2\u0439\u043a\7\61\2\2\u043a\u043e\3\2\2\2\u043b\u043d\n"+ + "\22\2\2\u043c\u043b\3\2\2\2\u043d\u0440\3\2\2\2\u043e\u043c\3\2\2\2\u043e"+ + "\u043f\3\2\2\2\u043f\u0441\3\2\2\2\u0440\u043e\3\2\2\2\u0441\u0442\bt"+ + "\b\2\u0442\u00ea\3\2\2\2\u0443\u0444\7\61\2\2\u0444\u0445\7,\2\2\u0445"+ + "\u0449\3\2\2\2\u0446\u0448\13\2\2\2\u0447\u0446\3\2\2\2\u0448\u044b\3"+ + "\2\2\2\u0449\u044a\3\2\2\2\u0449\u0447\3\2\2\2\u044a\u044c\3\2\2\2\u044b"+ + "\u0449\3\2\2\2\u044c\u044d\7,\2\2\u044d\u044e\7\61\2\2\u044e\u044f\3\2"+ + "\2\2\u044f\u0450\bu\b\2\u0450\u00ec\3\2\2\2\u0451\u0452\7\60\2\2\u0452"+ + "\u0453\7d\2\2\u0453\u0454\7{\2\2\u0454\u0455\7v\2\2\u0455\u0456\7g\2\2"+ + "\u0456\u00ee\3\2\2\2\u0457\u0458\7d\2\2\u0458\u0459\7t\2\2\u0459\u067e"+ + "\7m\2\2\u045a\u045b\7q\2\2\u045b\u045c\7t\2\2\u045c\u067e\7c\2\2\u045d"+ + "\u045e\7m\2\2\u045e\u045f\7k\2\2\u045f\u067e\7n\2\2\u0460\u0461\7u\2\2"+ + "\u0461\u0462\7n\2\2\u0462\u067e\7q\2\2\u0463\u0464\7p\2\2\u0464\u0465"+ + "\7q\2\2\u0465\u067e\7r\2\2\u0466\u0467\7c\2\2\u0467\u0468\7u\2\2\u0468"+ + "\u067e\7n\2\2\u0469\u046a\7r\2\2\u046a\u046b\7j\2\2\u046b\u067e\7r\2\2"+ + "\u046c\u046d\7c\2\2\u046d\u046e\7p\2\2\u046e\u067e\7e\2\2\u046f\u0470"+ + "\7d\2\2\u0470\u0471\7r\2\2\u0471\u067e\7n\2\2\u0472\u0473\7e\2\2\u0473"+ + "\u0474\7n\2\2\u0474\u067e\7e\2\2\u0475\u0476\7l\2\2\u0476\u0477\7u\2\2"+ + "\u0477\u067e\7t\2\2\u0478\u0479\7c\2\2\u0479\u047a\7p\2\2\u047a\u067e"+ + "\7f\2\2\u047b\u047c\7t\2\2\u047c\u047d\7n\2\2\u047d\u067e\7c\2\2\u047e"+ + "\u047f\7d\2\2\u047f\u0480\7k\2\2\u0480\u067e\7v\2\2\u0481\u0482\7t\2\2"+ + "\u0482\u0483\7q\2\2\u0483\u067e\7n\2\2\u0484\u0485\7r\2\2\u0485\u0486"+ + "\7n\2\2\u0486\u067e\7c\2\2\u0487\u0488\7r\2\2\u0488\u0489\7n\2\2\u0489"+ + "\u067e\7r\2\2\u048a\u048b\7d\2\2\u048b\u048c\7o\2\2\u048c\u067e\7k\2\2"+ + "\u048d\u048e\7u\2\2\u048e\u048f\7g\2\2\u048f\u067e\7e\2\2\u0490\u0491"+ + "\7t\2\2\u0491\u0492\7v\2\2\u0492\u067e\7k\2\2\u0493\u0494\7g\2\2\u0494"+ + "\u0495\7q\2\2\u0495\u067e\7t\2\2\u0496\u0497\7u\2\2\u0497\u0498\7t\2\2"+ + "\u0498\u067e\7g\2\2\u0499\u049a\7n\2\2\u049a\u049b\7u\2\2\u049b\u067e"+ + "\7t\2\2\u049c\u049d\7r\2\2\u049d\u049e\7j\2\2\u049e\u067e\7c\2\2\u049f"+ + "\u04a0\7c\2\2\u04a0\u04a1\7n\2\2\u04a1\u067e\7t\2\2\u04a2\u04a3\7l\2\2"+ + "\u04a3\u04a4\7o\2\2\u04a4\u067e\7r\2\2\u04a5\u04a6\7d\2\2\u04a6\u04a7"+ + "\7x\2\2\u04a7\u067e\7e\2\2\u04a8\u04a9\7e\2\2\u04a9\u04aa\7n\2\2\u04aa"+ + "\u067e\7k\2\2\u04ab\u04ac\7t\2\2\u04ac\u04ad\7v\2\2\u04ad\u067e\7u\2\2"+ + "\u04ae\u04af\7c\2\2\u04af\u04b0\7f\2\2\u04b0\u067e\7e\2\2\u04b1\u04b2"+ + "\7t\2\2\u04b2\u04b3\7t\2\2\u04b3\u067e\7c\2\2\u04b4\u04b5\7d\2\2\u04b5"+ + "\u04b6\7x\2\2\u04b6\u067e\7u\2\2\u04b7\u04b8\7u\2\2\u04b8\u04b9\7g\2\2"+ + "\u04b9\u067e\7k\2\2\u04ba\u04bb\7u\2\2\u04bb\u04bc\7c\2\2\u04bc\u067e"+ + "\7z\2\2\u04bd\u04be\7u\2\2\u04be\u04bf\7v\2\2\u04bf\u067e\7{\2\2\u04c0"+ + "\u04c1\7u\2\2\u04c1\u04c2\7v\2\2\u04c2\u067e\7c\2\2\u04c3\u04c4\7u\2\2"+ + "\u04c4\u04c5\7v\2\2\u04c5\u067e\7z\2\2\u04c6\u04c7\7f\2\2\u04c7\u04c8"+ + "\7g\2\2\u04c8\u067e\7{\2\2\u04c9\u04ca\7v\2\2\u04ca\u04cb\7z\2\2\u04cb"+ + "\u067e\7c\2\2\u04cc\u04cd\7z\2\2\u04cd\u04ce\7c\2\2\u04ce\u067e\7c\2\2"+ + "\u04cf\u04d0\7d\2\2\u04d0\u04d1\7e\2\2\u04d1\u067e\7e\2\2\u04d2\u04d3"+ + "\7c\2\2\u04d3\u04d4\7j\2\2\u04d4\u067e\7z\2\2\u04d5\u04d6\7v\2\2\u04d6"+ + "\u04d7\7{\2\2\u04d7\u067e\7c\2\2\u04d8\u04d9\7v\2\2\u04d9\u04da\7z\2\2"+ + "\u04da\u067e\7u\2\2\u04db\u04dc\7v\2\2\u04dc\u04dd\7c\2\2\u04dd\u067e"+ + "\7u\2\2\u04de\u04df\7u\2\2\u04df\u04e0\7j\2\2\u04e0\u067e\7{\2\2\u04e1"+ + "\u04e2\7u\2\2\u04e2\u04e3\7j\2\2\u04e3\u067e\7z\2\2\u04e4\u04e5\7n\2\2"+ + "\u04e5\u04e6\7f\2\2\u04e6\u067e\7{\2\2\u04e7\u04e8\7n\2\2\u04e8\u04e9"+ + "\7f\2\2\u04e9\u067e\7c\2\2\u04ea\u04eb\7n\2\2\u04eb\u04ec\7f\2\2\u04ec"+ + "\u067e\7z\2\2\u04ed\u04ee\7n\2\2\u04ee\u04ef\7c\2\2\u04ef\u067e\7z\2\2"+ + "\u04f0\u04f1\7v\2\2\u04f1\u04f2\7c\2\2\u04f2\u067e\7{\2\2\u04f3\u04f4"+ + "\7v\2\2\u04f4\u04f5\7c\2\2\u04f5\u067e\7z\2\2\u04f6\u04f7\7d\2\2\u04f7"+ + "\u04f8\7e\2\2\u04f8\u067e\7u\2\2\u04f9\u04fa\7e\2\2\u04fa\u04fb\7n\2\2"+ + "\u04fb\u067e\7x\2\2\u04fc\u04fd\7v\2\2\u04fd\u04fe\7u\2\2\u04fe\u067e"+ + "\7z\2\2\u04ff\u0500\7n\2\2\u0500\u0501\7c\2\2\u0501\u067e\7u\2\2\u0502"+ + "\u0503\7e\2\2\u0503\u0504\7r\2\2\u0504\u067e\7{\2\2\u0505\u0506\7e\2\2"+ + "\u0506\u0507\7o\2\2\u0507\u067e\7r\2\2\u0508\u0509\7e\2\2\u0509\u050a"+ + "\7r\2\2\u050a\u067e\7z\2\2\u050b\u050c\7f\2\2\u050c\u050d\7e\2\2\u050d"+ + "\u067e\7r\2\2\u050e\u050f\7f\2\2\u050f\u0510\7g\2\2\u0510\u067e\7e\2\2"+ + "\u0511\u0512\7k\2\2\u0512\u0513\7p\2\2\u0513\u067e\7e\2\2\u0514\u0515"+ + "\7c\2\2\u0515\u0516\7z\2\2\u0516\u067e\7u\2\2\u0517\u0518\7d\2\2\u0518"+ + "\u0519\7p\2\2\u0519\u067e\7g\2\2\u051a\u051b\7e\2\2\u051b\u051c\7n\2\2"+ + "\u051c\u067e\7f\2\2\u051d\u051e\7u\2\2\u051e\u051f\7d\2\2\u051f\u067e"+ + "\7e\2\2\u0520\u0521\7k\2\2\u0521\u0522\7u\2\2\u0522\u067e\7e\2\2\u0523"+ + "\u0524\7k\2\2\u0524\u0525\7p\2\2\u0525\u067e\7z\2\2\u0526\u0527\7d\2\2"+ + "\u0527\u0528\7g\2\2\u0528\u067e\7s\2\2\u0529\u052a\7u\2\2\u052a\u052b"+ + "\7g\2\2\u052b\u067e\7f\2\2\u052c\u052d\7f\2\2\u052d\u052e\7g\2\2\u052e"+ + "\u067e\7z\2\2\u052f\u0530\7k\2\2\u0530\u0531\7p\2\2\u0531\u067e\7{\2\2"+ + "\u0532\u0533\7t\2\2\u0533\u0534\7q\2\2\u0534\u067e\7t\2\2\u0535\u0536"+ + "\7d\2\2\u0536\u0537\7d\2\2\u0537\u0538\7t\2\2\u0538\u067e\7\62\2\2\u0539"+ + "\u053a\7d\2\2\u053a\u053b\7d\2\2\u053b\u053c\7t\2\2\u053c\u067e\7\63\2"+ + "\2\u053d\u053e\7d\2\2\u053e\u053f\7d\2\2\u053f\u0540\7t\2\2\u0540\u067e"+ + "\7\64\2\2\u0541\u0542\7d\2\2\u0542\u0543\7d\2\2\u0543\u0544\7t\2\2\u0544"+ + "\u067e\7\65\2\2\u0545\u0546\7d\2\2\u0546\u0547\7d\2\2\u0547\u0548\7t\2"+ + "\2\u0548\u067e\7\66\2\2\u0549\u054a\7d\2\2\u054a\u054b\7d\2\2\u054b\u054c"+ + "\7t\2\2\u054c\u067e\7\67\2\2\u054d\u054e\7d\2\2\u054e\u054f\7d\2\2\u054f"+ + "\u0550\7t\2\2\u0550\u067e\78\2\2\u0551\u0552\7d\2\2\u0552\u0553\7d\2\2"+ + "\u0553\u0554\7t\2\2\u0554\u067e\79\2\2\u0555\u0556\7d\2\2\u0556\u0557"+ + "\7d\2\2\u0557\u0558\7u\2\2\u0558\u067e\7\62\2\2\u0559\u055a\7d\2\2\u055a"+ + "\u055b\7d\2\2\u055b\u055c\7u\2\2\u055c\u067e\7\63\2\2\u055d\u055e\7d\2"+ + "\2\u055e\u055f\7d\2\2\u055f\u0560\7u\2\2\u0560\u067e\7\64\2\2\u0561\u0562"+ + "\7d\2\2\u0562\u0563\7d\2\2\u0563\u0564\7u\2\2\u0564\u067e\7\65\2\2\u0565"+ + "\u0566\7d\2\2\u0566\u0567\7d\2\2\u0567\u0568\7u\2\2\u0568\u067e\7\66\2"+ + "\2\u0569\u056a\7d\2\2\u056a\u056b\7d\2\2\u056b\u056c\7u\2\2\u056c\u067e"+ + "\7\67\2\2\u056d\u056e\7d\2\2\u056e\u056f\7d\2\2\u056f\u0570\7u\2\2\u0570"+ + "\u067e\78\2\2\u0571\u0572\7d\2\2\u0572\u0573\7d\2\2\u0573\u0574\7u\2\2"+ + "\u0574\u067e\79\2\2\u0575\u0576\7d\2\2\u0576\u0577\7t\2\2\u0577\u067e"+ + "\7c\2\2\u0578\u0579\7r\2\2\u0579\u057a\7j\2\2\u057a\u067e\7z\2\2\u057b"+ + "\u057c\7r\2\2\u057c\u057d\7j\2\2\u057d\u067e\7{\2\2\u057e\u057f\7r\2\2"+ + "\u057f\u0580\7n\2\2\u0580\u067e\7z\2\2\u0581\u0582\7r\2\2\u0582\u0583"+ + "\7n\2\2\u0583\u067e\7{\2\2\u0584\u0585\7t\2\2\u0585\u0586\7o\2\2\u0586"+ + "\u0587\7d\2\2\u0587\u067e\7\62\2\2\u0588\u0589\7t\2\2\u0589\u058a\7o\2"+ + "\2\u058a\u058b\7d\2\2\u058b\u067e\7\63\2\2\u058c\u058d\7t\2\2\u058d\u058e"+ + "\7o\2\2\u058e\u058f\7d\2\2\u058f\u067e\7\64\2\2\u0590\u0591\7t\2\2\u0591"+ + "\u0592\7o\2\2\u0592\u0593\7d\2\2\u0593\u067e\7\65\2\2\u0594\u0595\7t\2"+ + "\2\u0595\u0596\7o\2\2\u0596\u0597\7d\2\2\u0597\u067e\7\66\2\2\u0598\u0599"+ + "\7t\2\2\u0599\u059a\7o\2\2\u059a\u059b\7d\2\2\u059b\u067e\7\67\2\2\u059c"+ + "\u059d\7t\2\2\u059d\u059e\7o\2\2\u059e\u059f\7d\2\2\u059f\u067e\78\2\2"+ + "\u05a0\u05a1\7t\2\2\u05a1\u05a2\7o\2\2\u05a2\u05a3\7d\2\2\u05a3\u067e"+ + "\79\2\2\u05a4\u05a5\7u\2\2\u05a5\u05a6\7o\2\2\u05a6\u05a7\7d\2\2\u05a7"+ + "\u067e\7\62\2\2\u05a8\u05a9\7u\2\2\u05a9\u05aa\7o\2\2\u05aa\u05ab\7d\2"+ + "\2\u05ab\u067e\7\63\2\2\u05ac\u05ad\7u\2\2\u05ad\u05ae\7o\2\2\u05ae\u05af"+ + "\7d\2\2\u05af\u067e\7\64\2\2\u05b0\u05b1\7u\2\2\u05b1\u05b2\7o\2\2\u05b2"+ + "\u05b3\7d\2\2\u05b3\u067e\7\65\2\2\u05b4\u05b5\7u\2\2\u05b5\u05b6\7o\2"+ + "\2\u05b6\u05b7\7d\2\2\u05b7\u067e\7\66\2\2\u05b8\u05b9\7u\2\2\u05b9\u05ba"+ + "\7o\2\2\u05ba\u05bb\7d\2\2\u05bb\u067e\7\67\2\2\u05bc\u05bd\7u\2\2\u05bd"+ + "\u05be\7o\2\2\u05be\u05bf\7d\2\2\u05bf\u067e\78\2\2\u05c0\u05c1\7u\2\2"+ + "\u05c1\u05c2\7o\2\2\u05c2\u05c3\7d\2\2\u05c3\u067e\79\2\2\u05c4\u05c5"+ + "\7u\2\2\u05c5\u05c6\7v\2\2\u05c6\u067e\7r\2\2\u05c7\u05c8\7u\2\2\u05c8"+ + "\u05c9\7v\2\2\u05c9\u067e\7|\2\2\u05ca\u05cb\7v\2\2\u05cb\u05cc\7t\2\2"+ + "\u05cc\u067e\7d\2\2\u05cd\u05ce\7v\2\2\u05ce\u05cf\7u\2\2\u05cf\u067e"+ + "\7d\2\2\u05d0\u05d1\7y\2\2\u05d1\u05d2\7c\2\2\u05d2\u067e\7k\2\2\u05d3"+ + "\u05d4\7e\2\2\u05d4\u05d5\7n\2\2\u05d5\u067e\7g\2\2\u05d6\u05d7\7u\2\2"+ + "\u05d7\u05d8\7g\2\2\u05d8\u067e\7g\2\2\u05d9\u05da\7v\2\2\u05da\u05db"+ + "\7u\2\2\u05db\u067e\7{\2\2\u05dc\u05dd\7n\2\2\u05dd\u05de\7d\2\2\u05de"+ + "\u05df\7r\2\2\u05df\u067e\7n\2\2\u05e0\u05e1\7k\2\2\u05e1\u05e2\7p\2\2"+ + "\u05e2\u067e\7|\2\2\u05e3\u05e4\7v\2\2\u05e4\u05e5\7{\2\2\u05e5\u067e"+ + "\7u\2\2\u05e6\u05e7\7n\2\2\u05e7\u05e8\7d\2\2\u05e8\u05e9\7o\2\2\u05e9"+ + "\u067e\7k\2\2\u05ea\u05eb\7f\2\2\u05eb\u05ec\7g\2\2\u05ec\u067e\7|\2\2"+ + "\u05ed\u05ee\7p\2\2\u05ee\u05ef\7g\2\2\u05ef\u067e\7i\2\2\u05f0\u05f1"+ + "\7c\2\2\u05f1\u05f2\7u\2\2\u05f2\u067e\7t\2\2\u05f3\u05f4\7v\2\2\u05f4"+ + "\u05f5\7c\2\2\u05f5\u067e\7|\2\2\u05f6\u05f7\7n\2\2\u05f7\u05f8\7d\2\2"+ + "\u05f8\u05f9\7x\2\2\u05f9\u067e\7e\2\2\u05fa\u05fb\7v\2\2\u05fb\u05fc"+ + "\7c\2\2\u05fc\u067e\7d\2\2\u05fd\u05fe\7o\2\2\u05fe\u05ff\7c\2\2\u05ff"+ + "\u067e\7r\2\2\u0600\u0601\7t\2\2\u0601\u0602\7v\2\2\u0602\u067e\7p\2\2"+ + "\u0603\u0604\7n\2\2\u0604\u0605\7d\2\2\u0605\u0606\7u\2\2\u0606\u067e"+ + "\7t\2\2\u0607\u0608\7v\2\2\u0608\u0609\7|\2\2\u0609\u067e\7c\2\2\u060a"+ + "\u060b\7n\2\2\u060b\u060c\7d\2\2\u060c\u060d\7x\2\2\u060d\u067e\7u\2\2"+ + "\u060e\u060f\7v\2\2\u060f\u0610\7d\2\2\u0610\u067e\7c\2\2\u0611\u0612"+ + "\7n\2\2\u0612\u0613\7d\2\2\u0613\u0614\7t\2\2\u0614\u067e\7c\2\2\u0615"+ + "\u0616\7n\2\2\u0616\u0617\7d\2\2\u0617\u0618\7e\2\2\u0618\u067e\7e\2\2"+ + "\u0619\u061a\7n\2\2\u061a\u061b\7f\2\2\u061b\u067e\7|\2\2\u061c\u061d"+ + "\7n\2\2\u061d\u061e\7d\2\2\u061e\u061f\7e\2\2\u061f\u067e\7u\2\2\u0620"+ + "\u0621\7e\2\2\u0621\u0622\7r\2\2\u0622\u067e\7|\2\2\u0623\u0624\7f\2\2"+ + "\u0624\u0625\7g\2\2\u0625\u067e\7y\2\2\u0626\u0627\7c\2\2\u0627\u0628"+ + "\7u\2\2\u0628\u067e\7y\2\2\u0629\u062a\7n\2\2\u062a\u062b\7d\2\2\u062b"+ + "\u062c\7p\2\2\u062c\u067e\7g\2\2\u062d\u062e\7r\2\2\u062e\u062f\7j\2\2"+ + "\u062f\u067e\7|\2\2\u0630\u0631\7k\2\2\u0631\u0632\7p\2\2\u0632\u067e"+ + "\7y\2\2\u0633\u0634\7t\2\2\u0634\u0635\7q\2\2\u0635\u067e\7y\2\2\u0636"+ + "\u0637\7n\2\2\u0637\u0638\7d\2\2\u0638\u0639\7g\2\2\u0639\u067e\7s\2\2"+ + "\u063a\u063b\7r\2\2\u063b\u063c\7j\2\2\u063c\u067e\7y\2\2\u063d\u063e"+ + "\7r\2\2\u063e\u063f\7n\2\2\u063f\u067e\7|\2\2\u0640\u0641\7g\2\2\u0641"+ + "\u0642\7q\2\2\u0642\u067e\7o\2\2\u0643\u0644\7c\2\2\u0644\u0645\7f\2\2"+ + "\u0645\u0646\7e\2\2\u0646\u067e\7s\2\2\u0647\u0648\7c\2\2\u0648\u0649"+ + "\7p\2\2\u0649\u064a\7f\2\2\u064a\u067e\7s\2\2\u064b\u064c\7c\2\2\u064c"+ + "\u064d\7u\2\2\u064d\u064e\7n\2\2\u064e\u067e\7s\2\2\u064f\u0650\7c\2\2"+ + "\u0650\u0651\7u\2\2\u0651\u0652\7t\2\2\u0652\u067e\7s\2\2\u0653\u0654"+ + "\7d\2\2\u0654\u0655\7k\2\2\u0655\u0656\7v\2\2\u0656\u067e\7s\2\2\u0657"+ + "\u0658\7e\2\2\u0658\u0659\7r\2\2\u0659\u067e\7s\2\2\u065a\u065b\7f\2\2"+ + "\u065b\u065c\7g\2\2\u065c\u067e\7s\2\2\u065d\u065e\7g\2\2\u065e\u065f"+ + "\7q\2\2\u065f\u0660\7t\2\2\u0660\u067e\7s\2\2\u0661\u0662\7k\2\2\u0662"+ + "\u0663\7p\2\2\u0663\u067e\7s\2\2\u0664\u0665\7n\2\2\u0665\u0666\7f\2\2"+ + "\u0666\u067e\7s\2\2\u0667\u0668\7n\2\2\u0668\u0669\7u\2\2\u0669\u066a"+ + "\7t\2\2\u066a\u067e\7s\2\2\u066b\u066c\7q\2\2\u066c\u066d\7t\2\2\u066d"+ + "\u067e\7s\2\2\u066e\u066f\7t\2\2\u066f\u0670\7q\2\2\u0670\u0671\7n\2\2"+ + "\u0671\u067e\7s\2\2\u0672\u0673\7t\2\2\u0673\u0674\7q\2\2\u0674\u0675"+ + "\7t\2\2\u0675\u067e\7s\2\2\u0676\u0677\7u\2\2\u0677\u0678\7d\2\2\u0678"+ + "\u0679\7e\2\2\u0679\u067e\7s\2\2\u067a\u067b\7u\2\2\u067b\u067c\7v\2\2"+ + "\u067c\u067e\7s\2\2\u067d\u0457\3\2\2\2\u067d\u045a\3\2\2\2\u067d\u045d"+ + "\3\2\2\2\u067d\u0460\3\2\2\2\u067d\u0463\3\2\2\2\u067d\u0466\3\2\2\2\u067d"+ + "\u0469\3\2\2\2\u067d\u046c\3\2\2\2\u067d\u046f\3\2\2\2\u067d\u0472\3\2"+ + "\2\2\u067d\u0475\3\2\2\2\u067d\u0478\3\2\2\2\u067d\u047b\3\2\2\2\u067d"+ + "\u047e\3\2\2\2\u067d\u0481\3\2\2\2\u067d\u0484\3\2\2\2\u067d\u0487\3\2"+ + "\2\2\u067d\u048a\3\2\2\2\u067d\u048d\3\2\2\2\u067d\u0490\3\2\2\2\u067d"+ + "\u0493\3\2\2\2\u067d\u0496\3\2\2\2\u067d\u0499\3\2\2\2\u067d\u049c\3\2"+ + "\2\2\u067d\u049f\3\2\2\2\u067d\u04a2\3\2\2\2\u067d\u04a5\3\2\2\2\u067d"+ + "\u04a8\3\2\2\2\u067d\u04ab\3\2\2\2\u067d\u04ae\3\2\2\2\u067d\u04b1\3\2"+ + "\2\2\u067d\u04b4\3\2\2\2\u067d\u04b7\3\2\2\2\u067d\u04ba\3\2\2\2\u067d"+ + "\u04bd\3\2\2\2\u067d\u04c0\3\2\2\2\u067d\u04c3\3\2\2\2\u067d\u04c6\3\2"+ + "\2\2\u067d\u04c9\3\2\2\2\u067d\u04cc\3\2\2\2\u067d\u04cf\3\2\2\2\u067d"+ + "\u04d2\3\2\2\2\u067d\u04d5\3\2\2\2\u067d\u04d8\3\2\2\2\u067d\u04db\3\2"+ + "\2\2\u067d\u04de\3\2\2\2\u067d\u04e1\3\2\2\2\u067d\u04e4\3\2\2\2\u067d"+ + "\u04e7\3\2\2\2\u067d\u04ea\3\2\2\2\u067d\u04ed\3\2\2\2\u067d\u04f0\3\2"+ + "\2\2\u067d\u04f3\3\2\2\2\u067d\u04f6\3\2\2\2\u067d\u04f9\3\2\2\2\u067d"+ + "\u04fc\3\2\2\2\u067d\u04ff\3\2\2\2\u067d\u0502\3\2\2\2\u067d\u0505\3\2"+ + "\2\2\u067d\u0508\3\2\2\2\u067d\u050b\3\2\2\2\u067d\u050e\3\2\2\2\u067d"+ + "\u0511\3\2\2\2\u067d\u0514\3\2\2\2\u067d\u0517\3\2\2\2\u067d\u051a\3\2"+ + "\2\2\u067d\u051d\3\2\2\2\u067d\u0520\3\2\2\2\u067d\u0523\3\2\2\2\u067d"+ + "\u0526\3\2\2\2\u067d\u0529\3\2\2\2\u067d\u052c\3\2\2\2\u067d\u052f\3\2"+ + "\2\2\u067d\u0532\3\2\2\2\u067d\u0535\3\2\2\2\u067d\u0539\3\2\2\2\u067d"+ + "\u053d\3\2\2\2\u067d\u0541\3\2\2\2\u067d\u0545\3\2\2\2\u067d\u0549\3\2"+ + "\2\2\u067d\u054d\3\2\2\2\u067d\u0551\3\2\2\2\u067d\u0555\3\2\2\2\u067d"+ + "\u0559\3\2\2\2\u067d\u055d\3\2\2\2\u067d\u0561\3\2\2\2\u067d\u0565\3\2"+ + "\2\2\u067d\u0569\3\2\2\2\u067d\u056d\3\2\2\2\u067d\u0571\3\2\2\2\u067d"+ + "\u0575\3\2\2\2\u067d\u0578\3\2\2\2\u067d\u057b\3\2\2\2\u067d\u057e\3\2"+ + "\2\2\u067d\u0581\3\2\2\2\u067d\u0584\3\2\2\2\u067d\u0588\3\2\2\2\u067d"+ + "\u058c\3\2\2\2\u067d\u0590\3\2\2\2\u067d\u0594\3\2\2\2\u067d\u0598\3\2"+ + "\2\2\u067d\u059c\3\2\2\2\u067d\u05a0\3\2\2\2\u067d\u05a4\3\2\2\2\u067d"+ + "\u05a8\3\2\2\2\u067d\u05ac\3\2\2\2\u067d\u05b0\3\2\2\2\u067d\u05b4\3\2"+ + "\2\2\u067d\u05b8\3\2\2\2\u067d\u05bc\3\2\2\2\u067d\u05c0\3\2\2\2\u067d"+ + "\u05c4\3\2\2\2\u067d\u05c7\3\2\2\2\u067d\u05ca\3\2\2\2\u067d\u05cd\3\2"+ + "\2\2\u067d\u05d0\3\2\2\2\u067d\u05d3\3\2\2\2\u067d\u05d6\3\2\2\2\u067d"+ + "\u05d9\3\2\2\2\u067d\u05dc\3\2\2\2\u067d\u05e0\3\2\2\2\u067d\u05e3\3\2"+ + "\2\2\u067d\u05e6\3\2\2\2\u067d\u05ea\3\2\2\2\u067d\u05ed\3\2\2\2\u067d"+ + "\u05f0\3\2\2\2\u067d\u05f3\3\2\2\2\u067d\u05f6\3\2\2\2\u067d\u05fa\3\2"+ + "\2\2\u067d\u05fd\3\2\2\2\u067d\u0600\3\2\2\2\u067d\u0603\3\2\2\2\u067d"+ + "\u0607\3\2\2\2\u067d\u060a\3\2\2\2\u067d\u060e\3\2\2\2\u067d\u0611\3\2"+ + "\2\2\u067d\u0615\3\2\2\2\u067d\u0619\3\2\2\2\u067d\u061c\3\2\2\2\u067d"+ + "\u0620\3\2\2\2\u067d\u0623\3\2\2\2\u067d\u0626\3\2\2\2\u067d\u0629\3\2"+ + "\2\2\u067d\u062d\3\2\2\2\u067d\u0630\3\2\2\2\u067d\u0633\3\2\2\2\u067d"+ + "\u0636\3\2\2\2\u067d\u063a\3\2\2\2\u067d\u063d\3\2\2\2\u067d\u0640\3\2"+ + "\2\2\u067d\u0643\3\2\2\2\u067d\u0647\3\2\2\2\u067d\u064b\3\2\2\2\u067d"+ + "\u064f\3\2\2\2\u067d\u0653\3\2\2\2\u067d\u0657\3\2\2\2\u067d\u065a\3\2"+ + "\2\2\u067d\u065d\3\2\2\2\u067d\u0661\3\2\2\2\u067d\u0664\3\2\2\2\u067d"+ + "\u0667\3\2\2\2\u067d\u066b\3\2\2\2\u067d\u066e\3\2\2\2\u067d\u0672\3\2"+ + "\2\2\u067d\u0676\3\2\2\2\u067d\u067a\3\2\2\2\u067e\u00f0\3\2\2\2\u067f"+ + "\u0680\7%\2\2\u0680\u00f2\3\2\2\2\u0681\u0682\7<\2\2\u0682\u00f4\3\2\2"+ + "\2\u0683\u0684\7.\2\2\u0684\u00f6\3\2\2\2\u0685\u0686\7*\2\2\u0686\u00f8"+ + "\3\2\2\2\u0687\u0688\7+\2\2\u0688\u00fa\3\2\2\2\u0689\u068a\7]\2\2\u068a"+ + "\u00fc\3\2\2\2\u068b\u068c\7_\2\2\u068c\u00fe\3\2\2\2\u068d\u068e\7\60"+ + "\2\2\u068e\u0100\3\2\2\2\u068f\u0690\7>\2\2\u0690\u0691\7>\2\2\u0691\u0102"+ + "\3\2\2\2\u0692\u0693\7@\2\2\u0693\u0694\7@\2\2\u0694\u0104\3\2\2\2\u0695"+ + "\u0696\7-\2\2\u0696\u0106\3\2\2\2\u0697\u0698\7/\2\2\u0698\u0108\3\2\2"+ + "\2\u0699\u069a\7>\2\2\u069a\u010a\3\2\2\2\u069b\u069c\7@\2\2\u069c\u010c"+ + "\3\2\2\2\u069d\u069e\7,\2\2\u069e\u010e\3\2\2\2\u069f\u06a0\7\61\2\2\u06a0"+ + "\u0110\3\2\2\2\u06a1\u06a2\7}\2\2\u06a2\u06a3\b\u0088\t\2\u06a3\u0112"+ + "\3\2\2\2\u06a4\u06a5\7\177\2\2\u06a5\u06a6\b\u0089\n\2\u06a6\u0114\3\2"+ + "\2\2\u06a7\u06aa\5\u0117\u008b\2\u06a8\u06aa\5\u011f\u008f\2\u06a9\u06a7"+ + "\3\2\2\2\u06a9\u06a8\3\2\2\2\u06aa\u0116\3\2\2\2\u06ab\u06af\5\u0119\u008c"+ + "\2\u06ac\u06af\5\u011b\u008d\2\u06ad\u06af\5\u011d\u008e\2\u06ae\u06ab"+ + "\3\2\2\2\u06ae\u06ac\3\2\2\2\u06ae\u06ad\3\2\2\2\u06af\u0118\3\2\2\2\u06b0"+ + "\u06b4\7\'\2\2\u06b1\u06b3\5\u0127\u0093\2\u06b2\u06b1\3\2\2\2\u06b3\u06b6"+ + "\3\2\2\2\u06b4\u06b2\3\2\2\2\u06b4\u06b5\3\2\2\2\u06b5\u06b7\3\2\2\2\u06b6"+ + "\u06b4\3\2\2\2\u06b7\u06b9\7\60\2\2\u06b8\u06ba\5\u0127\u0093\2\u06b9"+ + "\u06b8\3\2\2\2\u06ba\u06bb\3\2\2\2\u06bb\u06b9\3\2\2\2\u06bb\u06bc\3\2"+ + "\2\2\u06bc\u011a\3\2\2\2\u06bd\u06bf\5\u0129\u0094\2\u06be\u06bd\3\2\2"+ + "\2\u06bf\u06c2\3\2\2\2\u06c0\u06be\3\2\2\2\u06c0\u06c1\3\2\2\2\u06c1\u06c3"+ + "\3\2\2\2\u06c2\u06c0\3\2\2\2\u06c3\u06c5\7\60\2\2\u06c4\u06c6\5\u0129"+ + "\u0094\2\u06c5\u06c4\3\2\2\2\u06c6\u06c7\3\2\2\2\u06c7\u06c5\3\2\2\2\u06c7"+ + "\u06c8\3\2\2\2\u06c8\u011c\3\2\2\2\u06c9\u06cd\7&\2\2\u06ca\u06cc\5\u012b"+ + "\u0095\2\u06cb\u06ca\3\2\2\2\u06cc\u06cf\3\2\2\2\u06cd\u06cb\3\2\2\2\u06cd"+ + "\u06ce\3\2\2\2\u06ce\u06d0\3\2\2\2\u06cf\u06cd\3\2\2\2\u06d0\u06d2\7\60"+ + "\2\2\u06d1\u06d3\5\u012b\u0095\2\u06d2\u06d1\3\2\2\2\u06d3\u06d4\3\2\2"+ + "\2\u06d4\u06d2\3\2\2\2\u06d4\u06d5\3\2\2\2\u06d5\u011e\3\2\2\2\u06d6\u06da"+ + "\5\u0123\u0091\2\u06d7\u06da\5\u0125\u0092\2\u06d8\u06da\5\u0121\u0090"+ + "\2\u06d9\u06d6\3\2\2\2\u06d9\u06d7\3\2\2\2\u06d9\u06d8\3\2\2\2\u06da\u0120"+ + "\3\2\2\2\u06db\u06dd\7\'\2\2\u06dc\u06de\5\u0127\u0093\2\u06dd\u06dc\3"+ + "\2\2\2\u06de\u06df\3\2\2\2\u06df\u06dd\3\2\2\2\u06df\u06e0\3\2\2\2\u06e0"+ + "\u0122\3\2\2\2\u06e1\u06e3\5\u0129\u0094\2\u06e2\u06e1\3\2\2\2\u06e3\u06e4"+ + "\3\2\2\2\u06e4\u06e2\3\2\2\2\u06e4\u06e5\3\2\2\2\u06e5\u0124\3\2\2\2\u06e6"+ + "\u06e8\7&\2\2\u06e7\u06e9\5\u012b\u0095\2\u06e8\u06e7\3\2\2\2\u06e9\u06ea"+ + "\3\2\2\2\u06ea\u06e8\3\2\2\2\u06ea\u06eb\3\2\2\2\u06eb\u0126\3\2\2\2\u06ec"+ + "\u06ed\t\5\2\2\u06ed\u0128\3\2\2\2\u06ee\u06ef\t\6\2\2\u06ef\u012a\3\2"+ + "\2\2\u06f0\u06f1\t\7\2\2\u06f1\u012c\3\2\2\2\u06f2\u06f6\7)\2\2\u06f3"+ + "\u06f4\7^\2\2\u06f4\u06f7\t\16\2\2\u06f5\u06f7\n\20\2\2\u06f6\u06f3\3"+ + "\2\2\2\u06f6\u06f5\3\2\2\2\u06f7\u06f8\3\2\2\2\u06f8\u06f9\7)\2\2\u06f9"+ + "\u012e\3\2\2\2\u06fa\u06fc\5\u0131\u0098\2\u06fb\u06fd\t\23\2\2\u06fc"+ + "\u06fb\3\2\2\2\u06fd\u06fe\3\2\2\2\u06fe\u06fc\3\2\2\2\u06fe\u06ff\3\2"+ + "\2\2\u06ff\u0130\3\2\2\2\u0700\u0704\7#\2\2\u0701\u0703\5\u0137\u009b"+ + "\2\u0702\u0701\3\2\2\2\u0703\u0706\3\2\2\2\u0704\u0702\3\2\2\2\u0704\u0705"+ + "\3\2\2\2\u0705\u0132\3\2\2\2\u0706\u0704\3\2\2\2\u0707\u070b\5\u0135\u009a"+ + "\2\u0708\u070a\5\u0137\u009b\2\u0709\u0708\3\2\2\2\u070a\u070d\3\2\2\2"+ + "\u070b\u0709\3\2\2\2\u070b\u070c\3\2\2\2\u070c\u0134\3\2\2\2\u070d\u070b"+ + "\3\2\2\2\u070e\u070f\t\b\2\2\u070f\u0136\3\2\2\2\u0710\u0711\t\t\2\2\u0711"+ + "\u0138\3\2\2\2\u0712\u0714\t\21\2\2\u0713\u0712\3\2\2\2\u0714\u0715\3"+ + "\2\2\2\u0715\u0713\3\2\2\2\u0715\u0716\3\2\2\2\u0716\u0717\3\2\2\2\u0717"+ + "\u0718\b\u009c\7\2\u0718\u013a\3\2\2\2\u0719\u071a\7\61\2\2\u071a\u071b"+ + "\7\61\2\2\u071b\u071f\3\2\2\2\u071c\u071e\n\22\2\2\u071d\u071c\3\2\2\2"+ + "\u071e\u0721\3\2\2\2\u071f\u071d\3\2\2\2\u071f\u0720\3\2\2\2\u0720\u0722"+ + "\3\2\2\2\u0721\u071f\3\2\2\2\u0722\u0723\b\u009d\b\2\u0723\u013c\3\2\2"+ + "\2\u0724\u0725\7\61\2\2\u0725\u0726\7,\2\2\u0726\u072a\3\2\2\2\u0727\u0729"+ + "\13\2\2\2\u0728\u0727\3\2\2\2\u0729\u072c\3\2\2\2\u072a\u072b\3\2\2\2"+ + "\u072a\u0728\3\2\2\2\u072b\u072d\3\2\2\2\u072c\u072a\3\2\2\2\u072d\u072e"+ + "\7,\2\2\u072e\u072f\7\61\2\2\u072f\u0730\3\2\2\2\u0730\u0731\b\u009e\b"+ + "\2\u0731\u013e\3\2\2\2\u0732\u0734\7>\2\2\u0733\u0735\t\24\2\2\u0734\u0733"+ + "\3\2\2\2\u0735\u0736\3\2\2\2\u0736\u0734\3\2\2\2\u0736\u0737\3\2\2\2\u0737"+ + "\u0738\3\2\2\2\u0738\u0739\7@\2\2\u0739\u073a\b\u009f\13\2\u073a\u0140"+ + "\3\2\2\2\u073b\u0741\7$\2\2\u073c\u073d\7^\2\2\u073d\u0740\7$\2\2\u073e"+ + "\u0740\n\n\2\2\u073f\u073c\3\2\2\2\u073f\u073e\3\2\2\2\u0740\u0743\3\2"+ + "\2\2\u0741\u073f\3\2\2\2\u0741\u0742\3\2\2\2\u0742\u0744\3\2\2\2\u0743"+ + "\u0741\3\2\2\2\u0744\u0745\7$\2\2\u0745\u0746\b\u00a0\f\2\u0746\u0142"+ + "\3\2\2\2\u0747\u0749\t\21\2\2\u0748\u0747\3\2\2\2\u0749\u074a\3\2\2\2"+ + "\u074a\u0748\3\2\2\2\u074a\u074b\3\2\2\2\u074b\u074c\3\2\2\2\u074c\u074d"+ + "\b\u00a1\7\2\u074d\u0144\3\2\2\2\u074e\u074f\7\61\2\2\u074f\u0750\7\61"+ + "\2\2\u0750\u0754\3\2\2\2\u0751\u0753\n\22\2\2\u0752\u0751\3\2\2\2\u0753"+ + "\u0756\3\2\2\2\u0754\u0752\3\2\2\2\u0754\u0755\3\2\2\2\u0755\u0757\3\2"+ + "\2\2\u0756\u0754\3\2\2\2\u0757\u0758\b\u00a2\b\2\u0758\u0146\3\2\2\2\u0759"+ + "\u075a\7\61\2\2\u075a\u075b\7,\2\2\u075b\u075f\3\2\2\2\u075c\u075e\13"+ + "\2\2\2\u075d\u075c\3\2\2\2\u075e\u0761\3\2\2\2\u075f\u0760\3\2\2\2\u075f"+ + "\u075d\3\2\2\2\u0760\u0762\3\2\2\2\u0761\u075f\3\2\2\2\u0762\u0763\7,"+ + "\2\2\u0763\u0764\7\61\2\2\u0764\u0765\3\2\2\2\u0765\u0766\b\u00a3\b\2"+ + "\u0766\u0148\3\2\2\2D\2\3\4\u01b6\u0251\u02f6\u031d\u0328\u0330\u0360"+ + "\u0398\u039d\u03a4\u03a9\u03b0\u03b5\u03bc\u03c3\u03c8\u03cf\u03d4\u03d9"+ + "\u03e0\u03e6\u03e8\u03ed\u03f4\u03f9\u0405\u0412\u0414\u0419\u041d\u041f"+ + "\u0422\u042a\u042d\u0434\u043e\u0449\u067d\u06a9\u06ae\u06b4\u06bb\u06c0"+ + "\u06c7\u06cd\u06d4\u06d9\u06df\u06e4\u06ea\u06f6\u06fe\u0704\u070b\u0715"+ + "\u071f\u072a\u0736\u073f\u0741\u074a\u0754\u075f\r\3\2\2\3B\3\3U\4\3V"+ + "\5\3n\6\2\3\2\2\4\2\3\u0088\7\3\u0089\b\3\u009f\t\3\u00a0\n"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens index a7de44e5b..e89e29078 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens @@ -37,133 +37,120 @@ LOGIC_OR=36 ASSIGN=37 ASSIGN_COMPOUND=38 TYPEDEF=39 -RESERVE=40 -PC=41 -TARGET=42 -LINK=43 -EXTENSION=44 -EMULATOR=45 -CPU=46 -CODESEG=47 -DATASEG=48 -ENCODING=49 -CONST=50 -EXTERN=51 -EXPORT=52 -ALIGN=53 -INLINE=54 -VOLATILE=55 -STATIC=56 -INTERRUPT=57 -REGISTER=58 -LOCAL_RESERVE=59 -ADDRESS=60 -ADDRESS_ZEROPAGE=61 -ADDRESS_MAINMEM=62 -FORM_SSA=63 -FORM_MA=64 -INTRINSIC=65 -CALLING=66 -CALLINGCONVENTION=67 -VARMODEL=68 -CONSTRUCTORFOR=69 -IF=70 -ELSE=71 -WHILE=72 -DO=73 -FOR=74 -SWITCH=75 -RETURN=76 -BREAK=77 -CONTINUE=78 -ASM=79 -DEFAULT=80 -CASE=81 -STRUCT=82 -ENUM=83 -SIZEOF=84 -TYPEID=85 -DEFINED=86 -KICKASM=87 -RESOURCE=88 -USES=89 -CLOBBERS=90 -BYTES=91 -CYCLES=92 -LOGIC_NOT=93 -SIGNEDNESS=94 -SIMPLETYPE=95 -BOOLEAN=96 -KICKASM_BODY=97 -IMPORT=98 -INCLUDE=99 -PRAGMA=100 -DEFINE=101 -DEFINE_CONTINUE=102 -UNDEF=103 -IFDEF=104 -IFNDEF=105 -IFIF=106 -ELIF=107 -IFELSE=108 -ENDIF=109 -ERROR=110 -NUMBER=111 -NUMFLOAT=112 -BINFLOAT=113 -DECFLOAT=114 -HEXFLOAT=115 -NUMINT=116 -BININTEGER=117 -DECINTEGER=118 -HEXINTEGER=119 -NAME=120 -STRING=121 -CHAR=122 -WS=123 -COMMENT_LINE=124 -COMMENT_BLOCK=125 -ASM_BYTE=126 -ASM_MNEMONIC=127 -ASM_IMM=128 -ASM_COLON=129 -ASM_COMMA=130 -ASM_PAR_BEGIN=131 -ASM_PAR_END=132 -ASM_BRACKET_BEGIN=133 -ASM_BRACKET_END=134 -ASM_DOT=135 -ASM_SHIFT_LEFT=136 -ASM_SHIFT_RIGHT=137 -ASM_PLUS=138 -ASM_MINUS=139 -ASM_LESS_THAN=140 -ASM_GREATER_THAN=141 -ASM_MULTIPLY=142 -ASM_DIVIDE=143 -ASM_CURLY_BEGIN=144 -ASM_CURLY_END=145 -ASM_NUMBER=146 -ASM_NUMFLOAT=147 -ASM_BINFLOAT=148 -ASM_DECFLOAT=149 -ASM_HEXFLOAT=150 -ASM_NUMINT=151 -ASM_BININTEGER=152 -ASM_DECINTEGER=153 -ASM_HEXINTEGER=154 -ASM_CHAR=155 -ASM_MULTI_REL=156 -ASM_MULTI_NAME=157 -ASM_NAME=158 -ASM_WS=159 -ASM_COMMENT_LINE=160 -ASM_COMMENT_BLOCK=161 -IMPORT_SYSTEMFILE=162 -IMPORT_LOCALFILE=163 -IMPORT_WS=164 -IMPORT_COMMENT_LINE=165 -IMPORT_COMMENT_BLOCK=166 +CONST=40 +EXTERN=41 +EXPORT=42 +ALIGN=43 +INLINE=44 +VOLATILE=45 +STATIC=46 +INTERRUPT=47 +REGISTER=48 +LOCAL_RESERVE=49 +ADDRESS=50 +ADDRESS_ZEROPAGE=51 +ADDRESS_MAINMEM=52 +FORM_SSA=53 +FORM_MA=54 +INTRINSIC=55 +CALLINGCONVENTION=56 +IF=57 +ELSE=58 +WHILE=59 +DO=60 +FOR=61 +SWITCH=62 +RETURN=63 +BREAK=64 +CONTINUE=65 +ASM=66 +DEFAULT=67 +CASE=68 +STRUCT=69 +ENUM=70 +SIZEOF=71 +TYPEID=72 +DEFINED=73 +KICKASM=74 +RESOURCE=75 +USES=76 +CLOBBERS=77 +BYTES=78 +CYCLES=79 +LOGIC_NOT=80 +SIGNEDNESS=81 +SIMPLETYPE=82 +BOOLEAN=83 +KICKASM_BODY=84 +IMPORT=85 +INCLUDE=86 +PRAGMA=87 +DEFINE=88 +DEFINE_CONTINUE=89 +UNDEF=90 +IFDEF=91 +IFNDEF=92 +IFIF=93 +ELIF=94 +IFELSE=95 +ENDIF=96 +ERROR=97 +NUMBER=98 +NUMFLOAT=99 +BINFLOAT=100 +DECFLOAT=101 +HEXFLOAT=102 +NUMINT=103 +BININTEGER=104 +DECINTEGER=105 +HEXINTEGER=106 +NAME=107 +STRING=108 +CHAR=109 +WS=110 +COMMENT_LINE=111 +COMMENT_BLOCK=112 +ASM_BYTE=113 +ASM_MNEMONIC=114 +ASM_IMM=115 +ASM_COLON=116 +ASM_COMMA=117 +ASM_PAR_BEGIN=118 +ASM_PAR_END=119 +ASM_BRACKET_BEGIN=120 +ASM_BRACKET_END=121 +ASM_DOT=122 +ASM_SHIFT_LEFT=123 +ASM_SHIFT_RIGHT=124 +ASM_PLUS=125 +ASM_MINUS=126 +ASM_LESS_THAN=127 +ASM_GREATER_THAN=128 +ASM_MULTIPLY=129 +ASM_DIVIDE=130 +ASM_CURLY_BEGIN=131 +ASM_CURLY_END=132 +ASM_NUMBER=133 +ASM_NUMFLOAT=134 +ASM_BINFLOAT=135 +ASM_DECFLOAT=136 +ASM_HEXFLOAT=137 +ASM_NUMINT=138 +ASM_BININTEGER=139 +ASM_DECINTEGER=140 +ASM_HEXINTEGER=141 +ASM_CHAR=142 +ASM_MULTI_REL=143 +ASM_MULTI_NAME=144 +ASM_NAME=145 +ASM_WS=146 +ASM_COMMENT_LINE=147 +ASM_COMMENT_BLOCK=148 +IMPORT_SYSTEMFILE=149 +IMPORT_LOCALFILE=150 +IMPORT_WS=151 +IMPORT_COMMENT_LINE=152 +IMPORT_COMMENT_BLOCK=153 ';'=8 '..'=11 '...'=12 @@ -184,70 +171,57 @@ IMPORT_COMMENT_BLOCK=166 '||'=36 '='=37 'typedef'=39 -'zp_reserve'=40 -'pc'=41 -'target'=42 -'link'=43 -'extension'=44 -'emulator'=45 -'cpu'=46 -'code_seg'=47 -'data_seg'=48 -'encoding'=49 -'const'=50 -'extern'=51 -'export'=52 -'align'=53 -'inline'=54 -'volatile'=55 -'static'=56 -'interrupt'=57 -'register'=58 -'__zp_reserve'=59 -'__address'=60 -'__zp'=61 -'__mem'=62 -'__ssa'=63 -'__ma'=64 -'__intrinsic'=65 -'calling'=66 -'var_model'=68 -'constructor_for'=69 -'if'=70 -'else'=71 -'while'=72 -'do'=73 -'for'=74 -'switch'=75 -'return'=76 -'break'=77 -'continue'=78 -'asm'=79 -'default'=80 -'case'=81 -'struct'=82 -'enum'=83 -'sizeof'=84 -'typeid'=85 -'defined'=86 -'kickasm'=87 -'resource'=88 -'uses'=89 -'clobbers'=90 -'bytes'=91 -'cycles'=92 -'!'=93 -'#import'=98 -'#include'=99 -'#pragma'=100 -'#define'=101 -'#undef'=103 -'#ifdef'=104 -'#ifndef'=105 -'#if'=106 -'#elif'=107 -'#else'=108 -'#endif'=109 -'#error'=110 -'.byte'=126 -'#'=128 +'const'=40 +'extern'=41 +'export'=42 +'align'=43 +'inline'=44 +'volatile'=45 +'static'=46 +'interrupt'=47 +'register'=48 +'__zp_reserve'=49 +'__address'=50 +'__zp'=51 +'__mem'=52 +'__ssa'=53 +'__ma'=54 +'__intrinsic'=55 +'if'=57 +'else'=58 +'while'=59 +'do'=60 +'for'=61 +'switch'=62 +'return'=63 +'break'=64 +'continue'=65 +'asm'=66 +'default'=67 +'case'=68 +'struct'=69 +'enum'=70 +'sizeof'=71 +'typeid'=72 +'defined'=73 +'kickasm'=74 +'resource'=75 +'uses'=76 +'clobbers'=77 +'bytes'=78 +'cycles'=79 +'!'=80 +'#import'=85 +'#include'=86 +'#pragma'=87 +'#define'=88 +'#undef'=90 +'#ifdef'=91 +'#ifndef'=92 +'#if'=93 +'#elif'=94 +'#else'=95 +'#endif'=96 +'#error'=97 +'.byte'=113 +'#'=115 diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 b/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 index 58d1c844d..949ed20ac 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 @@ -34,7 +34,7 @@ decl | structDef ';' | enumDef ';' | declFunction - | globalDirective + | pragma | typeDef ';' ; @@ -133,24 +133,16 @@ parameterDecl | PARAM_LIST #parameterDeclList ; -globalDirective - : (PRAGMA TARGET) PAR_BEGIN NAME PAR_END #globalDirectivePlatform - | (PRAGMA CPU) PAR_BEGIN NAME PAR_END #globalDirectiveCpu - | (PRAGMA LINK) PAR_BEGIN STRING PAR_END #globalDirectiveLinkScript - | (PRAGMA EXTENSION) PAR_BEGIN STRING PAR_END #globalDirectiveExtension - | (PRAGMA EMULATOR) PAR_BEGIN STRING PAR_END #globalDirectiveEmulator - | (PRAGMA RESERVE) PAR_BEGIN directiveReserveParam ( COMMA directiveReserveParam )* PAR_END #globalDirectiveReserve - | (PRAGMA PC) PAR_BEGIN NUMBER PAR_END #globalDirectivePc - | (PRAGMA CODESEG) PAR_BEGIN NAME PAR_END #globalDirectiveCodeSeg - | (PRAGMA DATASEG) PAR_BEGIN NAME PAR_END #globalDirectiveDataSeg - | (PRAGMA ENCODING) PAR_BEGIN NAME PAR_END #globalDirectiveEncoding - | (PRAGMA CALLING) PAR_BEGIN CALLINGCONVENTION PAR_END #globalDirectiveCalling - | (PRAGMA VARMODEL) PAR_BEGIN NAME ( COMMA NAME )* PAR_END #globalDirectiveVarModel - | (PRAGMA CONSTRUCTORFOR) PAR_BEGIN NAME ( COMMA NAME )* PAR_END #globalDirectiveConstructorFor +pragma + : PRAGMA NAME PAR_BEGIN pragmaParam (COMMA pragmaParam)* PAR_END ; -directiveReserveParam - : NUMBER (RANGE NUMBER)? +pragmaParam + : NUMBER #pragmaParamNumber + | NUMBER RANGE NUMBER #pragmaParamRange + | NAME #pragmaParamName + | STRING #pragmaParamString + | CALLINGCONVENTION #pragmaParamCallingConvention ; directive @@ -169,7 +161,7 @@ directive | INLINE #directiveInline | INTRINSIC #directiveIntrinsic | INTERRUPT ( PAR_BEGIN NAME PAR_END )? #directiveInterrupt - | LOCAL_RESERVE PAR_BEGIN directiveReserveParam ( COMMA directiveReserveParam )* PAR_END #directiveReserveZp + | LOCAL_RESERVE PAR_BEGIN pragmaParam ( COMMA pragmaParam )* PAR_END #directiveReserveZp | CALLINGCONVENTION #directiveCallingConvention ; diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.interp b/src/main/java/dk/camelot64/kickc/parser/KickCParser.interp index 56301de5a..3a199b457 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.interp +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.interp @@ -39,16 +39,6 @@ null '=' null 'typedef' -'zp_reserve' -'pc' -'target' -'link' -'extension' -'emulator' -'cpu' -'code_seg' -'data_seg' -'encoding' 'const' 'extern' 'export' @@ -65,10 +55,7 @@ null '__ssa' '__ma' '__intrinsic' -'calling' null -'var_model' -'constructor_for' 'if' 'else' 'while' @@ -208,16 +195,6 @@ LOGIC_OR ASSIGN ASSIGN_COMPOUND TYPEDEF -RESERVE -PC -TARGET -LINK -EXTENSION -EMULATOR -CPU -CODESEG -DATASEG -ENCODING CONST EXTERN EXPORT @@ -234,10 +211,7 @@ ADDRESS_MAINMEM FORM_SSA FORM_MA INTRINSIC -CALLING CALLINGCONVENTION -VARMODEL -CONSTRUCTORFOR IF ELSE WHILE @@ -361,8 +335,8 @@ declFunction declFunctionBody parameterListDecl parameterDecl -globalDirective -directiveReserveParam +pragma +pragmaParam directive stmtSeq stmt @@ -387,4 +361,4 @@ asmExpr atn: -[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 168, 937, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 4, 7, 4, 104, 10, 4, 12, 4, 14, 4, 107, 11, 4, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 123, 10, 5, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 7, 7, 130, 10, 7, 12, 7, 14, 7, 133, 11, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 7, 7, 140, 10, 7, 12, 7, 14, 7, 143, 11, 7, 3, 7, 7, 7, 146, 10, 7, 12, 7, 14, 7, 149, 11, 7, 3, 8, 3, 8, 3, 8, 7, 8, 154, 10, 8, 12, 8, 14, 8, 157, 11, 8, 3, 8, 3, 8, 7, 8, 161, 10, 8, 12, 8, 14, 8, 164, 11, 8, 3, 8, 3, 8, 3, 9, 3, 9, 7, 9, 170, 10, 9, 12, 9, 14, 9, 173, 11, 9, 3, 9, 3, 9, 5, 9, 177, 10, 9, 3, 9, 3, 9, 7, 9, 181, 10, 9, 12, 9, 14, 9, 184, 11, 9, 3, 9, 3, 9, 5, 9, 188, 10, 9, 3, 10, 7, 10, 191, 10, 10, 12, 10, 14, 10, 194, 11, 10, 3, 10, 3, 10, 7, 10, 198, 10, 10, 12, 10, 14, 10, 201, 11, 10, 3, 11, 3, 11, 7, 11, 205, 10, 11, 12, 11, 14, 11, 208, 11, 11, 3, 12, 3, 12, 5, 12, 212, 10, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 5, 13, 224, 10, 13, 3, 13, 7, 13, 227, 10, 13, 12, 13, 14, 13, 230, 11, 13, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 5, 14, 240, 10, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 5, 14, 247, 10, 14, 3, 14, 3, 14, 3, 14, 5, 14, 252, 10, 14, 3, 14, 3, 14, 3, 14, 3, 14, 7, 14, 258, 10, 14, 12, 14, 14, 14, 261, 11, 14, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 5, 16, 268, 10, 16, 3, 16, 3, 16, 6, 16, 272, 10, 16, 13, 16, 14, 16, 273, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 5, 19, 286, 10, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 7, 20, 298, 10, 20, 12, 20, 14, 20, 301, 11, 20, 3, 21, 3, 21, 3, 21, 5, 21, 306, 10, 21, 3, 22, 3, 22, 7, 22, 310, 10, 22, 12, 22, 14, 22, 313, 11, 22, 3, 22, 3, 22, 3, 22, 5, 22, 318, 10, 22, 3, 22, 3, 22, 3, 22, 5, 22, 323, 10, 22, 3, 23, 3, 23, 5, 23, 327, 10, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 7, 24, 334, 10, 24, 12, 24, 14, 24, 337, 11, 24, 3, 25, 3, 25, 7, 25, 341, 10, 25, 12, 25, 14, 25, 344, 11, 25, 3, 25, 3, 25, 3, 25, 3, 25, 5, 25, 350, 10, 25, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 7, 26, 389, 10, 26, 12, 26, 14, 26, 392, 11, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 7, 26, 433, 10, 26, 12, 26, 14, 26, 436, 11, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 7, 26, 446, 10, 26, 12, 26, 14, 26, 449, 11, 26, 3, 26, 5, 26, 452, 10, 26, 3, 27, 3, 27, 3, 27, 5, 27, 457, 10, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 5, 28, 468, 10, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 5, 28, 488, 10, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 7, 28, 495, 10, 28, 12, 28, 14, 28, 498, 11, 28, 3, 28, 3, 28, 3, 28, 5, 28, 503, 10, 28, 3, 29, 6, 29, 506, 10, 29, 13, 29, 14, 29, 507, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 515, 10, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 528, 10, 30, 3, 30, 7, 30, 531, 10, 30, 12, 30, 14, 30, 534, 11, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 7, 30, 543, 10, 30, 12, 30, 14, 30, 546, 11, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 7, 30, 557, 10, 30, 12, 30, 14, 30, 560, 11, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 578, 10, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 587, 10, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 595, 10, 30, 3, 31, 6, 31, 598, 10, 31, 13, 31, 14, 31, 599, 3, 31, 3, 31, 3, 31, 5, 31, 605, 10, 31, 5, 31, 607, 10, 31, 3, 32, 3, 32, 3, 32, 3, 32, 5, 32, 613, 10, 32, 3, 33, 3, 33, 3, 33, 5, 33, 618, 10, 33, 3, 33, 3, 33, 5, 33, 622, 10, 33, 3, 33, 3, 33, 7, 33, 626, 10, 33, 12, 33, 14, 33, 629, 11, 33, 5, 33, 631, 10, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 5, 33, 639, 10, 33, 3, 34, 5, 34, 642, 10, 34, 3, 34, 5, 34, 645, 10, 34, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 7, 36, 655, 10, 36, 12, 36, 14, 36, 658, 11, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 669, 10, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 677, 10, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 683, 10, 37, 3, 37, 3, 37, 5, 37, 687, 10, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 7, 37, 706, 10, 37, 12, 37, 14, 37, 709, 11, 37, 3, 37, 5, 37, 712, 10, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 6, 37, 719, 10, 37, 13, 37, 14, 37, 720, 3, 37, 3, 37, 5, 37, 725, 10, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 775, 10, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 7, 37, 785, 10, 37, 12, 37, 14, 37, 788, 11, 37, 3, 38, 3, 38, 3, 38, 7, 38, 793, 10, 38, 12, 38, 14, 38, 796, 11, 38, 3, 39, 3, 39, 5, 39, 800, 10, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 7, 40, 808, 10, 40, 12, 40, 14, 40, 811, 11, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 5, 41, 825, 10, 41, 3, 42, 7, 42, 828, 10, 42, 12, 42, 14, 42, 831, 11, 42, 3, 43, 3, 43, 3, 43, 5, 43, 836, 10, 43, 3, 44, 3, 44, 3, 44, 3, 44, 5, 44, 842, 10, 44, 3, 45, 3, 45, 5, 45, 846, 10, 45, 3, 46, 3, 46, 3, 46, 3, 46, 7, 46, 852, 10, 46, 12, 46, 14, 46, 855, 11, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 5, 47, 902, 10, 47, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 5, 48, 918, 10, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 7, 48, 932, 10, 48, 12, 48, 14, 48, 935, 11, 48, 3, 48, 2, 9, 12, 24, 26, 38, 70, 72, 94, 49, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 2, 13, 3, 2, 23, 24, 5, 2, 18, 19, 25, 26, 95, 95, 4, 2, 33, 33, 36, 36, 3, 2, 29, 30, 3, 2, 20, 22, 3, 2, 18, 19, 3, 2, 31, 36, 3, 2, 140, 143, 3, 2, 138, 139, 3, 2, 144, 145, 3, 2, 140, 141, 2, 1073, 2, 96, 3, 2, 2, 2, 4, 99, 3, 2, 2, 2, 6, 105, 3, 2, 2, 2, 8, 122, 3, 2, 2, 2, 10, 124, 3, 2, 2, 2, 12, 127, 3, 2, 2, 2, 14, 150, 3, 2, 2, 2, 16, 187, 3, 2, 2, 2, 18, 192, 3, 2, 2, 2, 20, 202, 3, 2, 2, 2, 22, 209, 3, 2, 2, 2, 24, 215, 3, 2, 2, 2, 26, 246, 3, 2, 2, 2, 28, 262, 3, 2, 2, 2, 30, 265, 3, 2, 2, 2, 32, 277, 3, 2, 2, 2, 34, 280, 3, 2, 2, 2, 36, 283, 3, 2, 2, 2, 38, 291, 3, 2, 2, 2, 40, 302, 3, 2, 2, 2, 42, 307, 3, 2, 2, 2, 44, 324, 3, 2, 2, 2, 46, 330, 3, 2, 2, 2, 48, 349, 3, 2, 2, 2, 50, 451, 3, 2, 2, 2, 52, 453, 3, 2, 2, 2, 54, 502, 3, 2, 2, 2, 56, 505, 3, 2, 2, 2, 58, 594, 3, 2, 2, 2, 60, 597, 3, 2, 2, 2, 62, 608, 3, 2, 2, 2, 64, 638, 3, 2, 2, 2, 66, 644, 3, 2, 2, 2, 68, 646, 3, 2, 2, 2, 70, 648, 3, 2, 2, 2, 72, 724, 3, 2, 2, 2, 74, 789, 3, 2, 2, 2, 76, 797, 3, 2, 2, 2, 78, 803, 3, 2, 2, 2, 80, 824, 3, 2, 2, 2, 82, 829, 3, 2, 2, 2, 84, 835, 3, 2, 2, 2, 86, 841, 3, 2, 2, 2, 88, 843, 3, 2, 2, 2, 90, 847, 3, 2, 2, 2, 92, 901, 3, 2, 2, 2, 94, 917, 3, 2, 2, 2, 96, 97, 5, 6, 4, 2, 97, 98, 7, 2, 2, 3, 98, 3, 3, 2, 2, 2, 99, 100, 5, 82, 42, 2, 100, 101, 7, 2, 2, 3, 101, 5, 3, 2, 2, 2, 102, 104, 5, 8, 5, 2, 103, 102, 3, 2, 2, 2, 104, 107, 3, 2, 2, 2, 105, 103, 3, 2, 2, 2, 105, 106, 3, 2, 2, 2, 106, 7, 3, 2, 2, 2, 107, 105, 3, 2, 2, 2, 108, 109, 5, 10, 6, 2, 109, 110, 7, 10, 2, 2, 110, 123, 3, 2, 2, 2, 111, 112, 5, 30, 16, 2, 112, 113, 7, 10, 2, 2, 113, 123, 3, 2, 2, 2, 114, 115, 5, 36, 19, 2, 115, 116, 7, 10, 2, 2, 116, 123, 3, 2, 2, 2, 117, 123, 5, 42, 22, 2, 118, 123, 5, 50, 26, 2, 119, 120, 5, 14, 8, 2, 120, 121, 7, 10, 2, 2, 121, 123, 3, 2, 2, 2, 122, 108, 3, 2, 2, 2, 122, 111, 3, 2, 2, 2, 122, 114, 3, 2, 2, 2, 122, 117, 3, 2, 2, 2, 122, 118, 3, 2, 2, 2, 122, 119, 3, 2, 2, 2, 123, 9, 3, 2, 2, 2, 124, 125, 5, 18, 10, 2, 125, 126, 5, 12, 7, 2, 126, 11, 3, 2, 2, 2, 127, 131, 8, 7, 1, 2, 128, 130, 5, 20, 11, 2, 129, 128, 3, 2, 2, 2, 130, 133, 3, 2, 2, 2, 131, 129, 3, 2, 2, 2, 131, 132, 3, 2, 2, 2, 132, 134, 3, 2, 2, 2, 133, 131, 3, 2, 2, 2, 134, 135, 5, 16, 9, 2, 135, 147, 3, 2, 2, 2, 136, 137, 12, 3, 2, 2, 137, 141, 7, 12, 2, 2, 138, 140, 5, 20, 11, 2, 139, 138, 3, 2, 2, 2, 140, 143, 3, 2, 2, 2, 141, 139, 3, 2, 2, 2, 141, 142, 3, 2, 2, 2, 142, 144, 3, 2, 2, 2, 143, 141, 3, 2, 2, 2, 144, 146, 5, 16, 9, 2, 145, 136, 3, 2, 2, 2, 146, 149, 3, 2, 2, 2, 147, 145, 3, 2, 2, 2, 147, 148, 3, 2, 2, 2, 148, 13, 3, 2, 2, 2, 149, 147, 3, 2, 2, 2, 150, 151, 7, 41, 2, 2, 151, 155, 5, 18, 10, 2, 152, 154, 5, 20, 11, 2, 153, 152, 3, 2, 2, 2, 154, 157, 3, 2, 2, 2, 155, 153, 3, 2, 2, 2, 155, 156, 3, 2, 2, 2, 156, 158, 3, 2, 2, 2, 157, 155, 3, 2, 2, 2, 158, 162, 7, 122, 2, 2, 159, 161, 5, 22, 12, 2, 160, 159, 3, 2, 2, 2, 161, 164, 3, 2, 2, 2, 162, 160, 3, 2, 2, 2, 162, 163, 3, 2, 2, 2, 163, 165, 3, 2, 2, 2, 164, 162, 3, 2, 2, 2, 165, 166, 8, 8, 1, 2, 166, 15, 3, 2, 2, 2, 167, 171, 7, 122, 2, 2, 168, 170, 5, 22, 12, 2, 169, 168, 3, 2, 2, 2, 170, 173, 3, 2, 2, 2, 171, 169, 3, 2, 2, 2, 171, 172, 3, 2, 2, 2, 172, 176, 3, 2, 2, 2, 173, 171, 3, 2, 2, 2, 174, 175, 7, 39, 2, 2, 175, 177, 5, 72, 37, 2, 176, 174, 3, 2, 2, 2, 176, 177, 3, 2, 2, 2, 177, 188, 3, 2, 2, 2, 178, 182, 7, 122, 2, 2, 179, 181, 5, 22, 12, 2, 180, 179, 3, 2, 2, 2, 181, 184, 3, 2, 2, 2, 182, 180, 3, 2, 2, 2, 182, 183, 3, 2, 2, 2, 183, 185, 3, 2, 2, 2, 184, 182, 3, 2, 2, 2, 185, 186, 7, 39, 2, 2, 186, 188, 5, 76, 39, 2, 187, 167, 3, 2, 2, 2, 187, 178, 3, 2, 2, 2, 188, 17, 3, 2, 2, 2, 189, 191, 5, 54, 28, 2, 190, 189, 3, 2, 2, 2, 191, 194, 3, 2, 2, 2, 192, 190, 3, 2, 2, 2, 192, 193, 3, 2, 2, 2, 193, 195, 3, 2, 2, 2, 194, 192, 3, 2, 2, 2, 195, 199, 5, 26, 14, 2, 196, 198, 5, 54, 28, 2, 197, 196, 3, 2, 2, 2, 198, 201, 3, 2, 2, 2, 199, 197, 3, 2, 2, 2, 199, 200, 3, 2, 2, 2, 200, 19, 3, 2, 2, 2, 201, 199, 3, 2, 2, 2, 202, 206, 7, 20, 2, 2, 203, 205, 5, 54, 28, 2, 204, 203, 3, 2, 2, 2, 205, 208, 3, 2, 2, 2, 206, 204, 3, 2, 2, 2, 206, 207, 3, 2, 2, 2, 207, 21, 3, 2, 2, 2, 208, 206, 3, 2, 2, 2, 209, 211, 7, 6, 2, 2, 210, 212, 5, 72, 37, 2, 211, 210, 3, 2, 2, 2, 211, 212, 3, 2, 2, 2, 212, 213, 3, 2, 2, 2, 213, 214, 7, 7, 2, 2, 214, 23, 3, 2, 2, 2, 215, 216, 8, 13, 1, 2, 216, 217, 5, 26, 14, 2, 217, 228, 3, 2, 2, 2, 218, 219, 12, 4, 2, 2, 219, 227, 7, 20, 2, 2, 220, 221, 12, 3, 2, 2, 221, 223, 7, 6, 2, 2, 222, 224, 5, 72, 37, 2, 223, 222, 3, 2, 2, 2, 223, 224, 3, 2, 2, 2, 224, 225, 3, 2, 2, 2, 225, 227, 7, 7, 2, 2, 226, 218, 3, 2, 2, 2, 226, 220, 3, 2, 2, 2, 227, 230, 3, 2, 2, 2, 228, 226, 3, 2, 2, 2, 228, 229, 3, 2, 2, 2, 229, 25, 3, 2, 2, 2, 230, 228, 3, 2, 2, 2, 231, 232, 8, 14, 1, 2, 232, 233, 7, 8, 2, 2, 233, 234, 5, 26, 14, 2, 234, 235, 7, 9, 2, 2, 235, 247, 3, 2, 2, 2, 236, 247, 7, 97, 2, 2, 237, 239, 7, 96, 2, 2, 238, 240, 7, 97, 2, 2, 239, 238, 3, 2, 2, 2, 239, 240, 3, 2, 2, 2, 240, 247, 3, 2, 2, 2, 241, 247, 5, 30, 16, 2, 242, 247, 5, 28, 15, 2, 243, 247, 5, 36, 19, 2, 244, 247, 5, 34, 18, 2, 245, 247, 7, 3, 2, 2, 246, 231, 3, 2, 2, 2, 246, 236, 3, 2, 2, 2, 246, 237, 3, 2, 2, 2, 246, 241, 3, 2, 2, 2, 246, 242, 3, 2, 2, 2, 246, 243, 3, 2, 2, 2, 246, 244, 3, 2, 2, 2, 246, 245, 3, 2, 2, 2, 247, 259, 3, 2, 2, 2, 248, 249, 12, 9, 2, 2, 249, 251, 7, 6, 2, 2, 250, 252, 5, 72, 37, 2, 251, 250, 3, 2, 2, 2, 251, 252, 3, 2, 2, 2, 252, 253, 3, 2, 2, 2, 253, 258, 7, 7, 2, 2, 254, 255, 12, 8, 2, 2, 255, 256, 7, 8, 2, 2, 256, 258, 7, 9, 2, 2, 257, 248, 3, 2, 2, 2, 257, 254, 3, 2, 2, 2, 258, 261, 3, 2, 2, 2, 259, 257, 3, 2, 2, 2, 259, 260, 3, 2, 2, 2, 260, 27, 3, 2, 2, 2, 261, 259, 3, 2, 2, 2, 262, 263, 7, 84, 2, 2, 263, 264, 7, 122, 2, 2, 264, 29, 3, 2, 2, 2, 265, 267, 7, 84, 2, 2, 266, 268, 7, 122, 2, 2, 267, 266, 3, 2, 2, 2, 267, 268, 3, 2, 2, 2, 268, 269, 3, 2, 2, 2, 269, 271, 7, 4, 2, 2, 270, 272, 5, 32, 17, 2, 271, 270, 3, 2, 2, 2, 272, 273, 3, 2, 2, 2, 273, 271, 3, 2, 2, 2, 273, 274, 3, 2, 2, 2, 274, 275, 3, 2, 2, 2, 275, 276, 7, 5, 2, 2, 276, 31, 3, 2, 2, 2, 277, 278, 5, 10, 6, 2, 278, 279, 7, 10, 2, 2, 279, 33, 3, 2, 2, 2, 280, 281, 7, 85, 2, 2, 281, 282, 7, 122, 2, 2, 282, 35, 3, 2, 2, 2, 283, 285, 7, 85, 2, 2, 284, 286, 7, 122, 2, 2, 285, 284, 3, 2, 2, 2, 285, 286, 3, 2, 2, 2, 286, 287, 3, 2, 2, 2, 287, 288, 7, 4, 2, 2, 288, 289, 5, 38, 20, 2, 289, 290, 7, 5, 2, 2, 290, 37, 3, 2, 2, 2, 291, 292, 8, 20, 1, 2, 292, 293, 5, 40, 21, 2, 293, 299, 3, 2, 2, 2, 294, 295, 12, 3, 2, 2, 295, 296, 7, 12, 2, 2, 296, 298, 5, 40, 21, 2, 297, 294, 3, 2, 2, 2, 298, 301, 3, 2, 2, 2, 299, 297, 3, 2, 2, 2, 299, 300, 3, 2, 2, 2, 300, 39, 3, 2, 2, 2, 301, 299, 3, 2, 2, 2, 302, 305, 7, 122, 2, 2, 303, 304, 7, 39, 2, 2, 304, 306, 5, 72, 37, 2, 305, 303, 3, 2, 2, 2, 305, 306, 3, 2, 2, 2, 306, 41, 3, 2, 2, 2, 307, 311, 5, 18, 10, 2, 308, 310, 5, 20, 11, 2, 309, 308, 3, 2, 2, 2, 310, 313, 3, 2, 2, 2, 311, 309, 3, 2, 2, 2, 311, 312, 3, 2, 2, 2, 312, 314, 3, 2, 2, 2, 313, 311, 3, 2, 2, 2, 314, 315, 7, 122, 2, 2, 315, 317, 7, 8, 2, 2, 316, 318, 5, 46, 24, 2, 317, 316, 3, 2, 2, 2, 317, 318, 3, 2, 2, 2, 318, 319, 3, 2, 2, 2, 319, 322, 7, 9, 2, 2, 320, 323, 5, 44, 23, 2, 321, 323, 7, 10, 2, 2, 322, 320, 3, 2, 2, 2, 322, 321, 3, 2, 2, 2, 323, 43, 3, 2, 2, 2, 324, 326, 7, 4, 2, 2, 325, 327, 5, 56, 29, 2, 326, 325, 3, 2, 2, 2, 326, 327, 3, 2, 2, 2, 327, 328, 3, 2, 2, 2, 328, 329, 7, 5, 2, 2, 329, 45, 3, 2, 2, 2, 330, 335, 5, 48, 25, 2, 331, 332, 7, 12, 2, 2, 332, 334, 5, 48, 25, 2, 333, 331, 3, 2, 2, 2, 334, 337, 3, 2, 2, 2, 335, 333, 3, 2, 2, 2, 335, 336, 3, 2, 2, 2, 336, 47, 3, 2, 2, 2, 337, 335, 3, 2, 2, 2, 338, 342, 5, 18, 10, 2, 339, 341, 5, 20, 11, 2, 340, 339, 3, 2, 2, 2, 341, 344, 3, 2, 2, 2, 342, 340, 3, 2, 2, 2, 342, 343, 3, 2, 2, 2, 343, 345, 3, 2, 2, 2, 344, 342, 3, 2, 2, 2, 345, 346, 7, 122, 2, 2, 346, 350, 3, 2, 2, 2, 347, 350, 7, 97, 2, 2, 348, 350, 7, 14, 2, 2, 349, 338, 3, 2, 2, 2, 349, 347, 3, 2, 2, 2, 349, 348, 3, 2, 2, 2, 350, 49, 3, 2, 2, 2, 351, 352, 7, 102, 2, 2, 352, 353, 7, 44, 2, 2, 353, 354, 3, 2, 2, 2, 354, 355, 7, 8, 2, 2, 355, 356, 7, 122, 2, 2, 356, 452, 7, 9, 2, 2, 357, 358, 7, 102, 2, 2, 358, 359, 7, 48, 2, 2, 359, 360, 3, 2, 2, 2, 360, 361, 7, 8, 2, 2, 361, 362, 7, 122, 2, 2, 362, 452, 7, 9, 2, 2, 363, 364, 7, 102, 2, 2, 364, 365, 7, 45, 2, 2, 365, 366, 3, 2, 2, 2, 366, 367, 7, 8, 2, 2, 367, 368, 7, 123, 2, 2, 368, 452, 7, 9, 2, 2, 369, 370, 7, 102, 2, 2, 370, 371, 7, 46, 2, 2, 371, 372, 3, 2, 2, 2, 372, 373, 7, 8, 2, 2, 373, 374, 7, 123, 2, 2, 374, 452, 7, 9, 2, 2, 375, 376, 7, 102, 2, 2, 376, 377, 7, 47, 2, 2, 377, 378, 3, 2, 2, 2, 378, 379, 7, 8, 2, 2, 379, 380, 7, 123, 2, 2, 380, 452, 7, 9, 2, 2, 381, 382, 7, 102, 2, 2, 382, 383, 7, 42, 2, 2, 383, 384, 3, 2, 2, 2, 384, 385, 7, 8, 2, 2, 385, 390, 5, 52, 27, 2, 386, 387, 7, 12, 2, 2, 387, 389, 5, 52, 27, 2, 388, 386, 3, 2, 2, 2, 389, 392, 3, 2, 2, 2, 390, 388, 3, 2, 2, 2, 390, 391, 3, 2, 2, 2, 391, 393, 3, 2, 2, 2, 392, 390, 3, 2, 2, 2, 393, 394, 7, 9, 2, 2, 394, 452, 3, 2, 2, 2, 395, 396, 7, 102, 2, 2, 396, 397, 7, 43, 2, 2, 397, 398, 3, 2, 2, 2, 398, 399, 7, 8, 2, 2, 399, 400, 7, 113, 2, 2, 400, 452, 7, 9, 2, 2, 401, 402, 7, 102, 2, 2, 402, 403, 7, 49, 2, 2, 403, 404, 3, 2, 2, 2, 404, 405, 7, 8, 2, 2, 405, 406, 7, 122, 2, 2, 406, 452, 7, 9, 2, 2, 407, 408, 7, 102, 2, 2, 408, 409, 7, 50, 2, 2, 409, 410, 3, 2, 2, 2, 410, 411, 7, 8, 2, 2, 411, 412, 7, 122, 2, 2, 412, 452, 7, 9, 2, 2, 413, 414, 7, 102, 2, 2, 414, 415, 7, 51, 2, 2, 415, 416, 3, 2, 2, 2, 416, 417, 7, 8, 2, 2, 417, 418, 7, 122, 2, 2, 418, 452, 7, 9, 2, 2, 419, 420, 7, 102, 2, 2, 420, 421, 7, 68, 2, 2, 421, 422, 3, 2, 2, 2, 422, 423, 7, 8, 2, 2, 423, 424, 7, 69, 2, 2, 424, 452, 7, 9, 2, 2, 425, 426, 7, 102, 2, 2, 426, 427, 7, 70, 2, 2, 427, 428, 3, 2, 2, 2, 428, 429, 7, 8, 2, 2, 429, 434, 7, 122, 2, 2, 430, 431, 7, 12, 2, 2, 431, 433, 7, 122, 2, 2, 432, 430, 3, 2, 2, 2, 433, 436, 3, 2, 2, 2, 434, 432, 3, 2, 2, 2, 434, 435, 3, 2, 2, 2, 435, 437, 3, 2, 2, 2, 436, 434, 3, 2, 2, 2, 437, 452, 7, 9, 2, 2, 438, 439, 7, 102, 2, 2, 439, 440, 7, 71, 2, 2, 440, 441, 3, 2, 2, 2, 441, 442, 7, 8, 2, 2, 442, 447, 7, 122, 2, 2, 443, 444, 7, 12, 2, 2, 444, 446, 7, 122, 2, 2, 445, 443, 3, 2, 2, 2, 446, 449, 3, 2, 2, 2, 447, 445, 3, 2, 2, 2, 447, 448, 3, 2, 2, 2, 448, 450, 3, 2, 2, 2, 449, 447, 3, 2, 2, 2, 450, 452, 7, 9, 2, 2, 451, 351, 3, 2, 2, 2, 451, 357, 3, 2, 2, 2, 451, 363, 3, 2, 2, 2, 451, 369, 3, 2, 2, 2, 451, 375, 3, 2, 2, 2, 451, 381, 3, 2, 2, 2, 451, 395, 3, 2, 2, 2, 451, 401, 3, 2, 2, 2, 451, 407, 3, 2, 2, 2, 451, 413, 3, 2, 2, 2, 451, 419, 3, 2, 2, 2, 451, 425, 3, 2, 2, 2, 451, 438, 3, 2, 2, 2, 452, 51, 3, 2, 2, 2, 453, 456, 7, 113, 2, 2, 454, 455, 7, 13, 2, 2, 455, 457, 7, 113, 2, 2, 456, 454, 3, 2, 2, 2, 456, 457, 3, 2, 2, 2, 457, 53, 3, 2, 2, 2, 458, 503, 7, 52, 2, 2, 459, 460, 7, 55, 2, 2, 460, 461, 7, 8, 2, 2, 461, 462, 7, 113, 2, 2, 462, 503, 7, 9, 2, 2, 463, 467, 7, 60, 2, 2, 464, 465, 7, 8, 2, 2, 465, 466, 7, 122, 2, 2, 466, 468, 7, 9, 2, 2, 467, 464, 3, 2, 2, 2, 467, 468, 3, 2, 2, 2, 468, 503, 3, 2, 2, 2, 469, 503, 7, 63, 2, 2, 470, 503, 7, 64, 2, 2, 471, 472, 7, 62, 2, 2, 472, 473, 7, 8, 2, 2, 473, 474, 7, 113, 2, 2, 474, 503, 7, 9, 2, 2, 475, 503, 7, 57, 2, 2, 476, 503, 7, 58, 2, 2, 477, 503, 7, 65, 2, 2, 478, 503, 7, 66, 2, 2, 479, 503, 7, 53, 2, 2, 480, 503, 7, 54, 2, 2, 481, 503, 7, 56, 2, 2, 482, 503, 7, 67, 2, 2, 483, 487, 7, 59, 2, 2, 484, 485, 7, 8, 2, 2, 485, 486, 7, 122, 2, 2, 486, 488, 7, 9, 2, 2, 487, 484, 3, 2, 2, 2, 487, 488, 3, 2, 2, 2, 488, 503, 3, 2, 2, 2, 489, 490, 7, 61, 2, 2, 490, 491, 7, 8, 2, 2, 491, 496, 5, 52, 27, 2, 492, 493, 7, 12, 2, 2, 493, 495, 5, 52, 27, 2, 494, 492, 3, 2, 2, 2, 495, 498, 3, 2, 2, 2, 496, 494, 3, 2, 2, 2, 496, 497, 3, 2, 2, 2, 497, 499, 3, 2, 2, 2, 498, 496, 3, 2, 2, 2, 499, 500, 7, 9, 2, 2, 500, 503, 3, 2, 2, 2, 501, 503, 7, 69, 2, 2, 502, 458, 3, 2, 2, 2, 502, 459, 3, 2, 2, 2, 502, 463, 3, 2, 2, 2, 502, 469, 3, 2, 2, 2, 502, 470, 3, 2, 2, 2, 502, 471, 3, 2, 2, 2, 502, 475, 3, 2, 2, 2, 502, 476, 3, 2, 2, 2, 502, 477, 3, 2, 2, 2, 502, 478, 3, 2, 2, 2, 502, 479, 3, 2, 2, 2, 502, 480, 3, 2, 2, 2, 502, 481, 3, 2, 2, 2, 502, 482, 3, 2, 2, 2, 502, 483, 3, 2, 2, 2, 502, 489, 3, 2, 2, 2, 502, 501, 3, 2, 2, 2, 503, 55, 3, 2, 2, 2, 504, 506, 5, 58, 30, 2, 505, 504, 3, 2, 2, 2, 506, 507, 3, 2, 2, 2, 507, 505, 3, 2, 2, 2, 507, 508, 3, 2, 2, 2, 508, 57, 3, 2, 2, 2, 509, 510, 5, 10, 6, 2, 510, 511, 7, 10, 2, 2, 511, 595, 3, 2, 2, 2, 512, 514, 7, 4, 2, 2, 513, 515, 5, 56, 29, 2, 514, 513, 3, 2, 2, 2, 514, 515, 3, 2, 2, 2, 515, 516, 3, 2, 2, 2, 516, 595, 7, 5, 2, 2, 517, 518, 5, 70, 36, 2, 518, 519, 7, 10, 2, 2, 519, 595, 3, 2, 2, 2, 520, 521, 7, 72, 2, 2, 521, 522, 7, 8, 2, 2, 522, 523, 5, 70, 36, 2, 523, 524, 7, 9, 2, 2, 524, 527, 5, 58, 30, 2, 525, 526, 7, 73, 2, 2, 526, 528, 5, 58, 30, 2, 527, 525, 3, 2, 2, 2, 527, 528, 3, 2, 2, 2, 528, 595, 3, 2, 2, 2, 529, 531, 5, 54, 28, 2, 530, 529, 3, 2, 2, 2, 531, 534, 3, 2, 2, 2, 532, 530, 3, 2, 2, 2, 532, 533, 3, 2, 2, 2, 533, 535, 3, 2, 2, 2, 534, 532, 3, 2, 2, 2, 535, 536, 7, 74, 2, 2, 536, 537, 7, 8, 2, 2, 537, 538, 5, 70, 36, 2, 538, 539, 7, 9, 2, 2, 539, 540, 5, 58, 30, 2, 540, 595, 3, 2, 2, 2, 541, 543, 5, 54, 28, 2, 542, 541, 3, 2, 2, 2, 543, 546, 3, 2, 2, 2, 544, 542, 3, 2, 2, 2, 544, 545, 3, 2, 2, 2, 545, 547, 3, 2, 2, 2, 546, 544, 3, 2, 2, 2, 547, 548, 7, 75, 2, 2, 548, 549, 5, 58, 30, 2, 549, 550, 7, 74, 2, 2, 550, 551, 7, 8, 2, 2, 551, 552, 5, 70, 36, 2, 552, 553, 7, 9, 2, 2, 553, 554, 7, 10, 2, 2, 554, 595, 3, 2, 2, 2, 555, 557, 5, 54, 28, 2, 556, 555, 3, 2, 2, 2, 557, 560, 3, 2, 2, 2, 558, 556, 3, 2, 2, 2, 558, 559, 3, 2, 2, 2, 559, 561, 3, 2, 2, 2, 560, 558, 3, 2, 2, 2, 561, 562, 7, 76, 2, 2, 562, 563, 7, 8, 2, 2, 563, 564, 5, 64, 33, 2, 564, 565, 7, 9, 2, 2, 565, 566, 5, 58, 30, 2, 566, 595, 3, 2, 2, 2, 567, 568, 7, 77, 2, 2, 568, 569, 7, 8, 2, 2, 569, 570, 5, 70, 36, 2, 570, 571, 7, 9, 2, 2, 571, 572, 7, 4, 2, 2, 572, 573, 5, 60, 31, 2, 573, 574, 7, 5, 2, 2, 574, 595, 3, 2, 2, 2, 575, 577, 7, 78, 2, 2, 576, 578, 5, 70, 36, 2, 577, 576, 3, 2, 2, 2, 577, 578, 3, 2, 2, 2, 578, 579, 3, 2, 2, 2, 579, 595, 7, 10, 2, 2, 580, 581, 7, 79, 2, 2, 581, 595, 7, 10, 2, 2, 582, 583, 7, 80, 2, 2, 583, 595, 7, 10, 2, 2, 584, 586, 7, 81, 2, 2, 585, 587, 5, 78, 40, 2, 586, 585, 3, 2, 2, 2, 586, 587, 3, 2, 2, 2, 587, 588, 3, 2, 2, 2, 588, 589, 7, 4, 2, 2, 589, 590, 5, 82, 42, 2, 590, 591, 7, 147, 2, 2, 591, 595, 3, 2, 2, 2, 592, 595, 5, 76, 39, 2, 593, 595, 7, 10, 2, 2, 594, 509, 3, 2, 2, 2, 594, 512, 3, 2, 2, 2, 594, 517, 3, 2, 2, 2, 594, 520, 3, 2, 2, 2, 594, 532, 3, 2, 2, 2, 594, 544, 3, 2, 2, 2, 594, 558, 3, 2, 2, 2, 594, 567, 3, 2, 2, 2, 594, 575, 3, 2, 2, 2, 594, 580, 3, 2, 2, 2, 594, 582, 3, 2, 2, 2, 594, 584, 3, 2, 2, 2, 594, 592, 3, 2, 2, 2, 594, 593, 3, 2, 2, 2, 595, 59, 3, 2, 2, 2, 596, 598, 5, 62, 32, 2, 597, 596, 3, 2, 2, 2, 598, 599, 3, 2, 2, 2, 599, 597, 3, 2, 2, 2, 599, 600, 3, 2, 2, 2, 600, 606, 3, 2, 2, 2, 601, 602, 7, 82, 2, 2, 602, 604, 7, 11, 2, 2, 603, 605, 5, 56, 29, 2, 604, 603, 3, 2, 2, 2, 604, 605, 3, 2, 2, 2, 605, 607, 3, 2, 2, 2, 606, 601, 3, 2, 2, 2, 606, 607, 3, 2, 2, 2, 607, 61, 3, 2, 2, 2, 608, 609, 7, 83, 2, 2, 609, 610, 5, 72, 37, 2, 610, 612, 7, 11, 2, 2, 611, 613, 5, 56, 29, 2, 612, 611, 3, 2, 2, 2, 612, 613, 3, 2, 2, 2, 613, 63, 3, 2, 2, 2, 614, 615, 5, 66, 34, 2, 615, 617, 7, 10, 2, 2, 616, 618, 5, 68, 35, 2, 617, 616, 3, 2, 2, 2, 617, 618, 3, 2, 2, 2, 618, 619, 3, 2, 2, 2, 619, 621, 7, 10, 2, 2, 620, 622, 5, 70, 36, 2, 621, 620, 3, 2, 2, 2, 621, 622, 3, 2, 2, 2, 622, 639, 3, 2, 2, 2, 623, 627, 5, 18, 10, 2, 624, 626, 5, 20, 11, 2, 625, 624, 3, 2, 2, 2, 626, 629, 3, 2, 2, 2, 627, 625, 3, 2, 2, 2, 627, 628, 3, 2, 2, 2, 628, 631, 3, 2, 2, 2, 629, 627, 3, 2, 2, 2, 630, 623, 3, 2, 2, 2, 630, 631, 3, 2, 2, 2, 631, 632, 3, 2, 2, 2, 632, 633, 7, 122, 2, 2, 633, 634, 7, 11, 2, 2, 634, 635, 5, 72, 37, 2, 635, 636, 7, 13, 2, 2, 636, 637, 5, 72, 37, 2, 637, 639, 3, 2, 2, 2, 638, 614, 3, 2, 2, 2, 638, 630, 3, 2, 2, 2, 639, 65, 3, 2, 2, 2, 640, 642, 5, 10, 6, 2, 641, 640, 3, 2, 2, 2, 641, 642, 3, 2, 2, 2, 642, 645, 3, 2, 2, 2, 643, 645, 5, 70, 36, 2, 644, 641, 3, 2, 2, 2, 644, 643, 3, 2, 2, 2, 645, 67, 3, 2, 2, 2, 646, 647, 5, 70, 36, 2, 647, 69, 3, 2, 2, 2, 648, 649, 8, 36, 1, 2, 649, 650, 5, 72, 37, 2, 650, 656, 3, 2, 2, 2, 651, 652, 12, 3, 2, 2, 652, 653, 7, 12, 2, 2, 653, 655, 5, 72, 37, 2, 654, 651, 3, 2, 2, 2, 655, 658, 3, 2, 2, 2, 656, 654, 3, 2, 2, 2, 656, 657, 3, 2, 2, 2, 657, 71, 3, 2, 2, 2, 658, 656, 3, 2, 2, 2, 659, 660, 8, 37, 1, 2, 660, 661, 7, 8, 2, 2, 661, 662, 5, 70, 36, 2, 662, 663, 7, 9, 2, 2, 663, 725, 3, 2, 2, 2, 664, 665, 7, 86, 2, 2, 665, 668, 7, 8, 2, 2, 666, 669, 5, 72, 37, 2, 667, 669, 5, 24, 13, 2, 668, 666, 3, 2, 2, 2, 668, 667, 3, 2, 2, 2, 669, 670, 3, 2, 2, 2, 670, 671, 7, 9, 2, 2, 671, 725, 3, 2, 2, 2, 672, 673, 7, 87, 2, 2, 673, 676, 7, 8, 2, 2, 674, 677, 5, 72, 37, 2, 675, 677, 5, 24, 13, 2, 676, 674, 3, 2, 2, 2, 676, 675, 3, 2, 2, 2, 677, 678, 3, 2, 2, 2, 678, 679, 7, 9, 2, 2, 679, 725, 3, 2, 2, 2, 680, 682, 7, 88, 2, 2, 681, 683, 7, 8, 2, 2, 682, 681, 3, 2, 2, 2, 682, 683, 3, 2, 2, 2, 683, 684, 3, 2, 2, 2, 684, 686, 7, 122, 2, 2, 685, 687, 7, 9, 2, 2, 686, 685, 3, 2, 2, 2, 686, 687, 3, 2, 2, 2, 687, 725, 3, 2, 2, 2, 688, 689, 7, 8, 2, 2, 689, 690, 5, 24, 13, 2, 690, 691, 7, 9, 2, 2, 691, 692, 5, 72, 37, 26, 692, 725, 3, 2, 2, 2, 693, 694, 9, 2, 2, 2, 694, 725, 5, 72, 37, 25, 695, 696, 7, 20, 2, 2, 696, 725, 5, 72, 37, 23, 697, 698, 9, 3, 2, 2, 698, 725, 5, 72, 37, 22, 699, 700, 9, 4, 2, 2, 700, 725, 5, 72, 37, 18, 701, 702, 7, 4, 2, 2, 702, 707, 5, 72, 37, 2, 703, 704, 7, 12, 2, 2, 704, 706, 5, 72, 37, 2, 705, 703, 3, 2, 2, 2, 706, 709, 3, 2, 2, 2, 707, 705, 3, 2, 2, 2, 707, 708, 3, 2, 2, 2, 708, 711, 3, 2, 2, 2, 709, 707, 3, 2, 2, 2, 710, 712, 7, 12, 2, 2, 711, 710, 3, 2, 2, 2, 711, 712, 3, 2, 2, 2, 712, 713, 3, 2, 2, 2, 713, 714, 7, 5, 2, 2, 714, 725, 3, 2, 2, 2, 715, 725, 7, 122, 2, 2, 716, 725, 7, 113, 2, 2, 717, 719, 7, 123, 2, 2, 718, 717, 3, 2, 2, 2, 719, 720, 3, 2, 2, 2, 720, 718, 3, 2, 2, 2, 720, 721, 3, 2, 2, 2, 721, 725, 3, 2, 2, 2, 722, 725, 7, 124, 2, 2, 723, 725, 7, 98, 2, 2, 724, 659, 3, 2, 2, 2, 724, 664, 3, 2, 2, 2, 724, 672, 3, 2, 2, 2, 724, 680, 3, 2, 2, 2, 724, 688, 3, 2, 2, 2, 724, 693, 3, 2, 2, 2, 724, 695, 3, 2, 2, 2, 724, 697, 3, 2, 2, 2, 724, 699, 3, 2, 2, 2, 724, 701, 3, 2, 2, 2, 724, 715, 3, 2, 2, 2, 724, 716, 3, 2, 2, 2, 724, 718, 3, 2, 2, 2, 724, 722, 3, 2, 2, 2, 724, 723, 3, 2, 2, 2, 725, 786, 3, 2, 2, 2, 726, 727, 12, 21, 2, 2, 727, 728, 9, 5, 2, 2, 728, 785, 5, 72, 37, 22, 729, 730, 12, 20, 2, 2, 730, 731, 9, 6, 2, 2, 731, 785, 5, 72, 37, 21, 732, 733, 12, 19, 2, 2, 733, 734, 9, 7, 2, 2, 734, 785, 5, 72, 37, 20, 735, 736, 12, 17, 2, 2, 736, 737, 9, 8, 2, 2, 737, 785, 5, 72, 37, 18, 738, 739, 12, 16, 2, 2, 739, 740, 7, 25, 2, 2, 740, 785, 5, 72, 37, 17, 741, 742, 12, 15, 2, 2, 742, 743, 7, 27, 2, 2, 743, 785, 5, 72, 37, 16, 744, 745, 12, 14, 2, 2, 745, 746, 7, 28, 2, 2, 746, 785, 5, 72, 37, 15, 747, 748, 12, 13, 2, 2, 748, 749, 7, 37, 2, 2, 749, 785, 5, 72, 37, 14, 750, 751, 12, 12, 2, 2, 751, 752, 7, 38, 2, 2, 752, 785, 5, 72, 37, 13, 753, 754, 12, 11, 2, 2, 754, 755, 7, 15, 2, 2, 755, 756, 5, 72, 37, 2, 756, 757, 7, 11, 2, 2, 757, 758, 5, 72, 37, 12, 758, 785, 3, 2, 2, 2, 759, 760, 12, 10, 2, 2, 760, 761, 7, 39, 2, 2, 761, 785, 5, 72, 37, 10, 762, 763, 12, 9, 2, 2, 763, 764, 7, 40, 2, 2, 764, 785, 5, 72, 37, 9, 765, 766, 12, 33, 2, 2, 766, 767, 7, 16, 2, 2, 767, 785, 7, 122, 2, 2, 768, 769, 12, 32, 2, 2, 769, 770, 7, 17, 2, 2, 770, 785, 7, 122, 2, 2, 771, 772, 12, 31, 2, 2, 772, 774, 7, 8, 2, 2, 773, 775, 5, 74, 38, 2, 774, 773, 3, 2, 2, 2, 774, 775, 3, 2, 2, 2, 775, 776, 3, 2, 2, 2, 776, 785, 7, 9, 2, 2, 777, 778, 12, 27, 2, 2, 778, 779, 7, 6, 2, 2, 779, 780, 5, 70, 36, 2, 780, 781, 7, 7, 2, 2, 781, 785, 3, 2, 2, 2, 782, 783, 12, 24, 2, 2, 783, 785, 9, 2, 2, 2, 784, 726, 3, 2, 2, 2, 784, 729, 3, 2, 2, 2, 784, 732, 3, 2, 2, 2, 784, 735, 3, 2, 2, 2, 784, 738, 3, 2, 2, 2, 784, 741, 3, 2, 2, 2, 784, 744, 3, 2, 2, 2, 784, 747, 3, 2, 2, 2, 784, 750, 3, 2, 2, 2, 784, 753, 3, 2, 2, 2, 784, 759, 3, 2, 2, 2, 784, 762, 3, 2, 2, 2, 784, 765, 3, 2, 2, 2, 784, 768, 3, 2, 2, 2, 784, 771, 3, 2, 2, 2, 784, 777, 3, 2, 2, 2, 784, 782, 3, 2, 2, 2, 785, 788, 3, 2, 2, 2, 786, 784, 3, 2, 2, 2, 786, 787, 3, 2, 2, 2, 787, 73, 3, 2, 2, 2, 788, 786, 3, 2, 2, 2, 789, 794, 5, 72, 37, 2, 790, 791, 7, 12, 2, 2, 791, 793, 5, 72, 37, 2, 792, 790, 3, 2, 2, 2, 793, 796, 3, 2, 2, 2, 794, 792, 3, 2, 2, 2, 794, 795, 3, 2, 2, 2, 795, 75, 3, 2, 2, 2, 796, 794, 3, 2, 2, 2, 797, 799, 7, 89, 2, 2, 798, 800, 5, 78, 40, 2, 799, 798, 3, 2, 2, 2, 799, 800, 3, 2, 2, 2, 800, 801, 3, 2, 2, 2, 801, 802, 7, 99, 2, 2, 802, 77, 3, 2, 2, 2, 803, 804, 7, 8, 2, 2, 804, 809, 5, 80, 41, 2, 805, 806, 7, 12, 2, 2, 806, 808, 5, 80, 41, 2, 807, 805, 3, 2, 2, 2, 808, 811, 3, 2, 2, 2, 809, 807, 3, 2, 2, 2, 809, 810, 3, 2, 2, 2, 810, 812, 3, 2, 2, 2, 811, 809, 3, 2, 2, 2, 812, 813, 7, 9, 2, 2, 813, 79, 3, 2, 2, 2, 814, 815, 7, 90, 2, 2, 815, 825, 7, 123, 2, 2, 816, 817, 7, 91, 2, 2, 817, 825, 7, 122, 2, 2, 818, 819, 7, 92, 2, 2, 819, 825, 7, 123, 2, 2, 820, 821, 7, 93, 2, 2, 821, 825, 5, 72, 37, 2, 822, 823, 7, 94, 2, 2, 823, 825, 5, 72, 37, 2, 824, 814, 3, 2, 2, 2, 824, 816, 3, 2, 2, 2, 824, 818, 3, 2, 2, 2, 824, 820, 3, 2, 2, 2, 824, 822, 3, 2, 2, 2, 825, 81, 3, 2, 2, 2, 826, 828, 5, 84, 43, 2, 827, 826, 3, 2, 2, 2, 828, 831, 3, 2, 2, 2, 829, 827, 3, 2, 2, 2, 829, 830, 3, 2, 2, 2, 830, 83, 3, 2, 2, 2, 831, 829, 3, 2, 2, 2, 832, 836, 5, 86, 44, 2, 833, 836, 5, 88, 45, 2, 834, 836, 5, 90, 46, 2, 835, 832, 3, 2, 2, 2, 835, 833, 3, 2, 2, 2, 835, 834, 3, 2, 2, 2, 836, 85, 3, 2, 2, 2, 837, 838, 7, 160, 2, 2, 838, 842, 7, 131, 2, 2, 839, 840, 7, 159, 2, 2, 840, 842, 7, 131, 2, 2, 841, 837, 3, 2, 2, 2, 841, 839, 3, 2, 2, 2, 842, 87, 3, 2, 2, 2, 843, 845, 7, 129, 2, 2, 844, 846, 5, 92, 47, 2, 845, 844, 3, 2, 2, 2, 845, 846, 3, 2, 2, 2, 846, 89, 3, 2, 2, 2, 847, 848, 7, 128, 2, 2, 848, 853, 5, 94, 48, 2, 849, 850, 7, 132, 2, 2, 850, 852, 5, 94, 48, 2, 851, 849, 3, 2, 2, 2, 852, 855, 3, 2, 2, 2, 853, 851, 3, 2, 2, 2, 853, 854, 3, 2, 2, 2, 854, 91, 3, 2, 2, 2, 855, 853, 3, 2, 2, 2, 856, 902, 5, 94, 48, 2, 857, 858, 7, 130, 2, 2, 858, 902, 5, 94, 48, 2, 859, 860, 5, 94, 48, 2, 860, 861, 7, 132, 2, 2, 861, 862, 5, 94, 48, 2, 862, 902, 3, 2, 2, 2, 863, 864, 7, 133, 2, 2, 864, 865, 5, 94, 48, 2, 865, 866, 7, 134, 2, 2, 866, 867, 7, 132, 2, 2, 867, 868, 7, 160, 2, 2, 868, 902, 3, 2, 2, 2, 869, 870, 7, 133, 2, 2, 870, 871, 7, 133, 2, 2, 871, 872, 5, 94, 48, 2, 872, 873, 7, 134, 2, 2, 873, 874, 7, 134, 2, 2, 874, 875, 7, 132, 2, 2, 875, 876, 7, 160, 2, 2, 876, 902, 3, 2, 2, 2, 877, 878, 7, 133, 2, 2, 878, 879, 5, 94, 48, 2, 879, 880, 7, 132, 2, 2, 880, 881, 7, 160, 2, 2, 881, 882, 7, 134, 2, 2, 882, 883, 7, 132, 2, 2, 883, 884, 7, 160, 2, 2, 884, 902, 3, 2, 2, 2, 885, 886, 7, 133, 2, 2, 886, 887, 5, 94, 48, 2, 887, 888, 7, 132, 2, 2, 888, 889, 7, 160, 2, 2, 889, 890, 7, 134, 2, 2, 890, 902, 3, 2, 2, 2, 891, 892, 7, 133, 2, 2, 892, 893, 5, 94, 48, 2, 893, 894, 7, 134, 2, 2, 894, 902, 3, 2, 2, 2, 895, 896, 7, 133, 2, 2, 896, 897, 7, 133, 2, 2, 897, 898, 5, 94, 48, 2, 898, 899, 7, 134, 2, 2, 899, 900, 7, 134, 2, 2, 900, 902, 3, 2, 2, 2, 901, 856, 3, 2, 2, 2, 901, 857, 3, 2, 2, 2, 901, 859, 3, 2, 2, 2, 901, 863, 3, 2, 2, 2, 901, 869, 3, 2, 2, 2, 901, 877, 3, 2, 2, 2, 901, 885, 3, 2, 2, 2, 901, 891, 3, 2, 2, 2, 901, 895, 3, 2, 2, 2, 902, 93, 3, 2, 2, 2, 903, 904, 8, 48, 1, 2, 904, 905, 7, 135, 2, 2, 905, 906, 5, 94, 48, 2, 906, 907, 7, 136, 2, 2, 907, 918, 3, 2, 2, 2, 908, 909, 9, 9, 2, 2, 909, 918, 5, 94, 48, 10, 910, 918, 7, 160, 2, 2, 911, 918, 7, 158, 2, 2, 912, 913, 7, 146, 2, 2, 913, 914, 7, 160, 2, 2, 914, 918, 7, 147, 2, 2, 915, 918, 7, 148, 2, 2, 916, 918, 7, 157, 2, 2, 917, 903, 3, 2, 2, 2, 917, 908, 3, 2, 2, 2, 917, 910, 3, 2, 2, 2, 917, 911, 3, 2, 2, 2, 917, 912, 3, 2, 2, 2, 917, 915, 3, 2, 2, 2, 917, 916, 3, 2, 2, 2, 918, 933, 3, 2, 2, 2, 919, 920, 12, 12, 2, 2, 920, 921, 7, 137, 2, 2, 921, 932, 5, 94, 48, 13, 922, 923, 12, 11, 2, 2, 923, 924, 9, 10, 2, 2, 924, 932, 5, 94, 48, 12, 925, 926, 12, 9, 2, 2, 926, 927, 9, 11, 2, 2, 927, 932, 5, 94, 48, 10, 928, 929, 12, 8, 2, 2, 929, 930, 9, 12, 2, 2, 930, 932, 5, 94, 48, 9, 931, 919, 3, 2, 2, 2, 931, 922, 3, 2, 2, 2, 931, 925, 3, 2, 2, 2, 931, 928, 3, 2, 2, 2, 932, 935, 3, 2, 2, 2, 933, 931, 3, 2, 2, 2, 933, 934, 3, 2, 2, 2, 934, 95, 3, 2, 2, 2, 935, 933, 3, 2, 2, 2, 91, 105, 122, 131, 141, 147, 155, 162, 171, 176, 182, 187, 192, 199, 206, 211, 223, 226, 228, 239, 246, 251, 257, 259, 267, 273, 285, 299, 305, 311, 317, 322, 326, 335, 342, 349, 390, 434, 447, 451, 456, 467, 487, 496, 502, 507, 514, 527, 532, 544, 558, 577, 586, 594, 599, 604, 606, 612, 617, 621, 627, 630, 638, 641, 644, 656, 668, 676, 682, 686, 707, 711, 720, 724, 774, 784, 786, 794, 799, 809, 824, 829, 835, 841, 845, 853, 901, 917, 931, 933] \ No newline at end of file +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 155, 854, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 4, 7, 4, 104, 10, 4, 12, 4, 14, 4, 107, 11, 4, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 123, 10, 5, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 7, 7, 130, 10, 7, 12, 7, 14, 7, 133, 11, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 7, 7, 140, 10, 7, 12, 7, 14, 7, 143, 11, 7, 3, 7, 7, 7, 146, 10, 7, 12, 7, 14, 7, 149, 11, 7, 3, 8, 3, 8, 3, 8, 7, 8, 154, 10, 8, 12, 8, 14, 8, 157, 11, 8, 3, 8, 3, 8, 7, 8, 161, 10, 8, 12, 8, 14, 8, 164, 11, 8, 3, 8, 3, 8, 3, 9, 3, 9, 7, 9, 170, 10, 9, 12, 9, 14, 9, 173, 11, 9, 3, 9, 3, 9, 5, 9, 177, 10, 9, 3, 9, 3, 9, 7, 9, 181, 10, 9, 12, 9, 14, 9, 184, 11, 9, 3, 9, 3, 9, 5, 9, 188, 10, 9, 3, 10, 7, 10, 191, 10, 10, 12, 10, 14, 10, 194, 11, 10, 3, 10, 3, 10, 7, 10, 198, 10, 10, 12, 10, 14, 10, 201, 11, 10, 3, 11, 3, 11, 7, 11, 205, 10, 11, 12, 11, 14, 11, 208, 11, 11, 3, 12, 3, 12, 5, 12, 212, 10, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 5, 13, 224, 10, 13, 3, 13, 7, 13, 227, 10, 13, 12, 13, 14, 13, 230, 11, 13, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 5, 14, 240, 10, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 5, 14, 247, 10, 14, 3, 14, 3, 14, 3, 14, 5, 14, 252, 10, 14, 3, 14, 3, 14, 3, 14, 3, 14, 7, 14, 258, 10, 14, 12, 14, 14, 14, 261, 11, 14, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 5, 16, 268, 10, 16, 3, 16, 3, 16, 6, 16, 272, 10, 16, 13, 16, 14, 16, 273, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 5, 19, 286, 10, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 7, 20, 298, 10, 20, 12, 20, 14, 20, 301, 11, 20, 3, 21, 3, 21, 3, 21, 5, 21, 306, 10, 21, 3, 22, 3, 22, 7, 22, 310, 10, 22, 12, 22, 14, 22, 313, 11, 22, 3, 22, 3, 22, 3, 22, 5, 22, 318, 10, 22, 3, 22, 3, 22, 3, 22, 5, 22, 323, 10, 22, 3, 23, 3, 23, 5, 23, 327, 10, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 7, 24, 334, 10, 24, 12, 24, 14, 24, 337, 11, 24, 3, 25, 3, 25, 7, 25, 341, 10, 25, 12, 25, 14, 25, 344, 11, 25, 3, 25, 3, 25, 3, 25, 3, 25, 5, 25, 350, 10, 25, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 7, 26, 358, 10, 26, 12, 26, 14, 26, 361, 11, 26, 3, 26, 3, 26, 5, 26, 365, 10, 26, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 5, 27, 374, 10, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 5, 28, 385, 10, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 5, 28, 405, 10, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 7, 28, 412, 10, 28, 12, 28, 14, 28, 415, 11, 28, 3, 28, 3, 28, 3, 28, 5, 28, 420, 10, 28, 3, 29, 6, 29, 423, 10, 29, 13, 29, 14, 29, 424, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 432, 10, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 445, 10, 30, 3, 30, 7, 30, 448, 10, 30, 12, 30, 14, 30, 451, 11, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 7, 30, 460, 10, 30, 12, 30, 14, 30, 463, 11, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 7, 30, 474, 10, 30, 12, 30, 14, 30, 477, 11, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 495, 10, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 504, 10, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 512, 10, 30, 3, 31, 6, 31, 515, 10, 31, 13, 31, 14, 31, 516, 3, 31, 3, 31, 3, 31, 5, 31, 522, 10, 31, 5, 31, 524, 10, 31, 3, 32, 3, 32, 3, 32, 3, 32, 5, 32, 530, 10, 32, 3, 33, 3, 33, 3, 33, 5, 33, 535, 10, 33, 3, 33, 3, 33, 5, 33, 539, 10, 33, 3, 33, 3, 33, 7, 33, 543, 10, 33, 12, 33, 14, 33, 546, 11, 33, 5, 33, 548, 10, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 5, 33, 556, 10, 33, 3, 34, 5, 34, 559, 10, 34, 3, 34, 5, 34, 562, 10, 34, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 7, 36, 572, 10, 36, 12, 36, 14, 36, 575, 11, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 586, 10, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 594, 10, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 600, 10, 37, 3, 37, 3, 37, 5, 37, 604, 10, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 7, 37, 623, 10, 37, 12, 37, 14, 37, 626, 11, 37, 3, 37, 5, 37, 629, 10, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 6, 37, 636, 10, 37, 13, 37, 14, 37, 637, 3, 37, 3, 37, 5, 37, 642, 10, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 692, 10, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 7, 37, 702, 10, 37, 12, 37, 14, 37, 705, 11, 37, 3, 38, 3, 38, 3, 38, 7, 38, 710, 10, 38, 12, 38, 14, 38, 713, 11, 38, 3, 39, 3, 39, 5, 39, 717, 10, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 7, 40, 725, 10, 40, 12, 40, 14, 40, 728, 11, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 5, 41, 742, 10, 41, 3, 42, 7, 42, 745, 10, 42, 12, 42, 14, 42, 748, 11, 42, 3, 43, 3, 43, 3, 43, 5, 43, 753, 10, 43, 3, 44, 3, 44, 3, 44, 3, 44, 5, 44, 759, 10, 44, 3, 45, 3, 45, 5, 45, 763, 10, 45, 3, 46, 3, 46, 3, 46, 3, 46, 7, 46, 769, 10, 46, 12, 46, 14, 46, 772, 11, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 5, 47, 819, 10, 47, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 5, 48, 835, 10, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 7, 48, 849, 10, 48, 12, 48, 14, 48, 852, 11, 48, 3, 48, 2, 9, 12, 24, 26, 38, 70, 72, 94, 49, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 2, 13, 3, 2, 23, 24, 5, 2, 18, 19, 25, 26, 82, 82, 4, 2, 33, 33, 36, 36, 3, 2, 29, 30, 3, 2, 20, 22, 3, 2, 18, 19, 3, 2, 31, 36, 3, 2, 127, 130, 3, 2, 125, 126, 3, 2, 131, 132, 3, 2, 127, 128, 2, 980, 2, 96, 3, 2, 2, 2, 4, 99, 3, 2, 2, 2, 6, 105, 3, 2, 2, 2, 8, 122, 3, 2, 2, 2, 10, 124, 3, 2, 2, 2, 12, 127, 3, 2, 2, 2, 14, 150, 3, 2, 2, 2, 16, 187, 3, 2, 2, 2, 18, 192, 3, 2, 2, 2, 20, 202, 3, 2, 2, 2, 22, 209, 3, 2, 2, 2, 24, 215, 3, 2, 2, 2, 26, 246, 3, 2, 2, 2, 28, 262, 3, 2, 2, 2, 30, 265, 3, 2, 2, 2, 32, 277, 3, 2, 2, 2, 34, 280, 3, 2, 2, 2, 36, 283, 3, 2, 2, 2, 38, 291, 3, 2, 2, 2, 40, 302, 3, 2, 2, 2, 42, 307, 3, 2, 2, 2, 44, 324, 3, 2, 2, 2, 46, 330, 3, 2, 2, 2, 48, 349, 3, 2, 2, 2, 50, 351, 3, 2, 2, 2, 52, 373, 3, 2, 2, 2, 54, 419, 3, 2, 2, 2, 56, 422, 3, 2, 2, 2, 58, 511, 3, 2, 2, 2, 60, 514, 3, 2, 2, 2, 62, 525, 3, 2, 2, 2, 64, 555, 3, 2, 2, 2, 66, 561, 3, 2, 2, 2, 68, 563, 3, 2, 2, 2, 70, 565, 3, 2, 2, 2, 72, 641, 3, 2, 2, 2, 74, 706, 3, 2, 2, 2, 76, 714, 3, 2, 2, 2, 78, 720, 3, 2, 2, 2, 80, 741, 3, 2, 2, 2, 82, 746, 3, 2, 2, 2, 84, 752, 3, 2, 2, 2, 86, 758, 3, 2, 2, 2, 88, 760, 3, 2, 2, 2, 90, 764, 3, 2, 2, 2, 92, 818, 3, 2, 2, 2, 94, 834, 3, 2, 2, 2, 96, 97, 5, 6, 4, 2, 97, 98, 7, 2, 2, 3, 98, 3, 3, 2, 2, 2, 99, 100, 5, 82, 42, 2, 100, 101, 7, 2, 2, 3, 101, 5, 3, 2, 2, 2, 102, 104, 5, 8, 5, 2, 103, 102, 3, 2, 2, 2, 104, 107, 3, 2, 2, 2, 105, 103, 3, 2, 2, 2, 105, 106, 3, 2, 2, 2, 106, 7, 3, 2, 2, 2, 107, 105, 3, 2, 2, 2, 108, 109, 5, 10, 6, 2, 109, 110, 7, 10, 2, 2, 110, 123, 3, 2, 2, 2, 111, 112, 5, 30, 16, 2, 112, 113, 7, 10, 2, 2, 113, 123, 3, 2, 2, 2, 114, 115, 5, 36, 19, 2, 115, 116, 7, 10, 2, 2, 116, 123, 3, 2, 2, 2, 117, 123, 5, 42, 22, 2, 118, 123, 5, 50, 26, 2, 119, 120, 5, 14, 8, 2, 120, 121, 7, 10, 2, 2, 121, 123, 3, 2, 2, 2, 122, 108, 3, 2, 2, 2, 122, 111, 3, 2, 2, 2, 122, 114, 3, 2, 2, 2, 122, 117, 3, 2, 2, 2, 122, 118, 3, 2, 2, 2, 122, 119, 3, 2, 2, 2, 123, 9, 3, 2, 2, 2, 124, 125, 5, 18, 10, 2, 125, 126, 5, 12, 7, 2, 126, 11, 3, 2, 2, 2, 127, 131, 8, 7, 1, 2, 128, 130, 5, 20, 11, 2, 129, 128, 3, 2, 2, 2, 130, 133, 3, 2, 2, 2, 131, 129, 3, 2, 2, 2, 131, 132, 3, 2, 2, 2, 132, 134, 3, 2, 2, 2, 133, 131, 3, 2, 2, 2, 134, 135, 5, 16, 9, 2, 135, 147, 3, 2, 2, 2, 136, 137, 12, 3, 2, 2, 137, 141, 7, 12, 2, 2, 138, 140, 5, 20, 11, 2, 139, 138, 3, 2, 2, 2, 140, 143, 3, 2, 2, 2, 141, 139, 3, 2, 2, 2, 141, 142, 3, 2, 2, 2, 142, 144, 3, 2, 2, 2, 143, 141, 3, 2, 2, 2, 144, 146, 5, 16, 9, 2, 145, 136, 3, 2, 2, 2, 146, 149, 3, 2, 2, 2, 147, 145, 3, 2, 2, 2, 147, 148, 3, 2, 2, 2, 148, 13, 3, 2, 2, 2, 149, 147, 3, 2, 2, 2, 150, 151, 7, 41, 2, 2, 151, 155, 5, 18, 10, 2, 152, 154, 5, 20, 11, 2, 153, 152, 3, 2, 2, 2, 154, 157, 3, 2, 2, 2, 155, 153, 3, 2, 2, 2, 155, 156, 3, 2, 2, 2, 156, 158, 3, 2, 2, 2, 157, 155, 3, 2, 2, 2, 158, 162, 7, 109, 2, 2, 159, 161, 5, 22, 12, 2, 160, 159, 3, 2, 2, 2, 161, 164, 3, 2, 2, 2, 162, 160, 3, 2, 2, 2, 162, 163, 3, 2, 2, 2, 163, 165, 3, 2, 2, 2, 164, 162, 3, 2, 2, 2, 165, 166, 8, 8, 1, 2, 166, 15, 3, 2, 2, 2, 167, 171, 7, 109, 2, 2, 168, 170, 5, 22, 12, 2, 169, 168, 3, 2, 2, 2, 170, 173, 3, 2, 2, 2, 171, 169, 3, 2, 2, 2, 171, 172, 3, 2, 2, 2, 172, 176, 3, 2, 2, 2, 173, 171, 3, 2, 2, 2, 174, 175, 7, 39, 2, 2, 175, 177, 5, 72, 37, 2, 176, 174, 3, 2, 2, 2, 176, 177, 3, 2, 2, 2, 177, 188, 3, 2, 2, 2, 178, 182, 7, 109, 2, 2, 179, 181, 5, 22, 12, 2, 180, 179, 3, 2, 2, 2, 181, 184, 3, 2, 2, 2, 182, 180, 3, 2, 2, 2, 182, 183, 3, 2, 2, 2, 183, 185, 3, 2, 2, 2, 184, 182, 3, 2, 2, 2, 185, 186, 7, 39, 2, 2, 186, 188, 5, 76, 39, 2, 187, 167, 3, 2, 2, 2, 187, 178, 3, 2, 2, 2, 188, 17, 3, 2, 2, 2, 189, 191, 5, 54, 28, 2, 190, 189, 3, 2, 2, 2, 191, 194, 3, 2, 2, 2, 192, 190, 3, 2, 2, 2, 192, 193, 3, 2, 2, 2, 193, 195, 3, 2, 2, 2, 194, 192, 3, 2, 2, 2, 195, 199, 5, 26, 14, 2, 196, 198, 5, 54, 28, 2, 197, 196, 3, 2, 2, 2, 198, 201, 3, 2, 2, 2, 199, 197, 3, 2, 2, 2, 199, 200, 3, 2, 2, 2, 200, 19, 3, 2, 2, 2, 201, 199, 3, 2, 2, 2, 202, 206, 7, 20, 2, 2, 203, 205, 5, 54, 28, 2, 204, 203, 3, 2, 2, 2, 205, 208, 3, 2, 2, 2, 206, 204, 3, 2, 2, 2, 206, 207, 3, 2, 2, 2, 207, 21, 3, 2, 2, 2, 208, 206, 3, 2, 2, 2, 209, 211, 7, 6, 2, 2, 210, 212, 5, 72, 37, 2, 211, 210, 3, 2, 2, 2, 211, 212, 3, 2, 2, 2, 212, 213, 3, 2, 2, 2, 213, 214, 7, 7, 2, 2, 214, 23, 3, 2, 2, 2, 215, 216, 8, 13, 1, 2, 216, 217, 5, 26, 14, 2, 217, 228, 3, 2, 2, 2, 218, 219, 12, 4, 2, 2, 219, 227, 7, 20, 2, 2, 220, 221, 12, 3, 2, 2, 221, 223, 7, 6, 2, 2, 222, 224, 5, 72, 37, 2, 223, 222, 3, 2, 2, 2, 223, 224, 3, 2, 2, 2, 224, 225, 3, 2, 2, 2, 225, 227, 7, 7, 2, 2, 226, 218, 3, 2, 2, 2, 226, 220, 3, 2, 2, 2, 227, 230, 3, 2, 2, 2, 228, 226, 3, 2, 2, 2, 228, 229, 3, 2, 2, 2, 229, 25, 3, 2, 2, 2, 230, 228, 3, 2, 2, 2, 231, 232, 8, 14, 1, 2, 232, 233, 7, 8, 2, 2, 233, 234, 5, 26, 14, 2, 234, 235, 7, 9, 2, 2, 235, 247, 3, 2, 2, 2, 236, 247, 7, 84, 2, 2, 237, 239, 7, 83, 2, 2, 238, 240, 7, 84, 2, 2, 239, 238, 3, 2, 2, 2, 239, 240, 3, 2, 2, 2, 240, 247, 3, 2, 2, 2, 241, 247, 5, 30, 16, 2, 242, 247, 5, 28, 15, 2, 243, 247, 5, 36, 19, 2, 244, 247, 5, 34, 18, 2, 245, 247, 7, 3, 2, 2, 246, 231, 3, 2, 2, 2, 246, 236, 3, 2, 2, 2, 246, 237, 3, 2, 2, 2, 246, 241, 3, 2, 2, 2, 246, 242, 3, 2, 2, 2, 246, 243, 3, 2, 2, 2, 246, 244, 3, 2, 2, 2, 246, 245, 3, 2, 2, 2, 247, 259, 3, 2, 2, 2, 248, 249, 12, 9, 2, 2, 249, 251, 7, 6, 2, 2, 250, 252, 5, 72, 37, 2, 251, 250, 3, 2, 2, 2, 251, 252, 3, 2, 2, 2, 252, 253, 3, 2, 2, 2, 253, 258, 7, 7, 2, 2, 254, 255, 12, 8, 2, 2, 255, 256, 7, 8, 2, 2, 256, 258, 7, 9, 2, 2, 257, 248, 3, 2, 2, 2, 257, 254, 3, 2, 2, 2, 258, 261, 3, 2, 2, 2, 259, 257, 3, 2, 2, 2, 259, 260, 3, 2, 2, 2, 260, 27, 3, 2, 2, 2, 261, 259, 3, 2, 2, 2, 262, 263, 7, 71, 2, 2, 263, 264, 7, 109, 2, 2, 264, 29, 3, 2, 2, 2, 265, 267, 7, 71, 2, 2, 266, 268, 7, 109, 2, 2, 267, 266, 3, 2, 2, 2, 267, 268, 3, 2, 2, 2, 268, 269, 3, 2, 2, 2, 269, 271, 7, 4, 2, 2, 270, 272, 5, 32, 17, 2, 271, 270, 3, 2, 2, 2, 272, 273, 3, 2, 2, 2, 273, 271, 3, 2, 2, 2, 273, 274, 3, 2, 2, 2, 274, 275, 3, 2, 2, 2, 275, 276, 7, 5, 2, 2, 276, 31, 3, 2, 2, 2, 277, 278, 5, 10, 6, 2, 278, 279, 7, 10, 2, 2, 279, 33, 3, 2, 2, 2, 280, 281, 7, 72, 2, 2, 281, 282, 7, 109, 2, 2, 282, 35, 3, 2, 2, 2, 283, 285, 7, 72, 2, 2, 284, 286, 7, 109, 2, 2, 285, 284, 3, 2, 2, 2, 285, 286, 3, 2, 2, 2, 286, 287, 3, 2, 2, 2, 287, 288, 7, 4, 2, 2, 288, 289, 5, 38, 20, 2, 289, 290, 7, 5, 2, 2, 290, 37, 3, 2, 2, 2, 291, 292, 8, 20, 1, 2, 292, 293, 5, 40, 21, 2, 293, 299, 3, 2, 2, 2, 294, 295, 12, 3, 2, 2, 295, 296, 7, 12, 2, 2, 296, 298, 5, 40, 21, 2, 297, 294, 3, 2, 2, 2, 298, 301, 3, 2, 2, 2, 299, 297, 3, 2, 2, 2, 299, 300, 3, 2, 2, 2, 300, 39, 3, 2, 2, 2, 301, 299, 3, 2, 2, 2, 302, 305, 7, 109, 2, 2, 303, 304, 7, 39, 2, 2, 304, 306, 5, 72, 37, 2, 305, 303, 3, 2, 2, 2, 305, 306, 3, 2, 2, 2, 306, 41, 3, 2, 2, 2, 307, 311, 5, 18, 10, 2, 308, 310, 5, 20, 11, 2, 309, 308, 3, 2, 2, 2, 310, 313, 3, 2, 2, 2, 311, 309, 3, 2, 2, 2, 311, 312, 3, 2, 2, 2, 312, 314, 3, 2, 2, 2, 313, 311, 3, 2, 2, 2, 314, 315, 7, 109, 2, 2, 315, 317, 7, 8, 2, 2, 316, 318, 5, 46, 24, 2, 317, 316, 3, 2, 2, 2, 317, 318, 3, 2, 2, 2, 318, 319, 3, 2, 2, 2, 319, 322, 7, 9, 2, 2, 320, 323, 5, 44, 23, 2, 321, 323, 7, 10, 2, 2, 322, 320, 3, 2, 2, 2, 322, 321, 3, 2, 2, 2, 323, 43, 3, 2, 2, 2, 324, 326, 7, 4, 2, 2, 325, 327, 5, 56, 29, 2, 326, 325, 3, 2, 2, 2, 326, 327, 3, 2, 2, 2, 327, 328, 3, 2, 2, 2, 328, 329, 7, 5, 2, 2, 329, 45, 3, 2, 2, 2, 330, 335, 5, 48, 25, 2, 331, 332, 7, 12, 2, 2, 332, 334, 5, 48, 25, 2, 333, 331, 3, 2, 2, 2, 334, 337, 3, 2, 2, 2, 335, 333, 3, 2, 2, 2, 335, 336, 3, 2, 2, 2, 336, 47, 3, 2, 2, 2, 337, 335, 3, 2, 2, 2, 338, 342, 5, 18, 10, 2, 339, 341, 5, 20, 11, 2, 340, 339, 3, 2, 2, 2, 341, 344, 3, 2, 2, 2, 342, 340, 3, 2, 2, 2, 342, 343, 3, 2, 2, 2, 343, 345, 3, 2, 2, 2, 344, 342, 3, 2, 2, 2, 345, 346, 7, 109, 2, 2, 346, 350, 3, 2, 2, 2, 347, 350, 7, 84, 2, 2, 348, 350, 7, 14, 2, 2, 349, 338, 3, 2, 2, 2, 349, 347, 3, 2, 2, 2, 349, 348, 3, 2, 2, 2, 350, 49, 3, 2, 2, 2, 351, 352, 7, 89, 2, 2, 352, 364, 7, 109, 2, 2, 353, 354, 7, 8, 2, 2, 354, 359, 5, 52, 27, 2, 355, 356, 7, 12, 2, 2, 356, 358, 5, 52, 27, 2, 357, 355, 3, 2, 2, 2, 358, 361, 3, 2, 2, 2, 359, 357, 3, 2, 2, 2, 359, 360, 3, 2, 2, 2, 360, 362, 3, 2, 2, 2, 361, 359, 3, 2, 2, 2, 362, 363, 7, 9, 2, 2, 363, 365, 3, 2, 2, 2, 364, 353, 3, 2, 2, 2, 364, 365, 3, 2, 2, 2, 365, 51, 3, 2, 2, 2, 366, 374, 7, 100, 2, 2, 367, 368, 7, 100, 2, 2, 368, 369, 7, 13, 2, 2, 369, 374, 7, 100, 2, 2, 370, 374, 7, 109, 2, 2, 371, 374, 7, 110, 2, 2, 372, 374, 7, 58, 2, 2, 373, 366, 3, 2, 2, 2, 373, 367, 3, 2, 2, 2, 373, 370, 3, 2, 2, 2, 373, 371, 3, 2, 2, 2, 373, 372, 3, 2, 2, 2, 374, 53, 3, 2, 2, 2, 375, 420, 7, 42, 2, 2, 376, 377, 7, 45, 2, 2, 377, 378, 7, 8, 2, 2, 378, 379, 7, 100, 2, 2, 379, 420, 7, 9, 2, 2, 380, 384, 7, 50, 2, 2, 381, 382, 7, 8, 2, 2, 382, 383, 7, 109, 2, 2, 383, 385, 7, 9, 2, 2, 384, 381, 3, 2, 2, 2, 384, 385, 3, 2, 2, 2, 385, 420, 3, 2, 2, 2, 386, 420, 7, 53, 2, 2, 387, 420, 7, 54, 2, 2, 388, 389, 7, 52, 2, 2, 389, 390, 7, 8, 2, 2, 390, 391, 7, 100, 2, 2, 391, 420, 7, 9, 2, 2, 392, 420, 7, 47, 2, 2, 393, 420, 7, 48, 2, 2, 394, 420, 7, 55, 2, 2, 395, 420, 7, 56, 2, 2, 396, 420, 7, 43, 2, 2, 397, 420, 7, 44, 2, 2, 398, 420, 7, 46, 2, 2, 399, 420, 7, 57, 2, 2, 400, 404, 7, 49, 2, 2, 401, 402, 7, 8, 2, 2, 402, 403, 7, 109, 2, 2, 403, 405, 7, 9, 2, 2, 404, 401, 3, 2, 2, 2, 404, 405, 3, 2, 2, 2, 405, 420, 3, 2, 2, 2, 406, 407, 7, 51, 2, 2, 407, 408, 7, 8, 2, 2, 408, 413, 5, 52, 27, 2, 409, 410, 7, 12, 2, 2, 410, 412, 5, 52, 27, 2, 411, 409, 3, 2, 2, 2, 412, 415, 3, 2, 2, 2, 413, 411, 3, 2, 2, 2, 413, 414, 3, 2, 2, 2, 414, 416, 3, 2, 2, 2, 415, 413, 3, 2, 2, 2, 416, 417, 7, 9, 2, 2, 417, 420, 3, 2, 2, 2, 418, 420, 7, 58, 2, 2, 419, 375, 3, 2, 2, 2, 419, 376, 3, 2, 2, 2, 419, 380, 3, 2, 2, 2, 419, 386, 3, 2, 2, 2, 419, 387, 3, 2, 2, 2, 419, 388, 3, 2, 2, 2, 419, 392, 3, 2, 2, 2, 419, 393, 3, 2, 2, 2, 419, 394, 3, 2, 2, 2, 419, 395, 3, 2, 2, 2, 419, 396, 3, 2, 2, 2, 419, 397, 3, 2, 2, 2, 419, 398, 3, 2, 2, 2, 419, 399, 3, 2, 2, 2, 419, 400, 3, 2, 2, 2, 419, 406, 3, 2, 2, 2, 419, 418, 3, 2, 2, 2, 420, 55, 3, 2, 2, 2, 421, 423, 5, 58, 30, 2, 422, 421, 3, 2, 2, 2, 423, 424, 3, 2, 2, 2, 424, 422, 3, 2, 2, 2, 424, 425, 3, 2, 2, 2, 425, 57, 3, 2, 2, 2, 426, 427, 5, 10, 6, 2, 427, 428, 7, 10, 2, 2, 428, 512, 3, 2, 2, 2, 429, 431, 7, 4, 2, 2, 430, 432, 5, 56, 29, 2, 431, 430, 3, 2, 2, 2, 431, 432, 3, 2, 2, 2, 432, 433, 3, 2, 2, 2, 433, 512, 7, 5, 2, 2, 434, 435, 5, 70, 36, 2, 435, 436, 7, 10, 2, 2, 436, 512, 3, 2, 2, 2, 437, 438, 7, 59, 2, 2, 438, 439, 7, 8, 2, 2, 439, 440, 5, 70, 36, 2, 440, 441, 7, 9, 2, 2, 441, 444, 5, 58, 30, 2, 442, 443, 7, 60, 2, 2, 443, 445, 5, 58, 30, 2, 444, 442, 3, 2, 2, 2, 444, 445, 3, 2, 2, 2, 445, 512, 3, 2, 2, 2, 446, 448, 5, 54, 28, 2, 447, 446, 3, 2, 2, 2, 448, 451, 3, 2, 2, 2, 449, 447, 3, 2, 2, 2, 449, 450, 3, 2, 2, 2, 450, 452, 3, 2, 2, 2, 451, 449, 3, 2, 2, 2, 452, 453, 7, 61, 2, 2, 453, 454, 7, 8, 2, 2, 454, 455, 5, 70, 36, 2, 455, 456, 7, 9, 2, 2, 456, 457, 5, 58, 30, 2, 457, 512, 3, 2, 2, 2, 458, 460, 5, 54, 28, 2, 459, 458, 3, 2, 2, 2, 460, 463, 3, 2, 2, 2, 461, 459, 3, 2, 2, 2, 461, 462, 3, 2, 2, 2, 462, 464, 3, 2, 2, 2, 463, 461, 3, 2, 2, 2, 464, 465, 7, 62, 2, 2, 465, 466, 5, 58, 30, 2, 466, 467, 7, 61, 2, 2, 467, 468, 7, 8, 2, 2, 468, 469, 5, 70, 36, 2, 469, 470, 7, 9, 2, 2, 470, 471, 7, 10, 2, 2, 471, 512, 3, 2, 2, 2, 472, 474, 5, 54, 28, 2, 473, 472, 3, 2, 2, 2, 474, 477, 3, 2, 2, 2, 475, 473, 3, 2, 2, 2, 475, 476, 3, 2, 2, 2, 476, 478, 3, 2, 2, 2, 477, 475, 3, 2, 2, 2, 478, 479, 7, 63, 2, 2, 479, 480, 7, 8, 2, 2, 480, 481, 5, 64, 33, 2, 481, 482, 7, 9, 2, 2, 482, 483, 5, 58, 30, 2, 483, 512, 3, 2, 2, 2, 484, 485, 7, 64, 2, 2, 485, 486, 7, 8, 2, 2, 486, 487, 5, 70, 36, 2, 487, 488, 7, 9, 2, 2, 488, 489, 7, 4, 2, 2, 489, 490, 5, 60, 31, 2, 490, 491, 7, 5, 2, 2, 491, 512, 3, 2, 2, 2, 492, 494, 7, 65, 2, 2, 493, 495, 5, 70, 36, 2, 494, 493, 3, 2, 2, 2, 494, 495, 3, 2, 2, 2, 495, 496, 3, 2, 2, 2, 496, 512, 7, 10, 2, 2, 497, 498, 7, 66, 2, 2, 498, 512, 7, 10, 2, 2, 499, 500, 7, 67, 2, 2, 500, 512, 7, 10, 2, 2, 501, 503, 7, 68, 2, 2, 502, 504, 5, 78, 40, 2, 503, 502, 3, 2, 2, 2, 503, 504, 3, 2, 2, 2, 504, 505, 3, 2, 2, 2, 505, 506, 7, 4, 2, 2, 506, 507, 5, 82, 42, 2, 507, 508, 7, 134, 2, 2, 508, 512, 3, 2, 2, 2, 509, 512, 5, 76, 39, 2, 510, 512, 7, 10, 2, 2, 511, 426, 3, 2, 2, 2, 511, 429, 3, 2, 2, 2, 511, 434, 3, 2, 2, 2, 511, 437, 3, 2, 2, 2, 511, 449, 3, 2, 2, 2, 511, 461, 3, 2, 2, 2, 511, 475, 3, 2, 2, 2, 511, 484, 3, 2, 2, 2, 511, 492, 3, 2, 2, 2, 511, 497, 3, 2, 2, 2, 511, 499, 3, 2, 2, 2, 511, 501, 3, 2, 2, 2, 511, 509, 3, 2, 2, 2, 511, 510, 3, 2, 2, 2, 512, 59, 3, 2, 2, 2, 513, 515, 5, 62, 32, 2, 514, 513, 3, 2, 2, 2, 515, 516, 3, 2, 2, 2, 516, 514, 3, 2, 2, 2, 516, 517, 3, 2, 2, 2, 517, 523, 3, 2, 2, 2, 518, 519, 7, 69, 2, 2, 519, 521, 7, 11, 2, 2, 520, 522, 5, 56, 29, 2, 521, 520, 3, 2, 2, 2, 521, 522, 3, 2, 2, 2, 522, 524, 3, 2, 2, 2, 523, 518, 3, 2, 2, 2, 523, 524, 3, 2, 2, 2, 524, 61, 3, 2, 2, 2, 525, 526, 7, 70, 2, 2, 526, 527, 5, 72, 37, 2, 527, 529, 7, 11, 2, 2, 528, 530, 5, 56, 29, 2, 529, 528, 3, 2, 2, 2, 529, 530, 3, 2, 2, 2, 530, 63, 3, 2, 2, 2, 531, 532, 5, 66, 34, 2, 532, 534, 7, 10, 2, 2, 533, 535, 5, 68, 35, 2, 534, 533, 3, 2, 2, 2, 534, 535, 3, 2, 2, 2, 535, 536, 3, 2, 2, 2, 536, 538, 7, 10, 2, 2, 537, 539, 5, 70, 36, 2, 538, 537, 3, 2, 2, 2, 538, 539, 3, 2, 2, 2, 539, 556, 3, 2, 2, 2, 540, 544, 5, 18, 10, 2, 541, 543, 5, 20, 11, 2, 542, 541, 3, 2, 2, 2, 543, 546, 3, 2, 2, 2, 544, 542, 3, 2, 2, 2, 544, 545, 3, 2, 2, 2, 545, 548, 3, 2, 2, 2, 546, 544, 3, 2, 2, 2, 547, 540, 3, 2, 2, 2, 547, 548, 3, 2, 2, 2, 548, 549, 3, 2, 2, 2, 549, 550, 7, 109, 2, 2, 550, 551, 7, 11, 2, 2, 551, 552, 5, 72, 37, 2, 552, 553, 7, 13, 2, 2, 553, 554, 5, 72, 37, 2, 554, 556, 3, 2, 2, 2, 555, 531, 3, 2, 2, 2, 555, 547, 3, 2, 2, 2, 556, 65, 3, 2, 2, 2, 557, 559, 5, 10, 6, 2, 558, 557, 3, 2, 2, 2, 558, 559, 3, 2, 2, 2, 559, 562, 3, 2, 2, 2, 560, 562, 5, 70, 36, 2, 561, 558, 3, 2, 2, 2, 561, 560, 3, 2, 2, 2, 562, 67, 3, 2, 2, 2, 563, 564, 5, 70, 36, 2, 564, 69, 3, 2, 2, 2, 565, 566, 8, 36, 1, 2, 566, 567, 5, 72, 37, 2, 567, 573, 3, 2, 2, 2, 568, 569, 12, 3, 2, 2, 569, 570, 7, 12, 2, 2, 570, 572, 5, 72, 37, 2, 571, 568, 3, 2, 2, 2, 572, 575, 3, 2, 2, 2, 573, 571, 3, 2, 2, 2, 573, 574, 3, 2, 2, 2, 574, 71, 3, 2, 2, 2, 575, 573, 3, 2, 2, 2, 576, 577, 8, 37, 1, 2, 577, 578, 7, 8, 2, 2, 578, 579, 5, 70, 36, 2, 579, 580, 7, 9, 2, 2, 580, 642, 3, 2, 2, 2, 581, 582, 7, 73, 2, 2, 582, 585, 7, 8, 2, 2, 583, 586, 5, 72, 37, 2, 584, 586, 5, 24, 13, 2, 585, 583, 3, 2, 2, 2, 585, 584, 3, 2, 2, 2, 586, 587, 3, 2, 2, 2, 587, 588, 7, 9, 2, 2, 588, 642, 3, 2, 2, 2, 589, 590, 7, 74, 2, 2, 590, 593, 7, 8, 2, 2, 591, 594, 5, 72, 37, 2, 592, 594, 5, 24, 13, 2, 593, 591, 3, 2, 2, 2, 593, 592, 3, 2, 2, 2, 594, 595, 3, 2, 2, 2, 595, 596, 7, 9, 2, 2, 596, 642, 3, 2, 2, 2, 597, 599, 7, 75, 2, 2, 598, 600, 7, 8, 2, 2, 599, 598, 3, 2, 2, 2, 599, 600, 3, 2, 2, 2, 600, 601, 3, 2, 2, 2, 601, 603, 7, 109, 2, 2, 602, 604, 7, 9, 2, 2, 603, 602, 3, 2, 2, 2, 603, 604, 3, 2, 2, 2, 604, 642, 3, 2, 2, 2, 605, 606, 7, 8, 2, 2, 606, 607, 5, 24, 13, 2, 607, 608, 7, 9, 2, 2, 608, 609, 5, 72, 37, 26, 609, 642, 3, 2, 2, 2, 610, 611, 9, 2, 2, 2, 611, 642, 5, 72, 37, 25, 612, 613, 7, 20, 2, 2, 613, 642, 5, 72, 37, 23, 614, 615, 9, 3, 2, 2, 615, 642, 5, 72, 37, 22, 616, 617, 9, 4, 2, 2, 617, 642, 5, 72, 37, 18, 618, 619, 7, 4, 2, 2, 619, 624, 5, 72, 37, 2, 620, 621, 7, 12, 2, 2, 621, 623, 5, 72, 37, 2, 622, 620, 3, 2, 2, 2, 623, 626, 3, 2, 2, 2, 624, 622, 3, 2, 2, 2, 624, 625, 3, 2, 2, 2, 625, 628, 3, 2, 2, 2, 626, 624, 3, 2, 2, 2, 627, 629, 7, 12, 2, 2, 628, 627, 3, 2, 2, 2, 628, 629, 3, 2, 2, 2, 629, 630, 3, 2, 2, 2, 630, 631, 7, 5, 2, 2, 631, 642, 3, 2, 2, 2, 632, 642, 7, 109, 2, 2, 633, 642, 7, 100, 2, 2, 634, 636, 7, 110, 2, 2, 635, 634, 3, 2, 2, 2, 636, 637, 3, 2, 2, 2, 637, 635, 3, 2, 2, 2, 637, 638, 3, 2, 2, 2, 638, 642, 3, 2, 2, 2, 639, 642, 7, 111, 2, 2, 640, 642, 7, 85, 2, 2, 641, 576, 3, 2, 2, 2, 641, 581, 3, 2, 2, 2, 641, 589, 3, 2, 2, 2, 641, 597, 3, 2, 2, 2, 641, 605, 3, 2, 2, 2, 641, 610, 3, 2, 2, 2, 641, 612, 3, 2, 2, 2, 641, 614, 3, 2, 2, 2, 641, 616, 3, 2, 2, 2, 641, 618, 3, 2, 2, 2, 641, 632, 3, 2, 2, 2, 641, 633, 3, 2, 2, 2, 641, 635, 3, 2, 2, 2, 641, 639, 3, 2, 2, 2, 641, 640, 3, 2, 2, 2, 642, 703, 3, 2, 2, 2, 643, 644, 12, 21, 2, 2, 644, 645, 9, 5, 2, 2, 645, 702, 5, 72, 37, 22, 646, 647, 12, 20, 2, 2, 647, 648, 9, 6, 2, 2, 648, 702, 5, 72, 37, 21, 649, 650, 12, 19, 2, 2, 650, 651, 9, 7, 2, 2, 651, 702, 5, 72, 37, 20, 652, 653, 12, 17, 2, 2, 653, 654, 9, 8, 2, 2, 654, 702, 5, 72, 37, 18, 655, 656, 12, 16, 2, 2, 656, 657, 7, 25, 2, 2, 657, 702, 5, 72, 37, 17, 658, 659, 12, 15, 2, 2, 659, 660, 7, 27, 2, 2, 660, 702, 5, 72, 37, 16, 661, 662, 12, 14, 2, 2, 662, 663, 7, 28, 2, 2, 663, 702, 5, 72, 37, 15, 664, 665, 12, 13, 2, 2, 665, 666, 7, 37, 2, 2, 666, 702, 5, 72, 37, 14, 667, 668, 12, 12, 2, 2, 668, 669, 7, 38, 2, 2, 669, 702, 5, 72, 37, 13, 670, 671, 12, 11, 2, 2, 671, 672, 7, 15, 2, 2, 672, 673, 5, 72, 37, 2, 673, 674, 7, 11, 2, 2, 674, 675, 5, 72, 37, 12, 675, 702, 3, 2, 2, 2, 676, 677, 12, 10, 2, 2, 677, 678, 7, 39, 2, 2, 678, 702, 5, 72, 37, 10, 679, 680, 12, 9, 2, 2, 680, 681, 7, 40, 2, 2, 681, 702, 5, 72, 37, 9, 682, 683, 12, 33, 2, 2, 683, 684, 7, 16, 2, 2, 684, 702, 7, 109, 2, 2, 685, 686, 12, 32, 2, 2, 686, 687, 7, 17, 2, 2, 687, 702, 7, 109, 2, 2, 688, 689, 12, 31, 2, 2, 689, 691, 7, 8, 2, 2, 690, 692, 5, 74, 38, 2, 691, 690, 3, 2, 2, 2, 691, 692, 3, 2, 2, 2, 692, 693, 3, 2, 2, 2, 693, 702, 7, 9, 2, 2, 694, 695, 12, 27, 2, 2, 695, 696, 7, 6, 2, 2, 696, 697, 5, 70, 36, 2, 697, 698, 7, 7, 2, 2, 698, 702, 3, 2, 2, 2, 699, 700, 12, 24, 2, 2, 700, 702, 9, 2, 2, 2, 701, 643, 3, 2, 2, 2, 701, 646, 3, 2, 2, 2, 701, 649, 3, 2, 2, 2, 701, 652, 3, 2, 2, 2, 701, 655, 3, 2, 2, 2, 701, 658, 3, 2, 2, 2, 701, 661, 3, 2, 2, 2, 701, 664, 3, 2, 2, 2, 701, 667, 3, 2, 2, 2, 701, 670, 3, 2, 2, 2, 701, 676, 3, 2, 2, 2, 701, 679, 3, 2, 2, 2, 701, 682, 3, 2, 2, 2, 701, 685, 3, 2, 2, 2, 701, 688, 3, 2, 2, 2, 701, 694, 3, 2, 2, 2, 701, 699, 3, 2, 2, 2, 702, 705, 3, 2, 2, 2, 703, 701, 3, 2, 2, 2, 703, 704, 3, 2, 2, 2, 704, 73, 3, 2, 2, 2, 705, 703, 3, 2, 2, 2, 706, 711, 5, 72, 37, 2, 707, 708, 7, 12, 2, 2, 708, 710, 5, 72, 37, 2, 709, 707, 3, 2, 2, 2, 710, 713, 3, 2, 2, 2, 711, 709, 3, 2, 2, 2, 711, 712, 3, 2, 2, 2, 712, 75, 3, 2, 2, 2, 713, 711, 3, 2, 2, 2, 714, 716, 7, 76, 2, 2, 715, 717, 5, 78, 40, 2, 716, 715, 3, 2, 2, 2, 716, 717, 3, 2, 2, 2, 717, 718, 3, 2, 2, 2, 718, 719, 7, 86, 2, 2, 719, 77, 3, 2, 2, 2, 720, 721, 7, 8, 2, 2, 721, 726, 5, 80, 41, 2, 722, 723, 7, 12, 2, 2, 723, 725, 5, 80, 41, 2, 724, 722, 3, 2, 2, 2, 725, 728, 3, 2, 2, 2, 726, 724, 3, 2, 2, 2, 726, 727, 3, 2, 2, 2, 727, 729, 3, 2, 2, 2, 728, 726, 3, 2, 2, 2, 729, 730, 7, 9, 2, 2, 730, 79, 3, 2, 2, 2, 731, 732, 7, 77, 2, 2, 732, 742, 7, 110, 2, 2, 733, 734, 7, 78, 2, 2, 734, 742, 7, 109, 2, 2, 735, 736, 7, 79, 2, 2, 736, 742, 7, 110, 2, 2, 737, 738, 7, 80, 2, 2, 738, 742, 5, 72, 37, 2, 739, 740, 7, 81, 2, 2, 740, 742, 5, 72, 37, 2, 741, 731, 3, 2, 2, 2, 741, 733, 3, 2, 2, 2, 741, 735, 3, 2, 2, 2, 741, 737, 3, 2, 2, 2, 741, 739, 3, 2, 2, 2, 742, 81, 3, 2, 2, 2, 743, 745, 5, 84, 43, 2, 744, 743, 3, 2, 2, 2, 745, 748, 3, 2, 2, 2, 746, 744, 3, 2, 2, 2, 746, 747, 3, 2, 2, 2, 747, 83, 3, 2, 2, 2, 748, 746, 3, 2, 2, 2, 749, 753, 5, 86, 44, 2, 750, 753, 5, 88, 45, 2, 751, 753, 5, 90, 46, 2, 752, 749, 3, 2, 2, 2, 752, 750, 3, 2, 2, 2, 752, 751, 3, 2, 2, 2, 753, 85, 3, 2, 2, 2, 754, 755, 7, 147, 2, 2, 755, 759, 7, 118, 2, 2, 756, 757, 7, 146, 2, 2, 757, 759, 7, 118, 2, 2, 758, 754, 3, 2, 2, 2, 758, 756, 3, 2, 2, 2, 759, 87, 3, 2, 2, 2, 760, 762, 7, 116, 2, 2, 761, 763, 5, 92, 47, 2, 762, 761, 3, 2, 2, 2, 762, 763, 3, 2, 2, 2, 763, 89, 3, 2, 2, 2, 764, 765, 7, 115, 2, 2, 765, 770, 5, 94, 48, 2, 766, 767, 7, 119, 2, 2, 767, 769, 5, 94, 48, 2, 768, 766, 3, 2, 2, 2, 769, 772, 3, 2, 2, 2, 770, 768, 3, 2, 2, 2, 770, 771, 3, 2, 2, 2, 771, 91, 3, 2, 2, 2, 772, 770, 3, 2, 2, 2, 773, 819, 5, 94, 48, 2, 774, 775, 7, 117, 2, 2, 775, 819, 5, 94, 48, 2, 776, 777, 5, 94, 48, 2, 777, 778, 7, 119, 2, 2, 778, 779, 5, 94, 48, 2, 779, 819, 3, 2, 2, 2, 780, 781, 7, 120, 2, 2, 781, 782, 5, 94, 48, 2, 782, 783, 7, 121, 2, 2, 783, 784, 7, 119, 2, 2, 784, 785, 7, 147, 2, 2, 785, 819, 3, 2, 2, 2, 786, 787, 7, 120, 2, 2, 787, 788, 7, 120, 2, 2, 788, 789, 5, 94, 48, 2, 789, 790, 7, 121, 2, 2, 790, 791, 7, 121, 2, 2, 791, 792, 7, 119, 2, 2, 792, 793, 7, 147, 2, 2, 793, 819, 3, 2, 2, 2, 794, 795, 7, 120, 2, 2, 795, 796, 5, 94, 48, 2, 796, 797, 7, 119, 2, 2, 797, 798, 7, 147, 2, 2, 798, 799, 7, 121, 2, 2, 799, 800, 7, 119, 2, 2, 800, 801, 7, 147, 2, 2, 801, 819, 3, 2, 2, 2, 802, 803, 7, 120, 2, 2, 803, 804, 5, 94, 48, 2, 804, 805, 7, 119, 2, 2, 805, 806, 7, 147, 2, 2, 806, 807, 7, 121, 2, 2, 807, 819, 3, 2, 2, 2, 808, 809, 7, 120, 2, 2, 809, 810, 5, 94, 48, 2, 810, 811, 7, 121, 2, 2, 811, 819, 3, 2, 2, 2, 812, 813, 7, 120, 2, 2, 813, 814, 7, 120, 2, 2, 814, 815, 5, 94, 48, 2, 815, 816, 7, 121, 2, 2, 816, 817, 7, 121, 2, 2, 817, 819, 3, 2, 2, 2, 818, 773, 3, 2, 2, 2, 818, 774, 3, 2, 2, 2, 818, 776, 3, 2, 2, 2, 818, 780, 3, 2, 2, 2, 818, 786, 3, 2, 2, 2, 818, 794, 3, 2, 2, 2, 818, 802, 3, 2, 2, 2, 818, 808, 3, 2, 2, 2, 818, 812, 3, 2, 2, 2, 819, 93, 3, 2, 2, 2, 820, 821, 8, 48, 1, 2, 821, 822, 7, 122, 2, 2, 822, 823, 5, 94, 48, 2, 823, 824, 7, 123, 2, 2, 824, 835, 3, 2, 2, 2, 825, 826, 9, 9, 2, 2, 826, 835, 5, 94, 48, 10, 827, 835, 7, 147, 2, 2, 828, 835, 7, 145, 2, 2, 829, 830, 7, 133, 2, 2, 830, 831, 7, 147, 2, 2, 831, 835, 7, 134, 2, 2, 832, 835, 7, 135, 2, 2, 833, 835, 7, 144, 2, 2, 834, 820, 3, 2, 2, 2, 834, 825, 3, 2, 2, 2, 834, 827, 3, 2, 2, 2, 834, 828, 3, 2, 2, 2, 834, 829, 3, 2, 2, 2, 834, 832, 3, 2, 2, 2, 834, 833, 3, 2, 2, 2, 835, 850, 3, 2, 2, 2, 836, 837, 12, 12, 2, 2, 837, 838, 7, 124, 2, 2, 838, 849, 5, 94, 48, 13, 839, 840, 12, 11, 2, 2, 840, 841, 9, 10, 2, 2, 841, 849, 5, 94, 48, 12, 842, 843, 12, 9, 2, 2, 843, 844, 9, 11, 2, 2, 844, 849, 5, 94, 48, 10, 845, 846, 12, 8, 2, 2, 846, 847, 9, 12, 2, 2, 847, 849, 5, 94, 48, 9, 848, 836, 3, 2, 2, 2, 848, 839, 3, 2, 2, 2, 848, 842, 3, 2, 2, 2, 848, 845, 3, 2, 2, 2, 849, 852, 3, 2, 2, 2, 850, 848, 3, 2, 2, 2, 850, 851, 3, 2, 2, 2, 851, 95, 3, 2, 2, 2, 852, 850, 3, 2, 2, 2, 89, 105, 122, 131, 141, 147, 155, 162, 171, 176, 182, 187, 192, 199, 206, 211, 223, 226, 228, 239, 246, 251, 257, 259, 267, 273, 285, 299, 305, 311, 317, 322, 326, 335, 342, 349, 359, 364, 373, 384, 404, 413, 419, 424, 431, 444, 449, 461, 475, 494, 503, 511, 516, 521, 523, 529, 534, 538, 544, 547, 555, 558, 561, 573, 585, 593, 599, 603, 624, 628, 637, 641, 691, 701, 703, 711, 716, 726, 741, 746, 752, 758, 762, 770, 818, 834, 848, 850] \ No newline at end of file diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.java b/src/main/java/dk/camelot64/kickc/parser/KickCParser.java index 70fdd6cb1..62f0aa6ec 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.java @@ -25,31 +25,29 @@ public class KickCParser extends Parser { MODULO=20, INC=21, DEC=22, AND=23, BIT_NOT=24, BIT_XOR=25, BIT_OR=26, SHIFT_LEFT=27, SHIFT_RIGHT=28, EQUAL=29, NOT_EQUAL=30, LESS_THAN=31, LESS_THAN_EQUAL=32, GREATER_THAN_EQUAL=33, GREATER_THAN=34, LOGIC_AND=35, LOGIC_OR=36, ASSIGN=37, - ASSIGN_COMPOUND=38, TYPEDEF=39, RESERVE=40, PC=41, TARGET=42, LINK=43, - EXTENSION=44, EMULATOR=45, CPU=46, CODESEG=47, DATASEG=48, ENCODING=49, - CONST=50, EXTERN=51, EXPORT=52, ALIGN=53, INLINE=54, VOLATILE=55, STATIC=56, - INTERRUPT=57, REGISTER=58, LOCAL_RESERVE=59, ADDRESS=60, ADDRESS_ZEROPAGE=61, - ADDRESS_MAINMEM=62, FORM_SSA=63, FORM_MA=64, INTRINSIC=65, CALLING=66, - CALLINGCONVENTION=67, VARMODEL=68, CONSTRUCTORFOR=69, IF=70, ELSE=71, - WHILE=72, DO=73, FOR=74, SWITCH=75, RETURN=76, BREAK=77, CONTINUE=78, - ASM=79, DEFAULT=80, CASE=81, STRUCT=82, ENUM=83, SIZEOF=84, TYPEID=85, - DEFINED=86, KICKASM=87, RESOURCE=88, USES=89, CLOBBERS=90, BYTES=91, CYCLES=92, - LOGIC_NOT=93, SIGNEDNESS=94, SIMPLETYPE=95, BOOLEAN=96, KICKASM_BODY=97, - IMPORT=98, INCLUDE=99, PRAGMA=100, DEFINE=101, DEFINE_CONTINUE=102, UNDEF=103, - IFDEF=104, IFNDEF=105, IFIF=106, ELIF=107, IFELSE=108, ENDIF=109, ERROR=110, - NUMBER=111, NUMFLOAT=112, BINFLOAT=113, DECFLOAT=114, HEXFLOAT=115, NUMINT=116, - BININTEGER=117, DECINTEGER=118, HEXINTEGER=119, NAME=120, STRING=121, - CHAR=122, WS=123, COMMENT_LINE=124, COMMENT_BLOCK=125, ASM_BYTE=126, ASM_MNEMONIC=127, - ASM_IMM=128, ASM_COLON=129, ASM_COMMA=130, ASM_PAR_BEGIN=131, ASM_PAR_END=132, - ASM_BRACKET_BEGIN=133, ASM_BRACKET_END=134, ASM_DOT=135, ASM_SHIFT_LEFT=136, - ASM_SHIFT_RIGHT=137, ASM_PLUS=138, ASM_MINUS=139, ASM_LESS_THAN=140, ASM_GREATER_THAN=141, - ASM_MULTIPLY=142, ASM_DIVIDE=143, ASM_CURLY_BEGIN=144, ASM_CURLY_END=145, - ASM_NUMBER=146, ASM_NUMFLOAT=147, ASM_BINFLOAT=148, ASM_DECFLOAT=149, - ASM_HEXFLOAT=150, ASM_NUMINT=151, ASM_BININTEGER=152, ASM_DECINTEGER=153, - ASM_HEXINTEGER=154, ASM_CHAR=155, ASM_MULTI_REL=156, ASM_MULTI_NAME=157, - ASM_NAME=158, ASM_WS=159, ASM_COMMENT_LINE=160, ASM_COMMENT_BLOCK=161, - IMPORT_SYSTEMFILE=162, IMPORT_LOCALFILE=163, IMPORT_WS=164, IMPORT_COMMENT_LINE=165, - IMPORT_COMMENT_BLOCK=166; + ASSIGN_COMPOUND=38, TYPEDEF=39, CONST=40, EXTERN=41, EXPORT=42, ALIGN=43, + INLINE=44, VOLATILE=45, STATIC=46, INTERRUPT=47, REGISTER=48, LOCAL_RESERVE=49, + ADDRESS=50, ADDRESS_ZEROPAGE=51, ADDRESS_MAINMEM=52, FORM_SSA=53, FORM_MA=54, + INTRINSIC=55, CALLINGCONVENTION=56, IF=57, ELSE=58, WHILE=59, DO=60, FOR=61, + SWITCH=62, RETURN=63, BREAK=64, CONTINUE=65, ASM=66, DEFAULT=67, CASE=68, + STRUCT=69, ENUM=70, SIZEOF=71, TYPEID=72, DEFINED=73, KICKASM=74, RESOURCE=75, + USES=76, CLOBBERS=77, BYTES=78, CYCLES=79, LOGIC_NOT=80, SIGNEDNESS=81, + SIMPLETYPE=82, BOOLEAN=83, KICKASM_BODY=84, IMPORT=85, INCLUDE=86, PRAGMA=87, + DEFINE=88, DEFINE_CONTINUE=89, UNDEF=90, IFDEF=91, IFNDEF=92, IFIF=93, + ELIF=94, IFELSE=95, ENDIF=96, ERROR=97, NUMBER=98, NUMFLOAT=99, BINFLOAT=100, + DECFLOAT=101, HEXFLOAT=102, NUMINT=103, BININTEGER=104, DECINTEGER=105, + HEXINTEGER=106, NAME=107, STRING=108, CHAR=109, WS=110, COMMENT_LINE=111, + COMMENT_BLOCK=112, ASM_BYTE=113, ASM_MNEMONIC=114, ASM_IMM=115, ASM_COLON=116, + ASM_COMMA=117, ASM_PAR_BEGIN=118, ASM_PAR_END=119, ASM_BRACKET_BEGIN=120, + ASM_BRACKET_END=121, ASM_DOT=122, ASM_SHIFT_LEFT=123, ASM_SHIFT_RIGHT=124, + ASM_PLUS=125, ASM_MINUS=126, ASM_LESS_THAN=127, ASM_GREATER_THAN=128, + ASM_MULTIPLY=129, ASM_DIVIDE=130, ASM_CURLY_BEGIN=131, ASM_CURLY_END=132, + ASM_NUMBER=133, ASM_NUMFLOAT=134, ASM_BINFLOAT=135, ASM_DECFLOAT=136, + ASM_HEXFLOAT=137, ASM_NUMINT=138, ASM_BININTEGER=139, ASM_DECINTEGER=140, + ASM_HEXINTEGER=141, ASM_CHAR=142, ASM_MULTI_REL=143, ASM_MULTI_NAME=144, + ASM_NAME=145, ASM_WS=146, ASM_COMMENT_LINE=147, ASM_COMMENT_BLOCK=148, + IMPORT_SYSTEMFILE=149, IMPORT_LOCALFILE=150, IMPORT_WS=151, IMPORT_COMMENT_LINE=152, + IMPORT_COMMENT_BLOCK=153; public static final int RULE_file = 0, RULE_asmFile = 1, RULE_declSeq = 2, RULE_decl = 3, RULE_declVariables = 4, RULE_declVariableList = 5, RULE_typeDef = 6, RULE_declVariableInit = 7, @@ -57,9 +55,9 @@ public class KickCParser extends Parser { RULE_type = 12, RULE_structRef = 13, RULE_structDef = 14, RULE_structMembers = 15, RULE_enumRef = 16, RULE_enumDef = 17, RULE_enumMemberList = 18, RULE_enumMember = 19, RULE_declFunction = 20, RULE_declFunctionBody = 21, RULE_parameterListDecl = 22, - RULE_parameterDecl = 23, RULE_globalDirective = 24, RULE_directiveReserveParam = 25, - RULE_directive = 26, RULE_stmtSeq = 27, RULE_stmt = 28, RULE_switchCases = 29, - RULE_switchCase = 30, RULE_forLoop = 31, RULE_forClassicInit = 32, RULE_forClassicCondition = 33, + RULE_parameterDecl = 23, RULE_pragma = 24, RULE_pragmaParam = 25, RULE_directive = 26, + RULE_stmtSeq = 27, RULE_stmt = 28, RULE_switchCases = 29, RULE_switchCase = 30, + RULE_forLoop = 31, RULE_forClassicInit = 32, RULE_forClassicCondition = 33, RULE_commaExpr = 34, RULE_expr = 35, RULE_parameterList = 36, RULE_kasmContent = 37, RULE_asmDirectives = 38, RULE_asmDirective = 39, RULE_asmLines = 40, RULE_asmLine = 41, RULE_asmLabel = 42, RULE_asmInstruction = 43, RULE_asmBytes = 44, RULE_asmParamMode = 45, @@ -70,11 +68,11 @@ public class KickCParser extends Parser { "typeDef", "declVariableInit", "declType", "declPointer", "declArray", "typeSpecifier", "type", "structRef", "structDef", "structMembers", "enumRef", "enumDef", "enumMemberList", "enumMember", "declFunction", "declFunctionBody", - "parameterListDecl", "parameterDecl", "globalDirective", "directiveReserveParam", - "directive", "stmtSeq", "stmt", "switchCases", "switchCase", "forLoop", - "forClassicInit", "forClassicCondition", "commaExpr", "expr", "parameterList", - "kasmContent", "asmDirectives", "asmDirective", "asmLines", "asmLine", - "asmLabel", "asmInstruction", "asmBytes", "asmParamMode", "asmExpr" + "parameterListDecl", "parameterDecl", "pragma", "pragmaParam", "directive", + "stmtSeq", "stmt", "switchCases", "switchCase", "forLoop", "forClassicInit", + "forClassicCondition", "commaExpr", "expr", "parameterList", "kasmContent", + "asmDirectives", "asmDirective", "asmLines", "asmLine", "asmLabel", "asmInstruction", + "asmBytes", "asmParamMode", "asmExpr" }; } public static final String[] ruleNames = makeRuleNames(); @@ -84,12 +82,10 @@ public class KickCParser extends Parser { null, null, null, null, null, null, null, null, "';'", null, null, "'..'", "'...'", "'?'", null, "'->'", null, null, null, null, "'%'", "'++'", "'--'", "'&'", "'~'", "'^'", "'|'", null, null, "'=='", "'!='", null, - "'<='", "'>='", null, "'&&'", "'||'", "'='", null, "'typedef'", "'zp_reserve'", - "'pc'", "'target'", "'link'", "'extension'", "'emulator'", "'cpu'", "'code_seg'", - "'data_seg'", "'encoding'", "'const'", "'extern'", "'export'", "'align'", - "'inline'", "'volatile'", "'static'", "'interrupt'", "'register'", "'__zp_reserve'", - "'__address'", "'__zp'", "'__mem'", "'__ssa'", "'__ma'", "'__intrinsic'", - "'calling'", null, "'var_model'", "'constructor_for'", "'if'", "'else'", + "'<='", "'>='", null, "'&&'", "'||'", "'='", null, "'typedef'", "'const'", + "'extern'", "'export'", "'align'", "'inline'", "'volatile'", "'static'", + "'interrupt'", "'register'", "'__zp_reserve'", "'__address'", "'__zp'", + "'__mem'", "'__ssa'", "'__ma'", "'__intrinsic'", null, "'if'", "'else'", "'while'", "'do'", "'for'", "'switch'", "'return'", "'break'", "'continue'", "'asm'", "'default'", "'case'", "'struct'", "'enum'", "'sizeof'", "'typeid'", "'defined'", "'kickasm'", "'resource'", "'uses'", "'clobbers'", "'bytes'", @@ -109,11 +105,9 @@ public class KickCParser extends Parser { "INC", "DEC", "AND", "BIT_NOT", "BIT_XOR", "BIT_OR", "SHIFT_LEFT", "SHIFT_RIGHT", "EQUAL", "NOT_EQUAL", "LESS_THAN", "LESS_THAN_EQUAL", "GREATER_THAN_EQUAL", "GREATER_THAN", "LOGIC_AND", "LOGIC_OR", "ASSIGN", "ASSIGN_COMPOUND", - "TYPEDEF", "RESERVE", "PC", "TARGET", "LINK", "EXTENSION", "EMULATOR", - "CPU", "CODESEG", "DATASEG", "ENCODING", "CONST", "EXTERN", "EXPORT", - "ALIGN", "INLINE", "VOLATILE", "STATIC", "INTERRUPT", "REGISTER", "LOCAL_RESERVE", - "ADDRESS", "ADDRESS_ZEROPAGE", "ADDRESS_MAINMEM", "FORM_SSA", "FORM_MA", - "INTRINSIC", "CALLING", "CALLINGCONVENTION", "VARMODEL", "CONSTRUCTORFOR", + "TYPEDEF", "CONST", "EXTERN", "EXPORT", "ALIGN", "INLINE", "VOLATILE", + "STATIC", "INTERRUPT", "REGISTER", "LOCAL_RESERVE", "ADDRESS", "ADDRESS_ZEROPAGE", + "ADDRESS_MAINMEM", "FORM_SSA", "FORM_MA", "INTRINSIC", "CALLINGCONVENTION", "IF", "ELSE", "WHILE", "DO", "FOR", "SWITCH", "RETURN", "BREAK", "CONTINUE", "ASM", "DEFAULT", "CASE", "STRUCT", "ENUM", "SIZEOF", "TYPEID", "DEFINED", "KICKASM", "RESOURCE", "USES", "CLOBBERS", "BYTES", "CYCLES", "LOGIC_NOT", @@ -323,7 +317,7 @@ public class KickCParser extends Parser { setState(103); _errHandler.sync(this); _la = _input.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << TYPEDEF) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << LOCAL_RESERVE) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (FORM_MA - 64)) | (1L << (INTRINSIC - 64)) | (1L << (CALLINGCONVENTION - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (PRAGMA - 64)))) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << TYPEDEF) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << LOCAL_RESERVE) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << INTRINSIC) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 69)) & ~0x3f) == 0 && ((1L << (_la - 69)) & ((1L << (STRUCT - 69)) | (1L << (ENUM - 69)) | (1L << (SIGNEDNESS - 69)) | (1L << (SIMPLETYPE - 69)) | (1L << (PRAGMA - 69)))) != 0)) { { { setState(100); @@ -361,8 +355,8 @@ public class KickCParser extends Parser { public DeclFunctionContext declFunction() { return getRuleContext(DeclFunctionContext.class,0); } - public GlobalDirectiveContext globalDirective() { - return getRuleContext(GlobalDirectiveContext.class,0); + public PragmaContext pragma() { + return getRuleContext(PragmaContext.class,0); } public TypeDefContext typeDef() { return getRuleContext(TypeDefContext.class,0); @@ -431,7 +425,7 @@ public class KickCParser extends Parser { enterOuterAlt(_localctx, 5); { setState(116); - globalDirective(); + pragma(); } break; case 6: @@ -906,7 +900,7 @@ public class KickCParser extends Parser { setState(190); _errHandler.sync(this); _la = _input.LA(1); - while (((((_la - 50)) & ~0x3f) == 0 && ((1L << (_la - 50)) & ((1L << (CONST - 50)) | (1L << (EXTERN - 50)) | (1L << (EXPORT - 50)) | (1L << (ALIGN - 50)) | (1L << (INLINE - 50)) | (1L << (VOLATILE - 50)) | (1L << (STATIC - 50)) | (1L << (INTERRUPT - 50)) | (1L << (REGISTER - 50)) | (1L << (LOCAL_RESERVE - 50)) | (1L << (ADDRESS - 50)) | (1L << (ADDRESS_ZEROPAGE - 50)) | (1L << (ADDRESS_MAINMEM - 50)) | (1L << (FORM_SSA - 50)) | (1L << (FORM_MA - 50)) | (1L << (INTRINSIC - 50)) | (1L << (CALLINGCONVENTION - 50)))) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << LOCAL_RESERVE) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << INTRINSIC) | (1L << CALLINGCONVENTION))) != 0)) { { { setState(187); @@ -922,7 +916,7 @@ public class KickCParser extends Parser { setState(197); _errHandler.sync(this); _la = _input.LA(1); - while (((((_la - 50)) & ~0x3f) == 0 && ((1L << (_la - 50)) & ((1L << (CONST - 50)) | (1L << (EXTERN - 50)) | (1L << (EXPORT - 50)) | (1L << (ALIGN - 50)) | (1L << (INLINE - 50)) | (1L << (VOLATILE - 50)) | (1L << (STATIC - 50)) | (1L << (INTERRUPT - 50)) | (1L << (REGISTER - 50)) | (1L << (LOCAL_RESERVE - 50)) | (1L << (ADDRESS - 50)) | (1L << (ADDRESS_ZEROPAGE - 50)) | (1L << (ADDRESS_MAINMEM - 50)) | (1L << (FORM_SSA - 50)) | (1L << (FORM_MA - 50)) | (1L << (INTRINSIC - 50)) | (1L << (CALLINGCONVENTION - 50)))) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << LOCAL_RESERVE) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << INTRINSIC) | (1L << CALLINGCONVENTION))) != 0)) { { { setState(194); @@ -985,7 +979,7 @@ public class KickCParser extends Parser { setState(204); _errHandler.sync(this); _la = _input.LA(1); - while (((((_la - 50)) & ~0x3f) == 0 && ((1L << (_la - 50)) & ((1L << (CONST - 50)) | (1L << (EXTERN - 50)) | (1L << (EXPORT - 50)) | (1L << (ALIGN - 50)) | (1L << (INLINE - 50)) | (1L << (VOLATILE - 50)) | (1L << (STATIC - 50)) | (1L << (INTERRUPT - 50)) | (1L << (REGISTER - 50)) | (1L << (LOCAL_RESERVE - 50)) | (1L << (ADDRESS - 50)) | (1L << (ADDRESS_ZEROPAGE - 50)) | (1L << (ADDRESS_MAINMEM - 50)) | (1L << (FORM_SSA - 50)) | (1L << (FORM_MA - 50)) | (1L << (INTRINSIC - 50)) | (1L << (CALLINGCONVENTION - 50)))) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << LOCAL_RESERVE) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << INTRINSIC) | (1L << CALLINGCONVENTION))) != 0)) { { { setState(201); @@ -1046,7 +1040,7 @@ public class KickCParser extends Parser { setState(209); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 84)) & ~0x3f) == 0 && ((1L << (_la - 84)) & ((1L << (SIZEOF - 84)) | (1L << (TYPEID - 84)) | (1L << (DEFINED - 84)) | (1L << (LOGIC_NOT - 84)) | (1L << (BOOLEAN - 84)) | (1L << (NUMBER - 84)) | (1L << (NAME - 84)) | (1L << (STRING - 84)) | (1L << (CHAR - 84)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 71)) & ~0x3f) == 0 && ((1L << (_la - 71)) & ((1L << (SIZEOF - 71)) | (1L << (TYPEID - 71)) | (1L << (DEFINED - 71)) | (1L << (LOGIC_NOT - 71)) | (1L << (BOOLEAN - 71)) | (1L << (NUMBER - 71)) | (1L << (NAME - 71)) | (1L << (STRING - 71)) | (1L << (CHAR - 71)))) != 0)) { { setState(208); expr(0); @@ -1200,7 +1194,7 @@ public class KickCParser extends Parser { setState(221); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 84)) & ~0x3f) == 0 && ((1L << (_la - 84)) & ((1L << (SIZEOF - 84)) | (1L << (TYPEID - 84)) | (1L << (DEFINED - 84)) | (1L << (LOGIC_NOT - 84)) | (1L << (BOOLEAN - 84)) | (1L << (NUMBER - 84)) | (1L << (NAME - 84)) | (1L << (STRING - 84)) | (1L << (CHAR - 84)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 71)) & ~0x3f) == 0 && ((1L << (_la - 71)) & ((1L << (SIZEOF - 71)) | (1L << (TYPEID - 71)) | (1L << (DEFINED - 71)) | (1L << (LOGIC_NOT - 71)) | (1L << (BOOLEAN - 71)) | (1L << (NUMBER - 71)) | (1L << (NAME - 71)) | (1L << (STRING - 71)) | (1L << (CHAR - 71)))) != 0)) { { setState(220); expr(0); @@ -1567,7 +1561,7 @@ public class KickCParser extends Parser { setState(249); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 84)) & ~0x3f) == 0 && ((1L << (_la - 84)) & ((1L << (SIZEOF - 84)) | (1L << (TYPEID - 84)) | (1L << (DEFINED - 84)) | (1L << (LOGIC_NOT - 84)) | (1L << (BOOLEAN - 84)) | (1L << (NUMBER - 84)) | (1L << (NAME - 84)) | (1L << (STRING - 84)) | (1L << (CHAR - 84)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 71)) & ~0x3f) == 0 && ((1L << (_la - 71)) & ((1L << (SIZEOF - 71)) | (1L << (TYPEID - 71)) | (1L << (DEFINED - 71)) | (1L << (LOGIC_NOT - 71)) | (1L << (BOOLEAN - 71)) | (1L << (NUMBER - 71)) | (1L << (NAME - 71)) | (1L << (STRING - 71)) | (1L << (CHAR - 71)))) != 0)) { { setState(248); expr(0); @@ -1719,7 +1713,7 @@ public class KickCParser extends Parser { setState(271); _errHandler.sync(this); _la = _input.LA(1); - } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << LOCAL_RESERVE) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (FORM_MA - 64)) | (1L << (INTRINSIC - 64)) | (1L << (CALLINGCONVENTION - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)))) != 0) ); + } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << LOCAL_RESERVE) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << INTRINSIC) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 69)) & ~0x3f) == 0 && ((1L << (_la - 69)) & ((1L << (STRUCT - 69)) | (1L << (ENUM - 69)) | (1L << (SIGNEDNESS - 69)) | (1L << (SIMPLETYPE - 69)))) != 0) ); setState(273); match(CURLY_END); } @@ -2103,7 +2097,7 @@ public class KickCParser extends Parser { setState(315); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << PARAM_LIST) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << LOCAL_RESERVE) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (FORM_MA - 64)) | (1L << (INTRINSIC - 64)) | (1L << (CALLINGCONVENTION - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << PARAM_LIST) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << LOCAL_RESERVE) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << INTRINSIC) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 69)) & ~0x3f) == 0 && ((1L << (_la - 69)) & ((1L << (STRUCT - 69)) | (1L << (ENUM - 69)) | (1L << (SIGNEDNESS - 69)) | (1L << (SIMPLETYPE - 69)))) != 0)) { { setState(314); parameterListDecl(); @@ -2180,7 +2174,7 @@ public class KickCParser extends Parser { setState(324); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << SEMICOLON) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << LOCAL_RESERVE) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (FORM_MA - 64)) | (1L << (INTRINSIC - 64)) | (1L << (CALLINGCONVENTION - 64)) | (1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (DEFINED - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << SEMICOLON) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << LOCAL_RESERVE) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << INTRINSIC) | (1L << CALLINGCONVENTION) | (1L << IF) | (1L << WHILE) | (1L << DO) | (1L << FOR) | (1L << SWITCH) | (1L << RETURN))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (DEFINED - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)))) != 0)) { { setState(323); stmtSeq(); @@ -2403,604 +2397,81 @@ public class KickCParser extends Parser { return _localctx; } - public static class GlobalDirectiveContext extends ParserRuleContext { - public GlobalDirectiveContext(ParserRuleContext parent, int invokingState) { + public static class PragmaContext extends ParserRuleContext { + public TerminalNode PRAGMA() { return getToken(KickCParser.PRAGMA, 0); } + public TerminalNode NAME() { return getToken(KickCParser.NAME, 0); } + public TerminalNode PAR_BEGIN() { return getToken(KickCParser.PAR_BEGIN, 0); } + public List pragmaParam() { + return getRuleContexts(PragmaParamContext.class); + } + public PragmaParamContext pragmaParam(int i) { + return getRuleContext(PragmaParamContext.class,i); + } + public TerminalNode PAR_END() { return getToken(KickCParser.PAR_END, 0); } + public List COMMA() { return getTokens(KickCParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(KickCParser.COMMA, i); + } + public PragmaContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_globalDirective; } - - public GlobalDirectiveContext() { } - public void copyFrom(GlobalDirectiveContext ctx) { - super.copyFrom(ctx); - } - } - public static class GlobalDirectiveCpuContext extends GlobalDirectiveContext { - public TerminalNode PAR_BEGIN() { return getToken(KickCParser.PAR_BEGIN, 0); } - public TerminalNode NAME() { return getToken(KickCParser.NAME, 0); } - public TerminalNode PAR_END() { return getToken(KickCParser.PAR_END, 0); } - public TerminalNode PRAGMA() { return getToken(KickCParser.PRAGMA, 0); } - public TerminalNode CPU() { return getToken(KickCParser.CPU, 0); } - public GlobalDirectiveCpuContext(GlobalDirectiveContext ctx) { copyFrom(ctx); } + @Override public int getRuleIndex() { return RULE_pragma; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterGlobalDirectiveCpu(this); + if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterPragma(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitGlobalDirectiveCpu(this); + if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitPragma(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor)visitor).visitGlobalDirectiveCpu(this); - else return visitor.visitChildren(this); - } - } - public static class GlobalDirectiveReserveContext extends GlobalDirectiveContext { - public TerminalNode PAR_BEGIN() { return getToken(KickCParser.PAR_BEGIN, 0); } - public List directiveReserveParam() { - return getRuleContexts(DirectiveReserveParamContext.class); - } - public DirectiveReserveParamContext directiveReserveParam(int i) { - return getRuleContext(DirectiveReserveParamContext.class,i); - } - public TerminalNode PAR_END() { return getToken(KickCParser.PAR_END, 0); } - public TerminalNode PRAGMA() { return getToken(KickCParser.PRAGMA, 0); } - public TerminalNode RESERVE() { return getToken(KickCParser.RESERVE, 0); } - public List COMMA() { return getTokens(KickCParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(KickCParser.COMMA, i); - } - public GlobalDirectiveReserveContext(GlobalDirectiveContext ctx) { copyFrom(ctx); } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterGlobalDirectiveReserve(this); - } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitGlobalDirectiveReserve(this); - } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor)visitor).visitGlobalDirectiveReserve(this); - else return visitor.visitChildren(this); - } - } - public static class GlobalDirectiveConstructorForContext extends GlobalDirectiveContext { - public TerminalNode PAR_BEGIN() { return getToken(KickCParser.PAR_BEGIN, 0); } - public List NAME() { return getTokens(KickCParser.NAME); } - public TerminalNode NAME(int i) { - return getToken(KickCParser.NAME, i); - } - public TerminalNode PAR_END() { return getToken(KickCParser.PAR_END, 0); } - public TerminalNode PRAGMA() { return getToken(KickCParser.PRAGMA, 0); } - public TerminalNode CONSTRUCTORFOR() { return getToken(KickCParser.CONSTRUCTORFOR, 0); } - public List COMMA() { return getTokens(KickCParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(KickCParser.COMMA, i); - } - public GlobalDirectiveConstructorForContext(GlobalDirectiveContext ctx) { copyFrom(ctx); } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterGlobalDirectiveConstructorFor(this); - } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitGlobalDirectiveConstructorFor(this); - } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor)visitor).visitGlobalDirectiveConstructorFor(this); - else return visitor.visitChildren(this); - } - } - public static class GlobalDirectiveExtensionContext extends GlobalDirectiveContext { - public TerminalNode PAR_BEGIN() { return getToken(KickCParser.PAR_BEGIN, 0); } - public TerminalNode STRING() { return getToken(KickCParser.STRING, 0); } - public TerminalNode PAR_END() { return getToken(KickCParser.PAR_END, 0); } - public TerminalNode PRAGMA() { return getToken(KickCParser.PRAGMA, 0); } - public TerminalNode EXTENSION() { return getToken(KickCParser.EXTENSION, 0); } - public GlobalDirectiveExtensionContext(GlobalDirectiveContext ctx) { copyFrom(ctx); } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterGlobalDirectiveExtension(this); - } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitGlobalDirectiveExtension(this); - } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor)visitor).visitGlobalDirectiveExtension(this); - else return visitor.visitChildren(this); - } - } - public static class GlobalDirectiveCallingContext extends GlobalDirectiveContext { - public TerminalNode PAR_BEGIN() { return getToken(KickCParser.PAR_BEGIN, 0); } - public TerminalNode CALLINGCONVENTION() { return getToken(KickCParser.CALLINGCONVENTION, 0); } - public TerminalNode PAR_END() { return getToken(KickCParser.PAR_END, 0); } - public TerminalNode PRAGMA() { return getToken(KickCParser.PRAGMA, 0); } - public TerminalNode CALLING() { return getToken(KickCParser.CALLING, 0); } - public GlobalDirectiveCallingContext(GlobalDirectiveContext ctx) { copyFrom(ctx); } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterGlobalDirectiveCalling(this); - } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitGlobalDirectiveCalling(this); - } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor)visitor).visitGlobalDirectiveCalling(this); - else return visitor.visitChildren(this); - } - } - public static class GlobalDirectiveEncodingContext extends GlobalDirectiveContext { - public TerminalNode PAR_BEGIN() { return getToken(KickCParser.PAR_BEGIN, 0); } - public TerminalNode NAME() { return getToken(KickCParser.NAME, 0); } - public TerminalNode PAR_END() { return getToken(KickCParser.PAR_END, 0); } - public TerminalNode PRAGMA() { return getToken(KickCParser.PRAGMA, 0); } - public TerminalNode ENCODING() { return getToken(KickCParser.ENCODING, 0); } - public GlobalDirectiveEncodingContext(GlobalDirectiveContext ctx) { copyFrom(ctx); } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterGlobalDirectiveEncoding(this); - } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitGlobalDirectiveEncoding(this); - } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor)visitor).visitGlobalDirectiveEncoding(this); - else return visitor.visitChildren(this); - } - } - public static class GlobalDirectivePlatformContext extends GlobalDirectiveContext { - public TerminalNode PAR_BEGIN() { return getToken(KickCParser.PAR_BEGIN, 0); } - public TerminalNode NAME() { return getToken(KickCParser.NAME, 0); } - public TerminalNode PAR_END() { return getToken(KickCParser.PAR_END, 0); } - public TerminalNode PRAGMA() { return getToken(KickCParser.PRAGMA, 0); } - public TerminalNode TARGET() { return getToken(KickCParser.TARGET, 0); } - public GlobalDirectivePlatformContext(GlobalDirectiveContext ctx) { copyFrom(ctx); } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterGlobalDirectivePlatform(this); - } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitGlobalDirectivePlatform(this); - } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor)visitor).visitGlobalDirectivePlatform(this); - else return visitor.visitChildren(this); - } - } - public static class GlobalDirectiveDataSegContext extends GlobalDirectiveContext { - public TerminalNode PAR_BEGIN() { return getToken(KickCParser.PAR_BEGIN, 0); } - public TerminalNode NAME() { return getToken(KickCParser.NAME, 0); } - public TerminalNode PAR_END() { return getToken(KickCParser.PAR_END, 0); } - public TerminalNode PRAGMA() { return getToken(KickCParser.PRAGMA, 0); } - public TerminalNode DATASEG() { return getToken(KickCParser.DATASEG, 0); } - public GlobalDirectiveDataSegContext(GlobalDirectiveContext ctx) { copyFrom(ctx); } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterGlobalDirectiveDataSeg(this); - } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitGlobalDirectiveDataSeg(this); - } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor)visitor).visitGlobalDirectiveDataSeg(this); - else return visitor.visitChildren(this); - } - } - public static class GlobalDirectivePcContext extends GlobalDirectiveContext { - public TerminalNode PAR_BEGIN() { return getToken(KickCParser.PAR_BEGIN, 0); } - public TerminalNode NUMBER() { return getToken(KickCParser.NUMBER, 0); } - public TerminalNode PAR_END() { return getToken(KickCParser.PAR_END, 0); } - public TerminalNode PRAGMA() { return getToken(KickCParser.PRAGMA, 0); } - public TerminalNode PC() { return getToken(KickCParser.PC, 0); } - public GlobalDirectivePcContext(GlobalDirectiveContext ctx) { copyFrom(ctx); } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterGlobalDirectivePc(this); - } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitGlobalDirectivePc(this); - } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor)visitor).visitGlobalDirectivePc(this); - else return visitor.visitChildren(this); - } - } - public static class GlobalDirectiveCodeSegContext extends GlobalDirectiveContext { - public TerminalNode PAR_BEGIN() { return getToken(KickCParser.PAR_BEGIN, 0); } - public TerminalNode NAME() { return getToken(KickCParser.NAME, 0); } - public TerminalNode PAR_END() { return getToken(KickCParser.PAR_END, 0); } - public TerminalNode PRAGMA() { return getToken(KickCParser.PRAGMA, 0); } - public TerminalNode CODESEG() { return getToken(KickCParser.CODESEG, 0); } - public GlobalDirectiveCodeSegContext(GlobalDirectiveContext ctx) { copyFrom(ctx); } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterGlobalDirectiveCodeSeg(this); - } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitGlobalDirectiveCodeSeg(this); - } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor)visitor).visitGlobalDirectiveCodeSeg(this); - else return visitor.visitChildren(this); - } - } - public static class GlobalDirectiveEmulatorContext extends GlobalDirectiveContext { - public TerminalNode PAR_BEGIN() { return getToken(KickCParser.PAR_BEGIN, 0); } - public TerminalNode STRING() { return getToken(KickCParser.STRING, 0); } - public TerminalNode PAR_END() { return getToken(KickCParser.PAR_END, 0); } - public TerminalNode PRAGMA() { return getToken(KickCParser.PRAGMA, 0); } - public TerminalNode EMULATOR() { return getToken(KickCParser.EMULATOR, 0); } - public GlobalDirectiveEmulatorContext(GlobalDirectiveContext ctx) { copyFrom(ctx); } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterGlobalDirectiveEmulator(this); - } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitGlobalDirectiveEmulator(this); - } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor)visitor).visitGlobalDirectiveEmulator(this); - else return visitor.visitChildren(this); - } - } - public static class GlobalDirectiveLinkScriptContext extends GlobalDirectiveContext { - public TerminalNode PAR_BEGIN() { return getToken(KickCParser.PAR_BEGIN, 0); } - public TerminalNode STRING() { return getToken(KickCParser.STRING, 0); } - public TerminalNode PAR_END() { return getToken(KickCParser.PAR_END, 0); } - public TerminalNode PRAGMA() { return getToken(KickCParser.PRAGMA, 0); } - public TerminalNode LINK() { return getToken(KickCParser.LINK, 0); } - public GlobalDirectiveLinkScriptContext(GlobalDirectiveContext ctx) { copyFrom(ctx); } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterGlobalDirectiveLinkScript(this); - } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitGlobalDirectiveLinkScript(this); - } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor)visitor).visitGlobalDirectiveLinkScript(this); - else return visitor.visitChildren(this); - } - } - public static class GlobalDirectiveVarModelContext extends GlobalDirectiveContext { - public TerminalNode PAR_BEGIN() { return getToken(KickCParser.PAR_BEGIN, 0); } - public List NAME() { return getTokens(KickCParser.NAME); } - public TerminalNode NAME(int i) { - return getToken(KickCParser.NAME, i); - } - public TerminalNode PAR_END() { return getToken(KickCParser.PAR_END, 0); } - public TerminalNode PRAGMA() { return getToken(KickCParser.PRAGMA, 0); } - public TerminalNode VARMODEL() { return getToken(KickCParser.VARMODEL, 0); } - public List COMMA() { return getTokens(KickCParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(KickCParser.COMMA, i); - } - public GlobalDirectiveVarModelContext(GlobalDirectiveContext ctx) { copyFrom(ctx); } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterGlobalDirectiveVarModel(this); - } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitGlobalDirectiveVarModel(this); - } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor)visitor).visitGlobalDirectiveVarModel(this); + if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor)visitor).visitPragma(this); else return visitor.visitChildren(this); } } - public final GlobalDirectiveContext globalDirective() throws RecognitionException { - GlobalDirectiveContext _localctx = new GlobalDirectiveContext(_ctx, getState()); - enterRule(_localctx, 48, RULE_globalDirective); + public final PragmaContext pragma() throws RecognitionException { + PragmaContext _localctx = new PragmaContext(_ctx, getState()); + enterRule(_localctx, 48, RULE_pragma); int _la; try { - setState(449); + enterOuterAlt(_localctx, 1); + { + setState(349); + match(PRAGMA); + setState(350); + match(NAME); + setState(362); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) { case 1: - _localctx = new GlobalDirectivePlatformContext(_localctx); - enterOuterAlt(_localctx, 1); { - { - setState(349); - match(PRAGMA); - setState(350); - match(TARGET); - } + setState(351); + match(PAR_BEGIN); setState(352); - match(PAR_BEGIN); - setState(353); - match(NAME); - setState(354); - match(PAR_END); + pragmaParam(); + setState(357); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(353); + match(COMMA); + setState(354); + pragmaParam(); + } + } + setState(359); + _errHandler.sync(this); + _la = _input.LA(1); } - break; - case 2: - _localctx = new GlobalDirectiveCpuContext(_localctx); - enterOuterAlt(_localctx, 2); - { - { - setState(355); - match(PRAGMA); - setState(356); - match(CPU); - } - setState(358); - match(PAR_BEGIN); - setState(359); - match(NAME); setState(360); match(PAR_END); } break; - case 3: - _localctx = new GlobalDirectiveLinkScriptContext(_localctx); - enterOuterAlt(_localctx, 3); - { - { - setState(361); - match(PRAGMA); - setState(362); - match(LINK); - } - setState(364); - match(PAR_BEGIN); - setState(365); - match(STRING); - setState(366); - match(PAR_END); - } - break; - case 4: - _localctx = new GlobalDirectiveExtensionContext(_localctx); - enterOuterAlt(_localctx, 4); - { - { - setState(367); - match(PRAGMA); - setState(368); - match(EXTENSION); - } - setState(370); - match(PAR_BEGIN); - setState(371); - match(STRING); - setState(372); - match(PAR_END); - } - break; - case 5: - _localctx = new GlobalDirectiveEmulatorContext(_localctx); - enterOuterAlt(_localctx, 5); - { - { - setState(373); - match(PRAGMA); - setState(374); - match(EMULATOR); - } - setState(376); - match(PAR_BEGIN); - setState(377); - match(STRING); - setState(378); - match(PAR_END); - } - break; - case 6: - _localctx = new GlobalDirectiveReserveContext(_localctx); - enterOuterAlt(_localctx, 6); - { - { - setState(379); - match(PRAGMA); - setState(380); - match(RESERVE); - } - setState(382); - match(PAR_BEGIN); - setState(383); - directiveReserveParam(); - setState(388); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(384); - match(COMMA); - setState(385); - directiveReserveParam(); - } - } - setState(390); - _errHandler.sync(this); - _la = _input.LA(1); - } - setState(391); - match(PAR_END); - } - break; - case 7: - _localctx = new GlobalDirectivePcContext(_localctx); - enterOuterAlt(_localctx, 7); - { - { - setState(393); - match(PRAGMA); - setState(394); - match(PC); - } - setState(396); - match(PAR_BEGIN); - setState(397); - match(NUMBER); - setState(398); - match(PAR_END); - } - break; - case 8: - _localctx = new GlobalDirectiveCodeSegContext(_localctx); - enterOuterAlt(_localctx, 8); - { - { - setState(399); - match(PRAGMA); - setState(400); - match(CODESEG); - } - setState(402); - match(PAR_BEGIN); - setState(403); - match(NAME); - setState(404); - match(PAR_END); - } - break; - case 9: - _localctx = new GlobalDirectiveDataSegContext(_localctx); - enterOuterAlt(_localctx, 9); - { - { - setState(405); - match(PRAGMA); - setState(406); - match(DATASEG); - } - setState(408); - match(PAR_BEGIN); - setState(409); - match(NAME); - setState(410); - match(PAR_END); - } - break; - case 10: - _localctx = new GlobalDirectiveEncodingContext(_localctx); - enterOuterAlt(_localctx, 10); - { - { - setState(411); - match(PRAGMA); - setState(412); - match(ENCODING); - } - setState(414); - match(PAR_BEGIN); - setState(415); - match(NAME); - setState(416); - match(PAR_END); - } - break; - case 11: - _localctx = new GlobalDirectiveCallingContext(_localctx); - enterOuterAlt(_localctx, 11); - { - { - setState(417); - match(PRAGMA); - setState(418); - match(CALLING); - } - setState(420); - match(PAR_BEGIN); - setState(421); - match(CALLINGCONVENTION); - setState(422); - match(PAR_END); - } - break; - case 12: - _localctx = new GlobalDirectiveVarModelContext(_localctx); - enterOuterAlt(_localctx, 12); - { - { - setState(423); - match(PRAGMA); - setState(424); - match(VARMODEL); - } - setState(426); - match(PAR_BEGIN); - setState(427); - match(NAME); - setState(432); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(428); - match(COMMA); - setState(429); - match(NAME); - } - } - setState(434); - _errHandler.sync(this); - _la = _input.LA(1); - } - setState(435); - match(PAR_END); - } - break; - case 13: - _localctx = new GlobalDirectiveConstructorForContext(_localctx); - enterOuterAlt(_localctx, 13); - { - { - setState(436); - match(PRAGMA); - setState(437); - match(CONSTRUCTORFOR); - } - setState(439); - match(PAR_BEGIN); - setState(440); - match(NAME); - setState(445); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(441); - match(COMMA); - setState(442); - match(NAME); - } - } - setState(447); - _errHandler.sync(this); - _la = _input.LA(1); - } - setState(448); - match(PAR_END); - } - break; + } } } catch (RecognitionException re) { @@ -3014,52 +2485,158 @@ public class KickCParser extends Parser { return _localctx; } - public static class DirectiveReserveParamContext extends ParserRuleContext { + public static class PragmaParamContext extends ParserRuleContext { + public PragmaParamContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_pragmaParam; } + + public PragmaParamContext() { } + public void copyFrom(PragmaParamContext ctx) { + super.copyFrom(ctx); + } + } + public static class PragmaParamNumberContext extends PragmaParamContext { + public TerminalNode NUMBER() { return getToken(KickCParser.NUMBER, 0); } + public PragmaParamNumberContext(PragmaParamContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterPragmaParamNumber(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitPragmaParamNumber(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor)visitor).visitPragmaParamNumber(this); + else return visitor.visitChildren(this); + } + } + public static class PragmaParamStringContext extends PragmaParamContext { + public TerminalNode STRING() { return getToken(KickCParser.STRING, 0); } + public PragmaParamStringContext(PragmaParamContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterPragmaParamString(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitPragmaParamString(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor)visitor).visitPragmaParamString(this); + else return visitor.visitChildren(this); + } + } + public static class PragmaParamNameContext extends PragmaParamContext { + public TerminalNode NAME() { return getToken(KickCParser.NAME, 0); } + public PragmaParamNameContext(PragmaParamContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterPragmaParamName(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitPragmaParamName(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor)visitor).visitPragmaParamName(this); + else return visitor.visitChildren(this); + } + } + public static class PragmaParamCallingConventionContext extends PragmaParamContext { + public TerminalNode CALLINGCONVENTION() { return getToken(KickCParser.CALLINGCONVENTION, 0); } + public PragmaParamCallingConventionContext(PragmaParamContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterPragmaParamCallingConvention(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitPragmaParamCallingConvention(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor)visitor).visitPragmaParamCallingConvention(this); + else return visitor.visitChildren(this); + } + } + public static class PragmaParamRangeContext extends PragmaParamContext { public List NUMBER() { return getTokens(KickCParser.NUMBER); } public TerminalNode NUMBER(int i) { return getToken(KickCParser.NUMBER, i); } public TerminalNode RANGE() { return getToken(KickCParser.RANGE, 0); } - public DirectiveReserveParamContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_directiveReserveParam; } + public PragmaParamRangeContext(PragmaParamContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterDirectiveReserveParam(this); + if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterPragmaParamRange(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitDirectiveReserveParam(this); + if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitPragmaParamRange(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor)visitor).visitDirectiveReserveParam(this); + if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor)visitor).visitPragmaParamRange(this); else return visitor.visitChildren(this); } } - public final DirectiveReserveParamContext directiveReserveParam() throws RecognitionException { - DirectiveReserveParamContext _localctx = new DirectiveReserveParamContext(_ctx, getState()); - enterRule(_localctx, 50, RULE_directiveReserveParam); - int _la; + public final PragmaParamContext pragmaParam() throws RecognitionException { + PragmaParamContext _localctx = new PragmaParamContext(_ctx, getState()); + enterRule(_localctx, 50, RULE_pragmaParam); try { - enterOuterAlt(_localctx, 1); - { - setState(451); - match(NUMBER); - setState(454); + setState(371); _errHandler.sync(this); - _la = _input.LA(1); - if (_la==RANGE) { + switch ( getInterpreter().adaptivePredict(_input,37,_ctx) ) { + case 1: + _localctx = new PragmaParamNumberContext(_localctx); + enterOuterAlt(_localctx, 1); { - setState(452); - match(RANGE); - setState(453); + setState(364); match(NUMBER); } - } - + break; + case 2: + _localctx = new PragmaParamRangeContext(_localctx); + enterOuterAlt(_localctx, 2); + { + setState(365); + match(NUMBER); + setState(366); + match(RANGE); + setState(367); + match(NUMBER); + } + break; + case 3: + _localctx = new PragmaParamNameContext(_localctx); + enterOuterAlt(_localctx, 3); + { + setState(368); + match(NAME); + } + break; + case 4: + _localctx = new PragmaParamStringContext(_localctx); + enterOuterAlt(_localctx, 4); + { + setState(369); + match(STRING); + } + break; + case 5: + _localctx = new PragmaParamCallingConventionContext(_localctx); + enterOuterAlt(_localctx, 5); + { + setState(370); + match(CALLINGCONVENTION); + } + break; } } catch (RecognitionException re) { @@ -3331,11 +2908,11 @@ public class KickCParser extends Parser { public static class DirectiveReserveZpContext extends DirectiveContext { public TerminalNode LOCAL_RESERVE() { return getToken(KickCParser.LOCAL_RESERVE, 0); } public TerminalNode PAR_BEGIN() { return getToken(KickCParser.PAR_BEGIN, 0); } - public List directiveReserveParam() { - return getRuleContexts(DirectiveReserveParamContext.class); + public List pragmaParam() { + return getRuleContexts(PragmaParamContext.class); } - public DirectiveReserveParamContext directiveReserveParam(int i) { - return getRuleContext(DirectiveReserveParamContext.class,i); + public PragmaParamContext pragmaParam(int i) { + return getRuleContext(PragmaParamContext.class,i); } public TerminalNode PAR_END() { return getToken(KickCParser.PAR_END, 0); } public List COMMA() { return getTokens(KickCParser.COMMA); } @@ -3403,14 +2980,14 @@ public class KickCParser extends Parser { enterRule(_localctx, 52, RULE_directive); int _la; try { - setState(500); + setState(417); _errHandler.sync(this); switch (_input.LA(1)) { case CONST: _localctx = new DirectiveConstContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(456); + setState(373); match(CONST); } break; @@ -3418,13 +2995,13 @@ public class KickCParser extends Parser { _localctx = new DirectiveAlignContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(457); + setState(374); match(ALIGN); - setState(458); + setState(375); match(PAR_BEGIN); - setState(459); + setState(376); match(NUMBER); - setState(460); + setState(377); match(PAR_END); } break; @@ -3432,20 +3009,20 @@ public class KickCParser extends Parser { _localctx = new DirectiveRegisterContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(461); + setState(378); match(REGISTER); - setState(465); + setState(382); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) { case 1: { - setState(462); + setState(379); match(PAR_BEGIN); { - setState(463); + setState(380); match(NAME); } - setState(464); + setState(381); match(PAR_END); } break; @@ -3456,7 +3033,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveMemoryAreaZpContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(467); + setState(384); match(ADDRESS_ZEROPAGE); } break; @@ -3464,7 +3041,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveMemoryAreaMainContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(468); + setState(385); match(ADDRESS_MAINMEM); } break; @@ -3472,15 +3049,15 @@ public class KickCParser extends Parser { _localctx = new DirectiveMemoryAreaAddressContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(469); + setState(386); match(ADDRESS); - setState(470); + setState(387); match(PAR_BEGIN); { - setState(471); + setState(388); match(NUMBER); } - setState(472); + setState(389); match(PAR_END); } break; @@ -3488,7 +3065,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveVolatileContext(_localctx); enterOuterAlt(_localctx, 7); { - setState(473); + setState(390); match(VOLATILE); } break; @@ -3496,7 +3073,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveStaticContext(_localctx); enterOuterAlt(_localctx, 8); { - setState(474); + setState(391); match(STATIC); } break; @@ -3504,7 +3081,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveFormSsaContext(_localctx); enterOuterAlt(_localctx, 9); { - setState(475); + setState(392); match(FORM_SSA); } break; @@ -3512,7 +3089,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveFormMaContext(_localctx); enterOuterAlt(_localctx, 10); { - setState(476); + setState(393); match(FORM_MA); } break; @@ -3520,7 +3097,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveExternContext(_localctx); enterOuterAlt(_localctx, 11); { - setState(477); + setState(394); match(EXTERN); } break; @@ -3528,7 +3105,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveExportContext(_localctx); enterOuterAlt(_localctx, 12); { - setState(478); + setState(395); match(EXPORT); } break; @@ -3536,7 +3113,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveInlineContext(_localctx); enterOuterAlt(_localctx, 13); { - setState(479); + setState(396); match(INLINE); } break; @@ -3544,7 +3121,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveIntrinsicContext(_localctx); enterOuterAlt(_localctx, 14); { - setState(480); + setState(397); match(INTRINSIC); } break; @@ -3552,18 +3129,18 @@ public class KickCParser extends Parser { _localctx = new DirectiveInterruptContext(_localctx); enterOuterAlt(_localctx, 15); { - setState(481); + setState(398); match(INTERRUPT); - setState(485); + setState(402); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,41,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,39,_ctx) ) { case 1: { - setState(482); + setState(399); match(PAR_BEGIN); - setState(483); + setState(400); match(NAME); - setState(484); + setState(401); match(PAR_END); } break; @@ -3574,29 +3151,29 @@ public class KickCParser extends Parser { _localctx = new DirectiveReserveZpContext(_localctx); enterOuterAlt(_localctx, 16); { - setState(487); + setState(404); match(LOCAL_RESERVE); - setState(488); + setState(405); match(PAR_BEGIN); - setState(489); - directiveReserveParam(); - setState(494); + setState(406); + pragmaParam(); + setState(411); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(490); + setState(407); match(COMMA); - setState(491); - directiveReserveParam(); + setState(408); + pragmaParam(); } } - setState(496); + setState(413); _errHandler.sync(this); _la = _input.LA(1); } - setState(497); + setState(414); match(PAR_END); } break; @@ -3604,7 +3181,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveCallingConventionContext(_localctx); enterOuterAlt(_localctx, 17); { - setState(499); + setState(416); match(CALLINGCONVENTION); } break; @@ -3656,20 +3233,20 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(503); + setState(420); _errHandler.sync(this); _la = _input.LA(1); do { { { - setState(502); + setState(419); stmt(); } } - setState(505); + setState(422); _errHandler.sync(this); _la = _input.LA(1); - } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << SEMICOLON) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << LOCAL_RESERVE) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (FORM_MA - 64)) | (1L << (INTRINSIC - 64)) | (1L << (CALLINGCONVENTION - 64)) | (1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (DEFINED - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)))) != 0) ); + } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << SEMICOLON) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << LOCAL_RESERVE) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << INTRINSIC) | (1L << CALLINGCONVENTION) | (1L << IF) | (1L << WHILE) | (1L << DO) | (1L << FOR) | (1L << SWITCH) | (1L << RETURN))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (DEFINED - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)))) != 0) ); } } catch (RecognitionException re) { @@ -4030,16 +3607,16 @@ public class KickCParser extends Parser { enterRule(_localctx, 56, RULE_stmt); int _la; try { - setState(592); + setState(509); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,52,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,50,_ctx) ) { case 1: _localctx = new StmtDeclVarContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(507); + setState(424); declVariables(); - setState(508); + setState(425); match(SEMICOLON); } break; @@ -4047,19 +3624,19 @@ public class KickCParser extends Parser { _localctx = new StmtBlockContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(510); + setState(427); match(CURLY_BEGIN); - setState(512); + setState(429); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << SEMICOLON) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << LOCAL_RESERVE) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (FORM_MA - 64)) | (1L << (INTRINSIC - 64)) | (1L << (CALLINGCONVENTION - 64)) | (1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (DEFINED - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << SEMICOLON) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << LOCAL_RESERVE) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << INTRINSIC) | (1L << CALLINGCONVENTION) | (1L << IF) | (1L << WHILE) | (1L << DO) | (1L << FOR) | (1L << SWITCH) | (1L << RETURN))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (DEFINED - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)))) != 0)) { { - setState(511); + setState(428); stmtSeq(); } } - setState(514); + setState(431); match(CURLY_END); } break; @@ -4067,9 +3644,9 @@ public class KickCParser extends Parser { _localctx = new StmtExprContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(515); + setState(432); commaExpr(0); - setState(516); + setState(433); match(SEMICOLON); } break; @@ -4077,24 +3654,24 @@ public class KickCParser extends Parser { _localctx = new StmtIfElseContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(518); + setState(435); match(IF); - setState(519); + setState(436); match(PAR_BEGIN); - setState(520); + setState(437); commaExpr(0); - setState(521); + setState(438); match(PAR_END); - setState(522); + setState(439); stmt(); - setState(525); + setState(442); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,46,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,44,_ctx) ) { case 1: { - setState(523); + setState(440); match(ELSE); - setState(524); + setState(441); stmt(); } break; @@ -4105,29 +3682,29 @@ public class KickCParser extends Parser { _localctx = new StmtWhileContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(530); + setState(447); _errHandler.sync(this); _la = _input.LA(1); - while (((((_la - 50)) & ~0x3f) == 0 && ((1L << (_la - 50)) & ((1L << (CONST - 50)) | (1L << (EXTERN - 50)) | (1L << (EXPORT - 50)) | (1L << (ALIGN - 50)) | (1L << (INLINE - 50)) | (1L << (VOLATILE - 50)) | (1L << (STATIC - 50)) | (1L << (INTERRUPT - 50)) | (1L << (REGISTER - 50)) | (1L << (LOCAL_RESERVE - 50)) | (1L << (ADDRESS - 50)) | (1L << (ADDRESS_ZEROPAGE - 50)) | (1L << (ADDRESS_MAINMEM - 50)) | (1L << (FORM_SSA - 50)) | (1L << (FORM_MA - 50)) | (1L << (INTRINSIC - 50)) | (1L << (CALLINGCONVENTION - 50)))) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << LOCAL_RESERVE) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << INTRINSIC) | (1L << CALLINGCONVENTION))) != 0)) { { { - setState(527); + setState(444); directive(); } } - setState(532); + setState(449); _errHandler.sync(this); _la = _input.LA(1); } - setState(533); + setState(450); match(WHILE); - setState(534); + setState(451); match(PAR_BEGIN); - setState(535); + setState(452); commaExpr(0); - setState(536); + setState(453); match(PAR_END); - setState(537); + setState(454); stmt(); } break; @@ -4135,33 +3712,33 @@ public class KickCParser extends Parser { _localctx = new StmtDoWhileContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(542); + setState(459); _errHandler.sync(this); _la = _input.LA(1); - while (((((_la - 50)) & ~0x3f) == 0 && ((1L << (_la - 50)) & ((1L << (CONST - 50)) | (1L << (EXTERN - 50)) | (1L << (EXPORT - 50)) | (1L << (ALIGN - 50)) | (1L << (INLINE - 50)) | (1L << (VOLATILE - 50)) | (1L << (STATIC - 50)) | (1L << (INTERRUPT - 50)) | (1L << (REGISTER - 50)) | (1L << (LOCAL_RESERVE - 50)) | (1L << (ADDRESS - 50)) | (1L << (ADDRESS_ZEROPAGE - 50)) | (1L << (ADDRESS_MAINMEM - 50)) | (1L << (FORM_SSA - 50)) | (1L << (FORM_MA - 50)) | (1L << (INTRINSIC - 50)) | (1L << (CALLINGCONVENTION - 50)))) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << LOCAL_RESERVE) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << INTRINSIC) | (1L << CALLINGCONVENTION))) != 0)) { { { - setState(539); + setState(456); directive(); } } - setState(544); + setState(461); _errHandler.sync(this); _la = _input.LA(1); } - setState(545); + setState(462); match(DO); - setState(546); + setState(463); stmt(); - setState(547); + setState(464); match(WHILE); - setState(548); + setState(465); match(PAR_BEGIN); - setState(549); + setState(466); commaExpr(0); - setState(550); + setState(467); match(PAR_END); - setState(551); + setState(468); match(SEMICOLON); } break; @@ -4169,29 +3746,29 @@ public class KickCParser extends Parser { _localctx = new StmtForContext(_localctx); enterOuterAlt(_localctx, 7); { - setState(556); + setState(473); _errHandler.sync(this); _la = _input.LA(1); - while (((((_la - 50)) & ~0x3f) == 0 && ((1L << (_la - 50)) & ((1L << (CONST - 50)) | (1L << (EXTERN - 50)) | (1L << (EXPORT - 50)) | (1L << (ALIGN - 50)) | (1L << (INLINE - 50)) | (1L << (VOLATILE - 50)) | (1L << (STATIC - 50)) | (1L << (INTERRUPT - 50)) | (1L << (REGISTER - 50)) | (1L << (LOCAL_RESERVE - 50)) | (1L << (ADDRESS - 50)) | (1L << (ADDRESS_ZEROPAGE - 50)) | (1L << (ADDRESS_MAINMEM - 50)) | (1L << (FORM_SSA - 50)) | (1L << (FORM_MA - 50)) | (1L << (INTRINSIC - 50)) | (1L << (CALLINGCONVENTION - 50)))) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << LOCAL_RESERVE) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << INTRINSIC) | (1L << CALLINGCONVENTION))) != 0)) { { { - setState(553); + setState(470); directive(); } } - setState(558); + setState(475); _errHandler.sync(this); _la = _input.LA(1); } - setState(559); + setState(476); match(FOR); - setState(560); + setState(477); match(PAR_BEGIN); - setState(561); + setState(478); forLoop(); - setState(562); + setState(479); match(PAR_END); - setState(563); + setState(480); stmt(); } break; @@ -4199,19 +3776,19 @@ public class KickCParser extends Parser { _localctx = new StmtSwitchContext(_localctx); enterOuterAlt(_localctx, 8); { - setState(565); + setState(482); match(SWITCH); - setState(566); + setState(483); match(PAR_BEGIN); - setState(567); + setState(484); commaExpr(0); - setState(568); + setState(485); match(PAR_END); - setState(569); + setState(486); match(CURLY_BEGIN); - setState(570); + setState(487); switchCases(); - setState(571); + setState(488); match(CURLY_END); } break; @@ -4219,19 +3796,19 @@ public class KickCParser extends Parser { _localctx = new StmtReturnContext(_localctx); enterOuterAlt(_localctx, 9); { - setState(573); + setState(490); match(RETURN); - setState(575); + setState(492); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 84)) & ~0x3f) == 0 && ((1L << (_la - 84)) & ((1L << (SIZEOF - 84)) | (1L << (TYPEID - 84)) | (1L << (DEFINED - 84)) | (1L << (LOGIC_NOT - 84)) | (1L << (BOOLEAN - 84)) | (1L << (NUMBER - 84)) | (1L << (NAME - 84)) | (1L << (STRING - 84)) | (1L << (CHAR - 84)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 71)) & ~0x3f) == 0 && ((1L << (_la - 71)) & ((1L << (SIZEOF - 71)) | (1L << (TYPEID - 71)) | (1L << (DEFINED - 71)) | (1L << (LOGIC_NOT - 71)) | (1L << (BOOLEAN - 71)) | (1L << (NUMBER - 71)) | (1L << (NAME - 71)) | (1L << (STRING - 71)) | (1L << (CHAR - 71)))) != 0)) { { - setState(574); + setState(491); commaExpr(0); } } - setState(577); + setState(494); match(SEMICOLON); } break; @@ -4239,9 +3816,9 @@ public class KickCParser extends Parser { _localctx = new StmtBreakContext(_localctx); enterOuterAlt(_localctx, 10); { - setState(578); + setState(495); match(BREAK); - setState(579); + setState(496); match(SEMICOLON); } break; @@ -4249,9 +3826,9 @@ public class KickCParser extends Parser { _localctx = new StmtContinueContext(_localctx); enterOuterAlt(_localctx, 11); { - setState(580); + setState(497); match(CONTINUE); - setState(581); + setState(498); match(SEMICOLON); } break; @@ -4259,23 +3836,23 @@ public class KickCParser extends Parser { _localctx = new StmtAsmContext(_localctx); enterOuterAlt(_localctx, 12); { - setState(582); + setState(499); match(ASM); - setState(584); + setState(501); _errHandler.sync(this); _la = _input.LA(1); if (_la==PAR_BEGIN) { { - setState(583); + setState(500); asmDirectives(); } } - setState(586); + setState(503); match(CURLY_BEGIN); - setState(587); + setState(504); asmLines(); - setState(588); + setState(505); match(ASM_CURLY_END); } break; @@ -4283,7 +3860,7 @@ public class KickCParser extends Parser { _localctx = new StmtDeclKasmContext(_localctx); enterOuterAlt(_localctx, 13); { - setState(590); + setState(507); kasmContent(); } break; @@ -4291,7 +3868,7 @@ public class KickCParser extends Parser { _localctx = new StmtEmptyContext(_localctx); enterOuterAlt(_localctx, 14); { - setState(591); + setState(508); match(SEMICOLON); } break; @@ -4346,35 +3923,35 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(595); + setState(512); _errHandler.sync(this); _la = _input.LA(1); do { { { - setState(594); + setState(511); switchCase(); } } - setState(597); + setState(514); _errHandler.sync(this); _la = _input.LA(1); } while ( _la==CASE ); - setState(604); + setState(521); _errHandler.sync(this); _la = _input.LA(1); if (_la==DEFAULT) { { - setState(599); + setState(516); match(DEFAULT); - setState(600); + setState(517); match(COLON); - setState(602); + setState(519); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << SEMICOLON) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << LOCAL_RESERVE) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (FORM_MA - 64)) | (1L << (INTRINSIC - 64)) | (1L << (CALLINGCONVENTION - 64)) | (1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (DEFINED - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << SEMICOLON) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << LOCAL_RESERVE) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << INTRINSIC) | (1L << CALLINGCONVENTION) | (1L << IF) | (1L << WHILE) | (1L << DO) | (1L << FOR) | (1L << SWITCH) | (1L << RETURN))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (DEFINED - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)))) != 0)) { { - setState(601); + setState(518); stmtSeq(); } } @@ -4430,18 +4007,18 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(606); + setState(523); match(CASE); - setState(607); + setState(524); expr(0); - setState(608); + setState(525); match(COLON); - setState(610); + setState(527); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << SEMICOLON) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << LOCAL_RESERVE) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (FORM_MA - 64)) | (1L << (INTRINSIC - 64)) | (1L << (CALLINGCONVENTION - 64)) | (1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (DEFINED - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << SEMICOLON) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << LOCAL_RESERVE) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << INTRINSIC) | (1L << CALLINGCONVENTION) | (1L << IF) | (1L << WHILE) | (1L << DO) | (1L << FOR) | (1L << SWITCH) | (1L << RETURN))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (DEFINED - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)))) != 0)) { { - setState(609); + setState(526); stmtSeq(); } } @@ -4539,35 +4116,35 @@ public class KickCParser extends Parser { enterRule(_localctx, 62, RULE_forLoop); int _la; try { - setState(636); + setState(553); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,61,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,59,_ctx) ) { case 1: _localctx = new ForClassicContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(612); + setState(529); forClassicInit(); - setState(613); + setState(530); match(SEMICOLON); - setState(615); + setState(532); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 84)) & ~0x3f) == 0 && ((1L << (_la - 84)) & ((1L << (SIZEOF - 84)) | (1L << (TYPEID - 84)) | (1L << (DEFINED - 84)) | (1L << (LOGIC_NOT - 84)) | (1L << (BOOLEAN - 84)) | (1L << (NUMBER - 84)) | (1L << (NAME - 84)) | (1L << (STRING - 84)) | (1L << (CHAR - 84)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 71)) & ~0x3f) == 0 && ((1L << (_la - 71)) & ((1L << (SIZEOF - 71)) | (1L << (TYPEID - 71)) | (1L << (DEFINED - 71)) | (1L << (LOGIC_NOT - 71)) | (1L << (BOOLEAN - 71)) | (1L << (NUMBER - 71)) | (1L << (NAME - 71)) | (1L << (STRING - 71)) | (1L << (CHAR - 71)))) != 0)) { { - setState(614); + setState(531); forClassicCondition(); } } - setState(617); + setState(534); match(SEMICOLON); - setState(619); + setState(536); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 84)) & ~0x3f) == 0 && ((1L << (_la - 84)) & ((1L << (SIZEOF - 84)) | (1L << (TYPEID - 84)) | (1L << (DEFINED - 84)) | (1L << (LOGIC_NOT - 84)) | (1L << (BOOLEAN - 84)) | (1L << (NUMBER - 84)) | (1L << (NAME - 84)) | (1L << (STRING - 84)) | (1L << (CHAR - 84)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 71)) & ~0x3f) == 0 && ((1L << (_la - 71)) & ((1L << (SIZEOF - 71)) | (1L << (TYPEID - 71)) | (1L << (DEFINED - 71)) | (1L << (LOGIC_NOT - 71)) | (1L << (BOOLEAN - 71)) | (1L << (NUMBER - 71)) | (1L << (NAME - 71)) | (1L << (STRING - 71)) | (1L << (CHAR - 71)))) != 0)) { { - setState(618); + setState(535); commaExpr(0); } } @@ -4578,39 +4155,39 @@ public class KickCParser extends Parser { _localctx = new ForRangeContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(628); + setState(545); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << LOCAL_RESERVE) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (FORM_MA - 64)) | (1L << (INTRINSIC - 64)) | (1L << (CALLINGCONVENTION - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << LOCAL_RESERVE) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << INTRINSIC) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 69)) & ~0x3f) == 0 && ((1L << (_la - 69)) & ((1L << (STRUCT - 69)) | (1L << (ENUM - 69)) | (1L << (SIGNEDNESS - 69)) | (1L << (SIMPLETYPE - 69)))) != 0)) { { - setState(621); + setState(538); declType(); - setState(625); + setState(542); _errHandler.sync(this); _la = _input.LA(1); while (_la==ASTERISK) { { { - setState(622); + setState(539); declPointer(); } } - setState(627); + setState(544); _errHandler.sync(this); _la = _input.LA(1); } } } - setState(630); + setState(547); match(NAME); - setState(631); + setState(548); match(COLON); - setState(632); + setState(549); expr(0); - setState(633); + setState(550); match(RANGE); - setState(634); + setState(551); expr(0); } break; @@ -4682,19 +4259,19 @@ public class KickCParser extends Parser { enterRule(_localctx, 64, RULE_forClassicInit); int _la; try { - setState(642); + setState(559); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,63,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,61,_ctx) ) { case 1: _localctx = new ForClassicInitDeclContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(639); + setState(556); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << LOCAL_RESERVE) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (FORM_MA - 64)) | (1L << (INTRINSIC - 64)) | (1L << (CALLINGCONVENTION - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << LOCAL_RESERVE) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << INTRINSIC) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 69)) & ~0x3f) == 0 && ((1L << (_la - 69)) & ((1L << (STRUCT - 69)) | (1L << (ENUM - 69)) | (1L << (SIGNEDNESS - 69)) | (1L << (SIMPLETYPE - 69)))) != 0)) { { - setState(638); + setState(555); declVariables(); } } @@ -4705,7 +4282,7 @@ public class KickCParser extends Parser { _localctx = new ForClassicInitExprContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(641); + setState(558); commaExpr(0); } break; @@ -4751,7 +4328,7 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(644); + setState(561); commaExpr(0); } } @@ -4840,13 +4417,13 @@ public class KickCParser extends Parser { _ctx = _localctx; _prevctx = _localctx; - setState(647); + setState(564); expr(0); } _ctx.stop = _input.LT(-1); - setState(654); + setState(571); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,64,_ctx); + _alt = getInterpreter().adaptivePredict(_input,62,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); @@ -4855,18 +4432,18 @@ public class KickCParser extends Parser { { _localctx = new CommaSimpleContext(new CommaExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_commaExpr); - setState(649); + setState(566); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(650); + setState(567); match(COMMA); - setState(651); + setState(568); expr(0); } } } - setState(656); + setState(573); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,64,_ctx); + _alt = getInterpreter().adaptivePredict(_input,62,_ctx); } } } @@ -5428,20 +5005,20 @@ public class KickCParser extends Parser { int _alt; enterOuterAlt(_localctx, 1); { - setState(722); + setState(639); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,72,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,70,_ctx) ) { case 1: { _localctx = new ExprParContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(658); + setState(575); match(PAR_BEGIN); - setState(659); + setState(576); commaExpr(0); - setState(660); + setState(577); match(PAR_END); } break; @@ -5450,27 +5027,27 @@ public class KickCParser extends Parser { _localctx = new ExprSizeOfContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(662); + setState(579); match(SIZEOF); - setState(663); + setState(580); match(PAR_BEGIN); - setState(666); + setState(583); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,65,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,63,_ctx) ) { case 1: { - setState(664); + setState(581); expr(0); } break; case 2: { - setState(665); + setState(582); typeSpecifier(0); } break; } - setState(668); + setState(585); match(PAR_END); } break; @@ -5479,27 +5056,27 @@ public class KickCParser extends Parser { _localctx = new ExprTypeIdContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(670); + setState(587); match(TYPEID); - setState(671); + setState(588); match(PAR_BEGIN); - setState(674); + setState(591); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,66,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,64,_ctx) ) { case 1: { - setState(672); + setState(589); expr(0); } break; case 2: { - setState(673); + setState(590); typeSpecifier(0); } break; } - setState(676); + setState(593); match(PAR_END); } break; @@ -5508,26 +5085,26 @@ public class KickCParser extends Parser { _localctx = new ExprDefinedContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(678); + setState(595); match(DEFINED); - setState(680); + setState(597); _errHandler.sync(this); _la = _input.LA(1); if (_la==PAR_BEGIN) { { - setState(679); + setState(596); match(PAR_BEGIN); } } - setState(682); + setState(599); match(NAME); - setState(684); + setState(601); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,68,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,66,_ctx) ) { case 1: { - setState(683); + setState(600); match(PAR_END); } break; @@ -5539,13 +5116,13 @@ public class KickCParser extends Parser { _localctx = new ExprCastContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(686); + setState(603); match(PAR_BEGIN); - setState(687); + setState(604); typeSpecifier(0); - setState(688); + setState(605); match(PAR_END); - setState(689); + setState(606); expr(24); } break; @@ -5554,7 +5131,7 @@ public class KickCParser extends Parser { _localctx = new ExprPreModContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(691); + setState(608); _la = _input.LA(1); if ( !(_la==INC || _la==DEC) ) { _errHandler.recoverInline(this); @@ -5564,7 +5141,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(692); + setState(609); expr(23); } break; @@ -5573,9 +5150,9 @@ public class KickCParser extends Parser { _localctx = new ExprPtrContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(693); + setState(610); match(ASTERISK); - setState(694); + setState(611); expr(21); } break; @@ -5584,7 +5161,7 @@ public class KickCParser extends Parser { _localctx = new ExprUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(695); + setState(612); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << PLUS) | (1L << MINUS) | (1L << AND) | (1L << BIT_NOT))) != 0) || _la==LOGIC_NOT) ) { _errHandler.recoverInline(this); @@ -5594,7 +5171,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(696); + setState(613); expr(20); } break; @@ -5603,7 +5180,7 @@ public class KickCParser extends Parser { _localctx = new ExprUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(697); + setState(614); _la = _input.LA(1); if ( !(_la==LESS_THAN || _la==GREATER_THAN) ) { _errHandler.recoverInline(this); @@ -5613,7 +5190,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(698); + setState(615); expr(16); } break; @@ -5622,39 +5199,39 @@ public class KickCParser extends Parser { _localctx = new InitListContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(699); + setState(616); match(CURLY_BEGIN); - setState(700); + setState(617); expr(0); - setState(705); + setState(622); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,69,_ctx); + _alt = getInterpreter().adaptivePredict(_input,67,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(701); + setState(618); match(COMMA); - setState(702); + setState(619); expr(0); } } } - setState(707); + setState(624); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,69,_ctx); + _alt = getInterpreter().adaptivePredict(_input,67,_ctx); } - setState(709); + setState(626); _errHandler.sync(this); _la = _input.LA(1); if (_la==COMMA) { { - setState(708); + setState(625); match(COMMA); } } - setState(711); + setState(628); match(CURLY_END); } break; @@ -5663,7 +5240,7 @@ public class KickCParser extends Parser { _localctx = new ExprIdContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(713); + setState(630); match(NAME); } break; @@ -5672,7 +5249,7 @@ public class KickCParser extends Parser { _localctx = new ExprNumberContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(714); + setState(631); match(NUMBER); } break; @@ -5681,7 +5258,7 @@ public class KickCParser extends Parser { _localctx = new ExprStringContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(716); + setState(633); _errHandler.sync(this); _alt = 1; do { @@ -5689,7 +5266,7 @@ public class KickCParser extends Parser { case 1: { { - setState(715); + setState(632); match(STRING); } } @@ -5697,9 +5274,9 @@ public class KickCParser extends Parser { default: throw new NoViableAltException(this); } - setState(718); + setState(635); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,71,_ctx); + _alt = getInterpreter().adaptivePredict(_input,69,_ctx); } while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ); } break; @@ -5708,7 +5285,7 @@ public class KickCParser extends Parser { _localctx = new ExprCharContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(720); + setState(637); match(CHAR); } break; @@ -5717,30 +5294,30 @@ public class KickCParser extends Parser { _localctx = new ExprBoolContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(721); + setState(638); match(BOOLEAN); } break; } _ctx.stop = _input.LT(-1); - setState(784); + setState(701); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,75,_ctx); + _alt = getInterpreter().adaptivePredict(_input,73,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(782); + setState(699); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,74,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,72,_ctx) ) { case 1: { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(724); + setState(641); if (!(precpred(_ctx, 19))) throw new FailedPredicateException(this, "precpred(_ctx, 19)"); - setState(725); + setState(642); _la = _input.LA(1); if ( !(_la==SHIFT_LEFT || _la==SHIFT_RIGHT) ) { _errHandler.recoverInline(this); @@ -5750,7 +5327,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(726); + setState(643); expr(20); } break; @@ -5758,9 +5335,9 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(727); + setState(644); if (!(precpred(_ctx, 18))) throw new FailedPredicateException(this, "precpred(_ctx, 18)"); - setState(728); + setState(645); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << ASTERISK) | (1L << DIVIDE) | (1L << MODULO))) != 0)) ) { _errHandler.recoverInline(this); @@ -5770,7 +5347,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(729); + setState(646); expr(19); } break; @@ -5778,9 +5355,9 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(730); + setState(647); if (!(precpred(_ctx, 17))) throw new FailedPredicateException(this, "precpred(_ctx, 17)"); - setState(731); + setState(648); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -5790,7 +5367,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(732); + setState(649); expr(18); } break; @@ -5798,9 +5375,9 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(733); + setState(650); if (!(precpred(_ctx, 15))) throw new FailedPredicateException(this, "precpred(_ctx, 15)"); - setState(734); + setState(651); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << EQUAL) | (1L << NOT_EQUAL) | (1L << LESS_THAN) | (1L << LESS_THAN_EQUAL) | (1L << GREATER_THAN_EQUAL) | (1L << GREATER_THAN))) != 0)) ) { _errHandler.recoverInline(this); @@ -5810,7 +5387,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(735); + setState(652); expr(16); } break; @@ -5818,13 +5395,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(736); + setState(653); if (!(precpred(_ctx, 14))) throw new FailedPredicateException(this, "precpred(_ctx, 14)"); { - setState(737); + setState(654); match(AND); } - setState(738); + setState(655); expr(15); } break; @@ -5832,13 +5409,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(739); + setState(656); if (!(precpred(_ctx, 13))) throw new FailedPredicateException(this, "precpred(_ctx, 13)"); { - setState(740); + setState(657); match(BIT_XOR); } - setState(741); + setState(658); expr(14); } break; @@ -5846,13 +5423,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(742); + setState(659); if (!(precpred(_ctx, 12))) throw new FailedPredicateException(this, "precpred(_ctx, 12)"); { - setState(743); + setState(660); match(BIT_OR); } - setState(744); + setState(661); expr(13); } break; @@ -5860,13 +5437,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(745); + setState(662); if (!(precpred(_ctx, 11))) throw new FailedPredicateException(this, "precpred(_ctx, 11)"); { - setState(746); + setState(663); match(LOGIC_AND); } - setState(747); + setState(664); expr(12); } break; @@ -5874,13 +5451,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(748); + setState(665); if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)"); { - setState(749); + setState(666); match(LOGIC_OR); } - setState(750); + setState(667); expr(11); } break; @@ -5888,15 +5465,15 @@ public class KickCParser extends Parser { { _localctx = new ExprTernaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(751); + setState(668); if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)"); - setState(752); + setState(669); match(CONDITION); - setState(753); + setState(670); expr(0); - setState(754); + setState(671); match(COLON); - setState(755); + setState(672); expr(10); } break; @@ -5904,11 +5481,11 @@ public class KickCParser extends Parser { { _localctx = new ExprAssignmentContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(757); + setState(674); if (!(precpred(_ctx, 8))) throw new FailedPredicateException(this, "precpred(_ctx, 8)"); - setState(758); + setState(675); match(ASSIGN); - setState(759); + setState(676); expr(8); } break; @@ -5916,11 +5493,11 @@ public class KickCParser extends Parser { { _localctx = new ExprAssignmentCompoundContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(760); + setState(677); if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)"); - setState(761); + setState(678); match(ASSIGN_COMPOUND); - setState(762); + setState(679); expr(7); } break; @@ -5928,11 +5505,11 @@ public class KickCParser extends Parser { { _localctx = new ExprDotContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(763); + setState(680); if (!(precpred(_ctx, 31))) throw new FailedPredicateException(this, "precpred(_ctx, 31)"); - setState(764); + setState(681); match(DOT); - setState(765); + setState(682); match(NAME); } break; @@ -5940,11 +5517,11 @@ public class KickCParser extends Parser { { _localctx = new ExprArrowContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(766); + setState(683); if (!(precpred(_ctx, 30))) throw new FailedPredicateException(this, "precpred(_ctx, 30)"); - setState(767); + setState(684); match(ARROW); - setState(768); + setState(685); match(NAME); } break; @@ -5952,21 +5529,21 @@ public class KickCParser extends Parser { { _localctx = new ExprCallContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(769); + setState(686); if (!(precpred(_ctx, 29))) throw new FailedPredicateException(this, "precpred(_ctx, 29)"); - setState(770); + setState(687); match(PAR_BEGIN); - setState(772); + setState(689); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 84)) & ~0x3f) == 0 && ((1L << (_la - 84)) & ((1L << (SIZEOF - 84)) | (1L << (TYPEID - 84)) | (1L << (DEFINED - 84)) | (1L << (LOGIC_NOT - 84)) | (1L << (BOOLEAN - 84)) | (1L << (NUMBER - 84)) | (1L << (NAME - 84)) | (1L << (STRING - 84)) | (1L << (CHAR - 84)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 71)) & ~0x3f) == 0 && ((1L << (_la - 71)) & ((1L << (SIZEOF - 71)) | (1L << (TYPEID - 71)) | (1L << (DEFINED - 71)) | (1L << (LOGIC_NOT - 71)) | (1L << (BOOLEAN - 71)) | (1L << (NUMBER - 71)) | (1L << (NAME - 71)) | (1L << (STRING - 71)) | (1L << (CHAR - 71)))) != 0)) { { - setState(771); + setState(688); parameterList(); } } - setState(774); + setState(691); match(PAR_END); } break; @@ -5974,13 +5551,13 @@ public class KickCParser extends Parser { { _localctx = new ExprArrayContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(775); + setState(692); if (!(precpred(_ctx, 25))) throw new FailedPredicateException(this, "precpred(_ctx, 25)"); - setState(776); + setState(693); match(BRACKET_BEGIN); - setState(777); + setState(694); commaExpr(0); - setState(778); + setState(695); match(BRACKET_END); } break; @@ -5988,9 +5565,9 @@ public class KickCParser extends Parser { { _localctx = new ExprPostModContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(780); + setState(697); if (!(precpred(_ctx, 22))) throw new FailedPredicateException(this, "precpred(_ctx, 22)"); - setState(781); + setState(698); _la = _input.LA(1); if ( !(_la==INC || _la==DEC) ) { _errHandler.recoverInline(this); @@ -6005,9 +5582,9 @@ public class KickCParser extends Parser { } } } - setState(786); + setState(703); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,75,_ctx); + _alt = getInterpreter().adaptivePredict(_input,73,_ctx); } } } @@ -6059,21 +5636,21 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(787); + setState(704); expr(0); - setState(792); + setState(709); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(788); + setState(705); match(COMMA); - setState(789); + setState(706); expr(0); } } - setState(794); + setState(711); _errHandler.sync(this); _la = _input.LA(1); } @@ -6122,19 +5699,19 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(795); + setState(712); match(KICKASM); - setState(797); + setState(714); _errHandler.sync(this); _la = _input.LA(1); if (_la==PAR_BEGIN) { { - setState(796); + setState(713); asmDirectives(); } } - setState(799); + setState(716); match(KICKASM_BODY); } } @@ -6188,27 +5765,27 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(801); + setState(718); match(PAR_BEGIN); - setState(802); + setState(719); asmDirective(); - setState(807); + setState(724); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(803); + setState(720); match(COMMA); - setState(804); + setState(721); asmDirective(); } } - setState(809); + setState(726); _errHandler.sync(this); _la = _input.LA(1); } - setState(810); + setState(727); match(PAR_END); } } @@ -6333,16 +5910,16 @@ public class KickCParser extends Parser { AsmDirectiveContext _localctx = new AsmDirectiveContext(_ctx, getState()); enterRule(_localctx, 78, RULE_asmDirective); try { - setState(822); + setState(739); _errHandler.sync(this); switch (_input.LA(1)) { case RESOURCE: _localctx = new AsmDirectiveResourceContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(812); + setState(729); match(RESOURCE); - setState(813); + setState(730); match(STRING); } break; @@ -6350,9 +5927,9 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveUsesContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(814); + setState(731); match(USES); - setState(815); + setState(732); match(NAME); } break; @@ -6360,9 +5937,9 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveClobberContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(816); + setState(733); match(CLOBBERS); - setState(817); + setState(734); match(STRING); } break; @@ -6370,9 +5947,9 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveBytesContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(818); + setState(735); match(BYTES); - setState(819); + setState(736); expr(0); } break; @@ -6380,9 +5957,9 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveCyclesContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(820); + setState(737); match(CYCLES); - setState(821); + setState(738); expr(0); } break; @@ -6434,17 +6011,17 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(827); + setState(744); _errHandler.sync(this); _la = _input.LA(1); - while (((((_la - 126)) & ~0x3f) == 0 && ((1L << (_la - 126)) & ((1L << (ASM_BYTE - 126)) | (1L << (ASM_MNEMONIC - 126)) | (1L << (ASM_MULTI_NAME - 126)) | (1L << (ASM_NAME - 126)))) != 0)) { + while (((((_la - 113)) & ~0x3f) == 0 && ((1L << (_la - 113)) & ((1L << (ASM_BYTE - 113)) | (1L << (ASM_MNEMONIC - 113)) | (1L << (ASM_MULTI_NAME - 113)) | (1L << (ASM_NAME - 113)))) != 0)) { { { - setState(824); + setState(741); asmLine(); } } - setState(829); + setState(746); _errHandler.sync(this); _la = _input.LA(1); } @@ -6494,28 +6071,28 @@ public class KickCParser extends Parser { AsmLineContext _localctx = new AsmLineContext(_ctx, getState()); enterRule(_localctx, 82, RULE_asmLine); try { - setState(833); + setState(750); _errHandler.sync(this); switch (_input.LA(1)) { case ASM_MULTI_NAME: case ASM_NAME: enterOuterAlt(_localctx, 1); { - setState(830); + setState(747); asmLabel(); } break; case ASM_MNEMONIC: enterOuterAlt(_localctx, 2); { - setState(831); + setState(748); asmInstruction(); } break; case ASM_BYTE: enterOuterAlt(_localctx, 3); { - setState(832); + setState(749); asmBytes(); } break; @@ -6586,16 +6163,16 @@ public class KickCParser extends Parser { AsmLabelContext _localctx = new AsmLabelContext(_ctx, getState()); enterRule(_localctx, 84, RULE_asmLabel); try { - setState(839); + setState(756); _errHandler.sync(this); switch (_input.LA(1)) { case ASM_NAME: _localctx = new AsmLabelNameContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(835); + setState(752); match(ASM_NAME); - setState(836); + setState(753); match(ASM_COLON); } break; @@ -6603,9 +6180,9 @@ public class KickCParser extends Parser { _localctx = new AsmLabelMultiContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(837); + setState(754); match(ASM_MULTI_NAME); - setState(838); + setState(755); match(ASM_COLON); } break; @@ -6654,14 +6231,14 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(841); + setState(758); match(ASM_MNEMONIC); - setState(843); + setState(760); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,83,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,81,_ctx) ) { case 1: { - setState(842); + setState(759); asmParamMode(); } break; @@ -6717,23 +6294,23 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(845); + setState(762); match(ASM_BYTE); - setState(846); + setState(763); asmExpr(0); - setState(851); + setState(768); _errHandler.sync(this); _la = _input.LA(1); while (_la==ASM_COMMA) { { { - setState(847); + setState(764); match(ASM_COMMA); - setState(848); + setState(765); asmExpr(0); } } - setState(853); + setState(770); _errHandler.sync(this); _la = _input.LA(1); } @@ -6980,14 +6557,14 @@ public class KickCParser extends Parser { AsmParamModeContext _localctx = new AsmParamModeContext(_ctx, getState()); enterRule(_localctx, 90, RULE_asmParamMode); try { - setState(899); + setState(816); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,85,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,83,_ctx) ) { case 1: _localctx = new AsmModeAbsContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(854); + setState(771); asmExpr(0); } break; @@ -6995,9 +6572,9 @@ public class KickCParser extends Parser { _localctx = new AsmModeImmContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(855); + setState(772); match(ASM_IMM); - setState(856); + setState(773); asmExpr(0); } break; @@ -7005,11 +6582,11 @@ public class KickCParser extends Parser { _localctx = new AsmModeAbsXYContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(857); + setState(774); asmExpr(0); - setState(858); + setState(775); match(ASM_COMMA); - setState(859); + setState(776); asmExpr(0); } break; @@ -7017,15 +6594,15 @@ public class KickCParser extends Parser { _localctx = new AsmModeIndIdxXYContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(861); + setState(778); match(ASM_PAR_BEGIN); - setState(862); + setState(779); asmExpr(0); - setState(863); + setState(780); match(ASM_PAR_END); - setState(864); + setState(781); match(ASM_COMMA); - setState(865); + setState(782); match(ASM_NAME); } break; @@ -7033,19 +6610,19 @@ public class KickCParser extends Parser { _localctx = new AsmModeIndLongIdxXYContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(867); + setState(784); match(ASM_PAR_BEGIN); - setState(868); + setState(785); match(ASM_PAR_BEGIN); - setState(869); + setState(786); asmExpr(0); - setState(870); + setState(787); match(ASM_PAR_END); - setState(871); + setState(788); match(ASM_PAR_END); - setState(872); + setState(789); match(ASM_COMMA); - setState(873); + setState(790); match(ASM_NAME); } break; @@ -7053,19 +6630,19 @@ public class KickCParser extends Parser { _localctx = new AsmModeSPIndIdxContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(875); + setState(792); match(ASM_PAR_BEGIN); - setState(876); + setState(793); asmExpr(0); - setState(877); + setState(794); match(ASM_COMMA); - setState(878); + setState(795); match(ASM_NAME); - setState(879); + setState(796); match(ASM_PAR_END); - setState(880); + setState(797); match(ASM_COMMA); - setState(881); + setState(798); match(ASM_NAME); } break; @@ -7073,15 +6650,15 @@ public class KickCParser extends Parser { _localctx = new AsmModeIdxIndXYContext(_localctx); enterOuterAlt(_localctx, 7); { - setState(883); + setState(800); match(ASM_PAR_BEGIN); - setState(884); + setState(801); asmExpr(0); - setState(885); + setState(802); match(ASM_COMMA); - setState(886); + setState(803); match(ASM_NAME); - setState(887); + setState(804); match(ASM_PAR_END); } break; @@ -7089,11 +6666,11 @@ public class KickCParser extends Parser { _localctx = new AsmModeIndContext(_localctx); enterOuterAlt(_localctx, 8); { - setState(889); + setState(806); match(ASM_PAR_BEGIN); - setState(890); + setState(807); asmExpr(0); - setState(891); + setState(808); match(ASM_PAR_END); } break; @@ -7101,15 +6678,15 @@ public class KickCParser extends Parser { _localctx = new AsmModeIndLongContext(_localctx); enterOuterAlt(_localctx, 9); { - setState(893); + setState(810); match(ASM_PAR_BEGIN); - setState(894); + setState(811); match(ASM_PAR_BEGIN); - setState(895); + setState(812); asmExpr(0); - setState(896); + setState(813); match(ASM_PAR_END); - setState(897); + setState(814); match(ASM_PAR_END); } break; @@ -7314,7 +6891,7 @@ public class KickCParser extends Parser { int _alt; enterOuterAlt(_localctx, 1); { - setState(915); + setState(832); _errHandler.sync(this); switch (_input.LA(1)) { case ASM_BRACKET_BEGIN: @@ -7323,11 +6900,11 @@ public class KickCParser extends Parser { _ctx = _localctx; _prevctx = _localctx; - setState(902); + setState(819); match(ASM_BRACKET_BEGIN); - setState(903); + setState(820); asmExpr(0); - setState(904); + setState(821); match(ASM_BRACKET_END); } break; @@ -7339,9 +6916,9 @@ public class KickCParser extends Parser { _localctx = new AsmExprUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(906); + setState(823); _la = _input.LA(1); - if ( !(((((_la - 138)) & ~0x3f) == 0 && ((1L << (_la - 138)) & ((1L << (ASM_PLUS - 138)) | (1L << (ASM_MINUS - 138)) | (1L << (ASM_LESS_THAN - 138)) | (1L << (ASM_GREATER_THAN - 138)))) != 0)) ) { + if ( !(((((_la - 125)) & ~0x3f) == 0 && ((1L << (_la - 125)) & ((1L << (ASM_PLUS - 125)) | (1L << (ASM_MINUS - 125)) | (1L << (ASM_LESS_THAN - 125)) | (1L << (ASM_GREATER_THAN - 125)))) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -7349,7 +6926,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(907); + setState(824); asmExpr(8); } break; @@ -7358,7 +6935,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprLabelContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(908); + setState(825); match(ASM_NAME); } break; @@ -7367,7 +6944,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprLabelRelContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(909); + setState(826); match(ASM_MULTI_REL); } break; @@ -7376,11 +6953,11 @@ public class KickCParser extends Parser { _localctx = new AsmExprReplaceContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(910); + setState(827); match(ASM_CURLY_BEGIN); - setState(911); + setState(828); match(ASM_NAME); - setState(912); + setState(829); match(ASM_CURLY_END); } break; @@ -7389,7 +6966,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprIntContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(913); + setState(830); match(ASM_NUMBER); } break; @@ -7398,7 +6975,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprCharContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(914); + setState(831); match(ASM_CHAR); } break; @@ -7406,28 +6983,28 @@ public class KickCParser extends Parser { throw new NoViableAltException(this); } _ctx.stop = _input.LT(-1); - setState(931); + setState(848); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,88,_ctx); + _alt = getInterpreter().adaptivePredict(_input,86,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(929); + setState(846); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,87,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,85,_ctx) ) { case 1: { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(917); + setState(834); if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)"); { - setState(918); + setState(835); match(ASM_DOT); } - setState(919); + setState(836); asmExpr(11); } break; @@ -7435,9 +7012,9 @@ public class KickCParser extends Parser { { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(920); + setState(837); if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)"); - setState(921); + setState(838); _la = _input.LA(1); if ( !(_la==ASM_SHIFT_LEFT || _la==ASM_SHIFT_RIGHT) ) { _errHandler.recoverInline(this); @@ -7447,7 +7024,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(922); + setState(839); asmExpr(10); } break; @@ -7455,9 +7032,9 @@ public class KickCParser extends Parser { { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(923); + setState(840); if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)"); - setState(924); + setState(841); _la = _input.LA(1); if ( !(_la==ASM_MULTIPLY || _la==ASM_DIVIDE) ) { _errHandler.recoverInline(this); @@ -7467,7 +7044,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(925); + setState(842); asmExpr(8); } break; @@ -7475,9 +7052,9 @@ public class KickCParser extends Parser { { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(926); + setState(843); if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)"); - setState(927); + setState(844); _la = _input.LA(1); if ( !(_la==ASM_PLUS || _la==ASM_MINUS) ) { _errHandler.recoverInline(this); @@ -7487,16 +7064,16 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(928); + setState(845); asmExpr(7); } break; } } } - setState(933); + setState(850); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,88,_ctx); + _alt = getInterpreter().adaptivePredict(_input,86,_ctx); } } } @@ -7623,7 +7200,7 @@ public class KickCParser extends Parser { } public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\u00a8\u03a9\4\2\t"+ + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\u009b\u0356\4\2\t"+ "\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4\13"+ "\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22\t\22"+ "\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31\t\31"+ @@ -7651,349 +7228,315 @@ public class KickCParser extends Parser { "\n\26\3\27\3\27\5\27\u0147\n\27\3\27\3\27\3\30\3\30\3\30\7\30\u014e\n"+ "\30\f\30\16\30\u0151\13\30\3\31\3\31\7\31\u0155\n\31\f\31\16\31\u0158"+ "\13\31\3\31\3\31\3\31\3\31\5\31\u015e\n\31\3\32\3\32\3\32\3\32\3\32\3"+ - "\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3"+ - "\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3"+ - "\32\3\32\3\32\3\32\7\32\u0185\n\32\f\32\16\32\u0188\13\32\3\32\3\32\3"+ - "\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3"+ - "\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3"+ - "\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\7\32\u01b1\n\32\f\32\16\32"+ - "\u01b4\13\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\7\32\u01be\n\32\f"+ - "\32\16\32\u01c1\13\32\3\32\5\32\u01c4\n\32\3\33\3\33\3\33\5\33\u01c9\n"+ - "\33\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\5\34\u01d4\n\34\3\34"+ - "\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34"+ - "\3\34\3\34\3\34\5\34\u01e8\n\34\3\34\3\34\3\34\3\34\3\34\7\34\u01ef\n"+ - "\34\f\34\16\34\u01f2\13\34\3\34\3\34\3\34\5\34\u01f7\n\34\3\35\6\35\u01fa"+ - "\n\35\r\35\16\35\u01fb\3\36\3\36\3\36\3\36\3\36\5\36\u0203\n\36\3\36\3"+ - "\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\5\36\u0210\n\36\3\36"+ - "\7\36\u0213\n\36\f\36\16\36\u0216\13\36\3\36\3\36\3\36\3\36\3\36\3\36"+ - "\3\36\7\36\u021f\n\36\f\36\16\36\u0222\13\36\3\36\3\36\3\36\3\36\3\36"+ - "\3\36\3\36\3\36\3\36\7\36\u022d\n\36\f\36\16\36\u0230\13\36\3\36\3\36"+ - "\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36"+ - "\5\36\u0242\n\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\5\36\u024b\n\36\3"+ - "\36\3\36\3\36\3\36\3\36\3\36\5\36\u0253\n\36\3\37\6\37\u0256\n\37\r\37"+ - "\16\37\u0257\3\37\3\37\3\37\5\37\u025d\n\37\5\37\u025f\n\37\3 \3 \3 \3"+ - " \5 \u0265\n \3!\3!\3!\5!\u026a\n!\3!\3!\5!\u026e\n!\3!\3!\7!\u0272\n"+ - "!\f!\16!\u0275\13!\5!\u0277\n!\3!\3!\3!\3!\3!\3!\5!\u027f\n!\3\"\5\"\u0282"+ - "\n\"\3\"\5\"\u0285\n\"\3#\3#\3$\3$\3$\3$\3$\3$\7$\u028f\n$\f$\16$\u0292"+ - "\13$\3%\3%\3%\3%\3%\3%\3%\3%\3%\5%\u029d\n%\3%\3%\3%\3%\3%\3%\5%\u02a5"+ - "\n%\3%\3%\3%\3%\5%\u02ab\n%\3%\3%\5%\u02af\n%\3%\3%\3%\3%\3%\3%\3%\3%"+ - "\3%\3%\3%\3%\3%\3%\3%\3%\3%\7%\u02c2\n%\f%\16%\u02c5\13%\3%\5%\u02c8\n"+ - "%\3%\3%\3%\3%\3%\6%\u02cf\n%\r%\16%\u02d0\3%\3%\5%\u02d5\n%\3%\3%\3%\3"+ + "\32\7\32\u0166\n\32\f\32\16\32\u0169\13\32\3\32\3\32\5\32\u016d\n\32\3"+ + "\33\3\33\3\33\3\33\3\33\3\33\3\33\5\33\u0176\n\33\3\34\3\34\3\34\3\34"+ + "\3\34\3\34\3\34\3\34\3\34\5\34\u0181\n\34\3\34\3\34\3\34\3\34\3\34\3\34"+ + "\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\5\34\u0195"+ + "\n\34\3\34\3\34\3\34\3\34\3\34\7\34\u019c\n\34\f\34\16\34\u019f\13\34"+ + "\3\34\3\34\3\34\5\34\u01a4\n\34\3\35\6\35\u01a7\n\35\r\35\16\35\u01a8"+ + "\3\36\3\36\3\36\3\36\3\36\5\36\u01b0\n\36\3\36\3\36\3\36\3\36\3\36\3\36"+ + "\3\36\3\36\3\36\3\36\3\36\5\36\u01bd\n\36\3\36\7\36\u01c0\n\36\f\36\16"+ + "\36\u01c3\13\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\7\36\u01cc\n\36\f\36"+ + "\16\36\u01cf\13\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\7\36\u01da"+ + "\n\36\f\36\16\36\u01dd\13\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3"+ + "\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\5\36\u01ef\n\36\3\36\3\36\3\36"+ + "\3\36\3\36\3\36\3\36\5\36\u01f8\n\36\3\36\3\36\3\36\3\36\3\36\3\36\5\36"+ + "\u0200\n\36\3\37\6\37\u0203\n\37\r\37\16\37\u0204\3\37\3\37\3\37\5\37"+ + "\u020a\n\37\5\37\u020c\n\37\3 \3 \3 \3 \5 \u0212\n \3!\3!\3!\5!\u0217"+ + "\n!\3!\3!\5!\u021b\n!\3!\3!\7!\u021f\n!\f!\16!\u0222\13!\5!\u0224\n!\3"+ + "!\3!\3!\3!\3!\3!\5!\u022c\n!\3\"\5\"\u022f\n\"\3\"\5\"\u0232\n\"\3#\3"+ + "#\3$\3$\3$\3$\3$\3$\7$\u023c\n$\f$\16$\u023f\13$\3%\3%\3%\3%\3%\3%\3%"+ + "\3%\3%\5%\u024a\n%\3%\3%\3%\3%\3%\3%\5%\u0252\n%\3%\3%\3%\3%\5%\u0258"+ + "\n%\3%\3%\5%\u025c\n%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%"+ + "\3%\7%\u026f\n%\f%\16%\u0272\13%\3%\5%\u0275\n%\3%\3%\3%\3%\3%\6%\u027c"+ + "\n%\r%\16%\u027d\3%\3%\5%\u0282\n%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3"+ "%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3"+ - "%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\5%\u0307"+ - "\n%\3%\3%\3%\3%\3%\3%\3%\3%\7%\u0311\n%\f%\16%\u0314\13%\3&\3&\3&\7&\u0319"+ - "\n&\f&\16&\u031c\13&\3\'\3\'\5\'\u0320\n\'\3\'\3\'\3(\3(\3(\3(\7(\u0328"+ - "\n(\f(\16(\u032b\13(\3(\3(\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\5)\u0339\n)\3"+ - "*\7*\u033c\n*\f*\16*\u033f\13*\3+\3+\3+\5+\u0344\n+\3,\3,\3,\3,\5,\u034a"+ - "\n,\3-\3-\5-\u034e\n-\3.\3.\3.\3.\7.\u0354\n.\f.\16.\u0357\13.\3/\3/\3"+ + "%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\5%\u02b4\n%\3%\3%\3%\3%\3%\3"+ + "%\3%\3%\7%\u02be\n%\f%\16%\u02c1\13%\3&\3&\3&\7&\u02c6\n&\f&\16&\u02c9"+ + "\13&\3\'\3\'\5\'\u02cd\n\'\3\'\3\'\3(\3(\3(\3(\7(\u02d5\n(\f(\16(\u02d8"+ + "\13(\3(\3(\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\5)\u02e6\n)\3*\7*\u02e9\n*\f"+ + "*\16*\u02ec\13*\3+\3+\3+\5+\u02f1\n+\3,\3,\3,\3,\5,\u02f7\n,\3-\3-\5-"+ + "\u02fb\n-\3.\3.\3.\3.\7.\u0301\n.\f.\16.\u0304\13.\3/\3/\3/\3/\3/\3/\3"+ "/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3"+ - "/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\5/\u0386\n"+ - "/\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60"+ - "\5\60\u0396\n\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60"+ - "\3\60\7\60\u03a4\n\60\f\60\16\60\u03a7\13\60\3\60\2\t\f\30\32&FH^\61\2"+ - "\4\6\b\n\f\16\20\22\24\26\30\32\34\36 \"$&(*,.\60\62\64\668:<>@BDFHJL"+ - "NPRTVXZ\\^\2\r\3\2\27\30\5\2\22\23\31\32__\4\2!!$$\3\2\35\36\3\2\24\26"+ - "\3\2\22\23\3\2\37$\3\2\u008c\u008f\3\2\u008a\u008b\3\2\u0090\u0091\3\2"+ - "\u008c\u008d\2\u0431\2`\3\2\2\2\4c\3\2\2\2\6i\3\2\2\2\bz\3\2\2\2\n|\3"+ - "\2\2\2\f\177\3\2\2\2\16\u0096\3\2\2\2\20\u00bb\3\2\2\2\22\u00c0\3\2\2"+ - "\2\24\u00ca\3\2\2\2\26\u00d1\3\2\2\2\30\u00d7\3\2\2\2\32\u00f6\3\2\2\2"+ - "\34\u0106\3\2\2\2\36\u0109\3\2\2\2 \u0115\3\2\2\2\"\u0118\3\2\2\2$\u011b"+ - "\3\2\2\2&\u0123\3\2\2\2(\u012e\3\2\2\2*\u0133\3\2\2\2,\u0144\3\2\2\2."+ - "\u014a\3\2\2\2\60\u015d\3\2\2\2\62\u01c3\3\2\2\2\64\u01c5\3\2\2\2\66\u01f6"+ - "\3\2\2\28\u01f9\3\2\2\2:\u0252\3\2\2\2<\u0255\3\2\2\2>\u0260\3\2\2\2@"+ - "\u027e\3\2\2\2B\u0284\3\2\2\2D\u0286\3\2\2\2F\u0288\3\2\2\2H\u02d4\3\2"+ - "\2\2J\u0315\3\2\2\2L\u031d\3\2\2\2N\u0323\3\2\2\2P\u0338\3\2\2\2R\u033d"+ - "\3\2\2\2T\u0343\3\2\2\2V\u0349\3\2\2\2X\u034b\3\2\2\2Z\u034f\3\2\2\2\\"+ - "\u0385\3\2\2\2^\u0395\3\2\2\2`a\5\6\4\2ab\7\2\2\3b\3\3\2\2\2cd\5R*\2d"+ - "e\7\2\2\3e\5\3\2\2\2fh\5\b\5\2gf\3\2\2\2hk\3\2\2\2ig\3\2\2\2ij\3\2\2\2"+ - "j\7\3\2\2\2ki\3\2\2\2lm\5\n\6\2mn\7\n\2\2n{\3\2\2\2op\5\36\20\2pq\7\n"+ - "\2\2q{\3\2\2\2rs\5$\23\2st\7\n\2\2t{\3\2\2\2u{\5*\26\2v{\5\62\32\2wx\5"+ - "\16\b\2xy\7\n\2\2y{\3\2\2\2zl\3\2\2\2zo\3\2\2\2zr\3\2\2\2zu\3\2\2\2zv"+ - "\3\2\2\2zw\3\2\2\2{\t\3\2\2\2|}\5\22\n\2}~\5\f\7\2~\13\3\2\2\2\177\u0083"+ - "\b\7\1\2\u0080\u0082\5\24\13\2\u0081\u0080\3\2\2\2\u0082\u0085\3\2\2\2"+ - "\u0083\u0081\3\2\2\2\u0083\u0084\3\2\2\2\u0084\u0086\3\2\2\2\u0085\u0083"+ - "\3\2\2\2\u0086\u0087\5\20\t\2\u0087\u0093\3\2\2\2\u0088\u0089\f\3\2\2"+ - "\u0089\u008d\7\f\2\2\u008a\u008c\5\24\13\2\u008b\u008a\3\2\2\2\u008c\u008f"+ - "\3\2\2\2\u008d\u008b\3\2\2\2\u008d\u008e\3\2\2\2\u008e\u0090\3\2\2\2\u008f"+ - "\u008d\3\2\2\2\u0090\u0092\5\20\t\2\u0091\u0088\3\2\2\2\u0092\u0095\3"+ - "\2\2\2\u0093\u0091\3\2\2\2\u0093\u0094\3\2\2\2\u0094\r\3\2\2\2\u0095\u0093"+ - "\3\2\2\2\u0096\u0097\7)\2\2\u0097\u009b\5\22\n\2\u0098\u009a\5\24\13\2"+ - "\u0099\u0098\3\2\2\2\u009a\u009d\3\2\2\2\u009b\u0099\3\2\2\2\u009b\u009c"+ - "\3\2\2\2\u009c\u009e\3\2\2\2\u009d\u009b\3\2\2\2\u009e\u00a2\7z\2\2\u009f"+ - "\u00a1\5\26\f\2\u00a0\u009f\3\2\2\2\u00a1\u00a4\3\2\2\2\u00a2\u00a0\3"+ - "\2\2\2\u00a2\u00a3\3\2\2\2\u00a3\u00a5\3\2\2\2\u00a4\u00a2\3\2\2\2\u00a5"+ - "\u00a6\b\b\1\2\u00a6\17\3\2\2\2\u00a7\u00ab\7z\2\2\u00a8\u00aa\5\26\f"+ - "\2\u00a9\u00a8\3\2\2\2\u00aa\u00ad\3\2\2\2\u00ab\u00a9\3\2\2\2\u00ab\u00ac"+ - "\3\2\2\2\u00ac\u00b0\3\2\2\2\u00ad\u00ab\3\2\2\2\u00ae\u00af\7\'\2\2\u00af"+ - "\u00b1\5H%\2\u00b0\u00ae\3\2\2\2\u00b0\u00b1\3\2\2\2\u00b1\u00bc\3\2\2"+ - "\2\u00b2\u00b6\7z\2\2\u00b3\u00b5\5\26\f\2\u00b4\u00b3\3\2\2\2\u00b5\u00b8"+ - "\3\2\2\2\u00b6\u00b4\3\2\2\2\u00b6\u00b7\3\2\2\2\u00b7\u00b9\3\2\2\2\u00b8"+ - "\u00b6\3\2\2\2\u00b9\u00ba\7\'\2\2\u00ba\u00bc\5L\'\2\u00bb\u00a7\3\2"+ - "\2\2\u00bb\u00b2\3\2\2\2\u00bc\21\3\2\2\2\u00bd\u00bf\5\66\34\2\u00be"+ - "\u00bd\3\2\2\2\u00bf\u00c2\3\2\2\2\u00c0\u00be\3\2\2\2\u00c0\u00c1\3\2"+ - "\2\2\u00c1\u00c3\3\2\2\2\u00c2\u00c0\3\2\2\2\u00c3\u00c7\5\32\16\2\u00c4"+ - "\u00c6\5\66\34\2\u00c5\u00c4\3\2\2\2\u00c6\u00c9\3\2\2\2\u00c7\u00c5\3"+ - "\2\2\2\u00c7\u00c8\3\2\2\2\u00c8\23\3\2\2\2\u00c9\u00c7\3\2\2\2\u00ca"+ - "\u00ce\7\24\2\2\u00cb\u00cd\5\66\34\2\u00cc\u00cb\3\2\2\2\u00cd\u00d0"+ - "\3\2\2\2\u00ce\u00cc\3\2\2\2\u00ce\u00cf\3\2\2\2\u00cf\25\3\2\2\2\u00d0"+ - "\u00ce\3\2\2\2\u00d1\u00d3\7\6\2\2\u00d2\u00d4\5H%\2\u00d3\u00d2\3\2\2"+ - "\2\u00d3\u00d4\3\2\2\2\u00d4\u00d5\3\2\2\2\u00d5\u00d6\7\7\2\2\u00d6\27"+ - "\3\2\2\2\u00d7\u00d8\b\r\1\2\u00d8\u00d9\5\32\16\2\u00d9\u00e4\3\2\2\2"+ - "\u00da\u00db\f\4\2\2\u00db\u00e3\7\24\2\2\u00dc\u00dd\f\3\2\2\u00dd\u00df"+ - "\7\6\2\2\u00de\u00e0\5H%\2\u00df\u00de\3\2\2\2\u00df\u00e0\3\2\2\2\u00e0"+ - "\u00e1\3\2\2\2\u00e1\u00e3\7\7\2\2\u00e2\u00da\3\2\2\2\u00e2\u00dc\3\2"+ - "\2\2\u00e3\u00e6\3\2\2\2\u00e4\u00e2\3\2\2\2\u00e4\u00e5\3\2\2\2\u00e5"+ - "\31\3\2\2\2\u00e6\u00e4\3\2\2\2\u00e7\u00e8\b\16\1\2\u00e8\u00e9\7\b\2"+ - "\2\u00e9\u00ea\5\32\16\2\u00ea\u00eb\7\t\2\2\u00eb\u00f7\3\2\2\2\u00ec"+ - "\u00f7\7a\2\2\u00ed\u00ef\7`\2\2\u00ee\u00f0\7a\2\2\u00ef\u00ee\3\2\2"+ - "\2\u00ef\u00f0\3\2\2\2\u00f0\u00f7\3\2\2\2\u00f1\u00f7\5\36\20\2\u00f2"+ - "\u00f7\5\34\17\2\u00f3\u00f7\5$\23\2\u00f4\u00f7\5\"\22\2\u00f5\u00f7"+ - "\7\3\2\2\u00f6\u00e7\3\2\2\2\u00f6\u00ec\3\2\2\2\u00f6\u00ed\3\2\2\2\u00f6"+ - "\u00f1\3\2\2\2\u00f6\u00f2\3\2\2\2\u00f6\u00f3\3\2\2\2\u00f6\u00f4\3\2"+ - "\2\2\u00f6\u00f5\3\2\2\2\u00f7\u0103\3\2\2\2\u00f8\u00f9\f\t\2\2\u00f9"+ - "\u00fb\7\6\2\2\u00fa\u00fc\5H%\2\u00fb\u00fa\3\2\2\2\u00fb\u00fc\3\2\2"+ - "\2\u00fc\u00fd\3\2\2\2\u00fd\u0102\7\7\2\2\u00fe\u00ff\f\b\2\2\u00ff\u0100"+ - "\7\b\2\2\u0100\u0102\7\t\2\2\u0101\u00f8\3\2\2\2\u0101\u00fe\3\2\2\2\u0102"+ - "\u0105\3\2\2\2\u0103\u0101\3\2\2\2\u0103\u0104\3\2\2\2\u0104\33\3\2\2"+ - "\2\u0105\u0103\3\2\2\2\u0106\u0107\7T\2\2\u0107\u0108\7z\2\2\u0108\35"+ - "\3\2\2\2\u0109\u010b\7T\2\2\u010a\u010c\7z\2\2\u010b\u010a\3\2\2\2\u010b"+ - "\u010c\3\2\2\2\u010c\u010d\3\2\2\2\u010d\u010f\7\4\2\2\u010e\u0110\5 "+ - "\21\2\u010f\u010e\3\2\2\2\u0110\u0111\3\2\2\2\u0111\u010f\3\2\2\2\u0111"+ - "\u0112\3\2\2\2\u0112\u0113\3\2\2\2\u0113\u0114\7\5\2\2\u0114\37\3\2\2"+ - "\2\u0115\u0116\5\n\6\2\u0116\u0117\7\n\2\2\u0117!\3\2\2\2\u0118\u0119"+ - "\7U\2\2\u0119\u011a\7z\2\2\u011a#\3\2\2\2\u011b\u011d\7U\2\2\u011c\u011e"+ - "\7z\2\2\u011d\u011c\3\2\2\2\u011d\u011e\3\2\2\2\u011e\u011f\3\2\2\2\u011f"+ - "\u0120\7\4\2\2\u0120\u0121\5&\24\2\u0121\u0122\7\5\2\2\u0122%\3\2\2\2"+ - "\u0123\u0124\b\24\1\2\u0124\u0125\5(\25\2\u0125\u012b\3\2\2\2\u0126\u0127"+ - "\f\3\2\2\u0127\u0128\7\f\2\2\u0128\u012a\5(\25\2\u0129\u0126\3\2\2\2\u012a"+ - "\u012d\3\2\2\2\u012b\u0129\3\2\2\2\u012b\u012c\3\2\2\2\u012c\'\3\2\2\2"+ - "\u012d\u012b\3\2\2\2\u012e\u0131\7z\2\2\u012f\u0130\7\'\2\2\u0130\u0132"+ - "\5H%\2\u0131\u012f\3\2\2\2\u0131\u0132\3\2\2\2\u0132)\3\2\2\2\u0133\u0137"+ - "\5\22\n\2\u0134\u0136\5\24\13\2\u0135\u0134\3\2\2\2\u0136\u0139\3\2\2"+ - "\2\u0137\u0135\3\2\2\2\u0137\u0138\3\2\2\2\u0138\u013a\3\2\2\2\u0139\u0137"+ - "\3\2\2\2\u013a\u013b\7z\2\2\u013b\u013d\7\b\2\2\u013c\u013e\5.\30\2\u013d"+ - "\u013c\3\2\2\2\u013d\u013e\3\2\2\2\u013e\u013f\3\2\2\2\u013f\u0142\7\t"+ - "\2\2\u0140\u0143\5,\27\2\u0141\u0143\7\n\2\2\u0142\u0140\3\2\2\2\u0142"+ - "\u0141\3\2\2\2\u0143+\3\2\2\2\u0144\u0146\7\4\2\2\u0145\u0147\58\35\2"+ - "\u0146\u0145\3\2\2\2\u0146\u0147\3\2\2\2\u0147\u0148\3\2\2\2\u0148\u0149"+ - "\7\5\2\2\u0149-\3\2\2\2\u014a\u014f\5\60\31\2\u014b\u014c\7\f\2\2\u014c"+ - "\u014e\5\60\31\2\u014d\u014b\3\2\2\2\u014e\u0151\3\2\2\2\u014f\u014d\3"+ - "\2\2\2\u014f\u0150\3\2\2\2\u0150/\3\2\2\2\u0151\u014f\3\2\2\2\u0152\u0156"+ - "\5\22\n\2\u0153\u0155\5\24\13\2\u0154\u0153\3\2\2\2\u0155\u0158\3\2\2"+ - "\2\u0156\u0154\3\2\2\2\u0156\u0157\3\2\2\2\u0157\u0159\3\2\2\2\u0158\u0156"+ - "\3\2\2\2\u0159\u015a\7z\2\2\u015a\u015e\3\2\2\2\u015b\u015e\7a\2\2\u015c"+ - "\u015e\7\16\2\2\u015d\u0152\3\2\2\2\u015d\u015b\3\2\2\2\u015d\u015c\3"+ - "\2\2\2\u015e\61\3\2\2\2\u015f\u0160\7f\2\2\u0160\u0161\7,\2\2\u0161\u0162"+ - "\3\2\2\2\u0162\u0163\7\b\2\2\u0163\u0164\7z\2\2\u0164\u01c4\7\t\2\2\u0165"+ - "\u0166\7f\2\2\u0166\u0167\7\60\2\2\u0167\u0168\3\2\2\2\u0168\u0169\7\b"+ - "\2\2\u0169\u016a\7z\2\2\u016a\u01c4\7\t\2\2\u016b\u016c\7f\2\2\u016c\u016d"+ - "\7-\2\2\u016d\u016e\3\2\2\2\u016e\u016f\7\b\2\2\u016f\u0170\7{\2\2\u0170"+ - "\u01c4\7\t\2\2\u0171\u0172\7f\2\2\u0172\u0173\7.\2\2\u0173\u0174\3\2\2"+ - "\2\u0174\u0175\7\b\2\2\u0175\u0176\7{\2\2\u0176\u01c4\7\t\2\2\u0177\u0178"+ - "\7f\2\2\u0178\u0179\7/\2\2\u0179\u017a\3\2\2\2\u017a\u017b\7\b\2\2\u017b"+ - "\u017c\7{\2\2\u017c\u01c4\7\t\2\2\u017d\u017e\7f\2\2\u017e\u017f\7*\2"+ - "\2\u017f\u0180\3\2\2\2\u0180\u0181\7\b\2\2\u0181\u0186\5\64\33\2\u0182"+ - "\u0183\7\f\2\2\u0183\u0185\5\64\33\2\u0184\u0182\3\2\2\2\u0185\u0188\3"+ - "\2\2\2\u0186\u0184\3\2\2\2\u0186\u0187\3\2\2\2\u0187\u0189\3\2\2\2\u0188"+ - "\u0186\3\2\2\2\u0189\u018a\7\t\2\2\u018a\u01c4\3\2\2\2\u018b\u018c\7f"+ - "\2\2\u018c\u018d\7+\2\2\u018d\u018e\3\2\2\2\u018e\u018f\7\b\2\2\u018f"+ - "\u0190\7q\2\2\u0190\u01c4\7\t\2\2\u0191\u0192\7f\2\2\u0192\u0193\7\61"+ - "\2\2\u0193\u0194\3\2\2\2\u0194\u0195\7\b\2\2\u0195\u0196\7z\2\2\u0196"+ - "\u01c4\7\t\2\2\u0197\u0198\7f\2\2\u0198\u0199\7\62\2\2\u0199\u019a\3\2"+ - "\2\2\u019a\u019b\7\b\2\2\u019b\u019c\7z\2\2\u019c\u01c4\7\t\2\2\u019d"+ - "\u019e\7f\2\2\u019e\u019f\7\63\2\2\u019f\u01a0\3\2\2\2\u01a0\u01a1\7\b"+ - "\2\2\u01a1\u01a2\7z\2\2\u01a2\u01c4\7\t\2\2\u01a3\u01a4\7f\2\2\u01a4\u01a5"+ - "\7D\2\2\u01a5\u01a6\3\2\2\2\u01a6\u01a7\7\b\2\2\u01a7\u01a8\7E\2\2\u01a8"+ - "\u01c4\7\t\2\2\u01a9\u01aa\7f\2\2\u01aa\u01ab\7F\2\2\u01ab\u01ac\3\2\2"+ - "\2\u01ac\u01ad\7\b\2\2\u01ad\u01b2\7z\2\2\u01ae\u01af\7\f\2\2\u01af\u01b1"+ - "\7z\2\2\u01b0\u01ae\3\2\2\2\u01b1\u01b4\3\2\2\2\u01b2\u01b0\3\2\2\2\u01b2"+ - "\u01b3\3\2\2\2\u01b3\u01b5\3\2\2\2\u01b4\u01b2\3\2\2\2\u01b5\u01c4\7\t"+ - "\2\2\u01b6\u01b7\7f\2\2\u01b7\u01b8\7G\2\2\u01b8\u01b9\3\2\2\2\u01b9\u01ba"+ - "\7\b\2\2\u01ba\u01bf\7z\2\2\u01bb\u01bc\7\f\2\2\u01bc\u01be\7z\2\2\u01bd"+ - "\u01bb\3\2\2\2\u01be\u01c1\3\2\2\2\u01bf\u01bd\3\2\2\2\u01bf\u01c0\3\2"+ - "\2\2\u01c0\u01c2\3\2\2\2\u01c1\u01bf\3\2\2\2\u01c2\u01c4\7\t\2\2\u01c3"+ - "\u015f\3\2\2\2\u01c3\u0165\3\2\2\2\u01c3\u016b\3\2\2\2\u01c3\u0171\3\2"+ - "\2\2\u01c3\u0177\3\2\2\2\u01c3\u017d\3\2\2\2\u01c3\u018b\3\2\2\2\u01c3"+ - "\u0191\3\2\2\2\u01c3\u0197\3\2\2\2\u01c3\u019d\3\2\2\2\u01c3\u01a3\3\2"+ - "\2\2\u01c3\u01a9\3\2\2\2\u01c3\u01b6\3\2\2\2\u01c4\63\3\2\2\2\u01c5\u01c8"+ - "\7q\2\2\u01c6\u01c7\7\r\2\2\u01c7\u01c9\7q\2\2\u01c8\u01c6\3\2\2\2\u01c8"+ - "\u01c9\3\2\2\2\u01c9\65\3\2\2\2\u01ca\u01f7\7\64\2\2\u01cb\u01cc\7\67"+ - "\2\2\u01cc\u01cd\7\b\2\2\u01cd\u01ce\7q\2\2\u01ce\u01f7\7\t\2\2\u01cf"+ - "\u01d3\7<\2\2\u01d0\u01d1\7\b\2\2\u01d1\u01d2\7z\2\2\u01d2\u01d4\7\t\2"+ - "\2\u01d3\u01d0\3\2\2\2\u01d3\u01d4\3\2\2\2\u01d4\u01f7\3\2\2\2\u01d5\u01f7"+ - "\7?\2\2\u01d6\u01f7\7@\2\2\u01d7\u01d8\7>\2\2\u01d8\u01d9\7\b\2\2\u01d9"+ - "\u01da\7q\2\2\u01da\u01f7\7\t\2\2\u01db\u01f7\79\2\2\u01dc\u01f7\7:\2"+ - "\2\u01dd\u01f7\7A\2\2\u01de\u01f7\7B\2\2\u01df\u01f7\7\65\2\2\u01e0\u01f7"+ - "\7\66\2\2\u01e1\u01f7\78\2\2\u01e2\u01f7\7C\2\2\u01e3\u01e7\7;\2\2\u01e4"+ - "\u01e5\7\b\2\2\u01e5\u01e6\7z\2\2\u01e6\u01e8\7\t\2\2\u01e7\u01e4\3\2"+ - "\2\2\u01e7\u01e8\3\2\2\2\u01e8\u01f7\3\2\2\2\u01e9\u01ea\7=\2\2\u01ea"+ - "\u01eb\7\b\2\2\u01eb\u01f0\5\64\33\2\u01ec\u01ed\7\f\2\2\u01ed\u01ef\5"+ - "\64\33\2\u01ee\u01ec\3\2\2\2\u01ef\u01f2\3\2\2\2\u01f0\u01ee\3\2\2\2\u01f0"+ - "\u01f1\3\2\2\2\u01f1\u01f3\3\2\2\2\u01f2\u01f0\3\2\2\2\u01f3\u01f4\7\t"+ - "\2\2\u01f4\u01f7\3\2\2\2\u01f5\u01f7\7E\2\2\u01f6\u01ca\3\2\2\2\u01f6"+ - "\u01cb\3\2\2\2\u01f6\u01cf\3\2\2\2\u01f6\u01d5\3\2\2\2\u01f6\u01d6\3\2"+ - "\2\2\u01f6\u01d7\3\2\2\2\u01f6\u01db\3\2\2\2\u01f6\u01dc\3\2\2\2\u01f6"+ - "\u01dd\3\2\2\2\u01f6\u01de\3\2\2\2\u01f6\u01df\3\2\2\2\u01f6\u01e0\3\2"+ - "\2\2\u01f6\u01e1\3\2\2\2\u01f6\u01e2\3\2\2\2\u01f6\u01e3\3\2\2\2\u01f6"+ - "\u01e9\3\2\2\2\u01f6\u01f5\3\2\2\2\u01f7\67\3\2\2\2\u01f8\u01fa\5:\36"+ - "\2\u01f9\u01f8\3\2\2\2\u01fa\u01fb\3\2\2\2\u01fb\u01f9\3\2\2\2\u01fb\u01fc"+ - "\3\2\2\2\u01fc9\3\2\2\2\u01fd\u01fe\5\n\6\2\u01fe\u01ff\7\n\2\2\u01ff"+ - "\u0253\3\2\2\2\u0200\u0202\7\4\2\2\u0201\u0203\58\35\2\u0202\u0201\3\2"+ - "\2\2\u0202\u0203\3\2\2\2\u0203\u0204\3\2\2\2\u0204\u0253\7\5\2\2\u0205"+ - "\u0206\5F$\2\u0206\u0207\7\n\2\2\u0207\u0253\3\2\2\2\u0208\u0209\7H\2"+ - "\2\u0209\u020a\7\b\2\2\u020a\u020b\5F$\2\u020b\u020c\7\t\2\2\u020c\u020f"+ - "\5:\36\2\u020d\u020e\7I\2\2\u020e\u0210\5:\36\2\u020f\u020d\3\2\2\2\u020f"+ - "\u0210\3\2\2\2\u0210\u0253\3\2\2\2\u0211\u0213\5\66\34\2\u0212\u0211\3"+ - "\2\2\2\u0213\u0216\3\2\2\2\u0214\u0212\3\2\2\2\u0214\u0215\3\2\2\2\u0215"+ - "\u0217\3\2\2\2\u0216\u0214\3\2\2\2\u0217\u0218\7J\2\2\u0218\u0219\7\b"+ - "\2\2\u0219\u021a\5F$\2\u021a\u021b\7\t\2\2\u021b\u021c\5:\36\2\u021c\u0253"+ - "\3\2\2\2\u021d\u021f\5\66\34\2\u021e\u021d\3\2\2\2\u021f\u0222\3\2\2\2"+ - "\u0220\u021e\3\2\2\2\u0220\u0221\3\2\2\2\u0221\u0223\3\2\2\2\u0222\u0220"+ - "\3\2\2\2\u0223\u0224\7K\2\2\u0224\u0225\5:\36\2\u0225\u0226\7J\2\2\u0226"+ - "\u0227\7\b\2\2\u0227\u0228\5F$\2\u0228\u0229\7\t\2\2\u0229\u022a\7\n\2"+ - "\2\u022a\u0253\3\2\2\2\u022b\u022d\5\66\34\2\u022c\u022b\3\2\2\2\u022d"+ - "\u0230\3\2\2\2\u022e\u022c\3\2\2\2\u022e\u022f\3\2\2\2\u022f\u0231\3\2"+ - "\2\2\u0230\u022e\3\2\2\2\u0231\u0232\7L\2\2\u0232\u0233\7\b\2\2\u0233"+ - "\u0234\5@!\2\u0234\u0235\7\t\2\2\u0235\u0236\5:\36\2\u0236\u0253\3\2\2"+ - "\2\u0237\u0238\7M\2\2\u0238\u0239\7\b\2\2\u0239\u023a\5F$\2\u023a\u023b"+ - "\7\t\2\2\u023b\u023c\7\4\2\2\u023c\u023d\5<\37\2\u023d\u023e\7\5\2\2\u023e"+ - "\u0253\3\2\2\2\u023f\u0241\7N\2\2\u0240\u0242\5F$\2\u0241\u0240\3\2\2"+ - "\2\u0241\u0242\3\2\2\2\u0242\u0243\3\2\2\2\u0243\u0253\7\n\2\2\u0244\u0245"+ - "\7O\2\2\u0245\u0253\7\n\2\2\u0246\u0247\7P\2\2\u0247\u0253\7\n\2\2\u0248"+ - "\u024a\7Q\2\2\u0249\u024b\5N(\2\u024a\u0249\3\2\2\2\u024a\u024b\3\2\2"+ - "\2\u024b\u024c\3\2\2\2\u024c\u024d\7\4\2\2\u024d\u024e\5R*\2\u024e\u024f"+ - "\7\u0093\2\2\u024f\u0253\3\2\2\2\u0250\u0253\5L\'\2\u0251\u0253\7\n\2"+ - "\2\u0252\u01fd\3\2\2\2\u0252\u0200\3\2\2\2\u0252\u0205\3\2\2\2\u0252\u0208"+ - "\3\2\2\2\u0252\u0214\3\2\2\2\u0252\u0220\3\2\2\2\u0252\u022e\3\2\2\2\u0252"+ - "\u0237\3\2\2\2\u0252\u023f\3\2\2\2\u0252\u0244\3\2\2\2\u0252\u0246\3\2"+ - "\2\2\u0252\u0248\3\2\2\2\u0252\u0250\3\2\2\2\u0252\u0251\3\2\2\2\u0253"+ - ";\3\2\2\2\u0254\u0256\5> \2\u0255\u0254\3\2\2\2\u0256\u0257\3\2\2\2\u0257"+ - "\u0255\3\2\2\2\u0257\u0258\3\2\2\2\u0258\u025e\3\2\2\2\u0259\u025a\7R"+ - "\2\2\u025a\u025c\7\13\2\2\u025b\u025d\58\35\2\u025c\u025b\3\2\2\2\u025c"+ - "\u025d\3\2\2\2\u025d\u025f\3\2\2\2\u025e\u0259\3\2\2\2\u025e\u025f\3\2"+ - "\2\2\u025f=\3\2\2\2\u0260\u0261\7S\2\2\u0261\u0262\5H%\2\u0262\u0264\7"+ - "\13\2\2\u0263\u0265\58\35\2\u0264\u0263\3\2\2\2\u0264\u0265\3\2\2\2\u0265"+ - "?\3\2\2\2\u0266\u0267\5B\"\2\u0267\u0269\7\n\2\2\u0268\u026a\5D#\2\u0269"+ - "\u0268\3\2\2\2\u0269\u026a\3\2\2\2\u026a\u026b\3\2\2\2\u026b\u026d\7\n"+ - "\2\2\u026c\u026e\5F$\2\u026d\u026c\3\2\2\2\u026d\u026e\3\2\2\2\u026e\u027f"+ - "\3\2\2\2\u026f\u0273\5\22\n\2\u0270\u0272\5\24\13\2\u0271\u0270\3\2\2"+ - "\2\u0272\u0275\3\2\2\2\u0273\u0271\3\2\2\2\u0273\u0274\3\2\2\2\u0274\u0277"+ - "\3\2\2\2\u0275\u0273\3\2\2\2\u0276\u026f\3\2\2\2\u0276\u0277\3\2\2\2\u0277"+ - "\u0278\3\2\2\2\u0278\u0279\7z\2\2\u0279\u027a\7\13\2\2\u027a\u027b\5H"+ - "%\2\u027b\u027c\7\r\2\2\u027c\u027d\5H%\2\u027d\u027f\3\2\2\2\u027e\u0266"+ - "\3\2\2\2\u027e\u0276\3\2\2\2\u027fA\3\2\2\2\u0280\u0282\5\n\6\2\u0281"+ - "\u0280\3\2\2\2\u0281\u0282\3\2\2\2\u0282\u0285\3\2\2\2\u0283\u0285\5F"+ - "$\2\u0284\u0281\3\2\2\2\u0284\u0283\3\2\2\2\u0285C\3\2\2\2\u0286\u0287"+ - "\5F$\2\u0287E\3\2\2\2\u0288\u0289\b$\1\2\u0289\u028a\5H%\2\u028a\u0290"+ - "\3\2\2\2\u028b\u028c\f\3\2\2\u028c\u028d\7\f\2\2\u028d\u028f\5H%\2\u028e"+ - "\u028b\3\2\2\2\u028f\u0292\3\2\2\2\u0290\u028e\3\2\2\2\u0290\u0291\3\2"+ - "\2\2\u0291G\3\2\2\2\u0292\u0290\3\2\2\2\u0293\u0294\b%\1\2\u0294\u0295"+ - "\7\b\2\2\u0295\u0296\5F$\2\u0296\u0297\7\t\2\2\u0297\u02d5\3\2\2\2\u0298"+ - "\u0299\7V\2\2\u0299\u029c\7\b\2\2\u029a\u029d\5H%\2\u029b\u029d\5\30\r"+ - "\2\u029c\u029a\3\2\2\2\u029c\u029b\3\2\2\2\u029d\u029e\3\2\2\2\u029e\u029f"+ - "\7\t\2\2\u029f\u02d5\3\2\2\2\u02a0\u02a1\7W\2\2\u02a1\u02a4\7\b\2\2\u02a2"+ - "\u02a5\5H%\2\u02a3\u02a5\5\30\r\2\u02a4\u02a2\3\2\2\2\u02a4\u02a3\3\2"+ - "\2\2\u02a5\u02a6\3\2\2\2\u02a6\u02a7\7\t\2\2\u02a7\u02d5\3\2\2\2\u02a8"+ - "\u02aa\7X\2\2\u02a9\u02ab\7\b\2\2\u02aa\u02a9\3\2\2\2\u02aa\u02ab\3\2"+ - "\2\2\u02ab\u02ac\3\2\2\2\u02ac\u02ae\7z\2\2\u02ad\u02af\7\t\2\2\u02ae"+ - "\u02ad\3\2\2\2\u02ae\u02af\3\2\2\2\u02af\u02d5\3\2\2\2\u02b0\u02b1\7\b"+ - "\2\2\u02b1\u02b2\5\30\r\2\u02b2\u02b3\7\t\2\2\u02b3\u02b4\5H%\32\u02b4"+ - "\u02d5\3\2\2\2\u02b5\u02b6\t\2\2\2\u02b6\u02d5\5H%\31\u02b7\u02b8\7\24"+ - "\2\2\u02b8\u02d5\5H%\27\u02b9\u02ba\t\3\2\2\u02ba\u02d5\5H%\26\u02bb\u02bc"+ - "\t\4\2\2\u02bc\u02d5\5H%\22\u02bd\u02be\7\4\2\2\u02be\u02c3\5H%\2\u02bf"+ - "\u02c0\7\f\2\2\u02c0\u02c2\5H%\2\u02c1\u02bf\3\2\2\2\u02c2\u02c5\3\2\2"+ - "\2\u02c3\u02c1\3\2\2\2\u02c3\u02c4\3\2\2\2\u02c4\u02c7\3\2\2\2\u02c5\u02c3"+ - "\3\2\2\2\u02c6\u02c8\7\f\2\2\u02c7\u02c6\3\2\2\2\u02c7\u02c8\3\2\2\2\u02c8"+ - "\u02c9\3\2\2\2\u02c9\u02ca\7\5\2\2\u02ca\u02d5\3\2\2\2\u02cb\u02d5\7z"+ - "\2\2\u02cc\u02d5\7q\2\2\u02cd\u02cf\7{\2\2\u02ce\u02cd\3\2\2\2\u02cf\u02d0"+ - "\3\2\2\2\u02d0\u02ce\3\2\2\2\u02d0\u02d1\3\2\2\2\u02d1\u02d5\3\2\2\2\u02d2"+ - "\u02d5\7|\2\2\u02d3\u02d5\7b\2\2\u02d4\u0293\3\2\2\2\u02d4\u0298\3\2\2"+ - "\2\u02d4\u02a0\3\2\2\2\u02d4\u02a8\3\2\2\2\u02d4\u02b0\3\2\2\2\u02d4\u02b5"+ - "\3\2\2\2\u02d4\u02b7\3\2\2\2\u02d4\u02b9\3\2\2\2\u02d4\u02bb\3\2\2\2\u02d4"+ - "\u02bd\3\2\2\2\u02d4\u02cb\3\2\2\2\u02d4\u02cc\3\2\2\2\u02d4\u02ce\3\2"+ - "\2\2\u02d4\u02d2\3\2\2\2\u02d4\u02d3\3\2\2\2\u02d5\u0312\3\2\2\2\u02d6"+ - "\u02d7\f\25\2\2\u02d7\u02d8\t\5\2\2\u02d8\u0311\5H%\26\u02d9\u02da\f\24"+ - "\2\2\u02da\u02db\t\6\2\2\u02db\u0311\5H%\25\u02dc\u02dd\f\23\2\2\u02dd"+ - "\u02de\t\7\2\2\u02de\u0311\5H%\24\u02df\u02e0\f\21\2\2\u02e0\u02e1\t\b"+ - "\2\2\u02e1\u0311\5H%\22\u02e2\u02e3\f\20\2\2\u02e3\u02e4\7\31\2\2\u02e4"+ - "\u0311\5H%\21\u02e5\u02e6\f\17\2\2\u02e6\u02e7\7\33\2\2\u02e7\u0311\5"+ - "H%\20\u02e8\u02e9\f\16\2\2\u02e9\u02ea\7\34\2\2\u02ea\u0311\5H%\17\u02eb"+ - "\u02ec\f\r\2\2\u02ec\u02ed\7%\2\2\u02ed\u0311\5H%\16\u02ee\u02ef\f\f\2"+ - "\2\u02ef\u02f0\7&\2\2\u02f0\u0311\5H%\r\u02f1\u02f2\f\13\2\2\u02f2\u02f3"+ - "\7\17\2\2\u02f3\u02f4\5H%\2\u02f4\u02f5\7\13\2\2\u02f5\u02f6\5H%\f\u02f6"+ - "\u0311\3\2\2\2\u02f7\u02f8\f\n\2\2\u02f8\u02f9\7\'\2\2\u02f9\u0311\5H"+ - "%\n\u02fa\u02fb\f\t\2\2\u02fb\u02fc\7(\2\2\u02fc\u0311\5H%\t\u02fd\u02fe"+ - "\f!\2\2\u02fe\u02ff\7\20\2\2\u02ff\u0311\7z\2\2\u0300\u0301\f \2\2\u0301"+ - "\u0302\7\21\2\2\u0302\u0311\7z\2\2\u0303\u0304\f\37\2\2\u0304\u0306\7"+ - "\b\2\2\u0305\u0307\5J&\2\u0306\u0305\3\2\2\2\u0306\u0307\3\2\2\2\u0307"+ - "\u0308\3\2\2\2\u0308\u0311\7\t\2\2\u0309\u030a\f\33\2\2\u030a\u030b\7"+ - "\6\2\2\u030b\u030c\5F$\2\u030c\u030d\7\7\2\2\u030d\u0311\3\2\2\2\u030e"+ - "\u030f\f\30\2\2\u030f\u0311\t\2\2\2\u0310\u02d6\3\2\2\2\u0310\u02d9\3"+ - "\2\2\2\u0310\u02dc\3\2\2\2\u0310\u02df\3\2\2\2\u0310\u02e2\3\2\2\2\u0310"+ - "\u02e5\3\2\2\2\u0310\u02e8\3\2\2\2\u0310\u02eb\3\2\2\2\u0310\u02ee\3\2"+ - "\2\2\u0310\u02f1\3\2\2\2\u0310\u02f7\3\2\2\2\u0310\u02fa\3\2\2\2\u0310"+ - "\u02fd\3\2\2\2\u0310\u0300\3\2\2\2\u0310\u0303\3\2\2\2\u0310\u0309\3\2"+ - "\2\2\u0310\u030e\3\2\2\2\u0311\u0314\3\2\2\2\u0312\u0310\3\2\2\2\u0312"+ - "\u0313\3\2\2\2\u0313I\3\2\2\2\u0314\u0312\3\2\2\2\u0315\u031a\5H%\2\u0316"+ - "\u0317\7\f\2\2\u0317\u0319\5H%\2\u0318\u0316\3\2\2\2\u0319\u031c\3\2\2"+ - "\2\u031a\u0318\3\2\2\2\u031a\u031b\3\2\2\2\u031bK\3\2\2\2\u031c\u031a"+ - "\3\2\2\2\u031d\u031f\7Y\2\2\u031e\u0320\5N(\2\u031f\u031e\3\2\2\2\u031f"+ - "\u0320\3\2\2\2\u0320\u0321\3\2\2\2\u0321\u0322\7c\2\2\u0322M\3\2\2\2\u0323"+ - "\u0324\7\b\2\2\u0324\u0329\5P)\2\u0325\u0326\7\f\2\2\u0326\u0328\5P)\2"+ - "\u0327\u0325\3\2\2\2\u0328\u032b\3\2\2\2\u0329\u0327\3\2\2\2\u0329\u032a"+ - "\3\2\2\2\u032a\u032c\3\2\2\2\u032b\u0329\3\2\2\2\u032c\u032d\7\t\2\2\u032d"+ - "O\3\2\2\2\u032e\u032f\7Z\2\2\u032f\u0339\7{\2\2\u0330\u0331\7[\2\2\u0331"+ - "\u0339\7z\2\2\u0332\u0333\7\\\2\2\u0333\u0339\7{\2\2\u0334\u0335\7]\2"+ - "\2\u0335\u0339\5H%\2\u0336\u0337\7^\2\2\u0337\u0339\5H%\2\u0338\u032e"+ - "\3\2\2\2\u0338\u0330\3\2\2\2\u0338\u0332\3\2\2\2\u0338\u0334\3\2\2\2\u0338"+ - "\u0336\3\2\2\2\u0339Q\3\2\2\2\u033a\u033c\5T+\2\u033b\u033a\3\2\2\2\u033c"+ - "\u033f\3\2\2\2\u033d\u033b\3\2\2\2\u033d\u033e\3\2\2\2\u033eS\3\2\2\2"+ - "\u033f\u033d\3\2\2\2\u0340\u0344\5V,\2\u0341\u0344\5X-\2\u0342\u0344\5"+ - "Z.\2\u0343\u0340\3\2\2\2\u0343\u0341\3\2\2\2\u0343\u0342\3\2\2\2\u0344"+ - "U\3\2\2\2\u0345\u0346\7\u00a0\2\2\u0346\u034a\7\u0083\2\2\u0347\u0348"+ - "\7\u009f\2\2\u0348\u034a\7\u0083\2\2\u0349\u0345\3\2\2\2\u0349\u0347\3"+ - "\2\2\2\u034aW\3\2\2\2\u034b\u034d\7\u0081\2\2\u034c\u034e\5\\/\2\u034d"+ - "\u034c\3\2\2\2\u034d\u034e\3\2\2\2\u034eY\3\2\2\2\u034f\u0350\7\u0080"+ - "\2\2\u0350\u0355\5^\60\2\u0351\u0352\7\u0084\2\2\u0352\u0354\5^\60\2\u0353"+ - "\u0351\3\2\2\2\u0354\u0357\3\2\2\2\u0355\u0353\3\2\2\2\u0355\u0356\3\2"+ - "\2\2\u0356[\3\2\2\2\u0357\u0355\3\2\2\2\u0358\u0386\5^\60\2\u0359\u035a"+ - "\7\u0082\2\2\u035a\u0386\5^\60\2\u035b\u035c\5^\60\2\u035c\u035d\7\u0084"+ - "\2\2\u035d\u035e\5^\60\2\u035e\u0386\3\2\2\2\u035f\u0360\7\u0085\2\2\u0360"+ - "\u0361\5^\60\2\u0361\u0362\7\u0086\2\2\u0362\u0363\7\u0084\2\2\u0363\u0364"+ - "\7\u00a0\2\2\u0364\u0386\3\2\2\2\u0365\u0366\7\u0085\2\2\u0366\u0367\7"+ - "\u0085\2\2\u0367\u0368\5^\60\2\u0368\u0369\7\u0086\2\2\u0369\u036a\7\u0086"+ - "\2\2\u036a\u036b\7\u0084\2\2\u036b\u036c\7\u00a0\2\2\u036c\u0386\3\2\2"+ - "\2\u036d\u036e\7\u0085\2\2\u036e\u036f\5^\60\2\u036f\u0370\7\u0084\2\2"+ - "\u0370\u0371\7\u00a0\2\2\u0371\u0372\7\u0086\2\2\u0372\u0373\7\u0084\2"+ - "\2\u0373\u0374\7\u00a0\2\2\u0374\u0386\3\2\2\2\u0375\u0376\7\u0085\2\2"+ - "\u0376\u0377\5^\60\2\u0377\u0378\7\u0084\2\2\u0378\u0379\7\u00a0\2\2\u0379"+ - "\u037a\7\u0086\2\2\u037a\u0386\3\2\2\2\u037b\u037c\7\u0085\2\2\u037c\u037d"+ - "\5^\60\2\u037d\u037e\7\u0086\2\2\u037e\u0386\3\2\2\2\u037f\u0380\7\u0085"+ - "\2\2\u0380\u0381\7\u0085\2\2\u0381\u0382\5^\60\2\u0382\u0383\7\u0086\2"+ - "\2\u0383\u0384\7\u0086\2\2\u0384\u0386\3\2\2\2\u0385\u0358\3\2\2\2\u0385"+ - "\u0359\3\2\2\2\u0385\u035b\3\2\2\2\u0385\u035f\3\2\2\2\u0385\u0365\3\2"+ - "\2\2\u0385\u036d\3\2\2\2\u0385\u0375\3\2\2\2\u0385\u037b\3\2\2\2\u0385"+ - "\u037f\3\2\2\2\u0386]\3\2\2\2\u0387\u0388\b\60\1\2\u0388\u0389\7\u0087"+ - "\2\2\u0389\u038a\5^\60\2\u038a\u038b\7\u0088\2\2\u038b\u0396\3\2\2\2\u038c"+ - "\u038d\t\t\2\2\u038d\u0396\5^\60\n\u038e\u0396\7\u00a0\2\2\u038f\u0396"+ - "\7\u009e\2\2\u0390\u0391\7\u0092\2\2\u0391\u0392\7\u00a0\2\2\u0392\u0396"+ - "\7\u0093\2\2\u0393\u0396\7\u0094\2\2\u0394\u0396\7\u009d\2\2\u0395\u0387"+ - "\3\2\2\2\u0395\u038c\3\2\2\2\u0395\u038e\3\2\2\2\u0395\u038f\3\2\2\2\u0395"+ - "\u0390\3\2\2\2\u0395\u0393\3\2\2\2\u0395\u0394\3\2\2\2\u0396\u03a5\3\2"+ - "\2\2\u0397\u0398\f\f\2\2\u0398\u0399\7\u0089\2\2\u0399\u03a4\5^\60\r\u039a"+ - "\u039b\f\13\2\2\u039b\u039c\t\n\2\2\u039c\u03a4\5^\60\f\u039d\u039e\f"+ - "\t\2\2\u039e\u039f\t\13\2\2\u039f\u03a4\5^\60\n\u03a0\u03a1\f\b\2\2\u03a1"+ - "\u03a2\t\f\2\2\u03a2\u03a4\5^\60\t\u03a3\u0397\3\2\2\2\u03a3\u039a\3\2"+ - "\2\2\u03a3\u039d\3\2\2\2\u03a3\u03a0\3\2\2\2\u03a4\u03a7\3\2\2\2\u03a5"+ - "\u03a3\3\2\2\2\u03a5\u03a6\3\2\2\2\u03a6_\3\2\2\2\u03a7\u03a5\3\2\2\2"+ - "[iz\u0083\u008d\u0093\u009b\u00a2\u00ab\u00b0\u00b6\u00bb\u00c0\u00c7"+ + "/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\5/\u0333\n/\3\60\3\60\3"+ + "\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\5\60\u0343"+ + "\n\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\7\60"+ + "\u0351\n\60\f\60\16\60\u0354\13\60\3\60\2\t\f\30\32&FH^\61\2\4\6\b\n\f"+ + "\16\20\22\24\26\30\32\34\36 \"$&(*,.\60\62\64\668:<>@BDFHJLNPRTVXZ\\^"+ + "\2\r\3\2\27\30\5\2\22\23\31\32RR\4\2!!$$\3\2\35\36\3\2\24\26\3\2\22\23"+ + "\3\2\37$\3\2\177\u0082\3\2}~\3\2\u0083\u0084\3\2\177\u0080\2\u03d4\2`"+ + "\3\2\2\2\4c\3\2\2\2\6i\3\2\2\2\bz\3\2\2\2\n|\3\2\2\2\f\177\3\2\2\2\16"+ + "\u0096\3\2\2\2\20\u00bb\3\2\2\2\22\u00c0\3\2\2\2\24\u00ca\3\2\2\2\26\u00d1"+ + "\3\2\2\2\30\u00d7\3\2\2\2\32\u00f6\3\2\2\2\34\u0106\3\2\2\2\36\u0109\3"+ + "\2\2\2 \u0115\3\2\2\2\"\u0118\3\2\2\2$\u011b\3\2\2\2&\u0123\3\2\2\2(\u012e"+ + "\3\2\2\2*\u0133\3\2\2\2,\u0144\3\2\2\2.\u014a\3\2\2\2\60\u015d\3\2\2\2"+ + "\62\u015f\3\2\2\2\64\u0175\3\2\2\2\66\u01a3\3\2\2\28\u01a6\3\2\2\2:\u01ff"+ + "\3\2\2\2<\u0202\3\2\2\2>\u020d\3\2\2\2@\u022b\3\2\2\2B\u0231\3\2\2\2D"+ + "\u0233\3\2\2\2F\u0235\3\2\2\2H\u0281\3\2\2\2J\u02c2\3\2\2\2L\u02ca\3\2"+ + "\2\2N\u02d0\3\2\2\2P\u02e5\3\2\2\2R\u02ea\3\2\2\2T\u02f0\3\2\2\2V\u02f6"+ + "\3\2\2\2X\u02f8\3\2\2\2Z\u02fc\3\2\2\2\\\u0332\3\2\2\2^\u0342\3\2\2\2"+ + "`a\5\6\4\2ab\7\2\2\3b\3\3\2\2\2cd\5R*\2de\7\2\2\3e\5\3\2\2\2fh\5\b\5\2"+ + "gf\3\2\2\2hk\3\2\2\2ig\3\2\2\2ij\3\2\2\2j\7\3\2\2\2ki\3\2\2\2lm\5\n\6"+ + "\2mn\7\n\2\2n{\3\2\2\2op\5\36\20\2pq\7\n\2\2q{\3\2\2\2rs\5$\23\2st\7\n"+ + "\2\2t{\3\2\2\2u{\5*\26\2v{\5\62\32\2wx\5\16\b\2xy\7\n\2\2y{\3\2\2\2zl"+ + "\3\2\2\2zo\3\2\2\2zr\3\2\2\2zu\3\2\2\2zv\3\2\2\2zw\3\2\2\2{\t\3\2\2\2"+ + "|}\5\22\n\2}~\5\f\7\2~\13\3\2\2\2\177\u0083\b\7\1\2\u0080\u0082\5\24\13"+ + "\2\u0081\u0080\3\2\2\2\u0082\u0085\3\2\2\2\u0083\u0081\3\2\2\2\u0083\u0084"+ + "\3\2\2\2\u0084\u0086\3\2\2\2\u0085\u0083\3\2\2\2\u0086\u0087\5\20\t\2"+ + "\u0087\u0093\3\2\2\2\u0088\u0089\f\3\2\2\u0089\u008d\7\f\2\2\u008a\u008c"+ + "\5\24\13\2\u008b\u008a\3\2\2\2\u008c\u008f\3\2\2\2\u008d\u008b\3\2\2\2"+ + "\u008d\u008e\3\2\2\2\u008e\u0090\3\2\2\2\u008f\u008d\3\2\2\2\u0090\u0092"+ + "\5\20\t\2\u0091\u0088\3\2\2\2\u0092\u0095\3\2\2\2\u0093\u0091\3\2\2\2"+ + "\u0093\u0094\3\2\2\2\u0094\r\3\2\2\2\u0095\u0093\3\2\2\2\u0096\u0097\7"+ + ")\2\2\u0097\u009b\5\22\n\2\u0098\u009a\5\24\13\2\u0099\u0098\3\2\2\2\u009a"+ + "\u009d\3\2\2\2\u009b\u0099\3\2\2\2\u009b\u009c\3\2\2\2\u009c\u009e\3\2"+ + "\2\2\u009d\u009b\3\2\2\2\u009e\u00a2\7m\2\2\u009f\u00a1\5\26\f\2\u00a0"+ + "\u009f\3\2\2\2\u00a1\u00a4\3\2\2\2\u00a2\u00a0\3\2\2\2\u00a2\u00a3\3\2"+ + "\2\2\u00a3\u00a5\3\2\2\2\u00a4\u00a2\3\2\2\2\u00a5\u00a6\b\b\1\2\u00a6"+ + "\17\3\2\2\2\u00a7\u00ab\7m\2\2\u00a8\u00aa\5\26\f\2\u00a9\u00a8\3\2\2"+ + "\2\u00aa\u00ad\3\2\2\2\u00ab\u00a9\3\2\2\2\u00ab\u00ac\3\2\2\2\u00ac\u00b0"+ + "\3\2\2\2\u00ad\u00ab\3\2\2\2\u00ae\u00af\7\'\2\2\u00af\u00b1\5H%\2\u00b0"+ + "\u00ae\3\2\2\2\u00b0\u00b1\3\2\2\2\u00b1\u00bc\3\2\2\2\u00b2\u00b6\7m"+ + "\2\2\u00b3\u00b5\5\26\f\2\u00b4\u00b3\3\2\2\2\u00b5\u00b8\3\2\2\2\u00b6"+ + "\u00b4\3\2\2\2\u00b6\u00b7\3\2\2\2\u00b7\u00b9\3\2\2\2\u00b8\u00b6\3\2"+ + "\2\2\u00b9\u00ba\7\'\2\2\u00ba\u00bc\5L\'\2\u00bb\u00a7\3\2\2\2\u00bb"+ + "\u00b2\3\2\2\2\u00bc\21\3\2\2\2\u00bd\u00bf\5\66\34\2\u00be\u00bd\3\2"+ + "\2\2\u00bf\u00c2\3\2\2\2\u00c0\u00be\3\2\2\2\u00c0\u00c1\3\2\2\2\u00c1"+ + "\u00c3\3\2\2\2\u00c2\u00c0\3\2\2\2\u00c3\u00c7\5\32\16\2\u00c4\u00c6\5"+ + "\66\34\2\u00c5\u00c4\3\2\2\2\u00c6\u00c9\3\2\2\2\u00c7\u00c5\3\2\2\2\u00c7"+ + "\u00c8\3\2\2\2\u00c8\23\3\2\2\2\u00c9\u00c7\3\2\2\2\u00ca\u00ce\7\24\2"+ + "\2\u00cb\u00cd\5\66\34\2\u00cc\u00cb\3\2\2\2\u00cd\u00d0\3\2\2\2\u00ce"+ + "\u00cc\3\2\2\2\u00ce\u00cf\3\2\2\2\u00cf\25\3\2\2\2\u00d0\u00ce\3\2\2"+ + "\2\u00d1\u00d3\7\6\2\2\u00d2\u00d4\5H%\2\u00d3\u00d2\3\2\2\2\u00d3\u00d4"+ + "\3\2\2\2\u00d4\u00d5\3\2\2\2\u00d5\u00d6\7\7\2\2\u00d6\27\3\2\2\2\u00d7"+ + "\u00d8\b\r\1\2\u00d8\u00d9\5\32\16\2\u00d9\u00e4\3\2\2\2\u00da\u00db\f"+ + "\4\2\2\u00db\u00e3\7\24\2\2\u00dc\u00dd\f\3\2\2\u00dd\u00df\7\6\2\2\u00de"+ + "\u00e0\5H%\2\u00df\u00de\3\2\2\2\u00df\u00e0\3\2\2\2\u00e0\u00e1\3\2\2"+ + "\2\u00e1\u00e3\7\7\2\2\u00e2\u00da\3\2\2\2\u00e2\u00dc\3\2\2\2\u00e3\u00e6"+ + "\3\2\2\2\u00e4\u00e2\3\2\2\2\u00e4\u00e5\3\2\2\2\u00e5\31\3\2\2\2\u00e6"+ + "\u00e4\3\2\2\2\u00e7\u00e8\b\16\1\2\u00e8\u00e9\7\b\2\2\u00e9\u00ea\5"+ + "\32\16\2\u00ea\u00eb\7\t\2\2\u00eb\u00f7\3\2\2\2\u00ec\u00f7\7T\2\2\u00ed"+ + "\u00ef\7S\2\2\u00ee\u00f0\7T\2\2\u00ef\u00ee\3\2\2\2\u00ef\u00f0\3\2\2"+ + "\2\u00f0\u00f7\3\2\2\2\u00f1\u00f7\5\36\20\2\u00f2\u00f7\5\34\17\2\u00f3"+ + "\u00f7\5$\23\2\u00f4\u00f7\5\"\22\2\u00f5\u00f7\7\3\2\2\u00f6\u00e7\3"+ + "\2\2\2\u00f6\u00ec\3\2\2\2\u00f6\u00ed\3\2\2\2\u00f6\u00f1\3\2\2\2\u00f6"+ + "\u00f2\3\2\2\2\u00f6\u00f3\3\2\2\2\u00f6\u00f4\3\2\2\2\u00f6\u00f5\3\2"+ + "\2\2\u00f7\u0103\3\2\2\2\u00f8\u00f9\f\t\2\2\u00f9\u00fb\7\6\2\2\u00fa"+ + "\u00fc\5H%\2\u00fb\u00fa\3\2\2\2\u00fb\u00fc\3\2\2\2\u00fc\u00fd\3\2\2"+ + "\2\u00fd\u0102\7\7\2\2\u00fe\u00ff\f\b\2\2\u00ff\u0100\7\b\2\2\u0100\u0102"+ + "\7\t\2\2\u0101\u00f8\3\2\2\2\u0101\u00fe\3\2\2\2\u0102\u0105\3\2\2\2\u0103"+ + "\u0101\3\2\2\2\u0103\u0104\3\2\2\2\u0104\33\3\2\2\2\u0105\u0103\3\2\2"+ + "\2\u0106\u0107\7G\2\2\u0107\u0108\7m\2\2\u0108\35\3\2\2\2\u0109\u010b"+ + "\7G\2\2\u010a\u010c\7m\2\2\u010b\u010a\3\2\2\2\u010b\u010c\3\2\2\2\u010c"+ + "\u010d\3\2\2\2\u010d\u010f\7\4\2\2\u010e\u0110\5 \21\2\u010f\u010e\3\2"+ + "\2\2\u0110\u0111\3\2\2\2\u0111\u010f\3\2\2\2\u0111\u0112\3\2\2\2\u0112"+ + "\u0113\3\2\2\2\u0113\u0114\7\5\2\2\u0114\37\3\2\2\2\u0115\u0116\5\n\6"+ + "\2\u0116\u0117\7\n\2\2\u0117!\3\2\2\2\u0118\u0119\7H\2\2\u0119\u011a\7"+ + "m\2\2\u011a#\3\2\2\2\u011b\u011d\7H\2\2\u011c\u011e\7m\2\2\u011d\u011c"+ + "\3\2\2\2\u011d\u011e\3\2\2\2\u011e\u011f\3\2\2\2\u011f\u0120\7\4\2\2\u0120"+ + "\u0121\5&\24\2\u0121\u0122\7\5\2\2\u0122%\3\2\2\2\u0123\u0124\b\24\1\2"+ + "\u0124\u0125\5(\25\2\u0125\u012b\3\2\2\2\u0126\u0127\f\3\2\2\u0127\u0128"+ + "\7\f\2\2\u0128\u012a\5(\25\2\u0129\u0126\3\2\2\2\u012a\u012d\3\2\2\2\u012b"+ + "\u0129\3\2\2\2\u012b\u012c\3\2\2\2\u012c\'\3\2\2\2\u012d\u012b\3\2\2\2"+ + "\u012e\u0131\7m\2\2\u012f\u0130\7\'\2\2\u0130\u0132\5H%\2\u0131\u012f"+ + "\3\2\2\2\u0131\u0132\3\2\2\2\u0132)\3\2\2\2\u0133\u0137\5\22\n\2\u0134"+ + "\u0136\5\24\13\2\u0135\u0134\3\2\2\2\u0136\u0139\3\2\2\2\u0137\u0135\3"+ + "\2\2\2\u0137\u0138\3\2\2\2\u0138\u013a\3\2\2\2\u0139\u0137\3\2\2\2\u013a"+ + "\u013b\7m\2\2\u013b\u013d\7\b\2\2\u013c\u013e\5.\30\2\u013d\u013c\3\2"+ + "\2\2\u013d\u013e\3\2\2\2\u013e\u013f\3\2\2\2\u013f\u0142\7\t\2\2\u0140"+ + "\u0143\5,\27\2\u0141\u0143\7\n\2\2\u0142\u0140\3\2\2\2\u0142\u0141\3\2"+ + "\2\2\u0143+\3\2\2\2\u0144\u0146\7\4\2\2\u0145\u0147\58\35\2\u0146\u0145"+ + "\3\2\2\2\u0146\u0147\3\2\2\2\u0147\u0148\3\2\2\2\u0148\u0149\7\5\2\2\u0149"+ + "-\3\2\2\2\u014a\u014f\5\60\31\2\u014b\u014c\7\f\2\2\u014c\u014e\5\60\31"+ + "\2\u014d\u014b\3\2\2\2\u014e\u0151\3\2\2\2\u014f\u014d\3\2\2\2\u014f\u0150"+ + "\3\2\2\2\u0150/\3\2\2\2\u0151\u014f\3\2\2\2\u0152\u0156\5\22\n\2\u0153"+ + "\u0155\5\24\13\2\u0154\u0153\3\2\2\2\u0155\u0158\3\2\2\2\u0156\u0154\3"+ + "\2\2\2\u0156\u0157\3\2\2\2\u0157\u0159\3\2\2\2\u0158\u0156\3\2\2\2\u0159"+ + "\u015a\7m\2\2\u015a\u015e\3\2\2\2\u015b\u015e\7T\2\2\u015c\u015e\7\16"+ + "\2\2\u015d\u0152\3\2\2\2\u015d\u015b\3\2\2\2\u015d\u015c\3\2\2\2\u015e"+ + "\61\3\2\2\2\u015f\u0160\7Y\2\2\u0160\u016c\7m\2\2\u0161\u0162\7\b\2\2"+ + "\u0162\u0167\5\64\33\2\u0163\u0164\7\f\2\2\u0164\u0166\5\64\33\2\u0165"+ + "\u0163\3\2\2\2\u0166\u0169\3\2\2\2\u0167\u0165\3\2\2\2\u0167\u0168\3\2"+ + "\2\2\u0168\u016a\3\2\2\2\u0169\u0167\3\2\2\2\u016a\u016b\7\t\2\2\u016b"+ + "\u016d\3\2\2\2\u016c\u0161\3\2\2\2\u016c\u016d\3\2\2\2\u016d\63\3\2\2"+ + "\2\u016e\u0176\7d\2\2\u016f\u0170\7d\2\2\u0170\u0171\7\r\2\2\u0171\u0176"+ + "\7d\2\2\u0172\u0176\7m\2\2\u0173\u0176\7n\2\2\u0174\u0176\7:\2\2\u0175"+ + "\u016e\3\2\2\2\u0175\u016f\3\2\2\2\u0175\u0172\3\2\2\2\u0175\u0173\3\2"+ + "\2\2\u0175\u0174\3\2\2\2\u0176\65\3\2\2\2\u0177\u01a4\7*\2\2\u0178\u0179"+ + "\7-\2\2\u0179\u017a\7\b\2\2\u017a\u017b\7d\2\2\u017b\u01a4\7\t\2\2\u017c"+ + "\u0180\7\62\2\2\u017d\u017e\7\b\2\2\u017e\u017f\7m\2\2\u017f\u0181\7\t"+ + "\2\2\u0180\u017d\3\2\2\2\u0180\u0181\3\2\2\2\u0181\u01a4\3\2\2\2\u0182"+ + "\u01a4\7\65\2\2\u0183\u01a4\7\66\2\2\u0184\u0185\7\64\2\2\u0185\u0186"+ + "\7\b\2\2\u0186\u0187\7d\2\2\u0187\u01a4\7\t\2\2\u0188\u01a4\7/\2\2\u0189"+ + "\u01a4\7\60\2\2\u018a\u01a4\7\67\2\2\u018b\u01a4\78\2\2\u018c\u01a4\7"+ + "+\2\2\u018d\u01a4\7,\2\2\u018e\u01a4\7.\2\2\u018f\u01a4\79\2\2\u0190\u0194"+ + "\7\61\2\2\u0191\u0192\7\b\2\2\u0192\u0193\7m\2\2\u0193\u0195\7\t\2\2\u0194"+ + "\u0191\3\2\2\2\u0194\u0195\3\2\2\2\u0195\u01a4\3\2\2\2\u0196\u0197\7\63"+ + "\2\2\u0197\u0198\7\b\2\2\u0198\u019d\5\64\33\2\u0199\u019a\7\f\2\2\u019a"+ + "\u019c\5\64\33\2\u019b\u0199\3\2\2\2\u019c\u019f\3\2\2\2\u019d\u019b\3"+ + "\2\2\2\u019d\u019e\3\2\2\2\u019e\u01a0\3\2\2\2\u019f\u019d\3\2\2\2\u01a0"+ + "\u01a1\7\t\2\2\u01a1\u01a4\3\2\2\2\u01a2\u01a4\7:\2\2\u01a3\u0177\3\2"+ + "\2\2\u01a3\u0178\3\2\2\2\u01a3\u017c\3\2\2\2\u01a3\u0182\3\2\2\2\u01a3"+ + "\u0183\3\2\2\2\u01a3\u0184\3\2\2\2\u01a3\u0188\3\2\2\2\u01a3\u0189\3\2"+ + "\2\2\u01a3\u018a\3\2\2\2\u01a3\u018b\3\2\2\2\u01a3\u018c\3\2\2\2\u01a3"+ + "\u018d\3\2\2\2\u01a3\u018e\3\2\2\2\u01a3\u018f\3\2\2\2\u01a3\u0190\3\2"+ + "\2\2\u01a3\u0196\3\2\2\2\u01a3\u01a2\3\2\2\2\u01a4\67\3\2\2\2\u01a5\u01a7"+ + "\5:\36\2\u01a6\u01a5\3\2\2\2\u01a7\u01a8\3\2\2\2\u01a8\u01a6\3\2\2\2\u01a8"+ + "\u01a9\3\2\2\2\u01a99\3\2\2\2\u01aa\u01ab\5\n\6\2\u01ab\u01ac\7\n\2\2"+ + "\u01ac\u0200\3\2\2\2\u01ad\u01af\7\4\2\2\u01ae\u01b0\58\35\2\u01af\u01ae"+ + "\3\2\2\2\u01af\u01b0\3\2\2\2\u01b0\u01b1\3\2\2\2\u01b1\u0200\7\5\2\2\u01b2"+ + "\u01b3\5F$\2\u01b3\u01b4\7\n\2\2\u01b4\u0200\3\2\2\2\u01b5\u01b6\7;\2"+ + "\2\u01b6\u01b7\7\b\2\2\u01b7\u01b8\5F$\2\u01b8\u01b9\7\t\2\2\u01b9\u01bc"+ + "\5:\36\2\u01ba\u01bb\7<\2\2\u01bb\u01bd\5:\36\2\u01bc\u01ba\3\2\2\2\u01bc"+ + "\u01bd\3\2\2\2\u01bd\u0200\3\2\2\2\u01be\u01c0\5\66\34\2\u01bf\u01be\3"+ + "\2\2\2\u01c0\u01c3\3\2\2\2\u01c1\u01bf\3\2\2\2\u01c1\u01c2\3\2\2\2\u01c2"+ + "\u01c4\3\2\2\2\u01c3\u01c1\3\2\2\2\u01c4\u01c5\7=\2\2\u01c5\u01c6\7\b"+ + "\2\2\u01c6\u01c7\5F$\2\u01c7\u01c8\7\t\2\2\u01c8\u01c9\5:\36\2\u01c9\u0200"+ + "\3\2\2\2\u01ca\u01cc\5\66\34\2\u01cb\u01ca\3\2\2\2\u01cc\u01cf\3\2\2\2"+ + "\u01cd\u01cb\3\2\2\2\u01cd\u01ce\3\2\2\2\u01ce\u01d0\3\2\2\2\u01cf\u01cd"+ + "\3\2\2\2\u01d0\u01d1\7>\2\2\u01d1\u01d2\5:\36\2\u01d2\u01d3\7=\2\2\u01d3"+ + "\u01d4\7\b\2\2\u01d4\u01d5\5F$\2\u01d5\u01d6\7\t\2\2\u01d6\u01d7\7\n\2"+ + "\2\u01d7\u0200\3\2\2\2\u01d8\u01da\5\66\34\2\u01d9\u01d8\3\2\2\2\u01da"+ + "\u01dd\3\2\2\2\u01db\u01d9\3\2\2\2\u01db\u01dc\3\2\2\2\u01dc\u01de\3\2"+ + "\2\2\u01dd\u01db\3\2\2\2\u01de\u01df\7?\2\2\u01df\u01e0\7\b\2\2\u01e0"+ + "\u01e1\5@!\2\u01e1\u01e2\7\t\2\2\u01e2\u01e3\5:\36\2\u01e3\u0200\3\2\2"+ + "\2\u01e4\u01e5\7@\2\2\u01e5\u01e6\7\b\2\2\u01e6\u01e7\5F$\2\u01e7\u01e8"+ + "\7\t\2\2\u01e8\u01e9\7\4\2\2\u01e9\u01ea\5<\37\2\u01ea\u01eb\7\5\2\2\u01eb"+ + "\u0200\3\2\2\2\u01ec\u01ee\7A\2\2\u01ed\u01ef\5F$\2\u01ee\u01ed\3\2\2"+ + "\2\u01ee\u01ef\3\2\2\2\u01ef\u01f0\3\2\2\2\u01f0\u0200\7\n\2\2\u01f1\u01f2"+ + "\7B\2\2\u01f2\u0200\7\n\2\2\u01f3\u01f4\7C\2\2\u01f4\u0200\7\n\2\2\u01f5"+ + "\u01f7\7D\2\2\u01f6\u01f8\5N(\2\u01f7\u01f6\3\2\2\2\u01f7\u01f8\3\2\2"+ + "\2\u01f8\u01f9\3\2\2\2\u01f9\u01fa\7\4\2\2\u01fa\u01fb\5R*\2\u01fb\u01fc"+ + "\7\u0086\2\2\u01fc\u0200\3\2\2\2\u01fd\u0200\5L\'\2\u01fe\u0200\7\n\2"+ + "\2\u01ff\u01aa\3\2\2\2\u01ff\u01ad\3\2\2\2\u01ff\u01b2\3\2\2\2\u01ff\u01b5"+ + "\3\2\2\2\u01ff\u01c1\3\2\2\2\u01ff\u01cd\3\2\2\2\u01ff\u01db\3\2\2\2\u01ff"+ + "\u01e4\3\2\2\2\u01ff\u01ec\3\2\2\2\u01ff\u01f1\3\2\2\2\u01ff\u01f3\3\2"+ + "\2\2\u01ff\u01f5\3\2\2\2\u01ff\u01fd\3\2\2\2\u01ff\u01fe\3\2\2\2\u0200"+ + ";\3\2\2\2\u0201\u0203\5> \2\u0202\u0201\3\2\2\2\u0203\u0204\3\2\2\2\u0204"+ + "\u0202\3\2\2\2\u0204\u0205\3\2\2\2\u0205\u020b\3\2\2\2\u0206\u0207\7E"+ + "\2\2\u0207\u0209\7\13\2\2\u0208\u020a\58\35\2\u0209\u0208\3\2\2\2\u0209"+ + "\u020a\3\2\2\2\u020a\u020c\3\2\2\2\u020b\u0206\3\2\2\2\u020b\u020c\3\2"+ + "\2\2\u020c=\3\2\2\2\u020d\u020e\7F\2\2\u020e\u020f\5H%\2\u020f\u0211\7"+ + "\13\2\2\u0210\u0212\58\35\2\u0211\u0210\3\2\2\2\u0211\u0212\3\2\2\2\u0212"+ + "?\3\2\2\2\u0213\u0214\5B\"\2\u0214\u0216\7\n\2\2\u0215\u0217\5D#\2\u0216"+ + "\u0215\3\2\2\2\u0216\u0217\3\2\2\2\u0217\u0218\3\2\2\2\u0218\u021a\7\n"+ + "\2\2\u0219\u021b\5F$\2\u021a\u0219\3\2\2\2\u021a\u021b\3\2\2\2\u021b\u022c"+ + "\3\2\2\2\u021c\u0220\5\22\n\2\u021d\u021f\5\24\13\2\u021e\u021d\3\2\2"+ + "\2\u021f\u0222\3\2\2\2\u0220\u021e\3\2\2\2\u0220\u0221\3\2\2\2\u0221\u0224"+ + "\3\2\2\2\u0222\u0220\3\2\2\2\u0223\u021c\3\2\2\2\u0223\u0224\3\2\2\2\u0224"+ + "\u0225\3\2\2\2\u0225\u0226\7m\2\2\u0226\u0227\7\13\2\2\u0227\u0228\5H"+ + "%\2\u0228\u0229\7\r\2\2\u0229\u022a\5H%\2\u022a\u022c\3\2\2\2\u022b\u0213"+ + "\3\2\2\2\u022b\u0223\3\2\2\2\u022cA\3\2\2\2\u022d\u022f\5\n\6\2\u022e"+ + "\u022d\3\2\2\2\u022e\u022f\3\2\2\2\u022f\u0232\3\2\2\2\u0230\u0232\5F"+ + "$\2\u0231\u022e\3\2\2\2\u0231\u0230\3\2\2\2\u0232C\3\2\2\2\u0233\u0234"+ + "\5F$\2\u0234E\3\2\2\2\u0235\u0236\b$\1\2\u0236\u0237\5H%\2\u0237\u023d"+ + "\3\2\2\2\u0238\u0239\f\3\2\2\u0239\u023a\7\f\2\2\u023a\u023c\5H%\2\u023b"+ + "\u0238\3\2\2\2\u023c\u023f\3\2\2\2\u023d\u023b\3\2\2\2\u023d\u023e\3\2"+ + "\2\2\u023eG\3\2\2\2\u023f\u023d\3\2\2\2\u0240\u0241\b%\1\2\u0241\u0242"+ + "\7\b\2\2\u0242\u0243\5F$\2\u0243\u0244\7\t\2\2\u0244\u0282\3\2\2\2\u0245"+ + "\u0246\7I\2\2\u0246\u0249\7\b\2\2\u0247\u024a\5H%\2\u0248\u024a\5\30\r"+ + "\2\u0249\u0247\3\2\2\2\u0249\u0248\3\2\2\2\u024a\u024b\3\2\2\2\u024b\u024c"+ + "\7\t\2\2\u024c\u0282\3\2\2\2\u024d\u024e\7J\2\2\u024e\u0251\7\b\2\2\u024f"+ + "\u0252\5H%\2\u0250\u0252\5\30\r\2\u0251\u024f\3\2\2\2\u0251\u0250\3\2"+ + "\2\2\u0252\u0253\3\2\2\2\u0253\u0254\7\t\2\2\u0254\u0282\3\2\2\2\u0255"+ + "\u0257\7K\2\2\u0256\u0258\7\b\2\2\u0257\u0256\3\2\2\2\u0257\u0258\3\2"+ + "\2\2\u0258\u0259\3\2\2\2\u0259\u025b\7m\2\2\u025a\u025c\7\t\2\2\u025b"+ + "\u025a\3\2\2\2\u025b\u025c\3\2\2\2\u025c\u0282\3\2\2\2\u025d\u025e\7\b"+ + "\2\2\u025e\u025f\5\30\r\2\u025f\u0260\7\t\2\2\u0260\u0261\5H%\32\u0261"+ + "\u0282\3\2\2\2\u0262\u0263\t\2\2\2\u0263\u0282\5H%\31\u0264\u0265\7\24"+ + "\2\2\u0265\u0282\5H%\27\u0266\u0267\t\3\2\2\u0267\u0282\5H%\26\u0268\u0269"+ + "\t\4\2\2\u0269\u0282\5H%\22\u026a\u026b\7\4\2\2\u026b\u0270\5H%\2\u026c"+ + "\u026d\7\f\2\2\u026d\u026f\5H%\2\u026e\u026c\3\2\2\2\u026f\u0272\3\2\2"+ + "\2\u0270\u026e\3\2\2\2\u0270\u0271\3\2\2\2\u0271\u0274\3\2\2\2\u0272\u0270"+ + "\3\2\2\2\u0273\u0275\7\f\2\2\u0274\u0273\3\2\2\2\u0274\u0275\3\2\2\2\u0275"+ + "\u0276\3\2\2\2\u0276\u0277\7\5\2\2\u0277\u0282\3\2\2\2\u0278\u0282\7m"+ + "\2\2\u0279\u0282\7d\2\2\u027a\u027c\7n\2\2\u027b\u027a\3\2\2\2\u027c\u027d"+ + "\3\2\2\2\u027d\u027b\3\2\2\2\u027d\u027e\3\2\2\2\u027e\u0282\3\2\2\2\u027f"+ + "\u0282\7o\2\2\u0280\u0282\7U\2\2\u0281\u0240\3\2\2\2\u0281\u0245\3\2\2"+ + "\2\u0281\u024d\3\2\2\2\u0281\u0255\3\2\2\2\u0281\u025d\3\2\2\2\u0281\u0262"+ + "\3\2\2\2\u0281\u0264\3\2\2\2\u0281\u0266\3\2\2\2\u0281\u0268\3\2\2\2\u0281"+ + "\u026a\3\2\2\2\u0281\u0278\3\2\2\2\u0281\u0279\3\2\2\2\u0281\u027b\3\2"+ + "\2\2\u0281\u027f\3\2\2\2\u0281\u0280\3\2\2\2\u0282\u02bf\3\2\2\2\u0283"+ + "\u0284\f\25\2\2\u0284\u0285\t\5\2\2\u0285\u02be\5H%\26\u0286\u0287\f\24"+ + "\2\2\u0287\u0288\t\6\2\2\u0288\u02be\5H%\25\u0289\u028a\f\23\2\2\u028a"+ + "\u028b\t\7\2\2\u028b\u02be\5H%\24\u028c\u028d\f\21\2\2\u028d\u028e\t\b"+ + "\2\2\u028e\u02be\5H%\22\u028f\u0290\f\20\2\2\u0290\u0291\7\31\2\2\u0291"+ + "\u02be\5H%\21\u0292\u0293\f\17\2\2\u0293\u0294\7\33\2\2\u0294\u02be\5"+ + "H%\20\u0295\u0296\f\16\2\2\u0296\u0297\7\34\2\2\u0297\u02be\5H%\17\u0298"+ + "\u0299\f\r\2\2\u0299\u029a\7%\2\2\u029a\u02be\5H%\16\u029b\u029c\f\f\2"+ + "\2\u029c\u029d\7&\2\2\u029d\u02be\5H%\r\u029e\u029f\f\13\2\2\u029f\u02a0"+ + "\7\17\2\2\u02a0\u02a1\5H%\2\u02a1\u02a2\7\13\2\2\u02a2\u02a3\5H%\f\u02a3"+ + "\u02be\3\2\2\2\u02a4\u02a5\f\n\2\2\u02a5\u02a6\7\'\2\2\u02a6\u02be\5H"+ + "%\n\u02a7\u02a8\f\t\2\2\u02a8\u02a9\7(\2\2\u02a9\u02be\5H%\t\u02aa\u02ab"+ + "\f!\2\2\u02ab\u02ac\7\20\2\2\u02ac\u02be\7m\2\2\u02ad\u02ae\f \2\2\u02ae"+ + "\u02af\7\21\2\2\u02af\u02be\7m\2\2\u02b0\u02b1\f\37\2\2\u02b1\u02b3\7"+ + "\b\2\2\u02b2\u02b4\5J&\2\u02b3\u02b2\3\2\2\2\u02b3\u02b4\3\2\2\2\u02b4"+ + "\u02b5\3\2\2\2\u02b5\u02be\7\t\2\2\u02b6\u02b7\f\33\2\2\u02b7\u02b8\7"+ + "\6\2\2\u02b8\u02b9\5F$\2\u02b9\u02ba\7\7\2\2\u02ba\u02be\3\2\2\2\u02bb"+ + "\u02bc\f\30\2\2\u02bc\u02be\t\2\2\2\u02bd\u0283\3\2\2\2\u02bd\u0286\3"+ + "\2\2\2\u02bd\u0289\3\2\2\2\u02bd\u028c\3\2\2\2\u02bd\u028f\3\2\2\2\u02bd"+ + "\u0292\3\2\2\2\u02bd\u0295\3\2\2\2\u02bd\u0298\3\2\2\2\u02bd\u029b\3\2"+ + "\2\2\u02bd\u029e\3\2\2\2\u02bd\u02a4\3\2\2\2\u02bd\u02a7\3\2\2\2\u02bd"+ + "\u02aa\3\2\2\2\u02bd\u02ad\3\2\2\2\u02bd\u02b0\3\2\2\2\u02bd\u02b6\3\2"+ + "\2\2\u02bd\u02bb\3\2\2\2\u02be\u02c1\3\2\2\2\u02bf\u02bd\3\2\2\2\u02bf"+ + "\u02c0\3\2\2\2\u02c0I\3\2\2\2\u02c1\u02bf\3\2\2\2\u02c2\u02c7\5H%\2\u02c3"+ + "\u02c4\7\f\2\2\u02c4\u02c6\5H%\2\u02c5\u02c3\3\2\2\2\u02c6\u02c9\3\2\2"+ + "\2\u02c7\u02c5\3\2\2\2\u02c7\u02c8\3\2\2\2\u02c8K\3\2\2\2\u02c9\u02c7"+ + "\3\2\2\2\u02ca\u02cc\7L\2\2\u02cb\u02cd\5N(\2\u02cc\u02cb\3\2\2\2\u02cc"+ + "\u02cd\3\2\2\2\u02cd\u02ce\3\2\2\2\u02ce\u02cf\7V\2\2\u02cfM\3\2\2\2\u02d0"+ + "\u02d1\7\b\2\2\u02d1\u02d6\5P)\2\u02d2\u02d3\7\f\2\2\u02d3\u02d5\5P)\2"+ + "\u02d4\u02d2\3\2\2\2\u02d5\u02d8\3\2\2\2\u02d6\u02d4\3\2\2\2\u02d6\u02d7"+ + "\3\2\2\2\u02d7\u02d9\3\2\2\2\u02d8\u02d6\3\2\2\2\u02d9\u02da\7\t\2\2\u02da"+ + "O\3\2\2\2\u02db\u02dc\7M\2\2\u02dc\u02e6\7n\2\2\u02dd\u02de\7N\2\2\u02de"+ + "\u02e6\7m\2\2\u02df\u02e0\7O\2\2\u02e0\u02e6\7n\2\2\u02e1\u02e2\7P\2\2"+ + "\u02e2\u02e6\5H%\2\u02e3\u02e4\7Q\2\2\u02e4\u02e6\5H%\2\u02e5\u02db\3"+ + "\2\2\2\u02e5\u02dd\3\2\2\2\u02e5\u02df\3\2\2\2\u02e5\u02e1\3\2\2\2\u02e5"+ + "\u02e3\3\2\2\2\u02e6Q\3\2\2\2\u02e7\u02e9\5T+\2\u02e8\u02e7\3\2\2\2\u02e9"+ + "\u02ec\3\2\2\2\u02ea\u02e8\3\2\2\2\u02ea\u02eb\3\2\2\2\u02ebS\3\2\2\2"+ + "\u02ec\u02ea\3\2\2\2\u02ed\u02f1\5V,\2\u02ee\u02f1\5X-\2\u02ef\u02f1\5"+ + "Z.\2\u02f0\u02ed\3\2\2\2\u02f0\u02ee\3\2\2\2\u02f0\u02ef\3\2\2\2\u02f1"+ + "U\3\2\2\2\u02f2\u02f3\7\u0093\2\2\u02f3\u02f7\7v\2\2\u02f4\u02f5\7\u0092"+ + "\2\2\u02f5\u02f7\7v\2\2\u02f6\u02f2\3\2\2\2\u02f6\u02f4\3\2\2\2\u02f7"+ + "W\3\2\2\2\u02f8\u02fa\7t\2\2\u02f9\u02fb\5\\/\2\u02fa\u02f9\3\2\2\2\u02fa"+ + "\u02fb\3\2\2\2\u02fbY\3\2\2\2\u02fc\u02fd\7s\2\2\u02fd\u0302\5^\60\2\u02fe"+ + "\u02ff\7w\2\2\u02ff\u0301\5^\60\2\u0300\u02fe\3\2\2\2\u0301\u0304\3\2"+ + "\2\2\u0302\u0300\3\2\2\2\u0302\u0303\3\2\2\2\u0303[\3\2\2\2\u0304\u0302"+ + "\3\2\2\2\u0305\u0333\5^\60\2\u0306\u0307\7u\2\2\u0307\u0333\5^\60\2\u0308"+ + "\u0309\5^\60\2\u0309\u030a\7w\2\2\u030a\u030b\5^\60\2\u030b\u0333\3\2"+ + "\2\2\u030c\u030d\7x\2\2\u030d\u030e\5^\60\2\u030e\u030f\7y\2\2\u030f\u0310"+ + "\7w\2\2\u0310\u0311\7\u0093\2\2\u0311\u0333\3\2\2\2\u0312\u0313\7x\2\2"+ + "\u0313\u0314\7x\2\2\u0314\u0315\5^\60\2\u0315\u0316\7y\2\2\u0316\u0317"+ + "\7y\2\2\u0317\u0318\7w\2\2\u0318\u0319\7\u0093\2\2\u0319\u0333\3\2\2\2"+ + "\u031a\u031b\7x\2\2\u031b\u031c\5^\60\2\u031c\u031d\7w\2\2\u031d\u031e"+ + "\7\u0093\2\2\u031e\u031f\7y\2\2\u031f\u0320\7w\2\2\u0320\u0321\7\u0093"+ + "\2\2\u0321\u0333\3\2\2\2\u0322\u0323\7x\2\2\u0323\u0324\5^\60\2\u0324"+ + "\u0325\7w\2\2\u0325\u0326\7\u0093\2\2\u0326\u0327\7y\2\2\u0327\u0333\3"+ + "\2\2\2\u0328\u0329\7x\2\2\u0329\u032a\5^\60\2\u032a\u032b\7y\2\2\u032b"+ + "\u0333\3\2\2\2\u032c\u032d\7x\2\2\u032d\u032e\7x\2\2\u032e\u032f\5^\60"+ + "\2\u032f\u0330\7y\2\2\u0330\u0331\7y\2\2\u0331\u0333\3\2\2\2\u0332\u0305"+ + "\3\2\2\2\u0332\u0306\3\2\2\2\u0332\u0308\3\2\2\2\u0332\u030c\3\2\2\2\u0332"+ + "\u0312\3\2\2\2\u0332\u031a\3\2\2\2\u0332\u0322\3\2\2\2\u0332\u0328\3\2"+ + "\2\2\u0332\u032c\3\2\2\2\u0333]\3\2\2\2\u0334\u0335\b\60\1\2\u0335\u0336"+ + "\7z\2\2\u0336\u0337\5^\60\2\u0337\u0338\7{\2\2\u0338\u0343\3\2\2\2\u0339"+ + "\u033a\t\t\2\2\u033a\u0343\5^\60\n\u033b\u0343\7\u0093\2\2\u033c\u0343"+ + "\7\u0091\2\2\u033d\u033e\7\u0085\2\2\u033e\u033f\7\u0093\2\2\u033f\u0343"+ + "\7\u0086\2\2\u0340\u0343\7\u0087\2\2\u0341\u0343\7\u0090\2\2\u0342\u0334"+ + "\3\2\2\2\u0342\u0339\3\2\2\2\u0342\u033b\3\2\2\2\u0342\u033c\3\2\2\2\u0342"+ + "\u033d\3\2\2\2\u0342\u0340\3\2\2\2\u0342\u0341\3\2\2\2\u0343\u0352\3\2"+ + "\2\2\u0344\u0345\f\f\2\2\u0345\u0346\7|\2\2\u0346\u0351\5^\60\r\u0347"+ + "\u0348\f\13\2\2\u0348\u0349\t\n\2\2\u0349\u0351\5^\60\f\u034a\u034b\f"+ + "\t\2\2\u034b\u034c\t\13\2\2\u034c\u0351\5^\60\n\u034d\u034e\f\b\2\2\u034e"+ + "\u034f\t\f\2\2\u034f\u0351\5^\60\t\u0350\u0344\3\2\2\2\u0350\u0347\3\2"+ + "\2\2\u0350\u034a\3\2\2\2\u0350\u034d\3\2\2\2\u0351\u0354\3\2\2\2\u0352"+ + "\u0350\3\2\2\2\u0352\u0353\3\2\2\2\u0353_\3\2\2\2\u0354\u0352\3\2\2\2"+ + "Yiz\u0083\u008d\u0093\u009b\u00a2\u00ab\u00b0\u00b6\u00bb\u00c0\u00c7"+ "\u00ce\u00d3\u00df\u00e2\u00e4\u00ef\u00f6\u00fb\u0101\u0103\u010b\u0111"+ - "\u011d\u012b\u0131\u0137\u013d\u0142\u0146\u014f\u0156\u015d\u0186\u01b2"+ - "\u01bf\u01c3\u01c8\u01d3\u01e7\u01f0\u01f6\u01fb\u0202\u020f\u0214\u0220"+ - "\u022e\u0241\u024a\u0252\u0257\u025c\u025e\u0264\u0269\u026d\u0273\u0276"+ - "\u027e\u0281\u0284\u0290\u029c\u02a4\u02aa\u02ae\u02c3\u02c7\u02d0\u02d4"+ - "\u0306\u0310\u0312\u031a\u031f\u0329\u0338\u033d\u0343\u0349\u034d\u0355"+ - "\u0385\u0395\u03a3\u03a5"; + "\u011d\u012b\u0131\u0137\u013d\u0142\u0146\u014f\u0156\u015d\u0167\u016c"+ + "\u0175\u0180\u0194\u019d\u01a3\u01a8\u01af\u01bc\u01c1\u01cd\u01db\u01ee"+ + "\u01f7\u01ff\u0204\u0209\u020b\u0211\u0216\u021a\u0220\u0223\u022b\u022e"+ + "\u0231\u023d\u0249\u0251\u0257\u025b\u0270\u0274\u027d\u0281\u02b3\u02bd"+ + "\u02bf\u02c7\u02cc\u02d6\u02e5\u02ea\u02f0\u02f6\u02fa\u0302\u0332\u0342"+ + "\u0350\u0352"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.tokens b/src/main/java/dk/camelot64/kickc/parser/KickCParser.tokens index a7de44e5b..e89e29078 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.tokens +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.tokens @@ -37,133 +37,120 @@ LOGIC_OR=36 ASSIGN=37 ASSIGN_COMPOUND=38 TYPEDEF=39 -RESERVE=40 -PC=41 -TARGET=42 -LINK=43 -EXTENSION=44 -EMULATOR=45 -CPU=46 -CODESEG=47 -DATASEG=48 -ENCODING=49 -CONST=50 -EXTERN=51 -EXPORT=52 -ALIGN=53 -INLINE=54 -VOLATILE=55 -STATIC=56 -INTERRUPT=57 -REGISTER=58 -LOCAL_RESERVE=59 -ADDRESS=60 -ADDRESS_ZEROPAGE=61 -ADDRESS_MAINMEM=62 -FORM_SSA=63 -FORM_MA=64 -INTRINSIC=65 -CALLING=66 -CALLINGCONVENTION=67 -VARMODEL=68 -CONSTRUCTORFOR=69 -IF=70 -ELSE=71 -WHILE=72 -DO=73 -FOR=74 -SWITCH=75 -RETURN=76 -BREAK=77 -CONTINUE=78 -ASM=79 -DEFAULT=80 -CASE=81 -STRUCT=82 -ENUM=83 -SIZEOF=84 -TYPEID=85 -DEFINED=86 -KICKASM=87 -RESOURCE=88 -USES=89 -CLOBBERS=90 -BYTES=91 -CYCLES=92 -LOGIC_NOT=93 -SIGNEDNESS=94 -SIMPLETYPE=95 -BOOLEAN=96 -KICKASM_BODY=97 -IMPORT=98 -INCLUDE=99 -PRAGMA=100 -DEFINE=101 -DEFINE_CONTINUE=102 -UNDEF=103 -IFDEF=104 -IFNDEF=105 -IFIF=106 -ELIF=107 -IFELSE=108 -ENDIF=109 -ERROR=110 -NUMBER=111 -NUMFLOAT=112 -BINFLOAT=113 -DECFLOAT=114 -HEXFLOAT=115 -NUMINT=116 -BININTEGER=117 -DECINTEGER=118 -HEXINTEGER=119 -NAME=120 -STRING=121 -CHAR=122 -WS=123 -COMMENT_LINE=124 -COMMENT_BLOCK=125 -ASM_BYTE=126 -ASM_MNEMONIC=127 -ASM_IMM=128 -ASM_COLON=129 -ASM_COMMA=130 -ASM_PAR_BEGIN=131 -ASM_PAR_END=132 -ASM_BRACKET_BEGIN=133 -ASM_BRACKET_END=134 -ASM_DOT=135 -ASM_SHIFT_LEFT=136 -ASM_SHIFT_RIGHT=137 -ASM_PLUS=138 -ASM_MINUS=139 -ASM_LESS_THAN=140 -ASM_GREATER_THAN=141 -ASM_MULTIPLY=142 -ASM_DIVIDE=143 -ASM_CURLY_BEGIN=144 -ASM_CURLY_END=145 -ASM_NUMBER=146 -ASM_NUMFLOAT=147 -ASM_BINFLOAT=148 -ASM_DECFLOAT=149 -ASM_HEXFLOAT=150 -ASM_NUMINT=151 -ASM_BININTEGER=152 -ASM_DECINTEGER=153 -ASM_HEXINTEGER=154 -ASM_CHAR=155 -ASM_MULTI_REL=156 -ASM_MULTI_NAME=157 -ASM_NAME=158 -ASM_WS=159 -ASM_COMMENT_LINE=160 -ASM_COMMENT_BLOCK=161 -IMPORT_SYSTEMFILE=162 -IMPORT_LOCALFILE=163 -IMPORT_WS=164 -IMPORT_COMMENT_LINE=165 -IMPORT_COMMENT_BLOCK=166 +CONST=40 +EXTERN=41 +EXPORT=42 +ALIGN=43 +INLINE=44 +VOLATILE=45 +STATIC=46 +INTERRUPT=47 +REGISTER=48 +LOCAL_RESERVE=49 +ADDRESS=50 +ADDRESS_ZEROPAGE=51 +ADDRESS_MAINMEM=52 +FORM_SSA=53 +FORM_MA=54 +INTRINSIC=55 +CALLINGCONVENTION=56 +IF=57 +ELSE=58 +WHILE=59 +DO=60 +FOR=61 +SWITCH=62 +RETURN=63 +BREAK=64 +CONTINUE=65 +ASM=66 +DEFAULT=67 +CASE=68 +STRUCT=69 +ENUM=70 +SIZEOF=71 +TYPEID=72 +DEFINED=73 +KICKASM=74 +RESOURCE=75 +USES=76 +CLOBBERS=77 +BYTES=78 +CYCLES=79 +LOGIC_NOT=80 +SIGNEDNESS=81 +SIMPLETYPE=82 +BOOLEAN=83 +KICKASM_BODY=84 +IMPORT=85 +INCLUDE=86 +PRAGMA=87 +DEFINE=88 +DEFINE_CONTINUE=89 +UNDEF=90 +IFDEF=91 +IFNDEF=92 +IFIF=93 +ELIF=94 +IFELSE=95 +ENDIF=96 +ERROR=97 +NUMBER=98 +NUMFLOAT=99 +BINFLOAT=100 +DECFLOAT=101 +HEXFLOAT=102 +NUMINT=103 +BININTEGER=104 +DECINTEGER=105 +HEXINTEGER=106 +NAME=107 +STRING=108 +CHAR=109 +WS=110 +COMMENT_LINE=111 +COMMENT_BLOCK=112 +ASM_BYTE=113 +ASM_MNEMONIC=114 +ASM_IMM=115 +ASM_COLON=116 +ASM_COMMA=117 +ASM_PAR_BEGIN=118 +ASM_PAR_END=119 +ASM_BRACKET_BEGIN=120 +ASM_BRACKET_END=121 +ASM_DOT=122 +ASM_SHIFT_LEFT=123 +ASM_SHIFT_RIGHT=124 +ASM_PLUS=125 +ASM_MINUS=126 +ASM_LESS_THAN=127 +ASM_GREATER_THAN=128 +ASM_MULTIPLY=129 +ASM_DIVIDE=130 +ASM_CURLY_BEGIN=131 +ASM_CURLY_END=132 +ASM_NUMBER=133 +ASM_NUMFLOAT=134 +ASM_BINFLOAT=135 +ASM_DECFLOAT=136 +ASM_HEXFLOAT=137 +ASM_NUMINT=138 +ASM_BININTEGER=139 +ASM_DECINTEGER=140 +ASM_HEXINTEGER=141 +ASM_CHAR=142 +ASM_MULTI_REL=143 +ASM_MULTI_NAME=144 +ASM_NAME=145 +ASM_WS=146 +ASM_COMMENT_LINE=147 +ASM_COMMENT_BLOCK=148 +IMPORT_SYSTEMFILE=149 +IMPORT_LOCALFILE=150 +IMPORT_WS=151 +IMPORT_COMMENT_LINE=152 +IMPORT_COMMENT_BLOCK=153 ';'=8 '..'=11 '...'=12 @@ -184,70 +171,57 @@ IMPORT_COMMENT_BLOCK=166 '||'=36 '='=37 'typedef'=39 -'zp_reserve'=40 -'pc'=41 -'target'=42 -'link'=43 -'extension'=44 -'emulator'=45 -'cpu'=46 -'code_seg'=47 -'data_seg'=48 -'encoding'=49 -'const'=50 -'extern'=51 -'export'=52 -'align'=53 -'inline'=54 -'volatile'=55 -'static'=56 -'interrupt'=57 -'register'=58 -'__zp_reserve'=59 -'__address'=60 -'__zp'=61 -'__mem'=62 -'__ssa'=63 -'__ma'=64 -'__intrinsic'=65 -'calling'=66 -'var_model'=68 -'constructor_for'=69 -'if'=70 -'else'=71 -'while'=72 -'do'=73 -'for'=74 -'switch'=75 -'return'=76 -'break'=77 -'continue'=78 -'asm'=79 -'default'=80 -'case'=81 -'struct'=82 -'enum'=83 -'sizeof'=84 -'typeid'=85 -'defined'=86 -'kickasm'=87 -'resource'=88 -'uses'=89 -'clobbers'=90 -'bytes'=91 -'cycles'=92 -'!'=93 -'#import'=98 -'#include'=99 -'#pragma'=100 -'#define'=101 -'#undef'=103 -'#ifdef'=104 -'#ifndef'=105 -'#if'=106 -'#elif'=107 -'#else'=108 -'#endif'=109 -'#error'=110 -'.byte'=126 -'#'=128 +'const'=40 +'extern'=41 +'export'=42 +'align'=43 +'inline'=44 +'volatile'=45 +'static'=46 +'interrupt'=47 +'register'=48 +'__zp_reserve'=49 +'__address'=50 +'__zp'=51 +'__mem'=52 +'__ssa'=53 +'__ma'=54 +'__intrinsic'=55 +'if'=57 +'else'=58 +'while'=59 +'do'=60 +'for'=61 +'switch'=62 +'return'=63 +'break'=64 +'continue'=65 +'asm'=66 +'default'=67 +'case'=68 +'struct'=69 +'enum'=70 +'sizeof'=71 +'typeid'=72 +'defined'=73 +'kickasm'=74 +'resource'=75 +'uses'=76 +'clobbers'=77 +'bytes'=78 +'cycles'=79 +'!'=80 +'#import'=85 +'#include'=86 +'#pragma'=87 +'#define'=88 +'#undef'=90 +'#ifdef'=91 +'#ifndef'=92 +'#if'=93 +'#elif'=94 +'#else'=95 +'#endif'=96 +'#error'=97 +'.byte'=113 +'#'=115 diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java b/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java index a3fbffd80..2798d5483 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java @@ -474,169 +474,73 @@ public class KickCParserBaseListener implements KickCParserListener { * *

The default implementation does nothing.

*/ - @Override public void enterGlobalDirectivePlatform(KickCParser.GlobalDirectivePlatformContext ctx) { } + @Override public void enterPragma(KickCParser.PragmaContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitGlobalDirectivePlatform(KickCParser.GlobalDirectivePlatformContext ctx) { } + @Override public void exitPragma(KickCParser.PragmaContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterGlobalDirectiveCpu(KickCParser.GlobalDirectiveCpuContext ctx) { } + @Override public void enterPragmaParamNumber(KickCParser.PragmaParamNumberContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitGlobalDirectiveCpu(KickCParser.GlobalDirectiveCpuContext ctx) { } + @Override public void exitPragmaParamNumber(KickCParser.PragmaParamNumberContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterGlobalDirectiveLinkScript(KickCParser.GlobalDirectiveLinkScriptContext ctx) { } + @Override public void enterPragmaParamRange(KickCParser.PragmaParamRangeContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitGlobalDirectiveLinkScript(KickCParser.GlobalDirectiveLinkScriptContext ctx) { } + @Override public void exitPragmaParamRange(KickCParser.PragmaParamRangeContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterGlobalDirectiveExtension(KickCParser.GlobalDirectiveExtensionContext ctx) { } + @Override public void enterPragmaParamName(KickCParser.PragmaParamNameContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitGlobalDirectiveExtension(KickCParser.GlobalDirectiveExtensionContext ctx) { } + @Override public void exitPragmaParamName(KickCParser.PragmaParamNameContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterGlobalDirectiveEmulator(KickCParser.GlobalDirectiveEmulatorContext ctx) { } + @Override public void enterPragmaParamString(KickCParser.PragmaParamStringContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitGlobalDirectiveEmulator(KickCParser.GlobalDirectiveEmulatorContext ctx) { } + @Override public void exitPragmaParamString(KickCParser.PragmaParamStringContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterGlobalDirectiveReserve(KickCParser.GlobalDirectiveReserveContext ctx) { } + @Override public void enterPragmaParamCallingConvention(KickCParser.PragmaParamCallingConventionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitGlobalDirectiveReserve(KickCParser.GlobalDirectiveReserveContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void enterGlobalDirectivePc(KickCParser.GlobalDirectivePcContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void exitGlobalDirectivePc(KickCParser.GlobalDirectivePcContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void enterGlobalDirectiveCodeSeg(KickCParser.GlobalDirectiveCodeSegContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void exitGlobalDirectiveCodeSeg(KickCParser.GlobalDirectiveCodeSegContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void enterGlobalDirectiveDataSeg(KickCParser.GlobalDirectiveDataSegContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void exitGlobalDirectiveDataSeg(KickCParser.GlobalDirectiveDataSegContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void enterGlobalDirectiveEncoding(KickCParser.GlobalDirectiveEncodingContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void exitGlobalDirectiveEncoding(KickCParser.GlobalDirectiveEncodingContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void enterGlobalDirectiveCalling(KickCParser.GlobalDirectiveCallingContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void exitGlobalDirectiveCalling(KickCParser.GlobalDirectiveCallingContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void enterGlobalDirectiveVarModel(KickCParser.GlobalDirectiveVarModelContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void exitGlobalDirectiveVarModel(KickCParser.GlobalDirectiveVarModelContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void enterGlobalDirectiveConstructorFor(KickCParser.GlobalDirectiveConstructorForContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void exitGlobalDirectiveConstructorFor(KickCParser.GlobalDirectiveConstructorForContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void enterDirectiveReserveParam(KickCParser.DirectiveReserveParamContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void exitDirectiveReserveParam(KickCParser.DirectiveReserveParamContext ctx) { } + @Override public void exitPragmaParamCallingConvention(KickCParser.PragmaParamCallingConventionContext ctx) { } /** * {@inheritDoc} * diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseVisitor.java b/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseVisitor.java index d847beade..c1f26b7e1 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseVisitor.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseVisitor.java @@ -285,98 +285,42 @@ public class KickCParserBaseVisitor extends AbstractParseTreeVisitor imple *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitGlobalDirectivePlatform(KickCParser.GlobalDirectivePlatformContext ctx) { return visitChildren(ctx); } + @Override public T visitPragma(KickCParser.PragmaContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitGlobalDirectiveCpu(KickCParser.GlobalDirectiveCpuContext ctx) { return visitChildren(ctx); } + @Override public T visitPragmaParamNumber(KickCParser.PragmaParamNumberContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitGlobalDirectiveLinkScript(KickCParser.GlobalDirectiveLinkScriptContext ctx) { return visitChildren(ctx); } + @Override public T visitPragmaParamRange(KickCParser.PragmaParamRangeContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitGlobalDirectiveExtension(KickCParser.GlobalDirectiveExtensionContext ctx) { return visitChildren(ctx); } + @Override public T visitPragmaParamName(KickCParser.PragmaParamNameContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitGlobalDirectiveEmulator(KickCParser.GlobalDirectiveEmulatorContext ctx) { return visitChildren(ctx); } + @Override public T visitPragmaParamString(KickCParser.PragmaParamStringContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitGlobalDirectiveReserve(KickCParser.GlobalDirectiveReserveContext ctx) { return visitChildren(ctx); } - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override public T visitGlobalDirectivePc(KickCParser.GlobalDirectivePcContext ctx) { return visitChildren(ctx); } - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override public T visitGlobalDirectiveCodeSeg(KickCParser.GlobalDirectiveCodeSegContext ctx) { return visitChildren(ctx); } - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override public T visitGlobalDirectiveDataSeg(KickCParser.GlobalDirectiveDataSegContext ctx) { return visitChildren(ctx); } - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override public T visitGlobalDirectiveEncoding(KickCParser.GlobalDirectiveEncodingContext ctx) { return visitChildren(ctx); } - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override public T visitGlobalDirectiveCalling(KickCParser.GlobalDirectiveCallingContext ctx) { return visitChildren(ctx); } - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override public T visitGlobalDirectiveVarModel(KickCParser.GlobalDirectiveVarModelContext ctx) { return visitChildren(ctx); } - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override public T visitGlobalDirectiveConstructorFor(KickCParser.GlobalDirectiveConstructorForContext ctx) { return visitChildren(ctx); } - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override public T visitDirectiveReserveParam(KickCParser.DirectiveReserveParamContext ctx) { return visitChildren(ctx); } + @Override public T visitPragmaParamCallingConvention(KickCParser.PragmaParamCallingConventionContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParserListener.java b/src/main/java/dk/camelot64/kickc/parser/KickCParserListener.java index 16ee0d582..4b7ec662c 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParserListener.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserListener.java @@ -426,171 +426,75 @@ public interface KickCParserListener extends ParseTreeListener { */ void exitParameterDeclList(KickCParser.ParameterDeclListContext ctx); /** - * Enter a parse tree produced by the {@code globalDirectivePlatform} - * labeled alternative in {@link KickCParser#globalDirective}. + * Enter a parse tree produced by {@link KickCParser#pragma}. * @param ctx the parse tree */ - void enterGlobalDirectivePlatform(KickCParser.GlobalDirectivePlatformContext ctx); + void enterPragma(KickCParser.PragmaContext ctx); /** - * Exit a parse tree produced by the {@code globalDirectivePlatform} - * labeled alternative in {@link KickCParser#globalDirective}. + * Exit a parse tree produced by {@link KickCParser#pragma}. * @param ctx the parse tree */ - void exitGlobalDirectivePlatform(KickCParser.GlobalDirectivePlatformContext ctx); + void exitPragma(KickCParser.PragmaContext ctx); /** - * Enter a parse tree produced by the {@code globalDirectiveCpu} - * labeled alternative in {@link KickCParser#globalDirective}. + * Enter a parse tree produced by the {@code pragmaParamNumber} + * labeled alternative in {@link KickCParser#pragmaParam}. * @param ctx the parse tree */ - void enterGlobalDirectiveCpu(KickCParser.GlobalDirectiveCpuContext ctx); + void enterPragmaParamNumber(KickCParser.PragmaParamNumberContext ctx); /** - * Exit a parse tree produced by the {@code globalDirectiveCpu} - * labeled alternative in {@link KickCParser#globalDirective}. + * Exit a parse tree produced by the {@code pragmaParamNumber} + * labeled alternative in {@link KickCParser#pragmaParam}. * @param ctx the parse tree */ - void exitGlobalDirectiveCpu(KickCParser.GlobalDirectiveCpuContext ctx); + void exitPragmaParamNumber(KickCParser.PragmaParamNumberContext ctx); /** - * Enter a parse tree produced by the {@code globalDirectiveLinkScript} - * labeled alternative in {@link KickCParser#globalDirective}. + * Enter a parse tree produced by the {@code pragmaParamRange} + * labeled alternative in {@link KickCParser#pragmaParam}. * @param ctx the parse tree */ - void enterGlobalDirectiveLinkScript(KickCParser.GlobalDirectiveLinkScriptContext ctx); + void enterPragmaParamRange(KickCParser.PragmaParamRangeContext ctx); /** - * Exit a parse tree produced by the {@code globalDirectiveLinkScript} - * labeled alternative in {@link KickCParser#globalDirective}. + * Exit a parse tree produced by the {@code pragmaParamRange} + * labeled alternative in {@link KickCParser#pragmaParam}. * @param ctx the parse tree */ - void exitGlobalDirectiveLinkScript(KickCParser.GlobalDirectiveLinkScriptContext ctx); + void exitPragmaParamRange(KickCParser.PragmaParamRangeContext ctx); /** - * Enter a parse tree produced by the {@code globalDirectiveExtension} - * labeled alternative in {@link KickCParser#globalDirective}. + * Enter a parse tree produced by the {@code pragmaParamName} + * labeled alternative in {@link KickCParser#pragmaParam}. * @param ctx the parse tree */ - void enterGlobalDirectiveExtension(KickCParser.GlobalDirectiveExtensionContext ctx); + void enterPragmaParamName(KickCParser.PragmaParamNameContext ctx); /** - * Exit a parse tree produced by the {@code globalDirectiveExtension} - * labeled alternative in {@link KickCParser#globalDirective}. + * Exit a parse tree produced by the {@code pragmaParamName} + * labeled alternative in {@link KickCParser#pragmaParam}. * @param ctx the parse tree */ - void exitGlobalDirectiveExtension(KickCParser.GlobalDirectiveExtensionContext ctx); + void exitPragmaParamName(KickCParser.PragmaParamNameContext ctx); /** - * Enter a parse tree produced by the {@code globalDirectiveEmulator} - * labeled alternative in {@link KickCParser#globalDirective}. + * Enter a parse tree produced by the {@code pragmaParamString} + * labeled alternative in {@link KickCParser#pragmaParam}. * @param ctx the parse tree */ - void enterGlobalDirectiveEmulator(KickCParser.GlobalDirectiveEmulatorContext ctx); + void enterPragmaParamString(KickCParser.PragmaParamStringContext ctx); /** - * Exit a parse tree produced by the {@code globalDirectiveEmulator} - * labeled alternative in {@link KickCParser#globalDirective}. + * Exit a parse tree produced by the {@code pragmaParamString} + * labeled alternative in {@link KickCParser#pragmaParam}. * @param ctx the parse tree */ - void exitGlobalDirectiveEmulator(KickCParser.GlobalDirectiveEmulatorContext ctx); + void exitPragmaParamString(KickCParser.PragmaParamStringContext ctx); /** - * Enter a parse tree produced by the {@code globalDirectiveReserve} - * labeled alternative in {@link KickCParser#globalDirective}. + * Enter a parse tree produced by the {@code pragmaParamCallingConvention} + * labeled alternative in {@link KickCParser#pragmaParam}. * @param ctx the parse tree */ - void enterGlobalDirectiveReserve(KickCParser.GlobalDirectiveReserveContext ctx); + void enterPragmaParamCallingConvention(KickCParser.PragmaParamCallingConventionContext ctx); /** - * Exit a parse tree produced by the {@code globalDirectiveReserve} - * labeled alternative in {@link KickCParser#globalDirective}. + * Exit a parse tree produced by the {@code pragmaParamCallingConvention} + * labeled alternative in {@link KickCParser#pragmaParam}. * @param ctx the parse tree */ - void exitGlobalDirectiveReserve(KickCParser.GlobalDirectiveReserveContext ctx); - /** - * Enter a parse tree produced by the {@code globalDirectivePc} - * labeled alternative in {@link KickCParser#globalDirective}. - * @param ctx the parse tree - */ - void enterGlobalDirectivePc(KickCParser.GlobalDirectivePcContext ctx); - /** - * Exit a parse tree produced by the {@code globalDirectivePc} - * labeled alternative in {@link KickCParser#globalDirective}. - * @param ctx the parse tree - */ - void exitGlobalDirectivePc(KickCParser.GlobalDirectivePcContext ctx); - /** - * Enter a parse tree produced by the {@code globalDirectiveCodeSeg} - * labeled alternative in {@link KickCParser#globalDirective}. - * @param ctx the parse tree - */ - void enterGlobalDirectiveCodeSeg(KickCParser.GlobalDirectiveCodeSegContext ctx); - /** - * Exit a parse tree produced by the {@code globalDirectiveCodeSeg} - * labeled alternative in {@link KickCParser#globalDirective}. - * @param ctx the parse tree - */ - void exitGlobalDirectiveCodeSeg(KickCParser.GlobalDirectiveCodeSegContext ctx); - /** - * Enter a parse tree produced by the {@code globalDirectiveDataSeg} - * labeled alternative in {@link KickCParser#globalDirective}. - * @param ctx the parse tree - */ - void enterGlobalDirectiveDataSeg(KickCParser.GlobalDirectiveDataSegContext ctx); - /** - * Exit a parse tree produced by the {@code globalDirectiveDataSeg} - * labeled alternative in {@link KickCParser#globalDirective}. - * @param ctx the parse tree - */ - void exitGlobalDirectiveDataSeg(KickCParser.GlobalDirectiveDataSegContext ctx); - /** - * Enter a parse tree produced by the {@code globalDirectiveEncoding} - * labeled alternative in {@link KickCParser#globalDirective}. - * @param ctx the parse tree - */ - void enterGlobalDirectiveEncoding(KickCParser.GlobalDirectiveEncodingContext ctx); - /** - * Exit a parse tree produced by the {@code globalDirectiveEncoding} - * labeled alternative in {@link KickCParser#globalDirective}. - * @param ctx the parse tree - */ - void exitGlobalDirectiveEncoding(KickCParser.GlobalDirectiveEncodingContext ctx); - /** - * Enter a parse tree produced by the {@code globalDirectiveCalling} - * labeled alternative in {@link KickCParser#globalDirective}. - * @param ctx the parse tree - */ - void enterGlobalDirectiveCalling(KickCParser.GlobalDirectiveCallingContext ctx); - /** - * Exit a parse tree produced by the {@code globalDirectiveCalling} - * labeled alternative in {@link KickCParser#globalDirective}. - * @param ctx the parse tree - */ - void exitGlobalDirectiveCalling(KickCParser.GlobalDirectiveCallingContext ctx); - /** - * Enter a parse tree produced by the {@code globalDirectiveVarModel} - * labeled alternative in {@link KickCParser#globalDirective}. - * @param ctx the parse tree - */ - void enterGlobalDirectiveVarModel(KickCParser.GlobalDirectiveVarModelContext ctx); - /** - * Exit a parse tree produced by the {@code globalDirectiveVarModel} - * labeled alternative in {@link KickCParser#globalDirective}. - * @param ctx the parse tree - */ - void exitGlobalDirectiveVarModel(KickCParser.GlobalDirectiveVarModelContext ctx); - /** - * Enter a parse tree produced by the {@code globalDirectiveConstructorFor} - * labeled alternative in {@link KickCParser#globalDirective}. - * @param ctx the parse tree - */ - void enterGlobalDirectiveConstructorFor(KickCParser.GlobalDirectiveConstructorForContext ctx); - /** - * Exit a parse tree produced by the {@code globalDirectiveConstructorFor} - * labeled alternative in {@link KickCParser#globalDirective}. - * @param ctx the parse tree - */ - void exitGlobalDirectiveConstructorFor(KickCParser.GlobalDirectiveConstructorForContext ctx); - /** - * Enter a parse tree produced by {@link KickCParser#directiveReserveParam}. - * @param ctx the parse tree - */ - void enterDirectiveReserveParam(KickCParser.DirectiveReserveParamContext ctx); - /** - * Exit a parse tree produced by {@link KickCParser#directiveReserveParam}. - * @param ctx the parse tree - */ - void exitDirectiveReserveParam(KickCParser.DirectiveReserveParamContext ctx); + void exitPragmaParamCallingConvention(KickCParser.PragmaParamCallingConventionContext ctx); /** * Enter a parse tree produced by the {@code directiveConst} * labeled alternative in {@link KickCParser#directive}. diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java b/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java index 7a023998a..cbee383f7 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java @@ -259,102 +259,46 @@ public interface KickCParserVisitor extends ParseTreeVisitor { */ T visitParameterDeclList(KickCParser.ParameterDeclListContext ctx); /** - * Visit a parse tree produced by the {@code globalDirectivePlatform} - * labeled alternative in {@link KickCParser#globalDirective}. + * Visit a parse tree produced by {@link KickCParser#pragma}. * @param ctx the parse tree * @return the visitor result */ - T visitGlobalDirectivePlatform(KickCParser.GlobalDirectivePlatformContext ctx); + T visitPragma(KickCParser.PragmaContext ctx); /** - * Visit a parse tree produced by the {@code globalDirectiveCpu} - * labeled alternative in {@link KickCParser#globalDirective}. + * Visit a parse tree produced by the {@code pragmaParamNumber} + * labeled alternative in {@link KickCParser#pragmaParam}. * @param ctx the parse tree * @return the visitor result */ - T visitGlobalDirectiveCpu(KickCParser.GlobalDirectiveCpuContext ctx); + T visitPragmaParamNumber(KickCParser.PragmaParamNumberContext ctx); /** - * Visit a parse tree produced by the {@code globalDirectiveLinkScript} - * labeled alternative in {@link KickCParser#globalDirective}. + * Visit a parse tree produced by the {@code pragmaParamRange} + * labeled alternative in {@link KickCParser#pragmaParam}. * @param ctx the parse tree * @return the visitor result */ - T visitGlobalDirectiveLinkScript(KickCParser.GlobalDirectiveLinkScriptContext ctx); + T visitPragmaParamRange(KickCParser.PragmaParamRangeContext ctx); /** - * Visit a parse tree produced by the {@code globalDirectiveExtension} - * labeled alternative in {@link KickCParser#globalDirective}. + * Visit a parse tree produced by the {@code pragmaParamName} + * labeled alternative in {@link KickCParser#pragmaParam}. * @param ctx the parse tree * @return the visitor result */ - T visitGlobalDirectiveExtension(KickCParser.GlobalDirectiveExtensionContext ctx); + T visitPragmaParamName(KickCParser.PragmaParamNameContext ctx); /** - * Visit a parse tree produced by the {@code globalDirectiveEmulator} - * labeled alternative in {@link KickCParser#globalDirective}. + * Visit a parse tree produced by the {@code pragmaParamString} + * labeled alternative in {@link KickCParser#pragmaParam}. * @param ctx the parse tree * @return the visitor result */ - T visitGlobalDirectiveEmulator(KickCParser.GlobalDirectiveEmulatorContext ctx); + T visitPragmaParamString(KickCParser.PragmaParamStringContext ctx); /** - * Visit a parse tree produced by the {@code globalDirectiveReserve} - * labeled alternative in {@link KickCParser#globalDirective}. + * Visit a parse tree produced by the {@code pragmaParamCallingConvention} + * labeled alternative in {@link KickCParser#pragmaParam}. * @param ctx the parse tree * @return the visitor result */ - T visitGlobalDirectiveReserve(KickCParser.GlobalDirectiveReserveContext ctx); - /** - * Visit a parse tree produced by the {@code globalDirectivePc} - * labeled alternative in {@link KickCParser#globalDirective}. - * @param ctx the parse tree - * @return the visitor result - */ - T visitGlobalDirectivePc(KickCParser.GlobalDirectivePcContext ctx); - /** - * Visit a parse tree produced by the {@code globalDirectiveCodeSeg} - * labeled alternative in {@link KickCParser#globalDirective}. - * @param ctx the parse tree - * @return the visitor result - */ - T visitGlobalDirectiveCodeSeg(KickCParser.GlobalDirectiveCodeSegContext ctx); - /** - * Visit a parse tree produced by the {@code globalDirectiveDataSeg} - * labeled alternative in {@link KickCParser#globalDirective}. - * @param ctx the parse tree - * @return the visitor result - */ - T visitGlobalDirectiveDataSeg(KickCParser.GlobalDirectiveDataSegContext ctx); - /** - * Visit a parse tree produced by the {@code globalDirectiveEncoding} - * labeled alternative in {@link KickCParser#globalDirective}. - * @param ctx the parse tree - * @return the visitor result - */ - T visitGlobalDirectiveEncoding(KickCParser.GlobalDirectiveEncodingContext ctx); - /** - * Visit a parse tree produced by the {@code globalDirectiveCalling} - * labeled alternative in {@link KickCParser#globalDirective}. - * @param ctx the parse tree - * @return the visitor result - */ - T visitGlobalDirectiveCalling(KickCParser.GlobalDirectiveCallingContext ctx); - /** - * Visit a parse tree produced by the {@code globalDirectiveVarModel} - * labeled alternative in {@link KickCParser#globalDirective}. - * @param ctx the parse tree - * @return the visitor result - */ - T visitGlobalDirectiveVarModel(KickCParser.GlobalDirectiveVarModelContext ctx); - /** - * Visit a parse tree produced by the {@code globalDirectiveConstructorFor} - * labeled alternative in {@link KickCParser#globalDirective}. - * @param ctx the parse tree - * @return the visitor result - */ - T visitGlobalDirectiveConstructorFor(KickCParser.GlobalDirectiveConstructorForContext ctx); - /** - * Visit a parse tree produced by {@link KickCParser#directiveReserveParam}. - * @param ctx the parse tree - * @return the visitor result - */ - T visitDirectiveReserveParam(KickCParser.DirectiveReserveParamContext ctx); + T visitPragmaParamCallingConvention(KickCParser.PragmaParamCallingConventionContext ctx); /** * Visit a parse tree produced by the {@code directiveConst} * labeled alternative in {@link KickCParser#directive}. diff --git a/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java b/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java index e9a48d7b1..25573e589 100644 --- a/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java +++ b/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java @@ -44,7 +44,7 @@ public class Pass0GenerateStatementSequence extends KickCParserBaseVisitor pragmaConstructorFors; + private List pragmaConstructorFors; public Pass0GenerateStatementSequence(CParser cParser, KickCParser.FileContext fileCtx, Program program, Procedure.CallingConvention initialCallingConvention, StringEncoding defaultEncoding) { this.cParser = cParser; @@ -130,16 +130,16 @@ public class Pass0GenerateStatementSequence extends KickCParserBaseVisitor constructorProcs = new ArrayList<>(); - for(KickCParser.GlobalDirectiveConstructorForContext pragmaConstructorFor : pragmaConstructorFors) { - final List names = pragmaConstructorFor.NAME(); + for(KickCParser.PragmaContext pragmaConstructorFor : pragmaConstructorFors) { + final List names = pragmaConstructorFor.pragmaParam(); if(names.size() < 2) throw new CompileError("Error! #pragma constructor_for requires at least 2 parameters.", new StatementSource(pragmaConstructorFor)); - final String constructorProcName = names.get(0).getText(); + final String constructorProcName = pragmaParamName(names.get(0)); final Procedure constructorProc = program.getScope().getLocalProcedure(constructorProcName); if(constructorProc == null) throw new CompileError("Error! Constructor procedure not found " + constructorProcName, new StatementSource(pragmaConstructorFor)); for(int i = 1; i < names.size(); i++) { - final String procName = names.get(i).getText(); + final String procName = pragmaParamName(names.get(i)); final Procedure proc = program.getScope().getLocalProcedure(procName); if(proc == null) throw new CompileError("Error! Procedure not found " + procName, new StatementSource(pragmaConstructorFor)); @@ -198,71 +198,162 @@ public class Pass0GenerateStatementSequence extends KickCParserBaseVisitor pragmaParams = ctx.pragmaParam(); + List settings = pragmaParams.stream().map(Pass0GenerateStatementSequence::pragmaParamName).collect(Collectors.toList()); + final VariableBuilderConfig variableBuilderConfig = VariableBuilderConfig.fromSettings(settings, new StatementSource(ctx)); + program.getTargetPlatform().setVariableBuilderConfig(variableBuilderConfig); + break; + case CParser.PRAGMA_LINKSCRIPT: + final String linkScriptName = pragmaParamString(pragmaParamSingle(ctx)); + program.getLog().append("Loading link script \"" + linkScriptName + "\""); + Path currentPath = cParser.getSourceFolderPath(ctx); + final File linkScriptFile = SourceLoader.loadFile(linkScriptName, currentPath, program.getTargetPlatformPaths()); + program.getTargetPlatform().setLinkScriptFile(linkScriptFile); + break; + case CParser.PRAGMA_EXTENSION: + String extension = pragmaParamString(pragmaParamSingle(ctx)); + program.getTargetPlatform().setOutFileExtension(extension); + break; + case CParser.PRAGMA_EMULATOR: + String emuName = pragmaParamString(pragmaParamSingle(ctx)); + program.getTargetPlatform().setEmulatorCommand(emuName); + break; + case CParser.PRAGMA_ENCODING: + final String encodingName = pragmaParamName(pragmaParamSingle(ctx)); + try { + this.currentEncoding = StringEncoding.fromName(encodingName.toUpperCase(Locale.ENGLISH)); + } catch(IllegalArgumentException e) { + throw new CompileError("Unknown string encoding " + encodingName, new StatementSource(ctx)); + } + break; + case CParser.PRAGMA_CODE_SEG: + this.currentCodeSegment = pragmaParamName(pragmaParamSingle(ctx)); + break; + case CParser.PRAGMA_DATA_SEG: + this.currentDataSegment = pragmaParamName(pragmaParamSingle(ctx)); + break; + case CParser.PRAGMA_PC: + Number programPc = pragmaParamNumber(pragmaParamSingle(ctx)); + program.setProgramPc(programPc); + break; + case CParser.PRAGMA_CALLING: + currentCallingConvention = pragmaParamCallingConvention(pragmaParamSingle(ctx)); + break; + case CParser.PRAGMA_ZP_RESERVE: + List reservedZps = pragmaParamRanges(ctx.pragmaParam()); + program.addReservedZps(reservedZps); + break; + case CParser.PRAGMA_CONSTRUCTOR_FOR: + this.pragmaConstructorFors.add(ctx); + return null; + default: + program.getLog().append("Warning! Unknown #pragma " + pragmaName + "\n" + new StatementSource(ctx).toString()); - @Override - public Object visitGlobalDirectiveVarModel(KickCParser.GlobalDirectiveVarModelContext ctx) { - List settingNodes = new ArrayList<>(ctx.NAME()); - List settings = settingNodes.stream().map(ParseTree::getText).collect(Collectors.toList()); - final VariableBuilderConfig variableBuilderConfig = VariableBuilderConfig.fromSettings(settings, new StatementSource(ctx)); - program.getTargetPlatform().setVariableBuilderConfig(variableBuilderConfig); - return null; - } - - @Override - public Object visitGlobalDirectiveLinkScript(KickCParser.GlobalDirectiveLinkScriptContext ctx) { - String linkName = ctx.STRING().getText(); - String linkScriptName = linkName.substring(1, linkName.length() - 1); - program.getLog().append("Loading link script " + linkName); - Path currentPath = cParser.getSourceFolderPath(ctx); - final File linkScriptFile = SourceLoader.loadFile(linkScriptName, currentPath, program.getTargetPlatformPaths()); - program.getTargetPlatform().setLinkScriptFile(linkScriptFile); - return null; - } - - @Override - public Object visitGlobalDirectiveExtension(KickCParser.GlobalDirectiveExtensionContext ctx) { - String extension = ctx.STRING().getText(); - extension = extension.substring(1, extension.length() - 1); - program.getTargetPlatform().setOutFileExtension(extension); - return null; - } - - @Override - public Object visitGlobalDirectiveEmulator(KickCParser.GlobalDirectiveEmulatorContext ctx) { - String emuName = ctx.STRING().getText(); - emuName = emuName.substring(1, emuName.length() - 1); - program.getTargetPlatform().setEmulatorCommand(emuName); - return null; - } - - @Override - public Object visitGlobalDirectiveReserve(KickCParser.GlobalDirectiveReserveContext ctx) { - final List reserveParams = ctx.directiveReserveParam(); - List reservedZps = getReservedZps(reserveParams); - program.addReservedZps(reservedZps); + } return null; } /** - * Find the list of all reserved ZP-addresses from a list of reserve parameters (potentially including ranges) + * Check that a #pragma has a single parameter - and return that parameter + * + * @param ctx The #pragma + * @return The single parameter + */ + private static KickCParser.PragmaParamContext pragmaParamSingle(KickCParser.PragmaContext ctx) { + if(ctx.pragmaParam().size() != 1) + throw new CompileError("Error! #pragma expects a single parameter!", new StatementSource(ctx)); + return ctx.pragmaParam().get(0); + } + + /** + * Parse a single NUMBER parameter of a #pragma + * If the parameter is not a NUMBER the compiler will fail out + * + * @param paramCtx The parameter to parse + * @return The number + */ + private static Number pragmaParamNumber(KickCParser.PragmaParamContext paramCtx) { + if(!(paramCtx instanceof KickCParser.PragmaParamNumberContext)) + throw new CompileError("Error! Expected a NUMBER parameter. Found '" + paramCtx.getText() + "'.", new StatementSource(paramCtx.getParent())); + final Number number = NumberParser.parseLiteral(((KickCParser.PragmaParamNumberContext) paramCtx).NUMBER().getText()); + if(number == null) + throw new CompileError("Error! Expected a NUMBER parameter. Found '" + paramCtx.getText() + "'.", new StatementSource(paramCtx.getParent())); + return number; + } + + /** + * Parse a single CALLINGCONVENTION parameter of a #pragma + * If the parameter is not a CALLINGCONVENTION the compiler will fail out + * + * @param paramCtx The parameter to parse + * @return The name + */ + private static Procedure.CallingConvention pragmaParamCallingConvention(KickCParser.PragmaParamContext paramCtx) { + if(!(paramCtx instanceof KickCParser.PragmaParamCallingConventionContext)) + throw new CompileError("Error! Expected a CALLINGCONVENTION parameter. Found '" + paramCtx.getText() + "'.", new StatementSource(paramCtx.getParent())); + final String callingConventionName = ((KickCParser.PragmaParamCallingConventionContext) paramCtx).CALLINGCONVENTION().getText(); + final Procedure.CallingConvention callingConvention = Procedure.CallingConvention.getCallingConvension(callingConventionName); + if(callingConvention == null) + throw new CompileError("Error! Expected a CALLINGCONVENTION parameter. Found '" + paramCtx.getText() + "'.", new StatementSource(paramCtx.getParent())); + return callingConvention; + } + + + /** + * Parse a single NAME parameter of a #pragma + * If the parameter is not a NAME the compiler will fail out + * + * @param paramCtx The parameter to parse + * @return The name + */ + private static String pragmaParamName(KickCParser.PragmaParamContext paramCtx) { + if(!(paramCtx instanceof KickCParser.PragmaParamNameContext)) + throw new CompileError("Error! Expected a NAME parameter. Found '" + paramCtx.getText() + "'.", new StatementSource(paramCtx.getParent())); + return ((KickCParser.PragmaParamNameContext) paramCtx).NAME().getText(); + } + + /** + * Parse a single STRING parameter of a #pragma + * If the parameter is not a STRING the compiler will fail out + * + * @param paramCtx The parameter to parse + * @return The string + */ + private static String pragmaParamString(KickCParser.PragmaParamContext paramCtx) { + if(!(paramCtx instanceof KickCParser.PragmaParamStringContext)) + throw new CompileError("Error! Expected a STRING parameter. Found '" + paramCtx.getText() + "'.", new StatementSource(paramCtx.getParent())); + final String stringLiteral = ((KickCParser.PragmaParamStringContext) paramCtx).STRING().getText(); + return stringLiteral.substring(1, stringLiteral.length() - 1); + } + + /** + * Find a reserved ZP-addresses from a list of pragma parameters (consisting of numbers and number ranges). * * @param reserveParams The params * @return The list of reserved zeropage addresses */ - private List getReservedZps(List reserveParams) { + private List pragmaParamRanges(List reserveParams) { List reservedZps = new ArrayList<>(); - for(KickCParser.DirectiveReserveParamContext reserveCtx : reserveParams) { - final TerminalNode rangeStart = reserveCtx.NUMBER(0); - final TerminalNode rangeEnd = reserveCtx.NUMBER(1); - if(rangeEnd == null) { + for(KickCParser.PragmaParamContext reserveCtx : reserveParams) { + if(reserveCtx instanceof KickCParser.PragmaParamNumberContext) { + final TerminalNode number = ((KickCParser.PragmaParamNumberContext) reserveCtx).NUMBER(); // Only a single reserved address - Number reservedZp = NumberParser.parseLiteral(rangeStart.getText()); + Number reservedZp = NumberParser.parseLiteral(number.getText()); reservedZps.add(reservedZp.intValue()); - } else { + } else if(reserveCtx instanceof KickCParser.PragmaParamRangeContext) { + final TerminalNode rangeStart = ((KickCParser.PragmaParamRangeContext) reserveCtx).NUMBER(0); + final TerminalNode rangeEnd = ((KickCParser.PragmaParamRangeContext) reserveCtx).NUMBER(1); // A range of reserved addresses Number startZp = NumberParser.parseLiteral(rangeStart.getText()); Number endZp = NumberParser.parseLiteral(rangeEnd.getText()); @@ -271,75 +362,22 @@ public class Pass0GenerateStatementSequence extends KickCParserBaseVisitor reserveParams = ctx.directiveReserveParam(); - final List reservedZps = getReservedZps(reserveParams); + final List reserveParams = ctx.pragmaParam(); + final List reservedZps = pragmaParamRanges(reserveParams); return new Directive.ReserveZp(reservedZps); } diff --git a/src/main/java/dk/camelot64/kickc/preprocessor/CPreprocessor.java b/src/main/java/dk/camelot64/kickc/preprocessor/CPreprocessor.java index 620031a9d..a958ce14f 100644 --- a/src/main/java/dk/camelot64/kickc/preprocessor/CPreprocessor.java +++ b/src/main/java/dk/camelot64/kickc/preprocessor/CPreprocessor.java @@ -169,8 +169,8 @@ public class CPreprocessor implements TokenSource { // Already examined by the preprocessor - and determined to be for the parser return false; final List ws = skipWhitespace(cTokenSource); - final Token pragmaType = cTokenSource.nextToken(); - if(KickCLexer.TARGET == pragmaType.getType()) { + final Token pragmaType = nextToken(cTokenSource, KickCLexer.NAME); + if(pragmaType.getText().equals(CParser.PRAGMA_TARGET)) { skipWhitespace(cTokenSource); nextToken(cTokenSource, KickCLexer.PAR_BEGIN); skipWhitespace(cTokenSource); diff --git a/src/test/java/dk/camelot64/kickc/test/TestPrograms.java b/src/test/java/dk/camelot64/kickc/test/TestPrograms.java index 73c6d056b..365dba8c1 100644 --- a/src/test/java/dk/camelot64/kickc/test/TestPrograms.java +++ b/src/test/java/dk/camelot64/kickc/test/TestPrograms.java @@ -42,6 +42,11 @@ public class TestPrograms { public TestPrograms() { } + @Test + public void testPragmaUnknown() throws IOException, URISyntaxException { + compileAndCompare("pragma-unknown.c"); + } + @Test public void testLibraryConstructorError2() throws IOException, URISyntaxException { assertError("library-constructor-error-2.c", "Error! Procedure not found print"); diff --git a/src/test/kc/pragma-unknown.c b/src/test/kc/pragma-unknown.c new file mode 100644 index 000000000..c40c5f1f8 --- /dev/null +++ b/src/test/kc/pragma-unknown.c @@ -0,0 +1,9 @@ +// Test an unknown pragma + +#pragma unknown(x) + +char * const SCREEN = 0x0400; + +void main() { + *SCREEN = 'a'; +} \ No newline at end of file diff --git a/src/test/ref/pragma-unknown.asm b/src/test/ref/pragma-unknown.asm new file mode 100644 index 000000000..6f02d65cf --- /dev/null +++ b/src/test/ref/pragma-unknown.asm @@ -0,0 +1,12 @@ +// Test an unknown pragma +.pc = $801 "Basic" +:BasicUpstart(main) +.pc = $80d "Program" + .label SCREEN = $400 +main: { + // *SCREEN = 'a' + lda #'a' + sta SCREEN + // } + rts +} diff --git a/src/test/ref/pragma-unknown.cfg b/src/test/ref/pragma-unknown.cfg new file mode 100644 index 000000000..2c55bd421 --- /dev/null +++ b/src/test/ref/pragma-unknown.cfg @@ -0,0 +1,8 @@ + +(void()) main() +main: scope:[main] from + [0] *((const nomodify byte*) SCREEN) ← (byte) 'a' + to:main::@return +main::@return: scope:[main] from main + [1] return + to:@return diff --git a/src/test/ref/pragma-unknown.log b/src/test/ref/pragma-unknown.log new file mode 100644 index 000000000..e8632867d --- /dev/null +++ b/src/test/ref/pragma-unknown.log @@ -0,0 +1,154 @@ +Warning! Unknown #pragma unknown +File /Users/jespergravgaard/c64/kickc/src/test/kc/pragma-unknown.c +Line 3 +#pragma unknown(x) + +CONTROL FLOW GRAPH SSA + +(void()) main() +main: scope:[main] from __start + *((const nomodify byte*) SCREEN) ← (byte) 'a' + to:main::@return +main::@return: scope:[main] from main + return + to:@return + +(void()) __start() +__start: scope:[__start] from + call main + to:__start::@1 +__start::@1: scope:[__start] from __start + to:__start::@return +__start::@return: scope:[__start] from __start::@1 + return + to:@return + +SYMBOL TABLE SSA +(const nomodify byte*) SCREEN = (byte*)(number) $400 +(void()) __start() +(label) __start::@1 +(label) __start::@return +(void()) main() +(label) main::@return + +Simplifying constant pointer cast (byte*) 1024 +Successful SSA optimization PassNCastSimplification +Removing unused procedure __start +Removing unused procedure block __start +Removing unused procedure block __start::@1 +Removing unused procedure block __start::@return +Successful SSA optimization PassNEliminateEmptyStart +CALL GRAPH + +Created 0 initial phi equivalence classes +Coalesced down to 0 phi equivalence classes + +FINAL CONTROL FLOW GRAPH + +(void()) main() +main: scope:[main] from + [0] *((const nomodify byte*) SCREEN) ← (byte) 'a' + to:main::@return +main::@return: scope:[main] from main + [1] return + to:@return + + +VARIABLE REGISTER WEIGHTS +(void()) main() + +Initial phi equivalence classes +Complete equivalence classes + +INITIAL ASM +Target platform is c64basic / MOS6502X + // File Comments +// Test an unknown pragma + // Upstart +.pc = $801 "Basic" +:BasicUpstart(main) +.pc = $80d "Program" + // Global Constants & labels + .label SCREEN = $400 + // main +main: { + // [0] *((const nomodify byte*) SCREEN) ← (byte) 'a' -- _deref_pbuc1=vbuc2 + lda #'a' + sta SCREEN + jmp __breturn + // main::@return + __breturn: + // [1] return + rts +} + // File Data + +REGISTER UPLIFT POTENTIAL REGISTERS +Statement [0] *((const nomodify byte*) SCREEN) ← (byte) 'a' [ ] ( [ ] { } ) always clobbers reg byte a + +REGISTER UPLIFT SCOPES +Uplift Scope [main] +Uplift Scope [] + +Uplifting [main] best 15 combination +Uplifting [] best 15 combination + +ASSEMBLER BEFORE OPTIMIZATION + // File Comments +// Test an unknown pragma + // Upstart +.pc = $801 "Basic" +:BasicUpstart(main) +.pc = $80d "Program" + // Global Constants & labels + .label SCREEN = $400 + // main +main: { + // [0] *((const nomodify byte*) SCREEN) ← (byte) 'a' -- _deref_pbuc1=vbuc2 + lda #'a' + sta SCREEN + jmp __breturn + // main::@return + __breturn: + // [1] return + rts +} + // File Data + +ASSEMBLER OPTIMIZATIONS +Removing instruction jmp __breturn +Succesful ASM optimization Pass5NextJumpElimination +Removing instruction __breturn: +Succesful ASM optimization Pass5UnusedLabelElimination + +FINAL SYMBOL TABLE +(const nomodify byte*) SCREEN = (byte*) 1024 +(void()) main() +(label) main::@return + + + +FINAL ASSEMBLER +Score: 12 + + // File Comments +// Test an unknown pragma + // Upstart +.pc = $801 "Basic" +:BasicUpstart(main) +.pc = $80d "Program" + // Global Constants & labels + .label SCREEN = $400 + // main +main: { + // *SCREEN = 'a' + // [0] *((const nomodify byte*) SCREEN) ← (byte) 'a' -- _deref_pbuc1=vbuc2 + lda #'a' + sta SCREEN + // main::@return + // } + // [1] return + rts +} + // File Data + diff --git a/src/test/ref/pragma-unknown.sym b/src/test/ref/pragma-unknown.sym new file mode 100644 index 000000000..8b06efa64 --- /dev/null +++ b/src/test/ref/pragma-unknown.sym @@ -0,0 +1,4 @@ +(const nomodify byte*) SCREEN = (byte*) 1024 +(void()) main() +(label) main::@return + diff --git a/src/test/vs.code/kickc-test.code-workspace b/src/test/vs.code/kickc-test.code-workspace index 4849302c3..8eb6b02b8 100644 --- a/src/test/vs.code/kickc-test.code-workspace +++ b/src/test/vs.code/kickc-test.code-workspace @@ -12,7 +12,8 @@ "print.h": "c", "printf.h": "c", "c64.h": "c", - "sstream": "c" + "sstream": "c", + "functional": "c" }, "kickassembler.assemblerJar": "/Applications/KickAssembler/KickAss.jar" }