diff --git a/src/main/java/dk/camelot64/kickc/model/Directive.java b/src/main/java/dk/camelot64/kickc/model/Directive.java index 7c646c7d8..c60b74c6d 100644 --- a/src/main/java/dk/camelot64/kickc/model/Directive.java +++ b/src/main/java/dk/camelot64/kickc/model/Directive.java @@ -28,14 +28,35 @@ public interface Directive { class Inline implements Directive { } - /** Variable declared volatile. */ + /** Variable declared volatile or __notvolatile. */ class Volatile implements Directive { + + /** True if declared volatile, false if declared __notvolatile */ + boolean isVolatile; + + public Volatile(boolean isVolatile) { + this.isVolatile = isVolatile; + } + } /** Variable declared as export. */ class Export implements Directive { } + /** Variable declared SSA or not SSA . */ + class FormSsa implements Directive { + + /** True if declared SSA false if declared NOT SSA */ + boolean ssa; + + public FormSsa(boolean ssa) { + this.ssa = ssa; + } + + } + + /** Function declared interrupt. */ class Interrupt implements Directive { public Procedure.InterruptType interruptType; @@ -59,7 +80,7 @@ public interface Directive { /** Variable register or __notregister directive . */ class Register implements Directive { - /** true if the directive is a register directive. false if it is a notregister directive. */ + /** true if the directive is a register directive. false if it is a __notregister directive. */ boolean isRegister; /** Name of register to use for the variable (if named) */ diff --git a/src/main/java/dk/camelot64/kickc/model/DirectiveParserContext.java b/src/main/java/dk/camelot64/kickc/model/DirectiveParserContext.java index 2f69e7e66..d72c6eb76 100644 --- a/src/main/java/dk/camelot64/kickc/model/DirectiveParserContext.java +++ b/src/main/java/dk/camelot64/kickc/model/DirectiveParserContext.java @@ -161,9 +161,18 @@ public class DirectiveParserContext { lValue.setMemoryArea(SymbolVariable.MemoryArea.MAIN_MEMORY); } + Directive.FormSsa ssaDirective = findDirective(Directive.FormSsa.class, sourceDirectives, directiveScope, directiveType); + if(ssaDirective != null) { + if(ssaDirective.ssa) { + lValue.setStorageStrategy(SymbolVariable.StorageStrategy.PHI_MASTER); + } else { + lValue.setStorageStrategy(SymbolVariable.StorageStrategy.LOAD_STORE); + } + } + Directive.Volatile volatileDirective = findDirective(Directive.Volatile.class, sourceDirectives, directiveScope, directiveType); if(volatileDirective != null) { - lValue.setDeclaredVolatile(true); + lValue.setDeclaredVolatile(volatileDirective.isVolatile); } Directive.Export exportDirective = findDirective(Directive.Export.class, sourceDirectives, directiveScope, directiveType); diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 index e4eddaf7a..7ed9044ef 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 @@ -82,8 +82,11 @@ NOTREGISTER: '__notregister' ; ADDRESS: '__address' ; ADDRESS_ZEROPAGE: '__zp' ; ADDRESS_MAINMEM: '__mem' ; +FORM_SSA: '__ssa' ; +FORM_NOTSSA: '__notssa' ; INLINE: 'inline' ; VOLATILE: 'volatile' ; +NOTVOLATILE: '__notvolatile' ; INTERRUPT: 'interrupt' ; CALLING: 'calling'; CALLINGCONVENTION: '__stackcall' | '__phicall' ; diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java index 1593755d9..51abf5736 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java @@ -1,4 +1,4 @@ -// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickCLexer.g4 by ANTLR 4.7.2 +// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 by ANTLR 4.7 package dk.camelot64.kickc.parser; @@ -13,7 +13,7 @@ import org.antlr.v4.runtime.misc.*; @SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast"}) public class KickCLexer extends Lexer { - static { RuntimeMetaData.checkVersion("4.7.2", RuntimeMetaData.VERSION); } + static { RuntimeMetaData.checkVersion("4.7", RuntimeMetaData.VERSION); } protected static final DFA[] _decisionToDFA; protected static final PredictionContextCache _sharedContextCache = @@ -28,23 +28,23 @@ public class KickCLexer extends Lexer { ASSIGN_COMPOUND=37, IMPORT=38, TYPEDEF=39, PRAGMA=40, RESERVE=41, PC=42, TARGET=43, LINK=44, CPU=45, CODESEG=46, DATASEG=47, ENCODING=48, CONST=49, EXTERN=50, EXPORT=51, ALIGN=52, REGISTER=53, NOTREGISTER=54, ADDRESS=55, - ADDRESS_ZEROPAGE=56, ADDRESS_MAINMEM=57, INLINE=58, VOLATILE=59, INTERRUPT=60, - CALLING=61, CALLINGCONVENTION=62, IF=63, ELSE=64, WHILE=65, DO=66, FOR=67, - SWITCH=68, RETURN=69, BREAK=70, CONTINUE=71, ASM=72, DEFAULT=73, CASE=74, - STRUCT=75, ENUM=76, SIZEOF=77, TYPEID=78, KICKASM=79, RESOURCE=80, USES=81, - CLOBBERS=82, BYTES=83, CYCLES=84, LOGIC_NOT=85, SIGNEDNESS=86, SIMPLETYPE=87, - BOOLEAN=88, KICKASM_BODY=89, STRING=90, CHAR=91, NUMBER=92, NUMFLOAT=93, - BINFLOAT=94, DECFLOAT=95, HEXFLOAT=96, NUMINT=97, BININTEGER=98, DECINTEGER=99, - HEXINTEGER=100, NAME=101, WS=102, COMMENT_LINE=103, COMMENT_BLOCK=104, - ASM_BYTE=105, ASM_MNEMONIC=106, ASM_IMM=107, ASM_COLON=108, ASM_COMMA=109, - ASM_PAR_BEGIN=110, ASM_PAR_END=111, ASM_BRACKET_BEGIN=112, ASM_BRACKET_END=113, - ASM_DOT=114, ASM_SHIFT_LEFT=115, ASM_SHIFT_RIGHT=116, ASM_PLUS=117, ASM_MINUS=118, - ASM_LESS_THAN=119, ASM_GREATER_THAN=120, ASM_MULTIPLY=121, ASM_DIVIDE=122, - ASM_CURLY_BEGIN=123, ASM_CURLY_END=124, ASM_NUMBER=125, ASM_NUMFLOAT=126, - ASM_BINFLOAT=127, ASM_DECFLOAT=128, ASM_HEXFLOAT=129, ASM_NUMINT=130, - ASM_BININTEGER=131, ASM_DECINTEGER=132, ASM_HEXINTEGER=133, ASM_CHAR=134, - ASM_MULTI_REL=135, ASM_MULTI_NAME=136, ASM_NAME=137, ASM_WS=138, ASM_COMMENT_LINE=139, - ASM_COMMENT_BLOCK=140; + ADDRESS_ZEROPAGE=56, ADDRESS_MAINMEM=57, FORM_SSA=58, FORM_NOTSSA=59, + INLINE=60, VOLATILE=61, NOTVOLATILE=62, INTERRUPT=63, CALLING=64, CALLINGCONVENTION=65, + IF=66, ELSE=67, WHILE=68, DO=69, FOR=70, SWITCH=71, RETURN=72, BREAK=73, + CONTINUE=74, ASM=75, DEFAULT=76, CASE=77, STRUCT=78, ENUM=79, SIZEOF=80, + TYPEID=81, KICKASM=82, RESOURCE=83, USES=84, CLOBBERS=85, BYTES=86, CYCLES=87, + LOGIC_NOT=88, SIGNEDNESS=89, SIMPLETYPE=90, BOOLEAN=91, KICKASM_BODY=92, + STRING=93, CHAR=94, NUMBER=95, NUMFLOAT=96, BINFLOAT=97, DECFLOAT=98, + HEXFLOAT=99, NUMINT=100, BININTEGER=101, DECINTEGER=102, HEXINTEGER=103, + NAME=104, WS=105, COMMENT_LINE=106, COMMENT_BLOCK=107, ASM_BYTE=108, ASM_MNEMONIC=109, + ASM_IMM=110, ASM_COLON=111, ASM_COMMA=112, ASM_PAR_BEGIN=113, ASM_PAR_END=114, + ASM_BRACKET_BEGIN=115, ASM_BRACKET_END=116, ASM_DOT=117, ASM_SHIFT_LEFT=118, + ASM_SHIFT_RIGHT=119, ASM_PLUS=120, ASM_MINUS=121, ASM_LESS_THAN=122, ASM_GREATER_THAN=123, + ASM_MULTIPLY=124, ASM_DIVIDE=125, ASM_CURLY_BEGIN=126, ASM_CURLY_END=127, + ASM_NUMBER=128, ASM_NUMFLOAT=129, ASM_BINFLOAT=130, ASM_DECFLOAT=131, + ASM_HEXFLOAT=132, ASM_NUMINT=133, ASM_BININTEGER=134, ASM_DECINTEGER=135, + ASM_HEXINTEGER=136, ASM_CHAR=137, ASM_MULTI_REL=138, ASM_MULTI_NAME=139, + ASM_NAME=140, ASM_WS=141, ASM_COMMENT_LINE=142, ASM_COMMENT_BLOCK=143; public static final int ASM_MODE=1; public static String[] channelNames = { @@ -55,83 +55,76 @@ public class KickCLexer extends Lexer { "DEFAULT_MODE", "ASM_MODE" }; - private static String[] makeRuleNames() { - return new String[] { - "CURLY_BEGIN", "CURLY_END", "BRACKET_BEGIN", "BRACKET_END", "PAR_BEGIN", - "PAR_END", "SEMICOLON", "COLON", "COMMA", "RANGE", "CONDITION", "DOT", - "ARROW", "PLUS", "MINUS", "ASTERISK", "DIVIDE", "MODULO", "INC", "DEC", - "AND", "BIT_NOT", "BIT_XOR", "BIT_OR", "SHIFT_LEFT", "SHIFT_RIGHT", "EQUAL", - "NOT_EQUAL", "LESS_THAN", "LESS_THAN_EQUAL", "GREATER_THAN_EQUAL", "GREATER_THAN", - "LOGIC_AND", "LOGIC_OR", "ASSIGN", "ASSIGN_COMPOUND", "IMPORT", "TYPEDEF", - "PRAGMA", "RESERVE", "PC", "TARGET", "LINK", "CPU", "CODESEG", "DATASEG", - "ENCODING", "CONST", "EXTERN", "EXPORT", "ALIGN", "REGISTER", "NOTREGISTER", - "ADDRESS", "ADDRESS_ZEROPAGE", "ADDRESS_MAINMEM", "INLINE", "VOLATILE", - "INTERRUPT", "CALLING", "CALLINGCONVENTION", "IF", "ELSE", "WHILE", "DO", - "FOR", "SWITCH", "RETURN", "BREAK", "CONTINUE", "ASM", "DEFAULT", "CASE", - "STRUCT", "ENUM", "SIZEOF", "TYPEID", "KICKASM", "RESOURCE", "USES", - "CLOBBERS", "BYTES", "CYCLES", "LOGIC_NOT", "SIGNEDNESS", "SIMPLETYPE", - "BOOLEAN", "KICKASM_BODY", "STRING", "CHAR", "NUMBER", "NUMFLOAT", "BINFLOAT", - "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER", - "BINDIGIT", "DECDIGIT", "HEXDIGIT", "NAME", "NAME_START", "NAME_CHAR", - "WS", "COMMENT_LINE", "COMMENT_BLOCK", "ASM_BYTE", "ASM_MNEMONIC", "ASM_IMM", - "ASM_COLON", "ASM_COMMA", "ASM_PAR_BEGIN", "ASM_PAR_END", "ASM_BRACKET_BEGIN", - "ASM_BRACKET_END", "ASM_DOT", "ASM_SHIFT_LEFT", "ASM_SHIFT_RIGHT", "ASM_PLUS", - "ASM_MINUS", "ASM_LESS_THAN", "ASM_GREATER_THAN", "ASM_MULTIPLY", "ASM_DIVIDE", - "ASM_CURLY_BEGIN", "ASM_CURLY_END", "ASM_NUMBER", "ASM_NUMFLOAT", "ASM_BINFLOAT", - "ASM_DECFLOAT", "ASM_HEXFLOAT", "ASM_NUMINT", "ASM_BININTEGER", "ASM_DECINTEGER", - "ASM_HEXINTEGER", "ASM_BINDIGIT", "ASM_DECDIGIT", "ASM_HEXDIGIT", "ASM_CHAR", - "ASM_MULTI_REL", "ASM_MULTI_NAME", "ASM_NAME", "ASM_NAME_START", "ASM_NAME_CHAR", - "ASM_WS", "ASM_COMMENT_LINE", "ASM_COMMENT_BLOCK" - }; - } - public static final String[] ruleNames = makeRuleNames(); + public static final String[] ruleNames = { + "CURLY_BEGIN", "CURLY_END", "BRACKET_BEGIN", "BRACKET_END", "PAR_BEGIN", + "PAR_END", "SEMICOLON", "COLON", "COMMA", "RANGE", "CONDITION", "DOT", + "ARROW", "PLUS", "MINUS", "ASTERISK", "DIVIDE", "MODULO", "INC", "DEC", + "AND", "BIT_NOT", "BIT_XOR", "BIT_OR", "SHIFT_LEFT", "SHIFT_RIGHT", "EQUAL", + "NOT_EQUAL", "LESS_THAN", "LESS_THAN_EQUAL", "GREATER_THAN_EQUAL", "GREATER_THAN", + "LOGIC_AND", "LOGIC_OR", "ASSIGN", "ASSIGN_COMPOUND", "IMPORT", "TYPEDEF", + "PRAGMA", "RESERVE", "PC", "TARGET", "LINK", "CPU", "CODESEG", "DATASEG", + "ENCODING", "CONST", "EXTERN", "EXPORT", "ALIGN", "REGISTER", "NOTREGISTER", + "ADDRESS", "ADDRESS_ZEROPAGE", "ADDRESS_MAINMEM", "FORM_SSA", "FORM_NOTSSA", + "INLINE", "VOLATILE", "NOTVOLATILE", "INTERRUPT", "CALLING", "CALLINGCONVENTION", + "IF", "ELSE", "WHILE", "DO", "FOR", "SWITCH", "RETURN", "BREAK", "CONTINUE", + "ASM", "DEFAULT", "CASE", "STRUCT", "ENUM", "SIZEOF", "TYPEID", "KICKASM", + "RESOURCE", "USES", "CLOBBERS", "BYTES", "CYCLES", "LOGIC_NOT", "SIGNEDNESS", + "SIMPLETYPE", "BOOLEAN", "KICKASM_BODY", "STRING", "CHAR", "NUMBER", "NUMFLOAT", + "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", + "HEXINTEGER", "BINDIGIT", "DECDIGIT", "HEXDIGIT", "NAME", "NAME_START", + "NAME_CHAR", "WS", "COMMENT_LINE", "COMMENT_BLOCK", "ASM_BYTE", "ASM_MNEMONIC", + "ASM_IMM", "ASM_COLON", "ASM_COMMA", "ASM_PAR_BEGIN", "ASM_PAR_END", "ASM_BRACKET_BEGIN", + "ASM_BRACKET_END", "ASM_DOT", "ASM_SHIFT_LEFT", "ASM_SHIFT_RIGHT", "ASM_PLUS", + "ASM_MINUS", "ASM_LESS_THAN", "ASM_GREATER_THAN", "ASM_MULTIPLY", "ASM_DIVIDE", + "ASM_CURLY_BEGIN", "ASM_CURLY_END", "ASM_NUMBER", "ASM_NUMFLOAT", "ASM_BINFLOAT", + "ASM_DECFLOAT", "ASM_HEXFLOAT", "ASM_NUMINT", "ASM_BININTEGER", "ASM_DECINTEGER", + "ASM_HEXINTEGER", "ASM_BINDIGIT", "ASM_DECDIGIT", "ASM_HEXDIGIT", "ASM_CHAR", + "ASM_MULTI_REL", "ASM_MULTI_NAME", "ASM_NAME", "ASM_NAME_START", "ASM_NAME_CHAR", + "ASM_WS", "ASM_COMMENT_LINE", "ASM_COMMENT_BLOCK" + }; - private static String[] makeLiteralNames() { - return new String[] { - null, null, null, null, null, null, null, null, "';'", null, null, "'..'", - "'?'", null, "'->'", null, null, null, null, "'%'", "'++'", "'--'", "'&'", - "'~'", "'^'", "'|'", null, null, "'=='", "'!='", null, "'<='", "'>='", - null, "'&&'", "'||'", "'='", null, "'import'", "'typedef'", "'#pragma'", - "'reserve'", "'pc'", "'target'", "'link'", "'cpu'", "'code_seg'", "'data_seg'", - "'encoding'", "'const'", "'extern'", "'export'", "'align'", "'register'", - "'__notregister'", "'__address'", "'__zp'", "'__mem'", "'inline'", "'volatile'", - "'interrupt'", "'calling'", null, "'if'", "'else'", "'while'", "'do'", - "'for'", "'switch'", "'return'", "'break'", "'continue'", "'asm'", "'default'", - "'case'", "'struct'", "'enum'", "'sizeof'", "'typeid'", "'kickasm'", - "'resource'", "'uses'", "'clobbers'", "'bytes'", "'cycles'", "'!'", null, - null, null, null, null, null, null, null, null, null, null, null, null, - null, null, null, null, null, null, "'.byte'", null, "'#'" - }; - } - private static final String[] _LITERAL_NAMES = makeLiteralNames(); - private static String[] makeSymbolicNames() { - return new String[] { - null, "TYPEDEFNAME", "CURLY_BEGIN", "CURLY_END", "BRACKET_BEGIN", "BRACKET_END", - "PAR_BEGIN", "PAR_END", "SEMICOLON", "COLON", "COMMA", "RANGE", "CONDITION", - "DOT", "ARROW", "PLUS", "MINUS", "ASTERISK", "DIVIDE", "MODULO", "INC", - "DEC", "AND", "BIT_NOT", "BIT_XOR", "BIT_OR", "SHIFT_LEFT", "SHIFT_RIGHT", - "EQUAL", "NOT_EQUAL", "LESS_THAN", "LESS_THAN_EQUAL", "GREATER_THAN_EQUAL", - "GREATER_THAN", "LOGIC_AND", "LOGIC_OR", "ASSIGN", "ASSIGN_COMPOUND", - "IMPORT", "TYPEDEF", "PRAGMA", "RESERVE", "PC", "TARGET", "LINK", "CPU", - "CODESEG", "DATASEG", "ENCODING", "CONST", "EXTERN", "EXPORT", "ALIGN", - "REGISTER", "NOTREGISTER", "ADDRESS", "ADDRESS_ZEROPAGE", "ADDRESS_MAINMEM", - "INLINE", "VOLATILE", "INTERRUPT", "CALLING", "CALLINGCONVENTION", "IF", - "ELSE", "WHILE", "DO", "FOR", "SWITCH", "RETURN", "BREAK", "CONTINUE", - "ASM", "DEFAULT", "CASE", "STRUCT", "ENUM", "SIZEOF", "TYPEID", "KICKASM", - "RESOURCE", "USES", "CLOBBERS", "BYTES", "CYCLES", "LOGIC_NOT", "SIGNEDNESS", - "SIMPLETYPE", "BOOLEAN", "KICKASM_BODY", "STRING", "CHAR", "NUMBER", - "NUMFLOAT", "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", - "DECINTEGER", "HEXINTEGER", "NAME", "WS", "COMMENT_LINE", "COMMENT_BLOCK", - "ASM_BYTE", "ASM_MNEMONIC", "ASM_IMM", "ASM_COLON", "ASM_COMMA", "ASM_PAR_BEGIN", - "ASM_PAR_END", "ASM_BRACKET_BEGIN", "ASM_BRACKET_END", "ASM_DOT", "ASM_SHIFT_LEFT", - "ASM_SHIFT_RIGHT", "ASM_PLUS", "ASM_MINUS", "ASM_LESS_THAN", "ASM_GREATER_THAN", - "ASM_MULTIPLY", "ASM_DIVIDE", "ASM_CURLY_BEGIN", "ASM_CURLY_END", "ASM_NUMBER", - "ASM_NUMFLOAT", "ASM_BINFLOAT", "ASM_DECFLOAT", "ASM_HEXFLOAT", "ASM_NUMINT", - "ASM_BININTEGER", "ASM_DECINTEGER", "ASM_HEXINTEGER", "ASM_CHAR", "ASM_MULTI_REL", - "ASM_MULTI_NAME", "ASM_NAME", "ASM_WS", "ASM_COMMENT_LINE", "ASM_COMMENT_BLOCK" - }; - } - private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); + private static final String[] _LITERAL_NAMES = { + null, null, null, null, null, null, null, null, "';'", null, null, "'..'", + "'?'", null, "'->'", null, null, null, null, "'%'", "'++'", "'--'", "'&'", + "'~'", "'^'", "'|'", null, null, "'=='", "'!='", null, "'<='", "'>='", + null, "'&&'", "'||'", "'='", null, "'import'", "'typedef'", "'#pragma'", + "'reserve'", "'pc'", "'target'", "'link'", "'cpu'", "'code_seg'", "'data_seg'", + "'encoding'", "'const'", "'extern'", "'export'", "'align'", "'register'", + "'__notregister'", "'__address'", "'__zp'", "'__mem'", "'__ssa'", "'__notssa'", + "'inline'", "'volatile'", "'__notvolatile'", "'interrupt'", "'calling'", + null, "'if'", "'else'", "'while'", "'do'", "'for'", "'switch'", "'return'", + "'break'", "'continue'", "'asm'", "'default'", "'case'", "'struct'", "'enum'", + "'sizeof'", "'typeid'", "'kickasm'", "'resource'", "'uses'", "'clobbers'", + "'bytes'", "'cycles'", "'!'", null, null, null, null, null, null, null, + null, null, null, null, null, null, null, null, null, null, null, null, + "'.byte'", null, "'#'" + }; + private static final String[] _SYMBOLIC_NAMES = { + null, "TYPEDEFNAME", "CURLY_BEGIN", "CURLY_END", "BRACKET_BEGIN", "BRACKET_END", + "PAR_BEGIN", "PAR_END", "SEMICOLON", "COLON", "COMMA", "RANGE", "CONDITION", + "DOT", "ARROW", "PLUS", "MINUS", "ASTERISK", "DIVIDE", "MODULO", "INC", + "DEC", "AND", "BIT_NOT", "BIT_XOR", "BIT_OR", "SHIFT_LEFT", "SHIFT_RIGHT", + "EQUAL", "NOT_EQUAL", "LESS_THAN", "LESS_THAN_EQUAL", "GREATER_THAN_EQUAL", + "GREATER_THAN", "LOGIC_AND", "LOGIC_OR", "ASSIGN", "ASSIGN_COMPOUND", + "IMPORT", "TYPEDEF", "PRAGMA", "RESERVE", "PC", "TARGET", "LINK", "CPU", + "CODESEG", "DATASEG", "ENCODING", "CONST", "EXTERN", "EXPORT", "ALIGN", + "REGISTER", "NOTREGISTER", "ADDRESS", "ADDRESS_ZEROPAGE", "ADDRESS_MAINMEM", + "FORM_SSA", "FORM_NOTSSA", "INLINE", "VOLATILE", "NOTVOLATILE", "INTERRUPT", + "CALLING", "CALLINGCONVENTION", "IF", "ELSE", "WHILE", "DO", "FOR", "SWITCH", + "RETURN", "BREAK", "CONTINUE", "ASM", "DEFAULT", "CASE", "STRUCT", "ENUM", + "SIZEOF", "TYPEID", "KICKASM", "RESOURCE", "USES", "CLOBBERS", "BYTES", + "CYCLES", "LOGIC_NOT", "SIGNEDNESS", "SIMPLETYPE", "BOOLEAN", "KICKASM_BODY", + "STRING", "CHAR", "NUMBER", "NUMFLOAT", "BINFLOAT", "DECFLOAT", "HEXFLOAT", + "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER", "NAME", "WS", "COMMENT_LINE", + "COMMENT_BLOCK", "ASM_BYTE", "ASM_MNEMONIC", "ASM_IMM", "ASM_COLON", "ASM_COMMA", + "ASM_PAR_BEGIN", "ASM_PAR_END", "ASM_BRACKET_BEGIN", "ASM_BRACKET_END", + "ASM_DOT", "ASM_SHIFT_LEFT", "ASM_SHIFT_RIGHT", "ASM_PLUS", "ASM_MINUS", + "ASM_LESS_THAN", "ASM_GREATER_THAN", "ASM_MULTIPLY", "ASM_DIVIDE", "ASM_CURLY_BEGIN", + "ASM_CURLY_END", "ASM_NUMBER", "ASM_NUMFLOAT", "ASM_BINFLOAT", "ASM_DECFLOAT", + "ASM_HEXFLOAT", "ASM_NUMINT", "ASM_BININTEGER", "ASM_DECINTEGER", "ASM_HEXINTEGER", + "ASM_CHAR", "ASM_MULTI_REL", "ASM_MULTI_NAME", "ASM_NAME", "ASM_WS", "ASM_COMMENT_LINE", + "ASM_COMMENT_BLOCK" + }; public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES); /** @@ -214,19 +207,19 @@ public class KickCLexer extends Lexer { case 36: IMPORT_action((RuleContext)_localctx, actionIndex); break; - case 70: + case 73: ASM_action((RuleContext)_localctx, actionIndex); break; - case 88: + case 91: STRING_action((RuleContext)_localctx, actionIndex); break; - case 102: + case 105: NAME_action((RuleContext)_localctx, actionIndex); break; - case 126: + case 129: ASM_CURLY_BEGIN_action((RuleContext)_localctx, actionIndex); break; - case 127: + case 130: ASM_CURLY_END_action((RuleContext)_localctx, actionIndex); break; } @@ -282,7 +275,7 @@ public class KickCLexer extends Lexer { } public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\u008e\u0592\b\1\b"+ + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\u0091\u05b5\b\1\b"+ "\1\4\2\t\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n"+ "\t\n\4\13\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21"+ "\4\22\t\22\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30"+ @@ -301,516 +294,529 @@ public class KickCLexer extends Lexer { "\t\u0089\4\u008a\t\u008a\4\u008b\t\u008b\4\u008c\t\u008c\4\u008d\t\u008d"+ "\4\u008e\t\u008e\4\u008f\t\u008f\4\u0090\t\u0090\4\u0091\t\u0091\4\u0092"+ "\t\u0092\4\u0093\t\u0093\4\u0094\t\u0094\4\u0095\t\u0095\4\u0096\t\u0096"+ - "\3\2\3\2\3\2\3\3\3\3\3\4\3\4\3\5\3\5\3\6\3\6\3\7\3\7\3\b\3\b\3\t\3\t\3"+ - "\n\3\n\3\13\3\13\3\13\3\f\3\f\3\r\3\r\3\16\3\16\3\16\3\17\3\17\3\20\3"+ - "\20\3\21\3\21\3\22\3\22\3\23\3\23\3\24\3\24\3\24\3\25\3\25\3\25\3\26\3"+ - "\26\3\27\3\27\3\30\3\30\3\31\3\31\3\32\3\32\3\32\3\33\3\33\3\33\3\34\3"+ - "\34\3\34\3\35\3\35\3\35\3\36\3\36\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%\5%\u0198\n%\3&\3&\3&\3&\3&\3&\3&\3&\3&\3\'\3\'\3\'"+ - "\3\'\3\'\3\'\3\'\3\'\3(\3(\3(\3(\3(\3(\3(\3(\3)\3)\3)\3)\3)\3)\3)\3)\3"+ - "*\3*\3*\3+\3+\3+\3+\3+\3+\3+\3,\3,\3,\3,\3,\3-\3-\3-\3-\3.\3.\3.\3.\3"+ - ".\3.\3.\3.\3.\3/\3/\3/\3/\3/\3/\3/\3/\3/\3\60\3\60\3\60\3\60\3\60\3\60"+ - "\3\60\3\60\3\60\3\61\3\61\3\61\3\61\3\61\3\61\3\62\3\62\3\62\3\62\3\62"+ - "\3\62\3\62\3\63\3\63\3\63\3\63\3\63\3\63\3\63\3\64\3\64\3\64\3\64\3\64"+ - "\3\64\3\65\3\65\3\65\3\65\3\65\3\65\3\65\3\65\3\65\3\66\3\66\3\66\3\66"+ - "\3\66\3\66\3\66\3\66\3\66\3\66\3\66\3\66\3\66\3\66\3\67\3\67\3\67\3\67"+ - "\3\67\3\67\3\67\3\67\3\67\3\67\38\38\38\38\38\39\39\39\39\39\39\3:\3:"+ - "\3:\3:\3:\3:\3:\3;\3;\3;\3;\3;\3;\3;\3;\3;\3<\3<\3<\3<\3<\3<\3<\3<\3<"+ - "\3<\3=\3=\3=\3=\3=\3=\3=\3=\3>\3>\3>\3>\3>\3>\3>\3>\3>\3>\3>\3>\3>\3>"+ - "\3>\3>\3>\3>\3>\3>\5>\u0265\n>\3?\3?\3?\3@\3@\3@\3@\3@\3A\3A\3A\3A\3A"+ - "\3A\3B\3B\3B\3C\3C\3C\3C\3D\3D\3D\3D\3D\3D\3D\3E\3E\3E\3E\3E\3E\3E\3F"+ - "\3F\3F\3F\3F\3F\3G\3G\3G\3G\3G\3G\3G\3G\3G\3H\3H\3H\3H\3H\3H\3I\3I\3I"+ - "\3I\3I\3I\3I\3I\3J\3J\3J\3J\3J\3K\3K\3K\3K\3K\3K\3K\3L\3L\3L\3L\3L\3M"+ - "\3M\3M\3M\3M\3M\3M\3N\3N\3N\3N\3N\3N\3N\3O\3O\3O\3O\3O\3O\3O\3O\3P\3P"+ - "\3P\3P\3P\3P\3P\3P\3P\3Q\3Q\3Q\3Q\3Q\3R\3R\3R\3R\3R\3R\3R\3R\3R\3S\3S"+ - "\3S\3S\3S\3S\3T\3T\3T\3T\3T\3T\3T\3U\3U\3V\3V\3V\3V\3V\3V\3V\3V\3V\3V"+ - "\3V\3V\3V\3V\5V\u0302\nV\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"+ - "\u0329\nW\3X\3X\3X\3X\3X\3X\3X\3X\3X\5X\u0334\nX\3Y\3Y\3Y\3Y\7Y\u033a"+ - "\nY\fY\16Y\u033d\13Y\3Y\3Y\3Y\3Z\3Z\3Z\3Z\7Z\u0346\nZ\fZ\16Z\u0349\13"+ - "Z\3Z\3Z\5Z\u034d\nZ\3Z\3Z\5Z\u0351\nZ\5Z\u0353\nZ\3Z\5Z\u0356\nZ\3Z\3"+ - "Z\3[\3[\3[\3[\5[\u035e\n[\3[\3[\3\\\3\\\5\\\u0364\n\\\3]\3]\3]\5]\u0369"+ - "\n]\3^\3^\3^\3^\3^\5^\u0370\n^\3^\7^\u0373\n^\f^\16^\u0376\13^\3^\3^\6"+ - "^\u037a\n^\r^\16^\u037b\3_\7_\u037f\n_\f_\16_\u0382\13_\3_\3_\6_\u0386"+ - "\n_\r_\16_\u0387\3`\3`\3`\3`\3`\5`\u038f\n`\3`\7`\u0392\n`\f`\16`\u0395"+ - "\13`\3`\3`\6`\u0399\n`\r`\16`\u039a\3a\3a\3a\5a\u03a0\na\3a\3a\3a\5a\u03a5"+ - "\na\3b\3b\3b\6b\u03aa\nb\rb\16b\u03ab\3b\3b\6b\u03b0\nb\rb\16b\u03b1\5"+ - "b\u03b4\nb\3c\6c\u03b7\nc\rc\16c\u03b8\3d\3d\3d\3d\3d\5d\u03c0\nd\3d\6"+ - "d\u03c3\nd\rd\16d\u03c4\3e\3e\3f\3f\3g\3g\3h\3h\7h\u03cf\nh\fh\16h\u03d2"+ - "\13h\3h\3h\3i\3i\3j\3j\3k\6k\u03db\nk\rk\16k\u03dc\3k\3k\3l\3l\3l\3l\7"+ - "l\u03e5\nl\fl\16l\u03e8\13l\3l\3l\3m\3m\3m\3m\7m\u03f0\nm\fm\16m\u03f3"+ - "\13m\3m\3m\3m\3m\3m\3n\3n\3n\3n\3n\3n\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3"+ - "o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3"+ - "o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3"+ - "o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3"+ - "o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3"+ - "o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3"+ - "o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3"+ - "o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3"+ - "o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3"+ - "o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3o\3"+ - "o\3o\3o\3o\3o\5o\u04de\no\3p\3p\3q\3q\3r\3r\3s\3s\3t\3t\3u\3u\3v\3v\3"+ - "w\3w\3x\3x\3x\3y\3y\3y\3z\3z\3{\3{\3|\3|\3}\3}\3~\3~\3\177\3\177\3\u0080"+ - "\3\u0080\3\u0080\3\u0081\3\u0081\3\u0081\3\u0082\3\u0082\5\u0082\u050a"+ - "\n\u0082\3\u0083\3\u0083\3\u0083\5\u0083\u050f\n\u0083\3\u0084\3\u0084"+ - "\7\u0084\u0513\n\u0084\f\u0084\16\u0084\u0516\13\u0084\3\u0084\3\u0084"+ - "\6\u0084\u051a\n\u0084\r\u0084\16\u0084\u051b\3\u0085\7\u0085\u051f\n"+ - "\u0085\f\u0085\16\u0085\u0522\13\u0085\3\u0085\3\u0085\6\u0085\u0526\n"+ - "\u0085\r\u0085\16\u0085\u0527\3\u0086\3\u0086\7\u0086\u052c\n\u0086\f"+ - "\u0086\16\u0086\u052f\13\u0086\3\u0086\3\u0086\6\u0086\u0533\n\u0086\r"+ - "\u0086\16\u0086\u0534\3\u0087\3\u0087\3\u0087\5\u0087\u053a\n\u0087\3"+ - "\u0088\3\u0088\6\u0088\u053e\n\u0088\r\u0088\16\u0088\u053f\3\u0089\6"+ - "\u0089\u0543\n\u0089\r\u0089\16\u0089\u0544\3\u008a\3\u008a\6\u008a\u0549"+ - "\n\u008a\r\u008a\16\u008a\u054a\3\u008b\3\u008b\3\u008c\3\u008c\3\u008d"+ - "\3\u008d\3\u008e\3\u008e\3\u008e\3\u008e\5\u008e\u0557\n\u008e\3\u008e"+ - "\3\u008e\3\u008f\3\u008f\6\u008f\u055d\n\u008f\r\u008f\16\u008f\u055e"+ - "\3\u0090\3\u0090\7\u0090\u0563\n\u0090\f\u0090\16\u0090\u0566\13\u0090"+ - "\3\u0091\3\u0091\7\u0091\u056a\n\u0091\f\u0091\16\u0091\u056d\13\u0091"+ - "\3\u0092\3\u0092\3\u0093\3\u0093\3\u0094\6\u0094\u0574\n\u0094\r\u0094"+ - "\16\u0094\u0575\3\u0094\3\u0094\3\u0095\3\u0095\3\u0095\3\u0095\7\u0095"+ - "\u057e\n\u0095\f\u0095\16\u0095\u0581\13\u0095\3\u0095\3\u0095\3\u0096"+ - "\3\u0096\3\u0096\3\u0096\7\u0096\u0589\n\u0096\f\u0096\16\u0096\u058c"+ - "\13\u0096\3\u0096\3\u0096\3\u0096\3\u0096\3\u0096\5\u033b\u03f1\u058a"+ - "\2\u0097\4\4\6\5\b\6\n\7\f\b\16\t\20\n\22\13\24\f\26\r\30\16\32\17\34"+ - "\20\36\21 \22\"\23$\24&\25(\26*\27,\30.\31\60\32\62\33\64\34\66\358\36"+ - ":\37< >!@\"B#D$F%H&J\'L(N)P*R+T,V-X.Z/\\\60^\61`\62b\63d\64f\65h\66j\67"+ - "l8n9p:r;tz?|@~A\u0080B\u0082C\u0084D\u0086E\u0088F\u008aG\u008cH"+ - "\u008eI\u0090J\u0092K\u0094L\u0096M\u0098N\u009aO\u009cP\u009eQ\u00a0"+ - "R\u00a2S\u00a4T\u00a6U\u00a8V\u00aaW\u00acX\u00aeY\u00b0Z\u00b2[\u00b4"+ - "\\\u00b6]\u00b8^\u00ba_\u00bc`\u00bea\u00c0b\u00c2c\u00c4d\u00c6e\u00c8"+ - "f\u00ca\2\u00cc\2\u00ce\2\u00d0g\u00d2\2\u00d4\2\u00d6h\u00d8i\u00daj"+ - "\u00dck\u00del\u00e0m\u00e2n\u00e4o\u00e6p\u00e8q\u00ear\u00ecs\u00ee"+ - "t\u00f0u\u00f2v\u00f4w\u00f6x\u00f8y\u00faz\u00fc{\u00fe|\u0100}\u0102"+ - "~\u0104\177\u0106\u0080\u0108\u0081\u010a\u0082\u010c\u0083\u010e\u0084"+ - "\u0110\u0085\u0112\u0086\u0114\u0087\u0116\2\u0118\2\u011a\2\u011c\u0088"+ - "\u011e\u0089\u0120\u008a\u0122\u008b\u0124\2\u0126\2\u0128\u008c\u012a"+ - "\u008d\u012c\u008e\4\2\3\23\3\2$$\3\2||\4\2rruu\4\2ooww\7\2$$))hhpptt"+ - "\3\2))\4\2uuww\7\2dfkknnuuyy\4\2DDdd\3\2\62\63\3\2\62;\5\2\62;CHch\5\2"+ - "C\\aac|\6\2\62;C\\aac|\6\2\13\f\17\17\"\"\u00a2\u00a2\4\2\f\f\17\17\4"+ - "\2--//\2\u061c\2\4\3\2\2\2\2\6\3\2\2\2\2\b\3\2\2\2\2\n\3\2\2\2\2\f\3\2"+ - "\2\2\2\16\3\2\2\2\2\20\3\2\2\2\2\22\3\2\2\2\2\24\3\2\2\2\2\26\3\2\2\2"+ - "\2\30\3\2\2\2\2\32\3\2\2\2\2\34\3\2\2\2\2\36\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\60\3\2\2\2\2\62\3\2\2\2\2\64\3\2\2\2\2\66\3\2\2\2\28\3\2\2\2\2:\3"+ - "\2\2\2\2<\3\2\2\2\2>\3\2\2\2\2@\3\2\2\2\2B\3\2\2\2\2D\3\2\2\2\2F\3\2\2"+ - "\2\2H\3\2\2\2\2J\3\2\2\2\2L\3\2\2\2\2N\3\2\2\2\2P\3\2\2\2\2R\3\2\2\2\2"+ - "T\3\2\2\2\2V\3\2\2\2\2X\3\2\2\2\2Z\3\2\2\2\2\\\3\2\2\2\2^\3\2\2\2\2`\3"+ - "\2\2\2\2b\3\2\2\2\2d\3\2\2\2\2f\3\2\2\2\2h\3\2\2\2\2j\3\2\2\2\2l\3\2\2"+ - "\2\2n\3\2\2\2\2p\3\2\2\2\2r\3\2\2\2\2t\3\2\2\2\2v\3\2\2\2\2x\3\2\2\2\2"+ - "z\3\2\2\2\2|\3\2\2\2\2~\3\2\2\2\2\u0080\3\2\2\2\2\u0082\3\2\2\2\2\u0084"+ - "\3\2\2\2\2\u0086\3\2\2\2\2\u0088\3\2\2\2\2\u008a\3\2\2\2\2\u008c\3\2\2"+ - "\2\2\u008e\3\2\2\2\2\u0090\3\2\2\2\2\u0092\3\2\2\2\2\u0094\3\2\2\2\2\u0096"+ - "\3\2\2\2\2\u0098\3\2\2\2\2\u009a\3\2\2\2\2\u009c\3\2\2\2\2\u009e\3\2\2"+ - "\2\2\u00a0\3\2\2\2\2\u00a2\3\2\2\2\2\u00a4\3\2\2\2\2\u00a6\3\2\2\2\2\u00a8"+ - "\3\2\2\2\2\u00aa\3\2\2\2\2\u00ac\3\2\2\2\2\u00ae\3\2\2\2\2\u00b0\3\2\2"+ - "\2\2\u00b2\3\2\2\2\2\u00b4\3\2\2\2\2\u00b6\3\2\2\2\2\u00b8\3\2\2\2\2\u00ba"+ - "\3\2\2\2\2\u00bc\3\2\2\2\2\u00be\3\2\2\2\2\u00c0\3\2\2\2\2\u00c2\3\2\2"+ - "\2\2\u00c4\3\2\2\2\2\u00c6\3\2\2\2\2\u00c8\3\2\2\2\2\u00d0\3\2\2\2\2\u00d6"+ - "\3\2\2\2\2\u00d8\3\2\2\2\2\u00da\3\2\2\2\3\u00dc\3\2\2\2\3\u00de\3\2\2"+ - "\2\3\u00e0\3\2\2\2\3\u00e2\3\2\2\2\3\u00e4\3\2\2\2\3\u00e6\3\2\2\2\3\u00e8"+ - "\3\2\2\2\3\u00ea\3\2\2\2\3\u00ec\3\2\2\2\3\u00ee\3\2\2\2\3\u00f0\3\2\2"+ - "\2\3\u00f2\3\2\2\2\3\u00f4\3\2\2\2\3\u00f6\3\2\2\2\3\u00f8\3\2\2\2\3\u00fa"+ - "\3\2\2\2\3\u00fc\3\2\2\2\3\u00fe\3\2\2\2\3\u0100\3\2\2\2\3\u0102\3\2\2"+ - "\2\3\u0104\3\2\2\2\3\u0106\3\2\2\2\3\u0108\3\2\2\2\3\u010a\3\2\2\2\3\u010c"+ - "\3\2\2\2\3\u010e\3\2\2\2\3\u0110\3\2\2\2\3\u0112\3\2\2\2\3\u0114\3\2\2"+ - "\2\3\u011c\3\2\2\2\3\u011e\3\2\2\2\3\u0120\3\2\2\2\3\u0122\3\2\2\2\3\u0128"+ - "\3\2\2\2\3\u012a\3\2\2\2\3\u012c\3\2\2\2\4\u012e\3\2\2\2\6\u0131\3\2\2"+ - "\2\b\u0133\3\2\2\2\n\u0135\3\2\2\2\f\u0137\3\2\2\2\16\u0139\3\2\2\2\20"+ - "\u013b\3\2\2\2\22\u013d\3\2\2\2\24\u013f\3\2\2\2\26\u0141\3\2\2\2\30\u0144"+ - "\3\2\2\2\32\u0146\3\2\2\2\34\u0148\3\2\2\2\36\u014b\3\2\2\2 \u014d\3\2"+ - "\2\2\"\u014f\3\2\2\2$\u0151\3\2\2\2&\u0153\3\2\2\2(\u0155\3\2\2\2*\u0158"+ - "\3\2\2\2,\u015b\3\2\2\2.\u015d\3\2\2\2\60\u015f\3\2\2\2\62\u0161\3\2\2"+ - "\2\64\u0163\3\2\2\2\66\u0166\3\2\2\28\u0169\3\2\2\2:\u016c\3\2\2\2<\u016f"+ - "\3\2\2\2>\u0171\3\2\2\2@\u0174\3\2\2\2B\u0177\3\2\2\2D\u0179\3\2\2\2F"+ - "\u017c\3\2\2\2H\u017f\3\2\2\2J\u0197\3\2\2\2L\u0199\3\2\2\2N\u01a2\3\2"+ - "\2\2P\u01aa\3\2\2\2R\u01b2\3\2\2\2T\u01ba\3\2\2\2V\u01bd\3\2\2\2X\u01c4"+ - "\3\2\2\2Z\u01c9\3\2\2\2\\\u01cd\3\2\2\2^\u01d6\3\2\2\2`\u01df\3\2\2\2"+ - "b\u01e8\3\2\2\2d\u01ee\3\2\2\2f\u01f5\3\2\2\2h\u01fc\3\2\2\2j\u0202\3"+ - "\2\2\2l\u020b\3\2\2\2n\u0219\3\2\2\2p\u0223\3\2\2\2r\u0228\3\2\2\2t\u022e"+ - "\3\2\2\2v\u0235\3\2\2\2x\u023e\3\2\2\2z\u0248\3\2\2\2|\u0264\3\2\2\2~"+ - "\u0266\3\2\2\2\u0080\u0269\3\2\2\2\u0082\u026e\3\2\2\2\u0084\u0274\3\2"+ - "\2\2\u0086\u0277\3\2\2\2\u0088\u027b\3\2\2\2\u008a\u0282\3\2\2\2\u008c"+ - "\u0289\3\2\2\2\u008e\u028f\3\2\2\2\u0090\u0298\3\2\2\2\u0092\u029e\3\2"+ - "\2\2\u0094\u02a6\3\2\2\2\u0096\u02ab\3\2\2\2\u0098\u02b2\3\2\2\2\u009a"+ - "\u02b7\3\2\2\2\u009c\u02be\3\2\2\2\u009e\u02c5\3\2\2\2\u00a0\u02cd\3\2"+ - "\2\2\u00a2\u02d6\3\2\2\2\u00a4\u02db\3\2\2\2\u00a6\u02e4\3\2\2\2\u00a8"+ - "\u02ea\3\2\2\2\u00aa\u02f1\3\2\2\2\u00ac\u0301\3\2\2\2\u00ae\u0328\3\2"+ - "\2\2\u00b0\u0333\3\2\2\2\u00b2\u0335\3\2\2\2\u00b4\u0341\3\2\2\2\u00b6"+ - "\u0359\3\2\2\2\u00b8\u0363\3\2\2\2\u00ba\u0368\3\2\2\2\u00bc\u036f\3\2"+ - "\2\2\u00be\u0380\3\2\2\2\u00c0\u038e\3\2\2\2\u00c2\u039f\3\2\2\2\u00c4"+ - "\u03b3\3\2\2\2\u00c6\u03b6\3\2\2\2\u00c8\u03bf\3\2\2\2\u00ca\u03c6\3\2"+ - "\2\2\u00cc\u03c8\3\2\2\2\u00ce\u03ca\3\2\2\2\u00d0\u03cc\3\2\2\2\u00d2"+ - "\u03d5\3\2\2\2\u00d4\u03d7\3\2\2\2\u00d6\u03da\3\2\2\2\u00d8\u03e0\3\2"+ - "\2\2\u00da\u03eb\3\2\2\2\u00dc\u03f9\3\2\2\2\u00de\u04dd\3\2\2\2\u00e0"+ - "\u04df\3\2\2\2\u00e2\u04e1\3\2\2\2\u00e4\u04e3\3\2\2\2\u00e6\u04e5\3\2"+ - "\2\2\u00e8\u04e7\3\2\2\2\u00ea\u04e9\3\2\2\2\u00ec\u04eb\3\2\2\2\u00ee"+ - "\u04ed\3\2\2\2\u00f0\u04ef\3\2\2\2\u00f2\u04f2\3\2\2\2\u00f4\u04f5\3\2"+ - "\2\2\u00f6\u04f7\3\2\2\2\u00f8\u04f9\3\2\2\2\u00fa\u04fb\3\2\2\2\u00fc"+ - "\u04fd\3\2\2\2\u00fe\u04ff\3\2\2\2\u0100\u0501\3\2\2\2\u0102\u0504\3\2"+ - "\2\2\u0104\u0509\3\2\2\2\u0106\u050e\3\2\2\2\u0108\u0510\3\2\2\2\u010a"+ - "\u0520\3\2\2\2\u010c\u0529\3\2\2\2\u010e\u0539\3\2\2\2\u0110\u053b\3\2"+ - "\2\2\u0112\u0542\3\2\2\2\u0114\u0546\3\2\2\2\u0116\u054c\3\2\2\2\u0118"+ - "\u054e\3\2\2\2\u011a\u0550\3\2\2\2\u011c\u0552\3\2\2\2\u011e\u055a\3\2"+ - "\2\2\u0120\u0560\3\2\2\2\u0122\u0567\3\2\2\2\u0124\u056e\3\2\2\2\u0126"+ - "\u0570\3\2\2\2\u0128\u0573\3\2\2\2\u012a\u0579\3\2\2\2\u012c\u0584\3\2"+ - "\2\2\u012e\u012f\7}\2\2\u012f\u0130\b\2\2\2\u0130\5\3\2\2\2\u0131\u0132"+ - "\7\177\2\2\u0132\7\3\2\2\2\u0133\u0134\7]\2\2\u0134\t\3\2\2\2\u0135\u0136"+ - "\7_\2\2\u0136\13\3\2\2\2\u0137\u0138\7*\2\2\u0138\r\3\2\2\2\u0139\u013a"+ - "\7+\2\2\u013a\17\3\2\2\2\u013b\u013c\7=\2\2\u013c\21\3\2\2\2\u013d\u013e"+ - "\7<\2\2\u013e\23\3\2\2\2\u013f\u0140\7.\2\2\u0140\25\3\2\2\2\u0141\u0142"+ - "\7\60\2\2\u0142\u0143\7\60\2\2\u0143\27\3\2\2\2\u0144\u0145\7A\2\2\u0145"+ - "\31\3\2\2\2\u0146\u0147\7\60\2\2\u0147\33\3\2\2\2\u0148\u0149\7/\2\2\u0149"+ - "\u014a\7@\2\2\u014a\35\3\2\2\2\u014b\u014c\7-\2\2\u014c\37\3\2\2\2\u014d"+ - "\u014e\7/\2\2\u014e!\3\2\2\2\u014f\u0150\7,\2\2\u0150#\3\2\2\2\u0151\u0152"+ - "\7\61\2\2\u0152%\3\2\2\2\u0153\u0154\7\'\2\2\u0154\'\3\2\2\2\u0155\u0156"+ - "\7-\2\2\u0156\u0157\7-\2\2\u0157)\3\2\2\2\u0158\u0159\7/\2\2\u0159\u015a"+ - "\7/\2\2\u015a+\3\2\2\2\u015b\u015c\7(\2\2\u015c-\3\2\2\2\u015d\u015e\7"+ - "\u0080\2\2\u015e/\3\2\2\2\u015f\u0160\7`\2\2\u0160\61\3\2\2\2\u0161\u0162"+ - "\7~\2\2\u0162\63\3\2\2\2\u0163\u0164\7>\2\2\u0164\u0165\7>\2\2\u0165\65"+ - "\3\2\2\2\u0166\u0167\7@\2\2\u0167\u0168\7@\2\2\u0168\67\3\2\2\2\u0169"+ - "\u016a\7?\2\2\u016a\u016b\7?\2\2\u016b9\3\2\2\2\u016c\u016d\7#\2\2\u016d"+ - "\u016e\7?\2\2\u016e;\3\2\2\2\u016f\u0170\7>\2\2\u0170=\3\2\2\2\u0171\u0172"+ - "\7>\2\2\u0172\u0173\7?\2\2\u0173?\3\2\2\2\u0174\u0175\7@\2\2\u0175\u0176"+ - "\7?\2\2\u0176A\3\2\2\2\u0177\u0178\7@\2\2\u0178C\3\2\2\2\u0179\u017a\7"+ - "(\2\2\u017a\u017b\7(\2\2\u017bE\3\2\2\2\u017c\u017d\7~\2\2\u017d\u017e"+ - "\7~\2\2\u017eG\3\2\2\2\u017f\u0180\7?\2\2\u0180I\3\2\2\2\u0181\u0182\7"+ - "-\2\2\u0182\u0198\7?\2\2\u0183\u0184\7/\2\2\u0184\u0198\7?\2\2\u0185\u0186"+ - "\7,\2\2\u0186\u0198\7?\2\2\u0187\u0188\7\61\2\2\u0188\u0198\7?\2\2\u0189"+ - "\u018a\7\'\2\2\u018a\u0198\7?\2\2\u018b\u018c\7>\2\2\u018c\u018d\7>\2"+ - "\2\u018d\u0198\7?\2\2\u018e\u018f\7@\2\2\u018f\u0190\7@\2\2\u0190\u0198"+ - "\7?\2\2\u0191\u0192\7(\2\2\u0192\u0198\7?\2\2\u0193\u0194\7~\2\2\u0194"+ - "\u0198\7?\2\2\u0195\u0196\7`\2\2\u0196\u0198\7?\2\2\u0197\u0181\3\2\2"+ - "\2\u0197\u0183\3\2\2\2\u0197\u0185\3\2\2\2\u0197\u0187\3\2\2\2\u0197\u0189"+ - "\3\2\2\2\u0197\u018b\3\2\2\2\u0197\u018e\3\2\2\2\u0197\u0191\3\2\2\2\u0197"+ - "\u0193\3\2\2\2\u0197\u0195\3\2\2\2\u0198K\3\2\2\2\u0199\u019a\7k\2\2\u019a"+ - "\u019b\7o\2\2\u019b\u019c\7r\2\2\u019c\u019d\7q\2\2\u019d\u019e\7t\2\2"+ - "\u019e\u019f\7v\2\2\u019f\u01a0\3\2\2\2\u01a0\u01a1\b&\3\2\u01a1M\3\2"+ - "\2\2\u01a2\u01a3\7v\2\2\u01a3\u01a4\7{\2\2\u01a4\u01a5\7r\2\2\u01a5\u01a6"+ - "\7g\2\2\u01a6\u01a7\7f\2\2\u01a7\u01a8\7g\2\2\u01a8\u01a9\7h\2\2\u01a9"+ - "O\3\2\2\2\u01aa\u01ab\7%\2\2\u01ab\u01ac\7r\2\2\u01ac\u01ad\7t\2\2\u01ad"+ - "\u01ae\7c\2\2\u01ae\u01af\7i\2\2\u01af\u01b0\7o\2\2\u01b0\u01b1\7c\2\2"+ - "\u01b1Q\3\2\2\2\u01b2\u01b3\7t\2\2\u01b3\u01b4\7g\2\2\u01b4\u01b5\7u\2"+ - "\2\u01b5\u01b6\7g\2\2\u01b6\u01b7\7t\2\2\u01b7\u01b8\7x\2\2\u01b8\u01b9"+ - "\7g\2\2\u01b9S\3\2\2\2\u01ba\u01bb\7r\2\2\u01bb\u01bc\7e\2\2\u01bcU\3"+ - "\2\2\2\u01bd\u01be\7v\2\2\u01be\u01bf\7c\2\2\u01bf\u01c0\7t\2\2\u01c0"+ - "\u01c1\7i\2\2\u01c1\u01c2\7g\2\2\u01c2\u01c3\7v\2\2\u01c3W\3\2\2\2\u01c4"+ - "\u01c5\7n\2\2\u01c5\u01c6\7k\2\2\u01c6\u01c7\7p\2\2\u01c7\u01c8\7m\2\2"+ - "\u01c8Y\3\2\2\2\u01c9\u01ca\7e\2\2\u01ca\u01cb\7r\2\2\u01cb\u01cc\7w\2"+ - "\2\u01cc[\3\2\2\2\u01cd\u01ce\7e\2\2\u01ce\u01cf\7q\2\2\u01cf\u01d0\7"+ - "f\2\2\u01d0\u01d1\7g\2\2\u01d1\u01d2\7a\2\2\u01d2\u01d3\7u\2\2\u01d3\u01d4"+ - "\7g\2\2\u01d4\u01d5\7i\2\2\u01d5]\3\2\2\2\u01d6\u01d7\7f\2\2\u01d7\u01d8"+ - "\7c\2\2\u01d8\u01d9\7v\2\2\u01d9\u01da\7c\2\2\u01da\u01db\7a\2\2\u01db"+ - "\u01dc\7u\2\2\u01dc\u01dd\7g\2\2\u01dd\u01de\7i\2\2\u01de_\3\2\2\2\u01df"+ - "\u01e0\7g\2\2\u01e0\u01e1\7p\2\2\u01e1\u01e2\7e\2\2\u01e2\u01e3\7q\2\2"+ - "\u01e3\u01e4\7f\2\2\u01e4\u01e5\7k\2\2\u01e5\u01e6\7p\2\2\u01e6\u01e7"+ - "\7i\2\2\u01e7a\3\2\2\2\u01e8\u01e9\7e\2\2\u01e9\u01ea\7q\2\2\u01ea\u01eb"+ - "\7p\2\2\u01eb\u01ec\7u\2\2\u01ec\u01ed\7v\2\2\u01edc\3\2\2\2\u01ee\u01ef"+ - "\7g\2\2\u01ef\u01f0\7z\2\2\u01f0\u01f1\7v\2\2\u01f1\u01f2\7g\2\2\u01f2"+ - "\u01f3\7t\2\2\u01f3\u01f4\7p\2\2\u01f4e\3\2\2\2\u01f5\u01f6\7g\2\2\u01f6"+ - "\u01f7\7z\2\2\u01f7\u01f8\7r\2\2\u01f8\u01f9\7q\2\2\u01f9\u01fa\7t\2\2"+ - "\u01fa\u01fb\7v\2\2\u01fbg\3\2\2\2\u01fc\u01fd\7c\2\2\u01fd\u01fe\7n\2"+ - "\2\u01fe\u01ff\7k\2\2\u01ff\u0200\7i\2\2\u0200\u0201\7p\2\2\u0201i\3\2"+ - "\2\2\u0202\u0203\7t\2\2\u0203\u0204\7g\2\2\u0204\u0205\7i\2\2\u0205\u0206"+ - "\7k\2\2\u0206\u0207\7u\2\2\u0207\u0208\7v\2\2\u0208\u0209\7g\2\2\u0209"+ - "\u020a\7t\2\2\u020ak\3\2\2\2\u020b\u020c\7a\2\2\u020c\u020d\7a\2\2\u020d"+ - "\u020e\7p\2\2\u020e\u020f\7q\2\2\u020f\u0210\7v\2\2\u0210\u0211\7t\2\2"+ - "\u0211\u0212\7g\2\2\u0212\u0213\7i\2\2\u0213\u0214\7k\2\2\u0214\u0215"+ - "\7u\2\2\u0215\u0216\7v\2\2\u0216\u0217\7g\2\2\u0217\u0218\7t\2\2\u0218"+ - "m\3\2\2\2\u0219\u021a\7a\2\2\u021a\u021b\7a\2\2\u021b\u021c\7c\2\2\u021c"+ - "\u021d\7f\2\2\u021d\u021e\7f\2\2\u021e\u021f\7t\2\2\u021f\u0220\7g\2\2"+ - "\u0220\u0221\7u\2\2\u0221\u0222\7u\2\2\u0222o\3\2\2\2\u0223\u0224\7a\2"+ - "\2\u0224\u0225\7a\2\2\u0225\u0226\7|\2\2\u0226\u0227\7r\2\2\u0227q\3\2"+ - "\2\2\u0228\u0229\7a\2\2\u0229\u022a\7a\2\2\u022a\u022b\7o\2\2\u022b\u022c"+ - "\7g\2\2\u022c\u022d\7o\2\2\u022ds\3\2\2\2\u022e\u022f\7k\2\2\u022f\u0230"+ - "\7p\2\2\u0230\u0231\7n\2\2\u0231\u0232\7k\2\2\u0232\u0233\7p\2\2\u0233"+ - "\u0234\7g\2\2\u0234u\3\2\2\2\u0235\u0236\7x\2\2\u0236\u0237\7q\2\2\u0237"+ - "\u0238\7n\2\2\u0238\u0239\7c\2\2\u0239\u023a\7v\2\2\u023a\u023b\7k\2\2"+ - "\u023b\u023c\7n\2\2\u023c\u023d\7g\2\2\u023dw\3\2\2\2\u023e\u023f\7k\2"+ - "\2\u023f\u0240\7p\2\2\u0240\u0241\7v\2\2\u0241\u0242\7g\2\2\u0242\u0243"+ - "\7t\2\2\u0243\u0244\7t\2\2\u0244\u0245\7w\2\2\u0245\u0246\7r\2\2\u0246"+ - "\u0247\7v\2\2\u0247y\3\2\2\2\u0248\u0249\7e\2\2\u0249\u024a\7c\2\2\u024a"+ - "\u024b\7n\2\2\u024b\u024c\7n\2\2\u024c\u024d\7k\2\2\u024d\u024e\7p\2\2"+ - "\u024e\u024f\7i\2\2\u024f{\3\2\2\2\u0250\u0251\7a\2\2\u0251\u0252\7a\2"+ - "\2\u0252\u0253\7u\2\2\u0253\u0254\7v\2\2\u0254\u0255\7c\2\2\u0255\u0256"+ - "\7e\2\2\u0256\u0257\7m\2\2\u0257\u0258\7e\2\2\u0258\u0259\7c\2\2\u0259"+ - "\u025a\7n\2\2\u025a\u0265\7n\2\2\u025b\u025c\7a\2\2\u025c\u025d\7a\2\2"+ - "\u025d\u025e\7r\2\2\u025e\u025f\7j\2\2\u025f\u0260\7k\2\2\u0260\u0261"+ - "\7e\2\2\u0261\u0262\7c\2\2\u0262\u0263\7n\2\2\u0263\u0265\7n\2\2\u0264"+ - "\u0250\3\2\2\2\u0264\u025b\3\2\2\2\u0265}\3\2\2\2\u0266\u0267\7k\2\2\u0267"+ - "\u0268\7h\2\2\u0268\177\3\2\2\2\u0269\u026a\7g\2\2\u026a\u026b\7n\2\2"+ - "\u026b\u026c\7u\2\2\u026c\u026d\7g\2\2\u026d\u0081\3\2\2\2\u026e\u026f"+ - "\7y\2\2\u026f\u0270\7j\2\2\u0270\u0271\7k\2\2\u0271\u0272\7n\2\2\u0272"+ - "\u0273\7g\2\2\u0273\u0083\3\2\2\2\u0274\u0275\7f\2\2\u0275\u0276\7q\2"+ - "\2\u0276\u0085\3\2\2\2\u0277\u0278\7h\2\2\u0278\u0279\7q\2\2\u0279\u027a"+ - "\7t\2\2\u027a\u0087\3\2\2\2\u027b\u027c\7u\2\2\u027c\u027d\7y\2\2\u027d"+ - "\u027e\7k\2\2\u027e\u027f\7v\2\2\u027f\u0280\7e\2\2\u0280\u0281\7j\2\2"+ - "\u0281\u0089\3\2\2\2\u0282\u0283\7t\2\2\u0283\u0284\7g\2\2\u0284\u0285"+ - "\7v\2\2\u0285\u0286\7w\2\2\u0286\u0287\7t\2\2\u0287\u0288\7p\2\2\u0288"+ - "\u008b\3\2\2\2\u0289\u028a\7d\2\2\u028a\u028b\7t\2\2\u028b\u028c\7g\2"+ - "\2\u028c\u028d\7c\2\2\u028d\u028e\7m\2\2\u028e\u008d\3\2\2\2\u028f\u0290"+ - "\7e\2\2\u0290\u0291\7q\2\2\u0291\u0292\7p\2\2\u0292\u0293\7v\2\2\u0293"+ - "\u0294\7k\2\2\u0294\u0295\7p\2\2\u0295\u0296\7w\2\2\u0296\u0297\7g\2\2"+ - "\u0297\u008f\3\2\2\2\u0298\u0299\7c\2\2\u0299\u029a\7u\2\2\u029a\u029b"+ - "\7o\2\2\u029b\u029c\3\2\2\2\u029c\u029d\bH\4\2\u029d\u0091\3\2\2\2\u029e"+ - "\u029f\7f\2\2\u029f\u02a0\7g\2\2\u02a0\u02a1\7h\2\2\u02a1\u02a2\7c\2\2"+ - "\u02a2\u02a3\7w\2\2\u02a3\u02a4\7n\2\2\u02a4\u02a5\7v\2\2\u02a5\u0093"+ - "\3\2\2\2\u02a6\u02a7\7e\2\2\u02a7\u02a8\7c\2\2\u02a8\u02a9\7u\2\2\u02a9"+ - "\u02aa\7g\2\2\u02aa\u0095\3\2\2\2\u02ab\u02ac\7u\2\2\u02ac\u02ad\7v\2"+ - "\2\u02ad\u02ae\7t\2\2\u02ae\u02af\7w\2\2\u02af\u02b0\7e\2\2\u02b0\u02b1"+ - "\7v\2\2\u02b1\u0097\3\2\2\2\u02b2\u02b3\7g\2\2\u02b3\u02b4\7p\2\2\u02b4"+ - "\u02b5\7w\2\2\u02b5\u02b6\7o\2\2\u02b6\u0099\3\2\2\2\u02b7\u02b8\7u\2"+ - "\2\u02b8\u02b9\7k\2\2\u02b9\u02ba\7|\2\2\u02ba\u02bb\7g\2\2\u02bb\u02bc"+ - "\7q\2\2\u02bc\u02bd\7h\2\2\u02bd\u009b\3\2\2\2\u02be\u02bf\7v\2\2\u02bf"+ - "\u02c0\7{\2\2\u02c0\u02c1\7r\2\2\u02c1\u02c2\7g\2\2\u02c2\u02c3\7k\2\2"+ - "\u02c3\u02c4\7f\2\2\u02c4\u009d\3\2\2\2\u02c5\u02c6\7m\2\2\u02c6\u02c7"+ - "\7k\2\2\u02c7\u02c8\7e\2\2\u02c8\u02c9\7m\2\2\u02c9\u02ca\7c\2\2\u02ca"+ - "\u02cb\7u\2\2\u02cb\u02cc\7o\2\2\u02cc\u009f\3\2\2\2\u02cd\u02ce\7t\2"+ - "\2\u02ce\u02cf\7g\2\2\u02cf\u02d0\7u\2\2\u02d0\u02d1\7q\2\2\u02d1\u02d2"+ - "\7w\2\2\u02d2\u02d3\7t\2\2\u02d3\u02d4\7e\2\2\u02d4\u02d5\7g\2\2\u02d5"+ - "\u00a1\3\2\2\2\u02d6\u02d7\7w\2\2\u02d7\u02d8\7u\2\2\u02d8\u02d9\7g\2"+ - "\2\u02d9\u02da\7u\2\2\u02da\u00a3\3\2\2\2\u02db\u02dc\7e\2\2\u02dc\u02dd"+ - "\7n\2\2\u02dd\u02de\7q\2\2\u02de\u02df\7d\2\2\u02df\u02e0\7d\2\2\u02e0"+ - "\u02e1\7g\2\2\u02e1\u02e2\7t\2\2\u02e2\u02e3\7u\2\2\u02e3\u00a5\3\2\2"+ - "\2\u02e4\u02e5\7d\2\2\u02e5\u02e6\7{\2\2\u02e6\u02e7\7v\2\2\u02e7\u02e8"+ - "\7g\2\2\u02e8\u02e9\7u\2\2\u02e9\u00a7\3\2\2\2\u02ea\u02eb\7e\2\2\u02eb"+ - "\u02ec\7{\2\2\u02ec\u02ed\7e\2\2\u02ed\u02ee\7n\2\2\u02ee\u02ef\7g\2\2"+ - "\u02ef\u02f0\7u\2\2\u02f0\u00a9\3\2\2\2\u02f1\u02f2\7#\2\2\u02f2\u00ab"+ - "\3\2\2\2\u02f3\u02f4\7u\2\2\u02f4\u02f5\7k\2\2\u02f5\u02f6\7i\2\2\u02f6"+ - "\u02f7\7p\2\2\u02f7\u02f8\7g\2\2\u02f8\u0302\7f\2\2\u02f9\u02fa\7w\2\2"+ - "\u02fa\u02fb\7p\2\2\u02fb\u02fc\7u\2\2\u02fc\u02fd\7k\2\2\u02fd\u02fe"+ - "\7i\2\2\u02fe\u02ff\7p\2\2\u02ff\u0300\7g\2\2\u0300\u0302\7f\2\2\u0301"+ - "\u02f3\3\2\2\2\u0301\u02f9\3\2\2\2\u0302\u00ad\3\2\2\2\u0303\u0304\7d"+ - "\2\2\u0304\u0305\7{\2\2\u0305\u0306\7v\2\2\u0306\u0329\7g\2\2\u0307\u0308"+ - "\7y\2\2\u0308\u0309\7q\2\2\u0309\u030a\7t\2\2\u030a\u0329\7f\2\2\u030b"+ - "\u030c\7f\2\2\u030c\u030d\7y\2\2\u030d\u030e\7q\2\2\u030e\u030f\7t\2\2"+ - "\u030f\u0329\7f\2\2\u0310\u0311\7d\2\2\u0311\u0312\7q\2\2\u0312\u0313"+ - "\7q\2\2\u0313\u0329\7n\2\2\u0314\u0315\7e\2\2\u0315\u0316\7j\2\2\u0316"+ - "\u0317\7c\2\2\u0317\u0329\7t\2\2\u0318\u0319\7u\2\2\u0319\u031a\7j\2\2"+ - "\u031a\u031b\7q\2\2\u031b\u031c\7t\2\2\u031c\u0329\7v\2\2\u031d\u031e"+ - "\7k\2\2\u031e\u031f\7p\2\2\u031f\u0329\7v\2\2\u0320\u0321\7n\2\2\u0321"+ - "\u0322\7q\2\2\u0322\u0323\7p\2\2\u0323\u0329\7i\2\2\u0324\u0325\7x\2\2"+ - "\u0325\u0326\7q\2\2\u0326\u0327\7k\2\2\u0327\u0329\7f\2\2\u0328\u0303"+ - "\3\2\2\2\u0328\u0307\3\2\2\2\u0328\u030b\3\2\2\2\u0328\u0310\3\2\2\2\u0328"+ - "\u0314\3\2\2\2\u0328\u0318\3\2\2\2\u0328\u031d\3\2\2\2\u0328\u0320\3\2"+ - "\2\2\u0328\u0324\3\2\2\2\u0329\u00af\3\2\2\2\u032a\u032b\7v\2\2\u032b"+ - "\u032c\7t\2\2\u032c\u032d\7w\2\2\u032d\u0334\7g\2\2\u032e\u032f\7h\2\2"+ - "\u032f\u0330\7c\2\2\u0330\u0331\7n\2\2\u0331\u0332\7u\2\2\u0332\u0334"+ - "\7g\2\2\u0333\u032a\3\2\2\2\u0333\u032e\3\2\2\2\u0334\u00b1\3\2\2\2\u0335"+ - "\u0336\7}\2\2\u0336\u0337\7}\2\2\u0337\u033b\3\2\2\2\u0338\u033a\13\2"+ - "\2\2\u0339\u0338\3\2\2\2\u033a\u033d\3\2\2\2\u033b\u033c\3\2\2\2\u033b"+ - "\u0339\3\2\2\2\u033c\u033e\3\2\2\2\u033d\u033b\3\2\2\2\u033e\u033f\7\177"+ - "\2\2\u033f\u0340\7\177\2\2\u0340\u00b3\3\2\2\2\u0341\u0347\7$\2\2\u0342"+ - "\u0343\7^\2\2\u0343\u0346\7$\2\2\u0344\u0346\n\2\2\2\u0345\u0342\3\2\2"+ - "\2\u0345\u0344\3\2\2\2\u0346\u0349\3\2\2\2\u0347\u0345\3\2\2\2\u0347\u0348"+ - "\3\2\2\2\u0348\u034a\3\2\2\2\u0349\u0347\3\2\2\2\u034a\u034c\7$\2\2\u034b"+ - "\u034d\t\3\2\2\u034c\u034b\3\2\2\2\u034c\u034d\3\2\2\2\u034d\u0352\3\2"+ - "\2\2\u034e\u0350\t\4\2\2\u034f\u0351\t\5\2\2\u0350\u034f\3\2\2\2\u0350"+ - "\u0351\3\2\2\2\u0351\u0353\3\2\2\2\u0352\u034e\3\2\2\2\u0352\u0353\3\2"+ - "\2\2\u0353\u0355\3\2\2\2\u0354\u0356\t\3\2\2\u0355\u0354\3\2\2\2\u0355"+ - "\u0356\3\2\2\2\u0356\u0357\3\2\2\2\u0357\u0358\bZ\5\2\u0358\u00b5\3\2"+ - "\2\2\u0359\u035d\7)\2\2\u035a\u035b\7^\2\2\u035b\u035e\t\6\2\2\u035c\u035e"+ - "\n\7\2\2\u035d\u035a\3\2\2\2\u035d\u035c\3\2\2\2\u035e\u035f\3\2\2\2\u035f"+ - "\u0360\7)\2\2\u0360\u00b7\3\2\2\2\u0361\u0364\5\u00ba]\2\u0362\u0364\5"+ - "\u00c2a\2\u0363\u0361\3\2\2\2\u0363\u0362\3\2\2\2\u0364\u00b9\3\2\2\2"+ - "\u0365\u0369\5\u00bc^\2\u0366\u0369\5\u00be_\2\u0367\u0369\5\u00c0`\2"+ - "\u0368\u0365\3\2\2\2\u0368\u0366\3\2\2\2\u0368\u0367\3\2\2\2\u0369\u00bb"+ - "\3\2\2\2\u036a\u0370\7\'\2\2\u036b\u036c\7\62\2\2\u036c\u0370\7d\2\2\u036d"+ - "\u036e\7\62\2\2\u036e\u0370\7D\2\2\u036f\u036a\3\2\2\2\u036f\u036b\3\2"+ - "\2\2\u036f\u036d\3\2\2\2\u0370\u0374\3\2\2\2\u0371\u0373\5\u00cae\2\u0372"+ - "\u0371\3\2\2\2\u0373\u0376\3\2\2\2\u0374\u0372\3\2\2\2\u0374\u0375\3\2"+ - "\2\2\u0375\u0377\3\2\2\2\u0376\u0374\3\2\2\2\u0377\u0379\7\60\2\2\u0378"+ - "\u037a\5\u00cae\2\u0379\u0378\3\2\2\2\u037a\u037b\3\2\2\2\u037b\u0379"+ - "\3\2\2\2\u037b\u037c\3\2\2\2\u037c\u00bd\3\2\2\2\u037d\u037f\5\u00ccf"+ - "\2\u037e\u037d\3\2\2\2\u037f\u0382\3\2\2\2\u0380\u037e\3\2\2\2\u0380\u0381"+ - "\3\2\2\2\u0381\u0383\3\2\2\2\u0382\u0380\3\2\2\2\u0383\u0385\7\60\2\2"+ - "\u0384\u0386\5\u00ccf\2\u0385\u0384\3\2\2\2\u0386\u0387\3\2\2\2\u0387"+ - "\u0385\3\2\2\2\u0387\u0388\3\2\2\2\u0388\u00bf\3\2\2\2\u0389\u038f\7&"+ - "\2\2\u038a\u038b\7\62\2\2\u038b\u038f\7z\2\2\u038c\u038d\7\62\2\2\u038d"+ - "\u038f\7Z\2\2\u038e\u0389\3\2\2\2\u038e\u038a\3\2\2\2\u038e\u038c\3\2"+ - "\2\2\u038f\u0393\3\2\2\2\u0390\u0392\5\u00ceg\2\u0391\u0390\3\2\2\2\u0392"+ - "\u0395\3\2\2\2\u0393\u0391\3\2\2\2\u0393\u0394\3\2\2\2\u0394\u0396\3\2"+ - "\2\2\u0395\u0393\3\2\2\2\u0396\u0398\7\60\2\2\u0397\u0399\5\u00ceg\2\u0398"+ - "\u0397\3\2\2\2\u0399\u039a\3\2\2\2\u039a\u0398\3\2\2\2\u039a\u039b\3\2"+ - "\2\2\u039b\u00c1\3\2\2\2\u039c\u03a0\5\u00c6c\2\u039d\u03a0\5\u00c8d\2"+ - "\u039e\u03a0\5\u00c4b\2\u039f\u039c\3\2\2\2\u039f\u039d\3\2\2\2\u039f"+ - "\u039e\3\2\2\2\u03a0\u03a4\3\2\2\2\u03a1\u03a2\t\b\2\2\u03a2\u03a5\t\t"+ - "\2\2\u03a3\u03a5\7n\2\2\u03a4\u03a1\3\2\2\2\u03a4\u03a3\3\2\2\2\u03a4"+ - "\u03a5\3\2\2\2\u03a5\u00c3\3\2\2\2\u03a6\u03a7\7\62\2\2\u03a7\u03a9\t"+ - "\n\2\2\u03a8\u03aa\5\u00cae\2\u03a9\u03a8\3\2\2\2\u03aa\u03ab\3\2\2\2"+ - "\u03ab\u03a9\3\2\2\2\u03ab\u03ac\3\2\2\2\u03ac\u03b4\3\2\2\2\u03ad\u03af"+ - "\7\'\2\2\u03ae\u03b0\5\u00cae\2\u03af\u03ae\3\2\2\2\u03b0\u03b1\3\2\2"+ - "\2\u03b1\u03af\3\2\2\2\u03b1\u03b2\3\2\2\2\u03b2\u03b4\3\2\2\2\u03b3\u03a6"+ - "\3\2\2\2\u03b3\u03ad\3\2\2\2\u03b4\u00c5\3\2\2\2\u03b5\u03b7\5\u00ccf"+ - "\2\u03b6\u03b5\3\2\2\2\u03b7\u03b8\3\2\2\2\u03b8\u03b6\3\2\2\2\u03b8\u03b9"+ - "\3\2\2\2\u03b9\u00c7\3\2\2\2\u03ba\u03c0\7&\2\2\u03bb\u03bc\7\62\2\2\u03bc"+ - "\u03c0\7z\2\2\u03bd\u03be\7\62\2\2\u03be\u03c0\7Z\2\2\u03bf\u03ba\3\2"+ - "\2\2\u03bf\u03bb\3\2\2\2\u03bf\u03bd\3\2\2\2\u03c0\u03c2\3\2\2\2\u03c1"+ - "\u03c3\5\u00ceg\2\u03c2\u03c1\3\2\2\2\u03c3\u03c4\3\2\2\2\u03c4\u03c2"+ - "\3\2\2\2\u03c4\u03c5\3\2\2\2\u03c5\u00c9\3\2\2\2\u03c6\u03c7\t\13\2\2"+ - "\u03c7\u00cb\3\2\2\2\u03c8\u03c9\t\f\2\2\u03c9\u00cd\3\2\2\2\u03ca\u03cb"+ - "\t\r\2\2\u03cb\u00cf\3\2\2\2\u03cc\u03d0\5\u00d2i\2\u03cd\u03cf\5\u00d4"+ - "j\2\u03ce\u03cd\3\2\2\2\u03cf\u03d2\3\2\2\2\u03d0\u03ce\3\2\2\2\u03d0"+ - "\u03d1\3\2\2\2\u03d1\u03d3\3\2\2\2\u03d2\u03d0\3\2\2\2\u03d3\u03d4\bh"+ - "\6\2\u03d4\u00d1\3\2\2\2\u03d5\u03d6\t\16\2\2\u03d6\u00d3\3\2\2\2\u03d7"+ - "\u03d8\t\17\2\2\u03d8\u00d5\3\2\2\2\u03d9\u03db\t\20\2\2\u03da\u03d9\3"+ - "\2\2\2\u03db\u03dc\3\2\2\2\u03dc\u03da\3\2\2\2\u03dc\u03dd\3\2\2\2\u03dd"+ - "\u03de\3\2\2\2\u03de\u03df\bk\7\2\u03df\u00d7\3\2\2\2\u03e0\u03e1\7\61"+ - "\2\2\u03e1\u03e2\7\61\2\2\u03e2\u03e6\3\2\2\2\u03e3\u03e5\n\21\2\2\u03e4"+ - "\u03e3\3\2\2\2\u03e5\u03e8\3\2\2\2\u03e6\u03e4\3\2\2\2\u03e6\u03e7\3\2"+ - "\2\2\u03e7\u03e9\3\2\2\2\u03e8\u03e6\3\2\2\2\u03e9\u03ea\bl\b\2\u03ea"+ - "\u00d9\3\2\2\2\u03eb\u03ec\7\61\2\2\u03ec\u03ed\7,\2\2\u03ed\u03f1\3\2"+ - "\2\2\u03ee\u03f0\13\2\2\2\u03ef\u03ee\3\2\2\2\u03f0\u03f3\3\2\2\2\u03f1"+ - "\u03f2\3\2\2\2\u03f1\u03ef\3\2\2\2\u03f2\u03f4\3\2\2\2\u03f3\u03f1\3\2"+ - "\2\2\u03f4\u03f5\7,\2\2\u03f5\u03f6\7\61\2\2\u03f6\u03f7\3\2\2\2\u03f7"+ - "\u03f8\bm\b\2\u03f8\u00db\3\2\2\2\u03f9\u03fa\7\60\2\2\u03fa\u03fb\7d"+ - "\2\2\u03fb\u03fc\7{\2\2\u03fc\u03fd\7v\2\2\u03fd\u03fe\7g\2\2\u03fe\u00dd"+ - "\3\2\2\2\u03ff\u0400\7d\2\2\u0400\u0401\7t\2\2\u0401\u04de\7m\2\2\u0402"+ - "\u0403\7q\2\2\u0403\u0404\7t\2\2\u0404\u04de\7c\2\2\u0405\u0406\7m\2\2"+ - "\u0406\u0407\7k\2\2\u0407\u04de\7n\2\2\u0408\u0409\7u\2\2\u0409\u040a"+ - "\7n\2\2\u040a\u04de\7q\2\2\u040b\u040c\7p\2\2\u040c\u040d\7q\2\2\u040d"+ - "\u04de\7r\2\2\u040e\u040f\7c\2\2\u040f\u0410\7u\2\2\u0410\u04de\7n\2\2"+ - "\u0411\u0412\7r\2\2\u0412\u0413\7j\2\2\u0413\u04de\7r\2\2\u0414\u0415"+ - "\7c\2\2\u0415\u0416\7p\2\2\u0416\u04de\7e\2\2\u0417\u0418\7d\2\2\u0418"+ - "\u0419\7r\2\2\u0419\u04de\7n\2\2\u041a\u041b\7e\2\2\u041b\u041c\7n\2\2"+ - "\u041c\u04de\7e\2\2\u041d\u041e\7l\2\2\u041e\u041f\7u\2\2\u041f\u04de"+ - "\7t\2\2\u0420\u0421\7c\2\2\u0421\u0422\7p\2\2\u0422\u04de\7f\2\2\u0423"+ - "\u0424\7t\2\2\u0424\u0425\7n\2\2\u0425\u04de\7c\2\2\u0426\u0427\7d\2\2"+ - "\u0427\u0428\7k\2\2\u0428\u04de\7v\2\2\u0429\u042a\7t\2\2\u042a\u042b"+ - "\7q\2\2\u042b\u04de\7n\2\2\u042c\u042d\7r\2\2\u042d\u042e\7n\2\2\u042e"+ - "\u04de\7c\2\2\u042f\u0430\7r\2\2\u0430\u0431\7n\2\2\u0431\u04de\7r\2\2"+ - "\u0432\u0433\7d\2\2\u0433\u0434\7o\2\2\u0434\u04de\7k\2\2\u0435\u0436"+ - "\7u\2\2\u0436\u0437\7g\2\2\u0437\u04de\7e\2\2\u0438\u0439\7t\2\2\u0439"+ - "\u043a\7v\2\2\u043a\u04de\7k\2\2\u043b\u043c\7g\2\2\u043c\u043d\7q\2\2"+ - "\u043d\u04de\7t\2\2\u043e\u043f\7u\2\2\u043f\u0440\7t\2\2\u0440\u04de"+ - "\7g\2\2\u0441\u0442\7n\2\2\u0442\u0443\7u\2\2\u0443\u04de\7t\2\2\u0444"+ - "\u0445\7r\2\2\u0445\u0446\7j\2\2\u0446\u04de\7c\2\2\u0447\u0448\7c\2\2"+ - "\u0448\u0449\7n\2\2\u0449\u04de\7t\2\2\u044a\u044b\7l\2\2\u044b\u044c"+ - "\7o\2\2\u044c\u04de\7r\2\2\u044d\u044e\7d\2\2\u044e\u044f\7x\2\2\u044f"+ - "\u04de\7e\2\2\u0450\u0451\7e\2\2\u0451\u0452\7n\2\2\u0452\u04de\7k\2\2"+ - "\u0453\u0454\7t\2\2\u0454\u0455\7v\2\2\u0455\u04de\7u\2\2\u0456\u0457"+ - "\7c\2\2\u0457\u0458\7f\2\2\u0458\u04de\7e\2\2\u0459\u045a\7t\2\2\u045a"+ - "\u045b\7t\2\2\u045b\u04de\7c\2\2\u045c\u045d\7d\2\2\u045d\u045e\7x\2\2"+ - "\u045e\u04de\7u\2\2\u045f\u0460\7u\2\2\u0460\u0461\7g\2\2\u0461\u04de"+ - "\7k\2\2\u0462\u0463\7u\2\2\u0463\u0464\7c\2\2\u0464\u04de\7z\2\2\u0465"+ - "\u0466\7u\2\2\u0466\u0467\7v\2\2\u0467\u04de\7{\2\2\u0468\u0469\7u\2\2"+ - "\u0469\u046a\7v\2\2\u046a\u04de\7c\2\2\u046b\u046c\7u\2\2\u046c\u046d"+ - "\7v\2\2\u046d\u04de\7z\2\2\u046e\u046f\7f\2\2\u046f\u0470\7g\2\2\u0470"+ - "\u04de\7{\2\2\u0471\u0472\7v\2\2\u0472\u0473\7z\2\2\u0473\u04de\7c\2\2"+ - "\u0474\u0475\7z\2\2\u0475\u0476\7c\2\2\u0476\u04de\7c\2\2\u0477\u0478"+ - "\7d\2\2\u0478\u0479\7e\2\2\u0479\u04de\7e\2\2\u047a\u047b\7c\2\2\u047b"+ - "\u047c\7j\2\2\u047c\u04de\7z\2\2\u047d\u047e\7v\2\2\u047e\u047f\7{\2\2"+ - "\u047f\u04de\7c\2\2\u0480\u0481\7v\2\2\u0481\u0482\7z\2\2\u0482\u04de"+ - "\7u\2\2\u0483\u0484\7v\2\2\u0484\u0485\7c\2\2\u0485\u04de\7u\2\2\u0486"+ - "\u0487\7u\2\2\u0487\u0488\7j\2\2\u0488\u04de\7{\2\2\u0489\u048a\7u\2\2"+ - "\u048a\u048b\7j\2\2\u048b\u04de\7z\2\2\u048c\u048d\7n\2\2\u048d\u048e"+ - "\7f\2\2\u048e\u04de\7{\2\2\u048f\u0490\7n\2\2\u0490\u0491\7f\2\2\u0491"+ - "\u04de\7c\2\2\u0492\u0493\7n\2\2\u0493\u0494\7f\2\2\u0494\u04de\7z\2\2"+ - "\u0495\u0496\7n\2\2\u0496\u0497\7c\2\2\u0497\u04de\7z\2\2\u0498\u0499"+ - "\7v\2\2\u0499\u049a\7c\2\2\u049a\u04de\7{\2\2\u049b\u049c\7v\2\2\u049c"+ - "\u049d\7c\2\2\u049d\u04de\7z\2\2\u049e\u049f\7d\2\2\u049f\u04a0\7e\2\2"+ - "\u04a0\u04de\7u\2\2\u04a1\u04a2\7e\2\2\u04a2\u04a3\7n\2\2\u04a3\u04de"+ - "\7x\2\2\u04a4\u04a5\7v\2\2\u04a5\u04a6\7u\2\2\u04a6\u04de\7z\2\2\u04a7"+ - "\u04a8\7n\2\2\u04a8\u04a9\7c\2\2\u04a9\u04de\7u\2\2\u04aa\u04ab\7e\2\2"+ - "\u04ab\u04ac\7r\2\2\u04ac\u04de\7{\2\2\u04ad\u04ae\7e\2\2\u04ae\u04af"+ - "\7o\2\2\u04af\u04de\7r\2\2\u04b0\u04b1\7e\2\2\u04b1\u04b2\7r\2\2\u04b2"+ - "\u04de\7z\2\2\u04b3\u04b4\7f\2\2\u04b4\u04b5\7e\2\2\u04b5\u04de\7r\2\2"+ - "\u04b6\u04b7\7f\2\2\u04b7\u04b8\7g\2\2\u04b8\u04de\7e\2\2\u04b9\u04ba"+ - "\7k\2\2\u04ba\u04bb\7p\2\2\u04bb\u04de\7e\2\2\u04bc\u04bd\7c\2\2\u04bd"+ - "\u04be\7z\2\2\u04be\u04de\7u\2\2\u04bf\u04c0\7d\2\2\u04c0\u04c1\7p\2\2"+ - "\u04c1\u04de\7g\2\2\u04c2\u04c3\7e\2\2\u04c3\u04c4\7n\2\2\u04c4\u04de"+ - "\7f\2\2\u04c5\u04c6\7u\2\2\u04c6\u04c7\7d\2\2\u04c7\u04de\7e\2\2\u04c8"+ - "\u04c9\7k\2\2\u04c9\u04ca\7u\2\2\u04ca\u04de\7e\2\2\u04cb\u04cc\7k\2\2"+ - "\u04cc\u04cd\7p\2\2\u04cd\u04de\7z\2\2\u04ce\u04cf\7d\2\2\u04cf\u04d0"+ - "\7g\2\2\u04d0\u04de\7s\2\2\u04d1\u04d2\7u\2\2\u04d2\u04d3\7g\2\2\u04d3"+ - "\u04de\7f\2\2\u04d4\u04d5\7f\2\2\u04d5\u04d6\7g\2\2\u04d6\u04de\7z\2\2"+ - "\u04d7\u04d8\7k\2\2\u04d8\u04d9\7p\2\2\u04d9\u04de\7{\2\2\u04da\u04db"+ - "\7t\2\2\u04db\u04dc\7q\2\2\u04dc\u04de\7t\2\2\u04dd\u03ff\3\2\2\2\u04dd"+ - "\u0402\3\2\2\2\u04dd\u0405\3\2\2\2\u04dd\u0408\3\2\2\2\u04dd\u040b\3\2"+ - "\2\2\u04dd\u040e\3\2\2\2\u04dd\u0411\3\2\2\2\u04dd\u0414\3\2\2\2\u04dd"+ - "\u0417\3\2\2\2\u04dd\u041a\3\2\2\2\u04dd\u041d\3\2\2\2\u04dd\u0420\3\2"+ - "\2\2\u04dd\u0423\3\2\2\2\u04dd\u0426\3\2\2\2\u04dd\u0429\3\2\2\2\u04dd"+ - "\u042c\3\2\2\2\u04dd\u042f\3\2\2\2\u04dd\u0432\3\2\2\2\u04dd\u0435\3\2"+ - "\2\2\u04dd\u0438\3\2\2\2\u04dd\u043b\3\2\2\2\u04dd\u043e\3\2\2\2\u04dd"+ - "\u0441\3\2\2\2\u04dd\u0444\3\2\2\2\u04dd\u0447\3\2\2\2\u04dd\u044a\3\2"+ - "\2\2\u04dd\u044d\3\2\2\2\u04dd\u0450\3\2\2\2\u04dd\u0453\3\2\2\2\u04dd"+ - "\u0456\3\2\2\2\u04dd\u0459\3\2\2\2\u04dd\u045c\3\2\2\2\u04dd\u045f\3\2"+ - "\2\2\u04dd\u0462\3\2\2\2\u04dd\u0465\3\2\2\2\u04dd\u0468\3\2\2\2\u04dd"+ - "\u046b\3\2\2\2\u04dd\u046e\3\2\2\2\u04dd\u0471\3\2\2\2\u04dd\u0474\3\2"+ - "\2\2\u04dd\u0477\3\2\2\2\u04dd\u047a\3\2\2\2\u04dd\u047d\3\2\2\2\u04dd"+ - "\u0480\3\2\2\2\u04dd\u0483\3\2\2\2\u04dd\u0486\3\2\2\2\u04dd\u0489\3\2"+ - "\2\2\u04dd\u048c\3\2\2\2\u04dd\u048f\3\2\2\2\u04dd\u0492\3\2\2\2\u04dd"+ - "\u0495\3\2\2\2\u04dd\u0498\3\2\2\2\u04dd\u049b\3\2\2\2\u04dd\u049e\3\2"+ - "\2\2\u04dd\u04a1\3\2\2\2\u04dd\u04a4\3\2\2\2\u04dd\u04a7\3\2\2\2\u04dd"+ - "\u04aa\3\2\2\2\u04dd\u04ad\3\2\2\2\u04dd\u04b0\3\2\2\2\u04dd\u04b3\3\2"+ - "\2\2\u04dd\u04b6\3\2\2\2\u04dd\u04b9\3\2\2\2\u04dd\u04bc\3\2\2\2\u04dd"+ - "\u04bf\3\2\2\2\u04dd\u04c2\3\2\2\2\u04dd\u04c5\3\2\2\2\u04dd\u04c8\3\2"+ - "\2\2\u04dd\u04cb\3\2\2\2\u04dd\u04ce\3\2\2\2\u04dd\u04d1\3\2\2\2\u04dd"+ - "\u04d4\3\2\2\2\u04dd\u04d7\3\2\2\2\u04dd\u04da\3\2\2\2\u04de\u00df\3\2"+ - "\2\2\u04df\u04e0\7%\2\2\u04e0\u00e1\3\2\2\2\u04e1\u04e2\7<\2\2\u04e2\u00e3"+ - "\3\2\2\2\u04e3\u04e4\7.\2\2\u04e4\u00e5\3\2\2\2\u04e5\u04e6\7*\2\2\u04e6"+ - "\u00e7\3\2\2\2\u04e7\u04e8\7+\2\2\u04e8\u00e9\3\2\2\2\u04e9\u04ea\7]\2"+ - "\2\u04ea\u00eb\3\2\2\2\u04eb\u04ec\7_\2\2\u04ec\u00ed\3\2\2\2\u04ed\u04ee"+ - "\7\60\2\2\u04ee\u00ef\3\2\2\2\u04ef\u04f0\7>\2\2\u04f0\u04f1\7>\2\2\u04f1"+ - "\u00f1\3\2\2\2\u04f2\u04f3\7@\2\2\u04f3\u04f4\7@\2\2\u04f4\u00f3\3\2\2"+ - "\2\u04f5\u04f6\7-\2\2\u04f6\u00f5\3\2\2\2\u04f7\u04f8\7/\2\2\u04f8\u00f7"+ - "\3\2\2\2\u04f9\u04fa\7>\2\2\u04fa\u00f9\3\2\2\2\u04fb\u04fc\7@\2\2\u04fc"+ - "\u00fb\3\2\2\2\u04fd\u04fe\7,\2\2\u04fe\u00fd\3\2\2\2\u04ff\u0500\7\61"+ - "\2\2\u0500\u00ff\3\2\2\2\u0501\u0502\7}\2\2\u0502\u0503\b\u0080\t\2\u0503"+ - "\u0101\3\2\2\2\u0504\u0505\7\177\2\2\u0505\u0506\b\u0081\n\2\u0506\u0103"+ - "\3\2\2\2\u0507\u050a\5\u0106\u0083\2\u0508\u050a\5\u010e\u0087\2\u0509"+ - "\u0507\3\2\2\2\u0509\u0508\3\2\2\2\u050a\u0105\3\2\2\2\u050b\u050f\5\u0108"+ - "\u0084\2\u050c\u050f\5\u010a\u0085\2\u050d\u050f\5\u010c\u0086\2\u050e"+ - "\u050b\3\2\2\2\u050e\u050c\3\2\2\2\u050e\u050d\3\2\2\2\u050f\u0107\3\2"+ - "\2\2\u0510\u0514\7\'\2\2\u0511\u0513\5\u0116\u008b\2\u0512\u0511\3\2\2"+ - "\2\u0513\u0516\3\2\2\2\u0514\u0512\3\2\2\2\u0514\u0515\3\2\2\2\u0515\u0517"+ - "\3\2\2\2\u0516\u0514\3\2\2\2\u0517\u0519\7\60\2\2\u0518\u051a\5\u0116"+ - "\u008b\2\u0519\u0518\3\2\2\2\u051a\u051b\3\2\2\2\u051b\u0519\3\2\2\2\u051b"+ - "\u051c\3\2\2\2\u051c\u0109\3\2\2\2\u051d\u051f\5\u0118\u008c\2\u051e\u051d"+ - "\3\2\2\2\u051f\u0522\3\2\2\2\u0520\u051e\3\2\2\2\u0520\u0521\3\2\2\2\u0521"+ - "\u0523\3\2\2\2\u0522\u0520\3\2\2\2\u0523\u0525\7\60\2\2\u0524\u0526\5"+ - "\u0118\u008c\2\u0525\u0524\3\2\2\2\u0526\u0527\3\2\2\2\u0527\u0525\3\2"+ - "\2\2\u0527\u0528\3\2\2\2\u0528\u010b\3\2\2\2\u0529\u052d\7&\2\2\u052a"+ - "\u052c\5\u011a\u008d\2\u052b\u052a\3\2\2\2\u052c\u052f\3\2\2\2\u052d\u052b"+ - "\3\2\2\2\u052d\u052e\3\2\2\2\u052e\u0530\3\2\2\2\u052f\u052d\3\2\2\2\u0530"+ - "\u0532\7\60\2\2\u0531\u0533\5\u011a\u008d\2\u0532\u0531\3\2\2\2\u0533"+ - "\u0534\3\2\2\2\u0534\u0532\3\2\2\2\u0534\u0535\3\2\2\2\u0535\u010d\3\2"+ - "\2\2\u0536\u053a\5\u0112\u0089\2\u0537\u053a\5\u0114\u008a\2\u0538\u053a"+ - "\5\u0110\u0088\2\u0539\u0536\3\2\2\2\u0539\u0537\3\2\2\2\u0539\u0538\3"+ - "\2\2\2\u053a\u010f\3\2\2\2\u053b\u053d\7\'\2\2\u053c\u053e\5\u0116\u008b"+ - "\2\u053d\u053c\3\2\2\2\u053e\u053f\3\2\2\2\u053f\u053d\3\2\2\2\u053f\u0540"+ - "\3\2\2\2\u0540\u0111\3\2\2\2\u0541\u0543\5\u0118\u008c\2\u0542\u0541\3"+ - "\2\2\2\u0543\u0544\3\2\2\2\u0544\u0542\3\2\2\2\u0544\u0545\3\2\2\2\u0545"+ - "\u0113\3\2\2\2\u0546\u0548\7&\2\2\u0547\u0549\5\u011a\u008d\2\u0548\u0547"+ + "\4\u0097\t\u0097\4\u0098\t\u0098\4\u0099\t\u0099\3\2\3\2\3\2\3\3\3\3\3"+ + "\4\3\4\3\5\3\5\3\6\3\6\3\7\3\7\3\b\3\b\3\t\3\t\3\n\3\n\3\13\3\13\3\13"+ + "\3\f\3\f\3\r\3\r\3\16\3\16\3\16\3\17\3\17\3\20\3\20\3\21\3\21\3\22\3\22"+ + "\3\23\3\23\3\24\3\24\3\24\3\25\3\25\3\25\3\26\3\26\3\27\3\27\3\30\3\30"+ + "\3\31\3\31\3\32\3\32\3\32\3\33\3\33\3\33\3\34\3\34\3\34\3\35\3\35\3\35"+ + "\3\36\3\36\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%\5%\u019e"+ + "\n%\3&\3&\3&\3&\3&\3&\3&\3&\3&\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3(\3(\3"+ + "(\3(\3(\3(\3(\3(\3)\3)\3)\3)\3)\3)\3)\3)\3*\3*\3*\3+\3+\3+\3+\3+\3+\3"+ + "+\3,\3,\3,\3,\3,\3-\3-\3-\3-\3.\3.\3.\3.\3.\3.\3.\3.\3.\3/\3/\3/\3/\3"+ + "/\3/\3/\3/\3/\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\61\3\61\3"+ + "\61\3\61\3\61\3\61\3\62\3\62\3\62\3\62\3\62\3\62\3\62\3\63\3\63\3\63\3"+ + "\63\3\63\3\63\3\63\3\64\3\64\3\64\3\64\3\64\3\64\3\65\3\65\3\65\3\65\3"+ + "\65\3\65\3\65\3\65\3\65\3\66\3\66\3\66\3\66\3\66\3\66\3\66\3\66\3\66\3"+ + "\66\3\66\3\66\3\66\3\66\3\67\3\67\3\67\3\67\3\67\3\67\3\67\3\67\3\67\3"+ + "\67\38\38\38\38\38\39\39\39\39\39\39\3:\3:\3:\3:\3:\3:\3;\3;\3;\3;\3;"+ + "\3;\3;\3;\3;\3<\3<\3<\3<\3<\3<\3<\3=\3=\3=\3=\3=\3=\3=\3=\3=\3>\3>\3>"+ + "\3>\3>\3>\3>\3>\3>\3>\3>\3>\3>\3>\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3@\3@"+ + "\3@\3@\3@\3@\3@\3@\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A"+ + "\3A\3A\3A\5A\u0288\nA\3B\3B\3B\3C\3C\3C\3C\3C\3D\3D\3D\3D\3D\3D\3E\3E"+ + "\3E\3F\3F\3F\3F\3G\3G\3G\3G\3G\3G\3G\3H\3H\3H\3H\3H\3H\3H\3I\3I\3I\3I"+ + "\3I\3I\3J\3J\3J\3J\3J\3J\3J\3J\3J\3K\3K\3K\3K\3K\3K\3L\3L\3L\3L\3L\3L"+ + "\3L\3L\3M\3M\3M\3M\3M\3N\3N\3N\3N\3N\3N\3N\3O\3O\3O\3O\3O\3P\3P\3P\3P"+ + "\3P\3P\3P\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3R\3R\3R\3R\3R\3R\3R\3R\3S\3S\3S\3S\3S"+ + "\3S\3S\3S\3S\3T\3T\3T\3T\3T\3U\3U\3U\3U\3U\3U\3U\3U\3U\3V\3V\3V\3V\3V"+ + "\3V\3W\3W\3W\3W\3W\3W\3W\3X\3X\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y"+ + "\3Y\5Y\u0325\nY\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z"+ + "\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\5Z\u034c\nZ"+ + "\3[\3[\3[\3[\3[\3[\3[\3[\3[\5[\u0357\n[\3\\\3\\\3\\\3\\\7\\\u035d\n\\"+ + "\f\\\16\\\u0360\13\\\3\\\3\\\3\\\3]\3]\3]\3]\7]\u0369\n]\f]\16]\u036c"+ + "\13]\3]\3]\5]\u0370\n]\3]\3]\5]\u0374\n]\5]\u0376\n]\3]\5]\u0379\n]\3"+ + "]\3]\3^\3^\3^\3^\5^\u0381\n^\3^\3^\3_\3_\5_\u0387\n_\3`\3`\3`\5`\u038c"+ + "\n`\3a\3a\3a\3a\3a\5a\u0393\na\3a\7a\u0396\na\fa\16a\u0399\13a\3a\3a\6"+ + "a\u039d\na\ra\16a\u039e\3b\7b\u03a2\nb\fb\16b\u03a5\13b\3b\3b\6b\u03a9"+ + "\nb\rb\16b\u03aa\3c\3c\3c\3c\3c\5c\u03b2\nc\3c\7c\u03b5\nc\fc\16c\u03b8"+ + "\13c\3c\3c\6c\u03bc\nc\rc\16c\u03bd\3d\3d\3d\5d\u03c3\nd\3d\3d\3d\5d\u03c8"+ + "\nd\3e\3e\3e\6e\u03cd\ne\re\16e\u03ce\3e\3e\6e\u03d3\ne\re\16e\u03d4\5"+ + "e\u03d7\ne\3f\6f\u03da\nf\rf\16f\u03db\3g\3g\3g\3g\3g\5g\u03e3\ng\3g\6"+ + "g\u03e6\ng\rg\16g\u03e7\3h\3h\3i\3i\3j\3j\3k\3k\7k\u03f2\nk\fk\16k\u03f5"+ + "\13k\3k\3k\3l\3l\3m\3m\3n\6n\u03fe\nn\rn\16n\u03ff\3n\3n\3o\3o\3o\3o\7"+ + "o\u0408\no\fo\16o\u040b\13o\3o\3o\3p\3p\3p\3p\7p\u0413\np\fp\16p\u0416"+ + "\13p\3p\3p\3p\3p\3p\3q\3q\3q\3q\3q\3q\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3"+ + "r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3"+ + "r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3"+ + "r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3"+ + "r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3"+ + "r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3"+ + "r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3"+ + "r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3"+ + "r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3"+ + "r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3r\3"+ + "r\3r\3r\3r\3r\5r\u0501\nr\3s\3s\3t\3t\3u\3u\3v\3v\3w\3w\3x\3x\3y\3y\3"+ + "z\3z\3{\3{\3{\3|\3|\3|\3}\3}\3~\3~\3\177\3\177\3\u0080\3\u0080\3\u0081"+ + "\3\u0081\3\u0082\3\u0082\3\u0083\3\u0083\3\u0083\3\u0084\3\u0084\3\u0084"+ + "\3\u0085\3\u0085\5\u0085\u052d\n\u0085\3\u0086\3\u0086\3\u0086\5\u0086"+ + "\u0532\n\u0086\3\u0087\3\u0087\7\u0087\u0536\n\u0087\f\u0087\16\u0087"+ + "\u0539\13\u0087\3\u0087\3\u0087\6\u0087\u053d\n\u0087\r\u0087\16\u0087"+ + "\u053e\3\u0088\7\u0088\u0542\n\u0088\f\u0088\16\u0088\u0545\13\u0088\3"+ + "\u0088\3\u0088\6\u0088\u0549\n\u0088\r\u0088\16\u0088\u054a\3\u0089\3"+ + "\u0089\7\u0089\u054f\n\u0089\f\u0089\16\u0089\u0552\13\u0089\3\u0089\3"+ + "\u0089\6\u0089\u0556\n\u0089\r\u0089\16\u0089\u0557\3\u008a\3\u008a\3"+ + "\u008a\5\u008a\u055d\n\u008a\3\u008b\3\u008b\6\u008b\u0561\n\u008b\r\u008b"+ + "\16\u008b\u0562\3\u008c\6\u008c\u0566\n\u008c\r\u008c\16\u008c\u0567\3"+ + "\u008d\3\u008d\6\u008d\u056c\n\u008d\r\u008d\16\u008d\u056d\3\u008e\3"+ + "\u008e\3\u008f\3\u008f\3\u0090\3\u0090\3\u0091\3\u0091\3\u0091\3\u0091"+ + "\5\u0091\u057a\n\u0091\3\u0091\3\u0091\3\u0092\3\u0092\6\u0092\u0580\n"+ + "\u0092\r\u0092\16\u0092\u0581\3\u0093\3\u0093\7\u0093\u0586\n\u0093\f"+ + "\u0093\16\u0093\u0589\13\u0093\3\u0094\3\u0094\7\u0094\u058d\n\u0094\f"+ + "\u0094\16\u0094\u0590\13\u0094\3\u0095\3\u0095\3\u0096\3\u0096\3\u0097"+ + "\6\u0097\u0597\n\u0097\r\u0097\16\u0097\u0598\3\u0097\3\u0097\3\u0098"+ + "\3\u0098\3\u0098\3\u0098\7\u0098\u05a1\n\u0098\f\u0098\16\u0098\u05a4"+ + "\13\u0098\3\u0098\3\u0098\3\u0099\3\u0099\3\u0099\3\u0099\7\u0099\u05ac"+ + "\n\u0099\f\u0099\16\u0099\u05af\13\u0099\3\u0099\3\u0099\3\u0099\3\u0099"+ + "\3\u0099\5\u035e\u0414\u05ad\2\u009a\4\4\6\5\b\6\n\7\f\b\16\t\20\n\22"+ + "\13\24\f\26\r\30\16\32\17\34\20\36\21 \22\"\23$\24&\25(\26*\27,\30.\31"+ + "\60\32\62\33\64\34\66\358\36:\37< >!@\"B#D$F%H&J\'L(N)P*R+T,V-X.Z/\\\60"+ + "^\61`\62b\63d\64f\65h\66j\67l8n9p:r;tz?|@~A\u0080B\u0082C\u0084D"+ + "\u0086E\u0088F\u008aG\u008cH\u008eI\u0090J\u0092K\u0094L\u0096M\u0098"+ + "N\u009aO\u009cP\u009eQ\u00a0R\u00a2S\u00a4T\u00a6U\u00a8V\u00aaW\u00ac"+ + "X\u00aeY\u00b0Z\u00b2[\u00b4\\\u00b6]\u00b8^\u00ba_\u00bc`\u00bea\u00c0"+ + "b\u00c2c\u00c4d\u00c6e\u00c8f\u00cag\u00cch\u00cei\u00d0\2\u00d2\2\u00d4"+ + "\2\u00d6j\u00d8\2\u00da\2\u00dck\u00del\u00e0m\u00e2n\u00e4o\u00e6p\u00e8"+ + "q\u00ear\u00ecs\u00eet\u00f0u\u00f2v\u00f4w\u00f6x\u00f8y\u00faz\u00fc"+ + "{\u00fe|\u0100}\u0102~\u0104\177\u0106\u0080\u0108\u0081\u010a\u0082\u010c"+ + "\u0083\u010e\u0084\u0110\u0085\u0112\u0086\u0114\u0087\u0116\u0088\u0118"+ + "\u0089\u011a\u008a\u011c\2\u011e\2\u0120\2\u0122\u008b\u0124\u008c\u0126"+ + "\u008d\u0128\u008e\u012a\2\u012c\2\u012e\u008f\u0130\u0090\u0132\u0091"+ + "\4\2\3\23\3\2$$\3\2||\4\2rruu\4\2ooww\7\2$$))hhpptt\3\2))\4\2uuww\7\2"+ + "dfkknnuuyy\4\2DDdd\3\2\62\63\3\2\62;\5\2\62;CHch\5\2C\\aac|\6\2\62;C\\"+ + "aac|\6\2\13\f\17\17\"\"\u00a2\u00a2\4\2\f\f\17\17\4\2--//\2\u063f\2\4"+ + "\3\2\2\2\2\6\3\2\2\2\2\b\3\2\2\2\2\n\3\2\2\2\2\f\3\2\2\2\2\16\3\2\2\2"+ + "\2\20\3\2\2\2\2\22\3\2\2\2\2\24\3\2\2\2\2\26\3\2\2\2\2\30\3\2\2\2\2\32"+ + "\3\2\2\2\2\34\3\2\2\2\2\36\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\60\3\2\2\2\2\62"+ + "\3\2\2\2\2\64\3\2\2\2\2\66\3\2\2\2\28\3\2\2\2\2:\3\2\2\2\2<\3\2\2\2\2"+ + ">\3\2\2\2\2@\3\2\2\2\2B\3\2\2\2\2D\3\2\2\2\2F\3\2\2\2\2H\3\2\2\2\2J\3"+ + "\2\2\2\2L\3\2\2\2\2N\3\2\2\2\2P\3\2\2\2\2R\3\2\2\2\2T\3\2\2\2\2V\3\2\2"+ + "\2\2X\3\2\2\2\2Z\3\2\2\2\2\\\3\2\2\2\2^\3\2\2\2\2`\3\2\2\2\2b\3\2\2\2"+ + "\2d\3\2\2\2\2f\3\2\2\2\2h\3\2\2\2\2j\3\2\2\2\2l\3\2\2\2\2n\3\2\2\2\2p"+ + "\3\2\2\2\2r\3\2\2\2\2t\3\2\2\2\2v\3\2\2\2\2x\3\2\2\2\2z\3\2\2\2\2|\3\2"+ + "\2\2\2~\3\2\2\2\2\u0080\3\2\2\2\2\u0082\3\2\2\2\2\u0084\3\2\2\2\2\u0086"+ + "\3\2\2\2\2\u0088\3\2\2\2\2\u008a\3\2\2\2\2\u008c\3\2\2\2\2\u008e\3\2\2"+ + "\2\2\u0090\3\2\2\2\2\u0092\3\2\2\2\2\u0094\3\2\2\2\2\u0096\3\2\2\2\2\u0098"+ + "\3\2\2\2\2\u009a\3\2\2\2\2\u009c\3\2\2\2\2\u009e\3\2\2\2\2\u00a0\3\2\2"+ + "\2\2\u00a2\3\2\2\2\2\u00a4\3\2\2\2\2\u00a6\3\2\2\2\2\u00a8\3\2\2\2\2\u00aa"+ + "\3\2\2\2\2\u00ac\3\2\2\2\2\u00ae\3\2\2\2\2\u00b0\3\2\2\2\2\u00b2\3\2\2"+ + "\2\2\u00b4\3\2\2\2\2\u00b6\3\2\2\2\2\u00b8\3\2\2\2\2\u00ba\3\2\2\2\2\u00bc"+ + "\3\2\2\2\2\u00be\3\2\2\2\2\u00c0\3\2\2\2\2\u00c2\3\2\2\2\2\u00c4\3\2\2"+ + "\2\2\u00c6\3\2\2\2\2\u00c8\3\2\2\2\2\u00ca\3\2\2\2\2\u00cc\3\2\2\2\2\u00ce"+ + "\3\2\2\2\2\u00d6\3\2\2\2\2\u00dc\3\2\2\2\2\u00de\3\2\2\2\2\u00e0\3\2\2"+ + "\2\3\u00e2\3\2\2\2\3\u00e4\3\2\2\2\3\u00e6\3\2\2\2\3\u00e8\3\2\2\2\3\u00ea"+ + "\3\2\2\2\3\u00ec\3\2\2\2\3\u00ee\3\2\2\2\3\u00f0\3\2\2\2\3\u00f2\3\2\2"+ + "\2\3\u00f4\3\2\2\2\3\u00f6\3\2\2\2\3\u00f8\3\2\2\2\3\u00fa\3\2\2\2\3\u00fc"+ + "\3\2\2\2\3\u00fe\3\2\2\2\3\u0100\3\2\2\2\3\u0102\3\2\2\2\3\u0104\3\2\2"+ + "\2\3\u0106\3\2\2\2\3\u0108\3\2\2\2\3\u010a\3\2\2\2\3\u010c\3\2\2\2\3\u010e"+ + "\3\2\2\2\3\u0110\3\2\2\2\3\u0112\3\2\2\2\3\u0114\3\2\2\2\3\u0116\3\2\2"+ + "\2\3\u0118\3\2\2\2\3\u011a\3\2\2\2\3\u0122\3\2\2\2\3\u0124\3\2\2\2\3\u0126"+ + "\3\2\2\2\3\u0128\3\2\2\2\3\u012e\3\2\2\2\3\u0130\3\2\2\2\3\u0132\3\2\2"+ + "\2\4\u0134\3\2\2\2\6\u0137\3\2\2\2\b\u0139\3\2\2\2\n\u013b\3\2\2\2\f\u013d"+ + "\3\2\2\2\16\u013f\3\2\2\2\20\u0141\3\2\2\2\22\u0143\3\2\2\2\24\u0145\3"+ + "\2\2\2\26\u0147\3\2\2\2\30\u014a\3\2\2\2\32\u014c\3\2\2\2\34\u014e\3\2"+ + "\2\2\36\u0151\3\2\2\2 \u0153\3\2\2\2\"\u0155\3\2\2\2$\u0157\3\2\2\2&\u0159"+ + "\3\2\2\2(\u015b\3\2\2\2*\u015e\3\2\2\2,\u0161\3\2\2\2.\u0163\3\2\2\2\60"+ + "\u0165\3\2\2\2\62\u0167\3\2\2\2\64\u0169\3\2\2\2\66\u016c\3\2\2\28\u016f"+ + "\3\2\2\2:\u0172\3\2\2\2<\u0175\3\2\2\2>\u0177\3\2\2\2@\u017a\3\2\2\2B"+ + "\u017d\3\2\2\2D\u017f\3\2\2\2F\u0182\3\2\2\2H\u0185\3\2\2\2J\u019d\3\2"+ + "\2\2L\u019f\3\2\2\2N\u01a8\3\2\2\2P\u01b0\3\2\2\2R\u01b8\3\2\2\2T\u01c0"+ + "\3\2\2\2V\u01c3\3\2\2\2X\u01ca\3\2\2\2Z\u01cf\3\2\2\2\\\u01d3\3\2\2\2"+ + "^\u01dc\3\2\2\2`\u01e5\3\2\2\2b\u01ee\3\2\2\2d\u01f4\3\2\2\2f\u01fb\3"+ + "\2\2\2h\u0202\3\2\2\2j\u0208\3\2\2\2l\u0211\3\2\2\2n\u021f\3\2\2\2p\u0229"+ + "\3\2\2\2r\u022e\3\2\2\2t\u0234\3\2\2\2v\u023a\3\2\2\2x\u0243\3\2\2\2z"+ + "\u024a\3\2\2\2|\u0253\3\2\2\2~\u0261\3\2\2\2\u0080\u026b\3\2\2\2\u0082"+ + "\u0287\3\2\2\2\u0084\u0289\3\2\2\2\u0086\u028c\3\2\2\2\u0088\u0291\3\2"+ + "\2\2\u008a\u0297\3\2\2\2\u008c\u029a\3\2\2\2\u008e\u029e\3\2\2\2\u0090"+ + "\u02a5\3\2\2\2\u0092\u02ac\3\2\2\2\u0094\u02b2\3\2\2\2\u0096\u02bb\3\2"+ + "\2\2\u0098\u02c1\3\2\2\2\u009a\u02c9\3\2\2\2\u009c\u02ce\3\2\2\2\u009e"+ + "\u02d5\3\2\2\2\u00a0\u02da\3\2\2\2\u00a2\u02e1\3\2\2\2\u00a4\u02e8\3\2"+ + "\2\2\u00a6\u02f0\3\2\2\2\u00a8\u02f9\3\2\2\2\u00aa\u02fe\3\2\2\2\u00ac"+ + "\u0307\3\2\2\2\u00ae\u030d\3\2\2\2\u00b0\u0314\3\2\2\2\u00b2\u0324\3\2"+ + "\2\2\u00b4\u034b\3\2\2\2\u00b6\u0356\3\2\2\2\u00b8\u0358\3\2\2\2\u00ba"+ + "\u0364\3\2\2\2\u00bc\u037c\3\2\2\2\u00be\u0386\3\2\2\2\u00c0\u038b\3\2"+ + "\2\2\u00c2\u0392\3\2\2\2\u00c4\u03a3\3\2\2\2\u00c6\u03b1\3\2\2\2\u00c8"+ + "\u03c2\3\2\2\2\u00ca\u03d6\3\2\2\2\u00cc\u03d9\3\2\2\2\u00ce\u03e2\3\2"+ + "\2\2\u00d0\u03e9\3\2\2\2\u00d2\u03eb\3\2\2\2\u00d4\u03ed\3\2\2\2\u00d6"+ + "\u03ef\3\2\2\2\u00d8\u03f8\3\2\2\2\u00da\u03fa\3\2\2\2\u00dc\u03fd\3\2"+ + "\2\2\u00de\u0403\3\2\2\2\u00e0\u040e\3\2\2\2\u00e2\u041c\3\2\2\2\u00e4"+ + "\u0500\3\2\2\2\u00e6\u0502\3\2\2\2\u00e8\u0504\3\2\2\2\u00ea\u0506\3\2"+ + "\2\2\u00ec\u0508\3\2\2\2\u00ee\u050a\3\2\2\2\u00f0\u050c\3\2\2\2\u00f2"+ + "\u050e\3\2\2\2\u00f4\u0510\3\2\2\2\u00f6\u0512\3\2\2\2\u00f8\u0515\3\2"+ + "\2\2\u00fa\u0518\3\2\2\2\u00fc\u051a\3\2\2\2\u00fe\u051c\3\2\2\2\u0100"+ + "\u051e\3\2\2\2\u0102\u0520\3\2\2\2\u0104\u0522\3\2\2\2\u0106\u0524\3\2"+ + "\2\2\u0108\u0527\3\2\2\2\u010a\u052c\3\2\2\2\u010c\u0531\3\2\2\2\u010e"+ + "\u0533\3\2\2\2\u0110\u0543\3\2\2\2\u0112\u054c\3\2\2\2\u0114\u055c\3\2"+ + "\2\2\u0116\u055e\3\2\2\2\u0118\u0565\3\2\2\2\u011a\u0569\3\2\2\2\u011c"+ + "\u056f\3\2\2\2\u011e\u0571\3\2\2\2\u0120\u0573\3\2\2\2\u0122\u0575\3\2"+ + "\2\2\u0124\u057d\3\2\2\2\u0126\u0583\3\2\2\2\u0128\u058a\3\2\2\2\u012a"+ + "\u0591\3\2\2\2\u012c\u0593\3\2\2\2\u012e\u0596\3\2\2\2\u0130\u059c\3\2"+ + "\2\2\u0132\u05a7\3\2\2\2\u0134\u0135\7}\2\2\u0135\u0136\b\2\2\2\u0136"+ + "\5\3\2\2\2\u0137\u0138\7\177\2\2\u0138\7\3\2\2\2\u0139\u013a\7]\2\2\u013a"+ + "\t\3\2\2\2\u013b\u013c\7_\2\2\u013c\13\3\2\2\2\u013d\u013e\7*\2\2\u013e"+ + "\r\3\2\2\2\u013f\u0140\7+\2\2\u0140\17\3\2\2\2\u0141\u0142\7=\2\2\u0142"+ + "\21\3\2\2\2\u0143\u0144\7<\2\2\u0144\23\3\2\2\2\u0145\u0146\7.\2\2\u0146"+ + "\25\3\2\2\2\u0147\u0148\7\60\2\2\u0148\u0149\7\60\2\2\u0149\27\3\2\2\2"+ + "\u014a\u014b\7A\2\2\u014b\31\3\2\2\2\u014c\u014d\7\60\2\2\u014d\33\3\2"+ + "\2\2\u014e\u014f\7/\2\2\u014f\u0150\7@\2\2\u0150\35\3\2\2\2\u0151\u0152"+ + "\7-\2\2\u0152\37\3\2\2\2\u0153\u0154\7/\2\2\u0154!\3\2\2\2\u0155\u0156"+ + "\7,\2\2\u0156#\3\2\2\2\u0157\u0158\7\61\2\2\u0158%\3\2\2\2\u0159\u015a"+ + "\7\'\2\2\u015a\'\3\2\2\2\u015b\u015c\7-\2\2\u015c\u015d\7-\2\2\u015d)"+ + "\3\2\2\2\u015e\u015f\7/\2\2\u015f\u0160\7/\2\2\u0160+\3\2\2\2\u0161\u0162"+ + "\7(\2\2\u0162-\3\2\2\2\u0163\u0164\7\u0080\2\2\u0164/\3\2\2\2\u0165\u0166"+ + "\7`\2\2\u0166\61\3\2\2\2\u0167\u0168\7~\2\2\u0168\63\3\2\2\2\u0169\u016a"+ + "\7>\2\2\u016a\u016b\7>\2\2\u016b\65\3\2\2\2\u016c\u016d\7@\2\2\u016d\u016e"+ + "\7@\2\2\u016e\67\3\2\2\2\u016f\u0170\7?\2\2\u0170\u0171\7?\2\2\u01719"+ + "\3\2\2\2\u0172\u0173\7#\2\2\u0173\u0174\7?\2\2\u0174;\3\2\2\2\u0175\u0176"+ + "\7>\2\2\u0176=\3\2\2\2\u0177\u0178\7>\2\2\u0178\u0179\7?\2\2\u0179?\3"+ + "\2\2\2\u017a\u017b\7@\2\2\u017b\u017c\7?\2\2\u017cA\3\2\2\2\u017d\u017e"+ + "\7@\2\2\u017eC\3\2\2\2\u017f\u0180\7(\2\2\u0180\u0181\7(\2\2\u0181E\3"+ + "\2\2\2\u0182\u0183\7~\2\2\u0183\u0184\7~\2\2\u0184G\3\2\2\2\u0185\u0186"+ + "\7?\2\2\u0186I\3\2\2\2\u0187\u0188\7-\2\2\u0188\u019e\7?\2\2\u0189\u018a"+ + "\7/\2\2\u018a\u019e\7?\2\2\u018b\u018c\7,\2\2\u018c\u019e\7?\2\2\u018d"+ + "\u018e\7\61\2\2\u018e\u019e\7?\2\2\u018f\u0190\7\'\2\2\u0190\u019e\7?"+ + "\2\2\u0191\u0192\7>\2\2\u0192\u0193\7>\2\2\u0193\u019e\7?\2\2\u0194\u0195"+ + "\7@\2\2\u0195\u0196\7@\2\2\u0196\u019e\7?\2\2\u0197\u0198\7(\2\2\u0198"+ + "\u019e\7?\2\2\u0199\u019a\7~\2\2\u019a\u019e\7?\2\2\u019b\u019c\7`\2\2"+ + "\u019c\u019e\7?\2\2\u019d\u0187\3\2\2\2\u019d\u0189\3\2\2\2\u019d\u018b"+ + "\3\2\2\2\u019d\u018d\3\2\2\2\u019d\u018f\3\2\2\2\u019d\u0191\3\2\2\2\u019d"+ + "\u0194\3\2\2\2\u019d\u0197\3\2\2\2\u019d\u0199\3\2\2\2\u019d\u019b\3\2"+ + "\2\2\u019eK\3\2\2\2\u019f\u01a0\7k\2\2\u01a0\u01a1\7o\2\2\u01a1\u01a2"+ + "\7r\2\2\u01a2\u01a3\7q\2\2\u01a3\u01a4\7t\2\2\u01a4\u01a5\7v\2\2\u01a5"+ + "\u01a6\3\2\2\2\u01a6\u01a7\b&\3\2\u01a7M\3\2\2\2\u01a8\u01a9\7v\2\2\u01a9"+ + "\u01aa\7{\2\2\u01aa\u01ab\7r\2\2\u01ab\u01ac\7g\2\2\u01ac\u01ad\7f\2\2"+ + "\u01ad\u01ae\7g\2\2\u01ae\u01af\7h\2\2\u01afO\3\2\2\2\u01b0\u01b1\7%\2"+ + "\2\u01b1\u01b2\7r\2\2\u01b2\u01b3\7t\2\2\u01b3\u01b4\7c\2\2\u01b4\u01b5"+ + "\7i\2\2\u01b5\u01b6\7o\2\2\u01b6\u01b7\7c\2\2\u01b7Q\3\2\2\2\u01b8\u01b9"+ + "\7t\2\2\u01b9\u01ba\7g\2\2\u01ba\u01bb\7u\2\2\u01bb\u01bc\7g\2\2\u01bc"+ + "\u01bd\7t\2\2\u01bd\u01be\7x\2\2\u01be\u01bf\7g\2\2\u01bfS\3\2\2\2\u01c0"+ + "\u01c1\7r\2\2\u01c1\u01c2\7e\2\2\u01c2U\3\2\2\2\u01c3\u01c4\7v\2\2\u01c4"+ + "\u01c5\7c\2\2\u01c5\u01c6\7t\2\2\u01c6\u01c7\7i\2\2\u01c7\u01c8\7g\2\2"+ + "\u01c8\u01c9\7v\2\2\u01c9W\3\2\2\2\u01ca\u01cb\7n\2\2\u01cb\u01cc\7k\2"+ + "\2\u01cc\u01cd\7p\2\2\u01cd\u01ce\7m\2\2\u01ceY\3\2\2\2\u01cf\u01d0\7"+ + "e\2\2\u01d0\u01d1\7r\2\2\u01d1\u01d2\7w\2\2\u01d2[\3\2\2\2\u01d3\u01d4"+ + "\7e\2\2\u01d4\u01d5\7q\2\2\u01d5\u01d6\7f\2\2\u01d6\u01d7\7g\2\2\u01d7"+ + "\u01d8\7a\2\2\u01d8\u01d9\7u\2\2\u01d9\u01da\7g\2\2\u01da\u01db\7i\2\2"+ + "\u01db]\3\2\2\2\u01dc\u01dd\7f\2\2\u01dd\u01de\7c\2\2\u01de\u01df\7v\2"+ + "\2\u01df\u01e0\7c\2\2\u01e0\u01e1\7a\2\2\u01e1\u01e2\7u\2\2\u01e2\u01e3"+ + "\7g\2\2\u01e3\u01e4\7i\2\2\u01e4_\3\2\2\2\u01e5\u01e6\7g\2\2\u01e6\u01e7"+ + "\7p\2\2\u01e7\u01e8\7e\2\2\u01e8\u01e9\7q\2\2\u01e9\u01ea\7f\2\2\u01ea"+ + "\u01eb\7k\2\2\u01eb\u01ec\7p\2\2\u01ec\u01ed\7i\2\2\u01eda\3\2\2\2\u01ee"+ + "\u01ef\7e\2\2\u01ef\u01f0\7q\2\2\u01f0\u01f1\7p\2\2\u01f1\u01f2\7u\2\2"+ + "\u01f2\u01f3\7v\2\2\u01f3c\3\2\2\2\u01f4\u01f5\7g\2\2\u01f5\u01f6\7z\2"+ + "\2\u01f6\u01f7\7v\2\2\u01f7\u01f8\7g\2\2\u01f8\u01f9\7t\2\2\u01f9\u01fa"+ + "\7p\2\2\u01fae\3\2\2\2\u01fb\u01fc\7g\2\2\u01fc\u01fd\7z\2\2\u01fd\u01fe"+ + "\7r\2\2\u01fe\u01ff\7q\2\2\u01ff\u0200\7t\2\2\u0200\u0201\7v\2\2\u0201"+ + "g\3\2\2\2\u0202\u0203\7c\2\2\u0203\u0204\7n\2\2\u0204\u0205\7k\2\2\u0205"+ + "\u0206\7i\2\2\u0206\u0207\7p\2\2\u0207i\3\2\2\2\u0208\u0209\7t\2\2\u0209"+ + "\u020a\7g\2\2\u020a\u020b\7i\2\2\u020b\u020c\7k\2\2\u020c\u020d\7u\2\2"+ + "\u020d\u020e\7v\2\2\u020e\u020f\7g\2\2\u020f\u0210\7t\2\2\u0210k\3\2\2"+ + "\2\u0211\u0212\7a\2\2\u0212\u0213\7a\2\2\u0213\u0214\7p\2\2\u0214\u0215"+ + "\7q\2\2\u0215\u0216\7v\2\2\u0216\u0217\7t\2\2\u0217\u0218\7g\2\2\u0218"+ + "\u0219\7i\2\2\u0219\u021a\7k\2\2\u021a\u021b\7u\2\2\u021b\u021c\7v\2\2"+ + "\u021c\u021d\7g\2\2\u021d\u021e\7t\2\2\u021em\3\2\2\2\u021f\u0220\7a\2"+ + "\2\u0220\u0221\7a\2\2\u0221\u0222\7c\2\2\u0222\u0223\7f\2\2\u0223\u0224"+ + "\7f\2\2\u0224\u0225\7t\2\2\u0225\u0226\7g\2\2\u0226\u0227\7u\2\2\u0227"+ + "\u0228\7u\2\2\u0228o\3\2\2\2\u0229\u022a\7a\2\2\u022a\u022b\7a\2\2\u022b"+ + "\u022c\7|\2\2\u022c\u022d\7r\2\2\u022dq\3\2\2\2\u022e\u022f\7a\2\2\u022f"+ + "\u0230\7a\2\2\u0230\u0231\7o\2\2\u0231\u0232\7g\2\2\u0232\u0233\7o\2\2"+ + "\u0233s\3\2\2\2\u0234\u0235\7a\2\2\u0235\u0236\7a\2\2\u0236\u0237\7u\2"+ + "\2\u0237\u0238\7u\2\2\u0238\u0239\7c\2\2\u0239u\3\2\2\2\u023a\u023b\7"+ + "a\2\2\u023b\u023c\7a\2\2\u023c\u023d\7p\2\2\u023d\u023e\7q\2\2\u023e\u023f"+ + "\7v\2\2\u023f\u0240\7u\2\2\u0240\u0241\7u\2\2\u0241\u0242\7c\2\2\u0242"+ + "w\3\2\2\2\u0243\u0244\7k\2\2\u0244\u0245\7p\2\2\u0245\u0246\7n\2\2\u0246"+ + "\u0247\7k\2\2\u0247\u0248\7p\2\2\u0248\u0249\7g\2\2\u0249y\3\2\2\2\u024a"+ + "\u024b\7x\2\2\u024b\u024c\7q\2\2\u024c\u024d\7n\2\2\u024d\u024e\7c\2\2"+ + "\u024e\u024f\7v\2\2\u024f\u0250\7k\2\2\u0250\u0251\7n\2\2\u0251\u0252"+ + "\7g\2\2\u0252{\3\2\2\2\u0253\u0254\7a\2\2\u0254\u0255\7a\2\2\u0255\u0256"+ + "\7p\2\2\u0256\u0257\7q\2\2\u0257\u0258\7v\2\2\u0258\u0259\7x\2\2\u0259"+ + "\u025a\7q\2\2\u025a\u025b\7n\2\2\u025b\u025c\7c\2\2\u025c\u025d\7v\2\2"+ + "\u025d\u025e\7k\2\2\u025e\u025f\7n\2\2\u025f\u0260\7g\2\2\u0260}\3\2\2"+ + "\2\u0261\u0262\7k\2\2\u0262\u0263\7p\2\2\u0263\u0264\7v\2\2\u0264\u0265"+ + "\7g\2\2\u0265\u0266\7t\2\2\u0266\u0267\7t\2\2\u0267\u0268\7w\2\2\u0268"+ + "\u0269\7r\2\2\u0269\u026a\7v\2\2\u026a\177\3\2\2\2\u026b\u026c\7e\2\2"+ + "\u026c\u026d\7c\2\2\u026d\u026e\7n\2\2\u026e\u026f\7n\2\2\u026f\u0270"+ + "\7k\2\2\u0270\u0271\7p\2\2\u0271\u0272\7i\2\2\u0272\u0081\3\2\2\2\u0273"+ + "\u0274\7a\2\2\u0274\u0275\7a\2\2\u0275\u0276\7u\2\2\u0276\u0277\7v\2\2"+ + "\u0277\u0278\7c\2\2\u0278\u0279\7e\2\2\u0279\u027a\7m\2\2\u027a\u027b"+ + "\7e\2\2\u027b\u027c\7c\2\2\u027c\u027d\7n\2\2\u027d\u0288\7n\2\2\u027e"+ + "\u027f\7a\2\2\u027f\u0280\7a\2\2\u0280\u0281\7r\2\2\u0281\u0282\7j\2\2"+ + "\u0282\u0283\7k\2\2\u0283\u0284\7e\2\2\u0284\u0285\7c\2\2\u0285\u0286"+ + "\7n\2\2\u0286\u0288\7n\2\2\u0287\u0273\3\2\2\2\u0287\u027e\3\2\2\2\u0288"+ + "\u0083\3\2\2\2\u0289\u028a\7k\2\2\u028a\u028b\7h\2\2\u028b\u0085\3\2\2"+ + "\2\u028c\u028d\7g\2\2\u028d\u028e\7n\2\2\u028e\u028f\7u\2\2\u028f\u0290"+ + "\7g\2\2\u0290\u0087\3\2\2\2\u0291\u0292\7y\2\2\u0292\u0293\7j\2\2\u0293"+ + "\u0294\7k\2\2\u0294\u0295\7n\2\2\u0295\u0296\7g\2\2\u0296\u0089\3\2\2"+ + "\2\u0297\u0298\7f\2\2\u0298\u0299\7q\2\2\u0299\u008b\3\2\2\2\u029a\u029b"+ + "\7h\2\2\u029b\u029c\7q\2\2\u029c\u029d\7t\2\2\u029d\u008d\3\2\2\2\u029e"+ + "\u029f\7u\2\2\u029f\u02a0\7y\2\2\u02a0\u02a1\7k\2\2\u02a1\u02a2\7v\2\2"+ + "\u02a2\u02a3\7e\2\2\u02a3\u02a4\7j\2\2\u02a4\u008f\3\2\2\2\u02a5\u02a6"+ + "\7t\2\2\u02a6\u02a7\7g\2\2\u02a7\u02a8\7v\2\2\u02a8\u02a9\7w\2\2\u02a9"+ + "\u02aa\7t\2\2\u02aa\u02ab\7p\2\2\u02ab\u0091\3\2\2\2\u02ac\u02ad\7d\2"+ + "\2\u02ad\u02ae\7t\2\2\u02ae\u02af\7g\2\2\u02af\u02b0\7c\2\2\u02b0\u02b1"+ + "\7m\2\2\u02b1\u0093\3\2\2\2\u02b2\u02b3\7e\2\2\u02b3\u02b4\7q\2\2\u02b4"+ + "\u02b5\7p\2\2\u02b5\u02b6\7v\2\2\u02b6\u02b7\7k\2\2\u02b7\u02b8\7p\2\2"+ + "\u02b8\u02b9\7w\2\2\u02b9\u02ba\7g\2\2\u02ba\u0095\3\2\2\2\u02bb\u02bc"+ + "\7c\2\2\u02bc\u02bd\7u\2\2\u02bd\u02be\7o\2\2\u02be\u02bf\3\2\2\2\u02bf"+ + "\u02c0\bK\4\2\u02c0\u0097\3\2\2\2\u02c1\u02c2\7f\2\2\u02c2\u02c3\7g\2"+ + "\2\u02c3\u02c4\7h\2\2\u02c4\u02c5\7c\2\2\u02c5\u02c6\7w\2\2\u02c6\u02c7"+ + "\7n\2\2\u02c7\u02c8\7v\2\2\u02c8\u0099\3\2\2\2\u02c9\u02ca\7e\2\2\u02ca"+ + "\u02cb\7c\2\2\u02cb\u02cc\7u\2\2\u02cc\u02cd\7g\2\2\u02cd\u009b\3\2\2"+ + "\2\u02ce\u02cf\7u\2\2\u02cf\u02d0\7v\2\2\u02d0\u02d1\7t\2\2\u02d1\u02d2"+ + "\7w\2\2\u02d2\u02d3\7e\2\2\u02d3\u02d4\7v\2\2\u02d4\u009d\3\2\2\2\u02d5"+ + "\u02d6\7g\2\2\u02d6\u02d7\7p\2\2\u02d7\u02d8\7w\2\2\u02d8\u02d9\7o\2\2"+ + "\u02d9\u009f\3\2\2\2\u02da\u02db\7u\2\2\u02db\u02dc\7k\2\2\u02dc\u02dd"+ + "\7|\2\2\u02dd\u02de\7g\2\2\u02de\u02df\7q\2\2\u02df\u02e0\7h\2\2\u02e0"+ + "\u00a1\3\2\2\2\u02e1\u02e2\7v\2\2\u02e2\u02e3\7{\2\2\u02e3\u02e4\7r\2"+ + "\2\u02e4\u02e5\7g\2\2\u02e5\u02e6\7k\2\2\u02e6\u02e7\7f\2\2\u02e7\u00a3"+ + "\3\2\2\2\u02e8\u02e9\7m\2\2\u02e9\u02ea\7k\2\2\u02ea\u02eb\7e\2\2\u02eb"+ + "\u02ec\7m\2\2\u02ec\u02ed\7c\2\2\u02ed\u02ee\7u\2\2\u02ee\u02ef\7o\2\2"+ + "\u02ef\u00a5\3\2\2\2\u02f0\u02f1\7t\2\2\u02f1\u02f2\7g\2\2\u02f2\u02f3"+ + "\7u\2\2\u02f3\u02f4\7q\2\2\u02f4\u02f5\7w\2\2\u02f5\u02f6\7t\2\2\u02f6"+ + "\u02f7\7e\2\2\u02f7\u02f8\7g\2\2\u02f8\u00a7\3\2\2\2\u02f9\u02fa\7w\2"+ + "\2\u02fa\u02fb\7u\2\2\u02fb\u02fc\7g\2\2\u02fc\u02fd\7u\2\2\u02fd\u00a9"+ + "\3\2\2\2\u02fe\u02ff\7e\2\2\u02ff\u0300\7n\2\2\u0300\u0301\7q\2\2\u0301"+ + "\u0302\7d\2\2\u0302\u0303\7d\2\2\u0303\u0304\7g\2\2\u0304\u0305\7t\2\2"+ + "\u0305\u0306\7u\2\2\u0306\u00ab\3\2\2\2\u0307\u0308\7d\2\2\u0308\u0309"+ + "\7{\2\2\u0309\u030a\7v\2\2\u030a\u030b\7g\2\2\u030b\u030c\7u\2\2\u030c"+ + "\u00ad\3\2\2\2\u030d\u030e\7e\2\2\u030e\u030f\7{\2\2\u030f\u0310\7e\2"+ + "\2\u0310\u0311\7n\2\2\u0311\u0312\7g\2\2\u0312\u0313\7u\2\2\u0313\u00af"+ + "\3\2\2\2\u0314\u0315\7#\2\2\u0315\u00b1\3\2\2\2\u0316\u0317\7u\2\2\u0317"+ + "\u0318\7k\2\2\u0318\u0319\7i\2\2\u0319\u031a\7p\2\2\u031a\u031b\7g\2\2"+ + "\u031b\u0325\7f\2\2\u031c\u031d\7w\2\2\u031d\u031e\7p\2\2\u031e\u031f"+ + "\7u\2\2\u031f\u0320\7k\2\2\u0320\u0321\7i\2\2\u0321\u0322\7p\2\2\u0322"+ + "\u0323\7g\2\2\u0323\u0325\7f\2\2\u0324\u0316\3\2\2\2\u0324\u031c\3\2\2"+ + "\2\u0325\u00b3\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"+ + "\u00b5\3\2\2\2\u034d\u034e\7v\2\2\u034e\u034f\7t\2\2\u034f\u0350\7w\2"+ + "\2\u0350\u0357\7g\2\2\u0351\u0352\7h\2\2\u0352\u0353\7c\2\2\u0353\u0354"+ + "\7n\2\2\u0354\u0355\7u\2\2\u0355\u0357\7g\2\2\u0356\u034d\3\2\2\2\u0356"+ + "\u0351\3\2\2\2\u0357\u00b7\3\2\2\2\u0358\u0359\7}\2\2\u0359\u035a\7}\2"+ + "\2\u035a\u035e\3\2\2\2\u035b\u035d\13\2\2\2\u035c\u035b\3\2\2\2\u035d"+ + "\u0360\3\2\2\2\u035e\u035f\3\2\2\2\u035e\u035c\3\2\2\2\u035f\u0361\3\2"+ + "\2\2\u0360\u035e\3\2\2\2\u0361\u0362\7\177\2\2\u0362\u0363\7\177\2\2\u0363"+ + "\u00b9\3\2\2\2\u0364\u036a\7$\2\2\u0365\u0366\7^\2\2\u0366\u0369\7$\2"+ + "\2\u0367\u0369\n\2\2\2\u0368\u0365\3\2\2\2\u0368\u0367\3\2\2\2\u0369\u036c"+ + "\3\2\2\2\u036a\u0368\3\2\2\2\u036a\u036b\3\2\2\2\u036b\u036d\3\2\2\2\u036c"+ + "\u036a\3\2\2\2\u036d\u036f\7$\2\2\u036e\u0370\t\3\2\2\u036f\u036e\3\2"+ + "\2\2\u036f\u0370\3\2\2\2\u0370\u0375\3\2\2\2\u0371\u0373\t\4\2\2\u0372"+ + "\u0374\t\5\2\2\u0373\u0372\3\2\2\2\u0373\u0374\3\2\2\2\u0374\u0376\3\2"+ + "\2\2\u0375\u0371\3\2\2\2\u0375\u0376\3\2\2\2\u0376\u0378\3\2\2\2\u0377"+ + "\u0379\t\3\2\2\u0378\u0377\3\2\2\2\u0378\u0379\3\2\2\2\u0379\u037a\3\2"+ + "\2\2\u037a\u037b\b]\5\2\u037b\u00bb\3\2\2\2\u037c\u0380\7)\2\2\u037d\u037e"+ + "\7^\2\2\u037e\u0381\t\6\2\2\u037f\u0381\n\7\2\2\u0380\u037d\3\2\2\2\u0380"+ + "\u037f\3\2\2\2\u0381\u0382\3\2\2\2\u0382\u0383\7)\2\2\u0383\u00bd\3\2"+ + "\2\2\u0384\u0387\5\u00c0`\2\u0385\u0387\5\u00c8d\2\u0386\u0384\3\2\2\2"+ + "\u0386\u0385\3\2\2\2\u0387\u00bf\3\2\2\2\u0388\u038c\5\u00c2a\2\u0389"+ + "\u038c\5\u00c4b\2\u038a\u038c\5\u00c6c\2\u038b\u0388\3\2\2\2\u038b\u0389"+ + "\3\2\2\2\u038b\u038a\3\2\2\2\u038c\u00c1\3\2\2\2\u038d\u0393\7\'\2\2\u038e"+ + "\u038f\7\62\2\2\u038f\u0393\7d\2\2\u0390\u0391\7\62\2\2\u0391\u0393\7"+ + "D\2\2\u0392\u038d\3\2\2\2\u0392\u038e\3\2\2\2\u0392\u0390\3\2\2\2\u0393"+ + "\u0397\3\2\2\2\u0394\u0396\5\u00d0h\2\u0395\u0394\3\2\2\2\u0396\u0399"+ + "\3\2\2\2\u0397\u0395\3\2\2\2\u0397\u0398\3\2\2\2\u0398\u039a\3\2\2\2\u0399"+ + "\u0397\3\2\2\2\u039a\u039c\7\60\2\2\u039b\u039d\5\u00d0h\2\u039c\u039b"+ + "\3\2\2\2\u039d\u039e\3\2\2\2\u039e\u039c\3\2\2\2\u039e\u039f\3\2\2\2\u039f"+ + "\u00c3\3\2\2\2\u03a0\u03a2\5\u00d2i\2\u03a1\u03a0\3\2\2\2\u03a2\u03a5"+ + "\3\2\2\2\u03a3\u03a1\3\2\2\2\u03a3\u03a4\3\2\2\2\u03a4\u03a6\3\2\2\2\u03a5"+ + "\u03a3\3\2\2\2\u03a6\u03a8\7\60\2\2\u03a7\u03a9\5\u00d2i\2\u03a8\u03a7"+ + "\3\2\2\2\u03a9\u03aa\3\2\2\2\u03aa\u03a8\3\2\2\2\u03aa\u03ab\3\2\2\2\u03ab"+ + "\u00c5\3\2\2\2\u03ac\u03b2\7&\2\2\u03ad\u03ae\7\62\2\2\u03ae\u03b2\7z"+ + "\2\2\u03af\u03b0\7\62\2\2\u03b0\u03b2\7Z\2\2\u03b1\u03ac\3\2\2\2\u03b1"+ + "\u03ad\3\2\2\2\u03b1\u03af\3\2\2\2\u03b2\u03b6\3\2\2\2\u03b3\u03b5\5\u00d4"+ + "j\2\u03b4\u03b3\3\2\2\2\u03b5\u03b8\3\2\2\2\u03b6\u03b4\3\2\2\2\u03b6"+ + "\u03b7\3\2\2\2\u03b7\u03b9\3\2\2\2\u03b8\u03b6\3\2\2\2\u03b9\u03bb\7\60"+ + "\2\2\u03ba\u03bc\5\u00d4j\2\u03bb\u03ba\3\2\2\2\u03bc\u03bd\3\2\2\2\u03bd"+ + "\u03bb\3\2\2\2\u03bd\u03be\3\2\2\2\u03be\u00c7\3\2\2\2\u03bf\u03c3\5\u00cc"+ + "f\2\u03c0\u03c3\5\u00ceg\2\u03c1\u03c3\5\u00cae\2\u03c2\u03bf\3\2\2\2"+ + "\u03c2\u03c0\3\2\2\2\u03c2\u03c1\3\2\2\2\u03c3\u03c7\3\2\2\2\u03c4\u03c5"+ + "\t\b\2\2\u03c5\u03c8\t\t\2\2\u03c6\u03c8\7n\2\2\u03c7\u03c4\3\2\2\2\u03c7"+ + "\u03c6\3\2\2\2\u03c7\u03c8\3\2\2\2\u03c8\u00c9\3\2\2\2\u03c9\u03ca\7\62"+ + "\2\2\u03ca\u03cc\t\n\2\2\u03cb\u03cd\5\u00d0h\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\u03d7\3\2"+ + "\2\2\u03d0\u03d2\7\'\2\2\u03d1\u03d3\5\u00d0h\2\u03d2\u03d1\3\2\2\2\u03d3"+ + "\u03d4\3\2\2\2\u03d4\u03d2\3\2\2\2\u03d4\u03d5\3\2\2\2\u03d5\u03d7\3\2"+ + "\2\2\u03d6\u03c9\3\2\2\2\u03d6\u03d0\3\2\2\2\u03d7\u00cb\3\2\2\2\u03d8"+ + "\u03da\5\u00d2i\2\u03d9\u03d8\3\2\2\2\u03da\u03db\3\2\2\2\u03db\u03d9"+ + "\3\2\2\2\u03db\u03dc\3\2\2\2\u03dc\u00cd\3\2\2\2\u03dd\u03e3\7&\2\2\u03de"+ + "\u03df\7\62\2\2\u03df\u03e3\7z\2\2\u03e0\u03e1\7\62\2\2\u03e1\u03e3\7"+ + "Z\2\2\u03e2\u03dd\3\2\2\2\u03e2\u03de\3\2\2\2\u03e2\u03e0\3\2\2\2\u03e3"+ + "\u03e5\3\2\2\2\u03e4\u03e6\5\u00d4j\2\u03e5\u03e4\3\2\2\2\u03e6\u03e7"+ + "\3\2\2\2\u03e7\u03e5\3\2\2\2\u03e7\u03e8\3\2\2\2\u03e8\u00cf\3\2\2\2\u03e9"+ + "\u03ea\t\13\2\2\u03ea\u00d1\3\2\2\2\u03eb\u03ec\t\f\2\2\u03ec\u00d3\3"+ + "\2\2\2\u03ed\u03ee\t\r\2\2\u03ee\u00d5\3\2\2\2\u03ef\u03f3\5\u00d8l\2"+ + "\u03f0\u03f2\5\u00dam\2\u03f1\u03f0\3\2\2\2\u03f2\u03f5\3\2\2\2\u03f3"+ + "\u03f1\3\2\2\2\u03f3\u03f4\3\2\2\2\u03f4\u03f6\3\2\2\2\u03f5\u03f3\3\2"+ + "\2\2\u03f6\u03f7\bk\6\2\u03f7\u00d7\3\2\2\2\u03f8\u03f9\t\16\2\2\u03f9"+ + "\u00d9\3\2\2\2\u03fa\u03fb\t\17\2\2\u03fb\u00db\3\2\2\2\u03fc\u03fe\t"+ + "\20\2\2\u03fd\u03fc\3\2\2\2\u03fe\u03ff\3\2\2\2\u03ff\u03fd\3\2\2\2\u03ff"+ + "\u0400\3\2\2\2\u0400\u0401\3\2\2\2\u0401\u0402\bn\7\2\u0402\u00dd\3\2"+ + "\2\2\u0403\u0404\7\61\2\2\u0404\u0405\7\61\2\2\u0405\u0409\3\2\2\2\u0406"+ + "\u0408\n\21\2\2\u0407\u0406\3\2\2\2\u0408\u040b\3\2\2\2\u0409\u0407\3"+ + "\2\2\2\u0409\u040a\3\2\2\2\u040a\u040c\3\2\2\2\u040b\u0409\3\2\2\2\u040c"+ + "\u040d\bo\b\2\u040d\u00df\3\2\2\2\u040e\u040f\7\61\2\2\u040f\u0410\7,"+ + "\2\2\u0410\u0414\3\2\2\2\u0411\u0413\13\2\2\2\u0412\u0411\3\2\2\2\u0413"+ + "\u0416\3\2\2\2\u0414\u0415\3\2\2\2\u0414\u0412\3\2\2\2\u0415\u0417\3\2"+ + "\2\2\u0416\u0414\3\2\2\2\u0417\u0418\7,\2\2\u0418\u0419\7\61\2\2\u0419"+ + "\u041a\3\2\2\2\u041a\u041b\bp\b\2\u041b\u00e1\3\2\2\2\u041c\u041d\7\60"+ + "\2\2\u041d\u041e\7d\2\2\u041e\u041f\7{\2\2\u041f\u0420\7v\2\2\u0420\u0421"+ + "\7g\2\2\u0421\u00e3\3\2\2\2\u0422\u0423\7d\2\2\u0423\u0424\7t\2\2\u0424"+ + "\u0501\7m\2\2\u0425\u0426\7q\2\2\u0426\u0427\7t\2\2\u0427\u0501\7c\2\2"+ + "\u0428\u0429\7m\2\2\u0429\u042a\7k\2\2\u042a\u0501\7n\2\2\u042b\u042c"+ + "\7u\2\2\u042c\u042d\7n\2\2\u042d\u0501\7q\2\2\u042e\u042f\7p\2\2\u042f"+ + "\u0430\7q\2\2\u0430\u0501\7r\2\2\u0431\u0432\7c\2\2\u0432\u0433\7u\2\2"+ + "\u0433\u0501\7n\2\2\u0434\u0435\7r\2\2\u0435\u0436\7j\2\2\u0436\u0501"+ + "\7r\2\2\u0437\u0438\7c\2\2\u0438\u0439\7p\2\2\u0439\u0501\7e\2\2\u043a"+ + "\u043b\7d\2\2\u043b\u043c\7r\2\2\u043c\u0501\7n\2\2\u043d\u043e\7e\2\2"+ + "\u043e\u043f\7n\2\2\u043f\u0501\7e\2\2\u0440\u0441\7l\2\2\u0441\u0442"+ + "\7u\2\2\u0442\u0501\7t\2\2\u0443\u0444\7c\2\2\u0444\u0445\7p\2\2\u0445"+ + "\u0501\7f\2\2\u0446\u0447\7t\2\2\u0447\u0448\7n\2\2\u0448\u0501\7c\2\2"+ + "\u0449\u044a\7d\2\2\u044a\u044b\7k\2\2\u044b\u0501\7v\2\2\u044c\u044d"+ + "\7t\2\2\u044d\u044e\7q\2\2\u044e\u0501\7n\2\2\u044f\u0450\7r\2\2\u0450"+ + "\u0451\7n\2\2\u0451\u0501\7c\2\2\u0452\u0453\7r\2\2\u0453\u0454\7n\2\2"+ + "\u0454\u0501\7r\2\2\u0455\u0456\7d\2\2\u0456\u0457\7o\2\2\u0457\u0501"+ + "\7k\2\2\u0458\u0459\7u\2\2\u0459\u045a\7g\2\2\u045a\u0501\7e\2\2\u045b"+ + "\u045c\7t\2\2\u045c\u045d\7v\2\2\u045d\u0501\7k\2\2\u045e\u045f\7g\2\2"+ + "\u045f\u0460\7q\2\2\u0460\u0501\7t\2\2\u0461\u0462\7u\2\2\u0462\u0463"+ + "\7t\2\2\u0463\u0501\7g\2\2\u0464\u0465\7n\2\2\u0465\u0466\7u\2\2\u0466"+ + "\u0501\7t\2\2\u0467\u0468\7r\2\2\u0468\u0469\7j\2\2\u0469\u0501\7c\2\2"+ + "\u046a\u046b\7c\2\2\u046b\u046c\7n\2\2\u046c\u0501\7t\2\2\u046d\u046e"+ + "\7l\2\2\u046e\u046f\7o\2\2\u046f\u0501\7r\2\2\u0470\u0471\7d\2\2\u0471"+ + "\u0472\7x\2\2\u0472\u0501\7e\2\2\u0473\u0474\7e\2\2\u0474\u0475\7n\2\2"+ + "\u0475\u0501\7k\2\2\u0476\u0477\7t\2\2\u0477\u0478\7v\2\2\u0478\u0501"+ + "\7u\2\2\u0479\u047a\7c\2\2\u047a\u047b\7f\2\2\u047b\u0501\7e\2\2\u047c"+ + "\u047d\7t\2\2\u047d\u047e\7t\2\2\u047e\u0501\7c\2\2\u047f\u0480\7d\2\2"+ + "\u0480\u0481\7x\2\2\u0481\u0501\7u\2\2\u0482\u0483\7u\2\2\u0483\u0484"+ + "\7g\2\2\u0484\u0501\7k\2\2\u0485\u0486\7u\2\2\u0486\u0487\7c\2\2\u0487"+ + "\u0501\7z\2\2\u0488\u0489\7u\2\2\u0489\u048a\7v\2\2\u048a\u0501\7{\2\2"+ + "\u048b\u048c\7u\2\2\u048c\u048d\7v\2\2\u048d\u0501\7c\2\2\u048e\u048f"+ + "\7u\2\2\u048f\u0490\7v\2\2\u0490\u0501\7z\2\2\u0491\u0492\7f\2\2\u0492"+ + "\u0493\7g\2\2\u0493\u0501\7{\2\2\u0494\u0495\7v\2\2\u0495\u0496\7z\2\2"+ + "\u0496\u0501\7c\2\2\u0497\u0498\7z\2\2\u0498\u0499\7c\2\2\u0499\u0501"+ + "\7c\2\2\u049a\u049b\7d\2\2\u049b\u049c\7e\2\2\u049c\u0501\7e\2\2\u049d"+ + "\u049e\7c\2\2\u049e\u049f\7j\2\2\u049f\u0501\7z\2\2\u04a0\u04a1\7v\2\2"+ + "\u04a1\u04a2\7{\2\2\u04a2\u0501\7c\2\2\u04a3\u04a4\7v\2\2\u04a4\u04a5"+ + "\7z\2\2\u04a5\u0501\7u\2\2\u04a6\u04a7\7v\2\2\u04a7\u04a8\7c\2\2\u04a8"+ + "\u0501\7u\2\2\u04a9\u04aa\7u\2\2\u04aa\u04ab\7j\2\2\u04ab\u0501\7{\2\2"+ + "\u04ac\u04ad\7u\2\2\u04ad\u04ae\7j\2\2\u04ae\u0501\7z\2\2\u04af\u04b0"+ + "\7n\2\2\u04b0\u04b1\7f\2\2\u04b1\u0501\7{\2\2\u04b2\u04b3\7n\2\2\u04b3"+ + "\u04b4\7f\2\2\u04b4\u0501\7c\2\2\u04b5\u04b6\7n\2\2\u04b6\u04b7\7f\2\2"+ + "\u04b7\u0501\7z\2\2\u04b8\u04b9\7n\2\2\u04b9\u04ba\7c\2\2\u04ba\u0501"+ + "\7z\2\2\u04bb\u04bc\7v\2\2\u04bc\u04bd\7c\2\2\u04bd\u0501\7{\2\2\u04be"+ + "\u04bf\7v\2\2\u04bf\u04c0\7c\2\2\u04c0\u0501\7z\2\2\u04c1\u04c2\7d\2\2"+ + "\u04c2\u04c3\7e\2\2\u04c3\u0501\7u\2\2\u04c4\u04c5\7e\2\2\u04c5\u04c6"+ + "\7n\2\2\u04c6\u0501\7x\2\2\u04c7\u04c8\7v\2\2\u04c8\u04c9\7u\2\2\u04c9"+ + "\u0501\7z\2\2\u04ca\u04cb\7n\2\2\u04cb\u04cc\7c\2\2\u04cc\u0501\7u\2\2"+ + "\u04cd\u04ce\7e\2\2\u04ce\u04cf\7r\2\2\u04cf\u0501\7{\2\2\u04d0\u04d1"+ + "\7e\2\2\u04d1\u04d2\7o\2\2\u04d2\u0501\7r\2\2\u04d3\u04d4\7e\2\2\u04d4"+ + "\u04d5\7r\2\2\u04d5\u0501\7z\2\2\u04d6\u04d7\7f\2\2\u04d7\u04d8\7e\2\2"+ + "\u04d8\u0501\7r\2\2\u04d9\u04da\7f\2\2\u04da\u04db\7g\2\2\u04db\u0501"+ + "\7e\2\2\u04dc\u04dd\7k\2\2\u04dd\u04de\7p\2\2\u04de\u0501\7e\2\2\u04df"+ + "\u04e0\7c\2\2\u04e0\u04e1\7z\2\2\u04e1\u0501\7u\2\2\u04e2\u04e3\7d\2\2"+ + "\u04e3\u04e4\7p\2\2\u04e4\u0501\7g\2\2\u04e5\u04e6\7e\2\2\u04e6\u04e7"+ + "\7n\2\2\u04e7\u0501\7f\2\2\u04e8\u04e9\7u\2\2\u04e9\u04ea\7d\2\2\u04ea"+ + "\u0501\7e\2\2\u04eb\u04ec\7k\2\2\u04ec\u04ed\7u\2\2\u04ed\u0501\7e\2\2"+ + "\u04ee\u04ef\7k\2\2\u04ef\u04f0\7p\2\2\u04f0\u0501\7z\2\2\u04f1\u04f2"+ + "\7d\2\2\u04f2\u04f3\7g\2\2\u04f3\u0501\7s\2\2\u04f4\u04f5\7u\2\2\u04f5"+ + "\u04f6\7g\2\2\u04f6\u0501\7f\2\2\u04f7\u04f8\7f\2\2\u04f8\u04f9\7g\2\2"+ + "\u04f9\u0501\7z\2\2\u04fa\u04fb\7k\2\2\u04fb\u04fc\7p\2\2\u04fc\u0501"+ + "\7{\2\2\u04fd\u04fe\7t\2\2\u04fe\u04ff\7q\2\2\u04ff\u0501\7t\2\2\u0500"+ + "\u0422\3\2\2\2\u0500\u0425\3\2\2\2\u0500\u0428\3\2\2\2\u0500\u042b\3\2"+ + "\2\2\u0500\u042e\3\2\2\2\u0500\u0431\3\2\2\2\u0500\u0434\3\2\2\2\u0500"+ + "\u0437\3\2\2\2\u0500\u043a\3\2\2\2\u0500\u043d\3\2\2\2\u0500\u0440\3\2"+ + "\2\2\u0500\u0443\3\2\2\2\u0500\u0446\3\2\2\2\u0500\u0449\3\2\2\2\u0500"+ + "\u044c\3\2\2\2\u0500\u044f\3\2\2\2\u0500\u0452\3\2\2\2\u0500\u0455\3\2"+ + "\2\2\u0500\u0458\3\2\2\2\u0500\u045b\3\2\2\2\u0500\u045e\3\2\2\2\u0500"+ + "\u0461\3\2\2\2\u0500\u0464\3\2\2\2\u0500\u0467\3\2\2\2\u0500\u046a\3\2"+ + "\2\2\u0500\u046d\3\2\2\2\u0500\u0470\3\2\2\2\u0500\u0473\3\2\2\2\u0500"+ + "\u0476\3\2\2\2\u0500\u0479\3\2\2\2\u0500\u047c\3\2\2\2\u0500\u047f\3\2"+ + "\2\2\u0500\u0482\3\2\2\2\u0500\u0485\3\2\2\2\u0500\u0488\3\2\2\2\u0500"+ + "\u048b\3\2\2\2\u0500\u048e\3\2\2\2\u0500\u0491\3\2\2\2\u0500\u0494\3\2"+ + "\2\2\u0500\u0497\3\2\2\2\u0500\u049a\3\2\2\2\u0500\u049d\3\2\2\2\u0500"+ + "\u04a0\3\2\2\2\u0500\u04a3\3\2\2\2\u0500\u04a6\3\2\2\2\u0500\u04a9\3\2"+ + "\2\2\u0500\u04ac\3\2\2\2\u0500\u04af\3\2\2\2\u0500\u04b2\3\2\2\2\u0500"+ + "\u04b5\3\2\2\2\u0500\u04b8\3\2\2\2\u0500\u04bb\3\2\2\2\u0500\u04be\3\2"+ + "\2\2\u0500\u04c1\3\2\2\2\u0500\u04c4\3\2\2\2\u0500\u04c7\3\2\2\2\u0500"+ + "\u04ca\3\2\2\2\u0500\u04cd\3\2\2\2\u0500\u04d0\3\2\2\2\u0500\u04d3\3\2"+ + "\2\2\u0500\u04d6\3\2\2\2\u0500\u04d9\3\2\2\2\u0500\u04dc\3\2\2\2\u0500"+ + "\u04df\3\2\2\2\u0500\u04e2\3\2\2\2\u0500\u04e5\3\2\2\2\u0500\u04e8\3\2"+ + "\2\2\u0500\u04eb\3\2\2\2\u0500\u04ee\3\2\2\2\u0500\u04f1\3\2\2\2\u0500"+ + "\u04f4\3\2\2\2\u0500\u04f7\3\2\2\2\u0500\u04fa\3\2\2\2\u0500\u04fd\3\2"+ + "\2\2\u0501\u00e5\3\2\2\2\u0502\u0503\7%\2\2\u0503\u00e7\3\2\2\2\u0504"+ + "\u0505\7<\2\2\u0505\u00e9\3\2\2\2\u0506\u0507\7.\2\2\u0507\u00eb\3\2\2"+ + "\2\u0508\u0509\7*\2\2\u0509\u00ed\3\2\2\2\u050a\u050b\7+\2\2\u050b\u00ef"+ + "\3\2\2\2\u050c\u050d\7]\2\2\u050d\u00f1\3\2\2\2\u050e\u050f\7_\2\2\u050f"+ + "\u00f3\3\2\2\2\u0510\u0511\7\60\2\2\u0511\u00f5\3\2\2\2\u0512\u0513\7"+ + ">\2\2\u0513\u0514\7>\2\2\u0514\u00f7\3\2\2\2\u0515\u0516\7@\2\2\u0516"+ + "\u0517\7@\2\2\u0517\u00f9\3\2\2\2\u0518\u0519\7-\2\2\u0519\u00fb\3\2\2"+ + "\2\u051a\u051b\7/\2\2\u051b\u00fd\3\2\2\2\u051c\u051d\7>\2\2\u051d\u00ff"+ + "\3\2\2\2\u051e\u051f\7@\2\2\u051f\u0101\3\2\2\2\u0520\u0521\7,\2\2\u0521"+ + "\u0103\3\2\2\2\u0522\u0523\7\61\2\2\u0523\u0105\3\2\2\2\u0524\u0525\7"+ + "}\2\2\u0525\u0526\b\u0083\t\2\u0526\u0107\3\2\2\2\u0527\u0528\7\177\2"+ + "\2\u0528\u0529\b\u0084\n\2\u0529\u0109\3\2\2\2\u052a\u052d\5\u010c\u0086"+ + "\2\u052b\u052d\5\u0114\u008a\2\u052c\u052a\3\2\2\2\u052c\u052b\3\2\2\2"+ + "\u052d\u010b\3\2\2\2\u052e\u0532\5\u010e\u0087\2\u052f\u0532\5\u0110\u0088"+ + "\2\u0530\u0532\5\u0112\u0089\2\u0531\u052e\3\2\2\2\u0531\u052f\3\2\2\2"+ + "\u0531\u0530\3\2\2\2\u0532\u010d\3\2\2\2\u0533\u0537\7\'\2\2\u0534\u0536"+ + "\5\u011c\u008e\2\u0535\u0534\3\2\2\2\u0536\u0539\3\2\2\2\u0537\u0535\3"+ + "\2\2\2\u0537\u0538\3\2\2\2\u0538\u053a\3\2\2\2\u0539\u0537\3\2\2\2\u053a"+ + "\u053c\7\60\2\2\u053b\u053d\5\u011c\u008e\2\u053c\u053b\3\2\2\2\u053d"+ + "\u053e\3\2\2\2\u053e\u053c\3\2\2\2\u053e\u053f\3\2\2\2\u053f\u010f\3\2"+ + "\2\2\u0540\u0542\5\u011e\u008f\2\u0541\u0540\3\2\2\2\u0542\u0545\3\2\2"+ + "\2\u0543\u0541\3\2\2\2\u0543\u0544\3\2\2\2\u0544\u0546\3\2\2\2\u0545\u0543"+ + "\3\2\2\2\u0546\u0548\7\60\2\2\u0547\u0549\5\u011e\u008f\2\u0548\u0547"+ "\3\2\2\2\u0549\u054a\3\2\2\2\u054a\u0548\3\2\2\2\u054a\u054b\3\2\2\2\u054b"+ - "\u0115\3\2\2\2\u054c\u054d\t\13\2\2\u054d\u0117\3\2\2\2\u054e\u054f\t"+ - "\f\2\2\u054f\u0119\3\2\2\2\u0550\u0551\t\r\2\2\u0551\u011b\3\2\2\2\u0552"+ - "\u0556\7)\2\2\u0553\u0554\7^\2\2\u0554\u0557\t\6\2\2\u0555\u0557\n\7\2"+ - "\2\u0556\u0553\3\2\2\2\u0556\u0555\3\2\2\2\u0557\u0558\3\2\2\2\u0558\u0559"+ - "\7)\2\2\u0559\u011d\3\2\2\2\u055a\u055c\5\u0120\u0090\2\u055b\u055d\t"+ - "\22\2\2\u055c\u055b\3\2\2\2\u055d\u055e\3\2\2\2\u055e\u055c\3\2\2\2\u055e"+ - "\u055f\3\2\2\2\u055f\u011f\3\2\2\2\u0560\u0564\7#\2\2\u0561\u0563\5\u0126"+ - "\u0093\2\u0562\u0561\3\2\2\2\u0563\u0566\3\2\2\2\u0564\u0562\3\2\2\2\u0564"+ - "\u0565\3\2\2\2\u0565\u0121\3\2\2\2\u0566\u0564\3\2\2\2\u0567\u056b\5\u0124"+ - "\u0092\2\u0568\u056a\5\u0126\u0093\2\u0569\u0568\3\2\2\2\u056a\u056d\3"+ - "\2\2\2\u056b\u0569\3\2\2\2\u056b\u056c\3\2\2\2\u056c\u0123\3\2\2\2\u056d"+ - "\u056b\3\2\2\2\u056e\u056f\t\16\2\2\u056f\u0125\3\2\2\2\u0570\u0571\t"+ - "\17\2\2\u0571\u0127\3\2\2\2\u0572\u0574\t\20\2\2\u0573\u0572\3\2\2\2\u0574"+ - "\u0575\3\2\2\2\u0575\u0573\3\2\2\2\u0575\u0576\3\2\2\2\u0576\u0577\3\2"+ - "\2\2\u0577\u0578\b\u0094\7\2\u0578\u0129\3\2\2\2\u0579\u057a\7\61\2\2"+ - "\u057a\u057b\7\61\2\2\u057b\u057f\3\2\2\2\u057c\u057e\n\21\2\2\u057d\u057c"+ - "\3\2\2\2\u057e\u0581\3\2\2\2\u057f\u057d\3\2\2\2\u057f\u0580\3\2\2\2\u0580"+ - "\u0582\3\2\2\2\u0581\u057f\3\2\2\2\u0582\u0583\b\u0095\b\2\u0583\u012b"+ - "\3\2\2\2\u0584\u0585\7\61\2\2\u0585\u0586\7,\2\2\u0586\u058a\3\2\2\2\u0587"+ - "\u0589\13\2\2\2\u0588\u0587\3\2\2\2\u0589\u058c\3\2\2\2\u058a\u058b\3"+ - "\2\2\2\u058a\u0588\3\2\2\2\u058b\u058d\3\2\2\2\u058c\u058a\3\2\2\2\u058d"+ - "\u058e\7,\2\2\u058e\u058f\7\61\2\2\u058f\u0590\3\2\2\2\u0590\u0591\b\u0096"+ - "\b\2\u0591\u012d\3\2\2\2;\2\3\u0197\u0264\u0301\u0328\u0333\u033b\u0345"+ - "\u0347\u034c\u0350\u0352\u0355\u035d\u0363\u0368\u036f\u0374\u037b\u0380"+ - "\u0387\u038e\u0393\u039a\u039f\u03a4\u03ab\u03b1\u03b3\u03b8\u03bf\u03c4"+ - "\u03d0\u03dc\u03e6\u03f1\u04dd\u0509\u050e\u0514\u051b\u0520\u0527\u052d"+ - "\u0534\u0539\u053f\u0544\u054a\u0556\u055e\u0564\u056b\u0575\u057f\u058a"+ - "\13\3\2\2\3&\3\3H\4\3Z\5\3h\6\2\3\2\2\4\2\3\u0080\7\3\u0081\b"; + "\u0111\3\2\2\2\u054c\u0550\7&\2\2\u054d\u054f\5\u0120\u0090\2\u054e\u054d"+ + "\3\2\2\2\u054f\u0552\3\2\2\2\u0550\u054e\3\2\2\2\u0550\u0551\3\2\2\2\u0551"+ + "\u0553\3\2\2\2\u0552\u0550\3\2\2\2\u0553\u0555\7\60\2\2\u0554\u0556\5"+ + "\u0120\u0090\2\u0555\u0554\3\2\2\2\u0556\u0557\3\2\2\2\u0557\u0555\3\2"+ + "\2\2\u0557\u0558\3\2\2\2\u0558\u0113\3\2\2\2\u0559\u055d\5\u0118\u008c"+ + "\2\u055a\u055d\5\u011a\u008d\2\u055b\u055d\5\u0116\u008b\2\u055c\u0559"+ + "\3\2\2\2\u055c\u055a\3\2\2\2\u055c\u055b\3\2\2\2\u055d\u0115\3\2\2\2\u055e"+ + "\u0560\7\'\2\2\u055f\u0561\5\u011c\u008e\2\u0560\u055f\3\2\2\2\u0561\u0562"+ + "\3\2\2\2\u0562\u0560\3\2\2\2\u0562\u0563\3\2\2\2\u0563\u0117\3\2\2\2\u0564"+ + "\u0566\5\u011e\u008f\2\u0565\u0564\3\2\2\2\u0566\u0567\3\2\2\2\u0567\u0565"+ + "\3\2\2\2\u0567\u0568\3\2\2\2\u0568\u0119\3\2\2\2\u0569\u056b\7&\2\2\u056a"+ + "\u056c\5\u0120\u0090\2\u056b\u056a\3\2\2\2\u056c\u056d\3\2\2\2\u056d\u056b"+ + "\3\2\2\2\u056d\u056e\3\2\2\2\u056e\u011b\3\2\2\2\u056f\u0570\t\13\2\2"+ + "\u0570\u011d\3\2\2\2\u0571\u0572\t\f\2\2\u0572\u011f\3\2\2\2\u0573\u0574"+ + "\t\r\2\2\u0574\u0121\3\2\2\2\u0575\u0579\7)\2\2\u0576\u0577\7^\2\2\u0577"+ + "\u057a\t\6\2\2\u0578\u057a\n\7\2\2\u0579\u0576\3\2\2\2\u0579\u0578\3\2"+ + "\2\2\u057a\u057b\3\2\2\2\u057b\u057c\7)\2\2\u057c\u0123\3\2\2\2\u057d"+ + "\u057f\5\u0126\u0093\2\u057e\u0580\t\22\2\2\u057f\u057e\3\2\2\2\u0580"+ + "\u0581\3\2\2\2\u0581\u057f\3\2\2\2\u0581\u0582\3\2\2\2\u0582\u0125\3\2"+ + "\2\2\u0583\u0587\7#\2\2\u0584\u0586\5\u012c\u0096\2\u0585\u0584\3\2\2"+ + "\2\u0586\u0589\3\2\2\2\u0587\u0585\3\2\2\2\u0587\u0588\3\2\2\2\u0588\u0127"+ + "\3\2\2\2\u0589\u0587\3\2\2\2\u058a\u058e\5\u012a\u0095\2\u058b\u058d\5"+ + "\u012c\u0096\2\u058c\u058b\3\2\2\2\u058d\u0590\3\2\2\2\u058e\u058c\3\2"+ + "\2\2\u058e\u058f\3\2\2\2\u058f\u0129\3\2\2\2\u0590\u058e\3\2\2\2\u0591"+ + "\u0592\t\16\2\2\u0592\u012b\3\2\2\2\u0593\u0594\t\17\2\2\u0594\u012d\3"+ + "\2\2\2\u0595\u0597\t\20\2\2\u0596\u0595\3\2\2\2\u0597\u0598\3\2\2\2\u0598"+ + "\u0596\3\2\2\2\u0598\u0599\3\2\2\2\u0599\u059a\3\2\2\2\u059a\u059b\b\u0097"+ + "\7\2\u059b\u012f\3\2\2\2\u059c\u059d\7\61\2\2\u059d\u059e\7\61\2\2\u059e"+ + "\u05a2\3\2\2\2\u059f\u05a1\n\21\2\2\u05a0\u059f\3\2\2\2\u05a1\u05a4\3"+ + "\2\2\2\u05a2\u05a0\3\2\2\2\u05a2\u05a3\3\2\2\2\u05a3\u05a5\3\2\2\2\u05a4"+ + "\u05a2\3\2\2\2\u05a5\u05a6\b\u0098\b\2\u05a6\u0131\3\2\2\2\u05a7\u05a8"+ + "\7\61\2\2\u05a8\u05a9\7,\2\2\u05a9\u05ad\3\2\2\2\u05aa\u05ac\13\2\2\2"+ + "\u05ab\u05aa\3\2\2\2\u05ac\u05af\3\2\2\2\u05ad\u05ae\3\2\2\2\u05ad\u05ab"+ + "\3\2\2\2\u05ae\u05b0\3\2\2\2\u05af\u05ad\3\2\2\2\u05b0\u05b1\7,\2\2\u05b1"+ + "\u05b2\7\61\2\2\u05b2\u05b3\3\2\2\2\u05b3\u05b4\b\u0099\b\2\u05b4\u0133"+ + "\3\2\2\2;\2\3\u019d\u0287\u0324\u034b\u0356\u035e\u0368\u036a\u036f\u0373"+ + "\u0375\u0378\u0380\u0386\u038b\u0392\u0397\u039e\u03a3\u03aa\u03b1\u03b6"+ + "\u03bd\u03c2\u03c7\u03ce\u03d4\u03d6\u03db\u03e2\u03e7\u03f3\u03ff\u0409"+ + "\u0414\u0500\u052c\u0531\u0537\u053e\u0543\u054a\u0550\u0557\u055c\u0562"+ + "\u0567\u056d\u0579\u0581\u0587\u058e\u0598\u05a2\u05ad\13\3\2\2\3&\3\3"+ + "K\4\3]\5\3k\6\2\3\2\2\4\2\3\u0083\7\3\u0084\b"; 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 76992b263..4de687d67 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens @@ -55,89 +55,92 @@ NOTREGISTER=54 ADDRESS=55 ADDRESS_ZEROPAGE=56 ADDRESS_MAINMEM=57 -INLINE=58 -VOLATILE=59 -INTERRUPT=60 -CALLING=61 -CALLINGCONVENTION=62 -IF=63 -ELSE=64 -WHILE=65 -DO=66 -FOR=67 -SWITCH=68 -RETURN=69 -BREAK=70 -CONTINUE=71 -ASM=72 -DEFAULT=73 -CASE=74 -STRUCT=75 -ENUM=76 -SIZEOF=77 -TYPEID=78 -KICKASM=79 -RESOURCE=80 -USES=81 -CLOBBERS=82 -BYTES=83 -CYCLES=84 -LOGIC_NOT=85 -SIGNEDNESS=86 -SIMPLETYPE=87 -BOOLEAN=88 -KICKASM_BODY=89 -STRING=90 -CHAR=91 -NUMBER=92 -NUMFLOAT=93 -BINFLOAT=94 -DECFLOAT=95 -HEXFLOAT=96 -NUMINT=97 -BININTEGER=98 -DECINTEGER=99 -HEXINTEGER=100 -NAME=101 -WS=102 -COMMENT_LINE=103 -COMMENT_BLOCK=104 -ASM_BYTE=105 -ASM_MNEMONIC=106 -ASM_IMM=107 -ASM_COLON=108 -ASM_COMMA=109 -ASM_PAR_BEGIN=110 -ASM_PAR_END=111 -ASM_BRACKET_BEGIN=112 -ASM_BRACKET_END=113 -ASM_DOT=114 -ASM_SHIFT_LEFT=115 -ASM_SHIFT_RIGHT=116 -ASM_PLUS=117 -ASM_MINUS=118 -ASM_LESS_THAN=119 -ASM_GREATER_THAN=120 -ASM_MULTIPLY=121 -ASM_DIVIDE=122 -ASM_CURLY_BEGIN=123 -ASM_CURLY_END=124 -ASM_NUMBER=125 -ASM_NUMFLOAT=126 -ASM_BINFLOAT=127 -ASM_DECFLOAT=128 -ASM_HEXFLOAT=129 -ASM_NUMINT=130 -ASM_BININTEGER=131 -ASM_DECINTEGER=132 -ASM_HEXINTEGER=133 -ASM_CHAR=134 -ASM_MULTI_REL=135 -ASM_MULTI_NAME=136 -ASM_NAME=137 -ASM_WS=138 -ASM_COMMENT_LINE=139 -ASM_COMMENT_BLOCK=140 +FORM_SSA=58 +FORM_NOTSSA=59 +INLINE=60 +VOLATILE=61 +NOTVOLATILE=62 +INTERRUPT=63 +CALLING=64 +CALLINGCONVENTION=65 +IF=66 +ELSE=67 +WHILE=68 +DO=69 +FOR=70 +SWITCH=71 +RETURN=72 +BREAK=73 +CONTINUE=74 +ASM=75 +DEFAULT=76 +CASE=77 +STRUCT=78 +ENUM=79 +SIZEOF=80 +TYPEID=81 +KICKASM=82 +RESOURCE=83 +USES=84 +CLOBBERS=85 +BYTES=86 +CYCLES=87 +LOGIC_NOT=88 +SIGNEDNESS=89 +SIMPLETYPE=90 +BOOLEAN=91 +KICKASM_BODY=92 +STRING=93 +CHAR=94 +NUMBER=95 +NUMFLOAT=96 +BINFLOAT=97 +DECFLOAT=98 +HEXFLOAT=99 +NUMINT=100 +BININTEGER=101 +DECINTEGER=102 +HEXINTEGER=103 +NAME=104 +WS=105 +COMMENT_LINE=106 +COMMENT_BLOCK=107 +ASM_BYTE=108 +ASM_MNEMONIC=109 +ASM_IMM=110 +ASM_COLON=111 +ASM_COMMA=112 +ASM_PAR_BEGIN=113 +ASM_PAR_END=114 +ASM_BRACKET_BEGIN=115 +ASM_BRACKET_END=116 +ASM_DOT=117 +ASM_SHIFT_LEFT=118 +ASM_SHIFT_RIGHT=119 +ASM_PLUS=120 +ASM_MINUS=121 +ASM_LESS_THAN=122 +ASM_GREATER_THAN=123 +ASM_MULTIPLY=124 +ASM_DIVIDE=125 +ASM_CURLY_BEGIN=126 +ASM_CURLY_END=127 +ASM_NUMBER=128 +ASM_NUMFLOAT=129 +ASM_BINFLOAT=130 +ASM_DECFLOAT=131 +ASM_HEXFLOAT=132 +ASM_NUMINT=133 +ASM_BININTEGER=134 +ASM_DECINTEGER=135 +ASM_HEXINTEGER=136 +ASM_CHAR=137 +ASM_MULTI_REL=138 +ASM_MULTI_NAME=139 +ASM_NAME=140 +ASM_WS=141 +ASM_COMMENT_LINE=142 +ASM_COMMENT_BLOCK=143 ';'=8 '..'=11 '?'=12 @@ -176,32 +179,35 @@ ASM_COMMENT_BLOCK=140 '__address'=55 '__zp'=56 '__mem'=57 -'inline'=58 -'volatile'=59 -'interrupt'=60 -'calling'=61 -'if'=63 -'else'=64 -'while'=65 -'do'=66 -'for'=67 -'switch'=68 -'return'=69 -'break'=70 -'continue'=71 -'asm'=72 -'default'=73 -'case'=74 -'struct'=75 -'enum'=76 -'sizeof'=77 -'typeid'=78 -'kickasm'=79 -'resource'=80 -'uses'=81 -'clobbers'=82 -'bytes'=83 -'cycles'=84 -'!'=85 -'.byte'=105 -'#'=107 +'__ssa'=58 +'__notssa'=59 +'inline'=60 +'volatile'=61 +'__notvolatile'=62 +'interrupt'=63 +'calling'=64 +'if'=66 +'else'=67 +'while'=68 +'do'=69 +'for'=70 +'switch'=71 +'return'=72 +'break'=73 +'continue'=74 +'asm'=75 +'default'=76 +'case'=77 +'struct'=78 +'enum'=79 +'sizeof'=80 +'typeid'=81 +'kickasm'=82 +'resource'=83 +'uses'=84 +'clobbers'=85 +'bytes'=86 +'cycles'=87 +'!'=88 +'.byte'=108 +'#'=110 diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 b/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 index c1b67f5a0..366417445 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 @@ -104,8 +104,12 @@ directive | ADDRESS_ZEROPAGE #directiveMemoryAreaZp | ADDRESS_MAINMEM #directiveMemoryAreaMain | ADDRESS PAR_BEGIN ( NUMBER ) PAR_END #directiveMemoryAreaAddress + | FORM_SSA #directiveFormSsa + | FORM_NOTSSA #directiveFormNotSsa + | ADDRESS PAR_BEGIN ( NUMBER ) PAR_END #directiveMemoryAreaAddress | INLINE #directiveInline | VOLATILE #directiveVolatile + | NOTVOLATILE #directiveNotVolatile | INTERRUPT ( PAR_BEGIN NAME PAR_END )? #directiveInterrupt | RESERVE PAR_BEGIN NUMBER ( COMMA NUMBER )* PAR_END #directiveReserveZp | CALLINGCONVENTION #directiveCallingConvention diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.java b/src/main/java/dk/camelot64/kickc/parser/KickCParser.java index 23e2e883f..4e4e562c3 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.java @@ -1,4 +1,4 @@ -// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickCParser.g4 by ANTLR 4.7.2 +// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 by ANTLR 4.7 package dk.camelot64.kickc.parser; @@ -13,7 +13,7 @@ import java.util.ArrayList; @SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast"}) public class KickCParser extends Parser { - static { RuntimeMetaData.checkVersion("4.7.2", RuntimeMetaData.VERSION); } + static { RuntimeMetaData.checkVersion("4.7", RuntimeMetaData.VERSION); } protected static final DFA[] _decisionToDFA; protected static final PredictionContextCache _sharedContextCache = @@ -28,23 +28,23 @@ public class KickCParser extends Parser { ASSIGN_COMPOUND=37, IMPORT=38, TYPEDEF=39, PRAGMA=40, RESERVE=41, PC=42, TARGET=43, LINK=44, CPU=45, CODESEG=46, DATASEG=47, ENCODING=48, CONST=49, EXTERN=50, EXPORT=51, ALIGN=52, REGISTER=53, NOTREGISTER=54, ADDRESS=55, - ADDRESS_ZEROPAGE=56, ADDRESS_MAINMEM=57, INLINE=58, VOLATILE=59, INTERRUPT=60, - CALLING=61, CALLINGCONVENTION=62, IF=63, ELSE=64, WHILE=65, DO=66, FOR=67, - SWITCH=68, RETURN=69, BREAK=70, CONTINUE=71, ASM=72, DEFAULT=73, CASE=74, - STRUCT=75, ENUM=76, SIZEOF=77, TYPEID=78, KICKASM=79, RESOURCE=80, USES=81, - CLOBBERS=82, BYTES=83, CYCLES=84, LOGIC_NOT=85, SIGNEDNESS=86, SIMPLETYPE=87, - BOOLEAN=88, KICKASM_BODY=89, STRING=90, CHAR=91, NUMBER=92, NUMFLOAT=93, - BINFLOAT=94, DECFLOAT=95, HEXFLOAT=96, NUMINT=97, BININTEGER=98, DECINTEGER=99, - HEXINTEGER=100, NAME=101, WS=102, COMMENT_LINE=103, COMMENT_BLOCK=104, - ASM_BYTE=105, ASM_MNEMONIC=106, ASM_IMM=107, ASM_COLON=108, ASM_COMMA=109, - ASM_PAR_BEGIN=110, ASM_PAR_END=111, ASM_BRACKET_BEGIN=112, ASM_BRACKET_END=113, - ASM_DOT=114, ASM_SHIFT_LEFT=115, ASM_SHIFT_RIGHT=116, ASM_PLUS=117, ASM_MINUS=118, - ASM_LESS_THAN=119, ASM_GREATER_THAN=120, ASM_MULTIPLY=121, ASM_DIVIDE=122, - ASM_CURLY_BEGIN=123, ASM_CURLY_END=124, ASM_NUMBER=125, ASM_NUMFLOAT=126, - ASM_BINFLOAT=127, ASM_DECFLOAT=128, ASM_HEXFLOAT=129, ASM_NUMINT=130, - ASM_BININTEGER=131, ASM_DECINTEGER=132, ASM_HEXINTEGER=133, ASM_CHAR=134, - ASM_MULTI_REL=135, ASM_MULTI_NAME=136, ASM_NAME=137, ASM_WS=138, ASM_COMMENT_LINE=139, - ASM_COMMENT_BLOCK=140; + ADDRESS_ZEROPAGE=56, ADDRESS_MAINMEM=57, FORM_SSA=58, FORM_NOTSSA=59, + INLINE=60, VOLATILE=61, NOTVOLATILE=62, INTERRUPT=63, CALLING=64, CALLINGCONVENTION=65, + IF=66, ELSE=67, WHILE=68, DO=69, FOR=70, SWITCH=71, RETURN=72, BREAK=73, + CONTINUE=74, ASM=75, DEFAULT=76, CASE=77, STRUCT=78, ENUM=79, SIZEOF=80, + TYPEID=81, KICKASM=82, RESOURCE=83, USES=84, CLOBBERS=85, BYTES=86, CYCLES=87, + LOGIC_NOT=88, SIGNEDNESS=89, SIMPLETYPE=90, BOOLEAN=91, KICKASM_BODY=92, + STRING=93, CHAR=94, NUMBER=95, NUMFLOAT=96, BINFLOAT=97, DECFLOAT=98, + HEXFLOAT=99, NUMINT=100, BININTEGER=101, DECINTEGER=102, HEXINTEGER=103, + NAME=104, WS=105, COMMENT_LINE=106, COMMENT_BLOCK=107, ASM_BYTE=108, ASM_MNEMONIC=109, + ASM_IMM=110, ASM_COLON=111, ASM_COMMA=112, ASM_PAR_BEGIN=113, ASM_PAR_END=114, + ASM_BRACKET_BEGIN=115, ASM_BRACKET_END=116, ASM_DOT=117, ASM_SHIFT_LEFT=118, + ASM_SHIFT_RIGHT=119, ASM_PLUS=120, ASM_MINUS=121, ASM_LESS_THAN=122, ASM_GREATER_THAN=123, + ASM_MULTIPLY=124, ASM_DIVIDE=125, ASM_CURLY_BEGIN=126, ASM_CURLY_END=127, + ASM_NUMBER=128, ASM_NUMFLOAT=129, ASM_BINFLOAT=130, ASM_DECFLOAT=131, + ASM_HEXFLOAT=132, ASM_NUMINT=133, ASM_BININTEGER=134, ASM_DECINTEGER=135, + ASM_HEXINTEGER=136, ASM_CHAR=137, ASM_MULTI_REL=138, ASM_MULTI_NAME=139, + ASM_NAME=140, ASM_WS=141, ASM_COMMENT_LINE=142, ASM_COMMENT_BLOCK=143; public static final int RULE_file = 0, RULE_asmFile = 1, RULE_declSeq = 2, RULE_declOrImport = 3, RULE_importDecl = 4, RULE_decl = 5, RULE_typeDef = 6, RULE_declTypes = 7, @@ -58,67 +58,59 @@ public class KickCParser extends Parser { RULE_asmDirectives = 34, RULE_asmDirective = 35, RULE_asmLines = 36, RULE_asmLine = 37, RULE_asmLabel = 38, RULE_asmInstruction = 39, RULE_asmBytes = 40, RULE_asmParamMode = 41, RULE_asmExpr = 42; - private static String[] makeRuleNames() { - return new String[] { - "file", "asmFile", "declSeq", "declOrImport", "importDecl", "decl", "typeDef", - "declTypes", "declVariables", "declVariableList", "declVariableInit", - "declFunction", "parameterListDecl", "parameterDecl", "globalDirective", - "directive", "stmtSeq", "stmt", "switchCases", "switchCase", "forLoop", - "forClassicInit", "typeDecl", "structRef", "structDef", "structMembers", - "enumRef", "enumDef", "enumMemberList", "enumMember", "commaExpr", "expr", - "parameterList", "declKasm", "asmDirectives", "asmDirective", "asmLines", - "asmLine", "asmLabel", "asmInstruction", "asmBytes", "asmParamMode", - "asmExpr" - }; - } - public static final String[] ruleNames = makeRuleNames(); + public static final String[] ruleNames = { + "file", "asmFile", "declSeq", "declOrImport", "importDecl", "decl", "typeDef", + "declTypes", "declVariables", "declVariableList", "declVariableInit", + "declFunction", "parameterListDecl", "parameterDecl", "globalDirective", + "directive", "stmtSeq", "stmt", "switchCases", "switchCase", "forLoop", + "forClassicInit", "typeDecl", "structRef", "structDef", "structMembers", + "enumRef", "enumDef", "enumMemberList", "enumMember", "commaExpr", "expr", + "parameterList", "declKasm", "asmDirectives", "asmDirective", "asmLines", + "asmLine", "asmLabel", "asmInstruction", "asmBytes", "asmParamMode", "asmExpr" + }; - private static String[] makeLiteralNames() { - return new String[] { - null, null, null, null, null, null, null, null, "';'", null, null, "'..'", - "'?'", null, "'->'", null, null, null, null, "'%'", "'++'", "'--'", "'&'", - "'~'", "'^'", "'|'", null, null, "'=='", "'!='", null, "'<='", "'>='", - null, "'&&'", "'||'", "'='", null, "'import'", "'typedef'", "'#pragma'", - "'reserve'", "'pc'", "'target'", "'link'", "'cpu'", "'code_seg'", "'data_seg'", - "'encoding'", "'const'", "'extern'", "'export'", "'align'", "'register'", - "'__notregister'", "'__address'", "'__zp'", "'__mem'", "'inline'", "'volatile'", - "'interrupt'", "'calling'", null, "'if'", "'else'", "'while'", "'do'", - "'for'", "'switch'", "'return'", "'break'", "'continue'", "'asm'", "'default'", - "'case'", "'struct'", "'enum'", "'sizeof'", "'typeid'", "'kickasm'", - "'resource'", "'uses'", "'clobbers'", "'bytes'", "'cycles'", "'!'", null, - null, null, null, null, null, null, null, null, null, null, null, null, - null, null, null, null, null, null, "'.byte'", null, "'#'" - }; - } - private static final String[] _LITERAL_NAMES = makeLiteralNames(); - private static String[] makeSymbolicNames() { - return new String[] { - null, "TYPEDEFNAME", "CURLY_BEGIN", "CURLY_END", "BRACKET_BEGIN", "BRACKET_END", - "PAR_BEGIN", "PAR_END", "SEMICOLON", "COLON", "COMMA", "RANGE", "CONDITION", - "DOT", "ARROW", "PLUS", "MINUS", "ASTERISK", "DIVIDE", "MODULO", "INC", - "DEC", "AND", "BIT_NOT", "BIT_XOR", "BIT_OR", "SHIFT_LEFT", "SHIFT_RIGHT", - "EQUAL", "NOT_EQUAL", "LESS_THAN", "LESS_THAN_EQUAL", "GREATER_THAN_EQUAL", - "GREATER_THAN", "LOGIC_AND", "LOGIC_OR", "ASSIGN", "ASSIGN_COMPOUND", - "IMPORT", "TYPEDEF", "PRAGMA", "RESERVE", "PC", "TARGET", "LINK", "CPU", - "CODESEG", "DATASEG", "ENCODING", "CONST", "EXTERN", "EXPORT", "ALIGN", - "REGISTER", "NOTREGISTER", "ADDRESS", "ADDRESS_ZEROPAGE", "ADDRESS_MAINMEM", - "INLINE", "VOLATILE", "INTERRUPT", "CALLING", "CALLINGCONVENTION", "IF", - "ELSE", "WHILE", "DO", "FOR", "SWITCH", "RETURN", "BREAK", "CONTINUE", - "ASM", "DEFAULT", "CASE", "STRUCT", "ENUM", "SIZEOF", "TYPEID", "KICKASM", - "RESOURCE", "USES", "CLOBBERS", "BYTES", "CYCLES", "LOGIC_NOT", "SIGNEDNESS", - "SIMPLETYPE", "BOOLEAN", "KICKASM_BODY", "STRING", "CHAR", "NUMBER", - "NUMFLOAT", "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", - "DECINTEGER", "HEXINTEGER", "NAME", "WS", "COMMENT_LINE", "COMMENT_BLOCK", - "ASM_BYTE", "ASM_MNEMONIC", "ASM_IMM", "ASM_COLON", "ASM_COMMA", "ASM_PAR_BEGIN", - "ASM_PAR_END", "ASM_BRACKET_BEGIN", "ASM_BRACKET_END", "ASM_DOT", "ASM_SHIFT_LEFT", - "ASM_SHIFT_RIGHT", "ASM_PLUS", "ASM_MINUS", "ASM_LESS_THAN", "ASM_GREATER_THAN", - "ASM_MULTIPLY", "ASM_DIVIDE", "ASM_CURLY_BEGIN", "ASM_CURLY_END", "ASM_NUMBER", - "ASM_NUMFLOAT", "ASM_BINFLOAT", "ASM_DECFLOAT", "ASM_HEXFLOAT", "ASM_NUMINT", - "ASM_BININTEGER", "ASM_DECINTEGER", "ASM_HEXINTEGER", "ASM_CHAR", "ASM_MULTI_REL", - "ASM_MULTI_NAME", "ASM_NAME", "ASM_WS", "ASM_COMMENT_LINE", "ASM_COMMENT_BLOCK" - }; - } - private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); + private static final String[] _LITERAL_NAMES = { + null, null, null, null, null, null, null, null, "';'", null, null, "'..'", + "'?'", null, "'->'", null, null, null, null, "'%'", "'++'", "'--'", "'&'", + "'~'", "'^'", "'|'", null, null, "'=='", "'!='", null, "'<='", "'>='", + null, "'&&'", "'||'", "'='", null, "'import'", "'typedef'", "'#pragma'", + "'reserve'", "'pc'", "'target'", "'link'", "'cpu'", "'code_seg'", "'data_seg'", + "'encoding'", "'const'", "'extern'", "'export'", "'align'", "'register'", + "'__notregister'", "'__address'", "'__zp'", "'__mem'", "'__ssa'", "'__notssa'", + "'inline'", "'volatile'", "'__notvolatile'", "'interrupt'", "'calling'", + null, "'if'", "'else'", "'while'", "'do'", "'for'", "'switch'", "'return'", + "'break'", "'continue'", "'asm'", "'default'", "'case'", "'struct'", "'enum'", + "'sizeof'", "'typeid'", "'kickasm'", "'resource'", "'uses'", "'clobbers'", + "'bytes'", "'cycles'", "'!'", null, null, null, null, null, null, null, + null, null, null, null, null, null, null, null, null, null, null, null, + "'.byte'", null, "'#'" + }; + private static final String[] _SYMBOLIC_NAMES = { + null, "TYPEDEFNAME", "CURLY_BEGIN", "CURLY_END", "BRACKET_BEGIN", "BRACKET_END", + "PAR_BEGIN", "PAR_END", "SEMICOLON", "COLON", "COMMA", "RANGE", "CONDITION", + "DOT", "ARROW", "PLUS", "MINUS", "ASTERISK", "DIVIDE", "MODULO", "INC", + "DEC", "AND", "BIT_NOT", "BIT_XOR", "BIT_OR", "SHIFT_LEFT", "SHIFT_RIGHT", + "EQUAL", "NOT_EQUAL", "LESS_THAN", "LESS_THAN_EQUAL", "GREATER_THAN_EQUAL", + "GREATER_THAN", "LOGIC_AND", "LOGIC_OR", "ASSIGN", "ASSIGN_COMPOUND", + "IMPORT", "TYPEDEF", "PRAGMA", "RESERVE", "PC", "TARGET", "LINK", "CPU", + "CODESEG", "DATASEG", "ENCODING", "CONST", "EXTERN", "EXPORT", "ALIGN", + "REGISTER", "NOTREGISTER", "ADDRESS", "ADDRESS_ZEROPAGE", "ADDRESS_MAINMEM", + "FORM_SSA", "FORM_NOTSSA", "INLINE", "VOLATILE", "NOTVOLATILE", "INTERRUPT", + "CALLING", "CALLINGCONVENTION", "IF", "ELSE", "WHILE", "DO", "FOR", "SWITCH", + "RETURN", "BREAK", "CONTINUE", "ASM", "DEFAULT", "CASE", "STRUCT", "ENUM", + "SIZEOF", "TYPEID", "KICKASM", "RESOURCE", "USES", "CLOBBERS", "BYTES", + "CYCLES", "LOGIC_NOT", "SIGNEDNESS", "SIMPLETYPE", "BOOLEAN", "KICKASM_BODY", + "STRING", "CHAR", "NUMBER", "NUMFLOAT", "BINFLOAT", "DECFLOAT", "HEXFLOAT", + "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER", "NAME", "WS", "COMMENT_LINE", + "COMMENT_BLOCK", "ASM_BYTE", "ASM_MNEMONIC", "ASM_IMM", "ASM_COLON", "ASM_COMMA", + "ASM_PAR_BEGIN", "ASM_PAR_END", "ASM_BRACKET_BEGIN", "ASM_BRACKET_END", + "ASM_DOT", "ASM_SHIFT_LEFT", "ASM_SHIFT_RIGHT", "ASM_PLUS", "ASM_MINUS", + "ASM_LESS_THAN", "ASM_GREATER_THAN", "ASM_MULTIPLY", "ASM_DIVIDE", "ASM_CURLY_BEGIN", + "ASM_CURLY_END", "ASM_NUMBER", "ASM_NUMFLOAT", "ASM_BINFLOAT", "ASM_DECFLOAT", + "ASM_HEXFLOAT", "ASM_NUMINT", "ASM_BININTEGER", "ASM_DECINTEGER", "ASM_HEXINTEGER", + "ASM_CHAR", "ASM_MULTI_REL", "ASM_MULTI_NAME", "ASM_NAME", "ASM_WS", "ASM_COMMENT_LINE", + "ASM_COMMENT_BLOCK" + }; public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES); /** @@ -177,7 +169,6 @@ public class KickCParser extends Parser { super(input); _interp = new ParserATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache); } - public static class FileContext extends ParserRuleContext { public DeclSeqContext declSeq() { return getRuleContext(DeclSeqContext.class,0); @@ -308,7 +299,7 @@ public class KickCParser extends Parser { setState(95); _errHandler.sync(this); _la = _input.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << IMPORT) | (1L << TYPEDEF) | (1L << PRAGMA) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << NOTREGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 75)) & ~0x3f) == 0 && ((1L << (_la - 75)) & ((1L << (STRUCT - 75)) | (1L << (ENUM - 75)) | (1L << (KICKASM - 75)) | (1L << (SIGNEDNESS - 75)) | (1L << (SIMPLETYPE - 75)))) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << IMPORT) | (1L << TYPEDEF) | (1L << PRAGMA) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << NOTREGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_NOTSSA) | (1L << INLINE) | (1L << VOLATILE) | (1L << NOTVOLATILE) | (1L << INTERRUPT))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (CALLINGCONVENTION - 65)) | (1L << (STRUCT - 65)) | (1L << (ENUM - 65)) | (1L << (KICKASM - 65)) | (1L << (SIGNEDNESS - 65)) | (1L << (SIMPLETYPE - 65)))) != 0)) { { { setState(92); @@ -379,8 +370,11 @@ public class KickCParser extends Parser { case ADDRESS: case ADDRESS_ZEROPAGE: case ADDRESS_MAINMEM: + case FORM_SSA: + case FORM_NOTSSA: case INLINE: case VOLATILE: + case NOTVOLATILE: case INTERRUPT: case CALLINGCONVENTION: case STRUCT: @@ -465,7 +459,6 @@ public class KickCParser extends Parser { public DeclVariablesContext declVariables() { return getRuleContext(DeclVariablesContext.class,0); } - public TerminalNode SEMICOLON() { return getToken(KickCParser.SEMICOLON, 0); } public StructDefContext structDef() { return getRuleContext(StructDefContext.class,0); } @@ -671,7 +664,7 @@ public class KickCParser extends Parser { setState(130); _errHandler.sync(this); _la = _input.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << NOTREGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION))) != 0)) { + while (((((_la - 41)) & ~0x3f) == 0 && ((1L << (_la - 41)) & ((1L << (RESERVE - 41)) | (1L << (CONST - 41)) | (1L << (EXTERN - 41)) | (1L << (EXPORT - 41)) | (1L << (ALIGN - 41)) | (1L << (REGISTER - 41)) | (1L << (NOTREGISTER - 41)) | (1L << (ADDRESS - 41)) | (1L << (ADDRESS_ZEROPAGE - 41)) | (1L << (ADDRESS_MAINMEM - 41)) | (1L << (FORM_SSA - 41)) | (1L << (FORM_NOTSSA - 41)) | (1L << (INLINE - 41)) | (1L << (VOLATILE - 41)) | (1L << (NOTVOLATILE - 41)) | (1L << (INTERRUPT - 41)) | (1L << (CALLINGCONVENTION - 41)))) != 0)) { { { setState(127); @@ -687,7 +680,7 @@ public class KickCParser extends Parser { setState(137); _errHandler.sync(this); _la = _input.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << NOTREGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION))) != 0)) { + while (((((_la - 41)) & ~0x3f) == 0 && ((1L << (_la - 41)) & ((1L << (RESERVE - 41)) | (1L << (CONST - 41)) | (1L << (EXTERN - 41)) | (1L << (EXPORT - 41)) | (1L << (ALIGN - 41)) | (1L << (REGISTER - 41)) | (1L << (NOTREGISTER - 41)) | (1L << (ADDRESS - 41)) | (1L << (ADDRESS_ZEROPAGE - 41)) | (1L << (ADDRESS_MAINMEM - 41)) | (1L << (FORM_SSA - 41)) | (1L << (FORM_NOTSSA - 41)) | (1L << (INLINE - 41)) | (1L << (VOLATILE - 41)) | (1L << (NOTVOLATILE - 41)) | (1L << (INTERRUPT - 41)) | (1L << (CALLINGCONVENTION - 41)))) != 0)) { { { setState(134); @@ -857,7 +850,6 @@ public class KickCParser extends Parser { } public static class DeclVariableInitKasmContext extends DeclVariableInitContext { public TerminalNode NAME() { return getToken(KickCParser.NAME, 0); } - public TerminalNode ASSIGN() { return getToken(KickCParser.ASSIGN, 0); } public DeclKasmContext declKasm() { return getRuleContext(DeclKasmContext.class,0); } @@ -878,7 +870,6 @@ public class KickCParser extends Parser { } public static class DeclVariableInitExprContext extends DeclVariableInitContext { public TerminalNode NAME() { return getToken(KickCParser.NAME, 0); } - public TerminalNode ASSIGN() { return getToken(KickCParser.ASSIGN, 0); } public ExprContext expr() { return getRuleContext(ExprContext.class,0); } @@ -1000,7 +991,7 @@ public class KickCParser extends Parser { setState(168); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << NOTREGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 75)) & ~0x3f) == 0 && ((1L << (_la - 75)) & ((1L << (STRUCT - 75)) | (1L << (ENUM - 75)) | (1L << (SIGNEDNESS - 75)) | (1L << (SIMPLETYPE - 75)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << NOTREGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_NOTSSA) | (1L << INLINE) | (1L << VOLATILE) | (1L << NOTVOLATILE) | (1L << INTERRUPT))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (CALLINGCONVENTION - 65)) | (1L << (STRUCT - 65)) | (1L << (ENUM - 65)) | (1L << (SIGNEDNESS - 65)) | (1L << (SIMPLETYPE - 65)))) != 0)) { { setState(167); parameterListDecl(); @@ -1014,7 +1005,7 @@ public class KickCParser extends Parser { setState(173); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << NOTREGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION) | (1L << IF))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (WHILE - 65)) | (1L << (DO - 65)) | (1L << (FOR - 65)) | (1L << (SWITCH - 65)) | (1L << (RETURN - 65)) | (1L << (BREAK - 65)) | (1L << (CONTINUE - 65)) | (1L << (ASM - 65)) | (1L << (STRUCT - 65)) | (1L << (ENUM - 65)) | (1L << (SIZEOF - 65)) | (1L << (TYPEID - 65)) | (1L << (KICKASM - 65)) | (1L << (LOGIC_NOT - 65)) | (1L << (SIGNEDNESS - 65)) | (1L << (SIMPLETYPE - 65)) | (1L << (BOOLEAN - 65)) | (1L << (STRING - 65)) | (1L << (CHAR - 65)) | (1L << (NUMBER - 65)) | (1L << (NAME - 65)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << NOTREGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_NOTSSA) | (1L << INLINE) | (1L << VOLATILE) | (1L << NOTVOLATILE) | (1L << INTERRUPT))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (CALLINGCONVENTION - 65)) | (1L << (IF - 65)) | (1L << (WHILE - 65)) | (1L << (DO - 65)) | (1L << (FOR - 65)) | (1L << (SWITCH - 65)) | (1L << (RETURN - 65)) | (1L << (BREAK - 65)) | (1L << (CONTINUE - 65)) | (1L << (ASM - 65)) | (1L << (STRUCT - 65)) | (1L << (ENUM - 65)) | (1L << (SIZEOF - 65)) | (1L << (TYPEID - 65)) | (1L << (KICKASM - 65)) | (1L << (LOGIC_NOT - 65)) | (1L << (SIGNEDNESS - 65)) | (1L << (SIMPLETYPE - 65)) | (1L << (BOOLEAN - 65)) | (1L << (STRING - 65)) | (1L << (CHAR - 65)) | (1L << (NUMBER - 65)) | (1L << (NAME - 65)))) != 0)) { { setState(172); stmtSeq(); @@ -1609,6 +1600,23 @@ public class KickCParser extends Parser { super.copyFrom(ctx); } } + public static class DirectiveFormNotSsaContext extends DirectiveContext { + public TerminalNode FORM_NOTSSA() { return getToken(KickCParser.FORM_NOTSSA, 0); } + public DirectiveFormNotSsaContext(DirectiveContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterDirectiveFormNotSsa(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitDirectiveFormNotSsa(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor)visitor).visitDirectiveFormNotSsa(this); + else return visitor.visitChildren(this); + } + } public static class DirectiveMemoryAreaZpContext extends DirectiveContext { public TerminalNode ADDRESS_ZEROPAGE() { return getToken(KickCParser.ADDRESS_ZEROPAGE, 0); } public DirectiveMemoryAreaZpContext(DirectiveContext ctx) { copyFrom(ctx); } @@ -1751,6 +1759,23 @@ public class KickCParser extends Parser { else return visitor.visitChildren(this); } } + public static class DirectiveFormSsaContext extends DirectiveContext { + public TerminalNode FORM_SSA() { return getToken(KickCParser.FORM_SSA, 0); } + public DirectiveFormSsaContext(DirectiveContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterDirectiveFormSsa(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitDirectiveFormSsa(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor)visitor).visitDirectiveFormSsa(this); + else return visitor.visitChildren(this); + } + } public static class DirectiveExportContext extends DirectiveContext { public TerminalNode EXPORT() { return getToken(KickCParser.EXPORT, 0); } public DirectiveExportContext(DirectiveContext ctx) { copyFrom(ctx); } @@ -1768,6 +1793,23 @@ public class KickCParser extends Parser { else return visitor.visitChildren(this); } } + public static class DirectiveNotVolatileContext extends DirectiveContext { + public TerminalNode NOTVOLATILE() { return getToken(KickCParser.NOTVOLATILE, 0); } + public DirectiveNotVolatileContext(DirectiveContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterDirectiveNotVolatile(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitDirectiveNotVolatile(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor)visitor).visitDirectiveNotVolatile(this); + else return visitor.visitChildren(this); + } + } public static class DirectiveExternContext extends DirectiveContext { public TerminalNode EXTERN() { return getToken(KickCParser.EXTERN, 0); } public DirectiveExternContext(DirectiveContext ctx) { copyFrom(ctx); } @@ -1875,10 +1917,10 @@ public class KickCParser extends Parser { enterRule(_localctx, 30, RULE_directive); int _la; try { - setState(294); + setState(301); _errHandler.sync(this); - switch (_input.LA(1)) { - case CONST: + switch ( getInterpreter().adaptivePredict(_input,17,_ctx) ) { + case 1: _localctx = new DirectiveConstContext(_localctx); enterOuterAlt(_localctx, 1); { @@ -1886,7 +1928,7 @@ public class KickCParser extends Parser { match(CONST); } break; - case EXTERN: + case 2: _localctx = new DirectiveExternContext(_localctx); enterOuterAlt(_localctx, 2); { @@ -1894,7 +1936,7 @@ public class KickCParser extends Parser { match(EXTERN); } break; - case EXPORT: + case 3: _localctx = new DirectiveExportContext(_localctx); enterOuterAlt(_localctx, 3); { @@ -1902,7 +1944,7 @@ public class KickCParser extends Parser { match(EXPORT); } break; - case ALIGN: + case 4: _localctx = new DirectiveAlignContext(_localctx); enterOuterAlt(_localctx, 4); { @@ -1916,7 +1958,7 @@ public class KickCParser extends Parser { match(PAR_END); } break; - case REGISTER: + case 5: _localctx = new DirectiveRegisterContext(_localctx); enterOuterAlt(_localctx, 5); { @@ -1940,7 +1982,7 @@ public class KickCParser extends Parser { } } break; - case NOTREGISTER: + case 6: _localctx = new DirectiveNotRegisterContext(_localctx); enterOuterAlt(_localctx, 6); { @@ -1948,7 +1990,7 @@ public class KickCParser extends Parser { match(NOTREGISTER); } break; - case ADDRESS_ZEROPAGE: + case 7: _localctx = new DirectiveMemoryAreaZpContext(_localctx); enterOuterAlt(_localctx, 7); { @@ -1956,7 +1998,7 @@ public class KickCParser extends Parser { match(ADDRESS_ZEROPAGE); } break; - case ADDRESS_MAINMEM: + case 8: _localctx = new DirectiveMemoryAreaMainContext(_localctx); enterOuterAlt(_localctx, 8); { @@ -1964,7 +2006,7 @@ public class KickCParser extends Parser { match(ADDRESS_MAINMEM); } break; - case ADDRESS: + case 9: _localctx = new DirectiveMemoryAreaAddressContext(_localctx); enterOuterAlt(_localctx, 9); { @@ -1980,84 +2022,122 @@ public class KickCParser extends Parser { match(PAR_END); } break; - case INLINE: - _localctx = new DirectiveInlineContext(_localctx); + case 10: + _localctx = new DirectiveFormSsaContext(_localctx); enterOuterAlt(_localctx, 10); { setState(274); - match(INLINE); + match(FORM_SSA); } break; - case VOLATILE: - _localctx = new DirectiveVolatileContext(_localctx); + case 11: + _localctx = new DirectiveFormNotSsaContext(_localctx); enterOuterAlt(_localctx, 11); { setState(275); - match(VOLATILE); + match(FORM_NOTSSA); } break; - case INTERRUPT: - _localctx = new DirectiveInterruptContext(_localctx); + case 12: + _localctx = new DirectiveMemoryAreaAddressContext(_localctx); enterOuterAlt(_localctx, 12); { setState(276); - match(INTERRUPT); + match(ADDRESS); + setState(277); + match(PAR_BEGIN); + { + setState(278); + match(NUMBER); + } + setState(279); + match(PAR_END); + } + break; + case 13: + _localctx = new DirectiveInlineContext(_localctx); + enterOuterAlt(_localctx, 13); + { setState(280); + match(INLINE); + } + break; + case 14: + _localctx = new DirectiveVolatileContext(_localctx); + enterOuterAlt(_localctx, 14); + { + setState(281); + match(VOLATILE); + } + break; + case 15: + _localctx = new DirectiveNotVolatileContext(_localctx); + enterOuterAlt(_localctx, 15); + { + setState(282); + match(NOTVOLATILE); + } + break; + case 16: + _localctx = new DirectiveInterruptContext(_localctx); + enterOuterAlt(_localctx, 16); + { + setState(283); + match(INTERRUPT); + setState(287); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,15,_ctx) ) { case 1: { - setState(277); + setState(284); match(PAR_BEGIN); - setState(278); + setState(285); match(NAME); - setState(279); + setState(286); match(PAR_END); } break; } } break; - case RESERVE: + case 17: _localctx = new DirectiveReserveZpContext(_localctx); - enterOuterAlt(_localctx, 13); + enterOuterAlt(_localctx, 17); { - setState(282); - match(RESERVE); - setState(283); - match(PAR_BEGIN); - setState(284); - match(NUMBER); setState(289); + match(RESERVE); + setState(290); + match(PAR_BEGIN); + setState(291); + match(NUMBER); + setState(296); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(285); + setState(292); match(COMMA); - setState(286); + setState(293); match(NUMBER); } } - setState(291); + setState(298); _errHandler.sync(this); _la = _input.LA(1); } - setState(292); + setState(299); match(PAR_END); } break; - case CALLINGCONVENTION: + case 18: _localctx = new DirectiveCallingConventionContext(_localctx); - enterOuterAlt(_localctx, 14); + enterOuterAlt(_localctx, 18); { - setState(293); + setState(300); match(CALLINGCONVENTION); } break; - default: - throw new NoViableAltException(this); } } catch (RecognitionException re) { @@ -2104,20 +2184,20 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(297); + setState(304); _errHandler.sync(this); _la = _input.LA(1); do { { { - setState(296); + setState(303); stmt(); } } - setState(299); + setState(306); _errHandler.sync(this); _la = _input.LA(1); - } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << NOTREGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION) | (1L << IF))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (WHILE - 65)) | (1L << (DO - 65)) | (1L << (FOR - 65)) | (1L << (SWITCH - 65)) | (1L << (RETURN - 65)) | (1L << (BREAK - 65)) | (1L << (CONTINUE - 65)) | (1L << (ASM - 65)) | (1L << (STRUCT - 65)) | (1L << (ENUM - 65)) | (1L << (SIZEOF - 65)) | (1L << (TYPEID - 65)) | (1L << (KICKASM - 65)) | (1L << (LOGIC_NOT - 65)) | (1L << (SIGNEDNESS - 65)) | (1L << (SIMPLETYPE - 65)) | (1L << (BOOLEAN - 65)) | (1L << (STRING - 65)) | (1L << (CHAR - 65)) | (1L << (NUMBER - 65)) | (1L << (NAME - 65)))) != 0) ); + } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << NOTREGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_NOTSSA) | (1L << INLINE) | (1L << VOLATILE) | (1L << NOTVOLATILE) | (1L << INTERRUPT))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (CALLINGCONVENTION - 65)) | (1L << (IF - 65)) | (1L << (WHILE - 65)) | (1L << (DO - 65)) | (1L << (FOR - 65)) | (1L << (SWITCH - 65)) | (1L << (RETURN - 65)) | (1L << (BREAK - 65)) | (1L << (CONTINUE - 65)) | (1L << (ASM - 65)) | (1L << (STRUCT - 65)) | (1L << (ENUM - 65)) | (1L << (SIZEOF - 65)) | (1L << (TYPEID - 65)) | (1L << (KICKASM - 65)) | (1L << (LOGIC_NOT - 65)) | (1L << (SIGNEDNESS - 65)) | (1L << (SIMPLETYPE - 65)) | (1L << (BOOLEAN - 65)) | (1L << (STRING - 65)) | (1L << (CHAR - 65)) | (1L << (NUMBER - 65)) | (1L << (NAME - 65)))) != 0) ); } } catch (RecognitionException re) { @@ -2146,7 +2226,6 @@ public class KickCParser extends Parser { public DeclVariablesContext declVariables() { return getRuleContext(DeclVariablesContext.class,0); } - public TerminalNode SEMICOLON() { return getToken(KickCParser.SEMICOLON, 0); } public StmtDeclVarContext(StmtContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { @@ -2164,7 +2243,6 @@ public class KickCParser extends Parser { } public static class StmtBreakContext extends StmtContext { public TerminalNode BREAK() { return getToken(KickCParser.BREAK, 0); } - public TerminalNode SEMICOLON() { return getToken(KickCParser.SEMICOLON, 0); } public StmtBreakContext(StmtContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { @@ -2203,7 +2281,6 @@ public class KickCParser extends Parser { public CommaExprContext commaExpr() { return getRuleContext(CommaExprContext.class,0); } - public TerminalNode SEMICOLON() { return getToken(KickCParser.SEMICOLON, 0); } public StmtExprContext(StmtContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { @@ -2230,7 +2307,6 @@ public class KickCParser extends Parser { return getRuleContext(CommaExprContext.class,0); } public TerminalNode PAR_END() { return getToken(KickCParser.PAR_END, 0); } - public TerminalNode SEMICOLON() { return getToken(KickCParser.SEMICOLON, 0); } public List directive() { return getRuleContexts(DirectiveContext.class); } @@ -2279,7 +2355,6 @@ public class KickCParser extends Parser { } public static class StmtContinueContext extends StmtContext { public TerminalNode CONTINUE() { return getToken(KickCParser.CONTINUE, 0); } - public TerminalNode SEMICOLON() { return getToken(KickCParser.SEMICOLON, 0); } public StmtContinueContext(StmtContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { @@ -2436,7 +2511,6 @@ public class KickCParser extends Parser { } public static class StmtReturnContext extends StmtContext { public TerminalNode RETURN() { return getToken(KickCParser.RETURN, 0); } - public TerminalNode SEMICOLON() { return getToken(KickCParser.SEMICOLON, 0); } public CommaExprContext commaExpr() { return getRuleContext(CommaExprContext.class,0); } @@ -2461,16 +2535,16 @@ public class KickCParser extends Parser { enterRule(_localctx, 34, RULE_stmt); int _la; try { - setState(385); + setState(392); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,26,_ctx) ) { case 1: _localctx = new StmtDeclVarContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(301); + setState(308); declVariables(); - setState(302); + setState(309); match(SEMICOLON); } break; @@ -2478,19 +2552,19 @@ public class KickCParser extends Parser { _localctx = new StmtBlockContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(304); + setState(311); match(CURLY_BEGIN); - setState(306); + setState(313); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << NOTREGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION) | (1L << IF))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (WHILE - 65)) | (1L << (DO - 65)) | (1L << (FOR - 65)) | (1L << (SWITCH - 65)) | (1L << (RETURN - 65)) | (1L << (BREAK - 65)) | (1L << (CONTINUE - 65)) | (1L << (ASM - 65)) | (1L << (STRUCT - 65)) | (1L << (ENUM - 65)) | (1L << (SIZEOF - 65)) | (1L << (TYPEID - 65)) | (1L << (KICKASM - 65)) | (1L << (LOGIC_NOT - 65)) | (1L << (SIGNEDNESS - 65)) | (1L << (SIMPLETYPE - 65)) | (1L << (BOOLEAN - 65)) | (1L << (STRING - 65)) | (1L << (CHAR - 65)) | (1L << (NUMBER - 65)) | (1L << (NAME - 65)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << NOTREGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_NOTSSA) | (1L << INLINE) | (1L << VOLATILE) | (1L << NOTVOLATILE) | (1L << INTERRUPT))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (CALLINGCONVENTION - 65)) | (1L << (IF - 65)) | (1L << (WHILE - 65)) | (1L << (DO - 65)) | (1L << (FOR - 65)) | (1L << (SWITCH - 65)) | (1L << (RETURN - 65)) | (1L << (BREAK - 65)) | (1L << (CONTINUE - 65)) | (1L << (ASM - 65)) | (1L << (STRUCT - 65)) | (1L << (ENUM - 65)) | (1L << (SIZEOF - 65)) | (1L << (TYPEID - 65)) | (1L << (KICKASM - 65)) | (1L << (LOGIC_NOT - 65)) | (1L << (SIGNEDNESS - 65)) | (1L << (SIMPLETYPE - 65)) | (1L << (BOOLEAN - 65)) | (1L << (STRING - 65)) | (1L << (CHAR - 65)) | (1L << (NUMBER - 65)) | (1L << (NAME - 65)))) != 0)) { { - setState(305); + setState(312); stmtSeq(); } } - setState(308); + setState(315); match(CURLY_END); } break; @@ -2498,9 +2572,9 @@ public class KickCParser extends Parser { _localctx = new StmtExprContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(309); + setState(316); commaExpr(0); - setState(310); + setState(317); match(SEMICOLON); } break; @@ -2508,24 +2582,24 @@ public class KickCParser extends Parser { _localctx = new StmtIfElseContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(312); - match(IF); - setState(313); - match(PAR_BEGIN); - setState(314); - commaExpr(0); - setState(315); - match(PAR_END); - setState(316); - stmt(); setState(319); + match(IF); + setState(320); + match(PAR_BEGIN); + setState(321); + commaExpr(0); + setState(322); + match(PAR_END); + setState(323); + stmt(); + setState(326); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,20,_ctx) ) { case 1: { - setState(317); + setState(324); match(ELSE); - setState(318); + setState(325); stmt(); } break; @@ -2536,29 +2610,29 @@ public class KickCParser extends Parser { _localctx = new StmtWhileContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(324); + setState(331); _errHandler.sync(this); _la = _input.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << NOTREGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION))) != 0)) { + while (((((_la - 41)) & ~0x3f) == 0 && ((1L << (_la - 41)) & ((1L << (RESERVE - 41)) | (1L << (CONST - 41)) | (1L << (EXTERN - 41)) | (1L << (EXPORT - 41)) | (1L << (ALIGN - 41)) | (1L << (REGISTER - 41)) | (1L << (NOTREGISTER - 41)) | (1L << (ADDRESS - 41)) | (1L << (ADDRESS_ZEROPAGE - 41)) | (1L << (ADDRESS_MAINMEM - 41)) | (1L << (FORM_SSA - 41)) | (1L << (FORM_NOTSSA - 41)) | (1L << (INLINE - 41)) | (1L << (VOLATILE - 41)) | (1L << (NOTVOLATILE - 41)) | (1L << (INTERRUPT - 41)) | (1L << (CALLINGCONVENTION - 41)))) != 0)) { { { - setState(321); + setState(328); directive(); } } - setState(326); + setState(333); _errHandler.sync(this); _la = _input.LA(1); } - setState(327); + setState(334); match(WHILE); - setState(328); + setState(335); match(PAR_BEGIN); - setState(329); + setState(336); commaExpr(0); - setState(330); + setState(337); match(PAR_END); - setState(331); + setState(338); stmt(); } break; @@ -2566,33 +2640,33 @@ public class KickCParser extends Parser { _localctx = new StmtDoWhileContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(336); + setState(343); _errHandler.sync(this); _la = _input.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << NOTREGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION))) != 0)) { + while (((((_la - 41)) & ~0x3f) == 0 && ((1L << (_la - 41)) & ((1L << (RESERVE - 41)) | (1L << (CONST - 41)) | (1L << (EXTERN - 41)) | (1L << (EXPORT - 41)) | (1L << (ALIGN - 41)) | (1L << (REGISTER - 41)) | (1L << (NOTREGISTER - 41)) | (1L << (ADDRESS - 41)) | (1L << (ADDRESS_ZEROPAGE - 41)) | (1L << (ADDRESS_MAINMEM - 41)) | (1L << (FORM_SSA - 41)) | (1L << (FORM_NOTSSA - 41)) | (1L << (INLINE - 41)) | (1L << (VOLATILE - 41)) | (1L << (NOTVOLATILE - 41)) | (1L << (INTERRUPT - 41)) | (1L << (CALLINGCONVENTION - 41)))) != 0)) { { { - setState(333); + setState(340); directive(); } } - setState(338); + setState(345); _errHandler.sync(this); _la = _input.LA(1); } - setState(339); + setState(346); match(DO); - setState(340); + setState(347); stmt(); - setState(341); + setState(348); match(WHILE); - setState(342); + setState(349); match(PAR_BEGIN); - setState(343); + setState(350); commaExpr(0); - setState(344); + setState(351); match(PAR_END); - setState(345); + setState(352); match(SEMICOLON); } break; @@ -2600,29 +2674,29 @@ public class KickCParser extends Parser { _localctx = new StmtForContext(_localctx); enterOuterAlt(_localctx, 7); { - setState(350); + setState(357); _errHandler.sync(this); _la = _input.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << NOTREGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION))) != 0)) { + while (((((_la - 41)) & ~0x3f) == 0 && ((1L << (_la - 41)) & ((1L << (RESERVE - 41)) | (1L << (CONST - 41)) | (1L << (EXTERN - 41)) | (1L << (EXPORT - 41)) | (1L << (ALIGN - 41)) | (1L << (REGISTER - 41)) | (1L << (NOTREGISTER - 41)) | (1L << (ADDRESS - 41)) | (1L << (ADDRESS_ZEROPAGE - 41)) | (1L << (ADDRESS_MAINMEM - 41)) | (1L << (FORM_SSA - 41)) | (1L << (FORM_NOTSSA - 41)) | (1L << (INLINE - 41)) | (1L << (VOLATILE - 41)) | (1L << (NOTVOLATILE - 41)) | (1L << (INTERRUPT - 41)) | (1L << (CALLINGCONVENTION - 41)))) != 0)) { { { - setState(347); + setState(354); directive(); } } - setState(352); + setState(359); _errHandler.sync(this); _la = _input.LA(1); } - setState(353); + setState(360); match(FOR); - setState(354); + setState(361); match(PAR_BEGIN); - setState(355); + setState(362); forLoop(); - setState(356); + setState(363); match(PAR_END); - setState(357); + setState(364); stmt(); } break; @@ -2630,19 +2704,19 @@ public class KickCParser extends Parser { _localctx = new StmtSwitchContext(_localctx); enterOuterAlt(_localctx, 8); { - setState(359); + setState(366); match(SWITCH); - setState(360); + setState(367); match(PAR_BEGIN); - setState(361); + setState(368); commaExpr(0); - setState(362); + setState(369); match(PAR_END); - setState(363); + setState(370); match(CURLY_BEGIN); - setState(364); + setState(371); switchCases(); - setState(365); + setState(372); match(CURLY_END); } break; @@ -2650,19 +2724,19 @@ public class KickCParser extends Parser { _localctx = new StmtReturnContext(_localctx); enterOuterAlt(_localctx, 9); { - setState(367); + setState(374); match(RETURN); - setState(369); + setState(376); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 77)) & ~0x3f) == 0 && ((1L << (_la - 77)) & ((1L << (SIZEOF - 77)) | (1L << (TYPEID - 77)) | (1L << (LOGIC_NOT - 77)) | (1L << (BOOLEAN - 77)) | (1L << (STRING - 77)) | (1L << (CHAR - 77)) | (1L << (NUMBER - 77)) | (1L << (NAME - 77)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 80)) & ~0x3f) == 0 && ((1L << (_la - 80)) & ((1L << (SIZEOF - 80)) | (1L << (TYPEID - 80)) | (1L << (LOGIC_NOT - 80)) | (1L << (BOOLEAN - 80)) | (1L << (STRING - 80)) | (1L << (CHAR - 80)) | (1L << (NUMBER - 80)) | (1L << (NAME - 80)))) != 0)) { { - setState(368); + setState(375); commaExpr(0); } } - setState(371); + setState(378); match(SEMICOLON); } break; @@ -2670,9 +2744,9 @@ public class KickCParser extends Parser { _localctx = new StmtBreakContext(_localctx); enterOuterAlt(_localctx, 10); { - setState(372); + setState(379); match(BREAK); - setState(373); + setState(380); match(SEMICOLON); } break; @@ -2680,9 +2754,9 @@ public class KickCParser extends Parser { _localctx = new StmtContinueContext(_localctx); enterOuterAlt(_localctx, 11); { - setState(374); + setState(381); match(CONTINUE); - setState(375); + setState(382); match(SEMICOLON); } break; @@ -2690,23 +2764,23 @@ public class KickCParser extends Parser { _localctx = new StmtAsmContext(_localctx); enterOuterAlt(_localctx, 12); { - setState(376); + setState(383); match(ASM); - setState(378); + setState(385); _errHandler.sync(this); _la = _input.LA(1); if (_la==PAR_BEGIN) { { - setState(377); + setState(384); asmDirectives(); } } - setState(380); + setState(387); match(CURLY_BEGIN); - setState(381); + setState(388); asmLines(); - setState(382); + setState(389); match(ASM_CURLY_END); } break; @@ -2714,7 +2788,7 @@ public class KickCParser extends Parser { _localctx = new StmtDeclKasmContext(_localctx); enterOuterAlt(_localctx, 13); { - setState(384); + setState(391); declKasm(); } break; @@ -2769,35 +2843,35 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(388); + setState(395); _errHandler.sync(this); _la = _input.LA(1); do { { { - setState(387); + setState(394); switchCase(); } } - setState(390); + setState(397); _errHandler.sync(this); _la = _input.LA(1); } while ( _la==CASE ); - setState(397); + setState(404); _errHandler.sync(this); _la = _input.LA(1); if (_la==DEFAULT) { { - setState(392); + setState(399); match(DEFAULT); - setState(393); + setState(400); match(COLON); - setState(395); + setState(402); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << NOTREGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION) | (1L << IF))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (WHILE - 65)) | (1L << (DO - 65)) | (1L << (FOR - 65)) | (1L << (SWITCH - 65)) | (1L << (RETURN - 65)) | (1L << (BREAK - 65)) | (1L << (CONTINUE - 65)) | (1L << (ASM - 65)) | (1L << (STRUCT - 65)) | (1L << (ENUM - 65)) | (1L << (SIZEOF - 65)) | (1L << (TYPEID - 65)) | (1L << (KICKASM - 65)) | (1L << (LOGIC_NOT - 65)) | (1L << (SIGNEDNESS - 65)) | (1L << (SIMPLETYPE - 65)) | (1L << (BOOLEAN - 65)) | (1L << (STRING - 65)) | (1L << (CHAR - 65)) | (1L << (NUMBER - 65)) | (1L << (NAME - 65)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << NOTREGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_NOTSSA) | (1L << INLINE) | (1L << VOLATILE) | (1L << NOTVOLATILE) | (1L << INTERRUPT))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (CALLINGCONVENTION - 65)) | (1L << (IF - 65)) | (1L << (WHILE - 65)) | (1L << (DO - 65)) | (1L << (FOR - 65)) | (1L << (SWITCH - 65)) | (1L << (RETURN - 65)) | (1L << (BREAK - 65)) | (1L << (CONTINUE - 65)) | (1L << (ASM - 65)) | (1L << (STRUCT - 65)) | (1L << (ENUM - 65)) | (1L << (SIZEOF - 65)) | (1L << (TYPEID - 65)) | (1L << (KICKASM - 65)) | (1L << (LOGIC_NOT - 65)) | (1L << (SIGNEDNESS - 65)) | (1L << (SIMPLETYPE - 65)) | (1L << (BOOLEAN - 65)) | (1L << (STRING - 65)) | (1L << (CHAR - 65)) | (1L << (NUMBER - 65)) | (1L << (NAME - 65)))) != 0)) { { - setState(394); + setState(401); stmtSeq(); } } @@ -2853,18 +2927,18 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(399); + setState(406); match(CASE); - setState(400); + setState(407); expr(0); - setState(401); + setState(408); match(COLON); - setState(403); + setState(410); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << NOTREGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION) | (1L << IF))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (WHILE - 65)) | (1L << (DO - 65)) | (1L << (FOR - 65)) | (1L << (SWITCH - 65)) | (1L << (RETURN - 65)) | (1L << (BREAK - 65)) | (1L << (CONTINUE - 65)) | (1L << (ASM - 65)) | (1L << (STRUCT - 65)) | (1L << (ENUM - 65)) | (1L << (SIZEOF - 65)) | (1L << (TYPEID - 65)) | (1L << (KICKASM - 65)) | (1L << (LOGIC_NOT - 65)) | (1L << (SIGNEDNESS - 65)) | (1L << (SIMPLETYPE - 65)) | (1L << (BOOLEAN - 65)) | (1L << (STRING - 65)) | (1L << (CHAR - 65)) | (1L << (NUMBER - 65)) | (1L << (NAME - 65)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << NOTREGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_NOTSSA) | (1L << INLINE) | (1L << VOLATILE) | (1L << NOTVOLATILE) | (1L << INTERRUPT))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (CALLINGCONVENTION - 65)) | (1L << (IF - 65)) | (1L << (WHILE - 65)) | (1L << (DO - 65)) | (1L << (FOR - 65)) | (1L << (SWITCH - 65)) | (1L << (RETURN - 65)) | (1L << (BREAK - 65)) | (1L << (CONTINUE - 65)) | (1L << (ASM - 65)) | (1L << (STRUCT - 65)) | (1L << (ENUM - 65)) | (1L << (SIZEOF - 65)) | (1L << (TYPEID - 65)) | (1L << (KICKASM - 65)) | (1L << (LOGIC_NOT - 65)) | (1L << (SIGNEDNESS - 65)) | (1L << (SIMPLETYPE - 65)) | (1L << (BOOLEAN - 65)) | (1L << (STRING - 65)) | (1L << (CHAR - 65)) | (1L << (NUMBER - 65)) | (1L << (NAME - 65)))) != 0)) { { - setState(402); + setState(409); stmtSeq(); } } @@ -2902,7 +2976,6 @@ public class KickCParser extends Parser { public ExprContext expr(int i) { return getRuleContext(ExprContext.class,i); } - public TerminalNode RANGE() { return getToken(KickCParser.RANGE, 0); } public DeclTypesContext declTypes() { return getRuleContext(DeclTypesContext.class,0); } @@ -2925,10 +2998,6 @@ public class KickCParser extends Parser { public ForClassicInitContext forClassicInit() { return getRuleContext(ForClassicInitContext.class,0); } - public List SEMICOLON() { return getTokens(KickCParser.SEMICOLON); } - public TerminalNode SEMICOLON(int i) { - return getToken(KickCParser.SEMICOLON, i); - } public List commaExpr() { return getRuleContexts(CommaExprContext.class); } @@ -2956,27 +3025,27 @@ public class KickCParser extends Parser { enterRule(_localctx, 40, RULE_forLoop); int _la; try { - setState(421); + setState(428); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,33,_ctx) ) { case 1: _localctx = new ForClassicContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(405); + setState(412); forClassicInit(); - setState(406); + setState(413); match(SEMICOLON); - setState(407); + setState(414); commaExpr(0); - setState(408); + setState(415); match(SEMICOLON); - setState(410); + setState(417); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 77)) & ~0x3f) == 0 && ((1L << (_la - 77)) & ((1L << (SIZEOF - 77)) | (1L << (TYPEID - 77)) | (1L << (LOGIC_NOT - 77)) | (1L << (BOOLEAN - 77)) | (1L << (STRING - 77)) | (1L << (CHAR - 77)) | (1L << (NUMBER - 77)) | (1L << (NAME - 77)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 80)) & ~0x3f) == 0 && ((1L << (_la - 80)) & ((1L << (SIZEOF - 80)) | (1L << (TYPEID - 80)) | (1L << (LOGIC_NOT - 80)) | (1L << (BOOLEAN - 80)) | (1L << (STRING - 80)) | (1L << (CHAR - 80)) | (1L << (NUMBER - 80)) | (1L << (NAME - 80)))) != 0)) { { - setState(409); + setState(416); commaExpr(0); } } @@ -2987,25 +3056,25 @@ public class KickCParser extends Parser { _localctx = new ForRangeContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(413); + setState(420); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << NOTREGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 75)) & ~0x3f) == 0 && ((1L << (_la - 75)) & ((1L << (STRUCT - 75)) | (1L << (ENUM - 75)) | (1L << (SIGNEDNESS - 75)) | (1L << (SIMPLETYPE - 75)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << NOTREGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_NOTSSA) | (1L << INLINE) | (1L << VOLATILE) | (1L << NOTVOLATILE) | (1L << INTERRUPT))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (CALLINGCONVENTION - 65)) | (1L << (STRUCT - 65)) | (1L << (ENUM - 65)) | (1L << (SIGNEDNESS - 65)) | (1L << (SIMPLETYPE - 65)))) != 0)) { { - setState(412); + setState(419); declTypes(); } } - setState(415); + setState(422); match(NAME); - setState(416); + setState(423); match(COLON); - setState(417); + setState(424); expr(0); - setState(418); + setState(425); match(RANGE); - setState(419); + setState(426); expr(0); } break; @@ -3077,19 +3146,19 @@ public class KickCParser extends Parser { enterRule(_localctx, 42, RULE_forClassicInit); int _la; try { - setState(427); + setState(434); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,35,_ctx) ) { case 1: _localctx = new ForClassicInitDeclContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(424); + setState(431); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << NOTREGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 75)) & ~0x3f) == 0 && ((1L << (_la - 75)) & ((1L << (STRUCT - 75)) | (1L << (ENUM - 75)) | (1L << (SIGNEDNESS - 75)) | (1L << (SIMPLETYPE - 75)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << NOTREGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_NOTSSA) | (1L << INLINE) | (1L << VOLATILE) | (1L << NOTVOLATILE) | (1L << INTERRUPT))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (CALLINGCONVENTION - 65)) | (1L << (STRUCT - 65)) | (1L << (ENUM - 65)) | (1L << (SIGNEDNESS - 65)) | (1L << (SIMPLETYPE - 65)))) != 0)) { { - setState(423); + setState(430); declVariables(); } } @@ -3100,7 +3169,7 @@ public class KickCParser extends Parser { _localctx = new ForClassicInitExprContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(426); + setState(433); commaExpr(0); } break; @@ -3359,7 +3428,7 @@ public class KickCParser extends Parser { int _alt; enterOuterAlt(_localctx, 1); { - setState(444); + setState(451); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,37,_ctx) ) { case 1: @@ -3368,11 +3437,11 @@ public class KickCParser extends Parser { _ctx = _localctx; _prevctx = _localctx; - setState(430); + setState(437); match(PAR_BEGIN); - setState(431); + setState(438); typeDecl(0); - setState(432); + setState(439); match(PAR_END); } break; @@ -3381,7 +3450,7 @@ public class KickCParser extends Parser { _localctx = new TypeSimpleContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(434); + setState(441); match(SIMPLETYPE); } break; @@ -3390,14 +3459,14 @@ public class KickCParser extends Parser { _localctx = new TypeSignedSimpleContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(435); + setState(442); match(SIGNEDNESS); - setState(437); + setState(444); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) { case 1: { - setState(436); + setState(443); match(SIMPLETYPE); } break; @@ -3409,7 +3478,7 @@ public class KickCParser extends Parser { _localctx = new TypeStructDefContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(439); + setState(446); structDef(); } break; @@ -3418,7 +3487,7 @@ public class KickCParser extends Parser { _localctx = new TypeStructRefContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(440); + setState(447); structRef(); } break; @@ -3427,7 +3496,7 @@ public class KickCParser extends Parser { _localctx = new TypeEnumDefContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(441); + setState(448); enumDef(); } break; @@ -3436,7 +3505,7 @@ public class KickCParser extends Parser { _localctx = new TypeEnumRefContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(442); + setState(449); enumRef(); } break; @@ -3445,13 +3514,13 @@ public class KickCParser extends Parser { _localctx = new TypeNamedRefContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(443); + setState(450); match(TYPEDEFNAME); } break; } _ctx.stop = _input.LT(-1); - setState(459); + setState(466); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,40,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -3459,16 +3528,16 @@ public class KickCParser extends Parser { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(457); + setState(464); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,39,_ctx) ) { case 1: { _localctx = new TypePtrContext(new TypeDeclContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_typeDecl); - setState(446); + setState(453); if (!(precpred(_ctx, 8))) throw new FailedPredicateException(this, "precpred(_ctx, 8)"); - setState(447); + setState(454); match(ASTERISK); } break; @@ -3476,21 +3545,21 @@ public class KickCParser extends Parser { { _localctx = new TypeArrayContext(new TypeDeclContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_typeDecl); - setState(448); + setState(455); if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)"); - setState(449); + setState(456); match(BRACKET_BEGIN); - setState(451); + setState(458); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 77)) & ~0x3f) == 0 && ((1L << (_la - 77)) & ((1L << (SIZEOF - 77)) | (1L << (TYPEID - 77)) | (1L << (LOGIC_NOT - 77)) | (1L << (BOOLEAN - 77)) | (1L << (STRING - 77)) | (1L << (CHAR - 77)) | (1L << (NUMBER - 77)) | (1L << (NAME - 77)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 80)) & ~0x3f) == 0 && ((1L << (_la - 80)) & ((1L << (SIZEOF - 80)) | (1L << (TYPEID - 80)) | (1L << (LOGIC_NOT - 80)) | (1L << (BOOLEAN - 80)) | (1L << (STRING - 80)) | (1L << (CHAR - 80)) | (1L << (NUMBER - 80)) | (1L << (NAME - 80)))) != 0)) { { - setState(450); + setState(457); expr(0); } } - setState(453); + setState(460); match(BRACKET_END); } break; @@ -3498,18 +3567,18 @@ public class KickCParser extends Parser { { _localctx = new TypeProcedureContext(new TypeDeclContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_typeDecl); - setState(454); + setState(461); if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)"); - setState(455); + setState(462); match(PAR_BEGIN); - setState(456); + setState(463); match(PAR_END); } break; } } } - setState(461); + setState(468); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,40,_ctx); } @@ -3554,9 +3623,9 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(462); + setState(469); match(STRUCT); - setState(463); + setState(470); match(NAME); } } @@ -3608,35 +3677,35 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(465); + setState(472); match(STRUCT); - setState(467); + setState(474); _errHandler.sync(this); _la = _input.LA(1); if (_la==NAME) { { - setState(466); + setState(473); match(NAME); } } - setState(469); + setState(476); match(CURLY_BEGIN); - setState(471); + setState(478); _errHandler.sync(this); _la = _input.LA(1); do { { { - setState(470); + setState(477); structMembers(); } } - setState(473); + setState(480); _errHandler.sync(this); _la = _input.LA(1); - } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << NOTREGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << INLINE) | (1L << VOLATILE) | (1L << INTERRUPT) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 75)) & ~0x3f) == 0 && ((1L << (_la - 75)) & ((1L << (STRUCT - 75)) | (1L << (ENUM - 75)) | (1L << (SIGNEDNESS - 75)) | (1L << (SIMPLETYPE - 75)))) != 0) ); - setState(475); + } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << REGISTER) | (1L << NOTREGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_NOTSSA) | (1L << INLINE) | (1L << VOLATILE) | (1L << NOTVOLATILE) | (1L << INTERRUPT))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (CALLINGCONVENTION - 65)) | (1L << (STRUCT - 65)) | (1L << (ENUM - 65)) | (1L << (SIGNEDNESS - 65)) | (1L << (SIMPLETYPE - 65)))) != 0) ); + setState(482); match(CURLY_END); } } @@ -3655,7 +3724,6 @@ public class KickCParser extends Parser { public DeclVariablesContext declVariables() { return getRuleContext(DeclVariablesContext.class,0); } - public TerminalNode SEMICOLON() { return getToken(KickCParser.SEMICOLON, 0); } public StructMembersContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } @@ -3681,9 +3749,9 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(477); + setState(484); declVariables(); - setState(478); + setState(485); match(SEMICOLON); } } @@ -3726,9 +3794,9 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(480); + setState(487); match(ENUM); - setState(481); + setState(488); match(NAME); } } @@ -3777,23 +3845,23 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(483); + setState(490); match(ENUM); - setState(485); + setState(492); _errHandler.sync(this); _la = _input.LA(1); if (_la==NAME) { { - setState(484); + setState(491); match(NAME); } } - setState(487); + setState(494); match(CURLY_BEGIN); - setState(488); + setState(495); enumMemberList(0); - setState(489); + setState(496); match(CURLY_END); } } @@ -3851,11 +3919,11 @@ public class KickCParser extends Parser { enterOuterAlt(_localctx, 1); { { - setState(492); + setState(499); enumMember(); } _ctx.stop = _input.LT(-1); - setState(499); + setState(506); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,44,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -3866,16 +3934,16 @@ public class KickCParser extends Parser { { _localctx = new EnumMemberListContext(_parentctx, _parentState); pushNewRecursionContext(_localctx, _startState, RULE_enumMemberList); - setState(494); + setState(501); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(495); + setState(502); match(COMMA); - setState(496); + setState(503); enumMember(); } } } - setState(501); + setState(508); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,44,_ctx); } @@ -3894,7 +3962,6 @@ public class KickCParser extends Parser { public static class EnumMemberContext extends ParserRuleContext { public TerminalNode NAME() { return getToken(KickCParser.NAME, 0); } - public TerminalNode ASSIGN() { return getToken(KickCParser.ASSIGN, 0); } public ExprContext expr() { return getRuleContext(ExprContext.class,0); } @@ -3923,16 +3990,16 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(502); + setState(509); match(NAME); - setState(505); + setState(512); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,45,_ctx) ) { case 1: { - setState(503); + setState(510); match(ASSIGN); - setState(504); + setState(511); expr(0); } break; @@ -4024,11 +4091,11 @@ public class KickCParser extends Parser { _ctx = _localctx; _prevctx = _localctx; - setState(508); + setState(515); expr(0); } _ctx.stop = _input.LT(-1); - setState(515); + setState(522); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,46,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -4039,16 +4106,16 @@ public class KickCParser extends Parser { { _localctx = new CommaSimpleContext(new CommaExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_commaExpr); - setState(510); + setState(517); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(511); + setState(518); match(COMMA); - setState(512); + setState(519); expr(0); } } } - setState(517); + setState(524); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,46,_ctx); } @@ -4100,8 +4167,6 @@ public class KickCParser extends Parser { public ExprContext expr() { return getRuleContext(ExprContext.class,0); } - public TerminalNode DEC() { return getToken(KickCParser.DEC, 0); } - public TerminalNode INC() { return getToken(KickCParser.INC, 0); } public ExprPreModContext(ExprContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { @@ -4128,20 +4193,10 @@ public class KickCParser extends Parser { public TerminalNode SHIFT_RIGHT() { return getToken(KickCParser.SHIFT_RIGHT, 0); } public TerminalNode ASTERISK() { return getToken(KickCParser.ASTERISK, 0); } public TerminalNode DIVIDE() { return getToken(KickCParser.DIVIDE, 0); } - public TerminalNode MODULO() { return getToken(KickCParser.MODULO, 0); } public TerminalNode PLUS() { return getToken(KickCParser.PLUS, 0); } public TerminalNode MINUS() { return getToken(KickCParser.MINUS, 0); } - public TerminalNode EQUAL() { return getToken(KickCParser.EQUAL, 0); } - public TerminalNode NOT_EQUAL() { return getToken(KickCParser.NOT_EQUAL, 0); } public TerminalNode LESS_THAN() { return getToken(KickCParser.LESS_THAN, 0); } - public TerminalNode LESS_THAN_EQUAL() { return getToken(KickCParser.LESS_THAN_EQUAL, 0); } - public TerminalNode GREATER_THAN_EQUAL() { return getToken(KickCParser.GREATER_THAN_EQUAL, 0); } public TerminalNode GREATER_THAN() { return getToken(KickCParser.GREATER_THAN, 0); } - public TerminalNode AND() { return getToken(KickCParser.AND, 0); } - public TerminalNode BIT_XOR() { return getToken(KickCParser.BIT_XOR, 0); } - public TerminalNode BIT_OR() { return getToken(KickCParser.BIT_OR, 0); } - public TerminalNode LOGIC_AND() { return getToken(KickCParser.LOGIC_AND, 0); } - public TerminalNode LOGIC_OR() { return getToken(KickCParser.LOGIC_OR, 0); } public ExprBinaryContext(ExprContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { @@ -4186,8 +4241,6 @@ public class KickCParser extends Parser { public ExprContext expr() { return getRuleContext(ExprContext.class,0); } - public TerminalNode DEC() { return getToken(KickCParser.DEC, 0); } - public TerminalNode INC() { return getToken(KickCParser.INC, 0); } public ExprPostModContext(ExprContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { @@ -4210,8 +4263,6 @@ public class KickCParser extends Parser { public TerminalNode PLUS() { return getToken(KickCParser.PLUS, 0); } public TerminalNode MINUS() { return getToken(KickCParser.MINUS, 0); } public TerminalNode LOGIC_NOT() { return getToken(KickCParser.LOGIC_NOT, 0); } - public TerminalNode AND() { return getToken(KickCParser.AND, 0); } - public TerminalNode BIT_NOT() { return getToken(KickCParser.BIT_NOT, 0); } public TerminalNode LESS_THAN() { return getToken(KickCParser.LESS_THAN, 0); } public TerminalNode GREATER_THAN() { return getToken(KickCParser.GREATER_THAN, 0); } public ExprUnaryContext(ExprContext ctx) { copyFrom(ctx); } @@ -4267,7 +4318,6 @@ public class KickCParser extends Parser { public ExprContext expr() { return getRuleContext(ExprContext.class,0); } - public TerminalNode ARROW() { return getToken(KickCParser.ARROW, 0); } public TerminalNode NAME() { return getToken(KickCParser.NAME, 0); } public ExprArrowContext(ExprContext ctx) { copyFrom(ctx); } @Override @@ -4511,7 +4561,6 @@ public class KickCParser extends Parser { public ExprContext expr(int i) { return getRuleContext(ExprContext.class,i); } - public TerminalNode CONDITION() { return getToken(KickCParser.CONDITION, 0); } public TerminalNode COLON() { return getToken(KickCParser.COLON, 0); } public ExprTernaryContext(ExprContext ctx) { copyFrom(ctx); } @Override @@ -4535,7 +4584,6 @@ public class KickCParser extends Parser { public ExprContext expr(int i) { return getRuleContext(ExprContext.class,i); } - public TerminalNode ASSIGN() { return getToken(KickCParser.ASSIGN, 0); } public ExprAssignmentContext(ExprContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { @@ -4592,7 +4640,7 @@ public class KickCParser extends Parser { int _alt; enterOuterAlt(_localctx, 1); { - setState(572); + setState(579); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,51,_ctx) ) { case 1: @@ -4601,11 +4649,11 @@ public class KickCParser extends Parser { _ctx = _localctx; _prevctx = _localctx; - setState(519); + setState(526); match(PAR_BEGIN); - setState(520); + setState(527); commaExpr(0); - setState(521); + setState(528); match(PAR_END); } break; @@ -4614,27 +4662,27 @@ public class KickCParser extends Parser { _localctx = new ExprSizeOfContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(523); + setState(530); match(SIZEOF); - setState(524); + setState(531); match(PAR_BEGIN); - setState(527); + setState(534); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,47,_ctx) ) { case 1: { - setState(525); + setState(532); expr(0); } break; case 2: { - setState(526); + setState(533); typeDecl(0); } break; } - setState(529); + setState(536); match(PAR_END); } break; @@ -4643,27 +4691,27 @@ public class KickCParser extends Parser { _localctx = new ExprTypeIdContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(531); + setState(538); match(TYPEID); - setState(532); + setState(539); match(PAR_BEGIN); - setState(535); + setState(542); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) { case 1: { - setState(533); + setState(540); expr(0); } break; case 2: { - setState(534); + setState(541); typeDecl(0); } break; } - setState(537); + setState(544); match(PAR_END); } break; @@ -4672,13 +4720,13 @@ public class KickCParser extends Parser { _localctx = new ExprCastContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(539); + setState(546); match(PAR_BEGIN); - setState(540); + setState(547); typeDecl(0); - setState(541); + setState(548); match(PAR_END); - setState(542); + setState(549); expr(24); } break; @@ -4687,7 +4735,7 @@ public class KickCParser extends Parser { _localctx = new ExprPreModContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(544); + setState(551); _la = _input.LA(1); if ( !(_la==INC || _la==DEC) ) { _errHandler.recoverInline(this); @@ -4697,7 +4745,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(545); + setState(552); expr(23); } break; @@ -4706,9 +4754,9 @@ public class KickCParser extends Parser { _localctx = new ExprPtrContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(546); + setState(553); match(ASTERISK); - setState(547); + setState(554); expr(21); } break; @@ -4717,7 +4765,7 @@ public class KickCParser extends Parser { _localctx = new ExprUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(548); + setState(555); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << PLUS) | (1L << MINUS) | (1L << AND) | (1L << BIT_NOT))) != 0) || _la==LOGIC_NOT) ) { _errHandler.recoverInline(this); @@ -4727,7 +4775,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(549); + setState(556); expr(20); } break; @@ -4736,7 +4784,7 @@ public class KickCParser extends Parser { _localctx = new ExprUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(550); + setState(557); _la = _input.LA(1); if ( !(_la==LESS_THAN || _la==GREATER_THAN) ) { _errHandler.recoverInline(this); @@ -4746,7 +4794,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(551); + setState(558); expr(16); } break; @@ -4755,27 +4803,27 @@ public class KickCParser extends Parser { _localctx = new InitListContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(552); + setState(559); match(CURLY_BEGIN); - setState(553); + setState(560); expr(0); - setState(558); + setState(565); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(554); + setState(561); match(COMMA); - setState(555); + setState(562); expr(0); } } - setState(560); + setState(567); _errHandler.sync(this); _la = _input.LA(1); } - setState(561); + setState(568); match(CURLY_END); } break; @@ -4784,7 +4832,7 @@ public class KickCParser extends Parser { _localctx = new ExprIdContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(563); + setState(570); match(NAME); } break; @@ -4793,7 +4841,7 @@ public class KickCParser extends Parser { _localctx = new ExprNumberContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(564); + setState(571); match(NUMBER); } break; @@ -4802,7 +4850,7 @@ public class KickCParser extends Parser { _localctx = new ExprStringContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(566); + setState(573); _errHandler.sync(this); _alt = 1; do { @@ -4810,7 +4858,7 @@ public class KickCParser extends Parser { case 1: { { - setState(565); + setState(572); match(STRING); } } @@ -4818,7 +4866,7 @@ public class KickCParser extends Parser { default: throw new NoViableAltException(this); } - setState(568); + setState(575); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,50,_ctx); } while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ); @@ -4829,7 +4877,7 @@ public class KickCParser extends Parser { _localctx = new ExprCharContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(570); + setState(577); match(CHAR); } break; @@ -4838,13 +4886,13 @@ public class KickCParser extends Parser { _localctx = new ExprBoolContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(571); + setState(578); match(BOOLEAN); } break; } _ctx.stop = _input.LT(-1); - setState(634); + setState(641); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,54,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -4852,16 +4900,16 @@ public class KickCParser extends Parser { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(632); + setState(639); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,53,_ctx) ) { case 1: { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(574); + setState(581); if (!(precpred(_ctx, 19))) throw new FailedPredicateException(this, "precpred(_ctx, 19)"); - setState(575); + setState(582); _la = _input.LA(1); if ( !(_la==SHIFT_LEFT || _la==SHIFT_RIGHT) ) { _errHandler.recoverInline(this); @@ -4871,7 +4919,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(576); + setState(583); expr(20); } break; @@ -4879,9 +4927,9 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(577); + setState(584); if (!(precpred(_ctx, 18))) throw new FailedPredicateException(this, "precpred(_ctx, 18)"); - setState(578); + setState(585); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << ASTERISK) | (1L << DIVIDE) | (1L << MODULO))) != 0)) ) { _errHandler.recoverInline(this); @@ -4891,7 +4939,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(579); + setState(586); expr(19); } break; @@ -4899,9 +4947,9 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(580); + setState(587); if (!(precpred(_ctx, 17))) throw new FailedPredicateException(this, "precpred(_ctx, 17)"); - setState(581); + setState(588); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -4911,7 +4959,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(582); + setState(589); expr(18); } break; @@ -4919,9 +4967,9 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(583); + setState(590); if (!(precpred(_ctx, 15))) throw new FailedPredicateException(this, "precpred(_ctx, 15)"); - setState(584); + setState(591); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << EQUAL) | (1L << NOT_EQUAL) | (1L << LESS_THAN) | (1L << LESS_THAN_EQUAL) | (1L << GREATER_THAN_EQUAL) | (1L << GREATER_THAN))) != 0)) ) { _errHandler.recoverInline(this); @@ -4931,7 +4979,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(585); + setState(592); expr(16); } break; @@ -4939,13 +4987,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(586); + setState(593); if (!(precpred(_ctx, 14))) throw new FailedPredicateException(this, "precpred(_ctx, 14)"); { - setState(587); + setState(594); match(AND); } - setState(588); + setState(595); expr(15); } break; @@ -4953,13 +5001,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(589); + setState(596); if (!(precpred(_ctx, 13))) throw new FailedPredicateException(this, "precpred(_ctx, 13)"); { - setState(590); + setState(597); match(BIT_XOR); } - setState(591); + setState(598); expr(14); } break; @@ -4967,13 +5015,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(592); + setState(599); if (!(precpred(_ctx, 12))) throw new FailedPredicateException(this, "precpred(_ctx, 12)"); { - setState(593); + setState(600); match(BIT_OR); } - setState(594); + setState(601); expr(13); } break; @@ -4981,13 +5029,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(595); + setState(602); if (!(precpred(_ctx, 11))) throw new FailedPredicateException(this, "precpred(_ctx, 11)"); { - setState(596); + setState(603); match(LOGIC_AND); } - setState(597); + setState(604); expr(12); } break; @@ -4995,13 +5043,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(598); + setState(605); if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)"); { - setState(599); + setState(606); match(LOGIC_OR); } - setState(600); + setState(607); expr(11); } break; @@ -5009,15 +5057,15 @@ public class KickCParser extends Parser { { _localctx = new ExprTernaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(601); + setState(608); if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)"); - setState(602); + setState(609); match(CONDITION); - setState(603); + setState(610); expr(0); - setState(604); + setState(611); match(COLON); - setState(605); + setState(612); expr(10); } break; @@ -5025,11 +5073,11 @@ public class KickCParser extends Parser { { _localctx = new ExprAssignmentContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(607); + setState(614); if (!(precpred(_ctx, 8))) throw new FailedPredicateException(this, "precpred(_ctx, 8)"); - setState(608); + setState(615); match(ASSIGN); - setState(609); + setState(616); expr(8); } break; @@ -5037,11 +5085,11 @@ public class KickCParser extends Parser { { _localctx = new ExprAssignmentCompoundContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(610); + setState(617); if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)"); - setState(611); + setState(618); match(ASSIGN_COMPOUND); - setState(612); + setState(619); expr(7); } break; @@ -5049,11 +5097,11 @@ public class KickCParser extends Parser { { _localctx = new ExprDotContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(613); + setState(620); if (!(precpred(_ctx, 30))) throw new FailedPredicateException(this, "precpred(_ctx, 30)"); - setState(614); + setState(621); match(DOT); - setState(615); + setState(622); match(NAME); } break; @@ -5061,11 +5109,11 @@ public class KickCParser extends Parser { { _localctx = new ExprArrowContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(616); + setState(623); if (!(precpred(_ctx, 29))) throw new FailedPredicateException(this, "precpred(_ctx, 29)"); - setState(617); + setState(624); match(ARROW); - setState(618); + setState(625); match(NAME); } break; @@ -5073,21 +5121,21 @@ public class KickCParser extends Parser { { _localctx = new ExprCallContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(619); + setState(626); if (!(precpred(_ctx, 28))) throw new FailedPredicateException(this, "precpred(_ctx, 28)"); - setState(620); + setState(627); match(PAR_BEGIN); - setState(622); + setState(629); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 77)) & ~0x3f) == 0 && ((1L << (_la - 77)) & ((1L << (SIZEOF - 77)) | (1L << (TYPEID - 77)) | (1L << (LOGIC_NOT - 77)) | (1L << (BOOLEAN - 77)) | (1L << (STRING - 77)) | (1L << (CHAR - 77)) | (1L << (NUMBER - 77)) | (1L << (NAME - 77)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 80)) & ~0x3f) == 0 && ((1L << (_la - 80)) & ((1L << (SIZEOF - 80)) | (1L << (TYPEID - 80)) | (1L << (LOGIC_NOT - 80)) | (1L << (BOOLEAN - 80)) | (1L << (STRING - 80)) | (1L << (CHAR - 80)) | (1L << (NUMBER - 80)) | (1L << (NAME - 80)))) != 0)) { { - setState(621); + setState(628); parameterList(); } } - setState(624); + setState(631); match(PAR_END); } break; @@ -5095,13 +5143,13 @@ public class KickCParser extends Parser { { _localctx = new ExprArrayContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(625); + setState(632); if (!(precpred(_ctx, 25))) throw new FailedPredicateException(this, "precpred(_ctx, 25)"); - setState(626); + setState(633); match(BRACKET_BEGIN); - setState(627); + setState(634); commaExpr(0); - setState(628); + setState(635); match(BRACKET_END); } break; @@ -5109,9 +5157,9 @@ public class KickCParser extends Parser { { _localctx = new ExprPostModContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(630); + setState(637); if (!(precpred(_ctx, 22))) throw new FailedPredicateException(this, "precpred(_ctx, 22)"); - setState(631); + setState(638); _la = _input.LA(1); if ( !(_la==INC || _la==DEC) ) { _errHandler.recoverInline(this); @@ -5126,7 +5174,7 @@ public class KickCParser extends Parser { } } } - setState(636); + setState(643); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,54,_ctx); } @@ -5180,21 +5228,21 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(637); + setState(644); expr(0); - setState(642); + setState(649); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(638); + setState(645); match(COMMA); - setState(639); + setState(646); expr(0); } } - setState(644); + setState(651); _errHandler.sync(this); _la = _input.LA(1); } @@ -5243,19 +5291,19 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(645); + setState(652); match(KICKASM); - setState(647); + setState(654); _errHandler.sync(this); _la = _input.LA(1); if (_la==PAR_BEGIN) { { - setState(646); + setState(653); asmDirectives(); } } - setState(649); + setState(656); match(KICKASM_BODY); } } @@ -5309,27 +5357,27 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(651); + setState(658); match(PAR_BEGIN); - setState(652); + setState(659); asmDirective(); - setState(657); + setState(664); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(653); + setState(660); match(COMMA); - setState(654); + setState(661); asmDirective(); } } - setState(659); + setState(666); _errHandler.sync(this); _la = _input.LA(1); } - setState(660); + setState(667); match(PAR_END); } } @@ -5475,16 +5523,16 @@ public class KickCParser extends Parser { AsmDirectiveContext _localctx = new AsmDirectiveContext(_ctx, getState()); enterRule(_localctx, 70, RULE_asmDirective); try { - setState(677); + setState(684); _errHandler.sync(this); switch (_input.LA(1)) { case RESOURCE: _localctx = new AsmDirectiveResourceContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(662); + setState(669); match(RESOURCE); - setState(663); + setState(670); match(STRING); } break; @@ -5492,9 +5540,9 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveUsesContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(664); + setState(671); match(USES); - setState(665); + setState(672); match(NAME); } break; @@ -5502,9 +5550,9 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveClobberContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(666); + setState(673); match(CLOBBERS); - setState(667); + setState(674); match(STRING); } break; @@ -5512,9 +5560,9 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveBytesContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(668); + setState(675); match(BYTES); - setState(669); + setState(676); expr(0); } break; @@ -5522,9 +5570,9 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveCyclesContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(670); + setState(677); match(CYCLES); - setState(671); + setState(678); expr(0); } break; @@ -5532,14 +5580,14 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveAddressContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(672); + setState(679); match(PC); - setState(675); + setState(682); _errHandler.sync(this); switch (_input.LA(1)) { case INLINE: { - setState(673); + setState(680); match(INLINE); } break; @@ -5563,7 +5611,7 @@ public class KickCParser extends Parser { case NUMBER: case NAME: { - setState(674); + setState(681); expr(0); } break; @@ -5620,17 +5668,17 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(682); + setState(689); _errHandler.sync(this); _la = _input.LA(1); - while (((((_la - 105)) & ~0x3f) == 0 && ((1L << (_la - 105)) & ((1L << (ASM_BYTE - 105)) | (1L << (ASM_MNEMONIC - 105)) | (1L << (ASM_MULTI_NAME - 105)) | (1L << (ASM_NAME - 105)))) != 0)) { + while (((((_la - 108)) & ~0x3f) == 0 && ((1L << (_la - 108)) & ((1L << (ASM_BYTE - 108)) | (1L << (ASM_MNEMONIC - 108)) | (1L << (ASM_MULTI_NAME - 108)) | (1L << (ASM_NAME - 108)))) != 0)) { { { - setState(679); + setState(686); asmLine(); } } - setState(684); + setState(691); _errHandler.sync(this); _la = _input.LA(1); } @@ -5680,28 +5728,28 @@ public class KickCParser extends Parser { AsmLineContext _localctx = new AsmLineContext(_ctx, getState()); enterRule(_localctx, 74, RULE_asmLine); try { - setState(688); + setState(695); _errHandler.sync(this); switch (_input.LA(1)) { case ASM_MULTI_NAME: case ASM_NAME: enterOuterAlt(_localctx, 1); { - setState(685); + setState(692); asmLabel(); } break; case ASM_MNEMONIC: enterOuterAlt(_localctx, 2); { - setState(686); + setState(693); asmInstruction(); } break; case ASM_BYTE: enterOuterAlt(_localctx, 3); { - setState(687); + setState(694); asmBytes(); } break; @@ -5772,16 +5820,16 @@ public class KickCParser extends Parser { AsmLabelContext _localctx = new AsmLabelContext(_ctx, getState()); enterRule(_localctx, 76, RULE_asmLabel); try { - setState(694); + setState(701); _errHandler.sync(this); switch (_input.LA(1)) { case ASM_NAME: _localctx = new AsmLabelNameContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(690); + setState(697); match(ASM_NAME); - setState(691); + setState(698); match(ASM_COLON); } break; @@ -5789,9 +5837,9 @@ public class KickCParser extends Parser { _localctx = new AsmLabelMultiContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(692); + setState(699); match(ASM_MULTI_NAME); - setState(693); + setState(700); match(ASM_COLON); } break; @@ -5840,14 +5888,14 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(696); + setState(703); match(ASM_MNEMONIC); - setState(698); + setState(705); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,63,_ctx) ) { case 1: { - setState(697); + setState(704); asmParamMode(); } break; @@ -5903,23 +5951,23 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(700); + setState(707); match(ASM_BYTE); - setState(701); + setState(708); asmExpr(0); - setState(706); + setState(713); _errHandler.sync(this); _la = _input.LA(1); while (_la==ASM_COMMA) { { { - setState(702); + setState(709); match(ASM_COMMA); - setState(703); + setState(710); asmExpr(0); } } - setState(708); + setState(715); _errHandler.sync(this); _la = _input.LA(1); } @@ -6079,14 +6127,14 @@ public class KickCParser extends Parser { AsmParamModeContext _localctx = new AsmParamModeContext(_ctx, getState()); enterRule(_localctx, 82, RULE_asmParamMode); try { - setState(732); + setState(739); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,65,_ctx) ) { case 1: _localctx = new AsmModeAbsContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(709); + setState(716); asmExpr(0); } break; @@ -6094,9 +6142,9 @@ public class KickCParser extends Parser { _localctx = new AsmModeImmContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(710); + setState(717); match(ASM_IMM); - setState(711); + setState(718); asmExpr(0); } break; @@ -6104,11 +6152,11 @@ public class KickCParser extends Parser { _localctx = new AsmModeAbsXYContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(712); + setState(719); asmExpr(0); - setState(713); + setState(720); match(ASM_COMMA); - setState(714); + setState(721); match(ASM_NAME); } break; @@ -6116,15 +6164,15 @@ public class KickCParser extends Parser { _localctx = new AsmModeIndIdxXYContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(716); + setState(723); match(ASM_PAR_BEGIN); - setState(717); + setState(724); asmExpr(0); - setState(718); + setState(725); match(ASM_PAR_END); - setState(719); + setState(726); match(ASM_COMMA); - setState(720); + setState(727); match(ASM_NAME); } break; @@ -6132,15 +6180,15 @@ public class KickCParser extends Parser { _localctx = new AsmModeIdxIndXYContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(722); + setState(729); match(ASM_PAR_BEGIN); - setState(723); + setState(730); asmExpr(0); - setState(724); + setState(731); match(ASM_COMMA); - setState(725); + setState(732); match(ASM_NAME); - setState(726); + setState(733); match(ASM_PAR_END); } break; @@ -6148,11 +6196,11 @@ public class KickCParser extends Parser { _localctx = new AsmModeIndContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(728); + setState(735); match(ASM_PAR_BEGIN); - setState(729); + setState(736); asmExpr(0); - setState(730); + setState(737); match(ASM_PAR_END); } break; @@ -6357,7 +6405,7 @@ public class KickCParser extends Parser { int _alt; enterOuterAlt(_localctx, 1); { - setState(748); + setState(755); _errHandler.sync(this); switch (_input.LA(1)) { case ASM_BRACKET_BEGIN: @@ -6366,11 +6414,11 @@ public class KickCParser extends Parser { _ctx = _localctx; _prevctx = _localctx; - setState(735); + setState(742); match(ASM_BRACKET_BEGIN); - setState(736); + setState(743); asmExpr(0); - setState(737); + setState(744); match(ASM_BRACKET_END); } break; @@ -6382,9 +6430,9 @@ public class KickCParser extends Parser { _localctx = new AsmExprUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(739); + setState(746); _la = _input.LA(1); - if ( !(((((_la - 117)) & ~0x3f) == 0 && ((1L << (_la - 117)) & ((1L << (ASM_PLUS - 117)) | (1L << (ASM_MINUS - 117)) | (1L << (ASM_LESS_THAN - 117)) | (1L << (ASM_GREATER_THAN - 117)))) != 0)) ) { + if ( !(((((_la - 120)) & ~0x3f) == 0 && ((1L << (_la - 120)) & ((1L << (ASM_PLUS - 120)) | (1L << (ASM_MINUS - 120)) | (1L << (ASM_LESS_THAN - 120)) | (1L << (ASM_GREATER_THAN - 120)))) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -6392,7 +6440,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(740); + setState(747); asmExpr(8); } break; @@ -6401,7 +6449,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprLabelContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(741); + setState(748); match(ASM_NAME); } break; @@ -6410,7 +6458,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprLabelRelContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(742); + setState(749); match(ASM_MULTI_REL); } break; @@ -6419,11 +6467,11 @@ public class KickCParser extends Parser { _localctx = new AsmExprReplaceContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(743); + setState(750); match(ASM_CURLY_BEGIN); - setState(744); + setState(751); match(ASM_NAME); - setState(745); + setState(752); match(ASM_CURLY_END); } break; @@ -6432,7 +6480,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprIntContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(746); + setState(753); match(ASM_NUMBER); } break; @@ -6441,7 +6489,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprCharContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(747); + setState(754); match(ASM_CHAR); } break; @@ -6449,7 +6497,7 @@ public class KickCParser extends Parser { throw new NoViableAltException(this); } _ctx.stop = _input.LT(-1); - setState(764); + setState(771); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,68,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -6457,20 +6505,20 @@ public class KickCParser extends Parser { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(762); + setState(769); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,67,_ctx) ) { case 1: { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(750); + setState(757); if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)"); { - setState(751); + setState(758); match(ASM_DOT); } - setState(752); + setState(759); asmExpr(11); } break; @@ -6478,9 +6526,9 @@ public class KickCParser extends Parser { { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(753); + setState(760); if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)"); - setState(754); + setState(761); _la = _input.LA(1); if ( !(_la==ASM_SHIFT_LEFT || _la==ASM_SHIFT_RIGHT) ) { _errHandler.recoverInline(this); @@ -6490,7 +6538,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(755); + setState(762); asmExpr(10); } break; @@ -6498,9 +6546,9 @@ public class KickCParser extends Parser { { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(756); + setState(763); if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)"); - setState(757); + setState(764); _la = _input.LA(1); if ( !(_la==ASM_MULTIPLY || _la==ASM_DIVIDE) ) { _errHandler.recoverInline(this); @@ -6510,7 +6558,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(758); + setState(765); asmExpr(8); } break; @@ -6518,9 +6566,9 @@ public class KickCParser extends Parser { { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(759); + setState(766); if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)"); - setState(760); + setState(767); _la = _input.LA(1); if ( !(_la==ASM_PLUS || _la==ASM_MINUS) ) { _errHandler.recoverInline(this); @@ -6530,14 +6578,14 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(761); + setState(768); asmExpr(7); } break; } } } - setState(766); + setState(773); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,68,_ctx); } @@ -6657,7 +6705,7 @@ public class KickCParser extends Parser { } public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\u008e\u0302\4\2\t"+ + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\u0091\u0309\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"+ @@ -6677,283 +6725,287 @@ public class KickCParser extends Parser { "\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\3\20\5\20\u00ff\n\20\3\21\3\21\3\21\3\21\3\21\3\21\3\21"+ "\3\21\3\21\3\21\3\21\5\21\u010c\n\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\u011b\n\21\3\21\3\21\3\21\3\21\3\21"+ - "\7\21\u0122\n\21\f\21\16\21\u0125\13\21\3\21\3\21\5\21\u0129\n\21\3\22"+ - "\6\22\u012c\n\22\r\22\16\22\u012d\3\23\3\23\3\23\3\23\3\23\5\23\u0135"+ - "\n\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\5\23\u0142"+ - "\n\23\3\23\7\23\u0145\n\23\f\23\16\23\u0148\13\23\3\23\3\23\3\23\3\23"+ - "\3\23\3\23\3\23\7\23\u0151\n\23\f\23\16\23\u0154\13\23\3\23\3\23\3\23"+ - "\3\23\3\23\3\23\3\23\3\23\3\23\7\23\u015f\n\23\f\23\16\23\u0162\13\23"+ - "\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23"+ - "\3\23\3\23\5\23\u0174\n\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\5\23\u017d"+ - "\n\23\3\23\3\23\3\23\3\23\3\23\5\23\u0184\n\23\3\24\6\24\u0187\n\24\r"+ - "\24\16\24\u0188\3\24\3\24\3\24\5\24\u018e\n\24\5\24\u0190\n\24\3\25\3"+ - "\25\3\25\3\25\5\25\u0196\n\25\3\26\3\26\3\26\3\26\3\26\5\26\u019d\n\26"+ - "\3\26\5\26\u01a0\n\26\3\26\3\26\3\26\3\26\3\26\3\26\5\26\u01a8\n\26\3"+ - "\27\5\27\u01ab\n\27\3\27\5\27\u01ae\n\27\3\30\3\30\3\30\3\30\3\30\3\30"+ - "\3\30\3\30\5\30\u01b8\n\30\3\30\3\30\3\30\3\30\3\30\5\30\u01bf\n\30\3"+ - "\30\3\30\3\30\3\30\3\30\5\30\u01c6\n\30\3\30\3\30\3\30\3\30\7\30\u01cc"+ - "\n\30\f\30\16\30\u01cf\13\30\3\31\3\31\3\31\3\32\3\32\5\32\u01d6\n\32"+ - "\3\32\3\32\6\32\u01da\n\32\r\32\16\32\u01db\3\32\3\32\3\33\3\33\3\33\3"+ - "\34\3\34\3\34\3\35\3\35\5\35\u01e8\n\35\3\35\3\35\3\35\3\35\3\36\3\36"+ - "\3\36\3\36\3\36\3\36\7\36\u01f4\n\36\f\36\16\36\u01f7\13\36\3\37\3\37"+ - "\3\37\5\37\u01fc\n\37\3 \3 \3 \3 \3 \3 \7 \u0204\n \f \16 \u0207\13 \3"+ - "!\3!\3!\3!\3!\3!\3!\3!\3!\5!\u0212\n!\3!\3!\3!\3!\3!\3!\5!\u021a\n!\3"+ - "!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\7!\u022f\n!\f"+ - "!\16!\u0232\13!\3!\3!\3!\3!\3!\6!\u0239\n!\r!\16!\u023a\3!\3!\5!\u023f"+ - "\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!\u0271\n!\3!\3!\3!\3!\3!\3!\3!\3!\7!\u027b\n!\f!\16!\u027e"+ - "\13!\3\"\3\"\3\"\7\"\u0283\n\"\f\"\16\"\u0286\13\"\3#\3#\5#\u028a\n#\3"+ - "#\3#\3$\3$\3$\3$\7$\u0292\n$\f$\16$\u0295\13$\3$\3$\3%\3%\3%\3%\3%\3%"+ - "\3%\3%\3%\3%\3%\3%\3%\5%\u02a6\n%\5%\u02a8\n%\3&\7&\u02ab\n&\f&\16&\u02ae"+ - "\13&\3\'\3\'\3\'\5\'\u02b3\n\'\3(\3(\3(\3(\5(\u02b9\n(\3)\3)\5)\u02bd"+ - "\n)\3*\3*\3*\3*\7*\u02c3\n*\f*\16*\u02c6\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+\u02df\n+\3,\3,\3,\3,\3"+ - ",\3,\3,\3,\3,\3,\3,\3,\3,\3,\5,\u02ef\n,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3"+ - ",\3,\3,\7,\u02fd\n,\f,\16,\u0300\13,\3,\2\b\24.:>@V-\2\4\6\b\n\f\16\20"+ - "\22\24\26\30\32\34\36 \"$&(*,.\60\62\64\668:<>@BDFHJLNPRTV\2\r\3\2\26"+ - "\27\5\2\21\22\30\31WW\4\2 ##\3\2\34\35\3\2\23\25\3\2\21\22\3\2\36#\3"+ - "\2wz\3\2uv\3\2{|\3\2wx\2\u0370\2X\3\2\2\2\4[\3\2\2\2\6a\3\2\2\2\bf\3\2"+ - "\2\2\nh\3\2\2\2\fz\3\2\2\2\16|\3\2\2\2\20\u0084\3\2\2\2\22\u008e\3\2\2"+ - "\2\24\u0091\3\2\2\2\26\u00a4\3\2\2\2\30\u00a6\3\2\2\2\32\u00b3\3\2\2\2"+ - "\34\u00bf\3\2\2\2\36\u00fe\3\2\2\2 \u0128\3\2\2\2\"\u012b\3\2\2\2$\u0183"+ - "\3\2\2\2&\u0186\3\2\2\2(\u0191\3\2\2\2*\u01a7\3\2\2\2,\u01ad\3\2\2\2."+ - "\u01be\3\2\2\2\60\u01d0\3\2\2\2\62\u01d3\3\2\2\2\64\u01df\3\2\2\2\66\u01e2"+ - "\3\2\2\28\u01e5\3\2\2\2:\u01ed\3\2\2\2<\u01f8\3\2\2\2>\u01fd\3\2\2\2@"+ - "\u023e\3\2\2\2B\u027f\3\2\2\2D\u0287\3\2\2\2F\u028d\3\2\2\2H\u02a7\3\2"+ - "\2\2J\u02ac\3\2\2\2L\u02b2\3\2\2\2N\u02b8\3\2\2\2P\u02ba\3\2\2\2R\u02be"+ - "\3\2\2\2T\u02de\3\2\2\2V\u02ee\3\2\2\2XY\5\6\4\2YZ\7\2\2\3Z\3\3\2\2\2"+ - "[\\\5J&\2\\]\7\2\2\3]\5\3\2\2\2^`\5\b\5\2_^\3\2\2\2`c\3\2\2\2a_\3\2\2"+ - "\2ab\3\2\2\2b\7\3\2\2\2ca\3\2\2\2dg\5\f\7\2eg\5\n\6\2fd\3\2\2\2fe\3\2"+ - "\2\2g\t\3\2\2\2hi\7(\2\2ij\7\\\2\2j\13\3\2\2\2kl\5\22\n\2lm\7\n\2\2m{"+ - "\3\2\2\2no\5\62\32\2op\7\n\2\2p{\3\2\2\2qr\58\35\2rs\7\n\2\2s{\3\2\2\2"+ - "t{\5\30\r\2u{\5D#\2v{\5\36\20\2wx\5\16\b\2xy\7\n\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)\2\2}~\5.\30\2~\177\7g\2\2\177\u0080\b\b\1\2\u0080\17\3\2\2\2"+ - "\u0081\u0083\5 \21\2\u0082\u0081\3\2\2\2\u0083\u0086\3\2\2\2\u0084\u0082"+ - "\3\2\2\2\u0084\u0085\3\2\2\2\u0085\u0087\3\2\2\2\u0086\u0084\3\2\2\2\u0087"+ - "\u008b\5.\30\2\u0088\u008a\5 \21\2\u0089\u0088\3\2\2\2\u008a\u008d\3\2"+ - "\2\2\u008b\u0089\3\2\2\2\u008b\u008c\3\2\2\2\u008c\21\3\2\2\2\u008d\u008b"+ - "\3\2\2\2\u008e\u008f\5\20\t\2\u008f\u0090\5\24\13\2\u0090\23\3\2\2\2\u0091"+ - "\u0092\b\13\1\2\u0092\u0093\5\26\f\2\u0093\u0099\3\2\2\2\u0094\u0095\f"+ - "\3\2\2\u0095\u0096\7\f\2\2\u0096\u0098\5\26\f\2\u0097\u0094\3\2\2\2\u0098"+ - "\u009b\3\2\2\2\u0099\u0097\3\2\2\2\u0099\u009a\3\2\2\2\u009a\25\3\2\2"+ - "\2\u009b\u0099\3\2\2\2\u009c\u009f\7g\2\2\u009d\u009e\7&\2\2\u009e\u00a0"+ - "\5@!\2\u009f\u009d\3\2\2\2\u009f\u00a0\3\2\2\2\u00a0\u00a5\3\2\2\2\u00a1"+ - "\u00a2\7g\2\2\u00a2\u00a3\7&\2\2\u00a3\u00a5\5D#\2\u00a4\u009c\3\2\2\2"+ - "\u00a4\u00a1\3\2\2\2\u00a5\27\3\2\2\2\u00a6\u00a7\5\20\t\2\u00a7\u00a8"+ - "\7g\2\2\u00a8\u00aa\7\b\2\2\u00a9\u00ab\5\32\16\2\u00aa\u00a9\3\2\2\2"+ - "\u00aa\u00ab\3\2\2\2\u00ab\u00ac\3\2\2\2\u00ac\u00ad\7\t\2\2\u00ad\u00af"+ - "\7\4\2\2\u00ae\u00b0\5\"\22\2\u00af\u00ae\3\2\2\2\u00af\u00b0\3\2\2\2"+ - "\u00b0\u00b1\3\2\2\2\u00b1\u00b2\7\5\2\2\u00b2\31\3\2\2\2\u00b3\u00b8"+ - "\5\34\17\2\u00b4\u00b5\7\f\2\2\u00b5\u00b7\5\34\17\2\u00b6\u00b4\3\2\2"+ - "\2\u00b7\u00ba\3\2\2\2\u00b8\u00b6\3\2\2\2\u00b8\u00b9\3\2\2\2\u00b9\33"+ - "\3\2\2\2\u00ba\u00b8\3\2\2\2\u00bb\u00bc\5\20\t\2\u00bc\u00bd\7g\2\2\u00bd"+ - "\u00c0\3\2\2\2\u00be\u00c0\7Y\2\2\u00bf\u00bb\3\2\2\2\u00bf\u00be\3\2"+ - "\2\2\u00c0\35\3\2\2\2\u00c1\u00c2\7*\2\2\u00c2\u00c3\7+\2\2\u00c3\u00c4"+ - "\3\2\2\2\u00c4\u00c5\7\b\2\2\u00c5\u00ca\7^\2\2\u00c6\u00c7\7\f\2\2\u00c7"+ - "\u00c9\7^\2\2\u00c8\u00c6\3\2\2\2\u00c9\u00cc\3\2\2\2\u00ca\u00c8\3\2"+ - "\2\2\u00ca\u00cb\3\2\2\2\u00cb\u00cd\3\2\2\2\u00cc\u00ca\3\2\2\2\u00cd"+ - "\u00ff\7\t\2\2\u00ce\u00cf\7*\2\2\u00cf\u00d0\7,\2\2\u00d0\u00d1\3\2\2"+ - "\2\u00d1\u00d2\7\b\2\2\u00d2\u00d3\7^\2\2\u00d3\u00ff\7\t\2\2\u00d4\u00d5"+ - "\7*\2\2\u00d5\u00d6\7-\2\2\u00d6\u00d7\3\2\2\2\u00d7\u00d8\7\b\2\2\u00d8"+ - "\u00d9\7g\2\2\u00d9\u00ff\7\t\2\2\u00da\u00db\7*\2\2\u00db\u00dc\7/\2"+ - "\2\u00dc\u00dd\3\2\2\2\u00dd\u00de\7\b\2\2\u00de\u00df\7g\2\2\u00df\u00ff"+ - "\7\t\2\2\u00e0\u00e1\7*\2\2\u00e1\u00e2\7.\2\2\u00e2\u00e3\3\2\2\2\u00e3"+ - "\u00e4\7\b\2\2\u00e4\u00e5\7\\\2\2\u00e5\u00ff\7\t\2\2\u00e6\u00e7\7*"+ - "\2\2\u00e7\u00e8\7\60\2\2\u00e8\u00e9\3\2\2\2\u00e9\u00ea\7\b\2\2\u00ea"+ - "\u00eb\7g\2\2\u00eb\u00ff\7\t\2\2\u00ec\u00ed\7*\2\2\u00ed\u00ee\7\61"+ - "\2\2\u00ee\u00ef\3\2\2\2\u00ef\u00f0\7\b\2\2\u00f0\u00f1\7g\2\2\u00f1"+ - "\u00ff\7\t\2\2\u00f2\u00f3\7*\2\2\u00f3\u00f4\7\62\2\2\u00f4\u00f5\3\2"+ - "\2\2\u00f5\u00f6\7\b\2\2\u00f6\u00f7\7g\2\2\u00f7\u00ff\7\t\2\2\u00f8"+ - "\u00f9\7*\2\2\u00f9\u00fa\7?\2\2\u00fa\u00fb\3\2\2\2\u00fb\u00fc\7\b\2"+ - "\2\u00fc\u00fd\7@\2\2\u00fd\u00ff\7\t\2\2\u00fe\u00c1\3\2\2\2\u00fe\u00ce"+ - "\3\2\2\2\u00fe\u00d4\3\2\2\2\u00fe\u00da\3\2\2\2\u00fe\u00e0\3\2\2\2\u00fe"+ - "\u00e6\3\2\2\2\u00fe\u00ec\3\2\2\2\u00fe\u00f2\3\2\2\2\u00fe\u00f8\3\2"+ - "\2\2\u00ff\37\3\2\2\2\u0100\u0129\7\63\2\2\u0101\u0129\7\64\2\2\u0102"+ - "\u0129\7\65\2\2\u0103\u0104\7\66\2\2\u0104\u0105\7\b\2\2\u0105\u0106\7"+ - "^\2\2\u0106\u0129\7\t\2\2\u0107\u010b\7\67\2\2\u0108\u0109\7\b\2\2\u0109"+ - "\u010a\7g\2\2\u010a\u010c\7\t\2\2\u010b\u0108\3\2\2\2\u010b\u010c\3\2"+ - "\2\2\u010c\u0129\3\2\2\2\u010d\u0129\78\2\2\u010e\u0129\7:\2\2\u010f\u0129"+ - "\7;\2\2\u0110\u0111\79\2\2\u0111\u0112\7\b\2\2\u0112\u0113\7^\2\2\u0113"+ - "\u0129\7\t\2\2\u0114\u0129\7<\2\2\u0115\u0129\7=\2\2\u0116\u011a\7>\2"+ - "\2\u0117\u0118\7\b\2\2\u0118\u0119\7g\2\2\u0119\u011b\7\t\2\2\u011a\u0117"+ - "\3\2\2\2\u011a\u011b\3\2\2\2\u011b\u0129\3\2\2\2\u011c\u011d\7+\2\2\u011d"+ - "\u011e\7\b\2\2\u011e\u0123\7^\2\2\u011f\u0120\7\f\2\2\u0120\u0122\7^\2"+ - "\2\u0121\u011f\3\2\2\2\u0122\u0125\3\2\2\2\u0123\u0121\3\2\2\2\u0123\u0124"+ - "\3\2\2\2\u0124\u0126\3\2\2\2\u0125\u0123\3\2\2\2\u0126\u0129\7\t\2\2\u0127"+ - "\u0129\7@\2\2\u0128\u0100\3\2\2\2\u0128\u0101\3\2\2\2\u0128\u0102\3\2"+ - "\2\2\u0128\u0103\3\2\2\2\u0128\u0107\3\2\2\2\u0128\u010d\3\2\2\2\u0128"+ - "\u010e\3\2\2\2\u0128\u010f\3\2\2\2\u0128\u0110\3\2\2\2\u0128\u0114\3\2"+ - "\2\2\u0128\u0115\3\2\2\2\u0128\u0116\3\2\2\2\u0128\u011c\3\2\2\2\u0128"+ - "\u0127\3\2\2\2\u0129!\3\2\2\2\u012a\u012c\5$\23\2\u012b\u012a\3\2\2\2"+ - "\u012c\u012d\3\2\2\2\u012d\u012b\3\2\2\2\u012d\u012e\3\2\2\2\u012e#\3"+ - "\2\2\2\u012f\u0130\5\22\n\2\u0130\u0131\7\n\2\2\u0131\u0184\3\2\2\2\u0132"+ - "\u0134\7\4\2\2\u0133\u0135\5\"\22\2\u0134\u0133\3\2\2\2\u0134\u0135\3"+ - "\2\2\2\u0135\u0136\3\2\2\2\u0136\u0184\7\5\2\2\u0137\u0138\5> \2\u0138"+ - "\u0139\7\n\2\2\u0139\u0184\3\2\2\2\u013a\u013b\7A\2\2\u013b\u013c\7\b"+ - "\2\2\u013c\u013d\5> \2\u013d\u013e\7\t\2\2\u013e\u0141\5$\23\2\u013f\u0140"+ - "\7B\2\2\u0140\u0142\5$\23\2\u0141\u013f\3\2\2\2\u0141\u0142\3\2\2\2\u0142"+ - "\u0184\3\2\2\2\u0143\u0145\5 \21\2\u0144\u0143\3\2\2\2\u0145\u0148\3\2"+ - "\2\2\u0146\u0144\3\2\2\2\u0146\u0147\3\2\2\2\u0147\u0149\3\2\2\2\u0148"+ - "\u0146\3\2\2\2\u0149\u014a\7C\2\2\u014a\u014b\7\b\2\2\u014b\u014c\5> "+ - "\2\u014c\u014d\7\t\2\2\u014d\u014e\5$\23\2\u014e\u0184\3\2\2\2\u014f\u0151"+ - "\5 \21\2\u0150\u014f\3\2\2\2\u0151\u0154\3\2\2\2\u0152\u0150\3\2\2\2\u0152"+ - "\u0153\3\2\2\2\u0153\u0155\3\2\2\2\u0154\u0152\3\2\2\2\u0155\u0156\7D"+ - "\2\2\u0156\u0157\5$\23\2\u0157\u0158\7C\2\2\u0158\u0159\7\b\2\2\u0159"+ - "\u015a\5> \2\u015a\u015b\7\t\2\2\u015b\u015c\7\n\2\2\u015c\u0184\3\2\2"+ - "\2\u015d\u015f\5 \21\2\u015e\u015d\3\2\2\2\u015f\u0162\3\2\2\2\u0160\u015e"+ - "\3\2\2\2\u0160\u0161\3\2\2\2\u0161\u0163\3\2\2\2\u0162\u0160\3\2\2\2\u0163"+ - "\u0164\7E\2\2\u0164\u0165\7\b\2\2\u0165\u0166\5*\26\2\u0166\u0167\7\t"+ - "\2\2\u0167\u0168\5$\23\2\u0168\u0184\3\2\2\2\u0169\u016a\7F\2\2\u016a"+ - "\u016b\7\b\2\2\u016b\u016c\5> \2\u016c\u016d\7\t\2\2\u016d\u016e\7\4\2"+ - "\2\u016e\u016f\5&\24\2\u016f\u0170\7\5\2\2\u0170\u0184\3\2\2\2\u0171\u0173"+ - "\7G\2\2\u0172\u0174\5> \2\u0173\u0172\3\2\2\2\u0173\u0174\3\2\2\2\u0174"+ - "\u0175\3\2\2\2\u0175\u0184\7\n\2\2\u0176\u0177\7H\2\2\u0177\u0184\7\n"+ - "\2\2\u0178\u0179\7I\2\2\u0179\u0184\7\n\2\2\u017a\u017c\7J\2\2\u017b\u017d"+ - "\5F$\2\u017c\u017b\3\2\2\2\u017c\u017d\3\2\2\2\u017d\u017e\3\2\2\2\u017e"+ - "\u017f\7\4\2\2\u017f\u0180\5J&\2\u0180\u0181\7~\2\2\u0181\u0184\3\2\2"+ - "\2\u0182\u0184\5D#\2\u0183\u012f\3\2\2\2\u0183\u0132\3\2\2\2\u0183\u0137"+ - "\3\2\2\2\u0183\u013a\3\2\2\2\u0183\u0146\3\2\2\2\u0183\u0152\3\2\2\2\u0183"+ - "\u0160\3\2\2\2\u0183\u0169\3\2\2\2\u0183\u0171\3\2\2\2\u0183\u0176\3\2"+ - "\2\2\u0183\u0178\3\2\2\2\u0183\u017a\3\2\2\2\u0183\u0182\3\2\2\2\u0184"+ - "%\3\2\2\2\u0185\u0187\5(\25\2\u0186\u0185\3\2\2\2\u0187\u0188\3\2\2\2"+ - "\u0188\u0186\3\2\2\2\u0188\u0189\3\2\2\2\u0189\u018f\3\2\2\2\u018a\u018b"+ - "\7K\2\2\u018b\u018d\7\13\2\2\u018c\u018e\5\"\22\2\u018d\u018c\3\2\2\2"+ - "\u018d\u018e\3\2\2\2\u018e\u0190\3\2\2\2\u018f\u018a\3\2\2\2\u018f\u0190"+ - "\3\2\2\2\u0190\'\3\2\2\2\u0191\u0192\7L\2\2\u0192\u0193\5@!\2\u0193\u0195"+ - "\7\13\2\2\u0194\u0196\5\"\22\2\u0195\u0194\3\2\2\2\u0195\u0196\3\2\2\2"+ - "\u0196)\3\2\2\2\u0197\u0198\5,\27\2\u0198\u0199\7\n\2\2\u0199\u019a\5"+ - "> \2\u019a\u019c\7\n\2\2\u019b\u019d\5> \2\u019c\u019b\3\2\2\2\u019c\u019d"+ - "\3\2\2\2\u019d\u01a8\3\2\2\2\u019e\u01a0\5\20\t\2\u019f\u019e\3\2\2\2"+ - "\u019f\u01a0\3\2\2\2\u01a0\u01a1\3\2\2\2\u01a1\u01a2\7g\2\2\u01a2\u01a3"+ - "\7\13\2\2\u01a3\u01a4\5@!\2\u01a4\u01a5\7\r\2\2\u01a5\u01a6\5@!\2\u01a6"+ - "\u01a8\3\2\2\2\u01a7\u0197\3\2\2\2\u01a7\u019f\3\2\2\2\u01a8+\3\2\2\2"+ - "\u01a9\u01ab\5\22\n\2\u01aa\u01a9\3\2\2\2\u01aa\u01ab\3\2\2\2\u01ab\u01ae"+ - "\3\2\2\2\u01ac\u01ae\5> \2\u01ad\u01aa\3\2\2\2\u01ad\u01ac\3\2\2\2\u01ae"+ - "-\3\2\2\2\u01af\u01b0\b\30\1\2\u01b0\u01b1\7\b\2\2\u01b1\u01b2\5.\30\2"+ - "\u01b2\u01b3\7\t\2\2\u01b3\u01bf\3\2\2\2\u01b4\u01bf\7Y\2\2\u01b5\u01b7"+ - "\7X\2\2\u01b6\u01b8\7Y\2\2\u01b7\u01b6\3\2\2\2\u01b7\u01b8\3\2\2\2\u01b8"+ - "\u01bf\3\2\2\2\u01b9\u01bf\5\62\32\2\u01ba\u01bf\5\60\31\2\u01bb\u01bf"+ - "\58\35\2\u01bc\u01bf\5\66\34\2\u01bd\u01bf\7\3\2\2\u01be\u01af\3\2\2\2"+ - "\u01be\u01b4\3\2\2\2\u01be\u01b5\3\2\2\2\u01be\u01b9\3\2\2\2\u01be\u01ba"+ - "\3\2\2\2\u01be\u01bb\3\2\2\2\u01be\u01bc\3\2\2\2\u01be\u01bd\3\2\2\2\u01bf"+ - "\u01cd\3\2\2\2\u01c0\u01c1\f\n\2\2\u01c1\u01cc\7\23\2\2\u01c2\u01c3\f"+ - "\t\2\2\u01c3\u01c5\7\6\2\2\u01c4\u01c6\5@!\2\u01c5\u01c4\3\2\2\2\u01c5"+ - "\u01c6\3\2\2\2\u01c6\u01c7\3\2\2\2\u01c7\u01cc\7\7\2\2\u01c8\u01c9\f\b"+ - "\2\2\u01c9\u01ca\7\b\2\2\u01ca\u01cc\7\t\2\2\u01cb\u01c0\3\2\2\2\u01cb"+ - "\u01c2\3\2\2\2\u01cb\u01c8\3\2\2\2\u01cc\u01cf\3\2\2\2\u01cd\u01cb\3\2"+ - "\2\2\u01cd\u01ce\3\2\2\2\u01ce/\3\2\2\2\u01cf\u01cd\3\2\2\2\u01d0\u01d1"+ - "\7M\2\2\u01d1\u01d2\7g\2\2\u01d2\61\3\2\2\2\u01d3\u01d5\7M\2\2\u01d4\u01d6"+ - "\7g\2\2\u01d5\u01d4\3\2\2\2\u01d5\u01d6\3\2\2\2\u01d6\u01d7\3\2\2\2\u01d7"+ - "\u01d9\7\4\2\2\u01d8\u01da\5\64\33\2\u01d9\u01d8\3\2\2\2\u01da\u01db\3"+ - "\2\2\2\u01db\u01d9\3\2\2\2\u01db\u01dc\3\2\2\2\u01dc\u01dd\3\2\2\2\u01dd"+ - "\u01de\7\5\2\2\u01de\63\3\2\2\2\u01df\u01e0\5\22\n\2\u01e0\u01e1\7\n\2"+ - "\2\u01e1\65\3\2\2\2\u01e2\u01e3\7N\2\2\u01e3\u01e4\7g\2\2\u01e4\67\3\2"+ - "\2\2\u01e5\u01e7\7N\2\2\u01e6\u01e8\7g\2\2\u01e7\u01e6\3\2\2\2\u01e7\u01e8"+ - "\3\2\2\2\u01e8\u01e9\3\2\2\2\u01e9\u01ea\7\4\2\2\u01ea\u01eb\5:\36\2\u01eb"+ - "\u01ec\7\5\2\2\u01ec9\3\2\2\2\u01ed\u01ee\b\36\1\2\u01ee\u01ef\5<\37\2"+ - "\u01ef\u01f5\3\2\2\2\u01f0\u01f1\f\3\2\2\u01f1\u01f2\7\f\2\2\u01f2\u01f4"+ - "\5<\37\2\u01f3\u01f0\3\2\2\2\u01f4\u01f7\3\2\2\2\u01f5\u01f3\3\2\2\2\u01f5"+ - "\u01f6\3\2\2\2\u01f6;\3\2\2\2\u01f7\u01f5\3\2\2\2\u01f8\u01fb\7g\2\2\u01f9"+ - "\u01fa\7&\2\2\u01fa\u01fc\5@!\2\u01fb\u01f9\3\2\2\2\u01fb\u01fc\3\2\2"+ - "\2\u01fc=\3\2\2\2\u01fd\u01fe\b \1\2\u01fe\u01ff\5@!\2\u01ff\u0205\3\2"+ - "\2\2\u0200\u0201\f\3\2\2\u0201\u0202\7\f\2\2\u0202\u0204\5@!\2\u0203\u0200"+ - "\3\2\2\2\u0204\u0207\3\2\2\2\u0205\u0203\3\2\2\2\u0205\u0206\3\2\2\2\u0206"+ - "?\3\2\2\2\u0207\u0205\3\2\2\2\u0208\u0209\b!\1\2\u0209\u020a\7\b\2\2\u020a"+ - "\u020b\5> \2\u020b\u020c\7\t\2\2\u020c\u023f\3\2\2\2\u020d\u020e\7O\2"+ - "\2\u020e\u0211\7\b\2\2\u020f\u0212\5@!\2\u0210\u0212\5.\30\2\u0211\u020f"+ - "\3\2\2\2\u0211\u0210\3\2\2\2\u0212\u0213\3\2\2\2\u0213\u0214\7\t\2\2\u0214"+ - "\u023f\3\2\2\2\u0215\u0216\7P\2\2\u0216\u0219\7\b\2\2\u0217\u021a\5@!"+ - "\2\u0218\u021a\5.\30\2\u0219\u0217\3\2\2\2\u0219\u0218\3\2\2\2\u021a\u021b"+ - "\3\2\2\2\u021b\u021c\7\t\2\2\u021c\u023f\3\2\2\2\u021d\u021e\7\b\2\2\u021e"+ - "\u021f\5.\30\2\u021f\u0220\7\t\2\2\u0220\u0221\5@!\32\u0221\u023f\3\2"+ - "\2\2\u0222\u0223\t\2\2\2\u0223\u023f\5@!\31\u0224\u0225\7\23\2\2\u0225"+ - "\u023f\5@!\27\u0226\u0227\t\3\2\2\u0227\u023f\5@!\26\u0228\u0229\t\4\2"+ - "\2\u0229\u023f\5@!\22\u022a\u022b\7\4\2\2\u022b\u0230\5@!\2\u022c\u022d"+ - "\7\f\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\u0231\u0233\3\2\2\2\u0232\u0230\3\2"+ - "\2\2\u0233\u0234\7\5\2\2\u0234\u023f\3\2\2\2\u0235\u023f\7g\2\2\u0236"+ - "\u023f\7^\2\2\u0237\u0239\7\\\2\2\u0238\u0237\3\2\2\2\u0239\u023a\3\2"+ - "\2\2\u023a\u0238\3\2\2\2\u023a\u023b\3\2\2\2\u023b\u023f\3\2\2\2\u023c"+ - "\u023f\7]\2\2\u023d\u023f\7Z\2\2\u023e\u0208\3\2\2\2\u023e\u020d\3\2\2"+ - "\2\u023e\u0215\3\2\2\2\u023e\u021d\3\2\2\2\u023e\u0222\3\2\2\2\u023e\u0224"+ - "\3\2\2\2\u023e\u0226\3\2\2\2\u023e\u0228\3\2\2\2\u023e\u022a\3\2\2\2\u023e"+ - "\u0235\3\2\2\2\u023e\u0236\3\2\2\2\u023e\u0238\3\2\2\2\u023e\u023c\3\2"+ - "\2\2\u023e\u023d\3\2\2\2\u023f\u027c\3\2\2\2\u0240\u0241\f\25\2\2\u0241"+ - "\u0242\t\5\2\2\u0242\u027b\5@!\26\u0243\u0244\f\24\2\2\u0244\u0245\t\6"+ - "\2\2\u0245\u027b\5@!\25\u0246\u0247\f\23\2\2\u0247\u0248\t\7\2\2\u0248"+ - "\u027b\5@!\24\u0249\u024a\f\21\2\2\u024a\u024b\t\b\2\2\u024b\u027b\5@"+ - "!\22\u024c\u024d\f\20\2\2\u024d\u024e\7\30\2\2\u024e\u027b\5@!\21\u024f"+ - "\u0250\f\17\2\2\u0250\u0251\7\32\2\2\u0251\u027b\5@!\20\u0252\u0253\f"+ - "\16\2\2\u0253\u0254\7\33\2\2\u0254\u027b\5@!\17\u0255\u0256\f\r\2\2\u0256"+ - "\u0257\7$\2\2\u0257\u027b\5@!\16\u0258\u0259\f\f\2\2\u0259\u025a\7%\2"+ - "\2\u025a\u027b\5@!\r\u025b\u025c\f\13\2\2\u025c\u025d\7\16\2\2\u025d\u025e"+ - "\5@!\2\u025e\u025f\7\13\2\2\u025f\u0260\5@!\f\u0260\u027b\3\2\2\2\u0261"+ - "\u0262\f\n\2\2\u0262\u0263\7&\2\2\u0263\u027b\5@!\n\u0264\u0265\f\t\2"+ - "\2\u0265\u0266\7\'\2\2\u0266\u027b\5@!\t\u0267\u0268\f \2\2\u0268\u0269"+ - "\7\17\2\2\u0269\u027b\7g\2\2\u026a\u026b\f\37\2\2\u026b\u026c\7\20\2\2"+ - "\u026c\u027b\7g\2\2\u026d\u026e\f\36\2\2\u026e\u0270\7\b\2\2\u026f\u0271"+ - "\5B\"\2\u0270\u026f\3\2\2\2\u0270\u0271\3\2\2\2\u0271\u0272\3\2\2\2\u0272"+ - "\u027b\7\t\2\2\u0273\u0274\f\33\2\2\u0274\u0275\7\6\2\2\u0275\u0276\5"+ - "> \2\u0276\u0277\7\7\2\2\u0277\u027b\3\2\2\2\u0278\u0279\f\30\2\2\u0279"+ - "\u027b\t\2\2\2\u027a\u0240\3\2\2\2\u027a\u0243\3\2\2\2\u027a\u0246\3\2"+ - "\2\2\u027a\u0249\3\2\2\2\u027a\u024c\3\2\2\2\u027a\u024f\3\2\2\2\u027a"+ - "\u0252\3\2\2\2\u027a\u0255\3\2\2\2\u027a\u0258\3\2\2\2\u027a\u025b\3\2"+ - "\2\2\u027a\u0261\3\2\2\2\u027a\u0264\3\2\2\2\u027a\u0267\3\2\2\2\u027a"+ - "\u026a\3\2\2\2\u027a\u026d\3\2\2\2\u027a\u0273\3\2\2\2\u027a\u0278\3\2"+ - "\2\2\u027b\u027e\3\2\2\2\u027c\u027a\3\2\2\2\u027c\u027d\3\2\2\2\u027d"+ - "A\3\2\2\2\u027e\u027c\3\2\2\2\u027f\u0284\5@!\2\u0280\u0281\7\f\2\2\u0281"+ - "\u0283\5@!\2\u0282\u0280\3\2\2\2\u0283\u0286\3\2\2\2\u0284\u0282\3\2\2"+ - "\2\u0284\u0285\3\2\2\2\u0285C\3\2\2\2\u0286\u0284\3\2\2\2\u0287\u0289"+ - "\7Q\2\2\u0288\u028a\5F$\2\u0289\u0288\3\2\2\2\u0289\u028a\3\2\2\2\u028a"+ - "\u028b\3\2\2\2\u028b\u028c\7[\2\2\u028cE\3\2\2\2\u028d\u028e\7\b\2\2\u028e"+ - "\u0293\5H%\2\u028f\u0290\7\f\2\2\u0290\u0292\5H%\2\u0291\u028f\3\2\2\2"+ - "\u0292\u0295\3\2\2\2\u0293\u0291\3\2\2\2\u0293\u0294\3\2\2\2\u0294\u0296"+ - "\3\2\2\2\u0295\u0293\3\2\2\2\u0296\u0297\7\t\2\2\u0297G\3\2\2\2\u0298"+ - "\u0299\7R\2\2\u0299\u02a8\7\\\2\2\u029a\u029b\7S\2\2\u029b\u02a8\7g\2"+ - "\2\u029c\u029d\7T\2\2\u029d\u02a8\7\\\2\2\u029e\u029f\7U\2\2\u029f\u02a8"+ - "\5@!\2\u02a0\u02a1\7V\2\2\u02a1\u02a8\5@!\2\u02a2\u02a5\7,\2\2\u02a3\u02a6"+ - "\7<\2\2\u02a4\u02a6\5@!\2\u02a5\u02a3\3\2\2\2\u02a5\u02a4\3\2\2\2\u02a6"+ - "\u02a8\3\2\2\2\u02a7\u0298\3\2\2\2\u02a7\u029a\3\2\2\2\u02a7\u029c\3\2"+ - "\2\2\u02a7\u029e\3\2\2\2\u02a7\u02a0\3\2\2\2\u02a7\u02a2\3\2\2\2\u02a8"+ - "I\3\2\2\2\u02a9\u02ab\5L\'\2\u02aa\u02a9\3\2\2\2\u02ab\u02ae\3\2\2\2\u02ac"+ - "\u02aa\3\2\2\2\u02ac\u02ad\3\2\2\2\u02adK\3\2\2\2\u02ae\u02ac\3\2\2\2"+ - "\u02af\u02b3\5N(\2\u02b0\u02b3\5P)\2\u02b1\u02b3\5R*\2\u02b2\u02af\3\2"+ - "\2\2\u02b2\u02b0\3\2\2\2\u02b2\u02b1\3\2\2\2\u02b3M\3\2\2\2\u02b4\u02b5"+ - "\7\u008b\2\2\u02b5\u02b9\7n\2\2\u02b6\u02b7\7\u008a\2\2\u02b7\u02b9\7"+ - "n\2\2\u02b8\u02b4\3\2\2\2\u02b8\u02b6\3\2\2\2\u02b9O\3\2\2\2\u02ba\u02bc"+ - "\7l\2\2\u02bb\u02bd\5T+\2\u02bc\u02bb\3\2\2\2\u02bc\u02bd\3\2\2\2\u02bd"+ - "Q\3\2\2\2\u02be\u02bf\7k\2\2\u02bf\u02c4\5V,\2\u02c0\u02c1\7o\2\2\u02c1"+ - "\u02c3\5V,\2\u02c2\u02c0\3\2\2\2\u02c3\u02c6\3\2\2\2\u02c4\u02c2\3\2\2"+ - "\2\u02c4\u02c5\3\2\2\2\u02c5S\3\2\2\2\u02c6\u02c4\3\2\2\2\u02c7\u02df"+ - "\5V,\2\u02c8\u02c9\7m\2\2\u02c9\u02df\5V,\2\u02ca\u02cb\5V,\2\u02cb\u02cc"+ - "\7o\2\2\u02cc\u02cd\7\u008b\2\2\u02cd\u02df\3\2\2\2\u02ce\u02cf\7p\2\2"+ - "\u02cf\u02d0\5V,\2\u02d0\u02d1\7q\2\2\u02d1\u02d2\7o\2\2\u02d2\u02d3\7"+ - "\u008b\2\2\u02d3\u02df\3\2\2\2\u02d4\u02d5\7p\2\2\u02d5\u02d6\5V,\2\u02d6"+ - "\u02d7\7o\2\2\u02d7\u02d8\7\u008b\2\2\u02d8\u02d9\7q\2\2\u02d9\u02df\3"+ - "\2\2\2\u02da\u02db\7p\2\2\u02db\u02dc\5V,\2\u02dc\u02dd\7q\2\2\u02dd\u02df"+ - "\3\2\2\2\u02de\u02c7\3\2\2\2\u02de\u02c8\3\2\2\2\u02de\u02ca\3\2\2\2\u02de"+ - "\u02ce\3\2\2\2\u02de\u02d4\3\2\2\2\u02de\u02da\3\2\2\2\u02dfU\3\2\2\2"+ - "\u02e0\u02e1\b,\1\2\u02e1\u02e2\7r\2\2\u02e2\u02e3\5V,\2\u02e3\u02e4\7"+ - "s\2\2\u02e4\u02ef\3\2\2\2\u02e5\u02e6\t\t\2\2\u02e6\u02ef\5V,\n\u02e7"+ - "\u02ef\7\u008b\2\2\u02e8\u02ef\7\u0089\2\2\u02e9\u02ea\7}\2\2\u02ea\u02eb"+ - "\7\u008b\2\2\u02eb\u02ef\7~\2\2\u02ec\u02ef\7\177\2\2\u02ed\u02ef\7\u0088"+ - "\2\2\u02ee\u02e0\3\2\2\2\u02ee\u02e5\3\2\2\2\u02ee\u02e7\3\2\2\2\u02ee"+ - "\u02e8\3\2\2\2\u02ee\u02e9\3\2\2\2\u02ee\u02ec\3\2\2\2\u02ee\u02ed\3\2"+ - "\2\2\u02ef\u02fe\3\2\2\2\u02f0\u02f1\f\f\2\2\u02f1\u02f2\7t\2\2\u02f2"+ - "\u02fd\5V,\r\u02f3\u02f4\f\13\2\2\u02f4\u02f5\t\n\2\2\u02f5\u02fd\5V,"+ - "\f\u02f6\u02f7\f\t\2\2\u02f7\u02f8\t\13\2\2\u02f8\u02fd\5V,\n\u02f9\u02fa"+ - "\f\b\2\2\u02fa\u02fb\t\f\2\2\u02fb\u02fd\5V,\t\u02fc\u02f0\3\2\2\2\u02fc"+ - "\u02f3\3\2\2\2\u02fc\u02f6\3\2\2\2\u02fc\u02f9\3\2\2\2\u02fd\u0300\3\2"+ - "\2\2\u02fe\u02fc\3\2\2\2\u02fe\u02ff\3\2\2\2\u02ffW\3\2\2\2\u0300\u02fe"+ - "\3\2\2\2Gafz\u0084\u008b\u0099\u009f\u00a4\u00aa\u00af\u00b8\u00bf\u00ca"+ - "\u00fe\u010b\u011a\u0123\u0128\u012d\u0134\u0141\u0146\u0152\u0160\u0173"+ - "\u017c\u0183\u0188\u018d\u018f\u0195\u019c\u019f\u01a7\u01aa\u01ad\u01b7"+ - "\u01be\u01c5\u01cb\u01cd\u01d5\u01db\u01e7\u01f5\u01fb\u0205\u0211\u0219"+ - "\u0230\u023a\u023e\u0270\u027a\u027c\u0284\u0289\u0293\u02a5\u02a7\u02ac"+ - "\u02b2\u02b8\u02bc\u02c4\u02de\u02ee\u02fc\u02fe"; + "\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"+ + "\u0122\n\21\3\21\3\21\3\21\3\21\3\21\7\21\u0129\n\21\f\21\16\21\u012c"+ + "\13\21\3\21\3\21\5\21\u0130\n\21\3\22\6\22\u0133\n\22\r\22\16\22\u0134"+ + "\3\23\3\23\3\23\3\23\3\23\5\23\u013c\n\23\3\23\3\23\3\23\3\23\3\23\3\23"+ + "\3\23\3\23\3\23\3\23\3\23\5\23\u0149\n\23\3\23\7\23\u014c\n\23\f\23\16"+ + "\23\u014f\13\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\7\23\u0158\n\23\f\23"+ + "\16\23\u015b\13\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\7\23\u0166"+ + "\n\23\f\23\16\23\u0169\13\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3"+ + "\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\5\23\u017b\n\23\3\23\3\23\3\23"+ + "\3\23\3\23\3\23\3\23\5\23\u0184\n\23\3\23\3\23\3\23\3\23\3\23\5\23\u018b"+ + "\n\23\3\24\6\24\u018e\n\24\r\24\16\24\u018f\3\24\3\24\3\24\5\24\u0195"+ + "\n\24\5\24\u0197\n\24\3\25\3\25\3\25\3\25\5\25\u019d\n\25\3\26\3\26\3"+ + "\26\3\26\3\26\5\26\u01a4\n\26\3\26\5\26\u01a7\n\26\3\26\3\26\3\26\3\26"+ + "\3\26\3\26\5\26\u01af\n\26\3\27\5\27\u01b2\n\27\3\27\5\27\u01b5\n\27\3"+ + "\30\3\30\3\30\3\30\3\30\3\30\3\30\3\30\5\30\u01bf\n\30\3\30\3\30\3\30"+ + "\3\30\3\30\5\30\u01c6\n\30\3\30\3\30\3\30\3\30\3\30\5\30\u01cd\n\30\3"+ + "\30\3\30\3\30\3\30\7\30\u01d3\n\30\f\30\16\30\u01d6\13\30\3\31\3\31\3"+ + "\31\3\32\3\32\5\32\u01dd\n\32\3\32\3\32\6\32\u01e1\n\32\r\32\16\32\u01e2"+ + "\3\32\3\32\3\33\3\33\3\33\3\34\3\34\3\34\3\35\3\35\5\35\u01ef\n\35\3\35"+ + "\3\35\3\35\3\35\3\36\3\36\3\36\3\36\3\36\3\36\7\36\u01fb\n\36\f\36\16"+ + "\36\u01fe\13\36\3\37\3\37\3\37\5\37\u0203\n\37\3 \3 \3 \3 \3 \3 \7 \u020b"+ + "\n \f \16 \u020e\13 \3!\3!\3!\3!\3!\3!\3!\3!\3!\5!\u0219\n!\3!\3!\3!\3"+ + "!\3!\3!\5!\u0221\n!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3"+ + "!\3!\3!\7!\u0236\n!\f!\16!\u0239\13!\3!\3!\3!\3!\3!\6!\u0240\n!\r!\16"+ + "!\u0241\3!\3!\5!\u0246\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!\u0278\n!\3!\3!\3!\3!\3!\3!\3!\3!\7"+ + "!\u0282\n!\f!\16!\u0285\13!\3\"\3\"\3\"\7\"\u028a\n\"\f\"\16\"\u028d\13"+ + "\"\3#\3#\5#\u0291\n#\3#\3#\3$\3$\3$\3$\7$\u0299\n$\f$\16$\u029c\13$\3"+ + "$\3$\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\5%\u02ad\n%\5%\u02af\n%\3"+ + "&\7&\u02b2\n&\f&\16&\u02b5\13&\3\'\3\'\3\'\5\'\u02ba\n\'\3(\3(\3(\3(\5"+ + "(\u02c0\n(\3)\3)\5)\u02c4\n)\3*\3*\3*\3*\7*\u02ca\n*\f*\16*\u02cd\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+\u02e6\n+\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\5,\u02f6\n,\3,"+ + "\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\7,\u0304\n,\f,\16,\u0307\13,\3,\2\b"+ + "\24.:>@V-\2\4\6\b\n\f\16\20\22\24\26\30\32\34\36 \"$&(*,.\60\62\64\66"+ + "8:<>@BDFHJLNPRTV\2\r\3\2\26\27\5\2\21\22\30\31ZZ\4\2 ##\3\2\34\35\3\2"+ + "\23\25\3\2\21\22\3\2\36#\3\2z}\3\2xy\3\2~\177\3\2z{\2\u037b\2X\3\2\2\2"+ + "\4[\3\2\2\2\6a\3\2\2\2\bf\3\2\2\2\nh\3\2\2\2\fz\3\2\2\2\16|\3\2\2\2\20"+ + "\u0084\3\2\2\2\22\u008e\3\2\2\2\24\u0091\3\2\2\2\26\u00a4\3\2\2\2\30\u00a6"+ + "\3\2\2\2\32\u00b3\3\2\2\2\34\u00bf\3\2\2\2\36\u00fe\3\2\2\2 \u012f\3\2"+ + "\2\2\"\u0132\3\2\2\2$\u018a\3\2\2\2&\u018d\3\2\2\2(\u0198\3\2\2\2*\u01ae"+ + "\3\2\2\2,\u01b4\3\2\2\2.\u01c5\3\2\2\2\60\u01d7\3\2\2\2\62\u01da\3\2\2"+ + "\2\64\u01e6\3\2\2\2\66\u01e9\3\2\2\28\u01ec\3\2\2\2:\u01f4\3\2\2\2<\u01ff"+ + "\3\2\2\2>\u0204\3\2\2\2@\u0245\3\2\2\2B\u0286\3\2\2\2D\u028e\3\2\2\2F"+ + "\u0294\3\2\2\2H\u02ae\3\2\2\2J\u02b3\3\2\2\2L\u02b9\3\2\2\2N\u02bf\3\2"+ + "\2\2P\u02c1\3\2\2\2R\u02c5\3\2\2\2T\u02e5\3\2\2\2V\u02f5\3\2\2\2XY\5\6"+ + "\4\2YZ\7\2\2\3Z\3\3\2\2\2[\\\5J&\2\\]\7\2\2\3]\5\3\2\2\2^`\5\b\5\2_^\3"+ + "\2\2\2`c\3\2\2\2a_\3\2\2\2ab\3\2\2\2b\7\3\2\2\2ca\3\2\2\2dg\5\f\7\2eg"+ + "\5\n\6\2fd\3\2\2\2fe\3\2\2\2g\t\3\2\2\2hi\7(\2\2ij\7_\2\2j\13\3\2\2\2"+ + "kl\5\22\n\2lm\7\n\2\2m{\3\2\2\2no\5\62\32\2op\7\n\2\2p{\3\2\2\2qr\58\35"+ + "\2rs\7\n\2\2s{\3\2\2\2t{\5\30\r\2u{\5D#\2v{\5\36\20\2wx\5\16\b\2xy\7\n"+ + "\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)\2\2}~\5.\30\2~\177\7j\2\2\177\u0080\b\b"+ + "\1\2\u0080\17\3\2\2\2\u0081\u0083\5 \21\2\u0082\u0081\3\2\2\2\u0083\u0086"+ + "\3\2\2\2\u0084\u0082\3\2\2\2\u0084\u0085\3\2\2\2\u0085\u0087\3\2\2\2\u0086"+ + "\u0084\3\2\2\2\u0087\u008b\5.\30\2\u0088\u008a\5 \21\2\u0089\u0088\3\2"+ + "\2\2\u008a\u008d\3\2\2\2\u008b\u0089\3\2\2\2\u008b\u008c\3\2\2\2\u008c"+ + "\21\3\2\2\2\u008d\u008b\3\2\2\2\u008e\u008f\5\20\t\2\u008f\u0090\5\24"+ + "\13\2\u0090\23\3\2\2\2\u0091\u0092\b\13\1\2\u0092\u0093\5\26\f\2\u0093"+ + "\u0099\3\2\2\2\u0094\u0095\f\3\2\2\u0095\u0096\7\f\2\2\u0096\u0098\5\26"+ + "\f\2\u0097\u0094\3\2\2\2\u0098\u009b\3\2\2\2\u0099\u0097\3\2\2\2\u0099"+ + "\u009a\3\2\2\2\u009a\25\3\2\2\2\u009b\u0099\3\2\2\2\u009c\u009f\7j\2\2"+ + "\u009d\u009e\7&\2\2\u009e\u00a0\5@!\2\u009f\u009d\3\2\2\2\u009f\u00a0"+ + "\3\2\2\2\u00a0\u00a5\3\2\2\2\u00a1\u00a2\7j\2\2\u00a2\u00a3\7&\2\2\u00a3"+ + "\u00a5\5D#\2\u00a4\u009c\3\2\2\2\u00a4\u00a1\3\2\2\2\u00a5\27\3\2\2\2"+ + "\u00a6\u00a7\5\20\t\2\u00a7\u00a8\7j\2\2\u00a8\u00aa\7\b\2\2\u00a9\u00ab"+ + "\5\32\16\2\u00aa\u00a9\3\2\2\2\u00aa\u00ab\3\2\2\2\u00ab\u00ac\3\2\2\2"+ + "\u00ac\u00ad\7\t\2\2\u00ad\u00af\7\4\2\2\u00ae\u00b0\5\"\22\2\u00af\u00ae"+ + "\3\2\2\2\u00af\u00b0\3\2\2\2\u00b0\u00b1\3\2\2\2\u00b1\u00b2\7\5\2\2\u00b2"+ + "\31\3\2\2\2\u00b3\u00b8\5\34\17\2\u00b4\u00b5\7\f\2\2\u00b5\u00b7\5\34"+ + "\17\2\u00b6\u00b4\3\2\2\2\u00b7\u00ba\3\2\2\2\u00b8\u00b6\3\2\2\2\u00b8"+ + "\u00b9\3\2\2\2\u00b9\33\3\2\2\2\u00ba\u00b8\3\2\2\2\u00bb\u00bc\5\20\t"+ + "\2\u00bc\u00bd\7j\2\2\u00bd\u00c0\3\2\2\2\u00be\u00c0\7\\\2\2\u00bf\u00bb"+ + "\3\2\2\2\u00bf\u00be\3\2\2\2\u00c0\35\3\2\2\2\u00c1\u00c2\7*\2\2\u00c2"+ + "\u00c3\7+\2\2\u00c3\u00c4\3\2\2\2\u00c4\u00c5\7\b\2\2\u00c5\u00ca\7a\2"+ + "\2\u00c6\u00c7\7\f\2\2\u00c7\u00c9\7a\2\2\u00c8\u00c6\3\2\2\2\u00c9\u00cc"+ + "\3\2\2\2\u00ca\u00c8\3\2\2\2\u00ca\u00cb\3\2\2\2\u00cb\u00cd\3\2\2\2\u00cc"+ + "\u00ca\3\2\2\2\u00cd\u00ff\7\t\2\2\u00ce\u00cf\7*\2\2\u00cf\u00d0\7,\2"+ + "\2\u00d0\u00d1\3\2\2\2\u00d1\u00d2\7\b\2\2\u00d2\u00d3\7a\2\2\u00d3\u00ff"+ + "\7\t\2\2\u00d4\u00d5\7*\2\2\u00d5\u00d6\7-\2\2\u00d6\u00d7\3\2\2\2\u00d7"+ + "\u00d8\7\b\2\2\u00d8\u00d9\7j\2\2\u00d9\u00ff\7\t\2\2\u00da\u00db\7*\2"+ + "\2\u00db\u00dc\7/\2\2\u00dc\u00dd\3\2\2\2\u00dd\u00de\7\b\2\2\u00de\u00df"+ + "\7j\2\2\u00df\u00ff\7\t\2\2\u00e0\u00e1\7*\2\2\u00e1\u00e2\7.\2\2\u00e2"+ + "\u00e3\3\2\2\2\u00e3\u00e4\7\b\2\2\u00e4\u00e5\7_\2\2\u00e5\u00ff\7\t"+ + "\2\2\u00e6\u00e7\7*\2\2\u00e7\u00e8\7\60\2\2\u00e8\u00e9\3\2\2\2\u00e9"+ + "\u00ea\7\b\2\2\u00ea\u00eb\7j\2\2\u00eb\u00ff\7\t\2\2\u00ec\u00ed\7*\2"+ + "\2\u00ed\u00ee\7\61\2\2\u00ee\u00ef\3\2\2\2\u00ef\u00f0\7\b\2\2\u00f0"+ + "\u00f1\7j\2\2\u00f1\u00ff\7\t\2\2\u00f2\u00f3\7*\2\2\u00f3\u00f4\7\62"+ + "\2\2\u00f4\u00f5\3\2\2\2\u00f5\u00f6\7\b\2\2\u00f6\u00f7\7j\2\2\u00f7"+ + "\u00ff\7\t\2\2\u00f8\u00f9\7*\2\2\u00f9\u00fa\7B\2\2\u00fa\u00fb\3\2\2"+ + "\2\u00fb\u00fc\7\b\2\2\u00fc\u00fd\7C\2\2\u00fd\u00ff\7\t\2\2\u00fe\u00c1"+ + "\3\2\2\2\u00fe\u00ce\3\2\2\2\u00fe\u00d4\3\2\2\2\u00fe\u00da\3\2\2\2\u00fe"+ + "\u00e0\3\2\2\2\u00fe\u00e6\3\2\2\2\u00fe\u00ec\3\2\2\2\u00fe\u00f2\3\2"+ + "\2\2\u00fe\u00f8\3\2\2\2\u00ff\37\3\2\2\2\u0100\u0130\7\63\2\2\u0101\u0130"+ + "\7\64\2\2\u0102\u0130\7\65\2\2\u0103\u0104\7\66\2\2\u0104\u0105\7\b\2"+ + "\2\u0105\u0106\7a\2\2\u0106\u0130\7\t\2\2\u0107\u010b\7\67\2\2\u0108\u0109"+ + "\7\b\2\2\u0109\u010a\7j\2\2\u010a\u010c\7\t\2\2\u010b\u0108\3\2\2\2\u010b"+ + "\u010c\3\2\2\2\u010c\u0130\3\2\2\2\u010d\u0130\78\2\2\u010e\u0130\7:\2"+ + "\2\u010f\u0130\7;\2\2\u0110\u0111\79\2\2\u0111\u0112\7\b\2\2\u0112\u0113"+ + "\7a\2\2\u0113\u0130\7\t\2\2\u0114\u0130\7<\2\2\u0115\u0130\7=\2\2\u0116"+ + "\u0117\79\2\2\u0117\u0118\7\b\2\2\u0118\u0119\7a\2\2\u0119\u0130\7\t\2"+ + "\2\u011a\u0130\7>\2\2\u011b\u0130\7?\2\2\u011c\u0130\7@\2\2\u011d\u0121"+ + "\7A\2\2\u011e\u011f\7\b\2\2\u011f\u0120\7j\2\2\u0120\u0122\7\t\2\2\u0121"+ + "\u011e\3\2\2\2\u0121\u0122\3\2\2\2\u0122\u0130\3\2\2\2\u0123\u0124\7+"+ + "\2\2\u0124\u0125\7\b\2\2\u0125\u012a\7a\2\2\u0126\u0127\7\f\2\2\u0127"+ + "\u0129\7a\2\2\u0128\u0126\3\2\2\2\u0129\u012c\3\2\2\2\u012a\u0128\3\2"+ + "\2\2\u012a\u012b\3\2\2\2\u012b\u012d\3\2\2\2\u012c\u012a\3\2\2\2\u012d"+ + "\u0130\7\t\2\2\u012e\u0130\7C\2\2\u012f\u0100\3\2\2\2\u012f\u0101\3\2"+ + "\2\2\u012f\u0102\3\2\2\2\u012f\u0103\3\2\2\2\u012f\u0107\3\2\2\2\u012f"+ + "\u010d\3\2\2\2\u012f\u010e\3\2\2\2\u012f\u010f\3\2\2\2\u012f\u0110\3\2"+ + "\2\2\u012f\u0114\3\2\2\2\u012f\u0115\3\2\2\2\u012f\u0116\3\2\2\2\u012f"+ + "\u011a\3\2\2\2\u012f\u011b\3\2\2\2\u012f\u011c\3\2\2\2\u012f\u011d\3\2"+ + "\2\2\u012f\u0123\3\2\2\2\u012f\u012e\3\2\2\2\u0130!\3\2\2\2\u0131\u0133"+ + "\5$\23\2\u0132\u0131\3\2\2\2\u0133\u0134\3\2\2\2\u0134\u0132\3\2\2\2\u0134"+ + "\u0135\3\2\2\2\u0135#\3\2\2\2\u0136\u0137\5\22\n\2\u0137\u0138\7\n\2\2"+ + "\u0138\u018b\3\2\2\2\u0139\u013b\7\4\2\2\u013a\u013c\5\"\22\2\u013b\u013a"+ + "\3\2\2\2\u013b\u013c\3\2\2\2\u013c\u013d\3\2\2\2\u013d\u018b\7\5\2\2\u013e"+ + "\u013f\5> \2\u013f\u0140\7\n\2\2\u0140\u018b\3\2\2\2\u0141\u0142\7D\2"+ + "\2\u0142\u0143\7\b\2\2\u0143\u0144\5> \2\u0144\u0145\7\t\2\2\u0145\u0148"+ + "\5$\23\2\u0146\u0147\7E\2\2\u0147\u0149\5$\23\2\u0148\u0146\3\2\2\2\u0148"+ + "\u0149\3\2\2\2\u0149\u018b\3\2\2\2\u014a\u014c\5 \21\2\u014b\u014a\3\2"+ + "\2\2\u014c\u014f\3\2\2\2\u014d\u014b\3\2\2\2\u014d\u014e\3\2\2\2\u014e"+ + "\u0150\3\2\2\2\u014f\u014d\3\2\2\2\u0150\u0151\7F\2\2\u0151\u0152\7\b"+ + "\2\2\u0152\u0153\5> \2\u0153\u0154\7\t\2\2\u0154\u0155\5$\23\2\u0155\u018b"+ + "\3\2\2\2\u0156\u0158\5 \21\2\u0157\u0156\3\2\2\2\u0158\u015b\3\2\2\2\u0159"+ + "\u0157\3\2\2\2\u0159\u015a\3\2\2\2\u015a\u015c\3\2\2\2\u015b\u0159\3\2"+ + "\2\2\u015c\u015d\7G\2\2\u015d\u015e\5$\23\2\u015e\u015f\7F\2\2\u015f\u0160"+ + "\7\b\2\2\u0160\u0161\5> \2\u0161\u0162\7\t\2\2\u0162\u0163\7\n\2\2\u0163"+ + "\u018b\3\2\2\2\u0164\u0166\5 \21\2\u0165\u0164\3\2\2\2\u0166\u0169\3\2"+ + "\2\2\u0167\u0165\3\2\2\2\u0167\u0168\3\2\2\2\u0168\u016a\3\2\2\2\u0169"+ + "\u0167\3\2\2\2\u016a\u016b\7H\2\2\u016b\u016c\7\b\2\2\u016c\u016d\5*\26"+ + "\2\u016d\u016e\7\t\2\2\u016e\u016f\5$\23\2\u016f\u018b\3\2\2\2\u0170\u0171"+ + "\7I\2\2\u0171\u0172\7\b\2\2\u0172\u0173\5> \2\u0173\u0174\7\t\2\2\u0174"+ + "\u0175\7\4\2\2\u0175\u0176\5&\24\2\u0176\u0177\7\5\2\2\u0177\u018b\3\2"+ + "\2\2\u0178\u017a\7J\2\2\u0179\u017b\5> \2\u017a\u0179\3\2\2\2\u017a\u017b"+ + "\3\2\2\2\u017b\u017c\3\2\2\2\u017c\u018b\7\n\2\2\u017d\u017e\7K\2\2\u017e"+ + "\u018b\7\n\2\2\u017f\u0180\7L\2\2\u0180\u018b\7\n\2\2\u0181\u0183\7M\2"+ + "\2\u0182\u0184\5F$\2\u0183\u0182\3\2\2\2\u0183\u0184\3\2\2\2\u0184\u0185"+ + "\3\2\2\2\u0185\u0186\7\4\2\2\u0186\u0187\5J&\2\u0187\u0188\7\u0081\2\2"+ + "\u0188\u018b\3\2\2\2\u0189\u018b\5D#\2\u018a\u0136\3\2\2\2\u018a\u0139"+ + "\3\2\2\2\u018a\u013e\3\2\2\2\u018a\u0141\3\2\2\2\u018a\u014d\3\2\2\2\u018a"+ + "\u0159\3\2\2\2\u018a\u0167\3\2\2\2\u018a\u0170\3\2\2\2\u018a\u0178\3\2"+ + "\2\2\u018a\u017d\3\2\2\2\u018a\u017f\3\2\2\2\u018a\u0181\3\2\2\2\u018a"+ + "\u0189\3\2\2\2\u018b%\3\2\2\2\u018c\u018e\5(\25\2\u018d\u018c\3\2\2\2"+ + "\u018e\u018f\3\2\2\2\u018f\u018d\3\2\2\2\u018f\u0190\3\2\2\2\u0190\u0196"+ + "\3\2\2\2\u0191\u0192\7N\2\2\u0192\u0194\7\13\2\2\u0193\u0195\5\"\22\2"+ + "\u0194\u0193\3\2\2\2\u0194\u0195\3\2\2\2\u0195\u0197\3\2\2\2\u0196\u0191"+ + "\3\2\2\2\u0196\u0197\3\2\2\2\u0197\'\3\2\2\2\u0198\u0199\7O\2\2\u0199"+ + "\u019a\5@!\2\u019a\u019c\7\13\2\2\u019b\u019d\5\"\22\2\u019c\u019b\3\2"+ + "\2\2\u019c\u019d\3\2\2\2\u019d)\3\2\2\2\u019e\u019f\5,\27\2\u019f\u01a0"+ + "\7\n\2\2\u01a0\u01a1\5> \2\u01a1\u01a3\7\n\2\2\u01a2\u01a4\5> \2\u01a3"+ + "\u01a2\3\2\2\2\u01a3\u01a4\3\2\2\2\u01a4\u01af\3\2\2\2\u01a5\u01a7\5\20"+ + "\t\2\u01a6\u01a5\3\2\2\2\u01a6\u01a7\3\2\2\2\u01a7\u01a8\3\2\2\2\u01a8"+ + "\u01a9\7j\2\2\u01a9\u01aa\7\13\2\2\u01aa\u01ab\5@!\2\u01ab\u01ac\7\r\2"+ + "\2\u01ac\u01ad\5@!\2\u01ad\u01af\3\2\2\2\u01ae\u019e\3\2\2\2\u01ae\u01a6"+ + "\3\2\2\2\u01af+\3\2\2\2\u01b0\u01b2\5\22\n\2\u01b1\u01b0\3\2\2\2\u01b1"+ + "\u01b2\3\2\2\2\u01b2\u01b5\3\2\2\2\u01b3\u01b5\5> \2\u01b4\u01b1\3\2\2"+ + "\2\u01b4\u01b3\3\2\2\2\u01b5-\3\2\2\2\u01b6\u01b7\b\30\1\2\u01b7\u01b8"+ + "\7\b\2\2\u01b8\u01b9\5.\30\2\u01b9\u01ba\7\t\2\2\u01ba\u01c6\3\2\2\2\u01bb"+ + "\u01c6\7\\\2\2\u01bc\u01be\7[\2\2\u01bd\u01bf\7\\\2\2\u01be\u01bd\3\2"+ + "\2\2\u01be\u01bf\3\2\2\2\u01bf\u01c6\3\2\2\2\u01c0\u01c6\5\62\32\2\u01c1"+ + "\u01c6\5\60\31\2\u01c2\u01c6\58\35\2\u01c3\u01c6\5\66\34\2\u01c4\u01c6"+ + "\7\3\2\2\u01c5\u01b6\3\2\2\2\u01c5\u01bb\3\2\2\2\u01c5\u01bc\3\2\2\2\u01c5"+ + "\u01c0\3\2\2\2\u01c5\u01c1\3\2\2\2\u01c5\u01c2\3\2\2\2\u01c5\u01c3\3\2"+ + "\2\2\u01c5\u01c4\3\2\2\2\u01c6\u01d4\3\2\2\2\u01c7\u01c8\f\n\2\2\u01c8"+ + "\u01d3\7\23\2\2\u01c9\u01ca\f\t\2\2\u01ca\u01cc\7\6\2\2\u01cb\u01cd\5"+ + "@!\2\u01cc\u01cb\3\2\2\2\u01cc\u01cd\3\2\2\2\u01cd\u01ce\3\2\2\2\u01ce"+ + "\u01d3\7\7\2\2\u01cf\u01d0\f\b\2\2\u01d0\u01d1\7\b\2\2\u01d1\u01d3\7\t"+ + "\2\2\u01d2\u01c7\3\2\2\2\u01d2\u01c9\3\2\2\2\u01d2\u01cf\3\2\2\2\u01d3"+ + "\u01d6\3\2\2\2\u01d4\u01d2\3\2\2\2\u01d4\u01d5\3\2\2\2\u01d5/\3\2\2\2"+ + "\u01d6\u01d4\3\2\2\2\u01d7\u01d8\7P\2\2\u01d8\u01d9\7j\2\2\u01d9\61\3"+ + "\2\2\2\u01da\u01dc\7P\2\2\u01db\u01dd\7j\2\2\u01dc\u01db\3\2\2\2\u01dc"+ + "\u01dd\3\2\2\2\u01dd\u01de\3\2\2\2\u01de\u01e0\7\4\2\2\u01df\u01e1\5\64"+ + "\33\2\u01e0\u01df\3\2\2\2\u01e1\u01e2\3\2\2\2\u01e2\u01e0\3\2\2\2\u01e2"+ + "\u01e3\3\2\2\2\u01e3\u01e4\3\2\2\2\u01e4\u01e5\7\5\2\2\u01e5\63\3\2\2"+ + "\2\u01e6\u01e7\5\22\n\2\u01e7\u01e8\7\n\2\2\u01e8\65\3\2\2\2\u01e9\u01ea"+ + "\7Q\2\2\u01ea\u01eb\7j\2\2\u01eb\67\3\2\2\2\u01ec\u01ee\7Q\2\2\u01ed\u01ef"+ + "\7j\2\2\u01ee\u01ed\3\2\2\2\u01ee\u01ef\3\2\2\2\u01ef\u01f0\3\2\2\2\u01f0"+ + "\u01f1\7\4\2\2\u01f1\u01f2\5:\36\2\u01f2\u01f3\7\5\2\2\u01f39\3\2\2\2"+ + "\u01f4\u01f5\b\36\1\2\u01f5\u01f6\5<\37\2\u01f6\u01fc\3\2\2\2\u01f7\u01f8"+ + "\f\3\2\2\u01f8\u01f9\7\f\2\2\u01f9\u01fb\5<\37\2\u01fa\u01f7\3\2\2\2\u01fb"+ + "\u01fe\3\2\2\2\u01fc\u01fa\3\2\2\2\u01fc\u01fd\3\2\2\2\u01fd;\3\2\2\2"+ + "\u01fe\u01fc\3\2\2\2\u01ff\u0202\7j\2\2\u0200\u0201\7&\2\2\u0201\u0203"+ + "\5@!\2\u0202\u0200\3\2\2\2\u0202\u0203\3\2\2\2\u0203=\3\2\2\2\u0204\u0205"+ + "\b \1\2\u0205\u0206\5@!\2\u0206\u020c\3\2\2\2\u0207\u0208\f\3\2\2\u0208"+ + "\u0209\7\f\2\2\u0209\u020b\5@!\2\u020a\u0207\3\2\2\2\u020b\u020e\3\2\2"+ + "\2\u020c\u020a\3\2\2\2\u020c\u020d\3\2\2\2\u020d?\3\2\2\2\u020e\u020c"+ + "\3\2\2\2\u020f\u0210\b!\1\2\u0210\u0211\7\b\2\2\u0211\u0212\5> \2\u0212"+ + "\u0213\7\t\2\2\u0213\u0246\3\2\2\2\u0214\u0215\7R\2\2\u0215\u0218\7\b"+ + "\2\2\u0216\u0219\5@!\2\u0217\u0219\5.\30\2\u0218\u0216\3\2\2\2\u0218\u0217"+ + "\3\2\2\2\u0219\u021a\3\2\2\2\u021a\u021b\7\t\2\2\u021b\u0246\3\2\2\2\u021c"+ + "\u021d\7S\2\2\u021d\u0220\7\b\2\2\u021e\u0221\5@!\2\u021f\u0221\5.\30"+ + "\2\u0220\u021e\3\2\2\2\u0220\u021f\3\2\2\2\u0221\u0222\3\2\2\2\u0222\u0223"+ + "\7\t\2\2\u0223\u0246\3\2\2\2\u0224\u0225\7\b\2\2\u0225\u0226\5.\30\2\u0226"+ + "\u0227\7\t\2\2\u0227\u0228\5@!\32\u0228\u0246\3\2\2\2\u0229\u022a\t\2"+ + "\2\2\u022a\u0246\5@!\31\u022b\u022c\7\23\2\2\u022c\u0246\5@!\27\u022d"+ + "\u022e\t\3\2\2\u022e\u0246\5@!\26\u022f\u0230\t\4\2\2\u0230\u0246\5@!"+ + "\22\u0231\u0232\7\4\2\2\u0232\u0237\5@!\2\u0233\u0234\7\f\2\2\u0234\u0236"+ + "\5@!\2\u0235\u0233\3\2\2\2\u0236\u0239\3\2\2\2\u0237\u0235\3\2\2\2\u0237"+ + "\u0238\3\2\2\2\u0238\u023a\3\2\2\2\u0239\u0237\3\2\2\2\u023a\u023b\7\5"+ + "\2\2\u023b\u0246\3\2\2\2\u023c\u0246\7j\2\2\u023d\u0246\7a\2\2\u023e\u0240"+ + "\7_\2\2\u023f\u023e\3\2\2\2\u0240\u0241\3\2\2\2\u0241\u023f\3\2\2\2\u0241"+ + "\u0242\3\2\2\2\u0242\u0246\3\2\2\2\u0243\u0246\7`\2\2\u0244\u0246\7]\2"+ + "\2\u0245\u020f\3\2\2\2\u0245\u0214\3\2\2\2\u0245\u021c\3\2\2\2\u0245\u0224"+ + "\3\2\2\2\u0245\u0229\3\2\2\2\u0245\u022b\3\2\2\2\u0245\u022d\3\2\2\2\u0245"+ + "\u022f\3\2\2\2\u0245\u0231\3\2\2\2\u0245\u023c\3\2\2\2\u0245\u023d\3\2"+ + "\2\2\u0245\u023f\3\2\2\2\u0245\u0243\3\2\2\2\u0245\u0244\3\2\2\2\u0246"+ + "\u0283\3\2\2\2\u0247\u0248\f\25\2\2\u0248\u0249\t\5\2\2\u0249\u0282\5"+ + "@!\26\u024a\u024b\f\24\2\2\u024b\u024c\t\6\2\2\u024c\u0282\5@!\25\u024d"+ + "\u024e\f\23\2\2\u024e\u024f\t\7\2\2\u024f\u0282\5@!\24\u0250\u0251\f\21"+ + "\2\2\u0251\u0252\t\b\2\2\u0252\u0282\5@!\22\u0253\u0254\f\20\2\2\u0254"+ + "\u0255\7\30\2\2\u0255\u0282\5@!\21\u0256\u0257\f\17\2\2\u0257\u0258\7"+ + "\32\2\2\u0258\u0282\5@!\20\u0259\u025a\f\16\2\2\u025a\u025b\7\33\2\2\u025b"+ + "\u0282\5@!\17\u025c\u025d\f\r\2\2\u025d\u025e\7$\2\2\u025e\u0282\5@!\16"+ + "\u025f\u0260\f\f\2\2\u0260\u0261\7%\2\2\u0261\u0282\5@!\r\u0262\u0263"+ + "\f\13\2\2\u0263\u0264\7\16\2\2\u0264\u0265\5@!\2\u0265\u0266\7\13\2\2"+ + "\u0266\u0267\5@!\f\u0267\u0282\3\2\2\2\u0268\u0269\f\n\2\2\u0269\u026a"+ + "\7&\2\2\u026a\u0282\5@!\n\u026b\u026c\f\t\2\2\u026c\u026d\7\'\2\2\u026d"+ + "\u0282\5@!\t\u026e\u026f\f \2\2\u026f\u0270\7\17\2\2\u0270\u0282\7j\2"+ + "\2\u0271\u0272\f\37\2\2\u0272\u0273\7\20\2\2\u0273\u0282\7j\2\2\u0274"+ + "\u0275\f\36\2\2\u0275\u0277\7\b\2\2\u0276\u0278\5B\"\2\u0277\u0276\3\2"+ + "\2\2\u0277\u0278\3\2\2\2\u0278\u0279\3\2\2\2\u0279\u0282\7\t\2\2\u027a"+ + "\u027b\f\33\2\2\u027b\u027c\7\6\2\2\u027c\u027d\5> \2\u027d\u027e\7\7"+ + "\2\2\u027e\u0282\3\2\2\2\u027f\u0280\f\30\2\2\u0280\u0282\t\2\2\2\u0281"+ + "\u0247\3\2\2\2\u0281\u024a\3\2\2\2\u0281\u024d\3\2\2\2\u0281\u0250\3\2"+ + "\2\2\u0281\u0253\3\2\2\2\u0281\u0256\3\2\2\2\u0281\u0259\3\2\2\2\u0281"+ + "\u025c\3\2\2\2\u0281\u025f\3\2\2\2\u0281\u0262\3\2\2\2\u0281\u0268\3\2"+ + "\2\2\u0281\u026b\3\2\2\2\u0281\u026e\3\2\2\2\u0281\u0271\3\2\2\2\u0281"+ + "\u0274\3\2\2\2\u0281\u027a\3\2\2\2\u0281\u027f\3\2\2\2\u0282\u0285\3\2"+ + "\2\2\u0283\u0281\3\2\2\2\u0283\u0284\3\2\2\2\u0284A\3\2\2\2\u0285\u0283"+ + "\3\2\2\2\u0286\u028b\5@!\2\u0287\u0288\7\f\2\2\u0288\u028a\5@!\2\u0289"+ + "\u0287\3\2\2\2\u028a\u028d\3\2\2\2\u028b\u0289\3\2\2\2\u028b\u028c\3\2"+ + "\2\2\u028cC\3\2\2\2\u028d\u028b\3\2\2\2\u028e\u0290\7T\2\2\u028f\u0291"+ + "\5F$\2\u0290\u028f\3\2\2\2\u0290\u0291\3\2\2\2\u0291\u0292\3\2\2\2\u0292"+ + "\u0293\7^\2\2\u0293E\3\2\2\2\u0294\u0295\7\b\2\2\u0295\u029a\5H%\2\u0296"+ + "\u0297\7\f\2\2\u0297\u0299\5H%\2\u0298\u0296\3\2\2\2\u0299\u029c\3\2\2"+ + "\2\u029a\u0298\3\2\2\2\u029a\u029b\3\2\2\2\u029b\u029d\3\2\2\2\u029c\u029a"+ + "\3\2\2\2\u029d\u029e\7\t\2\2\u029eG\3\2\2\2\u029f\u02a0\7U\2\2\u02a0\u02af"+ + "\7_\2\2\u02a1\u02a2\7V\2\2\u02a2\u02af\7j\2\2\u02a3\u02a4\7W\2\2\u02a4"+ + "\u02af\7_\2\2\u02a5\u02a6\7X\2\2\u02a6\u02af\5@!\2\u02a7\u02a8\7Y\2\2"+ + "\u02a8\u02af\5@!\2\u02a9\u02ac\7,\2\2\u02aa\u02ad\7>\2\2\u02ab\u02ad\5"+ + "@!\2\u02ac\u02aa\3\2\2\2\u02ac\u02ab\3\2\2\2\u02ad\u02af\3\2\2\2\u02ae"+ + "\u029f\3\2\2\2\u02ae\u02a1\3\2\2\2\u02ae\u02a3\3\2\2\2\u02ae\u02a5\3\2"+ + "\2\2\u02ae\u02a7\3\2\2\2\u02ae\u02a9\3\2\2\2\u02afI\3\2\2\2\u02b0\u02b2"+ + "\5L\'\2\u02b1\u02b0\3\2\2\2\u02b2\u02b5\3\2\2\2\u02b3\u02b1\3\2\2\2\u02b3"+ + "\u02b4\3\2\2\2\u02b4K\3\2\2\2\u02b5\u02b3\3\2\2\2\u02b6\u02ba\5N(\2\u02b7"+ + "\u02ba\5P)\2\u02b8\u02ba\5R*\2\u02b9\u02b6\3\2\2\2\u02b9\u02b7\3\2\2\2"+ + "\u02b9\u02b8\3\2\2\2\u02baM\3\2\2\2\u02bb\u02bc\7\u008e\2\2\u02bc\u02c0"+ + "\7q\2\2\u02bd\u02be\7\u008d\2\2\u02be\u02c0\7q\2\2\u02bf\u02bb\3\2\2\2"+ + "\u02bf\u02bd\3\2\2\2\u02c0O\3\2\2\2\u02c1\u02c3\7o\2\2\u02c2\u02c4\5T"+ + "+\2\u02c3\u02c2\3\2\2\2\u02c3\u02c4\3\2\2\2\u02c4Q\3\2\2\2\u02c5\u02c6"+ + "\7n\2\2\u02c6\u02cb\5V,\2\u02c7\u02c8\7r\2\2\u02c8\u02ca\5V,\2\u02c9\u02c7"+ + "\3\2\2\2\u02ca\u02cd\3\2\2\2\u02cb\u02c9\3\2\2\2\u02cb\u02cc\3\2\2\2\u02cc"+ + "S\3\2\2\2\u02cd\u02cb\3\2\2\2\u02ce\u02e6\5V,\2\u02cf\u02d0\7p\2\2\u02d0"+ + "\u02e6\5V,\2\u02d1\u02d2\5V,\2\u02d2\u02d3\7r\2\2\u02d3\u02d4\7\u008e"+ + "\2\2\u02d4\u02e6\3\2\2\2\u02d5\u02d6\7s\2\2\u02d6\u02d7\5V,\2\u02d7\u02d8"+ + "\7t\2\2\u02d8\u02d9\7r\2\2\u02d9\u02da\7\u008e\2\2\u02da\u02e6\3\2\2\2"+ + "\u02db\u02dc\7s\2\2\u02dc\u02dd\5V,\2\u02dd\u02de\7r\2\2\u02de\u02df\7"+ + "\u008e\2\2\u02df\u02e0\7t\2\2\u02e0\u02e6\3\2\2\2\u02e1\u02e2\7s\2\2\u02e2"+ + "\u02e3\5V,\2\u02e3\u02e4\7t\2\2\u02e4\u02e6\3\2\2\2\u02e5\u02ce\3\2\2"+ + "\2\u02e5\u02cf\3\2\2\2\u02e5\u02d1\3\2\2\2\u02e5\u02d5\3\2\2\2\u02e5\u02db"+ + "\3\2\2\2\u02e5\u02e1\3\2\2\2\u02e6U\3\2\2\2\u02e7\u02e8\b,\1\2\u02e8\u02e9"+ + "\7u\2\2\u02e9\u02ea\5V,\2\u02ea\u02eb\7v\2\2\u02eb\u02f6\3\2\2\2\u02ec"+ + "\u02ed\t\t\2\2\u02ed\u02f6\5V,\n\u02ee\u02f6\7\u008e\2\2\u02ef\u02f6\7"+ + "\u008c\2\2\u02f0\u02f1\7\u0080\2\2\u02f1\u02f2\7\u008e\2\2\u02f2\u02f6"+ + "\7\u0081\2\2\u02f3\u02f6\7\u0082\2\2\u02f4\u02f6\7\u008b\2\2\u02f5\u02e7"+ + "\3\2\2\2\u02f5\u02ec\3\2\2\2\u02f5\u02ee\3\2\2\2\u02f5\u02ef\3\2\2\2\u02f5"+ + "\u02f0\3\2\2\2\u02f5\u02f3\3\2\2\2\u02f5\u02f4\3\2\2\2\u02f6\u0305\3\2"+ + "\2\2\u02f7\u02f8\f\f\2\2\u02f8\u02f9\7w\2\2\u02f9\u0304\5V,\r\u02fa\u02fb"+ + "\f\13\2\2\u02fb\u02fc\t\n\2\2\u02fc\u0304\5V,\f\u02fd\u02fe\f\t\2\2\u02fe"+ + "\u02ff\t\13\2\2\u02ff\u0304\5V,\n\u0300\u0301\f\b\2\2\u0301\u0302\t\f"+ + "\2\2\u0302\u0304\5V,\t\u0303\u02f7\3\2\2\2\u0303\u02fa\3\2\2\2\u0303\u02fd"+ + "\3\2\2\2\u0303\u0300\3\2\2\2\u0304\u0307\3\2\2\2\u0305\u0303\3\2\2\2\u0305"+ + "\u0306\3\2\2\2\u0306W\3\2\2\2\u0307\u0305\3\2\2\2Gafz\u0084\u008b\u0099"+ + "\u009f\u00a4\u00aa\u00af\u00b8\u00bf\u00ca\u00fe\u010b\u0121\u012a\u012f"+ + "\u0134\u013b\u0148\u014d\u0159\u0167\u017a\u0183\u018a\u018f\u0194\u0196"+ + "\u019c\u01a3\u01a6\u01ae\u01b1\u01b4\u01be\u01c5\u01cc\u01d2\u01d4\u01dc"+ + "\u01e2\u01ee\u01fc\u0202\u020c\u0218\u0220\u0237\u0241\u0245\u0277\u0281"+ + "\u0283\u028b\u0290\u029a\u02ac\u02ae\u02b3\u02b9\u02bf\u02c3\u02cb\u02e5"+ + "\u02f5\u0303\u0305"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.tokens b/src/main/java/dk/camelot64/kickc/parser/KickCParser.tokens index 76992b263..4de687d67 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.tokens +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.tokens @@ -55,89 +55,92 @@ NOTREGISTER=54 ADDRESS=55 ADDRESS_ZEROPAGE=56 ADDRESS_MAINMEM=57 -INLINE=58 -VOLATILE=59 -INTERRUPT=60 -CALLING=61 -CALLINGCONVENTION=62 -IF=63 -ELSE=64 -WHILE=65 -DO=66 -FOR=67 -SWITCH=68 -RETURN=69 -BREAK=70 -CONTINUE=71 -ASM=72 -DEFAULT=73 -CASE=74 -STRUCT=75 -ENUM=76 -SIZEOF=77 -TYPEID=78 -KICKASM=79 -RESOURCE=80 -USES=81 -CLOBBERS=82 -BYTES=83 -CYCLES=84 -LOGIC_NOT=85 -SIGNEDNESS=86 -SIMPLETYPE=87 -BOOLEAN=88 -KICKASM_BODY=89 -STRING=90 -CHAR=91 -NUMBER=92 -NUMFLOAT=93 -BINFLOAT=94 -DECFLOAT=95 -HEXFLOAT=96 -NUMINT=97 -BININTEGER=98 -DECINTEGER=99 -HEXINTEGER=100 -NAME=101 -WS=102 -COMMENT_LINE=103 -COMMENT_BLOCK=104 -ASM_BYTE=105 -ASM_MNEMONIC=106 -ASM_IMM=107 -ASM_COLON=108 -ASM_COMMA=109 -ASM_PAR_BEGIN=110 -ASM_PAR_END=111 -ASM_BRACKET_BEGIN=112 -ASM_BRACKET_END=113 -ASM_DOT=114 -ASM_SHIFT_LEFT=115 -ASM_SHIFT_RIGHT=116 -ASM_PLUS=117 -ASM_MINUS=118 -ASM_LESS_THAN=119 -ASM_GREATER_THAN=120 -ASM_MULTIPLY=121 -ASM_DIVIDE=122 -ASM_CURLY_BEGIN=123 -ASM_CURLY_END=124 -ASM_NUMBER=125 -ASM_NUMFLOAT=126 -ASM_BINFLOAT=127 -ASM_DECFLOAT=128 -ASM_HEXFLOAT=129 -ASM_NUMINT=130 -ASM_BININTEGER=131 -ASM_DECINTEGER=132 -ASM_HEXINTEGER=133 -ASM_CHAR=134 -ASM_MULTI_REL=135 -ASM_MULTI_NAME=136 -ASM_NAME=137 -ASM_WS=138 -ASM_COMMENT_LINE=139 -ASM_COMMENT_BLOCK=140 +FORM_SSA=58 +FORM_NOTSSA=59 +INLINE=60 +VOLATILE=61 +NOTVOLATILE=62 +INTERRUPT=63 +CALLING=64 +CALLINGCONVENTION=65 +IF=66 +ELSE=67 +WHILE=68 +DO=69 +FOR=70 +SWITCH=71 +RETURN=72 +BREAK=73 +CONTINUE=74 +ASM=75 +DEFAULT=76 +CASE=77 +STRUCT=78 +ENUM=79 +SIZEOF=80 +TYPEID=81 +KICKASM=82 +RESOURCE=83 +USES=84 +CLOBBERS=85 +BYTES=86 +CYCLES=87 +LOGIC_NOT=88 +SIGNEDNESS=89 +SIMPLETYPE=90 +BOOLEAN=91 +KICKASM_BODY=92 +STRING=93 +CHAR=94 +NUMBER=95 +NUMFLOAT=96 +BINFLOAT=97 +DECFLOAT=98 +HEXFLOAT=99 +NUMINT=100 +BININTEGER=101 +DECINTEGER=102 +HEXINTEGER=103 +NAME=104 +WS=105 +COMMENT_LINE=106 +COMMENT_BLOCK=107 +ASM_BYTE=108 +ASM_MNEMONIC=109 +ASM_IMM=110 +ASM_COLON=111 +ASM_COMMA=112 +ASM_PAR_BEGIN=113 +ASM_PAR_END=114 +ASM_BRACKET_BEGIN=115 +ASM_BRACKET_END=116 +ASM_DOT=117 +ASM_SHIFT_LEFT=118 +ASM_SHIFT_RIGHT=119 +ASM_PLUS=120 +ASM_MINUS=121 +ASM_LESS_THAN=122 +ASM_GREATER_THAN=123 +ASM_MULTIPLY=124 +ASM_DIVIDE=125 +ASM_CURLY_BEGIN=126 +ASM_CURLY_END=127 +ASM_NUMBER=128 +ASM_NUMFLOAT=129 +ASM_BINFLOAT=130 +ASM_DECFLOAT=131 +ASM_HEXFLOAT=132 +ASM_NUMINT=133 +ASM_BININTEGER=134 +ASM_DECINTEGER=135 +ASM_HEXINTEGER=136 +ASM_CHAR=137 +ASM_MULTI_REL=138 +ASM_MULTI_NAME=139 +ASM_NAME=140 +ASM_WS=141 +ASM_COMMENT_LINE=142 +ASM_COMMENT_BLOCK=143 ';'=8 '..'=11 '?'=12 @@ -176,32 +179,35 @@ ASM_COMMENT_BLOCK=140 '__address'=55 '__zp'=56 '__mem'=57 -'inline'=58 -'volatile'=59 -'interrupt'=60 -'calling'=61 -'if'=63 -'else'=64 -'while'=65 -'do'=66 -'for'=67 -'switch'=68 -'return'=69 -'break'=70 -'continue'=71 -'asm'=72 -'default'=73 -'case'=74 -'struct'=75 -'enum'=76 -'sizeof'=77 -'typeid'=78 -'kickasm'=79 -'resource'=80 -'uses'=81 -'clobbers'=82 -'bytes'=83 -'cycles'=84 -'!'=85 -'.byte'=105 -'#'=107 +'__ssa'=58 +'__notssa'=59 +'inline'=60 +'volatile'=61 +'__notvolatile'=62 +'interrupt'=63 +'calling'=64 +'if'=66 +'else'=67 +'while'=68 +'do'=69 +'for'=70 +'switch'=71 +'return'=72 +'break'=73 +'continue'=74 +'asm'=75 +'default'=76 +'case'=77 +'struct'=78 +'enum'=79 +'sizeof'=80 +'typeid'=81 +'kickasm'=82 +'resource'=83 +'uses'=84 +'clobbers'=85 +'bytes'=86 +'cycles'=87 +'!'=88 +'.byte'=108 +'#'=110 diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java b/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java index 4efd58016..71839235a 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java @@ -1,4 +1,4 @@ -// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickCParser.g4 by ANTLR 4.7.2 +// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 by ANTLR 4.7 package dk.camelot64.kickc.parser; @@ -421,6 +421,30 @@ public class KickCParserBaseListener implements KickCParserListener { *

The default implementation does nothing.

*/ @Override public void exitDirectiveMemoryAreaAddress(KickCParser.DirectiveMemoryAreaAddressContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterDirectiveFormSsa(KickCParser.DirectiveFormSsaContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitDirectiveFormSsa(KickCParser.DirectiveFormSsaContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterDirectiveFormNotSsa(KickCParser.DirectiveFormNotSsaContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitDirectiveFormNotSsa(KickCParser.DirectiveFormNotSsaContext ctx) { } /** * {@inheritDoc} * @@ -445,6 +469,18 @@ public class KickCParserBaseListener implements KickCParserListener { *

The default implementation does nothing.

*/ @Override public void exitDirectiveVolatile(KickCParser.DirectiveVolatileContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterDirectiveNotVolatile(KickCParser.DirectiveNotVolatileContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitDirectiveNotVolatile(KickCParser.DirectiveNotVolatileContext ctx) { } /** * {@inheritDoc} * diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseVisitor.java b/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseVisitor.java index 78dad9c0a..37c9588d5 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseVisitor.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseVisitor.java @@ -1,4 +1,4 @@ -// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickCParser.g4 by ANTLR 4.7.2 +// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 by ANTLR 4.7 package dk.camelot64.kickc.parser; @@ -251,6 +251,20 @@ public class KickCParserBaseVisitor extends AbstractParseTreeVisitor imple * {@link #visitChildren} on {@code ctx}.

*/ @Override public T visitDirectiveMemoryAreaAddress(KickCParser.DirectiveMemoryAreaAddressContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

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

+ */ + @Override public T visitDirectiveFormSsa(KickCParser.DirectiveFormSsaContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

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

+ */ + @Override public T visitDirectiveFormNotSsa(KickCParser.DirectiveFormNotSsaContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * @@ -265,6 +279,13 @@ public class KickCParserBaseVisitor extends AbstractParseTreeVisitor imple * {@link #visitChildren} on {@code ctx}.

*/ @Override public T visitDirectiveVolatile(KickCParser.DirectiveVolatileContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

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

+ */ + @Override public T visitDirectiveNotVolatile(KickCParser.DirectiveNotVolatileContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParserListener.java b/src/main/java/dk/camelot64/kickc/parser/KickCParserListener.java index 599c24915..de96aecbc 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParserListener.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserListener.java @@ -1,4 +1,4 @@ -// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickCParser.g4 by ANTLR 4.7.2 +// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 by ANTLR 4.7 package dk.camelot64.kickc.parser; @@ -393,6 +393,30 @@ public interface KickCParserListener extends ParseTreeListener { * @param ctx the parse tree */ void exitDirectiveMemoryAreaAddress(KickCParser.DirectiveMemoryAreaAddressContext ctx); + /** + * Enter a parse tree produced by the {@code directiveFormSsa} + * labeled alternative in {@link KickCParser#directive}. + * @param ctx the parse tree + */ + void enterDirectiveFormSsa(KickCParser.DirectiveFormSsaContext ctx); + /** + * Exit a parse tree produced by the {@code directiveFormSsa} + * labeled alternative in {@link KickCParser#directive}. + * @param ctx the parse tree + */ + void exitDirectiveFormSsa(KickCParser.DirectiveFormSsaContext ctx); + /** + * Enter a parse tree produced by the {@code directiveFormNotSsa} + * labeled alternative in {@link KickCParser#directive}. + * @param ctx the parse tree + */ + void enterDirectiveFormNotSsa(KickCParser.DirectiveFormNotSsaContext ctx); + /** + * Exit a parse tree produced by the {@code directiveFormNotSsa} + * labeled alternative in {@link KickCParser#directive}. + * @param ctx the parse tree + */ + void exitDirectiveFormNotSsa(KickCParser.DirectiveFormNotSsaContext ctx); /** * Enter a parse tree produced by the {@code directiveInline} * labeled alternative in {@link KickCParser#directive}. @@ -417,6 +441,18 @@ public interface KickCParserListener extends ParseTreeListener { * @param ctx the parse tree */ void exitDirectiveVolatile(KickCParser.DirectiveVolatileContext ctx); + /** + * Enter a parse tree produced by the {@code directiveNotVolatile} + * labeled alternative in {@link KickCParser#directive}. + * @param ctx the parse tree + */ + void enterDirectiveNotVolatile(KickCParser.DirectiveNotVolatileContext ctx); + /** + * Exit a parse tree produced by the {@code directiveNotVolatile} + * labeled alternative in {@link KickCParser#directive}. + * @param ctx the parse tree + */ + void exitDirectiveNotVolatile(KickCParser.DirectiveNotVolatileContext ctx); /** * Enter a parse tree produced by the {@code directiveInterrupt} * labeled alternative in {@link KickCParser#directive}. diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java b/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java index cf510cd3b..d476ce717 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java @@ -1,4 +1,4 @@ -// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickCParser.g4 by ANTLR 4.7.2 +// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 by ANTLR 4.7 package dk.camelot64.kickc.parser; @@ -238,6 +238,20 @@ public interface KickCParserVisitor extends ParseTreeVisitor { * @return the visitor result */ T visitDirectiveMemoryAreaAddress(KickCParser.DirectiveMemoryAreaAddressContext ctx); + /** + * Visit a parse tree produced by the {@code directiveFormSsa} + * labeled alternative in {@link KickCParser#directive}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitDirectiveFormSsa(KickCParser.DirectiveFormSsaContext ctx); + /** + * Visit a parse tree produced by the {@code directiveFormNotSsa} + * labeled alternative in {@link KickCParser#directive}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitDirectiveFormNotSsa(KickCParser.DirectiveFormNotSsaContext ctx); /** * Visit a parse tree produced by the {@code directiveInline} * labeled alternative in {@link KickCParser#directive}. @@ -252,6 +266,13 @@ public interface KickCParserVisitor extends ParseTreeVisitor { * @return the visitor result */ T visitDirectiveVolatile(KickCParser.DirectiveVolatileContext ctx); + /** + * Visit a parse tree produced by the {@code directiveNotVolatile} + * labeled alternative in {@link KickCParser#directive}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitDirectiveNotVolatile(KickCParser.DirectiveNotVolatileContext ctx); /** * Visit a parse tree produced by the {@code directiveInterrupt} * labeled alternative in {@link KickCParser#directive}. diff --git a/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java b/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java index 869c90348..73d889ca3 100644 --- a/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java +++ b/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java @@ -811,9 +811,24 @@ public class Pass0GenerateStatementSequence extends KickCParserBaseVisitor