From b27c69635b2a6d1fb06479a6ab2eecc027227273 Mon Sep 17 00:00:00 2001 From: jespergravgaard Date: Mon, 29 Jul 2019 23:50:42 +0200 Subject: [PATCH] Working on light-weight coalesce #237 --- .../java/dk/camelot64/kickc/Compiler.java | 3 +- .../java/dk/camelot64/kickc/parser/KickC.g4 | 6 +- .../dk/camelot64/kickc/parser/KickC.tokens | 50 +- .../dk/camelot64/kickc/parser/KickCLexer.java | 763 +++++----- .../camelot64/kickc/parser/KickCLexer.tokens | 50 +- .../camelot64/kickc/parser/KickCParser.java | 1325 ++++++++--------- .../kickc/passes/Pass4ZeroPageCoalesce.java | 44 +- .../Pass4ZeroPageCoalesceExhaustive.java | 67 + .../dk/camelot64/kickc/test/TestPrograms.java | 5 + src/test/kc/coalesce-assignment.kc | 16 + .../kc/complex/splines/truetype-splines.kc | 25 - src/test/ref/coalesce-assignment.asm | 34 + src/test/ref/coalesce-assignment.cfg | 34 + src/test/ref/coalesce-assignment.log | 636 ++++++++ src/test/ref/coalesce-assignment.sym | 35 + 15 files changed, 1928 insertions(+), 1165 deletions(-) create mode 100644 src/main/java/dk/camelot64/kickc/passes/Pass4ZeroPageCoalesceExhaustive.java create mode 100644 src/test/kc/coalesce-assignment.kc create mode 100644 src/test/ref/coalesce-assignment.asm create mode 100644 src/test/ref/coalesce-assignment.cfg create mode 100644 src/test/ref/coalesce-assignment.log create mode 100644 src/test/ref/coalesce-assignment.sym diff --git a/src/main/java/dk/camelot64/kickc/Compiler.java b/src/main/java/dk/camelot64/kickc/Compiler.java index 40c9ff343..c0d86adde 100644 --- a/src/main/java/dk/camelot64/kickc/Compiler.java +++ b/src/main/java/dk/camelot64/kickc/Compiler.java @@ -523,8 +523,9 @@ public class Compiler { // Final register coalesce and finalization new Pass4ZeroPageCoalesceAssignment(program).coalesce(); + if(enableZeroPageCoalasce) { - new Pass4ZeroPageCoalesce(program).coalesce(); + new Pass4ZeroPageCoalesceExhaustive(program).coalesce(); } new Pass4RegistersFinalize(program).allocate(true); new Pass4AssertZeropageAllocation(program).check(); diff --git a/src/main/java/dk/camelot64/kickc/parser/KickC.g4 b/src/main/java/dk/camelot64/kickc/parser/KickC.g4 index bb7df453c..e5417ff83 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickC.g4 +++ b/src/main/java/dk/camelot64/kickc/parser/KickC.g4 @@ -67,9 +67,9 @@ parameterDecl globalDirective : '#' directiveReserve #globalDirectiveReserve - | '#' 'pc' '(' NUMBER ')' #globalDirectivePc - | '#' 'target' '(' NAME ')' #globalDirectivePlatform - | '#' 'encoding' '(' NAME')' #globalDirectiveEncoding + | '#pc' '(' NUMBER ')' #globalDirectivePc + | '#target' '(' NAME ')' #globalDirectivePlatform + | '#encoding' '(' NAME')' #globalDirectiveEncoding ; directive diff --git a/src/main/java/dk/camelot64/kickc/parser/KickC.tokens b/src/main/java/dk/camelot64/kickc/parser/KickC.tokens index 8b48c8639..107a05366 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickC.tokens +++ b/src/main/java/dk/camelot64/kickc/parser/KickC.tokens @@ -80,26 +80,27 @@ T__78=79 T__79=80 T__80=81 T__81=82 -MNEMONIC=83 -KICKASM=84 -SIMPLETYPE=85 -STRING=86 -CHAR=87 -BOOLEAN=88 -NUMBER=89 -NUMFLOAT=90 -BINFLOAT=91 -DECFLOAT=92 -HEXFLOAT=93 -NUMINT=94 -BININTEGER=95 -DECINTEGER=96 -HEXINTEGER=97 -NAME=98 -ASMREL=99 -WS=100 -COMMENT_LINE=101 -COMMENT_BLOCK=102 +T__82=83 +MNEMONIC=84 +KICKASM=85 +SIMPLETYPE=86 +STRING=87 +CHAR=88 +BOOLEAN=89 +NUMBER=90 +NUMFLOAT=91 +BINFLOAT=92 +DECFLOAT=93 +HEXFLOAT=94 +NUMINT=95 +BININTEGER=96 +DECINTEGER=97 +HEXINTEGER=98 +NAME=99 +ASMREL=100 +WS=101 +COMMENT_LINE=102 +COMMENT_BLOCK=103 'import'=1 ';'=2 'typedef'=3 @@ -110,9 +111,9 @@ COMMENT_BLOCK=102 '{'=8 '}'=9 '#'=10 -'pc'=11 -'target'=12 -'encoding'=13 +'#pc'=11 +'#target'=12 +'#encoding'=13 'const'=14 'extern'=15 'align'=16 @@ -181,4 +182,5 @@ COMMENT_BLOCK=102 'clobbers'=79 'bytes'=80 'cycles'=81 -'.byte'=82 +'pc'=82 +'.byte'=83 diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java index 36340b9af..cf2c775a4 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java @@ -28,10 +28,10 @@ public class KickCLexer extends Lexer { T__59=60, T__60=61, T__61=62, T__62=63, T__63=64, T__64=65, T__65=66, T__66=67, T__67=68, T__68=69, T__69=70, T__70=71, T__71=72, T__72=73, T__73=74, T__74=75, T__75=76, T__76=77, T__77=78, T__78=79, T__79=80, - T__80=81, T__81=82, MNEMONIC=83, KICKASM=84, SIMPLETYPE=85, STRING=86, - CHAR=87, BOOLEAN=88, NUMBER=89, NUMFLOAT=90, BINFLOAT=91, DECFLOAT=92, - HEXFLOAT=93, NUMINT=94, BININTEGER=95, DECINTEGER=96, HEXINTEGER=97, NAME=98, - ASMREL=99, WS=100, COMMENT_LINE=101, COMMENT_BLOCK=102; + T__80=81, T__81=82, T__82=83, MNEMONIC=84, KICKASM=85, SIMPLETYPE=86, + STRING=87, CHAR=88, BOOLEAN=89, NUMBER=90, NUMFLOAT=91, BINFLOAT=92, DECFLOAT=93, + HEXFLOAT=94, NUMINT=95, BININTEGER=96, DECINTEGER=97, HEXINTEGER=98, NAME=99, + ASMREL=100, WS=101, COMMENT_LINE=102, COMMENT_BLOCK=103; public static String[] channelNames = { "DEFAULT_TOKEN_CHANNEL", "HIDDEN" }; @@ -51,15 +51,15 @@ public class KickCLexer extends Lexer { "T__57", "T__58", "T__59", "T__60", "T__61", "T__62", "T__63", "T__64", "T__65", "T__66", "T__67", "T__68", "T__69", "T__70", "T__71", "T__72", "T__73", "T__74", "T__75", "T__76", "T__77", "T__78", "T__79", "T__80", - "T__81", "MNEMONIC", "KICKASM", "SIMPLETYPE", "STRING", "CHAR", "BOOLEAN", - "NUMBER", "NUMFLOAT", "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", - "DECINTEGER", "HEXINTEGER", "BINDIGIT", "DECDIGIT", "HEXDIGIT", "NAME", - "NAME_START", "NAME_CHAR", "ASMREL", "WS", "COMMENT_LINE", "COMMENT_BLOCK" + "T__81", "T__82", "MNEMONIC", "KICKASM", "SIMPLETYPE", "STRING", "CHAR", + "BOOLEAN", "NUMBER", "NUMFLOAT", "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT", + "BININTEGER", "DECINTEGER", "HEXINTEGER", "BINDIGIT", "DECDIGIT", "HEXDIGIT", + "NAME", "NAME_START", "NAME_CHAR", "ASMREL", "WS", "COMMENT_LINE", "COMMENT_BLOCK" }; private static final String[] _LITERAL_NAMES = { null, "'import'", "';'", "'typedef'", "','", "'='", "'('", "')'", "'{'", - "'}'", "'#'", "'pc'", "'target'", "'encoding'", "'const'", "'extern'", + "'}'", "'#'", "'#pc'", "'#target'", "'#encoding'", "'const'", "'extern'", "'align'", "'register'", "'inline'", "'volatile'", "'interrupt'", "'reserve'", "'if'", "'else'", "'while'", "'do'", "'for'", "'return'", "'break'", "'continue'", "'asm'", "':'", "'..'", "'signed'", "'unsigned'", "'*'", "'['", "']'", @@ -68,7 +68,7 @@ public class KickCLexer extends Lexer { "'>'", "'=='", "'!='", "'<='", "'>='", "'^'", "'|'", "'&&'", "'||'", "'?'", "'+='", "'-='", "'*='", "'/='", "'%='", "'<<='", "'>>='", "'&='", "'|='", "'^='", "'kickasm'", "'resource'", "'uses'", "'clobbers'", "'bytes'", - "'cycles'", "'.byte'" + "'cycles'", "'pc'", "'.byte'" }; private static final String[] _SYMBOLIC_NAMES = { null, null, null, null, null, null, null, null, null, null, null, null, @@ -77,10 +77,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, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, - null, null, null, null, null, null, null, null, null, null, null, "MNEMONIC", - "KICKASM", "SIMPLETYPE", "STRING", "CHAR", "BOOLEAN", "NUMBER", "NUMFLOAT", - "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", - "HEXINTEGER", "NAME", "ASMREL", "WS", "COMMENT_LINE", "COMMENT_BLOCK" + null, null, null, null, null, null, null, null, null, null, null, null, + "MNEMONIC", "KICKASM", "SIMPLETYPE", "STRING", "CHAR", "BOOLEAN", "NUMBER", + "NUMFLOAT", "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", + "DECINTEGER", "HEXINTEGER", "NAME", "ASMREL", "WS", "COMMENT_LINE", "COMMENT_BLOCK" }; public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES); @@ -140,7 +140,7 @@ public class KickCLexer extends Lexer { public ATN getATN() { return _ATN; } public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2h\u0418\b\1\4\2\t"+ + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2i\u0420\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\t\30\4\31\t\31"+ @@ -152,371 +152,374 @@ public class KickCLexer extends Lexer { "\tI\4J\tJ\4K\tK\4L\tL\4M\tM\4N\tN\4O\tO\4P\tP\4Q\tQ\4R\tR\4S\tS\4T\tT"+ "\4U\tU\4V\tV\4W\tW\4X\tX\4Y\tY\4Z\tZ\4[\t[\4\\\t\\\4]\t]\4^\t^\4_\t_\4"+ "`\t`\4a\ta\4b\tb\4c\tc\4d\td\4e\te\4f\tf\4g\tg\4h\th\4i\ti\4j\tj\4k\t"+ - "k\4l\tl\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\3\3\3\3\4\3\4\3\4\3\4\3\4\3\4\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\f\3"+ - "\f\3\f\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3\16\3\16\3\16\3\16\3\16\3\16\3\16"+ - "\3\16\3\16\3\17\3\17\3\17\3\17\3\17\3\17\3\20\3\20\3\20\3\20\3\20\3\20"+ - "\3\20\3\21\3\21\3\21\3\21\3\21\3\21\3\22\3\22\3\22\3\22\3\22\3\22\3\22"+ - "\3\22\3\22\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\24\3\24\3\24\3\24\3\24"+ - "\3\24\3\24\3\24\3\24\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25"+ - "\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\27\3\27\3\27\3\30\3\30\3\30"+ - "\3\30\3\30\3\31\3\31\3\31\3\31\3\31\3\31\3\32\3\32\3\32\3\33\3\33\3\33"+ - "\3\33\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\35\3\35\3\35\3\35\3\35\3\35"+ - "\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\37\3\37\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(\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\61\3\61\3\62\3\62\3\63\3\63\3\64\3\64\3\64\3\65\3\65\3\65\3"+ - "\66\3\66\3\67\3\67\38\38\39\39\3:\3:\3:\3;\3;\3;\3<\3<\3<\3=\3=\3=\3>"+ - "\3>\3?\3?\3@\3@\3@\3A\3A\3A\3B\3B\3C\3C\3C\3D\3D\3D\3E\3E\3E\3F\3F\3F"+ - "\3G\3G\3G\3H\3H\3H\3H\3I\3I\3I\3I\3J\3J\3J\3K\3K\3K\3L\3L\3L\3M\3M\3M"+ - "\3M\3M\3M\3M\3M\3N\3N\3N\3N\3N\3N\3N\3N\3N\3O\3O\3O\3O\3O\3P\3P\3P\3P"+ - "\3P\3P\3P\3P\3P\3Q\3Q\3Q\3Q\3Q\3Q\3R\3R\3R\3R\3R\3R\3R\3S\3S\3S\3S\3S"+ - "\3S\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T"+ - "\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T"+ - "\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T"+ - "\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T"+ - "\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T"+ - "\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T"+ - "\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T"+ - "\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T"+ - "\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T"+ - "\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\3T\5T\u0319\nT\3U\3U\3U"+ - "\3U\7U\u031f\nU\fU\16U\u0322\13U\3U\3U\3U\3V\3V\3V\3V\3V\3V\3V\3V\3V\3"+ - "V\3V\3V\3V\3V\3V\3V\3V\3V\3V\3V\3V\3V\3V\3V\3V\3V\3V\3V\3V\3V\3V\3V\3"+ - "V\3V\3V\3V\3V\5V\u034c\nV\3W\3W\3W\3W\7W\u0352\nW\fW\16W\u0355\13W\3W"+ - "\3W\5W\u0359\nW\3W\3W\5W\u035d\nW\5W\u035f\nW\3W\5W\u0362\nW\3X\3X\3X"+ - "\3X\5X\u0368\nX\3X\3X\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\5Y\u0375\nY\3Z\3Z\5Z"+ - "\u0379\nZ\3[\3[\3[\5[\u037e\n[\3\\\3\\\3\\\3\\\3\\\5\\\u0385\n\\\3\\\7"+ - "\\\u0388\n\\\f\\\16\\\u038b\13\\\3\\\3\\\6\\\u038f\n\\\r\\\16\\\u0390"+ - "\3]\7]\u0394\n]\f]\16]\u0397\13]\3]\3]\6]\u039b\n]\r]\16]\u039c\3^\3^"+ - "\3^\3^\3^\5^\u03a4\n^\3^\7^\u03a7\n^\f^\16^\u03aa\13^\3^\3^\6^\u03ae\n"+ - "^\r^\16^\u03af\3_\3_\3_\5_\u03b5\n_\3_\3_\3_\5_\u03ba\n_\3`\3`\3`\6`\u03bf"+ - "\n`\r`\16`\u03c0\3`\3`\6`\u03c5\n`\r`\16`\u03c6\5`\u03c9\n`\3a\6a\u03cc"+ - "\na\ra\16a\u03cd\3b\3b\3b\3b\3b\5b\u03d5\nb\3b\6b\u03d8\nb\rb\16b\u03d9"+ - "\3c\3c\3d\3d\3e\3e\3f\3f\7f\u03e4\nf\ff\16f\u03e7\13f\3g\3g\3h\3h\3i\3"+ - "i\7i\u03ef\ni\fi\16i\u03f2\13i\3i\6i\u03f5\ni\ri\16i\u03f6\3j\6j\u03fa"+ - "\nj\rj\16j\u03fb\3j\3j\3k\3k\3k\3k\7k\u0404\nk\fk\16k\u0407\13k\3k\3k"+ - "\3l\3l\3l\3l\7l\u040f\nl\fl\16l\u0412\13l\3l\3l\3l\3l\3l\4\u0320\u0410"+ - "\2m\3\3\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_\61a\62c\63e\64g\65i\66k\67"+ - "m8o9q:s;u{?}@\177A\u0081B\u0083C\u0085D\u0087E\u0089F\u008bG\u008d"+ - "H\u008fI\u0091J\u0093K\u0095L\u0097M\u0099N\u009bO\u009dP\u009fQ\u00a1"+ - "R\u00a3S\u00a5T\u00a7U\u00a9V\u00abW\u00adX\u00afY\u00b1Z\u00b3[\u00b5"+ - "\\\u00b7]\u00b9^\u00bb_\u00bd`\u00bfa\u00c1b\u00c3c\u00c5\2\u00c7\2\u00c9"+ - "\2\u00cbd\u00cd\2\u00cf\2\u00d1e\u00d3f\u00d5g\u00d7h\3\2\22\3\2$$\3\2"+ - "||\4\2rruu\4\2ooww\3\2))\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|\4\2--//\6\2\13\f\17\17\"\"\u00a2"+ - "\u00a2\4\2\f\f\17\17\2\u048a\2\3\3\2\2\2\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\u00cb\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\3\u00d9\3\2\2\2\5\u00e0\3\2\2"+ - "\2\7\u00e2\3\2\2\2\t\u00ea\3\2\2\2\13\u00ec\3\2\2\2\r\u00ee\3\2\2\2\17"+ - "\u00f0\3\2\2\2\21\u00f2\3\2\2\2\23\u00f4\3\2\2\2\25\u00f6\3\2\2\2\27\u00f8"+ - "\3\2\2\2\31\u00fb\3\2\2\2\33\u0102\3\2\2\2\35\u010b\3\2\2\2\37\u0111\3"+ - "\2\2\2!\u0118\3\2\2\2#\u011e\3\2\2\2%\u0127\3\2\2\2\'\u012e\3\2\2\2)\u0137"+ - "\3\2\2\2+\u0141\3\2\2\2-\u0149\3\2\2\2/\u014c\3\2\2\2\61\u0151\3\2\2\2"+ - "\63\u0157\3\2\2\2\65\u015a\3\2\2\2\67\u015e\3\2\2\29\u0165\3\2\2\2;\u016b"+ - "\3\2\2\2=\u0174\3\2\2\2?\u0178\3\2\2\2A\u017a\3\2\2\2C\u017d\3\2\2\2E"+ - "\u0184\3\2\2\2G\u018d\3\2\2\2I\u018f\3\2\2\2K\u0191\3\2\2\2M\u0193\3\2"+ - "\2\2O\u019a\3\2\2\2Q\u019f\3\2\2\2S\u01a1\3\2\2\2U\u01a4\3\2\2\2W\u01ab"+ - "\3\2\2\2Y\u01b2\3\2\2\2[\u01b5\3\2\2\2]\u01b8\3\2\2\2_\u01ba\3\2\2\2a"+ - "\u01bc\3\2\2\2c\u01be\3\2\2\2e\u01c0\3\2\2\2g\u01c2\3\2\2\2i\u01c5\3\2"+ - "\2\2k\u01c8\3\2\2\2m\u01ca\3\2\2\2o\u01cc\3\2\2\2q\u01ce\3\2\2\2s\u01d0"+ - "\3\2\2\2u\u01d3\3\2\2\2w\u01d6\3\2\2\2y\u01d9\3\2\2\2{\u01dc\3\2\2\2}"+ - "\u01de\3\2\2\2\177\u01e0\3\2\2\2\u0081\u01e3\3\2\2\2\u0083\u01e6\3\2\2"+ - "\2\u0085\u01e8\3\2\2\2\u0087\u01eb\3\2\2\2\u0089\u01ee\3\2\2\2\u008b\u01f1"+ - "\3\2\2\2\u008d\u01f4\3\2\2\2\u008f\u01f7\3\2\2\2\u0091\u01fb\3\2\2\2\u0093"+ - "\u01ff\3\2\2\2\u0095\u0202\3\2\2\2\u0097\u0205\3\2\2\2\u0099\u0208\3\2"+ - "\2\2\u009b\u0210\3\2\2\2\u009d\u0219\3\2\2\2\u009f\u021e\3\2\2\2\u00a1"+ - "\u0227\3\2\2\2\u00a3\u022d\3\2\2\2\u00a5\u0234\3\2\2\2\u00a7\u0318\3\2"+ - "\2\2\u00a9\u031a\3\2\2\2\u00ab\u034b\3\2\2\2\u00ad\u034d\3\2\2\2\u00af"+ - "\u0363\3\2\2\2\u00b1\u0374\3\2\2\2\u00b3\u0378\3\2\2\2\u00b5\u037d\3\2"+ - "\2\2\u00b7\u0384\3\2\2\2\u00b9\u0395\3\2\2\2\u00bb\u03a3\3\2\2\2\u00bd"+ - "\u03b4\3\2\2\2\u00bf\u03c8\3\2\2\2\u00c1\u03cb\3\2\2\2\u00c3\u03d4\3\2"+ - "\2\2\u00c5\u03db\3\2\2\2\u00c7\u03dd\3\2\2\2\u00c9\u03df\3\2\2\2\u00cb"+ - "\u03e1\3\2\2\2\u00cd\u03e8\3\2\2\2\u00cf\u03ea\3\2\2\2\u00d1\u03ec\3\2"+ - "\2\2\u00d3\u03f9\3\2\2\2\u00d5\u03ff\3\2\2\2\u00d7\u040a\3\2\2\2\u00d9"+ - "\u00da\7k\2\2\u00da\u00db\7o\2\2\u00db\u00dc\7r\2\2\u00dc\u00dd\7q\2\2"+ - "\u00dd\u00de\7t\2\2\u00de\u00df\7v\2\2\u00df\4\3\2\2\2\u00e0\u00e1\7="+ - "\2\2\u00e1\6\3\2\2\2\u00e2\u00e3\7v\2\2\u00e3\u00e4\7{\2\2\u00e4\u00e5"+ - "\7r\2\2\u00e5\u00e6\7g\2\2\u00e6\u00e7\7f\2\2\u00e7\u00e8\7g\2\2\u00e8"+ - "\u00e9\7h\2\2\u00e9\b\3\2\2\2\u00ea\u00eb\7.\2\2\u00eb\n\3\2\2\2\u00ec"+ - "\u00ed\7?\2\2\u00ed\f\3\2\2\2\u00ee\u00ef\7*\2\2\u00ef\16\3\2\2\2\u00f0"+ - "\u00f1\7+\2\2\u00f1\20\3\2\2\2\u00f2\u00f3\7}\2\2\u00f3\22\3\2\2\2\u00f4"+ - "\u00f5\7\177\2\2\u00f5\24\3\2\2\2\u00f6\u00f7\7%\2\2\u00f7\26\3\2\2\2"+ - "\u00f8\u00f9\7r\2\2\u00f9\u00fa\7e\2\2\u00fa\30\3\2\2\2\u00fb\u00fc\7"+ - "v\2\2\u00fc\u00fd\7c\2\2\u00fd\u00fe\7t\2\2\u00fe\u00ff\7i\2\2\u00ff\u0100"+ - "\7g\2\2\u0100\u0101\7v\2\2\u0101\32\3\2\2\2\u0102\u0103\7g\2\2\u0103\u0104"+ - "\7p\2\2\u0104\u0105\7e\2\2\u0105\u0106\7q\2\2\u0106\u0107\7f\2\2\u0107"+ - "\u0108\7k\2\2\u0108\u0109\7p\2\2\u0109\u010a\7i\2\2\u010a\34\3\2\2\2\u010b"+ - "\u010c\7e\2\2\u010c\u010d\7q\2\2\u010d\u010e\7p\2\2\u010e\u010f\7u\2\2"+ - "\u010f\u0110\7v\2\2\u0110\36\3\2\2\2\u0111\u0112\7g\2\2\u0112\u0113\7"+ - "z\2\2\u0113\u0114\7v\2\2\u0114\u0115\7g\2\2\u0115\u0116\7t\2\2\u0116\u0117"+ - "\7p\2\2\u0117 \3\2\2\2\u0118\u0119\7c\2\2\u0119\u011a\7n\2\2\u011a\u011b"+ - "\7k\2\2\u011b\u011c\7i\2\2\u011c\u011d\7p\2\2\u011d\"\3\2\2\2\u011e\u011f"+ - "\7t\2\2\u011f\u0120\7g\2\2\u0120\u0121\7i\2\2\u0121\u0122\7k\2\2\u0122"+ - "\u0123\7u\2\2\u0123\u0124\7v\2\2\u0124\u0125\7g\2\2\u0125\u0126\7t\2\2"+ - "\u0126$\3\2\2\2\u0127\u0128\7k\2\2\u0128\u0129\7p\2\2\u0129\u012a\7n\2"+ - "\2\u012a\u012b\7k\2\2\u012b\u012c\7p\2\2\u012c\u012d\7g\2\2\u012d&\3\2"+ - "\2\2\u012e\u012f\7x\2\2\u012f\u0130\7q\2\2\u0130\u0131\7n\2\2\u0131\u0132"+ - "\7c\2\2\u0132\u0133\7v\2\2\u0133\u0134\7k\2\2\u0134\u0135\7n\2\2\u0135"+ - "\u0136\7g\2\2\u0136(\3\2\2\2\u0137\u0138\7k\2\2\u0138\u0139\7p\2\2\u0139"+ - "\u013a\7v\2\2\u013a\u013b\7g\2\2\u013b\u013c\7t\2\2\u013c\u013d\7t\2\2"+ - "\u013d\u013e\7w\2\2\u013e\u013f\7r\2\2\u013f\u0140\7v\2\2\u0140*\3\2\2"+ - "\2\u0141\u0142\7t\2\2\u0142\u0143\7g\2\2\u0143\u0144\7u\2\2\u0144\u0145"+ - "\7g\2\2\u0145\u0146\7t\2\2\u0146\u0147\7x\2\2\u0147\u0148\7g\2\2\u0148"+ - ",\3\2\2\2\u0149\u014a\7k\2\2\u014a\u014b\7h\2\2\u014b.\3\2\2\2\u014c\u014d"+ - "\7g\2\2\u014d\u014e\7n\2\2\u014e\u014f\7u\2\2\u014f\u0150\7g\2\2\u0150"+ - "\60\3\2\2\2\u0151\u0152\7y\2\2\u0152\u0153\7j\2\2\u0153\u0154\7k\2\2\u0154"+ - "\u0155\7n\2\2\u0155\u0156\7g\2\2\u0156\62\3\2\2\2\u0157\u0158\7f\2\2\u0158"+ - "\u0159\7q\2\2\u0159\64\3\2\2\2\u015a\u015b\7h\2\2\u015b\u015c\7q\2\2\u015c"+ - "\u015d\7t\2\2\u015d\66\3\2\2\2\u015e\u015f\7t\2\2\u015f\u0160\7g\2\2\u0160"+ - "\u0161\7v\2\2\u0161\u0162\7w\2\2\u0162\u0163\7t\2\2\u0163\u0164\7p\2\2"+ - "\u01648\3\2\2\2\u0165\u0166\7d\2\2\u0166\u0167\7t\2\2\u0167\u0168\7g\2"+ - "\2\u0168\u0169\7c\2\2\u0169\u016a\7m\2\2\u016a:\3\2\2\2\u016b\u016c\7"+ - "e\2\2\u016c\u016d\7q\2\2\u016d\u016e\7p\2\2\u016e\u016f\7v\2\2\u016f\u0170"+ - "\7k\2\2\u0170\u0171\7p\2\2\u0171\u0172\7w\2\2\u0172\u0173\7g\2\2\u0173"+ - "<\3\2\2\2\u0174\u0175\7c\2\2\u0175\u0176\7u\2\2\u0176\u0177\7o\2\2\u0177"+ - ">\3\2\2\2\u0178\u0179\7<\2\2\u0179@\3\2\2\2\u017a\u017b\7\60\2\2\u017b"+ - "\u017c\7\60\2\2\u017cB\3\2\2\2\u017d\u017e\7u\2\2\u017e\u017f\7k\2\2\u017f"+ - "\u0180\7i\2\2\u0180\u0181\7p\2\2\u0181\u0182\7g\2\2\u0182\u0183\7f\2\2"+ - "\u0183D\3\2\2\2\u0184\u0185\7w\2\2\u0185\u0186\7p\2\2\u0186\u0187\7u\2"+ - "\2\u0187\u0188\7k\2\2\u0188\u0189\7i\2\2\u0189\u018a\7p\2\2\u018a\u018b"+ - "\7g\2\2\u018b\u018c\7f\2\2\u018cF\3\2\2\2\u018d\u018e\7,\2\2\u018eH\3"+ - "\2\2\2\u018f\u0190\7]\2\2\u0190J\3\2\2\2\u0191\u0192\7_\2\2\u0192L\3\2"+ - "\2\2\u0193\u0194\7u\2\2\u0194\u0195\7v\2\2\u0195\u0196\7t\2\2\u0196\u0197"+ - "\7w\2\2\u0197\u0198\7e\2\2\u0198\u0199\7v\2\2\u0199N\3\2\2\2\u019a\u019b"+ - "\7g\2\2\u019b\u019c\7p\2\2\u019c\u019d\7w\2\2\u019d\u019e\7o\2\2\u019e"+ - "P\3\2\2\2\u019f\u01a0\7\60\2\2\u01a0R\3\2\2\2\u01a1\u01a2\7/\2\2\u01a2"+ - "\u01a3\7@\2\2\u01a3T\3\2\2\2\u01a4\u01a5\7u\2\2\u01a5\u01a6\7k\2\2\u01a6"+ - "\u01a7\7|\2\2\u01a7\u01a8\7g\2\2\u01a8\u01a9\7q\2\2\u01a9\u01aa\7h\2\2"+ - "\u01aaV\3\2\2\2\u01ab\u01ac\7v\2\2\u01ac\u01ad\7{\2\2\u01ad\u01ae\7r\2"+ - "\2\u01ae\u01af\7g\2\2\u01af\u01b0\7k\2\2\u01b0\u01b1\7f\2\2\u01b1X\3\2"+ - "\2\2\u01b2\u01b3\7/\2\2\u01b3\u01b4\7/\2\2\u01b4Z\3\2\2\2\u01b5\u01b6"+ - "\7-\2\2\u01b6\u01b7\7-\2\2\u01b7\\\3\2\2\2\u01b8\u01b9\7-\2\2\u01b9^\3"+ - "\2\2\2\u01ba\u01bb\7/\2\2\u01bb`\3\2\2\2\u01bc\u01bd\7#\2\2\u01bdb\3\2"+ - "\2\2\u01be\u01bf\7(\2\2\u01bfd\3\2\2\2\u01c0\u01c1\7\u0080\2\2\u01c1f"+ - "\3\2\2\2\u01c2\u01c3\7@\2\2\u01c3\u01c4\7@\2\2\u01c4h\3\2\2\2\u01c5\u01c6"+ - "\7>\2\2\u01c6\u01c7\7>\2\2\u01c7j\3\2\2\2\u01c8\u01c9\7\61\2\2\u01c9l"+ - "\3\2\2\2\u01ca\u01cb\7\'\2\2\u01cbn\3\2\2\2\u01cc\u01cd\7>\2\2\u01cdp"+ - "\3\2\2\2\u01ce\u01cf\7@\2\2\u01cfr\3\2\2\2\u01d0\u01d1\7?\2\2\u01d1\u01d2"+ - "\7?\2\2\u01d2t\3\2\2\2\u01d3\u01d4\7#\2\2\u01d4\u01d5\7?\2\2\u01d5v\3"+ - "\2\2\2\u01d6\u01d7\7>\2\2\u01d7\u01d8\7?\2\2\u01d8x\3\2\2\2\u01d9\u01da"+ - "\7@\2\2\u01da\u01db\7?\2\2\u01dbz\3\2\2\2\u01dc\u01dd\7`\2\2\u01dd|\3"+ - "\2\2\2\u01de\u01df\7~\2\2\u01df~\3\2\2\2\u01e0\u01e1\7(\2\2\u01e1\u01e2"+ - "\7(\2\2\u01e2\u0080\3\2\2\2\u01e3\u01e4\7~\2\2\u01e4\u01e5\7~\2\2\u01e5"+ - "\u0082\3\2\2\2\u01e6\u01e7\7A\2\2\u01e7\u0084\3\2\2\2\u01e8\u01e9\7-\2"+ - "\2\u01e9\u01ea\7?\2\2\u01ea\u0086\3\2\2\2\u01eb\u01ec\7/\2\2\u01ec\u01ed"+ - "\7?\2\2\u01ed\u0088\3\2\2\2\u01ee\u01ef\7,\2\2\u01ef\u01f0\7?\2\2\u01f0"+ - "\u008a\3\2\2\2\u01f1\u01f2\7\61\2\2\u01f2\u01f3\7?\2\2\u01f3\u008c\3\2"+ - "\2\2\u01f4\u01f5\7\'\2\2\u01f5\u01f6\7?\2\2\u01f6\u008e\3\2\2\2\u01f7"+ - "\u01f8\7>\2\2\u01f8\u01f9\7>\2\2\u01f9\u01fa\7?\2\2\u01fa\u0090\3\2\2"+ - "\2\u01fb\u01fc\7@\2\2\u01fc\u01fd\7@\2\2\u01fd\u01fe\7?\2\2\u01fe\u0092"+ - "\3\2\2\2\u01ff\u0200\7(\2\2\u0200\u0201\7?\2\2\u0201\u0094\3\2\2\2\u0202"+ - "\u0203\7~\2\2\u0203\u0204\7?\2\2\u0204\u0096\3\2\2\2\u0205\u0206\7`\2"+ - "\2\u0206\u0207\7?\2\2\u0207\u0098\3\2\2\2\u0208\u0209\7m\2\2\u0209\u020a"+ - "\7k\2\2\u020a\u020b\7e\2\2\u020b\u020c\7m\2\2\u020c\u020d\7c\2\2\u020d"+ - "\u020e\7u\2\2\u020e\u020f\7o\2\2\u020f\u009a\3\2\2\2\u0210\u0211\7t\2"+ - "\2\u0211\u0212\7g\2\2\u0212\u0213\7u\2\2\u0213\u0214\7q\2\2\u0214\u0215"+ - "\7w\2\2\u0215\u0216\7t\2\2\u0216\u0217\7e\2\2\u0217\u0218\7g\2\2\u0218"+ - "\u009c\3\2\2\2\u0219\u021a\7w\2\2\u021a\u021b\7u\2\2\u021b\u021c\7g\2"+ - "\2\u021c\u021d\7u\2\2\u021d\u009e\3\2\2\2\u021e\u021f\7e\2\2\u021f\u0220"+ - "\7n\2\2\u0220\u0221\7q\2\2\u0221\u0222\7d\2\2\u0222\u0223\7d\2\2\u0223"+ - "\u0224\7g\2\2\u0224\u0225\7t\2\2\u0225\u0226\7u\2\2\u0226\u00a0\3\2\2"+ - "\2\u0227\u0228\7d\2\2\u0228\u0229\7{\2\2\u0229\u022a\7v\2\2\u022a\u022b"+ - "\7g\2\2\u022b\u022c\7u\2\2\u022c\u00a2\3\2\2\2\u022d\u022e\7e\2\2\u022e"+ - "\u022f\7{\2\2\u022f\u0230\7e\2\2\u0230\u0231\7n\2\2\u0231\u0232\7g\2\2"+ - "\u0232\u0233\7u\2\2\u0233\u00a4\3\2\2\2\u0234\u0235\7\60\2\2\u0235\u0236"+ - "\7d\2\2\u0236\u0237\7{\2\2\u0237\u0238\7v\2\2\u0238\u0239\7g\2\2\u0239"+ - "\u00a6\3\2\2\2\u023a\u023b\7d\2\2\u023b\u023c\7t\2\2\u023c\u0319\7m\2"+ - "\2\u023d\u023e\7q\2\2\u023e\u023f\7t\2\2\u023f\u0319\7c\2\2\u0240\u0241"+ - "\7m\2\2\u0241\u0242\7k\2\2\u0242\u0319\7n\2\2\u0243\u0244\7u\2\2\u0244"+ - "\u0245\7n\2\2\u0245\u0319\7q\2\2\u0246\u0247\7p\2\2\u0247\u0248\7q\2\2"+ - "\u0248\u0319\7r\2\2\u0249\u024a\7c\2\2\u024a\u024b\7u\2\2\u024b\u0319"+ - "\7n\2\2\u024c\u024d\7r\2\2\u024d\u024e\7j\2\2\u024e\u0319\7r\2\2\u024f"+ - "\u0250\7c\2\2\u0250\u0251\7p\2\2\u0251\u0319\7e\2\2\u0252\u0253\7d\2\2"+ - "\u0253\u0254\7r\2\2\u0254\u0319\7n\2\2\u0255\u0256\7e\2\2\u0256\u0257"+ - "\7n\2\2\u0257\u0319\7e\2\2\u0258\u0259\7l\2\2\u0259\u025a\7u\2\2\u025a"+ - "\u0319\7t\2\2\u025b\u025c\7c\2\2\u025c\u025d\7p\2\2\u025d\u0319\7f\2\2"+ - "\u025e\u025f\7t\2\2\u025f\u0260\7n\2\2\u0260\u0319\7c\2\2\u0261\u0262"+ - "\7d\2\2\u0262\u0263\7k\2\2\u0263\u0319\7v\2\2\u0264\u0265\7t\2\2\u0265"+ - "\u0266\7q\2\2\u0266\u0319\7n\2\2\u0267\u0268\7r\2\2\u0268\u0269\7n\2\2"+ - "\u0269\u0319\7c\2\2\u026a\u026b\7r\2\2\u026b\u026c\7n\2\2\u026c\u0319"+ - "\7r\2\2\u026d\u026e\7d\2\2\u026e\u026f\7o\2\2\u026f\u0319\7k\2\2\u0270"+ - "\u0271\7u\2\2\u0271\u0272\7g\2\2\u0272\u0319\7e\2\2\u0273\u0274\7t\2\2"+ - "\u0274\u0275\7v\2\2\u0275\u0319\7k\2\2\u0276\u0277\7g\2\2\u0277\u0278"+ - "\7q\2\2\u0278\u0319\7t\2\2\u0279\u027a\7u\2\2\u027a\u027b\7t\2\2\u027b"+ - "\u0319\7g\2\2\u027c\u027d\7n\2\2\u027d\u027e\7u\2\2\u027e\u0319\7t\2\2"+ - "\u027f\u0280\7r\2\2\u0280\u0281\7j\2\2\u0281\u0319\7c\2\2\u0282\u0283"+ - "\7c\2\2\u0283\u0284\7n\2\2\u0284\u0319\7t\2\2\u0285\u0286\7l\2\2\u0286"+ - "\u0287\7o\2\2\u0287\u0319\7r\2\2\u0288\u0289\7d\2\2\u0289\u028a\7x\2\2"+ - "\u028a\u0319\7e\2\2\u028b\u028c\7e\2\2\u028c\u028d\7n\2\2\u028d\u0319"+ - "\7k\2\2\u028e\u028f\7t\2\2\u028f\u0290\7v\2\2\u0290\u0319\7u\2\2\u0291"+ - "\u0292\7c\2\2\u0292\u0293\7f\2\2\u0293\u0319\7e\2\2\u0294\u0295\7t\2\2"+ - "\u0295\u0296\7t\2\2\u0296\u0319\7c\2\2\u0297\u0298\7d\2\2\u0298\u0299"+ - "\7x\2\2\u0299\u0319\7u\2\2\u029a\u029b\7u\2\2\u029b\u029c\7g\2\2\u029c"+ - "\u0319\7k\2\2\u029d\u029e\7u\2\2\u029e\u029f\7c\2\2\u029f\u0319\7z\2\2"+ - "\u02a0\u02a1\7u\2\2\u02a1\u02a2\7v\2\2\u02a2\u0319\7{\2\2\u02a3\u02a4"+ - "\7u\2\2\u02a4\u02a5\7v\2\2\u02a5\u0319\7c\2\2\u02a6\u02a7\7u\2\2\u02a7"+ - "\u02a8\7v\2\2\u02a8\u0319\7z\2\2\u02a9\u02aa\7f\2\2\u02aa\u02ab\7g\2\2"+ - "\u02ab\u0319\7{\2\2\u02ac\u02ad\7v\2\2\u02ad\u02ae\7z\2\2\u02ae\u0319"+ - "\7c\2\2\u02af\u02b0\7z\2\2\u02b0\u02b1\7c\2\2\u02b1\u0319\7c\2\2\u02b2"+ - "\u02b3\7d\2\2\u02b3\u02b4\7e\2\2\u02b4\u0319\7e\2\2\u02b5\u02b6\7c\2\2"+ - "\u02b6\u02b7\7j\2\2\u02b7\u0319\7z\2\2\u02b8\u02b9\7v\2\2\u02b9\u02ba"+ - "\7{\2\2\u02ba\u0319\7c\2\2\u02bb\u02bc\7v\2\2\u02bc\u02bd\7z\2\2\u02bd"+ - "\u0319\7u\2\2\u02be\u02bf\7v\2\2\u02bf\u02c0\7c\2\2\u02c0\u0319\7u\2\2"+ - "\u02c1\u02c2\7u\2\2\u02c2\u02c3\7j\2\2\u02c3\u0319\7{\2\2\u02c4\u02c5"+ - "\7u\2\2\u02c5\u02c6\7j\2\2\u02c6\u0319\7z\2\2\u02c7\u02c8\7n\2\2\u02c8"+ - "\u02c9\7f\2\2\u02c9\u0319\7{\2\2\u02ca\u02cb\7n\2\2\u02cb\u02cc\7f\2\2"+ - "\u02cc\u0319\7c\2\2\u02cd\u02ce\7n\2\2\u02ce\u02cf\7f\2\2\u02cf\u0319"+ - "\7z\2\2\u02d0\u02d1\7n\2\2\u02d1\u02d2\7c\2\2\u02d2\u0319\7z\2\2\u02d3"+ - "\u02d4\7v\2\2\u02d4\u02d5\7c\2\2\u02d5\u0319\7{\2\2\u02d6\u02d7\7v\2\2"+ - "\u02d7\u02d8\7c\2\2\u02d8\u0319\7z\2\2\u02d9\u02da\7d\2\2\u02da\u02db"+ - "\7e\2\2\u02db\u0319\7u\2\2\u02dc\u02dd\7e\2\2\u02dd\u02de\7n\2\2\u02de"+ - "\u0319\7x\2\2\u02df\u02e0\7v\2\2\u02e0\u02e1\7u\2\2\u02e1\u0319\7z\2\2"+ - "\u02e2\u02e3\7n\2\2\u02e3\u02e4\7c\2\2\u02e4\u0319\7u\2\2\u02e5\u02e6"+ - "\7e\2\2\u02e6\u02e7\7r\2\2\u02e7\u0319\7{\2\2\u02e8\u02e9\7e\2\2\u02e9"+ - "\u02ea\7o\2\2\u02ea\u0319\7r\2\2\u02eb\u02ec\7e\2\2\u02ec\u02ed\7r\2\2"+ - "\u02ed\u0319\7z\2\2\u02ee\u02ef\7f\2\2\u02ef\u02f0\7e\2\2\u02f0\u0319"+ - "\7r\2\2\u02f1\u02f2\7f\2\2\u02f2\u02f3\7g\2\2\u02f3\u0319\7e\2\2\u02f4"+ - "\u02f5\7k\2\2\u02f5\u02f6\7p\2\2\u02f6\u0319\7e\2\2\u02f7\u02f8\7c\2\2"+ - "\u02f8\u02f9\7z\2\2\u02f9\u0319\7u\2\2\u02fa\u02fb\7d\2\2\u02fb\u02fc"+ - "\7p\2\2\u02fc\u0319\7g\2\2\u02fd\u02fe\7e\2\2\u02fe\u02ff\7n\2\2\u02ff"+ - "\u0319\7f\2\2\u0300\u0301\7u\2\2\u0301\u0302\7d\2\2\u0302\u0319\7e\2\2"+ - "\u0303\u0304\7k\2\2\u0304\u0305\7u\2\2\u0305\u0319\7e\2\2\u0306\u0307"+ - "\7k\2\2\u0307\u0308\7p\2\2\u0308\u0319\7z\2\2\u0309\u030a\7d\2\2\u030a"+ - "\u030b\7g\2\2\u030b\u0319\7s\2\2\u030c\u030d\7u\2\2\u030d\u030e\7g\2\2"+ - "\u030e\u0319\7f\2\2\u030f\u0310\7f\2\2\u0310\u0311\7g\2\2\u0311\u0319"+ - "\7z\2\2\u0312\u0313\7k\2\2\u0313\u0314\7p\2\2\u0314\u0319\7{\2\2\u0315"+ - "\u0316\7t\2\2\u0316\u0317\7q\2\2\u0317\u0319\7t\2\2\u0318\u023a\3\2\2"+ - "\2\u0318\u023d\3\2\2\2\u0318\u0240\3\2\2\2\u0318\u0243\3\2\2\2\u0318\u0246"+ - "\3\2\2\2\u0318\u0249\3\2\2\2\u0318\u024c\3\2\2\2\u0318\u024f\3\2\2\2\u0318"+ - "\u0252\3\2\2\2\u0318\u0255\3\2\2\2\u0318\u0258\3\2\2\2\u0318\u025b\3\2"+ - "\2\2\u0318\u025e\3\2\2\2\u0318\u0261\3\2\2\2\u0318\u0264\3\2\2\2\u0318"+ - "\u0267\3\2\2\2\u0318\u026a\3\2\2\2\u0318\u026d\3\2\2\2\u0318\u0270\3\2"+ - "\2\2\u0318\u0273\3\2\2\2\u0318\u0276\3\2\2\2\u0318\u0279\3\2\2\2\u0318"+ - "\u027c\3\2\2\2\u0318\u027f\3\2\2\2\u0318\u0282\3\2\2\2\u0318\u0285\3\2"+ - "\2\2\u0318\u0288\3\2\2\2\u0318\u028b\3\2\2\2\u0318\u028e\3\2\2\2\u0318"+ - "\u0291\3\2\2\2\u0318\u0294\3\2\2\2\u0318\u0297\3\2\2\2\u0318\u029a\3\2"+ - "\2\2\u0318\u029d\3\2\2\2\u0318\u02a0\3\2\2\2\u0318\u02a3\3\2\2\2\u0318"+ - "\u02a6\3\2\2\2\u0318\u02a9\3\2\2\2\u0318\u02ac\3\2\2\2\u0318\u02af\3\2"+ - "\2\2\u0318\u02b2\3\2\2\2\u0318\u02b5\3\2\2\2\u0318\u02b8\3\2\2\2\u0318"+ - "\u02bb\3\2\2\2\u0318\u02be\3\2\2\2\u0318\u02c1\3\2\2\2\u0318\u02c4\3\2"+ - "\2\2\u0318\u02c7\3\2\2\2\u0318\u02ca\3\2\2\2\u0318\u02cd\3\2\2\2\u0318"+ - "\u02d0\3\2\2\2\u0318\u02d3\3\2\2\2\u0318\u02d6\3\2\2\2\u0318\u02d9\3\2"+ - "\2\2\u0318\u02dc\3\2\2\2\u0318\u02df\3\2\2\2\u0318\u02e2\3\2\2\2\u0318"+ - "\u02e5\3\2\2\2\u0318\u02e8\3\2\2\2\u0318\u02eb\3\2\2\2\u0318\u02ee\3\2"+ - "\2\2\u0318\u02f1\3\2\2\2\u0318\u02f4\3\2\2\2\u0318\u02f7\3\2\2\2\u0318"+ - "\u02fa\3\2\2\2\u0318\u02fd\3\2\2\2\u0318\u0300\3\2\2\2\u0318\u0303\3\2"+ - "\2\2\u0318\u0306\3\2\2\2\u0318\u0309\3\2\2\2\u0318\u030c\3\2\2\2\u0318"+ - "\u030f\3\2\2\2\u0318\u0312\3\2\2\2\u0318\u0315\3\2\2\2\u0319\u00a8\3\2"+ - "\2\2\u031a\u031b\7}\2\2\u031b\u031c\7}\2\2\u031c\u0320\3\2\2\2\u031d\u031f"+ - "\13\2\2\2\u031e\u031d\3\2\2\2\u031f\u0322\3\2\2\2\u0320\u0321\3\2\2\2"+ - "\u0320\u031e\3\2\2\2\u0321\u0323\3\2\2\2\u0322\u0320\3\2\2\2\u0323\u0324"+ - "\7\177\2\2\u0324\u0325\7\177\2\2\u0325\u00aa\3\2\2\2\u0326\u0327\7d\2"+ - "\2\u0327\u0328\7{\2\2\u0328\u0329\7v\2\2\u0329\u034c\7g\2\2\u032a\u032b"+ - "\7y\2\2\u032b\u032c\7q\2\2\u032c\u032d\7t\2\2\u032d\u034c\7f\2\2\u032e"+ - "\u032f\7f\2\2\u032f\u0330\7y\2\2\u0330\u0331\7q\2\2\u0331\u0332\7t\2\2"+ - "\u0332\u034c\7f\2\2\u0333\u0334\7d\2\2\u0334\u0335\7q\2\2\u0335\u0336"+ - "\7q\2\2\u0336\u034c\7n\2\2\u0337\u0338\7e\2\2\u0338\u0339\7j\2\2\u0339"+ - "\u033a\7c\2\2\u033a\u034c\7t\2\2\u033b\u033c\7u\2\2\u033c\u033d\7j\2\2"+ - "\u033d\u033e\7q\2\2\u033e\u033f\7t\2\2\u033f\u034c\7v\2\2\u0340\u0341"+ - "\7k\2\2\u0341\u0342\7p\2\2\u0342\u034c\7v\2\2\u0343\u0344\7n\2\2\u0344"+ - "\u0345\7q\2\2\u0345\u0346\7p\2\2\u0346\u034c\7i\2\2\u0347\u0348\7x\2\2"+ - "\u0348\u0349\7q\2\2\u0349\u034a\7k\2\2\u034a\u034c\7f\2\2\u034b\u0326"+ - "\3\2\2\2\u034b\u032a\3\2\2\2\u034b\u032e\3\2\2\2\u034b\u0333\3\2\2\2\u034b"+ - "\u0337\3\2\2\2\u034b\u033b\3\2\2\2\u034b\u0340\3\2\2\2\u034b\u0343\3\2"+ - "\2\2\u034b\u0347\3\2\2\2\u034c\u00ac\3\2\2\2\u034d\u0353\7$\2\2\u034e"+ - "\u034f\7^\2\2\u034f\u0352\7$\2\2\u0350\u0352\n\2\2\2\u0351\u034e\3\2\2"+ - "\2\u0351\u0350\3\2\2\2\u0352\u0355\3\2\2\2\u0353\u0351\3\2\2\2\u0353\u0354"+ - "\3\2\2\2\u0354\u0356\3\2\2\2\u0355\u0353\3\2\2\2\u0356\u0358\7$\2\2\u0357"+ - "\u0359\t\3\2\2\u0358\u0357\3\2\2\2\u0358\u0359\3\2\2\2\u0359\u035e\3\2"+ - "\2\2\u035a\u035c\t\4\2\2\u035b\u035d\t\5\2\2\u035c\u035b\3\2\2\2\u035c"+ - "\u035d\3\2\2\2\u035d\u035f\3\2\2\2\u035e\u035a\3\2\2\2\u035e\u035f\3\2"+ - "\2\2\u035f\u0361\3\2\2\2\u0360\u0362\t\3\2\2\u0361\u0360\3\2\2\2\u0361"+ - "\u0362\3\2\2\2\u0362\u00ae\3\2\2\2\u0363\u0367\7)\2\2\u0364\u0365\7^\2"+ - "\2\u0365\u0368\7)\2\2\u0366\u0368\n\6\2\2\u0367\u0364\3\2\2\2\u0367\u0366"+ - "\3\2\2\2\u0368\u0369\3\2\2\2\u0369\u036a\7)\2\2\u036a\u00b0\3\2\2\2\u036b"+ - "\u036c\7v\2\2\u036c\u036d\7t\2\2\u036d\u036e\7w\2\2\u036e\u0375\7g\2\2"+ - "\u036f\u0370\7h\2\2\u0370\u0371\7c\2\2\u0371\u0372\7n\2\2\u0372\u0373"+ - "\7u\2\2\u0373\u0375\7g\2\2\u0374\u036b\3\2\2\2\u0374\u036f\3\2\2\2\u0375"+ - "\u00b2\3\2\2\2\u0376\u0379\5\u00b5[\2\u0377\u0379\5\u00bd_\2\u0378\u0376"+ - "\3\2\2\2\u0378\u0377\3\2\2\2\u0379\u00b4\3\2\2\2\u037a\u037e\5\u00b7\\"+ - "\2\u037b\u037e\5\u00b9]\2\u037c\u037e\5\u00bb^\2\u037d\u037a\3\2\2\2\u037d"+ - "\u037b\3\2\2\2\u037d\u037c\3\2\2\2\u037e\u00b6\3\2\2\2\u037f\u0385\7\'"+ - "\2\2\u0380\u0381\7\62\2\2\u0381\u0385\7d\2\2\u0382\u0383\7\62\2\2\u0383"+ - "\u0385\7D\2\2\u0384\u037f\3\2\2\2\u0384\u0380\3\2\2\2\u0384\u0382\3\2"+ - "\2\2\u0385\u0389\3\2\2\2\u0386\u0388\5\u00c5c\2\u0387\u0386\3\2\2\2\u0388"+ - "\u038b\3\2\2\2\u0389\u0387\3\2\2\2\u0389\u038a\3\2\2\2\u038a\u038c\3\2"+ - "\2\2\u038b\u0389\3\2\2\2\u038c\u038e\7\60\2\2\u038d\u038f\5\u00c5c\2\u038e"+ - "\u038d\3\2\2\2\u038f\u0390\3\2\2\2\u0390\u038e\3\2\2\2\u0390\u0391\3\2"+ - "\2\2\u0391\u00b8\3\2\2\2\u0392\u0394\5\u00c7d\2\u0393\u0392\3\2\2\2\u0394"+ - "\u0397\3\2\2\2\u0395\u0393\3\2\2\2\u0395\u0396\3\2\2\2\u0396\u0398\3\2"+ - "\2\2\u0397\u0395\3\2\2\2\u0398\u039a\7\60\2\2\u0399\u039b\5\u00c7d\2\u039a"+ - "\u0399\3\2\2\2\u039b\u039c\3\2\2\2\u039c\u039a\3\2\2\2\u039c\u039d\3\2"+ - "\2\2\u039d\u00ba\3\2\2\2\u039e\u03a4\7&\2\2\u039f\u03a0\7\62\2\2\u03a0"+ - "\u03a4\7z\2\2\u03a1\u03a2\7\62\2\2\u03a2\u03a4\7Z\2\2\u03a3\u039e\3\2"+ - "\2\2\u03a3\u039f\3\2\2\2\u03a3\u03a1\3\2\2\2\u03a4\u03a8\3\2\2\2\u03a5"+ - "\u03a7\5\u00c9e\2\u03a6\u03a5\3\2\2\2\u03a7\u03aa\3\2\2\2\u03a8\u03a6"+ - "\3\2\2\2\u03a8\u03a9\3\2\2\2\u03a9\u03ab\3\2\2\2\u03aa\u03a8\3\2\2\2\u03ab"+ - "\u03ad\7\60\2\2\u03ac\u03ae\5\u00c9e\2\u03ad\u03ac\3\2\2\2\u03ae\u03af"+ - "\3\2\2\2\u03af\u03ad\3\2\2\2\u03af\u03b0\3\2\2\2\u03b0\u00bc\3\2\2\2\u03b1"+ - "\u03b5\5\u00c1a\2\u03b2\u03b5\5\u00c3b\2\u03b3\u03b5\5\u00bf`\2\u03b4"+ - "\u03b1\3\2\2\2\u03b4\u03b2\3\2\2\2\u03b4\u03b3\3\2\2\2\u03b5\u03b9\3\2"+ - "\2\2\u03b6\u03b7\t\7\2\2\u03b7\u03ba\t\b\2\2\u03b8\u03ba\7n\2\2\u03b9"+ - "\u03b6\3\2\2\2\u03b9\u03b8\3\2\2\2\u03b9\u03ba\3\2\2\2\u03ba\u00be\3\2"+ - "\2\2\u03bb\u03bc\7\62\2\2\u03bc\u03be\t\t\2\2\u03bd\u03bf\5\u00c5c\2\u03be"+ - "\u03bd\3\2\2\2\u03bf\u03c0\3\2\2\2\u03c0\u03be\3\2\2\2\u03c0\u03c1\3\2"+ - "\2\2\u03c1\u03c9\3\2\2\2\u03c2\u03c4\7\'\2\2\u03c3\u03c5\5\u00c5c\2\u03c4"+ - "\u03c3\3\2\2\2\u03c5\u03c6\3\2\2\2\u03c6\u03c4\3\2\2\2\u03c6\u03c7\3\2"+ - "\2\2\u03c7\u03c9\3\2\2\2\u03c8\u03bb\3\2\2\2\u03c8\u03c2\3\2\2\2\u03c9"+ - "\u00c0\3\2\2\2\u03ca\u03cc\5\u00c7d\2\u03cb\u03ca\3\2\2\2\u03cc\u03cd"+ - "\3\2\2\2\u03cd\u03cb\3\2\2\2\u03cd\u03ce\3\2\2\2\u03ce\u00c2\3\2\2\2\u03cf"+ - "\u03d5\7&\2\2\u03d0\u03d1\7\62\2\2\u03d1\u03d5\7z\2\2\u03d2\u03d3\7\62"+ - "\2\2\u03d3\u03d5\7Z\2\2\u03d4\u03cf\3\2\2\2\u03d4\u03d0\3\2\2\2\u03d4"+ - "\u03d2\3\2\2\2\u03d5\u03d7\3\2\2\2\u03d6\u03d8\5\u00c9e\2\u03d7\u03d6"+ - "\3\2\2\2\u03d8\u03d9\3\2\2\2\u03d9\u03d7\3\2\2\2\u03d9\u03da\3\2\2\2\u03da"+ - "\u00c4\3\2\2\2\u03db\u03dc\t\n\2\2\u03dc\u00c6\3\2\2\2\u03dd\u03de\t\13"+ - "\2\2\u03de\u00c8\3\2\2\2\u03df\u03e0\t\f\2\2\u03e0\u00ca\3\2\2\2\u03e1"+ - "\u03e5\5\u00cdg\2\u03e2\u03e4\5\u00cfh\2\u03e3\u03e2\3\2\2\2\u03e4\u03e7"+ - "\3\2\2\2\u03e5\u03e3\3\2\2\2\u03e5\u03e6\3\2\2\2\u03e6\u00cc\3\2\2\2\u03e7"+ - "\u03e5\3\2\2\2\u03e8\u03e9\t\r\2\2\u03e9\u00ce\3\2\2\2\u03ea\u03eb\t\16"+ - "\2\2\u03eb\u00d0\3\2\2\2\u03ec\u03f0\7#\2\2\u03ed\u03ef\5\u00cfh\2\u03ee"+ - "\u03ed\3\2\2\2\u03ef\u03f2\3\2\2\2\u03f0\u03ee\3\2\2\2\u03f0\u03f1\3\2"+ - "\2\2\u03f1\u03f4\3\2\2\2\u03f2\u03f0\3\2\2\2\u03f3\u03f5\t\17\2\2\u03f4"+ - "\u03f3\3\2\2\2\u03f5\u03f6\3\2\2\2\u03f6\u03f4\3\2\2\2\u03f6\u03f7\3\2"+ - "\2\2\u03f7\u00d2\3\2\2\2\u03f8\u03fa\t\20\2\2\u03f9\u03f8\3\2\2\2\u03fa"+ - "\u03fb\3\2\2\2\u03fb\u03f9\3\2\2\2\u03fb\u03fc\3\2\2\2\u03fc\u03fd\3\2"+ - "\2\2\u03fd\u03fe\bj\2\2\u03fe\u00d4\3\2\2\2\u03ff\u0400\7\61\2\2\u0400"+ - "\u0401\7\61\2\2\u0401\u0405\3\2\2\2\u0402\u0404\n\21\2\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\bk\3\2\u0409\u00d6\3\2"+ - "\2\2\u040a\u040b\7\61\2\2\u040b\u040c\7,\2\2\u040c\u0410\3\2\2\2\u040d"+ - "\u040f\13\2\2\2\u040e\u040d\3\2\2\2\u040f\u0412\3\2\2\2\u0410\u0411\3"+ - "\2\2\2\u0410\u040e\3\2\2\2\u0411\u0413\3\2\2\2\u0412\u0410\3\2\2\2\u0413"+ - "\u0414\7,\2\2\u0414\u0415\7\61\2\2\u0415\u0416\3\2\2\2\u0416\u0417\bl"+ - "\3\2\u0417\u00d8\3\2\2\2&\2\u0318\u0320\u034b\u0351\u0353\u0358\u035c"+ - "\u035e\u0361\u0367\u0374\u0378\u037d\u0384\u0389\u0390\u0395\u039c\u03a3"+ - "\u03a8\u03af\u03b4\u03b9\u03c0\u03c6\u03c8\u03cd\u03d4\u03d9\u03e5\u03f0"+ - "\u03f6\u03fb\u0405\u0410\4\2\3\2\2\4\2"; + "k\4l\tl\4m\tm\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\3\3\3\3\4\3\4\3\4\3\4\3\4"+ + "\3\4\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\f\3\f\3\f\3\f\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3\16\3\16\3\16\3\16\3"+ + "\16\3\16\3\16\3\16\3\16\3\16\3\17\3\17\3\17\3\17\3\17\3\17\3\20\3\20\3"+ + "\20\3\20\3\20\3\20\3\20\3\21\3\21\3\21\3\21\3\21\3\21\3\22\3\22\3\22\3"+ + "\22\3\22\3\22\3\22\3\22\3\22\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\24\3"+ + "\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\25\3\25\3\25\3\25\3\25\3\25\3"+ + "\25\3\25\3\25\3\25\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\27\3\27\3"+ + "\27\3\30\3\30\3\30\3\30\3\30\3\31\3\31\3\31\3\31\3\31\3\31\3\32\3\32\3"+ + "\32\3\33\3\33\3\33\3\33\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\35\3\35\3"+ + "\35\3\35\3\35\3\35\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\37\3"+ + "\37\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"+ + "(\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\61\3\61\3\62\3\62\3\63\3\63\3\64\3\64\3\64"+ + "\3\65\3\65\3\65\3\66\3\66\3\67\3\67\38\38\39\39\3:\3:\3:\3;\3;\3;\3<\3"+ + "<\3<\3=\3=\3=\3>\3>\3?\3?\3@\3@\3@\3A\3A\3A\3B\3B\3C\3C\3C\3D\3D\3D\3"+ + "E\3E\3E\3F\3F\3F\3G\3G\3G\3H\3H\3H\3H\3I\3I\3I\3I\3J\3J\3J\3K\3K\3K\3"+ + "L\3L\3L\3M\3M\3M\3M\3M\3M\3M\3M\3N\3N\3N\3N\3N\3N\3N\3N\3N\3O\3O\3O\3"+ + "O\3O\3P\3P\3P\3P\3P\3P\3P\3P\3P\3Q\3Q\3Q\3Q\3Q\3Q\3R\3R\3R\3R\3R\3R\3"+ + "R\3S\3S\3S\3T\3T\3T\3T\3T\3T\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3"+ + "U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3"+ + "U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3"+ + "U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3"+ + "U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3"+ + "U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3"+ + "U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3"+ + "U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3"+ + "U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3"+ + "U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3U\3"+ + "U\3U\5U\u0321\nU\3V\3V\3V\3V\7V\u0327\nV\fV\16V\u032a\13V\3V\3V\3V\3W"+ + "\3W\3W\3W\3W\3W\3W\3W\3W\3W\3W\3W\3W\3W\3W\3W\3W\3W\3W\3W\3W\3W\3W\3W"+ + "\3W\3W\3W\3W\3W\3W\3W\3W\3W\3W\3W\3W\3W\5W\u0354\nW\3X\3X\3X\3X\7X\u035a"+ + "\nX\fX\16X\u035d\13X\3X\3X\5X\u0361\nX\3X\3X\5X\u0365\nX\5X\u0367\nX\3"+ + "X\5X\u036a\nX\3Y\3Y\3Y\3Y\5Y\u0370\nY\3Y\3Y\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3"+ + "Z\5Z\u037d\nZ\3[\3[\5[\u0381\n[\3\\\3\\\3\\\5\\\u0386\n\\\3]\3]\3]\3]"+ + "\3]\5]\u038d\n]\3]\7]\u0390\n]\f]\16]\u0393\13]\3]\3]\6]\u0397\n]\r]\16"+ + "]\u0398\3^\7^\u039c\n^\f^\16^\u039f\13^\3^\3^\6^\u03a3\n^\r^\16^\u03a4"+ + "\3_\3_\3_\3_\3_\5_\u03ac\n_\3_\7_\u03af\n_\f_\16_\u03b2\13_\3_\3_\6_\u03b6"+ + "\n_\r_\16_\u03b7\3`\3`\3`\5`\u03bd\n`\3`\3`\3`\5`\u03c2\n`\3a\3a\3a\6"+ + "a\u03c7\na\ra\16a\u03c8\3a\3a\6a\u03cd\na\ra\16a\u03ce\5a\u03d1\na\3b"+ + "\6b\u03d4\nb\rb\16b\u03d5\3c\3c\3c\3c\3c\5c\u03dd\nc\3c\6c\u03e0\nc\r"+ + "c\16c\u03e1\3d\3d\3e\3e\3f\3f\3g\3g\7g\u03ec\ng\fg\16g\u03ef\13g\3h\3"+ + "h\3i\3i\3j\3j\7j\u03f7\nj\fj\16j\u03fa\13j\3j\6j\u03fd\nj\rj\16j\u03fe"+ + "\3k\6k\u0402\nk\rk\16k\u0403\3k\3k\3l\3l\3l\3l\7l\u040c\nl\fl\16l\u040f"+ + "\13l\3l\3l\3m\3m\3m\3m\7m\u0417\nm\fm\16m\u041a\13m\3m\3m\3m\3m\3m\4\u0328"+ + "\u0418\2n\3\3\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_\61a\62c\63e\64g\65"+ + "i\66k\67m8o9q:s;u{?}@\177A\u0081B\u0083C\u0085D\u0087E\u0089F\u008b"+ + "G\u008dH\u008fI\u0091J\u0093K\u0095L\u0097M\u0099N\u009bO\u009dP\u009f"+ + "Q\u00a1R\u00a3S\u00a5T\u00a7U\u00a9V\u00abW\u00adX\u00afY\u00b1Z\u00b3"+ + "[\u00b5\\\u00b7]\u00b9^\u00bb_\u00bd`\u00bfa\u00c1b\u00c3c\u00c5d\u00c7"+ + "\2\u00c9\2\u00cb\2\u00cde\u00cf\2\u00d1\2\u00d3f\u00d5g\u00d7h\u00d9i"+ + "\3\2\22\3\2$$\3\2||\4\2rruu\4\2ooww\3\2))\4\2uuww\7\2dfkknnuuyy\4\2DD"+ + "dd\3\2\62\63\3\2\62;\5\2\62;CHch\5\2C\\aac|\6\2\62;C\\aac|\4\2--//\6\2"+ + "\13\f\17\17\"\"\u00a2\u00a2\4\2\f\f\17\17\2\u0492\2\3\3\2\2\2\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\2"+ + "Y\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\u00cd\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\3\u00db\3\2\2\2\5\u00e2\3\2\2\2\7\u00e4\3\2\2\2\t\u00ec\3\2\2"+ + "\2\13\u00ee\3\2\2\2\r\u00f0\3\2\2\2\17\u00f2\3\2\2\2\21\u00f4\3\2\2\2"+ + "\23\u00f6\3\2\2\2\25\u00f8\3\2\2\2\27\u00fa\3\2\2\2\31\u00fe\3\2\2\2\33"+ + "\u0106\3\2\2\2\35\u0110\3\2\2\2\37\u0116\3\2\2\2!\u011d\3\2\2\2#\u0123"+ + "\3\2\2\2%\u012c\3\2\2\2\'\u0133\3\2\2\2)\u013c\3\2\2\2+\u0146\3\2\2\2"+ + "-\u014e\3\2\2\2/\u0151\3\2\2\2\61\u0156\3\2\2\2\63\u015c\3\2\2\2\65\u015f"+ + "\3\2\2\2\67\u0163\3\2\2\29\u016a\3\2\2\2;\u0170\3\2\2\2=\u0179\3\2\2\2"+ + "?\u017d\3\2\2\2A\u017f\3\2\2\2C\u0182\3\2\2\2E\u0189\3\2\2\2G\u0192\3"+ + "\2\2\2I\u0194\3\2\2\2K\u0196\3\2\2\2M\u0198\3\2\2\2O\u019f\3\2\2\2Q\u01a4"+ + "\3\2\2\2S\u01a6\3\2\2\2U\u01a9\3\2\2\2W\u01b0\3\2\2\2Y\u01b7\3\2\2\2["+ + "\u01ba\3\2\2\2]\u01bd\3\2\2\2_\u01bf\3\2\2\2a\u01c1\3\2\2\2c\u01c3\3\2"+ + "\2\2e\u01c5\3\2\2\2g\u01c7\3\2\2\2i\u01ca\3\2\2\2k\u01cd\3\2\2\2m\u01cf"+ + "\3\2\2\2o\u01d1\3\2\2\2q\u01d3\3\2\2\2s\u01d5\3\2\2\2u\u01d8\3\2\2\2w"+ + "\u01db\3\2\2\2y\u01de\3\2\2\2{\u01e1\3\2\2\2}\u01e3\3\2\2\2\177\u01e5"+ + "\3\2\2\2\u0081\u01e8\3\2\2\2\u0083\u01eb\3\2\2\2\u0085\u01ed\3\2\2\2\u0087"+ + "\u01f0\3\2\2\2\u0089\u01f3\3\2\2\2\u008b\u01f6\3\2\2\2\u008d\u01f9\3\2"+ + "\2\2\u008f\u01fc\3\2\2\2\u0091\u0200\3\2\2\2\u0093\u0204\3\2\2\2\u0095"+ + "\u0207\3\2\2\2\u0097\u020a\3\2\2\2\u0099\u020d\3\2\2\2\u009b\u0215\3\2"+ + "\2\2\u009d\u021e\3\2\2\2\u009f\u0223\3\2\2\2\u00a1\u022c\3\2\2\2\u00a3"+ + "\u0232\3\2\2\2\u00a5\u0239\3\2\2\2\u00a7\u023c\3\2\2\2\u00a9\u0320\3\2"+ + "\2\2\u00ab\u0322\3\2\2\2\u00ad\u0353\3\2\2\2\u00af\u0355\3\2\2\2\u00b1"+ + "\u036b\3\2\2\2\u00b3\u037c\3\2\2\2\u00b5\u0380\3\2\2\2\u00b7\u0385\3\2"+ + "\2\2\u00b9\u038c\3\2\2\2\u00bb\u039d\3\2\2\2\u00bd\u03ab\3\2\2\2\u00bf"+ + "\u03bc\3\2\2\2\u00c1\u03d0\3\2\2\2\u00c3\u03d3\3\2\2\2\u00c5\u03dc\3\2"+ + "\2\2\u00c7\u03e3\3\2\2\2\u00c9\u03e5\3\2\2\2\u00cb\u03e7\3\2\2\2\u00cd"+ + "\u03e9\3\2\2\2\u00cf\u03f0\3\2\2\2\u00d1\u03f2\3\2\2\2\u00d3\u03f4\3\2"+ + "\2\2\u00d5\u0401\3\2\2\2\u00d7\u0407\3\2\2\2\u00d9\u0412\3\2\2\2\u00db"+ + "\u00dc\7k\2\2\u00dc\u00dd\7o\2\2\u00dd\u00de\7r\2\2\u00de\u00df\7q\2\2"+ + "\u00df\u00e0\7t\2\2\u00e0\u00e1\7v\2\2\u00e1\4\3\2\2\2\u00e2\u00e3\7="+ + "\2\2\u00e3\6\3\2\2\2\u00e4\u00e5\7v\2\2\u00e5\u00e6\7{\2\2\u00e6\u00e7"+ + "\7r\2\2\u00e7\u00e8\7g\2\2\u00e8\u00e9\7f\2\2\u00e9\u00ea\7g\2\2\u00ea"+ + "\u00eb\7h\2\2\u00eb\b\3\2\2\2\u00ec\u00ed\7.\2\2\u00ed\n\3\2\2\2\u00ee"+ + "\u00ef\7?\2\2\u00ef\f\3\2\2\2\u00f0\u00f1\7*\2\2\u00f1\16\3\2\2\2\u00f2"+ + "\u00f3\7+\2\2\u00f3\20\3\2\2\2\u00f4\u00f5\7}\2\2\u00f5\22\3\2\2\2\u00f6"+ + "\u00f7\7\177\2\2\u00f7\24\3\2\2\2\u00f8\u00f9\7%\2\2\u00f9\26\3\2\2\2"+ + "\u00fa\u00fb\7%\2\2\u00fb\u00fc\7r\2\2\u00fc\u00fd\7e\2\2\u00fd\30\3\2"+ + "\2\2\u00fe\u00ff\7%\2\2\u00ff\u0100\7v\2\2\u0100\u0101\7c\2\2\u0101\u0102"+ + "\7t\2\2\u0102\u0103\7i\2\2\u0103\u0104\7g\2\2\u0104\u0105\7v\2\2\u0105"+ + "\32\3\2\2\2\u0106\u0107\7%\2\2\u0107\u0108\7g\2\2\u0108\u0109\7p\2\2\u0109"+ + "\u010a\7e\2\2\u010a\u010b\7q\2\2\u010b\u010c\7f\2\2\u010c\u010d\7k\2\2"+ + "\u010d\u010e\7p\2\2\u010e\u010f\7i\2\2\u010f\34\3\2\2\2\u0110\u0111\7"+ + "e\2\2\u0111\u0112\7q\2\2\u0112\u0113\7p\2\2\u0113\u0114\7u\2\2\u0114\u0115"+ + "\7v\2\2\u0115\36\3\2\2\2\u0116\u0117\7g\2\2\u0117\u0118\7z\2\2\u0118\u0119"+ + "\7v\2\2\u0119\u011a\7g\2\2\u011a\u011b\7t\2\2\u011b\u011c\7p\2\2\u011c"+ + " \3\2\2\2\u011d\u011e\7c\2\2\u011e\u011f\7n\2\2\u011f\u0120\7k\2\2\u0120"+ + "\u0121\7i\2\2\u0121\u0122\7p\2\2\u0122\"\3\2\2\2\u0123\u0124\7t\2\2\u0124"+ + "\u0125\7g\2\2\u0125\u0126\7i\2\2\u0126\u0127\7k\2\2\u0127\u0128\7u\2\2"+ + "\u0128\u0129\7v\2\2\u0129\u012a\7g\2\2\u012a\u012b\7t\2\2\u012b$\3\2\2"+ + "\2\u012c\u012d\7k\2\2\u012d\u012e\7p\2\2\u012e\u012f\7n\2\2\u012f\u0130"+ + "\7k\2\2\u0130\u0131\7p\2\2\u0131\u0132\7g\2\2\u0132&\3\2\2\2\u0133\u0134"+ + "\7x\2\2\u0134\u0135\7q\2\2\u0135\u0136\7n\2\2\u0136\u0137\7c\2\2\u0137"+ + "\u0138\7v\2\2\u0138\u0139\7k\2\2\u0139\u013a\7n\2\2\u013a\u013b\7g\2\2"+ + "\u013b(\3\2\2\2\u013c\u013d\7k\2\2\u013d\u013e\7p\2\2\u013e\u013f\7v\2"+ + "\2\u013f\u0140\7g\2\2\u0140\u0141\7t\2\2\u0141\u0142\7t\2\2\u0142\u0143"+ + "\7w\2\2\u0143\u0144\7r\2\2\u0144\u0145\7v\2\2\u0145*\3\2\2\2\u0146\u0147"+ + "\7t\2\2\u0147\u0148\7g\2\2\u0148\u0149\7u\2\2\u0149\u014a\7g\2\2\u014a"+ + "\u014b\7t\2\2\u014b\u014c\7x\2\2\u014c\u014d\7g\2\2\u014d,\3\2\2\2\u014e"+ + "\u014f\7k\2\2\u014f\u0150\7h\2\2\u0150.\3\2\2\2\u0151\u0152\7g\2\2\u0152"+ + "\u0153\7n\2\2\u0153\u0154\7u\2\2\u0154\u0155\7g\2\2\u0155\60\3\2\2\2\u0156"+ + "\u0157\7y\2\2\u0157\u0158\7j\2\2\u0158\u0159\7k\2\2\u0159\u015a\7n\2\2"+ + "\u015a\u015b\7g\2\2\u015b\62\3\2\2\2\u015c\u015d\7f\2\2\u015d\u015e\7"+ + "q\2\2\u015e\64\3\2\2\2\u015f\u0160\7h\2\2\u0160\u0161\7q\2\2\u0161\u0162"+ + "\7t\2\2\u0162\66\3\2\2\2\u0163\u0164\7t\2\2\u0164\u0165\7g\2\2\u0165\u0166"+ + "\7v\2\2\u0166\u0167\7w\2\2\u0167\u0168\7t\2\2\u0168\u0169\7p\2\2\u0169"+ + "8\3\2\2\2\u016a\u016b\7d\2\2\u016b\u016c\7t\2\2\u016c\u016d\7g\2\2\u016d"+ + "\u016e\7c\2\2\u016e\u016f\7m\2\2\u016f:\3\2\2\2\u0170\u0171\7e\2\2\u0171"+ + "\u0172\7q\2\2\u0172\u0173\7p\2\2\u0173\u0174\7v\2\2\u0174\u0175\7k\2\2"+ + "\u0175\u0176\7p\2\2\u0176\u0177\7w\2\2\u0177\u0178\7g\2\2\u0178<\3\2\2"+ + "\2\u0179\u017a\7c\2\2\u017a\u017b\7u\2\2\u017b\u017c\7o\2\2\u017c>\3\2"+ + "\2\2\u017d\u017e\7<\2\2\u017e@\3\2\2\2\u017f\u0180\7\60\2\2\u0180\u0181"+ + "\7\60\2\2\u0181B\3\2\2\2\u0182\u0183\7u\2\2\u0183\u0184\7k\2\2\u0184\u0185"+ + "\7i\2\2\u0185\u0186\7p\2\2\u0186\u0187\7g\2\2\u0187\u0188\7f\2\2\u0188"+ + "D\3\2\2\2\u0189\u018a\7w\2\2\u018a\u018b\7p\2\2\u018b\u018c\7u\2\2\u018c"+ + "\u018d\7k\2\2\u018d\u018e\7i\2\2\u018e\u018f\7p\2\2\u018f\u0190\7g\2\2"+ + "\u0190\u0191\7f\2\2\u0191F\3\2\2\2\u0192\u0193\7,\2\2\u0193H\3\2\2\2\u0194"+ + "\u0195\7]\2\2\u0195J\3\2\2\2\u0196\u0197\7_\2\2\u0197L\3\2\2\2\u0198\u0199"+ + "\7u\2\2\u0199\u019a\7v\2\2\u019a\u019b\7t\2\2\u019b\u019c\7w\2\2\u019c"+ + "\u019d\7e\2\2\u019d\u019e\7v\2\2\u019eN\3\2\2\2\u019f\u01a0\7g\2\2\u01a0"+ + "\u01a1\7p\2\2\u01a1\u01a2\7w\2\2\u01a2\u01a3\7o\2\2\u01a3P\3\2\2\2\u01a4"+ + "\u01a5\7\60\2\2\u01a5R\3\2\2\2\u01a6\u01a7\7/\2\2\u01a7\u01a8\7@\2\2\u01a8"+ + "T\3\2\2\2\u01a9\u01aa\7u\2\2\u01aa\u01ab\7k\2\2\u01ab\u01ac\7|\2\2\u01ac"+ + "\u01ad\7g\2\2\u01ad\u01ae\7q\2\2\u01ae\u01af\7h\2\2\u01afV\3\2\2\2\u01b0"+ + "\u01b1\7v\2\2\u01b1\u01b2\7{\2\2\u01b2\u01b3\7r\2\2\u01b3\u01b4\7g\2\2"+ + "\u01b4\u01b5\7k\2\2\u01b5\u01b6\7f\2\2\u01b6X\3\2\2\2\u01b7\u01b8\7/\2"+ + "\2\u01b8\u01b9\7/\2\2\u01b9Z\3\2\2\2\u01ba\u01bb\7-\2\2\u01bb\u01bc\7"+ + "-\2\2\u01bc\\\3\2\2\2\u01bd\u01be\7-\2\2\u01be^\3\2\2\2\u01bf\u01c0\7"+ + "/\2\2\u01c0`\3\2\2\2\u01c1\u01c2\7#\2\2\u01c2b\3\2\2\2\u01c3\u01c4\7("+ + "\2\2\u01c4d\3\2\2\2\u01c5\u01c6\7\u0080\2\2\u01c6f\3\2\2\2\u01c7\u01c8"+ + "\7@\2\2\u01c8\u01c9\7@\2\2\u01c9h\3\2\2\2\u01ca\u01cb\7>\2\2\u01cb\u01cc"+ + "\7>\2\2\u01ccj\3\2\2\2\u01cd\u01ce\7\61\2\2\u01cel\3\2\2\2\u01cf\u01d0"+ + "\7\'\2\2\u01d0n\3\2\2\2\u01d1\u01d2\7>\2\2\u01d2p\3\2\2\2\u01d3\u01d4"+ + "\7@\2\2\u01d4r\3\2\2\2\u01d5\u01d6\7?\2\2\u01d6\u01d7\7?\2\2\u01d7t\3"+ + "\2\2\2\u01d8\u01d9\7#\2\2\u01d9\u01da\7?\2\2\u01dav\3\2\2\2\u01db\u01dc"+ + "\7>\2\2\u01dc\u01dd\7?\2\2\u01ddx\3\2\2\2\u01de\u01df\7@\2\2\u01df\u01e0"+ + "\7?\2\2\u01e0z\3\2\2\2\u01e1\u01e2\7`\2\2\u01e2|\3\2\2\2\u01e3\u01e4\7"+ + "~\2\2\u01e4~\3\2\2\2\u01e5\u01e6\7(\2\2\u01e6\u01e7\7(\2\2\u01e7\u0080"+ + "\3\2\2\2\u01e8\u01e9\7~\2\2\u01e9\u01ea\7~\2\2\u01ea\u0082\3\2\2\2\u01eb"+ + "\u01ec\7A\2\2\u01ec\u0084\3\2\2\2\u01ed\u01ee\7-\2\2\u01ee\u01ef\7?\2"+ + "\2\u01ef\u0086\3\2\2\2\u01f0\u01f1\7/\2\2\u01f1\u01f2\7?\2\2\u01f2\u0088"+ + "\3\2\2\2\u01f3\u01f4\7,\2\2\u01f4\u01f5\7?\2\2\u01f5\u008a\3\2\2\2\u01f6"+ + "\u01f7\7\61\2\2\u01f7\u01f8\7?\2\2\u01f8\u008c\3\2\2\2\u01f9\u01fa\7\'"+ + "\2\2\u01fa\u01fb\7?\2\2\u01fb\u008e\3\2\2\2\u01fc\u01fd\7>\2\2\u01fd\u01fe"+ + "\7>\2\2\u01fe\u01ff\7?\2\2\u01ff\u0090\3\2\2\2\u0200\u0201\7@\2\2\u0201"+ + "\u0202\7@\2\2\u0202\u0203\7?\2\2\u0203\u0092\3\2\2\2\u0204\u0205\7(\2"+ + "\2\u0205\u0206\7?\2\2\u0206\u0094\3\2\2\2\u0207\u0208\7~\2\2\u0208\u0209"+ + "\7?\2\2\u0209\u0096\3\2\2\2\u020a\u020b\7`\2\2\u020b\u020c\7?\2\2\u020c"+ + "\u0098\3\2\2\2\u020d\u020e\7m\2\2\u020e\u020f\7k\2\2\u020f\u0210\7e\2"+ + "\2\u0210\u0211\7m\2\2\u0211\u0212\7c\2\2\u0212\u0213\7u\2\2\u0213\u0214"+ + "\7o\2\2\u0214\u009a\3\2\2\2\u0215\u0216\7t\2\2\u0216\u0217\7g\2\2\u0217"+ + "\u0218\7u\2\2\u0218\u0219\7q\2\2\u0219\u021a\7w\2\2\u021a\u021b\7t\2\2"+ + "\u021b\u021c\7e\2\2\u021c\u021d\7g\2\2\u021d\u009c\3\2\2\2\u021e\u021f"+ + "\7w\2\2\u021f\u0220\7u\2\2\u0220\u0221\7g\2\2\u0221\u0222\7u\2\2\u0222"+ + "\u009e\3\2\2\2\u0223\u0224\7e\2\2\u0224\u0225\7n\2\2\u0225\u0226\7q\2"+ + "\2\u0226\u0227\7d\2\2\u0227\u0228\7d\2\2\u0228\u0229\7g\2\2\u0229\u022a"+ + "\7t\2\2\u022a\u022b\7u\2\2\u022b\u00a0\3\2\2\2\u022c\u022d\7d\2\2\u022d"+ + "\u022e\7{\2\2\u022e\u022f\7v\2\2\u022f\u0230\7g\2\2\u0230\u0231\7u\2\2"+ + "\u0231\u00a2\3\2\2\2\u0232\u0233\7e\2\2\u0233\u0234\7{\2\2\u0234\u0235"+ + "\7e\2\2\u0235\u0236\7n\2\2\u0236\u0237\7g\2\2\u0237\u0238\7u\2\2\u0238"+ + "\u00a4\3\2\2\2\u0239\u023a\7r\2\2\u023a\u023b\7e\2\2\u023b\u00a6\3\2\2"+ + "\2\u023c\u023d\7\60\2\2\u023d\u023e\7d\2\2\u023e\u023f\7{\2\2\u023f\u0240"+ + "\7v\2\2\u0240\u0241\7g\2\2\u0241\u00a8\3\2\2\2\u0242\u0243\7d\2\2\u0243"+ + "\u0244\7t\2\2\u0244\u0321\7m\2\2\u0245\u0246\7q\2\2\u0246\u0247\7t\2\2"+ + "\u0247\u0321\7c\2\2\u0248\u0249\7m\2\2\u0249\u024a\7k\2\2\u024a\u0321"+ + "\7n\2\2\u024b\u024c\7u\2\2\u024c\u024d\7n\2\2\u024d\u0321\7q\2\2\u024e"+ + "\u024f\7p\2\2\u024f\u0250\7q\2\2\u0250\u0321\7r\2\2\u0251\u0252\7c\2\2"+ + "\u0252\u0253\7u\2\2\u0253\u0321\7n\2\2\u0254\u0255\7r\2\2\u0255\u0256"+ + "\7j\2\2\u0256\u0321\7r\2\2\u0257\u0258\7c\2\2\u0258\u0259\7p\2\2\u0259"+ + "\u0321\7e\2\2\u025a\u025b\7d\2\2\u025b\u025c\7r\2\2\u025c\u0321\7n\2\2"+ + "\u025d\u025e\7e\2\2\u025e\u025f\7n\2\2\u025f\u0321\7e\2\2\u0260\u0261"+ + "\7l\2\2\u0261\u0262\7u\2\2\u0262\u0321\7t\2\2\u0263\u0264\7c\2\2\u0264"+ + "\u0265\7p\2\2\u0265\u0321\7f\2\2\u0266\u0267\7t\2\2\u0267\u0268\7n\2\2"+ + "\u0268\u0321\7c\2\2\u0269\u026a\7d\2\2\u026a\u026b\7k\2\2\u026b\u0321"+ + "\7v\2\2\u026c\u026d\7t\2\2\u026d\u026e\7q\2\2\u026e\u0321\7n\2\2\u026f"+ + "\u0270\7r\2\2\u0270\u0271\7n\2\2\u0271\u0321\7c\2\2\u0272\u0273\7r\2\2"+ + "\u0273\u0274\7n\2\2\u0274\u0321\7r\2\2\u0275\u0276\7d\2\2\u0276\u0277"+ + "\7o\2\2\u0277\u0321\7k\2\2\u0278\u0279\7u\2\2\u0279\u027a\7g\2\2\u027a"+ + "\u0321\7e\2\2\u027b\u027c\7t\2\2\u027c\u027d\7v\2\2\u027d\u0321\7k\2\2"+ + "\u027e\u027f\7g\2\2\u027f\u0280\7q\2\2\u0280\u0321\7t\2\2\u0281\u0282"+ + "\7u\2\2\u0282\u0283\7t\2\2\u0283\u0321\7g\2\2\u0284\u0285\7n\2\2\u0285"+ + "\u0286\7u\2\2\u0286\u0321\7t\2\2\u0287\u0288\7r\2\2\u0288\u0289\7j\2\2"+ + "\u0289\u0321\7c\2\2\u028a\u028b\7c\2\2\u028b\u028c\7n\2\2\u028c\u0321"+ + "\7t\2\2\u028d\u028e\7l\2\2\u028e\u028f\7o\2\2\u028f\u0321\7r\2\2\u0290"+ + "\u0291\7d\2\2\u0291\u0292\7x\2\2\u0292\u0321\7e\2\2\u0293\u0294\7e\2\2"+ + "\u0294\u0295\7n\2\2\u0295\u0321\7k\2\2\u0296\u0297\7t\2\2\u0297\u0298"+ + "\7v\2\2\u0298\u0321\7u\2\2\u0299\u029a\7c\2\2\u029a\u029b\7f\2\2\u029b"+ + "\u0321\7e\2\2\u029c\u029d\7t\2\2\u029d\u029e\7t\2\2\u029e\u0321\7c\2\2"+ + "\u029f\u02a0\7d\2\2\u02a0\u02a1\7x\2\2\u02a1\u0321\7u\2\2\u02a2\u02a3"+ + "\7u\2\2\u02a3\u02a4\7g\2\2\u02a4\u0321\7k\2\2\u02a5\u02a6\7u\2\2\u02a6"+ + "\u02a7\7c\2\2\u02a7\u0321\7z\2\2\u02a8\u02a9\7u\2\2\u02a9\u02aa\7v\2\2"+ + "\u02aa\u0321\7{\2\2\u02ab\u02ac\7u\2\2\u02ac\u02ad\7v\2\2\u02ad\u0321"+ + "\7c\2\2\u02ae\u02af\7u\2\2\u02af\u02b0\7v\2\2\u02b0\u0321\7z\2\2\u02b1"+ + "\u02b2\7f\2\2\u02b2\u02b3\7g\2\2\u02b3\u0321\7{\2\2\u02b4\u02b5\7v\2\2"+ + "\u02b5\u02b6\7z\2\2\u02b6\u0321\7c\2\2\u02b7\u02b8\7z\2\2\u02b8\u02b9"+ + "\7c\2\2\u02b9\u0321\7c\2\2\u02ba\u02bb\7d\2\2\u02bb\u02bc\7e\2\2\u02bc"+ + "\u0321\7e\2\2\u02bd\u02be\7c\2\2\u02be\u02bf\7j\2\2\u02bf\u0321\7z\2\2"+ + "\u02c0\u02c1\7v\2\2\u02c1\u02c2\7{\2\2\u02c2\u0321\7c\2\2\u02c3\u02c4"+ + "\7v\2\2\u02c4\u02c5\7z\2\2\u02c5\u0321\7u\2\2\u02c6\u02c7\7v\2\2\u02c7"+ + "\u02c8\7c\2\2\u02c8\u0321\7u\2\2\u02c9\u02ca\7u\2\2\u02ca\u02cb\7j\2\2"+ + "\u02cb\u0321\7{\2\2\u02cc\u02cd\7u\2\2\u02cd\u02ce\7j\2\2\u02ce\u0321"+ + "\7z\2\2\u02cf\u02d0\7n\2\2\u02d0\u02d1\7f\2\2\u02d1\u0321\7{\2\2\u02d2"+ + "\u02d3\7n\2\2\u02d3\u02d4\7f\2\2\u02d4\u0321\7c\2\2\u02d5\u02d6\7n\2\2"+ + "\u02d6\u02d7\7f\2\2\u02d7\u0321\7z\2\2\u02d8\u02d9\7n\2\2\u02d9\u02da"+ + "\7c\2\2\u02da\u0321\7z\2\2\u02db\u02dc\7v\2\2\u02dc\u02dd\7c\2\2\u02dd"+ + "\u0321\7{\2\2\u02de\u02df\7v\2\2\u02df\u02e0\7c\2\2\u02e0\u0321\7z\2\2"+ + "\u02e1\u02e2\7d\2\2\u02e2\u02e3\7e\2\2\u02e3\u0321\7u\2\2\u02e4\u02e5"+ + "\7e\2\2\u02e5\u02e6\7n\2\2\u02e6\u0321\7x\2\2\u02e7\u02e8\7v\2\2\u02e8"+ + "\u02e9\7u\2\2\u02e9\u0321\7z\2\2\u02ea\u02eb\7n\2\2\u02eb\u02ec\7c\2\2"+ + "\u02ec\u0321\7u\2\2\u02ed\u02ee\7e\2\2\u02ee\u02ef\7r\2\2\u02ef\u0321"+ + "\7{\2\2\u02f0\u02f1\7e\2\2\u02f1\u02f2\7o\2\2\u02f2\u0321\7r\2\2\u02f3"+ + "\u02f4\7e\2\2\u02f4\u02f5\7r\2\2\u02f5\u0321\7z\2\2\u02f6\u02f7\7f\2\2"+ + "\u02f7\u02f8\7e\2\2\u02f8\u0321\7r\2\2\u02f9\u02fa\7f\2\2\u02fa\u02fb"+ + "\7g\2\2\u02fb\u0321\7e\2\2\u02fc\u02fd\7k\2\2\u02fd\u02fe\7p\2\2\u02fe"+ + "\u0321\7e\2\2\u02ff\u0300\7c\2\2\u0300\u0301\7z\2\2\u0301\u0321\7u\2\2"+ + "\u0302\u0303\7d\2\2\u0303\u0304\7p\2\2\u0304\u0321\7g\2\2\u0305\u0306"+ + "\7e\2\2\u0306\u0307\7n\2\2\u0307\u0321\7f\2\2\u0308\u0309\7u\2\2\u0309"+ + "\u030a\7d\2\2\u030a\u0321\7e\2\2\u030b\u030c\7k\2\2\u030c\u030d\7u\2\2"+ + "\u030d\u0321\7e\2\2\u030e\u030f\7k\2\2\u030f\u0310\7p\2\2\u0310\u0321"+ + "\7z\2\2\u0311\u0312\7d\2\2\u0312\u0313\7g\2\2\u0313\u0321\7s\2\2\u0314"+ + "\u0315\7u\2\2\u0315\u0316\7g\2\2\u0316\u0321\7f\2\2\u0317\u0318\7f\2\2"+ + "\u0318\u0319\7g\2\2\u0319\u0321\7z\2\2\u031a\u031b\7k\2\2\u031b\u031c"+ + "\7p\2\2\u031c\u0321\7{\2\2\u031d\u031e\7t\2\2\u031e\u031f\7q\2\2\u031f"+ + "\u0321\7t\2\2\u0320\u0242\3\2\2\2\u0320\u0245\3\2\2\2\u0320\u0248\3\2"+ + "\2\2\u0320\u024b\3\2\2\2\u0320\u024e\3\2\2\2\u0320\u0251\3\2\2\2\u0320"+ + "\u0254\3\2\2\2\u0320\u0257\3\2\2\2\u0320\u025a\3\2\2\2\u0320\u025d\3\2"+ + "\2\2\u0320\u0260\3\2\2\2\u0320\u0263\3\2\2\2\u0320\u0266\3\2\2\2\u0320"+ + "\u0269\3\2\2\2\u0320\u026c\3\2\2\2\u0320\u026f\3\2\2\2\u0320\u0272\3\2"+ + "\2\2\u0320\u0275\3\2\2\2\u0320\u0278\3\2\2\2\u0320\u027b\3\2\2\2\u0320"+ + "\u027e\3\2\2\2\u0320\u0281\3\2\2\2\u0320\u0284\3\2\2\2\u0320\u0287\3\2"+ + "\2\2\u0320\u028a\3\2\2\2\u0320\u028d\3\2\2\2\u0320\u0290\3\2\2\2\u0320"+ + "\u0293\3\2\2\2\u0320\u0296\3\2\2\2\u0320\u0299\3\2\2\2\u0320\u029c\3\2"+ + "\2\2\u0320\u029f\3\2\2\2\u0320\u02a2\3\2\2\2\u0320\u02a5\3\2\2\2\u0320"+ + "\u02a8\3\2\2\2\u0320\u02ab\3\2\2\2\u0320\u02ae\3\2\2\2\u0320\u02b1\3\2"+ + "\2\2\u0320\u02b4\3\2\2\2\u0320\u02b7\3\2\2\2\u0320\u02ba\3\2\2\2\u0320"+ + "\u02bd\3\2\2\2\u0320\u02c0\3\2\2\2\u0320\u02c3\3\2\2\2\u0320\u02c6\3\2"+ + "\2\2\u0320\u02c9\3\2\2\2\u0320\u02cc\3\2\2\2\u0320\u02cf\3\2\2\2\u0320"+ + "\u02d2\3\2\2\2\u0320\u02d5\3\2\2\2\u0320\u02d8\3\2\2\2\u0320\u02db\3\2"+ + "\2\2\u0320\u02de\3\2\2\2\u0320\u02e1\3\2\2\2\u0320\u02e4\3\2\2\2\u0320"+ + "\u02e7\3\2\2\2\u0320\u02ea\3\2\2\2\u0320\u02ed\3\2\2\2\u0320\u02f0\3\2"+ + "\2\2\u0320\u02f3\3\2\2\2\u0320\u02f6\3\2\2\2\u0320\u02f9\3\2\2\2\u0320"+ + "\u02fc\3\2\2\2\u0320\u02ff\3\2\2\2\u0320\u0302\3\2\2\2\u0320\u0305\3\2"+ + "\2\2\u0320\u0308\3\2\2\2\u0320\u030b\3\2\2\2\u0320\u030e\3\2\2\2\u0320"+ + "\u0311\3\2\2\2\u0320\u0314\3\2\2\2\u0320\u0317\3\2\2\2\u0320\u031a\3\2"+ + "\2\2\u0320\u031d\3\2\2\2\u0321\u00aa\3\2\2\2\u0322\u0323\7}\2\2\u0323"+ + "\u0324\7}\2\2\u0324\u0328\3\2\2\2\u0325\u0327\13\2\2\2\u0326\u0325\3\2"+ + "\2\2\u0327\u032a\3\2\2\2\u0328\u0329\3\2\2\2\u0328\u0326\3\2\2\2\u0329"+ + "\u032b\3\2\2\2\u032a\u0328\3\2\2\2\u032b\u032c\7\177\2\2\u032c\u032d\7"+ + "\177\2\2\u032d\u00ac\3\2\2\2\u032e\u032f\7d\2\2\u032f\u0330\7{\2\2\u0330"+ + "\u0331\7v\2\2\u0331\u0354\7g\2\2\u0332\u0333\7y\2\2\u0333\u0334\7q\2\2"+ + "\u0334\u0335\7t\2\2\u0335\u0354\7f\2\2\u0336\u0337\7f\2\2\u0337\u0338"+ + "\7y\2\2\u0338\u0339\7q\2\2\u0339\u033a\7t\2\2\u033a\u0354\7f\2\2\u033b"+ + "\u033c\7d\2\2\u033c\u033d\7q\2\2\u033d\u033e\7q\2\2\u033e\u0354\7n\2\2"+ + "\u033f\u0340\7e\2\2\u0340\u0341\7j\2\2\u0341\u0342\7c\2\2\u0342\u0354"+ + "\7t\2\2\u0343\u0344\7u\2\2\u0344\u0345\7j\2\2\u0345\u0346\7q\2\2\u0346"+ + "\u0347\7t\2\2\u0347\u0354\7v\2\2\u0348\u0349\7k\2\2\u0349\u034a\7p\2\2"+ + "\u034a\u0354\7v\2\2\u034b\u034c\7n\2\2\u034c\u034d\7q\2\2\u034d\u034e"+ + "\7p\2\2\u034e\u0354\7i\2\2\u034f\u0350\7x\2\2\u0350\u0351\7q\2\2\u0351"+ + "\u0352\7k\2\2\u0352\u0354\7f\2\2\u0353\u032e\3\2\2\2\u0353\u0332\3\2\2"+ + "\2\u0353\u0336\3\2\2\2\u0353\u033b\3\2\2\2\u0353\u033f\3\2\2\2\u0353\u0343"+ + "\3\2\2\2\u0353\u0348\3\2\2\2\u0353\u034b\3\2\2\2\u0353\u034f\3\2\2\2\u0354"+ + "\u00ae\3\2\2\2\u0355\u035b\7$\2\2\u0356\u0357\7^\2\2\u0357\u035a\7$\2"+ + "\2\u0358\u035a\n\2\2\2\u0359\u0356\3\2\2\2\u0359\u0358\3\2\2\2\u035a\u035d"+ + "\3\2\2\2\u035b\u0359\3\2\2\2\u035b\u035c\3\2\2\2\u035c\u035e\3\2\2\2\u035d"+ + "\u035b\3\2\2\2\u035e\u0360\7$\2\2\u035f\u0361\t\3\2\2\u0360\u035f\3\2"+ + "\2\2\u0360\u0361\3\2\2\2\u0361\u0366\3\2\2\2\u0362\u0364\t\4\2\2\u0363"+ + "\u0365\t\5\2\2\u0364\u0363\3\2\2\2\u0364\u0365\3\2\2\2\u0365\u0367\3\2"+ + "\2\2\u0366\u0362\3\2\2\2\u0366\u0367\3\2\2\2\u0367\u0369\3\2\2\2\u0368"+ + "\u036a\t\3\2\2\u0369\u0368\3\2\2\2\u0369\u036a\3\2\2\2\u036a\u00b0\3\2"+ + "\2\2\u036b\u036f\7)\2\2\u036c\u036d\7^\2\2\u036d\u0370\7)\2\2\u036e\u0370"+ + "\n\6\2\2\u036f\u036c\3\2\2\2\u036f\u036e\3\2\2\2\u0370\u0371\3\2\2\2\u0371"+ + "\u0372\7)\2\2\u0372\u00b2\3\2\2\2\u0373\u0374\7v\2\2\u0374\u0375\7t\2"+ + "\2\u0375\u0376\7w\2\2\u0376\u037d\7g\2\2\u0377\u0378\7h\2\2\u0378\u0379"+ + "\7c\2\2\u0379\u037a\7n\2\2\u037a\u037b\7u\2\2\u037b\u037d\7g\2\2\u037c"+ + "\u0373\3\2\2\2\u037c\u0377\3\2\2\2\u037d\u00b4\3\2\2\2\u037e\u0381\5\u00b7"+ + "\\\2\u037f\u0381\5\u00bf`\2\u0380\u037e\3\2\2\2\u0380\u037f\3\2\2\2\u0381"+ + "\u00b6\3\2\2\2\u0382\u0386\5\u00b9]\2\u0383\u0386\5\u00bb^\2\u0384\u0386"+ + "\5\u00bd_\2\u0385\u0382\3\2\2\2\u0385\u0383\3\2\2\2\u0385\u0384\3\2\2"+ + "\2\u0386\u00b8\3\2\2\2\u0387\u038d\7\'\2\2\u0388\u0389\7\62\2\2\u0389"+ + "\u038d\7d\2\2\u038a\u038b\7\62\2\2\u038b\u038d\7D\2\2\u038c\u0387\3\2"+ + "\2\2\u038c\u0388\3\2\2\2\u038c\u038a\3\2\2\2\u038d\u0391\3\2\2\2\u038e"+ + "\u0390\5\u00c7d\2\u038f\u038e\3\2\2\2\u0390\u0393\3\2\2\2\u0391\u038f"+ + "\3\2\2\2\u0391\u0392\3\2\2\2\u0392\u0394\3\2\2\2\u0393\u0391\3\2\2\2\u0394"+ + "\u0396\7\60\2\2\u0395\u0397\5\u00c7d\2\u0396\u0395\3\2\2\2\u0397\u0398"+ + "\3\2\2\2\u0398\u0396\3\2\2\2\u0398\u0399\3\2\2\2\u0399\u00ba\3\2\2\2\u039a"+ + "\u039c\5\u00c9e\2\u039b\u039a\3\2\2\2\u039c\u039f\3\2\2\2\u039d\u039b"+ + "\3\2\2\2\u039d\u039e\3\2\2\2\u039e\u03a0\3\2\2\2\u039f\u039d\3\2\2\2\u03a0"+ + "\u03a2\7\60\2\2\u03a1\u03a3\5\u00c9e\2\u03a2\u03a1\3\2\2\2\u03a3\u03a4"+ + "\3\2\2\2\u03a4\u03a2\3\2\2\2\u03a4\u03a5\3\2\2\2\u03a5\u00bc\3\2\2\2\u03a6"+ + "\u03ac\7&\2\2\u03a7\u03a8\7\62\2\2\u03a8\u03ac\7z\2\2\u03a9\u03aa\7\62"+ + "\2\2\u03aa\u03ac\7Z\2\2\u03ab\u03a6\3\2\2\2\u03ab\u03a7\3\2\2\2\u03ab"+ + "\u03a9\3\2\2\2\u03ac\u03b0\3\2\2\2\u03ad\u03af\5\u00cbf\2\u03ae\u03ad"+ + "\3\2\2\2\u03af\u03b2\3\2\2\2\u03b0\u03ae\3\2\2\2\u03b0\u03b1\3\2\2\2\u03b1"+ + "\u03b3\3\2\2\2\u03b2\u03b0\3\2\2\2\u03b3\u03b5\7\60\2\2\u03b4\u03b6\5"+ + "\u00cbf\2\u03b5\u03b4\3\2\2\2\u03b6\u03b7\3\2\2\2\u03b7\u03b5\3\2\2\2"+ + "\u03b7\u03b8\3\2\2\2\u03b8\u00be\3\2\2\2\u03b9\u03bd\5\u00c3b\2\u03ba"+ + "\u03bd\5\u00c5c\2\u03bb\u03bd\5\u00c1a\2\u03bc\u03b9\3\2\2\2\u03bc\u03ba"+ + "\3\2\2\2\u03bc\u03bb\3\2\2\2\u03bd\u03c1\3\2\2\2\u03be\u03bf\t\7\2\2\u03bf"+ + "\u03c2\t\b\2\2\u03c0\u03c2\7n\2\2\u03c1\u03be\3\2\2\2\u03c1\u03c0\3\2"+ + "\2\2\u03c1\u03c2\3\2\2\2\u03c2\u00c0\3\2\2\2\u03c3\u03c4\7\62\2\2\u03c4"+ + "\u03c6\t\t\2\2\u03c5\u03c7\5\u00c7d\2\u03c6\u03c5\3\2\2\2\u03c7\u03c8"+ + "\3\2\2\2\u03c8\u03c6\3\2\2\2\u03c8\u03c9\3\2\2\2\u03c9\u03d1\3\2\2\2\u03ca"+ + "\u03cc\7\'\2\2\u03cb\u03cd\5\u00c7d\2\u03cc\u03cb\3\2\2\2\u03cd\u03ce"+ + "\3\2\2\2\u03ce\u03cc\3\2\2\2\u03ce\u03cf\3\2\2\2\u03cf\u03d1\3\2\2\2\u03d0"+ + "\u03c3\3\2\2\2\u03d0\u03ca\3\2\2\2\u03d1\u00c2\3\2\2\2\u03d2\u03d4\5\u00c9"+ + "e\2\u03d3\u03d2\3\2\2\2\u03d4\u03d5\3\2\2\2\u03d5\u03d3\3\2\2\2\u03d5"+ + "\u03d6\3\2\2\2\u03d6\u00c4\3\2\2\2\u03d7\u03dd\7&\2\2\u03d8\u03d9\7\62"+ + "\2\2\u03d9\u03dd\7z\2\2\u03da\u03db\7\62\2\2\u03db\u03dd\7Z\2\2\u03dc"+ + "\u03d7\3\2\2\2\u03dc\u03d8\3\2\2\2\u03dc\u03da\3\2\2\2\u03dd\u03df\3\2"+ + "\2\2\u03de\u03e0\5\u00cbf\2\u03df\u03de\3\2\2\2\u03e0\u03e1\3\2\2\2\u03e1"+ + "\u03df\3\2\2\2\u03e1\u03e2\3\2\2\2\u03e2\u00c6\3\2\2\2\u03e3\u03e4\t\n"+ + "\2\2\u03e4\u00c8\3\2\2\2\u03e5\u03e6\t\13\2\2\u03e6\u00ca\3\2\2\2\u03e7"+ + "\u03e8\t\f\2\2\u03e8\u00cc\3\2\2\2\u03e9\u03ed\5\u00cfh\2\u03ea\u03ec"+ + "\5\u00d1i\2\u03eb\u03ea\3\2\2\2\u03ec\u03ef\3\2\2\2\u03ed\u03eb\3\2\2"+ + "\2\u03ed\u03ee\3\2\2\2\u03ee\u00ce\3\2\2\2\u03ef\u03ed\3\2\2\2\u03f0\u03f1"+ + "\t\r\2\2\u03f1\u00d0\3\2\2\2\u03f2\u03f3\t\16\2\2\u03f3\u00d2\3\2\2\2"+ + "\u03f4\u03f8\7#\2\2\u03f5\u03f7\5\u00d1i\2\u03f6\u03f5\3\2\2\2\u03f7\u03fa"+ + "\3\2\2\2\u03f8\u03f6\3\2\2\2\u03f8\u03f9\3\2\2\2\u03f9\u03fc\3\2\2\2\u03fa"+ + "\u03f8\3\2\2\2\u03fb\u03fd\t\17\2\2\u03fc\u03fb\3\2\2\2\u03fd\u03fe\3"+ + "\2\2\2\u03fe\u03fc\3\2\2\2\u03fe\u03ff\3\2\2\2\u03ff\u00d4\3\2\2\2\u0400"+ + "\u0402\t\20\2\2\u0401\u0400\3\2\2\2\u0402\u0403\3\2\2\2\u0403\u0401\3"+ + "\2\2\2\u0403\u0404\3\2\2\2\u0404\u0405\3\2\2\2\u0405\u0406\bk\2\2\u0406"+ + "\u00d6\3\2\2\2\u0407\u0408\7\61\2\2\u0408\u0409\7\61\2\2\u0409\u040d\3"+ + "\2\2\2\u040a\u040c\n\21\2\2\u040b\u040a\3\2\2\2\u040c\u040f\3\2\2\2\u040d"+ + "\u040b\3\2\2\2\u040d\u040e\3\2\2\2\u040e\u0410\3\2\2\2\u040f\u040d\3\2"+ + "\2\2\u0410\u0411\bl\3\2\u0411\u00d8\3\2\2\2\u0412\u0413\7\61\2\2\u0413"+ + "\u0414\7,\2\2\u0414\u0418\3\2\2\2\u0415\u0417\13\2\2\2\u0416\u0415\3\2"+ + "\2\2\u0417\u041a\3\2\2\2\u0418\u0419\3\2\2\2\u0418\u0416\3\2\2\2\u0419"+ + "\u041b\3\2\2\2\u041a\u0418\3\2\2\2\u041b\u041c\7,\2\2\u041c\u041d\7\61"+ + "\2\2\u041d\u041e\3\2\2\2\u041e\u041f\bm\3\2\u041f\u00da\3\2\2\2&\2\u0320"+ + "\u0328\u0353\u0359\u035b\u0360\u0364\u0366\u0369\u036f\u037c\u0380\u0385"+ + "\u038c\u0391\u0398\u039d\u03a4\u03ab\u03b0\u03b7\u03bc\u03c1\u03c8\u03ce"+ + "\u03d0\u03d5\u03dc\u03e1\u03ed\u03f8\u03fe\u0403\u040d\u0418\4\2\3\2\2"+ + "\4\2"; 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 8b48c8639..107a05366 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens @@ -80,26 +80,27 @@ T__78=79 T__79=80 T__80=81 T__81=82 -MNEMONIC=83 -KICKASM=84 -SIMPLETYPE=85 -STRING=86 -CHAR=87 -BOOLEAN=88 -NUMBER=89 -NUMFLOAT=90 -BINFLOAT=91 -DECFLOAT=92 -HEXFLOAT=93 -NUMINT=94 -BININTEGER=95 -DECINTEGER=96 -HEXINTEGER=97 -NAME=98 -ASMREL=99 -WS=100 -COMMENT_LINE=101 -COMMENT_BLOCK=102 +T__82=83 +MNEMONIC=84 +KICKASM=85 +SIMPLETYPE=86 +STRING=87 +CHAR=88 +BOOLEAN=89 +NUMBER=90 +NUMFLOAT=91 +BINFLOAT=92 +DECFLOAT=93 +HEXFLOAT=94 +NUMINT=95 +BININTEGER=96 +DECINTEGER=97 +HEXINTEGER=98 +NAME=99 +ASMREL=100 +WS=101 +COMMENT_LINE=102 +COMMENT_BLOCK=103 'import'=1 ';'=2 'typedef'=3 @@ -110,9 +111,9 @@ COMMENT_BLOCK=102 '{'=8 '}'=9 '#'=10 -'pc'=11 -'target'=12 -'encoding'=13 +'#pc'=11 +'#target'=12 +'#encoding'=13 'const'=14 'extern'=15 'align'=16 @@ -181,4 +182,5 @@ COMMENT_BLOCK=102 'clobbers'=79 'bytes'=80 'cycles'=81 -'.byte'=82 +'pc'=82 +'.byte'=83 diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.java b/src/main/java/dk/camelot64/kickc/parser/KickCParser.java index af58127db..28424adf2 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.java @@ -28,10 +28,10 @@ public class KickCParser extends Parser { T__59=60, T__60=61, T__61=62, T__62=63, T__63=64, T__64=65, T__65=66, T__66=67, T__67=68, T__68=69, T__69=70, T__70=71, T__71=72, T__72=73, T__73=74, T__74=75, T__75=76, T__76=77, T__77=78, T__78=79, T__79=80, - T__80=81, T__81=82, MNEMONIC=83, KICKASM=84, SIMPLETYPE=85, STRING=86, - CHAR=87, BOOLEAN=88, NUMBER=89, NUMFLOAT=90, BINFLOAT=91, DECFLOAT=92, - HEXFLOAT=93, NUMINT=94, BININTEGER=95, DECINTEGER=96, HEXINTEGER=97, NAME=98, - ASMREL=99, WS=100, COMMENT_LINE=101, COMMENT_BLOCK=102; + T__80=81, T__81=82, T__82=83, MNEMONIC=84, KICKASM=85, SIMPLETYPE=86, + STRING=87, CHAR=88, BOOLEAN=89, NUMBER=90, NUMFLOAT=91, BINFLOAT=92, DECFLOAT=93, + HEXFLOAT=94, NUMINT=95, BININTEGER=96, DECINTEGER=97, HEXINTEGER=98, NAME=99, + ASMREL=100, WS=101, COMMENT_LINE=102, COMMENT_BLOCK=103; public static final int RULE_file = 0, RULE_asmFile = 1, RULE_importSeq = 2, RULE_importDecl = 3, RULE_declSeq = 4, RULE_decl = 5, RULE_typeDef = 6, RULE_declTypes = 7, @@ -58,7 +58,7 @@ public class KickCParser extends Parser { private static final String[] _LITERAL_NAMES = { null, "'import'", "';'", "'typedef'", "','", "'='", "'('", "')'", "'{'", - "'}'", "'#'", "'pc'", "'target'", "'encoding'", "'const'", "'extern'", + "'}'", "'#'", "'#pc'", "'#target'", "'#encoding'", "'const'", "'extern'", "'align'", "'register'", "'inline'", "'volatile'", "'interrupt'", "'reserve'", "'if'", "'else'", "'while'", "'do'", "'for'", "'return'", "'break'", "'continue'", "'asm'", "':'", "'..'", "'signed'", "'unsigned'", "'*'", "'['", "']'", @@ -67,7 +67,7 @@ public class KickCParser extends Parser { "'>'", "'=='", "'!='", "'<='", "'>='", "'^'", "'|'", "'&&'", "'||'", "'?'", "'+='", "'-='", "'*='", "'/='", "'%='", "'<<='", "'>>='", "'&='", "'|='", "'^='", "'kickasm'", "'resource'", "'uses'", "'clobbers'", "'bytes'", - "'cycles'", "'.byte'" + "'cycles'", "'pc'", "'.byte'" }; private static final String[] _SYMBOLIC_NAMES = { null, null, null, null, null, null, null, null, null, null, null, null, @@ -76,10 +76,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, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, - null, null, null, null, null, null, null, null, null, null, null, "MNEMONIC", - "KICKASM", "SIMPLETYPE", "STRING", "CHAR", "BOOLEAN", "NUMBER", "NUMFLOAT", - "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", - "HEXINTEGER", "NAME", "ASMREL", "WS", "COMMENT_LINE", "COMMENT_BLOCK" + null, null, null, null, null, null, null, null, null, null, null, null, + "MNEMONIC", "KICKASM", "SIMPLETYPE", "STRING", "CHAR", "BOOLEAN", "NUMBER", + "NUMFLOAT", "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", + "DECINTEGER", "HEXINTEGER", "NAME", "ASMREL", "WS", "COMMENT_LINE", "COMMENT_BLOCK" }; public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES); @@ -379,7 +379,7 @@ public class KickCParser extends Parser { setState(103); _errHandler.sync(this); _la = _input.LA(1); - } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__2) | (1L << T__5) | (1L << T__9) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20) | (1L << T__32) | (1L << T__33) | (1L << T__37) | (1L << T__38))) != 0) || ((((_la - 76)) & ~0x3f) == 0 && ((1L << (_la - 76)) & ((1L << (T__75 - 76)) | (1L << (SIMPLETYPE - 76)) | (1L << (NAME - 76)))) != 0) ); + } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__2) | (1L << T__5) | (1L << T__9) | (1L << T__10) | (1L << T__11) | (1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20) | (1L << T__32) | (1L << T__33) | (1L << T__37) | (1L << T__38))) != 0) || ((((_la - 76)) & ~0x3f) == 0 && ((1L << (_la - 76)) & ((1L << (T__75 - 76)) | (1L << (SIMPLETYPE - 76)) | (1L << (NAME - 76)))) != 0) ); } } catch (RecognitionException re) { @@ -1191,10 +1191,10 @@ public class KickCParser extends Parser { GlobalDirectiveContext _localctx = new GlobalDirectiveContext(_ctx, getState()); enterRule(_localctx, 28, RULE_globalDirective); try { - setState(206); + setState(203); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,12,_ctx) ) { - case 1: + switch (_input.LA(1)) { + case T__9: _localctx = new GlobalDirectiveReserveContext(_localctx); enterOuterAlt(_localctx, 1); { @@ -1204,54 +1204,50 @@ public class KickCParser extends Parser { directiveReserve(); } break; - case 2: + case T__10: _localctx = new GlobalDirectivePcContext(_localctx); enterOuterAlt(_localctx, 2); { setState(191); - match(T__9); - setState(192); match(T__10); - setState(193); + setState(192); match(T__5); - setState(194); + setState(193); match(NUMBER); - setState(195); + setState(194); match(T__6); } break; - case 3: + case T__11: _localctx = new GlobalDirectivePlatformContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(196); - match(T__9); - setState(197); + setState(195); match(T__11); - setState(198); + setState(196); match(T__5); - setState(199); + setState(197); match(NAME); - setState(200); + setState(198); match(T__6); } break; - case 4: + case T__12: _localctx = new GlobalDirectiveEncodingContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(201); - match(T__9); - setState(202); + setState(199); match(T__12); - setState(203); + setState(200); match(T__5); - setState(204); + setState(201); match(NAME); - setState(205); + setState(202); match(T__6); } break; + default: + throw new NoViableAltException(this); } } catch (RecognitionException re) { @@ -1415,14 +1411,14 @@ public class KickCParser extends Parser { DirectiveContext _localctx = new DirectiveContext(_ctx, getState()); enterRule(_localctx, 30, RULE_directive); try { - setState(227); + setState(224); _errHandler.sync(this); switch (_input.LA(1)) { case T__13: _localctx = new DirectiveConstContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(208); + setState(205); match(T__13); } break; @@ -1430,7 +1426,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveExternContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(209); + setState(206); match(T__14); } break; @@ -1438,13 +1434,13 @@ public class KickCParser extends Parser { _localctx = new DirectiveAlignContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(210); + setState(207); match(T__15); - setState(211); + setState(208); match(T__5); - setState(212); + setState(209); match(NUMBER); - setState(213); + setState(210); match(T__6); } break; @@ -1452,13 +1448,13 @@ public class KickCParser extends Parser { _localctx = new DirectiveRegisterContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(214); + setState(211); match(T__16); - setState(215); + setState(212); match(T__5); - setState(216); + setState(213); match(NAME); - setState(217); + setState(214); match(T__6); } break; @@ -1466,7 +1462,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveInlineContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(218); + setState(215); match(T__17); } break; @@ -1474,7 +1470,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveVolatileContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(219); + setState(216); match(T__18); } break; @@ -1482,18 +1478,18 @@ public class KickCParser extends Parser { _localctx = new DirectiveInterruptContext(_localctx); enterOuterAlt(_localctx, 7); { - setState(220); + setState(217); match(T__19); - setState(224); + setState(221); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,13,_ctx) ) { case 1: { - setState(221); + setState(218); match(T__5); - setState(222); + setState(219); match(NAME); - setState(223); + setState(220); match(T__6); } break; @@ -1504,7 +1500,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveReserveZpContext(_localctx); enterOuterAlt(_localctx, 8); { - setState(226); + setState(223); directiveReserve(); } break; @@ -1554,29 +1550,29 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(229); + setState(226); match(T__20); - setState(230); + setState(227); match(T__5); - setState(231); + setState(228); match(NUMBER); - setState(236); + setState(233); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__3) { { { - setState(232); + setState(229); match(T__3); - setState(233); + setState(230); match(NUMBER); } } - setState(238); + setState(235); _errHandler.sync(this); _la = _input.LA(1); } - setState(239); + setState(236); match(T__6); } } @@ -1624,17 +1620,17 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(242); + setState(239); _errHandler.sync(this); _la = _input.LA(1); do { { { - setState(241); + setState(238); stmt(); } } - setState(244); + setState(241); _errHandler.sync(this); _la = _input.LA(1); } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20) | (1L << T__21) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__29) | (1L << T__32) | (1L << T__33) | (1L << T__34) | (1L << T__37) | (1L << T__38) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__47) | (1L << T__48) | (1L << T__49) | (1L << T__54) | (1L << T__55))) != 0) || ((((_la - 76)) & ~0x3f) == 0 && ((1L << (_la - 76)) & ((1L << (T__75 - 76)) | (1L << (SIMPLETYPE - 76)) | (1L << (STRING - 76)) | (1L << (CHAR - 76)) | (1L << (BOOLEAN - 76)) | (1L << (NUMBER - 76)) | (1L << (NAME - 76)))) != 0) ); @@ -1926,16 +1922,16 @@ public class KickCParser extends Parser { enterRule(_localctx, 36, RULE_stmt); int _la; try { - setState(322); + setState(319); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,24,_ctx) ) { case 1: _localctx = new StmtDeclVarContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(246); + setState(243); declVariables(); - setState(247); + setState(244); match(T__1); } break; @@ -1943,19 +1939,19 @@ public class KickCParser extends Parser { _localctx = new StmtBlockContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(249); + setState(246); match(T__7); - setState(251); + setState(248); _errHandler.sync(this); _la = _input.LA(1); if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20) | (1L << T__21) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__29) | (1L << T__32) | (1L << T__33) | (1L << T__34) | (1L << T__37) | (1L << T__38) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__47) | (1L << T__48) | (1L << T__49) | (1L << T__54) | (1L << T__55))) != 0) || ((((_la - 76)) & ~0x3f) == 0 && ((1L << (_la - 76)) & ((1L << (T__75 - 76)) | (1L << (SIMPLETYPE - 76)) | (1L << (STRING - 76)) | (1L << (CHAR - 76)) | (1L << (BOOLEAN - 76)) | (1L << (NUMBER - 76)) | (1L << (NAME - 76)))) != 0)) { { - setState(250); + setState(247); stmtSeq(); } } - setState(253); + setState(250); match(T__8); } break; @@ -1963,9 +1959,9 @@ public class KickCParser extends Parser { _localctx = new StmtExprContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(254); + setState(251); commaExpr(0); - setState(255); + setState(252); match(T__1); } break; @@ -1973,24 +1969,24 @@ public class KickCParser extends Parser { _localctx = new StmtIfElseContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(257); + setState(254); match(T__21); - setState(258); + setState(255); match(T__5); - setState(259); + setState(256); commaExpr(0); - setState(260); + setState(257); match(T__6); - setState(261); + setState(258); stmt(); - setState(264); + setState(261); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,18,_ctx) ) { case 1: { - setState(262); + setState(259); match(T__22); - setState(263); + setState(260); stmt(); } break; @@ -2001,29 +1997,29 @@ public class KickCParser extends Parser { _localctx = new StmtWhileContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(269); + setState(266); _errHandler.sync(this); _la = _input.LA(1); while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20))) != 0)) { { { - setState(266); + setState(263); directive(); } } - setState(271); + setState(268); _errHandler.sync(this); _la = _input.LA(1); } - setState(272); + setState(269); match(T__23); - setState(273); + setState(270); match(T__5); - setState(274); + setState(271); commaExpr(0); - setState(275); + setState(272); match(T__6); - setState(276); + setState(273); stmt(); } break; @@ -2031,33 +2027,33 @@ public class KickCParser extends Parser { _localctx = new StmtDoWhileContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(281); + setState(278); _errHandler.sync(this); _la = _input.LA(1); while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20))) != 0)) { { { - setState(278); + setState(275); directive(); } } - setState(283); + setState(280); _errHandler.sync(this); _la = _input.LA(1); } - setState(284); + setState(281); match(T__24); - setState(285); + setState(282); stmt(); - setState(286); + setState(283); match(T__23); - setState(287); + setState(284); match(T__5); - setState(288); + setState(285); commaExpr(0); - setState(289); + setState(286); match(T__6); - setState(290); + setState(287); match(T__1); } break; @@ -2065,29 +2061,29 @@ public class KickCParser extends Parser { _localctx = new StmtForContext(_localctx); enterOuterAlt(_localctx, 7); { - setState(295); + setState(292); _errHandler.sync(this); _la = _input.LA(1); while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20))) != 0)) { { { - setState(292); + setState(289); directive(); } } - setState(297); + setState(294); _errHandler.sync(this); _la = _input.LA(1); } - setState(298); + setState(295); match(T__25); - setState(299); + setState(296); match(T__5); - setState(300); + setState(297); forLoop(); - setState(301); + setState(298); match(T__6); - setState(302); + setState(299); stmt(); } break; @@ -2095,19 +2091,19 @@ public class KickCParser extends Parser { _localctx = new StmtReturnContext(_localctx); enterOuterAlt(_localctx, 8); { - setState(304); + setState(301); match(T__26); - setState(306); + setState(303); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__34) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__47) | (1L << T__48) | (1L << T__49) | (1L << T__54) | (1L << T__55))) != 0) || ((((_la - 86)) & ~0x3f) == 0 && ((1L << (_la - 86)) & ((1L << (STRING - 86)) | (1L << (CHAR - 86)) | (1L << (BOOLEAN - 86)) | (1L << (NUMBER - 86)) | (1L << (NAME - 86)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__34) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__47) | (1L << T__48) | (1L << T__49) | (1L << T__54) | (1L << T__55))) != 0) || ((((_la - 87)) & ~0x3f) == 0 && ((1L << (_la - 87)) & ((1L << (STRING - 87)) | (1L << (CHAR - 87)) | (1L << (BOOLEAN - 87)) | (1L << (NUMBER - 87)) | (1L << (NAME - 87)))) != 0)) { { - setState(305); + setState(302); commaExpr(0); } } - setState(308); + setState(305); match(T__1); } break; @@ -2115,9 +2111,9 @@ public class KickCParser extends Parser { _localctx = new StmtBreakContext(_localctx); enterOuterAlt(_localctx, 9); { - setState(309); + setState(306); match(T__27); - setState(310); + setState(307); match(T__1); } break; @@ -2125,9 +2121,9 @@ public class KickCParser extends Parser { _localctx = new StmtContinueContext(_localctx); enterOuterAlt(_localctx, 10); { - setState(311); + setState(308); match(T__28); - setState(312); + setState(309); match(T__1); } break; @@ -2135,23 +2131,23 @@ public class KickCParser extends Parser { _localctx = new StmtAsmContext(_localctx); enterOuterAlt(_localctx, 11); { - setState(313); + setState(310); match(T__29); - setState(315); + setState(312); _errHandler.sync(this); _la = _input.LA(1); if (_la==T__5) { { - setState(314); + setState(311); asmDirectives(); } } - setState(317); + setState(314); match(T__7); - setState(318); + setState(315); asmLines(); - setState(319); + setState(316); match(T__8); } break; @@ -2159,7 +2155,7 @@ public class KickCParser extends Parser { _localctx = new StmtDeclKasmContext(_localctx); enterOuterAlt(_localctx, 12); { - setState(321); + setState(318); declKasm(); } break; @@ -2244,27 +2240,27 @@ public class KickCParser extends Parser { enterRule(_localctx, 38, RULE_forLoop); int _la; try { - setState(340); + setState(337); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,27,_ctx) ) { case 1: _localctx = new ForClassicContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(324); + setState(321); forClassicInit(); - setState(325); + setState(322); + match(T__1); + setState(323); + commaExpr(0); + setState(324); match(T__1); setState(326); - commaExpr(0); - setState(327); - match(T__1); - setState(329); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__34) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__47) | (1L << T__48) | (1L << T__49) | (1L << T__54) | (1L << T__55))) != 0) || ((((_la - 86)) & ~0x3f) == 0 && ((1L << (_la - 86)) & ((1L << (STRING - 86)) | (1L << (CHAR - 86)) | (1L << (BOOLEAN - 86)) | (1L << (NUMBER - 86)) | (1L << (NAME - 86)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__34) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__47) | (1L << T__48) | (1L << T__49) | (1L << T__54) | (1L << T__55))) != 0) || ((((_la - 87)) & ~0x3f) == 0 && ((1L << (_la - 87)) & ((1L << (STRING - 87)) | (1L << (CHAR - 87)) | (1L << (BOOLEAN - 87)) | (1L << (NUMBER - 87)) | (1L << (NAME - 87)))) != 0)) { { - setState(328); + setState(325); commaExpr(0); } } @@ -2275,27 +2271,27 @@ public class KickCParser extends Parser { _localctx = new ForRangeContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(332); + setState(329); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,26,_ctx) ) { case 1: { - setState(331); + setState(328); declTypes(); } break; } - setState(334); + setState(331); match(NAME); - setState(335); + setState(332); match(T__30); - setState(336); + setState(333); expr(0); { - setState(337); + setState(334); match(T__31); } - setState(338); + setState(335); expr(0); } break; @@ -2367,19 +2363,19 @@ public class KickCParser extends Parser { enterRule(_localctx, 40, RULE_forClassicInit); int _la; try { - setState(346); + setState(343); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,29,_ctx) ) { case 1: _localctx = new ForClassicInitDeclContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(343); + setState(340); _errHandler.sync(this); _la = _input.LA(1); if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20) | (1L << T__32) | (1L << T__33) | (1L << T__37) | (1L << T__38))) != 0) || _la==SIMPLETYPE || _la==NAME) { { - setState(342); + setState(339); declVariables(); } } @@ -2390,7 +2386,7 @@ public class KickCParser extends Parser { _localctx = new ForClassicInitExprContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(345); + setState(342); commaExpr(0); } break; @@ -2641,7 +2637,7 @@ public class KickCParser extends Parser { int _alt; enterOuterAlt(_localctx, 1); { - setState(363); + setState(360); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,31,_ctx) ) { case 1: @@ -2650,11 +2646,11 @@ public class KickCParser extends Parser { _ctx = _localctx; _prevctx = _localctx; - setState(349); + setState(346); match(T__5); - setState(350); + setState(347); typeDecl(0); - setState(351); + setState(348); match(T__6); } break; @@ -2663,7 +2659,7 @@ public class KickCParser extends Parser { _localctx = new TypeSimpleContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(353); + setState(350); match(SIMPLETYPE); } break; @@ -2672,7 +2668,7 @@ public class KickCParser extends Parser { _localctx = new TypeSignedSimpleContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(354); + setState(351); _la = _input.LA(1); if ( !(_la==T__32 || _la==T__33) ) { _errHandler.recoverInline(this); @@ -2682,12 +2678,12 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(356); + setState(353); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,30,_ctx) ) { case 1: { - setState(355); + setState(352); match(SIMPLETYPE); } break; @@ -2699,7 +2695,7 @@ public class KickCParser extends Parser { _localctx = new TypeStructDefContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(358); + setState(355); structDef(); } break; @@ -2708,7 +2704,7 @@ public class KickCParser extends Parser { _localctx = new TypeStructRefContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(359); + setState(356); structRef(); } break; @@ -2717,7 +2713,7 @@ public class KickCParser extends Parser { _localctx = new TypeEnumDefContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(360); + setState(357); enumDef(); } break; @@ -2726,7 +2722,7 @@ public class KickCParser extends Parser { _localctx = new TypeEnumRefContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(361); + setState(358); enumRef(); } break; @@ -2735,13 +2731,13 @@ public class KickCParser extends Parser { _localctx = new TypeNamedRefContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(362); + setState(359); match(NAME); } break; } _ctx.stop = _input.LT(-1); - setState(378); + setState(375); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,34,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -2749,16 +2745,16 @@ public class KickCParser extends Parser { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(376); + setState(373); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,33,_ctx) ) { case 1: { _localctx = new TypePtrContext(new TypeDeclContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_typeDecl); - setState(365); + setState(362); if (!(precpred(_ctx, 8))) throw new FailedPredicateException(this, "precpred(_ctx, 8)"); - setState(366); + setState(363); match(T__34); } break; @@ -2766,21 +2762,21 @@ public class KickCParser extends Parser { { _localctx = new TypeArrayContext(new TypeDeclContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_typeDecl); - setState(367); + setState(364); if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)"); - setState(368); + setState(365); match(T__35); - setState(370); + setState(367); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__34) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__47) | (1L << T__48) | (1L << T__49) | (1L << T__54) | (1L << T__55))) != 0) || ((((_la - 86)) & ~0x3f) == 0 && ((1L << (_la - 86)) & ((1L << (STRING - 86)) | (1L << (CHAR - 86)) | (1L << (BOOLEAN - 86)) | (1L << (NUMBER - 86)) | (1L << (NAME - 86)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__34) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__47) | (1L << T__48) | (1L << T__49) | (1L << T__54) | (1L << T__55))) != 0) || ((((_la - 87)) & ~0x3f) == 0 && ((1L << (_la - 87)) & ((1L << (STRING - 87)) | (1L << (CHAR - 87)) | (1L << (BOOLEAN - 87)) | (1L << (NUMBER - 87)) | (1L << (NAME - 87)))) != 0)) { { - setState(369); + setState(366); expr(0); } } - setState(372); + setState(369); match(T__36); } break; @@ -2788,18 +2784,18 @@ public class KickCParser extends Parser { { _localctx = new TypeProcedureContext(new TypeDeclContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_typeDecl); - setState(373); + setState(370); if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)"); - setState(374); + setState(371); match(T__5); - setState(375); + setState(372); match(T__6); } break; } } } - setState(380); + setState(377); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,34,_ctx); } @@ -2843,9 +2839,9 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(381); + setState(378); match(T__37); - setState(382); + setState(379); match(NAME); } } @@ -2894,35 +2890,35 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(384); + setState(381); match(T__37); - setState(386); + setState(383); _errHandler.sync(this); _la = _input.LA(1); if (_la==NAME) { { - setState(385); + setState(382); match(NAME); } } - setState(388); + setState(385); match(T__7); - setState(390); + setState(387); _errHandler.sync(this); _la = _input.LA(1); do { { { - setState(389); + setState(386); structMembers(); } } - setState(392); + setState(389); _errHandler.sync(this); _la = _input.LA(1); } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20) | (1L << T__32) | (1L << T__33) | (1L << T__37) | (1L << T__38))) != 0) || _la==SIMPLETYPE || _la==NAME ); - setState(394); + setState(391); match(T__8); } } @@ -2966,9 +2962,9 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(396); + setState(393); declVariables(); - setState(397); + setState(394); match(T__1); } } @@ -3010,9 +3006,9 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(399); + setState(396); match(T__38); - setState(400); + setState(397); match(NAME); } } @@ -3058,23 +3054,23 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(402); + setState(399); match(T__38); - setState(404); + setState(401); _errHandler.sync(this); _la = _input.LA(1); if (_la==NAME) { { - setState(403); + setState(400); match(NAME); } } - setState(406); + setState(403); match(T__7); - setState(407); + setState(404); enumMemberList(0); - setState(408); + setState(405); match(T__8); } } @@ -3131,11 +3127,11 @@ public class KickCParser extends Parser { enterOuterAlt(_localctx, 1); { { - setState(411); + setState(408); enumMember(); } _ctx.stop = _input.LT(-1); - setState(418); + setState(415); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,38,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -3146,16 +3142,16 @@ public class KickCParser extends Parser { { _localctx = new EnumMemberListContext(_parentctx, _parentState); pushNewRecursionContext(_localctx, _startState, RULE_enumMemberList); - setState(413); + setState(410); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(414); + setState(411); match(T__3); - setState(415); + setState(412); enumMember(); } } } - setState(420); + setState(417); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,38,_ctx); } @@ -3202,16 +3198,16 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(421); + setState(418); match(NAME); - setState(424); + setState(421); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,39,_ctx) ) { case 1: { - setState(422); + setState(419); match(T__4); - setState(423); + setState(420); expr(0); } break; @@ -3302,11 +3298,11 @@ public class KickCParser extends Parser { _ctx = _localctx; _prevctx = _localctx; - setState(427); + setState(424); expr(0); } _ctx.stop = _input.LT(-1); - setState(434); + setState(431); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,40,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -3317,16 +3313,16 @@ public class KickCParser extends Parser { { _localctx = new CommaSimpleContext(new CommaExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_commaExpr); - setState(429); + setState(426); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(430); + setState(427); match(T__3); - setState(431); + setState(428); expr(0); } } } - setState(436); + setState(433); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,40,_ctx); } @@ -3814,7 +3810,7 @@ public class KickCParser extends Parser { int _alt; enterOuterAlt(_localctx, 1); { - setState(491); + setState(488); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,45,_ctx) ) { case 1: @@ -3823,11 +3819,11 @@ public class KickCParser extends Parser { _ctx = _localctx; _prevctx = _localctx; - setState(438); + setState(435); match(T__5); - setState(439); + setState(436); commaExpr(0); - setState(440); + setState(437); match(T__6); } break; @@ -3836,27 +3832,27 @@ public class KickCParser extends Parser { _localctx = new ExprSizeOfContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(442); + setState(439); match(T__41); - setState(443); + setState(440); match(T__5); - setState(446); + setState(443); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,41,_ctx) ) { case 1: { - setState(444); + setState(441); expr(0); } break; case 2: { - setState(445); + setState(442); typeDecl(0); } break; } - setState(448); + setState(445); match(T__6); } break; @@ -3865,27 +3861,27 @@ public class KickCParser extends Parser { _localctx = new ExprTypeIdContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(450); + setState(447); match(T__42); - setState(451); + setState(448); match(T__5); - setState(454); + setState(451); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,42,_ctx) ) { case 1: { - setState(452); + setState(449); expr(0); } break; case 2: { - setState(453); + setState(450); typeDecl(0); } break; } - setState(456); + setState(453); match(T__6); } break; @@ -3894,13 +3890,13 @@ public class KickCParser extends Parser { _localctx = new ExprCastContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(458); + setState(455); match(T__5); - setState(459); + setState(456); typeDecl(0); - setState(460); + setState(457); match(T__6); - setState(461); + setState(458); expr(24); } break; @@ -3909,7 +3905,7 @@ public class KickCParser extends Parser { _localctx = new ExprPreModContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(463); + setState(460); _la = _input.LA(1); if ( !(_la==T__43 || _la==T__44) ) { _errHandler.recoverInline(this); @@ -3919,7 +3915,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(464); + setState(461); expr(23); } break; @@ -3928,9 +3924,9 @@ public class KickCParser extends Parser { _localctx = new ExprPtrContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(465); + setState(462); match(T__34); - setState(466); + setState(463); expr(21); } break; @@ -3939,7 +3935,7 @@ public class KickCParser extends Parser { _localctx = new ExprUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(467); + setState(464); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__45) | (1L << T__46) | (1L << T__47) | (1L << T__48) | (1L << T__49))) != 0)) ) { _errHandler.recoverInline(this); @@ -3949,7 +3945,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(468); + setState(465); expr(20); } break; @@ -3958,7 +3954,7 @@ public class KickCParser extends Parser { _localctx = new ExprUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(469); + setState(466); _la = _input.LA(1); if ( !(_la==T__54 || _la==T__55) ) { _errHandler.recoverInline(this); @@ -3968,7 +3964,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(470); + setState(467); expr(16); } break; @@ -3977,27 +3973,27 @@ public class KickCParser extends Parser { _localctx = new InitListContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(471); + setState(468); match(T__7); - setState(472); + setState(469); expr(0); - setState(477); + setState(474); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__3) { { { - setState(473); + setState(470); match(T__3); - setState(474); + setState(471); expr(0); } } - setState(479); + setState(476); _errHandler.sync(this); _la = _input.LA(1); } - setState(480); + setState(477); match(T__8); } break; @@ -4006,7 +4002,7 @@ public class KickCParser extends Parser { _localctx = new ExprIdContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(482); + setState(479); match(NAME); } break; @@ -4015,7 +4011,7 @@ public class KickCParser extends Parser { _localctx = new ExprNumberContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(483); + setState(480); match(NUMBER); } break; @@ -4024,7 +4020,7 @@ public class KickCParser extends Parser { _localctx = new ExprStringContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(485); + setState(482); _errHandler.sync(this); _alt = 1; do { @@ -4032,7 +4028,7 @@ public class KickCParser extends Parser { case 1: { { - setState(484); + setState(481); match(STRING); } } @@ -4040,7 +4036,7 @@ public class KickCParser extends Parser { default: throw new NoViableAltException(this); } - setState(487); + setState(484); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,44,_ctx); } while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ); @@ -4051,7 +4047,7 @@ public class KickCParser extends Parser { _localctx = new ExprCharContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(489); + setState(486); match(CHAR); } break; @@ -4060,13 +4056,13 @@ public class KickCParser extends Parser { _localctx = new ExprBoolContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(490); + setState(487); match(BOOLEAN); } break; } _ctx.stop = _input.LT(-1); - setState(553); + setState(550); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,48,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -4074,16 +4070,16 @@ public class KickCParser extends Parser { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(551); + setState(548); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,47,_ctx) ) { case 1: { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(493); + setState(490); if (!(precpred(_ctx, 19))) throw new FailedPredicateException(this, "precpred(_ctx, 19)"); - setState(494); + setState(491); _la = _input.LA(1); if ( !(_la==T__50 || _la==T__51) ) { _errHandler.recoverInline(this); @@ -4093,7 +4089,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(495); + setState(492); expr(20); } break; @@ -4101,9 +4097,9 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(496); + setState(493); if (!(precpred(_ctx, 18))) throw new FailedPredicateException(this, "precpred(_ctx, 18)"); - setState(497); + setState(494); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__34) | (1L << T__52) | (1L << T__53))) != 0)) ) { _errHandler.recoverInline(this); @@ -4113,7 +4109,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(498); + setState(495); expr(19); } break; @@ -4121,9 +4117,9 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(499); + setState(496); if (!(precpred(_ctx, 17))) throw new FailedPredicateException(this, "precpred(_ctx, 17)"); - setState(500); + setState(497); _la = _input.LA(1); if ( !(_la==T__45 || _la==T__46) ) { _errHandler.recoverInline(this); @@ -4133,7 +4129,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(501); + setState(498); expr(18); } break; @@ -4141,9 +4137,9 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(502); + setState(499); if (!(precpred(_ctx, 15))) throw new FailedPredicateException(this, "precpred(_ctx, 15)"); - setState(503); + setState(500); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__54) | (1L << T__55) | (1L << T__56) | (1L << T__57) | (1L << T__58) | (1L << T__59))) != 0)) ) { _errHandler.recoverInline(this); @@ -4153,7 +4149,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(504); + setState(501); expr(16); } break; @@ -4161,13 +4157,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(505); + setState(502); if (!(precpred(_ctx, 14))) throw new FailedPredicateException(this, "precpred(_ctx, 14)"); { - setState(506); + setState(503); match(T__48); } - setState(507); + setState(504); expr(15); } break; @@ -4175,13 +4171,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(508); + setState(505); if (!(precpred(_ctx, 13))) throw new FailedPredicateException(this, "precpred(_ctx, 13)"); { - setState(509); + setState(506); match(T__60); } - setState(510); + setState(507); expr(14); } break; @@ -4189,13 +4185,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(511); + setState(508); if (!(precpred(_ctx, 12))) throw new FailedPredicateException(this, "precpred(_ctx, 12)"); { - setState(512); + setState(509); match(T__61); } - setState(513); + setState(510); expr(13); } break; @@ -4203,13 +4199,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(514); + setState(511); if (!(precpred(_ctx, 11))) throw new FailedPredicateException(this, "precpred(_ctx, 11)"); { - setState(515); + setState(512); match(T__62); } - setState(516); + setState(513); expr(12); } break; @@ -4217,13 +4213,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(517); + setState(514); if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)"); { - setState(518); + setState(515); match(T__63); } - setState(519); + setState(516); expr(11); } break; @@ -4231,15 +4227,15 @@ public class KickCParser extends Parser { { _localctx = new ExprTernaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(520); + setState(517); if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)"); - setState(521); + setState(518); match(T__64); - setState(522); + setState(519); expr(0); - setState(523); + setState(520); match(T__30); - setState(524); + setState(521); expr(10); } break; @@ -4247,11 +4243,11 @@ public class KickCParser extends Parser { { _localctx = new ExprAssignmentContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(526); + setState(523); if (!(precpred(_ctx, 8))) throw new FailedPredicateException(this, "precpred(_ctx, 8)"); - setState(527); + setState(524); match(T__4); - setState(528); + setState(525); expr(8); } break; @@ -4259,9 +4255,9 @@ public class KickCParser extends Parser { { _localctx = new ExprAssignmentCompoundContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(529); + setState(526); if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)"); - setState(530); + setState(527); _la = _input.LA(1); if ( !(((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & ((1L << (T__65 - 66)) | (1L << (T__66 - 66)) | (1L << (T__67 - 66)) | (1L << (T__68 - 66)) | (1L << (T__69 - 66)) | (1L << (T__70 - 66)) | (1L << (T__71 - 66)) | (1L << (T__72 - 66)) | (1L << (T__73 - 66)) | (1L << (T__74 - 66)))) != 0)) ) { _errHandler.recoverInline(this); @@ -4271,7 +4267,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(531); + setState(528); expr(7); } break; @@ -4279,11 +4275,11 @@ public class KickCParser extends Parser { { _localctx = new ExprDotContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(532); + setState(529); if (!(precpred(_ctx, 30))) throw new FailedPredicateException(this, "precpred(_ctx, 30)"); - setState(533); + setState(530); match(T__39); - setState(534); + setState(531); match(NAME); } break; @@ -4291,11 +4287,11 @@ public class KickCParser extends Parser { { _localctx = new ExprArrowContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(535); + setState(532); if (!(precpred(_ctx, 29))) throw new FailedPredicateException(this, "precpred(_ctx, 29)"); - setState(536); + setState(533); match(T__40); - setState(537); + setState(534); match(NAME); } break; @@ -4303,21 +4299,21 @@ public class KickCParser extends Parser { { _localctx = new ExprCallContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(538); + setState(535); if (!(precpred(_ctx, 28))) throw new FailedPredicateException(this, "precpred(_ctx, 28)"); - setState(539); + setState(536); match(T__5); - setState(541); + setState(538); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__34) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__47) | (1L << T__48) | (1L << T__49) | (1L << T__54) | (1L << T__55))) != 0) || ((((_la - 86)) & ~0x3f) == 0 && ((1L << (_la - 86)) & ((1L << (STRING - 86)) | (1L << (CHAR - 86)) | (1L << (BOOLEAN - 86)) | (1L << (NUMBER - 86)) | (1L << (NAME - 86)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__34) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__47) | (1L << T__48) | (1L << T__49) | (1L << T__54) | (1L << T__55))) != 0) || ((((_la - 87)) & ~0x3f) == 0 && ((1L << (_la - 87)) & ((1L << (STRING - 87)) | (1L << (CHAR - 87)) | (1L << (BOOLEAN - 87)) | (1L << (NUMBER - 87)) | (1L << (NAME - 87)))) != 0)) { { - setState(540); + setState(537); parameterList(); } } - setState(543); + setState(540); match(T__6); } break; @@ -4325,13 +4321,13 @@ public class KickCParser extends Parser { { _localctx = new ExprArrayContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(544); + setState(541); if (!(precpred(_ctx, 25))) throw new FailedPredicateException(this, "precpred(_ctx, 25)"); - setState(545); + setState(542); match(T__35); - setState(546); + setState(543); commaExpr(0); - setState(547); + setState(544); match(T__36); } break; @@ -4339,9 +4335,9 @@ public class KickCParser extends Parser { { _localctx = new ExprPostModContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(549); + setState(546); if (!(precpred(_ctx, 22))) throw new FailedPredicateException(this, "precpred(_ctx, 22)"); - setState(550); + setState(547); _la = _input.LA(1); if ( !(_la==T__43 || _la==T__44) ) { _errHandler.recoverInline(this); @@ -4356,7 +4352,7 @@ public class KickCParser extends Parser { } } } - setState(555); + setState(552); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,48,_ctx); } @@ -4406,21 +4402,21 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(556); + setState(553); expr(0); - setState(561); + setState(558); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__3) { { { - setState(557); + setState(554); match(T__3); - setState(558); + setState(555); expr(0); } } - setState(563); + setState(560); _errHandler.sync(this); _la = _input.LA(1); } @@ -4468,19 +4464,19 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(564); + setState(561); match(T__75); - setState(566); + setState(563); _errHandler.sync(this); _la = _input.LA(1); if (_la==T__5) { { - setState(565); + setState(562); asmDirectives(); } } - setState(568); + setState(565); match(KICKASM); } } @@ -4528,27 +4524,27 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(570); + setState(567); match(T__5); - setState(571); + setState(568); asmDirective(); - setState(576); + setState(573); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__3) { { { - setState(572); + setState(569); match(T__3); - setState(573); + setState(570); asmDirective(); } } - setState(578); + setState(575); _errHandler.sync(this); _la = _input.LA(1); } - setState(579); + setState(576); match(T__6); } } @@ -4687,16 +4683,16 @@ public class KickCParser extends Parser { AsmDirectiveContext _localctx = new AsmDirectiveContext(_ctx, getState()); enterRule(_localctx, 68, RULE_asmDirective); try { - setState(596); + setState(593); _errHandler.sync(this); switch (_input.LA(1)) { case T__76: _localctx = new AsmDirectiveResourceContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(581); + setState(578); match(T__76); - setState(582); + setState(579); match(STRING); } break; @@ -4704,9 +4700,9 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveUsesContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(583); + setState(580); match(T__77); - setState(584); + setState(581); match(NAME); } break; @@ -4714,9 +4710,9 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveClobberContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(585); + setState(582); match(T__78); - setState(586); + setState(583); match(STRING); } break; @@ -4724,9 +4720,9 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveBytesContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(587); + setState(584); match(T__79); - setState(588); + setState(585); expr(0); } break; @@ -4734,24 +4730,24 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveCyclesContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(589); + setState(586); match(T__80); - setState(590); + setState(587); expr(0); } break; - case T__10: + case T__81: _localctx = new AsmDirectiveAddressContext(_localctx); enterOuterAlt(_localctx, 6); { + setState(588); + match(T__81); setState(591); - match(T__10); - setState(594); _errHandler.sync(this); switch (_input.LA(1)) { case T__17: { - setState(592); + setState(589); match(T__17); } break; @@ -4775,7 +4771,7 @@ public class KickCParser extends Parser { case NUMBER: case NAME: { - setState(593); + setState(590); expr(0); } break; @@ -4832,17 +4828,17 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(601); + setState(598); _errHandler.sync(this); _la = _input.LA(1); - while (((((_la - 48)) & ~0x3f) == 0 && ((1L << (_la - 48)) & ((1L << (T__47 - 48)) | (1L << (T__81 - 48)) | (1L << (MNEMONIC - 48)) | (1L << (NAME - 48)))) != 0)) { + while (((((_la - 48)) & ~0x3f) == 0 && ((1L << (_la - 48)) & ((1L << (T__47 - 48)) | (1L << (T__82 - 48)) | (1L << (MNEMONIC - 48)) | (1L << (NAME - 48)))) != 0)) { { { - setState(598); + setState(595); asmLine(); } } - setState(603); + setState(600); _errHandler.sync(this); _la = _input.LA(1); } @@ -4892,28 +4888,28 @@ public class KickCParser extends Parser { AsmLineContext _localctx = new AsmLineContext(_ctx, getState()); enterRule(_localctx, 72, RULE_asmLine); try { - setState(607); + setState(604); _errHandler.sync(this); switch (_input.LA(1)) { case T__47: case NAME: enterOuterAlt(_localctx, 1); { - setState(604); + setState(601); asmLabel(); } break; case MNEMONIC: enterOuterAlt(_localctx, 2); { - setState(605); + setState(602); asmInstruction(); } break; - case T__81: + case T__82: enterOuterAlt(_localctx, 3); { - setState(606); + setState(603); asmBytes(); } break; @@ -4983,16 +4979,16 @@ public class KickCParser extends Parser { enterRule(_localctx, 74, RULE_asmLabel); int _la; try { - setState(616); + setState(613); _errHandler.sync(this); switch (_input.LA(1)) { case NAME: _localctx = new AsmLabelNameContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(609); + setState(606); match(NAME); - setState(610); + setState(607); match(T__30); } break; @@ -5000,19 +4996,19 @@ public class KickCParser extends Parser { _localctx = new AsmLabelMultiContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(611); + setState(608); match(T__47); - setState(613); + setState(610); _errHandler.sync(this); _la = _input.LA(1); if (_la==NAME) { { - setState(612); + setState(609); match(NAME); } } - setState(615); + setState(612); match(T__30); } break; @@ -5061,14 +5057,14 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(618); + setState(615); match(MNEMONIC); - setState(620); + setState(617); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,58,_ctx) ) { case 1: { - setState(619); + setState(616); asmParamMode(); } break; @@ -5119,23 +5115,23 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(622); - match(T__81); - setState(623); + setState(619); + match(T__82); + setState(620); asmExpr(0); - setState(628); + setState(625); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__3) { { { - setState(624); + setState(621); match(T__3); - setState(625); + setState(622); asmExpr(0); } } - setState(630); + setState(627); _errHandler.sync(this); _la = _input.LA(1); } @@ -5285,14 +5281,14 @@ public class KickCParser extends Parser { AsmParamModeContext _localctx = new AsmParamModeContext(_ctx, getState()); enterRule(_localctx, 80, RULE_asmParamMode); try { - setState(654); + setState(651); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,60,_ctx) ) { case 1: _localctx = new AsmModeAbsContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(631); + setState(628); asmExpr(0); } break; @@ -5300,9 +5296,9 @@ public class KickCParser extends Parser { _localctx = new AsmModeImmContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(632); + setState(629); match(T__9); - setState(633); + setState(630); asmExpr(0); } break; @@ -5310,11 +5306,11 @@ public class KickCParser extends Parser { _localctx = new AsmModeAbsXYContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(634); + setState(631); asmExpr(0); - setState(635); + setState(632); match(T__3); - setState(636); + setState(633); match(NAME); } break; @@ -5322,15 +5318,15 @@ public class KickCParser extends Parser { _localctx = new AsmModeIndIdxXYContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(638); + setState(635); match(T__5); - setState(639); + setState(636); asmExpr(0); - setState(640); + setState(637); match(T__6); - setState(641); + setState(638); match(T__3); - setState(642); + setState(639); match(NAME); } break; @@ -5338,15 +5334,15 @@ public class KickCParser extends Parser { _localctx = new AsmModeIdxIndXYContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(644); + setState(641); match(T__5); - setState(645); + setState(642); asmExpr(0); - setState(646); + setState(643); match(T__3); - setState(647); + setState(644); match(NAME); - setState(648); + setState(645); match(T__6); } break; @@ -5354,11 +5350,11 @@ public class KickCParser extends Parser { _localctx = new AsmModeIndContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(650); + setState(647); match(T__5); - setState(651); + setState(648); asmExpr(0); - setState(652); + setState(649); match(T__6); } break; @@ -5548,7 +5544,7 @@ public class KickCParser extends Parser { int _alt; enterOuterAlt(_localctx, 1); { - setState(670); + setState(667); _errHandler.sync(this); switch (_input.LA(1)) { case T__35: @@ -5557,11 +5553,11 @@ public class KickCParser extends Parser { _ctx = _localctx; _prevctx = _localctx; - setState(657); + setState(654); match(T__35); - setState(658); + setState(655); asmExpr(0); - setState(659); + setState(656); match(T__36); } break; @@ -5573,7 +5569,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(661); + setState(658); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__45) | (1L << T__46) | (1L << T__54) | (1L << T__55))) != 0)) ) { _errHandler.recoverInline(this); @@ -5583,7 +5579,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(662); + setState(659); asmExpr(8); } break; @@ -5592,7 +5588,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprLabelContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(663); + setState(660); match(NAME); } break; @@ -5601,7 +5597,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprLabelRelContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(664); + setState(661); match(ASMREL); } break; @@ -5610,11 +5606,11 @@ public class KickCParser extends Parser { _localctx = new AsmExprReplaceContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(665); + setState(662); match(T__7); - setState(666); + setState(663); match(NAME); - setState(667); + setState(664); match(T__8); } break; @@ -5623,7 +5619,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprIntContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(668); + setState(665); match(NUMBER); } break; @@ -5632,7 +5628,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprCharContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(669); + setState(666); match(CHAR); } break; @@ -5640,7 +5636,7 @@ public class KickCParser extends Parser { throw new NoViableAltException(this); } _ctx.stop = _input.LT(-1); - setState(686); + setState(683); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,63,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -5648,20 +5644,20 @@ public class KickCParser extends Parser { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(684); + setState(681); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,62,_ctx) ) { case 1: { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(672); + setState(669); if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)"); { - setState(673); + setState(670); match(T__39); } - setState(674); + setState(671); asmExpr(11); } break; @@ -5669,9 +5665,9 @@ public class KickCParser extends Parser { { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(675); + setState(672); if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)"); - setState(676); + setState(673); _la = _input.LA(1); if ( !(_la==T__50 || _la==T__51) ) { _errHandler.recoverInline(this); @@ -5681,7 +5677,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(677); + setState(674); asmExpr(10); } break; @@ -5689,9 +5685,9 @@ public class KickCParser extends Parser { { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(678); + setState(675); if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)"); - setState(679); + setState(676); _la = _input.LA(1); if ( !(_la==T__34 || _la==T__52) ) { _errHandler.recoverInline(this); @@ -5701,7 +5697,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(680); + setState(677); asmExpr(8); } break; @@ -5709,9 +5705,9 @@ public class KickCParser extends Parser { { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(681); + setState(678); if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)"); - setState(682); + setState(679); _la = _input.LA(1); if ( !(_la==T__45 || _la==T__46) ) { _errHandler.recoverInline(this); @@ -5721,14 +5717,14 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(683); + setState(680); asmExpr(7); } break; } } } - setState(688); + setState(685); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,63,_ctx); } @@ -5848,7 +5844,7 @@ public class KickCParser extends Parser { } public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3h\u02b4\4\2\t\2\4"+ + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3i\u02b1\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"+ @@ -5862,257 +5858,256 @@ public class KickCParser extends Parser { "\u009e\n\f\3\f\3\f\3\f\5\f\u00a3\n\f\3\r\3\r\3\r\3\r\5\r\u00a9\n\r\3\r"+ "\3\r\3\r\5\r\u00ae\n\r\3\r\3\r\3\16\3\16\3\16\7\16\u00b5\n\16\f\16\16"+ "\16\u00b8\13\16\3\17\3\17\3\17\3\17\5\17\u00be\n\17\3\20\3\20\3\20\3\20"+ - "\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\5\20"+ - "\u00d1\n\20\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21"+ - "\3\21\3\21\3\21\3\21\5\21\u00e3\n\21\3\21\5\21\u00e6\n\21\3\22\3\22\3"+ - "\22\3\22\3\22\7\22\u00ed\n\22\f\22\16\22\u00f0\13\22\3\22\3\22\3\23\6"+ - "\23\u00f5\n\23\r\23\16\23\u00f6\3\24\3\24\3\24\3\24\3\24\5\24\u00fe\n"+ - "\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\5\24\u010b"+ - "\n\24\3\24\7\24\u010e\n\24\f\24\16\24\u0111\13\24\3\24\3\24\3\24\3\24"+ - "\3\24\3\24\3\24\7\24\u011a\n\24\f\24\16\24\u011d\13\24\3\24\3\24\3\24"+ - "\3\24\3\24\3\24\3\24\3\24\3\24\7\24\u0128\n\24\f\24\16\24\u012b\13\24"+ - "\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\5\24\u0135\n\24\3\24\3\24\3\24"+ - "\3\24\3\24\3\24\3\24\5\24\u013e\n\24\3\24\3\24\3\24\3\24\3\24\5\24\u0145"+ - "\n\24\3\25\3\25\3\25\3\25\3\25\5\25\u014c\n\25\3\25\5\25\u014f\n\25\3"+ - "\25\3\25\3\25\3\25\3\25\3\25\5\25\u0157\n\25\3\26\5\26\u015a\n\26\3\26"+ - "\5\26\u015d\n\26\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\5\27\u0167\n"+ - "\27\3\27\3\27\3\27\3\27\3\27\5\27\u016e\n\27\3\27\3\27\3\27\3\27\3\27"+ - "\5\27\u0175\n\27\3\27\3\27\3\27\3\27\7\27\u017b\n\27\f\27\16\27\u017e"+ - "\13\27\3\30\3\30\3\30\3\31\3\31\5\31\u0185\n\31\3\31\3\31\6\31\u0189\n"+ - "\31\r\31\16\31\u018a\3\31\3\31\3\32\3\32\3\32\3\33\3\33\3\33\3\34\3\34"+ - "\5\34\u0197\n\34\3\34\3\34\3\34\3\34\3\35\3\35\3\35\3\35\3\35\3\35\7\35"+ - "\u01a3\n\35\f\35\16\35\u01a6\13\35\3\36\3\36\3\36\5\36\u01ab\n\36\3\37"+ - "\3\37\3\37\3\37\3\37\3\37\7\37\u01b3\n\37\f\37\16\37\u01b6\13\37\3 \3"+ - " \3 \3 \3 \3 \3 \3 \3 \5 \u01c1\n \3 \3 \3 \3 \3 \3 \5 \u01c9\n \3 \3"+ - " \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \7 \u01de\n \f \16"+ - " \u01e1\13 \3 \3 \3 \3 \3 \6 \u01e8\n \r \16 \u01e9\3 \3 \5 \u01ee\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 \5 \u0220\n \3 \3 \3 \3 \3 \3 \3 \3 \7 \u022a\n \f \16 \u022d\13"+ - " \3!\3!\3!\7!\u0232\n!\f!\16!\u0235\13!\3\"\3\"\5\"\u0239\n\"\3\"\3\""+ - "\3#\3#\3#\3#\7#\u0241\n#\f#\16#\u0244\13#\3#\3#\3$\3$\3$\3$\3$\3$\3$\3"+ - "$\3$\3$\3$\3$\3$\5$\u0255\n$\5$\u0257\n$\3%\7%\u025a\n%\f%\16%\u025d\13"+ - "%\3&\3&\3&\5&\u0262\n&\3\'\3\'\3\'\3\'\5\'\u0268\n\'\3\'\5\'\u026b\n\'"+ - "\3(\3(\5(\u026f\n(\3)\3)\3)\3)\7)\u0275\n)\f)\16)\u0278\13)\3*\3*\3*\3"+ - "*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\5*\u0291\n"+ - "*\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\5+\u02a1\n+\3+\3+\3+\3+\3"+ - "+\3+\3+\3+\3+\3+\3+\3+\7+\u02af\n+\f+\16+\u02b2\13+\3+\2\b\24,8<>T,\2"+ - "\4\6\b\n\f\16\20\22\24\26\30\32\34\36 \"$&(*,.\60\62\64\668:<>@BDFHJL"+ - "NPRT\2\r\3\2#$\3\2./\3\2\60\64\3\29:\3\2\65\66\4\2%%\678\3\2\60\61\3\2"+ - "9>\3\2DM\4\2\60\619:\4\2%%\67\67\2\u0312\2V\3\2\2\2\4Z\3\2\2\2\6`\3\2"+ - "\2\2\bc\3\2\2\2\ng\3\2\2\2\fz\3\2\2\2\16|\3\2\2\2\20\u0082\3\2\2\2\22"+ - "\u008c\3\2\2\2\24\u008f\3\2\2\2\26\u00a2\3\2\2\2\30\u00a4\3\2\2\2\32\u00b1"+ - "\3\2\2\2\34\u00bd\3\2\2\2\36\u00d0\3\2\2\2 \u00e5\3\2\2\2\"\u00e7\3\2"+ - "\2\2$\u00f4\3\2\2\2&\u0144\3\2\2\2(\u0156\3\2\2\2*\u015c\3\2\2\2,\u016d"+ - "\3\2\2\2.\u017f\3\2\2\2\60\u0182\3\2\2\2\62\u018e\3\2\2\2\64\u0191\3\2"+ - "\2\2\66\u0194\3\2\2\28\u019c\3\2\2\2:\u01a7\3\2\2\2<\u01ac\3\2\2\2>\u01ed"+ - "\3\2\2\2@\u022e\3\2\2\2B\u0236\3\2\2\2D\u023c\3\2\2\2F\u0256\3\2\2\2H"+ - "\u025b\3\2\2\2J\u0261\3\2\2\2L\u026a\3\2\2\2N\u026c\3\2\2\2P\u0270\3\2"+ - "\2\2R\u0290\3\2\2\2T\u02a0\3\2\2\2VW\5\6\4\2WX\5\n\6\2XY\7\2\2\3Y\3\3"+ - "\2\2\2Z[\5H%\2[\\\7\2\2\3\\\5\3\2\2\2]_\5\b\5\2^]\3\2\2\2_b\3\2\2\2`^"+ - "\3\2\2\2`a\3\2\2\2a\7\3\2\2\2b`\3\2\2\2cd\7\3\2\2de\7X\2\2e\t\3\2\2\2"+ - "fh\5\f\7\2gf\3\2\2\2hi\3\2\2\2ig\3\2\2\2ij\3\2\2\2j\13\3\2\2\2kl\5\22"+ - "\n\2lm\7\4\2\2m{\3\2\2\2no\5\60\31\2op\7\4\2\2p{\3\2\2\2qr\5\66\34\2r"+ - "s\7\4\2\2s{\3\2\2\2t{\5\30\r\2u{\5B\"\2v{\5\36\20\2wx\5\16\b\2xy\7\4\2"+ - "\2y{\3\2\2\2zk\3\2\2\2zn\3\2\2\2zq\3\2\2\2zt\3\2\2\2zu\3\2\2\2zv\3\2\2"+ - "\2zw\3\2\2\2{\r\3\2\2\2|}\7\5\2\2}~\5\22\n\2~\17\3\2\2\2\177\u0081\5 "+ - "\21\2\u0080\177\3\2\2\2\u0081\u0084\3\2\2\2\u0082\u0080\3\2\2\2\u0082"+ - "\u0083\3\2\2\2\u0083\u0085\3\2\2\2\u0084\u0082\3\2\2\2\u0085\u0089\5,"+ - "\27\2\u0086\u0088\5 \21\2\u0087\u0086\3\2\2\2\u0088\u008b\3\2\2\2\u0089"+ - "\u0087\3\2\2\2\u0089\u008a\3\2\2\2\u008a\21\3\2\2\2\u008b\u0089\3\2\2"+ - "\2\u008c\u008d\5\20\t\2\u008d\u008e\5\24\13\2\u008e\23\3\2\2\2\u008f\u0090"+ - "\b\13\1\2\u0090\u0091\5\26\f\2\u0091\u0097\3\2\2\2\u0092\u0093\f\3\2\2"+ - "\u0093\u0094\7\6\2\2\u0094\u0096\5\26\f\2\u0095\u0092\3\2\2\2\u0096\u0099"+ - "\3\2\2\2\u0097\u0095\3\2\2\2\u0097\u0098\3\2\2\2\u0098\25\3\2\2\2\u0099"+ - "\u0097\3\2\2\2\u009a\u009d\7d\2\2\u009b\u009c\7\7\2\2\u009c\u009e\5> "+ - "\2\u009d\u009b\3\2\2\2\u009d\u009e\3\2\2\2\u009e\u00a3\3\2\2\2\u009f\u00a0"+ - "\7d\2\2\u00a0\u00a1\7\7\2\2\u00a1\u00a3\5B\"\2\u00a2\u009a\3\2\2\2\u00a2"+ - "\u009f\3\2\2\2\u00a3\27\3\2\2\2\u00a4\u00a5\5\20\t\2\u00a5\u00a6\7d\2"+ - "\2\u00a6\u00a8\7\b\2\2\u00a7\u00a9\5\32\16\2\u00a8\u00a7\3\2\2\2\u00a8"+ - "\u00a9\3\2\2\2\u00a9\u00aa\3\2\2\2\u00aa\u00ab\7\t\2\2\u00ab\u00ad\7\n"+ - "\2\2\u00ac\u00ae\5$\23\2\u00ad\u00ac\3\2\2\2\u00ad\u00ae\3\2\2\2\u00ae"+ - "\u00af\3\2\2\2\u00af\u00b0\7\13\2\2\u00b0\31\3\2\2\2\u00b1\u00b6\5\34"+ - "\17\2\u00b2\u00b3\7\6\2\2\u00b3\u00b5\5\34\17\2\u00b4\u00b2\3\2\2\2\u00b5"+ - "\u00b8\3\2\2\2\u00b6\u00b4\3\2\2\2\u00b6\u00b7\3\2\2\2\u00b7\33\3\2\2"+ - "\2\u00b8\u00b6\3\2\2\2\u00b9\u00ba\5\20\t\2\u00ba\u00bb\7d\2\2\u00bb\u00be"+ - "\3\2\2\2\u00bc\u00be\7W\2\2\u00bd\u00b9\3\2\2\2\u00bd\u00bc\3\2\2\2\u00be"+ - "\35\3\2\2\2\u00bf\u00c0\7\f\2\2\u00c0\u00d1\5\"\22\2\u00c1\u00c2\7\f\2"+ - "\2\u00c2\u00c3\7\r\2\2\u00c3\u00c4\7\b\2\2\u00c4\u00c5\7[\2\2\u00c5\u00d1"+ - "\7\t\2\2\u00c6\u00c7\7\f\2\2\u00c7\u00c8\7\16\2\2\u00c8\u00c9\7\b\2\2"+ - "\u00c9\u00ca\7d\2\2\u00ca\u00d1\7\t\2\2\u00cb\u00cc\7\f\2\2\u00cc\u00cd"+ - "\7\17\2\2\u00cd\u00ce\7\b\2\2\u00ce\u00cf\7d\2\2\u00cf\u00d1\7\t\2\2\u00d0"+ - "\u00bf\3\2\2\2\u00d0\u00c1\3\2\2\2\u00d0\u00c6\3\2\2\2\u00d0\u00cb\3\2"+ - "\2\2\u00d1\37\3\2\2\2\u00d2\u00e6\7\20\2\2\u00d3\u00e6\7\21\2\2\u00d4"+ - "\u00d5\7\22\2\2\u00d5\u00d6\7\b\2\2\u00d6\u00d7\7[\2\2\u00d7\u00e6\7\t"+ - "\2\2\u00d8\u00d9\7\23\2\2\u00d9\u00da\7\b\2\2\u00da\u00db\7d\2\2\u00db"+ - "\u00e6\7\t\2\2\u00dc\u00e6\7\24\2\2\u00dd\u00e6\7\25\2\2\u00de\u00e2\7"+ - "\26\2\2\u00df\u00e0\7\b\2\2\u00e0\u00e1\7d\2\2\u00e1\u00e3\7\t\2\2\u00e2"+ - "\u00df\3\2\2\2\u00e2\u00e3\3\2\2\2\u00e3\u00e6\3\2\2\2\u00e4\u00e6\5\""+ - "\22\2\u00e5\u00d2\3\2\2\2\u00e5\u00d3\3\2\2\2\u00e5\u00d4\3\2\2\2\u00e5"+ - "\u00d8\3\2\2\2\u00e5\u00dc\3\2\2\2\u00e5\u00dd\3\2\2\2\u00e5\u00de\3\2"+ - "\2\2\u00e5\u00e4\3\2\2\2\u00e6!\3\2\2\2\u00e7\u00e8\7\27\2\2\u00e8\u00e9"+ - "\7\b\2\2\u00e9\u00ee\7[\2\2\u00ea\u00eb\7\6\2\2\u00eb\u00ed\7[\2\2\u00ec"+ - "\u00ea\3\2\2\2\u00ed\u00f0\3\2\2\2\u00ee\u00ec\3\2\2\2\u00ee\u00ef\3\2"+ - "\2\2\u00ef\u00f1\3\2\2\2\u00f0\u00ee\3\2\2\2\u00f1\u00f2\7\t\2\2\u00f2"+ - "#\3\2\2\2\u00f3\u00f5\5&\24\2\u00f4\u00f3\3\2\2\2\u00f5\u00f6\3\2\2\2"+ - "\u00f6\u00f4\3\2\2\2\u00f6\u00f7\3\2\2\2\u00f7%\3\2\2\2\u00f8\u00f9\5"+ - "\22\n\2\u00f9\u00fa\7\4\2\2\u00fa\u0145\3\2\2\2\u00fb\u00fd\7\n\2\2\u00fc"+ - "\u00fe\5$\23\2\u00fd\u00fc\3\2\2\2\u00fd\u00fe\3\2\2\2\u00fe\u00ff\3\2"+ - "\2\2\u00ff\u0145\7\13\2\2\u0100\u0101\5<\37\2\u0101\u0102\7\4\2\2\u0102"+ - "\u0145\3\2\2\2\u0103\u0104\7\30\2\2\u0104\u0105\7\b\2\2\u0105\u0106\5"+ - "<\37\2\u0106\u0107\7\t\2\2\u0107\u010a\5&\24\2\u0108\u0109\7\31\2\2\u0109"+ - "\u010b\5&\24\2\u010a\u0108\3\2\2\2\u010a\u010b\3\2\2\2\u010b\u0145\3\2"+ - "\2\2\u010c\u010e\5 \21\2\u010d\u010c\3\2\2\2\u010e\u0111\3\2\2\2\u010f"+ - "\u010d\3\2\2\2\u010f\u0110\3\2\2\2\u0110\u0112\3\2\2\2\u0111\u010f\3\2"+ - "\2\2\u0112\u0113\7\32\2\2\u0113\u0114\7\b\2\2\u0114\u0115\5<\37\2\u0115"+ - "\u0116\7\t\2\2\u0116\u0117\5&\24\2\u0117\u0145\3\2\2\2\u0118\u011a\5 "+ - "\21\2\u0119\u0118\3\2\2\2\u011a\u011d\3\2\2\2\u011b\u0119\3\2\2\2\u011b"+ - "\u011c\3\2\2\2\u011c\u011e\3\2\2\2\u011d\u011b\3\2\2\2\u011e\u011f\7\33"+ - "\2\2\u011f\u0120\5&\24\2\u0120\u0121\7\32\2\2\u0121\u0122\7\b\2\2\u0122"+ - "\u0123\5<\37\2\u0123\u0124\7\t\2\2\u0124\u0125\7\4\2\2\u0125\u0145\3\2"+ - "\2\2\u0126\u0128\5 \21\2\u0127\u0126\3\2\2\2\u0128\u012b\3\2\2\2\u0129"+ - "\u0127\3\2\2\2\u0129\u012a\3\2\2\2\u012a\u012c\3\2\2\2\u012b\u0129\3\2"+ - "\2\2\u012c\u012d\7\34\2\2\u012d\u012e\7\b\2\2\u012e\u012f\5(\25\2\u012f"+ - "\u0130\7\t\2\2\u0130\u0131\5&\24\2\u0131\u0145\3\2\2\2\u0132\u0134\7\35"+ - "\2\2\u0133\u0135\5<\37\2\u0134\u0133\3\2\2\2\u0134\u0135\3\2\2\2\u0135"+ - "\u0136\3\2\2\2\u0136\u0145\7\4\2\2\u0137\u0138\7\36\2\2\u0138\u0145\7"+ - "\4\2\2\u0139\u013a\7\37\2\2\u013a\u0145\7\4\2\2\u013b\u013d\7 \2\2\u013c"+ - "\u013e\5D#\2\u013d\u013c\3\2\2\2\u013d\u013e\3\2\2\2\u013e\u013f\3\2\2"+ - "\2\u013f\u0140\7\n\2\2\u0140\u0141\5H%\2\u0141\u0142\7\13\2\2\u0142\u0145"+ - "\3\2\2\2\u0143\u0145\5B\"\2\u0144\u00f8\3\2\2\2\u0144\u00fb\3\2\2\2\u0144"+ - "\u0100\3\2\2\2\u0144\u0103\3\2\2\2\u0144\u010f\3\2\2\2\u0144\u011b\3\2"+ - "\2\2\u0144\u0129\3\2\2\2\u0144\u0132\3\2\2\2\u0144\u0137\3\2\2\2\u0144"+ - "\u0139\3\2\2\2\u0144\u013b\3\2\2\2\u0144\u0143\3\2\2\2\u0145\'\3\2\2\2"+ - "\u0146\u0147\5*\26\2\u0147\u0148\7\4\2\2\u0148\u0149\5<\37\2\u0149\u014b"+ - "\7\4\2\2\u014a\u014c\5<\37\2\u014b\u014a\3\2\2\2\u014b\u014c\3\2\2\2\u014c"+ - "\u0157\3\2\2\2\u014d\u014f\5\20\t\2\u014e\u014d\3\2\2\2\u014e\u014f\3"+ - "\2\2\2\u014f\u0150\3\2\2\2\u0150\u0151\7d\2\2\u0151\u0152\7!\2\2\u0152"+ - "\u0153\5> \2\u0153\u0154\7\"\2\2\u0154\u0155\5> \2\u0155\u0157\3\2\2\2"+ - "\u0156\u0146\3\2\2\2\u0156\u014e\3\2\2\2\u0157)\3\2\2\2\u0158\u015a\5"+ - "\22\n\2\u0159\u0158\3\2\2\2\u0159\u015a\3\2\2\2\u015a\u015d\3\2\2\2\u015b"+ - "\u015d\5<\37\2\u015c\u0159\3\2\2\2\u015c\u015b\3\2\2\2\u015d+\3\2\2\2"+ - "\u015e\u015f\b\27\1\2\u015f\u0160\7\b\2\2\u0160\u0161\5,\27\2\u0161\u0162"+ - "\7\t\2\2\u0162\u016e\3\2\2\2\u0163\u016e\7W\2\2\u0164\u0166\t\2\2\2\u0165"+ - "\u0167\7W\2\2\u0166\u0165\3\2\2\2\u0166\u0167\3\2\2\2\u0167\u016e\3\2"+ - "\2\2\u0168\u016e\5\60\31\2\u0169\u016e\5.\30\2\u016a\u016e\5\66\34\2\u016b"+ - "\u016e\5\64\33\2\u016c\u016e\7d\2\2\u016d\u015e\3\2\2\2\u016d\u0163\3"+ - "\2\2\2\u016d\u0164\3\2\2\2\u016d\u0168\3\2\2\2\u016d\u0169\3\2\2\2\u016d"+ - "\u016a\3\2\2\2\u016d\u016b\3\2\2\2\u016d\u016c\3\2\2\2\u016e\u017c\3\2"+ - "\2\2\u016f\u0170\f\n\2\2\u0170\u017b\7%\2\2\u0171\u0172\f\t\2\2\u0172"+ - "\u0174\7&\2\2\u0173\u0175\5> \2\u0174\u0173\3\2\2\2\u0174\u0175\3\2\2"+ - "\2\u0175\u0176\3\2\2\2\u0176\u017b\7\'\2\2\u0177\u0178\f\b\2\2\u0178\u0179"+ - "\7\b\2\2\u0179\u017b\7\t\2\2\u017a\u016f\3\2\2\2\u017a\u0171\3\2\2\2\u017a"+ - "\u0177\3\2\2\2\u017b\u017e\3\2\2\2\u017c\u017a\3\2\2\2\u017c\u017d\3\2"+ - "\2\2\u017d-\3\2\2\2\u017e\u017c\3\2\2\2\u017f\u0180\7(\2\2\u0180\u0181"+ - "\7d\2\2\u0181/\3\2\2\2\u0182\u0184\7(\2\2\u0183\u0185\7d\2\2\u0184\u0183"+ - "\3\2\2\2\u0184\u0185\3\2\2\2\u0185\u0186\3\2\2\2\u0186\u0188\7\n\2\2\u0187"+ - "\u0189\5\62\32\2\u0188\u0187\3\2\2\2\u0189\u018a\3\2\2\2\u018a\u0188\3"+ - "\2\2\2\u018a\u018b\3\2\2\2\u018b\u018c\3\2\2\2\u018c\u018d\7\13\2\2\u018d"+ - "\61\3\2\2\2\u018e\u018f\5\22\n\2\u018f\u0190\7\4\2\2\u0190\63\3\2\2\2"+ - "\u0191\u0192\7)\2\2\u0192\u0193\7d\2\2\u0193\65\3\2\2\2\u0194\u0196\7"+ - ")\2\2\u0195\u0197\7d\2\2\u0196\u0195\3\2\2\2\u0196\u0197\3\2\2\2\u0197"+ - "\u0198\3\2\2\2\u0198\u0199\7\n\2\2\u0199\u019a\58\35\2\u019a\u019b\7\13"+ - "\2\2\u019b\67\3\2\2\2\u019c\u019d\b\35\1\2\u019d\u019e\5:\36\2\u019e\u01a4"+ - "\3\2\2\2\u019f\u01a0\f\3\2\2\u01a0\u01a1\7\6\2\2\u01a1\u01a3\5:\36\2\u01a2"+ - "\u019f\3\2\2\2\u01a3\u01a6\3\2\2\2\u01a4\u01a2\3\2\2\2\u01a4\u01a5\3\2"+ - "\2\2\u01a59\3\2\2\2\u01a6\u01a4\3\2\2\2\u01a7\u01aa\7d\2\2\u01a8\u01a9"+ - "\7\7\2\2\u01a9\u01ab\5> \2\u01aa\u01a8\3\2\2\2\u01aa\u01ab\3\2\2\2\u01ab"+ - ";\3\2\2\2\u01ac\u01ad\b\37\1\2\u01ad\u01ae\5> \2\u01ae\u01b4\3\2\2\2\u01af"+ - "\u01b0\f\3\2\2\u01b0\u01b1\7\6\2\2\u01b1\u01b3\5> \2\u01b2\u01af\3\2\2"+ - "\2\u01b3\u01b6\3\2\2\2\u01b4\u01b2\3\2\2\2\u01b4\u01b5\3\2\2\2\u01b5="+ - "\3\2\2\2\u01b6\u01b4\3\2\2\2\u01b7\u01b8\b \1\2\u01b8\u01b9\7\b\2\2\u01b9"+ - "\u01ba\5<\37\2\u01ba\u01bb\7\t\2\2\u01bb\u01ee\3\2\2\2\u01bc\u01bd\7,"+ - "\2\2\u01bd\u01c0\7\b\2\2\u01be\u01c1\5> \2\u01bf\u01c1\5,\27\2\u01c0\u01be"+ - "\3\2\2\2\u01c0\u01bf\3\2\2\2\u01c1\u01c2\3\2\2\2\u01c2\u01c3\7\t\2\2\u01c3"+ - "\u01ee\3\2\2\2\u01c4\u01c5\7-\2\2\u01c5\u01c8\7\b\2\2\u01c6\u01c9\5> "+ - "\2\u01c7\u01c9\5,\27\2\u01c8\u01c6\3\2\2\2\u01c8\u01c7\3\2\2\2\u01c9\u01ca"+ - "\3\2\2\2\u01ca\u01cb\7\t\2\2\u01cb\u01ee\3\2\2\2\u01cc\u01cd\7\b\2\2\u01cd"+ - "\u01ce\5,\27\2\u01ce\u01cf\7\t\2\2\u01cf\u01d0\5> \32\u01d0\u01ee\3\2"+ - "\2\2\u01d1\u01d2\t\3\2\2\u01d2\u01ee\5> \31\u01d3\u01d4\7%\2\2\u01d4\u01ee"+ - "\5> \27\u01d5\u01d6\t\4\2\2\u01d6\u01ee\5> \26\u01d7\u01d8\t\5\2\2\u01d8"+ - "\u01ee\5> \22\u01d9\u01da\7\n\2\2\u01da\u01df\5> \2\u01db\u01dc\7\6\2"+ - "\2\u01dc\u01de\5> \2\u01dd\u01db\3\2\2\2\u01de\u01e1\3\2\2\2\u01df\u01dd"+ - "\3\2\2\2\u01df\u01e0\3\2\2\2\u01e0\u01e2\3\2\2\2\u01e1\u01df\3\2\2\2\u01e2"+ - "\u01e3\7\13\2\2\u01e3\u01ee\3\2\2\2\u01e4\u01ee\7d\2\2\u01e5\u01ee\7["+ - "\2\2\u01e6\u01e8\7X\2\2\u01e7\u01e6\3\2\2\2\u01e8\u01e9\3\2\2\2\u01e9"+ - "\u01e7\3\2\2\2\u01e9\u01ea\3\2\2\2\u01ea\u01ee\3\2\2\2\u01eb\u01ee\7Y"+ - "\2\2\u01ec\u01ee\7Z\2\2\u01ed\u01b7\3\2\2\2\u01ed\u01bc\3\2\2\2\u01ed"+ - "\u01c4\3\2\2\2\u01ed\u01cc\3\2\2\2\u01ed\u01d1\3\2\2\2\u01ed\u01d3\3\2"+ - "\2\2\u01ed\u01d5\3\2\2\2\u01ed\u01d7\3\2\2\2\u01ed\u01d9\3\2\2\2\u01ed"+ - "\u01e4\3\2\2\2\u01ed\u01e5\3\2\2\2\u01ed\u01e7\3\2\2\2\u01ed\u01eb\3\2"+ - "\2\2\u01ed\u01ec\3\2\2\2\u01ee\u022b\3\2\2\2\u01ef\u01f0\f\25\2\2\u01f0"+ - "\u01f1\t\6\2\2\u01f1\u022a\5> \26\u01f2\u01f3\f\24\2\2\u01f3\u01f4\t\7"+ - "\2\2\u01f4\u022a\5> \25\u01f5\u01f6\f\23\2\2\u01f6\u01f7\t\b\2\2\u01f7"+ - "\u022a\5> \24\u01f8\u01f9\f\21\2\2\u01f9\u01fa\t\t\2\2\u01fa\u022a\5>"+ - " \22\u01fb\u01fc\f\20\2\2\u01fc\u01fd\7\63\2\2\u01fd\u022a\5> \21\u01fe"+ - "\u01ff\f\17\2\2\u01ff\u0200\7?\2\2\u0200\u022a\5> \20\u0201\u0202\f\16"+ - "\2\2\u0202\u0203\7@\2\2\u0203\u022a\5> \17\u0204\u0205\f\r\2\2\u0205\u0206"+ - "\7A\2\2\u0206\u022a\5> \16\u0207\u0208\f\f\2\2\u0208\u0209\7B\2\2\u0209"+ - "\u022a\5> \r\u020a\u020b\f\13\2\2\u020b\u020c\7C\2\2\u020c\u020d\5> \2"+ - "\u020d\u020e\7!\2\2\u020e\u020f\5> \f\u020f\u022a\3\2\2\2\u0210\u0211"+ - "\f\n\2\2\u0211\u0212\7\7\2\2\u0212\u022a\5> \n\u0213\u0214\f\t\2\2\u0214"+ - "\u0215\t\n\2\2\u0215\u022a\5> \t\u0216\u0217\f \2\2\u0217\u0218\7*\2\2"+ - "\u0218\u022a\7d\2\2\u0219\u021a\f\37\2\2\u021a\u021b\7+\2\2\u021b\u022a"+ - "\7d\2\2\u021c\u021d\f\36\2\2\u021d\u021f\7\b\2\2\u021e\u0220\5@!\2\u021f"+ - "\u021e\3\2\2\2\u021f\u0220\3\2\2\2\u0220\u0221\3\2\2\2\u0221\u022a\7\t"+ - "\2\2\u0222\u0223\f\33\2\2\u0223\u0224\7&\2\2\u0224\u0225\5<\37\2\u0225"+ - "\u0226\7\'\2\2\u0226\u022a\3\2\2\2\u0227\u0228\f\30\2\2\u0228\u022a\t"+ - "\3\2\2\u0229\u01ef\3\2\2\2\u0229\u01f2\3\2\2\2\u0229\u01f5\3\2\2\2\u0229"+ - "\u01f8\3\2\2\2\u0229\u01fb\3\2\2\2\u0229\u01fe\3\2\2\2\u0229\u0201\3\2"+ - "\2\2\u0229\u0204\3\2\2\2\u0229\u0207\3\2\2\2\u0229\u020a\3\2\2\2\u0229"+ - "\u0210\3\2\2\2\u0229\u0213\3\2\2\2\u0229\u0216\3\2\2\2\u0229\u0219\3\2"+ - "\2\2\u0229\u021c\3\2\2\2\u0229\u0222\3\2\2\2\u0229\u0227\3\2\2\2\u022a"+ - "\u022d\3\2\2\2\u022b\u0229\3\2\2\2\u022b\u022c\3\2\2\2\u022c?\3\2\2\2"+ - "\u022d\u022b\3\2\2\2\u022e\u0233\5> \2\u022f\u0230\7\6\2\2\u0230\u0232"+ - "\5> \2\u0231\u022f\3\2\2\2\u0232\u0235\3\2\2\2\u0233\u0231\3\2\2\2\u0233"+ - "\u0234\3\2\2\2\u0234A\3\2\2\2\u0235\u0233\3\2\2\2\u0236\u0238\7N\2\2\u0237"+ - "\u0239\5D#\2\u0238\u0237\3\2\2\2\u0238\u0239\3\2\2\2\u0239\u023a\3\2\2"+ - "\2\u023a\u023b\7V\2\2\u023bC\3\2\2\2\u023c\u023d\7\b\2\2\u023d\u0242\5"+ - "F$\2\u023e\u023f\7\6\2\2\u023f\u0241\5F$\2\u0240\u023e\3\2\2\2\u0241\u0244"+ - "\3\2\2\2\u0242\u0240\3\2\2\2\u0242\u0243\3\2\2\2\u0243\u0245\3\2\2\2\u0244"+ - "\u0242\3\2\2\2\u0245\u0246\7\t\2\2\u0246E\3\2\2\2\u0247\u0248\7O\2\2\u0248"+ - "\u0257\7X\2\2\u0249\u024a\7P\2\2\u024a\u0257\7d\2\2\u024b\u024c\7Q\2\2"+ - "\u024c\u0257\7X\2\2\u024d\u024e\7R\2\2\u024e\u0257\5> \2\u024f\u0250\7"+ - "S\2\2\u0250\u0257\5> \2\u0251\u0254\7\r\2\2\u0252\u0255\7\24\2\2\u0253"+ - "\u0255\5> \2\u0254\u0252\3\2\2\2\u0254\u0253\3\2\2\2\u0255\u0257\3\2\2"+ - "\2\u0256\u0247\3\2\2\2\u0256\u0249\3\2\2\2\u0256\u024b\3\2\2\2\u0256\u024d"+ - "\3\2\2\2\u0256\u024f\3\2\2\2\u0256\u0251\3\2\2\2\u0257G\3\2\2\2\u0258"+ - "\u025a\5J&\2\u0259\u0258\3\2\2\2\u025a\u025d\3\2\2\2\u025b\u0259\3\2\2"+ - "\2\u025b\u025c\3\2\2\2\u025cI\3\2\2\2\u025d\u025b\3\2\2\2\u025e\u0262"+ - "\5L\'\2\u025f\u0262\5N(\2\u0260\u0262\5P)\2\u0261\u025e\3\2\2\2\u0261"+ - "\u025f\3\2\2\2\u0261\u0260\3\2\2\2\u0262K\3\2\2\2\u0263\u0264\7d\2\2\u0264"+ - "\u026b\7!\2\2\u0265\u0267\7\62\2\2\u0266\u0268\7d\2\2\u0267\u0266\3\2"+ - "\2\2\u0267\u0268\3\2\2\2\u0268\u0269\3\2\2\2\u0269\u026b\7!\2\2\u026a"+ - "\u0263\3\2\2\2\u026a\u0265\3\2\2\2\u026bM\3\2\2\2\u026c\u026e\7U\2\2\u026d"+ - "\u026f\5R*\2\u026e\u026d\3\2\2\2\u026e\u026f\3\2\2\2\u026fO\3\2\2\2\u0270"+ - "\u0271\7T\2\2\u0271\u0276\5T+\2\u0272\u0273\7\6\2\2\u0273\u0275\5T+\2"+ - "\u0274\u0272\3\2\2\2\u0275\u0278\3\2\2\2\u0276\u0274\3\2\2\2\u0276\u0277"+ - "\3\2\2\2\u0277Q\3\2\2\2\u0278\u0276\3\2\2\2\u0279\u0291\5T+\2\u027a\u027b"+ - "\7\f\2\2\u027b\u0291\5T+\2\u027c\u027d\5T+\2\u027d\u027e\7\6\2\2\u027e"+ - "\u027f\7d\2\2\u027f\u0291\3\2\2\2\u0280\u0281\7\b\2\2\u0281\u0282\5T+"+ - "\2\u0282\u0283\7\t\2\2\u0283\u0284\7\6\2\2\u0284\u0285\7d\2\2\u0285\u0291"+ - "\3\2\2\2\u0286\u0287\7\b\2\2\u0287\u0288\5T+\2\u0288\u0289\7\6\2\2\u0289"+ - "\u028a\7d\2\2\u028a\u028b\7\t\2\2\u028b\u0291\3\2\2\2\u028c\u028d\7\b"+ - "\2\2\u028d\u028e\5T+\2\u028e\u028f\7\t\2\2\u028f\u0291\3\2\2\2\u0290\u0279"+ - "\3\2\2\2\u0290\u027a\3\2\2\2\u0290\u027c\3\2\2\2\u0290\u0280\3\2\2\2\u0290"+ - "\u0286\3\2\2\2\u0290\u028c\3\2\2\2\u0291S\3\2\2\2\u0292\u0293\b+\1\2\u0293"+ - "\u0294\7&\2\2\u0294\u0295\5T+\2\u0295\u0296\7\'\2\2\u0296\u02a1\3\2\2"+ - "\2\u0297\u0298\t\13\2\2\u0298\u02a1\5T+\n\u0299\u02a1\7d\2\2\u029a\u02a1"+ - "\7e\2\2\u029b\u029c\7\n\2\2\u029c\u029d\7d\2\2\u029d\u02a1\7\13\2\2\u029e"+ - "\u02a1\7[\2\2\u029f\u02a1\7Y\2\2\u02a0\u0292\3\2\2\2\u02a0\u0297\3\2\2"+ - "\2\u02a0\u0299\3\2\2\2\u02a0\u029a\3\2\2\2\u02a0\u029b\3\2\2\2\u02a0\u029e"+ - "\3\2\2\2\u02a0\u029f\3\2\2\2\u02a1\u02b0\3\2\2\2\u02a2\u02a3\f\f\2\2\u02a3"+ - "\u02a4\7*\2\2\u02a4\u02af\5T+\r\u02a5\u02a6\f\13\2\2\u02a6\u02a7\t\6\2"+ - "\2\u02a7\u02af\5T+\f\u02a8\u02a9\f\t\2\2\u02a9\u02aa\t\f\2\2\u02aa\u02af"+ - "\5T+\n\u02ab\u02ac\f\b\2\2\u02ac\u02ad\t\b\2\2\u02ad\u02af\5T+\t\u02ae"+ - "\u02a2\3\2\2\2\u02ae\u02a5\3\2\2\2\u02ae\u02a8\3\2\2\2\u02ae\u02ab\3\2"+ - "\2\2\u02af\u02b2\3\2\2\2\u02b0\u02ae\3\2\2\2\u02b0\u02b1\3\2\2\2\u02b1"+ - "U\3\2\2\2\u02b2\u02b0\3\2\2\2B`iz\u0082\u0089\u0097\u009d\u00a2\u00a8"+ - "\u00ad\u00b6\u00bd\u00d0\u00e2\u00e5\u00ee\u00f6\u00fd\u010a\u010f\u011b"+ - "\u0129\u0134\u013d\u0144\u014b\u014e\u0156\u0159\u015c\u0166\u016d\u0174"+ - "\u017a\u017c\u0184\u018a\u0196\u01a4\u01aa\u01b4\u01c0\u01c8\u01df\u01e9"+ - "\u01ed\u021f\u0229\u022b\u0233\u0238\u0242\u0254\u0256\u025b\u0261\u0267"+ - "\u026a\u026e\u0276\u0290\u02a0\u02ae\u02b0"; + "\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\5\20\u00ce\n\20\3\21"+ + "\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21"+ + "\3\21\5\21\u00e0\n\21\3\21\5\21\u00e3\n\21\3\22\3\22\3\22\3\22\3\22\7"+ + "\22\u00ea\n\22\f\22\16\22\u00ed\13\22\3\22\3\22\3\23\6\23\u00f2\n\23\r"+ + "\23\16\23\u00f3\3\24\3\24\3\24\3\24\3\24\5\24\u00fb\n\24\3\24\3\24\3\24"+ + "\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\5\24\u0108\n\24\3\24\7\24\u010b"+ + "\n\24\f\24\16\24\u010e\13\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\7\24\u0117"+ + "\n\24\f\24\16\24\u011a\13\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3"+ + "\24\7\24\u0125\n\24\f\24\16\24\u0128\13\24\3\24\3\24\3\24\3\24\3\24\3"+ + "\24\3\24\3\24\5\24\u0132\n\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\5\24"+ + "\u013b\n\24\3\24\3\24\3\24\3\24\3\24\5\24\u0142\n\24\3\25\3\25\3\25\3"+ + "\25\3\25\5\25\u0149\n\25\3\25\5\25\u014c\n\25\3\25\3\25\3\25\3\25\3\25"+ + "\3\25\5\25\u0154\n\25\3\26\5\26\u0157\n\26\3\26\5\26\u015a\n\26\3\27\3"+ + "\27\3\27\3\27\3\27\3\27\3\27\3\27\5\27\u0164\n\27\3\27\3\27\3\27\3\27"+ + "\3\27\5\27\u016b\n\27\3\27\3\27\3\27\3\27\3\27\5\27\u0172\n\27\3\27\3"+ + "\27\3\27\3\27\7\27\u0178\n\27\f\27\16\27\u017b\13\27\3\30\3\30\3\30\3"+ + "\31\3\31\5\31\u0182\n\31\3\31\3\31\6\31\u0186\n\31\r\31\16\31\u0187\3"+ + "\31\3\31\3\32\3\32\3\32\3\33\3\33\3\33\3\34\3\34\5\34\u0194\n\34\3\34"+ + "\3\34\3\34\3\34\3\35\3\35\3\35\3\35\3\35\3\35\7\35\u01a0\n\35\f\35\16"+ + "\35\u01a3\13\35\3\36\3\36\3\36\5\36\u01a8\n\36\3\37\3\37\3\37\3\37\3\37"+ + "\3\37\7\37\u01b0\n\37\f\37\16\37\u01b3\13\37\3 \3 \3 \3 \3 \3 \3 \3 \3"+ + " \5 \u01be\n \3 \3 \3 \3 \3 \3 \5 \u01c6\n \3 \3 \3 \3 \3 \3 \3 \3 \3"+ + " \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \7 \u01db\n \f \16 \u01de\13 \3 \3 \3 "+ + "\3 \3 \6 \u01e5\n \r \16 \u01e6\3 \3 \5 \u01eb\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 \5 \u021d\n \3"+ + " \3 \3 \3 \3 \3 \3 \3 \7 \u0227\n \f \16 \u022a\13 \3!\3!\3!\7!\u022f"+ + "\n!\f!\16!\u0232\13!\3\"\3\"\5\"\u0236\n\"\3\"\3\"\3#\3#\3#\3#\7#\u023e"+ + "\n#\f#\16#\u0241\13#\3#\3#\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\5$\u0252"+ + "\n$\5$\u0254\n$\3%\7%\u0257\n%\f%\16%\u025a\13%\3&\3&\3&\5&\u025f\n&\3"+ + "\'\3\'\3\'\3\'\5\'\u0265\n\'\3\'\5\'\u0268\n\'\3(\3(\5(\u026c\n(\3)\3"+ + ")\3)\3)\7)\u0272\n)\f)\16)\u0275\13)\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*"+ + "\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\5*\u028e\n*\3+\3+\3+\3+\3+\3+\3+"+ + "\3+\3+\3+\3+\3+\3+\3+\5+\u029e\n+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+"+ + "\7+\u02ac\n+\f+\16+\u02af\13+\3+\2\b\24,8<>T,\2\4\6\b\n\f\16\20\22\24"+ + "\26\30\32\34\36 \"$&(*,.\60\62\64\668:<>@BDFHJLNPRT\2\r\3\2#$\3\2./\3"+ + "\2\60\64\3\29:\3\2\65\66\4\2%%\678\3\2\60\61\3\29>\3\2DM\4\2\60\619:\4"+ + "\2%%\67\67\2\u030f\2V\3\2\2\2\4Z\3\2\2\2\6`\3\2\2\2\bc\3\2\2\2\ng\3\2"+ + "\2\2\fz\3\2\2\2\16|\3\2\2\2\20\u0082\3\2\2\2\22\u008c\3\2\2\2\24\u008f"+ + "\3\2\2\2\26\u00a2\3\2\2\2\30\u00a4\3\2\2\2\32\u00b1\3\2\2\2\34\u00bd\3"+ + "\2\2\2\36\u00cd\3\2\2\2 \u00e2\3\2\2\2\"\u00e4\3\2\2\2$\u00f1\3\2\2\2"+ + "&\u0141\3\2\2\2(\u0153\3\2\2\2*\u0159\3\2\2\2,\u016a\3\2\2\2.\u017c\3"+ + "\2\2\2\60\u017f\3\2\2\2\62\u018b\3\2\2\2\64\u018e\3\2\2\2\66\u0191\3\2"+ + "\2\28\u0199\3\2\2\2:\u01a4\3\2\2\2<\u01a9\3\2\2\2>\u01ea\3\2\2\2@\u022b"+ + "\3\2\2\2B\u0233\3\2\2\2D\u0239\3\2\2\2F\u0253\3\2\2\2H\u0258\3\2\2\2J"+ + "\u025e\3\2\2\2L\u0267\3\2\2\2N\u0269\3\2\2\2P\u026d\3\2\2\2R\u028d\3\2"+ + "\2\2T\u029d\3\2\2\2VW\5\6\4\2WX\5\n\6\2XY\7\2\2\3Y\3\3\2\2\2Z[\5H%\2["+ + "\\\7\2\2\3\\\5\3\2\2\2]_\5\b\5\2^]\3\2\2\2_b\3\2\2\2`^\3\2\2\2`a\3\2\2"+ + "\2a\7\3\2\2\2b`\3\2\2\2cd\7\3\2\2de\7Y\2\2e\t\3\2\2\2fh\5\f\7\2gf\3\2"+ + "\2\2hi\3\2\2\2ig\3\2\2\2ij\3\2\2\2j\13\3\2\2\2kl\5\22\n\2lm\7\4\2\2m{"+ + "\3\2\2\2no\5\60\31\2op\7\4\2\2p{\3\2\2\2qr\5\66\34\2rs\7\4\2\2s{\3\2\2"+ + "\2t{\5\30\r\2u{\5B\"\2v{\5\36\20\2wx\5\16\b\2xy\7\4\2\2y{\3\2\2\2zk\3"+ + "\2\2\2zn\3\2\2\2zq\3\2\2\2zt\3\2\2\2zu\3\2\2\2zv\3\2\2\2zw\3\2\2\2{\r"+ + "\3\2\2\2|}\7\5\2\2}~\5\22\n\2~\17\3\2\2\2\177\u0081\5 \21\2\u0080\177"+ + "\3\2\2\2\u0081\u0084\3\2\2\2\u0082\u0080\3\2\2\2\u0082\u0083\3\2\2\2\u0083"+ + "\u0085\3\2\2\2\u0084\u0082\3\2\2\2\u0085\u0089\5,\27\2\u0086\u0088\5 "+ + "\21\2\u0087\u0086\3\2\2\2\u0088\u008b\3\2\2\2\u0089\u0087\3\2\2\2\u0089"+ + "\u008a\3\2\2\2\u008a\21\3\2\2\2\u008b\u0089\3\2\2\2\u008c\u008d\5\20\t"+ + "\2\u008d\u008e\5\24\13\2\u008e\23\3\2\2\2\u008f\u0090\b\13\1\2\u0090\u0091"+ + "\5\26\f\2\u0091\u0097\3\2\2\2\u0092\u0093\f\3\2\2\u0093\u0094\7\6\2\2"+ + "\u0094\u0096\5\26\f\2\u0095\u0092\3\2\2\2\u0096\u0099\3\2\2\2\u0097\u0095"+ + "\3\2\2\2\u0097\u0098\3\2\2\2\u0098\25\3\2\2\2\u0099\u0097\3\2\2\2\u009a"+ + "\u009d\7e\2\2\u009b\u009c\7\7\2\2\u009c\u009e\5> \2\u009d\u009b\3\2\2"+ + "\2\u009d\u009e\3\2\2\2\u009e\u00a3\3\2\2\2\u009f\u00a0\7e\2\2\u00a0\u00a1"+ + "\7\7\2\2\u00a1\u00a3\5B\"\2\u00a2\u009a\3\2\2\2\u00a2\u009f\3\2\2\2\u00a3"+ + "\27\3\2\2\2\u00a4\u00a5\5\20\t\2\u00a5\u00a6\7e\2\2\u00a6\u00a8\7\b\2"+ + "\2\u00a7\u00a9\5\32\16\2\u00a8\u00a7\3\2\2\2\u00a8\u00a9\3\2\2\2\u00a9"+ + "\u00aa\3\2\2\2\u00aa\u00ab\7\t\2\2\u00ab\u00ad\7\n\2\2\u00ac\u00ae\5$"+ + "\23\2\u00ad\u00ac\3\2\2\2\u00ad\u00ae\3\2\2\2\u00ae\u00af\3\2\2\2\u00af"+ + "\u00b0\7\13\2\2\u00b0\31\3\2\2\2\u00b1\u00b6\5\34\17\2\u00b2\u00b3\7\6"+ + "\2\2\u00b3\u00b5\5\34\17\2\u00b4\u00b2\3\2\2\2\u00b5\u00b8\3\2\2\2\u00b6"+ + "\u00b4\3\2\2\2\u00b6\u00b7\3\2\2\2\u00b7\33\3\2\2\2\u00b8\u00b6\3\2\2"+ + "\2\u00b9\u00ba\5\20\t\2\u00ba\u00bb\7e\2\2\u00bb\u00be\3\2\2\2\u00bc\u00be"+ + "\7X\2\2\u00bd\u00b9\3\2\2\2\u00bd\u00bc\3\2\2\2\u00be\35\3\2\2\2\u00bf"+ + "\u00c0\7\f\2\2\u00c0\u00ce\5\"\22\2\u00c1\u00c2\7\r\2\2\u00c2\u00c3\7"+ + "\b\2\2\u00c3\u00c4\7\\\2\2\u00c4\u00ce\7\t\2\2\u00c5\u00c6\7\16\2\2\u00c6"+ + "\u00c7\7\b\2\2\u00c7\u00c8\7e\2\2\u00c8\u00ce\7\t\2\2\u00c9\u00ca\7\17"+ + "\2\2\u00ca\u00cb\7\b\2\2\u00cb\u00cc\7e\2\2\u00cc\u00ce\7\t\2\2\u00cd"+ + "\u00bf\3\2\2\2\u00cd\u00c1\3\2\2\2\u00cd\u00c5\3\2\2\2\u00cd\u00c9\3\2"+ + "\2\2\u00ce\37\3\2\2\2\u00cf\u00e3\7\20\2\2\u00d0\u00e3\7\21\2\2\u00d1"+ + "\u00d2\7\22\2\2\u00d2\u00d3\7\b\2\2\u00d3\u00d4\7\\\2\2\u00d4\u00e3\7"+ + "\t\2\2\u00d5\u00d6\7\23\2\2\u00d6\u00d7\7\b\2\2\u00d7\u00d8\7e\2\2\u00d8"+ + "\u00e3\7\t\2\2\u00d9\u00e3\7\24\2\2\u00da\u00e3\7\25\2\2\u00db\u00df\7"+ + "\26\2\2\u00dc\u00dd\7\b\2\2\u00dd\u00de\7e\2\2\u00de\u00e0\7\t\2\2\u00df"+ + "\u00dc\3\2\2\2\u00df\u00e0\3\2\2\2\u00e0\u00e3\3\2\2\2\u00e1\u00e3\5\""+ + "\22\2\u00e2\u00cf\3\2\2\2\u00e2\u00d0\3\2\2\2\u00e2\u00d1\3\2\2\2\u00e2"+ + "\u00d5\3\2\2\2\u00e2\u00d9\3\2\2\2\u00e2\u00da\3\2\2\2\u00e2\u00db\3\2"+ + "\2\2\u00e2\u00e1\3\2\2\2\u00e3!\3\2\2\2\u00e4\u00e5\7\27\2\2\u00e5\u00e6"+ + "\7\b\2\2\u00e6\u00eb\7\\\2\2\u00e7\u00e8\7\6\2\2\u00e8\u00ea\7\\\2\2\u00e9"+ + "\u00e7\3\2\2\2\u00ea\u00ed\3\2\2\2\u00eb\u00e9\3\2\2\2\u00eb\u00ec\3\2"+ + "\2\2\u00ec\u00ee\3\2\2\2\u00ed\u00eb\3\2\2\2\u00ee\u00ef\7\t\2\2\u00ef"+ + "#\3\2\2\2\u00f0\u00f2\5&\24\2\u00f1\u00f0\3\2\2\2\u00f2\u00f3\3\2\2\2"+ + "\u00f3\u00f1\3\2\2\2\u00f3\u00f4\3\2\2\2\u00f4%\3\2\2\2\u00f5\u00f6\5"+ + "\22\n\2\u00f6\u00f7\7\4\2\2\u00f7\u0142\3\2\2\2\u00f8\u00fa\7\n\2\2\u00f9"+ + "\u00fb\5$\23\2\u00fa\u00f9\3\2\2\2\u00fa\u00fb\3\2\2\2\u00fb\u00fc\3\2"+ + "\2\2\u00fc\u0142\7\13\2\2\u00fd\u00fe\5<\37\2\u00fe\u00ff\7\4\2\2\u00ff"+ + "\u0142\3\2\2\2\u0100\u0101\7\30\2\2\u0101\u0102\7\b\2\2\u0102\u0103\5"+ + "<\37\2\u0103\u0104\7\t\2\2\u0104\u0107\5&\24\2\u0105\u0106\7\31\2\2\u0106"+ + "\u0108\5&\24\2\u0107\u0105\3\2\2\2\u0107\u0108\3\2\2\2\u0108\u0142\3\2"+ + "\2\2\u0109\u010b\5 \21\2\u010a\u0109\3\2\2\2\u010b\u010e\3\2\2\2\u010c"+ + "\u010a\3\2\2\2\u010c\u010d\3\2\2\2\u010d\u010f\3\2\2\2\u010e\u010c\3\2"+ + "\2\2\u010f\u0110\7\32\2\2\u0110\u0111\7\b\2\2\u0111\u0112\5<\37\2\u0112"+ + "\u0113\7\t\2\2\u0113\u0114\5&\24\2\u0114\u0142\3\2\2\2\u0115\u0117\5 "+ + "\21\2\u0116\u0115\3\2\2\2\u0117\u011a\3\2\2\2\u0118\u0116\3\2\2\2\u0118"+ + "\u0119\3\2\2\2\u0119\u011b\3\2\2\2\u011a\u0118\3\2\2\2\u011b\u011c\7\33"+ + "\2\2\u011c\u011d\5&\24\2\u011d\u011e\7\32\2\2\u011e\u011f\7\b\2\2\u011f"+ + "\u0120\5<\37\2\u0120\u0121\7\t\2\2\u0121\u0122\7\4\2\2\u0122\u0142\3\2"+ + "\2\2\u0123\u0125\5 \21\2\u0124\u0123\3\2\2\2\u0125\u0128\3\2\2\2\u0126"+ + "\u0124\3\2\2\2\u0126\u0127\3\2\2\2\u0127\u0129\3\2\2\2\u0128\u0126\3\2"+ + "\2\2\u0129\u012a\7\34\2\2\u012a\u012b\7\b\2\2\u012b\u012c\5(\25\2\u012c"+ + "\u012d\7\t\2\2\u012d\u012e\5&\24\2\u012e\u0142\3\2\2\2\u012f\u0131\7\35"+ + "\2\2\u0130\u0132\5<\37\2\u0131\u0130\3\2\2\2\u0131\u0132\3\2\2\2\u0132"+ + "\u0133\3\2\2\2\u0133\u0142\7\4\2\2\u0134\u0135\7\36\2\2\u0135\u0142\7"+ + "\4\2\2\u0136\u0137\7\37\2\2\u0137\u0142\7\4\2\2\u0138\u013a\7 \2\2\u0139"+ + "\u013b\5D#\2\u013a\u0139\3\2\2\2\u013a\u013b\3\2\2\2\u013b\u013c\3\2\2"+ + "\2\u013c\u013d\7\n\2\2\u013d\u013e\5H%\2\u013e\u013f\7\13\2\2\u013f\u0142"+ + "\3\2\2\2\u0140\u0142\5B\"\2\u0141\u00f5\3\2\2\2\u0141\u00f8\3\2\2\2\u0141"+ + "\u00fd\3\2\2\2\u0141\u0100\3\2\2\2\u0141\u010c\3\2\2\2\u0141\u0118\3\2"+ + "\2\2\u0141\u0126\3\2\2\2\u0141\u012f\3\2\2\2\u0141\u0134\3\2\2\2\u0141"+ + "\u0136\3\2\2\2\u0141\u0138\3\2\2\2\u0141\u0140\3\2\2\2\u0142\'\3\2\2\2"+ + "\u0143\u0144\5*\26\2\u0144\u0145\7\4\2\2\u0145\u0146\5<\37\2\u0146\u0148"+ + "\7\4\2\2\u0147\u0149\5<\37\2\u0148\u0147\3\2\2\2\u0148\u0149\3\2\2\2\u0149"+ + "\u0154\3\2\2\2\u014a\u014c\5\20\t\2\u014b\u014a\3\2\2\2\u014b\u014c\3"+ + "\2\2\2\u014c\u014d\3\2\2\2\u014d\u014e\7e\2\2\u014e\u014f\7!\2\2\u014f"+ + "\u0150\5> \2\u0150\u0151\7\"\2\2\u0151\u0152\5> \2\u0152\u0154\3\2\2\2"+ + "\u0153\u0143\3\2\2\2\u0153\u014b\3\2\2\2\u0154)\3\2\2\2\u0155\u0157\5"+ + "\22\n\2\u0156\u0155\3\2\2\2\u0156\u0157\3\2\2\2\u0157\u015a\3\2\2\2\u0158"+ + "\u015a\5<\37\2\u0159\u0156\3\2\2\2\u0159\u0158\3\2\2\2\u015a+\3\2\2\2"+ + "\u015b\u015c\b\27\1\2\u015c\u015d\7\b\2\2\u015d\u015e\5,\27\2\u015e\u015f"+ + "\7\t\2\2\u015f\u016b\3\2\2\2\u0160\u016b\7X\2\2\u0161\u0163\t\2\2\2\u0162"+ + "\u0164\7X\2\2\u0163\u0162\3\2\2\2\u0163\u0164\3\2\2\2\u0164\u016b\3\2"+ + "\2\2\u0165\u016b\5\60\31\2\u0166\u016b\5.\30\2\u0167\u016b\5\66\34\2\u0168"+ + "\u016b\5\64\33\2\u0169\u016b\7e\2\2\u016a\u015b\3\2\2\2\u016a\u0160\3"+ + "\2\2\2\u016a\u0161\3\2\2\2\u016a\u0165\3\2\2\2\u016a\u0166\3\2\2\2\u016a"+ + "\u0167\3\2\2\2\u016a\u0168\3\2\2\2\u016a\u0169\3\2\2\2\u016b\u0179\3\2"+ + "\2\2\u016c\u016d\f\n\2\2\u016d\u0178\7%\2\2\u016e\u016f\f\t\2\2\u016f"+ + "\u0171\7&\2\2\u0170\u0172\5> \2\u0171\u0170\3\2\2\2\u0171\u0172\3\2\2"+ + "\2\u0172\u0173\3\2\2\2\u0173\u0178\7\'\2\2\u0174\u0175\f\b\2\2\u0175\u0176"+ + "\7\b\2\2\u0176\u0178\7\t\2\2\u0177\u016c\3\2\2\2\u0177\u016e\3\2\2\2\u0177"+ + "\u0174\3\2\2\2\u0178\u017b\3\2\2\2\u0179\u0177\3\2\2\2\u0179\u017a\3\2"+ + "\2\2\u017a-\3\2\2\2\u017b\u0179\3\2\2\2\u017c\u017d\7(\2\2\u017d\u017e"+ + "\7e\2\2\u017e/\3\2\2\2\u017f\u0181\7(\2\2\u0180\u0182\7e\2\2\u0181\u0180"+ + "\3\2\2\2\u0181\u0182\3\2\2\2\u0182\u0183\3\2\2\2\u0183\u0185\7\n\2\2\u0184"+ + "\u0186\5\62\32\2\u0185\u0184\3\2\2\2\u0186\u0187\3\2\2\2\u0187\u0185\3"+ + "\2\2\2\u0187\u0188\3\2\2\2\u0188\u0189\3\2\2\2\u0189\u018a\7\13\2\2\u018a"+ + "\61\3\2\2\2\u018b\u018c\5\22\n\2\u018c\u018d\7\4\2\2\u018d\63\3\2\2\2"+ + "\u018e\u018f\7)\2\2\u018f\u0190\7e\2\2\u0190\65\3\2\2\2\u0191\u0193\7"+ + ")\2\2\u0192\u0194\7e\2\2\u0193\u0192\3\2\2\2\u0193\u0194\3\2\2\2\u0194"+ + "\u0195\3\2\2\2\u0195\u0196\7\n\2\2\u0196\u0197\58\35\2\u0197\u0198\7\13"+ + "\2\2\u0198\67\3\2\2\2\u0199\u019a\b\35\1\2\u019a\u019b\5:\36\2\u019b\u01a1"+ + "\3\2\2\2\u019c\u019d\f\3\2\2\u019d\u019e\7\6\2\2\u019e\u01a0\5:\36\2\u019f"+ + "\u019c\3\2\2\2\u01a0\u01a3\3\2\2\2\u01a1\u019f\3\2\2\2\u01a1\u01a2\3\2"+ + "\2\2\u01a29\3\2\2\2\u01a3\u01a1\3\2\2\2\u01a4\u01a7\7e\2\2\u01a5\u01a6"+ + "\7\7\2\2\u01a6\u01a8\5> \2\u01a7\u01a5\3\2\2\2\u01a7\u01a8\3\2\2\2\u01a8"+ + ";\3\2\2\2\u01a9\u01aa\b\37\1\2\u01aa\u01ab\5> \2\u01ab\u01b1\3\2\2\2\u01ac"+ + "\u01ad\f\3\2\2\u01ad\u01ae\7\6\2\2\u01ae\u01b0\5> \2\u01af\u01ac\3\2\2"+ + "\2\u01b0\u01b3\3\2\2\2\u01b1\u01af\3\2\2\2\u01b1\u01b2\3\2\2\2\u01b2="+ + "\3\2\2\2\u01b3\u01b1\3\2\2\2\u01b4\u01b5\b \1\2\u01b5\u01b6\7\b\2\2\u01b6"+ + "\u01b7\5<\37\2\u01b7\u01b8\7\t\2\2\u01b8\u01eb\3\2\2\2\u01b9\u01ba\7,"+ + "\2\2\u01ba\u01bd\7\b\2\2\u01bb\u01be\5> \2\u01bc\u01be\5,\27\2\u01bd\u01bb"+ + "\3\2\2\2\u01bd\u01bc\3\2\2\2\u01be\u01bf\3\2\2\2\u01bf\u01c0\7\t\2\2\u01c0"+ + "\u01eb\3\2\2\2\u01c1\u01c2\7-\2\2\u01c2\u01c5\7\b\2\2\u01c3\u01c6\5> "+ + "\2\u01c4\u01c6\5,\27\2\u01c5\u01c3\3\2\2\2\u01c5\u01c4\3\2\2\2\u01c6\u01c7"+ + "\3\2\2\2\u01c7\u01c8\7\t\2\2\u01c8\u01eb\3\2\2\2\u01c9\u01ca\7\b\2\2\u01ca"+ + "\u01cb\5,\27\2\u01cb\u01cc\7\t\2\2\u01cc\u01cd\5> \32\u01cd\u01eb\3\2"+ + "\2\2\u01ce\u01cf\t\3\2\2\u01cf\u01eb\5> \31\u01d0\u01d1\7%\2\2\u01d1\u01eb"+ + "\5> \27\u01d2\u01d3\t\4\2\2\u01d3\u01eb\5> \26\u01d4\u01d5\t\5\2\2\u01d5"+ + "\u01eb\5> \22\u01d6\u01d7\7\n\2\2\u01d7\u01dc\5> \2\u01d8\u01d9\7\6\2"+ + "\2\u01d9\u01db\5> \2\u01da\u01d8\3\2\2\2\u01db\u01de\3\2\2\2\u01dc\u01da"+ + "\3\2\2\2\u01dc\u01dd\3\2\2\2\u01dd\u01df\3\2\2\2\u01de\u01dc\3\2\2\2\u01df"+ + "\u01e0\7\13\2\2\u01e0\u01eb\3\2\2\2\u01e1\u01eb\7e\2\2\u01e2\u01eb\7\\"+ + "\2\2\u01e3\u01e5\7Y\2\2\u01e4\u01e3\3\2\2\2\u01e5\u01e6\3\2\2\2\u01e6"+ + "\u01e4\3\2\2\2\u01e6\u01e7\3\2\2\2\u01e7\u01eb\3\2\2\2\u01e8\u01eb\7Z"+ + "\2\2\u01e9\u01eb\7[\2\2\u01ea\u01b4\3\2\2\2\u01ea\u01b9\3\2\2\2\u01ea"+ + "\u01c1\3\2\2\2\u01ea\u01c9\3\2\2\2\u01ea\u01ce\3\2\2\2\u01ea\u01d0\3\2"+ + "\2\2\u01ea\u01d2\3\2\2\2\u01ea\u01d4\3\2\2\2\u01ea\u01d6\3\2\2\2\u01ea"+ + "\u01e1\3\2\2\2\u01ea\u01e2\3\2\2\2\u01ea\u01e4\3\2\2\2\u01ea\u01e8\3\2"+ + "\2\2\u01ea\u01e9\3\2\2\2\u01eb\u0228\3\2\2\2\u01ec\u01ed\f\25\2\2\u01ed"+ + "\u01ee\t\6\2\2\u01ee\u0227\5> \26\u01ef\u01f0\f\24\2\2\u01f0\u01f1\t\7"+ + "\2\2\u01f1\u0227\5> \25\u01f2\u01f3\f\23\2\2\u01f3\u01f4\t\b\2\2\u01f4"+ + "\u0227\5> \24\u01f5\u01f6\f\21\2\2\u01f6\u01f7\t\t\2\2\u01f7\u0227\5>"+ + " \22\u01f8\u01f9\f\20\2\2\u01f9\u01fa\7\63\2\2\u01fa\u0227\5> \21\u01fb"+ + "\u01fc\f\17\2\2\u01fc\u01fd\7?\2\2\u01fd\u0227\5> \20\u01fe\u01ff\f\16"+ + "\2\2\u01ff\u0200\7@\2\2\u0200\u0227\5> \17\u0201\u0202\f\r\2\2\u0202\u0203"+ + "\7A\2\2\u0203\u0227\5> \16\u0204\u0205\f\f\2\2\u0205\u0206\7B\2\2\u0206"+ + "\u0227\5> \r\u0207\u0208\f\13\2\2\u0208\u0209\7C\2\2\u0209\u020a\5> \2"+ + "\u020a\u020b\7!\2\2\u020b\u020c\5> \f\u020c\u0227\3\2\2\2\u020d\u020e"+ + "\f\n\2\2\u020e\u020f\7\7\2\2\u020f\u0227\5> \n\u0210\u0211\f\t\2\2\u0211"+ + "\u0212\t\n\2\2\u0212\u0227\5> \t\u0213\u0214\f \2\2\u0214\u0215\7*\2\2"+ + "\u0215\u0227\7e\2\2\u0216\u0217\f\37\2\2\u0217\u0218\7+\2\2\u0218\u0227"+ + "\7e\2\2\u0219\u021a\f\36\2\2\u021a\u021c\7\b\2\2\u021b\u021d\5@!\2\u021c"+ + "\u021b\3\2\2\2\u021c\u021d\3\2\2\2\u021d\u021e\3\2\2\2\u021e\u0227\7\t"+ + "\2\2\u021f\u0220\f\33\2\2\u0220\u0221\7&\2\2\u0221\u0222\5<\37\2\u0222"+ + "\u0223\7\'\2\2\u0223\u0227\3\2\2\2\u0224\u0225\f\30\2\2\u0225\u0227\t"+ + "\3\2\2\u0226\u01ec\3\2\2\2\u0226\u01ef\3\2\2\2\u0226\u01f2\3\2\2\2\u0226"+ + "\u01f5\3\2\2\2\u0226\u01f8\3\2\2\2\u0226\u01fb\3\2\2\2\u0226\u01fe\3\2"+ + "\2\2\u0226\u0201\3\2\2\2\u0226\u0204\3\2\2\2\u0226\u0207\3\2\2\2\u0226"+ + "\u020d\3\2\2\2\u0226\u0210\3\2\2\2\u0226\u0213\3\2\2\2\u0226\u0216\3\2"+ + "\2\2\u0226\u0219\3\2\2\2\u0226\u021f\3\2\2\2\u0226\u0224\3\2\2\2\u0227"+ + "\u022a\3\2\2\2\u0228\u0226\3\2\2\2\u0228\u0229\3\2\2\2\u0229?\3\2\2\2"+ + "\u022a\u0228\3\2\2\2\u022b\u0230\5> \2\u022c\u022d\7\6\2\2\u022d\u022f"+ + "\5> \2\u022e\u022c\3\2\2\2\u022f\u0232\3\2\2\2\u0230\u022e\3\2\2\2\u0230"+ + "\u0231\3\2\2\2\u0231A\3\2\2\2\u0232\u0230\3\2\2\2\u0233\u0235\7N\2\2\u0234"+ + "\u0236\5D#\2\u0235\u0234\3\2\2\2\u0235\u0236\3\2\2\2\u0236\u0237\3\2\2"+ + "\2\u0237\u0238\7W\2\2\u0238C\3\2\2\2\u0239\u023a\7\b\2\2\u023a\u023f\5"+ + "F$\2\u023b\u023c\7\6\2\2\u023c\u023e\5F$\2\u023d\u023b\3\2\2\2\u023e\u0241"+ + "\3\2\2\2\u023f\u023d\3\2\2\2\u023f\u0240\3\2\2\2\u0240\u0242\3\2\2\2\u0241"+ + "\u023f\3\2\2\2\u0242\u0243\7\t\2\2\u0243E\3\2\2\2\u0244\u0245\7O\2\2\u0245"+ + "\u0254\7Y\2\2\u0246\u0247\7P\2\2\u0247\u0254\7e\2\2\u0248\u0249\7Q\2\2"+ + "\u0249\u0254\7Y\2\2\u024a\u024b\7R\2\2\u024b\u0254\5> \2\u024c\u024d\7"+ + "S\2\2\u024d\u0254\5> \2\u024e\u0251\7T\2\2\u024f\u0252\7\24\2\2\u0250"+ + "\u0252\5> \2\u0251\u024f\3\2\2\2\u0251\u0250\3\2\2\2\u0252\u0254\3\2\2"+ + "\2\u0253\u0244\3\2\2\2\u0253\u0246\3\2\2\2\u0253\u0248\3\2\2\2\u0253\u024a"+ + "\3\2\2\2\u0253\u024c\3\2\2\2\u0253\u024e\3\2\2\2\u0254G\3\2\2\2\u0255"+ + "\u0257\5J&\2\u0256\u0255\3\2\2\2\u0257\u025a\3\2\2\2\u0258\u0256\3\2\2"+ + "\2\u0258\u0259\3\2\2\2\u0259I\3\2\2\2\u025a\u0258\3\2\2\2\u025b\u025f"+ + "\5L\'\2\u025c\u025f\5N(\2\u025d\u025f\5P)\2\u025e\u025b\3\2\2\2\u025e"+ + "\u025c\3\2\2\2\u025e\u025d\3\2\2\2\u025fK\3\2\2\2\u0260\u0261\7e\2\2\u0261"+ + "\u0268\7!\2\2\u0262\u0264\7\62\2\2\u0263\u0265\7e\2\2\u0264\u0263\3\2"+ + "\2\2\u0264\u0265\3\2\2\2\u0265\u0266\3\2\2\2\u0266\u0268\7!\2\2\u0267"+ + "\u0260\3\2\2\2\u0267\u0262\3\2\2\2\u0268M\3\2\2\2\u0269\u026b\7V\2\2\u026a"+ + "\u026c\5R*\2\u026b\u026a\3\2\2\2\u026b\u026c\3\2\2\2\u026cO\3\2\2\2\u026d"+ + "\u026e\7U\2\2\u026e\u0273\5T+\2\u026f\u0270\7\6\2\2\u0270\u0272\5T+\2"+ + "\u0271\u026f\3\2\2\2\u0272\u0275\3\2\2\2\u0273\u0271\3\2\2\2\u0273\u0274"+ + "\3\2\2\2\u0274Q\3\2\2\2\u0275\u0273\3\2\2\2\u0276\u028e\5T+\2\u0277\u0278"+ + "\7\f\2\2\u0278\u028e\5T+\2\u0279\u027a\5T+\2\u027a\u027b\7\6\2\2\u027b"+ + "\u027c\7e\2\2\u027c\u028e\3\2\2\2\u027d\u027e\7\b\2\2\u027e\u027f\5T+"+ + "\2\u027f\u0280\7\t\2\2\u0280\u0281\7\6\2\2\u0281\u0282\7e\2\2\u0282\u028e"+ + "\3\2\2\2\u0283\u0284\7\b\2\2\u0284\u0285\5T+\2\u0285\u0286\7\6\2\2\u0286"+ + "\u0287\7e\2\2\u0287\u0288\7\t\2\2\u0288\u028e\3\2\2\2\u0289\u028a\7\b"+ + "\2\2\u028a\u028b\5T+\2\u028b\u028c\7\t\2\2\u028c\u028e\3\2\2\2\u028d\u0276"+ + "\3\2\2\2\u028d\u0277\3\2\2\2\u028d\u0279\3\2\2\2\u028d\u027d\3\2\2\2\u028d"+ + "\u0283\3\2\2\2\u028d\u0289\3\2\2\2\u028eS\3\2\2\2\u028f\u0290\b+\1\2\u0290"+ + "\u0291\7&\2\2\u0291\u0292\5T+\2\u0292\u0293\7\'\2\2\u0293\u029e\3\2\2"+ + "\2\u0294\u0295\t\13\2\2\u0295\u029e\5T+\n\u0296\u029e\7e\2\2\u0297\u029e"+ + "\7f\2\2\u0298\u0299\7\n\2\2\u0299\u029a\7e\2\2\u029a\u029e\7\13\2\2\u029b"+ + "\u029e\7\\\2\2\u029c\u029e\7Z\2\2\u029d\u028f\3\2\2\2\u029d\u0294\3\2"+ + "\2\2\u029d\u0296\3\2\2\2\u029d\u0297\3\2\2\2\u029d\u0298\3\2\2\2\u029d"+ + "\u029b\3\2\2\2\u029d\u029c\3\2\2\2\u029e\u02ad\3\2\2\2\u029f\u02a0\f\f"+ + "\2\2\u02a0\u02a1\7*\2\2\u02a1\u02ac\5T+\r\u02a2\u02a3\f\13\2\2\u02a3\u02a4"+ + "\t\6\2\2\u02a4\u02ac\5T+\f\u02a5\u02a6\f\t\2\2\u02a6\u02a7\t\f\2\2\u02a7"+ + "\u02ac\5T+\n\u02a8\u02a9\f\b\2\2\u02a9\u02aa\t\b\2\2\u02aa\u02ac\5T+\t"+ + "\u02ab\u029f\3\2\2\2\u02ab\u02a2\3\2\2\2\u02ab\u02a5\3\2\2\2\u02ab\u02a8"+ + "\3\2\2\2\u02ac\u02af\3\2\2\2\u02ad\u02ab\3\2\2\2\u02ad\u02ae\3\2\2\2\u02ae"+ + "U\3\2\2\2\u02af\u02ad\3\2\2\2B`iz\u0082\u0089\u0097\u009d\u00a2\u00a8"+ + "\u00ad\u00b6\u00bd\u00cd\u00df\u00e2\u00eb\u00f3\u00fa\u0107\u010c\u0118"+ + "\u0126\u0131\u013a\u0141\u0148\u014b\u0153\u0156\u0159\u0163\u016a\u0171"+ + "\u0177\u0179\u0181\u0187\u0193\u01a1\u01a7\u01b1\u01bd\u01c5\u01dc\u01e6"+ + "\u01ea\u021c\u0226\u0228\u0230\u0235\u023f\u0251\u0253\u0258\u025e\u0264"+ + "\u0267\u026b\u0273\u028d\u029d\u02ab\u02ad"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff --git a/src/main/java/dk/camelot64/kickc/passes/Pass4ZeroPageCoalesce.java b/src/main/java/dk/camelot64/kickc/passes/Pass4ZeroPageCoalesce.java index 13cc2a77d..2bdf83573 100644 --- a/src/main/java/dk/camelot64/kickc/passes/Pass4ZeroPageCoalesce.java +++ b/src/main/java/dk/camelot64/kickc/passes/Pass4ZeroPageCoalesce.java @@ -10,37 +10,18 @@ import dk.camelot64.kickc.model.values.VariableRef; import java.util.ArrayList; import java.util.Collection; -import java.util.LinkedHashSet; import java.util.Set; /** * Coalesces zero page registers where their live ranges do not overlap. * A final step done after all other register optimizations and before ASM generation. */ -public class Pass4ZeroPageCoalesce extends Pass2Base { +public abstract class Pass4ZeroPageCoalesce extends Pass2Base { public Pass4ZeroPageCoalesce(Program program) { super(program); } - public void coalesce() { - LinkedHashSet unknownFragments = new LinkedHashSet<>(); - LiveRangeEquivalenceClassSet liveRangeEquivalenceClassSet = getProgram().getLiveRangeEquivalenceClassSet(); - Collection threads = getThreadHeads(getProgram()); - boolean change; - do { - change = coalesce(liveRangeEquivalenceClassSet, threads, unknownFragments); - } while(change); - - if(unknownFragments.size() > 0) { - getLog().append("MISSING FRAGMENTS"); - for(String unknownFragment : unknownFragments) { - getLog().append(" " + unknownFragment); - } - } - - } - /** * Get all functions that represents a separate thread in the program. * Each interrupt function and the main() function are threads. @@ -62,29 +43,6 @@ public class Pass4ZeroPageCoalesce extends Pass2Base { return threadHeads; } - /** - * Find two equivalence classes that can be coalesced into one - and perform the coalescence. - * - * @param liveRangeEquivalenceClassSet The set of live range equivalence classes - * @param unknownFragments Receives information about any unknown fragments encountered during ASM generation - * @return true if any classes were coalesced. False otherwise. - */ - private boolean coalesce(LiveRangeEquivalenceClassSet liveRangeEquivalenceClassSet, Collection threadHeads, Set unknownFragments) { - for(LiveRangeEquivalenceClass thisEquivalenceClass : liveRangeEquivalenceClassSet.getEquivalenceClasses()) { - for(LiveRangeEquivalenceClass otherEquivalenceClass : liveRangeEquivalenceClassSet.getEquivalenceClasses()) { - if(!thisEquivalenceClass.equals(otherEquivalenceClass)) { - if(canCoalesce(thisEquivalenceClass, otherEquivalenceClass, threadHeads, unknownFragments, getProgram())) { - getLog().append("Coalescing zero page register [ " + thisEquivalenceClass + " ] with [ " + otherEquivalenceClass + " ]"); - liveRangeEquivalenceClassSet.consolidate(thisEquivalenceClass, otherEquivalenceClass); - // Reset the program register allocation - getProgram().getLiveRangeEquivalenceClassSet().storeRegisterAllocation(); - return true; - } - } - } - } - return false; - } /** * Determines if two live range equivalence classes can be coalesced. diff --git a/src/main/java/dk/camelot64/kickc/passes/Pass4ZeroPageCoalesceExhaustive.java b/src/main/java/dk/camelot64/kickc/passes/Pass4ZeroPageCoalesceExhaustive.java new file mode 100644 index 000000000..8c06b9a0f --- /dev/null +++ b/src/main/java/dk/camelot64/kickc/passes/Pass4ZeroPageCoalesceExhaustive.java @@ -0,0 +1,67 @@ +package dk.camelot64.kickc.passes; + +import dk.camelot64.kickc.model.LiveRangeEquivalenceClass; +import dk.camelot64.kickc.model.LiveRangeEquivalenceClassSet; +import dk.camelot64.kickc.model.Program; +import dk.camelot64.kickc.model.values.ScopeRef; + +import java.util.Collection; +import java.util.LinkedHashSet; +import java.util.Set; + +/** + * Exhaustive attempt to coalesces zero page registers where live ranges do not overlap. + * An optional final step done after all other register optimizations and before ASM generation. + * Performs an exhaustive search - so it can take a lot of time! + */ +public class Pass4ZeroPageCoalesceExhaustive extends Pass2Base { + + public Pass4ZeroPageCoalesceExhaustive(Program program) { + super(program); + } + + public void coalesce() { + LinkedHashSet unknownFragments = new LinkedHashSet<>(); + LiveRangeEquivalenceClassSet liveRangeEquivalenceClassSet = getProgram().getLiveRangeEquivalenceClassSet(); + Collection threads = Pass4ZeroPageCoalesce.getThreadHeads(getProgram()); + boolean change; + do { + change = coalesce(liveRangeEquivalenceClassSet, threads, unknownFragments); + } while(change); + + if(unknownFragments.size() > 0) { + getLog().append("MISSING FRAGMENTS"); + for(String unknownFragment : unknownFragments) { + getLog().append(" " + unknownFragment); + } + } + + } + + /** + * Find any two equivalence classes that can be coalesced into one - and perform the coalescence. + * + * @param liveRangeEquivalenceClassSet The set of live range equivalence classes + * @param unknownFragments Receives information about any unknown fragments encountered during ASM generation + * @return true if any classes were coalesced. False otherwise. + */ + private boolean coalesce(LiveRangeEquivalenceClassSet liveRangeEquivalenceClassSet, Collection threadHeads, Set unknownFragments) { + for(LiveRangeEquivalenceClass thisEquivalenceClass : liveRangeEquivalenceClassSet.getEquivalenceClasses()) { + for(LiveRangeEquivalenceClass otherEquivalenceClass : liveRangeEquivalenceClassSet.getEquivalenceClasses()) { + if(!thisEquivalenceClass.equals(otherEquivalenceClass)) { + if(Pass4ZeroPageCoalesce.canCoalesce(thisEquivalenceClass, otherEquivalenceClass, threadHeads, unknownFragments, getProgram())) { + getLog().append("Coalescing zero page register [ " + thisEquivalenceClass + " ] with [ " + otherEquivalenceClass + " ]"); + liveRangeEquivalenceClassSet.consolidate(thisEquivalenceClass, otherEquivalenceClass); + // Reset the program register allocation + getProgram().getLiveRangeEquivalenceClassSet().storeRegisterAllocation(); + return true; + } + } + } + } + return false; + } + + + +} diff --git a/src/test/java/dk/camelot64/kickc/test/TestPrograms.java b/src/test/java/dk/camelot64/kickc/test/TestPrograms.java index d58929d8a..b521e8f88 100644 --- a/src/test/java/dk/camelot64/kickc/test/TestPrograms.java +++ b/src/test/java/dk/camelot64/kickc/test/TestPrograms.java @@ -35,6 +35,11 @@ public class TestPrograms { public TestPrograms() { } + @Test + public void testCoalesceAssignment() throws IOException, URISyntaxException { + compileAndCompare("coalesce-assignment"); + } + @Test public void testArray16bitLookup() throws IOException, URISyntaxException { compileAndCompare("array-16bit-lookup"); diff --git a/src/test/kc/coalesce-assignment.kc b/src/test/kc/coalesce-assignment.kc new file mode 100644 index 000000000..f3eb2fe32 --- /dev/null +++ b/src/test/kc/coalesce-assignment.kc @@ -0,0 +1,16 @@ +// Tests variable coalescing over assignments + +void main() { + const byte* SCREEN = 0x0400; + byte idx = 0; + for( byte a: 0..5) { + for( byte b: 0..5) { + byte c = a; + byte d = b; + byte e = b+c; + byte f = d+a; + byte g = e+f; + SCREEN[idx++] = g; + } + } +} \ No newline at end of file diff --git a/src/test/kc/complex/splines/truetype-splines.kc b/src/test/kc/complex/splines/truetype-splines.kc index 8613820e6..9552493f6 100644 --- a/src/test/kc/complex/splines/truetype-splines.kc +++ b/src/test/kc/complex/splines/truetype-splines.kc @@ -44,31 +44,6 @@ struct Segment[22] letter_c = { }; void main() { -/* - letter_c[0] = { MOVE_TO, {108,146}, {0,0} }; - letter_c[1] = { SPLINE_TO, {89,182}, {103,169} }; - letter_c[2] = { SPLINE_TO, {59,195}, {75,195} }; - letter_c[3] = { SPLINE_TO, {23,178}, {38,195} }; - letter_c[4] = { SPLINE_TO, {9,132}, {9,161} }; - letter_c[5] = { SPLINE_TO, {25,87}, {9,104} }; - letter_c[6] = { SPLINE_TO, {65,69}, {42,69} }; - letter_c[7] = { SPLINE_TO, {93,79}, {82,69} }; - letter_c[8] = { SPLINE_TO, {105,98}, {105,88} }; - letter_c[9] = { SPLINE_TO, {102,106}, {105,103} }; - letter_c[10] = { SPLINE_TO, {93,109}, {98,109} }; - letter_c[11] = { SPLINE_TO, {81,104}, {85,109} }; - letter_c[12] = { SPLINE_TO, {78,93}, {79,101} }; - letter_c[13] = { SPLINE_TO, {73,82}, {78,86} }; - letter_c[14] = { SPLINE_TO, {61,78}, {69,78} }; - letter_c[15] = { SPLINE_TO, {40,88}, {48,78} }; - letter_c[16] = { SPLINE_TO, {29,121}, {29,100} }; - letter_c[17] = { SPLINE_TO, {40,158}, {29,142} }; - letter_c[18] = { SPLINE_TO, {68,174}, {50,174} }; - letter_c[19] = { SPLINE_TO, {91,166}, {80,174} }; - letter_c[20] = { SPLINE_TO, {104,144}, {98,160} }; - letter_c[21] = { LINE_TO, {108,146}, {0,0} }; - */ - mulf_init(); bitmap_init(BITMAP_GRAPHICS, BITMAP_SCREEN); bitmap_clear(BLACK, WHITE); diff --git a/src/test/ref/coalesce-assignment.asm b/src/test/ref/coalesce-assignment.asm new file mode 100644 index 000000000..9d8384d49 --- /dev/null +++ b/src/test/ref/coalesce-assignment.asm @@ -0,0 +1,34 @@ +// Tests variable coalescing over assignments +.pc = $801 "Basic" +:BasicUpstart(main) +.pc = $80d "Program" +main: { + .label SCREEN = $400 + .label e = 3 + .label a = 2 + ldx #0 + txa + sta a + b1: + ldy #0 + b2: + tya + clc + adc a + sta e + tya + clc + adc a + clc + adc e + sta SCREEN,x + inx + iny + cpy #6 + bne b2 + inc a + lda #6 + cmp a + bne b1 + rts +} diff --git a/src/test/ref/coalesce-assignment.cfg b/src/test/ref/coalesce-assignment.cfg new file mode 100644 index 000000000..f397ee9d2 --- /dev/null +++ b/src/test/ref/coalesce-assignment.cfg @@ -0,0 +1,34 @@ +@begin: scope:[] from + [0] phi() + to:@1 +@1: scope:[] from @begin + [1] phi() + [2] call main + to:@end +@end: scope:[] from @1 + [3] phi() +main: scope:[main] from @1 + [4] phi() + to:main::@1 +main::@1: scope:[main] from main main::@3 + [5] (byte) main::idx#3 ← phi( main/(byte) 0 main::@3/(byte) main::idx#1 ) + [5] (byte) main::a#4 ← phi( main/(byte) 0 main::@3/(byte) main::a#1 ) + to:main::@2 +main::@2: scope:[main] from main::@1 main::@2 + [6] (byte) main::idx#2 ← phi( main::@1/(byte) main::idx#3 main::@2/(byte) main::idx#1 ) + [6] (byte) main::d#0 ← phi( main::@1/(byte) 0 main::@2/(byte) main::b#1 ) + [7] (byte) main::e#0 ← (byte) main::d#0 + (byte) main::a#4 + [8] (byte) main::f#0 ← (byte) main::d#0 + (byte) main::a#4 + [9] (byte) main::g#0 ← (byte) main::e#0 + (byte) main::f#0 + [10] *((const byte*) main::SCREEN#0 + (byte) main::idx#2) ← (byte) main::g#0 + [11] (byte) main::idx#1 ← ++ (byte) main::idx#2 + [12] (byte) main::b#1 ← ++ (byte) main::d#0 + [13] if((byte) main::b#1!=(byte) 6) goto main::@2 + to:main::@3 +main::@3: scope:[main] from main::@2 + [14] (byte) main::a#1 ← ++ (byte) main::a#4 + [15] if((byte) main::a#1!=(byte) 6) goto main::@1 + to:main::@return +main::@return: scope:[main] from main::@3 + [16] return + to:@return diff --git a/src/test/ref/coalesce-assignment.log b/src/test/ref/coalesce-assignment.log new file mode 100644 index 000000000..db8cbd6ba --- /dev/null +++ b/src/test/ref/coalesce-assignment.log @@ -0,0 +1,636 @@ +Culled Empty Block (label) main::@4 + +CONTROL FLOW GRAPH SSA +@begin: scope:[] from + to:@1 +main: scope:[main] from @1 + (byte*) main::SCREEN#0 ← ((byte*)) (number) $400 + (byte) main::idx#0 ← (number) 0 + (byte) main::a#0 ← (byte) 0 + to:main::@1 +main::@1: scope:[main] from main main::@3 + (byte) main::idx#3 ← phi( main/(byte) main::idx#0 main::@3/(byte) main::idx#4 ) + (byte) main::a#4 ← phi( main/(byte) main::a#0 main::@3/(byte) main::a#1 ) + (byte) main::b#0 ← (byte) 0 + to:main::@2 +main::@2: scope:[main] from main::@1 main::@2 + (byte) main::idx#2 ← phi( main::@1/(byte) main::idx#3 main::@2/(byte) main::idx#1 ) + (byte) main::b#2 ← phi( main::@1/(byte) main::b#0 main::@2/(byte) main::b#1 ) + (byte) main::a#2 ← phi( main::@1/(byte) main::a#4 main::@2/(byte) main::a#2 ) + (byte) main::c#0 ← (byte) main::a#2 + (byte) main::d#0 ← (byte) main::b#2 + (byte~) main::$0 ← (byte) main::b#2 + (byte) main::c#0 + (byte) main::e#0 ← (byte~) main::$0 + (byte~) main::$1 ← (byte) main::d#0 + (byte) main::a#2 + (byte) main::f#0 ← (byte~) main::$1 + (byte~) main::$2 ← (byte) main::e#0 + (byte) main::f#0 + (byte) main::g#0 ← (byte~) main::$2 + *((byte*) main::SCREEN#0 + (byte) main::idx#2) ← (byte) main::g#0 + (byte) main::idx#1 ← ++ (byte) main::idx#2 + (byte) main::b#1 ← (byte) main::b#2 + rangenext(0,5) + (bool~) main::$3 ← (byte) main::b#1 != rangelast(0,5) + if((bool~) main::$3) goto main::@2 + to:main::@3 +main::@3: scope:[main] from main::@2 + (byte) main::idx#4 ← phi( main::@2/(byte) main::idx#1 ) + (byte) main::a#3 ← phi( main::@2/(byte) main::a#2 ) + (byte) main::a#1 ← (byte) main::a#3 + rangenext(0,5) + (bool~) main::$4 ← (byte) main::a#1 != rangelast(0,5) + if((bool~) main::$4) goto main::@1 + to:main::@return +main::@return: scope:[main] from main::@3 + return + to:@return +@1: scope:[] from @begin + call main + to:@2 +@2: scope:[] from @1 + to:@end +@end: scope:[] from @2 + +SYMBOL TABLE SSA +(label) @1 +(label) @2 +(label) @begin +(label) @end +(void()) main() +(byte~) main::$0 +(byte~) main::$1 +(byte~) main::$2 +(bool~) main::$3 +(bool~) main::$4 +(label) main::@1 +(label) main::@2 +(label) main::@3 +(label) main::@return +(byte*) main::SCREEN +(byte*) main::SCREEN#0 +(byte) main::a +(byte) main::a#0 +(byte) main::a#1 +(byte) main::a#2 +(byte) main::a#3 +(byte) main::a#4 +(byte) main::b +(byte) main::b#0 +(byte) main::b#1 +(byte) main::b#2 +(byte) main::c +(byte) main::c#0 +(byte) main::d +(byte) main::d#0 +(byte) main::e +(byte) main::e#0 +(byte) main::f +(byte) main::f#0 +(byte) main::g +(byte) main::g#0 +(byte) main::idx +(byte) main::idx#0 +(byte) main::idx#1 +(byte) main::idx#2 +(byte) main::idx#3 +(byte) main::idx#4 + +Adding number conversion cast (unumber) 0 in (byte) main::idx#0 ← (number) 0 +Successful SSA optimization PassNAddNumberTypeConversions +Inlining cast (byte*) main::SCREEN#0 ← (byte*)(number) $400 +Inlining cast (byte) main::idx#0 ← (unumber)(number) 0 +Successful SSA optimization Pass2InlineCast +Simplifying constant pointer cast (byte*) 1024 +Simplifying constant integer cast 0 +Successful SSA optimization PassNCastSimplification +Finalized unsigned number type (byte) 0 +Successful SSA optimization PassNFinalizeNumberTypeConversions +Alias (byte) main::a#2 = (byte) main::c#0 (byte) main::a#3 +Alias (byte) main::d#0 = (byte) main::b#2 +Alias (byte) main::e#0 = (byte~) main::$0 +Alias (byte) main::f#0 = (byte~) main::$1 +Alias (byte) main::g#0 = (byte~) main::$2 +Alias (byte) main::idx#1 = (byte) main::idx#4 +Successful SSA optimization Pass2AliasElimination +Identical Phi Values (byte) main::a#2 (byte) main::a#4 +Successful SSA optimization Pass2IdenticalPhiElimination +Simple Condition (bool~) main::$3 [18] if((byte) main::b#1!=rangelast(0,5)) goto main::@2 +Simple Condition (bool~) main::$4 [22] if((byte) main::a#1!=rangelast(0,5)) goto main::@1 +Successful SSA optimization Pass2ConditionalJumpSimplification +Constant (const byte*) main::SCREEN#0 = (byte*) 1024 +Constant (const byte) main::idx#0 = 0 +Constant (const byte) main::a#0 = 0 +Constant (const byte) main::b#0 = 0 +Successful SSA optimization Pass2ConstantIdentification +Resolved ranged next value [16] main::b#1 ← ++ main::d#0 to ++ +Resolved ranged comparison value [18] if(main::b#1!=rangelast(0,5)) goto main::@2 to (number) 6 +Resolved ranged next value [20] main::a#1 ← ++ main::a#4 to ++ +Resolved ranged comparison value [22] if(main::a#1!=rangelast(0,5)) goto main::@1 to (number) 6 +Adding number conversion cast (unumber) 6 in if((byte) main::b#1!=(number) 6) goto main::@2 +Adding number conversion cast (unumber) 6 in if((byte) main::a#1!=(number) 6) goto main::@1 +Successful SSA optimization PassNAddNumberTypeConversions +Simplifying constant integer cast 6 +Simplifying constant integer cast 6 +Successful SSA optimization PassNCastSimplification +Finalized unsigned number type (byte) 6 +Finalized unsigned number type (byte) 6 +Successful SSA optimization PassNFinalizeNumberTypeConversions +Inlining constant with var siblings (const byte) main::idx#0 +Inlining constant with var siblings (const byte) main::a#0 +Inlining constant with var siblings (const byte) main::b#0 +Constant inlined main::a#0 = (byte) 0 +Constant inlined main::idx#0 = (byte) 0 +Constant inlined main::b#0 = (byte) 0 +Successful SSA optimization Pass2ConstantInlining +Added new block during phi lifting main::@5(between main::@3 and main::@1) +Added new block during phi lifting main::@6(between main::@2 and main::@2) +Adding NOP phi() at start of @begin +Adding NOP phi() at start of @1 +Adding NOP phi() at start of @2 +Adding NOP phi() at start of @end +Adding NOP phi() at start of main +CALL GRAPH +Calls in [] to main:2 + +Created 4 initial phi equivalence classes +Coalesced [7] main::idx#6 ← main::idx#3 +Coalesced [19] main::a#5 ← main::a#1 +Coalesced [20] main::idx#5 ← main::idx#1 +Coalesced [21] main::d#1 ← main::b#1 +Coalesced (already) [22] main::idx#7 ← main::idx#1 +Coalesced down to 3 phi equivalence classes +Culled Empty Block (label) @2 +Culled Empty Block (label) main::@5 +Culled Empty Block (label) main::@6 +Adding NOP phi() at start of @begin +Adding NOP phi() at start of @1 +Adding NOP phi() at start of @end +Adding NOP phi() at start of main + +FINAL CONTROL FLOW GRAPH +@begin: scope:[] from + [0] phi() + to:@1 +@1: scope:[] from @begin + [1] phi() + [2] call main + to:@end +@end: scope:[] from @1 + [3] phi() +main: scope:[main] from @1 + [4] phi() + to:main::@1 +main::@1: scope:[main] from main main::@3 + [5] (byte) main::idx#3 ← phi( main/(byte) 0 main::@3/(byte) main::idx#1 ) + [5] (byte) main::a#4 ← phi( main/(byte) 0 main::@3/(byte) main::a#1 ) + to:main::@2 +main::@2: scope:[main] from main::@1 main::@2 + [6] (byte) main::idx#2 ← phi( main::@1/(byte) main::idx#3 main::@2/(byte) main::idx#1 ) + [6] (byte) main::d#0 ← phi( main::@1/(byte) 0 main::@2/(byte) main::b#1 ) + [7] (byte) main::e#0 ← (byte) main::d#0 + (byte) main::a#4 + [8] (byte) main::f#0 ← (byte) main::d#0 + (byte) main::a#4 + [9] (byte) main::g#0 ← (byte) main::e#0 + (byte) main::f#0 + [10] *((const byte*) main::SCREEN#0 + (byte) main::idx#2) ← (byte) main::g#0 + [11] (byte) main::idx#1 ← ++ (byte) main::idx#2 + [12] (byte) main::b#1 ← ++ (byte) main::d#0 + [13] if((byte) main::b#1!=(byte) 6) goto main::@2 + to:main::@3 +main::@3: scope:[main] from main::@2 + [14] (byte) main::a#1 ← ++ (byte) main::a#4 + [15] if((byte) main::a#1!=(byte) 6) goto main::@1 + to:main::@return +main::@return: scope:[main] from main::@3 + [16] return + to:@return + + +VARIABLE REGISTER WEIGHTS +(void()) main() +(byte*) main::SCREEN +(byte) main::a +(byte) main::a#1 16.5 +(byte) main::a#4 24.888888888888886 +(byte) main::b +(byte) main::b#1 151.5 +(byte) main::c +(byte) main::d +(byte) main::d#0 67.33333333333333 +(byte) main::e +(byte) main::e#0 101.0 +(byte) main::f +(byte) main::f#0 202.0 +(byte) main::g +(byte) main::g#0 202.0 +(byte) main::idx +(byte) main::idx#1 42.599999999999994 +(byte) main::idx#2 62.8 +(byte) main::idx#3 22.0 + +Initial phi equivalence classes +[ main::a#4 main::a#1 ] +[ main::d#0 main::b#1 ] +[ main::idx#2 main::idx#3 main::idx#1 ] +Added variable main::e#0 to zero page equivalence class [ main::e#0 ] +Added variable main::f#0 to zero page equivalence class [ main::f#0 ] +Added variable main::g#0 to zero page equivalence class [ main::g#0 ] +Complete equivalence classes +[ main::a#4 main::a#1 ] +[ main::d#0 main::b#1 ] +[ main::idx#2 main::idx#3 main::idx#1 ] +[ main::e#0 ] +[ main::f#0 ] +[ main::g#0 ] +Allocated zp ZP_BYTE:2 [ main::a#4 main::a#1 ] +Allocated zp ZP_BYTE:3 [ main::d#0 main::b#1 ] +Allocated zp ZP_BYTE:4 [ main::idx#2 main::idx#3 main::idx#1 ] +Allocated zp ZP_BYTE:5 [ main::e#0 ] +Allocated zp ZP_BYTE:6 [ main::f#0 ] +Allocated zp ZP_BYTE:7 [ main::g#0 ] + +INITIAL ASM +Target platform is c64basic + // File Comments +// Tests variable coalescing over assignments + // Upstart +.pc = $801 "Basic" +:BasicUpstart(bbegin) +.pc = $80d "Program" + // Global Constants & labels + // @begin +bbegin: + // [1] phi from @begin to @1 [phi:@begin->@1] +b1_from_bbegin: + jmp b1 + // @1 +b1: + // [2] call main + // [4] phi from @1 to main [phi:@1->main] +main_from_b1: + jsr main + // [3] phi from @1 to @end [phi:@1->@end] +bend_from_b1: + jmp bend + // @end +bend: + // main +main: { + .label SCREEN = $400 + .label d = 3 + .label e = 5 + .label f = 6 + .label g = 7 + .label idx = 4 + .label b = 3 + .label a = 2 + // [5] phi from main to main::@1 [phi:main->main::@1] + b1_from_main: + // [5] phi (byte) main::idx#3 = (byte) 0 [phi:main->main::@1#0] -- vbuz1=vbuc1 + lda #0 + sta idx + // [5] phi (byte) main::a#4 = (byte) 0 [phi:main->main::@1#1] -- vbuz1=vbuc1 + lda #0 + sta a + jmp b1 + // [5] phi from main::@3 to main::@1 [phi:main::@3->main::@1] + b1_from_b3: + // [5] phi (byte) main::idx#3 = (byte) main::idx#1 [phi:main::@3->main::@1#0] -- register_copy + // [5] phi (byte) main::a#4 = (byte) main::a#1 [phi:main::@3->main::@1#1] -- register_copy + jmp b1 + // main::@1 + b1: + // [6] phi from main::@1 to main::@2 [phi:main::@1->main::@2] + b2_from_b1: + // [6] phi (byte) main::idx#2 = (byte) main::idx#3 [phi:main::@1->main::@2#0] -- register_copy + // [6] phi (byte) main::d#0 = (byte) 0 [phi:main::@1->main::@2#1] -- vbuz1=vbuc1 + lda #0 + sta d + jmp b2 + // [6] phi from main::@2 to main::@2 [phi:main::@2->main::@2] + b2_from_b2: + // [6] phi (byte) main::idx#2 = (byte) main::idx#1 [phi:main::@2->main::@2#0] -- register_copy + // [6] phi (byte) main::d#0 = (byte) main::b#1 [phi:main::@2->main::@2#1] -- register_copy + jmp b2 + // main::@2 + b2: + // [7] (byte) main::e#0 ← (byte) main::d#0 + (byte) main::a#4 -- vbuz1=vbuz2_plus_vbuz3 + lda d + clc + adc a + sta e + // [8] (byte) main::f#0 ← (byte) main::d#0 + (byte) main::a#4 -- vbuz1=vbuz2_plus_vbuz3 + lda d + clc + adc a + sta f + // [9] (byte) main::g#0 ← (byte) main::e#0 + (byte) main::f#0 -- vbuz1=vbuz2_plus_vbuz3 + lda e + clc + adc f + sta g + // [10] *((const byte*) main::SCREEN#0 + (byte) main::idx#2) ← (byte) main::g#0 -- pbuc1_derefidx_vbuz1=vbuz2 + lda g + ldy idx + sta SCREEN,y + // [11] (byte) main::idx#1 ← ++ (byte) main::idx#2 -- vbuz1=_inc_vbuz1 + inc idx + // [12] (byte) main::b#1 ← ++ (byte) main::d#0 -- vbuz1=_inc_vbuz1 + inc b + // [13] if((byte) main::b#1!=(byte) 6) goto main::@2 -- vbuz1_neq_vbuc1_then_la1 + lda #6 + cmp b + bne b2_from_b2 + jmp b3 + // main::@3 + b3: + // [14] (byte) main::a#1 ← ++ (byte) main::a#4 -- vbuz1=_inc_vbuz1 + inc a + // [15] if((byte) main::a#1!=(byte) 6) goto main::@1 -- vbuz1_neq_vbuc1_then_la1 + lda #6 + cmp a + bne b1_from_b3 + jmp breturn + // main::@return + breturn: + // [16] return + rts +} + // File Data + +REGISTER UPLIFT POTENTIAL REGISTERS +Statement [7] (byte) main::e#0 ← (byte) main::d#0 + (byte) main::a#4 [ main::a#4 main::d#0 main::idx#2 main::e#0 ] ( main:2 [ main::a#4 main::d#0 main::idx#2 main::e#0 ] ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:2 [ main::a#4 main::a#1 ] +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:3 [ main::d#0 main::b#1 ] +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:4 [ main::idx#2 main::idx#3 main::idx#1 ] +Statement [8] (byte) main::f#0 ← (byte) main::d#0 + (byte) main::a#4 [ main::a#4 main::d#0 main::idx#2 main::e#0 main::f#0 ] ( main:2 [ main::a#4 main::d#0 main::idx#2 main::e#0 main::f#0 ] ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp ZP_BYTE:5 [ main::e#0 ] +Statement [9] (byte) main::g#0 ← (byte) main::e#0 + (byte) main::f#0 [ main::a#4 main::d#0 main::idx#2 main::g#0 ] ( main:2 [ main::a#4 main::d#0 main::idx#2 main::g#0 ] ) always clobbers reg byte a +Statement [7] (byte) main::e#0 ← (byte) main::d#0 + (byte) main::a#4 [ main::a#4 main::d#0 main::idx#2 main::e#0 ] ( main:2 [ main::a#4 main::d#0 main::idx#2 main::e#0 ] ) always clobbers reg byte a +Statement [8] (byte) main::f#0 ← (byte) main::d#0 + (byte) main::a#4 [ main::a#4 main::d#0 main::idx#2 main::e#0 main::f#0 ] ( main:2 [ main::a#4 main::d#0 main::idx#2 main::e#0 main::f#0 ] ) always clobbers reg byte a +Statement [9] (byte) main::g#0 ← (byte) main::e#0 + (byte) main::f#0 [ main::a#4 main::d#0 main::idx#2 main::g#0 ] ( main:2 [ main::a#4 main::d#0 main::idx#2 main::g#0 ] ) always clobbers reg byte a +Potential registers zp ZP_BYTE:2 [ main::a#4 main::a#1 ] : zp ZP_BYTE:2 , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:3 [ main::d#0 main::b#1 ] : zp ZP_BYTE:3 , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:4 [ main::idx#2 main::idx#3 main::idx#1 ] : zp ZP_BYTE:4 , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:5 [ main::e#0 ] : zp ZP_BYTE:5 , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:6 [ main::f#0 ] : zp ZP_BYTE:6 , reg byte a , reg byte x , reg byte y , +Potential registers zp ZP_BYTE:7 [ main::g#0 ] : zp ZP_BYTE:7 , reg byte a , reg byte x , reg byte y , + +REGISTER UPLIFT SCOPES +Uplift Scope [main] 218.83: zp ZP_BYTE:3 [ main::d#0 main::b#1 ] 202: zp ZP_BYTE:6 [ main::f#0 ] 202: zp ZP_BYTE:7 [ main::g#0 ] 127.4: zp ZP_BYTE:4 [ main::idx#2 main::idx#3 main::idx#1 ] 101: zp ZP_BYTE:5 [ main::e#0 ] 41.39: zp ZP_BYTE:2 [ main::a#4 main::a#1 ] +Uplift Scope [] + +Uplifting [main] best 4953 combination reg byte y [ main::d#0 main::b#1 ] reg byte a [ main::f#0 ] reg byte a [ main::g#0 ] reg byte x [ main::idx#2 main::idx#3 main::idx#1 ] zp ZP_BYTE:5 [ main::e#0 ] zp ZP_BYTE:2 [ main::a#4 main::a#1 ] +Limited combination testing to 100 combinations of 1296 possible. +Uplifting [] best 4953 combination +Attempting to uplift remaining variables inzp ZP_BYTE:5 [ main::e#0 ] +Uplifting [main] best 4953 combination zp ZP_BYTE:5 [ main::e#0 ] +Attempting to uplift remaining variables inzp ZP_BYTE:2 [ main::a#4 main::a#1 ] +Uplifting [main] best 4953 combination zp ZP_BYTE:2 [ main::a#4 main::a#1 ] +Allocated (was zp ZP_BYTE:5) zp ZP_BYTE:3 [ main::e#0 ] + +ASSEMBLER BEFORE OPTIMIZATION + // File Comments +// Tests variable coalescing over assignments + // Upstart +.pc = $801 "Basic" +:BasicUpstart(bbegin) +.pc = $80d "Program" + // Global Constants & labels + // @begin +bbegin: + // [1] phi from @begin to @1 [phi:@begin->@1] +b1_from_bbegin: + jmp b1 + // @1 +b1: + // [2] call main + // [4] phi from @1 to main [phi:@1->main] +main_from_b1: + jsr main + // [3] phi from @1 to @end [phi:@1->@end] +bend_from_b1: + jmp bend + // @end +bend: + // main +main: { + .label SCREEN = $400 + .label e = 3 + .label a = 2 + // [5] phi from main to main::@1 [phi:main->main::@1] + b1_from_main: + // [5] phi (byte) main::idx#3 = (byte) 0 [phi:main->main::@1#0] -- vbuxx=vbuc1 + ldx #0 + // [5] phi (byte) main::a#4 = (byte) 0 [phi:main->main::@1#1] -- vbuz1=vbuc1 + lda #0 + sta a + jmp b1 + // [5] phi from main::@3 to main::@1 [phi:main::@3->main::@1] + b1_from_b3: + // [5] phi (byte) main::idx#3 = (byte) main::idx#1 [phi:main::@3->main::@1#0] -- register_copy + // [5] phi (byte) main::a#4 = (byte) main::a#1 [phi:main::@3->main::@1#1] -- register_copy + jmp b1 + // main::@1 + b1: + // [6] phi from main::@1 to main::@2 [phi:main::@1->main::@2] + b2_from_b1: + // [6] phi (byte) main::idx#2 = (byte) main::idx#3 [phi:main::@1->main::@2#0] -- register_copy + // [6] phi (byte) main::d#0 = (byte) 0 [phi:main::@1->main::@2#1] -- vbuyy=vbuc1 + ldy #0 + jmp b2 + // [6] phi from main::@2 to main::@2 [phi:main::@2->main::@2] + b2_from_b2: + // [6] phi (byte) main::idx#2 = (byte) main::idx#1 [phi:main::@2->main::@2#0] -- register_copy + // [6] phi (byte) main::d#0 = (byte) main::b#1 [phi:main::@2->main::@2#1] -- register_copy + jmp b2 + // main::@2 + b2: + // [7] (byte) main::e#0 ← (byte) main::d#0 + (byte) main::a#4 -- vbuz1=vbuyy_plus_vbuz2 + tya + clc + adc a + sta e + // [8] (byte) main::f#0 ← (byte) main::d#0 + (byte) main::a#4 -- vbuaa=vbuyy_plus_vbuz1 + tya + clc + adc a + // [9] (byte) main::g#0 ← (byte) main::e#0 + (byte) main::f#0 -- vbuaa=vbuz1_plus_vbuaa + clc + adc e + // [10] *((const byte*) main::SCREEN#0 + (byte) main::idx#2) ← (byte) main::g#0 -- pbuc1_derefidx_vbuxx=vbuaa + sta SCREEN,x + // [11] (byte) main::idx#1 ← ++ (byte) main::idx#2 -- vbuxx=_inc_vbuxx + inx + // [12] (byte) main::b#1 ← ++ (byte) main::d#0 -- vbuyy=_inc_vbuyy + iny + // [13] if((byte) main::b#1!=(byte) 6) goto main::@2 -- vbuyy_neq_vbuc1_then_la1 + cpy #6 + bne b2_from_b2 + jmp b3 + // main::@3 + b3: + // [14] (byte) main::a#1 ← ++ (byte) main::a#4 -- vbuz1=_inc_vbuz1 + inc a + // [15] if((byte) main::a#1!=(byte) 6) goto main::@1 -- vbuz1_neq_vbuc1_then_la1 + lda #6 + cmp a + bne b1_from_b3 + jmp breturn + // main::@return + breturn: + // [16] return + rts +} + // File Data + +ASSEMBLER OPTIMIZATIONS +Removing instruction jmp b1 +Removing instruction jmp bend +Removing instruction jmp b1 +Removing instruction jmp b2 +Removing instruction jmp b3 +Removing instruction jmp breturn +Succesful ASM optimization Pass5NextJumpElimination +Replacing instruction lda #0 with TXA +Replacing label b2_from_b2 with b2 +Replacing label b1_from_b3 with b1 +Removing instruction b1_from_bbegin: +Removing instruction b1: +Removing instruction main_from_b1: +Removing instruction bend_from_b1: +Removing instruction b1_from_b3: +Removing instruction b2_from_b1: +Removing instruction b2_from_b2: +Succesful ASM optimization Pass5RedundantLabelElimination +Removing instruction bend: +Removing instruction b1_from_main: +Removing instruction b3: +Removing instruction breturn: +Succesful ASM optimization Pass5UnusedLabelElimination +Updating BasicUpstart to call main directly +Removing instruction jsr main +Succesful ASM optimization Pass5SkipBegin +Removing instruction jmp b1 +Removing instruction jmp b2 +Succesful ASM optimization Pass5NextJumpElimination +Removing instruction bbegin: +Succesful ASM optimization Pass5UnusedLabelElimination + +FINAL SYMBOL TABLE +(label) @1 +(label) @begin +(label) @end +(void()) main() +(label) main::@1 +(label) main::@2 +(label) main::@3 +(label) main::@return +(byte*) main::SCREEN +(const byte*) main::SCREEN#0 SCREEN = (byte*) 1024 +(byte) main::a +(byte) main::a#1 a zp ZP_BYTE:2 16.5 +(byte) main::a#4 a zp ZP_BYTE:2 24.888888888888886 +(byte) main::b +(byte) main::b#1 reg byte y 151.5 +(byte) main::c +(byte) main::d +(byte) main::d#0 reg byte y 67.33333333333333 +(byte) main::e +(byte) main::e#0 e zp ZP_BYTE:3 101.0 +(byte) main::f +(byte) main::f#0 reg byte a 202.0 +(byte) main::g +(byte) main::g#0 reg byte a 202.0 +(byte) main::idx +(byte) main::idx#1 reg byte x 42.599999999999994 +(byte) main::idx#2 reg byte x 62.8 +(byte) main::idx#3 reg byte x 22.0 + +zp ZP_BYTE:2 [ main::a#4 main::a#1 ] +reg byte y [ main::d#0 main::b#1 ] +reg byte x [ main::idx#2 main::idx#3 main::idx#1 ] +zp ZP_BYTE:3 [ main::e#0 ] +reg byte a [ main::f#0 ] +reg byte a [ main::g#0 ] + + +FINAL ASSEMBLER +Score: 3951 + + // File Comments +// Tests variable coalescing over assignments + // Upstart +.pc = $801 "Basic" +:BasicUpstart(main) +.pc = $80d "Program" + // Global Constants & labels + // @begin + // [1] phi from @begin to @1 [phi:@begin->@1] + // @1 + // [2] call main + // [4] phi from @1 to main [phi:@1->main] + // [3] phi from @1 to @end [phi:@1->@end] + // @end + // main +main: { + .label SCREEN = $400 + .label e = 3 + .label a = 2 + // [5] phi from main to main::@1 [phi:main->main::@1] + // [5] phi (byte) main::idx#3 = (byte) 0 [phi:main->main::@1#0] -- vbuxx=vbuc1 + ldx #0 + // [5] phi (byte) main::a#4 = (byte) 0 [phi:main->main::@1#1] -- vbuz1=vbuc1 + txa + sta a + // [5] phi from main::@3 to main::@1 [phi:main::@3->main::@1] + // [5] phi (byte) main::idx#3 = (byte) main::idx#1 [phi:main::@3->main::@1#0] -- register_copy + // [5] phi (byte) main::a#4 = (byte) main::a#1 [phi:main::@3->main::@1#1] -- register_copy + // main::@1 + b1: + // [6] phi from main::@1 to main::@2 [phi:main::@1->main::@2] + // [6] phi (byte) main::idx#2 = (byte) main::idx#3 [phi:main::@1->main::@2#0] -- register_copy + // [6] phi (byte) main::d#0 = (byte) 0 [phi:main::@1->main::@2#1] -- vbuyy=vbuc1 + ldy #0 + // [6] phi from main::@2 to main::@2 [phi:main::@2->main::@2] + // [6] phi (byte) main::idx#2 = (byte) main::idx#1 [phi:main::@2->main::@2#0] -- register_copy + // [6] phi (byte) main::d#0 = (byte) main::b#1 [phi:main::@2->main::@2#1] -- register_copy + // main::@2 + b2: + // e = b+c + // [7] (byte) main::e#0 ← (byte) main::d#0 + (byte) main::a#4 -- vbuz1=vbuyy_plus_vbuz2 + tya + clc + adc a + sta e + // f = d+a + // [8] (byte) main::f#0 ← (byte) main::d#0 + (byte) main::a#4 -- vbuaa=vbuyy_plus_vbuz1 + tya + clc + adc a + // g = e+f + // [9] (byte) main::g#0 ← (byte) main::e#0 + (byte) main::f#0 -- vbuaa=vbuz1_plus_vbuaa + clc + adc e + // SCREEN[idx++] = g + // [10] *((const byte*) main::SCREEN#0 + (byte) main::idx#2) ← (byte) main::g#0 -- pbuc1_derefidx_vbuxx=vbuaa + sta SCREEN,x + // SCREEN[idx++] = g; + // [11] (byte) main::idx#1 ← ++ (byte) main::idx#2 -- vbuxx=_inc_vbuxx + inx + // for( byte b: 0..5) + // [12] (byte) main::b#1 ← ++ (byte) main::d#0 -- vbuyy=_inc_vbuyy + iny + // [13] if((byte) main::b#1!=(byte) 6) goto main::@2 -- vbuyy_neq_vbuc1_then_la1 + cpy #6 + bne b2 + // main::@3 + // for( byte a: 0..5) + // [14] (byte) main::a#1 ← ++ (byte) main::a#4 -- vbuz1=_inc_vbuz1 + inc a + // [15] if((byte) main::a#1!=(byte) 6) goto main::@1 -- vbuz1_neq_vbuc1_then_la1 + lda #6 + cmp a + bne b1 + // main::@return + // } + // [16] return + rts +} + // File Data + diff --git a/src/test/ref/coalesce-assignment.sym b/src/test/ref/coalesce-assignment.sym new file mode 100644 index 000000000..3188483ac --- /dev/null +++ b/src/test/ref/coalesce-assignment.sym @@ -0,0 +1,35 @@ +(label) @1 +(label) @begin +(label) @end +(void()) main() +(label) main::@1 +(label) main::@2 +(label) main::@3 +(label) main::@return +(byte*) main::SCREEN +(const byte*) main::SCREEN#0 SCREEN = (byte*) 1024 +(byte) main::a +(byte) main::a#1 a zp ZP_BYTE:2 16.5 +(byte) main::a#4 a zp ZP_BYTE:2 24.888888888888886 +(byte) main::b +(byte) main::b#1 reg byte y 151.5 +(byte) main::c +(byte) main::d +(byte) main::d#0 reg byte y 67.33333333333333 +(byte) main::e +(byte) main::e#0 e zp ZP_BYTE:3 101.0 +(byte) main::f +(byte) main::f#0 reg byte a 202.0 +(byte) main::g +(byte) main::g#0 reg byte a 202.0 +(byte) main::idx +(byte) main::idx#1 reg byte x 42.599999999999994 +(byte) main::idx#2 reg byte x 62.8 +(byte) main::idx#3 reg byte x 22.0 + +zp ZP_BYTE:2 [ main::a#4 main::a#1 ] +reg byte y [ main::d#0 main::b#1 ] +reg byte x [ main::idx#2 main::idx#3 main::idx#1 ] +zp ZP_BYTE:3 [ main::e#0 ] +reg byte a [ main::f#0 ] +reg byte a [ main::g#0 ]