From 25a7f212a9c51042b48fb70776b56d609712fcaa Mon Sep 17 00:00:00 2001 From: Linard Arquint Date: Wed, 20 Mar 2024 16:34:51 +0100 Subject: [PATCH 01/16] disallows write to actual heap locations in ghost code --- .../property/Assignability.scala | 6 +++- .../ghost_pointer/ghost-write-fail01.gobra | 32 +++++++++++++++++++ 2 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 src/test/resources/regressions/features/ghost_pointer/ghost-write-fail01.gobra diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/property/Assignability.scala b/src/main/scala/viper/gobra/frontend/info/implementation/property/Assignability.scala index 1175fe801..f414d92fe 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/property/Assignability.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/property/Assignability.scala @@ -105,8 +105,12 @@ trait Assignability extends BaseProperty { this: TypeInfoImpl => case _ => errorProp() } - lazy val assignable: Property[PExpression] = createBinaryProperty("assignable") { + lazy val assignable: Property[PExpression] = createFlatProperty[PExpression]{ + case e if isEnclosingGhost(e) => s"got $e that is not assignable in ghost code" + case e => s"got $e that is not assignable" + } { case e if !isMutable(e) => false + case e: PDeref if isEnclosingGhost(e) => false // TODO allow derefs of ghost pointers case PIndexedExp(b, _) => underlyingType(exprType(b)) match { case _: ArrayT => assignable(b) case _: SliceT | _: GhostSliceT => assignable(b) diff --git a/src/test/resources/regressions/features/ghost_pointer/ghost-write-fail01.gobra b/src/test/resources/regressions/features/ghost_pointer/ghost-write-fail01.gobra new file mode 100644 index 000000000..590dd9623 --- /dev/null +++ b/src/test/resources/regressions/features/ghost_pointer/ghost-write-fail01.gobra @@ -0,0 +1,32 @@ +package GhostWriteFail01 + +// x is a pointer to a location on the actual heap +// thus, writing in ghost code is forbidden as effects +// are observable (via aliasing). + +ghost +decreases +requires acc(x) +func ghostWriteFunc(x *int) { + //:: ExpectedOutput(type_error) + *x = 42 +} + +decreases +requires acc(x) +func actualWriteFunc(x *int) { + *x = 42 +} + +ghost +decreases +requires acc(x) +func ghostReadFunc(x *int) int { + return *x +} + +decreases +requires acc(x) +func actualReadFunc(x *int) int { + return *x +} From f9f5c4317635908dbd04826f69acd1fb3e1a3728 Mon Sep 17 00:00:00 2001 From: Linard Arquint Date: Wed, 20 Mar 2024 18:16:58 +0100 Subject: [PATCH 02/16] adds ghost pointers --- src/main/antlr4/GobraLexer.g4 | 1 + src/main/antlr4/GobraParser.g4 | 4 +- .../java/viper/gobra/frontend/GobraLexer.java | 2265 ++++---- .../viper/gobra/frontend/GobraParser.java | 5071 +++++++++-------- .../frontend/GobraParserBaseVisitor.java | 9 +- .../gobra/frontend/GobraParserVisitor.java | 8 +- .../scala/viper/gobra/ast/frontend/Ast.scala | 3 + .../gobra/ast/frontend/PrettyPrinter.scala | 1 + .../scala/viper/gobra/frontend/Desugar.scala | 6 +- .../gobra/frontend/ParseTreeTranslator.scala | 11 + .../viper/gobra/frontend/info/base/Type.scala | 8 +- .../property/Assignability.scala | 9 +- .../property/Convertibility.scala | 6 +- .../property/TypeIdentity.scala | 3 +- .../implementation/property/TypeMerging.scala | 5 +- .../property/UnderlyingType.scala | 6 +- .../resolution/MemberResolution.scala | 18 +- .../implementation/typing/ExprTyping.scala | 16 +- .../implementation/typing/MiscTyping.scala | 8 +- .../implementation/typing/TypeTyping.scala | 5 +- .../typing/ghost/GhostTypeTyping.scala | 2 + .../ghost/separation/GhostWellDef.scala | 7 +- .../ghost_pointer/ghost-fields-fail01.gobra | 9 + .../ghost_pointer/ghost-read-fail01.gobra | 12 + .../ghost-reference-simple01.gobra | 22 + .../ghost_pointer/ghost-write-simple01.gobra | 33 + .../pointer-creation-fail01.gobra | 30 + .../pointer-creation-simple01.gobra | 21 + 28 files changed, 3927 insertions(+), 3672 deletions(-) create mode 100644 src/test/resources/regressions/features/ghost_pointer/ghost-fields-fail01.gobra create mode 100644 src/test/resources/regressions/features/ghost_pointer/ghost-read-fail01.gobra create mode 100644 src/test/resources/regressions/features/ghost_pointer/ghost-reference-simple01.gobra create mode 100644 src/test/resources/regressions/features/ghost_pointer/ghost-write-simple01.gobra create mode 100644 src/test/resources/regressions/features/ghost_pointer/pointer-creation-fail01.gobra create mode 100644 src/test/resources/regressions/features/ghost_pointer/pointer-creation-simple01.gobra diff --git a/src/main/antlr4/GobraLexer.g4 b/src/main/antlr4/GobraLexer.g4 index 88e2f54db..548d70575 100644 --- a/src/main/antlr4/GobraLexer.g4 +++ b/src/main/antlr4/GobraLexer.g4 @@ -59,6 +59,7 @@ SET : 'set'-> mode(NLSEMI); MSET : 'mset'-> mode(NLSEMI); DICT : 'dict'-> mode(NLSEMI); OPT : 'option'-> mode(NLSEMI); +GPOINTER : 'gpointer'-> mode(NLSEMI); LEN : 'len'-> mode(NLSEMI); NEW : 'new'-> mode(NLSEMI); MAKE : 'make'-> mode(NLSEMI); diff --git a/src/main/antlr4/GobraParser.g4 b/src/main/antlr4/GobraParser.g4 index 24254bd9e..a6d975072 100644 --- a/src/main/antlr4/GobraParser.g4 +++ b/src/main/antlr4/GobraParser.g4 @@ -142,7 +142,7 @@ seqUpdClause: expression ASSIGN expression; // Ghost Type Literals -ghostTypeLit: sqType | ghostSliceType | domainType | adtType; +ghostTypeLit: sqType | ghostSliceType | ghostPointerType | domainType | adtType; domainType: DOM L_CURLY (domainClause eos)* R_CURLY; @@ -156,6 +156,8 @@ adtFieldDecl: identifierList? type_; ghostSliceType: GHOST L_BRACKET R_BRACKET elementType; +ghostPointerType: GPOINTER L_BRACKET elementType R_BRACKET; + sqType: (kind=(SEQ | SET | MSET | OPT) L_BRACKET type_ R_BRACKET) | kind=DICT L_BRACKET type_ R_BRACKET type_; diff --git a/src/main/java/viper/gobra/frontend/GobraLexer.java b/src/main/java/viper/gobra/frontend/GobraLexer.java index 66fcb0e3d..a3dea4892 100644 --- a/src/main/java/viper/gobra/frontend/GobraLexer.java +++ b/src/main/java/viper/gobra/frontend/GobraLexer.java @@ -1,4 +1,4 @@ -// Generated from src/main/antlr4/GobraLexer.g4 by ANTLR 4.13.1 +// Generated from src/main/antlr4/GobraLexer.g4 by ANTLR 4.12.0 package viper.gobra.frontend; import org.antlr.v4.runtime.Lexer; import org.antlr.v4.runtime.CharStream; @@ -9,9 +9,9 @@ import org.antlr.v4.runtime.dfa.DFA; import org.antlr.v4.runtime.misc.*; -@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast", "CheckReturnValue", "this-escape"}) +@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast", "CheckReturnValue"}) public class GobraLexer extends Lexer { - static { RuntimeMetaData.checkVersion("4.13.1", RuntimeMetaData.VERSION); } + static { RuntimeMetaData.checkVersion("4.12.0", RuntimeMetaData.VERSION); } protected static final DFA[] _decisionToDFA; protected static final PredictionContextCache _sharedContextCache = @@ -23,26 +23,26 @@ public class GobraLexer extends Lexer { FOLD=23, UNFOLD=24, UNFOLDING=25, LET=26, GHOST=27, IN=28, MULTI=29, SUBSET=30, UNION=31, INTERSECTION=32, SETMINUS=33, IMPLIES=34, WAND=35, APPLY=36, QMARK=37, L_PRED=38, R_PRED=39, SEQ=40, SET=41, MSET=42, DICT=43, OPT=44, - LEN=45, NEW=46, MAKE=47, CAP=48, SOME=49, GET=50, DOM=51, AXIOM=52, ADT=53, - MATCH=54, NONE=55, PRED=56, TYPE_OF=57, IS_COMPARABLE=58, SHARE=59, ADDR_MOD=60, - DOT_DOT=61, SHARED=62, EXCLUSIVE=63, PREDICATE=64, WRITEPERM=65, NOPERM=66, - TRUSTED=67, OUTLINE=68, INIT_POST=69, IMPORT_PRE=70, PROOF=71, GHOST_EQUALS=72, - GHOST_NOT_EQUALS=73, WITH=74, OPAQUE=75, REVEAL=76, BREAK=77, DEFAULT=78, - FUNC=79, INTERFACE=80, SELECT=81, CASE=82, DEFER=83, GO=84, MAP=85, STRUCT=86, - CHAN=87, ELSE=88, GOTO=89, PACKAGE=90, SWITCH=91, CONST=92, FALLTHROUGH=93, - IF=94, RANGE=95, TYPE=96, CONTINUE=97, FOR=98, IMPORT=99, RETURN=100, - VAR=101, NIL_LIT=102, IDENTIFIER=103, L_PAREN=104, R_PAREN=105, L_CURLY=106, - R_CURLY=107, L_BRACKET=108, R_BRACKET=109, ASSIGN=110, COMMA=111, SEMI=112, - COLON=113, DOT=114, PLUS_PLUS=115, MINUS_MINUS=116, DECLARE_ASSIGN=117, - ELLIPSIS=118, LOGICAL_OR=119, LOGICAL_AND=120, EQUALS=121, NOT_EQUALS=122, - LESS=123, LESS_OR_EQUALS=124, GREATER=125, GREATER_OR_EQUALS=126, OR=127, - DIV=128, MOD=129, LSHIFT=130, RSHIFT=131, BIT_CLEAR=132, EXCLAMATION=133, - PLUS=134, MINUS=135, CARET=136, STAR=137, AMPERSAND=138, RECEIVE=139, - DECIMAL_LIT=140, BINARY_LIT=141, OCTAL_LIT=142, HEX_LIT=143, HEX_FLOAT_LIT=144, - IMAGINARY_LIT=145, RUNE_LIT=146, BYTE_VALUE=147, OCTAL_BYTE_VALUE=148, - HEX_BYTE_VALUE=149, LITTLE_U_VALUE=150, BIG_U_VALUE=151, RAW_STRING_LIT=152, - INTERPRETED_STRING_LIT=153, WS=154, COMMENT=155, TERMINATOR=156, LINE_COMMENT=157, - WS_NLSEMI=158, COMMENT_NLSEMI=159, LINE_COMMENT_NLSEMI=160, EOS=161, OTHER=162; + GPOINTER=45, LEN=46, NEW=47, MAKE=48, CAP=49, SOME=50, GET=51, DOM=52, + AXIOM=53, ADT=54, MATCH=55, NONE=56, PRED=57, TYPE_OF=58, IS_COMPARABLE=59, + SHARE=60, ADDR_MOD=61, DOT_DOT=62, SHARED=63, EXCLUSIVE=64, PREDICATE=65, + WRITEPERM=66, NOPERM=67, TRUSTED=68, OUTLINE=69, INIT_POST=70, IMPORT_PRE=71, + PROOF=72, GHOST_EQUALS=73, GHOST_NOT_EQUALS=74, WITH=75, OPAQUE=76, REVEAL=77, + BREAK=78, DEFAULT=79, FUNC=80, INTERFACE=81, SELECT=82, CASE=83, DEFER=84, + GO=85, MAP=86, STRUCT=87, CHAN=88, ELSE=89, GOTO=90, PACKAGE=91, SWITCH=92, + CONST=93, FALLTHROUGH=94, IF=95, RANGE=96, TYPE=97, CONTINUE=98, FOR=99, + IMPORT=100, RETURN=101, VAR=102, NIL_LIT=103, IDENTIFIER=104, L_PAREN=105, + R_PAREN=106, L_CURLY=107, R_CURLY=108, L_BRACKET=109, R_BRACKET=110, ASSIGN=111, + COMMA=112, SEMI=113, COLON=114, DOT=115, PLUS_PLUS=116, MINUS_MINUS=117, + DECLARE_ASSIGN=118, ELLIPSIS=119, LOGICAL_OR=120, LOGICAL_AND=121, EQUALS=122, + NOT_EQUALS=123, LESS=124, LESS_OR_EQUALS=125, GREATER=126, GREATER_OR_EQUALS=127, + OR=128, DIV=129, MOD=130, LSHIFT=131, RSHIFT=132, BIT_CLEAR=133, EXCLAMATION=134, + PLUS=135, MINUS=136, CARET=137, STAR=138, AMPERSAND=139, RECEIVE=140, + DECIMAL_LIT=141, BINARY_LIT=142, OCTAL_LIT=143, HEX_LIT=144, HEX_FLOAT_LIT=145, + IMAGINARY_LIT=146, RUNE_LIT=147, BYTE_VALUE=148, OCTAL_BYTE_VALUE=149, + HEX_BYTE_VALUE=150, LITTLE_U_VALUE=151, BIG_U_VALUE=152, RAW_STRING_LIT=153, + INTERPRETED_STRING_LIT=154, WS=155, COMMENT=156, TERMINATOR=157, LINE_COMMENT=158, + WS_NLSEMI=159, COMMENT_NLSEMI=160, LINE_COMMENT_NLSEMI=161, EOS=162, OTHER=163; public static final int NLSEMI=1; public static String[] channelNames = { @@ -60,9 +60,9 @@ private static String[] makeRuleNames() { "IMPL", "AS", "OLD", "BEFORE", "LHS", "FORALL", "EXISTS", "ACCESS", "FOLD", "UNFOLD", "UNFOLDING", "LET", "GHOST", "IN", "MULTI", "SUBSET", "UNION", "INTERSECTION", "SETMINUS", "IMPLIES", "WAND", "APPLY", "QMARK", "L_PRED", - "R_PRED", "SEQ", "SET", "MSET", "DICT", "OPT", "LEN", "NEW", "MAKE", - "CAP", "SOME", "GET", "DOM", "AXIOM", "ADT", "MATCH", "NONE", "PRED", - "TYPE_OF", "IS_COMPARABLE", "SHARE", "ADDR_MOD", "DOT_DOT", "SHARED", + "R_PRED", "SEQ", "SET", "MSET", "DICT", "OPT", "GPOINTER", "LEN", "NEW", + "MAKE", "CAP", "SOME", "GET", "DOM", "AXIOM", "ADT", "MATCH", "NONE", + "PRED", "TYPE_OF", "IS_COMPARABLE", "SHARE", "ADDR_MOD", "DOT_DOT", "SHARED", "EXCLUSIVE", "PREDICATE", "WRITEPERM", "NOPERM", "TRUSTED", "OUTLINE", "INIT_POST", "IMPORT_PRE", "PROOF", "GHOST_EQUALS", "GHOST_NOT_EQUALS", "WITH", "OPAQUE", "REVEAL", "BREAK", "DEFAULT", "FUNC", "INTERFACE", @@ -94,20 +94,20 @@ private static String[] makeLiteralNames() { "'#lhs'", "'forall'", "'exists'", "'acc'", "'fold'", "'unfold'", "'unfolding'", "'let'", "'ghost'", "'in'", "'#'", "'subset'", "'union'", "'intersection'", "'setminus'", "'==>'", "'--*'", "'apply'", "'?'", "'!<'", "'!>'", "'seq'", - "'set'", "'mset'", "'dict'", "'option'", "'len'", "'new'", "'make'", - "'cap'", "'some'", "'get'", "'domain'", "'axiom'", "'adt'", "'match'", - "'none'", "'pred'", "'typeOf'", "'isComparable'", "'share'", "'@'", "'..'", - "'shared'", "'exclusive'", "'predicate'", "'writePerm'", "'noPerm'", - "'trusted'", "'outline'", "'initEnsures'", "'importRequires'", "'proof'", - "'==='", "'!=='", "'with'", "'opaque'", "'reveal'", "'break'", "'default'", - "'func'", "'interface'", "'select'", "'case'", "'defer'", "'go'", "'map'", - "'struct'", "'chan'", "'else'", "'goto'", "'package'", "'switch'", "'const'", - "'fallthrough'", "'if'", "'range'", "'type'", "'continue'", "'for'", - "'import'", "'return'", "'var'", "'nil'", null, "'('", "')'", "'{'", - "'}'", "'['", "']'", "'='", "','", "';'", "':'", "'.'", "'++'", "'--'", - "':='", "'...'", "'||'", "'&&'", "'=='", "'!='", "'<'", "'<='", "'>'", - "'>='", "'|'", "'/'", "'%'", "'<<'", "'>>'", "'&^'", "'!'", "'+'", "'-'", - "'^'", "'*'", "'&'", "'<-'" + "'set'", "'mset'", "'dict'", "'option'", "'gpointer'", "'len'", "'new'", + "'make'", "'cap'", "'some'", "'get'", "'domain'", "'axiom'", "'adt'", + "'match'", "'none'", "'pred'", "'typeOf'", "'isComparable'", "'share'", + "'@'", "'..'", "'shared'", "'exclusive'", "'predicate'", "'writePerm'", + "'noPerm'", "'trusted'", "'outline'", "'initEnsures'", "'importRequires'", + "'proof'", "'==='", "'!=='", "'with'", "'opaque'", "'reveal'", "'break'", + "'default'", "'func'", "'interface'", "'select'", "'case'", "'defer'", + "'go'", "'map'", "'struct'", "'chan'", "'else'", "'goto'", "'package'", + "'switch'", "'const'", "'fallthrough'", "'if'", "'range'", "'type'", + "'continue'", "'for'", "'import'", "'return'", "'var'", "'nil'", null, + "'('", "')'", "'{'", "'}'", "'['", "']'", "'='", "','", "';'", "':'", + "'.'", "'++'", "'--'", "':='", "'...'", "'||'", "'&&'", "'=='", "'!='", + "'<'", "'<='", "'>'", "'>='", "'|'", "'/'", "'%'", "'<<'", "'>>'", "'&^'", + "'!'", "'+'", "'-'", "'^'", "'*'", "'&'", "'<-'" }; } private static final String[] _LITERAL_NAMES = makeLiteralNames(); @@ -118,9 +118,9 @@ private static String[] makeSymbolicNames() { "IMPL", "AS", "OLD", "BEFORE", "LHS", "FORALL", "EXISTS", "ACCESS", "FOLD", "UNFOLD", "UNFOLDING", "LET", "GHOST", "IN", "MULTI", "SUBSET", "UNION", "INTERSECTION", "SETMINUS", "IMPLIES", "WAND", "APPLY", "QMARK", "L_PRED", - "R_PRED", "SEQ", "SET", "MSET", "DICT", "OPT", "LEN", "NEW", "MAKE", - "CAP", "SOME", "GET", "DOM", "AXIOM", "ADT", "MATCH", "NONE", "PRED", - "TYPE_OF", "IS_COMPARABLE", "SHARE", "ADDR_MOD", "DOT_DOT", "SHARED", + "R_PRED", "SEQ", "SET", "MSET", "DICT", "OPT", "GPOINTER", "LEN", "NEW", + "MAKE", "CAP", "SOME", "GET", "DOM", "AXIOM", "ADT", "MATCH", "NONE", + "PRED", "TYPE_OF", "IS_COMPARABLE", "SHARE", "ADDR_MOD", "DOT_DOT", "SHARED", "EXCLUSIVE", "PREDICATE", "WRITEPERM", "NOPERM", "TRUSTED", "OUTLINE", "INIT_POST", "IMPORT_PRE", "PROOF", "GHOST_EQUALS", "GHOST_NOT_EQUALS", "WITH", "OPAQUE", "REVEAL", "BREAK", "DEFAULT", "FUNC", "INTERFACE", @@ -217,7 +217,7 @@ private boolean DECIMAL_FLOAT_LIT_sempred(RuleContext _localctx, int predIndex) } public static final String _serializedATN = - "\u0004\u0000\u00a2\u05ef\u0006\uffff\uffff\u0006\uffff\uffff\u0002\u0000"+ + "\u0004\u0000\u00a3\u05fc\u0006\uffff\uffff\u0006\uffff\uffff\u0002\u0000"+ "\u0007\u0000\u0002\u0001\u0007\u0001\u0002\u0002\u0007\u0002\u0002\u0003"+ "\u0007\u0003\u0002\u0004\u0007\u0004\u0002\u0005\u0007\u0005\u0002\u0006"+ "\u0007\u0006\u0002\u0007\u0007\u0007\u0002\b\u0007\b\u0002\t\u0007\t\u0002"+ @@ -262,1096 +262,1099 @@ private boolean DECIMAL_FLOAT_LIT_sempred(RuleContext _localctx, int predIndex) "\u00a3\u0007\u00a3\u0002\u00a4\u0007\u00a4\u0002\u00a5\u0007\u00a5\u0002"+ "\u00a6\u0007\u00a6\u0002\u00a7\u0007\u00a7\u0002\u00a8\u0007\u00a8\u0002"+ "\u00a9\u0007\u00a9\u0002\u00aa\u0007\u00aa\u0002\u00ab\u0007\u00ab\u0002"+ - "\u00ac\u0007\u00ac\u0002\u00ad\u0007\u00ad\u0002\u00ae\u0007\u00ae\u0001"+ - "\u0000\u0001\u0000\u0003\u0000\u0163\b\u0000\u0001\u0000\u0001\u0000\u0001"+ - "\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0003\u0001\u016b\b\u0001\u0001"+ - "\u0001\u0003\u0001\u016e\b\u0001\u0001\u0001\u0003\u0001\u0171\b\u0001"+ - "\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0003\u0001\u0177\b\u0001"+ - "\u0003\u0001\u0179\b\u0001\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002"+ - "\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0003\u0001\u0003\u0001\u0003"+ - "\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0004"+ - "\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004"+ - "\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+ - "\u0001\u0005\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006"+ - "\u0001\u0006\u0001\u0006\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007"+ - "\u0001\u0007\u0001\u0007\u0001\u0007\u0001\b\u0001\b\u0001\b\u0001\b\u0001"+ - "\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\t\u0001\t\u0001\t\u0001\t\u0001"+ - "\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\n\u0001\n\u0001\n\u0001"+ - "\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\u000b\u0001\u000b\u0001\u000b"+ - "\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b"+ - "\u0001\u000b\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001"+ - "\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\r\u0001\r\u0001\r\u0001\r\u0001"+ - "\r\u0001\r\u0001\r\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001"+ - "\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001"+ - "\u000e\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u0010\u0001\u0010\u0001"+ - "\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0011\u0001\u0011\u0001"+ - "\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001"+ - "\u0011\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001"+ - "\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001"+ - "\u0013\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001"+ - "\u0014\u0001\u0014\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001"+ - "\u0015\u0001\u0015\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001"+ - "\u0016\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001"+ - "\u0017\u0001\u0017\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001"+ - "\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001"+ - "\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u001a\u0001\u001a\u0001"+ - "\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001b\u0001\u001b\u0001"+ - "\u001b\u0001\u001c\u0001\u001c\u0001\u001d\u0001\u001d\u0001\u001d\u0001"+ - "\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001e\u0001\u001e\u0001"+ - "\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001f\u0001\u001f\u0001"+ - "\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001"+ - "\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001 \u0001 \u0001"+ - " \u0001 \u0001 \u0001 \u0001 \u0001 \u0001 \u0001!\u0001!\u0001!\u0001"+ - "!\u0001\"\u0001\"\u0001\"\u0001\"\u0001#\u0001#\u0001#\u0001#\u0001#\u0001"+ - "#\u0001$\u0001$\u0001%\u0001%\u0001%\u0001&\u0001&\u0001&\u0001&\u0001"+ - "&\u0001\'\u0001\'\u0001\'\u0001\'\u0001\'\u0001\'\u0001(\u0001(\u0001"+ - "(\u0001(\u0001(\u0001(\u0001)\u0001)\u0001)\u0001)\u0001)\u0001)\u0001"+ - ")\u0001*\u0001*\u0001*\u0001*\u0001*\u0001*\u0001*\u0001+\u0001+\u0001"+ - "+\u0001+\u0001+\u0001+\u0001+\u0001+\u0001+\u0001,\u0001,\u0001,\u0001"+ - ",\u0001,\u0001,\u0001-\u0001-\u0001-\u0001-\u0001-\u0001-\u0001.\u0001"+ - ".\u0001.\u0001.\u0001.\u0001.\u0001.\u0001/\u0001/\u0001/\u0001/\u0001"+ - "/\u0001/\u00010\u00010\u00010\u00010\u00010\u00010\u00010\u00011\u0001"+ - "1\u00011\u00011\u00011\u00011\u00012\u00012\u00012\u00012\u00012\u0001"+ - "2\u00012\u00012\u00012\u00013\u00013\u00013\u00013\u00013\u00013\u0001"+ - "3\u00013\u00014\u00014\u00014\u00014\u00014\u00014\u00015\u00015\u0001"+ - "5\u00015\u00015\u00015\u00015\u00015\u00016\u00016\u00016\u00016\u0001"+ - "6\u00016\u00016\u00017\u00017\u00017\u00017\u00017\u00018\u00018\u0001"+ - "8\u00018\u00018\u00018\u00018\u00018\u00018\u00019\u00019\u00019\u0001"+ - "9\u00019\u00019\u00019\u00019\u00019\u00019\u00019\u00019\u00019\u0001"+ - "9\u00019\u0001:\u0001:\u0001:\u0001:\u0001:\u0001:\u0001;\u0001;\u0001"+ - ";\u0001;\u0001<\u0001<\u0001<\u0001=\u0001=\u0001=\u0001=\u0001=\u0001"+ - "=\u0001=\u0001>\u0001>\u0001>\u0001>\u0001>\u0001>\u0001>\u0001>\u0001"+ - ">\u0001>\u0001?\u0001?\u0001?\u0001?\u0001?\u0001?\u0001?\u0001?\u0001"+ - "?\u0001?\u0001@\u0001@\u0001@\u0001@\u0001@\u0001@\u0001@\u0001@\u0001"+ - "@\u0001@\u0001@\u0001@\u0001A\u0001A\u0001A\u0001A\u0001A\u0001A\u0001"+ - "A\u0001A\u0001A\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001"+ - "B\u0001B\u0001B\u0001C\u0001C\u0001C\u0001C\u0001C\u0001C\u0001C\u0001"+ - "C\u0001D\u0001D\u0001D\u0001D\u0001D\u0001D\u0001D\u0001D\u0001D\u0001"+ - "D\u0001D\u0001D\u0001E\u0001E\u0001E\u0001E\u0001E\u0001E\u0001E\u0001"+ + "\u00ac\u0007\u00ac\u0002\u00ad\u0007\u00ad\u0002\u00ae\u0007\u00ae\u0002"+ + "\u00af\u0007\u00af\u0001\u0000\u0001\u0000\u0003\u0000\u0165\b\u0000\u0001"+ + "\u0000\u0001\u0000\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0003"+ + "\u0001\u016d\b\u0001\u0001\u0001\u0003\u0001\u0170\b\u0001\u0001\u0001"+ + "\u0003\u0001\u0173\b\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001"+ + "\u0003\u0001\u0179\b\u0001\u0003\u0001\u017b\b\u0001\u0001\u0002\u0001"+ + "\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001"+ + "\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001"+ + "\u0003\u0001\u0003\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001"+ + "\u0004\u0001\u0004\u0001\u0004\u0001\u0005\u0001\u0005\u0001\u0005\u0001"+ + "\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0006\u0001\u0006\u0001"+ + "\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0007\u0001"+ + "\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001"+ + "\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001"+ + "\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001"+ + "\t\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001"+ + "\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001"+ + "\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\f\u0001\f\u0001\f\u0001"+ + "\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001"+ + "\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\u000e\u0001\u000e"+ + "\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e"+ + "\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000f\u0001\u000f\u0001\u000f"+ + "\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010"+ + "\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011"+ + "\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0012\u0001\u0012\u0001\u0012"+ + "\u0001\u0012\u0001\u0012\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013"+ + "\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0014\u0001\u0014\u0001\u0014"+ + "\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0015\u0001\u0015"+ + "\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0016\u0001\u0016"+ + "\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0017\u0001\u0017\u0001\u0017"+ + "\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0018\u0001\u0018"+ + "\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018"+ + "\u0001\u0018\u0001\u0018\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019"+ + "\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a"+ + "\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001c\u0001\u001c\u0001\u001d"+ + "\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d"+ + "\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e"+ + "\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f"+ + "\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f"+ + "\u0001\u001f\u0001 \u0001 \u0001 \u0001 \u0001 \u0001 \u0001 \u0001 \u0001"+ + " \u0001!\u0001!\u0001!\u0001!\u0001\"\u0001\"\u0001\"\u0001\"\u0001#\u0001"+ + "#\u0001#\u0001#\u0001#\u0001#\u0001$\u0001$\u0001%\u0001%\u0001%\u0001"+ + "&\u0001&\u0001&\u0001&\u0001&\u0001\'\u0001\'\u0001\'\u0001\'\u0001\'"+ + "\u0001\'\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001)\u0001)\u0001"+ + ")\u0001)\u0001)\u0001)\u0001)\u0001*\u0001*\u0001*\u0001*\u0001*\u0001"+ + "*\u0001*\u0001+\u0001+\u0001+\u0001+\u0001+\u0001+\u0001+\u0001+\u0001"+ + "+\u0001,\u0001,\u0001,\u0001,\u0001,\u0001,\u0001,\u0001,\u0001,\u0001"+ + ",\u0001,\u0001-\u0001-\u0001-\u0001-\u0001-\u0001-\u0001.\u0001.\u0001"+ + ".\u0001.\u0001.\u0001.\u0001/\u0001/\u0001/\u0001/\u0001/\u0001/\u0001"+ + "/\u00010\u00010\u00010\u00010\u00010\u00010\u00011\u00011\u00011\u0001"+ + "1\u00011\u00011\u00011\u00012\u00012\u00012\u00012\u00012\u00012\u0001"+ + "3\u00013\u00013\u00013\u00013\u00013\u00013\u00013\u00013\u00014\u0001"+ + "4\u00014\u00014\u00014\u00014\u00014\u00014\u00015\u00015\u00015\u0001"+ + "5\u00015\u00015\u00016\u00016\u00016\u00016\u00016\u00016\u00016\u0001"+ + "6\u00017\u00017\u00017\u00017\u00017\u00017\u00017\u00018\u00018\u0001"+ + "8\u00018\u00018\u00019\u00019\u00019\u00019\u00019\u00019\u00019\u0001"+ + "9\u00019\u0001:\u0001:\u0001:\u0001:\u0001:\u0001:\u0001:\u0001:\u0001"+ + ":\u0001:\u0001:\u0001:\u0001:\u0001:\u0001:\u0001;\u0001;\u0001;\u0001"+ + ";\u0001;\u0001;\u0001<\u0001<\u0001<\u0001<\u0001=\u0001=\u0001=\u0001"+ + ">\u0001>\u0001>\u0001>\u0001>\u0001>\u0001>\u0001?\u0001?\u0001?\u0001"+ + "?\u0001?\u0001?\u0001?\u0001?\u0001?\u0001?\u0001@\u0001@\u0001@\u0001"+ + "@\u0001@\u0001@\u0001@\u0001@\u0001@\u0001@\u0001A\u0001A\u0001A\u0001"+ + "A\u0001A\u0001A\u0001A\u0001A\u0001A\u0001A\u0001A\u0001A\u0001B\u0001"+ + "B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001C\u0001C\u0001"+ + "C\u0001C\u0001C\u0001C\u0001C\u0001C\u0001C\u0001C\u0001D\u0001D\u0001"+ + "D\u0001D\u0001D\u0001D\u0001D\u0001D\u0001E\u0001E\u0001E\u0001E\u0001"+ "E\u0001E\u0001E\u0001E\u0001E\u0001E\u0001E\u0001E\u0001F\u0001F\u0001"+ - "F\u0001F\u0001F\u0001F\u0001G\u0001G\u0001G\u0001G\u0001H\u0001H\u0001"+ - "H\u0001H\u0001I\u0001I\u0001I\u0001I\u0001I\u0001J\u0001J\u0001J\u0001"+ - "J\u0001J\u0001J\u0001J\u0001J\u0001J\u0001K\u0001K\u0001K\u0001K\u0001"+ - "K\u0001K\u0001K\u0001L\u0001L\u0001L\u0001L\u0001L\u0001L\u0001L\u0001"+ - "L\u0001M\u0001M\u0001M\u0001M\u0001M\u0001M\u0001M\u0001M\u0001N\u0001"+ - "N\u0001N\u0001N\u0001N\u0001O\u0001O\u0001O\u0001O\u0001O\u0001O\u0001"+ - "O\u0001O\u0001O\u0001O\u0001P\u0001P\u0001P\u0001P\u0001P\u0001P\u0001"+ - "P\u0001Q\u0001Q\u0001Q\u0001Q\u0001Q\u0001R\u0001R\u0001R\u0001R\u0001"+ - "R\u0001R\u0001S\u0001S\u0001S\u0001T\u0001T\u0001T\u0001T\u0001U\u0001"+ - "U\u0001U\u0001U\u0001U\u0001U\u0001U\u0001V\u0001V\u0001V\u0001V\u0001"+ + "F\u0001F\u0001F\u0001F\u0001F\u0001F\u0001F\u0001F\u0001F\u0001F\u0001"+ + "F\u0001F\u0001F\u0001G\u0001G\u0001G\u0001G\u0001G\u0001G\u0001H\u0001"+ + "H\u0001H\u0001H\u0001I\u0001I\u0001I\u0001I\u0001J\u0001J\u0001J\u0001"+ + "J\u0001J\u0001K\u0001K\u0001K\u0001K\u0001K\u0001K\u0001K\u0001K\u0001"+ + "K\u0001L\u0001L\u0001L\u0001L\u0001L\u0001L\u0001L\u0001M\u0001M\u0001"+ + "M\u0001M\u0001M\u0001M\u0001M\u0001M\u0001N\u0001N\u0001N\u0001N\u0001"+ + "N\u0001N\u0001N\u0001N\u0001O\u0001O\u0001O\u0001O\u0001O\u0001P\u0001"+ + "P\u0001P\u0001P\u0001P\u0001P\u0001P\u0001P\u0001P\u0001P\u0001Q\u0001"+ + "Q\u0001Q\u0001Q\u0001Q\u0001Q\u0001Q\u0001R\u0001R\u0001R\u0001R\u0001"+ + "R\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001T\u0001T\u0001T\u0001"+ + "U\u0001U\u0001U\u0001U\u0001V\u0001V\u0001V\u0001V\u0001V\u0001V\u0001"+ "V\u0001W\u0001W\u0001W\u0001W\u0001W\u0001X\u0001X\u0001X\u0001X\u0001"+ - "X\u0001Y\u0001Y\u0001Y\u0001Y\u0001Y\u0001Y\u0001Y\u0001Y\u0001Z\u0001"+ - "Z\u0001Z\u0001Z\u0001Z\u0001Z\u0001Z\u0001[\u0001[\u0001[\u0001[\u0001"+ - "[\u0001[\u0001\\\u0001\\\u0001\\\u0001\\\u0001\\\u0001\\\u0001\\\u0001"+ - "\\\u0001\\\u0001\\\u0001\\\u0001\\\u0001\\\u0001\\\u0001]\u0001]\u0001"+ - "]\u0001^\u0001^\u0001^\u0001^\u0001^\u0001^\u0001_\u0001_\u0001_\u0001"+ - "_\u0001_\u0001`\u0001`\u0001`\u0001`\u0001`\u0001`\u0001`\u0001`\u0001"+ - "`\u0001`\u0001`\u0001a\u0001a\u0001a\u0001a\u0001b\u0001b\u0001b\u0001"+ - "b\u0001b\u0001b\u0001b\u0001c\u0001c\u0001c\u0001c\u0001c\u0001c\u0001"+ - "c\u0001c\u0001c\u0001d\u0001d\u0001d\u0001d\u0001e\u0001e\u0001e\u0001"+ - "e\u0001e\u0001e\u0001f\u0001f\u0001f\u0005f\u0438\bf\nf\ff\u043b\tf\u0001"+ - "f\u0001f\u0001g\u0001g\u0001h\u0001h\u0001h\u0001h\u0001i\u0001i\u0001"+ - "j\u0001j\u0001j\u0001j\u0001k\u0001k\u0001l\u0001l\u0001l\u0001l\u0001"+ - "m\u0001m\u0001n\u0001n\u0001o\u0001o\u0001p\u0001p\u0001q\u0001q\u0001"+ - "r\u0001r\u0001r\u0001r\u0001r\u0001s\u0001s\u0001s\u0001s\u0001s\u0001"+ - "t\u0001t\u0001t\u0001u\u0001u\u0001u\u0001u\u0001v\u0001v\u0001v\u0001"+ - "w\u0001w\u0001w\u0001x\u0001x\u0001x\u0001y\u0001y\u0001y\u0001z\u0001"+ - "z\u0001{\u0001{\u0001{\u0001|\u0001|\u0001}\u0001}\u0001}\u0001~\u0001"+ - "~\u0001\u007f\u0001\u007f\u0001\u0080\u0001\u0080\u0001\u0081\u0001\u0081"+ - "\u0001\u0081\u0001\u0082\u0001\u0082\u0001\u0082\u0001\u0083\u0001\u0083"+ - "\u0001\u0083\u0001\u0084\u0001\u0084\u0001\u0085\u0001\u0085\u0001\u0086"+ - "\u0001\u0086\u0001\u0087\u0001\u0087\u0001\u0088\u0001\u0088\u0001\u0089"+ - "\u0001\u0089\u0001\u008a\u0001\u008a\u0001\u008a\u0001\u008b\u0001\u008b"+ - "\u0001\u008b\u0003\u008b\u04a3\b\u008b\u0001\u008b\u0005\u008b\u04a6\b"+ - "\u008b\n\u008b\f\u008b\u04a9\t\u008b\u0003\u008b\u04ab\b\u008b\u0001\u008b"+ - "\u0001\u008b\u0001\u008c\u0001\u008c\u0001\u008c\u0003\u008c\u04b2\b\u008c"+ - "\u0001\u008c\u0004\u008c\u04b5\b\u008c\u000b\u008c\f\u008c\u04b6\u0001"+ - "\u008c\u0001\u008c\u0001\u008d\u0001\u008d\u0003\u008d\u04bd\b\u008d\u0001"+ - "\u008d\u0003\u008d\u04c0\b\u008d\u0001\u008d\u0004\u008d\u04c3\b\u008d"+ - "\u000b\u008d\f\u008d\u04c4\u0001\u008d\u0001\u008d\u0001\u008e\u0001\u008e"+ - "\u0001\u008e\u0003\u008e\u04cc\b\u008e\u0001\u008e\u0004\u008e\u04cf\b"+ - "\u008e\u000b\u008e\f\u008e\u04d0\u0001\u008e\u0001\u008e\u0001\u008f\u0001"+ - "\u008f\u0001\u008f\u0001\u008f\u0001\u008f\u0001\u0090\u0003\u0090\u04db"+ - "\b\u0090\u0001\u0090\u0004\u0090\u04de\b\u0090\u000b\u0090\f\u0090\u04df"+ - "\u0001\u0090\u0001\u0090\u0003\u0090\u04e4\b\u0090\u0001\u0090\u0005\u0090"+ - "\u04e7\b\u0090\n\u0090\f\u0090\u04ea\t\u0090\u0003\u0090\u04ec\b\u0090"+ - "\u0001\u0090\u0001\u0090\u0001\u0090\u0003\u0090\u04f1\b\u0090\u0001\u0090"+ - "\u0005\u0090\u04f4\b\u0090\n\u0090\f\u0090\u04f7\t\u0090\u0003\u0090\u04f9"+ - "\b\u0090\u0001\u0091\u0001\u0091\u0003\u0091\u04fd\b\u0091\u0001\u0091"+ - "\u0001\u0091\u0001\u0092\u0001\u0092\u0001\u0092\u0001\u0092\u0001\u0092"+ - "\u0003\u0092\u0506\b\u0092\u0001\u0092\u0001\u0092\u0001\u0092\u0001\u0092"+ - "\u0001\u0093\u0001\u0093\u0001\u0093\u0003\u0093\u050f\b\u0093\u0001\u0093"+ - "\u0001\u0093\u0001\u0094\u0001\u0094\u0001\u0094\u0001\u0094\u0001\u0095"+ - "\u0001\u0095\u0003\u0095\u0519\b\u0095\u0001\u0096\u0001\u0096\u0001\u0096"+ - "\u0001\u0096\u0001\u0096\u0001\u0097\u0001\u0097\u0001\u0097\u0001\u0097"+ - "\u0001\u0097\u0001\u0098\u0001\u0098\u0001\u0098\u0001\u0098\u0001\u0098"+ - "\u0001\u0098\u0001\u0098\u0001\u0099\u0001\u0099\u0001\u0099\u0001\u0099"+ + "X\u0001Y\u0001Y\u0001Y\u0001Y\u0001Y\u0001Z\u0001Z\u0001Z\u0001Z\u0001"+ + "Z\u0001Z\u0001Z\u0001Z\u0001[\u0001[\u0001[\u0001[\u0001[\u0001[\u0001"+ + "[\u0001\\\u0001\\\u0001\\\u0001\\\u0001\\\u0001\\\u0001]\u0001]\u0001"+ + "]\u0001]\u0001]\u0001]\u0001]\u0001]\u0001]\u0001]\u0001]\u0001]\u0001"+ + "]\u0001]\u0001^\u0001^\u0001^\u0001_\u0001_\u0001_\u0001_\u0001_\u0001"+ + "_\u0001`\u0001`\u0001`\u0001`\u0001`\u0001a\u0001a\u0001a\u0001a\u0001"+ + "a\u0001a\u0001a\u0001a\u0001a\u0001a\u0001a\u0001b\u0001b\u0001b\u0001"+ + "b\u0001c\u0001c\u0001c\u0001c\u0001c\u0001c\u0001c\u0001d\u0001d\u0001"+ + "d\u0001d\u0001d\u0001d\u0001d\u0001d\u0001d\u0001e\u0001e\u0001e\u0001"+ + "e\u0001f\u0001f\u0001f\u0001f\u0001f\u0001f\u0001g\u0001g\u0001g\u0005"+ + "g\u0445\bg\ng\fg\u0448\tg\u0001g\u0001g\u0001h\u0001h\u0001i\u0001i\u0001"+ + "i\u0001i\u0001j\u0001j\u0001k\u0001k\u0001k\u0001k\u0001l\u0001l\u0001"+ + "m\u0001m\u0001m\u0001m\u0001n\u0001n\u0001o\u0001o\u0001p\u0001p\u0001"+ + "q\u0001q\u0001r\u0001r\u0001s\u0001s\u0001s\u0001s\u0001s\u0001t\u0001"+ + "t\u0001t\u0001t\u0001t\u0001u\u0001u\u0001u\u0001v\u0001v\u0001v\u0001"+ + "v\u0001w\u0001w\u0001w\u0001x\u0001x\u0001x\u0001y\u0001y\u0001y\u0001"+ + "z\u0001z\u0001z\u0001{\u0001{\u0001|\u0001|\u0001|\u0001}\u0001}\u0001"+ + "~\u0001~\u0001~\u0001\u007f\u0001\u007f\u0001\u0080\u0001\u0080\u0001"+ + "\u0081\u0001\u0081\u0001\u0082\u0001\u0082\u0001\u0082\u0001\u0083\u0001"+ + "\u0083\u0001\u0083\u0001\u0084\u0001\u0084\u0001\u0084\u0001\u0085\u0001"+ + "\u0085\u0001\u0086\u0001\u0086\u0001\u0087\u0001\u0087\u0001\u0088\u0001"+ + "\u0088\u0001\u0089\u0001\u0089\u0001\u008a\u0001\u008a\u0001\u008b\u0001"+ + "\u008b\u0001\u008b\u0001\u008c\u0001\u008c\u0001\u008c\u0003\u008c\u04b0"+ + "\b\u008c\u0001\u008c\u0005\u008c\u04b3\b\u008c\n\u008c\f\u008c\u04b6\t"+ + "\u008c\u0003\u008c\u04b8\b\u008c\u0001\u008c\u0001\u008c\u0001\u008d\u0001"+ + "\u008d\u0001\u008d\u0003\u008d\u04bf\b\u008d\u0001\u008d\u0004\u008d\u04c2"+ + "\b\u008d\u000b\u008d\f\u008d\u04c3\u0001\u008d\u0001\u008d\u0001\u008e"+ + "\u0001\u008e\u0003\u008e\u04ca\b\u008e\u0001\u008e\u0003\u008e\u04cd\b"+ + "\u008e\u0001\u008e\u0004\u008e\u04d0\b\u008e\u000b\u008e\f\u008e\u04d1"+ + "\u0001\u008e\u0001\u008e\u0001\u008f\u0001\u008f\u0001\u008f\u0003\u008f"+ + "\u04d9\b\u008f\u0001\u008f\u0004\u008f\u04dc\b\u008f\u000b\u008f\f\u008f"+ + "\u04dd\u0001\u008f\u0001\u008f\u0001\u0090\u0001\u0090\u0001\u0090\u0001"+ + "\u0090\u0001\u0090\u0001\u0091\u0003\u0091\u04e8\b\u0091\u0001\u0091\u0004"+ + "\u0091\u04eb\b\u0091\u000b\u0091\f\u0091\u04ec\u0001\u0091\u0001\u0091"+ + "\u0003\u0091\u04f1\b\u0091\u0001\u0091\u0005\u0091\u04f4\b\u0091\n\u0091"+ + "\f\u0091\u04f7\t\u0091\u0003\u0091\u04f9\b\u0091\u0001\u0091\u0001\u0091"+ + "\u0001\u0091\u0003\u0091\u04fe\b\u0091\u0001\u0091\u0005\u0091\u0501\b"+ + "\u0091\n\u0091\f\u0091\u0504\t\u0091\u0003\u0091\u0506\b\u0091\u0001\u0092"+ + "\u0001\u0092\u0003\u0092\u050a\b\u0092\u0001\u0092\u0001\u0092\u0001\u0093"+ + "\u0001\u0093\u0001\u0093\u0001\u0093\u0001\u0093\u0003\u0093\u0513\b\u0093"+ + "\u0001\u0093\u0001\u0093\u0001\u0093\u0001\u0093\u0001\u0094\u0001\u0094"+ + "\u0001\u0094\u0003\u0094\u051c\b\u0094\u0001\u0094\u0001\u0094\u0001\u0095"+ + "\u0001\u0095\u0001\u0095\u0001\u0095\u0001\u0096\u0001\u0096\u0003\u0096"+ + "\u0526\b\u0096\u0001\u0097\u0001\u0097\u0001\u0097\u0001\u0097\u0001\u0097"+ + "\u0001\u0098\u0001\u0098\u0001\u0098\u0001\u0098\u0001\u0098\u0001\u0099"+ "\u0001\u0099\u0001\u0099\u0001\u0099\u0001\u0099\u0001\u0099\u0001\u0099"+ - "\u0001\u0099\u0001\u009a\u0001\u009a\u0005\u009a\u0539\b\u009a\n\u009a"+ - "\f\u009a\u053c\t\u009a\u0001\u009a\u0001\u009a\u0001\u009a\u0001\u009a"+ - "\u0001\u009b\u0001\u009b\u0001\u009b\u0005\u009b\u0545\b\u009b\n\u009b"+ - "\f\u009b\u0548\t\u009b\u0001\u009b\u0001\u009b\u0001\u009b\u0001\u009b"+ - "\u0001\u009c\u0004\u009c\u054f\b\u009c\u000b\u009c\f\u009c\u0550\u0001"+ - "\u009c\u0001\u009c\u0001\u009d\u0001\u009d\u0001\u009d\u0001\u009d\u0005"+ - "\u009d\u0559\b\u009d\n\u009d\f\u009d\u055c\t\u009d\u0001\u009d\u0001\u009d"+ - "\u0001\u009d\u0001\u009d\u0001\u009d\u0001\u009e\u0004\u009e\u0564\b\u009e"+ - "\u000b\u009e\f\u009e\u0565\u0001\u009e\u0001\u009e\u0001\u009f\u0001\u009f"+ - "\u0001\u009f\u0001\u009f\u0005\u009f\u056e\b\u009f\n\u009f\f\u009f\u0571"+ - "\t\u009f\u0001\u009f\u0001\u009f\u0001\u00a0\u0001\u00a0\u0001\u00a0\u0001"+ - "\u00a0\u0003\u00a0\u0579\b\u00a0\u0001\u00a1\u0001\u00a1\u0001\u00a1\u0001"+ - "\u00a1\u0001\u00a1\u0001\u00a1\u0001\u00a1\u0001\u00a1\u0001\u00a1\u0001"+ - "\u00a1\u0001\u00a1\u0001\u00a1\u0001\u00a1\u0001\u00a1\u0001\u00a1\u0001"+ - "\u00a1\u0001\u00a1\u0001\u00a1\u0001\u00a1\u0001\u00a1\u0001\u00a1\u0001"+ - "\u00a1\u0001\u00a1\u0001\u00a1\u0001\u00a1\u0001\u00a1\u0003\u00a1\u0595"+ - "\b\u00a1\u0001\u00a2\u0001\u00a2\u0003\u00a2\u0599\b\u00a2\u0001\u00a2"+ - "\u0005\u00a2\u059c\b\u00a2\n\u00a2\f\u00a2\u059f\t\u00a2\u0001\u00a3\u0001"+ - "\u00a3\u0001\u00a4\u0001\u00a4\u0001\u00a5\u0001\u00a5\u0001\u00a6\u0001"+ - "\u00a6\u0003\u00a6\u05a9\b\u00a6\u0001\u00a6\u0001\u00a6\u0001\u00a7\u0001"+ - "\u00a7\u0003\u00a7\u05af\b\u00a7\u0001\u00a8\u0001\u00a8\u0001\u00a9\u0001"+ - "\u00a9\u0001\u00aa\u0004\u00aa\u05b6\b\u00aa\u000b\u00aa\f\u00aa\u05b7"+ - "\u0001\u00aa\u0001\u00aa\u0001\u00ab\u0001\u00ab\u0001\u00ab\u0001\u00ab"+ - "\u0005\u00ab\u05c0\b\u00ab\n\u00ab\f\u00ab\u05c3\t\u00ab\u0001\u00ab\u0001"+ - "\u00ab\u0001\u00ab\u0001\u00ab\u0001\u00ab\u0001\u00ac\u0001\u00ac\u0001"+ - "\u00ac\u0001\u00ac\u0005\u00ac\u05ce\b\u00ac\n\u00ac\f\u00ac\u05d1\t\u00ac"+ - "\u0001\u00ac\u0001\u00ac\u0001\u00ad\u0004\u00ad\u05d6\b\u00ad\u000b\u00ad"+ - "\f\u00ad\u05d7\u0001\u00ad\u0001\u00ad\u0001\u00ad\u0001\u00ad\u0001\u00ad"+ - "\u0005\u00ad\u05df\b\u00ad\n\u00ad\f\u00ad\u05e2\t\u00ad\u0001\u00ad\u0001"+ - "\u00ad\u0001\u00ad\u0003\u00ad\u05e7\b\u00ad\u0001\u00ad\u0001\u00ad\u0001"+ - "\u00ae\u0001\u00ae\u0001\u00ae\u0001\u00ae\u0001\u00ae\u0003\u055a\u05c1"+ - "\u05e0\u0000\u00af\u0002\u0001\u0004\u0002\u0006\u0003\b\u0004\n\u0005"+ - "\f\u0006\u000e\u0007\u0010\b\u0012\t\u0014\n\u0016\u000b\u0018\f\u001a"+ - "\r\u001c\u000e\u001e\u000f \u0010\"\u0011$\u0012&\u0013(\u0014*\u0015"+ - ",\u0016.\u00170\u00182\u00194\u001a6\u001b8\u001c:\u001d<\u001e>\u001f"+ - "@ B!D\"F#H$J%L&N\'P(R)T*V+X,Z-\\.^/`0b1d2f3h4j5l6n7p8r9t:v;x~?\u0080"+ - "@\u0082A\u0084B\u0086C\u0088D\u008aE\u008cF\u008eG\u0090H\u0092I\u0094"+ - "J\u0096K\u0098L\u009aM\u009cN\u009eO\u00a0P\u00a2Q\u00a4R\u00a6S\u00a8"+ - "T\u00aaU\u00acV\u00aeW\u00b0X\u00b2Y\u00b4Z\u00b6[\u00b8\\\u00ba]\u00bc"+ - "^\u00be_\u00c0`\u00c2a\u00c4b\u00c6c\u00c8d\u00cae\u00ccf\u00ceg\u00d0"+ - "h\u00d2i\u00d4j\u00d6k\u00d8l\u00dam\u00dcn\u00deo\u00e0p\u00e2q\u00e4"+ - "r\u00e6s\u00e8t\u00eau\u00ecv\u00eew\u00f0x\u00f2y\u00f4z\u00f6{\u00f8"+ - "|\u00fa}\u00fc~\u00fe\u007f\u0100\u0080\u0102\u0081\u0104\u0082\u0106"+ - "\u0083\u0108\u0084\u010a\u0085\u010c\u0086\u010e\u0087\u0110\u0088\u0112"+ - "\u0089\u0114\u008a\u0116\u008b\u0118\u008c\u011a\u008d\u011c\u008e\u011e"+ - "\u008f\u0120\u0090\u0122\u0000\u0124\u0000\u0126\u0091\u0128\u0000\u012a"+ - "\u0092\u012c\u0093\u012e\u0094\u0130\u0095\u0132\u0096\u0134\u0097\u0136"+ - "\u0098\u0138\u0099\u013a\u009a\u013c\u009b\u013e\u009c\u0140\u009d\u0142"+ - "\u0000\u0144\u0000\u0146\u0000\u0148\u0000\u014a\u0000\u014c\u0000\u014e"+ - "\u0000\u0150\u0000\u0152\u0000\u0154\u0000\u0156\u009e\u0158\u009f\u015a"+ - "\u00a0\u015c\u00a1\u015e\u00a2\u0002\u0000\u0001\u0013\u0001\u000019\u0001"+ - "\u000009\u0002\u0000BBbb\u0002\u0000OOoo\u0002\u0000XXxx\u0002\u0000P"+ - "Ppp\u0002\u0000++--\u0001\u0000``\u0002\u0000\"\"\\\\\u0002\u0000\t\t"+ - " \u0002\u0000\n\n\r\r\u0003\u0000\n\n\r\r\'\'\t\u0000\"\"\'\'\\\\abf"+ - "fnnrrttvv\u0001\u000007\u0003\u000009AFaf\u0001\u000001\u0002\u0000EE"+ - "ee@\u000009\u0660\u0669\u06f0\u06f9\u07c0\u07c9\u0966\u096f\u09e6\u09ef"+ - "\u0a66\u0a6f\u0ae6\u0aef\u0b66\u0b6f\u0be6\u0bef\u0c66\u0c6f\u0ce6\u0cef"+ - "\u0d66\u0d6f\u0de6\u0def\u0e50\u0e59\u0ed0\u0ed9\u0f20\u0f29\u1040\u1049"+ - "\u1090\u1099\u17e0\u17e9\u1810\u1819\u1946\u194f\u19d0\u19d9\u1a80\u1a89"+ - "\u1a90\u1a99\u1b50\u1b59\u1bb0\u1bb9\u1c40\u1c49\u1c50\u1c59\u8000\ua620"+ - "\u8000\ua629\u8000\ua8d0\u8000\ua8d9\u8000\ua900\u8000\ua909\u8000\ua9d0"+ - "\u8000\ua9d9\u8000\ua9f0\u8000\ua9f9\u8000\uaa50\u8000\uaa59\u8000\uabf0"+ - "\u8000\uabf9\u8000\uff10\u8000\uff19\u8001\u04a0\u8001\u04a9\u8001\u0d30"+ - "\u8001\u0d39\u8001\u1066\u8001\u106f\u8001\u10f0\u8001\u10f9\u8001\u1136"+ - "\u8001\u113f\u8001\u11d0\u8001\u11d9\u8001\u12f0\u8001\u12f9\u8001\u1450"+ - "\u8001\u1459\u8001\u14d0\u8001\u14d9\u8001\u1650\u8001\u1659\u8001\u16c0"+ - "\u8001\u16c9\u8001\u1730\u8001\u1739\u8001\u18e0\u8001\u18e9\u8001\u1950"+ - "\u8001\u1959\u8001\u1c50\u8001\u1c59\u8001\u1d50\u8001\u1d59\u8001\u1da0"+ - "\u8001\u1da9\u8001\u1f50\u8001\u1f59\u8001\u6a60\u8001\u6a69\u8001\u6ac0"+ - "\u8001\u6ac9\u8001\u6b50\u8001\u6b59\u8001\ud7ce\u8001\ud7ff\u8001\ue140"+ - "\u8001\ue149\u8001\ue2f0\u8001\ue2f9\u8001\ue4f0\u8001\ue4f9\u8001\ue950"+ - "\u8001\ue959\u8001\ufbf0\u8001\ufbf9\u0293\u0000AZaz\u00aa\u00aa\u00b5"+ - "\u00b5\u00ba\u00ba\u00c0\u00d6\u00d8\u00f6\u00f8\u02c1\u02c6\u02d1\u02e0"+ - "\u02e4\u02ec\u02ec\u02ee\u02ee\u0370\u0374\u0376\u0377\u037a\u037d\u037f"+ - "\u037f\u0386\u0386\u0388\u038a\u038c\u038c\u038e\u03a1\u03a3\u03f5\u03f7"+ - "\u0481\u048a\u052f\u0531\u0556\u0559\u0559\u0560\u0588\u05d0\u05ea\u05ef"+ - "\u05f2\u0620\u064a\u066e\u066f\u0671\u06d3\u06d5\u06d5\u06e5\u06e6\u06ee"+ - "\u06ef\u06fa\u06fc\u06ff\u06ff\u0710\u0710\u0712\u072f\u074d\u07a5\u07b1"+ - "\u07b1\u07ca\u07ea\u07f4\u07f5\u07fa\u07fa\u0800\u0815\u081a\u081a\u0824"+ - "\u0824\u0828\u0828\u0840\u0858\u0860\u086a\u0870\u0887\u0889\u088e\u08a0"+ - "\u08c9\u0904\u0939\u093d\u093d\u0950\u0950\u0958\u0961\u0971\u0980\u0985"+ - "\u098c\u098f\u0990\u0993\u09a8\u09aa\u09b0\u09b2\u09b2\u09b6\u09b9\u09bd"+ - "\u09bd\u09ce\u09ce\u09dc\u09dd\u09df\u09e1\u09f0\u09f1\u09fc\u09fc\u0a05"+ - "\u0a0a\u0a0f\u0a10\u0a13\u0a28\u0a2a\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38"+ - "\u0a39\u0a59\u0a5c\u0a5e\u0a5e\u0a72\u0a74\u0a85\u0a8d\u0a8f\u0a91\u0a93"+ - "\u0aa8\u0aaa\u0ab0\u0ab2\u0ab3\u0ab5\u0ab9\u0abd\u0abd\u0ad0\u0ad0\u0ae0"+ - "\u0ae1\u0af9\u0af9\u0b05\u0b0c\u0b0f\u0b10\u0b13\u0b28\u0b2a\u0b30\u0b32"+ - "\u0b33\u0b35\u0b39\u0b3d\u0b3d\u0b5c\u0b5d\u0b5f\u0b61\u0b71\u0b71\u0b83"+ - "\u0b83\u0b85\u0b8a\u0b8e\u0b90\u0b92\u0b95\u0b99\u0b9a\u0b9c\u0b9c\u0b9e"+ - "\u0b9f\u0ba3\u0ba4\u0ba8\u0baa\u0bae\u0bb9\u0bd0\u0bd0\u0c05\u0c0c\u0c0e"+ - "\u0c10\u0c12\u0c28\u0c2a\u0c39\u0c3d\u0c3d\u0c58\u0c5a\u0c5d\u0c5d\u0c60"+ - "\u0c61\u0c80\u0c80\u0c85\u0c8c\u0c8e\u0c90\u0c92\u0ca8\u0caa\u0cb3\u0cb5"+ - "\u0cb9\u0cbd\u0cbd\u0cdd\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d04\u0d0c\u0d0e"+ - "\u0d10\u0d12\u0d3a\u0d3d\u0d3d\u0d4e\u0d4e\u0d54\u0d56\u0d5f\u0d61\u0d7a"+ - "\u0d7f\u0d85\u0d96\u0d9a\u0db1\u0db3\u0dbb\u0dbd\u0dbd\u0dc0\u0dc6\u0e01"+ - "\u0e30\u0e32\u0e33\u0e40\u0e46\u0e81\u0e82\u0e84\u0e84\u0e86\u0e8a\u0e8c"+ - "\u0ea3\u0ea5\u0ea5\u0ea7\u0eb0\u0eb2\u0eb3\u0ebd\u0ebd\u0ec0\u0ec4\u0ec6"+ - "\u0ec6\u0edc\u0edf\u0f00\u0f00\u0f40\u0f47\u0f49\u0f6c\u0f88\u0f8c\u1000"+ - "\u102a\u103f\u103f\u1050\u1055\u105a\u105d\u1061\u1061\u1065\u1066\u106e"+ - "\u1070\u1075\u1081\u108e\u108e\u10a0\u10c5\u10c7\u10c7\u10cd\u10cd\u10d0"+ - "\u10fa\u10fc\u1248\u124a\u124d\u1250\u1256\u1258\u1258\u125a\u125d\u1260"+ - "\u1288\u128a\u128d\u1290\u12b0\u12b2\u12b5\u12b8\u12be\u12c0\u12c0\u12c2"+ - "\u12c5\u12c8\u12d6\u12d8\u1310\u1312\u1315\u1318\u135a\u1380\u138f\u13a0"+ - "\u13f5\u13f8\u13fd\u1401\u166c\u166f\u167f\u1681\u169a\u16a0\u16ea\u16f1"+ - "\u16f8\u1700\u1711\u171f\u1731\u1740\u1751\u1760\u176c\u176e\u1770\u1780"+ - "\u17b3\u17d7\u17d7\u17dc\u17dc\u1820\u1878\u1880\u1884\u1887\u18a8\u18aa"+ - "\u18aa\u18b0\u18f5\u1900\u191e\u1950\u196d\u1970\u1974\u1980\u19ab\u19b0"+ - "\u19c9\u1a00\u1a16\u1a20\u1a54\u1aa7\u1aa7\u1b05\u1b33\u1b45\u1b4c\u1b83"+ - "\u1ba0\u1bae\u1baf\u1bba\u1be5\u1c00\u1c23\u1c4d\u1c4f\u1c5a\u1c7d\u1c80"+ - "\u1c88\u1c90\u1cba\u1cbd\u1cbf\u1ce9\u1cec\u1cee\u1cf3\u1cf5\u1cf6\u1cfa"+ - "\u1cfa\u1d00\u1dbf\u1e00\u1f15\u1f18\u1f1d\u1f20\u1f45\u1f48\u1f4d\u1f50"+ - "\u1f57\u1f59\u1f59\u1f5b\u1f5b\u1f5d\u1f5d\u1f5f\u1f7d\u1f80\u1fb4\u1fb6"+ - "\u1fbc\u1fbe\u1fbe\u1fc2\u1fc4\u1fc6\u1fcc\u1fd0\u1fd3\u1fd6\u1fdb\u1fe0"+ - "\u1fec\u1ff2\u1ff4\u1ff6\u1ffc\u2071\u2071\u207f\u207f\u2090\u209c\u2102"+ - "\u2102\u2107\u2107\u210a\u2113\u2115\u2115\u2119\u211d\u2124\u2124\u2126"+ - "\u2126\u2128\u2128\u212a\u212d\u212f\u2139\u213c\u213f\u2145\u2149\u214e"+ - "\u214e\u2183\u2184\u2c00\u2ce4\u2ceb\u2cee\u2cf2\u2cf3\u2d00\u2d25\u2d27"+ - "\u2d27\u2d2d\u2d2d\u2d30\u2d67\u2d6f\u2d6f\u2d80\u2d96\u2da0\u2da6\u2da8"+ - "\u2dae\u2db0\u2db6\u2db8\u2dbe\u2dc0\u2dc6\u2dc8\u2dce\u2dd0\u2dd6\u2dd8"+ - "\u2dde\u2e2f\u2e2f\u3005\u3006\u3031\u3035\u303b\u303c\u3041\u3096\u309d"+ - "\u309f\u30a1\u30fa\u30fc\u30ff\u3105\u312f\u3131\u318e\u31a0\u31bf\u31f0"+ - "\u31ff\u3400\u4dbf\u4e00\u8000\ua48c\u8000\ua4d0\u8000\ua4fd\u8000\ua500"+ - "\u8000\ua60c\u8000\ua610\u8000\ua61f\u8000\ua62a\u8000\ua62b\u8000\ua640"+ - "\u8000\ua66e\u8000\ua67f\u8000\ua69d\u8000\ua6a0\u8000\ua6e5\u8000\ua717"+ - "\u8000\ua71f\u8000\ua722\u8000\ua788\u8000\ua78b\u8000\ua7ca\u8000\ua7d0"+ - "\u8000\ua7d1\u8000\ua7d3\u8000\ua7d3\u8000\ua7d5\u8000\ua7d9\u8000\ua7f2"+ - "\u8000\ua801\u8000\ua803\u8000\ua805\u8000\ua807\u8000\ua80a\u8000\ua80c"+ - "\u8000\ua822\u8000\ua840\u8000\ua873\u8000\ua882\u8000\ua8b3\u8000\ua8f2"+ - "\u8000\ua8f7\u8000\ua8fb\u8000\ua8fb\u8000\ua8fd\u8000\ua8fe\u8000\ua90a"+ - "\u8000\ua925\u8000\ua930\u8000\ua946\u8000\ua960\u8000\ua97c\u8000\ua984"+ - "\u8000\ua9b2\u8000\ua9cf\u8000\ua9cf\u8000\ua9e0\u8000\ua9e4\u8000\ua9e6"+ - "\u8000\ua9ef\u8000\ua9fa\u8000\ua9fe\u8000\uaa00\u8000\uaa28\u8000\uaa40"+ - "\u8000\uaa42\u8000\uaa44\u8000\uaa4b\u8000\uaa60\u8000\uaa76\u8000\uaa7a"+ - "\u8000\uaa7a\u8000\uaa7e\u8000\uaaaf\u8000\uaab1\u8000\uaab1\u8000\uaab5"+ - "\u8000\uaab6\u8000\uaab9\u8000\uaabd\u8000\uaac0\u8000\uaac0\u8000\uaac2"+ - "\u8000\uaac2\u8000\uaadb\u8000\uaadd\u8000\uaae0\u8000\uaaea\u8000\uaaf2"+ - "\u8000\uaaf4\u8000\uab01\u8000\uab06\u8000\uab09\u8000\uab0e\u8000\uab11"+ - "\u8000\uab16\u8000\uab20\u8000\uab26\u8000\uab28\u8000\uab2e\u8000\uab30"+ - "\u8000\uab5a\u8000\uab5c\u8000\uab69\u8000\uab70\u8000\uabe2\u8000\uac00"+ - "\u8000\ud7a3\u8000\ud7b0\u8000\ud7c6\u8000\ud7cb\u8000\ud7fb\u8000\uf900"+ - "\u8000\ufa6d\u8000\ufa70\u8000\ufad9\u8000\ufb00\u8000\ufb06\u8000\ufb13"+ - "\u8000\ufb17\u8000\ufb1d\u8000\ufb1d\u8000\ufb1f\u8000\ufb28\u8000\ufb2a"+ - "\u8000\ufb36\u8000\ufb38\u8000\ufb3c\u8000\ufb3e\u8000\ufb3e\u8000\ufb40"+ - "\u8000\ufb41\u8000\ufb43\u8000\ufb44\u8000\ufb46\u8000\ufbb1\u8000\ufbd3"+ - "\u8000\ufd3d\u8000\ufd50\u8000\ufd8f\u8000\ufd92\u8000\ufdc7\u8000\ufdf0"+ - "\u8000\ufdfb\u8000\ufe70\u8000\ufe74\u8000\ufe76\u8000\ufefc\u8000\uff21"+ - "\u8000\uff3a\u8000\uff41\u8000\uff5a\u8000\uff66\u8000\uffbe\u8000\uffc2"+ - "\u8000\uffc7\u8000\uffca\u8000\uffcf\u8000\uffd2\u8000\uffd7\u8000\uffda"+ - "\u8000\uffdc\u8001\u0000\u8001\u000b\u8001\r\u8001&\u8001(\u8001:\u8001"+ - "<\u8001=\u8001?\u8001M\u8001P\u8001]\u8001\u0080\u8001\u00fa\u8001\u0280"+ - "\u8001\u029c\u8001\u02a0\u8001\u02d0\u8001\u0300\u8001\u031f\u8001\u032d"+ - "\u8001\u0340\u8001\u0342\u8001\u0349\u8001\u0350\u8001\u0375\u8001\u0380"+ - "\u8001\u039d\u8001\u03a0\u8001\u03c3\u8001\u03c8\u8001\u03cf\u8001\u0400"+ - "\u8001\u049d\u8001\u04b0\u8001\u04d3\u8001\u04d8\u8001\u04fb\u8001\u0500"+ - "\u8001\u0527\u8001\u0530\u8001\u0563\u8001\u0570\u8001\u057a\u8001\u057c"+ - "\u8001\u058a\u8001\u058c\u8001\u0592\u8001\u0594\u8001\u0595\u8001\u0597"+ - "\u8001\u05a1\u8001\u05a3\u8001\u05b1\u8001\u05b3\u8001\u05b9\u8001\u05bb"+ - "\u8001\u05bc\u8001\u0600\u8001\u0736\u8001\u0740\u8001\u0755\u8001\u0760"+ - "\u8001\u0767\u8001\u0780\u8001\u0785\u8001\u0787\u8001\u07b0\u8001\u07b2"+ - "\u8001\u07ba\u8001\u0800\u8001\u0805\u8001\u0808\u8001\u0808\u8001\u080a"+ - "\u8001\u0835\u8001\u0837\u8001\u0838\u8001\u083c\u8001\u083c\u8001\u083f"+ - "\u8001\u0855\u8001\u0860\u8001\u0876\u8001\u0880\u8001\u089e\u8001\u08e0"+ - "\u8001\u08f2\u8001\u08f4\u8001\u08f5\u8001\u0900\u8001\u0915\u8001\u0920"+ - "\u8001\u0939\u8001\u0980\u8001\u09b7\u8001\u09be\u8001\u09bf\u8001\u0a00"+ - "\u8001\u0a00\u8001\u0a10\u8001\u0a13\u8001\u0a15\u8001\u0a17\u8001\u0a19"+ - "\u8001\u0a35\u8001\u0a60\u8001\u0a7c\u8001\u0a80\u8001\u0a9c\u8001\u0ac0"+ - "\u8001\u0ac7\u8001\u0ac9\u8001\u0ae4\u8001\u0b00\u8001\u0b35\u8001\u0b40"+ - "\u8001\u0b55\u8001\u0b60\u8001\u0b72\u8001\u0b80\u8001\u0b91\u8001\u0c00"+ - "\u8001\u0c48\u8001\u0c80\u8001\u0cb2\u8001\u0cc0\u8001\u0cf2\u8001\u0d00"+ - "\u8001\u0d23\u8001\u0e80\u8001\u0ea9\u8001\u0eb0\u8001\u0eb1\u8001\u0f00"+ - "\u8001\u0f1c\u8001\u0f27\u8001\u0f27\u8001\u0f30\u8001\u0f45\u8001\u0f70"+ - "\u8001\u0f81\u8001\u0fb0\u8001\u0fc4\u8001\u0fe0\u8001\u0ff6\u8001\u1003"+ - "\u8001\u1037\u8001\u1071\u8001\u1072\u8001\u1075\u8001\u1075\u8001\u1083"+ - "\u8001\u10af\u8001\u10d0\u8001\u10e8\u8001\u1103\u8001\u1126\u8001\u1144"+ - "\u8001\u1144\u8001\u1147\u8001\u1147\u8001\u1150\u8001\u1172\u8001\u1176"+ - "\u8001\u1176\u8001\u1183\u8001\u11b2\u8001\u11c1\u8001\u11c4\u8001\u11da"+ - "\u8001\u11da\u8001\u11dc\u8001\u11dc\u8001\u1200\u8001\u1211\u8001\u1213"+ - "\u8001\u122b\u8001\u123f\u8001\u1240\u8001\u1280\u8001\u1286\u8001\u1288"+ - "\u8001\u1288\u8001\u128a\u8001\u128d\u8001\u128f\u8001\u129d\u8001\u129f"+ - "\u8001\u12a8\u8001\u12b0\u8001\u12de\u8001\u1305\u8001\u130c\u8001\u130f"+ - "\u8001\u1310\u8001\u1313\u8001\u1328\u8001\u132a\u8001\u1330\u8001\u1332"+ - "\u8001\u1333\u8001\u1335\u8001\u1339\u8001\u133d\u8001\u133d\u8001\u1350"+ - "\u8001\u1350\u8001\u135d\u8001\u1361\u8001\u1400\u8001\u1434\u8001\u1447"+ - "\u8001\u144a\u8001\u145f\u8001\u1461\u8001\u1480\u8001\u14af\u8001\u14c4"+ - "\u8001\u14c5\u8001\u14c7\u8001\u14c7\u8001\u1580\u8001\u15ae\u8001\u15d8"+ - "\u8001\u15db\u8001\u1600\u8001\u162f\u8001\u1644\u8001\u1644\u8001\u1680"+ - "\u8001\u16aa\u8001\u16b8\u8001\u16b8\u8001\u1700\u8001\u171a\u8001\u1740"+ - "\u8001\u1746\u8001\u1800\u8001\u182b\u8001\u18a0\u8001\u18df\u8001\u18ff"+ - "\u8001\u1906\u8001\u1909\u8001\u1909\u8001\u190c\u8001\u1913\u8001\u1915"+ - "\u8001\u1916\u8001\u1918\u8001\u192f\u8001\u193f\u8001\u193f\u8001\u1941"+ - "\u8001\u1941\u8001\u19a0\u8001\u19a7\u8001\u19aa\u8001\u19d0\u8001\u19e1"+ - "\u8001\u19e1\u8001\u19e3\u8001\u19e3\u8001\u1a00\u8001\u1a00\u8001\u1a0b"+ - "\u8001\u1a32\u8001\u1a3a\u8001\u1a3a\u8001\u1a50\u8001\u1a50\u8001\u1a5c"+ - "\u8001\u1a89\u8001\u1a9d\u8001\u1a9d\u8001\u1ab0\u8001\u1af8\u8001\u1c00"+ - "\u8001\u1c08\u8001\u1c0a\u8001\u1c2e\u8001\u1c40\u8001\u1c40\u8001\u1c72"+ - "\u8001\u1c8f\u8001\u1d00\u8001\u1d06\u8001\u1d08\u8001\u1d09\u8001\u1d0b"+ - "\u8001\u1d30\u8001\u1d46\u8001\u1d46\u8001\u1d60\u8001\u1d65\u8001\u1d67"+ - "\u8001\u1d68\u8001\u1d6a\u8001\u1d89\u8001\u1d98\u8001\u1d98\u8001\u1ee0"+ - "\u8001\u1ef2\u8001\u1f02\u8001\u1f02\u8001\u1f04\u8001\u1f10\u8001\u1f12"+ - "\u8001\u1f33\u8001\u1fb0\u8001\u1fb0\u8001\u2000\u8001\u2399\u8001\u2480"+ - "\u8001\u2543\u8001\u2f90\u8001\u2ff0\u8001\u3000\u8001\u342f\u8001\u3441"+ - "\u8001\u3446\u8001\u4400\u8001\u4646\u8001\u6800\u8001\u6a38\u8001\u6a40"+ - "\u8001\u6a5e\u8001\u6a70\u8001\u6abe\u8001\u6ad0\u8001\u6aed\u8001\u6b00"+ - "\u8001\u6b2f\u8001\u6b40\u8001\u6b43\u8001\u6b63\u8001\u6b77\u8001\u6b7d"+ - "\u8001\u6b8f\u8001\u6e40\u8001\u6e7f\u8001\u6f00\u8001\u6f4a\u8001\u6f50"+ - "\u8001\u6f50\u8001\u6f93\u8001\u6f9f\u8001\u6fe0\u8001\u6fe1\u8001\u6fe3"+ - "\u8001\u6fe3\u8001\u7000\u8001\u87f7\u8001\u8800\u8001\u8cd5\u8001\u8d00"+ - "\u8001\u8d08\u8001\uaff0\u8001\uaff3\u8001\uaff5\u8001\uaffb\u8001\uaffd"+ - "\u8001\uaffe\u8001\ub000\u8001\ub122\u8001\ub132\u8001\ub132\u8001\ub150"+ - "\u8001\ub152\u8001\ub155\u8001\ub155\u8001\ub164\u8001\ub167\u8001\ub170"+ - "\u8001\ub2fb\u8001\ubc00\u8001\ubc6a\u8001\ubc70\u8001\ubc7c\u8001\ubc80"+ - "\u8001\ubc88\u8001\ubc90\u8001\ubc99\u8001\ud400\u8001\ud454\u8001\ud456"+ - "\u8001\ud49c\u8001\ud49e\u8001\ud49f\u8001\ud4a2\u8001\ud4a2\u8001\ud4a5"+ - "\u8001\ud4a6\u8001\ud4a9\u8001\ud4ac\u8001\ud4ae\u8001\ud4b9\u8001\ud4bb"+ - "\u8001\ud4bb\u8001\ud4bd\u8001\ud4c3\u8001\ud4c5\u8001\ud505\u8001\ud507"+ - "\u8001\ud50a\u8001\ud50d\u8001\ud514\u8001\ud516\u8001\ud51c\u8001\ud51e"+ - "\u8001\ud539\u8001\ud53b\u8001\ud53e\u8001\ud540\u8001\ud544\u8001\ud546"+ - "\u8001\ud546\u8001\ud54a\u8001\ud550\u8001\ud552\u8001\ud6a5\u8001\ud6a8"+ - "\u8001\ud6c0\u8001\ud6c2\u8001\ud6da\u8001\ud6dc\u8001\ud6fa\u8001\ud6fc"+ - "\u8001\ud714\u8001\ud716\u8001\ud734\u8001\ud736\u8001\ud74e\u8001\ud750"+ - "\u8001\ud76e\u8001\ud770\u8001\ud788\u8001\ud78a\u8001\ud7a8\u8001\ud7aa"+ - "\u8001\ud7c2\u8001\ud7c4\u8001\ud7cb\u8001\udf00\u8001\udf1e\u8001\udf25"+ - "\u8001\udf2a\u8001\ue030\u8001\ue06d\u8001\ue100\u8001\ue12c\u8001\ue137"+ - "\u8001\ue13d\u8001\ue14e\u8001\ue14e\u8001\ue290\u8001\ue2ad\u8001\ue2c0"+ - "\u8001\ue2eb\u8001\ue4d0\u8001\ue4eb\u8001\ue7e0\u8001\ue7e6\u8001\ue7e8"+ - "\u8001\ue7eb\u8001\ue7ed\u8001\ue7ee\u8001\ue7f0\u8001\ue7fe\u8001\ue800"+ - "\u8001\ue8c4\u8001\ue900\u8001\ue943\u8001\ue94b\u8001\ue94b\u8001\uee00"+ - "\u8001\uee03\u8001\uee05\u8001\uee1f\u8001\uee21\u8001\uee22\u8001\uee24"+ - "\u8001\uee24\u8001\uee27\u8001\uee27\u8001\uee29\u8001\uee32\u8001\uee34"+ - "\u8001\uee37\u8001\uee39\u8001\uee39\u8001\uee3b\u8001\uee3b\u8001\uee42"+ - "\u8001\uee42\u8001\uee47\u8001\uee47\u8001\uee49\u8001\uee49\u8001\uee4b"+ - "\u8001\uee4b\u8001\uee4d\u8001\uee4f\u8001\uee51\u8001\uee52\u8001\uee54"+ - "\u8001\uee54\u8001\uee57\u8001\uee57\u8001\uee59\u8001\uee59\u8001\uee5b"+ - "\u8001\uee5b\u8001\uee5d\u8001\uee5d\u8001\uee5f\u8001\uee5f\u8001\uee61"+ - "\u8001\uee62\u8001\uee64\u8001\uee64\u8001\uee67\u8001\uee6a\u8001\uee6c"+ - "\u8001\uee72\u8001\uee74\u8001\uee77\u8001\uee79\u8001\uee7c\u8001\uee7e"+ - "\u8001\uee7e\u8001\uee80\u8001\uee89\u8001\uee8b\u8001\uee9b\u8001\ueea1"+ - "\u8001\ueea3\u8001\ueea5\u8001\ueea9\u8001\ueeab\u8001\ueebb\u8002\u0000"+ - "\u8002\ua6df\u8002\ua700\u8002\ub739\u8002\ub740\u8002\ub81d\u8002\ub820"+ - "\u8002\ucea1\u8002\uceb0\u8002\uebe0\u8002\uf800\u8002\ufa1d\u8003\u0000"+ - "\u8003\u134a\u8003\u1350\u8003\u23af\u061b\u0000\u0002\u0001\u0000\u0000"+ - "\u0000\u0000\u0004\u0001\u0000\u0000\u0000\u0000\u0006\u0001\u0000\u0000"+ - "\u0000\u0000\b\u0001\u0000\u0000\u0000\u0000\n\u0001\u0000\u0000\u0000"+ - "\u0000\f\u0001\u0000\u0000\u0000\u0000\u000e\u0001\u0000\u0000\u0000\u0000"+ - "\u0010\u0001\u0000\u0000\u0000\u0000\u0012\u0001\u0000\u0000\u0000\u0000"+ - "\u0014\u0001\u0000\u0000\u0000\u0000\u0016\u0001\u0000\u0000\u0000\u0000"+ - "\u0018\u0001\u0000\u0000\u0000\u0000\u001a\u0001\u0000\u0000\u0000\u0000"+ - "\u001c\u0001\u0000\u0000\u0000\u0000\u001e\u0001\u0000\u0000\u0000\u0000"+ - " \u0001\u0000\u0000\u0000\u0000\"\u0001\u0000\u0000\u0000\u0000$\u0001"+ - "\u0000\u0000\u0000\u0000&\u0001\u0000\u0000\u0000\u0000(\u0001\u0000\u0000"+ - "\u0000\u0000*\u0001\u0000\u0000\u0000\u0000,\u0001\u0000\u0000\u0000\u0000"+ - ".\u0001\u0000\u0000\u0000\u00000\u0001\u0000\u0000\u0000\u00002\u0001"+ - "\u0000\u0000\u0000\u00004\u0001\u0000\u0000\u0000\u00006\u0001\u0000\u0000"+ - "\u0000\u00008\u0001\u0000\u0000\u0000\u0000:\u0001\u0000\u0000\u0000\u0000"+ - "<\u0001\u0000\u0000\u0000\u0000>\u0001\u0000\u0000\u0000\u0000@\u0001"+ - "\u0000\u0000\u0000\u0000B\u0001\u0000\u0000\u0000\u0000D\u0001\u0000\u0000"+ - "\u0000\u0000F\u0001\u0000\u0000\u0000\u0000H\u0001\u0000\u0000\u0000\u0000"+ - "J\u0001\u0000\u0000\u0000\u0000L\u0001\u0000\u0000\u0000\u0000N\u0001"+ - "\u0000\u0000\u0000\u0000P\u0001\u0000\u0000\u0000\u0000R\u0001\u0000\u0000"+ - "\u0000\u0000T\u0001\u0000\u0000\u0000\u0000V\u0001\u0000\u0000\u0000\u0000"+ - "X\u0001\u0000\u0000\u0000\u0000Z\u0001\u0000\u0000\u0000\u0000\\\u0001"+ - "\u0000\u0000\u0000\u0000^\u0001\u0000\u0000\u0000\u0000`\u0001\u0000\u0000"+ - "\u0000\u0000b\u0001\u0000\u0000\u0000\u0000d\u0001\u0000\u0000\u0000\u0000"+ - "f\u0001\u0000\u0000\u0000\u0000h\u0001\u0000\u0000\u0000\u0000j\u0001"+ - "\u0000\u0000\u0000\u0000l\u0001\u0000\u0000\u0000\u0000n\u0001\u0000\u0000"+ - "\u0000\u0000p\u0001\u0000\u0000\u0000\u0000r\u0001\u0000\u0000\u0000\u0000"+ - "t\u0001\u0000\u0000\u0000\u0000v\u0001\u0000\u0000\u0000\u0000x\u0001"+ - "\u0000\u0000\u0000\u0000z\u0001\u0000\u0000\u0000\u0000|\u0001\u0000\u0000"+ - "\u0000\u0000~\u0001\u0000\u0000\u0000\u0000\u0080\u0001\u0000\u0000\u0000"+ - "\u0000\u0082\u0001\u0000\u0000\u0000\u0000\u0084\u0001\u0000\u0000\u0000"+ - "\u0000\u0086\u0001\u0000\u0000\u0000\u0000\u0088\u0001\u0000\u0000\u0000"+ - "\u0000\u008a\u0001\u0000\u0000\u0000\u0000\u008c\u0001\u0000\u0000\u0000"+ - "\u0000\u008e\u0001\u0000\u0000\u0000\u0000\u0090\u0001\u0000\u0000\u0000"+ - "\u0000\u0092\u0001\u0000\u0000\u0000\u0000\u0094\u0001\u0000\u0000\u0000"+ - "\u0000\u0096\u0001\u0000\u0000\u0000\u0000\u0098\u0001\u0000\u0000\u0000"+ - "\u0000\u009a\u0001\u0000\u0000\u0000\u0000\u009c\u0001\u0000\u0000\u0000"+ - "\u0000\u009e\u0001\u0000\u0000\u0000\u0000\u00a0\u0001\u0000\u0000\u0000"+ - "\u0000\u00a2\u0001\u0000\u0000\u0000\u0000\u00a4\u0001\u0000\u0000\u0000"+ - "\u0000\u00a6\u0001\u0000\u0000\u0000\u0000\u00a8\u0001\u0000\u0000\u0000"+ - "\u0000\u00aa\u0001\u0000\u0000\u0000\u0000\u00ac\u0001\u0000\u0000\u0000"+ - "\u0000\u00ae\u0001\u0000\u0000\u0000\u0000\u00b0\u0001\u0000\u0000\u0000"+ - "\u0000\u00b2\u0001\u0000\u0000\u0000\u0000\u00b4\u0001\u0000\u0000\u0000"+ - "\u0000\u00b6\u0001\u0000\u0000\u0000\u0000\u00b8\u0001\u0000\u0000\u0000"+ - "\u0000\u00ba\u0001\u0000\u0000\u0000\u0000\u00bc\u0001\u0000\u0000\u0000"+ - "\u0000\u00be\u0001\u0000\u0000\u0000\u0000\u00c0\u0001\u0000\u0000\u0000"+ - "\u0000\u00c2\u0001\u0000\u0000\u0000\u0000\u00c4\u0001\u0000\u0000\u0000"+ - "\u0000\u00c6\u0001\u0000\u0000\u0000\u0000\u00c8\u0001\u0000\u0000\u0000"+ - "\u0000\u00ca\u0001\u0000\u0000\u0000\u0000\u00cc\u0001\u0000\u0000\u0000"+ - "\u0000\u00ce\u0001\u0000\u0000\u0000\u0000\u00d0\u0001\u0000\u0000\u0000"+ - "\u0000\u00d2\u0001\u0000\u0000\u0000\u0000\u00d4\u0001\u0000\u0000\u0000"+ - "\u0000\u00d6\u0001\u0000\u0000\u0000\u0000\u00d8\u0001\u0000\u0000\u0000"+ - "\u0000\u00da\u0001\u0000\u0000\u0000\u0000\u00dc\u0001\u0000\u0000\u0000"+ - "\u0000\u00de\u0001\u0000\u0000\u0000\u0000\u00e0\u0001\u0000\u0000\u0000"+ - "\u0000\u00e2\u0001\u0000\u0000\u0000\u0000\u00e4\u0001\u0000\u0000\u0000"+ - "\u0000\u00e6\u0001\u0000\u0000\u0000\u0000\u00e8\u0001\u0000\u0000\u0000"+ - "\u0000\u00ea\u0001\u0000\u0000\u0000\u0000\u00ec\u0001\u0000\u0000\u0000"+ - "\u0000\u00ee\u0001\u0000\u0000\u0000\u0000\u00f0\u0001\u0000\u0000\u0000"+ - "\u0000\u00f2\u0001\u0000\u0000\u0000\u0000\u00f4\u0001\u0000\u0000\u0000"+ - "\u0000\u00f6\u0001\u0000\u0000\u0000\u0000\u00f8\u0001\u0000\u0000\u0000"+ - "\u0000\u00fa\u0001\u0000\u0000\u0000\u0000\u00fc\u0001\u0000\u0000\u0000"+ - "\u0000\u00fe\u0001\u0000\u0000\u0000\u0000\u0100\u0001\u0000\u0000\u0000"+ - "\u0000\u0102\u0001\u0000\u0000\u0000\u0000\u0104\u0001\u0000\u0000\u0000"+ - "\u0000\u0106\u0001\u0000\u0000\u0000\u0000\u0108\u0001\u0000\u0000\u0000"+ - "\u0000\u010a\u0001\u0000\u0000\u0000\u0000\u010c\u0001\u0000\u0000\u0000"+ - "\u0000\u010e\u0001\u0000\u0000\u0000\u0000\u0110\u0001\u0000\u0000\u0000"+ - "\u0000\u0112\u0001\u0000\u0000\u0000\u0000\u0114\u0001\u0000\u0000\u0000"+ - "\u0000\u0116\u0001\u0000\u0000\u0000\u0000\u0118\u0001\u0000\u0000\u0000"+ - "\u0000\u011a\u0001\u0000\u0000\u0000\u0000\u011c\u0001\u0000\u0000\u0000"+ - "\u0000\u011e\u0001\u0000\u0000\u0000\u0000\u0120\u0001\u0000\u0000\u0000"+ - "\u0000\u0126\u0001\u0000\u0000\u0000\u0000\u012a\u0001\u0000\u0000\u0000"+ - "\u0000\u012c\u0001\u0000\u0000\u0000\u0000\u012e\u0001\u0000\u0000\u0000"+ - "\u0000\u0130\u0001\u0000\u0000\u0000\u0000\u0132\u0001\u0000\u0000\u0000"+ - "\u0000\u0134\u0001\u0000\u0000\u0000\u0000\u0136\u0001\u0000\u0000\u0000"+ - "\u0000\u0138\u0001\u0000\u0000\u0000\u0000\u013a\u0001\u0000\u0000\u0000"+ - "\u0000\u013c\u0001\u0000\u0000\u0000\u0000\u013e\u0001\u0000\u0000\u0000"+ - "\u0000\u0140\u0001\u0000\u0000\u0000\u0001\u0156\u0001\u0000\u0000\u0000"+ - "\u0001\u0158\u0001\u0000\u0000\u0000\u0001\u015a\u0001\u0000\u0000\u0000"+ - "\u0001\u015c\u0001\u0000\u0000\u0000\u0001\u015e\u0001\u0000\u0000\u0000"+ - "\u0002\u0162\u0001\u0000\u0000\u0000\u0004\u0178\u0001\u0000\u0000\u0000"+ - "\u0006\u017a\u0001\u0000\u0000\u0000\b\u0181\u0001\u0000\u0000\u0000\n"+ - "\u0189\u0001\u0000\u0000\u0000\f\u0190\u0001\u0000\u0000\u0000\u000e\u0197"+ - "\u0001\u0000\u0000\u0000\u0010\u019e\u0001\u0000\u0000\u0000\u0012\u01a5"+ - "\u0001\u0000\u0000\u0000\u0014\u01ae\u0001\u0000\u0000\u0000\u0016\u01b8"+ - "\u0001\u0000\u0000\u0000\u0018\u01c0\u0001\u0000\u0000\u0000\u001a\u01ca"+ - "\u0001\u0000\u0000\u0000\u001c\u01d6\u0001\u0000\u0000\u0000\u001e\u01dd"+ - "\u0001\u0000\u0000\u0000 \u01e8\u0001\u0000\u0000\u0000\"\u01eb\u0001"+ - "\u0000\u0000\u0000$\u01f1\u0001\u0000\u0000\u0000&\u01fa\u0001\u0000\u0000"+ - "\u0000(\u01ff\u0001\u0000\u0000\u0000*\u0206\u0001\u0000\u0000\u0000,"+ - "\u020d\u0001\u0000\u0000\u0000.\u0213\u0001\u0000\u0000\u00000\u0218\u0001"+ - "\u0000\u0000\u00002\u021f\u0001\u0000\u0000\u00004\u0229\u0001\u0000\u0000"+ - "\u00006\u022d\u0001\u0000\u0000\u00008\u0233\u0001\u0000\u0000\u0000:"+ - "\u0236\u0001\u0000\u0000\u0000<\u0238\u0001\u0000\u0000\u0000>\u023f\u0001"+ - "\u0000\u0000\u0000@\u0245\u0001\u0000\u0000\u0000B\u0252\u0001\u0000\u0000"+ - "\u0000D\u025b\u0001\u0000\u0000\u0000F\u025f\u0001\u0000\u0000\u0000H"+ - "\u0263\u0001\u0000\u0000\u0000J\u0269\u0001\u0000\u0000\u0000L\u026b\u0001"+ - "\u0000\u0000\u0000N\u026e\u0001\u0000\u0000\u0000P\u0273\u0001\u0000\u0000"+ - "\u0000R\u0279\u0001\u0000\u0000\u0000T\u027f\u0001\u0000\u0000\u0000V"+ - "\u0286\u0001\u0000\u0000\u0000X\u028d\u0001\u0000\u0000\u0000Z\u0296\u0001"+ - "\u0000\u0000\u0000\\\u029c\u0001\u0000\u0000\u0000^\u02a2\u0001\u0000"+ - "\u0000\u0000`\u02a9\u0001\u0000\u0000\u0000b\u02af\u0001\u0000\u0000\u0000"+ - "d\u02b6\u0001\u0000\u0000\u0000f\u02bc\u0001\u0000\u0000\u0000h\u02c5"+ - "\u0001\u0000\u0000\u0000j\u02cd\u0001\u0000\u0000\u0000l\u02d3\u0001\u0000"+ - "\u0000\u0000n\u02db\u0001\u0000\u0000\u0000p\u02e2\u0001\u0000\u0000\u0000"+ - "r\u02e7\u0001\u0000\u0000\u0000t\u02f0\u0001\u0000\u0000\u0000v\u02ff"+ - "\u0001\u0000\u0000\u0000x\u0305\u0001\u0000\u0000\u0000z\u0309\u0001\u0000"+ - "\u0000\u0000|\u030c\u0001\u0000\u0000\u0000~\u0313\u0001\u0000\u0000\u0000"+ - "\u0080\u031d\u0001\u0000\u0000\u0000\u0082\u0327\u0001\u0000\u0000\u0000"+ - "\u0084\u0333\u0001\u0000\u0000\u0000\u0086\u033c\u0001\u0000\u0000\u0000"+ - "\u0088\u0346\u0001\u0000\u0000\u0000\u008a\u034e\u0001\u0000\u0000\u0000"+ - "\u008c\u035a\u0001\u0000\u0000\u0000\u008e\u0369\u0001\u0000\u0000\u0000"+ - "\u0090\u036f\u0001\u0000\u0000\u0000\u0092\u0373\u0001\u0000\u0000\u0000"+ - "\u0094\u0377\u0001\u0000\u0000\u0000\u0096\u037c\u0001\u0000\u0000\u0000"+ - "\u0098\u0385\u0001\u0000\u0000\u0000\u009a\u038c\u0001\u0000\u0000\u0000"+ - "\u009c\u0394\u0001\u0000\u0000\u0000\u009e\u039c\u0001\u0000\u0000\u0000"+ - "\u00a0\u03a1\u0001\u0000\u0000\u0000\u00a2\u03ab\u0001\u0000\u0000\u0000"+ - "\u00a4\u03b2\u0001\u0000\u0000\u0000\u00a6\u03b7\u0001\u0000\u0000\u0000"+ - "\u00a8\u03bd\u0001\u0000\u0000\u0000\u00aa\u03c0\u0001\u0000\u0000\u0000"+ - "\u00ac\u03c4\u0001\u0000\u0000\u0000\u00ae\u03cb\u0001\u0000\u0000\u0000"+ - "\u00b0\u03d0\u0001\u0000\u0000\u0000\u00b2\u03d5\u0001\u0000\u0000\u0000"+ - "\u00b4\u03da\u0001\u0000\u0000\u0000\u00b6\u03e2\u0001\u0000\u0000\u0000"+ - "\u00b8\u03e9\u0001\u0000\u0000\u0000\u00ba\u03ef\u0001\u0000\u0000\u0000"+ - "\u00bc\u03fd\u0001\u0000\u0000\u0000\u00be\u0400\u0001\u0000\u0000\u0000"+ - "\u00c0\u0406\u0001\u0000\u0000\u0000\u00c2\u040b\u0001\u0000\u0000\u0000"+ - "\u00c4\u0416\u0001\u0000\u0000\u0000\u00c6\u041a\u0001\u0000\u0000\u0000"+ - "\u00c8\u0421\u0001\u0000\u0000\u0000\u00ca\u042a\u0001\u0000\u0000\u0000"+ - "\u00cc\u042e\u0001\u0000\u0000\u0000\u00ce\u0434\u0001\u0000\u0000\u0000"+ - "\u00d0\u043e\u0001\u0000\u0000\u0000\u00d2\u0440\u0001\u0000\u0000\u0000"+ - "\u00d4\u0444\u0001\u0000\u0000\u0000\u00d6\u0446\u0001\u0000\u0000\u0000"+ - "\u00d8\u044a\u0001\u0000\u0000\u0000\u00da\u044c\u0001\u0000\u0000\u0000"+ - "\u00dc\u0450\u0001\u0000\u0000\u0000\u00de\u0452\u0001\u0000\u0000\u0000"+ - "\u00e0\u0454\u0001\u0000\u0000\u0000\u00e2\u0456\u0001\u0000\u0000\u0000"+ - "\u00e4\u0458\u0001\u0000\u0000\u0000\u00e6\u045a\u0001\u0000\u0000\u0000"+ - "\u00e8\u045f\u0001\u0000\u0000\u0000\u00ea\u0464\u0001\u0000\u0000\u0000"+ - "\u00ec\u0467\u0001\u0000\u0000\u0000\u00ee\u046b\u0001\u0000\u0000\u0000"+ - "\u00f0\u046e\u0001\u0000\u0000\u0000\u00f2\u0471\u0001\u0000\u0000\u0000"+ - "\u00f4\u0474\u0001\u0000\u0000\u0000\u00f6\u0477\u0001\u0000\u0000\u0000"+ - "\u00f8\u0479\u0001\u0000\u0000\u0000\u00fa\u047c\u0001\u0000\u0000\u0000"+ - "\u00fc\u047e\u0001\u0000\u0000\u0000\u00fe\u0481\u0001\u0000\u0000\u0000"+ - "\u0100\u0483\u0001\u0000\u0000\u0000\u0102\u0485\u0001\u0000\u0000\u0000"+ - "\u0104\u0487\u0001\u0000\u0000\u0000\u0106\u048a\u0001\u0000\u0000\u0000"+ - "\u0108\u048d\u0001\u0000\u0000\u0000\u010a\u0490\u0001\u0000\u0000\u0000"+ - "\u010c\u0492\u0001\u0000\u0000\u0000\u010e\u0494\u0001\u0000\u0000\u0000"+ - "\u0110\u0496\u0001\u0000\u0000\u0000\u0112\u0498\u0001\u0000\u0000\u0000"+ - "\u0114\u049a\u0001\u0000\u0000\u0000\u0116\u049c\u0001\u0000\u0000\u0000"+ - "\u0118\u04aa\u0001\u0000\u0000\u0000\u011a\u04ae\u0001\u0000\u0000\u0000"+ - "\u011c\u04ba\u0001\u0000\u0000\u0000\u011e\u04c8\u0001\u0000\u0000\u0000"+ - "\u0120\u04d4\u0001\u0000\u0000\u0000\u0122\u04f8\u0001\u0000\u0000\u0000"+ - "\u0124\u04fa\u0001\u0000\u0000\u0000\u0126\u0505\u0001\u0000\u0000\u0000"+ - "\u0128\u050b\u0001\u0000\u0000\u0000\u012a\u0512\u0001\u0000\u0000\u0000"+ - "\u012c\u0518\u0001\u0000\u0000\u0000\u012e\u051a\u0001\u0000\u0000\u0000"+ - "\u0130\u051f\u0001\u0000\u0000\u0000\u0132\u0524\u0001\u0000\u0000\u0000"+ - "\u0134\u052b\u0001\u0000\u0000\u0000\u0136\u0536\u0001\u0000\u0000\u0000"+ - "\u0138\u0541\u0001\u0000\u0000\u0000\u013a\u054e\u0001\u0000\u0000\u0000"+ - "\u013c\u0554\u0001\u0000\u0000\u0000\u013e\u0563\u0001\u0000\u0000\u0000"+ - "\u0140\u0569\u0001\u0000\u0000\u0000\u0142\u0578\u0001\u0000\u0000\u0000"+ - "\u0144\u057a\u0001\u0000\u0000\u0000\u0146\u0596\u0001\u0000\u0000\u0000"+ - "\u0148\u05a0\u0001\u0000\u0000\u0000\u014a\u05a2\u0001\u0000\u0000\u0000"+ - "\u014c\u05a4\u0001\u0000\u0000\u0000\u014e\u05a6\u0001\u0000\u0000\u0000"+ - "\u0150\u05ae\u0001\u0000\u0000\u0000\u0152\u05b0\u0001\u0000\u0000\u0000"+ - "\u0154\u05b2\u0001\u0000\u0000\u0000\u0156\u05b5\u0001\u0000\u0000\u0000"+ - "\u0158\u05bb\u0001\u0000\u0000\u0000\u015a\u05c9\u0001\u0000\u0000\u0000"+ - "\u015c\u05e6\u0001\u0000\u0000\u0000\u015e\u05ea\u0001\u0000\u0000\u0000"+ - "\u0160\u0163\u0003\u0004\u0001\u0000\u0161\u0163\u0003\u0120\u008f\u0000"+ - "\u0162\u0160\u0001\u0000\u0000\u0000\u0162\u0161\u0001\u0000\u0000\u0000"+ - "\u0163\u0164\u0001\u0000\u0000\u0000\u0164\u0165\u0006\u0000\u0000\u0000"+ - "\u0165\u0003\u0001\u0000\u0000\u0000\u0166\u0170\u0003\u0146\u00a2\u0000"+ - "\u0167\u0168\u0005.\u0000\u0000\u0168\u016a\u0004\u0001\u0000\u0000\u0169"+ - "\u016b\u0003\u0146\u00a2\u0000\u016a\u0169\u0001\u0000\u0000\u0000\u016a"+ - "\u016b\u0001\u0000\u0000\u0000\u016b\u016d\u0001\u0000\u0000\u0000\u016c"+ - "\u016e\u0003\u014e\u00a6\u0000\u016d\u016c\u0001\u0000\u0000\u0000\u016d"+ - "\u016e\u0001\u0000\u0000\u0000\u016e\u0171\u0001\u0000\u0000\u0000\u016f"+ - "\u0171\u0003\u014e\u00a6\u0000\u0170\u0167\u0001\u0000\u0000\u0000\u0170"+ - "\u016f\u0001\u0000\u0000\u0000\u0171\u0179\u0001\u0000\u0000\u0000\u0172"+ - "\u0173\u0005.\u0000\u0000\u0173\u0174\u0004\u0001\u0001\u0000\u0174\u0176"+ - "\u0003\u0146\u00a2\u0000\u0175\u0177\u0003\u014e\u00a6\u0000\u0176\u0175"+ - "\u0001\u0000\u0000\u0000\u0176\u0177\u0001\u0000\u0000\u0000\u0177\u0179"+ - "\u0001\u0000\u0000\u0000\u0178\u0166\u0001\u0000\u0000\u0000\u0178\u0172"+ - "\u0001\u0000\u0000\u0000\u0179\u0005\u0001\u0000\u0000\u0000\u017a\u017b"+ - "\u0005t\u0000\u0000\u017b\u017c\u0005r\u0000\u0000\u017c\u017d\u0005u"+ - "\u0000\u0000\u017d\u017e\u0005e\u0000\u0000\u017e\u017f\u0001\u0000\u0000"+ - "\u0000\u017f\u0180\u0006\u0002\u0000\u0000\u0180\u0007\u0001\u0000\u0000"+ - "\u0000\u0181\u0182\u0005f\u0000\u0000\u0182\u0183\u0005a\u0000\u0000\u0183"+ - "\u0184\u0005l\u0000\u0000\u0184\u0185\u0005s\u0000\u0000\u0185\u0186\u0005"+ - "e\u0000\u0000\u0186\u0187\u0001\u0000\u0000\u0000\u0187\u0188\u0006\u0003"+ - "\u0000\u0000\u0188\t\u0001\u0000\u0000\u0000\u0189\u018a\u0005a\u0000"+ - "\u0000\u018a\u018b\u0005s\u0000\u0000\u018b\u018c\u0005s\u0000\u0000\u018c"+ - "\u018d\u0005e\u0000\u0000\u018d\u018e\u0005r\u0000\u0000\u018e\u018f\u0005"+ - "t\u0000\u0000\u018f\u000b\u0001\u0000\u0000\u0000\u0190\u0191\u0005a\u0000"+ - "\u0000\u0191\u0192\u0005s\u0000\u0000\u0192\u0193\u0005s\u0000\u0000\u0193"+ - "\u0194\u0005u\u0000\u0000\u0194\u0195\u0005m\u0000\u0000\u0195\u0196\u0005"+ - "e\u0000\u0000\u0196\r\u0001\u0000\u0000\u0000\u0197\u0198\u0005i\u0000"+ - "\u0000\u0198\u0199\u0005n\u0000\u0000\u0199\u019a\u0005h\u0000\u0000\u019a"+ - "\u019b\u0005a\u0000\u0000\u019b\u019c\u0005l\u0000\u0000\u019c\u019d\u0005"+ - "e\u0000\u0000\u019d\u000f\u0001\u0000\u0000\u0000\u019e\u019f\u0005e\u0000"+ - "\u0000\u019f\u01a0\u0005x\u0000\u0000\u01a0\u01a1\u0005h\u0000\u0000\u01a1"+ - "\u01a2\u0005a\u0000\u0000\u01a2\u01a3\u0005l\u0000\u0000\u01a3\u01a4\u0005"+ - "e\u0000\u0000\u01a4\u0011\u0001\u0000\u0000\u0000\u01a5\u01a6\u0005r\u0000"+ - "\u0000\u01a6\u01a7\u0005e\u0000\u0000\u01a7\u01a8\u0005q\u0000\u0000\u01a8"+ - "\u01a9\u0005u\u0000\u0000\u01a9\u01aa\u0005i\u0000\u0000\u01aa\u01ab\u0005"+ - "r\u0000\u0000\u01ab\u01ac\u0005e\u0000\u0000\u01ac\u01ad\u0005s\u0000"+ - "\u0000\u01ad\u0013\u0001\u0000\u0000\u0000\u01ae\u01af\u0005p\u0000\u0000"+ - "\u01af\u01b0\u0005r\u0000\u0000\u01b0\u01b1\u0005e\u0000\u0000\u01b1\u01b2"+ - "\u0005s\u0000\u0000\u01b2\u01b3\u0005e\u0000\u0000\u01b3\u01b4\u0005r"+ - "\u0000\u0000\u01b4\u01b5\u0005v\u0000\u0000\u01b5\u01b6\u0005e\u0000\u0000"+ - "\u01b6\u01b7\u0005s\u0000\u0000\u01b7\u0015\u0001\u0000\u0000\u0000\u01b8"+ - "\u01b9\u0005e\u0000\u0000\u01b9\u01ba\u0005n\u0000\u0000\u01ba\u01bb\u0005"+ - "s\u0000\u0000\u01bb\u01bc\u0005u\u0000\u0000\u01bc\u01bd\u0005r\u0000"+ - "\u0000\u01bd\u01be\u0005e\u0000\u0000\u01be\u01bf\u0005s\u0000\u0000\u01bf"+ - "\u0017\u0001\u0000\u0000\u0000\u01c0\u01c1\u0005i\u0000\u0000\u01c1\u01c2"+ - "\u0005n\u0000\u0000\u01c2\u01c3\u0005v\u0000\u0000\u01c3\u01c4\u0005a"+ - "\u0000\u0000\u01c4\u01c5\u0005r\u0000\u0000\u01c5\u01c6\u0005i\u0000\u0000"+ - "\u01c6\u01c7\u0005a\u0000\u0000\u01c7\u01c8\u0005n\u0000\u0000\u01c8\u01c9"+ - "\u0005t\u0000\u0000\u01c9\u0019\u0001\u0000\u0000\u0000\u01ca\u01cb\u0005"+ - "d\u0000\u0000\u01cb\u01cc\u0005e\u0000\u0000\u01cc\u01cd\u0005c\u0000"+ - "\u0000\u01cd\u01ce\u0005r\u0000\u0000\u01ce\u01cf\u0005e\u0000\u0000\u01cf"+ - "\u01d0\u0005a\u0000\u0000\u01d0\u01d1\u0005s\u0000\u0000\u01d1\u01d2\u0005"+ - "e\u0000\u0000\u01d2\u01d3\u0005s\u0000\u0000\u01d3\u01d4\u0001\u0000\u0000"+ - "\u0000\u01d4\u01d5\u0006\f\u0000\u0000\u01d5\u001b\u0001\u0000\u0000\u0000"+ - "\u01d6\u01d7\u0005p\u0000\u0000\u01d7\u01d8\u0005u\u0000\u0000\u01d8\u01d9"+ - "\u0005r\u0000\u0000\u01d9\u01da\u0005e\u0000\u0000\u01da\u01db\u0001\u0000"+ - "\u0000\u0000\u01db\u01dc\u0006\r\u0000\u0000\u01dc\u001d\u0001\u0000\u0000"+ - "\u0000\u01dd\u01de\u0005i\u0000\u0000\u01de\u01df\u0005m\u0000\u0000\u01df"+ - "\u01e0\u0005p\u0000\u0000\u01e0\u01e1\u0005l\u0000\u0000\u01e1\u01e2\u0005"+ - "e\u0000\u0000\u01e2\u01e3\u0005m\u0000\u0000\u01e3\u01e4\u0005e\u0000"+ - "\u0000\u01e4\u01e5\u0005n\u0000\u0000\u01e5\u01e6\u0005t\u0000\u0000\u01e6"+ - "\u01e7\u0005s\u0000\u0000\u01e7\u001f\u0001\u0000\u0000\u0000\u01e8\u01e9"+ - "\u0005a\u0000\u0000\u01e9\u01ea\u0005s\u0000\u0000\u01ea!\u0001\u0000"+ - "\u0000\u0000\u01eb\u01ec\u0005o\u0000\u0000\u01ec\u01ed\u0005l\u0000\u0000"+ - "\u01ed\u01ee\u0005d\u0000\u0000\u01ee\u01ef\u0001\u0000\u0000\u0000\u01ef"+ - "\u01f0\u0006\u0010\u0000\u0000\u01f0#\u0001\u0000\u0000\u0000\u01f1\u01f2"+ - "\u0005b\u0000\u0000\u01f2\u01f3\u0005e\u0000\u0000\u01f3\u01f4\u0005f"+ - "\u0000\u0000\u01f4\u01f5\u0005o\u0000\u0000\u01f5\u01f6\u0005r\u0000\u0000"+ - "\u01f6\u01f7\u0005e\u0000\u0000\u01f7\u01f8\u0001\u0000\u0000\u0000\u01f8"+ - "\u01f9\u0006\u0011\u0000\u0000\u01f9%\u0001\u0000\u0000\u0000\u01fa\u01fb"+ - "\u0005#\u0000\u0000\u01fb\u01fc\u0005l\u0000\u0000\u01fc\u01fd\u0005h"+ - "\u0000\u0000\u01fd\u01fe\u0005s\u0000\u0000\u01fe\'\u0001\u0000\u0000"+ - "\u0000\u01ff\u0200\u0005f\u0000\u0000\u0200\u0201\u0005o\u0000\u0000\u0201"+ - "\u0202\u0005r\u0000\u0000\u0202\u0203\u0005a\u0000\u0000\u0203\u0204\u0005"+ - "l\u0000\u0000\u0204\u0205\u0005l\u0000\u0000\u0205)\u0001\u0000\u0000"+ - "\u0000\u0206\u0207\u0005e\u0000\u0000\u0207\u0208\u0005x\u0000\u0000\u0208"+ - "\u0209\u0005i\u0000\u0000\u0209\u020a\u0005s\u0000\u0000\u020a\u020b\u0005"+ - "t\u0000\u0000\u020b\u020c\u0005s\u0000\u0000\u020c+\u0001\u0000\u0000"+ - "\u0000\u020d\u020e\u0005a\u0000\u0000\u020e\u020f\u0005c\u0000\u0000\u020f"+ - "\u0210\u0005c\u0000\u0000\u0210\u0211\u0001\u0000\u0000\u0000\u0211\u0212"+ - "\u0006\u0015\u0000\u0000\u0212-\u0001\u0000\u0000\u0000\u0213\u0214\u0005"+ - "f\u0000\u0000\u0214\u0215\u0005o\u0000\u0000\u0215\u0216\u0005l\u0000"+ - "\u0000\u0216\u0217\u0005d\u0000\u0000\u0217/\u0001\u0000\u0000\u0000\u0218"+ - "\u0219\u0005u\u0000\u0000\u0219\u021a\u0005n\u0000\u0000\u021a\u021b\u0005"+ - "f\u0000\u0000\u021b\u021c\u0005o\u0000\u0000\u021c\u021d\u0005l\u0000"+ - "\u0000\u021d\u021e\u0005d\u0000\u0000\u021e1\u0001\u0000\u0000\u0000\u021f"+ - "\u0220\u0005u\u0000\u0000\u0220\u0221\u0005n\u0000\u0000\u0221\u0222\u0005"+ - "f\u0000\u0000\u0222\u0223\u0005o\u0000\u0000\u0223\u0224\u0005l\u0000"+ - "\u0000\u0224\u0225\u0005d\u0000\u0000\u0225\u0226\u0005i\u0000\u0000\u0226"+ - "\u0227\u0005n\u0000\u0000\u0227\u0228\u0005g\u0000\u0000\u02283\u0001"+ - "\u0000\u0000\u0000\u0229\u022a\u0005l\u0000\u0000\u022a\u022b\u0005e\u0000"+ - "\u0000\u022b\u022c\u0005t\u0000\u0000\u022c5\u0001\u0000\u0000\u0000\u022d"+ - "\u022e\u0005g\u0000\u0000\u022e\u022f\u0005h\u0000\u0000\u022f\u0230\u0005"+ - "o\u0000\u0000\u0230\u0231\u0005s\u0000\u0000\u0231\u0232\u0005t\u0000"+ - "\u0000\u02327\u0001\u0000\u0000\u0000\u0233\u0234\u0005i\u0000\u0000\u0234"+ - "\u0235\u0005n\u0000\u0000\u02359\u0001\u0000\u0000\u0000\u0236\u0237\u0005"+ - "#\u0000\u0000\u0237;\u0001\u0000\u0000\u0000\u0238\u0239\u0005s\u0000"+ - "\u0000\u0239\u023a\u0005u\u0000\u0000\u023a\u023b\u0005b\u0000\u0000\u023b"+ - "\u023c\u0005s\u0000\u0000\u023c\u023d\u0005e\u0000\u0000\u023d\u023e\u0005"+ - "t\u0000\u0000\u023e=\u0001\u0000\u0000\u0000\u023f\u0240\u0005u\u0000"+ - "\u0000\u0240\u0241\u0005n\u0000\u0000\u0241\u0242\u0005i\u0000\u0000\u0242"+ - "\u0243\u0005o\u0000\u0000\u0243\u0244\u0005n\u0000\u0000\u0244?\u0001"+ - "\u0000\u0000\u0000\u0245\u0246\u0005i\u0000\u0000\u0246\u0247\u0005n\u0000"+ - "\u0000\u0247\u0248\u0005t\u0000\u0000\u0248\u0249\u0005e\u0000\u0000\u0249"+ - "\u024a\u0005r\u0000\u0000\u024a\u024b\u0005s\u0000\u0000\u024b\u024c\u0005"+ - "e\u0000\u0000\u024c\u024d\u0005c\u0000\u0000\u024d\u024e\u0005t\u0000"+ - "\u0000\u024e\u024f\u0005i\u0000\u0000\u024f\u0250\u0005o\u0000\u0000\u0250"+ - "\u0251\u0005n\u0000\u0000\u0251A\u0001\u0000\u0000\u0000\u0252\u0253\u0005"+ - "s\u0000\u0000\u0253\u0254\u0005e\u0000\u0000\u0254\u0255\u0005t\u0000"+ - "\u0000\u0255\u0256\u0005m\u0000\u0000\u0256\u0257\u0005i\u0000\u0000\u0257"+ - "\u0258\u0005n\u0000\u0000\u0258\u0259\u0005u\u0000\u0000\u0259\u025a\u0005"+ - "s\u0000\u0000\u025aC\u0001\u0000\u0000\u0000\u025b\u025c\u0005=\u0000"+ - "\u0000\u025c\u025d\u0005=\u0000\u0000\u025d\u025e\u0005>\u0000\u0000\u025e"+ - "E\u0001\u0000\u0000\u0000\u025f\u0260\u0005-\u0000\u0000\u0260\u0261\u0005"+ - "-\u0000\u0000\u0261\u0262\u0005*\u0000\u0000\u0262G\u0001\u0000\u0000"+ - "\u0000\u0263\u0264\u0005a\u0000\u0000\u0264\u0265\u0005p\u0000\u0000\u0265"+ - "\u0266\u0005p\u0000\u0000\u0266\u0267\u0005l\u0000\u0000\u0267\u0268\u0005"+ - "y\u0000\u0000\u0268I\u0001\u0000\u0000\u0000\u0269\u026a\u0005?\u0000"+ - "\u0000\u026aK\u0001\u0000\u0000\u0000\u026b\u026c\u0005!\u0000\u0000\u026c"+ - "\u026d\u0005<\u0000\u0000\u026dM\u0001\u0000\u0000\u0000\u026e\u026f\u0005"+ - "!\u0000\u0000\u026f\u0270\u0005>\u0000\u0000\u0270\u0271\u0001\u0000\u0000"+ - "\u0000\u0271\u0272\u0006&\u0000\u0000\u0272O\u0001\u0000\u0000\u0000\u0273"+ - "\u0274\u0005s\u0000\u0000\u0274\u0275\u0005e\u0000\u0000\u0275\u0276\u0005"+ - "q\u0000\u0000\u0276\u0277\u0001\u0000\u0000\u0000\u0277\u0278\u0006\'"+ - "\u0000\u0000\u0278Q\u0001\u0000\u0000\u0000\u0279\u027a\u0005s\u0000\u0000"+ - "\u027a\u027b\u0005e\u0000\u0000\u027b\u027c\u0005t\u0000\u0000\u027c\u027d"+ - "\u0001\u0000\u0000\u0000\u027d\u027e\u0006(\u0000\u0000\u027eS\u0001\u0000"+ - "\u0000\u0000\u027f\u0280\u0005m\u0000\u0000\u0280\u0281\u0005s\u0000\u0000"+ - "\u0281\u0282\u0005e\u0000\u0000\u0282\u0283\u0005t\u0000\u0000\u0283\u0284"+ - "\u0001\u0000\u0000\u0000\u0284\u0285\u0006)\u0000\u0000\u0285U\u0001\u0000"+ - "\u0000\u0000\u0286\u0287\u0005d\u0000\u0000\u0287\u0288\u0005i\u0000\u0000"+ - "\u0288\u0289\u0005c\u0000\u0000\u0289\u028a\u0005t\u0000\u0000\u028a\u028b"+ - "\u0001\u0000\u0000\u0000\u028b\u028c\u0006*\u0000\u0000\u028cW\u0001\u0000"+ - "\u0000\u0000\u028d\u028e\u0005o\u0000\u0000\u028e\u028f\u0005p\u0000\u0000"+ - "\u028f\u0290\u0005t\u0000\u0000\u0290\u0291\u0005i\u0000\u0000\u0291\u0292"+ - "\u0005o\u0000\u0000\u0292\u0293\u0005n\u0000\u0000\u0293\u0294\u0001\u0000"+ - "\u0000\u0000\u0294\u0295\u0006+\u0000\u0000\u0295Y\u0001\u0000\u0000\u0000"+ - "\u0296\u0297\u0005l\u0000\u0000\u0297\u0298\u0005e\u0000\u0000\u0298\u0299"+ - "\u0005n\u0000\u0000\u0299\u029a\u0001\u0000\u0000\u0000\u029a\u029b\u0006"+ - ",\u0000\u0000\u029b[\u0001\u0000\u0000\u0000\u029c\u029d\u0005n\u0000"+ - "\u0000\u029d\u029e\u0005e\u0000\u0000\u029e\u029f\u0005w\u0000\u0000\u029f"+ - "\u02a0\u0001\u0000\u0000\u0000\u02a0\u02a1\u0006-\u0000\u0000\u02a1]\u0001"+ - "\u0000\u0000\u0000\u02a2\u02a3\u0005m\u0000\u0000\u02a3\u02a4\u0005a\u0000"+ - "\u0000\u02a4\u02a5\u0005k\u0000\u0000\u02a5\u02a6\u0005e\u0000\u0000\u02a6"+ - "\u02a7\u0001\u0000\u0000\u0000\u02a7\u02a8\u0006.\u0000\u0000\u02a8_\u0001"+ - "\u0000\u0000\u0000\u02a9\u02aa\u0005c\u0000\u0000\u02aa\u02ab\u0005a\u0000"+ - "\u0000\u02ab\u02ac\u0005p\u0000\u0000\u02ac\u02ad\u0001\u0000\u0000\u0000"+ - "\u02ad\u02ae\u0006/\u0000\u0000\u02aea\u0001\u0000\u0000\u0000\u02af\u02b0"+ - "\u0005s\u0000\u0000\u02b0\u02b1\u0005o\u0000\u0000\u02b1\u02b2\u0005m"+ - "\u0000\u0000\u02b2\u02b3\u0005e\u0000\u0000\u02b3\u02b4\u0001\u0000\u0000"+ - "\u0000\u02b4\u02b5\u00060\u0000\u0000\u02b5c\u0001\u0000\u0000\u0000\u02b6"+ - "\u02b7\u0005g\u0000\u0000\u02b7\u02b8\u0005e\u0000\u0000\u02b8\u02b9\u0005"+ - "t\u0000\u0000\u02b9\u02ba\u0001\u0000\u0000\u0000\u02ba\u02bb\u00061\u0000"+ - "\u0000\u02bbe\u0001\u0000\u0000\u0000\u02bc\u02bd\u0005d\u0000\u0000\u02bd"+ - "\u02be\u0005o\u0000\u0000\u02be\u02bf\u0005m\u0000\u0000\u02bf\u02c0\u0005"+ - "a\u0000\u0000\u02c0\u02c1\u0005i\u0000\u0000\u02c1\u02c2\u0005n\u0000"+ - "\u0000\u02c2\u02c3\u0001\u0000\u0000\u0000\u02c3\u02c4\u00062\u0000\u0000"+ - "\u02c4g\u0001\u0000\u0000\u0000\u02c5\u02c6\u0005a\u0000\u0000\u02c6\u02c7"+ - "\u0005x\u0000\u0000\u02c7\u02c8\u0005i\u0000\u0000\u02c8\u02c9\u0005o"+ - "\u0000\u0000\u02c9\u02ca\u0005m\u0000\u0000\u02ca\u02cb\u0001\u0000\u0000"+ - "\u0000\u02cb\u02cc\u00063\u0000\u0000\u02cci\u0001\u0000\u0000\u0000\u02cd"+ - "\u02ce\u0005a\u0000\u0000\u02ce\u02cf\u0005d\u0000\u0000\u02cf\u02d0\u0005"+ - "t\u0000\u0000\u02d0\u02d1\u0001\u0000\u0000\u0000\u02d1\u02d2\u00064\u0000"+ - "\u0000\u02d2k\u0001\u0000\u0000\u0000\u02d3\u02d4\u0005m\u0000\u0000\u02d4"+ - "\u02d5\u0005a\u0000\u0000\u02d5\u02d6\u0005t\u0000\u0000\u02d6\u02d7\u0005"+ - "c\u0000\u0000\u02d7\u02d8\u0005h\u0000\u0000\u02d8\u02d9\u0001\u0000\u0000"+ - "\u0000\u02d9\u02da\u00065\u0000\u0000\u02dam\u0001\u0000\u0000\u0000\u02db"+ - "\u02dc\u0005n\u0000\u0000\u02dc\u02dd\u0005o\u0000\u0000\u02dd\u02de\u0005"+ - "n\u0000\u0000\u02de\u02df\u0005e\u0000\u0000\u02df\u02e0\u0001\u0000\u0000"+ - "\u0000\u02e0\u02e1\u00066\u0000\u0000\u02e1o\u0001\u0000\u0000\u0000\u02e2"+ - "\u02e3\u0005p\u0000\u0000\u02e3\u02e4\u0005r\u0000\u0000\u02e4\u02e5\u0005"+ - "e\u0000\u0000\u02e5\u02e6\u0005d\u0000\u0000\u02e6q\u0001\u0000\u0000"+ - "\u0000\u02e7\u02e8\u0005t\u0000\u0000\u02e8\u02e9\u0005y\u0000\u0000\u02e9"+ - "\u02ea\u0005p\u0000\u0000\u02ea\u02eb\u0005e\u0000\u0000\u02eb\u02ec\u0005"+ - "O\u0000\u0000\u02ec\u02ed\u0005f\u0000\u0000\u02ed\u02ee\u0001\u0000\u0000"+ - "\u0000\u02ee\u02ef\u00068\u0000\u0000\u02efs\u0001\u0000\u0000\u0000\u02f0"+ - "\u02f1\u0005i\u0000\u0000\u02f1\u02f2\u0005s\u0000\u0000\u02f2\u02f3\u0005"+ - "C\u0000\u0000\u02f3\u02f4\u0005o\u0000\u0000\u02f4\u02f5\u0005m\u0000"+ - "\u0000\u02f5\u02f6\u0005p\u0000\u0000\u02f6\u02f7\u0005a\u0000\u0000\u02f7"+ - "\u02f8\u0005r\u0000\u0000\u02f8\u02f9\u0005a\u0000\u0000\u02f9\u02fa\u0005"+ - "b\u0000\u0000\u02fa\u02fb\u0005l\u0000\u0000\u02fb\u02fc\u0005e\u0000"+ - "\u0000\u02fc\u02fd\u0001\u0000\u0000\u0000\u02fd\u02fe\u00069\u0000\u0000"+ - "\u02feu\u0001\u0000\u0000\u0000\u02ff\u0300\u0005s\u0000\u0000\u0300\u0301"+ - "\u0005h\u0000\u0000\u0301\u0302\u0005a\u0000\u0000\u0302\u0303\u0005r"+ - "\u0000\u0000\u0303\u0304\u0005e\u0000\u0000\u0304w\u0001\u0000\u0000\u0000"+ - "\u0305\u0306\u0005@\u0000\u0000\u0306\u0307\u0001\u0000\u0000\u0000\u0307"+ - "\u0308\u0006;\u0000\u0000\u0308y\u0001\u0000\u0000\u0000\u0309\u030a\u0005"+ - ".\u0000\u0000\u030a\u030b\u0005.\u0000\u0000\u030b{\u0001\u0000\u0000"+ - "\u0000\u030c\u030d\u0005s\u0000\u0000\u030d\u030e\u0005h\u0000\u0000\u030e"+ - "\u030f\u0005a\u0000\u0000\u030f\u0310\u0005r\u0000\u0000\u0310\u0311\u0005"+ - "e\u0000\u0000\u0311\u0312\u0005d\u0000\u0000\u0312}\u0001\u0000\u0000"+ - "\u0000\u0313\u0314\u0005e\u0000\u0000\u0314\u0315\u0005x\u0000\u0000\u0315"+ - "\u0316\u0005c\u0000\u0000\u0316\u0317\u0005l\u0000\u0000\u0317\u0318\u0005"+ - "u\u0000\u0000\u0318\u0319\u0005s\u0000\u0000\u0319\u031a\u0005i\u0000"+ - "\u0000\u031a\u031b\u0005v\u0000\u0000\u031b\u031c\u0005e\u0000\u0000\u031c"+ - "\u007f\u0001\u0000\u0000\u0000\u031d\u031e\u0005p\u0000\u0000\u031e\u031f"+ - "\u0005r\u0000\u0000\u031f\u0320\u0005e\u0000\u0000\u0320\u0321\u0005d"+ - "\u0000\u0000\u0321\u0322\u0005i\u0000\u0000\u0322\u0323\u0005c\u0000\u0000"+ - "\u0323\u0324\u0005a\u0000\u0000\u0324\u0325\u0005t\u0000\u0000\u0325\u0326"+ - "\u0005e\u0000\u0000\u0326\u0081\u0001\u0000\u0000\u0000\u0327\u0328\u0005"+ - "w\u0000\u0000\u0328\u0329\u0005r\u0000\u0000\u0329\u032a\u0005i\u0000"+ - "\u0000\u032a\u032b\u0005t\u0000\u0000\u032b\u032c\u0005e\u0000\u0000\u032c"+ - "\u032d\u0005P\u0000\u0000\u032d\u032e\u0005e\u0000\u0000\u032e\u032f\u0005"+ - "r\u0000\u0000\u032f\u0330\u0005m\u0000\u0000\u0330\u0331\u0001\u0000\u0000"+ - "\u0000\u0331\u0332\u0006@\u0000\u0000\u0332\u0083\u0001\u0000\u0000\u0000"+ - "\u0333\u0334\u0005n\u0000\u0000\u0334\u0335\u0005o\u0000\u0000\u0335\u0336"+ - "\u0005P\u0000\u0000\u0336\u0337\u0005e\u0000\u0000\u0337\u0338\u0005r"+ - "\u0000\u0000\u0338\u0339\u0005m\u0000\u0000\u0339\u033a\u0001\u0000\u0000"+ - "\u0000\u033a\u033b\u0006A\u0000\u0000\u033b\u0085\u0001\u0000\u0000\u0000"+ - "\u033c\u033d\u0005t\u0000\u0000\u033d\u033e\u0005r\u0000\u0000\u033e\u033f"+ - "\u0005u\u0000\u0000\u033f\u0340\u0005s\u0000\u0000\u0340\u0341\u0005t"+ - "\u0000\u0000\u0341\u0342\u0005e\u0000\u0000\u0342\u0343\u0005d\u0000\u0000"+ - "\u0343\u0344\u0001\u0000\u0000\u0000\u0344\u0345\u0006B\u0000\u0000\u0345"+ - "\u0087\u0001\u0000\u0000\u0000\u0346\u0347\u0005o\u0000\u0000\u0347\u0348"+ - "\u0005u\u0000\u0000\u0348\u0349\u0005t\u0000\u0000\u0349\u034a\u0005l"+ - "\u0000\u0000\u034a\u034b\u0005i\u0000\u0000\u034b\u034c\u0005n\u0000\u0000"+ - "\u034c\u034d\u0005e\u0000\u0000\u034d\u0089\u0001\u0000\u0000\u0000\u034e"+ - "\u034f\u0005i\u0000\u0000\u034f\u0350\u0005n\u0000\u0000\u0350\u0351\u0005"+ - "i\u0000\u0000\u0351\u0352\u0005t\u0000\u0000\u0352\u0353\u0005E\u0000"+ - "\u0000\u0353\u0354\u0005n\u0000\u0000\u0354\u0355\u0005s\u0000\u0000\u0355"+ - "\u0356\u0005u\u0000\u0000\u0356\u0357\u0005r\u0000\u0000\u0357\u0358\u0005"+ - "e\u0000\u0000\u0358\u0359\u0005s\u0000\u0000\u0359\u008b\u0001\u0000\u0000"+ - "\u0000\u035a\u035b\u0005i\u0000\u0000\u035b\u035c\u0005m\u0000\u0000\u035c"+ - "\u035d\u0005p\u0000\u0000\u035d\u035e\u0005o\u0000\u0000\u035e\u035f\u0005"+ - "r\u0000\u0000\u035f\u0360\u0005t\u0000\u0000\u0360\u0361\u0005R\u0000"+ - "\u0000\u0361\u0362\u0005e\u0000\u0000\u0362\u0363\u0005q\u0000\u0000\u0363"+ - "\u0364\u0005u\u0000\u0000\u0364\u0365\u0005i\u0000\u0000\u0365\u0366\u0005"+ - "r\u0000\u0000\u0366\u0367\u0005e\u0000\u0000\u0367\u0368\u0005s\u0000"+ - "\u0000\u0368\u008d\u0001\u0000\u0000\u0000\u0369\u036a\u0005p\u0000\u0000"+ - "\u036a\u036b\u0005r\u0000\u0000\u036b\u036c\u0005o\u0000\u0000\u036c\u036d"+ - "\u0005o\u0000\u0000\u036d\u036e\u0005f\u0000\u0000\u036e\u008f\u0001\u0000"+ - "\u0000\u0000\u036f\u0370\u0005=\u0000\u0000\u0370\u0371\u0005=\u0000\u0000"+ - "\u0371\u0372\u0005=\u0000\u0000\u0372\u0091\u0001\u0000\u0000\u0000\u0373"+ - "\u0374\u0005!\u0000\u0000\u0374\u0375\u0005=\u0000\u0000\u0375\u0376\u0005"+ - "=\u0000\u0000\u0376\u0093\u0001\u0000\u0000\u0000\u0377\u0378\u0005w\u0000"+ - "\u0000\u0378\u0379\u0005i\u0000\u0000\u0379\u037a\u0005t\u0000\u0000\u037a"+ - "\u037b\u0005h\u0000\u0000\u037b\u0095\u0001\u0000\u0000\u0000\u037c\u037d"+ - "\u0005o\u0000\u0000\u037d\u037e\u0005p\u0000\u0000\u037e\u037f\u0005a"+ - "\u0000\u0000\u037f\u0380\u0005q\u0000\u0000\u0380\u0381\u0005u\u0000\u0000"+ - "\u0381\u0382\u0005e\u0000\u0000\u0382\u0383\u0001\u0000\u0000\u0000\u0383"+ - "\u0384\u0006J\u0000\u0000\u0384\u0097\u0001\u0000\u0000\u0000\u0385\u0386"+ - "\u0005r\u0000\u0000\u0386\u0387\u0005e\u0000\u0000\u0387\u0388\u0005v"+ - "\u0000\u0000\u0388\u0389\u0005e\u0000\u0000\u0389\u038a\u0005a\u0000\u0000"+ - "\u038a\u038b\u0005l\u0000\u0000\u038b\u0099\u0001\u0000\u0000\u0000\u038c"+ - "\u038d\u0005b\u0000\u0000\u038d\u038e\u0005r\u0000\u0000\u038e\u038f\u0005"+ - "e\u0000\u0000\u038f\u0390\u0005a\u0000\u0000\u0390\u0391\u0005k\u0000"+ - "\u0000\u0391\u0392\u0001\u0000\u0000\u0000\u0392\u0393\u0006L\u0000\u0000"+ - "\u0393\u009b\u0001\u0000\u0000\u0000\u0394\u0395\u0005d\u0000\u0000\u0395"+ - "\u0396\u0005e\u0000\u0000\u0396\u0397\u0005f\u0000\u0000\u0397\u0398\u0005"+ - "a\u0000\u0000\u0398\u0399\u0005u\u0000\u0000\u0399\u039a\u0005l\u0000"+ - "\u0000\u039a\u039b\u0005t\u0000\u0000\u039b\u009d\u0001\u0000\u0000\u0000"+ - "\u039c\u039d\u0005f\u0000\u0000\u039d\u039e\u0005u\u0000\u0000\u039e\u039f"+ - "\u0005n\u0000\u0000\u039f\u03a0\u0005c\u0000\u0000\u03a0\u009f\u0001\u0000"+ - "\u0000\u0000\u03a1\u03a2\u0005i\u0000\u0000\u03a2\u03a3\u0005n\u0000\u0000"+ - "\u03a3\u03a4\u0005t\u0000\u0000\u03a4\u03a5\u0005e\u0000\u0000\u03a5\u03a6"+ - "\u0005r\u0000\u0000\u03a6\u03a7\u0005f\u0000\u0000\u03a7\u03a8\u0005a"+ - "\u0000\u0000\u03a8\u03a9\u0005c\u0000\u0000\u03a9\u03aa\u0005e\u0000\u0000"+ - "\u03aa\u00a1\u0001\u0000\u0000\u0000\u03ab\u03ac\u0005s\u0000\u0000\u03ac"+ - "\u03ad\u0005e\u0000\u0000\u03ad\u03ae\u0005l\u0000\u0000\u03ae\u03af\u0005"+ - "e\u0000\u0000\u03af\u03b0\u0005c\u0000\u0000\u03b0\u03b1\u0005t\u0000"+ - "\u0000\u03b1\u00a3\u0001\u0000\u0000\u0000\u03b2\u03b3\u0005c\u0000\u0000"+ - "\u03b3\u03b4\u0005a\u0000\u0000\u03b4\u03b5\u0005s\u0000\u0000\u03b5\u03b6"+ - "\u0005e\u0000\u0000\u03b6\u00a5\u0001\u0000\u0000\u0000\u03b7\u03b8\u0005"+ - "d\u0000\u0000\u03b8\u03b9\u0005e\u0000\u0000\u03b9\u03ba\u0005f\u0000"+ - "\u0000\u03ba\u03bb\u0005e\u0000\u0000\u03bb\u03bc\u0005r\u0000\u0000\u03bc"+ - "\u00a7\u0001\u0000\u0000\u0000\u03bd\u03be\u0005g\u0000\u0000\u03be\u03bf"+ - "\u0005o\u0000\u0000\u03bf\u00a9\u0001\u0000\u0000\u0000\u03c0\u03c1\u0005"+ - "m\u0000\u0000\u03c1\u03c2\u0005a\u0000\u0000\u03c2\u03c3\u0005p\u0000"+ - "\u0000\u03c3\u00ab\u0001\u0000\u0000\u0000\u03c4\u03c5\u0005s\u0000\u0000"+ - "\u03c5\u03c6\u0005t\u0000\u0000\u03c6\u03c7\u0005r\u0000\u0000\u03c7\u03c8"+ - "\u0005u\u0000\u0000\u03c8\u03c9\u0005c\u0000\u0000\u03c9\u03ca\u0005t"+ - "\u0000\u0000\u03ca\u00ad\u0001\u0000\u0000\u0000\u03cb\u03cc\u0005c\u0000"+ - "\u0000\u03cc\u03cd\u0005h\u0000\u0000\u03cd\u03ce\u0005a\u0000\u0000\u03ce"+ - "\u03cf\u0005n\u0000\u0000\u03cf\u00af\u0001\u0000\u0000\u0000\u03d0\u03d1"+ - "\u0005e\u0000\u0000\u03d1\u03d2\u0005l\u0000\u0000\u03d2\u03d3\u0005s"+ - "\u0000\u0000\u03d3\u03d4\u0005e\u0000\u0000\u03d4\u00b1\u0001\u0000\u0000"+ - "\u0000\u03d5\u03d6\u0005g\u0000\u0000\u03d6\u03d7\u0005o\u0000\u0000\u03d7"+ - "\u03d8\u0005t\u0000\u0000\u03d8\u03d9\u0005o\u0000\u0000\u03d9\u00b3\u0001"+ - "\u0000\u0000\u0000\u03da\u03db\u0005p\u0000\u0000\u03db\u03dc\u0005a\u0000"+ - "\u0000\u03dc\u03dd\u0005c\u0000\u0000\u03dd\u03de\u0005k\u0000\u0000\u03de"+ - "\u03df\u0005a\u0000\u0000\u03df\u03e0\u0005g\u0000\u0000\u03e0\u03e1\u0005"+ - "e\u0000\u0000\u03e1\u00b5\u0001\u0000\u0000\u0000\u03e2\u03e3\u0005s\u0000"+ - "\u0000\u03e3\u03e4\u0005w\u0000\u0000\u03e4\u03e5\u0005i\u0000\u0000\u03e5"+ - "\u03e6\u0005t\u0000\u0000\u03e6\u03e7\u0005c\u0000\u0000\u03e7\u03e8\u0005"+ - "h\u0000\u0000\u03e8\u00b7\u0001\u0000\u0000\u0000\u03e9\u03ea\u0005c\u0000"+ - "\u0000\u03ea\u03eb\u0005o\u0000\u0000\u03eb\u03ec\u0005n\u0000\u0000\u03ec"+ - "\u03ed\u0005s\u0000\u0000\u03ed\u03ee\u0005t\u0000\u0000\u03ee\u00b9\u0001"+ - "\u0000\u0000\u0000\u03ef\u03f0\u0005f\u0000\u0000\u03f0\u03f1\u0005a\u0000"+ - "\u0000\u03f1\u03f2\u0005l\u0000\u0000\u03f2\u03f3\u0005l\u0000\u0000\u03f3"+ - "\u03f4\u0005t\u0000\u0000\u03f4\u03f5\u0005h\u0000\u0000\u03f5\u03f6\u0005"+ - "r\u0000\u0000\u03f6\u03f7\u0005o\u0000\u0000\u03f7\u03f8\u0005u\u0000"+ - "\u0000\u03f8\u03f9\u0005g\u0000\u0000\u03f9\u03fa\u0005h\u0000\u0000\u03fa"+ - "\u03fb\u0001\u0000\u0000\u0000\u03fb\u03fc\u0006\\\u0000\u0000\u03fc\u00bb"+ - "\u0001\u0000\u0000\u0000\u03fd\u03fe\u0005i\u0000\u0000\u03fe\u03ff\u0005"+ - "f\u0000\u0000\u03ff\u00bd\u0001\u0000\u0000\u0000\u0400\u0401\u0005r\u0000"+ - "\u0000\u0401\u0402\u0005a\u0000\u0000\u0402\u0403\u0005n\u0000\u0000\u0403"+ - "\u0404\u0005g\u0000\u0000\u0404\u0405\u0005e\u0000\u0000\u0405\u00bf\u0001"+ - "\u0000\u0000\u0000\u0406\u0407\u0005t\u0000\u0000\u0407\u0408\u0005y\u0000"+ - "\u0000\u0408\u0409\u0005p\u0000\u0000\u0409\u040a\u0005e\u0000\u0000\u040a"+ - "\u00c1\u0001\u0000\u0000\u0000\u040b\u040c\u0005c\u0000\u0000\u040c\u040d"+ - "\u0005o\u0000\u0000\u040d\u040e\u0005n\u0000\u0000\u040e\u040f\u0005t"+ - "\u0000\u0000\u040f\u0410\u0005i\u0000\u0000\u0410\u0411\u0005n\u0000\u0000"+ - "\u0411\u0412\u0005u\u0000\u0000\u0412\u0413\u0005e\u0000\u0000\u0413\u0414"+ - "\u0001\u0000\u0000\u0000\u0414\u0415\u0006`\u0000\u0000\u0415\u00c3\u0001"+ - "\u0000\u0000\u0000\u0416\u0417\u0005f\u0000\u0000\u0417\u0418\u0005o\u0000"+ - "\u0000\u0418\u0419\u0005r\u0000\u0000\u0419\u00c5\u0001\u0000\u0000\u0000"+ - "\u041a\u041b\u0005i\u0000\u0000\u041b\u041c\u0005m\u0000\u0000\u041c\u041d"+ - "\u0005p\u0000\u0000\u041d\u041e\u0005o\u0000\u0000\u041e\u041f\u0005r"+ - "\u0000\u0000\u041f\u0420\u0005t\u0000\u0000\u0420\u00c7\u0001\u0000\u0000"+ - "\u0000\u0421\u0422\u0005r\u0000\u0000\u0422\u0423\u0005e\u0000\u0000\u0423"+ - "\u0424\u0005t\u0000\u0000\u0424\u0425\u0005u\u0000\u0000\u0425\u0426\u0005"+ - "r\u0000\u0000\u0426\u0427\u0005n\u0000\u0000\u0427\u0428\u0001\u0000\u0000"+ - "\u0000\u0428\u0429\u0006c\u0000\u0000\u0429\u00c9\u0001\u0000\u0000\u0000"+ - "\u042a\u042b\u0005v\u0000\u0000\u042b\u042c\u0005a\u0000\u0000\u042c\u042d"+ - "\u0005r\u0000\u0000\u042d\u00cb\u0001\u0000\u0000\u0000\u042e\u042f\u0005"+ - "n\u0000\u0000\u042f\u0430\u0005i\u0000\u0000\u0430\u0431\u0005l\u0000"+ - "\u0000\u0431\u0432\u0001\u0000\u0000\u0000\u0432\u0433\u0006e\u0000\u0000"+ - "\u0433\u00cd\u0001\u0000\u0000\u0000\u0434\u0439\u0003\u0150\u00a7\u0000"+ - "\u0435\u0438\u0003\u0150\u00a7\u0000\u0436\u0438\u0003\u0152\u00a8\u0000"+ - "\u0437\u0435\u0001\u0000\u0000\u0000\u0437\u0436\u0001\u0000\u0000\u0000"+ - "\u0438\u043b\u0001\u0000\u0000\u0000\u0439\u0437\u0001\u0000\u0000\u0000"+ - "\u0439\u043a\u0001\u0000\u0000\u0000\u043a\u043c\u0001\u0000\u0000\u0000"+ - "\u043b\u0439\u0001\u0000\u0000\u0000\u043c\u043d\u0006f\u0000\u0000\u043d"+ - "\u00cf\u0001\u0000\u0000\u0000\u043e\u043f\u0005(\u0000\u0000\u043f\u00d1"+ - "\u0001\u0000\u0000\u0000\u0440\u0441\u0005)\u0000\u0000\u0441\u0442\u0001"+ - "\u0000\u0000\u0000\u0442\u0443\u0006h\u0000\u0000\u0443\u00d3\u0001\u0000"+ - "\u0000\u0000\u0444\u0445\u0005{\u0000\u0000\u0445\u00d5\u0001\u0000\u0000"+ - "\u0000\u0446\u0447\u0005}\u0000\u0000\u0447\u0448\u0001\u0000\u0000\u0000"+ - "\u0448\u0449\u0006j\u0000\u0000\u0449\u00d7\u0001\u0000\u0000\u0000\u044a"+ - "\u044b\u0005[\u0000\u0000\u044b\u00d9\u0001\u0000\u0000\u0000\u044c\u044d"+ - "\u0005]\u0000\u0000\u044d\u044e\u0001\u0000\u0000\u0000\u044e\u044f\u0006"+ - "l\u0000\u0000\u044f\u00db\u0001\u0000\u0000\u0000\u0450\u0451\u0005=\u0000"+ - "\u0000\u0451\u00dd\u0001\u0000\u0000\u0000\u0452\u0453\u0005,\u0000\u0000"+ - "\u0453\u00df\u0001\u0000\u0000\u0000\u0454\u0455\u0005;\u0000\u0000\u0455"+ - "\u00e1\u0001\u0000\u0000\u0000\u0456\u0457\u0005:\u0000\u0000\u0457\u00e3"+ - "\u0001\u0000\u0000\u0000\u0458\u0459\u0005.\u0000\u0000\u0459\u00e5\u0001"+ - "\u0000\u0000\u0000\u045a\u045b\u0005+\u0000\u0000\u045b\u045c\u0005+\u0000"+ - "\u0000\u045c\u045d\u0001\u0000\u0000\u0000\u045d\u045e\u0006r\u0000\u0000"+ - "\u045e\u00e7\u0001\u0000\u0000\u0000\u045f\u0460\u0005-\u0000\u0000\u0460"+ - "\u0461\u0005-\u0000\u0000\u0461\u0462\u0001\u0000\u0000\u0000\u0462\u0463"+ - "\u0006s\u0000\u0000\u0463\u00e9\u0001\u0000\u0000\u0000\u0464\u0465\u0005"+ - ":\u0000\u0000\u0465\u0466\u0005=\u0000\u0000\u0466\u00eb\u0001\u0000\u0000"+ - "\u0000\u0467\u0468\u0005.\u0000\u0000\u0468\u0469\u0005.\u0000\u0000\u0469"+ - "\u046a\u0005.\u0000\u0000\u046a\u00ed\u0001\u0000\u0000\u0000\u046b\u046c"+ - "\u0005|\u0000\u0000\u046c\u046d\u0005|\u0000\u0000\u046d\u00ef\u0001\u0000"+ - "\u0000\u0000\u046e\u046f\u0005&\u0000\u0000\u046f\u0470\u0005&\u0000\u0000"+ - "\u0470\u00f1\u0001\u0000\u0000\u0000\u0471\u0472\u0005=\u0000\u0000\u0472"+ - "\u0473\u0005=\u0000\u0000\u0473\u00f3\u0001\u0000\u0000\u0000\u0474\u0475"+ - "\u0005!\u0000\u0000\u0475\u0476\u0005=\u0000\u0000\u0476\u00f5\u0001\u0000"+ - "\u0000\u0000\u0477\u0478\u0005<\u0000\u0000\u0478\u00f7\u0001\u0000\u0000"+ - "\u0000\u0479\u047a\u0005<\u0000\u0000\u047a\u047b\u0005=\u0000\u0000\u047b"+ - "\u00f9\u0001\u0000\u0000\u0000\u047c\u047d\u0005>\u0000\u0000\u047d\u00fb"+ - "\u0001\u0000\u0000\u0000\u047e\u047f\u0005>\u0000\u0000\u047f\u0480\u0005"+ - "=\u0000\u0000\u0480\u00fd\u0001\u0000\u0000\u0000\u0481\u0482\u0005|\u0000"+ - "\u0000\u0482\u00ff\u0001\u0000\u0000\u0000\u0483\u0484\u0005/\u0000\u0000"+ - "\u0484\u0101\u0001\u0000\u0000\u0000\u0485\u0486\u0005%\u0000\u0000\u0486"+ - "\u0103\u0001\u0000\u0000\u0000\u0487\u0488\u0005<\u0000\u0000\u0488\u0489"+ - "\u0005<\u0000\u0000\u0489\u0105\u0001\u0000\u0000\u0000\u048a\u048b\u0005"+ - ">\u0000\u0000\u048b\u048c\u0005>\u0000\u0000\u048c\u0107\u0001\u0000\u0000"+ - "\u0000\u048d\u048e\u0005&\u0000\u0000\u048e\u048f\u0005^\u0000\u0000\u048f"+ - "\u0109\u0001\u0000\u0000\u0000\u0490\u0491\u0005!\u0000\u0000\u0491\u010b"+ - "\u0001\u0000\u0000\u0000\u0492\u0493\u0005+\u0000\u0000\u0493\u010d\u0001"+ - "\u0000\u0000\u0000\u0494\u0495\u0005-\u0000\u0000\u0495\u010f\u0001\u0000"+ - "\u0000\u0000\u0496\u0497\u0005^\u0000\u0000\u0497\u0111\u0001\u0000\u0000"+ - "\u0000\u0498\u0499\u0005*\u0000\u0000\u0499\u0113\u0001\u0000\u0000\u0000"+ - "\u049a\u049b\u0005&\u0000\u0000\u049b\u0115\u0001\u0000\u0000\u0000\u049c"+ - "\u049d\u0005<\u0000\u0000\u049d\u049e\u0005-\u0000\u0000\u049e\u0117\u0001"+ - "\u0000\u0000\u0000\u049f\u04ab\u00050\u0000\u0000\u04a0\u04a7\u0007\u0000"+ - "\u0000\u0000\u04a1\u04a3\u0005_\u0000\u0000\u04a2\u04a1\u0001\u0000\u0000"+ - "\u0000\u04a2\u04a3\u0001\u0000\u0000\u0000\u04a3\u04a4\u0001\u0000\u0000"+ - "\u0000\u04a4\u04a6\u0007\u0001\u0000\u0000\u04a5\u04a2\u0001\u0000\u0000"+ - "\u0000\u04a6\u04a9\u0001\u0000\u0000\u0000\u04a7\u04a5\u0001\u0000\u0000"+ - "\u0000\u04a7\u04a8\u0001\u0000\u0000\u0000\u04a8\u04ab\u0001\u0000\u0000"+ - "\u0000\u04a9\u04a7\u0001\u0000\u0000\u0000\u04aa\u049f\u0001\u0000\u0000"+ - "\u0000\u04aa\u04a0\u0001\u0000\u0000\u0000\u04ab\u04ac\u0001\u0000\u0000"+ - "\u0000\u04ac\u04ad\u0006\u008b\u0000\u0000\u04ad\u0119\u0001\u0000\u0000"+ - "\u0000\u04ae\u04af\u00050\u0000\u0000\u04af\u04b4\u0007\u0002\u0000\u0000"+ - "\u04b0\u04b2\u0005_\u0000\u0000\u04b1\u04b0\u0001\u0000\u0000\u0000\u04b1"+ - "\u04b2\u0001\u0000\u0000\u0000\u04b2\u04b3\u0001\u0000\u0000\u0000\u04b3"+ - "\u04b5\u0003\u014c\u00a5\u0000\u04b4\u04b1\u0001\u0000\u0000\u0000\u04b5"+ - "\u04b6\u0001\u0000\u0000\u0000\u04b6\u04b4\u0001\u0000\u0000\u0000\u04b6"+ - "\u04b7\u0001\u0000\u0000\u0000\u04b7\u04b8\u0001\u0000\u0000\u0000\u04b8"+ - "\u04b9\u0006\u008c\u0000\u0000\u04b9\u011b\u0001\u0000\u0000\u0000\u04ba"+ - "\u04bc\u00050\u0000\u0000\u04bb\u04bd\u0007\u0003\u0000\u0000\u04bc\u04bb"+ - "\u0001\u0000\u0000\u0000\u04bc\u04bd\u0001\u0000\u0000\u0000\u04bd\u04c2"+ - "\u0001\u0000\u0000\u0000\u04be\u04c0\u0005_\u0000\u0000\u04bf\u04be\u0001"+ - "\u0000\u0000\u0000\u04bf\u04c0\u0001\u0000\u0000\u0000\u04c0\u04c1\u0001"+ - "\u0000\u0000\u0000\u04c1\u04c3\u0003\u0148\u00a3\u0000\u04c2\u04bf\u0001"+ - "\u0000\u0000\u0000\u04c3\u04c4\u0001\u0000\u0000\u0000\u04c4\u04c2\u0001"+ - "\u0000\u0000\u0000\u04c4\u04c5\u0001\u0000\u0000\u0000\u04c5\u04c6\u0001"+ - "\u0000\u0000\u0000\u04c6\u04c7\u0006\u008d\u0000\u0000\u04c7\u011d\u0001"+ - "\u0000\u0000\u0000\u04c8\u04c9\u00050\u0000\u0000\u04c9\u04ce\u0007\u0004"+ - "\u0000\u0000\u04ca\u04cc\u0005_\u0000\u0000\u04cb\u04ca\u0001\u0000\u0000"+ - "\u0000\u04cb\u04cc\u0001\u0000\u0000\u0000\u04cc\u04cd\u0001\u0000\u0000"+ - "\u0000\u04cd\u04cf\u0003\u014a\u00a4\u0000\u04ce\u04cb\u0001\u0000\u0000"+ - "\u0000\u04cf\u04d0\u0001\u0000\u0000\u0000\u04d0\u04ce\u0001\u0000\u0000"+ - "\u0000\u04d0\u04d1\u0001\u0000\u0000\u0000\u04d1\u04d2\u0001\u0000\u0000"+ - "\u0000\u04d2\u04d3\u0006\u008e\u0000\u0000\u04d3\u011f\u0001\u0000\u0000"+ - "\u0000\u04d4\u04d5\u00050\u0000\u0000\u04d5\u04d6\u0007\u0004\u0000\u0000"+ - "\u04d6\u04d7\u0003\u0122\u0090\u0000\u04d7\u04d8\u0003\u0124\u0091\u0000"+ - "\u04d8\u0121\u0001\u0000\u0000\u0000\u04d9\u04db\u0005_\u0000\u0000\u04da"+ - "\u04d9\u0001\u0000\u0000\u0000\u04da\u04db\u0001\u0000\u0000\u0000\u04db"+ - "\u04dc\u0001\u0000\u0000\u0000\u04dc\u04de\u0003\u014a\u00a4\u0000\u04dd"+ - "\u04da\u0001\u0000\u0000\u0000\u04de\u04df\u0001\u0000\u0000\u0000\u04df"+ - "\u04dd\u0001\u0000\u0000\u0000\u04df\u04e0\u0001\u0000\u0000\u0000\u04e0"+ - "\u04eb\u0001\u0000\u0000\u0000\u04e1\u04e8\u0005.\u0000\u0000\u04e2\u04e4"+ - "\u0005_\u0000\u0000\u04e3\u04e2\u0001\u0000\u0000\u0000\u04e3\u04e4\u0001"+ - "\u0000\u0000\u0000\u04e4\u04e5\u0001\u0000\u0000\u0000\u04e5\u04e7\u0003"+ - "\u014a\u00a4\u0000\u04e6\u04e3\u0001\u0000\u0000\u0000\u04e7\u04ea\u0001"+ - "\u0000\u0000\u0000\u04e8\u04e6\u0001\u0000\u0000\u0000\u04e8\u04e9\u0001"+ - "\u0000\u0000\u0000\u04e9\u04ec\u0001\u0000\u0000\u0000\u04ea\u04e8\u0001"+ - "\u0000\u0000\u0000\u04eb\u04e1\u0001\u0000\u0000\u0000\u04eb\u04ec\u0001"+ - "\u0000\u0000\u0000\u04ec\u04f9\u0001\u0000\u0000\u0000\u04ed\u04ee\u0005"+ - ".\u0000\u0000\u04ee\u04f5\u0003\u014a\u00a4\u0000\u04ef\u04f1\u0005_\u0000"+ - "\u0000\u04f0\u04ef\u0001\u0000\u0000\u0000\u04f0\u04f1\u0001\u0000\u0000"+ - "\u0000\u04f1\u04f2\u0001\u0000\u0000\u0000\u04f2\u04f4\u0003\u014a\u00a4"+ - "\u0000\u04f3\u04f0\u0001\u0000\u0000\u0000\u04f4\u04f7\u0001\u0000\u0000"+ - "\u0000\u04f5\u04f3\u0001\u0000\u0000\u0000\u04f5\u04f6\u0001\u0000\u0000"+ - "\u0000\u04f6\u04f9\u0001\u0000\u0000\u0000\u04f7\u04f5\u0001\u0000\u0000"+ - "\u0000\u04f8\u04dd\u0001\u0000\u0000\u0000\u04f8\u04ed\u0001\u0000\u0000"+ - "\u0000\u04f9\u0123\u0001\u0000\u0000\u0000\u04fa\u04fc\u0007\u0005\u0000"+ - "\u0000\u04fb\u04fd\u0007\u0006\u0000\u0000\u04fc\u04fb\u0001\u0000\u0000"+ - "\u0000\u04fc\u04fd\u0001\u0000\u0000\u0000\u04fd\u04fe\u0001\u0000\u0000"+ - "\u0000\u04fe\u04ff\u0003\u0146\u00a2\u0000\u04ff\u0125\u0001\u0000\u0000"+ - "\u0000\u0500\u0506\u0003\u0118\u008b\u0000\u0501\u0506\u0003\u011a\u008c"+ - "\u0000\u0502\u0506\u0003\u011c\u008d\u0000\u0503\u0506\u0003\u011e\u008e"+ - "\u0000\u0504\u0506\u0003\u0002\u0000\u0000\u0505\u0500\u0001\u0000\u0000"+ - "\u0000\u0505\u0501\u0001\u0000\u0000\u0000\u0505\u0502\u0001\u0000\u0000"+ - "\u0000\u0505\u0503\u0001\u0000\u0000\u0000\u0505\u0504\u0001\u0000\u0000"+ - "\u0000\u0506\u0507\u0001\u0000\u0000\u0000\u0507\u0508\u0005i\u0000\u0000"+ - "\u0508\u0509\u0001\u0000\u0000\u0000\u0509\u050a\u0006\u0092\u0000\u0000"+ - "\u050a\u0127\u0001\u0000\u0000\u0000\u050b\u050e\u0005\'\u0000\u0000\u050c"+ - "\u050f\u0003\u0142\u00a0\u0000\u050d\u050f\u0003\u012c\u0095\u0000\u050e"+ - "\u050c\u0001\u0000\u0000\u0000\u050e\u050d\u0001\u0000\u0000\u0000\u050f"+ - "\u0510\u0001\u0000\u0000\u0000\u0510\u0511\u0005\'\u0000\u0000\u0511\u0129"+ - "\u0001\u0000\u0000\u0000\u0512\u0513\u0003\u0128\u0093\u0000\u0513\u0514"+ - "\u0001\u0000\u0000\u0000\u0514\u0515\u0006\u0094\u0000\u0000\u0515\u012b"+ - "\u0001\u0000\u0000\u0000\u0516\u0519\u0003\u012e\u0096\u0000\u0517\u0519"+ - "\u0003\u0130\u0097\u0000\u0518\u0516\u0001\u0000\u0000\u0000\u0518\u0517"+ - "\u0001\u0000\u0000\u0000\u0519\u012d\u0001\u0000\u0000\u0000\u051a\u051b"+ - "\u0005\\\u0000\u0000\u051b\u051c\u0003\u0148\u00a3\u0000\u051c\u051d\u0003"+ - "\u0148\u00a3\u0000\u051d\u051e\u0003\u0148\u00a3\u0000\u051e\u012f\u0001"+ - "\u0000\u0000\u0000\u051f\u0520\u0005\\\u0000\u0000\u0520\u0521\u0005x"+ - "\u0000\u0000\u0521\u0522\u0003\u014a\u00a4\u0000\u0522\u0523\u0003\u014a"+ - "\u00a4\u0000\u0523\u0131\u0001\u0000\u0000\u0000\u0524\u0525\u0005\\\u0000"+ - "\u0000\u0525\u0526\u0005u\u0000\u0000\u0526\u0527\u0003\u014a\u00a4\u0000"+ - "\u0527\u0528\u0003\u014a\u00a4\u0000\u0528\u0529\u0003\u014a\u00a4\u0000"+ - "\u0529\u052a\u0003\u014a\u00a4\u0000\u052a\u0133\u0001\u0000\u0000\u0000"+ - "\u052b\u052c\u0005\\\u0000\u0000\u052c\u052d\u0005U\u0000\u0000\u052d"+ - "\u052e\u0003\u014a\u00a4\u0000\u052e\u052f\u0003\u014a\u00a4\u0000\u052f"+ - "\u0530\u0003\u014a\u00a4\u0000\u0530\u0531\u0003\u014a\u00a4\u0000\u0531"+ - "\u0532\u0003\u014a\u00a4\u0000\u0532\u0533\u0003\u014a\u00a4\u0000\u0533"+ - "\u0534\u0003\u014a\u00a4\u0000\u0534\u0535\u0003\u014a\u00a4\u0000\u0535"+ - "\u0135\u0001\u0000\u0000\u0000\u0536\u053a\u0005`\u0000\u0000\u0537\u0539"+ - "\b\u0007\u0000\u0000\u0538\u0537\u0001\u0000\u0000\u0000\u0539\u053c\u0001"+ - "\u0000\u0000\u0000\u053a\u0538\u0001\u0000\u0000\u0000\u053a\u053b\u0001"+ - "\u0000\u0000\u0000\u053b\u053d\u0001\u0000\u0000\u0000\u053c\u053a\u0001"+ - "\u0000\u0000\u0000\u053d\u053e\u0005`\u0000\u0000\u053e\u053f\u0001\u0000"+ - "\u0000\u0000\u053f\u0540\u0006\u009a\u0000\u0000\u0540\u0137\u0001\u0000"+ - "\u0000\u0000\u0541\u0546\u0005\"\u0000\u0000\u0542\u0545\b\b\u0000\u0000"+ - "\u0543\u0545\u0003\u0144\u00a1\u0000\u0544\u0542\u0001\u0000\u0000\u0000"+ - "\u0544\u0543\u0001\u0000\u0000\u0000\u0545\u0548\u0001\u0000\u0000\u0000"+ - "\u0546\u0544\u0001\u0000\u0000\u0000\u0546\u0547\u0001\u0000\u0000\u0000"+ - "\u0547\u0549\u0001\u0000\u0000\u0000\u0548\u0546\u0001\u0000\u0000\u0000"+ - "\u0549\u054a\u0005\"\u0000\u0000\u054a\u054b\u0001\u0000\u0000\u0000\u054b"+ - "\u054c\u0006\u009b\u0000\u0000\u054c\u0139\u0001\u0000\u0000\u0000\u054d"+ - "\u054f\u0007\t\u0000\u0000\u054e\u054d\u0001\u0000\u0000\u0000\u054f\u0550"+ - "\u0001\u0000\u0000\u0000\u0550\u054e\u0001\u0000\u0000\u0000\u0550\u0551"+ - "\u0001\u0000\u0000\u0000\u0551\u0552\u0001\u0000\u0000\u0000\u0552\u0553"+ - "\u0006\u009c\u0001\u0000\u0553\u013b\u0001\u0000\u0000\u0000\u0554\u0555"+ - "\u0005/\u0000\u0000\u0555\u0556\u0005*\u0000\u0000\u0556\u055a\u0001\u0000"+ - "\u0000\u0000\u0557\u0559\t\u0000\u0000\u0000\u0558\u0557\u0001\u0000\u0000"+ - "\u0000\u0559\u055c\u0001\u0000\u0000\u0000\u055a\u055b\u0001\u0000\u0000"+ - "\u0000\u055a\u0558\u0001\u0000\u0000\u0000\u055b\u055d\u0001\u0000\u0000"+ - "\u0000\u055c\u055a\u0001\u0000\u0000\u0000\u055d\u055e\u0005*\u0000\u0000"+ - "\u055e\u055f\u0005/\u0000\u0000\u055f\u0560\u0001\u0000\u0000\u0000\u0560"+ - "\u0561\u0006\u009d\u0001\u0000\u0561\u013d\u0001\u0000\u0000\u0000\u0562"+ - "\u0564\u0007\n\u0000\u0000\u0563\u0562\u0001\u0000\u0000\u0000\u0564\u0565"+ - "\u0001\u0000\u0000\u0000\u0565\u0563\u0001\u0000\u0000\u0000\u0565\u0566"+ - "\u0001\u0000\u0000\u0000\u0566\u0567\u0001\u0000\u0000\u0000\u0567\u0568"+ - "\u0006\u009e\u0001\u0000\u0568\u013f\u0001\u0000\u0000\u0000\u0569\u056a"+ - "\u0005/\u0000\u0000\u056a\u056b\u0005/\u0000\u0000\u056b\u056f\u0001\u0000"+ - "\u0000\u0000\u056c\u056e\b\n\u0000\u0000\u056d\u056c\u0001\u0000\u0000"+ - "\u0000\u056e\u0571\u0001\u0000\u0000\u0000\u056f\u056d\u0001\u0000\u0000"+ - "\u0000\u056f\u0570\u0001\u0000\u0000\u0000\u0570\u0572\u0001\u0000\u0000"+ - "\u0000\u0571\u056f\u0001\u0000\u0000\u0000\u0572\u0573\u0006\u009f\u0001"+ - "\u0000\u0573\u0141\u0001\u0000\u0000\u0000\u0574\u0579\b\u000b\u0000\u0000"+ - "\u0575\u0579\u0003\u0132\u0098\u0000\u0576\u0579\u0003\u0134\u0099\u0000"+ - "\u0577\u0579\u0003\u0144\u00a1\u0000\u0578\u0574\u0001\u0000\u0000\u0000"+ - "\u0578\u0575\u0001\u0000\u0000\u0000\u0578\u0576\u0001\u0000\u0000\u0000"+ - "\u0578\u0577\u0001\u0000\u0000\u0000\u0579\u0143\u0001\u0000\u0000\u0000"+ - "\u057a\u0594\u0005\\\u0000\u0000\u057b\u057c\u0005u\u0000\u0000\u057c"+ - "\u057d\u0003\u014a\u00a4\u0000\u057d\u057e\u0003\u014a\u00a4\u0000\u057e"+ - "\u057f\u0003\u014a\u00a4\u0000\u057f\u0580\u0003\u014a\u00a4\u0000\u0580"+ - "\u0595\u0001\u0000\u0000\u0000\u0581\u0582\u0005U\u0000\u0000\u0582\u0583"+ - "\u0003\u014a\u00a4\u0000\u0583\u0584\u0003\u014a\u00a4\u0000\u0584\u0585"+ - "\u0003\u014a\u00a4\u0000\u0585\u0586\u0003\u014a\u00a4\u0000\u0586\u0587"+ - "\u0003\u014a\u00a4\u0000\u0587\u0588\u0003\u014a\u00a4\u0000\u0588\u0589"+ - "\u0003\u014a\u00a4\u0000\u0589\u058a\u0003\u014a\u00a4\u0000\u058a\u0595"+ - "\u0001\u0000\u0000\u0000\u058b\u0595\u0007\f\u0000\u0000\u058c\u058d\u0003"+ - "\u0148\u00a3\u0000\u058d\u058e\u0003\u0148\u00a3\u0000\u058e\u058f\u0003"+ - "\u0148\u00a3\u0000\u058f\u0595\u0001\u0000\u0000\u0000\u0590\u0591\u0005"+ - "x\u0000\u0000\u0591\u0592\u0003\u014a\u00a4\u0000\u0592\u0593\u0003\u014a"+ - "\u00a4\u0000\u0593\u0595\u0001\u0000\u0000\u0000\u0594\u057b\u0001\u0000"+ - "\u0000\u0000\u0594\u0581\u0001\u0000\u0000\u0000\u0594\u058b\u0001\u0000"+ - "\u0000\u0000\u0594\u058c\u0001\u0000\u0000\u0000\u0594\u0590\u0001\u0000"+ - "\u0000\u0000\u0595\u0145\u0001\u0000\u0000\u0000\u0596\u059d\u0007\u0001"+ - "\u0000\u0000\u0597\u0599\u0005_\u0000\u0000\u0598\u0597\u0001\u0000\u0000"+ - "\u0000\u0598\u0599\u0001\u0000\u0000\u0000\u0599\u059a\u0001\u0000\u0000"+ - "\u0000\u059a\u059c\u0007\u0001\u0000\u0000\u059b\u0598\u0001\u0000\u0000"+ - "\u0000\u059c\u059f\u0001\u0000\u0000\u0000\u059d\u059b\u0001\u0000\u0000"+ - "\u0000\u059d\u059e\u0001\u0000\u0000\u0000\u059e\u0147\u0001\u0000\u0000"+ - "\u0000\u059f\u059d\u0001\u0000\u0000\u0000\u05a0\u05a1\u0007\r\u0000\u0000"+ - "\u05a1\u0149\u0001\u0000\u0000\u0000\u05a2\u05a3\u0007\u000e\u0000\u0000"+ - "\u05a3\u014b\u0001\u0000\u0000\u0000\u05a4\u05a5\u0007\u000f\u0000\u0000"+ - "\u05a5\u014d\u0001\u0000\u0000\u0000\u05a6\u05a8\u0007\u0010\u0000\u0000"+ - "\u05a7\u05a9\u0007\u0006\u0000\u0000\u05a8\u05a7\u0001\u0000\u0000\u0000"+ - "\u05a8\u05a9\u0001\u0000\u0000\u0000\u05a9\u05aa\u0001\u0000\u0000\u0000"+ - "\u05aa\u05ab\u0003\u0146\u00a2\u0000\u05ab\u014f\u0001\u0000\u0000\u0000"+ - "\u05ac\u05af\u0003\u0154\u00a9\u0000\u05ad\u05af\u0005_\u0000\u0000\u05ae"+ - "\u05ac\u0001\u0000\u0000\u0000\u05ae\u05ad\u0001\u0000\u0000\u0000\u05af"+ - "\u0151\u0001\u0000\u0000\u0000\u05b0\u05b1\u0007\u0011\u0000\u0000\u05b1"+ - "\u0153\u0001\u0000\u0000\u0000\u05b2\u05b3\u0007\u0012\u0000\u0000\u05b3"+ - "\u0155\u0001\u0000\u0000\u0000\u05b4\u05b6\u0007\t\u0000\u0000\u05b5\u05b4"+ - "\u0001\u0000\u0000\u0000\u05b6\u05b7\u0001\u0000\u0000\u0000\u05b7\u05b5"+ - "\u0001\u0000\u0000\u0000\u05b7\u05b8\u0001\u0000\u0000\u0000\u05b8\u05b9"+ - "\u0001\u0000\u0000\u0000\u05b9\u05ba\u0006\u00aa\u0001\u0000\u05ba\u0157"+ - "\u0001\u0000\u0000\u0000\u05bb\u05bc\u0005/\u0000\u0000\u05bc\u05bd\u0005"+ - "*\u0000\u0000\u05bd\u05c1\u0001\u0000\u0000\u0000\u05be\u05c0\b\n\u0000"+ - "\u0000\u05bf\u05be\u0001\u0000\u0000\u0000\u05c0\u05c3\u0001\u0000\u0000"+ - "\u0000\u05c1\u05c2\u0001\u0000\u0000\u0000\u05c1\u05bf\u0001\u0000\u0000"+ - "\u0000\u05c2\u05c4\u0001\u0000\u0000\u0000\u05c3\u05c1\u0001\u0000\u0000"+ - "\u0000\u05c4\u05c5\u0005*\u0000\u0000\u05c5\u05c6\u0005/\u0000\u0000\u05c6"+ - "\u05c7\u0001\u0000\u0000\u0000\u05c7\u05c8\u0006\u00ab\u0001\u0000\u05c8"+ - "\u0159\u0001\u0000\u0000\u0000\u05c9\u05ca\u0005/\u0000\u0000\u05ca\u05cb"+ - "\u0005/\u0000\u0000\u05cb\u05cf\u0001\u0000\u0000\u0000\u05cc\u05ce\b"+ - "\n\u0000\u0000\u05cd\u05cc\u0001\u0000\u0000\u0000\u05ce\u05d1\u0001\u0000"+ - "\u0000\u0000\u05cf\u05cd\u0001\u0000\u0000\u0000\u05cf\u05d0\u0001\u0000"+ - "\u0000\u0000\u05d0\u05d2\u0001\u0000\u0000\u0000\u05d1\u05cf\u0001\u0000"+ - "\u0000\u0000\u05d2\u05d3\u0006\u00ac\u0001\u0000\u05d3\u015b\u0001\u0000"+ - "\u0000\u0000\u05d4\u05d6\u0007\n\u0000\u0000\u05d5\u05d4\u0001\u0000\u0000"+ - "\u0000\u05d6\u05d7\u0001\u0000\u0000\u0000\u05d7\u05d5\u0001\u0000\u0000"+ - "\u0000\u05d7\u05d8\u0001\u0000\u0000\u0000\u05d8\u05e7\u0001\u0000\u0000"+ - "\u0000\u05d9\u05e7\u0005;\u0000\u0000\u05da\u05db\u0005/\u0000\u0000\u05db"+ - "\u05dc\u0005*\u0000\u0000\u05dc\u05e0\u0001\u0000\u0000\u0000\u05dd\u05df"+ - "\t\u0000\u0000\u0000\u05de\u05dd\u0001\u0000\u0000\u0000\u05df\u05e2\u0001"+ - "\u0000\u0000\u0000\u05e0\u05e1\u0001\u0000\u0000\u0000\u05e0\u05de\u0001"+ - "\u0000\u0000\u0000\u05e1\u05e3\u0001\u0000\u0000\u0000\u05e2\u05e0\u0001"+ - "\u0000\u0000\u0000\u05e3\u05e4\u0005*\u0000\u0000\u05e4\u05e7\u0005/\u0000"+ - "\u0000\u05e5\u05e7\u0005\u0000\u0000\u0001\u05e6\u05d5\u0001\u0000\u0000"+ - "\u0000\u05e6\u05d9\u0001\u0000\u0000\u0000\u05e6\u05da\u0001\u0000\u0000"+ - "\u0000\u05e6\u05e5\u0001\u0000\u0000\u0000\u05e7\u05e8\u0001\u0000\u0000"+ - "\u0000\u05e8\u05e9\u0006\u00ad\u0002\u0000\u05e9\u015d\u0001\u0000\u0000"+ - "\u0000\u05ea\u05eb\u0001\u0000\u0000\u0000\u05eb\u05ec\u0001\u0000\u0000"+ - "\u0000\u05ec\u05ed\u0006\u00ae\u0002\u0000\u05ed\u05ee\u0006\u00ae\u0001"+ - "\u0000\u05ee\u015f\u0001\u0000\u0000\u00003\u0000\u0001\u0162\u016a\u016d"+ - "\u0170\u0176\u0178\u0437\u0439\u04a2\u04a7\u04aa\u04b1\u04b6\u04bc\u04bf"+ - "\u04c4\u04cb\u04d0\u04da\u04df\u04e3\u04e8\u04eb\u04f0\u04f5\u04f8\u04fc"+ - "\u0505\u050e\u0518\u053a\u0544\u0546\u0550\u055a\u0565\u056f\u0578\u0594"+ - "\u0598\u059d\u05a8\u05ae\u05b7\u05c1\u05cf\u05d7\u05e0\u05e6\u0003\u0002"+ - "\u0001\u0000\u0000\u0001\u0000\u0002\u0000\u0000"; + "\u0001\u009a\u0001\u009a\u0001\u009a\u0001\u009a\u0001\u009a\u0001\u009a"+ + "\u0001\u009a\u0001\u009a\u0001\u009a\u0001\u009a\u0001\u009a\u0001\u009b"+ + "\u0001\u009b\u0005\u009b\u0546\b\u009b\n\u009b\f\u009b\u0549\t\u009b\u0001"+ + "\u009b\u0001\u009b\u0001\u009b\u0001\u009b\u0001\u009c\u0001\u009c\u0001"+ + "\u009c\u0005\u009c\u0552\b\u009c\n\u009c\f\u009c\u0555\t\u009c\u0001\u009c"+ + "\u0001\u009c\u0001\u009c\u0001\u009c\u0001\u009d\u0004\u009d\u055c\b\u009d"+ + "\u000b\u009d\f\u009d\u055d\u0001\u009d\u0001\u009d\u0001\u009e\u0001\u009e"+ + "\u0001\u009e\u0001\u009e\u0005\u009e\u0566\b\u009e\n\u009e\f\u009e\u0569"+ + "\t\u009e\u0001\u009e\u0001\u009e\u0001\u009e\u0001\u009e\u0001\u009e\u0001"+ + "\u009f\u0004\u009f\u0571\b\u009f\u000b\u009f\f\u009f\u0572\u0001\u009f"+ + "\u0001\u009f\u0001\u00a0\u0001\u00a0\u0001\u00a0\u0001\u00a0\u0005\u00a0"+ + "\u057b\b\u00a0\n\u00a0\f\u00a0\u057e\t\u00a0\u0001\u00a0\u0001\u00a0\u0001"+ + "\u00a1\u0001\u00a1\u0001\u00a1\u0001\u00a1\u0003\u00a1\u0586\b\u00a1\u0001"+ + "\u00a2\u0001\u00a2\u0001\u00a2\u0001\u00a2\u0001\u00a2\u0001\u00a2\u0001"+ + "\u00a2\u0001\u00a2\u0001\u00a2\u0001\u00a2\u0001\u00a2\u0001\u00a2\u0001"+ + "\u00a2\u0001\u00a2\u0001\u00a2\u0001\u00a2\u0001\u00a2\u0001\u00a2\u0001"+ + "\u00a2\u0001\u00a2\u0001\u00a2\u0001\u00a2\u0001\u00a2\u0001\u00a2\u0001"+ + "\u00a2\u0001\u00a2\u0003\u00a2\u05a2\b\u00a2\u0001\u00a3\u0001\u00a3\u0003"+ + "\u00a3\u05a6\b\u00a3\u0001\u00a3\u0005\u00a3\u05a9\b\u00a3\n\u00a3\f\u00a3"+ + "\u05ac\t\u00a3\u0001\u00a4\u0001\u00a4\u0001\u00a5\u0001\u00a5\u0001\u00a6"+ + "\u0001\u00a6\u0001\u00a7\u0001\u00a7\u0003\u00a7\u05b6\b\u00a7\u0001\u00a7"+ + "\u0001\u00a7\u0001\u00a8\u0001\u00a8\u0003\u00a8\u05bc\b\u00a8\u0001\u00a9"+ + "\u0001\u00a9\u0001\u00aa\u0001\u00aa\u0001\u00ab\u0004\u00ab\u05c3\b\u00ab"+ + "\u000b\u00ab\f\u00ab\u05c4\u0001\u00ab\u0001\u00ab\u0001\u00ac\u0001\u00ac"+ + "\u0001\u00ac\u0001\u00ac\u0005\u00ac\u05cd\b\u00ac\n\u00ac\f\u00ac\u05d0"+ + "\t\u00ac\u0001\u00ac\u0001\u00ac\u0001\u00ac\u0001\u00ac\u0001\u00ac\u0001"+ + "\u00ad\u0001\u00ad\u0001\u00ad\u0001\u00ad\u0005\u00ad\u05db\b\u00ad\n"+ + "\u00ad\f\u00ad\u05de\t\u00ad\u0001\u00ad\u0001\u00ad\u0001\u00ae\u0004"+ + "\u00ae\u05e3\b\u00ae\u000b\u00ae\f\u00ae\u05e4\u0001\u00ae\u0001\u00ae"+ + "\u0001\u00ae\u0001\u00ae\u0001\u00ae\u0005\u00ae\u05ec\b\u00ae\n\u00ae"+ + "\f\u00ae\u05ef\t\u00ae\u0001\u00ae\u0001\u00ae\u0001\u00ae\u0003\u00ae"+ + "\u05f4\b\u00ae\u0001\u00ae\u0001\u00ae\u0001\u00af\u0001\u00af\u0001\u00af"+ + "\u0001\u00af\u0001\u00af\u0003\u0567\u05ce\u05ed\u0000\u00b0\u0002\u0001"+ + "\u0004\u0002\u0006\u0003\b\u0004\n\u0005\f\u0006\u000e\u0007\u0010\b\u0012"+ + "\t\u0014\n\u0016\u000b\u0018\f\u001a\r\u001c\u000e\u001e\u000f \u0010"+ + "\"\u0011$\u0012&\u0013(\u0014*\u0015,\u0016.\u00170\u00182\u00194\u001a"+ + "6\u001b8\u001c:\u001d<\u001e>\u001f@ B!D\"F#H$J%L&N\'P(R)T*V+X,Z-\\.^"+ + "/`0b1d2f3h4j5l6n7p8r9t:v;x~?\u0080@\u0082A\u0084B\u0086C\u0088D\u008a"+ + "E\u008cF\u008eG\u0090H\u0092I\u0094J\u0096K\u0098L\u009aM\u009cN\u009e"+ + "O\u00a0P\u00a2Q\u00a4R\u00a6S\u00a8T\u00aaU\u00acV\u00aeW\u00b0X\u00b2"+ + "Y\u00b4Z\u00b6[\u00b8\\\u00ba]\u00bc^\u00be_\u00c0`\u00c2a\u00c4b\u00c6"+ + "c\u00c8d\u00cae\u00ccf\u00ceg\u00d0h\u00d2i\u00d4j\u00d6k\u00d8l\u00da"+ + "m\u00dcn\u00deo\u00e0p\u00e2q\u00e4r\u00e6s\u00e8t\u00eau\u00ecv\u00ee"+ + "w\u00f0x\u00f2y\u00f4z\u00f6{\u00f8|\u00fa}\u00fc~\u00fe\u007f\u0100\u0080"+ + "\u0102\u0081\u0104\u0082\u0106\u0083\u0108\u0084\u010a\u0085\u010c\u0086"+ + "\u010e\u0087\u0110\u0088\u0112\u0089\u0114\u008a\u0116\u008b\u0118\u008c"+ + "\u011a\u008d\u011c\u008e\u011e\u008f\u0120\u0090\u0122\u0091\u0124\u0000"+ + "\u0126\u0000\u0128\u0092\u012a\u0000\u012c\u0093\u012e\u0094\u0130\u0095"+ + "\u0132\u0096\u0134\u0097\u0136\u0098\u0138\u0099\u013a\u009a\u013c\u009b"+ + "\u013e\u009c\u0140\u009d\u0142\u009e\u0144\u0000\u0146\u0000\u0148\u0000"+ + "\u014a\u0000\u014c\u0000\u014e\u0000\u0150\u0000\u0152\u0000\u0154\u0000"+ + "\u0156\u0000\u0158\u009f\u015a\u00a0\u015c\u00a1\u015e\u00a2\u0160\u00a3"+ + "\u0002\u0000\u0001\u0013\u0001\u000019\u0001\u000009\u0002\u0000BBbb\u0002"+ + "\u0000OOoo\u0002\u0000XXxx\u0002\u0000PPpp\u0002\u0000++--\u0001\u0000"+ + "``\u0002\u0000\"\"\\\\\u0002\u0000\t\t \u0002\u0000\n\n\r\r\u0003\u0000"+ + "\n\n\r\r\'\'\t\u0000\"\"\'\'\\\\abffnnrrttvv\u0001\u000007\u0003\u0000"+ + "09AFaf\u0001\u000001\u0002\u0000EEee>\u000009\u0660\u0669\u06f0\u06f9"+ + "\u07c0\u07c9\u0966\u096f\u09e6\u09ef\u0a66\u0a6f\u0ae6\u0aef\u0b66\u0b6f"+ + "\u0be6\u0bef\u0c66\u0c6f\u0ce6\u0cef\u0d66\u0d6f\u0de6\u0def\u0e50\u0e59"+ + "\u0ed0\u0ed9\u0f20\u0f29\u1040\u1049\u1090\u1099\u17e0\u17e9\u1810\u1819"+ + "\u1946\u194f\u19d0\u19d9\u1a80\u1a89\u1a90\u1a99\u1b50\u1b59\u1bb0\u1bb9"+ + "\u1c40\u1c49\u1c50\u1c59\u8000\ua620\u8000\ua629\u8000\ua8d0\u8000\ua8d9"+ + "\u8000\ua900\u8000\ua909\u8000\ua9d0\u8000\ua9d9\u8000\ua9f0\u8000\ua9f9"+ + "\u8000\uaa50\u8000\uaa59\u8000\uabf0\u8000\uabf9\u8000\uff10\u8000\uff19"+ + "\u8001\u04a0\u8001\u04a9\u8001\u0d30\u8001\u0d39\u8001\u1066\u8001\u106f"+ + "\u8001\u10f0\u8001\u10f9\u8001\u1136\u8001\u113f\u8001\u11d0\u8001\u11d9"+ + "\u8001\u12f0\u8001\u12f9\u8001\u1450\u8001\u1459\u8001\u14d0\u8001\u14d9"+ + "\u8001\u1650\u8001\u1659\u8001\u16c0\u8001\u16c9\u8001\u1730\u8001\u1739"+ + "\u8001\u18e0\u8001\u18e9\u8001\u1950\u8001\u1959\u8001\u1c50\u8001\u1c59"+ + "\u8001\u1d50\u8001\u1d59\u8001\u1da0\u8001\u1da9\u8001\u6a60\u8001\u6a69"+ + "\u8001\u6ac0\u8001\u6ac9\u8001\u6b50\u8001\u6b59\u8001\ud7ce\u8001\ud7ff"+ + "\u8001\ue140\u8001\ue149\u8001\ue2f0\u8001\ue2f9\u8001\ue950\u8001\ue959"+ + "\u8001\ufbf0\u8001\ufbf9\u0288\u0000AZaz\u00aa\u00aa\u00b5\u00b5\u00ba"+ + "\u00ba\u00c0\u00d6\u00d8\u00f6\u00f8\u02c1\u02c6\u02d1\u02e0\u02e4\u02ec"+ + "\u02ec\u02ee\u02ee\u0370\u0374\u0376\u0377\u037a\u037d\u037f\u037f\u0386"+ + "\u0386\u0388\u038a\u038c\u038c\u038e\u03a1\u03a3\u03f5\u03f7\u0481\u048a"+ + "\u052f\u0531\u0556\u0559\u0559\u0560\u0588\u05d0\u05ea\u05ef\u05f2\u0620"+ + "\u064a\u066e\u066f\u0671\u06d3\u06d5\u06d5\u06e5\u06e6\u06ee\u06ef\u06fa"+ + "\u06fc\u06ff\u06ff\u0710\u0710\u0712\u072f\u074d\u07a5\u07b1\u07b1\u07ca"+ + "\u07ea\u07f4\u07f5\u07fa\u07fa\u0800\u0815\u081a\u081a\u0824\u0824\u0828"+ + "\u0828\u0840\u0858\u0860\u086a\u0870\u0887\u0889\u088e\u08a0\u08c9\u0904"+ + "\u0939\u093d\u093d\u0950\u0950\u0958\u0961\u0971\u0980\u0985\u098c\u098f"+ + "\u0990\u0993\u09a8\u09aa\u09b0\u09b2\u09b2\u09b6\u09b9\u09bd\u09bd\u09ce"+ + "\u09ce\u09dc\u09dd\u09df\u09e1\u09f0\u09f1\u09fc\u09fc\u0a05\u0a0a\u0a0f"+ + "\u0a10\u0a13\u0a28\u0a2a\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38\u0a39\u0a59"+ + "\u0a5c\u0a5e\u0a5e\u0a72\u0a74\u0a85\u0a8d\u0a8f\u0a91\u0a93\u0aa8\u0aaa"+ + "\u0ab0\u0ab2\u0ab3\u0ab5\u0ab9\u0abd\u0abd\u0ad0\u0ad0\u0ae0\u0ae1\u0af9"+ + "\u0af9\u0b05\u0b0c\u0b0f\u0b10\u0b13\u0b28\u0b2a\u0b30\u0b32\u0b33\u0b35"+ + "\u0b39\u0b3d\u0b3d\u0b5c\u0b5d\u0b5f\u0b61\u0b71\u0b71\u0b83\u0b83\u0b85"+ + "\u0b8a\u0b8e\u0b90\u0b92\u0b95\u0b99\u0b9a\u0b9c\u0b9c\u0b9e\u0b9f\u0ba3"+ + "\u0ba4\u0ba8\u0baa\u0bae\u0bb9\u0bd0\u0bd0\u0c05\u0c0c\u0c0e\u0c10\u0c12"+ + "\u0c28\u0c2a\u0c39\u0c3d\u0c3d\u0c58\u0c5a\u0c5d\u0c5d\u0c60\u0c61\u0c80"+ + "\u0c80\u0c85\u0c8c\u0c8e\u0c90\u0c92\u0ca8\u0caa\u0cb3\u0cb5\u0cb9\u0cbd"+ + "\u0cbd\u0cdd\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d04\u0d0c\u0d0e\u0d10\u0d12"+ + "\u0d3a\u0d3d\u0d3d\u0d4e\u0d4e\u0d54\u0d56\u0d5f\u0d61\u0d7a\u0d7f\u0d85"+ + "\u0d96\u0d9a\u0db1\u0db3\u0dbb\u0dbd\u0dbd\u0dc0\u0dc6\u0e01\u0e30\u0e32"+ + "\u0e33\u0e40\u0e46\u0e81\u0e82\u0e84\u0e84\u0e86\u0e8a\u0e8c\u0ea3\u0ea5"+ + "\u0ea5\u0ea7\u0eb0\u0eb2\u0eb3\u0ebd\u0ebd\u0ec0\u0ec4\u0ec6\u0ec6\u0edc"+ + "\u0edf\u0f00\u0f00\u0f40\u0f47\u0f49\u0f6c\u0f88\u0f8c\u1000\u102a\u103f"+ + "\u103f\u1050\u1055\u105a\u105d\u1061\u1061\u1065\u1066\u106e\u1070\u1075"+ + "\u1081\u108e\u108e\u10a0\u10c5\u10c7\u10c7\u10cd\u10cd\u10d0\u10fa\u10fc"+ + "\u1248\u124a\u124d\u1250\u1256\u1258\u1258\u125a\u125d\u1260\u1288\u128a"+ + "\u128d\u1290\u12b0\u12b2\u12b5\u12b8\u12be\u12c0\u12c0\u12c2\u12c5\u12c8"+ + "\u12d6\u12d8\u1310\u1312\u1315\u1318\u135a\u1380\u138f\u13a0\u13f5\u13f8"+ + "\u13fd\u1401\u166c\u166f\u167f\u1681\u169a\u16a0\u16ea\u16f1\u16f8\u1700"+ + "\u1711\u171f\u1731\u1740\u1751\u1760\u176c\u176e\u1770\u1780\u17b3\u17d7"+ + "\u17d7\u17dc\u17dc\u1820\u1878\u1880\u1884\u1887\u18a8\u18aa\u18aa\u18b0"+ + "\u18f5\u1900\u191e\u1950\u196d\u1970\u1974\u1980\u19ab\u19b0\u19c9\u1a00"+ + "\u1a16\u1a20\u1a54\u1aa7\u1aa7\u1b05\u1b33\u1b45\u1b4c\u1b83\u1ba0\u1bae"+ + "\u1baf\u1bba\u1be5\u1c00\u1c23\u1c4d\u1c4f\u1c5a\u1c7d\u1c80\u1c88\u1c90"+ + "\u1cba\u1cbd\u1cbf\u1ce9\u1cec\u1cee\u1cf3\u1cf5\u1cf6\u1cfa\u1cfa\u1d00"+ + "\u1dbf\u1e00\u1f15\u1f18\u1f1d\u1f20\u1f45\u1f48\u1f4d\u1f50\u1f57\u1f59"+ + "\u1f59\u1f5b\u1f5b\u1f5d\u1f5d\u1f5f\u1f7d\u1f80\u1fb4\u1fb6\u1fbc\u1fbe"+ + "\u1fbe\u1fc2\u1fc4\u1fc6\u1fcc\u1fd0\u1fd3\u1fd6\u1fdb\u1fe0\u1fec\u1ff2"+ + "\u1ff4\u1ff6\u1ffc\u2071\u2071\u207f\u207f\u2090\u209c\u2102\u2102\u2107"+ + "\u2107\u210a\u2113\u2115\u2115\u2119\u211d\u2124\u2124\u2126\u2126\u2128"+ + "\u2128\u212a\u212d\u212f\u2139\u213c\u213f\u2145\u2149\u214e\u214e\u2183"+ + "\u2184\u2c00\u2ce4\u2ceb\u2cee\u2cf2\u2cf3\u2d00\u2d25\u2d27\u2d27\u2d2d"+ + "\u2d2d\u2d30\u2d67\u2d6f\u2d6f\u2d80\u2d96\u2da0\u2da6\u2da8\u2dae\u2db0"+ + "\u2db6\u2db8\u2dbe\u2dc0\u2dc6\u2dc8\u2dce\u2dd0\u2dd6\u2dd8\u2dde\u2e2f"+ + "\u2e2f\u3005\u3006\u3031\u3035\u303b\u303c\u3041\u3096\u309d\u309f\u30a1"+ + "\u30fa\u30fc\u30ff\u3105\u312f\u3131\u318e\u31a0\u31bf\u31f0\u31ff\u3400"+ + "\u4dbf\u4e00\u8000\ua48c\u8000\ua4d0\u8000\ua4fd\u8000\ua500\u8000\ua60c"+ + "\u8000\ua610\u8000\ua61f\u8000\ua62a\u8000\ua62b\u8000\ua640\u8000\ua66e"+ + "\u8000\ua67f\u8000\ua69d\u8000\ua6a0\u8000\ua6e5\u8000\ua717\u8000\ua71f"+ + "\u8000\ua722\u8000\ua788\u8000\ua78b\u8000\ua7ca\u8000\ua7d0\u8000\ua7d1"+ + "\u8000\ua7d3\u8000\ua7d3\u8000\ua7d5\u8000\ua7d9\u8000\ua7f2\u8000\ua801"+ + "\u8000\ua803\u8000\ua805\u8000\ua807\u8000\ua80a\u8000\ua80c\u8000\ua822"+ + "\u8000\ua840\u8000\ua873\u8000\ua882\u8000\ua8b3\u8000\ua8f2\u8000\ua8f7"+ + "\u8000\ua8fb\u8000\ua8fb\u8000\ua8fd\u8000\ua8fe\u8000\ua90a\u8000\ua925"+ + "\u8000\ua930\u8000\ua946\u8000\ua960\u8000\ua97c\u8000\ua984\u8000\ua9b2"+ + "\u8000\ua9cf\u8000\ua9cf\u8000\ua9e0\u8000\ua9e4\u8000\ua9e6\u8000\ua9ef"+ + "\u8000\ua9fa\u8000\ua9fe\u8000\uaa00\u8000\uaa28\u8000\uaa40\u8000\uaa42"+ + "\u8000\uaa44\u8000\uaa4b\u8000\uaa60\u8000\uaa76\u8000\uaa7a\u8000\uaa7a"+ + "\u8000\uaa7e\u8000\uaaaf\u8000\uaab1\u8000\uaab1\u8000\uaab5\u8000\uaab6"+ + "\u8000\uaab9\u8000\uaabd\u8000\uaac0\u8000\uaac0\u8000\uaac2\u8000\uaac2"+ + "\u8000\uaadb\u8000\uaadd\u8000\uaae0\u8000\uaaea\u8000\uaaf2\u8000\uaaf4"+ + "\u8000\uab01\u8000\uab06\u8000\uab09\u8000\uab0e\u8000\uab11\u8000\uab16"+ + "\u8000\uab20\u8000\uab26\u8000\uab28\u8000\uab2e\u8000\uab30\u8000\uab5a"+ + "\u8000\uab5c\u8000\uab69\u8000\uab70\u8000\uabe2\u8000\uac00\u8000\ud7a3"+ + "\u8000\ud7b0\u8000\ud7c6\u8000\ud7cb\u8000\ud7fb\u8000\uf900\u8000\ufa6d"+ + "\u8000\ufa70\u8000\ufad9\u8000\ufb00\u8000\ufb06\u8000\ufb13\u8000\ufb17"+ + "\u8000\ufb1d\u8000\ufb1d\u8000\ufb1f\u8000\ufb28\u8000\ufb2a\u8000\ufb36"+ + "\u8000\ufb38\u8000\ufb3c\u8000\ufb3e\u8000\ufb3e\u8000\ufb40\u8000\ufb41"+ + "\u8000\ufb43\u8000\ufb44\u8000\ufb46\u8000\ufbb1\u8000\ufbd3\u8000\ufd3d"+ + "\u8000\ufd50\u8000\ufd8f\u8000\ufd92\u8000\ufdc7\u8000\ufdf0\u8000\ufdfb"+ + "\u8000\ufe70\u8000\ufe74\u8000\ufe76\u8000\ufefc\u8000\uff21\u8000\uff3a"+ + "\u8000\uff41\u8000\uff5a\u8000\uff66\u8000\uffbe\u8000\uffc2\u8000\uffc7"+ + "\u8000\uffca\u8000\uffcf\u8000\uffd2\u8000\uffd7\u8000\uffda\u8000\uffdc"+ + "\u8001\u0000\u8001\u000b\u8001\r\u8001&\u8001(\u8001:\u8001<\u8001=\u8001"+ + "?\u8001M\u8001P\u8001]\u8001\u0080\u8001\u00fa\u8001\u0280\u8001\u029c"+ + "\u8001\u02a0\u8001\u02d0\u8001\u0300\u8001\u031f\u8001\u032d\u8001\u0340"+ + "\u8001\u0342\u8001\u0349\u8001\u0350\u8001\u0375\u8001\u0380\u8001\u039d"+ + "\u8001\u03a0\u8001\u03c3\u8001\u03c8\u8001\u03cf\u8001\u0400\u8001\u049d"+ + "\u8001\u04b0\u8001\u04d3\u8001\u04d8\u8001\u04fb\u8001\u0500\u8001\u0527"+ + "\u8001\u0530\u8001\u0563\u8001\u0570\u8001\u057a\u8001\u057c\u8001\u058a"+ + "\u8001\u058c\u8001\u0592\u8001\u0594\u8001\u0595\u8001\u0597\u8001\u05a1"+ + "\u8001\u05a3\u8001\u05b1\u8001\u05b3\u8001\u05b9\u8001\u05bb\u8001\u05bc"+ + "\u8001\u0600\u8001\u0736\u8001\u0740\u8001\u0755\u8001\u0760\u8001\u0767"+ + "\u8001\u0780\u8001\u0785\u8001\u0787\u8001\u07b0\u8001\u07b2\u8001\u07ba"+ + "\u8001\u0800\u8001\u0805\u8001\u0808\u8001\u0808\u8001\u080a\u8001\u0835"+ + "\u8001\u0837\u8001\u0838\u8001\u083c\u8001\u083c\u8001\u083f\u8001\u0855"+ + "\u8001\u0860\u8001\u0876\u8001\u0880\u8001\u089e\u8001\u08e0\u8001\u08f2"+ + "\u8001\u08f4\u8001\u08f5\u8001\u0900\u8001\u0915\u8001\u0920\u8001\u0939"+ + "\u8001\u0980\u8001\u09b7\u8001\u09be\u8001\u09bf\u8001\u0a00\u8001\u0a00"+ + "\u8001\u0a10\u8001\u0a13\u8001\u0a15\u8001\u0a17\u8001\u0a19\u8001\u0a35"+ + "\u8001\u0a60\u8001\u0a7c\u8001\u0a80\u8001\u0a9c\u8001\u0ac0\u8001\u0ac7"+ + "\u8001\u0ac9\u8001\u0ae4\u8001\u0b00\u8001\u0b35\u8001\u0b40\u8001\u0b55"+ + "\u8001\u0b60\u8001\u0b72\u8001\u0b80\u8001\u0b91\u8001\u0c00\u8001\u0c48"+ + "\u8001\u0c80\u8001\u0cb2\u8001\u0cc0\u8001\u0cf2\u8001\u0d00\u8001\u0d23"+ + "\u8001\u0e80\u8001\u0ea9\u8001\u0eb0\u8001\u0eb1\u8001\u0f00\u8001\u0f1c"+ + "\u8001\u0f27\u8001\u0f27\u8001\u0f30\u8001\u0f45\u8001\u0f70\u8001\u0f81"+ + "\u8001\u0fb0\u8001\u0fc4\u8001\u0fe0\u8001\u0ff6\u8001\u1003\u8001\u1037"+ + "\u8001\u1071\u8001\u1072\u8001\u1075\u8001\u1075\u8001\u1083\u8001\u10af"+ + "\u8001\u10d0\u8001\u10e8\u8001\u1103\u8001\u1126\u8001\u1144\u8001\u1144"+ + "\u8001\u1147\u8001\u1147\u8001\u1150\u8001\u1172\u8001\u1176\u8001\u1176"+ + "\u8001\u1183\u8001\u11b2\u8001\u11c1\u8001\u11c4\u8001\u11da\u8001\u11da"+ + "\u8001\u11dc\u8001\u11dc\u8001\u1200\u8001\u1211\u8001\u1213\u8001\u122b"+ + "\u8001\u1280\u8001\u1286\u8001\u1288\u8001\u1288\u8001\u128a\u8001\u128d"+ + "\u8001\u128f\u8001\u129d\u8001\u129f\u8001\u12a8\u8001\u12b0\u8001\u12de"+ + "\u8001\u1305\u8001\u130c\u8001\u130f\u8001\u1310\u8001\u1313\u8001\u1328"+ + "\u8001\u132a\u8001\u1330\u8001\u1332\u8001\u1333\u8001\u1335\u8001\u1339"+ + "\u8001\u133d\u8001\u133d\u8001\u1350\u8001\u1350\u8001\u135d\u8001\u1361"+ + "\u8001\u1400\u8001\u1434\u8001\u1447\u8001\u144a\u8001\u145f\u8001\u1461"+ + "\u8001\u1480\u8001\u14af\u8001\u14c4\u8001\u14c5\u8001\u14c7\u8001\u14c7"+ + "\u8001\u1580\u8001\u15ae\u8001\u15d8\u8001\u15db\u8001\u1600\u8001\u162f"+ + "\u8001\u1644\u8001\u1644\u8001\u1680\u8001\u16aa\u8001\u16b8\u8001\u16b8"+ + "\u8001\u1700\u8001\u171a\u8001\u1740\u8001\u1746\u8001\u1800\u8001\u182b"+ + "\u8001\u18a0\u8001\u18df\u8001\u18ff\u8001\u1906\u8001\u1909\u8001\u1909"+ + "\u8001\u190c\u8001\u1913\u8001\u1915\u8001\u1916\u8001\u1918\u8001\u192f"+ + "\u8001\u193f\u8001\u193f\u8001\u1941\u8001\u1941\u8001\u19a0\u8001\u19a7"+ + "\u8001\u19aa\u8001\u19d0\u8001\u19e1\u8001\u19e1\u8001\u19e3\u8001\u19e3"+ + "\u8001\u1a00\u8001\u1a00\u8001\u1a0b\u8001\u1a32\u8001\u1a3a\u8001\u1a3a"+ + "\u8001\u1a50\u8001\u1a50\u8001\u1a5c\u8001\u1a89\u8001\u1a9d\u8001\u1a9d"+ + "\u8001\u1ab0\u8001\u1af8\u8001\u1c00\u8001\u1c08\u8001\u1c0a\u8001\u1c2e"+ + "\u8001\u1c40\u8001\u1c40\u8001\u1c72\u8001\u1c8f\u8001\u1d00\u8001\u1d06"+ + "\u8001\u1d08\u8001\u1d09\u8001\u1d0b\u8001\u1d30\u8001\u1d46\u8001\u1d46"+ + "\u8001\u1d60\u8001\u1d65\u8001\u1d67\u8001\u1d68\u8001\u1d6a\u8001\u1d89"+ + "\u8001\u1d98\u8001\u1d98\u8001\u1ee0\u8001\u1ef2\u8001\u1fb0\u8001\u1fb0"+ + "\u8001\u2000\u8001\u2399\u8001\u2480\u8001\u2543\u8001\u2f90\u8001\u2ff0"+ + "\u8001\u3000\u8001\u342e\u8001\u4400\u8001\u4646\u8001\u6800\u8001\u6a38"+ + "\u8001\u6a40\u8001\u6a5e\u8001\u6a70\u8001\u6abe\u8001\u6ad0\u8001\u6aed"+ + "\u8001\u6b00\u8001\u6b2f\u8001\u6b40\u8001\u6b43\u8001\u6b63\u8001\u6b77"+ + "\u8001\u6b7d\u8001\u6b8f\u8001\u6e40\u8001\u6e7f\u8001\u6f00\u8001\u6f4a"+ + "\u8001\u6f50\u8001\u6f50\u8001\u6f93\u8001\u6f9f\u8001\u6fe0\u8001\u6fe1"+ + "\u8001\u6fe3\u8001\u6fe3\u8001\u7000\u8001\u87f7\u8001\u8800\u8001\u8cd5"+ + "\u8001\u8d00\u8001\u8d08\u8001\uaff0\u8001\uaff3\u8001\uaff5\u8001\uaffb"+ + "\u8001\uaffd\u8001\uaffe\u8001\ub000\u8001\ub122\u8001\ub150\u8001\ub152"+ + "\u8001\ub164\u8001\ub167\u8001\ub170\u8001\ub2fb\u8001\ubc00\u8001\ubc6a"+ + "\u8001\ubc70\u8001\ubc7c\u8001\ubc80\u8001\ubc88\u8001\ubc90\u8001\ubc99"+ + "\u8001\ud400\u8001\ud454\u8001\ud456\u8001\ud49c\u8001\ud49e\u8001\ud49f"+ + "\u8001\ud4a2\u8001\ud4a2\u8001\ud4a5\u8001\ud4a6\u8001\ud4a9\u8001\ud4ac"+ + "\u8001\ud4ae\u8001\ud4b9\u8001\ud4bb\u8001\ud4bb\u8001\ud4bd\u8001\ud4c3"+ + "\u8001\ud4c5\u8001\ud505\u8001\ud507\u8001\ud50a\u8001\ud50d\u8001\ud514"+ + "\u8001\ud516\u8001\ud51c\u8001\ud51e\u8001\ud539\u8001\ud53b\u8001\ud53e"+ + "\u8001\ud540\u8001\ud544\u8001\ud546\u8001\ud546\u8001\ud54a\u8001\ud550"+ + "\u8001\ud552\u8001\ud6a5\u8001\ud6a8\u8001\ud6c0\u8001\ud6c2\u8001\ud6da"+ + "\u8001\ud6dc\u8001\ud6fa\u8001\ud6fc\u8001\ud714\u8001\ud716\u8001\ud734"+ + "\u8001\ud736\u8001\ud74e\u8001\ud750\u8001\ud76e\u8001\ud770\u8001\ud788"+ + "\u8001\ud78a\u8001\ud7a8\u8001\ud7aa\u8001\ud7c2\u8001\ud7c4\u8001\ud7cb"+ + "\u8001\udf00\u8001\udf1e\u8001\ue100\u8001\ue12c\u8001\ue137\u8001\ue13d"+ + "\u8001\ue14e\u8001\ue14e\u8001\ue290\u8001\ue2ad\u8001\ue2c0\u8001\ue2eb"+ + "\u8001\ue7e0\u8001\ue7e6\u8001\ue7e8\u8001\ue7eb\u8001\ue7ed\u8001\ue7ee"+ + "\u8001\ue7f0\u8001\ue7fe\u8001\ue800\u8001\ue8c4\u8001\ue900\u8001\ue943"+ + "\u8001\ue94b\u8001\ue94b\u8001\uee00\u8001\uee03\u8001\uee05\u8001\uee1f"+ + "\u8001\uee21\u8001\uee22\u8001\uee24\u8001\uee24\u8001\uee27\u8001\uee27"+ + "\u8001\uee29\u8001\uee32\u8001\uee34\u8001\uee37\u8001\uee39\u8001\uee39"+ + "\u8001\uee3b\u8001\uee3b\u8001\uee42\u8001\uee42\u8001\uee47\u8001\uee47"+ + "\u8001\uee49\u8001\uee49\u8001\uee4b\u8001\uee4b\u8001\uee4d\u8001\uee4f"+ + "\u8001\uee51\u8001\uee52\u8001\uee54\u8001\uee54\u8001\uee57\u8001\uee57"+ + "\u8001\uee59\u8001\uee59\u8001\uee5b\u8001\uee5b\u8001\uee5d\u8001\uee5d"+ + "\u8001\uee5f\u8001\uee5f\u8001\uee61\u8001\uee62\u8001\uee64\u8001\uee64"+ + "\u8001\uee67\u8001\uee6a\u8001\uee6c\u8001\uee72\u8001\uee74\u8001\uee77"+ + "\u8001\uee79\u8001\uee7c\u8001\uee7e\u8001\uee7e\u8001\uee80\u8001\uee89"+ + "\u8001\uee8b\u8001\uee9b\u8001\ueea1\u8001\ueea3\u8001\ueea5\u8001\ueea9"+ + "\u8001\ueeab\u8001\ueebb\u8002\u0000\u8002\ua6df\u8002\ua700\u8002\ub738"+ + "\u8002\ub740\u8002\ub81d\u8002\ub820\u8002\ucea1\u8002\uceb0\u8002\uebe0"+ + "\u8002\uf800\u8002\ufa1d\u8003\u0000\u8003\u134a\u0628\u0000\u0002\u0001"+ + "\u0000\u0000\u0000\u0000\u0004\u0001\u0000\u0000\u0000\u0000\u0006\u0001"+ + "\u0000\u0000\u0000\u0000\b\u0001\u0000\u0000\u0000\u0000\n\u0001\u0000"+ + "\u0000\u0000\u0000\f\u0001\u0000\u0000\u0000\u0000\u000e\u0001\u0000\u0000"+ + "\u0000\u0000\u0010\u0001\u0000\u0000\u0000\u0000\u0012\u0001\u0000\u0000"+ + "\u0000\u0000\u0014\u0001\u0000\u0000\u0000\u0000\u0016\u0001\u0000\u0000"+ + "\u0000\u0000\u0018\u0001\u0000\u0000\u0000\u0000\u001a\u0001\u0000\u0000"+ + "\u0000\u0000\u001c\u0001\u0000\u0000\u0000\u0000\u001e\u0001\u0000\u0000"+ + "\u0000\u0000 \u0001\u0000\u0000\u0000\u0000\"\u0001\u0000\u0000\u0000"+ + "\u0000$\u0001\u0000\u0000\u0000\u0000&\u0001\u0000\u0000\u0000\u0000("+ + "\u0001\u0000\u0000\u0000\u0000*\u0001\u0000\u0000\u0000\u0000,\u0001\u0000"+ + "\u0000\u0000\u0000.\u0001\u0000\u0000\u0000\u00000\u0001\u0000\u0000\u0000"+ + "\u00002\u0001\u0000\u0000\u0000\u00004\u0001\u0000\u0000\u0000\u00006"+ + "\u0001\u0000\u0000\u0000\u00008\u0001\u0000\u0000\u0000\u0000:\u0001\u0000"+ + "\u0000\u0000\u0000<\u0001\u0000\u0000\u0000\u0000>\u0001\u0000\u0000\u0000"+ + "\u0000@\u0001\u0000\u0000\u0000\u0000B\u0001\u0000\u0000\u0000\u0000D"+ + "\u0001\u0000\u0000\u0000\u0000F\u0001\u0000\u0000\u0000\u0000H\u0001\u0000"+ + "\u0000\u0000\u0000J\u0001\u0000\u0000\u0000\u0000L\u0001\u0000\u0000\u0000"+ + "\u0000N\u0001\u0000\u0000\u0000\u0000P\u0001\u0000\u0000\u0000\u0000R"+ + "\u0001\u0000\u0000\u0000\u0000T\u0001\u0000\u0000\u0000\u0000V\u0001\u0000"+ + "\u0000\u0000\u0000X\u0001\u0000\u0000\u0000\u0000Z\u0001\u0000\u0000\u0000"+ + "\u0000\\\u0001\u0000\u0000\u0000\u0000^\u0001\u0000\u0000\u0000\u0000"+ + "`\u0001\u0000\u0000\u0000\u0000b\u0001\u0000\u0000\u0000\u0000d\u0001"+ + "\u0000\u0000\u0000\u0000f\u0001\u0000\u0000\u0000\u0000h\u0001\u0000\u0000"+ + "\u0000\u0000j\u0001\u0000\u0000\u0000\u0000l\u0001\u0000\u0000\u0000\u0000"+ + "n\u0001\u0000\u0000\u0000\u0000p\u0001\u0000\u0000\u0000\u0000r\u0001"+ + "\u0000\u0000\u0000\u0000t\u0001\u0000\u0000\u0000\u0000v\u0001\u0000\u0000"+ + "\u0000\u0000x\u0001\u0000\u0000\u0000\u0000z\u0001\u0000\u0000\u0000\u0000"+ + "|\u0001\u0000\u0000\u0000\u0000~\u0001\u0000\u0000\u0000\u0000\u0080\u0001"+ + "\u0000\u0000\u0000\u0000\u0082\u0001\u0000\u0000\u0000\u0000\u0084\u0001"+ + "\u0000\u0000\u0000\u0000\u0086\u0001\u0000\u0000\u0000\u0000\u0088\u0001"+ + "\u0000\u0000\u0000\u0000\u008a\u0001\u0000\u0000\u0000\u0000\u008c\u0001"+ + "\u0000\u0000\u0000\u0000\u008e\u0001\u0000\u0000\u0000\u0000\u0090\u0001"+ + "\u0000\u0000\u0000\u0000\u0092\u0001\u0000\u0000\u0000\u0000\u0094\u0001"+ + "\u0000\u0000\u0000\u0000\u0096\u0001\u0000\u0000\u0000\u0000\u0098\u0001"+ + "\u0000\u0000\u0000\u0000\u009a\u0001\u0000\u0000\u0000\u0000\u009c\u0001"+ + "\u0000\u0000\u0000\u0000\u009e\u0001\u0000\u0000\u0000\u0000\u00a0\u0001"+ + "\u0000\u0000\u0000\u0000\u00a2\u0001\u0000\u0000\u0000\u0000\u00a4\u0001"+ + "\u0000\u0000\u0000\u0000\u00a6\u0001\u0000\u0000\u0000\u0000\u00a8\u0001"+ + "\u0000\u0000\u0000\u0000\u00aa\u0001\u0000\u0000\u0000\u0000\u00ac\u0001"+ + "\u0000\u0000\u0000\u0000\u00ae\u0001\u0000\u0000\u0000\u0000\u00b0\u0001"+ + "\u0000\u0000\u0000\u0000\u00b2\u0001\u0000\u0000\u0000\u0000\u00b4\u0001"+ + "\u0000\u0000\u0000\u0000\u00b6\u0001\u0000\u0000\u0000\u0000\u00b8\u0001"+ + "\u0000\u0000\u0000\u0000\u00ba\u0001\u0000\u0000\u0000\u0000\u00bc\u0001"+ + "\u0000\u0000\u0000\u0000\u00be\u0001\u0000\u0000\u0000\u0000\u00c0\u0001"+ + "\u0000\u0000\u0000\u0000\u00c2\u0001\u0000\u0000\u0000\u0000\u00c4\u0001"+ + "\u0000\u0000\u0000\u0000\u00c6\u0001\u0000\u0000\u0000\u0000\u00c8\u0001"+ + "\u0000\u0000\u0000\u0000\u00ca\u0001\u0000\u0000\u0000\u0000\u00cc\u0001"+ + "\u0000\u0000\u0000\u0000\u00ce\u0001\u0000\u0000\u0000\u0000\u00d0\u0001"+ + "\u0000\u0000\u0000\u0000\u00d2\u0001\u0000\u0000\u0000\u0000\u00d4\u0001"+ + "\u0000\u0000\u0000\u0000\u00d6\u0001\u0000\u0000\u0000\u0000\u00d8\u0001"+ + "\u0000\u0000\u0000\u0000\u00da\u0001\u0000\u0000\u0000\u0000\u00dc\u0001"+ + "\u0000\u0000\u0000\u0000\u00de\u0001\u0000\u0000\u0000\u0000\u00e0\u0001"+ + "\u0000\u0000\u0000\u0000\u00e2\u0001\u0000\u0000\u0000\u0000\u00e4\u0001"+ + "\u0000\u0000\u0000\u0000\u00e6\u0001\u0000\u0000\u0000\u0000\u00e8\u0001"+ + "\u0000\u0000\u0000\u0000\u00ea\u0001\u0000\u0000\u0000\u0000\u00ec\u0001"+ + "\u0000\u0000\u0000\u0000\u00ee\u0001\u0000\u0000\u0000\u0000\u00f0\u0001"+ + "\u0000\u0000\u0000\u0000\u00f2\u0001\u0000\u0000\u0000\u0000\u00f4\u0001"+ + "\u0000\u0000\u0000\u0000\u00f6\u0001\u0000\u0000\u0000\u0000\u00f8\u0001"+ + "\u0000\u0000\u0000\u0000\u00fa\u0001\u0000\u0000\u0000\u0000\u00fc\u0001"+ + "\u0000\u0000\u0000\u0000\u00fe\u0001\u0000\u0000\u0000\u0000\u0100\u0001"+ + "\u0000\u0000\u0000\u0000\u0102\u0001\u0000\u0000\u0000\u0000\u0104\u0001"+ + "\u0000\u0000\u0000\u0000\u0106\u0001\u0000\u0000\u0000\u0000\u0108\u0001"+ + "\u0000\u0000\u0000\u0000\u010a\u0001\u0000\u0000\u0000\u0000\u010c\u0001"+ + "\u0000\u0000\u0000\u0000\u010e\u0001\u0000\u0000\u0000\u0000\u0110\u0001"+ + "\u0000\u0000\u0000\u0000\u0112\u0001\u0000\u0000\u0000\u0000\u0114\u0001"+ + "\u0000\u0000\u0000\u0000\u0116\u0001\u0000\u0000\u0000\u0000\u0118\u0001"+ + "\u0000\u0000\u0000\u0000\u011a\u0001\u0000\u0000\u0000\u0000\u011c\u0001"+ + "\u0000\u0000\u0000\u0000\u011e\u0001\u0000\u0000\u0000\u0000\u0120\u0001"+ + "\u0000\u0000\u0000\u0000\u0122\u0001\u0000\u0000\u0000\u0000\u0128\u0001"+ + "\u0000\u0000\u0000\u0000\u012c\u0001\u0000\u0000\u0000\u0000\u012e\u0001"+ + "\u0000\u0000\u0000\u0000\u0130\u0001\u0000\u0000\u0000\u0000\u0132\u0001"+ + "\u0000\u0000\u0000\u0000\u0134\u0001\u0000\u0000\u0000\u0000\u0136\u0001"+ + "\u0000\u0000\u0000\u0000\u0138\u0001\u0000\u0000\u0000\u0000\u013a\u0001"+ + "\u0000\u0000\u0000\u0000\u013c\u0001\u0000\u0000\u0000\u0000\u013e\u0001"+ + "\u0000\u0000\u0000\u0000\u0140\u0001\u0000\u0000\u0000\u0000\u0142\u0001"+ + "\u0000\u0000\u0000\u0001\u0158\u0001\u0000\u0000\u0000\u0001\u015a\u0001"+ + "\u0000\u0000\u0000\u0001\u015c\u0001\u0000\u0000\u0000\u0001\u015e\u0001"+ + "\u0000\u0000\u0000\u0001\u0160\u0001\u0000\u0000\u0000\u0002\u0164\u0001"+ + "\u0000\u0000\u0000\u0004\u017a\u0001\u0000\u0000\u0000\u0006\u017c\u0001"+ + "\u0000\u0000\u0000\b\u0183\u0001\u0000\u0000\u0000\n\u018b\u0001\u0000"+ + "\u0000\u0000\f\u0192\u0001\u0000\u0000\u0000\u000e\u0199\u0001\u0000\u0000"+ + "\u0000\u0010\u01a0\u0001\u0000\u0000\u0000\u0012\u01a7\u0001\u0000\u0000"+ + "\u0000\u0014\u01b0\u0001\u0000\u0000\u0000\u0016\u01ba\u0001\u0000\u0000"+ + "\u0000\u0018\u01c2\u0001\u0000\u0000\u0000\u001a\u01cc\u0001\u0000\u0000"+ + "\u0000\u001c\u01d8\u0001\u0000\u0000\u0000\u001e\u01df\u0001\u0000\u0000"+ + "\u0000 \u01ea\u0001\u0000\u0000\u0000\"\u01ed\u0001\u0000\u0000\u0000"+ + "$\u01f3\u0001\u0000\u0000\u0000&\u01fc\u0001\u0000\u0000\u0000(\u0201"+ + "\u0001\u0000\u0000\u0000*\u0208\u0001\u0000\u0000\u0000,\u020f\u0001\u0000"+ + "\u0000\u0000.\u0215\u0001\u0000\u0000\u00000\u021a\u0001\u0000\u0000\u0000"+ + "2\u0221\u0001\u0000\u0000\u00004\u022b\u0001\u0000\u0000\u00006\u022f"+ + "\u0001\u0000\u0000\u00008\u0235\u0001\u0000\u0000\u0000:\u0238\u0001\u0000"+ + "\u0000\u0000<\u023a\u0001\u0000\u0000\u0000>\u0241\u0001\u0000\u0000\u0000"+ + "@\u0247\u0001\u0000\u0000\u0000B\u0254\u0001\u0000\u0000\u0000D\u025d"+ + "\u0001\u0000\u0000\u0000F\u0261\u0001\u0000\u0000\u0000H\u0265\u0001\u0000"+ + "\u0000\u0000J\u026b\u0001\u0000\u0000\u0000L\u026d\u0001\u0000\u0000\u0000"+ + "N\u0270\u0001\u0000\u0000\u0000P\u0275\u0001\u0000\u0000\u0000R\u027b"+ + "\u0001\u0000\u0000\u0000T\u0281\u0001\u0000\u0000\u0000V\u0288\u0001\u0000"+ + "\u0000\u0000X\u028f\u0001\u0000\u0000\u0000Z\u0298\u0001\u0000\u0000\u0000"+ + "\\\u02a3\u0001\u0000\u0000\u0000^\u02a9\u0001\u0000\u0000\u0000`\u02af"+ + "\u0001\u0000\u0000\u0000b\u02b6\u0001\u0000\u0000\u0000d\u02bc\u0001\u0000"+ + "\u0000\u0000f\u02c3\u0001\u0000\u0000\u0000h\u02c9\u0001\u0000\u0000\u0000"+ + "j\u02d2\u0001\u0000\u0000\u0000l\u02da\u0001\u0000\u0000\u0000n\u02e0"+ + "\u0001\u0000\u0000\u0000p\u02e8\u0001\u0000\u0000\u0000r\u02ef\u0001\u0000"+ + "\u0000\u0000t\u02f4\u0001\u0000\u0000\u0000v\u02fd\u0001\u0000\u0000\u0000"+ + "x\u030c\u0001\u0000\u0000\u0000z\u0312\u0001\u0000\u0000\u0000|\u0316"+ + "\u0001\u0000\u0000\u0000~\u0319\u0001\u0000\u0000\u0000\u0080\u0320\u0001"+ + "\u0000\u0000\u0000\u0082\u032a\u0001\u0000\u0000\u0000\u0084\u0334\u0001"+ + "\u0000\u0000\u0000\u0086\u0340\u0001\u0000\u0000\u0000\u0088\u0349\u0001"+ + "\u0000\u0000\u0000\u008a\u0353\u0001\u0000\u0000\u0000\u008c\u035b\u0001"+ + "\u0000\u0000\u0000\u008e\u0367\u0001\u0000\u0000\u0000\u0090\u0376\u0001"+ + "\u0000\u0000\u0000\u0092\u037c\u0001\u0000\u0000\u0000\u0094\u0380\u0001"+ + "\u0000\u0000\u0000\u0096\u0384\u0001\u0000\u0000\u0000\u0098\u0389\u0001"+ + "\u0000\u0000\u0000\u009a\u0392\u0001\u0000\u0000\u0000\u009c\u0399\u0001"+ + "\u0000\u0000\u0000\u009e\u03a1\u0001\u0000\u0000\u0000\u00a0\u03a9\u0001"+ + "\u0000\u0000\u0000\u00a2\u03ae\u0001\u0000\u0000\u0000\u00a4\u03b8\u0001"+ + "\u0000\u0000\u0000\u00a6\u03bf\u0001\u0000\u0000\u0000\u00a8\u03c4\u0001"+ + "\u0000\u0000\u0000\u00aa\u03ca\u0001\u0000\u0000\u0000\u00ac\u03cd\u0001"+ + "\u0000\u0000\u0000\u00ae\u03d1\u0001\u0000\u0000\u0000\u00b0\u03d8\u0001"+ + "\u0000\u0000\u0000\u00b2\u03dd\u0001\u0000\u0000\u0000\u00b4\u03e2\u0001"+ + "\u0000\u0000\u0000\u00b6\u03e7\u0001\u0000\u0000\u0000\u00b8\u03ef\u0001"+ + "\u0000\u0000\u0000\u00ba\u03f6\u0001\u0000\u0000\u0000\u00bc\u03fc\u0001"+ + "\u0000\u0000\u0000\u00be\u040a\u0001\u0000\u0000\u0000\u00c0\u040d\u0001"+ + "\u0000\u0000\u0000\u00c2\u0413\u0001\u0000\u0000\u0000\u00c4\u0418\u0001"+ + "\u0000\u0000\u0000\u00c6\u0423\u0001\u0000\u0000\u0000\u00c8\u0427\u0001"+ + "\u0000\u0000\u0000\u00ca\u042e\u0001\u0000\u0000\u0000\u00cc\u0437\u0001"+ + "\u0000\u0000\u0000\u00ce\u043b\u0001\u0000\u0000\u0000\u00d0\u0441\u0001"+ + "\u0000\u0000\u0000\u00d2\u044b\u0001\u0000\u0000\u0000\u00d4\u044d\u0001"+ + "\u0000\u0000\u0000\u00d6\u0451\u0001\u0000\u0000\u0000\u00d8\u0453\u0001"+ + "\u0000\u0000\u0000\u00da\u0457\u0001\u0000\u0000\u0000\u00dc\u0459\u0001"+ + "\u0000\u0000\u0000\u00de\u045d\u0001\u0000\u0000\u0000\u00e0\u045f\u0001"+ + "\u0000\u0000\u0000\u00e2\u0461\u0001\u0000\u0000\u0000\u00e4\u0463\u0001"+ + "\u0000\u0000\u0000\u00e6\u0465\u0001\u0000\u0000\u0000\u00e8\u0467\u0001"+ + "\u0000\u0000\u0000\u00ea\u046c\u0001\u0000\u0000\u0000\u00ec\u0471\u0001"+ + "\u0000\u0000\u0000\u00ee\u0474\u0001\u0000\u0000\u0000\u00f0\u0478\u0001"+ + "\u0000\u0000\u0000\u00f2\u047b\u0001\u0000\u0000\u0000\u00f4\u047e\u0001"+ + "\u0000\u0000\u0000\u00f6\u0481\u0001\u0000\u0000\u0000\u00f8\u0484\u0001"+ + "\u0000\u0000\u0000\u00fa\u0486\u0001\u0000\u0000\u0000\u00fc\u0489\u0001"+ + "\u0000\u0000\u0000\u00fe\u048b\u0001\u0000\u0000\u0000\u0100\u048e\u0001"+ + "\u0000\u0000\u0000\u0102\u0490\u0001\u0000\u0000\u0000\u0104\u0492\u0001"+ + "\u0000\u0000\u0000\u0106\u0494\u0001\u0000\u0000\u0000\u0108\u0497\u0001"+ + "\u0000\u0000\u0000\u010a\u049a\u0001\u0000\u0000\u0000\u010c\u049d\u0001"+ + "\u0000\u0000\u0000\u010e\u049f\u0001\u0000\u0000\u0000\u0110\u04a1\u0001"+ + "\u0000\u0000\u0000\u0112\u04a3\u0001\u0000\u0000\u0000\u0114\u04a5\u0001"+ + "\u0000\u0000\u0000\u0116\u04a7\u0001\u0000\u0000\u0000\u0118\u04a9\u0001"+ + "\u0000\u0000\u0000\u011a\u04b7\u0001\u0000\u0000\u0000\u011c\u04bb\u0001"+ + "\u0000\u0000\u0000\u011e\u04c7\u0001\u0000\u0000\u0000\u0120\u04d5\u0001"+ + "\u0000\u0000\u0000\u0122\u04e1\u0001\u0000\u0000\u0000\u0124\u0505\u0001"+ + "\u0000\u0000\u0000\u0126\u0507\u0001\u0000\u0000\u0000\u0128\u0512\u0001"+ + "\u0000\u0000\u0000\u012a\u0518\u0001\u0000\u0000\u0000\u012c\u051f\u0001"+ + "\u0000\u0000\u0000\u012e\u0525\u0001\u0000\u0000\u0000\u0130\u0527\u0001"+ + "\u0000\u0000\u0000\u0132\u052c\u0001\u0000\u0000\u0000\u0134\u0531\u0001"+ + "\u0000\u0000\u0000\u0136\u0538\u0001\u0000\u0000\u0000\u0138\u0543\u0001"+ + "\u0000\u0000\u0000\u013a\u054e\u0001\u0000\u0000\u0000\u013c\u055b\u0001"+ + "\u0000\u0000\u0000\u013e\u0561\u0001\u0000\u0000\u0000\u0140\u0570\u0001"+ + "\u0000\u0000\u0000\u0142\u0576\u0001\u0000\u0000\u0000\u0144\u0585\u0001"+ + "\u0000\u0000\u0000\u0146\u0587\u0001\u0000\u0000\u0000\u0148\u05a3\u0001"+ + "\u0000\u0000\u0000\u014a\u05ad\u0001\u0000\u0000\u0000\u014c\u05af\u0001"+ + "\u0000\u0000\u0000\u014e\u05b1\u0001\u0000\u0000\u0000\u0150\u05b3\u0001"+ + "\u0000\u0000\u0000\u0152\u05bb\u0001\u0000\u0000\u0000\u0154\u05bd\u0001"+ + "\u0000\u0000\u0000\u0156\u05bf\u0001\u0000\u0000\u0000\u0158\u05c2\u0001"+ + "\u0000\u0000\u0000\u015a\u05c8\u0001\u0000\u0000\u0000\u015c\u05d6\u0001"+ + "\u0000\u0000\u0000\u015e\u05f3\u0001\u0000\u0000\u0000\u0160\u05f7\u0001"+ + "\u0000\u0000\u0000\u0162\u0165\u0003\u0004\u0001\u0000\u0163\u0165\u0003"+ + "\u0122\u0090\u0000\u0164\u0162\u0001\u0000\u0000\u0000\u0164\u0163\u0001"+ + "\u0000\u0000\u0000\u0165\u0166\u0001\u0000\u0000\u0000\u0166\u0167\u0006"+ + "\u0000\u0000\u0000\u0167\u0003\u0001\u0000\u0000\u0000\u0168\u0172\u0003"+ + "\u0148\u00a3\u0000\u0169\u016a\u0005.\u0000\u0000\u016a\u016c\u0004\u0001"+ + "\u0000\u0000\u016b\u016d\u0003\u0148\u00a3\u0000\u016c\u016b\u0001\u0000"+ + "\u0000\u0000\u016c\u016d\u0001\u0000\u0000\u0000\u016d\u016f\u0001\u0000"+ + "\u0000\u0000\u016e\u0170\u0003\u0150\u00a7\u0000\u016f\u016e\u0001\u0000"+ + "\u0000\u0000\u016f\u0170\u0001\u0000\u0000\u0000\u0170\u0173\u0001\u0000"+ + "\u0000\u0000\u0171\u0173\u0003\u0150\u00a7\u0000\u0172\u0169\u0001\u0000"+ + "\u0000\u0000\u0172\u0171\u0001\u0000\u0000\u0000\u0173\u017b\u0001\u0000"+ + "\u0000\u0000\u0174\u0175\u0005.\u0000\u0000\u0175\u0176\u0004\u0001\u0001"+ + "\u0000\u0176\u0178\u0003\u0148\u00a3\u0000\u0177\u0179\u0003\u0150\u00a7"+ + "\u0000\u0178\u0177\u0001\u0000\u0000\u0000\u0178\u0179\u0001\u0000\u0000"+ + "\u0000\u0179\u017b\u0001\u0000\u0000\u0000\u017a\u0168\u0001\u0000\u0000"+ + "\u0000\u017a\u0174\u0001\u0000\u0000\u0000\u017b\u0005\u0001\u0000\u0000"+ + "\u0000\u017c\u017d\u0005t\u0000\u0000\u017d\u017e\u0005r\u0000\u0000\u017e"+ + "\u017f\u0005u\u0000\u0000\u017f\u0180\u0005e\u0000\u0000\u0180\u0181\u0001"+ + "\u0000\u0000\u0000\u0181\u0182\u0006\u0002\u0000\u0000\u0182\u0007\u0001"+ + "\u0000\u0000\u0000\u0183\u0184\u0005f\u0000\u0000\u0184\u0185\u0005a\u0000"+ + "\u0000\u0185\u0186\u0005l\u0000\u0000\u0186\u0187\u0005s\u0000\u0000\u0187"+ + "\u0188\u0005e\u0000\u0000\u0188\u0189\u0001\u0000\u0000\u0000\u0189\u018a"+ + "\u0006\u0003\u0000\u0000\u018a\t\u0001\u0000\u0000\u0000\u018b\u018c\u0005"+ + "a\u0000\u0000\u018c\u018d\u0005s\u0000\u0000\u018d\u018e\u0005s\u0000"+ + "\u0000\u018e\u018f\u0005e\u0000\u0000\u018f\u0190\u0005r\u0000\u0000\u0190"+ + "\u0191\u0005t\u0000\u0000\u0191\u000b\u0001\u0000\u0000\u0000\u0192\u0193"+ + "\u0005a\u0000\u0000\u0193\u0194\u0005s\u0000\u0000\u0194\u0195\u0005s"+ + "\u0000\u0000\u0195\u0196\u0005u\u0000\u0000\u0196\u0197\u0005m\u0000\u0000"+ + "\u0197\u0198\u0005e\u0000\u0000\u0198\r\u0001\u0000\u0000\u0000\u0199"+ + "\u019a\u0005i\u0000\u0000\u019a\u019b\u0005n\u0000\u0000\u019b\u019c\u0005"+ + "h\u0000\u0000\u019c\u019d\u0005a\u0000\u0000\u019d\u019e\u0005l\u0000"+ + "\u0000\u019e\u019f\u0005e\u0000\u0000\u019f\u000f\u0001\u0000\u0000\u0000"+ + "\u01a0\u01a1\u0005e\u0000\u0000\u01a1\u01a2\u0005x\u0000\u0000\u01a2\u01a3"+ + "\u0005h\u0000\u0000\u01a3\u01a4\u0005a\u0000\u0000\u01a4\u01a5\u0005l"+ + "\u0000\u0000\u01a5\u01a6\u0005e\u0000\u0000\u01a6\u0011\u0001\u0000\u0000"+ + "\u0000\u01a7\u01a8\u0005r\u0000\u0000\u01a8\u01a9\u0005e\u0000\u0000\u01a9"+ + "\u01aa\u0005q\u0000\u0000\u01aa\u01ab\u0005u\u0000\u0000\u01ab\u01ac\u0005"+ + "i\u0000\u0000\u01ac\u01ad\u0005r\u0000\u0000\u01ad\u01ae\u0005e\u0000"+ + "\u0000\u01ae\u01af\u0005s\u0000\u0000\u01af\u0013\u0001\u0000\u0000\u0000"+ + "\u01b0\u01b1\u0005p\u0000\u0000\u01b1\u01b2\u0005r\u0000\u0000\u01b2\u01b3"+ + "\u0005e\u0000\u0000\u01b3\u01b4\u0005s\u0000\u0000\u01b4\u01b5\u0005e"+ + "\u0000\u0000\u01b5\u01b6\u0005r\u0000\u0000\u01b6\u01b7\u0005v\u0000\u0000"+ + "\u01b7\u01b8\u0005e\u0000\u0000\u01b8\u01b9\u0005s\u0000\u0000\u01b9\u0015"+ + "\u0001\u0000\u0000\u0000\u01ba\u01bb\u0005e\u0000\u0000\u01bb\u01bc\u0005"+ + "n\u0000\u0000\u01bc\u01bd\u0005s\u0000\u0000\u01bd\u01be\u0005u\u0000"+ + "\u0000\u01be\u01bf\u0005r\u0000\u0000\u01bf\u01c0\u0005e\u0000\u0000\u01c0"+ + "\u01c1\u0005s\u0000\u0000\u01c1\u0017\u0001\u0000\u0000\u0000\u01c2\u01c3"+ + "\u0005i\u0000\u0000\u01c3\u01c4\u0005n\u0000\u0000\u01c4\u01c5\u0005v"+ + "\u0000\u0000\u01c5\u01c6\u0005a\u0000\u0000\u01c6\u01c7\u0005r\u0000\u0000"+ + "\u01c7\u01c8\u0005i\u0000\u0000\u01c8\u01c9\u0005a\u0000\u0000\u01c9\u01ca"+ + "\u0005n\u0000\u0000\u01ca\u01cb\u0005t\u0000\u0000\u01cb\u0019\u0001\u0000"+ + "\u0000\u0000\u01cc\u01cd\u0005d\u0000\u0000\u01cd\u01ce\u0005e\u0000\u0000"+ + "\u01ce\u01cf\u0005c\u0000\u0000\u01cf\u01d0\u0005r\u0000\u0000\u01d0\u01d1"+ + "\u0005e\u0000\u0000\u01d1\u01d2\u0005a\u0000\u0000\u01d2\u01d3\u0005s"+ + "\u0000\u0000\u01d3\u01d4\u0005e\u0000\u0000\u01d4\u01d5\u0005s\u0000\u0000"+ + "\u01d5\u01d6\u0001\u0000\u0000\u0000\u01d6\u01d7\u0006\f\u0000\u0000\u01d7"+ + "\u001b\u0001\u0000\u0000\u0000\u01d8\u01d9\u0005p\u0000\u0000\u01d9\u01da"+ + "\u0005u\u0000\u0000\u01da\u01db\u0005r\u0000\u0000\u01db\u01dc\u0005e"+ + "\u0000\u0000\u01dc\u01dd\u0001\u0000\u0000\u0000\u01dd\u01de\u0006\r\u0000"+ + "\u0000\u01de\u001d\u0001\u0000\u0000\u0000\u01df\u01e0\u0005i\u0000\u0000"+ + "\u01e0\u01e1\u0005m\u0000\u0000\u01e1\u01e2\u0005p\u0000\u0000\u01e2\u01e3"+ + "\u0005l\u0000\u0000\u01e3\u01e4\u0005e\u0000\u0000\u01e4\u01e5\u0005m"+ + "\u0000\u0000\u01e5\u01e6\u0005e\u0000\u0000\u01e6\u01e7\u0005n\u0000\u0000"+ + "\u01e7\u01e8\u0005t\u0000\u0000\u01e8\u01e9\u0005s\u0000\u0000\u01e9\u001f"+ + "\u0001\u0000\u0000\u0000\u01ea\u01eb\u0005a\u0000\u0000\u01eb\u01ec\u0005"+ + "s\u0000\u0000\u01ec!\u0001\u0000\u0000\u0000\u01ed\u01ee\u0005o\u0000"+ + "\u0000\u01ee\u01ef\u0005l\u0000\u0000\u01ef\u01f0\u0005d\u0000\u0000\u01f0"+ + "\u01f1\u0001\u0000\u0000\u0000\u01f1\u01f2\u0006\u0010\u0000\u0000\u01f2"+ + "#\u0001\u0000\u0000\u0000\u01f3\u01f4\u0005b\u0000\u0000\u01f4\u01f5\u0005"+ + "e\u0000\u0000\u01f5\u01f6\u0005f\u0000\u0000\u01f6\u01f7\u0005o\u0000"+ + "\u0000\u01f7\u01f8\u0005r\u0000\u0000\u01f8\u01f9\u0005e\u0000\u0000\u01f9"+ + "\u01fa\u0001\u0000\u0000\u0000\u01fa\u01fb\u0006\u0011\u0000\u0000\u01fb"+ + "%\u0001\u0000\u0000\u0000\u01fc\u01fd\u0005#\u0000\u0000\u01fd\u01fe\u0005"+ + "l\u0000\u0000\u01fe\u01ff\u0005h\u0000\u0000\u01ff\u0200\u0005s\u0000"+ + "\u0000\u0200\'\u0001\u0000\u0000\u0000\u0201\u0202\u0005f\u0000\u0000"+ + "\u0202\u0203\u0005o\u0000\u0000\u0203\u0204\u0005r\u0000\u0000\u0204\u0205"+ + "\u0005a\u0000\u0000\u0205\u0206\u0005l\u0000\u0000\u0206\u0207\u0005l"+ + "\u0000\u0000\u0207)\u0001\u0000\u0000\u0000\u0208\u0209\u0005e\u0000\u0000"+ + "\u0209\u020a\u0005x\u0000\u0000\u020a\u020b\u0005i\u0000\u0000\u020b\u020c"+ + "\u0005s\u0000\u0000\u020c\u020d\u0005t\u0000\u0000\u020d\u020e\u0005s"+ + "\u0000\u0000\u020e+\u0001\u0000\u0000\u0000\u020f\u0210\u0005a\u0000\u0000"+ + "\u0210\u0211\u0005c\u0000\u0000\u0211\u0212\u0005c\u0000\u0000\u0212\u0213"+ + "\u0001\u0000\u0000\u0000\u0213\u0214\u0006\u0015\u0000\u0000\u0214-\u0001"+ + "\u0000\u0000\u0000\u0215\u0216\u0005f\u0000\u0000\u0216\u0217\u0005o\u0000"+ + "\u0000\u0217\u0218\u0005l\u0000\u0000\u0218\u0219\u0005d\u0000\u0000\u0219"+ + "/\u0001\u0000\u0000\u0000\u021a\u021b\u0005u\u0000\u0000\u021b\u021c\u0005"+ + "n\u0000\u0000\u021c\u021d\u0005f\u0000\u0000\u021d\u021e\u0005o\u0000"+ + "\u0000\u021e\u021f\u0005l\u0000\u0000\u021f\u0220\u0005d\u0000\u0000\u0220"+ + "1\u0001\u0000\u0000\u0000\u0221\u0222\u0005u\u0000\u0000\u0222\u0223\u0005"+ + "n\u0000\u0000\u0223\u0224\u0005f\u0000\u0000\u0224\u0225\u0005o\u0000"+ + "\u0000\u0225\u0226\u0005l\u0000\u0000\u0226\u0227\u0005d\u0000\u0000\u0227"+ + "\u0228\u0005i\u0000\u0000\u0228\u0229\u0005n\u0000\u0000\u0229\u022a\u0005"+ + "g\u0000\u0000\u022a3\u0001\u0000\u0000\u0000\u022b\u022c\u0005l\u0000"+ + "\u0000\u022c\u022d\u0005e\u0000\u0000\u022d\u022e\u0005t\u0000\u0000\u022e"+ + "5\u0001\u0000\u0000\u0000\u022f\u0230\u0005g\u0000\u0000\u0230\u0231\u0005"+ + "h\u0000\u0000\u0231\u0232\u0005o\u0000\u0000\u0232\u0233\u0005s\u0000"+ + "\u0000\u0233\u0234\u0005t\u0000\u0000\u02347\u0001\u0000\u0000\u0000\u0235"+ + "\u0236\u0005i\u0000\u0000\u0236\u0237\u0005n\u0000\u0000\u02379\u0001"+ + "\u0000\u0000\u0000\u0238\u0239\u0005#\u0000\u0000\u0239;\u0001\u0000\u0000"+ + "\u0000\u023a\u023b\u0005s\u0000\u0000\u023b\u023c\u0005u\u0000\u0000\u023c"+ + "\u023d\u0005b\u0000\u0000\u023d\u023e\u0005s\u0000\u0000\u023e\u023f\u0005"+ + "e\u0000\u0000\u023f\u0240\u0005t\u0000\u0000\u0240=\u0001\u0000\u0000"+ + "\u0000\u0241\u0242\u0005u\u0000\u0000\u0242\u0243\u0005n\u0000\u0000\u0243"+ + "\u0244\u0005i\u0000\u0000\u0244\u0245\u0005o\u0000\u0000\u0245\u0246\u0005"+ + "n\u0000\u0000\u0246?\u0001\u0000\u0000\u0000\u0247\u0248\u0005i\u0000"+ + "\u0000\u0248\u0249\u0005n\u0000\u0000\u0249\u024a\u0005t\u0000\u0000\u024a"+ + "\u024b\u0005e\u0000\u0000\u024b\u024c\u0005r\u0000\u0000\u024c\u024d\u0005"+ + "s\u0000\u0000\u024d\u024e\u0005e\u0000\u0000\u024e\u024f\u0005c\u0000"+ + "\u0000\u024f\u0250\u0005t\u0000\u0000\u0250\u0251\u0005i\u0000\u0000\u0251"+ + "\u0252\u0005o\u0000\u0000\u0252\u0253\u0005n\u0000\u0000\u0253A\u0001"+ + "\u0000\u0000\u0000\u0254\u0255\u0005s\u0000\u0000\u0255\u0256\u0005e\u0000"+ + "\u0000\u0256\u0257\u0005t\u0000\u0000\u0257\u0258\u0005m\u0000\u0000\u0258"+ + "\u0259\u0005i\u0000\u0000\u0259\u025a\u0005n\u0000\u0000\u025a\u025b\u0005"+ + "u\u0000\u0000\u025b\u025c\u0005s\u0000\u0000\u025cC\u0001\u0000\u0000"+ + "\u0000\u025d\u025e\u0005=\u0000\u0000\u025e\u025f\u0005=\u0000\u0000\u025f"+ + "\u0260\u0005>\u0000\u0000\u0260E\u0001\u0000\u0000\u0000\u0261\u0262\u0005"+ + "-\u0000\u0000\u0262\u0263\u0005-\u0000\u0000\u0263\u0264\u0005*\u0000"+ + "\u0000\u0264G\u0001\u0000\u0000\u0000\u0265\u0266\u0005a\u0000\u0000\u0266"+ + "\u0267\u0005p\u0000\u0000\u0267\u0268\u0005p\u0000\u0000\u0268\u0269\u0005"+ + "l\u0000\u0000\u0269\u026a\u0005y\u0000\u0000\u026aI\u0001\u0000\u0000"+ + "\u0000\u026b\u026c\u0005?\u0000\u0000\u026cK\u0001\u0000\u0000\u0000\u026d"+ + "\u026e\u0005!\u0000\u0000\u026e\u026f\u0005<\u0000\u0000\u026fM\u0001"+ + "\u0000\u0000\u0000\u0270\u0271\u0005!\u0000\u0000\u0271\u0272\u0005>\u0000"+ + "\u0000\u0272\u0273\u0001\u0000\u0000\u0000\u0273\u0274\u0006&\u0000\u0000"+ + "\u0274O\u0001\u0000\u0000\u0000\u0275\u0276\u0005s\u0000\u0000\u0276\u0277"+ + "\u0005e\u0000\u0000\u0277\u0278\u0005q\u0000\u0000\u0278\u0279\u0001\u0000"+ + "\u0000\u0000\u0279\u027a\u0006\'\u0000\u0000\u027aQ\u0001\u0000\u0000"+ + "\u0000\u027b\u027c\u0005s\u0000\u0000\u027c\u027d\u0005e\u0000\u0000\u027d"+ + "\u027e\u0005t\u0000\u0000\u027e\u027f\u0001\u0000\u0000\u0000\u027f\u0280"+ + "\u0006(\u0000\u0000\u0280S\u0001\u0000\u0000\u0000\u0281\u0282\u0005m"+ + "\u0000\u0000\u0282\u0283\u0005s\u0000\u0000\u0283\u0284\u0005e\u0000\u0000"+ + "\u0284\u0285\u0005t\u0000\u0000\u0285\u0286\u0001\u0000\u0000\u0000\u0286"+ + "\u0287\u0006)\u0000\u0000\u0287U\u0001\u0000\u0000\u0000\u0288\u0289\u0005"+ + "d\u0000\u0000\u0289\u028a\u0005i\u0000\u0000\u028a\u028b\u0005c\u0000"+ + "\u0000\u028b\u028c\u0005t\u0000\u0000\u028c\u028d\u0001\u0000\u0000\u0000"+ + "\u028d\u028e\u0006*\u0000\u0000\u028eW\u0001\u0000\u0000\u0000\u028f\u0290"+ + "\u0005o\u0000\u0000\u0290\u0291\u0005p\u0000\u0000\u0291\u0292\u0005t"+ + "\u0000\u0000\u0292\u0293\u0005i\u0000\u0000\u0293\u0294\u0005o\u0000\u0000"+ + "\u0294\u0295\u0005n\u0000\u0000\u0295\u0296\u0001\u0000\u0000\u0000\u0296"+ + "\u0297\u0006+\u0000\u0000\u0297Y\u0001\u0000\u0000\u0000\u0298\u0299\u0005"+ + "g\u0000\u0000\u0299\u029a\u0005p\u0000\u0000\u029a\u029b\u0005o\u0000"+ + "\u0000\u029b\u029c\u0005i\u0000\u0000\u029c\u029d\u0005n\u0000\u0000\u029d"+ + "\u029e\u0005t\u0000\u0000\u029e\u029f\u0005e\u0000\u0000\u029f\u02a0\u0005"+ + "r\u0000\u0000\u02a0\u02a1\u0001\u0000\u0000\u0000\u02a1\u02a2\u0006,\u0000"+ + "\u0000\u02a2[\u0001\u0000\u0000\u0000\u02a3\u02a4\u0005l\u0000\u0000\u02a4"+ + "\u02a5\u0005e\u0000\u0000\u02a5\u02a6\u0005n\u0000\u0000\u02a6\u02a7\u0001"+ + "\u0000\u0000\u0000\u02a7\u02a8\u0006-\u0000\u0000\u02a8]\u0001\u0000\u0000"+ + "\u0000\u02a9\u02aa\u0005n\u0000\u0000\u02aa\u02ab\u0005e\u0000\u0000\u02ab"+ + "\u02ac\u0005w\u0000\u0000\u02ac\u02ad\u0001\u0000\u0000\u0000\u02ad\u02ae"+ + "\u0006.\u0000\u0000\u02ae_\u0001\u0000\u0000\u0000\u02af\u02b0\u0005m"+ + "\u0000\u0000\u02b0\u02b1\u0005a\u0000\u0000\u02b1\u02b2\u0005k\u0000\u0000"+ + "\u02b2\u02b3\u0005e\u0000\u0000\u02b3\u02b4\u0001\u0000\u0000\u0000\u02b4"+ + "\u02b5\u0006/\u0000\u0000\u02b5a\u0001\u0000\u0000\u0000\u02b6\u02b7\u0005"+ + "c\u0000\u0000\u02b7\u02b8\u0005a\u0000\u0000\u02b8\u02b9\u0005p\u0000"+ + "\u0000\u02b9\u02ba\u0001\u0000\u0000\u0000\u02ba\u02bb\u00060\u0000\u0000"+ + "\u02bbc\u0001\u0000\u0000\u0000\u02bc\u02bd\u0005s\u0000\u0000\u02bd\u02be"+ + "\u0005o\u0000\u0000\u02be\u02bf\u0005m\u0000\u0000\u02bf\u02c0\u0005e"+ + "\u0000\u0000\u02c0\u02c1\u0001\u0000\u0000\u0000\u02c1\u02c2\u00061\u0000"+ + "\u0000\u02c2e\u0001\u0000\u0000\u0000\u02c3\u02c4\u0005g\u0000\u0000\u02c4"+ + "\u02c5\u0005e\u0000\u0000\u02c5\u02c6\u0005t\u0000\u0000\u02c6\u02c7\u0001"+ + "\u0000\u0000\u0000\u02c7\u02c8\u00062\u0000\u0000\u02c8g\u0001\u0000\u0000"+ + "\u0000\u02c9\u02ca\u0005d\u0000\u0000\u02ca\u02cb\u0005o\u0000\u0000\u02cb"+ + "\u02cc\u0005m\u0000\u0000\u02cc\u02cd\u0005a\u0000\u0000\u02cd\u02ce\u0005"+ + "i\u0000\u0000\u02ce\u02cf\u0005n\u0000\u0000\u02cf\u02d0\u0001\u0000\u0000"+ + "\u0000\u02d0\u02d1\u00063\u0000\u0000\u02d1i\u0001\u0000\u0000\u0000\u02d2"+ + "\u02d3\u0005a\u0000\u0000\u02d3\u02d4\u0005x\u0000\u0000\u02d4\u02d5\u0005"+ + "i\u0000\u0000\u02d5\u02d6\u0005o\u0000\u0000\u02d6\u02d7\u0005m\u0000"+ + "\u0000\u02d7\u02d8\u0001\u0000\u0000\u0000\u02d8\u02d9\u00064\u0000\u0000"+ + "\u02d9k\u0001\u0000\u0000\u0000\u02da\u02db\u0005a\u0000\u0000\u02db\u02dc"+ + "\u0005d\u0000\u0000\u02dc\u02dd\u0005t\u0000\u0000\u02dd\u02de\u0001\u0000"+ + "\u0000\u0000\u02de\u02df\u00065\u0000\u0000\u02dfm\u0001\u0000\u0000\u0000"+ + "\u02e0\u02e1\u0005m\u0000\u0000\u02e1\u02e2\u0005a\u0000\u0000\u02e2\u02e3"+ + "\u0005t\u0000\u0000\u02e3\u02e4\u0005c\u0000\u0000\u02e4\u02e5\u0005h"+ + "\u0000\u0000\u02e5\u02e6\u0001\u0000\u0000\u0000\u02e6\u02e7\u00066\u0000"+ + "\u0000\u02e7o\u0001\u0000\u0000\u0000\u02e8\u02e9\u0005n\u0000\u0000\u02e9"+ + "\u02ea\u0005o\u0000\u0000\u02ea\u02eb\u0005n\u0000\u0000\u02eb\u02ec\u0005"+ + "e\u0000\u0000\u02ec\u02ed\u0001\u0000\u0000\u0000\u02ed\u02ee\u00067\u0000"+ + "\u0000\u02eeq\u0001\u0000\u0000\u0000\u02ef\u02f0\u0005p\u0000\u0000\u02f0"+ + "\u02f1\u0005r\u0000\u0000\u02f1\u02f2\u0005e\u0000\u0000\u02f2\u02f3\u0005"+ + "d\u0000\u0000\u02f3s\u0001\u0000\u0000\u0000\u02f4\u02f5\u0005t\u0000"+ + "\u0000\u02f5\u02f6\u0005y\u0000\u0000\u02f6\u02f7\u0005p\u0000\u0000\u02f7"+ + "\u02f8\u0005e\u0000\u0000\u02f8\u02f9\u0005O\u0000\u0000\u02f9\u02fa\u0005"+ + "f\u0000\u0000\u02fa\u02fb\u0001\u0000\u0000\u0000\u02fb\u02fc\u00069\u0000"+ + "\u0000\u02fcu\u0001\u0000\u0000\u0000\u02fd\u02fe\u0005i\u0000\u0000\u02fe"+ + "\u02ff\u0005s\u0000\u0000\u02ff\u0300\u0005C\u0000\u0000\u0300\u0301\u0005"+ + "o\u0000\u0000\u0301\u0302\u0005m\u0000\u0000\u0302\u0303\u0005p\u0000"+ + "\u0000\u0303\u0304\u0005a\u0000\u0000\u0304\u0305\u0005r\u0000\u0000\u0305"+ + "\u0306\u0005a\u0000\u0000\u0306\u0307\u0005b\u0000\u0000\u0307\u0308\u0005"+ + "l\u0000\u0000\u0308\u0309\u0005e\u0000\u0000\u0309\u030a\u0001\u0000\u0000"+ + "\u0000\u030a\u030b\u0006:\u0000\u0000\u030bw\u0001\u0000\u0000\u0000\u030c"+ + "\u030d\u0005s\u0000\u0000\u030d\u030e\u0005h\u0000\u0000\u030e\u030f\u0005"+ + "a\u0000\u0000\u030f\u0310\u0005r\u0000\u0000\u0310\u0311\u0005e\u0000"+ + "\u0000\u0311y\u0001\u0000\u0000\u0000\u0312\u0313\u0005@\u0000\u0000\u0313"+ + "\u0314\u0001\u0000\u0000\u0000\u0314\u0315\u0006<\u0000\u0000\u0315{\u0001"+ + "\u0000\u0000\u0000\u0316\u0317\u0005.\u0000\u0000\u0317\u0318\u0005.\u0000"+ + "\u0000\u0318}\u0001\u0000\u0000\u0000\u0319\u031a\u0005s\u0000\u0000\u031a"+ + "\u031b\u0005h\u0000\u0000\u031b\u031c\u0005a\u0000\u0000\u031c\u031d\u0005"+ + "r\u0000\u0000\u031d\u031e\u0005e\u0000\u0000\u031e\u031f\u0005d\u0000"+ + "\u0000\u031f\u007f\u0001\u0000\u0000\u0000\u0320\u0321\u0005e\u0000\u0000"+ + "\u0321\u0322\u0005x\u0000\u0000\u0322\u0323\u0005c\u0000\u0000\u0323\u0324"+ + "\u0005l\u0000\u0000\u0324\u0325\u0005u\u0000\u0000\u0325\u0326\u0005s"+ + "\u0000\u0000\u0326\u0327\u0005i\u0000\u0000\u0327\u0328\u0005v\u0000\u0000"+ + "\u0328\u0329\u0005e\u0000\u0000\u0329\u0081\u0001\u0000\u0000\u0000\u032a"+ + "\u032b\u0005p\u0000\u0000\u032b\u032c\u0005r\u0000\u0000\u032c\u032d\u0005"+ + "e\u0000\u0000\u032d\u032e\u0005d\u0000\u0000\u032e\u032f\u0005i\u0000"+ + "\u0000\u032f\u0330\u0005c\u0000\u0000\u0330\u0331\u0005a\u0000\u0000\u0331"+ + "\u0332\u0005t\u0000\u0000\u0332\u0333\u0005e\u0000\u0000\u0333\u0083\u0001"+ + "\u0000\u0000\u0000\u0334\u0335\u0005w\u0000\u0000\u0335\u0336\u0005r\u0000"+ + "\u0000\u0336\u0337\u0005i\u0000\u0000\u0337\u0338\u0005t\u0000\u0000\u0338"+ + "\u0339\u0005e\u0000\u0000\u0339\u033a\u0005P\u0000\u0000\u033a\u033b\u0005"+ + "e\u0000\u0000\u033b\u033c\u0005r\u0000\u0000\u033c\u033d\u0005m\u0000"+ + "\u0000\u033d\u033e\u0001\u0000\u0000\u0000\u033e\u033f\u0006A\u0000\u0000"+ + "\u033f\u0085\u0001\u0000\u0000\u0000\u0340\u0341\u0005n\u0000\u0000\u0341"+ + "\u0342\u0005o\u0000\u0000\u0342\u0343\u0005P\u0000\u0000\u0343\u0344\u0005"+ + "e\u0000\u0000\u0344\u0345\u0005r\u0000\u0000\u0345\u0346\u0005m\u0000"+ + "\u0000\u0346\u0347\u0001\u0000\u0000\u0000\u0347\u0348\u0006B\u0000\u0000"+ + "\u0348\u0087\u0001\u0000\u0000\u0000\u0349\u034a\u0005t\u0000\u0000\u034a"+ + "\u034b\u0005r\u0000\u0000\u034b\u034c\u0005u\u0000\u0000\u034c\u034d\u0005"+ + "s\u0000\u0000\u034d\u034e\u0005t\u0000\u0000\u034e\u034f\u0005e\u0000"+ + "\u0000\u034f\u0350\u0005d\u0000\u0000\u0350\u0351\u0001\u0000\u0000\u0000"+ + "\u0351\u0352\u0006C\u0000\u0000\u0352\u0089\u0001\u0000\u0000\u0000\u0353"+ + "\u0354\u0005o\u0000\u0000\u0354\u0355\u0005u\u0000\u0000\u0355\u0356\u0005"+ + "t\u0000\u0000\u0356\u0357\u0005l\u0000\u0000\u0357\u0358\u0005i\u0000"+ + "\u0000\u0358\u0359\u0005n\u0000\u0000\u0359\u035a\u0005e\u0000\u0000\u035a"+ + "\u008b\u0001\u0000\u0000\u0000\u035b\u035c\u0005i\u0000\u0000\u035c\u035d"+ + "\u0005n\u0000\u0000\u035d\u035e\u0005i\u0000\u0000\u035e\u035f\u0005t"+ + "\u0000\u0000\u035f\u0360\u0005E\u0000\u0000\u0360\u0361\u0005n\u0000\u0000"+ + "\u0361\u0362\u0005s\u0000\u0000\u0362\u0363\u0005u\u0000\u0000\u0363\u0364"+ + "\u0005r\u0000\u0000\u0364\u0365\u0005e\u0000\u0000\u0365\u0366\u0005s"+ + "\u0000\u0000\u0366\u008d\u0001\u0000\u0000\u0000\u0367\u0368\u0005i\u0000"+ + "\u0000\u0368\u0369\u0005m\u0000\u0000\u0369\u036a\u0005p\u0000\u0000\u036a"+ + "\u036b\u0005o\u0000\u0000\u036b\u036c\u0005r\u0000\u0000\u036c\u036d\u0005"+ + "t\u0000\u0000\u036d\u036e\u0005R\u0000\u0000\u036e\u036f\u0005e\u0000"+ + "\u0000\u036f\u0370\u0005q\u0000\u0000\u0370\u0371\u0005u\u0000\u0000\u0371"+ + "\u0372\u0005i\u0000\u0000\u0372\u0373\u0005r\u0000\u0000\u0373\u0374\u0005"+ + "e\u0000\u0000\u0374\u0375\u0005s\u0000\u0000\u0375\u008f\u0001\u0000\u0000"+ + "\u0000\u0376\u0377\u0005p\u0000\u0000\u0377\u0378\u0005r\u0000\u0000\u0378"+ + "\u0379\u0005o\u0000\u0000\u0379\u037a\u0005o\u0000\u0000\u037a\u037b\u0005"+ + "f\u0000\u0000\u037b\u0091\u0001\u0000\u0000\u0000\u037c\u037d\u0005=\u0000"+ + "\u0000\u037d\u037e\u0005=\u0000\u0000\u037e\u037f\u0005=\u0000\u0000\u037f"+ + "\u0093\u0001\u0000\u0000\u0000\u0380\u0381\u0005!\u0000\u0000\u0381\u0382"+ + "\u0005=\u0000\u0000\u0382\u0383\u0005=\u0000\u0000\u0383\u0095\u0001\u0000"+ + "\u0000\u0000\u0384\u0385\u0005w\u0000\u0000\u0385\u0386\u0005i\u0000\u0000"+ + "\u0386\u0387\u0005t\u0000\u0000\u0387\u0388\u0005h\u0000\u0000\u0388\u0097"+ + "\u0001\u0000\u0000\u0000\u0389\u038a\u0005o\u0000\u0000\u038a\u038b\u0005"+ + "p\u0000\u0000\u038b\u038c\u0005a\u0000\u0000\u038c\u038d\u0005q\u0000"+ + "\u0000\u038d\u038e\u0005u\u0000\u0000\u038e\u038f\u0005e\u0000\u0000\u038f"+ + "\u0390\u0001\u0000\u0000\u0000\u0390\u0391\u0006K\u0000\u0000\u0391\u0099"+ + "\u0001\u0000\u0000\u0000\u0392\u0393\u0005r\u0000\u0000\u0393\u0394\u0005"+ + "e\u0000\u0000\u0394\u0395\u0005v\u0000\u0000\u0395\u0396\u0005e\u0000"+ + "\u0000\u0396\u0397\u0005a\u0000\u0000\u0397\u0398\u0005l\u0000\u0000\u0398"+ + "\u009b\u0001\u0000\u0000\u0000\u0399\u039a\u0005b\u0000\u0000\u039a\u039b"+ + "\u0005r\u0000\u0000\u039b\u039c\u0005e\u0000\u0000\u039c\u039d\u0005a"+ + "\u0000\u0000\u039d\u039e\u0005k\u0000\u0000\u039e\u039f\u0001\u0000\u0000"+ + "\u0000\u039f\u03a0\u0006M\u0000\u0000\u03a0\u009d\u0001\u0000\u0000\u0000"+ + "\u03a1\u03a2\u0005d\u0000\u0000\u03a2\u03a3\u0005e\u0000\u0000\u03a3\u03a4"+ + "\u0005f\u0000\u0000\u03a4\u03a5\u0005a\u0000\u0000\u03a5\u03a6\u0005u"+ + "\u0000\u0000\u03a6\u03a7\u0005l\u0000\u0000\u03a7\u03a8\u0005t\u0000\u0000"+ + "\u03a8\u009f\u0001\u0000\u0000\u0000\u03a9\u03aa\u0005f\u0000\u0000\u03aa"+ + "\u03ab\u0005u\u0000\u0000\u03ab\u03ac\u0005n\u0000\u0000\u03ac\u03ad\u0005"+ + "c\u0000\u0000\u03ad\u00a1\u0001\u0000\u0000\u0000\u03ae\u03af\u0005i\u0000"+ + "\u0000\u03af\u03b0\u0005n\u0000\u0000\u03b0\u03b1\u0005t\u0000\u0000\u03b1"+ + "\u03b2\u0005e\u0000\u0000\u03b2\u03b3\u0005r\u0000\u0000\u03b3\u03b4\u0005"+ + "f\u0000\u0000\u03b4\u03b5\u0005a\u0000\u0000\u03b5\u03b6\u0005c\u0000"+ + "\u0000\u03b6\u03b7\u0005e\u0000\u0000\u03b7\u00a3\u0001\u0000\u0000\u0000"+ + "\u03b8\u03b9\u0005s\u0000\u0000\u03b9\u03ba\u0005e\u0000\u0000\u03ba\u03bb"+ + "\u0005l\u0000\u0000\u03bb\u03bc\u0005e\u0000\u0000\u03bc\u03bd\u0005c"+ + "\u0000\u0000\u03bd\u03be\u0005t\u0000\u0000\u03be\u00a5\u0001\u0000\u0000"+ + "\u0000\u03bf\u03c0\u0005c\u0000\u0000\u03c0\u03c1\u0005a\u0000\u0000\u03c1"+ + "\u03c2\u0005s\u0000\u0000\u03c2\u03c3\u0005e\u0000\u0000\u03c3\u00a7\u0001"+ + "\u0000\u0000\u0000\u03c4\u03c5\u0005d\u0000\u0000\u03c5\u03c6\u0005e\u0000"+ + "\u0000\u03c6\u03c7\u0005f\u0000\u0000\u03c7\u03c8\u0005e\u0000\u0000\u03c8"+ + "\u03c9\u0005r\u0000\u0000\u03c9\u00a9\u0001\u0000\u0000\u0000\u03ca\u03cb"+ + "\u0005g\u0000\u0000\u03cb\u03cc\u0005o\u0000\u0000\u03cc\u00ab\u0001\u0000"+ + "\u0000\u0000\u03cd\u03ce\u0005m\u0000\u0000\u03ce\u03cf\u0005a\u0000\u0000"+ + "\u03cf\u03d0\u0005p\u0000\u0000\u03d0\u00ad\u0001\u0000\u0000\u0000\u03d1"+ + "\u03d2\u0005s\u0000\u0000\u03d2\u03d3\u0005t\u0000\u0000\u03d3\u03d4\u0005"+ + "r\u0000\u0000\u03d4\u03d5\u0005u\u0000\u0000\u03d5\u03d6\u0005c\u0000"+ + "\u0000\u03d6\u03d7\u0005t\u0000\u0000\u03d7\u00af\u0001\u0000\u0000\u0000"+ + "\u03d8\u03d9\u0005c\u0000\u0000\u03d9\u03da\u0005h\u0000\u0000\u03da\u03db"+ + "\u0005a\u0000\u0000\u03db\u03dc\u0005n\u0000\u0000\u03dc\u00b1\u0001\u0000"+ + "\u0000\u0000\u03dd\u03de\u0005e\u0000\u0000\u03de\u03df\u0005l\u0000\u0000"+ + "\u03df\u03e0\u0005s\u0000\u0000\u03e0\u03e1\u0005e\u0000\u0000\u03e1\u00b3"+ + "\u0001\u0000\u0000\u0000\u03e2\u03e3\u0005g\u0000\u0000\u03e3\u03e4\u0005"+ + "o\u0000\u0000\u03e4\u03e5\u0005t\u0000\u0000\u03e5\u03e6\u0005o\u0000"+ + "\u0000\u03e6\u00b5\u0001\u0000\u0000\u0000\u03e7\u03e8\u0005p\u0000\u0000"+ + "\u03e8\u03e9\u0005a\u0000\u0000\u03e9\u03ea\u0005c\u0000\u0000\u03ea\u03eb"+ + "\u0005k\u0000\u0000\u03eb\u03ec\u0005a\u0000\u0000\u03ec\u03ed\u0005g"+ + "\u0000\u0000\u03ed\u03ee\u0005e\u0000\u0000\u03ee\u00b7\u0001\u0000\u0000"+ + "\u0000\u03ef\u03f0\u0005s\u0000\u0000\u03f0\u03f1\u0005w\u0000\u0000\u03f1"+ + "\u03f2\u0005i\u0000\u0000\u03f2\u03f3\u0005t\u0000\u0000\u03f3\u03f4\u0005"+ + "c\u0000\u0000\u03f4\u03f5\u0005h\u0000\u0000\u03f5\u00b9\u0001\u0000\u0000"+ + "\u0000\u03f6\u03f7\u0005c\u0000\u0000\u03f7\u03f8\u0005o\u0000\u0000\u03f8"+ + "\u03f9\u0005n\u0000\u0000\u03f9\u03fa\u0005s\u0000\u0000\u03fa\u03fb\u0005"+ + "t\u0000\u0000\u03fb\u00bb\u0001\u0000\u0000\u0000\u03fc\u03fd\u0005f\u0000"+ + "\u0000\u03fd\u03fe\u0005a\u0000\u0000\u03fe\u03ff\u0005l\u0000\u0000\u03ff"+ + "\u0400\u0005l\u0000\u0000\u0400\u0401\u0005t\u0000\u0000\u0401\u0402\u0005"+ + "h\u0000\u0000\u0402\u0403\u0005r\u0000\u0000\u0403\u0404\u0005o\u0000"+ + "\u0000\u0404\u0405\u0005u\u0000\u0000\u0405\u0406\u0005g\u0000\u0000\u0406"+ + "\u0407\u0005h\u0000\u0000\u0407\u0408\u0001\u0000\u0000\u0000\u0408\u0409"+ + "\u0006]\u0000\u0000\u0409\u00bd\u0001\u0000\u0000\u0000\u040a\u040b\u0005"+ + "i\u0000\u0000\u040b\u040c\u0005f\u0000\u0000\u040c\u00bf\u0001\u0000\u0000"+ + "\u0000\u040d\u040e\u0005r\u0000\u0000\u040e\u040f\u0005a\u0000\u0000\u040f"+ + "\u0410\u0005n\u0000\u0000\u0410\u0411\u0005g\u0000\u0000\u0411\u0412\u0005"+ + "e\u0000\u0000\u0412\u00c1\u0001\u0000\u0000\u0000\u0413\u0414\u0005t\u0000"+ + "\u0000\u0414\u0415\u0005y\u0000\u0000\u0415\u0416\u0005p\u0000\u0000\u0416"+ + "\u0417\u0005e\u0000\u0000\u0417\u00c3\u0001\u0000\u0000\u0000\u0418\u0419"+ + "\u0005c\u0000\u0000\u0419\u041a\u0005o\u0000\u0000\u041a\u041b\u0005n"+ + "\u0000\u0000\u041b\u041c\u0005t\u0000\u0000\u041c\u041d\u0005i\u0000\u0000"+ + "\u041d\u041e\u0005n\u0000\u0000\u041e\u041f\u0005u\u0000\u0000\u041f\u0420"+ + "\u0005e\u0000\u0000\u0420\u0421\u0001\u0000\u0000\u0000\u0421\u0422\u0006"+ + "a\u0000\u0000\u0422\u00c5\u0001\u0000\u0000\u0000\u0423\u0424\u0005f\u0000"+ + "\u0000\u0424\u0425\u0005o\u0000\u0000\u0425\u0426\u0005r\u0000\u0000\u0426"+ + "\u00c7\u0001\u0000\u0000\u0000\u0427\u0428\u0005i\u0000\u0000\u0428\u0429"+ + "\u0005m\u0000\u0000\u0429\u042a\u0005p\u0000\u0000\u042a\u042b\u0005o"+ + "\u0000\u0000\u042b\u042c\u0005r\u0000\u0000\u042c\u042d\u0005t\u0000\u0000"+ + "\u042d\u00c9\u0001\u0000\u0000\u0000\u042e\u042f\u0005r\u0000\u0000\u042f"+ + "\u0430\u0005e\u0000\u0000\u0430\u0431\u0005t\u0000\u0000\u0431\u0432\u0005"+ + "u\u0000\u0000\u0432\u0433\u0005r\u0000\u0000\u0433\u0434\u0005n\u0000"+ + "\u0000\u0434\u0435\u0001\u0000\u0000\u0000\u0435\u0436\u0006d\u0000\u0000"+ + "\u0436\u00cb\u0001\u0000\u0000\u0000\u0437\u0438\u0005v\u0000\u0000\u0438"+ + "\u0439\u0005a\u0000\u0000\u0439\u043a\u0005r\u0000\u0000\u043a\u00cd\u0001"+ + "\u0000\u0000\u0000\u043b\u043c\u0005n\u0000\u0000\u043c\u043d\u0005i\u0000"+ + "\u0000\u043d\u043e\u0005l\u0000\u0000\u043e\u043f\u0001\u0000\u0000\u0000"+ + "\u043f\u0440\u0006f\u0000\u0000\u0440\u00cf\u0001\u0000\u0000\u0000\u0441"+ + "\u0446\u0003\u0152\u00a8\u0000\u0442\u0445\u0003\u0152\u00a8\u0000\u0443"+ + "\u0445\u0003\u0154\u00a9\u0000\u0444\u0442\u0001\u0000\u0000\u0000\u0444"+ + "\u0443\u0001\u0000\u0000\u0000\u0445\u0448\u0001\u0000\u0000\u0000\u0446"+ + "\u0444\u0001\u0000\u0000\u0000\u0446\u0447\u0001\u0000\u0000\u0000\u0447"+ + "\u0449\u0001\u0000\u0000\u0000\u0448\u0446\u0001\u0000\u0000\u0000\u0449"+ + "\u044a\u0006g\u0000\u0000\u044a\u00d1\u0001\u0000\u0000\u0000\u044b\u044c"+ + "\u0005(\u0000\u0000\u044c\u00d3\u0001\u0000\u0000\u0000\u044d\u044e\u0005"+ + ")\u0000\u0000\u044e\u044f\u0001\u0000\u0000\u0000\u044f\u0450\u0006i\u0000"+ + "\u0000\u0450\u00d5\u0001\u0000\u0000\u0000\u0451\u0452\u0005{\u0000\u0000"+ + "\u0452\u00d7\u0001\u0000\u0000\u0000\u0453\u0454\u0005}\u0000\u0000\u0454"+ + "\u0455\u0001\u0000\u0000\u0000\u0455\u0456\u0006k\u0000\u0000\u0456\u00d9"+ + "\u0001\u0000\u0000\u0000\u0457\u0458\u0005[\u0000\u0000\u0458\u00db\u0001"+ + "\u0000\u0000\u0000\u0459\u045a\u0005]\u0000\u0000\u045a\u045b\u0001\u0000"+ + "\u0000\u0000\u045b\u045c\u0006m\u0000\u0000\u045c\u00dd\u0001\u0000\u0000"+ + "\u0000\u045d\u045e\u0005=\u0000\u0000\u045e\u00df\u0001\u0000\u0000\u0000"+ + "\u045f\u0460\u0005,\u0000\u0000\u0460\u00e1\u0001\u0000\u0000\u0000\u0461"+ + "\u0462\u0005;\u0000\u0000\u0462\u00e3\u0001\u0000\u0000\u0000\u0463\u0464"+ + "\u0005:\u0000\u0000\u0464\u00e5\u0001\u0000\u0000\u0000\u0465\u0466\u0005"+ + ".\u0000\u0000\u0466\u00e7\u0001\u0000\u0000\u0000\u0467\u0468\u0005+\u0000"+ + "\u0000\u0468\u0469\u0005+\u0000\u0000\u0469\u046a\u0001\u0000\u0000\u0000"+ + "\u046a\u046b\u0006s\u0000\u0000\u046b\u00e9\u0001\u0000\u0000\u0000\u046c"+ + "\u046d\u0005-\u0000\u0000\u046d\u046e\u0005-\u0000\u0000\u046e\u046f\u0001"+ + "\u0000\u0000\u0000\u046f\u0470\u0006t\u0000\u0000\u0470\u00eb\u0001\u0000"+ + "\u0000\u0000\u0471\u0472\u0005:\u0000\u0000\u0472\u0473\u0005=\u0000\u0000"+ + "\u0473\u00ed\u0001\u0000\u0000\u0000\u0474\u0475\u0005.\u0000\u0000\u0475"+ + "\u0476\u0005.\u0000\u0000\u0476\u0477\u0005.\u0000\u0000\u0477\u00ef\u0001"+ + "\u0000\u0000\u0000\u0478\u0479\u0005|\u0000\u0000\u0479\u047a\u0005|\u0000"+ + "\u0000\u047a\u00f1\u0001\u0000\u0000\u0000\u047b\u047c\u0005&\u0000\u0000"+ + "\u047c\u047d\u0005&\u0000\u0000\u047d\u00f3\u0001\u0000\u0000\u0000\u047e"+ + "\u047f\u0005=\u0000\u0000\u047f\u0480\u0005=\u0000\u0000\u0480\u00f5\u0001"+ + "\u0000\u0000\u0000\u0481\u0482\u0005!\u0000\u0000\u0482\u0483\u0005=\u0000"+ + "\u0000\u0483\u00f7\u0001\u0000\u0000\u0000\u0484\u0485\u0005<\u0000\u0000"+ + "\u0485\u00f9\u0001\u0000\u0000\u0000\u0486\u0487\u0005<\u0000\u0000\u0487"+ + "\u0488\u0005=\u0000\u0000\u0488\u00fb\u0001\u0000\u0000\u0000\u0489\u048a"+ + "\u0005>\u0000\u0000\u048a\u00fd\u0001\u0000\u0000\u0000\u048b\u048c\u0005"+ + ">\u0000\u0000\u048c\u048d\u0005=\u0000\u0000\u048d\u00ff\u0001\u0000\u0000"+ + "\u0000\u048e\u048f\u0005|\u0000\u0000\u048f\u0101\u0001\u0000\u0000\u0000"+ + "\u0490\u0491\u0005/\u0000\u0000\u0491\u0103\u0001\u0000\u0000\u0000\u0492"+ + "\u0493\u0005%\u0000\u0000\u0493\u0105\u0001\u0000\u0000\u0000\u0494\u0495"+ + "\u0005<\u0000\u0000\u0495\u0496\u0005<\u0000\u0000\u0496\u0107\u0001\u0000"+ + "\u0000\u0000\u0497\u0498\u0005>\u0000\u0000\u0498\u0499\u0005>\u0000\u0000"+ + "\u0499\u0109\u0001\u0000\u0000\u0000\u049a\u049b\u0005&\u0000\u0000\u049b"+ + "\u049c\u0005^\u0000\u0000\u049c\u010b\u0001\u0000\u0000\u0000\u049d\u049e"+ + "\u0005!\u0000\u0000\u049e\u010d\u0001\u0000\u0000\u0000\u049f\u04a0\u0005"+ + "+\u0000\u0000\u04a0\u010f\u0001\u0000\u0000\u0000\u04a1\u04a2\u0005-\u0000"+ + "\u0000\u04a2\u0111\u0001\u0000\u0000\u0000\u04a3\u04a4\u0005^\u0000\u0000"+ + "\u04a4\u0113\u0001\u0000\u0000\u0000\u04a5\u04a6\u0005*\u0000\u0000\u04a6"+ + "\u0115\u0001\u0000\u0000\u0000\u04a7\u04a8\u0005&\u0000\u0000\u04a8\u0117"+ + "\u0001\u0000\u0000\u0000\u04a9\u04aa\u0005<\u0000\u0000\u04aa\u04ab\u0005"+ + "-\u0000\u0000\u04ab\u0119\u0001\u0000\u0000\u0000\u04ac\u04b8\u00050\u0000"+ + "\u0000\u04ad\u04b4\u0007\u0000\u0000\u0000\u04ae\u04b0\u0005_\u0000\u0000"+ + "\u04af\u04ae\u0001\u0000\u0000\u0000\u04af\u04b0\u0001\u0000\u0000\u0000"+ + "\u04b0\u04b1\u0001\u0000\u0000\u0000\u04b1\u04b3\u0007\u0001\u0000\u0000"+ + "\u04b2\u04af\u0001\u0000\u0000\u0000\u04b3\u04b6\u0001\u0000\u0000\u0000"+ + "\u04b4\u04b2\u0001\u0000\u0000\u0000\u04b4\u04b5\u0001\u0000\u0000\u0000"+ + "\u04b5\u04b8\u0001\u0000\u0000\u0000\u04b6\u04b4\u0001\u0000\u0000\u0000"+ + "\u04b7\u04ac\u0001\u0000\u0000\u0000\u04b7\u04ad\u0001\u0000\u0000\u0000"+ + "\u04b8\u04b9\u0001\u0000\u0000\u0000\u04b9\u04ba\u0006\u008c\u0000\u0000"+ + "\u04ba\u011b\u0001\u0000\u0000\u0000\u04bb\u04bc\u00050\u0000\u0000\u04bc"+ + "\u04c1\u0007\u0002\u0000\u0000\u04bd\u04bf\u0005_\u0000\u0000\u04be\u04bd"+ + "\u0001\u0000\u0000\u0000\u04be\u04bf\u0001\u0000\u0000\u0000\u04bf\u04c0"+ + "\u0001\u0000\u0000\u0000\u04c0\u04c2\u0003\u014e\u00a6\u0000\u04c1\u04be"+ + "\u0001\u0000\u0000\u0000\u04c2\u04c3\u0001\u0000\u0000\u0000\u04c3\u04c1"+ + "\u0001\u0000\u0000\u0000\u04c3\u04c4\u0001\u0000\u0000\u0000\u04c4\u04c5"+ + "\u0001\u0000\u0000\u0000\u04c5\u04c6\u0006\u008d\u0000\u0000\u04c6\u011d"+ + "\u0001\u0000\u0000\u0000\u04c7\u04c9\u00050\u0000\u0000\u04c8\u04ca\u0007"+ + "\u0003\u0000\u0000\u04c9\u04c8\u0001\u0000\u0000\u0000\u04c9\u04ca\u0001"+ + "\u0000\u0000\u0000\u04ca\u04cf\u0001\u0000\u0000\u0000\u04cb\u04cd\u0005"+ + "_\u0000\u0000\u04cc\u04cb\u0001\u0000\u0000\u0000\u04cc\u04cd\u0001\u0000"+ + "\u0000\u0000\u04cd\u04ce\u0001\u0000\u0000\u0000\u04ce\u04d0\u0003\u014a"+ + "\u00a4\u0000\u04cf\u04cc\u0001\u0000\u0000\u0000\u04d0\u04d1\u0001\u0000"+ + "\u0000\u0000\u04d1\u04cf\u0001\u0000\u0000\u0000\u04d1\u04d2\u0001\u0000"+ + "\u0000\u0000\u04d2\u04d3\u0001\u0000\u0000\u0000\u04d3\u04d4\u0006\u008e"+ + "\u0000\u0000\u04d4\u011f\u0001\u0000\u0000\u0000\u04d5\u04d6\u00050\u0000"+ + "\u0000\u04d6\u04db\u0007\u0004\u0000\u0000\u04d7\u04d9\u0005_\u0000\u0000"+ + "\u04d8\u04d7\u0001\u0000\u0000\u0000\u04d8\u04d9\u0001\u0000\u0000\u0000"+ + "\u04d9\u04da\u0001\u0000\u0000\u0000\u04da\u04dc\u0003\u014c\u00a5\u0000"+ + "\u04db\u04d8\u0001\u0000\u0000\u0000\u04dc\u04dd\u0001\u0000\u0000\u0000"+ + "\u04dd\u04db\u0001\u0000\u0000\u0000\u04dd\u04de\u0001\u0000\u0000\u0000"+ + "\u04de\u04df\u0001\u0000\u0000\u0000\u04df\u04e0\u0006\u008f\u0000\u0000"+ + "\u04e0\u0121\u0001\u0000\u0000\u0000\u04e1\u04e2\u00050\u0000\u0000\u04e2"+ + "\u04e3\u0007\u0004\u0000\u0000\u04e3\u04e4\u0003\u0124\u0091\u0000\u04e4"+ + "\u04e5\u0003\u0126\u0092\u0000\u04e5\u0123\u0001\u0000\u0000\u0000\u04e6"+ + "\u04e8\u0005_\u0000\u0000\u04e7\u04e6\u0001\u0000\u0000\u0000\u04e7\u04e8"+ + "\u0001\u0000\u0000\u0000\u04e8\u04e9\u0001\u0000\u0000\u0000\u04e9\u04eb"+ + "\u0003\u014c\u00a5\u0000\u04ea\u04e7\u0001\u0000\u0000\u0000\u04eb\u04ec"+ + "\u0001\u0000\u0000\u0000\u04ec\u04ea\u0001\u0000\u0000\u0000\u04ec\u04ed"+ + "\u0001\u0000\u0000\u0000\u04ed\u04f8\u0001\u0000\u0000\u0000\u04ee\u04f5"+ + "\u0005.\u0000\u0000\u04ef\u04f1\u0005_\u0000\u0000\u04f0\u04ef\u0001\u0000"+ + "\u0000\u0000\u04f0\u04f1\u0001\u0000\u0000\u0000\u04f1\u04f2\u0001\u0000"+ + "\u0000\u0000\u04f2\u04f4\u0003\u014c\u00a5\u0000\u04f3\u04f0\u0001\u0000"+ + "\u0000\u0000\u04f4\u04f7\u0001\u0000\u0000\u0000\u04f5\u04f3\u0001\u0000"+ + "\u0000\u0000\u04f5\u04f6\u0001\u0000\u0000\u0000\u04f6\u04f9\u0001\u0000"+ + "\u0000\u0000\u04f7\u04f5\u0001\u0000\u0000\u0000\u04f8\u04ee\u0001\u0000"+ + "\u0000\u0000\u04f8\u04f9\u0001\u0000\u0000\u0000\u04f9\u0506\u0001\u0000"+ + "\u0000\u0000\u04fa\u04fb\u0005.\u0000\u0000\u04fb\u0502\u0003\u014c\u00a5"+ + "\u0000\u04fc\u04fe\u0005_\u0000\u0000\u04fd\u04fc\u0001\u0000\u0000\u0000"+ + "\u04fd\u04fe\u0001\u0000\u0000\u0000\u04fe\u04ff\u0001\u0000\u0000\u0000"+ + "\u04ff\u0501\u0003\u014c\u00a5\u0000\u0500\u04fd\u0001\u0000\u0000\u0000"+ + "\u0501\u0504\u0001\u0000\u0000\u0000\u0502\u0500\u0001\u0000\u0000\u0000"+ + "\u0502\u0503\u0001\u0000\u0000\u0000\u0503\u0506\u0001\u0000\u0000\u0000"+ + "\u0504\u0502\u0001\u0000\u0000\u0000\u0505\u04ea\u0001\u0000\u0000\u0000"+ + "\u0505\u04fa\u0001\u0000\u0000\u0000\u0506\u0125\u0001\u0000\u0000\u0000"+ + "\u0507\u0509\u0007\u0005\u0000\u0000\u0508\u050a\u0007\u0006\u0000\u0000"+ + "\u0509\u0508\u0001\u0000\u0000\u0000\u0509\u050a\u0001\u0000\u0000\u0000"+ + "\u050a\u050b\u0001\u0000\u0000\u0000\u050b\u050c\u0003\u0148\u00a3\u0000"+ + "\u050c\u0127\u0001\u0000\u0000\u0000\u050d\u0513\u0003\u011a\u008c\u0000"+ + "\u050e\u0513\u0003\u011c\u008d\u0000\u050f\u0513\u0003\u011e\u008e\u0000"+ + "\u0510\u0513\u0003\u0120\u008f\u0000\u0511\u0513\u0003\u0002\u0000\u0000"+ + "\u0512\u050d\u0001\u0000\u0000\u0000\u0512\u050e\u0001\u0000\u0000\u0000"+ + "\u0512\u050f\u0001\u0000\u0000\u0000\u0512\u0510\u0001\u0000\u0000\u0000"+ + "\u0512\u0511\u0001\u0000\u0000\u0000\u0513\u0514\u0001\u0000\u0000\u0000"+ + "\u0514\u0515\u0005i\u0000\u0000\u0515\u0516\u0001\u0000\u0000\u0000\u0516"+ + "\u0517\u0006\u0093\u0000\u0000\u0517\u0129\u0001\u0000\u0000\u0000\u0518"+ + "\u051b\u0005\'\u0000\u0000\u0519\u051c\u0003\u0144\u00a1\u0000\u051a\u051c"+ + "\u0003\u012e\u0096\u0000\u051b\u0519\u0001\u0000\u0000\u0000\u051b\u051a"+ + "\u0001\u0000\u0000\u0000\u051c\u051d\u0001\u0000\u0000\u0000\u051d\u051e"+ + "\u0005\'\u0000\u0000\u051e\u012b\u0001\u0000\u0000\u0000\u051f\u0520\u0003"+ + "\u012a\u0094\u0000\u0520\u0521\u0001\u0000\u0000\u0000\u0521\u0522\u0006"+ + "\u0095\u0000\u0000\u0522\u012d\u0001\u0000\u0000\u0000\u0523\u0526\u0003"+ + "\u0130\u0097\u0000\u0524\u0526\u0003\u0132\u0098\u0000\u0525\u0523\u0001"+ + "\u0000\u0000\u0000\u0525\u0524\u0001\u0000\u0000\u0000\u0526\u012f\u0001"+ + "\u0000\u0000\u0000\u0527\u0528\u0005\\\u0000\u0000\u0528\u0529\u0003\u014a"+ + "\u00a4\u0000\u0529\u052a\u0003\u014a\u00a4\u0000\u052a\u052b\u0003\u014a"+ + "\u00a4\u0000\u052b\u0131\u0001\u0000\u0000\u0000\u052c\u052d\u0005\\\u0000"+ + "\u0000\u052d\u052e\u0005x\u0000\u0000\u052e\u052f\u0003\u014c\u00a5\u0000"+ + "\u052f\u0530\u0003\u014c\u00a5\u0000\u0530\u0133\u0001\u0000\u0000\u0000"+ + "\u0531\u0532\u0005\\\u0000\u0000\u0532\u0533\u0005u\u0000\u0000\u0533"+ + "\u0534\u0003\u014c\u00a5\u0000\u0534\u0535\u0003\u014c\u00a5\u0000\u0535"+ + "\u0536\u0003\u014c\u00a5\u0000\u0536\u0537\u0003\u014c\u00a5\u0000\u0537"+ + "\u0135\u0001\u0000\u0000\u0000\u0538\u0539\u0005\\\u0000\u0000\u0539\u053a"+ + "\u0005U\u0000\u0000\u053a\u053b\u0003\u014c\u00a5\u0000\u053b\u053c\u0003"+ + "\u014c\u00a5\u0000\u053c\u053d\u0003\u014c\u00a5\u0000\u053d\u053e\u0003"+ + "\u014c\u00a5\u0000\u053e\u053f\u0003\u014c\u00a5\u0000\u053f\u0540\u0003"+ + "\u014c\u00a5\u0000\u0540\u0541\u0003\u014c\u00a5\u0000\u0541\u0542\u0003"+ + "\u014c\u00a5\u0000\u0542\u0137\u0001\u0000\u0000\u0000\u0543\u0547\u0005"+ + "`\u0000\u0000\u0544\u0546\b\u0007\u0000\u0000\u0545\u0544\u0001\u0000"+ + "\u0000\u0000\u0546\u0549\u0001\u0000\u0000\u0000\u0547\u0545\u0001\u0000"+ + "\u0000\u0000\u0547\u0548\u0001\u0000\u0000\u0000\u0548\u054a\u0001\u0000"+ + "\u0000\u0000\u0549\u0547\u0001\u0000\u0000\u0000\u054a\u054b\u0005`\u0000"+ + "\u0000\u054b\u054c\u0001\u0000\u0000\u0000\u054c\u054d\u0006\u009b\u0000"+ + "\u0000\u054d\u0139\u0001\u0000\u0000\u0000\u054e\u0553\u0005\"\u0000\u0000"+ + "\u054f\u0552\b\b\u0000\u0000\u0550\u0552\u0003\u0146\u00a2\u0000\u0551"+ + "\u054f\u0001\u0000\u0000\u0000\u0551\u0550\u0001\u0000\u0000\u0000\u0552"+ + "\u0555\u0001\u0000\u0000\u0000\u0553\u0551\u0001\u0000\u0000\u0000\u0553"+ + "\u0554\u0001\u0000\u0000\u0000\u0554\u0556\u0001\u0000\u0000\u0000\u0555"+ + "\u0553\u0001\u0000\u0000\u0000\u0556\u0557\u0005\"\u0000\u0000\u0557\u0558"+ + "\u0001\u0000\u0000\u0000\u0558\u0559\u0006\u009c\u0000\u0000\u0559\u013b"+ + "\u0001\u0000\u0000\u0000\u055a\u055c\u0007\t\u0000\u0000\u055b\u055a\u0001"+ + "\u0000\u0000\u0000\u055c\u055d\u0001\u0000\u0000\u0000\u055d\u055b\u0001"+ + "\u0000\u0000\u0000\u055d\u055e\u0001\u0000\u0000\u0000\u055e\u055f\u0001"+ + "\u0000\u0000\u0000\u055f\u0560\u0006\u009d\u0001\u0000\u0560\u013d\u0001"+ + "\u0000\u0000\u0000\u0561\u0562\u0005/\u0000\u0000\u0562\u0563\u0005*\u0000"+ + "\u0000\u0563\u0567\u0001\u0000\u0000\u0000\u0564\u0566\t\u0000\u0000\u0000"+ + "\u0565\u0564\u0001\u0000\u0000\u0000\u0566\u0569\u0001\u0000\u0000\u0000"+ + "\u0567\u0568\u0001\u0000\u0000\u0000\u0567\u0565\u0001\u0000\u0000\u0000"+ + "\u0568\u056a\u0001\u0000\u0000\u0000\u0569\u0567\u0001\u0000\u0000\u0000"+ + "\u056a\u056b\u0005*\u0000\u0000\u056b\u056c\u0005/\u0000\u0000\u056c\u056d"+ + "\u0001\u0000\u0000\u0000\u056d\u056e\u0006\u009e\u0001\u0000\u056e\u013f"+ + "\u0001\u0000\u0000\u0000\u056f\u0571\u0007\n\u0000\u0000\u0570\u056f\u0001"+ + "\u0000\u0000\u0000\u0571\u0572\u0001\u0000\u0000\u0000\u0572\u0570\u0001"+ + "\u0000\u0000\u0000\u0572\u0573\u0001\u0000\u0000\u0000\u0573\u0574\u0001"+ + "\u0000\u0000\u0000\u0574\u0575\u0006\u009f\u0001\u0000\u0575\u0141\u0001"+ + "\u0000\u0000\u0000\u0576\u0577\u0005/\u0000\u0000\u0577\u0578\u0005/\u0000"+ + "\u0000\u0578\u057c\u0001\u0000\u0000\u0000\u0579\u057b\b\n\u0000\u0000"+ + "\u057a\u0579\u0001\u0000\u0000\u0000\u057b\u057e\u0001\u0000\u0000\u0000"+ + "\u057c\u057a\u0001\u0000\u0000\u0000\u057c\u057d\u0001\u0000\u0000\u0000"+ + "\u057d\u057f\u0001\u0000\u0000\u0000\u057e\u057c\u0001\u0000\u0000\u0000"+ + "\u057f\u0580\u0006\u00a0\u0001\u0000\u0580\u0143\u0001\u0000\u0000\u0000"+ + "\u0581\u0586\b\u000b\u0000\u0000\u0582\u0586\u0003\u0134\u0099\u0000\u0583"+ + "\u0586\u0003\u0136\u009a\u0000\u0584\u0586\u0003\u0146\u00a2\u0000\u0585"+ + "\u0581\u0001\u0000\u0000\u0000\u0585\u0582\u0001\u0000\u0000\u0000\u0585"+ + "\u0583\u0001\u0000\u0000\u0000\u0585\u0584\u0001\u0000\u0000\u0000\u0586"+ + "\u0145\u0001\u0000\u0000\u0000\u0587\u05a1\u0005\\\u0000\u0000\u0588\u0589"+ + "\u0005u\u0000\u0000\u0589\u058a\u0003\u014c\u00a5\u0000\u058a\u058b\u0003"+ + "\u014c\u00a5\u0000\u058b\u058c\u0003\u014c\u00a5\u0000\u058c\u058d\u0003"+ + "\u014c\u00a5\u0000\u058d\u05a2\u0001\u0000\u0000\u0000\u058e\u058f\u0005"+ + "U\u0000\u0000\u058f\u0590\u0003\u014c\u00a5\u0000\u0590\u0591\u0003\u014c"+ + "\u00a5\u0000\u0591\u0592\u0003\u014c\u00a5\u0000\u0592\u0593\u0003\u014c"+ + "\u00a5\u0000\u0593\u0594\u0003\u014c\u00a5\u0000\u0594\u0595\u0003\u014c"+ + "\u00a5\u0000\u0595\u0596\u0003\u014c\u00a5\u0000\u0596\u0597\u0003\u014c"+ + "\u00a5\u0000\u0597\u05a2\u0001\u0000\u0000\u0000\u0598\u05a2\u0007\f\u0000"+ + "\u0000\u0599\u059a\u0003\u014a\u00a4\u0000\u059a\u059b\u0003\u014a\u00a4"+ + "\u0000\u059b\u059c\u0003\u014a\u00a4\u0000\u059c\u05a2\u0001\u0000\u0000"+ + "\u0000\u059d\u059e\u0005x\u0000\u0000\u059e\u059f\u0003\u014c\u00a5\u0000"+ + "\u059f\u05a0\u0003\u014c\u00a5\u0000\u05a0\u05a2\u0001\u0000\u0000\u0000"+ + "\u05a1\u0588\u0001\u0000\u0000\u0000\u05a1\u058e\u0001\u0000\u0000\u0000"+ + "\u05a1\u0598\u0001\u0000\u0000\u0000\u05a1\u0599\u0001\u0000\u0000\u0000"+ + "\u05a1\u059d\u0001\u0000\u0000\u0000\u05a2\u0147\u0001\u0000\u0000\u0000"+ + "\u05a3\u05aa\u0007\u0001\u0000\u0000\u05a4\u05a6\u0005_\u0000\u0000\u05a5"+ + "\u05a4\u0001\u0000\u0000\u0000\u05a5\u05a6\u0001\u0000\u0000\u0000\u05a6"+ + "\u05a7\u0001\u0000\u0000\u0000\u05a7\u05a9\u0007\u0001\u0000\u0000\u05a8"+ + "\u05a5\u0001\u0000\u0000\u0000\u05a9\u05ac\u0001\u0000\u0000\u0000\u05aa"+ + "\u05a8\u0001\u0000\u0000\u0000\u05aa\u05ab\u0001\u0000\u0000\u0000\u05ab"+ + "\u0149\u0001\u0000\u0000\u0000\u05ac\u05aa\u0001\u0000\u0000\u0000\u05ad"+ + "\u05ae\u0007\r\u0000\u0000\u05ae\u014b\u0001\u0000\u0000\u0000\u05af\u05b0"+ + "\u0007\u000e\u0000\u0000\u05b0\u014d\u0001\u0000\u0000\u0000\u05b1\u05b2"+ + "\u0007\u000f\u0000\u0000\u05b2\u014f\u0001\u0000\u0000\u0000\u05b3\u05b5"+ + "\u0007\u0010\u0000\u0000\u05b4\u05b6\u0007\u0006\u0000\u0000\u05b5\u05b4"+ + "\u0001\u0000\u0000\u0000\u05b5\u05b6\u0001\u0000\u0000\u0000\u05b6\u05b7"+ + "\u0001\u0000\u0000\u0000\u05b7\u05b8\u0003\u0148\u00a3\u0000\u05b8\u0151"+ + "\u0001\u0000\u0000\u0000\u05b9\u05bc\u0003\u0156\u00aa\u0000\u05ba\u05bc"+ + "\u0005_\u0000\u0000\u05bb\u05b9\u0001\u0000\u0000\u0000\u05bb\u05ba\u0001"+ + "\u0000\u0000\u0000\u05bc\u0153\u0001\u0000\u0000\u0000\u05bd\u05be\u0007"+ + "\u0011\u0000\u0000\u05be\u0155\u0001\u0000\u0000\u0000\u05bf\u05c0\u0007"+ + "\u0012\u0000\u0000\u05c0\u0157\u0001\u0000\u0000\u0000\u05c1\u05c3\u0007"+ + "\t\u0000\u0000\u05c2\u05c1\u0001\u0000\u0000\u0000\u05c3\u05c4\u0001\u0000"+ + "\u0000\u0000\u05c4\u05c2\u0001\u0000\u0000\u0000\u05c4\u05c5\u0001\u0000"+ + "\u0000\u0000\u05c5\u05c6\u0001\u0000\u0000\u0000\u05c6\u05c7\u0006\u00ab"+ + "\u0001\u0000\u05c7\u0159\u0001\u0000\u0000\u0000\u05c8\u05c9\u0005/\u0000"+ + "\u0000\u05c9\u05ca\u0005*\u0000\u0000\u05ca\u05ce\u0001\u0000\u0000\u0000"+ + "\u05cb\u05cd\b\n\u0000\u0000\u05cc\u05cb\u0001\u0000\u0000\u0000\u05cd"+ + "\u05d0\u0001\u0000\u0000\u0000\u05ce\u05cf\u0001\u0000\u0000\u0000\u05ce"+ + "\u05cc\u0001\u0000\u0000\u0000\u05cf\u05d1\u0001\u0000\u0000\u0000\u05d0"+ + "\u05ce\u0001\u0000\u0000\u0000\u05d1\u05d2\u0005*\u0000\u0000\u05d2\u05d3"+ + "\u0005/\u0000\u0000\u05d3\u05d4\u0001\u0000\u0000\u0000\u05d4\u05d5\u0006"+ + "\u00ac\u0001\u0000\u05d5\u015b\u0001\u0000\u0000\u0000\u05d6\u05d7\u0005"+ + "/\u0000\u0000\u05d7\u05d8\u0005/\u0000\u0000\u05d8\u05dc\u0001\u0000\u0000"+ + "\u0000\u05d9\u05db\b\n\u0000\u0000\u05da\u05d9\u0001\u0000\u0000\u0000"+ + "\u05db\u05de\u0001\u0000\u0000\u0000\u05dc\u05da\u0001\u0000\u0000\u0000"+ + "\u05dc\u05dd\u0001\u0000\u0000\u0000\u05dd\u05df\u0001\u0000\u0000\u0000"+ + "\u05de\u05dc\u0001\u0000\u0000\u0000\u05df\u05e0\u0006\u00ad\u0001\u0000"+ + "\u05e0\u015d\u0001\u0000\u0000\u0000\u05e1\u05e3\u0007\n\u0000\u0000\u05e2"+ + "\u05e1\u0001\u0000\u0000\u0000\u05e3\u05e4\u0001\u0000\u0000\u0000\u05e4"+ + "\u05e2\u0001\u0000\u0000\u0000\u05e4\u05e5\u0001\u0000\u0000\u0000\u05e5"+ + "\u05f4\u0001\u0000\u0000\u0000\u05e6\u05f4\u0005;\u0000\u0000\u05e7\u05e8"+ + "\u0005/\u0000\u0000\u05e8\u05e9\u0005*\u0000\u0000\u05e9\u05ed\u0001\u0000"+ + "\u0000\u0000\u05ea\u05ec\t\u0000\u0000\u0000\u05eb\u05ea\u0001\u0000\u0000"+ + "\u0000\u05ec\u05ef\u0001\u0000\u0000\u0000\u05ed\u05ee\u0001\u0000\u0000"+ + "\u0000\u05ed\u05eb\u0001\u0000\u0000\u0000\u05ee\u05f0\u0001\u0000\u0000"+ + "\u0000\u05ef\u05ed\u0001\u0000\u0000\u0000\u05f0\u05f1\u0005*\u0000\u0000"+ + "\u05f1\u05f4\u0005/\u0000\u0000\u05f2\u05f4\u0005\u0000\u0000\u0001\u05f3"+ + "\u05e2\u0001\u0000\u0000\u0000\u05f3\u05e6\u0001\u0000\u0000\u0000\u05f3"+ + "\u05e7\u0001\u0000\u0000\u0000\u05f3\u05f2\u0001\u0000\u0000\u0000\u05f4"+ + "\u05f5\u0001\u0000\u0000\u0000\u05f5\u05f6\u0006\u00ae\u0002\u0000\u05f6"+ + "\u015f\u0001\u0000\u0000\u0000\u05f7\u05f8\u0001\u0000\u0000\u0000\u05f8"+ + "\u05f9\u0001\u0000\u0000\u0000\u05f9\u05fa\u0006\u00af\u0002\u0000\u05fa"+ + "\u05fb\u0006\u00af\u0001\u0000\u05fb\u0161\u0001\u0000\u0000\u00003\u0000"+ + "\u0001\u0164\u016c\u016f\u0172\u0178\u017a\u0444\u0446\u04af\u04b4\u04b7"+ + "\u04be\u04c3\u04c9\u04cc\u04d1\u04d8\u04dd\u04e7\u04ec\u04f0\u04f5\u04f8"+ + "\u04fd\u0502\u0505\u0509\u0512\u051b\u0525\u0547\u0551\u0553\u055d\u0567"+ + "\u0572\u057c\u0585\u05a1\u05a5\u05aa\u05b5\u05bb\u05c4\u05ce\u05dc\u05e4"+ + "\u05ed\u05f3\u0003\u0002\u0001\u0000\u0000\u0001\u0000\u0002\u0000\u0000"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff --git a/src/main/java/viper/gobra/frontend/GobraParser.java b/src/main/java/viper/gobra/frontend/GobraParser.java index eee260acd..07123362b 100644 --- a/src/main/java/viper/gobra/frontend/GobraParser.java +++ b/src/main/java/viper/gobra/frontend/GobraParser.java @@ -1,4 +1,4 @@ -// Generated from src/main/antlr4/GobraParser.g4 by ANTLR 4.13.1 +// Generated from src/main/antlr4/GobraParser.g4 by ANTLR 4.12.0 package viper.gobra.frontend; import org.antlr.v4.runtime.atn.*; import org.antlr.v4.runtime.dfa.DFA; @@ -11,7 +11,7 @@ @SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast", "CheckReturnValue"}) public class GobraParser extends GobraParserBase { - static { RuntimeMetaData.checkVersion("4.13.1", RuntimeMetaData.VERSION); } + static { RuntimeMetaData.checkVersion("4.12.0", RuntimeMetaData.VERSION); } protected static final DFA[] _decisionToDFA; protected static final PredictionContextCache _sharedContextCache = @@ -23,26 +23,26 @@ public class GobraParser extends GobraParserBase { FOLD=23, UNFOLD=24, UNFOLDING=25, LET=26, GHOST=27, IN=28, MULTI=29, SUBSET=30, UNION=31, INTERSECTION=32, SETMINUS=33, IMPLIES=34, WAND=35, APPLY=36, QMARK=37, L_PRED=38, R_PRED=39, SEQ=40, SET=41, MSET=42, DICT=43, OPT=44, - LEN=45, NEW=46, MAKE=47, CAP=48, SOME=49, GET=50, DOM=51, AXIOM=52, ADT=53, - MATCH=54, NONE=55, PRED=56, TYPE_OF=57, IS_COMPARABLE=58, SHARE=59, ADDR_MOD=60, - DOT_DOT=61, SHARED=62, EXCLUSIVE=63, PREDICATE=64, WRITEPERM=65, NOPERM=66, - TRUSTED=67, OUTLINE=68, INIT_POST=69, IMPORT_PRE=70, PROOF=71, GHOST_EQUALS=72, - GHOST_NOT_EQUALS=73, WITH=74, OPAQUE=75, REVEAL=76, BREAK=77, DEFAULT=78, - FUNC=79, INTERFACE=80, SELECT=81, CASE=82, DEFER=83, GO=84, MAP=85, STRUCT=86, - CHAN=87, ELSE=88, GOTO=89, PACKAGE=90, SWITCH=91, CONST=92, FALLTHROUGH=93, - IF=94, RANGE=95, TYPE=96, CONTINUE=97, FOR=98, IMPORT=99, RETURN=100, - VAR=101, NIL_LIT=102, IDENTIFIER=103, L_PAREN=104, R_PAREN=105, L_CURLY=106, - R_CURLY=107, L_BRACKET=108, R_BRACKET=109, ASSIGN=110, COMMA=111, SEMI=112, - COLON=113, DOT=114, PLUS_PLUS=115, MINUS_MINUS=116, DECLARE_ASSIGN=117, - ELLIPSIS=118, LOGICAL_OR=119, LOGICAL_AND=120, EQUALS=121, NOT_EQUALS=122, - LESS=123, LESS_OR_EQUALS=124, GREATER=125, GREATER_OR_EQUALS=126, OR=127, - DIV=128, MOD=129, LSHIFT=130, RSHIFT=131, BIT_CLEAR=132, EXCLAMATION=133, - PLUS=134, MINUS=135, CARET=136, STAR=137, AMPERSAND=138, RECEIVE=139, - DECIMAL_LIT=140, BINARY_LIT=141, OCTAL_LIT=142, HEX_LIT=143, HEX_FLOAT_LIT=144, - IMAGINARY_LIT=145, RUNE_LIT=146, BYTE_VALUE=147, OCTAL_BYTE_VALUE=148, - HEX_BYTE_VALUE=149, LITTLE_U_VALUE=150, BIG_U_VALUE=151, RAW_STRING_LIT=152, - INTERPRETED_STRING_LIT=153, WS=154, COMMENT=155, TERMINATOR=156, LINE_COMMENT=157, - WS_NLSEMI=158, COMMENT_NLSEMI=159, LINE_COMMENT_NLSEMI=160, EOS=161, OTHER=162; + GPOINTER=45, LEN=46, NEW=47, MAKE=48, CAP=49, SOME=50, GET=51, DOM=52, + AXIOM=53, ADT=54, MATCH=55, NONE=56, PRED=57, TYPE_OF=58, IS_COMPARABLE=59, + SHARE=60, ADDR_MOD=61, DOT_DOT=62, SHARED=63, EXCLUSIVE=64, PREDICATE=65, + WRITEPERM=66, NOPERM=67, TRUSTED=68, OUTLINE=69, INIT_POST=70, IMPORT_PRE=71, + PROOF=72, GHOST_EQUALS=73, GHOST_NOT_EQUALS=74, WITH=75, OPAQUE=76, REVEAL=77, + BREAK=78, DEFAULT=79, FUNC=80, INTERFACE=81, SELECT=82, CASE=83, DEFER=84, + GO=85, MAP=86, STRUCT=87, CHAN=88, ELSE=89, GOTO=90, PACKAGE=91, SWITCH=92, + CONST=93, FALLTHROUGH=94, IF=95, RANGE=96, TYPE=97, CONTINUE=98, FOR=99, + IMPORT=100, RETURN=101, VAR=102, NIL_LIT=103, IDENTIFIER=104, L_PAREN=105, + R_PAREN=106, L_CURLY=107, R_CURLY=108, L_BRACKET=109, R_BRACKET=110, ASSIGN=111, + COMMA=112, SEMI=113, COLON=114, DOT=115, PLUS_PLUS=116, MINUS_MINUS=117, + DECLARE_ASSIGN=118, ELLIPSIS=119, LOGICAL_OR=120, LOGICAL_AND=121, EQUALS=122, + NOT_EQUALS=123, LESS=124, LESS_OR_EQUALS=125, GREATER=126, GREATER_OR_EQUALS=127, + OR=128, DIV=129, MOD=130, LSHIFT=131, RSHIFT=132, BIT_CLEAR=133, EXCLAMATION=134, + PLUS=135, MINUS=136, CARET=137, STAR=138, AMPERSAND=139, RECEIVE=140, + DECIMAL_LIT=141, BINARY_LIT=142, OCTAL_LIT=143, HEX_LIT=144, HEX_FLOAT_LIT=145, + IMAGINARY_LIT=146, RUNE_LIT=147, BYTE_VALUE=148, OCTAL_BYTE_VALUE=149, + HEX_BYTE_VALUE=150, LITTLE_U_VALUE=151, BIG_U_VALUE=152, RAW_STRING_LIT=153, + INTERPRETED_STRING_LIT=154, WS=155, COMMENT=156, TERMINATOR=157, LINE_COMMENT=158, + WS_NLSEMI=159, COMMENT_NLSEMI=160, LINE_COMMENT_NLSEMI=161, EOS=162, OTHER=163; public static final int RULE_exprOnly = 0, RULE_stmtOnly = 1, RULE_typeOnly = 2, RULE_maybeAddressableIdentifierList = 3, RULE_maybeAddressableIdentifier = 4, RULE_sourceFile = 5, RULE_preamble = 6, @@ -57,46 +57,46 @@ public class GobraParser extends GobraParserBase { RULE_matchExprClause = 37, RULE_seqUpdExp = 38, RULE_seqUpdClause = 39, RULE_ghostTypeLit = 40, RULE_domainType = 41, RULE_domainClause = 42, RULE_adtType = 43, RULE_adtClause = 44, RULE_adtFieldDecl = 45, RULE_ghostSliceType = 46, - RULE_sqType = 47, RULE_specification = 48, RULE_specStatement = 49, RULE_terminationMeasure = 50, - RULE_assertion = 51, RULE_matchStmt = 52, RULE_matchStmtClause = 53, RULE_matchCase = 54, - RULE_matchPattern = 55, RULE_matchPatternList = 56, RULE_blockWithBodyParameterInfo = 57, - RULE_closureSpecInstance = 58, RULE_closureSpecParams = 59, RULE_closureSpecParam = 60, - RULE_closureImplProofStmt = 61, RULE_implementationProof = 62, RULE_methodImplementationProof = 63, - RULE_nonLocalReceiver = 64, RULE_selection = 65, RULE_implementationProofPredicateAlias = 66, - RULE_make = 67, RULE_new_ = 68, RULE_specMember = 69, RULE_functionDecl = 70, - RULE_methodDecl = 71, RULE_explicitGhostMember = 72, RULE_fpredicateDecl = 73, - RULE_predicateBody = 74, RULE_mpredicateDecl = 75, RULE_varSpec = 76, - RULE_shortVarDecl = 77, RULE_receiver = 78, RULE_parameterDecl = 79, RULE_actualParameterDecl = 80, - RULE_ghostParameterDecl = 81, RULE_parameterType = 82, RULE_expression = 83, - RULE_statement = 84, RULE_applyStmt = 85, RULE_packageStmt = 86, RULE_specForStmt = 87, - RULE_loopSpec = 88, RULE_deferStmt = 89, RULE_basicLit = 90, RULE_primaryExpr = 91, - RULE_functionLit = 92, RULE_closureDecl = 93, RULE_predConstructArgs = 94, - RULE_interfaceType = 95, RULE_predicateSpec = 96, RULE_methodSpec = 97, - RULE_type_ = 98, RULE_typeLit = 99, RULE_predType = 100, RULE_predTypeParams = 101, - RULE_literalType = 102, RULE_implicitArray = 103, RULE_slice_ = 104, RULE_low = 105, - RULE_high = 106, RULE_cap = 107, RULE_assign_op = 108, RULE_rangeClause = 109, - RULE_packageClause = 110, RULE_importPath = 111, RULE_declaration = 112, - RULE_constDecl = 113, RULE_constSpec = 114, RULE_identifierList = 115, - RULE_expressionList = 116, RULE_typeDecl = 117, RULE_typeSpec = 118, RULE_varDecl = 119, - RULE_block = 120, RULE_statementList = 121, RULE_simpleStmt = 122, RULE_expressionStmt = 123, - RULE_sendStmt = 124, RULE_incDecStmt = 125, RULE_assignment = 126, RULE_emptyStmt = 127, - RULE_labeledStmt = 128, RULE_returnStmt = 129, RULE_breakStmt = 130, RULE_continueStmt = 131, - RULE_gotoStmt = 132, RULE_fallthroughStmt = 133, RULE_ifStmt = 134, RULE_switchStmt = 135, - RULE_exprSwitchStmt = 136, RULE_exprCaseClause = 137, RULE_exprSwitchCase = 138, - RULE_typeSwitchStmt = 139, RULE_typeSwitchGuard = 140, RULE_typeCaseClause = 141, - RULE_typeSwitchCase = 142, RULE_typeList = 143, RULE_selectStmt = 144, - RULE_commClause = 145, RULE_commCase = 146, RULE_recvStmt = 147, RULE_forStmt = 148, - RULE_forClause = 149, RULE_goStmt = 150, RULE_typeName = 151, RULE_arrayType = 152, - RULE_arrayLength = 153, RULE_elementType = 154, RULE_pointerType = 155, - RULE_sliceType = 156, RULE_mapType = 157, RULE_channelType = 158, RULE_functionType = 159, - RULE_signature = 160, RULE_result = 161, RULE_parameters = 162, RULE_conversion = 163, - RULE_nonNamedType = 164, RULE_operand = 165, RULE_literal = 166, RULE_integer = 167, - RULE_operandName = 168, RULE_qualifiedIdent = 169, RULE_compositeLit = 170, - RULE_literalValue = 171, RULE_elementList = 172, RULE_keyedElement = 173, - RULE_key = 174, RULE_element = 175, RULE_structType = 176, RULE_fieldDecl = 177, - RULE_string_ = 178, RULE_embeddedField = 179, RULE_index = 180, RULE_typeAssertion = 181, - RULE_arguments = 182, RULE_methodExpr = 183, RULE_receiverType = 184, - RULE_eos = 185; + RULE_ghostPointerType = 47, RULE_sqType = 48, RULE_specification = 49, + RULE_specStatement = 50, RULE_terminationMeasure = 51, RULE_assertion = 52, + RULE_matchStmt = 53, RULE_matchStmtClause = 54, RULE_matchCase = 55, RULE_matchPattern = 56, + RULE_matchPatternList = 57, RULE_blockWithBodyParameterInfo = 58, RULE_closureSpecInstance = 59, + RULE_closureSpecParams = 60, RULE_closureSpecParam = 61, RULE_closureImplProofStmt = 62, + RULE_implementationProof = 63, RULE_methodImplementationProof = 64, RULE_nonLocalReceiver = 65, + RULE_selection = 66, RULE_implementationProofPredicateAlias = 67, RULE_make = 68, + RULE_new_ = 69, RULE_specMember = 70, RULE_functionDecl = 71, RULE_methodDecl = 72, + RULE_explicitGhostMember = 73, RULE_fpredicateDecl = 74, RULE_predicateBody = 75, + RULE_mpredicateDecl = 76, RULE_varSpec = 77, RULE_shortVarDecl = 78, RULE_receiver = 79, + RULE_parameterDecl = 80, RULE_actualParameterDecl = 81, RULE_ghostParameterDecl = 82, + RULE_parameterType = 83, RULE_expression = 84, RULE_statement = 85, RULE_applyStmt = 86, + RULE_packageStmt = 87, RULE_specForStmt = 88, RULE_loopSpec = 89, RULE_deferStmt = 90, + RULE_basicLit = 91, RULE_primaryExpr = 92, RULE_functionLit = 93, RULE_closureDecl = 94, + RULE_predConstructArgs = 95, RULE_interfaceType = 96, RULE_predicateSpec = 97, + RULE_methodSpec = 98, RULE_type_ = 99, RULE_typeLit = 100, RULE_predType = 101, + RULE_predTypeParams = 102, RULE_literalType = 103, RULE_implicitArray = 104, + RULE_slice_ = 105, RULE_low = 106, RULE_high = 107, RULE_cap = 108, RULE_assign_op = 109, + RULE_rangeClause = 110, RULE_packageClause = 111, RULE_importPath = 112, + RULE_declaration = 113, RULE_constDecl = 114, RULE_constSpec = 115, RULE_identifierList = 116, + RULE_expressionList = 117, RULE_typeDecl = 118, RULE_typeSpec = 119, RULE_varDecl = 120, + RULE_block = 121, RULE_statementList = 122, RULE_simpleStmt = 123, RULE_expressionStmt = 124, + RULE_sendStmt = 125, RULE_incDecStmt = 126, RULE_assignment = 127, RULE_emptyStmt = 128, + RULE_labeledStmt = 129, RULE_returnStmt = 130, RULE_breakStmt = 131, RULE_continueStmt = 132, + RULE_gotoStmt = 133, RULE_fallthroughStmt = 134, RULE_ifStmt = 135, RULE_switchStmt = 136, + RULE_exprSwitchStmt = 137, RULE_exprCaseClause = 138, RULE_exprSwitchCase = 139, + RULE_typeSwitchStmt = 140, RULE_typeSwitchGuard = 141, RULE_typeCaseClause = 142, + RULE_typeSwitchCase = 143, RULE_typeList = 144, RULE_selectStmt = 145, + RULE_commClause = 146, RULE_commCase = 147, RULE_recvStmt = 148, RULE_forStmt = 149, + RULE_forClause = 150, RULE_goStmt = 151, RULE_typeName = 152, RULE_arrayType = 153, + RULE_arrayLength = 154, RULE_elementType = 155, RULE_pointerType = 156, + RULE_sliceType = 157, RULE_mapType = 158, RULE_channelType = 159, RULE_functionType = 160, + RULE_signature = 161, RULE_result = 162, RULE_parameters = 163, RULE_conversion = 164, + RULE_nonNamedType = 165, RULE_operand = 166, RULE_literal = 167, RULE_integer = 168, + RULE_operandName = 169, RULE_qualifiedIdent = 170, RULE_compositeLit = 171, + RULE_literalValue = 172, RULE_elementList = 173, RULE_keyedElement = 174, + RULE_key = 175, RULE_element = 176, RULE_structType = 177, RULE_fieldDecl = 178, + RULE_string_ = 179, RULE_embeddedField = 180, RULE_index = 181, RULE_typeAssertion = 182, + RULE_arguments = 183, RULE_methodExpr = 184, RULE_receiverType = 185, + RULE_eos = 186; private static String[] makeRuleNames() { return new String[] { "exprOnly", "stmtOnly", "typeOnly", "maybeAddressableIdentifierList", @@ -108,34 +108,35 @@ private static String[] makeRuleNames() { "old", "oldLabelUse", "labelUse", "before", "isComparable", "typeOf", "access", "range", "matchExpr", "matchExprClause", "seqUpdExp", "seqUpdClause", "ghostTypeLit", "domainType", "domainClause", "adtType", "adtClause", - "adtFieldDecl", "ghostSliceType", "sqType", "specification", "specStatement", - "terminationMeasure", "assertion", "matchStmt", "matchStmtClause", "matchCase", - "matchPattern", "matchPatternList", "blockWithBodyParameterInfo", "closureSpecInstance", - "closureSpecParams", "closureSpecParam", "closureImplProofStmt", "implementationProof", - "methodImplementationProof", "nonLocalReceiver", "selection", "implementationProofPredicateAlias", - "make", "new_", "specMember", "functionDecl", "methodDecl", "explicitGhostMember", - "fpredicateDecl", "predicateBody", "mpredicateDecl", "varSpec", "shortVarDecl", - "receiver", "parameterDecl", "actualParameterDecl", "ghostParameterDecl", - "parameterType", "expression", "statement", "applyStmt", "packageStmt", - "specForStmt", "loopSpec", "deferStmt", "basicLit", "primaryExpr", "functionLit", - "closureDecl", "predConstructArgs", "interfaceType", "predicateSpec", - "methodSpec", "type_", "typeLit", "predType", "predTypeParams", "literalType", - "implicitArray", "slice_", "low", "high", "cap", "assign_op", "rangeClause", - "packageClause", "importPath", "declaration", "constDecl", "constSpec", - "identifierList", "expressionList", "typeDecl", "typeSpec", "varDecl", - "block", "statementList", "simpleStmt", "expressionStmt", "sendStmt", - "incDecStmt", "assignment", "emptyStmt", "labeledStmt", "returnStmt", - "breakStmt", "continueStmt", "gotoStmt", "fallthroughStmt", "ifStmt", - "switchStmt", "exprSwitchStmt", "exprCaseClause", "exprSwitchCase", "typeSwitchStmt", - "typeSwitchGuard", "typeCaseClause", "typeSwitchCase", "typeList", "selectStmt", - "commClause", "commCase", "recvStmt", "forStmt", "forClause", "goStmt", - "typeName", "arrayType", "arrayLength", "elementType", "pointerType", - "sliceType", "mapType", "channelType", "functionType", "signature", "result", - "parameters", "conversion", "nonNamedType", "operand", "literal", "integer", - "operandName", "qualifiedIdent", "compositeLit", "literalValue", "elementList", - "keyedElement", "key", "element", "structType", "fieldDecl", "string_", - "embeddedField", "index", "typeAssertion", "arguments", "methodExpr", - "receiverType", "eos" + "adtFieldDecl", "ghostSliceType", "ghostPointerType", "sqType", "specification", + "specStatement", "terminationMeasure", "assertion", "matchStmt", "matchStmtClause", + "matchCase", "matchPattern", "matchPatternList", "blockWithBodyParameterInfo", + "closureSpecInstance", "closureSpecParams", "closureSpecParam", "closureImplProofStmt", + "implementationProof", "methodImplementationProof", "nonLocalReceiver", + "selection", "implementationProofPredicateAlias", "make", "new_", "specMember", + "functionDecl", "methodDecl", "explicitGhostMember", "fpredicateDecl", + "predicateBody", "mpredicateDecl", "varSpec", "shortVarDecl", "receiver", + "parameterDecl", "actualParameterDecl", "ghostParameterDecl", "parameterType", + "expression", "statement", "applyStmt", "packageStmt", "specForStmt", + "loopSpec", "deferStmt", "basicLit", "primaryExpr", "functionLit", "closureDecl", + "predConstructArgs", "interfaceType", "predicateSpec", "methodSpec", + "type_", "typeLit", "predType", "predTypeParams", "literalType", "implicitArray", + "slice_", "low", "high", "cap", "assign_op", "rangeClause", "packageClause", + "importPath", "declaration", "constDecl", "constSpec", "identifierList", + "expressionList", "typeDecl", "typeSpec", "varDecl", "block", "statementList", + "simpleStmt", "expressionStmt", "sendStmt", "incDecStmt", "assignment", + "emptyStmt", "labeledStmt", "returnStmt", "breakStmt", "continueStmt", + "gotoStmt", "fallthroughStmt", "ifStmt", "switchStmt", "exprSwitchStmt", + "exprCaseClause", "exprSwitchCase", "typeSwitchStmt", "typeSwitchGuard", + "typeCaseClause", "typeSwitchCase", "typeList", "selectStmt", "commClause", + "commCase", "recvStmt", "forStmt", "forClause", "goStmt", "typeName", + "arrayType", "arrayLength", "elementType", "pointerType", "sliceType", + "mapType", "channelType", "functionType", "signature", "result", "parameters", + "conversion", "nonNamedType", "operand", "literal", "integer", "operandName", + "qualifiedIdent", "compositeLit", "literalValue", "elementList", "keyedElement", + "key", "element", "structType", "fieldDecl", "string_", "embeddedField", + "index", "typeAssertion", "arguments", "methodExpr", "receiverType", + "eos" }; } public static final String[] ruleNames = makeRuleNames(); @@ -148,20 +149,20 @@ private static String[] makeLiteralNames() { "'#lhs'", "'forall'", "'exists'", "'acc'", "'fold'", "'unfold'", "'unfolding'", "'let'", "'ghost'", "'in'", "'#'", "'subset'", "'union'", "'intersection'", "'setminus'", "'==>'", "'--*'", "'apply'", "'?'", "'!<'", "'!>'", "'seq'", - "'set'", "'mset'", "'dict'", "'option'", "'len'", "'new'", "'make'", - "'cap'", "'some'", "'get'", "'domain'", "'axiom'", "'adt'", "'match'", - "'none'", "'pred'", "'typeOf'", "'isComparable'", "'share'", "'@'", "'..'", - "'shared'", "'exclusive'", "'predicate'", "'writePerm'", "'noPerm'", - "'trusted'", "'outline'", "'initEnsures'", "'importRequires'", "'proof'", - "'==='", "'!=='", "'with'", "'opaque'", "'reveal'", "'break'", "'default'", - "'func'", "'interface'", "'select'", "'case'", "'defer'", "'go'", "'map'", - "'struct'", "'chan'", "'else'", "'goto'", "'package'", "'switch'", "'const'", - "'fallthrough'", "'if'", "'range'", "'type'", "'continue'", "'for'", - "'import'", "'return'", "'var'", "'nil'", null, "'('", "')'", "'{'", - "'}'", "'['", "']'", "'='", "','", "';'", "':'", "'.'", "'++'", "'--'", - "':='", "'...'", "'||'", "'&&'", "'=='", "'!='", "'<'", "'<='", "'>'", - "'>='", "'|'", "'/'", "'%'", "'<<'", "'>>'", "'&^'", "'!'", "'+'", "'-'", - "'^'", "'*'", "'&'", "'<-'" + "'set'", "'mset'", "'dict'", "'option'", "'gpointer'", "'len'", "'new'", + "'make'", "'cap'", "'some'", "'get'", "'domain'", "'axiom'", "'adt'", + "'match'", "'none'", "'pred'", "'typeOf'", "'isComparable'", "'share'", + "'@'", "'..'", "'shared'", "'exclusive'", "'predicate'", "'writePerm'", + "'noPerm'", "'trusted'", "'outline'", "'initEnsures'", "'importRequires'", + "'proof'", "'==='", "'!=='", "'with'", "'opaque'", "'reveal'", "'break'", + "'default'", "'func'", "'interface'", "'select'", "'case'", "'defer'", + "'go'", "'map'", "'struct'", "'chan'", "'else'", "'goto'", "'package'", + "'switch'", "'const'", "'fallthrough'", "'if'", "'range'", "'type'", + "'continue'", "'for'", "'import'", "'return'", "'var'", "'nil'", null, + "'('", "')'", "'{'", "'}'", "'['", "']'", "'='", "','", "';'", "':'", + "'.'", "'++'", "'--'", "':='", "'...'", "'||'", "'&&'", "'=='", "'!='", + "'<'", "'<='", "'>'", "'>='", "'|'", "'/'", "'%'", "'<<'", "'>>'", "'&^'", + "'!'", "'+'", "'-'", "'^'", "'*'", "'&'", "'<-'" }; } private static final String[] _LITERAL_NAMES = makeLiteralNames(); @@ -172,9 +173,9 @@ private static String[] makeSymbolicNames() { "IMPL", "AS", "OLD", "BEFORE", "LHS", "FORALL", "EXISTS", "ACCESS", "FOLD", "UNFOLD", "UNFOLDING", "LET", "GHOST", "IN", "MULTI", "SUBSET", "UNION", "INTERSECTION", "SETMINUS", "IMPLIES", "WAND", "APPLY", "QMARK", "L_PRED", - "R_PRED", "SEQ", "SET", "MSET", "DICT", "OPT", "LEN", "NEW", "MAKE", - "CAP", "SOME", "GET", "DOM", "AXIOM", "ADT", "MATCH", "NONE", "PRED", - "TYPE_OF", "IS_COMPARABLE", "SHARE", "ADDR_MOD", "DOT_DOT", "SHARED", + "R_PRED", "SEQ", "SET", "MSET", "DICT", "OPT", "GPOINTER", "LEN", "NEW", + "MAKE", "CAP", "SOME", "GET", "DOM", "AXIOM", "ADT", "MATCH", "NONE", + "PRED", "TYPE_OF", "IS_COMPARABLE", "SHARE", "ADDR_MOD", "DOT_DOT", "SHARED", "EXCLUSIVE", "PREDICATE", "WRITEPERM", "NOPERM", "TRUSTED", "OUTLINE", "INIT_POST", "IMPORT_PRE", "PROOF", "GHOST_EQUALS", "GHOST_NOT_EQUALS", "WITH", "OPAQUE", "REVEAL", "BREAK", "DEFAULT", "FUNC", "INTERFACE", @@ -269,9 +270,9 @@ public final ExprOnlyContext exprOnly() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(372); + setState(374); expression(0); - setState(373); + setState(375); match(EOF); } } @@ -309,9 +310,9 @@ public final StmtOnlyContext stmtOnly() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(375); + setState(377); statement(); - setState(376); + setState(378); match(EOF); } } @@ -349,9 +350,9 @@ public final TypeOnlyContext typeOnly() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(378); + setState(380); type_(); - setState(379); + setState(381); match(EOF); } } @@ -396,21 +397,21 @@ public final MaybeAddressableIdentifierListContext maybeAddressableIdentifierLis try { enterOuterAlt(_localctx, 1); { - setState(381); + setState(383); maybeAddressableIdentifier(); - setState(386); + setState(388); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(382); + setState(384); match(COMMA); - setState(383); + setState(385); maybeAddressableIdentifier(); } } - setState(388); + setState(390); _errHandler.sync(this); _la = _input.LA(1); } @@ -449,14 +450,14 @@ public final MaybeAddressableIdentifierContext maybeAddressableIdentifier() thro try { enterOuterAlt(_localctx, 1); { - setState(389); - match(IDENTIFIER); setState(391); + match(IDENTIFIER); + setState(393); _errHandler.sync(this); _la = _input.LA(1); if (_la==ADDR_MOD) { { - setState(390); + setState(392); match(ADDR_MOD); } } @@ -534,79 +535,79 @@ public final SourceFileContext sourceFile() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(398); + setState(400); _errHandler.sync(this); _la = _input.LA(1); while (_la==INIT_POST) { { { - setState(393); + setState(395); initPost(); - setState(394); + setState(396); eos(); } } - setState(400); + setState(402); _errHandler.sync(this); _la = _input.LA(1); } - setState(401); + setState(403); packageClause(); - setState(402); + setState(404); eos(); - setState(408); + setState(410); _errHandler.sync(this); _la = _input.LA(1); while (_la==IMPORT_PRE || _la==IMPORT) { { { - setState(403); + setState(405); importDecl(); - setState(404); + setState(406); eos(); } } - setState(410); + setState(412); _errHandler.sync(this); _la = _input.LA(1); } - setState(420); + setState(422); _errHandler.sync(this); _la = _input.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 83350678101061120L) != 0) || ((((_la - 67)) & ~0x3f) == 0 && ((1L << (_la - 67)) & 2422933827841L) != 0) || _la==STAR || _la==RECEIVE) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 166702455579504128L) != 0) || ((((_la - 68)) & ~0x3f) == 0 && ((1L << (_la - 68)) & 2422933827841L) != 0) || _la==STAR || _la==RECEIVE) { { { - setState(414); + setState(416); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,4,_ctx) ) { case 1: { - setState(411); + setState(413); specMember(); } break; case 2: { - setState(412); + setState(414); declaration(); } break; case 3: { - setState(413); + setState(415); ghostMember(); } break; } - setState(416); + setState(418); eos(); } } - setState(422); + setState(424); _errHandler.sync(this); _la = _input.LA(1); } - setState(423); + setState(425); match(EOF); } } @@ -662,39 +663,39 @@ public final PreambleContext preamble() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(430); + setState(432); _errHandler.sync(this); _la = _input.LA(1); while (_la==INIT_POST) { { { - setState(425); + setState(427); initPost(); - setState(426); + setState(428); eos(); } } - setState(432); + setState(434); _errHandler.sync(this); _la = _input.LA(1); } - setState(433); + setState(435); packageClause(); - setState(434); + setState(436); eos(); - setState(440); + setState(442); _errHandler.sync(this); _la = _input.LA(1); while (_la==IMPORT_PRE || _la==IMPORT) { { { - setState(435); + setState(437); importDecl(); - setState(436); + setState(438); eos(); } } - setState(442); + setState(444); _errHandler.sync(this); _la = _input.LA(1); } @@ -734,9 +735,9 @@ public final InitPostContext initPost() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(443); + setState(445); match(INIT_POST); - setState(444); + setState(446); expression(0); } } @@ -774,9 +775,9 @@ public final ImportPreContext importPre() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(446); + setState(448); match(IMPORT_PRE); - setState(447); + setState(449); expression(0); } } @@ -829,28 +830,28 @@ public final ImportSpecContext importSpec() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(454); + setState(456); _errHandler.sync(this); _la = _input.LA(1); while (_la==IMPORT_PRE) { { { - setState(449); + setState(451); importPre(); - setState(450); + setState(452); eos(); } } - setState(456); + setState(458); _errHandler.sync(this); _la = _input.LA(1); } - setState(458); + setState(460); _errHandler.sync(this); _la = _input.LA(1); if (_la==IDENTIFIER || _la==DOT) { { - setState(457); + setState(459); ((ImportSpecContext)_localctx).alias = _input.LT(1); _la = _input.LA(1); if ( !(_la==IDENTIFIER || _la==DOT) ) { @@ -864,7 +865,7 @@ public final ImportSpecContext importSpec() throws RecognitionException { } } - setState(460); + setState(462); importPath(); } } @@ -920,56 +921,56 @@ public final ImportDeclContext importDecl() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(467); + setState(469); _errHandler.sync(this); _la = _input.LA(1); while (_la==IMPORT_PRE) { { { - setState(462); + setState(464); importPre(); - setState(463); + setState(465); eos(); } } - setState(469); + setState(471); _errHandler.sync(this); _la = _input.LA(1); } - setState(483); + setState(485); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,12,_ctx) ) { case 1: { - setState(470); + setState(472); match(IMPORT); - setState(471); + setState(473); importSpec(); } break; case 2: { - setState(472); + setState(474); match(IMPORT); - setState(473); + setState(475); match(L_PAREN); - setState(479); + setState(481); _errHandler.sync(this); _la = _input.LA(1); - while (((((_la - 70)) & ~0x3f) == 0 && ((1L << (_la - 70)) & 17600775979009L) != 0) || _la==RAW_STRING_LIT || _la==INTERPRETED_STRING_LIT) { + while (((((_la - 71)) & ~0x3f) == 0 && ((1L << (_la - 71)) & 17600775979009L) != 0) || _la==RAW_STRING_LIT || _la==INTERPRETED_STRING_LIT) { { { - setState(474); + setState(476); importSpec(); - setState(475); + setState(477); eos(); } } - setState(481); + setState(483); _errHandler.sync(this); _la = _input.LA(1); } - setState(482); + setState(484); match(R_PAREN); } break; @@ -1016,34 +1017,34 @@ public final GhostMemberContext ghostMember() throws RecognitionException { GhostMemberContext _localctx = new GhostMemberContext(_ctx, getState()); enterRule(_localctx, 22, RULE_ghostMember); try { - setState(489); + setState(491); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,13,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(485); + setState(487); implementationProof(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(486); + setState(488); fpredicateDecl(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(487); + setState(489); mpredicateDecl(); } break; case 4: enterOuterAlt(_localctx, 4); { - setState(488); + setState(490); explicitGhostMember(); } break; @@ -1135,16 +1136,16 @@ public final GhostStatementContext ghostStatement() throws RecognitionException enterRule(_localctx, 24, RULE_ghostStatement); int _la; try { - setState(498); + setState(500); _errHandler.sync(this); switch (_input.LA(1)) { case GHOST: _localctx = new ExplicitGhostStatementContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(491); + setState(493); match(GHOST); - setState(492); + setState(494); statement(); } break; @@ -1153,7 +1154,7 @@ public final GhostStatementContext ghostStatement() throws RecognitionException _localctx = new FoldStatementContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(493); + setState(495); ((FoldStatementContext)_localctx).fold_stmt = _input.LT(1); _la = _input.LA(1); if ( !(_la==FOLD || _la==UNFOLD) ) { @@ -1164,7 +1165,7 @@ public final GhostStatementContext ghostStatement() throws RecognitionException _errHandler.reportMatch(this); consume(); } - setState(494); + setState(496); predicateAccess(); } break; @@ -1175,7 +1176,7 @@ public final GhostStatementContext ghostStatement() throws RecognitionException _localctx = new ProofStatementContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(495); + setState(497); ((ProofStatementContext)_localctx).kind = _input.LT(1); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 480L) != 0)) ) { @@ -1186,7 +1187,7 @@ public final GhostStatementContext ghostStatement() throws RecognitionException _errHandler.reportMatch(this); consume(); } - setState(496); + setState(498); expression(0); } break; @@ -1194,7 +1195,7 @@ public final GhostStatementContext ghostStatement() throws RecognitionException _localctx = new MatchStmt_Context(_localctx); enterOuterAlt(_localctx, 4); { - setState(497); + setState(499); matchStmt(); } break; @@ -1235,7 +1236,7 @@ public final AuxiliaryStatementContext auxiliaryStatement() throws RecognitionEx try { enterOuterAlt(_localctx, 1); { - setState(500); + setState(502); statementWithSpec(); } } @@ -1276,10 +1277,10 @@ public final StatementWithSpecContext statementWithSpec() throws RecognitionExce try { enterOuterAlt(_localctx, 1); { - setState(502); + setState(504); ((StatementWithSpecContext)_localctx).specification = specification(); { - setState(503); + setState(505); outlineStatement(((StatementWithSpecContext)_localctx).specification.trusted, ((StatementWithSpecContext)_localctx).specification.pure); } } @@ -1325,21 +1326,21 @@ public final OutlineStatementContext outlineStatement(boolean trusted,boolean pu try { enterOuterAlt(_localctx, 1); { - setState(505); + setState(507); match(OUTLINE); - setState(506); - match(L_PAREN); setState(508); + match(L_PAREN); + setState(510); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,15,_ctx) ) { case 1: { - setState(507); + setState(509); statementList(); } break; } - setState(510); + setState(512); match(R_PAREN); } } @@ -1410,97 +1411,97 @@ public final GhostPrimaryExprContext ghostPrimaryExpr() throws RecognitionExcept GhostPrimaryExprContext _localctx = new GhostPrimaryExprContext(_ctx, getState()); enterRule(_localctx, 32, RULE_ghostPrimaryExpr); try { - setState(525); + setState(527); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,16,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(512); + setState(514); range(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(513); + setState(515); access(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(514); + setState(516); typeOf(); } break; case 4: enterOuterAlt(_localctx, 4); { - setState(515); + setState(517); typeExpr(); } break; case 5: enterOuterAlt(_localctx, 5); { - setState(516); + setState(518); isComparable(); } break; case 6: enterOuterAlt(_localctx, 6); { - setState(517); + setState(519); old(); } break; case 7: enterOuterAlt(_localctx, 7); { - setState(518); + setState(520); before(); } break; case 8: enterOuterAlt(_localctx, 8); { - setState(519); + setState(521); sConversion(); } break; case 9: enterOuterAlt(_localctx, 9); { - setState(520); + setState(522); optionNone(); } break; case 10: enterOuterAlt(_localctx, 10); { - setState(521); + setState(523); optionSome(); } break; case 11: enterOuterAlt(_localctx, 11); { - setState(522); + setState(524); optionGet(); } break; case 12: enterOuterAlt(_localctx, 12); { - setState(523); + setState(525); permission(); } break; case 13: enterOuterAlt(_localctx, 13); { - setState(524); + setState(526); matchExpr(); } break; @@ -1539,7 +1540,7 @@ public final PermissionContext permission() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(527); + setState(529); _la = _input.LA(1); if ( !(_la==WRITEPERM || _la==NOPERM) ) { _errHandler.recoverInline(this); @@ -1587,13 +1588,13 @@ public final TypeExprContext typeExpr() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(529); + setState(531); match(TYPE); - setState(530); + setState(532); match(L_BRACKET); - setState(531); + setState(533); type_(); - setState(532); + setState(534); match(R_BRACKET); } } @@ -1639,32 +1640,32 @@ public final BoundVariablesContext boundVariables() throws RecognitionException int _alt; enterOuterAlt(_localctx, 1); { - setState(534); + setState(536); boundVariableDecl(); - setState(539); + setState(541); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,17,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(535); + setState(537); match(COMMA); - setState(536); + setState(538); boundVariableDecl(); } } } - setState(541); + setState(543); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,17,_ctx); } - setState(543); + setState(545); _errHandler.sync(this); _la = _input.LA(1); if (_la==COMMA) { { - setState(542); + setState(544); match(COMMA); } } @@ -1713,25 +1714,25 @@ public final BoundVariableDeclContext boundVariableDecl() throws RecognitionExce try { enterOuterAlt(_localctx, 1); { - setState(545); + setState(547); match(IDENTIFIER); - setState(550); + setState(552); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(546); + setState(548); match(COMMA); - setState(547); + setState(549); match(IDENTIFIER); } } - setState(552); + setState(554); _errHandler.sync(this); _la = _input.LA(1); } - setState(553); + setState(555); elementType(); } } @@ -1772,17 +1773,17 @@ public final TriggersContext triggers() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(558); + setState(560); _errHandler.sync(this); _la = _input.LA(1); while (_la==L_CURLY) { { { - setState(555); + setState(557); trigger(); } } - setState(560); + setState(562); _errHandler.sync(this); _la = _input.LA(1); } @@ -1831,27 +1832,27 @@ public final TriggerContext trigger() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(561); + setState(563); match(L_CURLY); - setState(562); + setState(564); expression(0); - setState(567); + setState(569); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(563); + setState(565); match(COMMA); - setState(564); + setState(566); expression(0); } } - setState(569); + setState(571); _errHandler.sync(this); _la = _input.LA(1); } - setState(570); + setState(572); match(R_CURLY); } } @@ -1888,7 +1889,7 @@ public final PredicateAccessContext predicateAccess() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(572); + setState(574); primaryExpr(0); } } @@ -1928,13 +1929,13 @@ public final OptionSomeContext optionSome() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(574); + setState(576); match(SOME); - setState(575); + setState(577); match(L_PAREN); - setState(576); + setState(578); expression(0); - setState(577); + setState(579); match(R_PAREN); } } @@ -1974,13 +1975,13 @@ public final OptionNoneContext optionNone() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(579); + setState(581); match(NONE); - setState(580); + setState(582); match(L_BRACKET); - setState(581); + setState(583); type_(); - setState(582); + setState(584); match(R_BRACKET); } } @@ -2020,13 +2021,13 @@ public final OptionGetContext optionGet() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(584); + setState(586); match(GET); - setState(585); + setState(587); match(L_PAREN); - setState(586); + setState(588); expression(0); - setState(587); + setState(589); match(R_PAREN); } } @@ -2070,7 +2071,7 @@ public final SConversionContext sConversion() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(589); + setState(591); ((SConversionContext)_localctx).kind = _input.LT(1); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 7696581394432L) != 0)) ) { @@ -2081,11 +2082,11 @@ public final SConversionContext sConversion() throws RecognitionException { _errHandler.reportMatch(this); consume(); } - setState(590); + setState(592); match(L_PAREN); - setState(591); + setState(593); expression(0); - setState(592); + setState(594); match(R_PAREN); } } @@ -2131,27 +2132,27 @@ public final OldContext old() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(594); + setState(596); match(OLD); - setState(599); + setState(601); _errHandler.sync(this); _la = _input.LA(1); if (_la==L_BRACKET) { { - setState(595); + setState(597); match(L_BRACKET); - setState(596); + setState(598); oldLabelUse(); - setState(597); + setState(599); match(R_BRACKET); } } - setState(601); + setState(603); match(L_PAREN); - setState(602); + setState(604); expression(0); - setState(603); + setState(605); match(R_PAREN); } } @@ -2187,20 +2188,20 @@ public final OldLabelUseContext oldLabelUse() throws RecognitionException { OldLabelUseContext _localctx = new OldLabelUseContext(_ctx, getState()); enterRule(_localctx, 58, RULE_oldLabelUse); try { - setState(607); + setState(609); _errHandler.sync(this); switch (_input.LA(1)) { case IDENTIFIER: enterOuterAlt(_localctx, 1); { - setState(605); + setState(607); labelUse(); } break; case LHS: enterOuterAlt(_localctx, 2); { - setState(606); + setState(608); match(LHS); } break; @@ -2239,7 +2240,7 @@ public final LabelUseContext labelUse() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(609); + setState(611); match(IDENTIFIER); } } @@ -2279,13 +2280,13 @@ public final BeforeContext before() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(611); + setState(613); match(BEFORE); - setState(612); + setState(614); match(L_PAREN); - setState(613); + setState(615); expression(0); - setState(614); + setState(616); match(R_PAREN); } } @@ -2325,13 +2326,13 @@ public final IsComparableContext isComparable() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(616); + setState(618); match(IS_COMPARABLE); - setState(617); + setState(619); match(L_PAREN); - setState(618); + setState(620); expression(0); - setState(619); + setState(621); match(R_PAREN); } } @@ -2371,13 +2372,13 @@ public final TypeOfContext typeOf() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(621); + setState(623); match(TYPE_OF); - setState(622); + setState(624); match(L_PAREN); - setState(623); + setState(625); expression(0); - setState(624); + setState(626); match(R_PAREN); } } @@ -2422,25 +2423,25 @@ public final AccessContext access() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(626); + setState(628); match(ACCESS); - setState(627); + setState(629); match(L_PAREN); - setState(628); + setState(630); expression(0); - setState(631); + setState(633); _errHandler.sync(this); _la = _input.LA(1); if (_la==COMMA) { { - setState(629); + setState(631); match(COMMA); - setState(630); + setState(632); expression(0); } } - setState(633); + setState(635); match(R_PAREN); } } @@ -2488,7 +2489,7 @@ public final RangeContext range() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(635); + setState(637); ((RangeContext)_localctx).kind = _input.LT(1); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 7696581394432L) != 0)) ) { @@ -2499,15 +2500,15 @@ public final RangeContext range() throws RecognitionException { _errHandler.reportMatch(this); consume(); } - setState(636); - match(L_BRACKET); - setState(637); - expression(0); setState(638); - match(DOT_DOT); + match(L_BRACKET); setState(639); expression(0); setState(640); + match(DOT_DOT); + setState(641); + expression(0); + setState(642); match(R_BRACKET); } } @@ -2560,29 +2561,29 @@ public final MatchExprContext matchExpr() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(642); + setState(644); match(MATCH); - setState(643); + setState(645); expression(0); - setState(644); + setState(646); match(L_CURLY); - setState(650); + setState(652); _errHandler.sync(this); _la = _input.LA(1); while (_la==DEFAULT || _la==CASE) { { { - setState(645); + setState(647); matchExprClause(); - setState(646); + setState(648); eos(); } } - setState(652); + setState(654); _errHandler.sync(this); _la = _input.LA(1); } - setState(653); + setState(655); match(R_CURLY); } } @@ -2623,11 +2624,11 @@ public final MatchExprClauseContext matchExprClause() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(655); + setState(657); matchCase(); - setState(656); + setState(658); match(COLON); - setState(657); + setState(659); expression(0); } } @@ -2674,29 +2675,29 @@ public final SeqUpdExpContext seqUpdExp() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(659); + setState(661); match(L_BRACKET); { - setState(660); + setState(662); seqUpdClause(); - setState(665); + setState(667); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(661); + setState(663); match(COMMA); - setState(662); + setState(664); seqUpdClause(); } } - setState(667); + setState(669); _errHandler.sync(this); _la = _input.LA(1); } } - setState(668); + setState(670); match(R_BRACKET); } } @@ -2737,11 +2738,11 @@ public final SeqUpdClauseContext seqUpdClause() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(670); + setState(672); expression(0); - setState(671); + setState(673); match(ASSIGN); - setState(672); + setState(674); expression(0); } } @@ -2764,6 +2765,9 @@ public SqTypeContext sqType() { public GhostSliceTypeContext ghostSliceType() { return getRuleContext(GhostSliceTypeContext.class,0); } + public GhostPointerTypeContext ghostPointerType() { + return getRuleContext(GhostPointerTypeContext.class,0); + } public DomainTypeContext domainType() { return getRuleContext(DomainTypeContext.class,0); } @@ -2785,7 +2789,7 @@ public final GhostTypeLitContext ghostTypeLit() throws RecognitionException { GhostTypeLitContext _localctx = new GhostTypeLitContext(_ctx, getState()); enterRule(_localctx, 80, RULE_ghostTypeLit); try { - setState(678); + setState(681); _errHandler.sync(this); switch (_input.LA(1)) { case SEQ: @@ -2795,28 +2799,35 @@ public final GhostTypeLitContext ghostTypeLit() throws RecognitionException { case OPT: enterOuterAlt(_localctx, 1); { - setState(674); + setState(676); sqType(); } break; case GHOST: enterOuterAlt(_localctx, 2); { - setState(675); + setState(677); ghostSliceType(); } break; - case DOM: + case GPOINTER: enterOuterAlt(_localctx, 3); { - setState(676); + setState(678); + ghostPointerType(); + } + break; + case DOM: + enterOuterAlt(_localctx, 4); + { + setState(679); domainType(); } break; case ADT: - enterOuterAlt(_localctx, 4); + enterOuterAlt(_localctx, 5); { - setState(677); + setState(680); adtType(); } break; @@ -2870,27 +2881,27 @@ public final DomainTypeContext domainType() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(680); + setState(683); match(DOM); - setState(681); + setState(684); match(L_CURLY); - setState(687); + setState(690); _errHandler.sync(this); _la = _input.LA(1); while (_la==AXIOM || _la==FUNC) { { { - setState(682); + setState(685); domainClause(); - setState(683); + setState(686); eos(); } } - setState(689); + setState(692); _errHandler.sync(this); _la = _input.LA(1); } - setState(690); + setState(693); match(R_CURLY); } } @@ -2936,32 +2947,32 @@ public final DomainClauseContext domainClause() throws RecognitionException { DomainClauseContext _localctx = new DomainClauseContext(_ctx, getState()); enterRule(_localctx, 84, RULE_domainClause); try { - setState(701); + setState(704); _errHandler.sync(this); switch (_input.LA(1)) { case FUNC: enterOuterAlt(_localctx, 1); { - setState(692); + setState(695); match(FUNC); - setState(693); + setState(696); match(IDENTIFIER); - setState(694); + setState(697); signature(); } break; case AXIOM: enterOuterAlt(_localctx, 2); { - setState(695); + setState(698); match(AXIOM); - setState(696); + setState(699); match(L_CURLY); - setState(697); + setState(700); expression(0); - setState(698); + setState(701); eos(); - setState(699); + setState(702); match(R_CURLY); } break; @@ -3015,27 +3026,27 @@ public final AdtTypeContext adtType() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(703); + setState(706); match(ADT); - setState(704); + setState(707); match(L_CURLY); - setState(710); + setState(713); _errHandler.sync(this); _la = _input.LA(1); while (_la==IDENTIFIER) { { { - setState(705); + setState(708); adtClause(); - setState(706); + setState(709); eos(); } } - setState(712); + setState(715); _errHandler.sync(this); _la = _input.LA(1); } - setState(713); + setState(716); match(R_CURLY); } } @@ -3085,27 +3096,27 @@ public final AdtClauseContext adtClause() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(715); + setState(718); match(IDENTIFIER); - setState(716); + setState(719); match(L_CURLY); - setState(722); + setState(725); _errHandler.sync(this); _la = _input.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 83350678101032960L) != 0) || ((((_la - 79)) & ~0x3f) == 0 && ((1L << (_la - 79)) & 1441151881345761731L) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 166702455579475968L) != 0) || ((((_la - 80)) & ~0x3f) == 0 && ((1L << (_la - 80)) & 1441151881345761731L) != 0)) { { { - setState(717); + setState(720); adtFieldDecl(); - setState(718); + setState(721); eos(); } } - setState(724); + setState(727); _errHandler.sync(this); _la = _input.LA(1); } - setState(725); + setState(728); match(R_CURLY); } } @@ -3145,17 +3156,17 @@ public final AdtFieldDeclContext adtFieldDecl() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(728); + setState(731); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,32,_ctx) ) { case 1: { - setState(727); + setState(730); identifierList(); } break; } - setState(730); + setState(733); type_(); } } @@ -3195,14 +3206,60 @@ public final GhostSliceTypeContext ghostSliceType() throws RecognitionException try { enterOuterAlt(_localctx, 1); { - setState(732); + setState(735); match(GHOST); - setState(733); + setState(736); match(L_BRACKET); - setState(734); + setState(737); match(R_BRACKET); - setState(735); + setState(738); + elementType(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + @SuppressWarnings("CheckReturnValue") + public static class GhostPointerTypeContext extends ParserRuleContext { + public TerminalNode GPOINTER() { return getToken(GobraParser.GPOINTER, 0); } + public TerminalNode L_BRACKET() { return getToken(GobraParser.L_BRACKET, 0); } + public ElementTypeContext elementType() { + return getRuleContext(ElementTypeContext.class,0); + } + public TerminalNode R_BRACKET() { return getToken(GobraParser.R_BRACKET, 0); } + public GhostPointerTypeContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_ghostPointerType; } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof GobraParserVisitor ) return ((GobraParserVisitor)visitor).visitGhostPointerType(this); + else return visitor.visitChildren(this); + } + } + + public final GhostPointerTypeContext ghostPointerType() throws RecognitionException { + GhostPointerTypeContext _localctx = new GhostPointerTypeContext(_ctx, getState()); + enterRule(_localctx, 94, RULE_ghostPointerType); + try { + enterOuterAlt(_localctx, 1); + { + setState(740); + match(GPOINTER); + setState(741); + match(L_BRACKET); + setState(742); elementType(); + setState(743); + match(R_BRACKET); } } catch (RecognitionException re) { @@ -3245,10 +3302,10 @@ public T accept(ParseTreeVisitor visitor) { public final SqTypeContext sqType() throws RecognitionException { SqTypeContext _localctx = new SqTypeContext(_ctx, getState()); - enterRule(_localctx, 94, RULE_sqType); + enterRule(_localctx, 96, RULE_sqType); int _la; try { - setState(748); + setState(756); _errHandler.sync(this); switch (_input.LA(1)) { case SEQ: @@ -3258,7 +3315,7 @@ public final SqTypeContext sqType() throws RecognitionException { enterOuterAlt(_localctx, 1); { { - setState(737); + setState(745); ((SqTypeContext)_localctx).kind = _input.LT(1); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 25288767438848L) != 0)) ) { @@ -3269,11 +3326,11 @@ public final SqTypeContext sqType() throws RecognitionException { _errHandler.reportMatch(this); consume(); } - setState(738); + setState(746); match(L_BRACKET); - setState(739); + setState(747); type_(); - setState(740); + setState(748); match(R_BRACKET); } } @@ -3281,15 +3338,15 @@ public final SqTypeContext sqType() throws RecognitionException { case DICT: enterOuterAlt(_localctx, 2); { - setState(742); + setState(750); ((SqTypeContext)_localctx).kind = match(DICT); - setState(743); + setState(751); match(L_BRACKET); - setState(744); + setState(752); type_(); - setState(745); + setState(753); match(R_BRACKET); - setState(746); + setState(754); type_(); } break; @@ -3350,20 +3407,20 @@ public T accept(ParseTreeVisitor visitor) { public final SpecificationContext specification() throws RecognitionException { SpecificationContext _localctx = new SpecificationContext(_ctx, getState()); - enterRule(_localctx, 96, RULE_specification); + enterRule(_localctx, 98, RULE_specification); int _la; try { int _alt; enterOuterAlt(_localctx, 1); { - setState(762); + setState(770); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,35,_ctx); while ( _alt!=1 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1+1 ) { { { - setState(757); + setState(765); _errHandler.sync(this); switch (_input.LA(1)) { case PRE: @@ -3371,27 +3428,27 @@ public final SpecificationContext specification() throws RecognitionException { case POST: case DEC: { - setState(750); + setState(758); specStatement(); } break; case OPAQUE: { - setState(751); + setState(759); match(OPAQUE); ((SpecificationContext)_localctx).opaque = true; } break; case PURE: { - setState(753); + setState(761); match(PURE); ((SpecificationContext)_localctx).pure = true; } break; case TRUSTED: { - setState(755); + setState(763); match(TRUSTED); ((SpecificationContext)_localctx).trusted = true; } @@ -3399,21 +3456,21 @@ public final SpecificationContext specification() throws RecognitionException { default: throw new NoViableAltException(this); } - setState(759); + setState(767); eos(); } } } - setState(764); + setState(772); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,35,_ctx); } - setState(767); + setState(775); _errHandler.sync(this); _la = _input.LA(1); if (_la==PURE) { { - setState(765); + setState(773); match(PURE); ((SpecificationContext)_localctx).pure = true; } @@ -3458,44 +3515,44 @@ public T accept(ParseTreeVisitor visitor) { public final SpecStatementContext specStatement() throws RecognitionException { SpecStatementContext _localctx = new SpecStatementContext(_ctx, getState()); - enterRule(_localctx, 98, RULE_specStatement); + enterRule(_localctx, 100, RULE_specStatement); try { - setState(777); + setState(785); _errHandler.sync(this); switch (_input.LA(1)) { case PRE: enterOuterAlt(_localctx, 1); { - setState(769); + setState(777); ((SpecStatementContext)_localctx).kind = match(PRE); - setState(770); + setState(778); assertion(); } break; case PRESERVES: enterOuterAlt(_localctx, 2); { - setState(771); + setState(779); ((SpecStatementContext)_localctx).kind = match(PRESERVES); - setState(772); + setState(780); assertion(); } break; case POST: enterOuterAlt(_localctx, 3); { - setState(773); + setState(781); ((SpecStatementContext)_localctx).kind = match(POST); - setState(774); + setState(782); assertion(); } break; case DEC: enterOuterAlt(_localctx, 4); { - setState(775); + setState(783); ((SpecStatementContext)_localctx).kind = match(DEC); - setState(776); + setState(784); terminationMeasure(); } break; @@ -3536,28 +3593,28 @@ public T accept(ParseTreeVisitor visitor) { public final TerminationMeasureContext terminationMeasure() throws RecognitionException { TerminationMeasureContext _localctx = new TerminationMeasureContext(_ctx, getState()); - enterRule(_localctx, 100, RULE_terminationMeasure); + enterRule(_localctx, 102, RULE_terminationMeasure); try { enterOuterAlt(_localctx, 1); { - setState(780); + setState(788); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) { case 1: { - setState(779); + setState(787); expressionList(); } break; } - setState(784); + setState(792); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,39,_ctx) ) { case 1: { - setState(782); + setState(790); match(IF); - setState(783); + setState(791); expression(0); } break; @@ -3593,9 +3650,9 @@ public T accept(ParseTreeVisitor visitor) { public final AssertionContext assertion() throws RecognitionException { AssertionContext _localctx = new AssertionContext(_ctx, getState()); - enterRule(_localctx, 102, RULE_assertion); + enterRule(_localctx, 104, RULE_assertion); try { - setState(788); + setState(796); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) { case 1: @@ -3606,7 +3663,7 @@ public final AssertionContext assertion() throws RecognitionException { case 2: enterOuterAlt(_localctx, 2); { - setState(787); + setState(795); expression(0); } break; @@ -3650,32 +3707,32 @@ public T accept(ParseTreeVisitor visitor) { public final MatchStmtContext matchStmt() throws RecognitionException { MatchStmtContext _localctx = new MatchStmtContext(_ctx, getState()); - enterRule(_localctx, 104, RULE_matchStmt); + enterRule(_localctx, 106, RULE_matchStmt); int _la; try { enterOuterAlt(_localctx, 1); { - setState(790); + setState(798); match(MATCH); - setState(791); + setState(799); expression(0); - setState(792); + setState(800); match(L_CURLY); - setState(796); + setState(804); _errHandler.sync(this); _la = _input.LA(1); while (_la==DEFAULT || _la==CASE) { { { - setState(793); + setState(801); matchStmtClause(); } } - setState(798); + setState(806); _errHandler.sync(this); _la = _input.LA(1); } - setState(799); + setState(807); match(R_CURLY); } } @@ -3712,20 +3769,20 @@ public T accept(ParseTreeVisitor visitor) { public final MatchStmtClauseContext matchStmtClause() throws RecognitionException { MatchStmtClauseContext _localctx = new MatchStmtClauseContext(_ctx, getState()); - enterRule(_localctx, 106, RULE_matchStmtClause); + enterRule(_localctx, 108, RULE_matchStmtClause); try { enterOuterAlt(_localctx, 1); { - setState(801); + setState(809); matchCase(); - setState(802); + setState(810); match(COLON); - setState(804); + setState(812); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,42,_ctx) ) { case 1: { - setState(803); + setState(811); statementList(); } break; @@ -3763,24 +3820,24 @@ public T accept(ParseTreeVisitor visitor) { public final MatchCaseContext matchCase() throws RecognitionException { MatchCaseContext _localctx = new MatchCaseContext(_ctx, getState()); - enterRule(_localctx, 108, RULE_matchCase); + enterRule(_localctx, 110, RULE_matchCase); try { - setState(809); + setState(817); _errHandler.sync(this); switch (_input.LA(1)) { case CASE: enterOuterAlt(_localctx, 1); { - setState(806); + setState(814); match(CASE); - setState(807); + setState(815); matchPattern(); } break; case DEFAULT: enterOuterAlt(_localctx, 2); { - setState(808); + setState(816); match(DEFAULT); } break; @@ -3855,19 +3912,19 @@ public T accept(ParseTreeVisitor visitor) { public final MatchPatternContext matchPattern() throws RecognitionException { MatchPatternContext _localctx = new MatchPatternContext(_ctx, getState()); - enterRule(_localctx, 110, RULE_matchPattern); + enterRule(_localctx, 112, RULE_matchPattern); int _la; try { - setState(824); + setState(832); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,46,_ctx) ) { case 1: _localctx = new MatchPatternBindContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(811); + setState(819); match(QMARK); - setState(812); + setState(820); match(IDENTIFIER); } break; @@ -3875,23 +3932,23 @@ public final MatchPatternContext matchPattern() throws RecognitionException { _localctx = new MatchPatternCompositeContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(813); + setState(821); literalType(); - setState(814); + setState(822); match(L_CURLY); - setState(819); + setState(827); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 571956190846021146L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 9761394314247L) != 0) || ((((_la - 133)) & ~0x3f) == 0 && ((1L << (_la - 133)) & 1587199L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 1143913343522074138L) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 9761394314247L) != 0) || ((((_la - 134)) & ~0x3f) == 0 && ((1L << (_la - 134)) & 1587199L) != 0)) { { - setState(815); + setState(823); matchPatternList(); - setState(817); + setState(825); _errHandler.sync(this); _la = _input.LA(1); if (_la==COMMA) { { - setState(816); + setState(824); match(COMMA); } } @@ -3899,7 +3956,7 @@ public final MatchPatternContext matchPattern() throws RecognitionException { } } - setState(821); + setState(829); match(R_CURLY); } break; @@ -3907,7 +3964,7 @@ public final MatchPatternContext matchPattern() throws RecognitionException { _localctx = new MatchPatternValueContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(823); + setState(831); expression(0); } break; @@ -3949,28 +4006,28 @@ public T accept(ParseTreeVisitor visitor) { public final MatchPatternListContext matchPatternList() throws RecognitionException { MatchPatternListContext _localctx = new MatchPatternListContext(_ctx, getState()); - enterRule(_localctx, 112, RULE_matchPatternList); + enterRule(_localctx, 114, RULE_matchPatternList); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(826); + setState(834); matchPattern(); - setState(831); + setState(839); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,47,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(827); + setState(835); match(COMMA); - setState(828); + setState(836); matchPattern(); } } } - setState(833); + setState(841); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,47,_ctx); } @@ -4014,37 +4071,37 @@ public T accept(ParseTreeVisitor visitor) { public final BlockWithBodyParameterInfoContext blockWithBodyParameterInfo() throws RecognitionException { BlockWithBodyParameterInfoContext _localctx = new BlockWithBodyParameterInfoContext(_ctx, getState()); - enterRule(_localctx, 114, RULE_blockWithBodyParameterInfo); + enterRule(_localctx, 116, RULE_blockWithBodyParameterInfo); try { enterOuterAlt(_localctx, 1); { - setState(834); + setState(842); match(L_CURLY); - setState(839); + setState(847); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) { case 1: { - setState(835); + setState(843); match(SHARE); - setState(836); + setState(844); identifierList(); - setState(837); + setState(845); eos(); } break; } - setState(842); + setState(850); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,49,_ctx) ) { case 1: { - setState(841); + setState(849); statementList(); } break; } - setState(844); + setState(852); match(R_CURLY); } } @@ -4084,47 +4141,47 @@ public T accept(ParseTreeVisitor visitor) { public final ClosureSpecInstanceContext closureSpecInstance() throws RecognitionException { ClosureSpecInstanceContext _localctx = new ClosureSpecInstanceContext(_ctx, getState()); - enterRule(_localctx, 116, RULE_closureSpecInstance); + enterRule(_localctx, 118, RULE_closureSpecInstance); int _la; try { enterOuterAlt(_localctx, 1); { - setState(848); + setState(856); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,50,_ctx) ) { case 1: { - setState(846); + setState(854); qualifiedIdent(); } break; case 2: { - setState(847); + setState(855); match(IDENTIFIER); } break; } - setState(858); + setState(866); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,53,_ctx) ) { case 1: { - setState(850); + setState(858); match(L_CURLY); - setState(855); + setState(863); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 571956053407067674L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 9761394314247L) != 0) || ((((_la - 133)) & ~0x3f) == 0 && ((1L << (_la - 133)) & 1587199L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 1143913206083120666L) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 9761394314247L) != 0) || ((((_la - 134)) & ~0x3f) == 0 && ((1L << (_la - 134)) & 1587199L) != 0)) { { - setState(851); + setState(859); closureSpecParams(); - setState(853); + setState(861); _errHandler.sync(this); _la = _input.LA(1); if (_la==COMMA) { { - setState(852); + setState(860); match(COMMA); } } @@ -4132,7 +4189,7 @@ public final ClosureSpecInstanceContext closureSpecInstance() throws Recognition } } - setState(857); + setState(865); match(R_CURLY); } break; @@ -4175,28 +4232,28 @@ public T accept(ParseTreeVisitor visitor) { public final ClosureSpecParamsContext closureSpecParams() throws RecognitionException { ClosureSpecParamsContext _localctx = new ClosureSpecParamsContext(_ctx, getState()); - enterRule(_localctx, 118, RULE_closureSpecParams); + enterRule(_localctx, 120, RULE_closureSpecParams); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(860); + setState(868); closureSpecParam(); - setState(865); + setState(873); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,54,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(861); + setState(869); match(COMMA); - setState(862); + setState(870); closureSpecParam(); } } } - setState(867); + setState(875); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,54,_ctx); } @@ -4233,23 +4290,23 @@ public T accept(ParseTreeVisitor visitor) { public final ClosureSpecParamContext closureSpecParam() throws RecognitionException { ClosureSpecParamContext _localctx = new ClosureSpecParamContext(_ctx, getState()); - enterRule(_localctx, 120, RULE_closureSpecParam); + enterRule(_localctx, 122, RULE_closureSpecParam); try { enterOuterAlt(_localctx, 1); { - setState(870); + setState(878); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,55,_ctx) ) { case 1: { - setState(868); + setState(876); match(IDENTIFIER); - setState(869); + setState(877); match(COLON); } break; } - setState(872); + setState(880); expression(0); } } @@ -4290,19 +4347,19 @@ public T accept(ParseTreeVisitor visitor) { public final ClosureImplProofStmtContext closureImplProofStmt() throws RecognitionException { ClosureImplProofStmtContext _localctx = new ClosureImplProofStmtContext(_ctx, getState()); - enterRule(_localctx, 122, RULE_closureImplProofStmt); + enterRule(_localctx, 124, RULE_closureImplProofStmt); try { enterOuterAlt(_localctx, 1); { - setState(874); + setState(882); match(PROOF); - setState(875); + setState(883); expression(0); - setState(876); + setState(884); match(IMPL); - setState(877); + setState(885); closureSpecInstance(); - setState(878); + setState(886); block(); } } @@ -4359,57 +4416,57 @@ public T accept(ParseTreeVisitor visitor) { public final ImplementationProofContext implementationProof() throws RecognitionException { ImplementationProofContext _localctx = new ImplementationProofContext(_ctx, getState()); - enterRule(_localctx, 124, RULE_implementationProof); + enterRule(_localctx, 126, RULE_implementationProof); int _la; try { enterOuterAlt(_localctx, 1); { - setState(880); + setState(888); type_(); - setState(881); + setState(889); match(IMPL); - setState(882); + setState(890); type_(); - setState(901); + setState(909); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,58,_ctx) ) { case 1: { - setState(883); + setState(891); match(L_CURLY); - setState(889); + setState(897); _errHandler.sync(this); _la = _input.LA(1); while (_la==PRED) { { { - setState(884); + setState(892); implementationProofPredicateAlias(); - setState(885); + setState(893); eos(); } } - setState(891); + setState(899); _errHandler.sync(this); _la = _input.LA(1); } - setState(897); + setState(905); _errHandler.sync(this); _la = _input.LA(1); while (_la==PURE || _la==L_PAREN) { { { - setState(892); + setState(900); methodImplementationProof(); - setState(893); + setState(901); eos(); } } - setState(899); + setState(907); _errHandler.sync(this); _la = _input.LA(1); } - setState(900); + setState(908); match(R_CURLY); } break; @@ -4453,33 +4510,33 @@ public T accept(ParseTreeVisitor visitor) { public final MethodImplementationProofContext methodImplementationProof() throws RecognitionException { MethodImplementationProofContext _localctx = new MethodImplementationProofContext(_ctx, getState()); - enterRule(_localctx, 126, RULE_methodImplementationProof); + enterRule(_localctx, 128, RULE_methodImplementationProof); int _la; try { enterOuterAlt(_localctx, 1); { - setState(904); + setState(912); _errHandler.sync(this); _la = _input.LA(1); if (_la==PURE) { { - setState(903); + setState(911); match(PURE); } } - setState(906); + setState(914); nonLocalReceiver(); - setState(907); + setState(915); match(IDENTIFIER); - setState(908); + setState(916); signature(); - setState(910); + setState(918); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,60,_ctx) ) { case 1: { - setState(909); + setState(917); block(); } break; @@ -4519,36 +4576,36 @@ public T accept(ParseTreeVisitor visitor) { public final NonLocalReceiverContext nonLocalReceiver() throws RecognitionException { NonLocalReceiverContext _localctx = new NonLocalReceiverContext(_ctx, getState()); - enterRule(_localctx, 128, RULE_nonLocalReceiver); + enterRule(_localctx, 130, RULE_nonLocalReceiver); int _la; try { enterOuterAlt(_localctx, 1); { - setState(912); + setState(920); match(L_PAREN); - setState(914); + setState(922); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,61,_ctx) ) { case 1: { - setState(913); + setState(921); match(IDENTIFIER); } break; } - setState(917); + setState(925); _errHandler.sync(this); _la = _input.LA(1); if (_la==STAR) { { - setState(916); + setState(924); match(STAR); } } - setState(919); + setState(927); typeName(); - setState(920); + setState(928); match(R_PAREN); } } @@ -4586,26 +4643,26 @@ public T accept(ParseTreeVisitor visitor) { public final SelectionContext selection() throws RecognitionException { SelectionContext _localctx = new SelectionContext(_ctx, getState()); - enterRule(_localctx, 130, RULE_selection); + enterRule(_localctx, 132, RULE_selection); try { - setState(927); + setState(935); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,63,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(922); + setState(930); primaryExpr(0); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(923); + setState(931); type_(); - setState(924); + setState(932); match(DOT); - setState(925); + setState(933); match(IDENTIFIER); } break; @@ -4646,28 +4703,28 @@ public T accept(ParseTreeVisitor visitor) { public final ImplementationProofPredicateAliasContext implementationProofPredicateAlias() throws RecognitionException { ImplementationProofPredicateAliasContext _localctx = new ImplementationProofPredicateAliasContext(_ctx, getState()); - enterRule(_localctx, 132, RULE_implementationProofPredicateAlias); + enterRule(_localctx, 134, RULE_implementationProofPredicateAlias); try { enterOuterAlt(_localctx, 1); { - setState(929); + setState(937); match(PRED); - setState(930); + setState(938); match(IDENTIFIER); - setState(931); + setState(939); match(DECLARE_ASSIGN); - setState(934); + setState(942); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,64,_ctx) ) { case 1: { - setState(932); + setState(940); selection(); } break; case 2: { - setState(933); + setState(941); operandName(); } break; @@ -4710,30 +4767,30 @@ public T accept(ParseTreeVisitor visitor) { public final MakeContext make() throws RecognitionException { MakeContext _localctx = new MakeContext(_ctx, getState()); - enterRule(_localctx, 134, RULE_make); + enterRule(_localctx, 136, RULE_make); int _la; try { enterOuterAlt(_localctx, 1); { - setState(936); + setState(944); match(MAKE); - setState(937); + setState(945); match(L_PAREN); - setState(938); + setState(946); type_(); - setState(941); + setState(949); _errHandler.sync(this); _la = _input.LA(1); if (_la==COMMA) { { - setState(939); + setState(947); match(COMMA); - setState(940); + setState(948); expressionList(); } } - setState(943); + setState(951); match(R_PAREN); } } @@ -4769,17 +4826,17 @@ public T accept(ParseTreeVisitor visitor) { public final New_Context new_() throws RecognitionException { New_Context _localctx = new New_Context(_ctx, getState()); - enterRule(_localctx, 136, RULE_new_); + enterRule(_localctx, 138, RULE_new_); try { enterOuterAlt(_localctx, 1); { - setState(945); + setState(953); match(NEW); - setState(946); + setState(954); match(L_PAREN); - setState(947); + setState(955); type_(); - setState(948); + setState(956); match(R_PAREN); } } @@ -4819,24 +4876,24 @@ public T accept(ParseTreeVisitor visitor) { public final SpecMemberContext specMember() throws RecognitionException { SpecMemberContext _localctx = new SpecMemberContext(_ctx, getState()); - enterRule(_localctx, 138, RULE_specMember); + enterRule(_localctx, 140, RULE_specMember); try { enterOuterAlt(_localctx, 1); { - setState(950); + setState(958); ((SpecMemberContext)_localctx).specification = specification(); - setState(953); + setState(961); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,66,_ctx) ) { case 1: { - setState(951); + setState(959); functionDecl(((SpecMemberContext)_localctx).specification.trusted, ((SpecMemberContext)_localctx).specification.pure, ((SpecMemberContext)_localctx).specification.opaque); } break; case 2: { - setState(952); + setState(960); methodDecl(((SpecMemberContext)_localctx).specification.trusted, ((SpecMemberContext)_localctx).specification.pure, ((SpecMemberContext)_localctx).specification.opaque); } break; @@ -4884,23 +4941,23 @@ public T accept(ParseTreeVisitor visitor) { public final FunctionDeclContext functionDecl(boolean trusted,boolean pure,boolean opaque) throws RecognitionException { FunctionDeclContext _localctx = new FunctionDeclContext(_ctx, getState(), trusted, pure, opaque); - enterRule(_localctx, 140, RULE_functionDecl); + enterRule(_localctx, 142, RULE_functionDecl); try { enterOuterAlt(_localctx, 1); { - setState(955); + setState(963); match(FUNC); - setState(956); + setState(964); match(IDENTIFIER); { - setState(957); + setState(965); signature(); - setState(959); + setState(967); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,67,_ctx) ) { case 1: { - setState(958); + setState(966); blockWithBodyParameterInfo(); } break; @@ -4952,25 +5009,25 @@ public T accept(ParseTreeVisitor visitor) { public final MethodDeclContext methodDecl(boolean trusted,boolean pure,boolean opaque) throws RecognitionException { MethodDeclContext _localctx = new MethodDeclContext(_ctx, getState(), trusted, pure, opaque); - enterRule(_localctx, 142, RULE_methodDecl); + enterRule(_localctx, 144, RULE_methodDecl); try { enterOuterAlt(_localctx, 1); { - setState(961); + setState(969); match(FUNC); - setState(962); + setState(970); receiver(); - setState(963); + setState(971); match(IDENTIFIER); { - setState(964); + setState(972); signature(); - setState(966); + setState(974); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,68,_ctx) ) { case 1: { - setState(965); + setState(973); blockWithBodyParameterInfo(); } break; @@ -5011,13 +5068,13 @@ public T accept(ParseTreeVisitor visitor) { public final ExplicitGhostMemberContext explicitGhostMember() throws RecognitionException { ExplicitGhostMemberContext _localctx = new ExplicitGhostMemberContext(_ctx, getState()); - enterRule(_localctx, 144, RULE_explicitGhostMember); + enterRule(_localctx, 146, RULE_explicitGhostMember); try { enterOuterAlt(_localctx, 1); { - setState(968); + setState(976); match(GHOST); - setState(971); + setState(979); _errHandler.sync(this); switch (_input.LA(1)) { case PRE: @@ -5029,7 +5086,7 @@ public final ExplicitGhostMemberContext explicitGhostMember() throws Recognition case OPAQUE: case FUNC: { - setState(969); + setState(977); specMember(); } break; @@ -5037,7 +5094,7 @@ public final ExplicitGhostMemberContext explicitGhostMember() throws Recognition case TYPE: case VAR: { - setState(970); + setState(978); declaration(); } break; @@ -5080,22 +5137,22 @@ public T accept(ParseTreeVisitor visitor) { public final FpredicateDeclContext fpredicateDecl() throws RecognitionException { FpredicateDeclContext _localctx = new FpredicateDeclContext(_ctx, getState()); - enterRule(_localctx, 146, RULE_fpredicateDecl); + enterRule(_localctx, 148, RULE_fpredicateDecl); try { enterOuterAlt(_localctx, 1); { - setState(973); + setState(981); match(PRED); - setState(974); + setState(982); match(IDENTIFIER); - setState(975); + setState(983); parameters(); - setState(977); + setState(985); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,70,_ctx) ) { case 1: { - setState(976); + setState(984); predicateBody(); } break; @@ -5136,17 +5193,17 @@ public T accept(ParseTreeVisitor visitor) { public final PredicateBodyContext predicateBody() throws RecognitionException { PredicateBodyContext _localctx = new PredicateBodyContext(_ctx, getState()); - enterRule(_localctx, 148, RULE_predicateBody); + enterRule(_localctx, 150, RULE_predicateBody); try { enterOuterAlt(_localctx, 1); { - setState(979); + setState(987); match(L_CURLY); - setState(980); + setState(988); expression(0); - setState(981); + setState(989); eos(); - setState(982); + setState(990); match(R_CURLY); } } @@ -5187,24 +5244,24 @@ public T accept(ParseTreeVisitor visitor) { public final MpredicateDeclContext mpredicateDecl() throws RecognitionException { MpredicateDeclContext _localctx = new MpredicateDeclContext(_ctx, getState()); - enterRule(_localctx, 150, RULE_mpredicateDecl); + enterRule(_localctx, 152, RULE_mpredicateDecl); try { enterOuterAlt(_localctx, 1); { - setState(984); + setState(992); match(PRED); - setState(985); + setState(993); receiver(); - setState(986); + setState(994); match(IDENTIFIER); - setState(987); + setState(995); parameters(); - setState(989); + setState(997); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,71,_ctx) ) { case 1: { - setState(988); + setState(996); predicateBody(); } break; @@ -5247,13 +5304,13 @@ public T accept(ParseTreeVisitor visitor) { public final VarSpecContext varSpec() throws RecognitionException { VarSpecContext _localctx = new VarSpecContext(_ctx, getState()); - enterRule(_localctx, 152, RULE_varSpec); + enterRule(_localctx, 154, RULE_varSpec); try { enterOuterAlt(_localctx, 1); { - setState(991); - maybeAddressableIdentifierList(); setState(999); + maybeAddressableIdentifierList(); + setState(1007); _errHandler.sync(this); switch (_input.LA(1)) { case GHOST: @@ -5262,6 +5319,7 @@ public final VarSpecContext varSpec() throws RecognitionException { case MSET: case DICT: case OPT: + case GPOINTER: case DOM: case ADT: case PRED: @@ -5276,16 +5334,16 @@ public final VarSpecContext varSpec() throws RecognitionException { case STAR: case RECEIVE: { - setState(992); + setState(1000); type_(); - setState(995); + setState(1003); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,72,_ctx) ) { case 1: { - setState(993); + setState(1001); match(ASSIGN); - setState(994); + setState(1002); expressionList(); } break; @@ -5294,9 +5352,9 @@ public final VarSpecContext varSpec() throws RecognitionException { break; case ASSIGN: { - setState(997); + setState(1005); match(ASSIGN); - setState(998); + setState(1006); expressionList(); } break; @@ -5338,15 +5396,15 @@ public T accept(ParseTreeVisitor visitor) { public final ShortVarDeclContext shortVarDecl() throws RecognitionException { ShortVarDeclContext _localctx = new ShortVarDeclContext(_ctx, getState()); - enterRule(_localctx, 154, RULE_shortVarDecl); + enterRule(_localctx, 156, RULE_shortVarDecl); try { enterOuterAlt(_localctx, 1); { - setState(1001); + setState(1009); maybeAddressableIdentifierList(); - setState(1002); + setState(1010); match(DECLARE_ASSIGN); - setState(1003); + setState(1011); expressionList(); } } @@ -5385,36 +5443,36 @@ public T accept(ParseTreeVisitor visitor) { public final ReceiverContext receiver() throws RecognitionException { ReceiverContext _localctx = new ReceiverContext(_ctx, getState()); - enterRule(_localctx, 156, RULE_receiver); + enterRule(_localctx, 158, RULE_receiver); int _la; try { enterOuterAlt(_localctx, 1); { - setState(1005); + setState(1013); match(L_PAREN); - setState(1007); + setState(1015); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,74,_ctx) ) { case 1: { - setState(1006); + setState(1014); maybeAddressableIdentifier(); } break; } - setState(1009); + setState(1017); type_(); - setState(1011); + setState(1019); _errHandler.sync(this); _la = _input.LA(1); if (_la==COMMA) { { - setState(1010); + setState(1018); match(COMMA); } } - setState(1013); + setState(1021); match(R_PAREN); } } @@ -5450,22 +5508,22 @@ public T accept(ParseTreeVisitor visitor) { public final ParameterDeclContext parameterDecl() throws RecognitionException { ParameterDeclContext _localctx = new ParameterDeclContext(_ctx, getState()); - enterRule(_localctx, 158, RULE_parameterDecl); + enterRule(_localctx, 160, RULE_parameterDecl); try { - setState(1017); + setState(1025); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,76,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(1015); + setState(1023); actualParameterDecl(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(1016); + setState(1024); ghostParameterDecl(); } break; @@ -5503,21 +5561,21 @@ public T accept(ParseTreeVisitor visitor) { public final ActualParameterDeclContext actualParameterDecl() throws RecognitionException { ActualParameterDeclContext _localctx = new ActualParameterDeclContext(_ctx, getState()); - enterRule(_localctx, 160, RULE_actualParameterDecl); + enterRule(_localctx, 162, RULE_actualParameterDecl); try { enterOuterAlt(_localctx, 1); { - setState(1020); + setState(1028); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,77,_ctx) ) { case 1: { - setState(1019); + setState(1027); identifierList(); } break; } - setState(1022); + setState(1030); parameterType(); } } @@ -5554,23 +5612,23 @@ public T accept(ParseTreeVisitor visitor) { public final GhostParameterDeclContext ghostParameterDecl() throws RecognitionException { GhostParameterDeclContext _localctx = new GhostParameterDeclContext(_ctx, getState()); - enterRule(_localctx, 162, RULE_ghostParameterDecl); + enterRule(_localctx, 164, RULE_ghostParameterDecl); try { enterOuterAlt(_localctx, 1); { - setState(1024); + setState(1032); match(GHOST); - setState(1026); + setState(1034); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,78,_ctx) ) { case 1: { - setState(1025); + setState(1033); identifierList(); } break; } - setState(1028); + setState(1036); parameterType(); } } @@ -5604,22 +5662,22 @@ public T accept(ParseTreeVisitor visitor) { public final ParameterTypeContext parameterType() throws RecognitionException { ParameterTypeContext _localctx = new ParameterTypeContext(_ctx, getState()); - enterRule(_localctx, 164, RULE_parameterType); + enterRule(_localctx, 166, RULE_parameterType); int _la; try { enterOuterAlt(_localctx, 1); { - setState(1031); + setState(1039); _errHandler.sync(this); _la = _input.LA(1); if (_la==ELLIPSIS) { { - setState(1030); + setState(1038); match(ELLIPSIS); } } - setState(1033); + setState(1041); type_(); } } @@ -5934,14 +5992,14 @@ private ExpressionContext expression(int _p) throws RecognitionException { int _parentState = getState(); ExpressionContext _localctx = new ExpressionContext(_ctx, _parentState); ExpressionContext _prevctx = _localctx; - int _startState = 166; - enterRecursionRule(_localctx, 166, RULE_expression, _p); + int _startState = 168; + enterRecursionRule(_localctx, 168, RULE_expression, _p); int _la; try { int _alt; enterOuterAlt(_localctx, 1); { - setState(1056); + setState(1064); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,80,_ctx) ) { case 1: @@ -5950,10 +6008,10 @@ private ExpressionContext expression(int _p) throws RecognitionException { _ctx = _localctx; _prevctx = _localctx; - setState(1036); + setState(1044); ((UnaryExprContext)_localctx).unary_op = _input.LT(1); _la = _input.LA(1); - if ( !(((((_la - 133)) & ~0x3f) == 0 && ((1L << (_la - 133)) & 127L) != 0)) ) { + if ( !(((((_la - 134)) & ~0x3f) == 0 && ((1L << (_la - 134)) & 127L) != 0)) ) { ((UnaryExprContext)_localctx).unary_op = (Token)_errHandler.recoverInline(this); } else { @@ -5961,7 +6019,7 @@ private ExpressionContext expression(int _p) throws RecognitionException { _errHandler.reportMatch(this); consume(); } - setState(1037); + setState(1045); expression(15); } break; @@ -5970,7 +6028,7 @@ private ExpressionContext expression(int _p) throws RecognitionException { _localctx = new PrimaryExpr_Context(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(1038); + setState(1046); primaryExpr(0); } break; @@ -5979,13 +6037,13 @@ private ExpressionContext expression(int _p) throws RecognitionException { _localctx = new UnfoldingContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(1039); + setState(1047); match(UNFOLDING); - setState(1040); + setState(1048); predicateAccess(); - setState(1041); + setState(1049); match(IN); - setState(1042); + setState(1050); expression(3); } break; @@ -5994,13 +6052,13 @@ private ExpressionContext expression(int _p) throws RecognitionException { _localctx = new LetContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(1044); + setState(1052); match(LET); - setState(1045); + setState(1053); shortVarDecl(); - setState(1046); + setState(1054); match(IN); - setState(1047); + setState(1055); expression(2); } break; @@ -6009,7 +6067,7 @@ private ExpressionContext expression(int _p) throws RecognitionException { _localctx = new QuantificationContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(1049); + setState(1057); _la = _input.LA(1); if ( !(_la==FORALL || _la==EXISTS) ) { _errHandler.recoverInline(this); @@ -6019,21 +6077,21 @@ private ExpressionContext expression(int _p) throws RecognitionException { _errHandler.reportMatch(this); consume(); } - setState(1050); + setState(1058); boundVariables(); - setState(1051); + setState(1059); match(COLON); - setState(1052); + setState(1060); match(COLON); - setState(1053); + setState(1061); triggers(); - setState(1054); + setState(1062); expression(1); } break; } _ctx.stop = _input.LT(-1); - setState(1093); + setState(1101); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,82,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -6041,19 +6099,19 @@ private ExpressionContext expression(int _p) throws RecognitionException { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(1091); + setState(1099); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,81,_ctx) ) { case 1: { _localctx = new MulExprContext(new ExpressionContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expression); - setState(1058); + setState(1066); if (!(precpred(_ctx, 13))) throw new FailedPredicateException(this, "precpred(_ctx, 13)"); - setState(1059); + setState(1067); ((MulExprContext)_localctx).mul_op = _input.LT(1); _la = _input.LA(1); - if ( !(((((_la - 128)) & ~0x3f) == 0 && ((1L << (_la - 128)) & 1567L) != 0)) ) { + if ( !(((((_la - 129)) & ~0x3f) == 0 && ((1L << (_la - 129)) & 1567L) != 0)) ) { ((MulExprContext)_localctx).mul_op = (Token)_errHandler.recoverInline(this); } else { @@ -6061,7 +6119,7 @@ private ExpressionContext expression(int _p) throws RecognitionException { _errHandler.reportMatch(this); consume(); } - setState(1060); + setState(1068); expression(14); } break; @@ -6069,12 +6127,12 @@ private ExpressionContext expression(int _p) throws RecognitionException { { _localctx = new AddExprContext(new ExpressionContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expression); - setState(1061); + setState(1069); if (!(precpred(_ctx, 12))) throw new FailedPredicateException(this, "precpred(_ctx, 12)"); - setState(1062); + setState(1070); ((AddExprContext)_localctx).add_op = _input.LT(1); _la = _input.LA(1); - if ( !(_la==WAND || ((((_la - 115)) & ~0x3f) == 0 && ((1L << (_la - 115)) & 3674113L) != 0)) ) { + if ( !(_la==WAND || ((((_la - 116)) & ~0x3f) == 0 && ((1L << (_la - 116)) & 3674113L) != 0)) ) { ((AddExprContext)_localctx).add_op = (Token)_errHandler.recoverInline(this); } else { @@ -6082,7 +6140,7 @@ private ExpressionContext expression(int _p) throws RecognitionException { _errHandler.reportMatch(this); consume(); } - setState(1063); + setState(1071); expression(13); } break; @@ -6090,9 +6148,9 @@ private ExpressionContext expression(int _p) throws RecognitionException { { _localctx = new P42ExprContext(new ExpressionContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expression); - setState(1064); + setState(1072); if (!(precpred(_ctx, 11))) throw new FailedPredicateException(this, "precpred(_ctx, 11)"); - setState(1065); + setState(1073); ((P42ExprContext)_localctx).p42_op = _input.LT(1); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 15032385536L) != 0)) ) { @@ -6103,7 +6161,7 @@ private ExpressionContext expression(int _p) throws RecognitionException { _errHandler.reportMatch(this); consume(); } - setState(1066); + setState(1074); expression(12); } break; @@ -6111,9 +6169,9 @@ private ExpressionContext expression(int _p) throws RecognitionException { { _localctx = new P41ExprContext(new ExpressionContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expression); - setState(1067); + setState(1075); if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)"); - setState(1068); + setState(1076); ((P41ExprContext)_localctx).p41_op = _input.LT(1); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 1879048192L) != 0)) ) { @@ -6124,7 +6182,7 @@ private ExpressionContext expression(int _p) throws RecognitionException { _errHandler.reportMatch(this); consume(); } - setState(1069); + setState(1077); expression(11); } break; @@ -6132,12 +6190,12 @@ private ExpressionContext expression(int _p) throws RecognitionException { { _localctx = new RelExprContext(new ExpressionContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expression); - setState(1070); + setState(1078); if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)"); - setState(1071); + setState(1079); ((RelExprContext)_localctx).rel_op = _input.LT(1); _la = _input.LA(1); - if ( !(((((_la - 72)) & ~0x3f) == 0 && ((1L << (_la - 72)) & 35465847065542659L) != 0)) ) { + if ( !(((((_la - 73)) & ~0x3f) == 0 && ((1L << (_la - 73)) & 35465847065542659L) != 0)) ) { ((RelExprContext)_localctx).rel_op = (Token)_errHandler.recoverInline(this); } else { @@ -6145,7 +6203,7 @@ private ExpressionContext expression(int _p) throws RecognitionException { _errHandler.reportMatch(this); consume(); } - setState(1072); + setState(1080); expression(10); } break; @@ -6153,11 +6211,11 @@ private ExpressionContext expression(int _p) throws RecognitionException { { _localctx = new AndExprContext(new ExpressionContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expression); - setState(1073); + setState(1081); if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)"); - setState(1074); + setState(1082); match(LOGICAL_AND); - setState(1075); + setState(1083); expression(8); } break; @@ -6165,11 +6223,11 @@ private ExpressionContext expression(int _p) throws RecognitionException { { _localctx = new OrExprContext(new ExpressionContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expression); - setState(1076); + setState(1084); if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)"); - setState(1077); + setState(1085); match(LOGICAL_OR); - setState(1078); + setState(1086); expression(7); } break; @@ -6177,11 +6235,11 @@ private ExpressionContext expression(int _p) throws RecognitionException { { _localctx = new ImplicationContext(new ExpressionContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expression); - setState(1079); + setState(1087); if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)"); - setState(1080); + setState(1088); match(IMPLIES); - setState(1081); + setState(1089); expression(5); } break; @@ -6189,15 +6247,15 @@ private ExpressionContext expression(int _p) throws RecognitionException { { _localctx = new TernaryExprContext(new ExpressionContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expression); - setState(1082); + setState(1090); if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)"); - setState(1083); + setState(1091); match(QMARK); - setState(1084); + setState(1092); expression(0); - setState(1085); + setState(1093); match(COLON); - setState(1086); + setState(1094); expression(4); } break; @@ -6205,18 +6263,18 @@ private ExpressionContext expression(int _p) throws RecognitionException { { _localctx = new ClosureImplSpecExprContext(new ExpressionContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expression); - setState(1088); + setState(1096); if (!(precpred(_ctx, 8))) throw new FailedPredicateException(this, "precpred(_ctx, 8)"); - setState(1089); + setState(1097); match(IMPL); - setState(1090); + setState(1098); closureSpecInstance(); } break; } } } - setState(1095); + setState(1103); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,82,_ctx); } @@ -6308,148 +6366,148 @@ public T accept(ParseTreeVisitor visitor) { public final StatementContext statement() throws RecognitionException { StatementContext _localctx = new StatementContext(_ctx, getState()); - enterRule(_localctx, 168, RULE_statement); + enterRule(_localctx, 170, RULE_statement); try { - setState(1116); + setState(1124); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,83,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(1096); + setState(1104); ghostStatement(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(1097); + setState(1105); auxiliaryStatement(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(1098); + setState(1106); packageStmt(); } break; case 4: enterOuterAlt(_localctx, 4); { - setState(1099); + setState(1107); applyStmt(); } break; case 5: enterOuterAlt(_localctx, 5); { - setState(1100); + setState(1108); declaration(); } break; case 6: enterOuterAlt(_localctx, 6); { - setState(1101); + setState(1109); labeledStmt(); } break; case 7: enterOuterAlt(_localctx, 7); { - setState(1102); + setState(1110); simpleStmt(); } break; case 8: enterOuterAlt(_localctx, 8); { - setState(1103); + setState(1111); goStmt(); } break; case 9: enterOuterAlt(_localctx, 9); { - setState(1104); + setState(1112); returnStmt(); } break; case 10: enterOuterAlt(_localctx, 10); { - setState(1105); + setState(1113); breakStmt(); } break; case 11: enterOuterAlt(_localctx, 11); { - setState(1106); + setState(1114); continueStmt(); } break; case 12: enterOuterAlt(_localctx, 12); { - setState(1107); + setState(1115); gotoStmt(); } break; case 13: enterOuterAlt(_localctx, 13); { - setState(1108); + setState(1116); fallthroughStmt(); } break; case 14: enterOuterAlt(_localctx, 14); { - setState(1109); + setState(1117); block(); } break; case 15: enterOuterAlt(_localctx, 15); { - setState(1110); + setState(1118); ifStmt(); } break; case 16: enterOuterAlt(_localctx, 16); { - setState(1111); + setState(1119); switchStmt(); } break; case 17: enterOuterAlt(_localctx, 17); { - setState(1112); + setState(1120); selectStmt(); } break; case 18: enterOuterAlt(_localctx, 18); { - setState(1113); + setState(1121); specForStmt(); } break; case 19: enterOuterAlt(_localctx, 19); { - setState(1114); + setState(1122); deferStmt(); } break; case 20: enterOuterAlt(_localctx, 20); { - setState(1115); + setState(1123); closureImplProofStmt(); } break; @@ -6485,13 +6543,13 @@ public T accept(ParseTreeVisitor visitor) { public final ApplyStmtContext applyStmt() throws RecognitionException { ApplyStmtContext _localctx = new ApplyStmtContext(_ctx, getState()); - enterRule(_localctx, 170, RULE_applyStmt); + enterRule(_localctx, 172, RULE_applyStmt); try { enterOuterAlt(_localctx, 1); { - setState(1118); + setState(1126); match(APPLY); - setState(1119); + setState(1127); expression(0); } } @@ -6528,20 +6586,20 @@ public T accept(ParseTreeVisitor visitor) { public final PackageStmtContext packageStmt() throws RecognitionException { PackageStmtContext _localctx = new PackageStmtContext(_ctx, getState()); - enterRule(_localctx, 172, RULE_packageStmt); + enterRule(_localctx, 174, RULE_packageStmt); try { enterOuterAlt(_localctx, 1); { - setState(1121); + setState(1129); match(PACKAGE); - setState(1122); + setState(1130); expression(0); - setState(1124); + setState(1132); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,84,_ctx) ) { case 1: { - setState(1123); + setState(1131); block(); } break; @@ -6580,13 +6638,13 @@ public T accept(ParseTreeVisitor visitor) { public final SpecForStmtContext specForStmt() throws RecognitionException { SpecForStmtContext _localctx = new SpecForStmtContext(_ctx, getState()); - enterRule(_localctx, 174, RULE_specForStmt); + enterRule(_localctx, 176, RULE_specForStmt); try { enterOuterAlt(_localctx, 1); { - setState(1126); + setState(1134); loopSpec(); - setState(1127); + setState(1135); forStmt(); } } @@ -6636,39 +6694,39 @@ public T accept(ParseTreeVisitor visitor) { public final LoopSpecContext loopSpec() throws RecognitionException { LoopSpecContext _localctx = new LoopSpecContext(_ctx, getState()); - enterRule(_localctx, 176, RULE_loopSpec); + enterRule(_localctx, 178, RULE_loopSpec); int _la; try { enterOuterAlt(_localctx, 1); { - setState(1135); + setState(1143); _errHandler.sync(this); _la = _input.LA(1); while (_la==INV) { { { - setState(1129); + setState(1137); match(INV); - setState(1130); + setState(1138); expression(0); - setState(1131); + setState(1139); eos(); } } - setState(1137); + setState(1145); _errHandler.sync(this); _la = _input.LA(1); } - setState(1142); + setState(1150); _errHandler.sync(this); _la = _input.LA(1); if (_la==DEC) { { - setState(1138); + setState(1146); match(DEC); - setState(1139); + setState(1147); terminationMeasure(); - setState(1140); + setState(1148); eos(); } } @@ -6711,27 +6769,27 @@ public T accept(ParseTreeVisitor visitor) { public final DeferStmtContext deferStmt() throws RecognitionException { DeferStmtContext _localctx = new DeferStmtContext(_ctx, getState()); - enterRule(_localctx, 178, RULE_deferStmt); + enterRule(_localctx, 180, RULE_deferStmt); int _la; try { - setState(1149); + setState(1157); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,87,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(1144); + setState(1152); match(DEFER); - setState(1145); + setState(1153); expression(0); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(1146); + setState(1154); match(DEFER); - setState(1147); + setState(1155); ((DeferStmtContext)_localctx).fold_stmt = _input.LT(1); _la = _input.LA(1); if ( !(_la==FOLD || _la==UNFOLD) ) { @@ -6742,7 +6800,7 @@ public final DeferStmtContext deferStmt() throws RecognitionException { _errHandler.reportMatch(this); consume(); } - setState(1148); + setState(1156); predicateAccess(); } break; @@ -6786,64 +6844,64 @@ public T accept(ParseTreeVisitor visitor) { public final BasicLitContext basicLit() throws RecognitionException { BasicLitContext _localctx = new BasicLitContext(_ctx, getState()); - enterRule(_localctx, 180, RULE_basicLit); + enterRule(_localctx, 182, RULE_basicLit); try { - setState(1159); + setState(1167); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,88,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(1151); + setState(1159); match(TRUE); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(1152); + setState(1160); match(FALSE); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(1153); + setState(1161); match(NIL_LIT); } break; case 4: enterOuterAlt(_localctx, 4); { - setState(1154); + setState(1162); integer(); } break; case 5: enterOuterAlt(_localctx, 5); { - setState(1155); + setState(1163); string_(); } break; case 6: enterOuterAlt(_localctx, 6); { - setState(1156); + setState(1164); match(FLOAT_LIT); } break; case 7: enterOuterAlt(_localctx, 7); { - setState(1157); + setState(1165); match(IMAGINARY_LIT); } break; case 8: enterOuterAlt(_localctx, 8); { - setState(1158); + setState(1166); match(RUNE_LIT); } break; @@ -7112,14 +7170,14 @@ private PrimaryExprContext primaryExpr(int _p) throws RecognitionException { int _parentState = getState(); PrimaryExprContext _localctx = new PrimaryExprContext(_ctx, _parentState); PrimaryExprContext _prevctx = _localctx; - int _startState = 182; - enterRecursionRule(_localctx, 182, RULE_primaryExpr, _p); + int _startState = 184; + enterRecursionRule(_localctx, 184, RULE_primaryExpr, _p); int _la; try { int _alt; enterOuterAlt(_localctx, 1); { - setState(1177); + setState(1185); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,89,_ctx) ) { case 1: @@ -7128,7 +7186,7 @@ private PrimaryExprContext primaryExpr(int _p) throws RecognitionException { _ctx = _localctx; _prevctx = _localctx; - setState(1162); + setState(1170); operand(); } break; @@ -7137,7 +7195,7 @@ private PrimaryExprContext primaryExpr(int _p) throws RecognitionException { _localctx = new ConversionPrimaryExprContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(1163); + setState(1171); conversion(); } break; @@ -7146,7 +7204,7 @@ private PrimaryExprContext primaryExpr(int _p) throws RecognitionException { _localctx = new MethodPrimaryExprContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(1164); + setState(1172); methodExpr(); } break; @@ -7155,7 +7213,7 @@ private PrimaryExprContext primaryExpr(int _p) throws RecognitionException { _localctx = new GhostPrimaryExpr_Context(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(1165); + setState(1173); ghostPrimaryExpr(); } break; @@ -7164,7 +7222,7 @@ private PrimaryExprContext primaryExpr(int _p) throws RecognitionException { _localctx = new NewExprContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(1166); + setState(1174); new_(); } break; @@ -7173,7 +7231,7 @@ private PrimaryExprContext primaryExpr(int _p) throws RecognitionException { _localctx = new MakeExprContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(1167); + setState(1175); make(); } break; @@ -7182,11 +7240,11 @@ private PrimaryExprContext primaryExpr(int _p) throws RecognitionException { _localctx = new RevealInvokePrimaryExprContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(1168); + setState(1176); match(REVEAL); - setState(1169); + setState(1177); primaryExpr(0); - setState(1170); + setState(1178); arguments(); } break; @@ -7195,10 +7253,10 @@ private PrimaryExprContext primaryExpr(int _p) throws RecognitionException { _localctx = new BuiltInCallExprContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(1172); + setState(1180); ((BuiltInCallExprContext)_localctx).call_op = _input.LT(1); _la = _input.LA(1); - if ( !(((((_la - 45)) & ~0x3f) == 0 && ((1L << (_la - 45)) & 1125899906842697L) != 0)) ) { + if ( !(((((_la - 46)) & ~0x3f) == 0 && ((1L << (_la - 46)) & 1125899906842697L) != 0)) ) { ((BuiltInCallExprContext)_localctx).call_op = (Token)_errHandler.recoverInline(this); } else { @@ -7206,17 +7264,17 @@ private PrimaryExprContext primaryExpr(int _p) throws RecognitionException { _errHandler.reportMatch(this); consume(); } - setState(1173); + setState(1181); match(L_PAREN); - setState(1174); + setState(1182); expression(0); - setState(1175); + setState(1183); match(R_PAREN); } break; } _ctx.stop = _input.LT(-1); - setState(1201); + setState(1209); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,91,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -7224,18 +7282,18 @@ private PrimaryExprContext primaryExpr(int _p) throws RecognitionException { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(1199); + setState(1207); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,90,_ctx) ) { case 1: { _localctx = new SelectorPrimaryExprContext(new PrimaryExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_primaryExpr); - setState(1179); + setState(1187); if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)"); - setState(1180); + setState(1188); match(DOT); - setState(1181); + setState(1189); match(IDENTIFIER); } break; @@ -7243,9 +7301,9 @@ private PrimaryExprContext primaryExpr(int _p) throws RecognitionException { { _localctx = new IndexPrimaryExprContext(new PrimaryExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_primaryExpr); - setState(1182); + setState(1190); if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)"); - setState(1183); + setState(1191); index(); } break; @@ -7253,9 +7311,9 @@ private PrimaryExprContext primaryExpr(int _p) throws RecognitionException { { _localctx = new SlicePrimaryExprContext(new PrimaryExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_primaryExpr); - setState(1184); + setState(1192); if (!(precpred(_ctx, 8))) throw new FailedPredicateException(this, "precpred(_ctx, 8)"); - setState(1185); + setState(1193); slice_(); } break; @@ -7263,9 +7321,9 @@ private PrimaryExprContext primaryExpr(int _p) throws RecognitionException { { _localctx = new SeqUpdPrimaryExprContext(new PrimaryExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_primaryExpr); - setState(1186); + setState(1194); if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)"); - setState(1187); + setState(1195); seqUpdExp(); } break; @@ -7273,9 +7331,9 @@ private PrimaryExprContext primaryExpr(int _p) throws RecognitionException { { _localctx = new TypeAssertionPrimaryExprContext(new PrimaryExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_primaryExpr); - setState(1188); + setState(1196); if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)"); - setState(1189); + setState(1197); typeAssertion(); } break; @@ -7283,9 +7341,9 @@ private PrimaryExprContext primaryExpr(int _p) throws RecognitionException { { _localctx = new InvokePrimaryExprContext(new PrimaryExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_primaryExpr); - setState(1190); + setState(1198); if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)"); - setState(1191); + setState(1199); arguments(); } break; @@ -7293,13 +7351,13 @@ private PrimaryExprContext primaryExpr(int _p) throws RecognitionException { { _localctx = new InvokePrimaryExprWithSpecContext(new PrimaryExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_primaryExpr); - setState(1192); + setState(1200); if (!(precpred(_ctx, 3))) throw new FailedPredicateException(this, "precpred(_ctx, 3)"); - setState(1193); + setState(1201); arguments(); - setState(1194); + setState(1202); match(AS); - setState(1195); + setState(1203); closureSpecInstance(); } break; @@ -7307,16 +7365,16 @@ private PrimaryExprContext primaryExpr(int _p) throws RecognitionException { { _localctx = new PredConstrPrimaryExprContext(new PrimaryExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_primaryExpr); - setState(1197); + setState(1205); if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)"); - setState(1198); + setState(1206); predConstructArgs(); } break; } } } - setState(1203); + setState(1211); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,91,_ctx); } @@ -7355,13 +7413,13 @@ public T accept(ParseTreeVisitor visitor) { public final FunctionLitContext functionLit() throws RecognitionException { FunctionLitContext _localctx = new FunctionLitContext(_ctx, getState()); - enterRule(_localctx, 184, RULE_functionLit); + enterRule(_localctx, 186, RULE_functionLit); try { enterOuterAlt(_localctx, 1); { - setState(1204); + setState(1212); ((FunctionLitContext)_localctx).specification = specification(); - setState(1205); + setState(1213); closureDecl(((FunctionLitContext)_localctx).specification.trusted, ((FunctionLitContext)_localctx).specification.pure); } } @@ -7404,32 +7462,32 @@ public T accept(ParseTreeVisitor visitor) { public final ClosureDeclContext closureDecl(boolean trusted,boolean pure) throws RecognitionException { ClosureDeclContext _localctx = new ClosureDeclContext(_ctx, getState(), trusted, pure); - enterRule(_localctx, 186, RULE_closureDecl); + enterRule(_localctx, 188, RULE_closureDecl); int _la; try { enterOuterAlt(_localctx, 1); { - setState(1207); + setState(1215); match(FUNC); - setState(1209); + setState(1217); _errHandler.sync(this); _la = _input.LA(1); if (_la==IDENTIFIER) { { - setState(1208); + setState(1216); match(IDENTIFIER); } } { - setState(1211); + setState(1219); signature(); - setState(1213); + setState(1221); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,93,_ctx) ) { case 1: { - setState(1212); + setState(1220); blockWithBodyParameterInfo(); } break; @@ -7469,34 +7527,34 @@ public T accept(ParseTreeVisitor visitor) { public final PredConstructArgsContext predConstructArgs() throws RecognitionException { PredConstructArgsContext _localctx = new PredConstructArgsContext(_ctx, getState()); - enterRule(_localctx, 188, RULE_predConstructArgs); + enterRule(_localctx, 190, RULE_predConstructArgs); int _la; try { enterOuterAlt(_localctx, 1); { - setState(1215); + setState(1223); match(L_PRED); - setState(1217); + setState(1225); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 571956053407067674L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 9761394314247L) != 0) || ((((_la - 133)) & ~0x3f) == 0 && ((1L << (_la - 133)) & 1587199L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 1143913206083120666L) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 9761394314247L) != 0) || ((((_la - 134)) & ~0x3f) == 0 && ((1L << (_la - 134)) & 1587199L) != 0)) { { - setState(1216); + setState(1224); expressionList(); } } - setState(1220); + setState(1228); _errHandler.sync(this); _la = _input.LA(1); if (_la==COMMA) { { - setState(1219); + setState(1227); match(COMMA); } } - setState(1222); + setState(1230); match(R_PRED); } } @@ -7553,52 +7611,52 @@ public T accept(ParseTreeVisitor visitor) { public final InterfaceTypeContext interfaceType() throws RecognitionException { InterfaceTypeContext _localctx = new InterfaceTypeContext(_ctx, getState()); - enterRule(_localctx, 190, RULE_interfaceType); + enterRule(_localctx, 192, RULE_interfaceType); int _la; try { enterOuterAlt(_localctx, 1); { - setState(1224); + setState(1232); match(INTERFACE); - setState(1225); + setState(1233); match(L_CURLY); - setState(1235); + setState(1243); _errHandler.sync(this); _la = _input.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 72057594172173824L) != 0) || ((((_la - 67)) & ~0x3f) == 0 && ((1L << (_la - 67)) & 68719476993L) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 144115188210101760L) != 0) || ((((_la - 68)) & ~0x3f) == 0 && ((1L << (_la - 68)) & 68719476993L) != 0)) { { { - setState(1229); + setState(1237); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,96,_ctx) ) { case 1: { - setState(1226); + setState(1234); methodSpec(); } break; case 2: { - setState(1227); + setState(1235); typeName(); } break; case 3: { - setState(1228); + setState(1236); predicateSpec(); } break; } - setState(1231); + setState(1239); eos(); } } - setState(1237); + setState(1245); _errHandler.sync(this); _la = _input.LA(1); } - setState(1238); + setState(1246); match(R_CURLY); } } @@ -7633,15 +7691,15 @@ public T accept(ParseTreeVisitor visitor) { public final PredicateSpecContext predicateSpec() throws RecognitionException { PredicateSpecContext _localctx = new PredicateSpecContext(_ctx, getState()); - enterRule(_localctx, 192, RULE_predicateSpec); + enterRule(_localctx, 194, RULE_predicateSpec); try { enterOuterAlt(_localctx, 1); { - setState(1240); + setState(1248); match(PRED); - setState(1241); + setState(1249); match(IDENTIFIER); - setState(1242); + setState(1250); parameters(); } } @@ -7682,53 +7740,53 @@ public T accept(ParseTreeVisitor visitor) { public final MethodSpecContext methodSpec() throws RecognitionException { MethodSpecContext _localctx = new MethodSpecContext(_ctx, getState()); - enterRule(_localctx, 194, RULE_methodSpec); + enterRule(_localctx, 196, RULE_methodSpec); int _la; try { - setState(1259); + setState(1267); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,100,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(1245); + setState(1253); _errHandler.sync(this); _la = _input.LA(1); if (_la==GHOST) { { - setState(1244); + setState(1252); match(GHOST); } } - setState(1247); + setState(1255); specification(); - setState(1248); + setState(1256); match(IDENTIFIER); - setState(1249); + setState(1257); parameters(); - setState(1250); + setState(1258); result(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(1253); + setState(1261); _errHandler.sync(this); _la = _input.LA(1); if (_la==GHOST) { { - setState(1252); + setState(1260); match(GHOST); } } - setState(1255); + setState(1263); specification(); - setState(1256); + setState(1264); match(IDENTIFIER); - setState(1257); + setState(1265); parameters(); } break; @@ -7774,15 +7832,15 @@ public T accept(ParseTreeVisitor visitor) { public final Type_Context type_() throws RecognitionException { Type_Context _localctx = new Type_Context(_ctx, getState()); - enterRule(_localctx, 196, RULE_type_); + enterRule(_localctx, 198, RULE_type_); try { - setState(1268); + setState(1276); _errHandler.sync(this); switch (_input.LA(1)) { case IDENTIFIER: enterOuterAlt(_localctx, 1); { - setState(1261); + setState(1269); typeName(); } break; @@ -7797,7 +7855,7 @@ public final Type_Context type_() throws RecognitionException { case RECEIVE: enterOuterAlt(_localctx, 2); { - setState(1262); + setState(1270); typeLit(); } break; @@ -7807,22 +7865,23 @@ public final Type_Context type_() throws RecognitionException { case MSET: case DICT: case OPT: + case GPOINTER: case DOM: case ADT: enterOuterAlt(_localctx, 3); { - setState(1263); + setState(1271); ghostTypeLit(); } break; case L_PAREN: enterOuterAlt(_localctx, 4); { - setState(1264); + setState(1272); match(L_PAREN); - setState(1265); + setState(1273); type_(); - setState(1266); + setState(1274); match(R_PAREN); } break; @@ -7883,71 +7942,71 @@ public T accept(ParseTreeVisitor visitor) { public final TypeLitContext typeLit() throws RecognitionException { TypeLitContext _localctx = new TypeLitContext(_ctx, getState()); - enterRule(_localctx, 198, RULE_typeLit); + enterRule(_localctx, 200, RULE_typeLit); try { - setState(1279); + setState(1287); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,102,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(1270); + setState(1278); arrayType(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(1271); + setState(1279); structType(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(1272); + setState(1280); pointerType(); } break; case 4: enterOuterAlt(_localctx, 4); { - setState(1273); + setState(1281); functionType(); } break; case 5: enterOuterAlt(_localctx, 5); { - setState(1274); + setState(1282); interfaceType(); } break; case 6: enterOuterAlt(_localctx, 6); { - setState(1275); + setState(1283); sliceType(); } break; case 7: enterOuterAlt(_localctx, 7); { - setState(1276); + setState(1284); mapType(); } break; case 8: enterOuterAlt(_localctx, 8); { - setState(1277); + setState(1285); channelType(); } break; case 9: enterOuterAlt(_localctx, 9); { - setState(1278); + setState(1286); predType(); } break; @@ -7983,13 +8042,13 @@ public T accept(ParseTreeVisitor visitor) { public final PredTypeContext predType() throws RecognitionException { PredTypeContext _localctx = new PredTypeContext(_ctx, getState()); - enterRule(_localctx, 200, RULE_predType); + enterRule(_localctx, 202, RULE_predType); try { enterOuterAlt(_localctx, 1); { - setState(1281); + setState(1289); match(PRED); - setState(1282); + setState(1290); predTypeParams(); } } @@ -8031,45 +8090,45 @@ public T accept(ParseTreeVisitor visitor) { public final PredTypeParamsContext predTypeParams() throws RecognitionException { PredTypeParamsContext _localctx = new PredTypeParamsContext(_ctx, getState()); - enterRule(_localctx, 202, RULE_predTypeParams); + enterRule(_localctx, 204, RULE_predTypeParams); int _la; try { int _alt; enterOuterAlt(_localctx, 1); { - setState(1284); + setState(1292); match(L_PAREN); - setState(1296); + setState(1304); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 83350678101032960L) != 0) || ((((_la - 79)) & ~0x3f) == 0 && ((1L << (_la - 79)) & 1441151881345761731L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 166702455579475968L) != 0) || ((((_la - 80)) & ~0x3f) == 0 && ((1L << (_la - 80)) & 1441151881345761731L) != 0)) { { - setState(1285); + setState(1293); type_(); - setState(1290); + setState(1298); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,103,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(1286); + setState(1294); match(COMMA); - setState(1287); + setState(1295); type_(); } } } - setState(1292); + setState(1300); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,103,_ctx); } - setState(1294); + setState(1302); _errHandler.sync(this); _la = _input.LA(1); if (_la==COMMA) { { - setState(1293); + setState(1301); match(COMMA); } } @@ -8077,7 +8136,7 @@ public final PredTypeParamsContext predTypeParams() throws RecognitionException } } - setState(1298); + setState(1306); match(R_PAREN); } } @@ -8128,57 +8187,57 @@ public T accept(ParseTreeVisitor visitor) { public final LiteralTypeContext literalType() throws RecognitionException { LiteralTypeContext _localctx = new LiteralTypeContext(_ctx, getState()); - enterRule(_localctx, 204, RULE_literalType); + enterRule(_localctx, 206, RULE_literalType); try { - setState(1307); + setState(1315); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,106,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(1300); + setState(1308); structType(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(1301); + setState(1309); arrayType(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(1302); + setState(1310); implicitArray(); } break; case 4: enterOuterAlt(_localctx, 4); { - setState(1303); + setState(1311); sliceType(); } break; case 5: enterOuterAlt(_localctx, 5); { - setState(1304); + setState(1312); mapType(); } break; case 6: enterOuterAlt(_localctx, 6); { - setState(1305); + setState(1313); ghostTypeLit(); } break; case 7: enterOuterAlt(_localctx, 7); { - setState(1306); + setState(1314); typeName(); } break; @@ -8216,17 +8275,17 @@ public T accept(ParseTreeVisitor visitor) { public final ImplicitArrayContext implicitArray() throws RecognitionException { ImplicitArrayContext _localctx = new ImplicitArrayContext(_ctx, getState()); - enterRule(_localctx, 206, RULE_implicitArray); + enterRule(_localctx, 208, RULE_implicitArray); try { enterOuterAlt(_localctx, 1); { - setState(1309); + setState(1317); match(L_BRACKET); - setState(1310); + setState(1318); match(ELLIPSIS); - setState(1311); + setState(1319); match(R_BRACKET); - setState(1312); + setState(1320); elementType(); } } @@ -8271,36 +8330,36 @@ public T accept(ParseTreeVisitor visitor) { public final Slice_Context slice_() throws RecognitionException { Slice_Context _localctx = new Slice_Context(_ctx, getState()); - enterRule(_localctx, 208, RULE_slice_); + enterRule(_localctx, 210, RULE_slice_); int _la; try { enterOuterAlt(_localctx, 1); { - setState(1314); + setState(1322); match(L_BRACKET); - setState(1330); + setState(1338); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,110,_ctx) ) { case 1: { - setState(1316); + setState(1324); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 571956053407067674L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 9761394314247L) != 0) || ((((_la - 133)) & ~0x3f) == 0 && ((1L << (_la - 133)) & 1587199L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 1143913206083120666L) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 9761394314247L) != 0) || ((((_la - 134)) & ~0x3f) == 0 && ((1L << (_la - 134)) & 1587199L) != 0)) { { - setState(1315); + setState(1323); low(); } } - setState(1318); + setState(1326); match(COLON); - setState(1320); + setState(1328); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 571956053407067674L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 9761394314247L) != 0) || ((((_la - 133)) & ~0x3f) == 0 && ((1L << (_la - 133)) & 1587199L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 1143913206083120666L) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 9761394314247L) != 0) || ((((_la - 134)) & ~0x3f) == 0 && ((1L << (_la - 134)) & 1587199L) != 0)) { { - setState(1319); + setState(1327); high(); } } @@ -8309,28 +8368,28 @@ public final Slice_Context slice_() throws RecognitionException { break; case 2: { - setState(1323); + setState(1331); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 571956053407067674L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 9761394314247L) != 0) || ((((_la - 133)) & ~0x3f) == 0 && ((1L << (_la - 133)) & 1587199L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 1143913206083120666L) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 9761394314247L) != 0) || ((((_la - 134)) & ~0x3f) == 0 && ((1L << (_la - 134)) & 1587199L) != 0)) { { - setState(1322); + setState(1330); low(); } } - setState(1325); + setState(1333); match(COLON); - setState(1326); + setState(1334); high(); - setState(1327); + setState(1335); match(COLON); - setState(1328); + setState(1336); cap(); } break; } - setState(1332); + setState(1340); match(R_BRACKET); } } @@ -8363,11 +8422,11 @@ public T accept(ParseTreeVisitor visitor) { public final LowContext low() throws RecognitionException { LowContext _localctx = new LowContext(_ctx, getState()); - enterRule(_localctx, 210, RULE_low); + enterRule(_localctx, 212, RULE_low); try { enterOuterAlt(_localctx, 1); { - setState(1334); + setState(1342); expression(0); } } @@ -8400,11 +8459,11 @@ public T accept(ParseTreeVisitor visitor) { public final HighContext high() throws RecognitionException { HighContext _localctx = new HighContext(_ctx, getState()); - enterRule(_localctx, 212, RULE_high); + enterRule(_localctx, 214, RULE_high); try { enterOuterAlt(_localctx, 1); { - setState(1336); + setState(1344); expression(0); } } @@ -8437,11 +8496,11 @@ public T accept(ParseTreeVisitor visitor) { public final CapContext cap() throws RecognitionException { CapContext _localctx = new CapContext(_ctx, getState()); - enterRule(_localctx, 214, RULE_cap); + enterRule(_localctx, 216, RULE_cap); try { enterOuterAlt(_localctx, 1); { - setState(1338); + setState(1346); expression(0); } } @@ -8484,20 +8543,20 @@ public T accept(ParseTreeVisitor visitor) { public final Assign_opContext assign_op() throws RecognitionException { Assign_opContext _localctx = new Assign_opContext(_ctx, getState()); - enterRule(_localctx, 216, RULE_assign_op); + enterRule(_localctx, 218, RULE_assign_op); int _la; try { enterOuterAlt(_localctx, 1); { - setState(1341); + setState(1349); _errHandler.sync(this); _la = _input.LA(1); - if (((((_la - 127)) & ~0x3f) == 0 && ((1L << (_la - 127)) & 4031L) != 0)) { + if (((((_la - 128)) & ~0x3f) == 0 && ((1L << (_la - 128)) & 4031L) != 0)) { { - setState(1340); + setState(1348); ((Assign_opContext)_localctx).ass_op = _input.LT(1); _la = _input.LA(1); - if ( !(((((_la - 127)) & ~0x3f) == 0 && ((1L << (_la - 127)) & 4031L) != 0)) ) { + if ( !(((((_la - 128)) & ~0x3f) == 0 && ((1L << (_la - 128)) & 4031L) != 0)) ) { ((Assign_opContext)_localctx).ass_op = (Token)_errHandler.recoverInline(this); } else { @@ -8508,7 +8567,7 @@ public final Assign_opContext assign_op() throws RecognitionException { } } - setState(1343); + setState(1351); match(ASSIGN); } } @@ -8552,48 +8611,48 @@ public T accept(ParseTreeVisitor visitor) { public final RangeClauseContext rangeClause() throws RecognitionException { RangeClauseContext _localctx = new RangeClauseContext(_ctx, getState()); - enterRule(_localctx, 218, RULE_rangeClause); + enterRule(_localctx, 220, RULE_rangeClause); int _la; try { enterOuterAlt(_localctx, 1); { - setState(1351); + setState(1359); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,112,_ctx) ) { case 1: { - setState(1345); + setState(1353); expressionList(); - setState(1346); + setState(1354); match(ASSIGN); } break; case 2: { - setState(1348); + setState(1356); maybeAddressableIdentifierList(); - setState(1349); + setState(1357); match(DECLARE_ASSIGN); } break; } - setState(1353); + setState(1361); match(RANGE); - setState(1354); + setState(1362); expression(0); - setState(1359); + setState(1367); _errHandler.sync(this); _la = _input.LA(1); if (_la==WITH) { { - setState(1355); + setState(1363); match(WITH); - setState(1357); + setState(1365); _errHandler.sync(this); _la = _input.LA(1); if (_la==IDENTIFIER) { { - setState(1356); + setState(1364); match(IDENTIFIER); } } @@ -8632,13 +8691,13 @@ public T accept(ParseTreeVisitor visitor) { public final PackageClauseContext packageClause() throws RecognitionException { PackageClauseContext _localctx = new PackageClauseContext(_ctx, getState()); - enterRule(_localctx, 220, RULE_packageClause); + enterRule(_localctx, 222, RULE_packageClause); try { enterOuterAlt(_localctx, 1); { - setState(1361); + setState(1369); match(PACKAGE); - setState(1362); + setState(1370); ((PackageClauseContext)_localctx).packageName = match(IDENTIFIER); } } @@ -8671,11 +8730,11 @@ public T accept(ParseTreeVisitor visitor) { public final ImportPathContext importPath() throws RecognitionException { ImportPathContext _localctx = new ImportPathContext(_ctx, getState()); - enterRule(_localctx, 222, RULE_importPath); + enterRule(_localctx, 224, RULE_importPath); try { enterOuterAlt(_localctx, 1); { - setState(1364); + setState(1372); string_(); } } @@ -8714,29 +8773,29 @@ public T accept(ParseTreeVisitor visitor) { public final DeclarationContext declaration() throws RecognitionException { DeclarationContext _localctx = new DeclarationContext(_ctx, getState()); - enterRule(_localctx, 224, RULE_declaration); + enterRule(_localctx, 226, RULE_declaration); try { - setState(1369); + setState(1377); _errHandler.sync(this); switch (_input.LA(1)) { case CONST: enterOuterAlt(_localctx, 1); { - setState(1366); + setState(1374); constDecl(); } break; case TYPE: enterOuterAlt(_localctx, 2); { - setState(1367); + setState(1375); typeDecl(); } break; case VAR: enterOuterAlt(_localctx, 3); { - setState(1368); + setState(1376); varDecl(); } break; @@ -8785,43 +8844,43 @@ public T accept(ParseTreeVisitor visitor) { public final ConstDeclContext constDecl() throws RecognitionException { ConstDeclContext _localctx = new ConstDeclContext(_ctx, getState()); - enterRule(_localctx, 226, RULE_constDecl); + enterRule(_localctx, 228, RULE_constDecl); int _la; try { enterOuterAlt(_localctx, 1); { - setState(1371); + setState(1379); match(CONST); - setState(1383); + setState(1391); _errHandler.sync(this); switch (_input.LA(1)) { case IDENTIFIER: { - setState(1372); + setState(1380); constSpec(); } break; case L_PAREN: { - setState(1373); + setState(1381); match(L_PAREN); - setState(1379); + setState(1387); _errHandler.sync(this); _la = _input.LA(1); while (_la==IDENTIFIER) { { { - setState(1374); + setState(1382); constSpec(); - setState(1375); + setState(1383); eos(); } } - setState(1381); + setState(1389); _errHandler.sync(this); _la = _input.LA(1); } - setState(1382); + setState(1390); match(R_PAREN); } break; @@ -8866,31 +8925,31 @@ public T accept(ParseTreeVisitor visitor) { public final ConstSpecContext constSpec() throws RecognitionException { ConstSpecContext _localctx = new ConstSpecContext(_ctx, getState()); - enterRule(_localctx, 228, RULE_constSpec); + enterRule(_localctx, 230, RULE_constSpec); int _la; try { enterOuterAlt(_localctx, 1); { - setState(1385); + setState(1393); identifierList(); - setState(1391); + setState(1399); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,119,_ctx) ) { case 1: { - setState(1387); + setState(1395); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 83350678101032960L) != 0) || ((((_la - 79)) & ~0x3f) == 0 && ((1L << (_la - 79)) & 1441151881345761731L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 166702455579475968L) != 0) || ((((_la - 80)) & ~0x3f) == 0 && ((1L << (_la - 80)) & 1441151881345761731L) != 0)) { { - setState(1386); + setState(1394); type_(); } } - setState(1389); + setState(1397); match(ASSIGN); - setState(1390); + setState(1398); expressionList(); } break; @@ -8931,28 +8990,28 @@ public T accept(ParseTreeVisitor visitor) { public final IdentifierListContext identifierList() throws RecognitionException { IdentifierListContext _localctx = new IdentifierListContext(_ctx, getState()); - enterRule(_localctx, 230, RULE_identifierList); + enterRule(_localctx, 232, RULE_identifierList); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(1393); + setState(1401); match(IDENTIFIER); - setState(1398); + setState(1406); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,120,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(1394); + setState(1402); match(COMMA); - setState(1395); + setState(1403); match(IDENTIFIER); } } } - setState(1400); + setState(1408); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,120,_ctx); } @@ -8994,28 +9053,28 @@ public T accept(ParseTreeVisitor visitor) { public final ExpressionListContext expressionList() throws RecognitionException { ExpressionListContext _localctx = new ExpressionListContext(_ctx, getState()); - enterRule(_localctx, 232, RULE_expressionList); + enterRule(_localctx, 234, RULE_expressionList); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(1401); + setState(1409); expression(0); - setState(1406); + setState(1414); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,121,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(1402); + setState(1410); match(COMMA); - setState(1403); + setState(1411); expression(0); } } } - setState(1408); + setState(1416); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,121,_ctx); } @@ -9062,43 +9121,43 @@ public T accept(ParseTreeVisitor visitor) { public final TypeDeclContext typeDecl() throws RecognitionException { TypeDeclContext _localctx = new TypeDeclContext(_ctx, getState()); - enterRule(_localctx, 234, RULE_typeDecl); + enterRule(_localctx, 236, RULE_typeDecl); int _la; try { enterOuterAlt(_localctx, 1); { - setState(1409); + setState(1417); match(TYPE); - setState(1421); + setState(1429); _errHandler.sync(this); switch (_input.LA(1)) { case IDENTIFIER: { - setState(1410); + setState(1418); typeSpec(); } break; case L_PAREN: { - setState(1411); + setState(1419); match(L_PAREN); - setState(1417); + setState(1425); _errHandler.sync(this); _la = _input.LA(1); while (_la==IDENTIFIER) { { { - setState(1412); + setState(1420); typeSpec(); - setState(1413); + setState(1421); eos(); } } - setState(1419); + setState(1427); _errHandler.sync(this); _la = _input.LA(1); } - setState(1420); + setState(1428); match(R_PAREN); } break; @@ -9138,24 +9197,24 @@ public T accept(ParseTreeVisitor visitor) { public final TypeSpecContext typeSpec() throws RecognitionException { TypeSpecContext _localctx = new TypeSpecContext(_ctx, getState()); - enterRule(_localctx, 236, RULE_typeSpec); + enterRule(_localctx, 238, RULE_typeSpec); int _la; try { enterOuterAlt(_localctx, 1); { - setState(1423); + setState(1431); match(IDENTIFIER); - setState(1425); + setState(1433); _errHandler.sync(this); _la = _input.LA(1); if (_la==ASSIGN) { { - setState(1424); + setState(1432); match(ASSIGN); } } - setState(1427); + setState(1435); type_(); } } @@ -9200,43 +9259,43 @@ public T accept(ParseTreeVisitor visitor) { public final VarDeclContext varDecl() throws RecognitionException { VarDeclContext _localctx = new VarDeclContext(_ctx, getState()); - enterRule(_localctx, 238, RULE_varDecl); + enterRule(_localctx, 240, RULE_varDecl); int _la; try { enterOuterAlt(_localctx, 1); { - setState(1429); + setState(1437); match(VAR); - setState(1441); + setState(1449); _errHandler.sync(this); switch (_input.LA(1)) { case IDENTIFIER: { - setState(1430); + setState(1438); varSpec(); } break; case L_PAREN: { - setState(1431); + setState(1439); match(L_PAREN); - setState(1437); + setState(1445); _errHandler.sync(this); _la = _input.LA(1); while (_la==IDENTIFIER) { { { - setState(1432); + setState(1440); varSpec(); - setState(1433); + setState(1441); eos(); } } - setState(1439); + setState(1447); _errHandler.sync(this); _la = _input.LA(1); } - setState(1440); + setState(1448); match(R_PAREN); } break; @@ -9276,23 +9335,23 @@ public T accept(ParseTreeVisitor visitor) { public final BlockContext block() throws RecognitionException { BlockContext _localctx = new BlockContext(_ctx, getState()); - enterRule(_localctx, 240, RULE_block); + enterRule(_localctx, 242, RULE_block); try { enterOuterAlt(_localctx, 1); { - setState(1443); + setState(1451); match(L_CURLY); - setState(1445); + setState(1453); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,127,_ctx) ) { case 1: { - setState(1444); + setState(1452); statementList(); } break; } - setState(1447); + setState(1455); match(R_CURLY); } } @@ -9342,13 +9401,13 @@ public T accept(ParseTreeVisitor visitor) { public final StatementListContext statementList() throws RecognitionException { StatementListContext _localctx = new StatementListContext(_ctx, getState()); - enterRule(_localctx, 242, RULE_statementList); + enterRule(_localctx, 244, RULE_statementList); int _la; try { int _alt; enterOuterAlt(_localctx, 1); { - setState(1461); + setState(1469); _errHandler.sync(this); _alt = 1; do { @@ -9356,17 +9415,17 @@ public final StatementListContext statementList() throws RecognitionException { case 1: { { - setState(1456); + setState(1464); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,130,_ctx) ) { case 1: { - setState(1450); + setState(1458); _errHandler.sync(this); _la = _input.LA(1); if (_la==SEMI) { { - setState(1449); + setState(1457); match(SEMI); } } @@ -9375,12 +9434,12 @@ public final StatementListContext statementList() throws RecognitionException { break; case 2: { - setState(1453); + setState(1461); _errHandler.sync(this); _la = _input.LA(1); if (_la==EOS) { { - setState(1452); + setState(1460); match(EOS); } } @@ -9389,14 +9448,14 @@ public final StatementListContext statementList() throws RecognitionException { break; case 3: { - setState(1455); + setState(1463); if (!(this.closingBracket())) throw new FailedPredicateException(this, "this.closingBracket()"); } break; } - setState(1458); + setState(1466); statement(); - setState(1459); + setState(1467); eos(); } } @@ -9404,7 +9463,7 @@ public final StatementListContext statementList() throws RecognitionException { default: throw new NoViableAltException(this); } - setState(1463); + setState(1471); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,131,_ctx); } while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ); @@ -9451,43 +9510,43 @@ public T accept(ParseTreeVisitor visitor) { public final SimpleStmtContext simpleStmt() throws RecognitionException { SimpleStmtContext _localctx = new SimpleStmtContext(_ctx, getState()); - enterRule(_localctx, 244, RULE_simpleStmt); + enterRule(_localctx, 246, RULE_simpleStmt); try { - setState(1470); + setState(1478); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,132,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(1465); + setState(1473); sendStmt(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(1466); + setState(1474); incDecStmt(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(1467); + setState(1475); assignment(); } break; case 4: enterOuterAlt(_localctx, 4); { - setState(1468); + setState(1476); expressionStmt(); } break; case 5: enterOuterAlt(_localctx, 5); { - setState(1469); + setState(1477); shortVarDecl(); } break; @@ -9522,11 +9581,11 @@ public T accept(ParseTreeVisitor visitor) { public final ExpressionStmtContext expressionStmt() throws RecognitionException { ExpressionStmtContext _localctx = new ExpressionStmtContext(_ctx, getState()); - enterRule(_localctx, 246, RULE_expressionStmt); + enterRule(_localctx, 248, RULE_expressionStmt); try { enterOuterAlt(_localctx, 1); { - setState(1472); + setState(1480); expression(0); } } @@ -9564,15 +9623,15 @@ public T accept(ParseTreeVisitor visitor) { public final SendStmtContext sendStmt() throws RecognitionException { SendStmtContext _localctx = new SendStmtContext(_ctx, getState()); - enterRule(_localctx, 248, RULE_sendStmt); + enterRule(_localctx, 250, RULE_sendStmt); try { enterOuterAlt(_localctx, 1); { - setState(1474); + setState(1482); ((SendStmtContext)_localctx).channel = expression(0); - setState(1475); + setState(1483); match(RECEIVE); - setState(1476); + setState(1484); expression(0); } } @@ -9607,14 +9666,14 @@ public T accept(ParseTreeVisitor visitor) { public final IncDecStmtContext incDecStmt() throws RecognitionException { IncDecStmtContext _localctx = new IncDecStmtContext(_ctx, getState()); - enterRule(_localctx, 250, RULE_incDecStmt); + enterRule(_localctx, 252, RULE_incDecStmt); int _la; try { enterOuterAlt(_localctx, 1); { - setState(1478); + setState(1486); expression(0); - setState(1479); + setState(1487); _la = _input.LA(1); if ( !(_la==PLUS_PLUS || _la==MINUS_MINUS) ) { _errHandler.recoverInline(this); @@ -9661,15 +9720,15 @@ public T accept(ParseTreeVisitor visitor) { public final AssignmentContext assignment() throws RecognitionException { AssignmentContext _localctx = new AssignmentContext(_ctx, getState()); - enterRule(_localctx, 252, RULE_assignment); + enterRule(_localctx, 254, RULE_assignment); try { enterOuterAlt(_localctx, 1); { - setState(1481); + setState(1489); expressionList(); - setState(1482); + setState(1490); assign_op(); - setState(1483); + setState(1491); expressionList(); } } @@ -9701,12 +9760,12 @@ public T accept(ParseTreeVisitor visitor) { public final EmptyStmtContext emptyStmt() throws RecognitionException { EmptyStmtContext _localctx = new EmptyStmtContext(_ctx, getState()); - enterRule(_localctx, 254, RULE_emptyStmt); + enterRule(_localctx, 256, RULE_emptyStmt); int _la; try { enterOuterAlt(_localctx, 1); { - setState(1485); + setState(1493); _la = _input.LA(1); if ( !(_la==SEMI || _la==EOS) ) { _errHandler.recoverInline(this); @@ -9749,20 +9808,20 @@ public T accept(ParseTreeVisitor visitor) { public final LabeledStmtContext labeledStmt() throws RecognitionException { LabeledStmtContext _localctx = new LabeledStmtContext(_ctx, getState()); - enterRule(_localctx, 256, RULE_labeledStmt); + enterRule(_localctx, 258, RULE_labeledStmt); try { enterOuterAlt(_localctx, 1); { - setState(1487); + setState(1495); match(IDENTIFIER); - setState(1488); + setState(1496); match(COLON); - setState(1490); + setState(1498); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,133,_ctx) ) { case 1: { - setState(1489); + setState(1497); statement(); } break; @@ -9799,18 +9858,18 @@ public T accept(ParseTreeVisitor visitor) { public final ReturnStmtContext returnStmt() throws RecognitionException { ReturnStmtContext _localctx = new ReturnStmtContext(_ctx, getState()); - enterRule(_localctx, 258, RULE_returnStmt); + enterRule(_localctx, 260, RULE_returnStmt); try { enterOuterAlt(_localctx, 1); { - setState(1492); + setState(1500); match(RETURN); - setState(1494); + setState(1502); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,134,_ctx) ) { case 1: { - setState(1493); + setState(1501); expressionList(); } break; @@ -9845,18 +9904,18 @@ public T accept(ParseTreeVisitor visitor) { public final BreakStmtContext breakStmt() throws RecognitionException { BreakStmtContext _localctx = new BreakStmtContext(_ctx, getState()); - enterRule(_localctx, 260, RULE_breakStmt); + enterRule(_localctx, 262, RULE_breakStmt); try { enterOuterAlt(_localctx, 1); { - setState(1496); + setState(1504); match(BREAK); - setState(1498); + setState(1506); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,135,_ctx) ) { case 1: { - setState(1497); + setState(1505); match(IDENTIFIER); } break; @@ -9891,18 +9950,18 @@ public T accept(ParseTreeVisitor visitor) { public final ContinueStmtContext continueStmt() throws RecognitionException { ContinueStmtContext _localctx = new ContinueStmtContext(_ctx, getState()); - enterRule(_localctx, 262, RULE_continueStmt); + enterRule(_localctx, 264, RULE_continueStmt); try { enterOuterAlt(_localctx, 1); { - setState(1500); + setState(1508); match(CONTINUE); - setState(1502); + setState(1510); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,136,_ctx) ) { case 1: { - setState(1501); + setState(1509); match(IDENTIFIER); } break; @@ -9937,13 +9996,13 @@ public T accept(ParseTreeVisitor visitor) { public final GotoStmtContext gotoStmt() throws RecognitionException { GotoStmtContext _localctx = new GotoStmtContext(_ctx, getState()); - enterRule(_localctx, 264, RULE_gotoStmt); + enterRule(_localctx, 266, RULE_gotoStmt); try { enterOuterAlt(_localctx, 1); { - setState(1504); + setState(1512); match(GOTO); - setState(1505); + setState(1513); match(IDENTIFIER); } } @@ -9974,11 +10033,11 @@ public T accept(ParseTreeVisitor visitor) { public final FallthroughStmtContext fallthroughStmt() throws RecognitionException { FallthroughStmtContext _localctx = new FallthroughStmtContext(_ctx, getState()); - enterRule(_localctx, 266, RULE_fallthroughStmt); + enterRule(_localctx, 268, RULE_fallthroughStmt); try { enterOuterAlt(_localctx, 1); { - setState(1507); + setState(1515); match(FALLTHROUGH); } } @@ -10028,61 +10087,61 @@ public T accept(ParseTreeVisitor visitor) { public final IfStmtContext ifStmt() throws RecognitionException { IfStmtContext _localctx = new IfStmtContext(_ctx, getState()); - enterRule(_localctx, 268, RULE_ifStmt); + enterRule(_localctx, 270, RULE_ifStmt); try { enterOuterAlt(_localctx, 1); { - setState(1509); + setState(1517); match(IF); - setState(1518); + setState(1526); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,137,_ctx) ) { case 1: { - setState(1510); + setState(1518); expression(0); } break; case 2: { - setState(1511); + setState(1519); eos(); - setState(1512); + setState(1520); expression(0); } break; case 3: { - setState(1514); + setState(1522); simpleStmt(); - setState(1515); + setState(1523); eos(); - setState(1516); + setState(1524); expression(0); } break; } - setState(1520); + setState(1528); block(); - setState(1526); + setState(1534); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,139,_ctx) ) { case 1: { - setState(1521); + setState(1529); match(ELSE); - setState(1524); + setState(1532); _errHandler.sync(this); switch (_input.LA(1)) { case IF: { - setState(1522); + setState(1530); ifStmt(); } break; case L_CURLY: { - setState(1523); + setState(1531); block(); } break; @@ -10126,22 +10185,22 @@ public T accept(ParseTreeVisitor visitor) { public final SwitchStmtContext switchStmt() throws RecognitionException { SwitchStmtContext _localctx = new SwitchStmtContext(_ctx, getState()); - enterRule(_localctx, 270, RULE_switchStmt); + enterRule(_localctx, 272, RULE_switchStmt); try { - setState(1530); + setState(1538); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,140,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(1528); + setState(1536); exprSwitchStmt(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(1529); + setState(1537); typeSwitchStmt(); } break; @@ -10191,24 +10250,24 @@ public T accept(ParseTreeVisitor visitor) { public final ExprSwitchStmtContext exprSwitchStmt() throws RecognitionException { ExprSwitchStmtContext _localctx = new ExprSwitchStmtContext(_ctx, getState()); - enterRule(_localctx, 272, RULE_exprSwitchStmt); + enterRule(_localctx, 274, RULE_exprSwitchStmt); int _la; try { enterOuterAlt(_localctx, 1); { - setState(1532); + setState(1540); match(SWITCH); - setState(1543); + setState(1551); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,144,_ctx) ) { case 1: { - setState(1534); + setState(1542); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 571956053407067674L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 9761394314247L) != 0) || ((((_la - 133)) & ~0x3f) == 0 && ((1L << (_la - 133)) & 1587199L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 1143913206083120666L) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 9761394314247L) != 0) || ((((_la - 134)) & ~0x3f) == 0 && ((1L << (_la - 134)) & 1587199L) != 0)) { { - setState(1533); + setState(1541); expression(0); } } @@ -10217,24 +10276,24 @@ public final ExprSwitchStmtContext exprSwitchStmt() throws RecognitionException break; case 2: { - setState(1537); + setState(1545); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,142,_ctx) ) { case 1: { - setState(1536); + setState(1544); simpleStmt(); } break; } - setState(1539); + setState(1547); eos(); - setState(1541); + setState(1549); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 571956053407067674L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 9761394314247L) != 0) || ((((_la - 133)) & ~0x3f) == 0 && ((1L << (_la - 133)) & 1587199L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 1143913206083120666L) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 9761394314247L) != 0) || ((((_la - 134)) & ~0x3f) == 0 && ((1L << (_la - 134)) & 1587199L) != 0)) { { - setState(1540); + setState(1548); expression(0); } } @@ -10242,23 +10301,23 @@ public final ExprSwitchStmtContext exprSwitchStmt() throws RecognitionException } break; } - setState(1545); + setState(1553); match(L_CURLY); - setState(1549); + setState(1557); _errHandler.sync(this); _la = _input.LA(1); while (_la==DEFAULT || _la==CASE) { { { - setState(1546); + setState(1554); exprCaseClause(); } } - setState(1551); + setState(1559); _errHandler.sync(this); _la = _input.LA(1); } - setState(1552); + setState(1560); match(R_CURLY); } } @@ -10295,20 +10354,20 @@ public T accept(ParseTreeVisitor visitor) { public final ExprCaseClauseContext exprCaseClause() throws RecognitionException { ExprCaseClauseContext _localctx = new ExprCaseClauseContext(_ctx, getState()); - enterRule(_localctx, 274, RULE_exprCaseClause); + enterRule(_localctx, 276, RULE_exprCaseClause); try { enterOuterAlt(_localctx, 1); { - setState(1554); + setState(1562); exprSwitchCase(); - setState(1555); + setState(1563); match(COLON); - setState(1557); + setState(1565); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,146,_ctx) ) { case 1: { - setState(1556); + setState(1564); statementList(); } break; @@ -10346,24 +10405,24 @@ public T accept(ParseTreeVisitor visitor) { public final ExprSwitchCaseContext exprSwitchCase() throws RecognitionException { ExprSwitchCaseContext _localctx = new ExprSwitchCaseContext(_ctx, getState()); - enterRule(_localctx, 276, RULE_exprSwitchCase); + enterRule(_localctx, 278, RULE_exprSwitchCase); try { - setState(1562); + setState(1570); _errHandler.sync(this); switch (_input.LA(1)) { case CASE: enterOuterAlt(_localctx, 1); { - setState(1559); + setState(1567); match(CASE); - setState(1560); + setState(1568); expressionList(); } break; case DEFAULT: enterOuterAlt(_localctx, 2); { - setState(1561); + setState(1569); match(DEFAULT); } break; @@ -10415,58 +10474,58 @@ public T accept(ParseTreeVisitor visitor) { public final TypeSwitchStmtContext typeSwitchStmt() throws RecognitionException { TypeSwitchStmtContext _localctx = new TypeSwitchStmtContext(_ctx, getState()); - enterRule(_localctx, 278, RULE_typeSwitchStmt); + enterRule(_localctx, 280, RULE_typeSwitchStmt); int _la; try { enterOuterAlt(_localctx, 1); { - setState(1564); + setState(1572); match(SWITCH); - setState(1573); + setState(1581); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,148,_ctx) ) { case 1: { - setState(1565); + setState(1573); typeSwitchGuard(); } break; case 2: { - setState(1566); + setState(1574); eos(); - setState(1567); + setState(1575); typeSwitchGuard(); } break; case 3: { - setState(1569); + setState(1577); simpleStmt(); - setState(1570); + setState(1578); eos(); - setState(1571); + setState(1579); typeSwitchGuard(); } break; } - setState(1575); + setState(1583); match(L_CURLY); - setState(1579); + setState(1587); _errHandler.sync(this); _la = _input.LA(1); while (_la==DEFAULT || _la==CASE) { { { - setState(1576); + setState(1584); typeCaseClause(); } } - setState(1581); + setState(1589); _errHandler.sync(this); _la = _input.LA(1); } - setState(1582); + setState(1590); match(R_CURLY); } } @@ -10505,31 +10564,31 @@ public T accept(ParseTreeVisitor visitor) { public final TypeSwitchGuardContext typeSwitchGuard() throws RecognitionException { TypeSwitchGuardContext _localctx = new TypeSwitchGuardContext(_ctx, getState()); - enterRule(_localctx, 280, RULE_typeSwitchGuard); + enterRule(_localctx, 282, RULE_typeSwitchGuard); try { enterOuterAlt(_localctx, 1); { - setState(1586); + setState(1594); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,150,_ctx) ) { case 1: { - setState(1584); + setState(1592); match(IDENTIFIER); - setState(1585); + setState(1593); match(DECLARE_ASSIGN); } break; } - setState(1588); + setState(1596); primaryExpr(0); - setState(1589); + setState(1597); match(DOT); - setState(1590); + setState(1598); match(L_PAREN); - setState(1591); + setState(1599); match(TYPE); - setState(1592); + setState(1600); match(R_PAREN); } } @@ -10566,20 +10625,20 @@ public T accept(ParseTreeVisitor visitor) { public final TypeCaseClauseContext typeCaseClause() throws RecognitionException { TypeCaseClauseContext _localctx = new TypeCaseClauseContext(_ctx, getState()); - enterRule(_localctx, 282, RULE_typeCaseClause); + enterRule(_localctx, 284, RULE_typeCaseClause); try { enterOuterAlt(_localctx, 1); { - setState(1594); + setState(1602); typeSwitchCase(); - setState(1595); + setState(1603); match(COLON); - setState(1597); + setState(1605); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,151,_ctx) ) { case 1: { - setState(1596); + setState(1604); statementList(); } break; @@ -10617,24 +10676,24 @@ public T accept(ParseTreeVisitor visitor) { public final TypeSwitchCaseContext typeSwitchCase() throws RecognitionException { TypeSwitchCaseContext _localctx = new TypeSwitchCaseContext(_ctx, getState()); - enterRule(_localctx, 284, RULE_typeSwitchCase); + enterRule(_localctx, 286, RULE_typeSwitchCase); try { - setState(1602); + setState(1610); _errHandler.sync(this); switch (_input.LA(1)) { case CASE: enterOuterAlt(_localctx, 1); { - setState(1599); + setState(1607); match(CASE); - setState(1600); + setState(1608); typeList(); } break; case DEFAULT: enterOuterAlt(_localctx, 2); { - setState(1601); + setState(1609); match(DEFAULT); } break; @@ -10682,12 +10741,12 @@ public T accept(ParseTreeVisitor visitor) { public final TypeListContext typeList() throws RecognitionException { TypeListContext _localctx = new TypeListContext(_ctx, getState()); - enterRule(_localctx, 286, RULE_typeList); + enterRule(_localctx, 288, RULE_typeList); int _la; try { enterOuterAlt(_localctx, 1); { - setState(1606); + setState(1614); _errHandler.sync(this); switch (_input.LA(1)) { case GHOST: @@ -10696,6 +10755,7 @@ public final TypeListContext typeList() throws RecognitionException { case MSET: case DICT: case OPT: + case GPOINTER: case DOM: case ADT: case PRED: @@ -10710,28 +10770,28 @@ public final TypeListContext typeList() throws RecognitionException { case STAR: case RECEIVE: { - setState(1604); + setState(1612); type_(); } break; case NIL_LIT: { - setState(1605); + setState(1613); match(NIL_LIT); } break; default: throw new NoViableAltException(this); } - setState(1615); + setState(1623); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(1608); + setState(1616); match(COMMA); - setState(1611); + setState(1619); _errHandler.sync(this); switch (_input.LA(1)) { case GHOST: @@ -10740,6 +10800,7 @@ public final TypeListContext typeList() throws RecognitionException { case MSET: case DICT: case OPT: + case GPOINTER: case DOM: case ADT: case PRED: @@ -10754,13 +10815,13 @@ public final TypeListContext typeList() throws RecognitionException { case STAR: case RECEIVE: { - setState(1609); + setState(1617); type_(); } break; case NIL_LIT: { - setState(1610); + setState(1618); match(NIL_LIT); } break; @@ -10769,7 +10830,7 @@ public final TypeListContext typeList() throws RecognitionException { } } } - setState(1617); + setState(1625); _errHandler.sync(this); _la = _input.LA(1); } @@ -10810,30 +10871,30 @@ public T accept(ParseTreeVisitor visitor) { public final SelectStmtContext selectStmt() throws RecognitionException { SelectStmtContext _localctx = new SelectStmtContext(_ctx, getState()); - enterRule(_localctx, 288, RULE_selectStmt); + enterRule(_localctx, 290, RULE_selectStmt); int _la; try { enterOuterAlt(_localctx, 1); { - setState(1618); + setState(1626); match(SELECT); - setState(1619); + setState(1627); match(L_CURLY); - setState(1623); + setState(1631); _errHandler.sync(this); _la = _input.LA(1); while (_la==DEFAULT || _la==CASE) { { { - setState(1620); + setState(1628); commClause(); } } - setState(1625); + setState(1633); _errHandler.sync(this); _la = _input.LA(1); } - setState(1626); + setState(1634); match(R_CURLY); } } @@ -10870,20 +10931,20 @@ public T accept(ParseTreeVisitor visitor) { public final CommClauseContext commClause() throws RecognitionException { CommClauseContext _localctx = new CommClauseContext(_ctx, getState()); - enterRule(_localctx, 290, RULE_commClause); + enterRule(_localctx, 292, RULE_commClause); try { enterOuterAlt(_localctx, 1); { - setState(1628); + setState(1636); commCase(); - setState(1629); + setState(1637); match(COLON); - setState(1631); + setState(1639); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,157,_ctx) ) { case 1: { - setState(1630); + setState(1638); statementList(); } break; @@ -10924,28 +10985,28 @@ public T accept(ParseTreeVisitor visitor) { public final CommCaseContext commCase() throws RecognitionException { CommCaseContext _localctx = new CommCaseContext(_ctx, getState()); - enterRule(_localctx, 292, RULE_commCase); + enterRule(_localctx, 294, RULE_commCase); try { - setState(1639); + setState(1647); _errHandler.sync(this); switch (_input.LA(1)) { case CASE: enterOuterAlt(_localctx, 1); { - setState(1633); + setState(1641); match(CASE); - setState(1636); + setState(1644); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,158,_ctx) ) { case 1: { - setState(1634); + setState(1642); sendStmt(); } break; case 2: { - setState(1635); + setState(1643); recvStmt(); } break; @@ -10955,7 +11016,7 @@ public final CommCaseContext commCase() throws RecognitionException { case DEFAULT: enterOuterAlt(_localctx, 2); { - setState(1638); + setState(1646); match(DEFAULT); } break; @@ -11001,31 +11062,31 @@ public T accept(ParseTreeVisitor visitor) { public final RecvStmtContext recvStmt() throws RecognitionException { RecvStmtContext _localctx = new RecvStmtContext(_ctx, getState()); - enterRule(_localctx, 294, RULE_recvStmt); + enterRule(_localctx, 296, RULE_recvStmt); try { enterOuterAlt(_localctx, 1); { - setState(1647); + setState(1655); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,160,_ctx) ) { case 1: { - setState(1641); + setState(1649); expressionList(); - setState(1642); + setState(1650); match(ASSIGN); } break; case 2: { - setState(1644); + setState(1652); identifierList(); - setState(1645); + setState(1653); match(DECLARE_ASSIGN); } break; } - setState(1649); + setState(1657); ((RecvStmtContext)_localctx).recvExpr = expression(0); } } @@ -11068,24 +11129,24 @@ public T accept(ParseTreeVisitor visitor) { public final ForStmtContext forStmt() throws RecognitionException { ForStmtContext _localctx = new ForStmtContext(_ctx, getState()); - enterRule(_localctx, 296, RULE_forStmt); + enterRule(_localctx, 298, RULE_forStmt); int _la; try { enterOuterAlt(_localctx, 1); { - setState(1651); - match(FOR); setState(1659); + match(FOR); + setState(1667); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,163,_ctx) ) { case 1: { - setState(1653); + setState(1661); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 571956053407067674L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 9761394314247L) != 0) || ((((_la - 133)) & ~0x3f) == 0 && ((1L << (_la - 133)) & 1587199L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 1143913206083120666L) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 9761394314247L) != 0) || ((((_la - 134)) & ~0x3f) == 0 && ((1L << (_la - 134)) & 1587199L) != 0)) { { - setState(1652); + setState(1660); expression(0); } } @@ -11094,18 +11155,18 @@ public final ForStmtContext forStmt() throws RecognitionException { break; case 2: { - setState(1655); + setState(1663); forClause(); } break; case 3: { - setState(1657); + setState(1665); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 571956053407067674L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 9761394314247L) != 0) || ((((_la - 133)) & ~0x3f) == 0 && ((1L << (_la - 133)) & 1587199L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 1143913206083120666L) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 9761394314247L) != 0) || ((((_la - 134)) & ~0x3f) == 0 && ((1L << (_la - 134)) & 1587199L) != 0)) { { - setState(1656); + setState(1664); rangeClause(); } } @@ -11113,7 +11174,7 @@ public final ForStmtContext forStmt() throws RecognitionException { } break; } - setState(1661); + setState(1669); block(); } } @@ -11160,41 +11221,41 @@ public T accept(ParseTreeVisitor visitor) { public final ForClauseContext forClause() throws RecognitionException { ForClauseContext _localctx = new ForClauseContext(_ctx, getState()); - enterRule(_localctx, 298, RULE_forClause); + enterRule(_localctx, 300, RULE_forClause); int _la; try { enterOuterAlt(_localctx, 1); { - setState(1664); + setState(1672); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,164,_ctx) ) { case 1: { - setState(1663); + setState(1671); ((ForClauseContext)_localctx).initStmt = simpleStmt(); } break; } - setState(1666); + setState(1674); eos(); - setState(1668); + setState(1676); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,165,_ctx) ) { case 1: { - setState(1667); + setState(1675); expression(0); } break; } - setState(1670); + setState(1678); eos(); - setState(1672); + setState(1680); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 571956053407067674L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 9761394314247L) != 0) || ((((_la - 133)) & ~0x3f) == 0 && ((1L << (_la - 133)) & 1587199L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 1143913206083120666L) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 9761394314247L) != 0) || ((((_la - 134)) & ~0x3f) == 0 && ((1L << (_la - 134)) & 1587199L) != 0)) { { - setState(1671); + setState(1679); ((ForClauseContext)_localctx).postStmt = simpleStmt(); } } @@ -11231,13 +11292,13 @@ public T accept(ParseTreeVisitor visitor) { public final GoStmtContext goStmt() throws RecognitionException { GoStmtContext _localctx = new GoStmtContext(_ctx, getState()); - enterRule(_localctx, 300, RULE_goStmt); + enterRule(_localctx, 302, RULE_goStmt); try { enterOuterAlt(_localctx, 1); { - setState(1674); + setState(1682); match(GO); - setState(1675); + setState(1683); expression(0); } } @@ -11271,22 +11332,22 @@ public T accept(ParseTreeVisitor visitor) { public final TypeNameContext typeName() throws RecognitionException { TypeNameContext _localctx = new TypeNameContext(_ctx, getState()); - enterRule(_localctx, 302, RULE_typeName); + enterRule(_localctx, 304, RULE_typeName); try { - setState(1679); + setState(1687); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,167,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(1677); + setState(1685); qualifiedIdent(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(1678); + setState(1686); match(IDENTIFIER); } break; @@ -11326,17 +11387,17 @@ public T accept(ParseTreeVisitor visitor) { public final ArrayTypeContext arrayType() throws RecognitionException { ArrayTypeContext _localctx = new ArrayTypeContext(_ctx, getState()); - enterRule(_localctx, 304, RULE_arrayType); + enterRule(_localctx, 306, RULE_arrayType); try { enterOuterAlt(_localctx, 1); { - setState(1681); + setState(1689); match(L_BRACKET); - setState(1682); + setState(1690); arrayLength(); - setState(1683); + setState(1691); match(R_BRACKET); - setState(1684); + setState(1692); elementType(); } } @@ -11369,11 +11430,11 @@ public T accept(ParseTreeVisitor visitor) { public final ArrayLengthContext arrayLength() throws RecognitionException { ArrayLengthContext _localctx = new ArrayLengthContext(_ctx, getState()); - enterRule(_localctx, 306, RULE_arrayLength); + enterRule(_localctx, 308, RULE_arrayLength); try { enterOuterAlt(_localctx, 1); { - setState(1686); + setState(1694); expression(0); } } @@ -11406,11 +11467,11 @@ public T accept(ParseTreeVisitor visitor) { public final ElementTypeContext elementType() throws RecognitionException { ElementTypeContext _localctx = new ElementTypeContext(_ctx, getState()); - enterRule(_localctx, 308, RULE_elementType); + enterRule(_localctx, 310, RULE_elementType); try { enterOuterAlt(_localctx, 1); { - setState(1688); + setState(1696); type_(); } } @@ -11444,13 +11505,13 @@ public T accept(ParseTreeVisitor visitor) { public final PointerTypeContext pointerType() throws RecognitionException { PointerTypeContext _localctx = new PointerTypeContext(_ctx, getState()); - enterRule(_localctx, 310, RULE_pointerType); + enterRule(_localctx, 312, RULE_pointerType); try { enterOuterAlt(_localctx, 1); { - setState(1690); + setState(1698); match(STAR); - setState(1691); + setState(1699); type_(); } } @@ -11485,15 +11546,15 @@ public T accept(ParseTreeVisitor visitor) { public final SliceTypeContext sliceType() throws RecognitionException { SliceTypeContext _localctx = new SliceTypeContext(_ctx, getState()); - enterRule(_localctx, 312, RULE_sliceType); + enterRule(_localctx, 314, RULE_sliceType); try { enterOuterAlt(_localctx, 1); { - setState(1693); + setState(1701); match(L_BRACKET); - setState(1694); + setState(1702); match(R_BRACKET); - setState(1695); + setState(1703); elementType(); } } @@ -11532,19 +11593,19 @@ public T accept(ParseTreeVisitor visitor) { public final MapTypeContext mapType() throws RecognitionException { MapTypeContext _localctx = new MapTypeContext(_ctx, getState()); - enterRule(_localctx, 314, RULE_mapType); + enterRule(_localctx, 316, RULE_mapType); try { enterOuterAlt(_localctx, 1); { - setState(1697); + setState(1705); match(MAP); - setState(1698); + setState(1706); match(L_BRACKET); - setState(1699); + setState(1707); type_(); - setState(1700); + setState(1708); match(R_BRACKET); - setState(1701); + setState(1709); elementType(); } } @@ -11579,37 +11640,37 @@ public T accept(ParseTreeVisitor visitor) { public final ChannelTypeContext channelType() throws RecognitionException { ChannelTypeContext _localctx = new ChannelTypeContext(_ctx, getState()); - enterRule(_localctx, 316, RULE_channelType); + enterRule(_localctx, 318, RULE_channelType); try { enterOuterAlt(_localctx, 1); { - setState(1708); + setState(1716); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,168,_ctx) ) { case 1: { - setState(1703); + setState(1711); match(CHAN); } break; case 2: { - setState(1704); + setState(1712); match(CHAN); - setState(1705); + setState(1713); match(RECEIVE); } break; case 3: { - setState(1706); + setState(1714); match(RECEIVE); - setState(1707); + setState(1715); match(CHAN); } break; } - setState(1710); + setState(1718); elementType(); } } @@ -11643,13 +11704,13 @@ public T accept(ParseTreeVisitor visitor) { public final FunctionTypeContext functionType() throws RecognitionException { FunctionTypeContext _localctx = new FunctionTypeContext(_ctx, getState()); - enterRule(_localctx, 318, RULE_functionType); + enterRule(_localctx, 320, RULE_functionType); try { enterOuterAlt(_localctx, 1); { - setState(1712); + setState(1720); match(FUNC); - setState(1713); + setState(1721); signature(); } } @@ -11685,24 +11746,24 @@ public T accept(ParseTreeVisitor visitor) { public final SignatureContext signature() throws RecognitionException { SignatureContext _localctx = new SignatureContext(_ctx, getState()); - enterRule(_localctx, 320, RULE_signature); + enterRule(_localctx, 322, RULE_signature); try { - setState(1719); + setState(1727); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,169,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(1715); + setState(1723); parameters(); - setState(1716); + setState(1724); result(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(1718); + setState(1726); parameters(); } break; @@ -11740,22 +11801,22 @@ public T accept(ParseTreeVisitor visitor) { public final ResultContext result() throws RecognitionException { ResultContext _localctx = new ResultContext(_ctx, getState()); - enterRule(_localctx, 322, RULE_result); + enterRule(_localctx, 324, RULE_result); try { - setState(1723); + setState(1731); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,170,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(1721); + setState(1729); parameters(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(1722); + setState(1730); type_(); } break; @@ -11799,45 +11860,45 @@ public T accept(ParseTreeVisitor visitor) { public final ParametersContext parameters() throws RecognitionException { ParametersContext _localctx = new ParametersContext(_ctx, getState()); - enterRule(_localctx, 324, RULE_parameters); + enterRule(_localctx, 326, RULE_parameters); int _la; try { int _alt; enterOuterAlt(_localctx, 1); { - setState(1725); + setState(1733); match(L_PAREN); - setState(1737); + setState(1745); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 83350678101032960L) != 0) || ((((_la - 79)) & ~0x3f) == 0 && ((1L << (_la - 79)) & 1441152431101575619L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 166702455579475968L) != 0) || ((((_la - 80)) & ~0x3f) == 0 && ((1L << (_la - 80)) & 1441152431101575619L) != 0)) { { - setState(1726); + setState(1734); parameterDecl(); - setState(1731); + setState(1739); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,171,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(1727); + setState(1735); match(COMMA); - setState(1728); + setState(1736); parameterDecl(); } } } - setState(1733); + setState(1741); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,171,_ctx); } - setState(1735); + setState(1743); _errHandler.sync(this); _la = _input.LA(1); if (_la==COMMA) { { - setState(1734); + setState(1742); match(COMMA); } } @@ -11845,7 +11906,7 @@ public final ParametersContext parameters() throws RecognitionException { } } - setState(1739); + setState(1747); match(R_PAREN); } } @@ -11884,28 +11945,28 @@ public T accept(ParseTreeVisitor visitor) { public final ConversionContext conversion() throws RecognitionException { ConversionContext _localctx = new ConversionContext(_ctx, getState()); - enterRule(_localctx, 326, RULE_conversion); + enterRule(_localctx, 328, RULE_conversion); int _la; try { enterOuterAlt(_localctx, 1); { - setState(1741); + setState(1749); nonNamedType(); - setState(1742); + setState(1750); match(L_PAREN); - setState(1743); + setState(1751); expression(0); - setState(1745); + setState(1753); _errHandler.sync(this); _la = _input.LA(1); if (_la==COMMA) { { - setState(1744); + setState(1752); match(COMMA); } } - setState(1747); + setState(1755); match(R_PAREN); } } @@ -11943,9 +12004,9 @@ public T accept(ParseTreeVisitor visitor) { public final NonNamedTypeContext nonNamedType() throws RecognitionException { NonNamedTypeContext _localctx = new NonNamedTypeContext(_ctx, getState()); - enterRule(_localctx, 328, RULE_nonNamedType); + enterRule(_localctx, 330, RULE_nonNamedType); try { - setState(1754); + setState(1762); _errHandler.sync(this); switch (_input.LA(1)) { case PRED: @@ -11959,18 +12020,18 @@ public final NonNamedTypeContext nonNamedType() throws RecognitionException { case RECEIVE: enterOuterAlt(_localctx, 1); { - setState(1749); + setState(1757); typeLit(); } break; case L_PAREN: enterOuterAlt(_localctx, 2); { - setState(1750); + setState(1758); match(L_PAREN); - setState(1751); + setState(1759); nonNamedType(); - setState(1752); + setState(1760); match(R_PAREN); } break; @@ -12015,33 +12076,33 @@ public T accept(ParseTreeVisitor visitor) { public final OperandContext operand() throws RecognitionException { OperandContext _localctx = new OperandContext(_ctx, getState()); - enterRule(_localctx, 330, RULE_operand); + enterRule(_localctx, 332, RULE_operand); try { - setState(1762); + setState(1770); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,176,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(1756); + setState(1764); literal(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(1757); + setState(1765); operandName(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(1758); + setState(1766); match(L_PAREN); - setState(1759); + setState(1767); expression(0); - setState(1760); + setState(1768); match(R_PAREN); } break; @@ -12082,9 +12143,9 @@ public T accept(ParseTreeVisitor visitor) { public final LiteralContext literal() throws RecognitionException { LiteralContext _localctx = new LiteralContext(_ctx, getState()); - enterRule(_localctx, 332, RULE_literal); + enterRule(_localctx, 334, RULE_literal); try { - setState(1767); + setState(1775); _errHandler.sync(this); switch (_input.LA(1)) { case FLOAT_LIT: @@ -12101,7 +12162,7 @@ public final LiteralContext literal() throws RecognitionException { case INTERPRETED_STRING_LIT: enterOuterAlt(_localctx, 1); { - setState(1764); + setState(1772); basicLit(); } break; @@ -12111,6 +12172,7 @@ public final LiteralContext literal() throws RecognitionException { case MSET: case DICT: case OPT: + case GPOINTER: case DOM: case ADT: case MAP: @@ -12119,7 +12181,7 @@ public final LiteralContext literal() throws RecognitionException { case L_BRACKET: enterOuterAlt(_localctx, 2); { - setState(1765); + setState(1773); compositeLit(); } break; @@ -12133,7 +12195,7 @@ public final LiteralContext literal() throws RecognitionException { case FUNC: enterOuterAlt(_localctx, 3); { - setState(1766); + setState(1774); functionLit(); } break; @@ -12173,14 +12235,14 @@ public T accept(ParseTreeVisitor visitor) { public final IntegerContext integer() throws RecognitionException { IntegerContext _localctx = new IntegerContext(_ctx, getState()); - enterRule(_localctx, 334, RULE_integer); + enterRule(_localctx, 336, RULE_integer); int _la; try { enterOuterAlt(_localctx, 1); { - setState(1769); + setState(1777); _la = _input.LA(1); - if ( !(((((_la - 140)) & ~0x3f) == 0 && ((1L << (_la - 140)) & 111L) != 0)) ) { + if ( !(((((_la - 141)) & ~0x3f) == 0 && ((1L << (_la - 141)) & 111L) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -12217,11 +12279,11 @@ public T accept(ParseTreeVisitor visitor) { public final OperandNameContext operandName() throws RecognitionException { OperandNameContext _localctx = new OperandNameContext(_ctx, getState()); - enterRule(_localctx, 336, RULE_operandName); + enterRule(_localctx, 338, RULE_operandName); try { enterOuterAlt(_localctx, 1); { - setState(1771); + setState(1779); match(IDENTIFIER); } } @@ -12256,15 +12318,15 @@ public T accept(ParseTreeVisitor visitor) { public final QualifiedIdentContext qualifiedIdent() throws RecognitionException { QualifiedIdentContext _localctx = new QualifiedIdentContext(_ctx, getState()); - enterRule(_localctx, 338, RULE_qualifiedIdent); + enterRule(_localctx, 340, RULE_qualifiedIdent); try { enterOuterAlt(_localctx, 1); { - setState(1773); + setState(1781); match(IDENTIFIER); - setState(1774); + setState(1782); match(DOT); - setState(1775); + setState(1783); match(IDENTIFIER); } } @@ -12300,13 +12362,13 @@ public T accept(ParseTreeVisitor visitor) { public final CompositeLitContext compositeLit() throws RecognitionException { CompositeLitContext _localctx = new CompositeLitContext(_ctx, getState()); - enterRule(_localctx, 340, RULE_compositeLit); + enterRule(_localctx, 342, RULE_compositeLit); try { enterOuterAlt(_localctx, 1); { - setState(1777); + setState(1785); literalType(); - setState(1778); + setState(1786); literalValue(); } } @@ -12342,26 +12404,26 @@ public T accept(ParseTreeVisitor visitor) { public final LiteralValueContext literalValue() throws RecognitionException { LiteralValueContext _localctx = new LiteralValueContext(_ctx, getState()); - enterRule(_localctx, 342, RULE_literalValue); + enterRule(_localctx, 344, RULE_literalValue); int _la; try { enterOuterAlt(_localctx, 1); { - setState(1780); + setState(1788); match(L_CURLY); - setState(1785); + setState(1793); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 571956053407067674L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 11960417569799L) != 0) || ((((_la - 133)) & ~0x3f) == 0 && ((1L << (_la - 133)) & 1587199L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 1143913206083120666L) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 11960417569799L) != 0) || ((((_la - 134)) & ~0x3f) == 0 && ((1L << (_la - 134)) & 1587199L) != 0)) { { - setState(1781); + setState(1789); elementList(); - setState(1783); + setState(1791); _errHandler.sync(this); _la = _input.LA(1); if (_la==COMMA) { { - setState(1782); + setState(1790); match(COMMA); } } @@ -12369,7 +12431,7 @@ public final LiteralValueContext literalValue() throws RecognitionException { } } - setState(1787); + setState(1795); match(R_CURLY); } } @@ -12409,28 +12471,28 @@ public T accept(ParseTreeVisitor visitor) { public final ElementListContext elementList() throws RecognitionException { ElementListContext _localctx = new ElementListContext(_ctx, getState()); - enterRule(_localctx, 344, RULE_elementList); + enterRule(_localctx, 346, RULE_elementList); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(1789); + setState(1797); keyedElement(); - setState(1794); + setState(1802); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,180,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(1790); + setState(1798); match(COMMA); - setState(1791); + setState(1799); keyedElement(); } } } - setState(1796); + setState(1804); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,180,_ctx); } @@ -12469,23 +12531,23 @@ public T accept(ParseTreeVisitor visitor) { public final KeyedElementContext keyedElement() throws RecognitionException { KeyedElementContext _localctx = new KeyedElementContext(_ctx, getState()); - enterRule(_localctx, 346, RULE_keyedElement); + enterRule(_localctx, 348, RULE_keyedElement); try { enterOuterAlt(_localctx, 1); { - setState(1800); + setState(1808); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,181,_ctx) ) { case 1: { - setState(1797); + setState(1805); key(); - setState(1798); + setState(1806); match(COLON); } break; } - setState(1802); + setState(1810); element(); } } @@ -12521,9 +12583,9 @@ public T accept(ParseTreeVisitor visitor) { public final KeyContext key() throws RecognitionException { KeyContext _localctx = new KeyContext(_ctx, getState()); - enterRule(_localctx, 348, RULE_key); + enterRule(_localctx, 350, RULE_key); try { - setState(1806); + setState(1814); _errHandler.sync(this); switch (_input.LA(1)) { case FLOAT_LIT: @@ -12547,6 +12609,7 @@ public final KeyContext key() throws RecognitionException { case MSET: case DICT: case OPT: + case GPOINTER: case LEN: case NEW: case MAKE: @@ -12593,14 +12656,14 @@ public final KeyContext key() throws RecognitionException { case INTERPRETED_STRING_LIT: enterOuterAlt(_localctx, 1); { - setState(1804); + setState(1812); expression(0); } break; case L_CURLY: enterOuterAlt(_localctx, 2); { - setState(1805); + setState(1813); literalValue(); } break; @@ -12640,9 +12703,9 @@ public T accept(ParseTreeVisitor visitor) { public final ElementContext element() throws RecognitionException { ElementContext _localctx = new ElementContext(_ctx, getState()); - enterRule(_localctx, 350, RULE_element); + enterRule(_localctx, 352, RULE_element); try { - setState(1810); + setState(1818); _errHandler.sync(this); switch (_input.LA(1)) { case FLOAT_LIT: @@ -12666,6 +12729,7 @@ public final ElementContext element() throws RecognitionException { case MSET: case DICT: case OPT: + case GPOINTER: case LEN: case NEW: case MAKE: @@ -12712,14 +12776,14 @@ public final ElementContext element() throws RecognitionException { case INTERPRETED_STRING_LIT: enterOuterAlt(_localctx, 1); { - setState(1808); + setState(1816); expression(0); } break; case L_CURLY: enterOuterAlt(_localctx, 2); { - setState(1809); + setState(1817); literalValue(); } break; @@ -12768,32 +12832,32 @@ public T accept(ParseTreeVisitor visitor) { public final StructTypeContext structType() throws RecognitionException { StructTypeContext _localctx = new StructTypeContext(_ctx, getState()); - enterRule(_localctx, 352, RULE_structType); + enterRule(_localctx, 354, RULE_structType); int _la; try { enterOuterAlt(_localctx, 1); { - setState(1812); + setState(1820); match(STRUCT); - setState(1813); + setState(1821); match(L_CURLY); - setState(1819); + setState(1827); _errHandler.sync(this); _la = _input.LA(1); while (_la==IDENTIFIER || _la==STAR) { { { - setState(1814); + setState(1822); fieldDecl(); - setState(1815); + setState(1823); eos(); } } - setState(1821); + setState(1829); _errHandler.sync(this); _la = _input.LA(1); } - setState(1822); + setState(1830); match(R_CURLY); } } @@ -12836,34 +12900,34 @@ public T accept(ParseTreeVisitor visitor) { public final FieldDeclContext fieldDecl() throws RecognitionException { FieldDeclContext _localctx = new FieldDeclContext(_ctx, getState()); - enterRule(_localctx, 354, RULE_fieldDecl); + enterRule(_localctx, 356, RULE_fieldDecl); try { enterOuterAlt(_localctx, 1); { - setState(1828); + setState(1836); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,185,_ctx) ) { case 1: { - setState(1824); + setState(1832); identifierList(); - setState(1825); + setState(1833); type_(); } break; case 2: { - setState(1827); + setState(1835); embeddedField(); } break; } - setState(1831); + setState(1839); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,186,_ctx) ) { case 1: { - setState(1830); + setState(1838); ((FieldDeclContext)_localctx).tag = string_(); } break; @@ -12898,12 +12962,12 @@ public T accept(ParseTreeVisitor visitor) { public final String_Context string_() throws RecognitionException { String_Context _localctx = new String_Context(_ctx, getState()); - enterRule(_localctx, 356, RULE_string_); + enterRule(_localctx, 358, RULE_string_); int _la; try { enterOuterAlt(_localctx, 1); { - setState(1833); + setState(1841); _la = _input.LA(1); if ( !(_la==RAW_STRING_LIT || _la==INTERPRETED_STRING_LIT) ) { _errHandler.recoverInline(this); @@ -12945,22 +13009,22 @@ public T accept(ParseTreeVisitor visitor) { public final EmbeddedFieldContext embeddedField() throws RecognitionException { EmbeddedFieldContext _localctx = new EmbeddedFieldContext(_ctx, getState()); - enterRule(_localctx, 358, RULE_embeddedField); + enterRule(_localctx, 360, RULE_embeddedField); int _la; try { enterOuterAlt(_localctx, 1); { - setState(1836); + setState(1844); _errHandler.sync(this); _la = _input.LA(1); if (_la==STAR) { { - setState(1835); + setState(1843); match(STAR); } } - setState(1838); + setState(1846); typeName(); } } @@ -12995,15 +13059,15 @@ public T accept(ParseTreeVisitor visitor) { public final IndexContext index() throws RecognitionException { IndexContext _localctx = new IndexContext(_ctx, getState()); - enterRule(_localctx, 360, RULE_index); + enterRule(_localctx, 362, RULE_index); try { enterOuterAlt(_localctx, 1); { - setState(1840); + setState(1848); match(L_BRACKET); - setState(1841); + setState(1849); expression(0); - setState(1842); + setState(1850); match(R_BRACKET); } } @@ -13039,17 +13103,17 @@ public T accept(ParseTreeVisitor visitor) { public final TypeAssertionContext typeAssertion() throws RecognitionException { TypeAssertionContext _localctx = new TypeAssertionContext(_ctx, getState()); - enterRule(_localctx, 362, RULE_typeAssertion); + enterRule(_localctx, 364, RULE_typeAssertion); try { enterOuterAlt(_localctx, 1); { - setState(1844); + setState(1852); match(DOT); - setState(1845); + setState(1853); match(L_PAREN); - setState(1846); + setState(1854); type_(); - setState(1847); + setState(1855); match(R_PAREN); } } @@ -13092,39 +13156,39 @@ public T accept(ParseTreeVisitor visitor) { public final ArgumentsContext arguments() throws RecognitionException { ArgumentsContext _localctx = new ArgumentsContext(_ctx, getState()); - enterRule(_localctx, 364, RULE_arguments); + enterRule(_localctx, 366, RULE_arguments); int _la; try { enterOuterAlt(_localctx, 1); { - setState(1849); + setState(1857); match(L_PAREN); - setState(1864); + setState(1872); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 571956053407067674L) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & 9761394314247L) != 0) || ((((_la - 133)) & ~0x3f) == 0 && ((1L << (_la - 133)) & 1587199L) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 1143913206083120666L) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 9761394314247L) != 0) || ((((_la - 134)) & ~0x3f) == 0 && ((1L << (_la - 134)) & 1587199L) != 0)) { { - setState(1856); + setState(1864); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,189,_ctx) ) { case 1: { - setState(1850); + setState(1858); expressionList(); } break; case 2: { - setState(1851); + setState(1859); nonNamedType(); - setState(1854); + setState(1862); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,188,_ctx) ) { case 1: { - setState(1852); + setState(1860); match(COMMA); - setState(1853); + setState(1861); expressionList(); } break; @@ -13132,22 +13196,22 @@ public final ArgumentsContext arguments() throws RecognitionException { } break; } - setState(1859); + setState(1867); _errHandler.sync(this); _la = _input.LA(1); if (_la==ELLIPSIS) { { - setState(1858); + setState(1866); match(ELLIPSIS); } } - setState(1862); + setState(1870); _errHandler.sync(this); _la = _input.LA(1); if (_la==COMMA) { { - setState(1861); + setState(1869); match(COMMA); } } @@ -13155,7 +13219,7 @@ public final ArgumentsContext arguments() throws RecognitionException { } } - setState(1866); + setState(1874); match(R_PAREN); } } @@ -13190,15 +13254,15 @@ public T accept(ParseTreeVisitor visitor) { public final MethodExprContext methodExpr() throws RecognitionException { MethodExprContext _localctx = new MethodExprContext(_ctx, getState()); - enterRule(_localctx, 366, RULE_methodExpr); + enterRule(_localctx, 368, RULE_methodExpr); try { enterOuterAlt(_localctx, 1); { - setState(1868); + setState(1876); nonNamedType(); - setState(1869); + setState(1877); match(DOT); - setState(1870); + setState(1878); match(IDENTIFIER); } } @@ -13231,11 +13295,11 @@ public T accept(ParseTreeVisitor visitor) { public final ReceiverTypeContext receiverType() throws RecognitionException { ReceiverTypeContext _localctx = new ReceiverTypeContext(_ctx, getState()); - enterRule(_localctx, 368, RULE_receiverType); + enterRule(_localctx, 370, RULE_receiverType); try { enterOuterAlt(_localctx, 1); { - setState(1872); + setState(1880); type_(); } } @@ -13268,36 +13332,36 @@ public T accept(ParseTreeVisitor visitor) { public final EosContext eos() throws RecognitionException { EosContext _localctx = new EosContext(_ctx, getState()); - enterRule(_localctx, 370, RULE_eos); + enterRule(_localctx, 372, RULE_eos); try { - setState(1878); + setState(1886); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,193,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(1874); + setState(1882); match(SEMI); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(1875); + setState(1883); match(EOF); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(1876); + setState(1884); match(EOS); } break; case 4: enterOuterAlt(_localctx, 4); { - setState(1877); + setState(1885); if (!(this.closingBracket())) throw new FailedPredicateException(this, "this.closingBracket()"); } break; @@ -13316,13 +13380,13 @@ public final EosContext eos() throws RecognitionException { public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) { switch (ruleIndex) { - case 83: + case 84: return expression_sempred((ExpressionContext)_localctx, predIndex); - case 91: + case 92: return primaryExpr_sempred((PrimaryExprContext)_localctx, predIndex); - case 121: + case 122: return statementList_sempred((StatementListContext)_localctx, predIndex); - case 185: + case 186: return eos_sempred((EosContext)_localctx, predIndex); } return true; @@ -13389,7 +13453,7 @@ private boolean eos_sempred(EosContext _localctx, int predIndex) { } public static final String _serializedATN = - "\u0004\u0001\u00a2\u0759\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001"+ + "\u0004\u0001\u00a3\u0761\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001"+ "\u0002\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004\u0007\u0004"+ "\u0002\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002\u0007\u0007\u0007"+ "\u0002\b\u0007\b\u0002\t\u0007\t\u0002\n\u0007\n\u0002\u000b\u0007\u000b"+ @@ -13438,198 +13502,199 @@ private boolean eos_sempred(EosContext _localctx, int predIndex) { "\u00b0\u0002\u00b1\u0007\u00b1\u0002\u00b2\u0007\u00b2\u0002\u00b3\u0007"+ "\u00b3\u0002\u00b4\u0007\u00b4\u0002\u00b5\u0007\u00b5\u0002\u00b6\u0007"+ "\u00b6\u0002\u00b7\u0007\u00b7\u0002\u00b8\u0007\u00b8\u0002\u00b9\u0007"+ - "\u00b9\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0001\u0001\u0001\u0001"+ - "\u0001\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0003\u0001\u0003\u0001"+ - "\u0003\u0005\u0003\u0181\b\u0003\n\u0003\f\u0003\u0184\t\u0003\u0001\u0004"+ - "\u0001\u0004\u0003\u0004\u0188\b\u0004\u0001\u0005\u0001\u0005\u0001\u0005"+ - "\u0005\u0005\u018d\b\u0005\n\u0005\f\u0005\u0190\t\u0005\u0001\u0005\u0001"+ - "\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0005\u0005\u0197\b\u0005\n"+ - "\u0005\f\u0005\u019a\t\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0003"+ - "\u0005\u019f\b\u0005\u0001\u0005\u0001\u0005\u0005\u0005\u01a3\b\u0005"+ - "\n\u0005\f\u0005\u01a6\t\u0005\u0001\u0005\u0001\u0005\u0001\u0006\u0001"+ - "\u0006\u0001\u0006\u0005\u0006\u01ad\b\u0006\n\u0006\f\u0006\u01b0\t\u0006"+ - "\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0005\u0006"+ - "\u01b7\b\u0006\n\u0006\f\u0006\u01ba\t\u0006\u0001\u0007\u0001\u0007\u0001"+ - "\u0007\u0001\b\u0001\b\u0001\b\u0001\t\u0001\t\u0001\t\u0005\t\u01c5\b"+ - "\t\n\t\f\t\u01c8\t\t\u0001\t\u0003\t\u01cb\b\t\u0001\t\u0001\t\u0001\n"+ - "\u0001\n\u0001\n\u0005\n\u01d2\b\n\n\n\f\n\u01d5\t\n\u0001\n\u0001\n\u0001"+ - "\n\u0001\n\u0001\n\u0001\n\u0001\n\u0005\n\u01de\b\n\n\n\f\n\u01e1\t\n"+ - "\u0001\n\u0003\n\u01e4\b\n\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b"+ - "\u0003\u000b\u01ea\b\u000b\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001"+ - "\f\u0001\f\u0003\f\u01f3\b\f\u0001\r\u0001\r\u0001\u000e\u0001\u000e\u0001"+ - "\u000e\u0001\u000f\u0001\u000f\u0001\u000f\u0003\u000f\u01fd\b\u000f\u0001"+ - "\u000f\u0001\u000f\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001"+ + "\u00b9\u0002\u00ba\u0007\u00ba\u0001\u0000\u0001\u0000\u0001\u0000\u0001"+ + "\u0001\u0001\u0001\u0001\u0001\u0001\u0002\u0001\u0002\u0001\u0002\u0001"+ + "\u0003\u0001\u0003\u0001\u0003\u0005\u0003\u0183\b\u0003\n\u0003\f\u0003"+ + "\u0186\t\u0003\u0001\u0004\u0001\u0004\u0003\u0004\u018a\b\u0004\u0001"+ + "\u0005\u0001\u0005\u0001\u0005\u0005\u0005\u018f\b\u0005\n\u0005\f\u0005"+ + "\u0192\t\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+ + "\u0005\u0005\u0199\b\u0005\n\u0005\f\u0005\u019c\t\u0005\u0001\u0005\u0001"+ + "\u0005\u0001\u0005\u0003\u0005\u01a1\b\u0005\u0001\u0005\u0001\u0005\u0005"+ + "\u0005\u01a5\b\u0005\n\u0005\f\u0005\u01a8\t\u0005\u0001\u0005\u0001\u0005"+ + "\u0001\u0006\u0001\u0006\u0001\u0006\u0005\u0006\u01af\b\u0006\n\u0006"+ + "\f\u0006\u01b2\t\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006"+ + "\u0001\u0006\u0005\u0006\u01b9\b\u0006\n\u0006\f\u0006\u01bc\t\u0006\u0001"+ + "\u0007\u0001\u0007\u0001\u0007\u0001\b\u0001\b\u0001\b\u0001\t\u0001\t"+ + "\u0001\t\u0005\t\u01c7\b\t\n\t\f\t\u01ca\t\t\u0001\t\u0003\t\u01cd\b\t"+ + "\u0001\t\u0001\t\u0001\n\u0001\n\u0001\n\u0005\n\u01d4\b\n\n\n\f\n\u01d7"+ + "\t\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0005\n\u01e0"+ + "\b\n\n\n\f\n\u01e3\t\n\u0001\n\u0003\n\u01e6\b\n\u0001\u000b\u0001\u000b"+ + "\u0001\u000b\u0001\u000b\u0003\u000b\u01ec\b\u000b\u0001\f\u0001\f\u0001"+ + "\f\u0001\f\u0001\f\u0001\f\u0001\f\u0003\f\u01f5\b\f\u0001\r\u0001\r\u0001"+ + "\u000e\u0001\u000e\u0001\u000e\u0001\u000f\u0001\u000f\u0001\u000f\u0003"+ + "\u000f\u01ff\b\u000f\u0001\u000f\u0001\u000f\u0001\u0010\u0001\u0010\u0001"+ "\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001"+ - "\u0010\u0001\u0010\u0001\u0010\u0003\u0010\u020e\b\u0010\u0001\u0011\u0001"+ - "\u0011\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001"+ - "\u0013\u0001\u0013\u0001\u0013\u0005\u0013\u021a\b\u0013\n\u0013\f\u0013"+ - "\u021d\t\u0013\u0001\u0013\u0003\u0013\u0220\b\u0013\u0001\u0014\u0001"+ - "\u0014\u0001\u0014\u0005\u0014\u0225\b\u0014\n\u0014\f\u0014\u0228\t\u0014"+ - "\u0001\u0014\u0001\u0014\u0001\u0015\u0005\u0015\u022d\b\u0015\n\u0015"+ - "\f\u0015\u0230\t\u0015\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016"+ - "\u0005\u0016\u0236\b\u0016\n\u0016\f\u0016\u0239\t\u0016\u0001\u0016\u0001"+ - "\u0016\u0001\u0017\u0001\u0017\u0001\u0018\u0001\u0018\u0001\u0018\u0001"+ - "\u0018\u0001\u0018\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001"+ - "\u0019\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001"+ - "\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001c\u0001"+ - "\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0003\u001c\u0258\b\u001c\u0001"+ - "\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001d\u0001\u001d\u0003"+ - "\u001d\u0260\b\u001d\u0001\u001e\u0001\u001e\u0001\u001f\u0001\u001f\u0001"+ - "\u001f\u0001\u001f\u0001\u001f\u0001 \u0001 \u0001 \u0001 \u0001 \u0001"+ - "!\u0001!\u0001!\u0001!\u0001!\u0001\"\u0001\"\u0001\"\u0001\"\u0001\""+ - "\u0003\"\u0278\b\"\u0001\"\u0001\"\u0001#\u0001#\u0001#\u0001#\u0001#"+ - "\u0001#\u0001#\u0001$\u0001$\u0001$\u0001$\u0001$\u0001$\u0005$\u0289"+ - "\b$\n$\f$\u028c\t$\u0001$\u0001$\u0001%\u0001%\u0001%\u0001%\u0001&\u0001"+ - "&\u0001&\u0001&\u0005&\u0298\b&\n&\f&\u029b\t&\u0001&\u0001&\u0001\'\u0001"+ - "\'\u0001\'\u0001\'\u0001(\u0001(\u0001(\u0001(\u0003(\u02a7\b(\u0001)"+ - "\u0001)\u0001)\u0001)\u0001)\u0005)\u02ae\b)\n)\f)\u02b1\t)\u0001)\u0001"+ - ")\u0001*\u0001*\u0001*\u0001*\u0001*\u0001*\u0001*\u0001*\u0001*\u0003"+ - "*\u02be\b*\u0001+\u0001+\u0001+\u0001+\u0001+\u0005+\u02c5\b+\n+\f+\u02c8"+ - "\t+\u0001+\u0001+\u0001,\u0001,\u0001,\u0001,\u0001,\u0005,\u02d1\b,\n"+ - ",\f,\u02d4\t,\u0001,\u0001,\u0001-\u0003-\u02d9\b-\u0001-\u0001-\u0001"+ - ".\u0001.\u0001.\u0001.\u0001.\u0001/\u0001/\u0001/\u0001/\u0001/\u0001"+ - "/\u0001/\u0001/\u0001/\u0001/\u0001/\u0003/\u02ed\b/\u00010\u00010\u0001"+ - "0\u00010\u00010\u00010\u00010\u00030\u02f6\b0\u00010\u00050\u02f9\b0\n"+ - "0\f0\u02fc\t0\u00010\u00010\u00030\u0300\b0\u00011\u00011\u00011\u0001"+ - "1\u00011\u00011\u00011\u00011\u00031\u030a\b1\u00012\u00032\u030d\b2\u0001"+ - "2\u00012\u00032\u0311\b2\u00013\u00013\u00033\u0315\b3\u00014\u00014\u0001"+ - "4\u00014\u00054\u031b\b4\n4\f4\u031e\t4\u00014\u00014\u00015\u00015\u0001"+ - "5\u00035\u0325\b5\u00016\u00016\u00016\u00036\u032a\b6\u00017\u00017\u0001"+ - "7\u00017\u00017\u00017\u00037\u0332\b7\u00037\u0334\b7\u00017\u00017\u0001"+ - "7\u00037\u0339\b7\u00018\u00018\u00018\u00058\u033e\b8\n8\f8\u0341\t8"+ - "\u00019\u00019\u00019\u00019\u00019\u00039\u0348\b9\u00019\u00039\u034b"+ - "\b9\u00019\u00019\u0001:\u0001:\u0003:\u0351\b:\u0001:\u0001:\u0001:\u0003"+ - ":\u0356\b:\u0003:\u0358\b:\u0001:\u0003:\u035b\b:\u0001;\u0001;\u0001"+ - ";\u0005;\u0360\b;\n;\f;\u0363\t;\u0001<\u0001<\u0003<\u0367\b<\u0001<"+ - "\u0001<\u0001=\u0001=\u0001=\u0001=\u0001=\u0001=\u0001>\u0001>\u0001"+ - ">\u0001>\u0001>\u0001>\u0001>\u0005>\u0378\b>\n>\f>\u037b\t>\u0001>\u0001"+ - ">\u0001>\u0005>\u0380\b>\n>\f>\u0383\t>\u0001>\u0003>\u0386\b>\u0001?"+ - "\u0003?\u0389\b?\u0001?\u0001?\u0001?\u0001?\u0003?\u038f\b?\u0001@\u0001"+ - "@\u0003@\u0393\b@\u0001@\u0003@\u0396\b@\u0001@\u0001@\u0001@\u0001A\u0001"+ - "A\u0001A\u0001A\u0001A\u0003A\u03a0\bA\u0001B\u0001B\u0001B\u0001B\u0001"+ - "B\u0003B\u03a7\bB\u0001C\u0001C\u0001C\u0001C\u0001C\u0003C\u03ae\bC\u0001"+ - "C\u0001C\u0001D\u0001D\u0001D\u0001D\u0001D\u0001E\u0001E\u0001E\u0003"+ - "E\u03ba\bE\u0001F\u0001F\u0001F\u0001F\u0003F\u03c0\bF\u0001G\u0001G\u0001"+ - "G\u0001G\u0001G\u0003G\u03c7\bG\u0001H\u0001H\u0001H\u0003H\u03cc\bH\u0001"+ - "I\u0001I\u0001I\u0001I\u0003I\u03d2\bI\u0001J\u0001J\u0001J\u0001J\u0001"+ - "J\u0001K\u0001K\u0001K\u0001K\u0001K\u0003K\u03de\bK\u0001L\u0001L\u0001"+ - "L\u0001L\u0003L\u03e4\bL\u0001L\u0001L\u0003L\u03e8\bL\u0001M\u0001M\u0001"+ - "M\u0001M\u0001N\u0001N\u0003N\u03f0\bN\u0001N\u0001N\u0003N\u03f4\bN\u0001"+ - "N\u0001N\u0001O\u0001O\u0003O\u03fa\bO\u0001P\u0003P\u03fd\bP\u0001P\u0001"+ - "P\u0001Q\u0001Q\u0003Q\u0403\bQ\u0001Q\u0001Q\u0001R\u0003R\u0408\bR\u0001"+ - "R\u0001R\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001"+ - "S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001"+ - "S\u0001S\u0001S\u0003S\u0421\bS\u0001S\u0001S\u0001S\u0001S\u0001S\u0001"+ - "S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001"+ - "S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001"+ - "S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0005S\u0444\bS\nS"+ - "\fS\u0447\tS\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001"+ + "\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0003\u0010\u0210"+ + "\b\u0010\u0001\u0011\u0001\u0011\u0001\u0012\u0001\u0012\u0001\u0012\u0001"+ + "\u0012\u0001\u0012\u0001\u0013\u0001\u0013\u0001\u0013\u0005\u0013\u021c"+ + "\b\u0013\n\u0013\f\u0013\u021f\t\u0013\u0001\u0013\u0003\u0013\u0222\b"+ + "\u0013\u0001\u0014\u0001\u0014\u0001\u0014\u0005\u0014\u0227\b\u0014\n"+ + "\u0014\f\u0014\u022a\t\u0014\u0001\u0014\u0001\u0014\u0001\u0015\u0005"+ + "\u0015\u022f\b\u0015\n\u0015\f\u0015\u0232\t\u0015\u0001\u0016\u0001\u0016"+ + "\u0001\u0016\u0001\u0016\u0005\u0016\u0238\b\u0016\n\u0016\f\u0016\u023b"+ + "\t\u0016\u0001\u0016\u0001\u0016\u0001\u0017\u0001\u0017\u0001\u0018\u0001"+ + "\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0019\u0001\u0019\u0001"+ + "\u0019\u0001\u0019\u0001\u0019\u0001\u001a\u0001\u001a\u0001\u001a\u0001"+ + "\u001a\u0001\u001a\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001"+ + "\u001b\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0003"+ + "\u001c\u025a\b\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001"+ + "\u001d\u0001\u001d\u0003\u001d\u0262\b\u001d\u0001\u001e\u0001\u001e\u0001"+ + "\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001 \u0001 \u0001"+ + " \u0001 \u0001 \u0001!\u0001!\u0001!\u0001!\u0001!\u0001\"\u0001\"\u0001"+ + "\"\u0001\"\u0001\"\u0003\"\u027a\b\"\u0001\"\u0001\"\u0001#\u0001#\u0001"+ + "#\u0001#\u0001#\u0001#\u0001#\u0001$\u0001$\u0001$\u0001$\u0001$\u0001"+ + "$\u0005$\u028b\b$\n$\f$\u028e\t$\u0001$\u0001$\u0001%\u0001%\u0001%\u0001"+ + "%\u0001&\u0001&\u0001&\u0001&\u0005&\u029a\b&\n&\f&\u029d\t&\u0001&\u0001"+ + "&\u0001\'\u0001\'\u0001\'\u0001\'\u0001(\u0001(\u0001(\u0001(\u0001(\u0003"+ + "(\u02aa\b(\u0001)\u0001)\u0001)\u0001)\u0001)\u0005)\u02b1\b)\n)\f)\u02b4"+ + "\t)\u0001)\u0001)\u0001*\u0001*\u0001*\u0001*\u0001*\u0001*\u0001*\u0001"+ + "*\u0001*\u0003*\u02c1\b*\u0001+\u0001+\u0001+\u0001+\u0001+\u0005+\u02c8"+ + "\b+\n+\f+\u02cb\t+\u0001+\u0001+\u0001,\u0001,\u0001,\u0001,\u0001,\u0005"+ + ",\u02d4\b,\n,\f,\u02d7\t,\u0001,\u0001,\u0001-\u0003-\u02dc\b-\u0001-"+ + "\u0001-\u0001.\u0001.\u0001.\u0001.\u0001.\u0001/\u0001/\u0001/\u0001"+ + "/\u0001/\u00010\u00010\u00010\u00010\u00010\u00010\u00010\u00010\u0001"+ + "0\u00010\u00010\u00030\u02f5\b0\u00011\u00011\u00011\u00011\u00011\u0001"+ + "1\u00011\u00031\u02fe\b1\u00011\u00051\u0301\b1\n1\f1\u0304\t1\u00011"+ + "\u00011\u00031\u0308\b1\u00012\u00012\u00012\u00012\u00012\u00012\u0001"+ + "2\u00012\u00032\u0312\b2\u00013\u00033\u0315\b3\u00013\u00013\u00033\u0319"+ + "\b3\u00014\u00014\u00034\u031d\b4\u00015\u00015\u00015\u00015\u00055\u0323"+ + "\b5\n5\f5\u0326\t5\u00015\u00015\u00016\u00016\u00016\u00036\u032d\b6"+ + "\u00017\u00017\u00017\u00037\u0332\b7\u00018\u00018\u00018\u00018\u0001"+ + "8\u00018\u00038\u033a\b8\u00038\u033c\b8\u00018\u00018\u00018\u00038\u0341"+ + "\b8\u00019\u00019\u00019\u00059\u0346\b9\n9\f9\u0349\t9\u0001:\u0001:"+ + "\u0001:\u0001:\u0001:\u0003:\u0350\b:\u0001:\u0003:\u0353\b:\u0001:\u0001"+ + ":\u0001;\u0001;\u0003;\u0359\b;\u0001;\u0001;\u0001;\u0003;\u035e\b;\u0003"+ + ";\u0360\b;\u0001;\u0003;\u0363\b;\u0001<\u0001<\u0001<\u0005<\u0368\b"+ + "<\n<\f<\u036b\t<\u0001=\u0001=\u0003=\u036f\b=\u0001=\u0001=\u0001>\u0001"+ + ">\u0001>\u0001>\u0001>\u0001>\u0001?\u0001?\u0001?\u0001?\u0001?\u0001"+ + "?\u0001?\u0005?\u0380\b?\n?\f?\u0383\t?\u0001?\u0001?\u0001?\u0005?\u0388"+ + "\b?\n?\f?\u038b\t?\u0001?\u0003?\u038e\b?\u0001@\u0003@\u0391\b@\u0001"+ + "@\u0001@\u0001@\u0001@\u0003@\u0397\b@\u0001A\u0001A\u0003A\u039b\bA\u0001"+ + "A\u0003A\u039e\bA\u0001A\u0001A\u0001A\u0001B\u0001B\u0001B\u0001B\u0001"+ + "B\u0003B\u03a8\bB\u0001C\u0001C\u0001C\u0001C\u0001C\u0003C\u03af\bC\u0001"+ + "D\u0001D\u0001D\u0001D\u0001D\u0003D\u03b6\bD\u0001D\u0001D\u0001E\u0001"+ + "E\u0001E\u0001E\u0001E\u0001F\u0001F\u0001F\u0003F\u03c2\bF\u0001G\u0001"+ + "G\u0001G\u0001G\u0003G\u03c8\bG\u0001H\u0001H\u0001H\u0001H\u0001H\u0003"+ + "H\u03cf\bH\u0001I\u0001I\u0001I\u0003I\u03d4\bI\u0001J\u0001J\u0001J\u0001"+ + "J\u0003J\u03da\bJ\u0001K\u0001K\u0001K\u0001K\u0001K\u0001L\u0001L\u0001"+ + "L\u0001L\u0001L\u0003L\u03e6\bL\u0001M\u0001M\u0001M\u0001M\u0003M\u03ec"+ + "\bM\u0001M\u0001M\u0003M\u03f0\bM\u0001N\u0001N\u0001N\u0001N\u0001O\u0001"+ + "O\u0003O\u03f8\bO\u0001O\u0001O\u0003O\u03fc\bO\u0001O\u0001O\u0001P\u0001"+ + "P\u0003P\u0402\bP\u0001Q\u0003Q\u0405\bQ\u0001Q\u0001Q\u0001R\u0001R\u0003"+ + "R\u040b\bR\u0001R\u0001R\u0001S\u0003S\u0410\bS\u0001S\u0001S\u0001T\u0001"+ + "T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001"+ + "T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0003"+ + "T\u0429\bT\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001"+ + "T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001"+ "T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001"+ - "T\u0001T\u0003T\u045d\bT\u0001U\u0001U\u0001U\u0001V\u0001V\u0001V\u0003"+ - "V\u0465\bV\u0001W\u0001W\u0001W\u0001X\u0001X\u0001X\u0001X\u0005X\u046e"+ - "\bX\nX\fX\u0471\tX\u0001X\u0001X\u0001X\u0001X\u0003X\u0477\bX\u0001Y"+ - "\u0001Y\u0001Y\u0001Y\u0001Y\u0003Y\u047e\bY\u0001Z\u0001Z\u0001Z\u0001"+ - "Z\u0001Z\u0001Z\u0001Z\u0001Z\u0003Z\u0488\bZ\u0001[\u0001[\u0001[\u0001"+ - "[\u0001[\u0001[\u0001[\u0001[\u0001[\u0001[\u0001[\u0001[\u0001[\u0001"+ - "[\u0001[\u0001[\u0003[\u049a\b[\u0001[\u0001[\u0001[\u0001[\u0001[\u0001"+ - "[\u0001[\u0001[\u0001[\u0001[\u0001[\u0001[\u0001[\u0001[\u0001[\u0001"+ - "[\u0001[\u0001[\u0001[\u0001[\u0005[\u04b0\b[\n[\f[\u04b3\t[\u0001\\\u0001"+ - "\\\u0001\\\u0001]\u0001]\u0003]\u04ba\b]\u0001]\u0001]\u0003]\u04be\b"+ - "]\u0001^\u0001^\u0003^\u04c2\b^\u0001^\u0003^\u04c5\b^\u0001^\u0001^\u0001"+ - "_\u0001_\u0001_\u0001_\u0001_\u0003_\u04ce\b_\u0001_\u0001_\u0005_\u04d2"+ - "\b_\n_\f_\u04d5\t_\u0001_\u0001_\u0001`\u0001`\u0001`\u0001`\u0001a\u0003"+ - "a\u04de\ba\u0001a\u0001a\u0001a\u0001a\u0001a\u0001a\u0003a\u04e6\ba\u0001"+ - "a\u0001a\u0001a\u0001a\u0003a\u04ec\ba\u0001b\u0001b\u0001b\u0001b\u0001"+ - "b\u0001b\u0001b\u0003b\u04f5\bb\u0001c\u0001c\u0001c\u0001c\u0001c\u0001"+ - "c\u0001c\u0001c\u0001c\u0003c\u0500\bc\u0001d\u0001d\u0001d\u0001e\u0001"+ - "e\u0001e\u0001e\u0005e\u0509\be\ne\fe\u050c\te\u0001e\u0003e\u050f\be"+ - "\u0003e\u0511\be\u0001e\u0001e\u0001f\u0001f\u0001f\u0001f\u0001f\u0001"+ - "f\u0001f\u0003f\u051c\bf\u0001g\u0001g\u0001g\u0001g\u0001g\u0001h\u0001"+ - "h\u0003h\u0525\bh\u0001h\u0001h\u0003h\u0529\bh\u0001h\u0003h\u052c\b"+ - "h\u0001h\u0001h\u0001h\u0001h\u0001h\u0003h\u0533\bh\u0001h\u0001h\u0001"+ - "i\u0001i\u0001j\u0001j\u0001k\u0001k\u0001l\u0003l\u053e\bl\u0001l\u0001"+ - "l\u0001m\u0001m\u0001m\u0001m\u0001m\u0001m\u0003m\u0548\bm\u0001m\u0001"+ - "m\u0001m\u0001m\u0003m\u054e\bm\u0003m\u0550\bm\u0001n\u0001n\u0001n\u0001"+ - "o\u0001o\u0001p\u0001p\u0001p\u0003p\u055a\bp\u0001q\u0001q\u0001q\u0001"+ - "q\u0001q\u0001q\u0005q\u0562\bq\nq\fq\u0565\tq\u0001q\u0003q\u0568\bq"+ - "\u0001r\u0001r\u0003r\u056c\br\u0001r\u0001r\u0003r\u0570\br\u0001s\u0001"+ - "s\u0001s\u0005s\u0575\bs\ns\fs\u0578\ts\u0001t\u0001t\u0001t\u0005t\u057d"+ - "\bt\nt\ft\u0580\tt\u0001u\u0001u\u0001u\u0001u\u0001u\u0001u\u0005u\u0588"+ - "\bu\nu\fu\u058b\tu\u0001u\u0003u\u058e\bu\u0001v\u0001v\u0003v\u0592\b"+ - "v\u0001v\u0001v\u0001w\u0001w\u0001w\u0001w\u0001w\u0001w\u0005w\u059c"+ - "\bw\nw\fw\u059f\tw\u0001w\u0003w\u05a2\bw\u0001x\u0001x\u0003x\u05a6\b"+ - "x\u0001x\u0001x\u0001y\u0003y\u05ab\by\u0001y\u0003y\u05ae\by\u0001y\u0003"+ - "y\u05b1\by\u0001y\u0001y\u0001y\u0004y\u05b6\by\u000by\fy\u05b7\u0001"+ - "z\u0001z\u0001z\u0001z\u0001z\u0003z\u05bf\bz\u0001{\u0001{\u0001|\u0001"+ - "|\u0001|\u0001|\u0001}\u0001}\u0001}\u0001~\u0001~\u0001~\u0001~\u0001"+ - "\u007f\u0001\u007f\u0001\u0080\u0001\u0080\u0001\u0080\u0003\u0080\u05d3"+ - "\b\u0080\u0001\u0081\u0001\u0081\u0003\u0081\u05d7\b\u0081\u0001\u0082"+ - "\u0001\u0082\u0003\u0082\u05db\b\u0082\u0001\u0083\u0001\u0083\u0003\u0083"+ - "\u05df\b\u0083\u0001\u0084\u0001\u0084\u0001\u0084\u0001\u0085\u0001\u0085"+ - "\u0001\u0086\u0001\u0086\u0001\u0086\u0001\u0086\u0001\u0086\u0001\u0086"+ - "\u0001\u0086\u0001\u0086\u0001\u0086\u0003\u0086\u05ef\b\u0086\u0001\u0086"+ - "\u0001\u0086\u0001\u0086\u0001\u0086\u0003\u0086\u05f5\b\u0086\u0003\u0086"+ - "\u05f7\b\u0086\u0001\u0087\u0001\u0087\u0003\u0087\u05fb\b\u0087\u0001"+ - "\u0088\u0001\u0088\u0003\u0088\u05ff\b\u0088\u0001\u0088\u0003\u0088\u0602"+ - "\b\u0088\u0001\u0088\u0001\u0088\u0003\u0088\u0606\b\u0088\u0003\u0088"+ - "\u0608\b\u0088\u0001\u0088\u0001\u0088\u0005\u0088\u060c\b\u0088\n\u0088"+ - "\f\u0088\u060f\t\u0088\u0001\u0088\u0001\u0088\u0001\u0089\u0001\u0089"+ - "\u0001\u0089\u0003\u0089\u0616\b\u0089\u0001\u008a\u0001\u008a\u0001\u008a"+ - "\u0003\u008a\u061b\b\u008a\u0001\u008b\u0001\u008b\u0001\u008b\u0001\u008b"+ - "\u0001\u008b\u0001\u008b\u0001\u008b\u0001\u008b\u0001\u008b\u0003\u008b"+ - "\u0626\b\u008b\u0001\u008b\u0001\u008b\u0005\u008b\u062a\b\u008b\n\u008b"+ - "\f\u008b\u062d\t\u008b\u0001\u008b\u0001\u008b\u0001\u008c\u0001\u008c"+ - "\u0003\u008c\u0633\b\u008c\u0001\u008c\u0001\u008c\u0001\u008c\u0001\u008c"+ - "\u0001\u008c\u0001\u008c\u0001\u008d\u0001\u008d\u0001\u008d\u0003\u008d"+ - "\u063e\b\u008d\u0001\u008e\u0001\u008e\u0001\u008e\u0003\u008e\u0643\b"+ - "\u008e\u0001\u008f\u0001\u008f\u0003\u008f\u0647\b\u008f\u0001\u008f\u0001"+ - "\u008f\u0001\u008f\u0003\u008f\u064c\b\u008f\u0005\u008f\u064e\b\u008f"+ - "\n\u008f\f\u008f\u0651\t\u008f\u0001\u0090\u0001\u0090\u0001\u0090\u0005"+ - "\u0090\u0656\b\u0090\n\u0090\f\u0090\u0659\t\u0090\u0001\u0090\u0001\u0090"+ - "\u0001\u0091\u0001\u0091\u0001\u0091\u0003\u0091\u0660\b\u0091\u0001\u0092"+ - "\u0001\u0092\u0001\u0092\u0003\u0092\u0665\b\u0092\u0001\u0092\u0003\u0092"+ - "\u0668\b\u0092\u0001\u0093\u0001\u0093\u0001\u0093\u0001\u0093\u0001\u0093"+ - "\u0001\u0093\u0003\u0093\u0670\b\u0093\u0001\u0093\u0001\u0093\u0001\u0094"+ - "\u0001\u0094\u0003\u0094\u0676\b\u0094\u0001\u0094\u0001\u0094\u0003\u0094"+ - "\u067a\b\u0094\u0003\u0094\u067c\b\u0094\u0001\u0094\u0001\u0094\u0001"+ - "\u0095\u0003\u0095\u0681\b\u0095\u0001\u0095\u0001\u0095\u0003\u0095\u0685"+ - "\b\u0095\u0001\u0095\u0001\u0095\u0003\u0095\u0689\b\u0095\u0001\u0096"+ - "\u0001\u0096\u0001\u0096\u0001\u0097\u0001\u0097\u0003\u0097\u0690\b\u0097"+ - "\u0001\u0098\u0001\u0098\u0001\u0098\u0001\u0098\u0001\u0098\u0001\u0099"+ - "\u0001\u0099\u0001\u009a\u0001\u009a\u0001\u009b\u0001\u009b\u0001\u009b"+ - "\u0001\u009c\u0001\u009c\u0001\u009c\u0001\u009c\u0001\u009d\u0001\u009d"+ - "\u0001\u009d\u0001\u009d\u0001\u009d\u0001\u009d\u0001\u009e\u0001\u009e"+ - "\u0001\u009e\u0001\u009e\u0001\u009e\u0003\u009e\u06ad\b\u009e\u0001\u009e"+ - "\u0001\u009e\u0001\u009f\u0001\u009f\u0001\u009f\u0001\u00a0\u0001\u00a0"+ - "\u0001\u00a0\u0001\u00a0\u0003\u00a0\u06b8\b\u00a0\u0001\u00a1\u0001\u00a1"+ - "\u0003\u00a1\u06bc\b\u00a1\u0001\u00a2\u0001\u00a2\u0001\u00a2\u0001\u00a2"+ - "\u0005\u00a2\u06c2\b\u00a2\n\u00a2\f\u00a2\u06c5\t\u00a2\u0001\u00a2\u0003"+ - "\u00a2\u06c8\b\u00a2\u0003\u00a2\u06ca\b\u00a2\u0001\u00a2\u0001\u00a2"+ - "\u0001\u00a3\u0001\u00a3\u0001\u00a3\u0001\u00a3\u0003\u00a3\u06d2\b\u00a3"+ - "\u0001\u00a3\u0001\u00a3\u0001\u00a4\u0001\u00a4\u0001\u00a4\u0001\u00a4"+ - "\u0001\u00a4\u0003\u00a4\u06db\b\u00a4\u0001\u00a5\u0001\u00a5\u0001\u00a5"+ - "\u0001\u00a5\u0001\u00a5\u0001\u00a5\u0003\u00a5\u06e3\b\u00a5\u0001\u00a6"+ - "\u0001\u00a6\u0001\u00a6\u0003\u00a6\u06e8\b\u00a6\u0001\u00a7\u0001\u00a7"+ - "\u0001\u00a8\u0001\u00a8\u0001\u00a9\u0001\u00a9\u0001\u00a9\u0001\u00a9"+ - "\u0001\u00aa\u0001\u00aa\u0001\u00aa\u0001\u00ab\u0001\u00ab\u0001\u00ab"+ - "\u0003\u00ab\u06f8\b\u00ab\u0003\u00ab\u06fa\b\u00ab\u0001\u00ab\u0001"+ - "\u00ab\u0001\u00ac\u0001\u00ac\u0001\u00ac\u0005\u00ac\u0701\b\u00ac\n"+ - "\u00ac\f\u00ac\u0704\t\u00ac\u0001\u00ad\u0001\u00ad\u0001\u00ad\u0003"+ - "\u00ad\u0709\b\u00ad\u0001\u00ad\u0001\u00ad\u0001\u00ae\u0001\u00ae\u0003"+ - "\u00ae\u070f\b\u00ae\u0001\u00af\u0001\u00af\u0003\u00af\u0713\b\u00af"+ - "\u0001\u00b0\u0001\u00b0\u0001\u00b0\u0001\u00b0\u0001\u00b0\u0005\u00b0"+ - "\u071a\b\u00b0\n\u00b0\f\u00b0\u071d\t\u00b0\u0001\u00b0\u0001\u00b0\u0001"+ - "\u00b1\u0001\u00b1\u0001\u00b1\u0001\u00b1\u0003\u00b1\u0725\b\u00b1\u0001"+ - "\u00b1\u0003\u00b1\u0728\b\u00b1\u0001\u00b2\u0001\u00b2\u0001\u00b3\u0003"+ - "\u00b3\u072d\b\u00b3\u0001\u00b3\u0001\u00b3\u0001\u00b4\u0001\u00b4\u0001"+ - "\u00b4\u0001\u00b4\u0001\u00b5\u0001\u00b5\u0001\u00b5\u0001\u00b5\u0001"+ - "\u00b5\u0001\u00b6\u0001\u00b6\u0001\u00b6\u0001\u00b6\u0001\u00b6\u0003"+ - "\u00b6\u073f\b\u00b6\u0003\u00b6\u0741\b\u00b6\u0001\u00b6\u0003\u00b6"+ - "\u0744\b\u00b6\u0001\u00b6\u0003\u00b6\u0747\b\u00b6\u0003\u00b6\u0749"+ - "\b\u00b6\u0001\u00b6\u0001\u00b6\u0001\u00b7\u0001\u00b7\u0001\u00b7\u0001"+ - "\u00b7\u0001\u00b8\u0001\u00b8\u0001\u00b9\u0001\u00b9\u0001\u00b9\u0001"+ - "\u00b9\u0003\u00b9\u0757\b\u00b9\u0001\u00b9\u0001\u02fa\u0002\u00a6\u00b6"+ - "\u00ba\u0000\u0002\u0004\u0006\b\n\f\u000e\u0010\u0012\u0014\u0016\u0018"+ + "T\u0001T\u0001T\u0001T\u0001T\u0005T\u044c\bT\nT\fT\u044f\tT\u0001U\u0001"+ + "U\u0001U\u0001U\u0001U\u0001U\u0001U\u0001U\u0001U\u0001U\u0001U\u0001"+ + "U\u0001U\u0001U\u0001U\u0001U\u0001U\u0001U\u0001U\u0001U\u0003U\u0465"+ + "\bU\u0001V\u0001V\u0001V\u0001W\u0001W\u0001W\u0003W\u046d\bW\u0001X\u0001"+ + "X\u0001X\u0001Y\u0001Y\u0001Y\u0001Y\u0005Y\u0476\bY\nY\fY\u0479\tY\u0001"+ + "Y\u0001Y\u0001Y\u0001Y\u0003Y\u047f\bY\u0001Z\u0001Z\u0001Z\u0001Z\u0001"+ + "Z\u0003Z\u0486\bZ\u0001[\u0001[\u0001[\u0001[\u0001[\u0001[\u0001[\u0001"+ + "[\u0003[\u0490\b[\u0001\\\u0001\\\u0001\\\u0001\\\u0001\\\u0001\\\u0001"+ + "\\\u0001\\\u0001\\\u0001\\\u0001\\\u0001\\\u0001\\\u0001\\\u0001\\\u0001"+ + "\\\u0003\\\u04a2\b\\\u0001\\\u0001\\\u0001\\\u0001\\\u0001\\\u0001\\\u0001"+ + "\\\u0001\\\u0001\\\u0001\\\u0001\\\u0001\\\u0001\\\u0001\\\u0001\\\u0001"+ + "\\\u0001\\\u0001\\\u0001\\\u0001\\\u0005\\\u04b8\b\\\n\\\f\\\u04bb\t\\"+ + "\u0001]\u0001]\u0001]\u0001^\u0001^\u0003^\u04c2\b^\u0001^\u0001^\u0003"+ + "^\u04c6\b^\u0001_\u0001_\u0003_\u04ca\b_\u0001_\u0003_\u04cd\b_\u0001"+ + "_\u0001_\u0001`\u0001`\u0001`\u0001`\u0001`\u0003`\u04d6\b`\u0001`\u0001"+ + "`\u0005`\u04da\b`\n`\f`\u04dd\t`\u0001`\u0001`\u0001a\u0001a\u0001a\u0001"+ + "a\u0001b\u0003b\u04e6\bb\u0001b\u0001b\u0001b\u0001b\u0001b\u0001b\u0003"+ + "b\u04ee\bb\u0001b\u0001b\u0001b\u0001b\u0003b\u04f4\bb\u0001c\u0001c\u0001"+ + "c\u0001c\u0001c\u0001c\u0001c\u0003c\u04fd\bc\u0001d\u0001d\u0001d\u0001"+ + "d\u0001d\u0001d\u0001d\u0001d\u0001d\u0003d\u0508\bd\u0001e\u0001e\u0001"+ + "e\u0001f\u0001f\u0001f\u0001f\u0005f\u0511\bf\nf\ff\u0514\tf\u0001f\u0003"+ + "f\u0517\bf\u0003f\u0519\bf\u0001f\u0001f\u0001g\u0001g\u0001g\u0001g\u0001"+ + "g\u0001g\u0001g\u0003g\u0524\bg\u0001h\u0001h\u0001h\u0001h\u0001h\u0001"+ + "i\u0001i\u0003i\u052d\bi\u0001i\u0001i\u0003i\u0531\bi\u0001i\u0003i\u0534"+ + "\bi\u0001i\u0001i\u0001i\u0001i\u0001i\u0003i\u053b\bi\u0001i\u0001i\u0001"+ + "j\u0001j\u0001k\u0001k\u0001l\u0001l\u0001m\u0003m\u0546\bm\u0001m\u0001"+ + "m\u0001n\u0001n\u0001n\u0001n\u0001n\u0001n\u0003n\u0550\bn\u0001n\u0001"+ + "n\u0001n\u0001n\u0003n\u0556\bn\u0003n\u0558\bn\u0001o\u0001o\u0001o\u0001"+ + "p\u0001p\u0001q\u0001q\u0001q\u0003q\u0562\bq\u0001r\u0001r\u0001r\u0001"+ + "r\u0001r\u0001r\u0005r\u056a\br\nr\fr\u056d\tr\u0001r\u0003r\u0570\br"+ + "\u0001s\u0001s\u0003s\u0574\bs\u0001s\u0001s\u0003s\u0578\bs\u0001t\u0001"+ + "t\u0001t\u0005t\u057d\bt\nt\ft\u0580\tt\u0001u\u0001u\u0001u\u0005u\u0585"+ + "\bu\nu\fu\u0588\tu\u0001v\u0001v\u0001v\u0001v\u0001v\u0001v\u0005v\u0590"+ + "\bv\nv\fv\u0593\tv\u0001v\u0003v\u0596\bv\u0001w\u0001w\u0003w\u059a\b"+ + "w\u0001w\u0001w\u0001x\u0001x\u0001x\u0001x\u0001x\u0001x\u0005x\u05a4"+ + "\bx\nx\fx\u05a7\tx\u0001x\u0003x\u05aa\bx\u0001y\u0001y\u0003y\u05ae\b"+ + "y\u0001y\u0001y\u0001z\u0003z\u05b3\bz\u0001z\u0003z\u05b6\bz\u0001z\u0003"+ + "z\u05b9\bz\u0001z\u0001z\u0001z\u0004z\u05be\bz\u000bz\fz\u05bf\u0001"+ + "{\u0001{\u0001{\u0001{\u0001{\u0003{\u05c7\b{\u0001|\u0001|\u0001}\u0001"+ + "}\u0001}\u0001}\u0001~\u0001~\u0001~\u0001\u007f\u0001\u007f\u0001\u007f"+ + "\u0001\u007f\u0001\u0080\u0001\u0080\u0001\u0081\u0001\u0081\u0001\u0081"+ + "\u0003\u0081\u05db\b\u0081\u0001\u0082\u0001\u0082\u0003\u0082\u05df\b"+ + "\u0082\u0001\u0083\u0001\u0083\u0003\u0083\u05e3\b\u0083\u0001\u0084\u0001"+ + "\u0084\u0003\u0084\u05e7\b\u0084\u0001\u0085\u0001\u0085\u0001\u0085\u0001"+ + "\u0086\u0001\u0086\u0001\u0087\u0001\u0087\u0001\u0087\u0001\u0087\u0001"+ + "\u0087\u0001\u0087\u0001\u0087\u0001\u0087\u0001\u0087\u0003\u0087\u05f7"+ + "\b\u0087\u0001\u0087\u0001\u0087\u0001\u0087\u0001\u0087\u0003\u0087\u05fd"+ + "\b\u0087\u0003\u0087\u05ff\b\u0087\u0001\u0088\u0001\u0088\u0003\u0088"+ + "\u0603\b\u0088\u0001\u0089\u0001\u0089\u0003\u0089\u0607\b\u0089\u0001"+ + "\u0089\u0003\u0089\u060a\b\u0089\u0001\u0089\u0001\u0089\u0003\u0089\u060e"+ + "\b\u0089\u0003\u0089\u0610\b\u0089\u0001\u0089\u0001\u0089\u0005\u0089"+ + "\u0614\b\u0089\n\u0089\f\u0089\u0617\t\u0089\u0001\u0089\u0001\u0089\u0001"+ + "\u008a\u0001\u008a\u0001\u008a\u0003\u008a\u061e\b\u008a\u0001\u008b\u0001"+ + "\u008b\u0001\u008b\u0003\u008b\u0623\b\u008b\u0001\u008c\u0001\u008c\u0001"+ + "\u008c\u0001\u008c\u0001\u008c\u0001\u008c\u0001\u008c\u0001\u008c\u0001"+ + "\u008c\u0003\u008c\u062e\b\u008c\u0001\u008c\u0001\u008c\u0005\u008c\u0632"+ + "\b\u008c\n\u008c\f\u008c\u0635\t\u008c\u0001\u008c\u0001\u008c\u0001\u008d"+ + "\u0001\u008d\u0003\u008d\u063b\b\u008d\u0001\u008d\u0001\u008d\u0001\u008d"+ + "\u0001\u008d\u0001\u008d\u0001\u008d\u0001\u008e\u0001\u008e\u0001\u008e"+ + "\u0003\u008e\u0646\b\u008e\u0001\u008f\u0001\u008f\u0001\u008f\u0003\u008f"+ + "\u064b\b\u008f\u0001\u0090\u0001\u0090\u0003\u0090\u064f\b\u0090\u0001"+ + "\u0090\u0001\u0090\u0001\u0090\u0003\u0090\u0654\b\u0090\u0005\u0090\u0656"+ + "\b\u0090\n\u0090\f\u0090\u0659\t\u0090\u0001\u0091\u0001\u0091\u0001\u0091"+ + "\u0005\u0091\u065e\b\u0091\n\u0091\f\u0091\u0661\t\u0091\u0001\u0091\u0001"+ + "\u0091\u0001\u0092\u0001\u0092\u0001\u0092\u0003\u0092\u0668\b\u0092\u0001"+ + "\u0093\u0001\u0093\u0001\u0093\u0003\u0093\u066d\b\u0093\u0001\u0093\u0003"+ + "\u0093\u0670\b\u0093\u0001\u0094\u0001\u0094\u0001\u0094\u0001\u0094\u0001"+ + "\u0094\u0001\u0094\u0003\u0094\u0678\b\u0094\u0001\u0094\u0001\u0094\u0001"+ + "\u0095\u0001\u0095\u0003\u0095\u067e\b\u0095\u0001\u0095\u0001\u0095\u0003"+ + "\u0095\u0682\b\u0095\u0003\u0095\u0684\b\u0095\u0001\u0095\u0001\u0095"+ + "\u0001\u0096\u0003\u0096\u0689\b\u0096\u0001\u0096\u0001\u0096\u0003\u0096"+ + "\u068d\b\u0096\u0001\u0096\u0001\u0096\u0003\u0096\u0691\b\u0096\u0001"+ + "\u0097\u0001\u0097\u0001\u0097\u0001\u0098\u0001\u0098\u0003\u0098\u0698"+ + "\b\u0098\u0001\u0099\u0001\u0099\u0001\u0099\u0001\u0099\u0001\u0099\u0001"+ + "\u009a\u0001\u009a\u0001\u009b\u0001\u009b\u0001\u009c\u0001\u009c\u0001"+ + "\u009c\u0001\u009d\u0001\u009d\u0001\u009d\u0001\u009d\u0001\u009e\u0001"+ + "\u009e\u0001\u009e\u0001\u009e\u0001\u009e\u0001\u009e\u0001\u009f\u0001"+ + "\u009f\u0001\u009f\u0001\u009f\u0001\u009f\u0003\u009f\u06b5\b\u009f\u0001"+ + "\u009f\u0001\u009f\u0001\u00a0\u0001\u00a0\u0001\u00a0\u0001\u00a1\u0001"+ + "\u00a1\u0001\u00a1\u0001\u00a1\u0003\u00a1\u06c0\b\u00a1\u0001\u00a2\u0001"+ + "\u00a2\u0003\u00a2\u06c4\b\u00a2\u0001\u00a3\u0001\u00a3\u0001\u00a3\u0001"+ + "\u00a3\u0005\u00a3\u06ca\b\u00a3\n\u00a3\f\u00a3\u06cd\t\u00a3\u0001\u00a3"+ + "\u0003\u00a3\u06d0\b\u00a3\u0003\u00a3\u06d2\b\u00a3\u0001\u00a3\u0001"+ + "\u00a3\u0001\u00a4\u0001\u00a4\u0001\u00a4\u0001\u00a4\u0003\u00a4\u06da"+ + "\b\u00a4\u0001\u00a4\u0001\u00a4\u0001\u00a5\u0001\u00a5\u0001\u00a5\u0001"+ + "\u00a5\u0001\u00a5\u0003\u00a5\u06e3\b\u00a5\u0001\u00a6\u0001\u00a6\u0001"+ + "\u00a6\u0001\u00a6\u0001\u00a6\u0001\u00a6\u0003\u00a6\u06eb\b\u00a6\u0001"+ + "\u00a7\u0001\u00a7\u0001\u00a7\u0003\u00a7\u06f0\b\u00a7\u0001\u00a8\u0001"+ + "\u00a8\u0001\u00a9\u0001\u00a9\u0001\u00aa\u0001\u00aa\u0001\u00aa\u0001"+ + "\u00aa\u0001\u00ab\u0001\u00ab\u0001\u00ab\u0001\u00ac\u0001\u00ac\u0001"+ + "\u00ac\u0003\u00ac\u0700\b\u00ac\u0003\u00ac\u0702\b\u00ac\u0001\u00ac"+ + "\u0001\u00ac\u0001\u00ad\u0001\u00ad\u0001\u00ad\u0005\u00ad\u0709\b\u00ad"+ + "\n\u00ad\f\u00ad\u070c\t\u00ad\u0001\u00ae\u0001\u00ae\u0001\u00ae\u0003"+ + "\u00ae\u0711\b\u00ae\u0001\u00ae\u0001\u00ae\u0001\u00af\u0001\u00af\u0003"+ + "\u00af\u0717\b\u00af\u0001\u00b0\u0001\u00b0\u0003\u00b0\u071b\b\u00b0"+ + "\u0001\u00b1\u0001\u00b1\u0001\u00b1\u0001\u00b1\u0001\u00b1\u0005\u00b1"+ + "\u0722\b\u00b1\n\u00b1\f\u00b1\u0725\t\u00b1\u0001\u00b1\u0001\u00b1\u0001"+ + "\u00b2\u0001\u00b2\u0001\u00b2\u0001\u00b2\u0003\u00b2\u072d\b\u00b2\u0001"+ + "\u00b2\u0003\u00b2\u0730\b\u00b2\u0001\u00b3\u0001\u00b3\u0001\u00b4\u0003"+ + "\u00b4\u0735\b\u00b4\u0001\u00b4\u0001\u00b4\u0001\u00b5\u0001\u00b5\u0001"+ + "\u00b5\u0001\u00b5\u0001\u00b6\u0001\u00b6\u0001\u00b6\u0001\u00b6\u0001"+ + "\u00b6\u0001\u00b7\u0001\u00b7\u0001\u00b7\u0001\u00b7\u0001\u00b7\u0003"+ + "\u00b7\u0747\b\u00b7\u0003\u00b7\u0749\b\u00b7\u0001\u00b7\u0003\u00b7"+ + "\u074c\b\u00b7\u0001\u00b7\u0003\u00b7\u074f\b\u00b7\u0003\u00b7\u0751"+ + "\b\u00b7\u0001\u00b7\u0001\u00b7\u0001\u00b8\u0001\u00b8\u0001\u00b8\u0001"+ + "\u00b8\u0001\u00b9\u0001\u00b9\u0001\u00ba\u0001\u00ba\u0001\u00ba\u0001"+ + "\u00ba\u0003\u00ba\u075f\b\u00ba\u0001\u00ba\u0001\u0302\u0002\u00a8\u00b8"+ + "\u00bb\u0000\u0002\u0004\u0006\b\n\f\u000e\u0010\u0012\u0014\u0016\u0018"+ "\u001a\u001c\u001e \"$&(*,.02468:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080"+ "\u0082\u0084\u0086\u0088\u008a\u008c\u008e\u0090\u0092\u0094\u0096\u0098"+ "\u009a\u009c\u009e\u00a0\u00a2\u00a4\u00a6\u00a8\u00aa\u00ac\u00ae\u00b0"+ @@ -13641,963 +13706,967 @@ private boolean eos_sempred(EosContext _localctx, int predIndex) { "\u012a\u012c\u012e\u0130\u0132\u0134\u0136\u0138\u013a\u013c\u013e\u0140"+ "\u0142\u0144\u0146\u0148\u014a\u014c\u014e\u0150\u0152\u0154\u0156\u0158"+ "\u015a\u015c\u015e\u0160\u0162\u0164\u0166\u0168\u016a\u016c\u016e\u0170"+ - "\u0172\u0000\u0013\u0002\u0000ggrr\u0001\u0000\u0017\u0018\u0001\u0000"+ - "\u0005\b\u0001\u0000AB\u0001\u0000(*\u0002\u0000(*,,\u0001\u0000\u0085"+ - "\u008b\u0001\u0000\u0014\u0015\u0002\u0000\u0080\u0084\u0089\u008a\u0004"+ - "\u0000##ss\u007f\u007f\u0086\u0088\u0001\u0000\u001f!\u0001\u0000\u001c"+ - "\u001e\u0002\u0000HIy~\u0004\u0000--0033__\u0002\u0000\u007f\u0084\u0086"+ - "\u008a\u0001\u0000st\u0002\u0000pp\u00a1\u00a1\u0002\u0000\u008c\u008f"+ - "\u0091\u0092\u0001\u0000\u0098\u0099\u07c4\u0000\u0174\u0001\u0000\u0000"+ - "\u0000\u0002\u0177\u0001\u0000\u0000\u0000\u0004\u017a\u0001\u0000\u0000"+ - "\u0000\u0006\u017d\u0001\u0000\u0000\u0000\b\u0185\u0001\u0000\u0000\u0000"+ - "\n\u018e\u0001\u0000\u0000\u0000\f\u01ae\u0001\u0000\u0000\u0000\u000e"+ - "\u01bb\u0001\u0000\u0000\u0000\u0010\u01be\u0001\u0000\u0000\u0000\u0012"+ - "\u01c6\u0001\u0000\u0000\u0000\u0014\u01d3\u0001\u0000\u0000\u0000\u0016"+ - "\u01e9\u0001\u0000\u0000\u0000\u0018\u01f2\u0001\u0000\u0000\u0000\u001a"+ - "\u01f4\u0001\u0000\u0000\u0000\u001c\u01f6\u0001\u0000\u0000\u0000\u001e"+ - "\u01f9\u0001\u0000\u0000\u0000 \u020d\u0001\u0000\u0000\u0000\"\u020f"+ - "\u0001\u0000\u0000\u0000$\u0211\u0001\u0000\u0000\u0000&\u0216\u0001\u0000"+ - "\u0000\u0000(\u0221\u0001\u0000\u0000\u0000*\u022e\u0001\u0000\u0000\u0000"+ - ",\u0231\u0001\u0000\u0000\u0000.\u023c\u0001\u0000\u0000\u00000\u023e"+ - "\u0001\u0000\u0000\u00002\u0243\u0001\u0000\u0000\u00004\u0248\u0001\u0000"+ - "\u0000\u00006\u024d\u0001\u0000\u0000\u00008\u0252\u0001\u0000\u0000\u0000"+ - ":\u025f\u0001\u0000\u0000\u0000<\u0261\u0001\u0000\u0000\u0000>\u0263"+ - "\u0001\u0000\u0000\u0000@\u0268\u0001\u0000\u0000\u0000B\u026d\u0001\u0000"+ - "\u0000\u0000D\u0272\u0001\u0000\u0000\u0000F\u027b\u0001\u0000\u0000\u0000"+ - "H\u0282\u0001\u0000\u0000\u0000J\u028f\u0001\u0000\u0000\u0000L\u0293"+ - "\u0001\u0000\u0000\u0000N\u029e\u0001\u0000\u0000\u0000P\u02a6\u0001\u0000"+ - "\u0000\u0000R\u02a8\u0001\u0000\u0000\u0000T\u02bd\u0001\u0000\u0000\u0000"+ - "V\u02bf\u0001\u0000\u0000\u0000X\u02cb\u0001\u0000\u0000\u0000Z\u02d8"+ - "\u0001\u0000\u0000\u0000\\\u02dc\u0001\u0000\u0000\u0000^\u02ec\u0001"+ - "\u0000\u0000\u0000`\u02fa\u0001\u0000\u0000\u0000b\u0309\u0001\u0000\u0000"+ - "\u0000d\u030c\u0001\u0000\u0000\u0000f\u0314\u0001\u0000\u0000\u0000h"+ - "\u0316\u0001\u0000\u0000\u0000j\u0321\u0001\u0000\u0000\u0000l\u0329\u0001"+ - "\u0000\u0000\u0000n\u0338\u0001\u0000\u0000\u0000p\u033a\u0001\u0000\u0000"+ - "\u0000r\u0342\u0001\u0000\u0000\u0000t\u0350\u0001\u0000\u0000\u0000v"+ - "\u035c\u0001\u0000\u0000\u0000x\u0366\u0001\u0000\u0000\u0000z\u036a\u0001"+ - "\u0000\u0000\u0000|\u0370\u0001\u0000\u0000\u0000~\u0388\u0001\u0000\u0000"+ - "\u0000\u0080\u0390\u0001\u0000\u0000\u0000\u0082\u039f\u0001\u0000\u0000"+ - "\u0000\u0084\u03a1\u0001\u0000\u0000\u0000\u0086\u03a8\u0001\u0000\u0000"+ - "\u0000\u0088\u03b1\u0001\u0000\u0000\u0000\u008a\u03b6\u0001\u0000\u0000"+ - "\u0000\u008c\u03bb\u0001\u0000\u0000\u0000\u008e\u03c1\u0001\u0000\u0000"+ - "\u0000\u0090\u03c8\u0001\u0000\u0000\u0000\u0092\u03cd\u0001\u0000\u0000"+ - "\u0000\u0094\u03d3\u0001\u0000\u0000\u0000\u0096\u03d8\u0001\u0000\u0000"+ - "\u0000\u0098\u03df\u0001\u0000\u0000\u0000\u009a\u03e9\u0001\u0000\u0000"+ - "\u0000\u009c\u03ed\u0001\u0000\u0000\u0000\u009e\u03f9\u0001\u0000\u0000"+ - "\u0000\u00a0\u03fc\u0001\u0000\u0000\u0000\u00a2\u0400\u0001\u0000\u0000"+ - "\u0000\u00a4\u0407\u0001\u0000\u0000\u0000\u00a6\u0420\u0001\u0000\u0000"+ - "\u0000\u00a8\u045c\u0001\u0000\u0000\u0000\u00aa\u045e\u0001\u0000\u0000"+ - "\u0000\u00ac\u0461\u0001\u0000\u0000\u0000\u00ae\u0466\u0001\u0000\u0000"+ - "\u0000\u00b0\u046f\u0001\u0000\u0000\u0000\u00b2\u047d\u0001\u0000\u0000"+ - "\u0000\u00b4\u0487\u0001\u0000\u0000\u0000\u00b6\u0499\u0001\u0000\u0000"+ - "\u0000\u00b8\u04b4\u0001\u0000\u0000\u0000\u00ba\u04b7\u0001\u0000\u0000"+ - "\u0000\u00bc\u04bf\u0001\u0000\u0000\u0000\u00be\u04c8\u0001\u0000\u0000"+ - "\u0000\u00c0\u04d8\u0001\u0000\u0000\u0000\u00c2\u04eb\u0001\u0000\u0000"+ - "\u0000\u00c4\u04f4\u0001\u0000\u0000\u0000\u00c6\u04ff\u0001\u0000\u0000"+ - "\u0000\u00c8\u0501\u0001\u0000\u0000\u0000\u00ca\u0504\u0001\u0000\u0000"+ - "\u0000\u00cc\u051b\u0001\u0000\u0000\u0000\u00ce\u051d\u0001\u0000\u0000"+ - "\u0000\u00d0\u0522\u0001\u0000\u0000\u0000\u00d2\u0536\u0001\u0000\u0000"+ - "\u0000\u00d4\u0538\u0001\u0000\u0000\u0000\u00d6\u053a\u0001\u0000\u0000"+ - "\u0000\u00d8\u053d\u0001\u0000\u0000\u0000\u00da\u0547\u0001\u0000\u0000"+ - "\u0000\u00dc\u0551\u0001\u0000\u0000\u0000\u00de\u0554\u0001\u0000\u0000"+ - "\u0000\u00e0\u0559\u0001\u0000\u0000\u0000\u00e2\u055b\u0001\u0000\u0000"+ - "\u0000\u00e4\u0569\u0001\u0000\u0000\u0000\u00e6\u0571\u0001\u0000\u0000"+ - "\u0000\u00e8\u0579\u0001\u0000\u0000\u0000\u00ea\u0581\u0001\u0000\u0000"+ - "\u0000\u00ec\u058f\u0001\u0000\u0000\u0000\u00ee\u0595\u0001\u0000\u0000"+ - "\u0000\u00f0\u05a3\u0001\u0000\u0000\u0000\u00f2\u05b5\u0001\u0000\u0000"+ - "\u0000\u00f4\u05be\u0001\u0000\u0000\u0000\u00f6\u05c0\u0001\u0000\u0000"+ - "\u0000\u00f8\u05c2\u0001\u0000\u0000\u0000\u00fa\u05c6\u0001\u0000\u0000"+ - "\u0000\u00fc\u05c9\u0001\u0000\u0000\u0000\u00fe\u05cd\u0001\u0000\u0000"+ - "\u0000\u0100\u05cf\u0001\u0000\u0000\u0000\u0102\u05d4\u0001\u0000\u0000"+ - "\u0000\u0104\u05d8\u0001\u0000\u0000\u0000\u0106\u05dc\u0001\u0000\u0000"+ - "\u0000\u0108\u05e0\u0001\u0000\u0000\u0000\u010a\u05e3\u0001\u0000\u0000"+ - "\u0000\u010c\u05e5\u0001\u0000\u0000\u0000\u010e\u05fa\u0001\u0000\u0000"+ - "\u0000\u0110\u05fc\u0001\u0000\u0000\u0000\u0112\u0612\u0001\u0000\u0000"+ - "\u0000\u0114\u061a\u0001\u0000\u0000\u0000\u0116\u061c\u0001\u0000\u0000"+ - "\u0000\u0118\u0632\u0001\u0000\u0000\u0000\u011a\u063a\u0001\u0000\u0000"+ - "\u0000\u011c\u0642\u0001\u0000\u0000\u0000\u011e\u0646\u0001\u0000\u0000"+ - "\u0000\u0120\u0652\u0001\u0000\u0000\u0000\u0122\u065c\u0001\u0000\u0000"+ - "\u0000\u0124\u0667\u0001\u0000\u0000\u0000\u0126\u066f\u0001\u0000\u0000"+ - "\u0000\u0128\u0673\u0001\u0000\u0000\u0000\u012a\u0680\u0001\u0000\u0000"+ - "\u0000\u012c\u068a\u0001\u0000\u0000\u0000\u012e\u068f\u0001\u0000\u0000"+ - "\u0000\u0130\u0691\u0001\u0000\u0000\u0000\u0132\u0696\u0001\u0000\u0000"+ - "\u0000\u0134\u0698\u0001\u0000\u0000\u0000\u0136\u069a\u0001\u0000\u0000"+ - "\u0000\u0138\u069d\u0001\u0000\u0000\u0000\u013a\u06a1\u0001\u0000\u0000"+ - "\u0000\u013c\u06ac\u0001\u0000\u0000\u0000\u013e\u06b0\u0001\u0000\u0000"+ - "\u0000\u0140\u06b7\u0001\u0000\u0000\u0000\u0142\u06bb\u0001\u0000\u0000"+ - "\u0000\u0144\u06bd\u0001\u0000\u0000\u0000\u0146\u06cd\u0001\u0000\u0000"+ - "\u0000\u0148\u06da\u0001\u0000\u0000\u0000\u014a\u06e2\u0001\u0000\u0000"+ - "\u0000\u014c\u06e7\u0001\u0000\u0000\u0000\u014e\u06e9\u0001\u0000\u0000"+ - "\u0000\u0150\u06eb\u0001\u0000\u0000\u0000\u0152\u06ed\u0001\u0000\u0000"+ - "\u0000\u0154\u06f1\u0001\u0000\u0000\u0000\u0156\u06f4\u0001\u0000\u0000"+ - "\u0000\u0158\u06fd\u0001\u0000\u0000\u0000\u015a\u0708\u0001\u0000\u0000"+ - "\u0000\u015c\u070e\u0001\u0000\u0000\u0000\u015e\u0712\u0001\u0000\u0000"+ - "\u0000\u0160\u0714\u0001\u0000\u0000\u0000\u0162\u0724\u0001\u0000\u0000"+ - "\u0000\u0164\u0729\u0001\u0000\u0000\u0000\u0166\u072c\u0001\u0000\u0000"+ - "\u0000\u0168\u0730\u0001\u0000\u0000\u0000\u016a\u0734\u0001\u0000\u0000"+ - "\u0000\u016c\u0739\u0001\u0000\u0000\u0000\u016e\u074c\u0001\u0000\u0000"+ - "\u0000\u0170\u0750\u0001\u0000\u0000\u0000\u0172\u0756\u0001\u0000\u0000"+ - "\u0000\u0174\u0175\u0003\u00a6S\u0000\u0175\u0176\u0005\u0000\u0000\u0001"+ - "\u0176\u0001\u0001\u0000\u0000\u0000\u0177\u0178\u0003\u00a8T\u0000\u0178"+ - "\u0179\u0005\u0000\u0000\u0001\u0179\u0003\u0001\u0000\u0000\u0000\u017a"+ - "\u017b\u0003\u00c4b\u0000\u017b\u017c\u0005\u0000\u0000\u0001\u017c\u0005"+ - "\u0001\u0000\u0000\u0000\u017d\u0182\u0003\b\u0004\u0000\u017e\u017f\u0005"+ - "o\u0000\u0000\u017f\u0181\u0003\b\u0004\u0000\u0180\u017e\u0001\u0000"+ - "\u0000\u0000\u0181\u0184\u0001\u0000\u0000\u0000\u0182\u0180\u0001\u0000"+ - "\u0000\u0000\u0182\u0183\u0001\u0000\u0000\u0000\u0183\u0007\u0001\u0000"+ - "\u0000\u0000\u0184\u0182\u0001\u0000\u0000\u0000\u0185\u0187\u0005g\u0000"+ - "\u0000\u0186\u0188\u0005<\u0000\u0000\u0187\u0186\u0001\u0000\u0000\u0000"+ - "\u0187\u0188\u0001\u0000\u0000\u0000\u0188\t\u0001\u0000\u0000\u0000\u0189"+ - "\u018a\u0003\u000e\u0007\u0000\u018a\u018b\u0003\u0172\u00b9\u0000\u018b"+ - "\u018d\u0001\u0000\u0000\u0000\u018c\u0189\u0001\u0000\u0000\u0000\u018d"+ - "\u0190\u0001\u0000\u0000\u0000\u018e\u018c\u0001\u0000\u0000\u0000\u018e"+ - "\u018f\u0001\u0000\u0000\u0000\u018f\u0191\u0001\u0000\u0000\u0000\u0190"+ - "\u018e\u0001\u0000\u0000\u0000\u0191\u0192\u0003\u00dcn\u0000\u0192\u0198"+ - "\u0003\u0172\u00b9\u0000\u0193\u0194\u0003\u0014\n\u0000\u0194\u0195\u0003"+ - "\u0172\u00b9\u0000\u0195\u0197\u0001\u0000\u0000\u0000\u0196\u0193\u0001"+ - "\u0000\u0000\u0000\u0197\u019a\u0001\u0000\u0000\u0000\u0198\u0196\u0001"+ - "\u0000\u0000\u0000\u0198\u0199\u0001\u0000\u0000\u0000\u0199\u01a4\u0001"+ - "\u0000\u0000\u0000\u019a\u0198\u0001\u0000\u0000\u0000\u019b\u019f\u0003"+ - "\u008aE\u0000\u019c\u019f\u0003\u00e0p\u0000\u019d\u019f\u0003\u0016\u000b"+ - "\u0000\u019e\u019b\u0001\u0000\u0000\u0000\u019e\u019c\u0001\u0000\u0000"+ - "\u0000\u019e\u019d\u0001\u0000\u0000\u0000\u019f\u01a0\u0001\u0000\u0000"+ - "\u0000\u01a0\u01a1\u0003\u0172\u00b9\u0000\u01a1\u01a3\u0001\u0000\u0000"+ - "\u0000\u01a2\u019e\u0001\u0000\u0000\u0000\u01a3\u01a6\u0001\u0000\u0000"+ - "\u0000\u01a4\u01a2\u0001\u0000\u0000\u0000\u01a4\u01a5\u0001\u0000\u0000"+ - "\u0000\u01a5\u01a7\u0001\u0000\u0000\u0000\u01a6\u01a4\u0001\u0000\u0000"+ - "\u0000\u01a7\u01a8\u0005\u0000\u0000\u0001\u01a8\u000b\u0001\u0000\u0000"+ - "\u0000\u01a9\u01aa\u0003\u000e\u0007\u0000\u01aa\u01ab\u0003\u0172\u00b9"+ - "\u0000\u01ab\u01ad\u0001\u0000\u0000\u0000\u01ac\u01a9\u0001\u0000\u0000"+ - "\u0000\u01ad\u01b0\u0001\u0000\u0000\u0000\u01ae\u01ac\u0001\u0000\u0000"+ - "\u0000\u01ae\u01af\u0001\u0000\u0000\u0000\u01af\u01b1\u0001\u0000\u0000"+ - "\u0000\u01b0\u01ae\u0001\u0000\u0000\u0000\u01b1\u01b2\u0003\u00dcn\u0000"+ - "\u01b2\u01b8\u0003\u0172\u00b9\u0000\u01b3\u01b4\u0003\u0014\n\u0000\u01b4"+ - "\u01b5\u0003\u0172\u00b9\u0000\u01b5\u01b7\u0001\u0000\u0000\u0000\u01b6"+ - "\u01b3\u0001\u0000\u0000\u0000\u01b7\u01ba\u0001\u0000\u0000\u0000\u01b8"+ - "\u01b6\u0001\u0000\u0000\u0000\u01b8\u01b9\u0001\u0000\u0000\u0000\u01b9"+ - "\r\u0001\u0000\u0000\u0000\u01ba\u01b8\u0001\u0000\u0000\u0000\u01bb\u01bc"+ - "\u0005E\u0000\u0000\u01bc\u01bd\u0003\u00a6S\u0000\u01bd\u000f\u0001\u0000"+ - "\u0000\u0000\u01be\u01bf\u0005F\u0000\u0000\u01bf\u01c0\u0003\u00a6S\u0000"+ - "\u01c0\u0011\u0001\u0000\u0000\u0000\u01c1\u01c2\u0003\u0010\b\u0000\u01c2"+ - "\u01c3\u0003\u0172\u00b9\u0000\u01c3\u01c5\u0001\u0000\u0000\u0000\u01c4"+ - "\u01c1\u0001\u0000\u0000\u0000\u01c5\u01c8\u0001\u0000\u0000\u0000\u01c6"+ - "\u01c4\u0001\u0000\u0000\u0000\u01c6\u01c7\u0001\u0000\u0000\u0000\u01c7"+ - "\u01ca\u0001\u0000\u0000\u0000\u01c8\u01c6\u0001\u0000\u0000\u0000\u01c9"+ - "\u01cb\u0007\u0000\u0000\u0000\u01ca\u01c9\u0001\u0000\u0000\u0000\u01ca"+ - "\u01cb\u0001\u0000\u0000\u0000\u01cb\u01cc\u0001\u0000\u0000\u0000\u01cc"+ - "\u01cd\u0003\u00deo\u0000\u01cd\u0013\u0001\u0000\u0000\u0000\u01ce\u01cf"+ - "\u0003\u0010\b\u0000\u01cf\u01d0\u0003\u0172\u00b9\u0000\u01d0\u01d2\u0001"+ - "\u0000\u0000\u0000\u01d1\u01ce\u0001\u0000\u0000\u0000\u01d2\u01d5\u0001"+ - "\u0000\u0000\u0000\u01d3\u01d1\u0001\u0000\u0000\u0000\u01d3\u01d4\u0001"+ - "\u0000\u0000\u0000\u01d4\u01e3\u0001\u0000\u0000\u0000\u01d5\u01d3\u0001"+ - "\u0000\u0000\u0000\u01d6\u01d7\u0005c\u0000\u0000\u01d7\u01e4\u0003\u0012"+ - "\t\u0000\u01d8\u01d9\u0005c\u0000\u0000\u01d9\u01df\u0005h\u0000\u0000"+ - "\u01da\u01db\u0003\u0012\t\u0000\u01db\u01dc\u0003\u0172\u00b9\u0000\u01dc"+ - "\u01de\u0001\u0000\u0000\u0000\u01dd\u01da\u0001\u0000\u0000\u0000\u01de"+ - "\u01e1\u0001\u0000\u0000\u0000\u01df\u01dd\u0001\u0000\u0000\u0000\u01df"+ - "\u01e0\u0001\u0000\u0000\u0000\u01e0\u01e2\u0001\u0000\u0000\u0000\u01e1"+ - "\u01df\u0001\u0000\u0000\u0000\u01e2\u01e4\u0005i\u0000\u0000\u01e3\u01d6"+ - "\u0001\u0000\u0000\u0000\u01e3\u01d8\u0001\u0000\u0000\u0000\u01e4\u0015"+ - "\u0001\u0000\u0000\u0000\u01e5\u01ea\u0003|>\u0000\u01e6\u01ea\u0003\u0092"+ - "I\u0000\u01e7\u01ea\u0003\u0096K\u0000\u01e8\u01ea\u0003\u0090H\u0000"+ - "\u01e9\u01e5\u0001\u0000\u0000\u0000\u01e9\u01e6\u0001\u0000\u0000\u0000"+ - "\u01e9\u01e7\u0001\u0000\u0000\u0000\u01e9\u01e8\u0001\u0000\u0000\u0000"+ - "\u01ea\u0017\u0001\u0000\u0000\u0000\u01eb\u01ec\u0005\u001b\u0000\u0000"+ - "\u01ec\u01f3\u0003\u00a8T\u0000\u01ed\u01ee\u0007\u0001\u0000\u0000\u01ee"+ - "\u01f3\u0003.\u0017\u0000\u01ef\u01f0\u0007\u0002\u0000\u0000\u01f0\u01f3"+ - "\u0003\u00a6S\u0000\u01f1\u01f3\u0003h4\u0000\u01f2\u01eb\u0001\u0000"+ - "\u0000\u0000\u01f2\u01ed\u0001\u0000\u0000\u0000\u01f2\u01ef\u0001\u0000"+ - "\u0000\u0000\u01f2\u01f1\u0001\u0000\u0000\u0000\u01f3\u0019\u0001\u0000"+ - "\u0000\u0000\u01f4\u01f5\u0003\u001c\u000e\u0000\u01f5\u001b\u0001\u0000"+ - "\u0000\u0000\u01f6\u01f7\u0003`0\u0000\u01f7\u01f8\u0003\u001e\u000f\u0000"+ - "\u01f8\u001d\u0001\u0000\u0000\u0000\u01f9\u01fa\u0005D\u0000\u0000\u01fa"+ - "\u01fc\u0005h\u0000\u0000\u01fb\u01fd\u0003\u00f2y\u0000\u01fc\u01fb\u0001"+ - "\u0000\u0000\u0000\u01fc\u01fd\u0001\u0000\u0000\u0000\u01fd\u01fe\u0001"+ - "\u0000\u0000\u0000\u01fe\u01ff\u0005i\u0000\u0000\u01ff\u001f\u0001\u0000"+ - "\u0000\u0000\u0200\u020e\u0003F#\u0000\u0201\u020e\u0003D\"\u0000\u0202"+ - "\u020e\u0003B!\u0000\u0203\u020e\u0003$\u0012\u0000\u0204\u020e\u0003"+ - "@ \u0000\u0205\u020e\u00038\u001c\u0000\u0206\u020e\u0003>\u001f\u0000"+ - "\u0207\u020e\u00036\u001b\u0000\u0208\u020e\u00032\u0019\u0000\u0209\u020e"+ - "\u00030\u0018\u0000\u020a\u020e\u00034\u001a\u0000\u020b\u020e\u0003\""+ - "\u0011\u0000\u020c\u020e\u0003H$\u0000\u020d\u0200\u0001\u0000\u0000\u0000"+ - "\u020d\u0201\u0001\u0000\u0000\u0000\u020d\u0202\u0001\u0000\u0000\u0000"+ - "\u020d\u0203\u0001\u0000\u0000\u0000\u020d\u0204\u0001\u0000\u0000\u0000"+ - "\u020d\u0205\u0001\u0000\u0000\u0000\u020d\u0206\u0001\u0000\u0000\u0000"+ - "\u020d\u0207\u0001\u0000\u0000\u0000\u020d\u0208\u0001\u0000\u0000\u0000"+ - "\u020d\u0209\u0001\u0000\u0000\u0000\u020d\u020a\u0001\u0000\u0000\u0000"+ - "\u020d\u020b\u0001\u0000\u0000\u0000\u020d\u020c\u0001\u0000\u0000\u0000"+ - "\u020e!\u0001\u0000\u0000\u0000\u020f\u0210\u0007\u0003\u0000\u0000\u0210"+ - "#\u0001\u0000\u0000\u0000\u0211\u0212\u0005`\u0000\u0000\u0212\u0213\u0005"+ - "l\u0000\u0000\u0213\u0214\u0003\u00c4b\u0000\u0214\u0215\u0005m\u0000"+ - "\u0000\u0215%\u0001\u0000\u0000\u0000\u0216\u021b\u0003(\u0014\u0000\u0217"+ - "\u0218\u0005o\u0000\u0000\u0218\u021a\u0003(\u0014\u0000\u0219\u0217\u0001"+ - "\u0000\u0000\u0000\u021a\u021d\u0001\u0000\u0000\u0000\u021b\u0219\u0001"+ - "\u0000\u0000\u0000\u021b\u021c\u0001\u0000\u0000\u0000\u021c\u021f\u0001"+ - "\u0000\u0000\u0000\u021d\u021b\u0001\u0000\u0000\u0000\u021e\u0220\u0005"+ - "o\u0000\u0000\u021f\u021e\u0001\u0000\u0000\u0000\u021f\u0220\u0001\u0000"+ - "\u0000\u0000\u0220\'\u0001\u0000\u0000\u0000\u0221\u0226\u0005g\u0000"+ - "\u0000\u0222\u0223\u0005o\u0000\u0000\u0223\u0225\u0005g\u0000\u0000\u0224"+ - "\u0222\u0001\u0000\u0000\u0000\u0225\u0228\u0001\u0000\u0000\u0000\u0226"+ - "\u0224\u0001\u0000\u0000\u0000\u0226\u0227\u0001\u0000\u0000\u0000\u0227"+ - "\u0229\u0001\u0000\u0000\u0000\u0228\u0226\u0001\u0000\u0000\u0000\u0229"+ - "\u022a\u0003\u0134\u009a\u0000\u022a)\u0001\u0000\u0000\u0000\u022b\u022d"+ - "\u0003,\u0016\u0000\u022c\u022b\u0001\u0000\u0000\u0000\u022d\u0230\u0001"+ - "\u0000\u0000\u0000\u022e\u022c\u0001\u0000\u0000\u0000\u022e\u022f\u0001"+ - "\u0000\u0000\u0000\u022f+\u0001\u0000\u0000\u0000\u0230\u022e\u0001\u0000"+ - "\u0000\u0000\u0231\u0232\u0005j\u0000\u0000\u0232\u0237\u0003\u00a6S\u0000"+ - "\u0233\u0234\u0005o\u0000\u0000\u0234\u0236\u0003\u00a6S\u0000\u0235\u0233"+ - "\u0001\u0000\u0000\u0000\u0236\u0239\u0001\u0000\u0000\u0000\u0237\u0235"+ - "\u0001\u0000\u0000\u0000\u0237\u0238\u0001\u0000\u0000\u0000\u0238\u023a"+ - "\u0001\u0000\u0000\u0000\u0239\u0237\u0001\u0000\u0000\u0000\u023a\u023b"+ - "\u0005k\u0000\u0000\u023b-\u0001\u0000\u0000\u0000\u023c\u023d\u0003\u00b6"+ - "[\u0000\u023d/\u0001\u0000\u0000\u0000\u023e\u023f\u00051\u0000\u0000"+ - "\u023f\u0240\u0005h\u0000\u0000\u0240\u0241\u0003\u00a6S\u0000\u0241\u0242"+ - "\u0005i\u0000\u0000\u02421\u0001\u0000\u0000\u0000\u0243\u0244\u00057"+ - "\u0000\u0000\u0244\u0245\u0005l\u0000\u0000\u0245\u0246\u0003\u00c4b\u0000"+ - "\u0246\u0247\u0005m\u0000\u0000\u02473\u0001\u0000\u0000\u0000\u0248\u0249"+ - "\u00052\u0000\u0000\u0249\u024a\u0005h\u0000\u0000\u024a\u024b\u0003\u00a6"+ - "S\u0000\u024b\u024c\u0005i\u0000\u0000\u024c5\u0001\u0000\u0000\u0000"+ - "\u024d\u024e\u0007\u0004\u0000\u0000\u024e\u024f\u0005h\u0000\u0000\u024f"+ - "\u0250\u0003\u00a6S\u0000\u0250\u0251\u0005i\u0000\u0000\u02517\u0001"+ - "\u0000\u0000\u0000\u0252\u0257\u0005\u0011\u0000\u0000\u0253\u0254\u0005"+ - "l\u0000\u0000\u0254\u0255\u0003:\u001d\u0000\u0255\u0256\u0005m\u0000"+ - "\u0000\u0256\u0258\u0001\u0000\u0000\u0000\u0257\u0253\u0001\u0000\u0000"+ - "\u0000\u0257\u0258\u0001\u0000\u0000\u0000\u0258\u0259\u0001\u0000\u0000"+ - "\u0000\u0259\u025a\u0005h\u0000\u0000\u025a\u025b\u0003\u00a6S\u0000\u025b"+ - "\u025c\u0005i\u0000\u0000\u025c9\u0001\u0000\u0000\u0000\u025d\u0260\u0003"+ - "<\u001e\u0000\u025e\u0260\u0005\u0013\u0000\u0000\u025f\u025d\u0001\u0000"+ - "\u0000\u0000\u025f\u025e\u0001\u0000\u0000\u0000\u0260;\u0001\u0000\u0000"+ - "\u0000\u0261\u0262\u0005g\u0000\u0000\u0262=\u0001\u0000\u0000\u0000\u0263"+ - "\u0264\u0005\u0012\u0000\u0000\u0264\u0265\u0005h\u0000\u0000\u0265\u0266"+ - "\u0003\u00a6S\u0000\u0266\u0267\u0005i\u0000\u0000\u0267?\u0001\u0000"+ - "\u0000\u0000\u0268\u0269\u0005:\u0000\u0000\u0269\u026a\u0005h\u0000\u0000"+ - "\u026a\u026b\u0003\u00a6S\u0000\u026b\u026c\u0005i\u0000\u0000\u026cA"+ - "\u0001\u0000\u0000\u0000\u026d\u026e\u00059\u0000\u0000\u026e\u026f\u0005"+ - "h\u0000\u0000\u026f\u0270\u0003\u00a6S\u0000\u0270\u0271\u0005i\u0000"+ - "\u0000\u0271C\u0001\u0000\u0000\u0000\u0272\u0273\u0005\u0016\u0000\u0000"+ - "\u0273\u0274\u0005h\u0000\u0000\u0274\u0277\u0003\u00a6S\u0000\u0275\u0276"+ - "\u0005o\u0000\u0000\u0276\u0278\u0003\u00a6S\u0000\u0277\u0275\u0001\u0000"+ - "\u0000\u0000\u0277\u0278\u0001\u0000\u0000\u0000\u0278\u0279\u0001\u0000"+ - "\u0000\u0000\u0279\u027a\u0005i\u0000\u0000\u027aE\u0001\u0000\u0000\u0000"+ - "\u027b\u027c\u0007\u0004\u0000\u0000\u027c\u027d\u0005l\u0000\u0000\u027d"+ - "\u027e\u0003\u00a6S\u0000\u027e\u027f\u0005=\u0000\u0000\u027f\u0280\u0003"+ - "\u00a6S\u0000\u0280\u0281\u0005m\u0000\u0000\u0281G\u0001\u0000\u0000"+ - "\u0000\u0282\u0283\u00056\u0000\u0000\u0283\u0284\u0003\u00a6S\u0000\u0284"+ - "\u028a\u0005j\u0000\u0000\u0285\u0286\u0003J%\u0000\u0286\u0287\u0003"+ - "\u0172\u00b9\u0000\u0287\u0289\u0001\u0000\u0000\u0000\u0288\u0285\u0001"+ - "\u0000\u0000\u0000\u0289\u028c\u0001\u0000\u0000\u0000\u028a\u0288\u0001"+ - "\u0000\u0000\u0000\u028a\u028b\u0001\u0000\u0000\u0000\u028b\u028d\u0001"+ - "\u0000\u0000\u0000\u028c\u028a\u0001\u0000\u0000\u0000\u028d\u028e\u0005"+ - "k\u0000\u0000\u028eI\u0001\u0000\u0000\u0000\u028f\u0290\u0003l6\u0000"+ - "\u0290\u0291\u0005q\u0000\u0000\u0291\u0292\u0003\u00a6S\u0000\u0292K"+ - "\u0001\u0000\u0000\u0000\u0293\u0294\u0005l\u0000\u0000\u0294\u0299\u0003"+ - "N\'\u0000\u0295\u0296\u0005o\u0000\u0000\u0296\u0298\u0003N\'\u0000\u0297"+ - "\u0295\u0001\u0000\u0000\u0000\u0298\u029b\u0001\u0000\u0000\u0000\u0299"+ - "\u0297\u0001\u0000\u0000\u0000\u0299\u029a\u0001\u0000\u0000\u0000\u029a"+ - "\u029c\u0001\u0000\u0000\u0000\u029b\u0299\u0001\u0000\u0000\u0000\u029c"+ - "\u029d\u0005m\u0000\u0000\u029dM\u0001\u0000\u0000\u0000\u029e\u029f\u0003"+ - "\u00a6S\u0000\u029f\u02a0\u0005n\u0000\u0000\u02a0\u02a1\u0003\u00a6S"+ - "\u0000\u02a1O\u0001\u0000\u0000\u0000\u02a2\u02a7\u0003^/\u0000\u02a3"+ - "\u02a7\u0003\\.\u0000\u02a4\u02a7\u0003R)\u0000\u02a5\u02a7\u0003V+\u0000"+ - "\u02a6\u02a2\u0001\u0000\u0000\u0000\u02a6\u02a3\u0001\u0000\u0000\u0000"+ - "\u02a6\u02a4\u0001\u0000\u0000\u0000\u02a6\u02a5\u0001\u0000\u0000\u0000"+ - "\u02a7Q\u0001\u0000\u0000\u0000\u02a8\u02a9\u00053\u0000\u0000\u02a9\u02af"+ - "\u0005j\u0000\u0000\u02aa\u02ab\u0003T*\u0000\u02ab\u02ac\u0003\u0172"+ - "\u00b9\u0000\u02ac\u02ae\u0001\u0000\u0000\u0000\u02ad\u02aa\u0001\u0000"+ - "\u0000\u0000\u02ae\u02b1\u0001\u0000\u0000\u0000\u02af\u02ad\u0001\u0000"+ - "\u0000\u0000\u02af\u02b0\u0001\u0000\u0000\u0000\u02b0\u02b2\u0001\u0000"+ - "\u0000\u0000\u02b1\u02af\u0001\u0000\u0000\u0000\u02b2\u02b3\u0005k\u0000"+ - "\u0000\u02b3S\u0001\u0000\u0000\u0000\u02b4\u02b5\u0005O\u0000\u0000\u02b5"+ - "\u02b6\u0005g\u0000\u0000\u02b6\u02be\u0003\u0140\u00a0\u0000\u02b7\u02b8"+ - "\u00054\u0000\u0000\u02b8\u02b9\u0005j\u0000\u0000\u02b9\u02ba\u0003\u00a6"+ - "S\u0000\u02ba\u02bb\u0003\u0172\u00b9\u0000\u02bb\u02bc\u0005k\u0000\u0000"+ - "\u02bc\u02be\u0001\u0000\u0000\u0000\u02bd\u02b4\u0001\u0000\u0000\u0000"+ - "\u02bd\u02b7\u0001\u0000\u0000\u0000\u02beU\u0001\u0000\u0000\u0000\u02bf"+ - "\u02c0\u00055\u0000\u0000\u02c0\u02c6\u0005j\u0000\u0000\u02c1\u02c2\u0003"+ - "X,\u0000\u02c2\u02c3\u0003\u0172\u00b9\u0000\u02c3\u02c5\u0001\u0000\u0000"+ - "\u0000\u02c4\u02c1\u0001\u0000\u0000\u0000\u02c5\u02c8\u0001\u0000\u0000"+ - "\u0000\u02c6\u02c4\u0001\u0000\u0000\u0000\u02c6\u02c7\u0001\u0000\u0000"+ - "\u0000\u02c7\u02c9\u0001\u0000\u0000\u0000\u02c8\u02c6\u0001\u0000\u0000"+ - "\u0000\u02c9\u02ca\u0005k\u0000\u0000\u02caW\u0001\u0000\u0000\u0000\u02cb"+ - "\u02cc\u0005g\u0000\u0000\u02cc\u02d2\u0005j\u0000\u0000\u02cd\u02ce\u0003"+ - "Z-\u0000\u02ce\u02cf\u0003\u0172\u00b9\u0000\u02cf\u02d1\u0001\u0000\u0000"+ - "\u0000\u02d0\u02cd\u0001\u0000\u0000\u0000\u02d1\u02d4\u0001\u0000\u0000"+ - "\u0000\u02d2\u02d0\u0001\u0000\u0000\u0000\u02d2\u02d3\u0001\u0000\u0000"+ - "\u0000\u02d3\u02d5\u0001\u0000\u0000\u0000\u02d4\u02d2\u0001\u0000\u0000"+ - "\u0000\u02d5\u02d6\u0005k\u0000\u0000\u02d6Y\u0001\u0000\u0000\u0000\u02d7"+ - "\u02d9\u0003\u00e6s\u0000\u02d8\u02d7\u0001\u0000\u0000\u0000\u02d8\u02d9"+ - "\u0001\u0000\u0000\u0000\u02d9\u02da\u0001\u0000\u0000\u0000\u02da\u02db"+ - "\u0003\u00c4b\u0000\u02db[\u0001\u0000\u0000\u0000\u02dc\u02dd\u0005\u001b"+ - "\u0000\u0000\u02dd\u02de\u0005l\u0000\u0000\u02de\u02df\u0005m\u0000\u0000"+ - "\u02df\u02e0\u0003\u0134\u009a\u0000\u02e0]\u0001\u0000\u0000\u0000\u02e1"+ - "\u02e2\u0007\u0005\u0000\u0000\u02e2\u02e3\u0005l\u0000\u0000\u02e3\u02e4"+ - "\u0003\u00c4b\u0000\u02e4\u02e5\u0005m\u0000\u0000\u02e5\u02ed\u0001\u0000"+ - "\u0000\u0000\u02e6\u02e7\u0005+\u0000\u0000\u02e7\u02e8\u0005l\u0000\u0000"+ - "\u02e8\u02e9\u0003\u00c4b\u0000\u02e9\u02ea\u0005m\u0000\u0000\u02ea\u02eb"+ - "\u0003\u00c4b\u0000\u02eb\u02ed\u0001\u0000\u0000\u0000\u02ec\u02e1\u0001"+ - "\u0000\u0000\u0000\u02ec\u02e6\u0001\u0000\u0000\u0000\u02ed_\u0001\u0000"+ - "\u0000\u0000\u02ee\u02f6\u0003b1\u0000\u02ef\u02f0\u0005K\u0000\u0000"+ - "\u02f0\u02f6\u00060\uffff\uffff\u0000\u02f1\u02f2\u0005\u000e\u0000\u0000"+ - "\u02f2\u02f6\u00060\uffff\uffff\u0000\u02f3\u02f4\u0005C\u0000\u0000\u02f4"+ - "\u02f6\u00060\uffff\uffff\u0000\u02f5\u02ee\u0001\u0000\u0000\u0000\u02f5"+ - "\u02ef\u0001\u0000\u0000\u0000\u02f5\u02f1\u0001\u0000\u0000\u0000\u02f5"+ - "\u02f3\u0001\u0000\u0000\u0000\u02f6\u02f7\u0001\u0000\u0000\u0000\u02f7"+ - "\u02f9\u0003\u0172\u00b9\u0000\u02f8\u02f5\u0001\u0000\u0000\u0000\u02f9"+ - "\u02fc\u0001\u0000\u0000\u0000\u02fa\u02fb\u0001\u0000\u0000\u0000\u02fa"+ - "\u02f8\u0001\u0000\u0000\u0000\u02fb\u02ff\u0001\u0000\u0000\u0000\u02fc"+ - "\u02fa\u0001\u0000\u0000\u0000\u02fd\u02fe\u0005\u000e\u0000\u0000\u02fe"+ - "\u0300\u00060\uffff\uffff\u0000\u02ff\u02fd\u0001\u0000\u0000\u0000\u02ff"+ - "\u0300\u0001\u0000\u0000\u0000\u0300a\u0001\u0000\u0000\u0000\u0301\u0302"+ - "\u0005\t\u0000\u0000\u0302\u030a\u0003f3\u0000\u0303\u0304\u0005\n\u0000"+ - "\u0000\u0304\u030a\u0003f3\u0000\u0305\u0306\u0005\u000b\u0000\u0000\u0306"+ - "\u030a\u0003f3\u0000\u0307\u0308\u0005\r\u0000\u0000\u0308\u030a\u0003"+ - "d2\u0000\u0309\u0301\u0001\u0000\u0000\u0000\u0309\u0303\u0001\u0000\u0000"+ - "\u0000\u0309\u0305\u0001\u0000\u0000\u0000\u0309\u0307\u0001\u0000\u0000"+ - "\u0000\u030ac\u0001\u0000\u0000\u0000\u030b\u030d\u0003\u00e8t\u0000\u030c"+ - "\u030b\u0001\u0000\u0000\u0000\u030c\u030d\u0001\u0000\u0000\u0000\u030d"+ - "\u0310\u0001\u0000\u0000\u0000\u030e\u030f\u0005^\u0000\u0000\u030f\u0311"+ - "\u0003\u00a6S\u0000\u0310\u030e\u0001\u0000\u0000\u0000\u0310\u0311\u0001"+ - "\u0000\u0000\u0000\u0311e\u0001\u0000\u0000\u0000\u0312\u0315\u0001\u0000"+ - "\u0000\u0000\u0313\u0315\u0003\u00a6S\u0000\u0314\u0312\u0001\u0000\u0000"+ - "\u0000\u0314\u0313\u0001\u0000\u0000\u0000\u0315g\u0001\u0000\u0000\u0000"+ - "\u0316\u0317\u00056\u0000\u0000\u0317\u0318\u0003\u00a6S\u0000\u0318\u031c"+ - "\u0005j\u0000\u0000\u0319\u031b\u0003j5\u0000\u031a\u0319\u0001\u0000"+ - "\u0000\u0000\u031b\u031e\u0001\u0000\u0000\u0000\u031c\u031a\u0001\u0000"+ - "\u0000\u0000\u031c\u031d\u0001\u0000\u0000\u0000\u031d\u031f\u0001\u0000"+ - "\u0000\u0000\u031e\u031c\u0001\u0000\u0000\u0000\u031f\u0320\u0005k\u0000"+ - "\u0000\u0320i\u0001\u0000\u0000\u0000\u0321\u0322\u0003l6\u0000\u0322"+ - "\u0324\u0005q\u0000\u0000\u0323\u0325\u0003\u00f2y\u0000\u0324\u0323\u0001"+ - "\u0000\u0000\u0000\u0324\u0325\u0001\u0000\u0000\u0000\u0325k\u0001\u0000"+ - "\u0000\u0000\u0326\u0327\u0005R\u0000\u0000\u0327\u032a\u0003n7\u0000"+ - "\u0328\u032a\u0005N\u0000\u0000\u0329\u0326\u0001\u0000\u0000\u0000\u0329"+ - "\u0328\u0001\u0000\u0000\u0000\u032am\u0001\u0000\u0000\u0000\u032b\u032c"+ - "\u0005%\u0000\u0000\u032c\u0339\u0005g\u0000\u0000\u032d\u032e\u0003\u00cc"+ - "f\u0000\u032e\u0333\u0005j\u0000\u0000\u032f\u0331\u0003p8\u0000\u0330"+ - "\u0332\u0005o\u0000\u0000\u0331\u0330\u0001\u0000\u0000\u0000\u0331\u0332"+ - "\u0001\u0000\u0000\u0000\u0332\u0334\u0001\u0000\u0000\u0000\u0333\u032f"+ - "\u0001\u0000\u0000\u0000\u0333\u0334\u0001\u0000\u0000\u0000\u0334\u0335"+ - "\u0001\u0000\u0000\u0000\u0335\u0336\u0005k\u0000\u0000\u0336\u0339\u0001"+ - "\u0000\u0000\u0000\u0337\u0339\u0003\u00a6S\u0000\u0338\u032b\u0001\u0000"+ - "\u0000\u0000\u0338\u032d\u0001\u0000\u0000\u0000\u0338\u0337\u0001\u0000"+ - "\u0000\u0000\u0339o\u0001\u0000\u0000\u0000\u033a\u033f\u0003n7\u0000"+ - "\u033b\u033c\u0005o\u0000\u0000\u033c\u033e\u0003n7\u0000\u033d\u033b"+ - "\u0001\u0000\u0000\u0000\u033e\u0341\u0001\u0000\u0000\u0000\u033f\u033d"+ - "\u0001\u0000\u0000\u0000\u033f\u0340\u0001\u0000\u0000\u0000\u0340q\u0001"+ - "\u0000\u0000\u0000\u0341\u033f\u0001\u0000\u0000\u0000\u0342\u0347\u0005"+ - "j\u0000\u0000\u0343\u0344\u0005;\u0000\u0000\u0344\u0345\u0003\u00e6s"+ - "\u0000\u0345\u0346\u0003\u0172\u00b9\u0000\u0346\u0348\u0001\u0000\u0000"+ - "\u0000\u0347\u0343\u0001\u0000\u0000\u0000\u0347\u0348\u0001\u0000\u0000"+ - "\u0000\u0348\u034a\u0001\u0000\u0000\u0000\u0349\u034b\u0003\u00f2y\u0000"+ - "\u034a\u0349\u0001\u0000\u0000\u0000\u034a\u034b\u0001\u0000\u0000\u0000"+ - "\u034b\u034c\u0001\u0000\u0000\u0000\u034c\u034d\u0005k\u0000\u0000\u034d"+ - "s\u0001\u0000\u0000\u0000\u034e\u0351\u0003\u0152\u00a9\u0000\u034f\u0351"+ - "\u0005g\u0000\u0000\u0350\u034e\u0001\u0000\u0000\u0000\u0350\u034f\u0001"+ - "\u0000\u0000\u0000\u0351\u035a\u0001\u0000\u0000\u0000\u0352\u0357\u0005"+ - "j\u0000\u0000\u0353\u0355\u0003v;\u0000\u0354\u0356\u0005o\u0000\u0000"+ - "\u0355\u0354\u0001\u0000\u0000\u0000\u0355\u0356\u0001\u0000\u0000\u0000"+ - "\u0356\u0358\u0001\u0000\u0000\u0000\u0357\u0353\u0001\u0000\u0000\u0000"+ - "\u0357\u0358\u0001\u0000\u0000\u0000\u0358\u0359\u0001\u0000\u0000\u0000"+ - "\u0359\u035b\u0005k\u0000\u0000\u035a\u0352\u0001\u0000\u0000\u0000\u035a"+ - "\u035b\u0001\u0000\u0000\u0000\u035bu\u0001\u0000\u0000\u0000\u035c\u0361"+ - "\u0003x<\u0000\u035d\u035e\u0005o\u0000\u0000\u035e\u0360\u0003x<\u0000"+ - "\u035f\u035d\u0001\u0000\u0000\u0000\u0360\u0363\u0001\u0000\u0000\u0000"+ - "\u0361\u035f\u0001\u0000\u0000\u0000\u0361\u0362\u0001\u0000\u0000\u0000"+ - "\u0362w\u0001\u0000\u0000\u0000\u0363\u0361\u0001\u0000\u0000\u0000\u0364"+ - "\u0365\u0005g\u0000\u0000\u0365\u0367\u0005q\u0000\u0000\u0366\u0364\u0001"+ - "\u0000\u0000\u0000\u0366\u0367\u0001\u0000\u0000\u0000\u0367\u0368\u0001"+ - "\u0000\u0000\u0000\u0368\u0369\u0003\u00a6S\u0000\u0369y\u0001\u0000\u0000"+ - "\u0000\u036a\u036b\u0005G\u0000\u0000\u036b\u036c\u0003\u00a6S\u0000\u036c"+ - "\u036d\u0005\u000f\u0000\u0000\u036d\u036e\u0003t:\u0000\u036e\u036f\u0003"+ - "\u00f0x\u0000\u036f{\u0001\u0000\u0000\u0000\u0370\u0371\u0003\u00c4b"+ - "\u0000\u0371\u0372\u0005\u000f\u0000\u0000\u0372\u0385\u0003\u00c4b\u0000"+ - "\u0373\u0379\u0005j\u0000\u0000\u0374\u0375\u0003\u0084B\u0000\u0375\u0376"+ - "\u0003\u0172\u00b9\u0000\u0376\u0378\u0001\u0000\u0000\u0000\u0377\u0374"+ - "\u0001\u0000\u0000\u0000\u0378\u037b\u0001\u0000\u0000\u0000\u0379\u0377"+ - "\u0001\u0000\u0000\u0000\u0379\u037a\u0001\u0000\u0000\u0000\u037a\u0381"+ - "\u0001\u0000\u0000\u0000\u037b\u0379\u0001\u0000\u0000\u0000\u037c\u037d"+ - "\u0003~?\u0000\u037d\u037e\u0003\u0172\u00b9\u0000\u037e\u0380\u0001\u0000"+ - "\u0000\u0000\u037f\u037c\u0001\u0000\u0000\u0000\u0380\u0383\u0001\u0000"+ - "\u0000\u0000\u0381\u037f\u0001\u0000\u0000\u0000\u0381\u0382\u0001\u0000"+ - "\u0000\u0000\u0382\u0384\u0001\u0000\u0000\u0000\u0383\u0381\u0001\u0000"+ - "\u0000\u0000\u0384\u0386\u0005k\u0000\u0000\u0385\u0373\u0001\u0000\u0000"+ - "\u0000\u0385\u0386\u0001\u0000\u0000\u0000\u0386}\u0001\u0000\u0000\u0000"+ - "\u0387\u0389\u0005\u000e\u0000\u0000\u0388\u0387\u0001\u0000\u0000\u0000"+ - "\u0388\u0389\u0001\u0000\u0000\u0000\u0389\u038a\u0001\u0000\u0000\u0000"+ - "\u038a\u038b\u0003\u0080@\u0000\u038b\u038c\u0005g\u0000\u0000\u038c\u038e"+ - "\u0003\u0140\u00a0\u0000\u038d\u038f\u0003\u00f0x\u0000\u038e\u038d\u0001"+ - "\u0000\u0000\u0000\u038e\u038f\u0001\u0000\u0000\u0000\u038f\u007f\u0001"+ - "\u0000\u0000\u0000\u0390\u0392\u0005h\u0000\u0000\u0391\u0393\u0005g\u0000"+ - "\u0000\u0392\u0391\u0001\u0000\u0000\u0000\u0392\u0393\u0001\u0000\u0000"+ - "\u0000\u0393\u0395\u0001\u0000\u0000\u0000\u0394\u0396\u0005\u0089\u0000"+ - "\u0000\u0395\u0394\u0001\u0000\u0000\u0000\u0395\u0396\u0001\u0000\u0000"+ - "\u0000\u0396\u0397\u0001\u0000\u0000\u0000\u0397\u0398\u0003\u012e\u0097"+ - "\u0000\u0398\u0399\u0005i\u0000\u0000\u0399\u0081\u0001\u0000\u0000\u0000"+ - "\u039a\u03a0\u0003\u00b6[\u0000\u039b\u039c\u0003\u00c4b\u0000\u039c\u039d"+ - "\u0005r\u0000\u0000\u039d\u039e\u0005g\u0000\u0000\u039e\u03a0\u0001\u0000"+ - "\u0000\u0000\u039f\u039a\u0001\u0000\u0000\u0000\u039f\u039b\u0001\u0000"+ - "\u0000\u0000\u03a0\u0083\u0001\u0000\u0000\u0000\u03a1\u03a2\u00058\u0000"+ - "\u0000\u03a2\u03a3\u0005g\u0000\u0000\u03a3\u03a6\u0005u\u0000\u0000\u03a4"+ - "\u03a7\u0003\u0082A\u0000\u03a5\u03a7\u0003\u0150\u00a8\u0000\u03a6\u03a4"+ - "\u0001\u0000\u0000\u0000\u03a6\u03a5\u0001\u0000\u0000\u0000\u03a7\u0085"+ - "\u0001\u0000\u0000\u0000\u03a8\u03a9\u0005/\u0000\u0000\u03a9\u03aa\u0005"+ - "h\u0000\u0000\u03aa\u03ad\u0003\u00c4b\u0000\u03ab\u03ac\u0005o\u0000"+ - "\u0000\u03ac\u03ae\u0003\u00e8t\u0000\u03ad\u03ab\u0001\u0000\u0000\u0000"+ - "\u03ad\u03ae\u0001\u0000\u0000\u0000\u03ae\u03af\u0001\u0000\u0000\u0000"+ - "\u03af\u03b0\u0005i\u0000\u0000\u03b0\u0087\u0001\u0000\u0000\u0000\u03b1"+ - "\u03b2\u0005.\u0000\u0000\u03b2\u03b3\u0005h\u0000\u0000\u03b3\u03b4\u0003"+ - "\u00c4b\u0000\u03b4\u03b5\u0005i\u0000\u0000\u03b5\u0089\u0001\u0000\u0000"+ - "\u0000\u03b6\u03b9\u0003`0\u0000\u03b7\u03ba\u0003\u008cF\u0000\u03b8"+ - "\u03ba\u0003\u008eG\u0000\u03b9\u03b7\u0001\u0000\u0000\u0000\u03b9\u03b8"+ - "\u0001\u0000\u0000\u0000\u03ba\u008b\u0001\u0000\u0000\u0000\u03bb\u03bc"+ - "\u0005O\u0000\u0000\u03bc\u03bd\u0005g\u0000\u0000\u03bd\u03bf\u0003\u0140"+ - "\u00a0\u0000\u03be\u03c0\u0003r9\u0000\u03bf\u03be\u0001\u0000\u0000\u0000"+ - "\u03bf\u03c0\u0001\u0000\u0000\u0000\u03c0\u008d\u0001\u0000\u0000\u0000"+ - "\u03c1\u03c2\u0005O\u0000\u0000\u03c2\u03c3\u0003\u009cN\u0000\u03c3\u03c4"+ - "\u0005g\u0000\u0000\u03c4\u03c6\u0003\u0140\u00a0\u0000\u03c5\u03c7\u0003"+ - "r9\u0000\u03c6\u03c5\u0001\u0000\u0000\u0000\u03c6\u03c7\u0001\u0000\u0000"+ - "\u0000\u03c7\u008f\u0001\u0000\u0000\u0000\u03c8\u03cb\u0005\u001b\u0000"+ - "\u0000\u03c9\u03cc\u0003\u008aE\u0000\u03ca\u03cc\u0003\u00e0p\u0000\u03cb"+ - "\u03c9\u0001\u0000\u0000\u0000\u03cb\u03ca\u0001\u0000\u0000\u0000\u03cc"+ - "\u0091\u0001\u0000\u0000\u0000\u03cd\u03ce\u00058\u0000\u0000\u03ce\u03cf"+ - "\u0005g\u0000\u0000\u03cf\u03d1\u0003\u0144\u00a2\u0000\u03d0\u03d2\u0003"+ - "\u0094J\u0000\u03d1\u03d0\u0001\u0000\u0000\u0000\u03d1\u03d2\u0001\u0000"+ - "\u0000\u0000\u03d2\u0093\u0001\u0000\u0000\u0000\u03d3\u03d4\u0005j\u0000"+ - "\u0000\u03d4\u03d5\u0003\u00a6S\u0000\u03d5\u03d6\u0003\u0172\u00b9\u0000"+ - "\u03d6\u03d7\u0005k\u0000\u0000\u03d7\u0095\u0001\u0000\u0000\u0000\u03d8"+ - "\u03d9\u00058\u0000\u0000\u03d9\u03da\u0003\u009cN\u0000\u03da\u03db\u0005"+ - "g\u0000\u0000\u03db\u03dd\u0003\u0144\u00a2\u0000\u03dc\u03de\u0003\u0094"+ - "J\u0000\u03dd\u03dc\u0001\u0000\u0000\u0000\u03dd\u03de\u0001\u0000\u0000"+ - "\u0000\u03de\u0097\u0001\u0000\u0000\u0000\u03df\u03e7\u0003\u0006\u0003"+ - "\u0000\u03e0\u03e3\u0003\u00c4b\u0000\u03e1\u03e2\u0005n\u0000\u0000\u03e2"+ - "\u03e4\u0003\u00e8t\u0000\u03e3\u03e1\u0001\u0000\u0000\u0000\u03e3\u03e4"+ - "\u0001\u0000\u0000\u0000\u03e4\u03e8\u0001\u0000\u0000\u0000\u03e5\u03e6"+ - "\u0005n\u0000\u0000\u03e6\u03e8\u0003\u00e8t\u0000\u03e7\u03e0\u0001\u0000"+ - "\u0000\u0000\u03e7\u03e5\u0001\u0000\u0000\u0000\u03e8\u0099\u0001\u0000"+ - "\u0000\u0000\u03e9\u03ea\u0003\u0006\u0003\u0000\u03ea\u03eb\u0005u\u0000"+ - "\u0000\u03eb\u03ec\u0003\u00e8t\u0000\u03ec\u009b\u0001\u0000\u0000\u0000"+ - "\u03ed\u03ef\u0005h\u0000\u0000\u03ee\u03f0\u0003\b\u0004\u0000\u03ef"+ - "\u03ee\u0001\u0000\u0000\u0000\u03ef\u03f0\u0001\u0000\u0000\u0000\u03f0"+ - "\u03f1\u0001\u0000\u0000\u0000\u03f1\u03f3\u0003\u00c4b\u0000\u03f2\u03f4"+ - "\u0005o\u0000\u0000\u03f3\u03f2\u0001\u0000\u0000\u0000\u03f3\u03f4\u0001"+ - "\u0000\u0000\u0000\u03f4\u03f5\u0001\u0000\u0000\u0000\u03f5\u03f6\u0005"+ - "i\u0000\u0000\u03f6\u009d\u0001\u0000\u0000\u0000\u03f7\u03fa\u0003\u00a0"+ - "P\u0000\u03f8\u03fa\u0003\u00a2Q\u0000\u03f9\u03f7\u0001\u0000\u0000\u0000"+ - "\u03f9\u03f8\u0001\u0000\u0000\u0000\u03fa\u009f\u0001\u0000\u0000\u0000"+ - "\u03fb\u03fd\u0003\u00e6s\u0000\u03fc\u03fb\u0001\u0000\u0000\u0000\u03fc"+ - "\u03fd\u0001\u0000\u0000\u0000\u03fd\u03fe\u0001\u0000\u0000\u0000\u03fe"+ - "\u03ff\u0003\u00a4R\u0000\u03ff\u00a1\u0001\u0000\u0000\u0000\u0400\u0402"+ - "\u0005\u001b\u0000\u0000\u0401\u0403\u0003\u00e6s\u0000\u0402\u0401\u0001"+ - "\u0000\u0000\u0000\u0402\u0403\u0001\u0000\u0000\u0000\u0403\u0404\u0001"+ - "\u0000\u0000\u0000\u0404\u0405\u0003\u00a4R\u0000\u0405\u00a3\u0001\u0000"+ - "\u0000\u0000\u0406\u0408\u0005v\u0000\u0000\u0407\u0406\u0001\u0000\u0000"+ - "\u0000\u0407\u0408\u0001\u0000\u0000\u0000\u0408\u0409\u0001\u0000\u0000"+ - "\u0000\u0409\u040a\u0003\u00c4b\u0000\u040a\u00a5\u0001\u0000\u0000\u0000"+ - "\u040b\u040c\u0006S\uffff\uffff\u0000\u040c\u040d\u0007\u0006\u0000\u0000"+ - "\u040d\u0421\u0003\u00a6S\u000f\u040e\u0421\u0003\u00b6[\u0000\u040f\u0410"+ - "\u0005\u0019\u0000\u0000\u0410\u0411\u0003.\u0017\u0000\u0411\u0412\u0005"+ - "\u001c\u0000\u0000\u0412\u0413\u0003\u00a6S\u0003\u0413\u0421\u0001\u0000"+ - "\u0000\u0000\u0414\u0415\u0005\u001a\u0000\u0000\u0415\u0416\u0003\u009a"+ - "M\u0000\u0416\u0417\u0005\u001c\u0000\u0000\u0417\u0418\u0003\u00a6S\u0002"+ - "\u0418\u0421\u0001\u0000\u0000\u0000\u0419\u041a\u0007\u0007\u0000\u0000"+ - "\u041a\u041b\u0003&\u0013\u0000\u041b\u041c\u0005q\u0000\u0000\u041c\u041d"+ - "\u0005q\u0000\u0000\u041d\u041e\u0003*\u0015\u0000\u041e\u041f\u0003\u00a6"+ - "S\u0001\u041f\u0421\u0001\u0000\u0000\u0000\u0420\u040b\u0001\u0000\u0000"+ - "\u0000\u0420\u040e\u0001\u0000\u0000\u0000\u0420\u040f\u0001\u0000\u0000"+ - "\u0000\u0420\u0414\u0001\u0000\u0000\u0000\u0420\u0419\u0001\u0000\u0000"+ - "\u0000\u0421\u0445\u0001\u0000\u0000\u0000\u0422\u0423\n\r\u0000\u0000"+ - "\u0423\u0424\u0007\b\u0000\u0000\u0424\u0444\u0003\u00a6S\u000e\u0425"+ - "\u0426\n\f\u0000\u0000\u0426\u0427\u0007\t\u0000\u0000\u0427\u0444\u0003"+ - "\u00a6S\r\u0428\u0429\n\u000b\u0000\u0000\u0429\u042a\u0007\n\u0000\u0000"+ - "\u042a\u0444\u0003\u00a6S\f\u042b\u042c\n\n\u0000\u0000\u042c\u042d\u0007"+ - "\u000b\u0000\u0000\u042d\u0444\u0003\u00a6S\u000b\u042e\u042f\n\t\u0000"+ - "\u0000\u042f\u0430\u0007\f\u0000\u0000\u0430\u0444\u0003\u00a6S\n\u0431"+ - "\u0432\n\u0007\u0000\u0000\u0432\u0433\u0005x\u0000\u0000\u0433\u0444"+ - "\u0003\u00a6S\b\u0434\u0435\n\u0006\u0000\u0000\u0435\u0436\u0005w\u0000"+ - "\u0000\u0436\u0444\u0003\u00a6S\u0007\u0437\u0438\n\u0005\u0000\u0000"+ - "\u0438\u0439\u0005\"\u0000\u0000\u0439\u0444\u0003\u00a6S\u0005\u043a"+ - "\u043b\n\u0004\u0000\u0000\u043b\u043c\u0005%\u0000\u0000\u043c\u043d"+ - "\u0003\u00a6S\u0000\u043d\u043e\u0005q\u0000\u0000\u043e\u043f\u0003\u00a6"+ - "S\u0004\u043f\u0444\u0001\u0000\u0000\u0000\u0440\u0441\n\b\u0000\u0000"+ - "\u0441\u0442\u0005\u000f\u0000\u0000\u0442\u0444\u0003t:\u0000\u0443\u0422"+ - "\u0001\u0000\u0000\u0000\u0443\u0425\u0001\u0000\u0000\u0000\u0443\u0428"+ - "\u0001\u0000\u0000\u0000\u0443\u042b\u0001\u0000\u0000\u0000\u0443\u042e"+ - "\u0001\u0000\u0000\u0000\u0443\u0431\u0001\u0000\u0000\u0000\u0443\u0434"+ - "\u0001\u0000\u0000\u0000\u0443\u0437\u0001\u0000\u0000\u0000\u0443\u043a"+ - "\u0001\u0000\u0000\u0000\u0443\u0440\u0001\u0000\u0000\u0000\u0444\u0447"+ - "\u0001\u0000\u0000\u0000\u0445\u0443\u0001\u0000\u0000\u0000\u0445\u0446"+ - "\u0001\u0000\u0000\u0000\u0446\u00a7\u0001\u0000\u0000\u0000\u0447\u0445"+ - "\u0001\u0000\u0000\u0000\u0448\u045d\u0003\u0018\f\u0000\u0449\u045d\u0003"+ - "\u001a\r\u0000\u044a\u045d\u0003\u00acV\u0000\u044b\u045d\u0003\u00aa"+ - "U\u0000\u044c\u045d\u0003\u00e0p\u0000\u044d\u045d\u0003\u0100\u0080\u0000"+ - "\u044e\u045d\u0003\u00f4z\u0000\u044f\u045d\u0003\u012c\u0096\u0000\u0450"+ - "\u045d\u0003\u0102\u0081\u0000\u0451\u045d\u0003\u0104\u0082\u0000\u0452"+ - "\u045d\u0003\u0106\u0083\u0000\u0453\u045d\u0003\u0108\u0084\u0000\u0454"+ - "\u045d\u0003\u010a\u0085\u0000\u0455\u045d\u0003\u00f0x\u0000\u0456\u045d"+ - "\u0003\u010c\u0086\u0000\u0457\u045d\u0003\u010e\u0087\u0000\u0458\u045d"+ - "\u0003\u0120\u0090\u0000\u0459\u045d\u0003\u00aeW\u0000\u045a\u045d\u0003"+ - "\u00b2Y\u0000\u045b\u045d\u0003z=\u0000\u045c\u0448\u0001\u0000\u0000"+ - "\u0000\u045c\u0449\u0001\u0000\u0000\u0000\u045c\u044a\u0001\u0000\u0000"+ - "\u0000\u045c\u044b\u0001\u0000\u0000\u0000\u045c\u044c\u0001\u0000\u0000"+ - "\u0000\u045c\u044d\u0001\u0000\u0000\u0000\u045c\u044e\u0001\u0000\u0000"+ - "\u0000\u045c\u044f\u0001\u0000\u0000\u0000\u045c\u0450\u0001\u0000\u0000"+ - "\u0000\u045c\u0451\u0001\u0000\u0000\u0000\u045c\u0452\u0001\u0000\u0000"+ - "\u0000\u045c\u0453\u0001\u0000\u0000\u0000\u045c\u0454\u0001\u0000\u0000"+ - "\u0000\u045c\u0455\u0001\u0000\u0000\u0000\u045c\u0456\u0001\u0000\u0000"+ - "\u0000\u045c\u0457\u0001\u0000\u0000\u0000\u045c\u0458\u0001\u0000\u0000"+ - "\u0000\u045c\u0459\u0001\u0000\u0000\u0000\u045c\u045a\u0001\u0000\u0000"+ - "\u0000\u045c\u045b\u0001\u0000\u0000\u0000\u045d\u00a9\u0001\u0000\u0000"+ - "\u0000\u045e\u045f\u0005$\u0000\u0000\u045f\u0460\u0003\u00a6S\u0000\u0460"+ - "\u00ab\u0001\u0000\u0000\u0000\u0461\u0462\u0005Z\u0000\u0000\u0462\u0464"+ - "\u0003\u00a6S\u0000\u0463\u0465\u0003\u00f0x\u0000\u0464\u0463\u0001\u0000"+ - "\u0000\u0000\u0464\u0465\u0001\u0000\u0000\u0000\u0465\u00ad\u0001\u0000"+ - "\u0000\u0000\u0466\u0467\u0003\u00b0X\u0000\u0467\u0468\u0003\u0128\u0094"+ - "\u0000\u0468\u00af\u0001\u0000\u0000\u0000\u0469\u046a\u0005\f\u0000\u0000"+ - "\u046a\u046b\u0003\u00a6S\u0000\u046b\u046c\u0003\u0172\u00b9\u0000\u046c"+ - "\u046e\u0001\u0000\u0000\u0000\u046d\u0469\u0001\u0000\u0000\u0000\u046e"+ - "\u0471\u0001\u0000\u0000\u0000\u046f\u046d\u0001\u0000\u0000\u0000\u046f"+ - "\u0470\u0001\u0000\u0000\u0000\u0470\u0476\u0001\u0000\u0000\u0000\u0471"+ - "\u046f\u0001\u0000\u0000\u0000\u0472\u0473\u0005\r\u0000\u0000\u0473\u0474"+ - "\u0003d2\u0000\u0474\u0475\u0003\u0172\u00b9\u0000\u0475\u0477\u0001\u0000"+ - "\u0000\u0000\u0476\u0472\u0001\u0000\u0000\u0000\u0476\u0477\u0001\u0000"+ - "\u0000\u0000\u0477\u00b1\u0001\u0000\u0000\u0000\u0478\u0479\u0005S\u0000"+ - "\u0000\u0479\u047e\u0003\u00a6S\u0000\u047a\u047b\u0005S\u0000\u0000\u047b"+ - "\u047c\u0007\u0001\u0000\u0000\u047c\u047e\u0003.\u0017\u0000\u047d\u0478"+ - "\u0001\u0000\u0000\u0000\u047d\u047a\u0001\u0000\u0000\u0000\u047e\u00b3"+ - "\u0001\u0000\u0000\u0000\u047f\u0488\u0005\u0003\u0000\u0000\u0480\u0488"+ - "\u0005\u0004\u0000\u0000\u0481\u0488\u0005f\u0000\u0000\u0482\u0488\u0003"+ - "\u014e\u00a7\u0000\u0483\u0488\u0003\u0164\u00b2\u0000\u0484\u0488\u0005"+ - "\u0001\u0000\u0000\u0485\u0488\u0005\u0091\u0000\u0000\u0486\u0488\u0005"+ - "\u0092\u0000\u0000\u0487\u047f\u0001\u0000\u0000\u0000\u0487\u0480\u0001"+ - "\u0000\u0000\u0000\u0487\u0481\u0001\u0000\u0000\u0000\u0487\u0482\u0001"+ - "\u0000\u0000\u0000\u0487\u0483\u0001\u0000\u0000\u0000\u0487\u0484\u0001"+ - "\u0000\u0000\u0000\u0487\u0485\u0001\u0000\u0000\u0000\u0487\u0486\u0001"+ - "\u0000\u0000\u0000\u0488\u00b5\u0001\u0000\u0000\u0000\u0489\u048a\u0006"+ - "[\uffff\uffff\u0000\u048a\u049a\u0003\u014a\u00a5\u0000\u048b\u049a\u0003"+ - "\u0146\u00a3\u0000\u048c\u049a\u0003\u016e\u00b7\u0000\u048d\u049a\u0003"+ - " \u0010\u0000\u048e\u049a\u0003\u0088D\u0000\u048f\u049a\u0003\u0086C"+ - "\u0000\u0490\u0491\u0005L\u0000\u0000\u0491\u0492\u0003\u00b6[\u0000\u0492"+ - "\u0493\u0003\u016c\u00b6\u0000\u0493\u049a\u0001\u0000\u0000\u0000\u0494"+ - "\u0495\u0007\r\u0000\u0000\u0495\u0496\u0005h\u0000\u0000\u0496\u0497"+ - "\u0003\u00a6S\u0000\u0497\u0498\u0005i\u0000\u0000\u0498\u049a\u0001\u0000"+ - "\u0000\u0000\u0499\u0489\u0001\u0000\u0000\u0000\u0499\u048b\u0001\u0000"+ - "\u0000\u0000\u0499\u048c\u0001\u0000\u0000\u0000\u0499\u048d\u0001\u0000"+ - "\u0000\u0000\u0499\u048e\u0001\u0000\u0000\u0000\u0499\u048f\u0001\u0000"+ - "\u0000\u0000\u0499\u0490\u0001\u0000\u0000\u0000\u0499\u0494\u0001\u0000"+ - "\u0000\u0000\u049a\u04b1\u0001\u0000\u0000\u0000\u049b\u049c\n\n\u0000"+ - "\u0000\u049c\u049d\u0005r\u0000\u0000\u049d\u04b0\u0005g\u0000\u0000\u049e"+ - "\u049f\n\t\u0000\u0000\u049f\u04b0\u0003\u0168\u00b4\u0000\u04a0\u04a1"+ - "\n\b\u0000\u0000\u04a1\u04b0\u0003\u00d0h\u0000\u04a2\u04a3\n\u0007\u0000"+ - "\u0000\u04a3\u04b0\u0003L&\u0000\u04a4\u04a5\n\u0006\u0000\u0000\u04a5"+ - "\u04b0\u0003\u016a\u00b5\u0000\u04a6\u04a7\n\u0005\u0000\u0000\u04a7\u04b0"+ - "\u0003\u016c\u00b6\u0000\u04a8\u04a9\n\u0003\u0000\u0000\u04a9\u04aa\u0003"+ - "\u016c\u00b6\u0000\u04aa\u04ab\u0005\u0010\u0000\u0000\u04ab\u04ac\u0003"+ - "t:\u0000\u04ac\u04b0\u0001\u0000\u0000\u0000\u04ad\u04ae\n\u0002\u0000"+ - "\u0000\u04ae\u04b0\u0003\u00bc^\u0000\u04af\u049b\u0001\u0000\u0000\u0000"+ - "\u04af\u049e\u0001\u0000\u0000\u0000\u04af\u04a0\u0001\u0000\u0000\u0000"+ - "\u04af\u04a2\u0001\u0000\u0000\u0000\u04af\u04a4\u0001\u0000\u0000\u0000"+ - "\u04af\u04a6\u0001\u0000\u0000\u0000\u04af\u04a8\u0001\u0000\u0000\u0000"+ - "\u04af\u04ad\u0001\u0000\u0000\u0000\u04b0\u04b3\u0001\u0000\u0000\u0000"+ - "\u04b1\u04af\u0001\u0000\u0000\u0000\u04b1\u04b2\u0001\u0000\u0000\u0000"+ - "\u04b2\u00b7\u0001\u0000\u0000\u0000\u04b3\u04b1\u0001\u0000\u0000\u0000"+ - "\u04b4\u04b5\u0003`0\u0000\u04b5\u04b6\u0003\u00ba]\u0000\u04b6\u00b9"+ - "\u0001\u0000\u0000\u0000\u04b7\u04b9\u0005O\u0000\u0000\u04b8\u04ba\u0005"+ - "g\u0000\u0000\u04b9\u04b8\u0001\u0000\u0000\u0000\u04b9\u04ba\u0001\u0000"+ - "\u0000\u0000\u04ba\u04bb\u0001\u0000\u0000\u0000\u04bb\u04bd\u0003\u0140"+ - "\u00a0\u0000\u04bc\u04be\u0003r9\u0000\u04bd\u04bc\u0001\u0000\u0000\u0000"+ - "\u04bd\u04be\u0001\u0000\u0000\u0000\u04be\u00bb\u0001\u0000\u0000\u0000"+ - "\u04bf\u04c1\u0005&\u0000\u0000\u04c0\u04c2\u0003\u00e8t\u0000\u04c1\u04c0"+ - "\u0001\u0000\u0000\u0000\u04c1\u04c2\u0001\u0000\u0000\u0000\u04c2\u04c4"+ - "\u0001\u0000\u0000\u0000\u04c3\u04c5\u0005o\u0000\u0000\u04c4\u04c3\u0001"+ - "\u0000\u0000\u0000\u04c4\u04c5\u0001\u0000\u0000\u0000\u04c5\u04c6\u0001"+ - "\u0000\u0000\u0000\u04c6\u04c7\u0005\'\u0000\u0000\u04c7\u00bd\u0001\u0000"+ - "\u0000\u0000\u04c8\u04c9\u0005P\u0000\u0000\u04c9\u04d3\u0005j\u0000\u0000"+ - "\u04ca\u04ce\u0003\u00c2a\u0000\u04cb\u04ce\u0003\u012e\u0097\u0000\u04cc"+ - "\u04ce\u0003\u00c0`\u0000\u04cd\u04ca\u0001\u0000\u0000\u0000\u04cd\u04cb"+ - "\u0001\u0000\u0000\u0000\u04cd\u04cc\u0001\u0000\u0000\u0000\u04ce\u04cf"+ - "\u0001\u0000\u0000\u0000\u04cf\u04d0\u0003\u0172\u00b9\u0000\u04d0\u04d2"+ - "\u0001\u0000\u0000\u0000\u04d1\u04cd\u0001\u0000\u0000\u0000\u04d2\u04d5"+ - "\u0001\u0000\u0000\u0000\u04d3\u04d1\u0001\u0000\u0000\u0000\u04d3\u04d4"+ - "\u0001\u0000\u0000\u0000\u04d4\u04d6\u0001\u0000\u0000\u0000\u04d5\u04d3"+ - "\u0001\u0000\u0000\u0000\u04d6\u04d7\u0005k\u0000\u0000\u04d7\u00bf\u0001"+ - "\u0000\u0000\u0000\u04d8\u04d9\u00058\u0000\u0000\u04d9\u04da\u0005g\u0000"+ - "\u0000\u04da\u04db\u0003\u0144\u00a2\u0000\u04db\u00c1\u0001\u0000\u0000"+ - "\u0000\u04dc\u04de\u0005\u001b\u0000\u0000\u04dd\u04dc\u0001\u0000\u0000"+ - "\u0000\u04dd\u04de\u0001\u0000\u0000\u0000\u04de\u04df\u0001\u0000\u0000"+ - "\u0000\u04df\u04e0\u0003`0\u0000\u04e0\u04e1\u0005g\u0000\u0000\u04e1"+ - "\u04e2\u0003\u0144\u00a2\u0000\u04e2\u04e3\u0003\u0142\u00a1\u0000\u04e3"+ - "\u04ec\u0001\u0000\u0000\u0000\u04e4\u04e6\u0005\u001b\u0000\u0000\u04e5"+ - "\u04e4\u0001\u0000\u0000\u0000\u04e5\u04e6\u0001\u0000\u0000\u0000\u04e6"+ - "\u04e7\u0001\u0000\u0000\u0000\u04e7\u04e8\u0003`0\u0000\u04e8\u04e9\u0005"+ - "g\u0000\u0000\u04e9\u04ea\u0003\u0144\u00a2\u0000\u04ea\u04ec\u0001\u0000"+ - "\u0000\u0000\u04eb\u04dd\u0001\u0000\u0000\u0000\u04eb\u04e5\u0001\u0000"+ - "\u0000\u0000\u04ec\u00c3\u0001\u0000\u0000\u0000\u04ed\u04f5\u0003\u012e"+ - "\u0097\u0000\u04ee\u04f5\u0003\u00c6c\u0000\u04ef\u04f5\u0003P(\u0000"+ - "\u04f0\u04f1\u0005h\u0000\u0000\u04f1\u04f2\u0003\u00c4b\u0000\u04f2\u04f3"+ - "\u0005i\u0000\u0000\u04f3\u04f5\u0001\u0000\u0000\u0000\u04f4\u04ed\u0001"+ - "\u0000\u0000\u0000\u04f4\u04ee\u0001\u0000\u0000\u0000\u04f4\u04ef\u0001"+ - "\u0000\u0000\u0000\u04f4\u04f0\u0001\u0000\u0000\u0000\u04f5\u00c5\u0001"+ - "\u0000\u0000\u0000\u04f6\u0500\u0003\u0130\u0098\u0000\u04f7\u0500\u0003"+ - "\u0160\u00b0\u0000\u04f8\u0500\u0003\u0136\u009b\u0000\u04f9\u0500\u0003"+ - "\u013e\u009f\u0000\u04fa\u0500\u0003\u00be_\u0000\u04fb\u0500\u0003\u0138"+ - "\u009c\u0000\u04fc\u0500\u0003\u013a\u009d\u0000\u04fd\u0500\u0003\u013c"+ - "\u009e\u0000\u04fe\u0500\u0003\u00c8d\u0000\u04ff\u04f6\u0001\u0000\u0000"+ - "\u0000\u04ff\u04f7\u0001\u0000\u0000\u0000\u04ff\u04f8\u0001\u0000\u0000"+ - "\u0000\u04ff\u04f9\u0001\u0000\u0000\u0000\u04ff\u04fa\u0001\u0000\u0000"+ - "\u0000\u04ff\u04fb\u0001\u0000\u0000\u0000\u04ff\u04fc\u0001\u0000\u0000"+ - "\u0000\u04ff\u04fd\u0001\u0000\u0000\u0000\u04ff\u04fe\u0001\u0000\u0000"+ - "\u0000\u0500\u00c7\u0001\u0000\u0000\u0000\u0501\u0502\u00058\u0000\u0000"+ - "\u0502\u0503\u0003\u00cae\u0000\u0503\u00c9\u0001\u0000\u0000\u0000\u0504"+ - "\u0510\u0005h\u0000\u0000\u0505\u050a\u0003\u00c4b\u0000\u0506\u0507\u0005"+ - "o\u0000\u0000\u0507\u0509\u0003\u00c4b\u0000\u0508\u0506\u0001\u0000\u0000"+ - "\u0000\u0509\u050c\u0001\u0000\u0000\u0000\u050a\u0508\u0001\u0000\u0000"+ - "\u0000\u050a\u050b\u0001\u0000\u0000\u0000\u050b\u050e\u0001\u0000\u0000"+ - "\u0000\u050c\u050a\u0001\u0000\u0000\u0000\u050d\u050f\u0005o\u0000\u0000"+ - "\u050e\u050d\u0001\u0000\u0000\u0000\u050e\u050f\u0001\u0000\u0000\u0000"+ - "\u050f\u0511\u0001\u0000\u0000\u0000\u0510\u0505\u0001\u0000\u0000\u0000"+ - "\u0510\u0511\u0001\u0000\u0000\u0000\u0511\u0512\u0001\u0000\u0000\u0000"+ - "\u0512\u0513\u0005i\u0000\u0000\u0513\u00cb\u0001\u0000\u0000\u0000\u0514"+ - "\u051c\u0003\u0160\u00b0\u0000\u0515\u051c\u0003\u0130\u0098\u0000\u0516"+ - "\u051c\u0003\u00ceg\u0000\u0517\u051c\u0003\u0138\u009c\u0000\u0518\u051c"+ - "\u0003\u013a\u009d\u0000\u0519\u051c\u0003P(\u0000\u051a\u051c\u0003\u012e"+ - "\u0097\u0000\u051b\u0514\u0001\u0000\u0000\u0000\u051b\u0515\u0001\u0000"+ - "\u0000\u0000\u051b\u0516\u0001\u0000\u0000\u0000\u051b\u0517\u0001\u0000"+ - "\u0000\u0000\u051b\u0518\u0001\u0000\u0000\u0000\u051b\u0519\u0001\u0000"+ - "\u0000\u0000\u051b\u051a\u0001\u0000\u0000\u0000\u051c\u00cd\u0001\u0000"+ - "\u0000\u0000\u051d\u051e\u0005l\u0000\u0000\u051e\u051f\u0005v\u0000\u0000"+ - "\u051f\u0520\u0005m\u0000\u0000\u0520\u0521\u0003\u0134\u009a\u0000\u0521"+ - "\u00cf\u0001\u0000\u0000\u0000\u0522\u0532\u0005l\u0000\u0000\u0523\u0525"+ - "\u0003\u00d2i\u0000\u0524\u0523\u0001\u0000\u0000\u0000\u0524\u0525\u0001"+ - "\u0000\u0000\u0000\u0525\u0526\u0001\u0000\u0000\u0000\u0526\u0528\u0005"+ - "q\u0000\u0000\u0527\u0529\u0003\u00d4j\u0000\u0528\u0527\u0001\u0000\u0000"+ - "\u0000\u0528\u0529\u0001\u0000\u0000\u0000\u0529\u0533\u0001\u0000\u0000"+ - "\u0000\u052a\u052c\u0003\u00d2i\u0000\u052b\u052a\u0001\u0000\u0000\u0000"+ - "\u052b\u052c\u0001\u0000\u0000\u0000\u052c\u052d\u0001\u0000\u0000\u0000"+ - "\u052d\u052e\u0005q\u0000\u0000\u052e\u052f\u0003\u00d4j\u0000\u052f\u0530"+ - "\u0005q\u0000\u0000\u0530\u0531\u0003\u00d6k\u0000\u0531\u0533\u0001\u0000"+ - "\u0000\u0000\u0532\u0524\u0001\u0000\u0000\u0000\u0532\u052b\u0001\u0000"+ - "\u0000\u0000\u0533\u0534\u0001\u0000\u0000\u0000\u0534\u0535\u0005m\u0000"+ - "\u0000\u0535\u00d1\u0001\u0000\u0000\u0000\u0536\u0537\u0003\u00a6S\u0000"+ - "\u0537\u00d3\u0001\u0000\u0000\u0000\u0538\u0539\u0003\u00a6S\u0000\u0539"+ - "\u00d5\u0001\u0000\u0000\u0000\u053a\u053b\u0003\u00a6S\u0000\u053b\u00d7"+ - "\u0001\u0000\u0000\u0000\u053c\u053e\u0007\u000e\u0000\u0000\u053d\u053c"+ - "\u0001\u0000\u0000\u0000\u053d\u053e\u0001\u0000\u0000\u0000\u053e\u053f"+ - "\u0001\u0000\u0000\u0000\u053f\u0540\u0005n\u0000\u0000\u0540\u00d9\u0001"+ - "\u0000\u0000\u0000\u0541\u0542\u0003\u00e8t\u0000\u0542\u0543\u0005n\u0000"+ - "\u0000\u0543\u0548\u0001\u0000\u0000\u0000\u0544\u0545\u0003\u0006\u0003"+ - "\u0000\u0545\u0546\u0005u\u0000\u0000\u0546\u0548\u0001\u0000\u0000\u0000"+ - "\u0547\u0541\u0001\u0000\u0000\u0000\u0547\u0544\u0001\u0000\u0000\u0000"+ - "\u0547\u0548\u0001\u0000\u0000\u0000\u0548\u0549\u0001\u0000\u0000\u0000"+ - "\u0549\u054a\u0005_\u0000\u0000\u054a\u054f\u0003\u00a6S\u0000\u054b\u054d"+ - "\u0005J\u0000\u0000\u054c\u054e\u0005g\u0000\u0000\u054d\u054c\u0001\u0000"+ - "\u0000\u0000\u054d\u054e\u0001\u0000\u0000\u0000\u054e\u0550\u0001\u0000"+ - "\u0000\u0000\u054f\u054b\u0001\u0000\u0000\u0000\u054f\u0550\u0001\u0000"+ - "\u0000\u0000\u0550\u00db\u0001\u0000\u0000\u0000\u0551\u0552\u0005Z\u0000"+ - "\u0000\u0552\u0553\u0005g\u0000\u0000\u0553\u00dd\u0001\u0000\u0000\u0000"+ - "\u0554\u0555\u0003\u0164\u00b2\u0000\u0555\u00df\u0001\u0000\u0000\u0000"+ - "\u0556\u055a\u0003\u00e2q\u0000\u0557\u055a\u0003\u00eau\u0000\u0558\u055a"+ - "\u0003\u00eew\u0000\u0559\u0556\u0001\u0000\u0000\u0000\u0559\u0557\u0001"+ - "\u0000\u0000\u0000\u0559\u0558\u0001\u0000\u0000\u0000\u055a\u00e1\u0001"+ - "\u0000\u0000\u0000\u055b\u0567\u0005\\\u0000\u0000\u055c\u0568\u0003\u00e4"+ - "r\u0000\u055d\u0563\u0005h\u0000\u0000\u055e\u055f\u0003\u00e4r\u0000"+ - "\u055f\u0560\u0003\u0172\u00b9\u0000\u0560\u0562\u0001\u0000\u0000\u0000"+ - "\u0561\u055e\u0001\u0000\u0000\u0000\u0562\u0565\u0001\u0000\u0000\u0000"+ - "\u0563\u0561\u0001\u0000\u0000\u0000\u0563\u0564\u0001\u0000\u0000\u0000"+ - "\u0564\u0566\u0001\u0000\u0000\u0000\u0565\u0563\u0001\u0000\u0000\u0000"+ - "\u0566\u0568\u0005i\u0000\u0000\u0567\u055c\u0001\u0000\u0000\u0000\u0567"+ - "\u055d\u0001\u0000\u0000\u0000\u0568\u00e3\u0001\u0000\u0000\u0000\u0569"+ - "\u056f\u0003\u00e6s\u0000\u056a\u056c\u0003\u00c4b\u0000\u056b\u056a\u0001"+ - "\u0000\u0000\u0000\u056b\u056c\u0001\u0000\u0000\u0000\u056c\u056d\u0001"+ - "\u0000\u0000\u0000\u056d\u056e\u0005n\u0000\u0000\u056e\u0570\u0003\u00e8"+ - "t\u0000\u056f\u056b\u0001\u0000\u0000\u0000\u056f\u0570\u0001\u0000\u0000"+ - "\u0000\u0570\u00e5\u0001\u0000\u0000\u0000\u0571\u0576\u0005g\u0000\u0000"+ - "\u0572\u0573\u0005o\u0000\u0000\u0573\u0575\u0005g\u0000\u0000\u0574\u0572"+ - "\u0001\u0000\u0000\u0000\u0575\u0578\u0001\u0000\u0000\u0000\u0576\u0574"+ - "\u0001\u0000\u0000\u0000\u0576\u0577\u0001\u0000\u0000\u0000\u0577\u00e7"+ - "\u0001\u0000\u0000\u0000\u0578\u0576\u0001\u0000\u0000\u0000\u0579\u057e"+ - "\u0003\u00a6S\u0000\u057a\u057b\u0005o\u0000\u0000\u057b\u057d\u0003\u00a6"+ - "S\u0000\u057c\u057a\u0001\u0000\u0000\u0000\u057d\u0580\u0001\u0000\u0000"+ - "\u0000\u057e\u057c\u0001\u0000\u0000\u0000\u057e\u057f\u0001\u0000\u0000"+ - "\u0000\u057f\u00e9\u0001\u0000\u0000\u0000\u0580\u057e\u0001\u0000\u0000"+ - "\u0000\u0581\u058d\u0005`\u0000\u0000\u0582\u058e\u0003\u00ecv\u0000\u0583"+ - "\u0589\u0005h\u0000\u0000\u0584\u0585\u0003\u00ecv\u0000\u0585\u0586\u0003"+ - "\u0172\u00b9\u0000\u0586\u0588\u0001\u0000\u0000\u0000\u0587\u0584\u0001"+ - "\u0000\u0000\u0000\u0588\u058b\u0001\u0000\u0000\u0000\u0589\u0587\u0001"+ - "\u0000\u0000\u0000\u0589\u058a\u0001\u0000\u0000\u0000\u058a\u058c\u0001"+ - "\u0000\u0000\u0000\u058b\u0589\u0001\u0000\u0000\u0000\u058c\u058e\u0005"+ - "i\u0000\u0000\u058d\u0582\u0001\u0000\u0000\u0000\u058d\u0583\u0001\u0000"+ - "\u0000\u0000\u058e\u00eb\u0001\u0000\u0000\u0000\u058f\u0591\u0005g\u0000"+ - "\u0000\u0590\u0592\u0005n\u0000\u0000\u0591\u0590\u0001\u0000\u0000\u0000"+ - "\u0591\u0592\u0001\u0000\u0000\u0000\u0592\u0593\u0001\u0000\u0000\u0000"+ - "\u0593\u0594\u0003\u00c4b\u0000\u0594\u00ed\u0001\u0000\u0000\u0000\u0595"+ - "\u05a1\u0005e\u0000\u0000\u0596\u05a2\u0003\u0098L\u0000\u0597\u059d\u0005"+ - "h\u0000\u0000\u0598\u0599\u0003\u0098L\u0000\u0599\u059a\u0003\u0172\u00b9"+ - "\u0000\u059a\u059c\u0001\u0000\u0000\u0000\u059b\u0598\u0001\u0000\u0000"+ - "\u0000\u059c\u059f\u0001\u0000\u0000\u0000\u059d\u059b\u0001\u0000\u0000"+ - "\u0000\u059d\u059e\u0001\u0000\u0000\u0000\u059e\u05a0\u0001\u0000\u0000"+ - "\u0000\u059f\u059d\u0001\u0000\u0000\u0000\u05a0\u05a2\u0005i\u0000\u0000"+ - "\u05a1\u0596\u0001\u0000\u0000\u0000\u05a1\u0597\u0001\u0000\u0000\u0000"+ - "\u05a2\u00ef\u0001\u0000\u0000\u0000\u05a3\u05a5\u0005j\u0000\u0000\u05a4"+ - "\u05a6\u0003\u00f2y\u0000\u05a5\u05a4\u0001\u0000\u0000\u0000\u05a5\u05a6"+ - "\u0001\u0000\u0000\u0000\u05a6\u05a7\u0001\u0000\u0000\u0000\u05a7\u05a8"+ - "\u0005k\u0000\u0000\u05a8\u00f1\u0001\u0000\u0000\u0000\u05a9\u05ab\u0005"+ - "p\u0000\u0000\u05aa\u05a9\u0001\u0000\u0000\u0000\u05aa\u05ab\u0001\u0000"+ - "\u0000\u0000\u05ab\u05b1\u0001\u0000\u0000\u0000\u05ac\u05ae\u0005\u00a1"+ - "\u0000\u0000\u05ad\u05ac\u0001\u0000\u0000\u0000\u05ad\u05ae\u0001\u0000"+ - "\u0000\u0000\u05ae\u05b1\u0001\u0000\u0000\u0000\u05af\u05b1\u0004y\u0012"+ - "\u0000\u05b0\u05aa\u0001\u0000\u0000\u0000\u05b0\u05ad\u0001\u0000\u0000"+ - "\u0000\u05b0\u05af\u0001\u0000\u0000\u0000\u05b1\u05b2\u0001\u0000\u0000"+ - "\u0000\u05b2\u05b3\u0003\u00a8T\u0000\u05b3\u05b4\u0003\u0172\u00b9\u0000"+ - "\u05b4\u05b6\u0001\u0000\u0000\u0000\u05b5\u05b0\u0001\u0000\u0000\u0000"+ - "\u05b6\u05b7\u0001\u0000\u0000\u0000\u05b7\u05b5\u0001\u0000\u0000\u0000"+ - "\u05b7\u05b8\u0001\u0000\u0000\u0000\u05b8\u00f3\u0001\u0000\u0000\u0000"+ - "\u05b9\u05bf\u0003\u00f8|\u0000\u05ba\u05bf\u0003\u00fa}\u0000\u05bb\u05bf"+ - "\u0003\u00fc~\u0000\u05bc\u05bf\u0003\u00f6{\u0000\u05bd\u05bf\u0003\u009a"+ - "M\u0000\u05be\u05b9\u0001\u0000\u0000\u0000\u05be\u05ba\u0001\u0000\u0000"+ - "\u0000\u05be\u05bb\u0001\u0000\u0000\u0000\u05be\u05bc\u0001\u0000\u0000"+ - "\u0000\u05be\u05bd\u0001\u0000\u0000\u0000\u05bf\u00f5\u0001\u0000\u0000"+ - "\u0000\u05c0\u05c1\u0003\u00a6S\u0000\u05c1\u00f7\u0001\u0000\u0000\u0000"+ - "\u05c2\u05c3\u0003\u00a6S\u0000\u05c3\u05c4\u0005\u008b\u0000\u0000\u05c4"+ - "\u05c5\u0003\u00a6S\u0000\u05c5\u00f9\u0001\u0000\u0000\u0000\u05c6\u05c7"+ - "\u0003\u00a6S\u0000\u05c7\u05c8\u0007\u000f\u0000\u0000\u05c8\u00fb\u0001"+ - "\u0000\u0000\u0000\u05c9\u05ca\u0003\u00e8t\u0000\u05ca\u05cb\u0003\u00d8"+ - "l\u0000\u05cb\u05cc\u0003\u00e8t\u0000\u05cc\u00fd\u0001\u0000\u0000\u0000"+ - "\u05cd\u05ce\u0007\u0010\u0000\u0000\u05ce\u00ff\u0001\u0000\u0000\u0000"+ - "\u05cf\u05d0\u0005g\u0000\u0000\u05d0\u05d2\u0005q\u0000\u0000\u05d1\u05d3"+ - "\u0003\u00a8T\u0000\u05d2\u05d1\u0001\u0000\u0000\u0000\u05d2\u05d3\u0001"+ - "\u0000\u0000\u0000\u05d3\u0101\u0001\u0000\u0000\u0000\u05d4\u05d6\u0005"+ - "d\u0000\u0000\u05d5\u05d7\u0003\u00e8t\u0000\u05d6\u05d5\u0001\u0000\u0000"+ - "\u0000\u05d6\u05d7\u0001\u0000\u0000\u0000\u05d7\u0103\u0001\u0000\u0000"+ - "\u0000\u05d8\u05da\u0005M\u0000\u0000\u05d9\u05db\u0005g\u0000\u0000\u05da"+ - "\u05d9\u0001\u0000\u0000\u0000\u05da\u05db\u0001\u0000\u0000\u0000\u05db"+ - "\u0105\u0001\u0000\u0000\u0000\u05dc\u05de\u0005a\u0000\u0000\u05dd\u05df"+ - "\u0005g\u0000\u0000\u05de\u05dd\u0001\u0000\u0000\u0000\u05de\u05df\u0001"+ - "\u0000\u0000\u0000\u05df\u0107\u0001\u0000\u0000\u0000\u05e0\u05e1\u0005"+ - "Y\u0000\u0000\u05e1\u05e2\u0005g\u0000\u0000\u05e2\u0109\u0001\u0000\u0000"+ - "\u0000\u05e3\u05e4\u0005]\u0000\u0000\u05e4\u010b\u0001\u0000\u0000\u0000"+ - "\u05e5\u05ee\u0005^\u0000\u0000\u05e6\u05ef\u0003\u00a6S\u0000\u05e7\u05e8"+ - "\u0003\u0172\u00b9\u0000\u05e8\u05e9\u0003\u00a6S\u0000\u05e9\u05ef\u0001"+ - "\u0000\u0000\u0000\u05ea\u05eb\u0003\u00f4z\u0000\u05eb\u05ec\u0003\u0172"+ - "\u00b9\u0000\u05ec\u05ed\u0003\u00a6S\u0000\u05ed\u05ef\u0001\u0000\u0000"+ - "\u0000\u05ee\u05e6\u0001\u0000\u0000\u0000\u05ee\u05e7\u0001\u0000\u0000"+ - "\u0000\u05ee\u05ea\u0001\u0000\u0000\u0000\u05ef\u05f0\u0001\u0000\u0000"+ - "\u0000\u05f0\u05f6\u0003\u00f0x\u0000\u05f1\u05f4\u0005X\u0000\u0000\u05f2"+ - "\u05f5\u0003\u010c\u0086\u0000\u05f3\u05f5\u0003\u00f0x\u0000\u05f4\u05f2"+ - "\u0001\u0000\u0000\u0000\u05f4\u05f3\u0001\u0000\u0000\u0000\u05f5\u05f7"+ - "\u0001\u0000\u0000\u0000\u05f6\u05f1\u0001\u0000\u0000\u0000\u05f6\u05f7"+ - "\u0001\u0000\u0000\u0000\u05f7\u010d\u0001\u0000\u0000\u0000\u05f8\u05fb"+ - "\u0003\u0110\u0088\u0000\u05f9\u05fb\u0003\u0116\u008b\u0000\u05fa\u05f8"+ - "\u0001\u0000\u0000\u0000\u05fa\u05f9\u0001\u0000\u0000\u0000\u05fb\u010f"+ - "\u0001\u0000\u0000\u0000\u05fc\u0607\u0005[\u0000\u0000\u05fd\u05ff\u0003"+ - "\u00a6S\u0000\u05fe\u05fd\u0001\u0000\u0000\u0000\u05fe\u05ff\u0001\u0000"+ - "\u0000\u0000\u05ff\u0608\u0001\u0000\u0000\u0000\u0600\u0602\u0003\u00f4"+ - "z\u0000\u0601\u0600\u0001\u0000\u0000\u0000\u0601\u0602\u0001\u0000\u0000"+ - "\u0000\u0602\u0603\u0001\u0000\u0000\u0000\u0603\u0605\u0003\u0172\u00b9"+ - "\u0000\u0604\u0606\u0003\u00a6S\u0000\u0605\u0604\u0001\u0000\u0000\u0000"+ - "\u0605\u0606\u0001\u0000\u0000\u0000\u0606\u0608\u0001\u0000\u0000\u0000"+ - "\u0607\u05fe\u0001\u0000\u0000\u0000\u0607\u0601\u0001\u0000\u0000\u0000"+ - "\u0608\u0609\u0001\u0000\u0000\u0000\u0609\u060d\u0005j\u0000\u0000\u060a"+ - "\u060c\u0003\u0112\u0089\u0000\u060b\u060a\u0001\u0000\u0000\u0000\u060c"+ - "\u060f\u0001\u0000\u0000\u0000\u060d\u060b\u0001\u0000\u0000\u0000\u060d"+ - "\u060e\u0001\u0000\u0000\u0000\u060e\u0610\u0001\u0000\u0000\u0000\u060f"+ - "\u060d\u0001\u0000\u0000\u0000\u0610\u0611\u0005k\u0000\u0000\u0611\u0111"+ - "\u0001\u0000\u0000\u0000\u0612\u0613\u0003\u0114\u008a\u0000\u0613\u0615"+ - "\u0005q\u0000\u0000\u0614\u0616\u0003\u00f2y\u0000\u0615\u0614\u0001\u0000"+ - "\u0000\u0000\u0615\u0616\u0001\u0000\u0000\u0000\u0616\u0113\u0001\u0000"+ - "\u0000\u0000\u0617\u0618\u0005R\u0000\u0000\u0618\u061b\u0003\u00e8t\u0000"+ - "\u0619\u061b\u0005N\u0000\u0000\u061a\u0617\u0001\u0000\u0000\u0000\u061a"+ - "\u0619\u0001\u0000\u0000\u0000\u061b\u0115\u0001\u0000\u0000\u0000\u061c"+ - "\u0625\u0005[\u0000\u0000\u061d\u0626\u0003\u0118\u008c\u0000\u061e\u061f"+ - "\u0003\u0172\u00b9\u0000\u061f\u0620\u0003\u0118\u008c\u0000\u0620\u0626"+ - "\u0001\u0000\u0000\u0000\u0621\u0622\u0003\u00f4z\u0000\u0622\u0623\u0003"+ - "\u0172\u00b9\u0000\u0623\u0624\u0003\u0118\u008c\u0000\u0624\u0626\u0001"+ - "\u0000\u0000\u0000\u0625\u061d\u0001\u0000\u0000\u0000\u0625\u061e\u0001"+ - "\u0000\u0000\u0000\u0625\u0621\u0001\u0000\u0000\u0000\u0626\u0627\u0001"+ - "\u0000\u0000\u0000\u0627\u062b\u0005j\u0000\u0000\u0628\u062a\u0003\u011a"+ - "\u008d\u0000\u0629\u0628\u0001\u0000\u0000\u0000\u062a\u062d\u0001\u0000"+ - "\u0000\u0000\u062b\u0629\u0001\u0000\u0000\u0000\u062b\u062c\u0001\u0000"+ - "\u0000\u0000\u062c\u062e\u0001\u0000\u0000\u0000\u062d\u062b\u0001\u0000"+ - "\u0000\u0000\u062e\u062f\u0005k\u0000\u0000\u062f\u0117\u0001\u0000\u0000"+ - "\u0000\u0630\u0631\u0005g\u0000\u0000\u0631\u0633\u0005u\u0000\u0000\u0632"+ - "\u0630\u0001\u0000\u0000\u0000\u0632\u0633\u0001\u0000\u0000\u0000\u0633"+ - "\u0634\u0001\u0000\u0000\u0000\u0634\u0635\u0003\u00b6[\u0000\u0635\u0636"+ - "\u0005r\u0000\u0000\u0636\u0637\u0005h\u0000\u0000\u0637\u0638\u0005`"+ - "\u0000\u0000\u0638\u0639\u0005i\u0000\u0000\u0639\u0119\u0001\u0000\u0000"+ - "\u0000\u063a\u063b\u0003\u011c\u008e\u0000\u063b\u063d\u0005q\u0000\u0000"+ - "\u063c\u063e\u0003\u00f2y\u0000\u063d\u063c\u0001\u0000\u0000\u0000\u063d"+ - "\u063e\u0001\u0000\u0000\u0000\u063e\u011b\u0001\u0000\u0000\u0000\u063f"+ - "\u0640\u0005R\u0000\u0000\u0640\u0643\u0003\u011e\u008f\u0000\u0641\u0643"+ - "\u0005N\u0000\u0000\u0642\u063f\u0001\u0000\u0000\u0000\u0642\u0641\u0001"+ - "\u0000\u0000\u0000\u0643\u011d\u0001\u0000\u0000\u0000\u0644\u0647\u0003"+ - "\u00c4b\u0000\u0645\u0647\u0005f\u0000\u0000\u0646\u0644\u0001\u0000\u0000"+ - "\u0000\u0646\u0645\u0001\u0000\u0000\u0000\u0647\u064f\u0001\u0000\u0000"+ - "\u0000\u0648\u064b\u0005o\u0000\u0000\u0649\u064c\u0003\u00c4b\u0000\u064a"+ - "\u064c\u0005f\u0000\u0000\u064b\u0649\u0001\u0000\u0000\u0000\u064b\u064a"+ - "\u0001\u0000\u0000\u0000\u064c\u064e\u0001\u0000\u0000\u0000\u064d\u0648"+ - "\u0001\u0000\u0000\u0000\u064e\u0651\u0001\u0000\u0000\u0000\u064f\u064d"+ - "\u0001\u0000\u0000\u0000\u064f\u0650\u0001\u0000\u0000\u0000\u0650\u011f"+ - "\u0001\u0000\u0000\u0000\u0651\u064f\u0001\u0000\u0000\u0000\u0652\u0653"+ - "\u0005Q\u0000\u0000\u0653\u0657\u0005j\u0000\u0000\u0654\u0656\u0003\u0122"+ - "\u0091\u0000\u0655\u0654\u0001\u0000\u0000\u0000\u0656\u0659\u0001\u0000"+ - "\u0000\u0000\u0657\u0655\u0001\u0000\u0000\u0000\u0657\u0658\u0001\u0000"+ - "\u0000\u0000\u0658\u065a\u0001\u0000\u0000\u0000\u0659\u0657\u0001\u0000"+ - "\u0000\u0000\u065a\u065b\u0005k\u0000\u0000\u065b\u0121\u0001\u0000\u0000"+ - "\u0000\u065c\u065d\u0003\u0124\u0092\u0000\u065d\u065f\u0005q\u0000\u0000"+ - "\u065e\u0660\u0003\u00f2y\u0000\u065f\u065e\u0001\u0000\u0000\u0000\u065f"+ - "\u0660\u0001\u0000\u0000\u0000\u0660\u0123\u0001\u0000\u0000\u0000\u0661"+ - "\u0664\u0005R\u0000\u0000\u0662\u0665\u0003\u00f8|\u0000\u0663\u0665\u0003"+ - "\u0126\u0093\u0000\u0664\u0662\u0001\u0000\u0000\u0000\u0664\u0663\u0001"+ - "\u0000\u0000\u0000\u0665\u0668\u0001\u0000\u0000\u0000\u0666\u0668\u0005"+ - "N\u0000\u0000\u0667\u0661\u0001\u0000\u0000\u0000\u0667\u0666\u0001\u0000"+ - "\u0000\u0000\u0668\u0125\u0001\u0000\u0000\u0000\u0669\u066a\u0003\u00e8"+ - "t\u0000\u066a\u066b\u0005n\u0000\u0000\u066b\u0670\u0001\u0000\u0000\u0000"+ - "\u066c\u066d\u0003\u00e6s\u0000\u066d\u066e\u0005u\u0000\u0000\u066e\u0670"+ - "\u0001\u0000\u0000\u0000\u066f\u0669\u0001\u0000\u0000\u0000\u066f\u066c"+ - "\u0001\u0000\u0000\u0000\u066f\u0670\u0001\u0000\u0000\u0000\u0670\u0671"+ - "\u0001\u0000\u0000\u0000\u0671\u0672\u0003\u00a6S\u0000\u0672\u0127\u0001"+ - "\u0000\u0000\u0000\u0673\u067b\u0005b\u0000\u0000\u0674\u0676\u0003\u00a6"+ - "S\u0000\u0675\u0674\u0001\u0000\u0000\u0000\u0675\u0676\u0001\u0000\u0000"+ - "\u0000\u0676\u067c\u0001\u0000\u0000\u0000\u0677\u067c\u0003\u012a\u0095"+ - "\u0000\u0678\u067a\u0003\u00dam\u0000\u0679\u0678\u0001\u0000\u0000\u0000"+ - "\u0679\u067a\u0001\u0000\u0000\u0000\u067a\u067c\u0001\u0000\u0000\u0000"+ - "\u067b\u0675\u0001\u0000\u0000\u0000\u067b\u0677\u0001\u0000\u0000\u0000"+ - "\u067b\u0679\u0001\u0000\u0000\u0000\u067c\u067d\u0001\u0000\u0000\u0000"+ - "\u067d\u067e\u0003\u00f0x\u0000\u067e\u0129\u0001\u0000\u0000\u0000\u067f"+ - "\u0681\u0003\u00f4z\u0000\u0680\u067f\u0001\u0000\u0000\u0000\u0680\u0681"+ - "\u0001\u0000\u0000\u0000\u0681\u0682\u0001\u0000\u0000\u0000\u0682\u0684"+ - "\u0003\u0172\u00b9\u0000\u0683\u0685\u0003\u00a6S\u0000\u0684\u0683\u0001"+ - "\u0000\u0000\u0000\u0684\u0685\u0001\u0000\u0000\u0000\u0685\u0686\u0001"+ - "\u0000\u0000\u0000\u0686\u0688\u0003\u0172\u00b9\u0000\u0687\u0689\u0003"+ - "\u00f4z\u0000\u0688\u0687\u0001\u0000\u0000\u0000\u0688\u0689\u0001\u0000"+ - "\u0000\u0000\u0689\u012b\u0001\u0000\u0000\u0000\u068a\u068b\u0005T\u0000"+ - "\u0000\u068b\u068c\u0003\u00a6S\u0000\u068c\u012d\u0001\u0000\u0000\u0000"+ - "\u068d\u0690\u0003\u0152\u00a9\u0000\u068e\u0690\u0005g\u0000\u0000\u068f"+ - "\u068d\u0001\u0000\u0000\u0000\u068f\u068e\u0001\u0000\u0000\u0000\u0690"+ - "\u012f\u0001\u0000\u0000\u0000\u0691\u0692\u0005l\u0000\u0000\u0692\u0693"+ - "\u0003\u0132\u0099\u0000\u0693\u0694\u0005m\u0000\u0000\u0694\u0695\u0003"+ - "\u0134\u009a\u0000\u0695\u0131\u0001\u0000\u0000\u0000\u0696\u0697\u0003"+ - "\u00a6S\u0000\u0697\u0133\u0001\u0000\u0000\u0000\u0698\u0699\u0003\u00c4"+ - "b\u0000\u0699\u0135\u0001\u0000\u0000\u0000\u069a\u069b\u0005\u0089\u0000"+ - "\u0000\u069b\u069c\u0003\u00c4b\u0000\u069c\u0137\u0001\u0000\u0000\u0000"+ - "\u069d\u069e\u0005l\u0000\u0000\u069e\u069f\u0005m\u0000\u0000\u069f\u06a0"+ - "\u0003\u0134\u009a\u0000\u06a0\u0139\u0001\u0000\u0000\u0000\u06a1\u06a2"+ - "\u0005U\u0000\u0000\u06a2\u06a3\u0005l\u0000\u0000\u06a3\u06a4\u0003\u00c4"+ - "b\u0000\u06a4\u06a5\u0005m\u0000\u0000\u06a5\u06a6\u0003\u0134\u009a\u0000"+ - "\u06a6\u013b\u0001\u0000\u0000\u0000\u06a7\u06ad\u0005W\u0000\u0000\u06a8"+ - "\u06a9\u0005W\u0000\u0000\u06a9\u06ad\u0005\u008b\u0000\u0000\u06aa\u06ab"+ - "\u0005\u008b\u0000\u0000\u06ab\u06ad\u0005W\u0000\u0000\u06ac\u06a7\u0001"+ - "\u0000\u0000\u0000\u06ac\u06a8\u0001\u0000\u0000\u0000\u06ac\u06aa\u0001"+ - "\u0000\u0000\u0000\u06ad\u06ae\u0001\u0000\u0000\u0000\u06ae\u06af\u0003"+ - "\u0134\u009a\u0000\u06af\u013d\u0001\u0000\u0000\u0000\u06b0\u06b1\u0005"+ - "O\u0000\u0000\u06b1\u06b2\u0003\u0140\u00a0\u0000\u06b2\u013f\u0001\u0000"+ - "\u0000\u0000\u06b3\u06b4\u0003\u0144\u00a2\u0000\u06b4\u06b5\u0003\u0142"+ - "\u00a1\u0000\u06b5\u06b8\u0001\u0000\u0000\u0000\u06b6\u06b8\u0003\u0144"+ - "\u00a2\u0000\u06b7\u06b3\u0001\u0000\u0000\u0000\u06b7\u06b6\u0001\u0000"+ - "\u0000\u0000\u06b8\u0141\u0001\u0000\u0000\u0000\u06b9\u06bc\u0003\u0144"+ - "\u00a2\u0000\u06ba\u06bc\u0003\u00c4b\u0000\u06bb\u06b9\u0001\u0000\u0000"+ - "\u0000\u06bb\u06ba\u0001\u0000\u0000\u0000\u06bc\u0143\u0001\u0000\u0000"+ - "\u0000\u06bd\u06c9\u0005h\u0000\u0000\u06be\u06c3\u0003\u009eO\u0000\u06bf"+ - "\u06c0\u0005o\u0000\u0000\u06c0\u06c2\u0003\u009eO\u0000\u06c1\u06bf\u0001"+ - "\u0000\u0000\u0000\u06c2\u06c5\u0001\u0000\u0000\u0000\u06c3\u06c1\u0001"+ - "\u0000\u0000\u0000\u06c3\u06c4\u0001\u0000\u0000\u0000\u06c4\u06c7\u0001"+ - "\u0000\u0000\u0000\u06c5\u06c3\u0001\u0000\u0000\u0000\u06c6\u06c8\u0005"+ - "o\u0000\u0000\u06c7\u06c6\u0001\u0000\u0000\u0000\u06c7\u06c8\u0001\u0000"+ - "\u0000\u0000\u06c8\u06ca\u0001\u0000\u0000\u0000\u06c9\u06be\u0001\u0000"+ - "\u0000\u0000\u06c9\u06ca\u0001\u0000\u0000\u0000\u06ca\u06cb\u0001\u0000"+ - "\u0000\u0000\u06cb\u06cc\u0005i\u0000\u0000\u06cc\u0145\u0001\u0000\u0000"+ - "\u0000\u06cd\u06ce\u0003\u0148\u00a4\u0000\u06ce\u06cf\u0005h\u0000\u0000"+ - "\u06cf\u06d1\u0003\u00a6S\u0000\u06d0\u06d2\u0005o\u0000\u0000\u06d1\u06d0"+ - "\u0001\u0000\u0000\u0000\u06d1\u06d2\u0001\u0000\u0000\u0000\u06d2\u06d3"+ - "\u0001\u0000\u0000\u0000\u06d3\u06d4\u0005i\u0000\u0000\u06d4\u0147\u0001"+ - "\u0000\u0000\u0000\u06d5\u06db\u0003\u00c6c\u0000\u06d6\u06d7\u0005h\u0000"+ - "\u0000\u06d7\u06d8\u0003\u0148\u00a4\u0000\u06d8\u06d9\u0005i\u0000\u0000"+ - "\u06d9\u06db\u0001\u0000\u0000\u0000\u06da\u06d5\u0001\u0000\u0000\u0000"+ - "\u06da\u06d6\u0001\u0000\u0000\u0000\u06db\u0149\u0001\u0000\u0000\u0000"+ - "\u06dc\u06e3\u0003\u014c\u00a6\u0000\u06dd\u06e3\u0003\u0150\u00a8\u0000"+ - "\u06de\u06df\u0005h\u0000\u0000\u06df\u06e0\u0003\u00a6S\u0000\u06e0\u06e1"+ - "\u0005i\u0000\u0000\u06e1\u06e3\u0001\u0000\u0000\u0000\u06e2\u06dc\u0001"+ - "\u0000\u0000\u0000\u06e2\u06dd\u0001\u0000\u0000\u0000\u06e2\u06de\u0001"+ - "\u0000\u0000\u0000\u06e3\u014b\u0001\u0000\u0000\u0000\u06e4\u06e8\u0003"+ - "\u00b4Z\u0000\u06e5\u06e8\u0003\u0154\u00aa\u0000\u06e6\u06e8\u0003\u00b8"+ - "\\\u0000\u06e7\u06e4\u0001\u0000\u0000\u0000\u06e7\u06e5\u0001\u0000\u0000"+ - "\u0000\u06e7\u06e6\u0001\u0000\u0000\u0000\u06e8\u014d\u0001\u0000\u0000"+ - "\u0000\u06e9\u06ea\u0007\u0011\u0000\u0000\u06ea\u014f\u0001\u0000\u0000"+ - "\u0000\u06eb\u06ec\u0005g\u0000\u0000\u06ec\u0151\u0001\u0000\u0000\u0000"+ - "\u06ed\u06ee\u0005g\u0000\u0000\u06ee\u06ef\u0005r\u0000\u0000\u06ef\u06f0"+ - "\u0005g\u0000\u0000\u06f0\u0153\u0001\u0000\u0000\u0000\u06f1\u06f2\u0003"+ - "\u00ccf\u0000\u06f2\u06f3\u0003\u0156\u00ab\u0000\u06f3\u0155\u0001\u0000"+ - "\u0000\u0000\u06f4\u06f9\u0005j\u0000\u0000\u06f5\u06f7\u0003\u0158\u00ac"+ - "\u0000\u06f6\u06f8\u0005o\u0000\u0000\u06f7\u06f6\u0001\u0000\u0000\u0000"+ - "\u06f7\u06f8\u0001\u0000\u0000\u0000\u06f8\u06fa\u0001\u0000\u0000\u0000"+ - "\u06f9\u06f5\u0001\u0000\u0000\u0000\u06f9\u06fa\u0001\u0000\u0000\u0000"+ - "\u06fa\u06fb\u0001\u0000\u0000\u0000\u06fb\u06fc\u0005k\u0000\u0000\u06fc"+ - "\u0157\u0001\u0000\u0000\u0000\u06fd\u0702\u0003\u015a\u00ad\u0000\u06fe"+ - "\u06ff\u0005o\u0000\u0000\u06ff\u0701\u0003\u015a\u00ad\u0000\u0700\u06fe"+ - "\u0001\u0000\u0000\u0000\u0701\u0704\u0001\u0000\u0000\u0000\u0702\u0700"+ - "\u0001\u0000\u0000\u0000\u0702\u0703\u0001\u0000\u0000\u0000\u0703\u0159"+ - "\u0001\u0000\u0000\u0000\u0704\u0702\u0001\u0000\u0000\u0000\u0705\u0706"+ - "\u0003\u015c\u00ae\u0000\u0706\u0707\u0005q\u0000\u0000\u0707\u0709\u0001"+ - "\u0000\u0000\u0000\u0708\u0705\u0001\u0000\u0000\u0000\u0708\u0709\u0001"+ - "\u0000\u0000\u0000\u0709\u070a\u0001\u0000\u0000\u0000\u070a\u070b\u0003"+ - "\u015e\u00af\u0000\u070b\u015b\u0001\u0000\u0000\u0000\u070c\u070f\u0003"+ - "\u00a6S\u0000\u070d\u070f\u0003\u0156\u00ab\u0000\u070e\u070c\u0001\u0000"+ - "\u0000\u0000\u070e\u070d\u0001\u0000\u0000\u0000\u070f\u015d\u0001\u0000"+ - "\u0000\u0000\u0710\u0713\u0003\u00a6S\u0000\u0711\u0713\u0003\u0156\u00ab"+ - "\u0000\u0712\u0710\u0001\u0000\u0000\u0000\u0712\u0711\u0001\u0000\u0000"+ - "\u0000\u0713\u015f\u0001\u0000\u0000\u0000\u0714\u0715\u0005V\u0000\u0000"+ - "\u0715\u071b\u0005j\u0000\u0000\u0716\u0717\u0003\u0162\u00b1\u0000\u0717"+ - "\u0718\u0003\u0172\u00b9\u0000\u0718\u071a\u0001\u0000\u0000\u0000\u0719"+ - "\u0716\u0001\u0000\u0000\u0000\u071a\u071d\u0001\u0000\u0000\u0000\u071b"+ - "\u0719\u0001\u0000\u0000\u0000\u071b\u071c\u0001\u0000\u0000\u0000\u071c"+ - "\u071e\u0001\u0000\u0000\u0000\u071d\u071b\u0001\u0000\u0000\u0000\u071e"+ - "\u071f\u0005k\u0000\u0000\u071f\u0161\u0001\u0000\u0000\u0000\u0720\u0721"+ - "\u0003\u00e6s\u0000\u0721\u0722\u0003\u00c4b\u0000\u0722\u0725\u0001\u0000"+ - "\u0000\u0000\u0723\u0725\u0003\u0166\u00b3\u0000\u0724\u0720\u0001\u0000"+ - "\u0000\u0000\u0724\u0723\u0001\u0000\u0000\u0000\u0725\u0727\u0001\u0000"+ - "\u0000\u0000\u0726\u0728\u0003\u0164\u00b2\u0000\u0727\u0726\u0001\u0000"+ - "\u0000\u0000\u0727\u0728\u0001\u0000\u0000\u0000\u0728\u0163\u0001\u0000"+ - "\u0000\u0000\u0729\u072a\u0007\u0012\u0000\u0000\u072a\u0165\u0001\u0000"+ - "\u0000\u0000\u072b\u072d\u0005\u0089\u0000\u0000\u072c\u072b\u0001\u0000"+ - "\u0000\u0000\u072c\u072d\u0001\u0000\u0000\u0000\u072d\u072e\u0001\u0000"+ - "\u0000\u0000\u072e\u072f\u0003\u012e\u0097\u0000\u072f\u0167\u0001\u0000"+ - "\u0000\u0000\u0730\u0731\u0005l\u0000\u0000\u0731\u0732\u0003\u00a6S\u0000"+ - "\u0732\u0733\u0005m\u0000\u0000\u0733\u0169\u0001\u0000\u0000\u0000\u0734"+ - "\u0735\u0005r\u0000\u0000\u0735\u0736\u0005h\u0000\u0000\u0736\u0737\u0003"+ - "\u00c4b\u0000\u0737\u0738\u0005i\u0000\u0000\u0738\u016b\u0001\u0000\u0000"+ - "\u0000\u0739\u0748\u0005h\u0000\u0000\u073a\u0741\u0003\u00e8t\u0000\u073b"+ - "\u073e\u0003\u0148\u00a4\u0000\u073c\u073d\u0005o\u0000\u0000\u073d\u073f"+ - "\u0003\u00e8t\u0000\u073e\u073c\u0001\u0000\u0000\u0000\u073e\u073f\u0001"+ - "\u0000\u0000\u0000\u073f\u0741\u0001\u0000\u0000\u0000\u0740\u073a\u0001"+ - "\u0000\u0000\u0000\u0740\u073b\u0001\u0000\u0000\u0000\u0741\u0743\u0001"+ - "\u0000\u0000\u0000\u0742\u0744\u0005v\u0000\u0000\u0743\u0742\u0001\u0000"+ - "\u0000\u0000\u0743\u0744\u0001\u0000\u0000\u0000\u0744\u0746\u0001\u0000"+ - "\u0000\u0000\u0745\u0747\u0005o\u0000\u0000\u0746\u0745\u0001\u0000\u0000"+ - "\u0000\u0746\u0747\u0001\u0000\u0000\u0000\u0747\u0749\u0001\u0000\u0000"+ - "\u0000\u0748\u0740\u0001\u0000\u0000\u0000\u0748\u0749\u0001\u0000\u0000"+ - "\u0000\u0749\u074a\u0001\u0000\u0000\u0000\u074a\u074b\u0005i\u0000\u0000"+ - "\u074b\u016d\u0001\u0000\u0000\u0000\u074c\u074d\u0003\u0148\u00a4\u0000"+ - "\u074d\u074e\u0005r\u0000\u0000\u074e\u074f\u0005g\u0000\u0000\u074f\u016f"+ - "\u0001\u0000\u0000\u0000\u0750\u0751\u0003\u00c4b\u0000\u0751\u0171\u0001"+ - "\u0000\u0000\u0000\u0752\u0757\u0005p\u0000\u0000\u0753\u0757\u0005\u0000"+ - "\u0000\u0001\u0754\u0757\u0005\u00a1\u0000\u0000\u0755\u0757\u0004\u00b9"+ - "\u0013\u0000\u0756\u0752\u0001\u0000\u0000\u0000\u0756\u0753\u0001\u0000"+ - "\u0000\u0000\u0756\u0754\u0001\u0000\u0000\u0000\u0756\u0755\u0001\u0000"+ - "\u0000\u0000\u0757\u0173\u0001\u0000\u0000\u0000\u00c2\u0182\u0187\u018e"+ - "\u0198\u019e\u01a4\u01ae\u01b8\u01c6\u01ca\u01d3\u01df\u01e3\u01e9\u01f2"+ - "\u01fc\u020d\u021b\u021f\u0226\u022e\u0237\u0257\u025f\u0277\u028a\u0299"+ - "\u02a6\u02af\u02bd\u02c6\u02d2\u02d8\u02ec\u02f5\u02fa\u02ff\u0309\u030c"+ - "\u0310\u0314\u031c\u0324\u0329\u0331\u0333\u0338\u033f\u0347\u034a\u0350"+ - "\u0355\u0357\u035a\u0361\u0366\u0379\u0381\u0385\u0388\u038e\u0392\u0395"+ - "\u039f\u03a6\u03ad\u03b9\u03bf\u03c6\u03cb\u03d1\u03dd\u03e3\u03e7\u03ef"+ - "\u03f3\u03f9\u03fc\u0402\u0407\u0420\u0443\u0445\u045c\u0464\u046f\u0476"+ - "\u047d\u0487\u0499\u04af\u04b1\u04b9\u04bd\u04c1\u04c4\u04cd\u04d3\u04dd"+ - "\u04e5\u04eb\u04f4\u04ff\u050a\u050e\u0510\u051b\u0524\u0528\u052b\u0532"+ - "\u053d\u0547\u054d\u054f\u0559\u0563\u0567\u056b\u056f\u0576\u057e\u0589"+ - "\u058d\u0591\u059d\u05a1\u05a5\u05aa\u05ad\u05b0\u05b7\u05be\u05d2\u05d6"+ - "\u05da\u05de\u05ee\u05f4\u05f6\u05fa\u05fe\u0601\u0605\u0607\u060d\u0615"+ - "\u061a\u0625\u062b\u0632\u063d\u0642\u0646\u064b\u064f\u0657\u065f\u0664"+ - "\u0667\u066f\u0675\u0679\u067b\u0680\u0684\u0688\u068f\u06ac\u06b7\u06bb"+ - "\u06c3\u06c7\u06c9\u06d1\u06da\u06e2\u06e7\u06f7\u06f9\u0702\u0708\u070e"+ - "\u0712\u071b\u0724\u0727\u072c\u073e\u0740\u0743\u0746\u0748\u0756"; + "\u0172\u0174\u0000\u0013\u0002\u0000hhss\u0001\u0000\u0017\u0018\u0001"+ + "\u0000\u0005\b\u0001\u0000BC\u0001\u0000(*\u0002\u0000(*,,\u0001\u0000"+ + "\u0086\u008c\u0001\u0000\u0014\u0015\u0002\u0000\u0081\u0085\u008a\u008b"+ + "\u0004\u0000##tt\u0080\u0080\u0087\u0089\u0001\u0000\u001f!\u0001\u0000"+ + "\u001c\u001e\u0002\u0000IJz\u007f\u0004\u0000..1144``\u0002\u0000\u0080"+ + "\u0085\u0087\u008b\u0001\u0000tu\u0002\u0000qq\u00a2\u00a2\u0002\u0000"+ + "\u008d\u0090\u0092\u0093\u0001\u0000\u0099\u009a\u07cc\u0000\u0176\u0001"+ + "\u0000\u0000\u0000\u0002\u0179\u0001\u0000\u0000\u0000\u0004\u017c\u0001"+ + "\u0000\u0000\u0000\u0006\u017f\u0001\u0000\u0000\u0000\b\u0187\u0001\u0000"+ + "\u0000\u0000\n\u0190\u0001\u0000\u0000\u0000\f\u01b0\u0001\u0000\u0000"+ + "\u0000\u000e\u01bd\u0001\u0000\u0000\u0000\u0010\u01c0\u0001\u0000\u0000"+ + "\u0000\u0012\u01c8\u0001\u0000\u0000\u0000\u0014\u01d5\u0001\u0000\u0000"+ + "\u0000\u0016\u01eb\u0001\u0000\u0000\u0000\u0018\u01f4\u0001\u0000\u0000"+ + "\u0000\u001a\u01f6\u0001\u0000\u0000\u0000\u001c\u01f8\u0001\u0000\u0000"+ + "\u0000\u001e\u01fb\u0001\u0000\u0000\u0000 \u020f\u0001\u0000\u0000\u0000"+ + "\"\u0211\u0001\u0000\u0000\u0000$\u0213\u0001\u0000\u0000\u0000&\u0218"+ + "\u0001\u0000\u0000\u0000(\u0223\u0001\u0000\u0000\u0000*\u0230\u0001\u0000"+ + "\u0000\u0000,\u0233\u0001\u0000\u0000\u0000.\u023e\u0001\u0000\u0000\u0000"+ + "0\u0240\u0001\u0000\u0000\u00002\u0245\u0001\u0000\u0000\u00004\u024a"+ + "\u0001\u0000\u0000\u00006\u024f\u0001\u0000\u0000\u00008\u0254\u0001\u0000"+ + "\u0000\u0000:\u0261\u0001\u0000\u0000\u0000<\u0263\u0001\u0000\u0000\u0000"+ + ">\u0265\u0001\u0000\u0000\u0000@\u026a\u0001\u0000\u0000\u0000B\u026f"+ + "\u0001\u0000\u0000\u0000D\u0274\u0001\u0000\u0000\u0000F\u027d\u0001\u0000"+ + "\u0000\u0000H\u0284\u0001\u0000\u0000\u0000J\u0291\u0001\u0000\u0000\u0000"+ + "L\u0295\u0001\u0000\u0000\u0000N\u02a0\u0001\u0000\u0000\u0000P\u02a9"+ + "\u0001\u0000\u0000\u0000R\u02ab\u0001\u0000\u0000\u0000T\u02c0\u0001\u0000"+ + "\u0000\u0000V\u02c2\u0001\u0000\u0000\u0000X\u02ce\u0001\u0000\u0000\u0000"+ + "Z\u02db\u0001\u0000\u0000\u0000\\\u02df\u0001\u0000\u0000\u0000^\u02e4"+ + "\u0001\u0000\u0000\u0000`\u02f4\u0001\u0000\u0000\u0000b\u0302\u0001\u0000"+ + "\u0000\u0000d\u0311\u0001\u0000\u0000\u0000f\u0314\u0001\u0000\u0000\u0000"+ + "h\u031c\u0001\u0000\u0000\u0000j\u031e\u0001\u0000\u0000\u0000l\u0329"+ + "\u0001\u0000\u0000\u0000n\u0331\u0001\u0000\u0000\u0000p\u0340\u0001\u0000"+ + "\u0000\u0000r\u0342\u0001\u0000\u0000\u0000t\u034a\u0001\u0000\u0000\u0000"+ + "v\u0358\u0001\u0000\u0000\u0000x\u0364\u0001\u0000\u0000\u0000z\u036e"+ + "\u0001\u0000\u0000\u0000|\u0372\u0001\u0000\u0000\u0000~\u0378\u0001\u0000"+ + "\u0000\u0000\u0080\u0390\u0001\u0000\u0000\u0000\u0082\u0398\u0001\u0000"+ + "\u0000\u0000\u0084\u03a7\u0001\u0000\u0000\u0000\u0086\u03a9\u0001\u0000"+ + "\u0000\u0000\u0088\u03b0\u0001\u0000\u0000\u0000\u008a\u03b9\u0001\u0000"+ + "\u0000\u0000\u008c\u03be\u0001\u0000\u0000\u0000\u008e\u03c3\u0001\u0000"+ + "\u0000\u0000\u0090\u03c9\u0001\u0000\u0000\u0000\u0092\u03d0\u0001\u0000"+ + "\u0000\u0000\u0094\u03d5\u0001\u0000\u0000\u0000\u0096\u03db\u0001\u0000"+ + "\u0000\u0000\u0098\u03e0\u0001\u0000\u0000\u0000\u009a\u03e7\u0001\u0000"+ + "\u0000\u0000\u009c\u03f1\u0001\u0000\u0000\u0000\u009e\u03f5\u0001\u0000"+ + "\u0000\u0000\u00a0\u0401\u0001\u0000\u0000\u0000\u00a2\u0404\u0001\u0000"+ + "\u0000\u0000\u00a4\u0408\u0001\u0000\u0000\u0000\u00a6\u040f\u0001\u0000"+ + "\u0000\u0000\u00a8\u0428\u0001\u0000\u0000\u0000\u00aa\u0464\u0001\u0000"+ + "\u0000\u0000\u00ac\u0466\u0001\u0000\u0000\u0000\u00ae\u0469\u0001\u0000"+ + "\u0000\u0000\u00b0\u046e\u0001\u0000\u0000\u0000\u00b2\u0477\u0001\u0000"+ + "\u0000\u0000\u00b4\u0485\u0001\u0000\u0000\u0000\u00b6\u048f\u0001\u0000"+ + "\u0000\u0000\u00b8\u04a1\u0001\u0000\u0000\u0000\u00ba\u04bc\u0001\u0000"+ + "\u0000\u0000\u00bc\u04bf\u0001\u0000\u0000\u0000\u00be\u04c7\u0001\u0000"+ + "\u0000\u0000\u00c0\u04d0\u0001\u0000\u0000\u0000\u00c2\u04e0\u0001\u0000"+ + "\u0000\u0000\u00c4\u04f3\u0001\u0000\u0000\u0000\u00c6\u04fc\u0001\u0000"+ + "\u0000\u0000\u00c8\u0507\u0001\u0000\u0000\u0000\u00ca\u0509\u0001\u0000"+ + "\u0000\u0000\u00cc\u050c\u0001\u0000\u0000\u0000\u00ce\u0523\u0001\u0000"+ + "\u0000\u0000\u00d0\u0525\u0001\u0000\u0000\u0000\u00d2\u052a\u0001\u0000"+ + "\u0000\u0000\u00d4\u053e\u0001\u0000\u0000\u0000\u00d6\u0540\u0001\u0000"+ + "\u0000\u0000\u00d8\u0542\u0001\u0000\u0000\u0000\u00da\u0545\u0001\u0000"+ + "\u0000\u0000\u00dc\u054f\u0001\u0000\u0000\u0000\u00de\u0559\u0001\u0000"+ + "\u0000\u0000\u00e0\u055c\u0001\u0000\u0000\u0000\u00e2\u0561\u0001\u0000"+ + "\u0000\u0000\u00e4\u0563\u0001\u0000\u0000\u0000\u00e6\u0571\u0001\u0000"+ + "\u0000\u0000\u00e8\u0579\u0001\u0000\u0000\u0000\u00ea\u0581\u0001\u0000"+ + "\u0000\u0000\u00ec\u0589\u0001\u0000\u0000\u0000\u00ee\u0597\u0001\u0000"+ + "\u0000\u0000\u00f0\u059d\u0001\u0000\u0000\u0000\u00f2\u05ab\u0001\u0000"+ + "\u0000\u0000\u00f4\u05bd\u0001\u0000\u0000\u0000\u00f6\u05c6\u0001\u0000"+ + "\u0000\u0000\u00f8\u05c8\u0001\u0000\u0000\u0000\u00fa\u05ca\u0001\u0000"+ + "\u0000\u0000\u00fc\u05ce\u0001\u0000\u0000\u0000\u00fe\u05d1\u0001\u0000"+ + "\u0000\u0000\u0100\u05d5\u0001\u0000\u0000\u0000\u0102\u05d7\u0001\u0000"+ + "\u0000\u0000\u0104\u05dc\u0001\u0000\u0000\u0000\u0106\u05e0\u0001\u0000"+ + "\u0000\u0000\u0108\u05e4\u0001\u0000\u0000\u0000\u010a\u05e8\u0001\u0000"+ + "\u0000\u0000\u010c\u05eb\u0001\u0000\u0000\u0000\u010e\u05ed\u0001\u0000"+ + "\u0000\u0000\u0110\u0602\u0001\u0000\u0000\u0000\u0112\u0604\u0001\u0000"+ + "\u0000\u0000\u0114\u061a\u0001\u0000\u0000\u0000\u0116\u0622\u0001\u0000"+ + "\u0000\u0000\u0118\u0624\u0001\u0000\u0000\u0000\u011a\u063a\u0001\u0000"+ + "\u0000\u0000\u011c\u0642\u0001\u0000\u0000\u0000\u011e\u064a\u0001\u0000"+ + "\u0000\u0000\u0120\u064e\u0001\u0000\u0000\u0000\u0122\u065a\u0001\u0000"+ + "\u0000\u0000\u0124\u0664\u0001\u0000\u0000\u0000\u0126\u066f\u0001\u0000"+ + "\u0000\u0000\u0128\u0677\u0001\u0000\u0000\u0000\u012a\u067b\u0001\u0000"+ + "\u0000\u0000\u012c\u0688\u0001\u0000\u0000\u0000\u012e\u0692\u0001\u0000"+ + "\u0000\u0000\u0130\u0697\u0001\u0000\u0000\u0000\u0132\u0699\u0001\u0000"+ + "\u0000\u0000\u0134\u069e\u0001\u0000\u0000\u0000\u0136\u06a0\u0001\u0000"+ + "\u0000\u0000\u0138\u06a2\u0001\u0000\u0000\u0000\u013a\u06a5\u0001\u0000"+ + "\u0000\u0000\u013c\u06a9\u0001\u0000\u0000\u0000\u013e\u06b4\u0001\u0000"+ + "\u0000\u0000\u0140\u06b8\u0001\u0000\u0000\u0000\u0142\u06bf\u0001\u0000"+ + "\u0000\u0000\u0144\u06c3\u0001\u0000\u0000\u0000\u0146\u06c5\u0001\u0000"+ + "\u0000\u0000\u0148\u06d5\u0001\u0000\u0000\u0000\u014a\u06e2\u0001\u0000"+ + "\u0000\u0000\u014c\u06ea\u0001\u0000\u0000\u0000\u014e\u06ef\u0001\u0000"+ + "\u0000\u0000\u0150\u06f1\u0001\u0000\u0000\u0000\u0152\u06f3\u0001\u0000"+ + "\u0000\u0000\u0154\u06f5\u0001\u0000\u0000\u0000\u0156\u06f9\u0001\u0000"+ + "\u0000\u0000\u0158\u06fc\u0001\u0000\u0000\u0000\u015a\u0705\u0001\u0000"+ + "\u0000\u0000\u015c\u0710\u0001\u0000\u0000\u0000\u015e\u0716\u0001\u0000"+ + "\u0000\u0000\u0160\u071a\u0001\u0000\u0000\u0000\u0162\u071c\u0001\u0000"+ + "\u0000\u0000\u0164\u072c\u0001\u0000\u0000\u0000\u0166\u0731\u0001\u0000"+ + "\u0000\u0000\u0168\u0734\u0001\u0000\u0000\u0000\u016a\u0738\u0001\u0000"+ + "\u0000\u0000\u016c\u073c\u0001\u0000\u0000\u0000\u016e\u0741\u0001\u0000"+ + "\u0000\u0000\u0170\u0754\u0001\u0000\u0000\u0000\u0172\u0758\u0001\u0000"+ + "\u0000\u0000\u0174\u075e\u0001\u0000\u0000\u0000\u0176\u0177\u0003\u00a8"+ + "T\u0000\u0177\u0178\u0005\u0000\u0000\u0001\u0178\u0001\u0001\u0000\u0000"+ + "\u0000\u0179\u017a\u0003\u00aaU\u0000\u017a\u017b\u0005\u0000\u0000\u0001"+ + "\u017b\u0003\u0001\u0000\u0000\u0000\u017c\u017d\u0003\u00c6c\u0000\u017d"+ + "\u017e\u0005\u0000\u0000\u0001\u017e\u0005\u0001\u0000\u0000\u0000\u017f"+ + "\u0184\u0003\b\u0004\u0000\u0180\u0181\u0005p\u0000\u0000\u0181\u0183"+ + "\u0003\b\u0004\u0000\u0182\u0180\u0001\u0000\u0000\u0000\u0183\u0186\u0001"+ + "\u0000\u0000\u0000\u0184\u0182\u0001\u0000\u0000\u0000\u0184\u0185\u0001"+ + "\u0000\u0000\u0000\u0185\u0007\u0001\u0000\u0000\u0000\u0186\u0184\u0001"+ + "\u0000\u0000\u0000\u0187\u0189\u0005h\u0000\u0000\u0188\u018a\u0005=\u0000"+ + "\u0000\u0189\u0188\u0001\u0000\u0000\u0000\u0189\u018a\u0001\u0000\u0000"+ + "\u0000\u018a\t\u0001\u0000\u0000\u0000\u018b\u018c\u0003\u000e\u0007\u0000"+ + "\u018c\u018d\u0003\u0174\u00ba\u0000\u018d\u018f\u0001\u0000\u0000\u0000"+ + "\u018e\u018b\u0001\u0000\u0000\u0000\u018f\u0192\u0001\u0000\u0000\u0000"+ + "\u0190\u018e\u0001\u0000\u0000\u0000\u0190\u0191\u0001\u0000\u0000\u0000"+ + "\u0191\u0193\u0001\u0000\u0000\u0000\u0192\u0190\u0001\u0000\u0000\u0000"+ + "\u0193\u0194\u0003\u00deo\u0000\u0194\u019a\u0003\u0174\u00ba\u0000\u0195"+ + "\u0196\u0003\u0014\n\u0000\u0196\u0197\u0003\u0174\u00ba\u0000\u0197\u0199"+ + "\u0001\u0000\u0000\u0000\u0198\u0195\u0001\u0000\u0000\u0000\u0199\u019c"+ + "\u0001\u0000\u0000\u0000\u019a\u0198\u0001\u0000\u0000\u0000\u019a\u019b"+ + "\u0001\u0000\u0000\u0000\u019b\u01a6\u0001\u0000\u0000\u0000\u019c\u019a"+ + "\u0001\u0000\u0000\u0000\u019d\u01a1\u0003\u008cF\u0000\u019e\u01a1\u0003"+ + "\u00e2q\u0000\u019f\u01a1\u0003\u0016\u000b\u0000\u01a0\u019d\u0001\u0000"+ + "\u0000\u0000\u01a0\u019e\u0001\u0000\u0000\u0000\u01a0\u019f\u0001\u0000"+ + "\u0000\u0000\u01a1\u01a2\u0001\u0000\u0000\u0000\u01a2\u01a3\u0003\u0174"+ + "\u00ba\u0000\u01a3\u01a5\u0001\u0000\u0000\u0000\u01a4\u01a0\u0001\u0000"+ + "\u0000\u0000\u01a5\u01a8\u0001\u0000\u0000\u0000\u01a6\u01a4\u0001\u0000"+ + "\u0000\u0000\u01a6\u01a7\u0001\u0000\u0000\u0000\u01a7\u01a9\u0001\u0000"+ + "\u0000\u0000\u01a8\u01a6\u0001\u0000\u0000\u0000\u01a9\u01aa\u0005\u0000"+ + "\u0000\u0001\u01aa\u000b\u0001\u0000\u0000\u0000\u01ab\u01ac\u0003\u000e"+ + "\u0007\u0000\u01ac\u01ad\u0003\u0174\u00ba\u0000\u01ad\u01af\u0001\u0000"+ + "\u0000\u0000\u01ae\u01ab\u0001\u0000\u0000\u0000\u01af\u01b2\u0001\u0000"+ + "\u0000\u0000\u01b0\u01ae\u0001\u0000\u0000\u0000\u01b0\u01b1\u0001\u0000"+ + "\u0000\u0000\u01b1\u01b3\u0001\u0000\u0000\u0000\u01b2\u01b0\u0001\u0000"+ + "\u0000\u0000\u01b3\u01b4\u0003\u00deo\u0000\u01b4\u01ba\u0003\u0174\u00ba"+ + "\u0000\u01b5\u01b6\u0003\u0014\n\u0000\u01b6\u01b7\u0003\u0174\u00ba\u0000"+ + "\u01b7\u01b9\u0001\u0000\u0000\u0000\u01b8\u01b5\u0001\u0000\u0000\u0000"+ + "\u01b9\u01bc\u0001\u0000\u0000\u0000\u01ba\u01b8\u0001\u0000\u0000\u0000"+ + "\u01ba\u01bb\u0001\u0000\u0000\u0000\u01bb\r\u0001\u0000\u0000\u0000\u01bc"+ + "\u01ba\u0001\u0000\u0000\u0000\u01bd\u01be\u0005F\u0000\u0000\u01be\u01bf"+ + "\u0003\u00a8T\u0000\u01bf\u000f\u0001\u0000\u0000\u0000\u01c0\u01c1\u0005"+ + "G\u0000\u0000\u01c1\u01c2\u0003\u00a8T\u0000\u01c2\u0011\u0001\u0000\u0000"+ + "\u0000\u01c3\u01c4\u0003\u0010\b\u0000\u01c4\u01c5\u0003\u0174\u00ba\u0000"+ + "\u01c5\u01c7\u0001\u0000\u0000\u0000\u01c6\u01c3\u0001\u0000\u0000\u0000"+ + "\u01c7\u01ca\u0001\u0000\u0000\u0000\u01c8\u01c6\u0001\u0000\u0000\u0000"+ + "\u01c8\u01c9\u0001\u0000\u0000\u0000\u01c9\u01cc\u0001\u0000\u0000\u0000"+ + "\u01ca\u01c8\u0001\u0000\u0000\u0000\u01cb\u01cd\u0007\u0000\u0000\u0000"+ + "\u01cc\u01cb\u0001\u0000\u0000\u0000\u01cc\u01cd\u0001\u0000\u0000\u0000"+ + "\u01cd\u01ce\u0001\u0000\u0000\u0000\u01ce\u01cf\u0003\u00e0p\u0000\u01cf"+ + "\u0013\u0001\u0000\u0000\u0000\u01d0\u01d1\u0003\u0010\b\u0000\u01d1\u01d2"+ + "\u0003\u0174\u00ba\u0000\u01d2\u01d4\u0001\u0000\u0000\u0000\u01d3\u01d0"+ + "\u0001\u0000\u0000\u0000\u01d4\u01d7\u0001\u0000\u0000\u0000\u01d5\u01d3"+ + "\u0001\u0000\u0000\u0000\u01d5\u01d6\u0001\u0000\u0000\u0000\u01d6\u01e5"+ + "\u0001\u0000\u0000\u0000\u01d7\u01d5\u0001\u0000\u0000\u0000\u01d8\u01d9"+ + "\u0005d\u0000\u0000\u01d9\u01e6\u0003\u0012\t\u0000\u01da\u01db\u0005"+ + "d\u0000\u0000\u01db\u01e1\u0005i\u0000\u0000\u01dc\u01dd\u0003\u0012\t"+ + "\u0000\u01dd\u01de\u0003\u0174\u00ba\u0000\u01de\u01e0\u0001\u0000\u0000"+ + "\u0000\u01df\u01dc\u0001\u0000\u0000\u0000\u01e0\u01e3\u0001\u0000\u0000"+ + "\u0000\u01e1\u01df\u0001\u0000\u0000\u0000\u01e1\u01e2\u0001\u0000\u0000"+ + "\u0000\u01e2\u01e4\u0001\u0000\u0000\u0000\u01e3\u01e1\u0001\u0000\u0000"+ + "\u0000\u01e4\u01e6\u0005j\u0000\u0000\u01e5\u01d8\u0001\u0000\u0000\u0000"+ + "\u01e5\u01da\u0001\u0000\u0000\u0000\u01e6\u0015\u0001\u0000\u0000\u0000"+ + "\u01e7\u01ec\u0003~?\u0000\u01e8\u01ec\u0003\u0094J\u0000\u01e9\u01ec"+ + "\u0003\u0098L\u0000\u01ea\u01ec\u0003\u0092I\u0000\u01eb\u01e7\u0001\u0000"+ + "\u0000\u0000\u01eb\u01e8\u0001\u0000\u0000\u0000\u01eb\u01e9\u0001\u0000"+ + "\u0000\u0000\u01eb\u01ea\u0001\u0000\u0000\u0000\u01ec\u0017\u0001\u0000"+ + "\u0000\u0000\u01ed\u01ee\u0005\u001b\u0000\u0000\u01ee\u01f5\u0003\u00aa"+ + "U\u0000\u01ef\u01f0\u0007\u0001\u0000\u0000\u01f0\u01f5\u0003.\u0017\u0000"+ + "\u01f1\u01f2\u0007\u0002\u0000\u0000\u01f2\u01f5\u0003\u00a8T\u0000\u01f3"+ + "\u01f5\u0003j5\u0000\u01f4\u01ed\u0001\u0000\u0000\u0000\u01f4\u01ef\u0001"+ + "\u0000\u0000\u0000\u01f4\u01f1\u0001\u0000\u0000\u0000\u01f4\u01f3\u0001"+ + "\u0000\u0000\u0000\u01f5\u0019\u0001\u0000\u0000\u0000\u01f6\u01f7\u0003"+ + "\u001c\u000e\u0000\u01f7\u001b\u0001\u0000\u0000\u0000\u01f8\u01f9\u0003"+ + "b1\u0000\u01f9\u01fa\u0003\u001e\u000f\u0000\u01fa\u001d\u0001\u0000\u0000"+ + "\u0000\u01fb\u01fc\u0005E\u0000\u0000\u01fc\u01fe\u0005i\u0000\u0000\u01fd"+ + "\u01ff\u0003\u00f4z\u0000\u01fe\u01fd\u0001\u0000\u0000\u0000\u01fe\u01ff"+ + "\u0001\u0000\u0000\u0000\u01ff\u0200\u0001\u0000\u0000\u0000\u0200\u0201"+ + "\u0005j\u0000\u0000\u0201\u001f\u0001\u0000\u0000\u0000\u0202\u0210\u0003"+ + "F#\u0000\u0203\u0210\u0003D\"\u0000\u0204\u0210\u0003B!\u0000\u0205\u0210"+ + "\u0003$\u0012\u0000\u0206\u0210\u0003@ \u0000\u0207\u0210\u00038\u001c"+ + "\u0000\u0208\u0210\u0003>\u001f\u0000\u0209\u0210\u00036\u001b\u0000\u020a"+ + "\u0210\u00032\u0019\u0000\u020b\u0210\u00030\u0018\u0000\u020c\u0210\u0003"+ + "4\u001a\u0000\u020d\u0210\u0003\"\u0011\u0000\u020e\u0210\u0003H$\u0000"+ + "\u020f\u0202\u0001\u0000\u0000\u0000\u020f\u0203\u0001\u0000\u0000\u0000"+ + "\u020f\u0204\u0001\u0000\u0000\u0000\u020f\u0205\u0001\u0000\u0000\u0000"+ + "\u020f\u0206\u0001\u0000\u0000\u0000\u020f\u0207\u0001\u0000\u0000\u0000"+ + "\u020f\u0208\u0001\u0000\u0000\u0000\u020f\u0209\u0001\u0000\u0000\u0000"+ + "\u020f\u020a\u0001\u0000\u0000\u0000\u020f\u020b\u0001\u0000\u0000\u0000"+ + "\u020f\u020c\u0001\u0000\u0000\u0000\u020f\u020d\u0001\u0000\u0000\u0000"+ + "\u020f\u020e\u0001\u0000\u0000\u0000\u0210!\u0001\u0000\u0000\u0000\u0211"+ + "\u0212\u0007\u0003\u0000\u0000\u0212#\u0001\u0000\u0000\u0000\u0213\u0214"+ + "\u0005a\u0000\u0000\u0214\u0215\u0005m\u0000\u0000\u0215\u0216\u0003\u00c6"+ + "c\u0000\u0216\u0217\u0005n\u0000\u0000\u0217%\u0001\u0000\u0000\u0000"+ + "\u0218\u021d\u0003(\u0014\u0000\u0219\u021a\u0005p\u0000\u0000\u021a\u021c"+ + "\u0003(\u0014\u0000\u021b\u0219\u0001\u0000\u0000\u0000\u021c\u021f\u0001"+ + "\u0000\u0000\u0000\u021d\u021b\u0001\u0000\u0000\u0000\u021d\u021e\u0001"+ + "\u0000\u0000\u0000\u021e\u0221\u0001\u0000\u0000\u0000\u021f\u021d\u0001"+ + "\u0000\u0000\u0000\u0220\u0222\u0005p\u0000\u0000\u0221\u0220\u0001\u0000"+ + "\u0000\u0000\u0221\u0222\u0001\u0000\u0000\u0000\u0222\'\u0001\u0000\u0000"+ + "\u0000\u0223\u0228\u0005h\u0000\u0000\u0224\u0225\u0005p\u0000\u0000\u0225"+ + "\u0227\u0005h\u0000\u0000\u0226\u0224\u0001\u0000\u0000\u0000\u0227\u022a"+ + "\u0001\u0000\u0000\u0000\u0228\u0226\u0001\u0000\u0000\u0000\u0228\u0229"+ + "\u0001\u0000\u0000\u0000\u0229\u022b\u0001\u0000\u0000\u0000\u022a\u0228"+ + "\u0001\u0000\u0000\u0000\u022b\u022c\u0003\u0136\u009b\u0000\u022c)\u0001"+ + "\u0000\u0000\u0000\u022d\u022f\u0003,\u0016\u0000\u022e\u022d\u0001\u0000"+ + "\u0000\u0000\u022f\u0232\u0001\u0000\u0000\u0000\u0230\u022e\u0001\u0000"+ + "\u0000\u0000\u0230\u0231\u0001\u0000\u0000\u0000\u0231+\u0001\u0000\u0000"+ + "\u0000\u0232\u0230\u0001\u0000\u0000\u0000\u0233\u0234\u0005k\u0000\u0000"+ + "\u0234\u0239\u0003\u00a8T\u0000\u0235\u0236\u0005p\u0000\u0000\u0236\u0238"+ + "\u0003\u00a8T\u0000\u0237\u0235\u0001\u0000\u0000\u0000\u0238\u023b\u0001"+ + "\u0000\u0000\u0000\u0239\u0237\u0001\u0000\u0000\u0000\u0239\u023a\u0001"+ + "\u0000\u0000\u0000\u023a\u023c\u0001\u0000\u0000\u0000\u023b\u0239\u0001"+ + "\u0000\u0000\u0000\u023c\u023d\u0005l\u0000\u0000\u023d-\u0001\u0000\u0000"+ + "\u0000\u023e\u023f\u0003\u00b8\\\u0000\u023f/\u0001\u0000\u0000\u0000"+ + "\u0240\u0241\u00052\u0000\u0000\u0241\u0242\u0005i\u0000\u0000\u0242\u0243"+ + "\u0003\u00a8T\u0000\u0243\u0244\u0005j\u0000\u0000\u02441\u0001\u0000"+ + "\u0000\u0000\u0245\u0246\u00058\u0000\u0000\u0246\u0247\u0005m\u0000\u0000"+ + "\u0247\u0248\u0003\u00c6c\u0000\u0248\u0249\u0005n\u0000\u0000\u02493"+ + "\u0001\u0000\u0000\u0000\u024a\u024b\u00053\u0000\u0000\u024b\u024c\u0005"+ + "i\u0000\u0000\u024c\u024d\u0003\u00a8T\u0000\u024d\u024e\u0005j\u0000"+ + "\u0000\u024e5\u0001\u0000\u0000\u0000\u024f\u0250\u0007\u0004\u0000\u0000"+ + "\u0250\u0251\u0005i\u0000\u0000\u0251\u0252\u0003\u00a8T\u0000\u0252\u0253"+ + "\u0005j\u0000\u0000\u02537\u0001\u0000\u0000\u0000\u0254\u0259\u0005\u0011"+ + "\u0000\u0000\u0255\u0256\u0005m\u0000\u0000\u0256\u0257\u0003:\u001d\u0000"+ + "\u0257\u0258\u0005n\u0000\u0000\u0258\u025a\u0001\u0000\u0000\u0000\u0259"+ + "\u0255\u0001\u0000\u0000\u0000\u0259\u025a\u0001\u0000\u0000\u0000\u025a"+ + "\u025b\u0001\u0000\u0000\u0000\u025b\u025c\u0005i\u0000\u0000\u025c\u025d"+ + "\u0003\u00a8T\u0000\u025d\u025e\u0005j\u0000\u0000\u025e9\u0001\u0000"+ + "\u0000\u0000\u025f\u0262\u0003<\u001e\u0000\u0260\u0262\u0005\u0013\u0000"+ + "\u0000\u0261\u025f\u0001\u0000\u0000\u0000\u0261\u0260\u0001\u0000\u0000"+ + "\u0000\u0262;\u0001\u0000\u0000\u0000\u0263\u0264\u0005h\u0000\u0000\u0264"+ + "=\u0001\u0000\u0000\u0000\u0265\u0266\u0005\u0012\u0000\u0000\u0266\u0267"+ + "\u0005i\u0000\u0000\u0267\u0268\u0003\u00a8T\u0000\u0268\u0269\u0005j"+ + "\u0000\u0000\u0269?\u0001\u0000\u0000\u0000\u026a\u026b\u0005;\u0000\u0000"+ + "\u026b\u026c\u0005i\u0000\u0000\u026c\u026d\u0003\u00a8T\u0000\u026d\u026e"+ + "\u0005j\u0000\u0000\u026eA\u0001\u0000\u0000\u0000\u026f\u0270\u0005:"+ + "\u0000\u0000\u0270\u0271\u0005i\u0000\u0000\u0271\u0272\u0003\u00a8T\u0000"+ + "\u0272\u0273\u0005j\u0000\u0000\u0273C\u0001\u0000\u0000\u0000\u0274\u0275"+ + "\u0005\u0016\u0000\u0000\u0275\u0276\u0005i\u0000\u0000\u0276\u0279\u0003"+ + "\u00a8T\u0000\u0277\u0278\u0005p\u0000\u0000\u0278\u027a\u0003\u00a8T"+ + "\u0000\u0279\u0277\u0001\u0000\u0000\u0000\u0279\u027a\u0001\u0000\u0000"+ + "\u0000\u027a\u027b\u0001\u0000\u0000\u0000\u027b\u027c\u0005j\u0000\u0000"+ + "\u027cE\u0001\u0000\u0000\u0000\u027d\u027e\u0007\u0004\u0000\u0000\u027e"+ + "\u027f\u0005m\u0000\u0000\u027f\u0280\u0003\u00a8T\u0000\u0280\u0281\u0005"+ + ">\u0000\u0000\u0281\u0282\u0003\u00a8T\u0000\u0282\u0283\u0005n\u0000"+ + "\u0000\u0283G\u0001\u0000\u0000\u0000\u0284\u0285\u00057\u0000\u0000\u0285"+ + "\u0286\u0003\u00a8T\u0000\u0286\u028c\u0005k\u0000\u0000\u0287\u0288\u0003"+ + "J%\u0000\u0288\u0289\u0003\u0174\u00ba\u0000\u0289\u028b\u0001\u0000\u0000"+ + "\u0000\u028a\u0287\u0001\u0000\u0000\u0000\u028b\u028e\u0001\u0000\u0000"+ + "\u0000\u028c\u028a\u0001\u0000\u0000\u0000\u028c\u028d\u0001\u0000\u0000"+ + "\u0000\u028d\u028f\u0001\u0000\u0000\u0000\u028e\u028c\u0001\u0000\u0000"+ + "\u0000\u028f\u0290\u0005l\u0000\u0000\u0290I\u0001\u0000\u0000\u0000\u0291"+ + "\u0292\u0003n7\u0000\u0292\u0293\u0005r\u0000\u0000\u0293\u0294\u0003"+ + "\u00a8T\u0000\u0294K\u0001\u0000\u0000\u0000\u0295\u0296\u0005m\u0000"+ + "\u0000\u0296\u029b\u0003N\'\u0000\u0297\u0298\u0005p\u0000\u0000\u0298"+ + "\u029a\u0003N\'\u0000\u0299\u0297\u0001\u0000\u0000\u0000\u029a\u029d"+ + "\u0001\u0000\u0000\u0000\u029b\u0299\u0001\u0000\u0000\u0000\u029b\u029c"+ + "\u0001\u0000\u0000\u0000\u029c\u029e\u0001\u0000\u0000\u0000\u029d\u029b"+ + "\u0001\u0000\u0000\u0000\u029e\u029f\u0005n\u0000\u0000\u029fM\u0001\u0000"+ + "\u0000\u0000\u02a0\u02a1\u0003\u00a8T\u0000\u02a1\u02a2\u0005o\u0000\u0000"+ + "\u02a2\u02a3\u0003\u00a8T\u0000\u02a3O\u0001\u0000\u0000\u0000\u02a4\u02aa"+ + "\u0003`0\u0000\u02a5\u02aa\u0003\\.\u0000\u02a6\u02aa\u0003^/\u0000\u02a7"+ + "\u02aa\u0003R)\u0000\u02a8\u02aa\u0003V+\u0000\u02a9\u02a4\u0001\u0000"+ + "\u0000\u0000\u02a9\u02a5\u0001\u0000\u0000\u0000\u02a9\u02a6\u0001\u0000"+ + "\u0000\u0000\u02a9\u02a7\u0001\u0000\u0000\u0000\u02a9\u02a8\u0001\u0000"+ + "\u0000\u0000\u02aaQ\u0001\u0000\u0000\u0000\u02ab\u02ac\u00054\u0000\u0000"+ + "\u02ac\u02b2\u0005k\u0000\u0000\u02ad\u02ae\u0003T*\u0000\u02ae\u02af"+ + "\u0003\u0174\u00ba\u0000\u02af\u02b1\u0001\u0000\u0000\u0000\u02b0\u02ad"+ + "\u0001\u0000\u0000\u0000\u02b1\u02b4\u0001\u0000\u0000\u0000\u02b2\u02b0"+ + "\u0001\u0000\u0000\u0000\u02b2\u02b3\u0001\u0000\u0000\u0000\u02b3\u02b5"+ + "\u0001\u0000\u0000\u0000\u02b4\u02b2\u0001\u0000\u0000\u0000\u02b5\u02b6"+ + "\u0005l\u0000\u0000\u02b6S\u0001\u0000\u0000\u0000\u02b7\u02b8\u0005P"+ + "\u0000\u0000\u02b8\u02b9\u0005h\u0000\u0000\u02b9\u02c1\u0003\u0142\u00a1"+ + "\u0000\u02ba\u02bb\u00055\u0000\u0000\u02bb\u02bc\u0005k\u0000\u0000\u02bc"+ + "\u02bd\u0003\u00a8T\u0000\u02bd\u02be\u0003\u0174\u00ba\u0000\u02be\u02bf"+ + "\u0005l\u0000\u0000\u02bf\u02c1\u0001\u0000\u0000\u0000\u02c0\u02b7\u0001"+ + "\u0000\u0000\u0000\u02c0\u02ba\u0001\u0000\u0000\u0000\u02c1U\u0001\u0000"+ + "\u0000\u0000\u02c2\u02c3\u00056\u0000\u0000\u02c3\u02c9\u0005k\u0000\u0000"+ + "\u02c4\u02c5\u0003X,\u0000\u02c5\u02c6\u0003\u0174\u00ba\u0000\u02c6\u02c8"+ + "\u0001\u0000\u0000\u0000\u02c7\u02c4\u0001\u0000\u0000\u0000\u02c8\u02cb"+ + "\u0001\u0000\u0000\u0000\u02c9\u02c7\u0001\u0000\u0000\u0000\u02c9\u02ca"+ + "\u0001\u0000\u0000\u0000\u02ca\u02cc\u0001\u0000\u0000\u0000\u02cb\u02c9"+ + "\u0001\u0000\u0000\u0000\u02cc\u02cd\u0005l\u0000\u0000\u02cdW\u0001\u0000"+ + "\u0000\u0000\u02ce\u02cf\u0005h\u0000\u0000\u02cf\u02d5\u0005k\u0000\u0000"+ + "\u02d0\u02d1\u0003Z-\u0000\u02d1\u02d2\u0003\u0174\u00ba\u0000\u02d2\u02d4"+ + "\u0001\u0000\u0000\u0000\u02d3\u02d0\u0001\u0000\u0000\u0000\u02d4\u02d7"+ + "\u0001\u0000\u0000\u0000\u02d5\u02d3\u0001\u0000\u0000\u0000\u02d5\u02d6"+ + "\u0001\u0000\u0000\u0000\u02d6\u02d8\u0001\u0000\u0000\u0000\u02d7\u02d5"+ + "\u0001\u0000\u0000\u0000\u02d8\u02d9\u0005l\u0000\u0000\u02d9Y\u0001\u0000"+ + "\u0000\u0000\u02da\u02dc\u0003\u00e8t\u0000\u02db\u02da\u0001\u0000\u0000"+ + "\u0000\u02db\u02dc\u0001\u0000\u0000\u0000\u02dc\u02dd\u0001\u0000\u0000"+ + "\u0000\u02dd\u02de\u0003\u00c6c\u0000\u02de[\u0001\u0000\u0000\u0000\u02df"+ + "\u02e0\u0005\u001b\u0000\u0000\u02e0\u02e1\u0005m\u0000\u0000\u02e1\u02e2"+ + "\u0005n\u0000\u0000\u02e2\u02e3\u0003\u0136\u009b\u0000\u02e3]\u0001\u0000"+ + "\u0000\u0000\u02e4\u02e5\u0005-\u0000\u0000\u02e5\u02e6\u0005m\u0000\u0000"+ + "\u02e6\u02e7\u0003\u0136\u009b\u0000\u02e7\u02e8\u0005n\u0000\u0000\u02e8"+ + "_\u0001\u0000\u0000\u0000\u02e9\u02ea\u0007\u0005\u0000\u0000\u02ea\u02eb"+ + "\u0005m\u0000\u0000\u02eb\u02ec\u0003\u00c6c\u0000\u02ec\u02ed\u0005n"+ + "\u0000\u0000\u02ed\u02f5\u0001\u0000\u0000\u0000\u02ee\u02ef\u0005+\u0000"+ + "\u0000\u02ef\u02f0\u0005m\u0000\u0000\u02f0\u02f1\u0003\u00c6c\u0000\u02f1"+ + "\u02f2\u0005n\u0000\u0000\u02f2\u02f3\u0003\u00c6c\u0000\u02f3\u02f5\u0001"+ + "\u0000\u0000\u0000\u02f4\u02e9\u0001\u0000\u0000\u0000\u02f4\u02ee\u0001"+ + "\u0000\u0000\u0000\u02f5a\u0001\u0000\u0000\u0000\u02f6\u02fe\u0003d2"+ + "\u0000\u02f7\u02f8\u0005L\u0000\u0000\u02f8\u02fe\u00061\uffff\uffff\u0000"+ + "\u02f9\u02fa\u0005\u000e\u0000\u0000\u02fa\u02fe\u00061\uffff\uffff\u0000"+ + "\u02fb\u02fc\u0005D\u0000\u0000\u02fc\u02fe\u00061\uffff\uffff\u0000\u02fd"+ + "\u02f6\u0001\u0000\u0000\u0000\u02fd\u02f7\u0001\u0000\u0000\u0000\u02fd"+ + "\u02f9\u0001\u0000\u0000\u0000\u02fd\u02fb\u0001\u0000\u0000\u0000\u02fe"+ + "\u02ff\u0001\u0000\u0000\u0000\u02ff\u0301\u0003\u0174\u00ba\u0000\u0300"+ + "\u02fd\u0001\u0000\u0000\u0000\u0301\u0304\u0001\u0000\u0000\u0000\u0302"+ + "\u0303\u0001\u0000\u0000\u0000\u0302\u0300\u0001\u0000\u0000\u0000\u0303"+ + "\u0307\u0001\u0000\u0000\u0000\u0304\u0302\u0001\u0000\u0000\u0000\u0305"+ + "\u0306\u0005\u000e\u0000\u0000\u0306\u0308\u00061\uffff\uffff\u0000\u0307"+ + "\u0305\u0001\u0000\u0000\u0000\u0307\u0308\u0001\u0000\u0000\u0000\u0308"+ + "c\u0001\u0000\u0000\u0000\u0309\u030a\u0005\t\u0000\u0000\u030a\u0312"+ + "\u0003h4\u0000\u030b\u030c\u0005\n\u0000\u0000\u030c\u0312\u0003h4\u0000"+ + "\u030d\u030e\u0005\u000b\u0000\u0000\u030e\u0312\u0003h4\u0000\u030f\u0310"+ + "\u0005\r\u0000\u0000\u0310\u0312\u0003f3\u0000\u0311\u0309\u0001\u0000"+ + "\u0000\u0000\u0311\u030b\u0001\u0000\u0000\u0000\u0311\u030d\u0001\u0000"+ + "\u0000\u0000\u0311\u030f\u0001\u0000\u0000\u0000\u0312e\u0001\u0000\u0000"+ + "\u0000\u0313\u0315\u0003\u00eau\u0000\u0314\u0313\u0001\u0000\u0000\u0000"+ + "\u0314\u0315\u0001\u0000\u0000\u0000\u0315\u0318\u0001\u0000\u0000\u0000"+ + "\u0316\u0317\u0005_\u0000\u0000\u0317\u0319\u0003\u00a8T\u0000\u0318\u0316"+ + "\u0001\u0000\u0000\u0000\u0318\u0319\u0001\u0000\u0000\u0000\u0319g\u0001"+ + "\u0000\u0000\u0000\u031a\u031d\u0001\u0000\u0000\u0000\u031b\u031d\u0003"+ + "\u00a8T\u0000\u031c\u031a\u0001\u0000\u0000\u0000\u031c\u031b\u0001\u0000"+ + "\u0000\u0000\u031di\u0001\u0000\u0000\u0000\u031e\u031f\u00057\u0000\u0000"+ + "\u031f\u0320\u0003\u00a8T\u0000\u0320\u0324\u0005k\u0000\u0000\u0321\u0323"+ + "\u0003l6\u0000\u0322\u0321\u0001\u0000\u0000\u0000\u0323\u0326\u0001\u0000"+ + "\u0000\u0000\u0324\u0322\u0001\u0000\u0000\u0000\u0324\u0325\u0001\u0000"+ + "\u0000\u0000\u0325\u0327\u0001\u0000\u0000\u0000\u0326\u0324\u0001\u0000"+ + "\u0000\u0000\u0327\u0328\u0005l\u0000\u0000\u0328k\u0001\u0000\u0000\u0000"+ + "\u0329\u032a\u0003n7\u0000\u032a\u032c\u0005r\u0000\u0000\u032b\u032d"+ + "\u0003\u00f4z\u0000\u032c\u032b\u0001\u0000\u0000\u0000\u032c\u032d\u0001"+ + "\u0000\u0000\u0000\u032dm\u0001\u0000\u0000\u0000\u032e\u032f\u0005S\u0000"+ + "\u0000\u032f\u0332\u0003p8\u0000\u0330\u0332\u0005O\u0000\u0000\u0331"+ + "\u032e\u0001\u0000\u0000\u0000\u0331\u0330\u0001\u0000\u0000\u0000\u0332"+ + "o\u0001\u0000\u0000\u0000\u0333\u0334\u0005%\u0000\u0000\u0334\u0341\u0005"+ + "h\u0000\u0000\u0335\u0336\u0003\u00ceg\u0000\u0336\u033b\u0005k\u0000"+ + "\u0000\u0337\u0339\u0003r9\u0000\u0338\u033a\u0005p\u0000\u0000\u0339"+ + "\u0338\u0001\u0000\u0000\u0000\u0339\u033a\u0001\u0000\u0000\u0000\u033a"+ + "\u033c\u0001\u0000\u0000\u0000\u033b\u0337\u0001\u0000\u0000\u0000\u033b"+ + "\u033c\u0001\u0000\u0000\u0000\u033c\u033d\u0001\u0000\u0000\u0000\u033d"+ + "\u033e\u0005l\u0000\u0000\u033e\u0341\u0001\u0000\u0000\u0000\u033f\u0341"+ + "\u0003\u00a8T\u0000\u0340\u0333\u0001\u0000\u0000\u0000\u0340\u0335\u0001"+ + "\u0000\u0000\u0000\u0340\u033f\u0001\u0000\u0000\u0000\u0341q\u0001\u0000"+ + "\u0000\u0000\u0342\u0347\u0003p8\u0000\u0343\u0344\u0005p\u0000\u0000"+ + "\u0344\u0346\u0003p8\u0000\u0345\u0343\u0001\u0000\u0000\u0000\u0346\u0349"+ + "\u0001\u0000\u0000\u0000\u0347\u0345\u0001\u0000\u0000\u0000\u0347\u0348"+ + "\u0001\u0000\u0000\u0000\u0348s\u0001\u0000\u0000\u0000\u0349\u0347\u0001"+ + "\u0000\u0000\u0000\u034a\u034f\u0005k\u0000\u0000\u034b\u034c\u0005<\u0000"+ + "\u0000\u034c\u034d\u0003\u00e8t\u0000\u034d\u034e\u0003\u0174\u00ba\u0000"+ + "\u034e\u0350\u0001\u0000\u0000\u0000\u034f\u034b\u0001\u0000\u0000\u0000"+ + "\u034f\u0350\u0001\u0000\u0000\u0000\u0350\u0352\u0001\u0000\u0000\u0000"+ + "\u0351\u0353\u0003\u00f4z\u0000\u0352\u0351\u0001\u0000\u0000\u0000\u0352"+ + "\u0353\u0001\u0000\u0000\u0000\u0353\u0354\u0001\u0000\u0000\u0000\u0354"+ + "\u0355\u0005l\u0000\u0000\u0355u\u0001\u0000\u0000\u0000\u0356\u0359\u0003"+ + "\u0154\u00aa\u0000\u0357\u0359\u0005h\u0000\u0000\u0358\u0356\u0001\u0000"+ + "\u0000\u0000\u0358\u0357\u0001\u0000\u0000\u0000\u0359\u0362\u0001\u0000"+ + "\u0000\u0000\u035a\u035f\u0005k\u0000\u0000\u035b\u035d\u0003x<\u0000"+ + "\u035c\u035e\u0005p\u0000\u0000\u035d\u035c\u0001\u0000\u0000\u0000\u035d"+ + "\u035e\u0001\u0000\u0000\u0000\u035e\u0360\u0001\u0000\u0000\u0000\u035f"+ + "\u035b\u0001\u0000\u0000\u0000\u035f\u0360\u0001\u0000\u0000\u0000\u0360"+ + "\u0361\u0001\u0000\u0000\u0000\u0361\u0363\u0005l\u0000\u0000\u0362\u035a"+ + "\u0001\u0000\u0000\u0000\u0362\u0363\u0001\u0000\u0000\u0000\u0363w\u0001"+ + "\u0000\u0000\u0000\u0364\u0369\u0003z=\u0000\u0365\u0366\u0005p\u0000"+ + "\u0000\u0366\u0368\u0003z=\u0000\u0367\u0365\u0001\u0000\u0000\u0000\u0368"+ + "\u036b\u0001\u0000\u0000\u0000\u0369\u0367\u0001\u0000\u0000\u0000\u0369"+ + "\u036a\u0001\u0000\u0000\u0000\u036ay\u0001\u0000\u0000\u0000\u036b\u0369"+ + "\u0001\u0000\u0000\u0000\u036c\u036d\u0005h\u0000\u0000\u036d\u036f\u0005"+ + "r\u0000\u0000\u036e\u036c\u0001\u0000\u0000\u0000\u036e\u036f\u0001\u0000"+ + "\u0000\u0000\u036f\u0370\u0001\u0000\u0000\u0000\u0370\u0371\u0003\u00a8"+ + "T\u0000\u0371{\u0001\u0000\u0000\u0000\u0372\u0373\u0005H\u0000\u0000"+ + "\u0373\u0374\u0003\u00a8T\u0000\u0374\u0375\u0005\u000f\u0000\u0000\u0375"+ + "\u0376\u0003v;\u0000\u0376\u0377\u0003\u00f2y\u0000\u0377}\u0001\u0000"+ + "\u0000\u0000\u0378\u0379\u0003\u00c6c\u0000\u0379\u037a\u0005\u000f\u0000"+ + "\u0000\u037a\u038d\u0003\u00c6c\u0000\u037b\u0381\u0005k\u0000\u0000\u037c"+ + "\u037d\u0003\u0086C\u0000\u037d\u037e\u0003\u0174\u00ba\u0000\u037e\u0380"+ + "\u0001\u0000\u0000\u0000\u037f\u037c\u0001\u0000\u0000\u0000\u0380\u0383"+ + "\u0001\u0000\u0000\u0000\u0381\u037f\u0001\u0000\u0000\u0000\u0381\u0382"+ + "\u0001\u0000\u0000\u0000\u0382\u0389\u0001\u0000\u0000\u0000\u0383\u0381"+ + "\u0001\u0000\u0000\u0000\u0384\u0385\u0003\u0080@\u0000\u0385\u0386\u0003"+ + "\u0174\u00ba\u0000\u0386\u0388\u0001\u0000\u0000\u0000\u0387\u0384\u0001"+ + "\u0000\u0000\u0000\u0388\u038b\u0001\u0000\u0000\u0000\u0389\u0387\u0001"+ + "\u0000\u0000\u0000\u0389\u038a\u0001\u0000\u0000\u0000\u038a\u038c\u0001"+ + "\u0000\u0000\u0000\u038b\u0389\u0001\u0000\u0000\u0000\u038c\u038e\u0005"+ + "l\u0000\u0000\u038d\u037b\u0001\u0000\u0000\u0000\u038d\u038e\u0001\u0000"+ + "\u0000\u0000\u038e\u007f\u0001\u0000\u0000\u0000\u038f\u0391\u0005\u000e"+ + "\u0000\u0000\u0390\u038f\u0001\u0000\u0000\u0000\u0390\u0391\u0001\u0000"+ + "\u0000\u0000\u0391\u0392\u0001\u0000\u0000\u0000\u0392\u0393\u0003\u0082"+ + "A\u0000\u0393\u0394\u0005h\u0000\u0000\u0394\u0396\u0003\u0142\u00a1\u0000"+ + "\u0395\u0397\u0003\u00f2y\u0000\u0396\u0395\u0001\u0000\u0000\u0000\u0396"+ + "\u0397\u0001\u0000\u0000\u0000\u0397\u0081\u0001\u0000\u0000\u0000\u0398"+ + "\u039a\u0005i\u0000\u0000\u0399\u039b\u0005h\u0000\u0000\u039a\u0399\u0001"+ + "\u0000\u0000\u0000\u039a\u039b\u0001\u0000\u0000\u0000\u039b\u039d\u0001"+ + "\u0000\u0000\u0000\u039c\u039e\u0005\u008a\u0000\u0000\u039d\u039c\u0001"+ + "\u0000\u0000\u0000\u039d\u039e\u0001\u0000\u0000\u0000\u039e\u039f\u0001"+ + "\u0000\u0000\u0000\u039f\u03a0\u0003\u0130\u0098\u0000\u03a0\u03a1\u0005"+ + "j\u0000\u0000\u03a1\u0083\u0001\u0000\u0000\u0000\u03a2\u03a8\u0003\u00b8"+ + "\\\u0000\u03a3\u03a4\u0003\u00c6c\u0000\u03a4\u03a5\u0005s\u0000\u0000"+ + "\u03a5\u03a6\u0005h\u0000\u0000\u03a6\u03a8\u0001\u0000\u0000\u0000\u03a7"+ + "\u03a2\u0001\u0000\u0000\u0000\u03a7\u03a3\u0001\u0000\u0000\u0000\u03a8"+ + "\u0085\u0001\u0000\u0000\u0000\u03a9\u03aa\u00059\u0000\u0000\u03aa\u03ab"+ + "\u0005h\u0000\u0000\u03ab\u03ae\u0005v\u0000\u0000\u03ac\u03af\u0003\u0084"+ + "B\u0000\u03ad\u03af\u0003\u0152\u00a9\u0000\u03ae\u03ac\u0001\u0000\u0000"+ + "\u0000\u03ae\u03ad\u0001\u0000\u0000\u0000\u03af\u0087\u0001\u0000\u0000"+ + "\u0000\u03b0\u03b1\u00050\u0000\u0000\u03b1\u03b2\u0005i\u0000\u0000\u03b2"+ + "\u03b5\u0003\u00c6c\u0000\u03b3\u03b4\u0005p\u0000\u0000\u03b4\u03b6\u0003"+ + "\u00eau\u0000\u03b5\u03b3\u0001\u0000\u0000\u0000\u03b5\u03b6\u0001\u0000"+ + "\u0000\u0000\u03b6\u03b7\u0001\u0000\u0000\u0000\u03b7\u03b8\u0005j\u0000"+ + "\u0000\u03b8\u0089\u0001\u0000\u0000\u0000\u03b9\u03ba\u0005/\u0000\u0000"+ + "\u03ba\u03bb\u0005i\u0000\u0000\u03bb\u03bc\u0003\u00c6c\u0000\u03bc\u03bd"+ + "\u0005j\u0000\u0000\u03bd\u008b\u0001\u0000\u0000\u0000\u03be\u03c1\u0003"+ + "b1\u0000\u03bf\u03c2\u0003\u008eG\u0000\u03c0\u03c2\u0003\u0090H\u0000"+ + "\u03c1\u03bf\u0001\u0000\u0000\u0000\u03c1\u03c0\u0001\u0000\u0000\u0000"+ + "\u03c2\u008d\u0001\u0000\u0000\u0000\u03c3\u03c4\u0005P\u0000\u0000\u03c4"+ + "\u03c5\u0005h\u0000\u0000\u03c5\u03c7\u0003\u0142\u00a1\u0000\u03c6\u03c8"+ + "\u0003t:\u0000\u03c7\u03c6\u0001\u0000\u0000\u0000\u03c7\u03c8\u0001\u0000"+ + "\u0000\u0000\u03c8\u008f\u0001\u0000\u0000\u0000\u03c9\u03ca\u0005P\u0000"+ + "\u0000\u03ca\u03cb\u0003\u009eO\u0000\u03cb\u03cc\u0005h\u0000\u0000\u03cc"+ + "\u03ce\u0003\u0142\u00a1\u0000\u03cd\u03cf\u0003t:\u0000\u03ce\u03cd\u0001"+ + "\u0000\u0000\u0000\u03ce\u03cf\u0001\u0000\u0000\u0000\u03cf\u0091\u0001"+ + "\u0000\u0000\u0000\u03d0\u03d3\u0005\u001b\u0000\u0000\u03d1\u03d4\u0003"+ + "\u008cF\u0000\u03d2\u03d4\u0003\u00e2q\u0000\u03d3\u03d1\u0001\u0000\u0000"+ + "\u0000\u03d3\u03d2\u0001\u0000\u0000\u0000\u03d4\u0093\u0001\u0000\u0000"+ + "\u0000\u03d5\u03d6\u00059\u0000\u0000\u03d6\u03d7\u0005h\u0000\u0000\u03d7"+ + "\u03d9\u0003\u0146\u00a3\u0000\u03d8\u03da\u0003\u0096K\u0000\u03d9\u03d8"+ + "\u0001\u0000\u0000\u0000\u03d9\u03da\u0001\u0000\u0000\u0000\u03da\u0095"+ + "\u0001\u0000\u0000\u0000\u03db\u03dc\u0005k\u0000\u0000\u03dc\u03dd\u0003"+ + "\u00a8T\u0000\u03dd\u03de\u0003\u0174\u00ba\u0000\u03de\u03df\u0005l\u0000"+ + "\u0000\u03df\u0097\u0001\u0000\u0000\u0000\u03e0\u03e1\u00059\u0000\u0000"+ + "\u03e1\u03e2\u0003\u009eO\u0000\u03e2\u03e3\u0005h\u0000\u0000\u03e3\u03e5"+ + "\u0003\u0146\u00a3\u0000\u03e4\u03e6\u0003\u0096K\u0000\u03e5\u03e4\u0001"+ + "\u0000\u0000\u0000\u03e5\u03e6\u0001\u0000\u0000\u0000\u03e6\u0099\u0001"+ + "\u0000\u0000\u0000\u03e7\u03ef\u0003\u0006\u0003\u0000\u03e8\u03eb\u0003"+ + "\u00c6c\u0000\u03e9\u03ea\u0005o\u0000\u0000\u03ea\u03ec\u0003\u00eau"+ + "\u0000\u03eb\u03e9\u0001\u0000\u0000\u0000\u03eb\u03ec\u0001\u0000\u0000"+ + "\u0000\u03ec\u03f0\u0001\u0000\u0000\u0000\u03ed\u03ee\u0005o\u0000\u0000"+ + "\u03ee\u03f0\u0003\u00eau\u0000\u03ef\u03e8\u0001\u0000\u0000\u0000\u03ef"+ + "\u03ed\u0001\u0000\u0000\u0000\u03f0\u009b\u0001\u0000\u0000\u0000\u03f1"+ + "\u03f2\u0003\u0006\u0003\u0000\u03f2\u03f3\u0005v\u0000\u0000\u03f3\u03f4"+ + "\u0003\u00eau\u0000\u03f4\u009d\u0001\u0000\u0000\u0000\u03f5\u03f7\u0005"+ + "i\u0000\u0000\u03f6\u03f8\u0003\b\u0004\u0000\u03f7\u03f6\u0001\u0000"+ + "\u0000\u0000\u03f7\u03f8\u0001\u0000\u0000\u0000\u03f8\u03f9\u0001\u0000"+ + "\u0000\u0000\u03f9\u03fb\u0003\u00c6c\u0000\u03fa\u03fc\u0005p\u0000\u0000"+ + "\u03fb\u03fa\u0001\u0000\u0000\u0000\u03fb\u03fc\u0001\u0000\u0000\u0000"+ + "\u03fc\u03fd\u0001\u0000\u0000\u0000\u03fd\u03fe\u0005j\u0000\u0000\u03fe"+ + "\u009f\u0001\u0000\u0000\u0000\u03ff\u0402\u0003\u00a2Q\u0000\u0400\u0402"+ + "\u0003\u00a4R\u0000\u0401\u03ff\u0001\u0000\u0000\u0000\u0401\u0400\u0001"+ + "\u0000\u0000\u0000\u0402\u00a1\u0001\u0000\u0000\u0000\u0403\u0405\u0003"+ + "\u00e8t\u0000\u0404\u0403\u0001\u0000\u0000\u0000\u0404\u0405\u0001\u0000"+ + "\u0000\u0000\u0405\u0406\u0001\u0000\u0000\u0000\u0406\u0407\u0003\u00a6"+ + "S\u0000\u0407\u00a3\u0001\u0000\u0000\u0000\u0408\u040a\u0005\u001b\u0000"+ + "\u0000\u0409\u040b\u0003\u00e8t\u0000\u040a\u0409\u0001\u0000\u0000\u0000"+ + "\u040a\u040b\u0001\u0000\u0000\u0000\u040b\u040c\u0001\u0000\u0000\u0000"+ + "\u040c\u040d\u0003\u00a6S\u0000\u040d\u00a5\u0001\u0000\u0000\u0000\u040e"+ + "\u0410\u0005w\u0000\u0000\u040f\u040e\u0001\u0000\u0000\u0000\u040f\u0410"+ + "\u0001\u0000\u0000\u0000\u0410\u0411\u0001\u0000\u0000\u0000\u0411\u0412"+ + "\u0003\u00c6c\u0000\u0412\u00a7\u0001\u0000\u0000\u0000\u0413\u0414\u0006"+ + "T\uffff\uffff\u0000\u0414\u0415\u0007\u0006\u0000\u0000\u0415\u0429\u0003"+ + "\u00a8T\u000f\u0416\u0429\u0003\u00b8\\\u0000\u0417\u0418\u0005\u0019"+ + "\u0000\u0000\u0418\u0419\u0003.\u0017\u0000\u0419\u041a\u0005\u001c\u0000"+ + "\u0000\u041a\u041b\u0003\u00a8T\u0003\u041b\u0429\u0001\u0000\u0000\u0000"+ + "\u041c\u041d\u0005\u001a\u0000\u0000\u041d\u041e\u0003\u009cN\u0000\u041e"+ + "\u041f\u0005\u001c\u0000\u0000\u041f\u0420\u0003\u00a8T\u0002\u0420\u0429"+ + "\u0001\u0000\u0000\u0000\u0421\u0422\u0007\u0007\u0000\u0000\u0422\u0423"+ + "\u0003&\u0013\u0000\u0423\u0424\u0005r\u0000\u0000\u0424\u0425\u0005r"+ + "\u0000\u0000\u0425\u0426\u0003*\u0015\u0000\u0426\u0427\u0003\u00a8T\u0001"+ + "\u0427\u0429\u0001\u0000\u0000\u0000\u0428\u0413\u0001\u0000\u0000\u0000"+ + "\u0428\u0416\u0001\u0000\u0000\u0000\u0428\u0417\u0001\u0000\u0000\u0000"+ + "\u0428\u041c\u0001\u0000\u0000\u0000\u0428\u0421\u0001\u0000\u0000\u0000"+ + "\u0429\u044d\u0001\u0000\u0000\u0000\u042a\u042b\n\r\u0000\u0000\u042b"+ + "\u042c\u0007\b\u0000\u0000\u042c\u044c\u0003\u00a8T\u000e\u042d\u042e"+ + "\n\f\u0000\u0000\u042e\u042f\u0007\t\u0000\u0000\u042f\u044c\u0003\u00a8"+ + "T\r\u0430\u0431\n\u000b\u0000\u0000\u0431\u0432\u0007\n\u0000\u0000\u0432"+ + "\u044c\u0003\u00a8T\f\u0433\u0434\n\n\u0000\u0000\u0434\u0435\u0007\u000b"+ + "\u0000\u0000\u0435\u044c\u0003\u00a8T\u000b\u0436\u0437\n\t\u0000\u0000"+ + "\u0437\u0438\u0007\f\u0000\u0000\u0438\u044c\u0003\u00a8T\n\u0439\u043a"+ + "\n\u0007\u0000\u0000\u043a\u043b\u0005y\u0000\u0000\u043b\u044c\u0003"+ + "\u00a8T\b\u043c\u043d\n\u0006\u0000\u0000\u043d\u043e\u0005x\u0000\u0000"+ + "\u043e\u044c\u0003\u00a8T\u0007\u043f\u0440\n\u0005\u0000\u0000\u0440"+ + "\u0441\u0005\"\u0000\u0000\u0441\u044c\u0003\u00a8T\u0005\u0442\u0443"+ + "\n\u0004\u0000\u0000\u0443\u0444\u0005%\u0000\u0000\u0444\u0445\u0003"+ + "\u00a8T\u0000\u0445\u0446\u0005r\u0000\u0000\u0446\u0447\u0003\u00a8T"+ + "\u0004\u0447\u044c\u0001\u0000\u0000\u0000\u0448\u0449\n\b\u0000\u0000"+ + "\u0449\u044a\u0005\u000f\u0000\u0000\u044a\u044c\u0003v;\u0000\u044b\u042a"+ + "\u0001\u0000\u0000\u0000\u044b\u042d\u0001\u0000\u0000\u0000\u044b\u0430"+ + "\u0001\u0000\u0000\u0000\u044b\u0433\u0001\u0000\u0000\u0000\u044b\u0436"+ + "\u0001\u0000\u0000\u0000\u044b\u0439\u0001\u0000\u0000\u0000\u044b\u043c"+ + "\u0001\u0000\u0000\u0000\u044b\u043f\u0001\u0000\u0000\u0000\u044b\u0442"+ + "\u0001\u0000\u0000\u0000\u044b\u0448\u0001\u0000\u0000\u0000\u044c\u044f"+ + "\u0001\u0000\u0000\u0000\u044d\u044b\u0001\u0000\u0000\u0000\u044d\u044e"+ + "\u0001\u0000\u0000\u0000\u044e\u00a9\u0001\u0000\u0000\u0000\u044f\u044d"+ + "\u0001\u0000\u0000\u0000\u0450\u0465\u0003\u0018\f\u0000\u0451\u0465\u0003"+ + "\u001a\r\u0000\u0452\u0465\u0003\u00aeW\u0000\u0453\u0465\u0003\u00ac"+ + "V\u0000\u0454\u0465\u0003\u00e2q\u0000\u0455\u0465\u0003\u0102\u0081\u0000"+ + "\u0456\u0465\u0003\u00f6{\u0000\u0457\u0465\u0003\u012e\u0097\u0000\u0458"+ + "\u0465\u0003\u0104\u0082\u0000\u0459\u0465\u0003\u0106\u0083\u0000\u045a"+ + "\u0465\u0003\u0108\u0084\u0000\u045b\u0465\u0003\u010a\u0085\u0000\u045c"+ + "\u0465\u0003\u010c\u0086\u0000\u045d\u0465\u0003\u00f2y\u0000\u045e\u0465"+ + "\u0003\u010e\u0087\u0000\u045f\u0465\u0003\u0110\u0088\u0000\u0460\u0465"+ + "\u0003\u0122\u0091\u0000\u0461\u0465\u0003\u00b0X\u0000\u0462\u0465\u0003"+ + "\u00b4Z\u0000\u0463\u0465\u0003|>\u0000\u0464\u0450\u0001\u0000\u0000"+ + "\u0000\u0464\u0451\u0001\u0000\u0000\u0000\u0464\u0452\u0001\u0000\u0000"+ + "\u0000\u0464\u0453\u0001\u0000\u0000\u0000\u0464\u0454\u0001\u0000\u0000"+ + "\u0000\u0464\u0455\u0001\u0000\u0000\u0000\u0464\u0456\u0001\u0000\u0000"+ + "\u0000\u0464\u0457\u0001\u0000\u0000\u0000\u0464\u0458\u0001\u0000\u0000"+ + "\u0000\u0464\u0459\u0001\u0000\u0000\u0000\u0464\u045a\u0001\u0000\u0000"+ + "\u0000\u0464\u045b\u0001\u0000\u0000\u0000\u0464\u045c\u0001\u0000\u0000"+ + "\u0000\u0464\u045d\u0001\u0000\u0000\u0000\u0464\u045e\u0001\u0000\u0000"+ + "\u0000\u0464\u045f\u0001\u0000\u0000\u0000\u0464\u0460\u0001\u0000\u0000"+ + "\u0000\u0464\u0461\u0001\u0000\u0000\u0000\u0464\u0462\u0001\u0000\u0000"+ + "\u0000\u0464\u0463\u0001\u0000\u0000\u0000\u0465\u00ab\u0001\u0000\u0000"+ + "\u0000\u0466\u0467\u0005$\u0000\u0000\u0467\u0468\u0003\u00a8T\u0000\u0468"+ + "\u00ad\u0001\u0000\u0000\u0000\u0469\u046a\u0005[\u0000\u0000\u046a\u046c"+ + "\u0003\u00a8T\u0000\u046b\u046d\u0003\u00f2y\u0000\u046c\u046b\u0001\u0000"+ + "\u0000\u0000\u046c\u046d\u0001\u0000\u0000\u0000\u046d\u00af\u0001\u0000"+ + "\u0000\u0000\u046e\u046f\u0003\u00b2Y\u0000\u046f\u0470\u0003\u012a\u0095"+ + "\u0000\u0470\u00b1\u0001\u0000\u0000\u0000\u0471\u0472\u0005\f\u0000\u0000"+ + "\u0472\u0473\u0003\u00a8T\u0000\u0473\u0474\u0003\u0174\u00ba\u0000\u0474"+ + "\u0476\u0001\u0000\u0000\u0000\u0475\u0471\u0001\u0000\u0000\u0000\u0476"+ + "\u0479\u0001\u0000\u0000\u0000\u0477\u0475\u0001\u0000\u0000\u0000\u0477"+ + "\u0478\u0001\u0000\u0000\u0000\u0478\u047e\u0001\u0000\u0000\u0000\u0479"+ + "\u0477\u0001\u0000\u0000\u0000\u047a\u047b\u0005\r\u0000\u0000\u047b\u047c"+ + "\u0003f3\u0000\u047c\u047d\u0003\u0174\u00ba\u0000\u047d\u047f\u0001\u0000"+ + "\u0000\u0000\u047e\u047a\u0001\u0000\u0000\u0000\u047e\u047f\u0001\u0000"+ + "\u0000\u0000\u047f\u00b3\u0001\u0000\u0000\u0000\u0480\u0481\u0005T\u0000"+ + "\u0000\u0481\u0486\u0003\u00a8T\u0000\u0482\u0483\u0005T\u0000\u0000\u0483"+ + "\u0484\u0007\u0001\u0000\u0000\u0484\u0486\u0003.\u0017\u0000\u0485\u0480"+ + "\u0001\u0000\u0000\u0000\u0485\u0482\u0001\u0000\u0000\u0000\u0486\u00b5"+ + "\u0001\u0000\u0000\u0000\u0487\u0490\u0005\u0003\u0000\u0000\u0488\u0490"+ + "\u0005\u0004\u0000\u0000\u0489\u0490\u0005g\u0000\u0000\u048a\u0490\u0003"+ + "\u0150\u00a8\u0000\u048b\u0490\u0003\u0166\u00b3\u0000\u048c\u0490\u0005"+ + "\u0001\u0000\u0000\u048d\u0490\u0005\u0092\u0000\u0000\u048e\u0490\u0005"+ + "\u0093\u0000\u0000\u048f\u0487\u0001\u0000\u0000\u0000\u048f\u0488\u0001"+ + "\u0000\u0000\u0000\u048f\u0489\u0001\u0000\u0000\u0000\u048f\u048a\u0001"+ + "\u0000\u0000\u0000\u048f\u048b\u0001\u0000\u0000\u0000\u048f\u048c\u0001"+ + "\u0000\u0000\u0000\u048f\u048d\u0001\u0000\u0000\u0000\u048f\u048e\u0001"+ + "\u0000\u0000\u0000\u0490\u00b7\u0001\u0000\u0000\u0000\u0491\u0492\u0006"+ + "\\\uffff\uffff\u0000\u0492\u04a2\u0003\u014c\u00a6\u0000\u0493\u04a2\u0003"+ + "\u0148\u00a4\u0000\u0494\u04a2\u0003\u0170\u00b8\u0000\u0495\u04a2\u0003"+ + " \u0010\u0000\u0496\u04a2\u0003\u008aE\u0000\u0497\u04a2\u0003\u0088D"+ + "\u0000\u0498\u0499\u0005M\u0000\u0000\u0499\u049a\u0003\u00b8\\\u0000"+ + "\u049a\u049b\u0003\u016e\u00b7\u0000\u049b\u04a2\u0001\u0000\u0000\u0000"+ + "\u049c\u049d\u0007\r\u0000\u0000\u049d\u049e\u0005i\u0000\u0000\u049e"+ + "\u049f\u0003\u00a8T\u0000\u049f\u04a0\u0005j\u0000\u0000\u04a0\u04a2\u0001"+ + "\u0000\u0000\u0000\u04a1\u0491\u0001\u0000\u0000\u0000\u04a1\u0493\u0001"+ + "\u0000\u0000\u0000\u04a1\u0494\u0001\u0000\u0000\u0000\u04a1\u0495\u0001"+ + "\u0000\u0000\u0000\u04a1\u0496\u0001\u0000\u0000\u0000\u04a1\u0497\u0001"+ + "\u0000\u0000\u0000\u04a1\u0498\u0001\u0000\u0000\u0000\u04a1\u049c\u0001"+ + "\u0000\u0000\u0000\u04a2\u04b9\u0001\u0000\u0000\u0000\u04a3\u04a4\n\n"+ + "\u0000\u0000\u04a4\u04a5\u0005s\u0000\u0000\u04a5\u04b8\u0005h\u0000\u0000"+ + "\u04a6\u04a7\n\t\u0000\u0000\u04a7\u04b8\u0003\u016a\u00b5\u0000\u04a8"+ + "\u04a9\n\b\u0000\u0000\u04a9\u04b8\u0003\u00d2i\u0000\u04aa\u04ab\n\u0007"+ + "\u0000\u0000\u04ab\u04b8\u0003L&\u0000\u04ac\u04ad\n\u0006\u0000\u0000"+ + "\u04ad\u04b8\u0003\u016c\u00b6\u0000\u04ae\u04af\n\u0005\u0000\u0000\u04af"+ + "\u04b8\u0003\u016e\u00b7\u0000\u04b0\u04b1\n\u0003\u0000\u0000\u04b1\u04b2"+ + "\u0003\u016e\u00b7\u0000\u04b2\u04b3\u0005\u0010\u0000\u0000\u04b3\u04b4"+ + "\u0003v;\u0000\u04b4\u04b8\u0001\u0000\u0000\u0000\u04b5\u04b6\n\u0002"+ + "\u0000\u0000\u04b6\u04b8\u0003\u00be_\u0000\u04b7\u04a3\u0001\u0000\u0000"+ + "\u0000\u04b7\u04a6\u0001\u0000\u0000\u0000\u04b7\u04a8\u0001\u0000\u0000"+ + "\u0000\u04b7\u04aa\u0001\u0000\u0000\u0000\u04b7\u04ac\u0001\u0000\u0000"+ + "\u0000\u04b7\u04ae\u0001\u0000\u0000\u0000\u04b7\u04b0\u0001\u0000\u0000"+ + "\u0000\u04b7\u04b5\u0001\u0000\u0000\u0000\u04b8\u04bb\u0001\u0000\u0000"+ + "\u0000\u04b9\u04b7\u0001\u0000\u0000\u0000\u04b9\u04ba\u0001\u0000\u0000"+ + "\u0000\u04ba\u00b9\u0001\u0000\u0000\u0000\u04bb\u04b9\u0001\u0000\u0000"+ + "\u0000\u04bc\u04bd\u0003b1\u0000\u04bd\u04be\u0003\u00bc^\u0000\u04be"+ + "\u00bb\u0001\u0000\u0000\u0000\u04bf\u04c1\u0005P\u0000\u0000\u04c0\u04c2"+ + "\u0005h\u0000\u0000\u04c1\u04c0\u0001\u0000\u0000\u0000\u04c1\u04c2\u0001"+ + "\u0000\u0000\u0000\u04c2\u04c3\u0001\u0000\u0000\u0000\u04c3\u04c5\u0003"+ + "\u0142\u00a1\u0000\u04c4\u04c6\u0003t:\u0000\u04c5\u04c4\u0001\u0000\u0000"+ + "\u0000\u04c5\u04c6\u0001\u0000\u0000\u0000\u04c6\u00bd\u0001\u0000\u0000"+ + "\u0000\u04c7\u04c9\u0005&\u0000\u0000\u04c8\u04ca\u0003\u00eau\u0000\u04c9"+ + "\u04c8\u0001\u0000\u0000\u0000\u04c9\u04ca\u0001\u0000\u0000\u0000\u04ca"+ + "\u04cc\u0001\u0000\u0000\u0000\u04cb\u04cd\u0005p\u0000\u0000\u04cc\u04cb"+ + "\u0001\u0000\u0000\u0000\u04cc\u04cd\u0001\u0000\u0000\u0000\u04cd\u04ce"+ + "\u0001\u0000\u0000\u0000\u04ce\u04cf\u0005\'\u0000\u0000\u04cf\u00bf\u0001"+ + "\u0000\u0000\u0000\u04d0\u04d1\u0005Q\u0000\u0000\u04d1\u04db\u0005k\u0000"+ + "\u0000\u04d2\u04d6\u0003\u00c4b\u0000\u04d3\u04d6\u0003\u0130\u0098\u0000"+ + "\u04d4\u04d6\u0003\u00c2a\u0000\u04d5\u04d2\u0001\u0000\u0000\u0000\u04d5"+ + "\u04d3\u0001\u0000\u0000\u0000\u04d5\u04d4\u0001\u0000\u0000\u0000\u04d6"+ + "\u04d7\u0001\u0000\u0000\u0000\u04d7\u04d8\u0003\u0174\u00ba\u0000\u04d8"+ + "\u04da\u0001\u0000\u0000\u0000\u04d9\u04d5\u0001\u0000\u0000\u0000\u04da"+ + "\u04dd\u0001\u0000\u0000\u0000\u04db\u04d9\u0001\u0000\u0000\u0000\u04db"+ + "\u04dc\u0001\u0000\u0000\u0000\u04dc\u04de\u0001\u0000\u0000\u0000\u04dd"+ + "\u04db\u0001\u0000\u0000\u0000\u04de\u04df\u0005l\u0000\u0000\u04df\u00c1"+ + "\u0001\u0000\u0000\u0000\u04e0\u04e1\u00059\u0000\u0000\u04e1\u04e2\u0005"+ + "h\u0000\u0000\u04e2\u04e3\u0003\u0146\u00a3\u0000\u04e3\u00c3\u0001\u0000"+ + "\u0000\u0000\u04e4\u04e6\u0005\u001b\u0000\u0000\u04e5\u04e4\u0001\u0000"+ + "\u0000\u0000\u04e5\u04e6\u0001\u0000\u0000\u0000\u04e6\u04e7\u0001\u0000"+ + "\u0000\u0000\u04e7\u04e8\u0003b1\u0000\u04e8\u04e9\u0005h\u0000\u0000"+ + "\u04e9\u04ea\u0003\u0146\u00a3\u0000\u04ea\u04eb\u0003\u0144\u00a2\u0000"+ + "\u04eb\u04f4\u0001\u0000\u0000\u0000\u04ec\u04ee\u0005\u001b\u0000\u0000"+ + "\u04ed\u04ec\u0001\u0000\u0000\u0000\u04ed\u04ee\u0001\u0000\u0000\u0000"+ + "\u04ee\u04ef\u0001\u0000\u0000\u0000\u04ef\u04f0\u0003b1\u0000\u04f0\u04f1"+ + "\u0005h\u0000\u0000\u04f1\u04f2\u0003\u0146\u00a3\u0000\u04f2\u04f4\u0001"+ + "\u0000\u0000\u0000\u04f3\u04e5\u0001\u0000\u0000\u0000\u04f3\u04ed\u0001"+ + "\u0000\u0000\u0000\u04f4\u00c5\u0001\u0000\u0000\u0000\u04f5\u04fd\u0003"+ + "\u0130\u0098\u0000\u04f6\u04fd\u0003\u00c8d\u0000\u04f7\u04fd\u0003P("+ + "\u0000\u04f8\u04f9\u0005i\u0000\u0000\u04f9\u04fa\u0003\u00c6c\u0000\u04fa"+ + "\u04fb\u0005j\u0000\u0000\u04fb\u04fd\u0001\u0000\u0000\u0000\u04fc\u04f5"+ + "\u0001\u0000\u0000\u0000\u04fc\u04f6\u0001\u0000\u0000\u0000\u04fc\u04f7"+ + "\u0001\u0000\u0000\u0000\u04fc\u04f8\u0001\u0000\u0000\u0000\u04fd\u00c7"+ + "\u0001\u0000\u0000\u0000\u04fe\u0508\u0003\u0132\u0099\u0000\u04ff\u0508"+ + "\u0003\u0162\u00b1\u0000\u0500\u0508\u0003\u0138\u009c\u0000\u0501\u0508"+ + "\u0003\u0140\u00a0\u0000\u0502\u0508\u0003\u00c0`\u0000\u0503\u0508\u0003"+ + "\u013a\u009d\u0000\u0504\u0508\u0003\u013c\u009e\u0000\u0505\u0508\u0003"+ + "\u013e\u009f\u0000\u0506\u0508\u0003\u00cae\u0000\u0507\u04fe\u0001\u0000"+ + "\u0000\u0000\u0507\u04ff\u0001\u0000\u0000\u0000\u0507\u0500\u0001\u0000"+ + "\u0000\u0000\u0507\u0501\u0001\u0000\u0000\u0000\u0507\u0502\u0001\u0000"+ + "\u0000\u0000\u0507\u0503\u0001\u0000\u0000\u0000\u0507\u0504\u0001\u0000"+ + "\u0000\u0000\u0507\u0505\u0001\u0000\u0000\u0000\u0507\u0506\u0001\u0000"+ + "\u0000\u0000\u0508\u00c9\u0001\u0000\u0000\u0000\u0509\u050a\u00059\u0000"+ + "\u0000\u050a\u050b\u0003\u00ccf\u0000\u050b\u00cb\u0001\u0000\u0000\u0000"+ + "\u050c\u0518\u0005i\u0000\u0000\u050d\u0512\u0003\u00c6c\u0000\u050e\u050f"+ + "\u0005p\u0000\u0000\u050f\u0511\u0003\u00c6c\u0000\u0510\u050e\u0001\u0000"+ + "\u0000\u0000\u0511\u0514\u0001\u0000\u0000\u0000\u0512\u0510\u0001\u0000"+ + "\u0000\u0000\u0512\u0513\u0001\u0000\u0000\u0000\u0513\u0516\u0001\u0000"+ + "\u0000\u0000\u0514\u0512\u0001\u0000\u0000\u0000\u0515\u0517\u0005p\u0000"+ + "\u0000\u0516\u0515\u0001\u0000\u0000\u0000\u0516\u0517\u0001\u0000\u0000"+ + "\u0000\u0517\u0519\u0001\u0000\u0000\u0000\u0518\u050d\u0001\u0000\u0000"+ + "\u0000\u0518\u0519\u0001\u0000\u0000\u0000\u0519\u051a\u0001\u0000\u0000"+ + "\u0000\u051a\u051b\u0005j\u0000\u0000\u051b\u00cd\u0001\u0000\u0000\u0000"+ + "\u051c\u0524\u0003\u0162\u00b1\u0000\u051d\u0524\u0003\u0132\u0099\u0000"+ + "\u051e\u0524\u0003\u00d0h\u0000\u051f\u0524\u0003\u013a\u009d\u0000\u0520"+ + "\u0524\u0003\u013c\u009e\u0000\u0521\u0524\u0003P(\u0000\u0522\u0524\u0003"+ + "\u0130\u0098\u0000\u0523\u051c\u0001\u0000\u0000\u0000\u0523\u051d\u0001"+ + "\u0000\u0000\u0000\u0523\u051e\u0001\u0000\u0000\u0000\u0523\u051f\u0001"+ + "\u0000\u0000\u0000\u0523\u0520\u0001\u0000\u0000\u0000\u0523\u0521\u0001"+ + "\u0000\u0000\u0000\u0523\u0522\u0001\u0000\u0000\u0000\u0524\u00cf\u0001"+ + "\u0000\u0000\u0000\u0525\u0526\u0005m\u0000\u0000\u0526\u0527\u0005w\u0000"+ + "\u0000\u0527\u0528\u0005n\u0000\u0000\u0528\u0529\u0003\u0136\u009b\u0000"+ + "\u0529\u00d1\u0001\u0000\u0000\u0000\u052a\u053a\u0005m\u0000\u0000\u052b"+ + "\u052d\u0003\u00d4j\u0000\u052c\u052b\u0001\u0000\u0000\u0000\u052c\u052d"+ + "\u0001\u0000\u0000\u0000\u052d\u052e\u0001\u0000\u0000\u0000\u052e\u0530"+ + "\u0005r\u0000\u0000\u052f\u0531\u0003\u00d6k\u0000\u0530\u052f\u0001\u0000"+ + "\u0000\u0000\u0530\u0531\u0001\u0000\u0000\u0000\u0531\u053b\u0001\u0000"+ + "\u0000\u0000\u0532\u0534\u0003\u00d4j\u0000\u0533\u0532\u0001\u0000\u0000"+ + "\u0000\u0533\u0534\u0001\u0000\u0000\u0000\u0534\u0535\u0001\u0000\u0000"+ + "\u0000\u0535\u0536\u0005r\u0000\u0000\u0536\u0537\u0003\u00d6k\u0000\u0537"+ + "\u0538\u0005r\u0000\u0000\u0538\u0539\u0003\u00d8l\u0000\u0539\u053b\u0001"+ + "\u0000\u0000\u0000\u053a\u052c\u0001\u0000\u0000\u0000\u053a\u0533\u0001"+ + "\u0000\u0000\u0000\u053b\u053c\u0001\u0000\u0000\u0000\u053c\u053d\u0005"+ + "n\u0000\u0000\u053d\u00d3\u0001\u0000\u0000\u0000\u053e\u053f\u0003\u00a8"+ + "T\u0000\u053f\u00d5\u0001\u0000\u0000\u0000\u0540\u0541\u0003\u00a8T\u0000"+ + "\u0541\u00d7\u0001\u0000\u0000\u0000\u0542\u0543\u0003\u00a8T\u0000\u0543"+ + "\u00d9\u0001\u0000\u0000\u0000\u0544\u0546\u0007\u000e\u0000\u0000\u0545"+ + "\u0544\u0001\u0000\u0000\u0000\u0545\u0546\u0001\u0000\u0000\u0000\u0546"+ + "\u0547\u0001\u0000\u0000\u0000\u0547\u0548\u0005o\u0000\u0000\u0548\u00db"+ + "\u0001\u0000\u0000\u0000\u0549\u054a\u0003\u00eau\u0000\u054a\u054b\u0005"+ + "o\u0000\u0000\u054b\u0550\u0001\u0000\u0000\u0000\u054c\u054d\u0003\u0006"+ + "\u0003\u0000\u054d\u054e\u0005v\u0000\u0000\u054e\u0550\u0001\u0000\u0000"+ + "\u0000\u054f\u0549\u0001\u0000\u0000\u0000\u054f\u054c\u0001\u0000\u0000"+ + "\u0000\u054f\u0550\u0001\u0000\u0000\u0000\u0550\u0551\u0001\u0000\u0000"+ + "\u0000\u0551\u0552\u0005`\u0000\u0000\u0552\u0557\u0003\u00a8T\u0000\u0553"+ + "\u0555\u0005K\u0000\u0000\u0554\u0556\u0005h\u0000\u0000\u0555\u0554\u0001"+ + "\u0000\u0000\u0000\u0555\u0556\u0001\u0000\u0000\u0000\u0556\u0558\u0001"+ + "\u0000\u0000\u0000\u0557\u0553\u0001\u0000\u0000\u0000\u0557\u0558\u0001"+ + "\u0000\u0000\u0000\u0558\u00dd\u0001\u0000\u0000\u0000\u0559\u055a\u0005"+ + "[\u0000\u0000\u055a\u055b\u0005h\u0000\u0000\u055b\u00df\u0001\u0000\u0000"+ + "\u0000\u055c\u055d\u0003\u0166\u00b3\u0000\u055d\u00e1\u0001\u0000\u0000"+ + "\u0000\u055e\u0562\u0003\u00e4r\u0000\u055f\u0562\u0003\u00ecv\u0000\u0560"+ + "\u0562\u0003\u00f0x\u0000\u0561\u055e\u0001\u0000\u0000\u0000\u0561\u055f"+ + "\u0001\u0000\u0000\u0000\u0561\u0560\u0001\u0000\u0000\u0000\u0562\u00e3"+ + "\u0001\u0000\u0000\u0000\u0563\u056f\u0005]\u0000\u0000\u0564\u0570\u0003"+ + "\u00e6s\u0000\u0565\u056b\u0005i\u0000\u0000\u0566\u0567\u0003\u00e6s"+ + "\u0000\u0567\u0568\u0003\u0174\u00ba\u0000\u0568\u056a\u0001\u0000\u0000"+ + "\u0000\u0569\u0566\u0001\u0000\u0000\u0000\u056a\u056d\u0001\u0000\u0000"+ + "\u0000\u056b\u0569\u0001\u0000\u0000\u0000\u056b\u056c\u0001\u0000\u0000"+ + "\u0000\u056c\u056e\u0001\u0000\u0000\u0000\u056d\u056b\u0001\u0000\u0000"+ + "\u0000\u056e\u0570\u0005j\u0000\u0000\u056f\u0564\u0001\u0000\u0000\u0000"+ + "\u056f\u0565\u0001\u0000\u0000\u0000\u0570\u00e5\u0001\u0000\u0000\u0000"+ + "\u0571\u0577\u0003\u00e8t\u0000\u0572\u0574\u0003\u00c6c\u0000\u0573\u0572"+ + "\u0001\u0000\u0000\u0000\u0573\u0574\u0001\u0000\u0000\u0000\u0574\u0575"+ + "\u0001\u0000\u0000\u0000\u0575\u0576\u0005o\u0000\u0000\u0576\u0578\u0003"+ + "\u00eau\u0000\u0577\u0573\u0001\u0000\u0000\u0000\u0577\u0578\u0001\u0000"+ + "\u0000\u0000\u0578\u00e7\u0001\u0000\u0000\u0000\u0579\u057e\u0005h\u0000"+ + "\u0000\u057a\u057b\u0005p\u0000\u0000\u057b\u057d\u0005h\u0000\u0000\u057c"+ + "\u057a\u0001\u0000\u0000\u0000\u057d\u0580\u0001\u0000\u0000\u0000\u057e"+ + "\u057c\u0001\u0000\u0000\u0000\u057e\u057f\u0001\u0000\u0000\u0000\u057f"+ + "\u00e9\u0001\u0000\u0000\u0000\u0580\u057e\u0001\u0000\u0000\u0000\u0581"+ + "\u0586\u0003\u00a8T\u0000\u0582\u0583\u0005p\u0000\u0000\u0583\u0585\u0003"+ + "\u00a8T\u0000\u0584\u0582\u0001\u0000\u0000\u0000\u0585\u0588\u0001\u0000"+ + "\u0000\u0000\u0586\u0584\u0001\u0000\u0000\u0000\u0586\u0587\u0001\u0000"+ + "\u0000\u0000\u0587\u00eb\u0001\u0000\u0000\u0000\u0588\u0586\u0001\u0000"+ + "\u0000\u0000\u0589\u0595\u0005a\u0000\u0000\u058a\u0596\u0003\u00eew\u0000"+ + "\u058b\u0591\u0005i\u0000\u0000\u058c\u058d\u0003\u00eew\u0000\u058d\u058e"+ + "\u0003\u0174\u00ba\u0000\u058e\u0590\u0001\u0000\u0000\u0000\u058f\u058c"+ + "\u0001\u0000\u0000\u0000\u0590\u0593\u0001\u0000\u0000\u0000\u0591\u058f"+ + "\u0001\u0000\u0000\u0000\u0591\u0592\u0001\u0000\u0000\u0000\u0592\u0594"+ + "\u0001\u0000\u0000\u0000\u0593\u0591\u0001\u0000\u0000\u0000\u0594\u0596"+ + "\u0005j\u0000\u0000\u0595\u058a\u0001\u0000\u0000\u0000\u0595\u058b\u0001"+ + "\u0000\u0000\u0000\u0596\u00ed\u0001\u0000\u0000\u0000\u0597\u0599\u0005"+ + "h\u0000\u0000\u0598\u059a\u0005o\u0000\u0000\u0599\u0598\u0001\u0000\u0000"+ + "\u0000\u0599\u059a\u0001\u0000\u0000\u0000\u059a\u059b\u0001\u0000\u0000"+ + "\u0000\u059b\u059c\u0003\u00c6c\u0000\u059c\u00ef\u0001\u0000\u0000\u0000"+ + "\u059d\u05a9\u0005f\u0000\u0000\u059e\u05aa\u0003\u009aM\u0000\u059f\u05a5"+ + "\u0005i\u0000\u0000\u05a0\u05a1\u0003\u009aM\u0000\u05a1\u05a2\u0003\u0174"+ + "\u00ba\u0000\u05a2\u05a4\u0001\u0000\u0000\u0000\u05a3\u05a0\u0001\u0000"+ + "\u0000\u0000\u05a4\u05a7\u0001\u0000\u0000\u0000\u05a5\u05a3\u0001\u0000"+ + "\u0000\u0000\u05a5\u05a6\u0001\u0000\u0000\u0000\u05a6\u05a8\u0001\u0000"+ + "\u0000\u0000\u05a7\u05a5\u0001\u0000\u0000\u0000\u05a8\u05aa\u0005j\u0000"+ + "\u0000\u05a9\u059e\u0001\u0000\u0000\u0000\u05a9\u059f\u0001\u0000\u0000"+ + "\u0000\u05aa\u00f1\u0001\u0000\u0000\u0000\u05ab\u05ad\u0005k\u0000\u0000"+ + "\u05ac\u05ae\u0003\u00f4z\u0000\u05ad\u05ac\u0001\u0000\u0000\u0000\u05ad"+ + "\u05ae\u0001\u0000\u0000\u0000\u05ae\u05af\u0001\u0000\u0000\u0000\u05af"+ + "\u05b0\u0005l\u0000\u0000\u05b0\u00f3\u0001\u0000\u0000\u0000\u05b1\u05b3"+ + "\u0005q\u0000\u0000\u05b2\u05b1\u0001\u0000\u0000\u0000\u05b2\u05b3\u0001"+ + "\u0000\u0000\u0000\u05b3\u05b9\u0001\u0000\u0000\u0000\u05b4\u05b6\u0005"+ + "\u00a2\u0000\u0000\u05b5\u05b4\u0001\u0000\u0000\u0000\u05b5\u05b6\u0001"+ + "\u0000\u0000\u0000\u05b6\u05b9\u0001\u0000\u0000\u0000\u05b7\u05b9\u0004"+ + "z\u0012\u0000\u05b8\u05b2\u0001\u0000\u0000\u0000\u05b8\u05b5\u0001\u0000"+ + "\u0000\u0000\u05b8\u05b7\u0001\u0000\u0000\u0000\u05b9\u05ba\u0001\u0000"+ + "\u0000\u0000\u05ba\u05bb\u0003\u00aaU\u0000\u05bb\u05bc\u0003\u0174\u00ba"+ + "\u0000\u05bc\u05be\u0001\u0000\u0000\u0000\u05bd\u05b8\u0001\u0000\u0000"+ + "\u0000\u05be\u05bf\u0001\u0000\u0000\u0000\u05bf\u05bd\u0001\u0000\u0000"+ + "\u0000\u05bf\u05c0\u0001\u0000\u0000\u0000\u05c0\u00f5\u0001\u0000\u0000"+ + "\u0000\u05c1\u05c7\u0003\u00fa}\u0000\u05c2\u05c7\u0003\u00fc~\u0000\u05c3"+ + "\u05c7\u0003\u00fe\u007f\u0000\u05c4\u05c7\u0003\u00f8|\u0000\u05c5\u05c7"+ + "\u0003\u009cN\u0000\u05c6\u05c1\u0001\u0000\u0000\u0000\u05c6\u05c2\u0001"+ + "\u0000\u0000\u0000\u05c6\u05c3\u0001\u0000\u0000\u0000\u05c6\u05c4\u0001"+ + "\u0000\u0000\u0000\u05c6\u05c5\u0001\u0000\u0000\u0000\u05c7\u00f7\u0001"+ + "\u0000\u0000\u0000\u05c8\u05c9\u0003\u00a8T\u0000\u05c9\u00f9\u0001\u0000"+ + "\u0000\u0000\u05ca\u05cb\u0003\u00a8T\u0000\u05cb\u05cc\u0005\u008c\u0000"+ + "\u0000\u05cc\u05cd\u0003\u00a8T\u0000\u05cd\u00fb\u0001\u0000\u0000\u0000"+ + "\u05ce\u05cf\u0003\u00a8T\u0000\u05cf\u05d0\u0007\u000f\u0000\u0000\u05d0"+ + "\u00fd\u0001\u0000\u0000\u0000\u05d1\u05d2\u0003\u00eau\u0000\u05d2\u05d3"+ + "\u0003\u00dam\u0000\u05d3\u05d4\u0003\u00eau\u0000\u05d4\u00ff\u0001\u0000"+ + "\u0000\u0000\u05d5\u05d6\u0007\u0010\u0000\u0000\u05d6\u0101\u0001\u0000"+ + "\u0000\u0000\u05d7\u05d8\u0005h\u0000\u0000\u05d8\u05da\u0005r\u0000\u0000"+ + "\u05d9\u05db\u0003\u00aaU\u0000\u05da\u05d9\u0001\u0000\u0000\u0000\u05da"+ + "\u05db\u0001\u0000\u0000\u0000\u05db\u0103\u0001\u0000\u0000\u0000\u05dc"+ + "\u05de\u0005e\u0000\u0000\u05dd\u05df\u0003\u00eau\u0000\u05de\u05dd\u0001"+ + "\u0000\u0000\u0000\u05de\u05df\u0001\u0000\u0000\u0000\u05df\u0105\u0001"+ + "\u0000\u0000\u0000\u05e0\u05e2\u0005N\u0000\u0000\u05e1\u05e3\u0005h\u0000"+ + "\u0000\u05e2\u05e1\u0001\u0000\u0000\u0000\u05e2\u05e3\u0001\u0000\u0000"+ + "\u0000\u05e3\u0107\u0001\u0000\u0000\u0000\u05e4\u05e6\u0005b\u0000\u0000"+ + "\u05e5\u05e7\u0005h\u0000\u0000\u05e6\u05e5\u0001\u0000\u0000\u0000\u05e6"+ + "\u05e7\u0001\u0000\u0000\u0000\u05e7\u0109\u0001\u0000\u0000\u0000\u05e8"+ + "\u05e9\u0005Z\u0000\u0000\u05e9\u05ea\u0005h\u0000\u0000\u05ea\u010b\u0001"+ + "\u0000\u0000\u0000\u05eb\u05ec\u0005^\u0000\u0000\u05ec\u010d\u0001\u0000"+ + "\u0000\u0000\u05ed\u05f6\u0005_\u0000\u0000\u05ee\u05f7\u0003\u00a8T\u0000"+ + "\u05ef\u05f0\u0003\u0174\u00ba\u0000\u05f0\u05f1\u0003\u00a8T\u0000\u05f1"+ + "\u05f7\u0001\u0000\u0000\u0000\u05f2\u05f3\u0003\u00f6{\u0000\u05f3\u05f4"+ + "\u0003\u0174\u00ba\u0000\u05f4\u05f5\u0003\u00a8T\u0000\u05f5\u05f7\u0001"+ + "\u0000\u0000\u0000\u05f6\u05ee\u0001\u0000\u0000\u0000\u05f6\u05ef\u0001"+ + "\u0000\u0000\u0000\u05f6\u05f2\u0001\u0000\u0000\u0000\u05f7\u05f8\u0001"+ + "\u0000\u0000\u0000\u05f8\u05fe\u0003\u00f2y\u0000\u05f9\u05fc\u0005Y\u0000"+ + "\u0000\u05fa\u05fd\u0003\u010e\u0087\u0000\u05fb\u05fd\u0003\u00f2y\u0000"+ + "\u05fc\u05fa\u0001\u0000\u0000\u0000\u05fc\u05fb\u0001\u0000\u0000\u0000"+ + "\u05fd\u05ff\u0001\u0000\u0000\u0000\u05fe\u05f9\u0001\u0000\u0000\u0000"+ + "\u05fe\u05ff\u0001\u0000\u0000\u0000\u05ff\u010f\u0001\u0000\u0000\u0000"+ + "\u0600\u0603\u0003\u0112\u0089\u0000\u0601\u0603\u0003\u0118\u008c\u0000"+ + "\u0602\u0600\u0001\u0000\u0000\u0000\u0602\u0601\u0001\u0000\u0000\u0000"+ + "\u0603\u0111\u0001\u0000\u0000\u0000\u0604\u060f\u0005\\\u0000\u0000\u0605"+ + "\u0607\u0003\u00a8T\u0000\u0606\u0605\u0001\u0000\u0000\u0000\u0606\u0607"+ + "\u0001\u0000\u0000\u0000\u0607\u0610\u0001\u0000\u0000\u0000\u0608\u060a"+ + "\u0003\u00f6{\u0000\u0609\u0608\u0001\u0000\u0000\u0000\u0609\u060a\u0001"+ + "\u0000\u0000\u0000\u060a\u060b\u0001\u0000\u0000\u0000\u060b\u060d\u0003"+ + "\u0174\u00ba\u0000\u060c\u060e\u0003\u00a8T\u0000\u060d\u060c\u0001\u0000"+ + "\u0000\u0000\u060d\u060e\u0001\u0000\u0000\u0000\u060e\u0610\u0001\u0000"+ + "\u0000\u0000\u060f\u0606\u0001\u0000\u0000\u0000\u060f\u0609\u0001\u0000"+ + "\u0000\u0000\u0610\u0611\u0001\u0000\u0000\u0000\u0611\u0615\u0005k\u0000"+ + "\u0000\u0612\u0614\u0003\u0114\u008a\u0000\u0613\u0612\u0001\u0000\u0000"+ + "\u0000\u0614\u0617\u0001\u0000\u0000\u0000\u0615\u0613\u0001\u0000\u0000"+ + "\u0000\u0615\u0616\u0001\u0000\u0000\u0000\u0616\u0618\u0001\u0000\u0000"+ + "\u0000\u0617\u0615\u0001\u0000\u0000\u0000\u0618\u0619\u0005l\u0000\u0000"+ + "\u0619\u0113\u0001\u0000\u0000\u0000\u061a\u061b\u0003\u0116\u008b\u0000"+ + "\u061b\u061d\u0005r\u0000\u0000\u061c\u061e\u0003\u00f4z\u0000\u061d\u061c"+ + "\u0001\u0000\u0000\u0000\u061d\u061e\u0001\u0000\u0000\u0000\u061e\u0115"+ + "\u0001\u0000\u0000\u0000\u061f\u0620\u0005S\u0000\u0000\u0620\u0623\u0003"+ + "\u00eau\u0000\u0621\u0623\u0005O\u0000\u0000\u0622\u061f\u0001\u0000\u0000"+ + "\u0000\u0622\u0621\u0001\u0000\u0000\u0000\u0623\u0117\u0001\u0000\u0000"+ + "\u0000\u0624\u062d\u0005\\\u0000\u0000\u0625\u062e\u0003\u011a\u008d\u0000"+ + "\u0626\u0627\u0003\u0174\u00ba\u0000\u0627\u0628\u0003\u011a\u008d\u0000"+ + "\u0628\u062e\u0001\u0000\u0000\u0000\u0629\u062a\u0003\u00f6{\u0000\u062a"+ + "\u062b\u0003\u0174\u00ba\u0000\u062b\u062c\u0003\u011a\u008d\u0000\u062c"+ + "\u062e\u0001\u0000\u0000\u0000\u062d\u0625\u0001\u0000\u0000\u0000\u062d"+ + "\u0626\u0001\u0000\u0000\u0000\u062d\u0629\u0001\u0000\u0000\u0000\u062e"+ + "\u062f\u0001\u0000\u0000\u0000\u062f\u0633\u0005k\u0000\u0000\u0630\u0632"+ + "\u0003\u011c\u008e\u0000\u0631\u0630\u0001\u0000\u0000\u0000\u0632\u0635"+ + "\u0001\u0000\u0000\u0000\u0633\u0631\u0001\u0000\u0000\u0000\u0633\u0634"+ + "\u0001\u0000\u0000\u0000\u0634\u0636\u0001\u0000\u0000\u0000\u0635\u0633"+ + "\u0001\u0000\u0000\u0000\u0636\u0637\u0005l\u0000\u0000\u0637\u0119\u0001"+ + "\u0000\u0000\u0000\u0638\u0639\u0005h\u0000\u0000\u0639\u063b\u0005v\u0000"+ + "\u0000\u063a\u0638\u0001\u0000\u0000\u0000\u063a\u063b\u0001\u0000\u0000"+ + "\u0000\u063b\u063c\u0001\u0000\u0000\u0000\u063c\u063d\u0003\u00b8\\\u0000"+ + "\u063d\u063e\u0005s\u0000\u0000\u063e\u063f\u0005i\u0000\u0000\u063f\u0640"+ + "\u0005a\u0000\u0000\u0640\u0641\u0005j\u0000\u0000\u0641\u011b\u0001\u0000"+ + "\u0000\u0000\u0642\u0643\u0003\u011e\u008f\u0000\u0643\u0645\u0005r\u0000"+ + "\u0000\u0644\u0646\u0003\u00f4z\u0000\u0645\u0644\u0001\u0000\u0000\u0000"+ + "\u0645\u0646\u0001\u0000\u0000\u0000\u0646\u011d\u0001\u0000\u0000\u0000"+ + "\u0647\u0648\u0005S\u0000\u0000\u0648\u064b\u0003\u0120\u0090\u0000\u0649"+ + "\u064b\u0005O\u0000\u0000\u064a\u0647\u0001\u0000\u0000\u0000\u064a\u0649"+ + "\u0001\u0000\u0000\u0000\u064b\u011f\u0001\u0000\u0000\u0000\u064c\u064f"+ + "\u0003\u00c6c\u0000\u064d\u064f\u0005g\u0000\u0000\u064e\u064c\u0001\u0000"+ + "\u0000\u0000\u064e\u064d\u0001\u0000\u0000\u0000\u064f\u0657\u0001\u0000"+ + "\u0000\u0000\u0650\u0653\u0005p\u0000\u0000\u0651\u0654\u0003\u00c6c\u0000"+ + "\u0652\u0654\u0005g\u0000\u0000\u0653\u0651\u0001\u0000\u0000\u0000\u0653"+ + "\u0652\u0001\u0000\u0000\u0000\u0654\u0656\u0001\u0000\u0000\u0000\u0655"+ + "\u0650\u0001\u0000\u0000\u0000\u0656\u0659\u0001\u0000\u0000\u0000\u0657"+ + "\u0655\u0001\u0000\u0000\u0000\u0657\u0658\u0001\u0000\u0000\u0000\u0658"+ + "\u0121\u0001\u0000\u0000\u0000\u0659\u0657\u0001\u0000\u0000\u0000\u065a"+ + "\u065b\u0005R\u0000\u0000\u065b\u065f\u0005k\u0000\u0000\u065c\u065e\u0003"+ + "\u0124\u0092\u0000\u065d\u065c\u0001\u0000\u0000\u0000\u065e\u0661\u0001"+ + "\u0000\u0000\u0000\u065f\u065d\u0001\u0000\u0000\u0000\u065f\u0660\u0001"+ + "\u0000\u0000\u0000\u0660\u0662\u0001\u0000\u0000\u0000\u0661\u065f\u0001"+ + "\u0000\u0000\u0000\u0662\u0663\u0005l\u0000\u0000\u0663\u0123\u0001\u0000"+ + "\u0000\u0000\u0664\u0665\u0003\u0126\u0093\u0000\u0665\u0667\u0005r\u0000"+ + "\u0000\u0666\u0668\u0003\u00f4z\u0000\u0667\u0666\u0001\u0000\u0000\u0000"+ + "\u0667\u0668\u0001\u0000\u0000\u0000\u0668\u0125\u0001\u0000\u0000\u0000"+ + "\u0669\u066c\u0005S\u0000\u0000\u066a\u066d\u0003\u00fa}\u0000\u066b\u066d"+ + "\u0003\u0128\u0094\u0000\u066c\u066a\u0001\u0000\u0000\u0000\u066c\u066b"+ + "\u0001\u0000\u0000\u0000\u066d\u0670\u0001\u0000\u0000\u0000\u066e\u0670"+ + "\u0005O\u0000\u0000\u066f\u0669\u0001\u0000\u0000\u0000\u066f\u066e\u0001"+ + "\u0000\u0000\u0000\u0670\u0127\u0001\u0000\u0000\u0000\u0671\u0672\u0003"+ + "\u00eau\u0000\u0672\u0673\u0005o\u0000\u0000\u0673\u0678\u0001\u0000\u0000"+ + "\u0000\u0674\u0675\u0003\u00e8t\u0000\u0675\u0676\u0005v\u0000\u0000\u0676"+ + "\u0678\u0001\u0000\u0000\u0000\u0677\u0671\u0001\u0000\u0000\u0000\u0677"+ + "\u0674\u0001\u0000\u0000\u0000\u0677\u0678\u0001\u0000\u0000\u0000\u0678"+ + "\u0679\u0001\u0000\u0000\u0000\u0679\u067a\u0003\u00a8T\u0000\u067a\u0129"+ + "\u0001\u0000\u0000\u0000\u067b\u0683\u0005c\u0000\u0000\u067c\u067e\u0003"+ + "\u00a8T\u0000\u067d\u067c\u0001\u0000\u0000\u0000\u067d\u067e\u0001\u0000"+ + "\u0000\u0000\u067e\u0684\u0001\u0000\u0000\u0000\u067f\u0684\u0003\u012c"+ + "\u0096\u0000\u0680\u0682\u0003\u00dcn\u0000\u0681\u0680\u0001\u0000\u0000"+ + "\u0000\u0681\u0682\u0001\u0000\u0000\u0000\u0682\u0684\u0001\u0000\u0000"+ + "\u0000\u0683\u067d\u0001\u0000\u0000\u0000\u0683\u067f\u0001\u0000\u0000"+ + "\u0000\u0683\u0681\u0001\u0000\u0000\u0000\u0684\u0685\u0001\u0000\u0000"+ + "\u0000\u0685\u0686\u0003\u00f2y\u0000\u0686\u012b\u0001\u0000\u0000\u0000"+ + "\u0687\u0689\u0003\u00f6{\u0000\u0688\u0687\u0001\u0000\u0000\u0000\u0688"+ + "\u0689\u0001\u0000\u0000\u0000\u0689\u068a\u0001\u0000\u0000\u0000\u068a"+ + "\u068c\u0003\u0174\u00ba\u0000\u068b\u068d\u0003\u00a8T\u0000\u068c\u068b"+ + "\u0001\u0000\u0000\u0000\u068c\u068d\u0001\u0000\u0000\u0000\u068d\u068e"+ + "\u0001\u0000\u0000\u0000\u068e\u0690\u0003\u0174\u00ba\u0000\u068f\u0691"+ + "\u0003\u00f6{\u0000\u0690\u068f\u0001\u0000\u0000\u0000\u0690\u0691\u0001"+ + "\u0000\u0000\u0000\u0691\u012d\u0001\u0000\u0000\u0000\u0692\u0693\u0005"+ + "U\u0000\u0000\u0693\u0694\u0003\u00a8T\u0000\u0694\u012f\u0001\u0000\u0000"+ + "\u0000\u0695\u0698\u0003\u0154\u00aa\u0000\u0696\u0698\u0005h\u0000\u0000"+ + "\u0697\u0695\u0001\u0000\u0000\u0000\u0697\u0696\u0001\u0000\u0000\u0000"+ + "\u0698\u0131\u0001\u0000\u0000\u0000\u0699\u069a\u0005m\u0000\u0000\u069a"+ + "\u069b\u0003\u0134\u009a\u0000\u069b\u069c\u0005n\u0000\u0000\u069c\u069d"+ + "\u0003\u0136\u009b\u0000\u069d\u0133\u0001\u0000\u0000\u0000\u069e\u069f"+ + "\u0003\u00a8T\u0000\u069f\u0135\u0001\u0000\u0000\u0000\u06a0\u06a1\u0003"+ + "\u00c6c\u0000\u06a1\u0137\u0001\u0000\u0000\u0000\u06a2\u06a3\u0005\u008a"+ + "\u0000\u0000\u06a3\u06a4\u0003\u00c6c\u0000\u06a4\u0139\u0001\u0000\u0000"+ + "\u0000\u06a5\u06a6\u0005m\u0000\u0000\u06a6\u06a7\u0005n\u0000\u0000\u06a7"+ + "\u06a8\u0003\u0136\u009b\u0000\u06a8\u013b\u0001\u0000\u0000\u0000\u06a9"+ + "\u06aa\u0005V\u0000\u0000\u06aa\u06ab\u0005m\u0000\u0000\u06ab\u06ac\u0003"+ + "\u00c6c\u0000\u06ac\u06ad\u0005n\u0000\u0000\u06ad\u06ae\u0003\u0136\u009b"+ + "\u0000\u06ae\u013d\u0001\u0000\u0000\u0000\u06af\u06b5\u0005X\u0000\u0000"+ + "\u06b0\u06b1\u0005X\u0000\u0000\u06b1\u06b5\u0005\u008c\u0000\u0000\u06b2"+ + "\u06b3\u0005\u008c\u0000\u0000\u06b3\u06b5\u0005X\u0000\u0000\u06b4\u06af"+ + "\u0001\u0000\u0000\u0000\u06b4\u06b0\u0001\u0000\u0000\u0000\u06b4\u06b2"+ + "\u0001\u0000\u0000\u0000\u06b5\u06b6\u0001\u0000\u0000\u0000\u06b6\u06b7"+ + "\u0003\u0136\u009b\u0000\u06b7\u013f\u0001\u0000\u0000\u0000\u06b8\u06b9"+ + "\u0005P\u0000\u0000\u06b9\u06ba\u0003\u0142\u00a1\u0000\u06ba\u0141\u0001"+ + "\u0000\u0000\u0000\u06bb\u06bc\u0003\u0146\u00a3\u0000\u06bc\u06bd\u0003"+ + "\u0144\u00a2\u0000\u06bd\u06c0\u0001\u0000\u0000\u0000\u06be\u06c0\u0003"+ + "\u0146\u00a3\u0000\u06bf\u06bb\u0001\u0000\u0000\u0000\u06bf\u06be\u0001"+ + "\u0000\u0000\u0000\u06c0\u0143\u0001\u0000\u0000\u0000\u06c1\u06c4\u0003"+ + "\u0146\u00a3\u0000\u06c2\u06c4\u0003\u00c6c\u0000\u06c3\u06c1\u0001\u0000"+ + "\u0000\u0000\u06c3\u06c2\u0001\u0000\u0000\u0000\u06c4\u0145\u0001\u0000"+ + "\u0000\u0000\u06c5\u06d1\u0005i\u0000\u0000\u06c6\u06cb\u0003\u00a0P\u0000"+ + "\u06c7\u06c8\u0005p\u0000\u0000\u06c8\u06ca\u0003\u00a0P\u0000\u06c9\u06c7"+ + "\u0001\u0000\u0000\u0000\u06ca\u06cd\u0001\u0000\u0000\u0000\u06cb\u06c9"+ + "\u0001\u0000\u0000\u0000\u06cb\u06cc\u0001\u0000\u0000\u0000\u06cc\u06cf"+ + "\u0001\u0000\u0000\u0000\u06cd\u06cb\u0001\u0000\u0000\u0000\u06ce\u06d0"+ + "\u0005p\u0000\u0000\u06cf\u06ce\u0001\u0000\u0000\u0000\u06cf\u06d0\u0001"+ + "\u0000\u0000\u0000\u06d0\u06d2\u0001\u0000\u0000\u0000\u06d1\u06c6\u0001"+ + "\u0000\u0000\u0000\u06d1\u06d2\u0001\u0000\u0000\u0000\u06d2\u06d3\u0001"+ + "\u0000\u0000\u0000\u06d3\u06d4\u0005j\u0000\u0000\u06d4\u0147\u0001\u0000"+ + "\u0000\u0000\u06d5\u06d6\u0003\u014a\u00a5\u0000\u06d6\u06d7\u0005i\u0000"+ + "\u0000\u06d7\u06d9\u0003\u00a8T\u0000\u06d8\u06da\u0005p\u0000\u0000\u06d9"+ + "\u06d8\u0001\u0000\u0000\u0000\u06d9\u06da\u0001\u0000\u0000\u0000\u06da"+ + "\u06db\u0001\u0000\u0000\u0000\u06db\u06dc\u0005j\u0000\u0000\u06dc\u0149"+ + "\u0001\u0000\u0000\u0000\u06dd\u06e3\u0003\u00c8d\u0000\u06de\u06df\u0005"+ + "i\u0000\u0000\u06df\u06e0\u0003\u014a\u00a5\u0000\u06e0\u06e1\u0005j\u0000"+ + "\u0000\u06e1\u06e3\u0001\u0000\u0000\u0000\u06e2\u06dd\u0001\u0000\u0000"+ + "\u0000\u06e2\u06de\u0001\u0000\u0000\u0000\u06e3\u014b\u0001\u0000\u0000"+ + "\u0000\u06e4\u06eb\u0003\u014e\u00a7\u0000\u06e5\u06eb\u0003\u0152\u00a9"+ + "\u0000\u06e6\u06e7\u0005i\u0000\u0000\u06e7\u06e8\u0003\u00a8T\u0000\u06e8"+ + "\u06e9\u0005j\u0000\u0000\u06e9\u06eb\u0001\u0000\u0000\u0000\u06ea\u06e4"+ + "\u0001\u0000\u0000\u0000\u06ea\u06e5\u0001\u0000\u0000\u0000\u06ea\u06e6"+ + "\u0001\u0000\u0000\u0000\u06eb\u014d\u0001\u0000\u0000\u0000\u06ec\u06f0"+ + "\u0003\u00b6[\u0000\u06ed\u06f0\u0003\u0156\u00ab\u0000\u06ee\u06f0\u0003"+ + "\u00ba]\u0000\u06ef\u06ec\u0001\u0000\u0000\u0000\u06ef\u06ed\u0001\u0000"+ + "\u0000\u0000\u06ef\u06ee\u0001\u0000\u0000\u0000\u06f0\u014f\u0001\u0000"+ + "\u0000\u0000\u06f1\u06f2\u0007\u0011\u0000\u0000\u06f2\u0151\u0001\u0000"+ + "\u0000\u0000\u06f3\u06f4\u0005h\u0000\u0000\u06f4\u0153\u0001\u0000\u0000"+ + "\u0000\u06f5\u06f6\u0005h\u0000\u0000\u06f6\u06f7\u0005s\u0000\u0000\u06f7"+ + "\u06f8\u0005h\u0000\u0000\u06f8\u0155\u0001\u0000\u0000\u0000\u06f9\u06fa"+ + "\u0003\u00ceg\u0000\u06fa\u06fb\u0003\u0158\u00ac\u0000\u06fb\u0157\u0001"+ + "\u0000\u0000\u0000\u06fc\u0701\u0005k\u0000\u0000\u06fd\u06ff\u0003\u015a"+ + "\u00ad\u0000\u06fe\u0700\u0005p\u0000\u0000\u06ff\u06fe\u0001\u0000\u0000"+ + "\u0000\u06ff\u0700\u0001\u0000\u0000\u0000\u0700\u0702\u0001\u0000\u0000"+ + "\u0000\u0701\u06fd\u0001\u0000\u0000\u0000\u0701\u0702\u0001\u0000\u0000"+ + "\u0000\u0702\u0703\u0001\u0000\u0000\u0000\u0703\u0704\u0005l\u0000\u0000"+ + "\u0704\u0159\u0001\u0000\u0000\u0000\u0705\u070a\u0003\u015c\u00ae\u0000"+ + "\u0706\u0707\u0005p\u0000\u0000\u0707\u0709\u0003\u015c\u00ae\u0000\u0708"+ + "\u0706\u0001\u0000\u0000\u0000\u0709\u070c\u0001\u0000\u0000\u0000\u070a"+ + "\u0708\u0001\u0000\u0000\u0000\u070a\u070b\u0001\u0000\u0000\u0000\u070b"+ + "\u015b\u0001\u0000\u0000\u0000\u070c\u070a\u0001\u0000\u0000\u0000\u070d"+ + "\u070e\u0003\u015e\u00af\u0000\u070e\u070f\u0005r\u0000\u0000\u070f\u0711"+ + "\u0001\u0000\u0000\u0000\u0710\u070d\u0001\u0000\u0000\u0000\u0710\u0711"+ + "\u0001\u0000\u0000\u0000\u0711\u0712\u0001\u0000\u0000\u0000\u0712\u0713"+ + "\u0003\u0160\u00b0\u0000\u0713\u015d\u0001\u0000\u0000\u0000\u0714\u0717"+ + "\u0003\u00a8T\u0000\u0715\u0717\u0003\u0158\u00ac\u0000\u0716\u0714\u0001"+ + "\u0000\u0000\u0000\u0716\u0715\u0001\u0000\u0000\u0000\u0717\u015f\u0001"+ + "\u0000\u0000\u0000\u0718\u071b\u0003\u00a8T\u0000\u0719\u071b\u0003\u0158"+ + "\u00ac\u0000\u071a\u0718\u0001\u0000\u0000\u0000\u071a\u0719\u0001\u0000"+ + "\u0000\u0000\u071b\u0161\u0001\u0000\u0000\u0000\u071c\u071d\u0005W\u0000"+ + "\u0000\u071d\u0723\u0005k\u0000\u0000\u071e\u071f\u0003\u0164\u00b2\u0000"+ + "\u071f\u0720\u0003\u0174\u00ba\u0000\u0720\u0722\u0001\u0000\u0000\u0000"+ + "\u0721\u071e\u0001\u0000\u0000\u0000\u0722\u0725\u0001\u0000\u0000\u0000"+ + "\u0723\u0721\u0001\u0000\u0000\u0000\u0723\u0724\u0001\u0000\u0000\u0000"+ + "\u0724\u0726\u0001\u0000\u0000\u0000\u0725\u0723\u0001\u0000\u0000\u0000"+ + "\u0726\u0727\u0005l\u0000\u0000\u0727\u0163\u0001\u0000\u0000\u0000\u0728"+ + "\u0729\u0003\u00e8t\u0000\u0729\u072a\u0003\u00c6c\u0000\u072a\u072d\u0001"+ + "\u0000\u0000\u0000\u072b\u072d\u0003\u0168\u00b4\u0000\u072c\u0728\u0001"+ + "\u0000\u0000\u0000\u072c\u072b\u0001\u0000\u0000\u0000\u072d\u072f\u0001"+ + "\u0000\u0000\u0000\u072e\u0730\u0003\u0166\u00b3\u0000\u072f\u072e\u0001"+ + "\u0000\u0000\u0000\u072f\u0730\u0001\u0000\u0000\u0000\u0730\u0165\u0001"+ + "\u0000\u0000\u0000\u0731\u0732\u0007\u0012\u0000\u0000\u0732\u0167\u0001"+ + "\u0000\u0000\u0000\u0733\u0735\u0005\u008a\u0000\u0000\u0734\u0733\u0001"+ + "\u0000\u0000\u0000\u0734\u0735\u0001\u0000\u0000\u0000\u0735\u0736\u0001"+ + "\u0000\u0000\u0000\u0736\u0737\u0003\u0130\u0098\u0000\u0737\u0169\u0001"+ + "\u0000\u0000\u0000\u0738\u0739\u0005m\u0000\u0000\u0739\u073a\u0003\u00a8"+ + "T\u0000\u073a\u073b\u0005n\u0000\u0000\u073b\u016b\u0001\u0000\u0000\u0000"+ + "\u073c\u073d\u0005s\u0000\u0000\u073d\u073e\u0005i\u0000\u0000\u073e\u073f"+ + "\u0003\u00c6c\u0000\u073f\u0740\u0005j\u0000\u0000\u0740\u016d\u0001\u0000"+ + "\u0000\u0000\u0741\u0750\u0005i\u0000\u0000\u0742\u0749\u0003\u00eau\u0000"+ + "\u0743\u0746\u0003\u014a\u00a5\u0000\u0744\u0745\u0005p\u0000\u0000\u0745"+ + "\u0747\u0003\u00eau\u0000\u0746\u0744\u0001\u0000\u0000\u0000\u0746\u0747"+ + "\u0001\u0000\u0000\u0000\u0747\u0749\u0001\u0000\u0000\u0000\u0748\u0742"+ + "\u0001\u0000\u0000\u0000\u0748\u0743\u0001\u0000\u0000\u0000\u0749\u074b"+ + "\u0001\u0000\u0000\u0000\u074a\u074c\u0005w\u0000\u0000\u074b\u074a\u0001"+ + "\u0000\u0000\u0000\u074b\u074c\u0001\u0000\u0000\u0000\u074c\u074e\u0001"+ + "\u0000\u0000\u0000\u074d\u074f\u0005p\u0000\u0000\u074e\u074d\u0001\u0000"+ + "\u0000\u0000\u074e\u074f\u0001\u0000\u0000\u0000\u074f\u0751\u0001\u0000"+ + "\u0000\u0000\u0750\u0748\u0001\u0000\u0000\u0000\u0750\u0751\u0001\u0000"+ + "\u0000\u0000\u0751\u0752\u0001\u0000\u0000\u0000\u0752\u0753\u0005j\u0000"+ + "\u0000\u0753\u016f\u0001\u0000\u0000\u0000\u0754\u0755\u0003\u014a\u00a5"+ + "\u0000\u0755\u0756\u0005s\u0000\u0000\u0756\u0757\u0005h\u0000\u0000\u0757"+ + "\u0171\u0001\u0000\u0000\u0000\u0758\u0759\u0003\u00c6c\u0000\u0759\u0173"+ + "\u0001\u0000\u0000\u0000\u075a\u075f\u0005q\u0000\u0000\u075b\u075f\u0005"+ + "\u0000\u0000\u0001\u075c\u075f\u0005\u00a2\u0000\u0000\u075d\u075f\u0004"+ + "\u00ba\u0013\u0000\u075e\u075a\u0001\u0000\u0000\u0000\u075e\u075b\u0001"+ + "\u0000\u0000\u0000\u075e\u075c\u0001\u0000\u0000\u0000\u075e\u075d\u0001"+ + "\u0000\u0000\u0000\u075f\u0175\u0001\u0000\u0000\u0000\u00c2\u0184\u0189"+ + "\u0190\u019a\u01a0\u01a6\u01b0\u01ba\u01c8\u01cc\u01d5\u01e1\u01e5\u01eb"+ + "\u01f4\u01fe\u020f\u021d\u0221\u0228\u0230\u0239\u0259\u0261\u0279\u028c"+ + "\u029b\u02a9\u02b2\u02c0\u02c9\u02d5\u02db\u02f4\u02fd\u0302\u0307\u0311"+ + "\u0314\u0318\u031c\u0324\u032c\u0331\u0339\u033b\u0340\u0347\u034f\u0352"+ + "\u0358\u035d\u035f\u0362\u0369\u036e\u0381\u0389\u038d\u0390\u0396\u039a"+ + "\u039d\u03a7\u03ae\u03b5\u03c1\u03c7\u03ce\u03d3\u03d9\u03e5\u03eb\u03ef"+ + "\u03f7\u03fb\u0401\u0404\u040a\u040f\u0428\u044b\u044d\u0464\u046c\u0477"+ + "\u047e\u0485\u048f\u04a1\u04b7\u04b9\u04c1\u04c5\u04c9\u04cc\u04d5\u04db"+ + "\u04e5\u04ed\u04f3\u04fc\u0507\u0512\u0516\u0518\u0523\u052c\u0530\u0533"+ + "\u053a\u0545\u054f\u0555\u0557\u0561\u056b\u056f\u0573\u0577\u057e\u0586"+ + "\u0591\u0595\u0599\u05a5\u05a9\u05ad\u05b2\u05b5\u05b8\u05bf\u05c6\u05da"+ + "\u05de\u05e2\u05e6\u05f6\u05fc\u05fe\u0602\u0606\u0609\u060d\u060f\u0615"+ + "\u061d\u0622\u062d\u0633\u063a\u0645\u064a\u064e\u0653\u0657\u065f\u0667"+ + "\u066c\u066f\u0677\u067d\u0681\u0683\u0688\u068c\u0690\u0697\u06b4\u06bf"+ + "\u06c3\u06cb\u06cf\u06d1\u06d9\u06e2\u06ea\u06ef\u06ff\u0701\u070a\u0710"+ + "\u0716\u071a\u0723\u072c\u072f\u0734\u0746\u0748\u074b\u074e\u0750\u075e"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff --git a/src/main/java/viper/gobra/frontend/GobraParserBaseVisitor.java b/src/main/java/viper/gobra/frontend/GobraParserBaseVisitor.java index 3705ddec4..a4f451acb 100644 --- a/src/main/java/viper/gobra/frontend/GobraParserBaseVisitor.java +++ b/src/main/java/viper/gobra/frontend/GobraParserBaseVisitor.java @@ -1,4 +1,4 @@ -// Generated from src/main/antlr4/GobraParser.g4 by ANTLR 4.13.1 +// Generated from src/main/antlr4/GobraParser.g4 by ANTLR 4.12.0 package viper.gobra.frontend; import org.antlr.v4.runtime.tree.AbstractParseTreeVisitor; @@ -362,6 +362,13 @@ public class GobraParserBaseVisitor extends AbstractParseTreeVisitor imple * {@link #visitChildren} on {@code ctx}.

*/ @Override public T visitGhostSliceType(GobraParser.GhostSliceTypeContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

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

+ */ + @Override public T visitGhostPointerType(GobraParser.GhostPointerTypeContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * diff --git a/src/main/java/viper/gobra/frontend/GobraParserVisitor.java b/src/main/java/viper/gobra/frontend/GobraParserVisitor.java index 5fa3adab8..fa3cc4ecb 100644 --- a/src/main/java/viper/gobra/frontend/GobraParserVisitor.java +++ b/src/main/java/viper/gobra/frontend/GobraParserVisitor.java @@ -1,4 +1,4 @@ -// Generated from src/main/antlr4/GobraParser.g4 by ANTLR 4.13.1 +// Generated from src/main/antlr4/GobraParser.g4 by ANTLR 4.12.0 package viper.gobra.frontend; import org.antlr.v4.runtime.tree.ParseTreeVisitor; @@ -314,6 +314,12 @@ public interface GobraParserVisitor extends ParseTreeVisitor { * @return the visitor result */ T visitGhostSliceType(GobraParser.GhostSliceTypeContext ctx); + /** + * Visit a parse tree produced by {@link GobraParser#ghostPointerType}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitGhostPointerType(GobraParser.GhostPointerTypeContext ctx); /** * Visit a parse tree produced by {@link GobraParser#sqType}. * @param ctx the parse tree diff --git a/src/main/scala/viper/gobra/ast/frontend/Ast.scala b/src/main/scala/viper/gobra/ast/frontend/Ast.scala index 3e40ac9ed..61ad66a89 100644 --- a/src/main/scala/viper/gobra/ast/frontend/Ast.scala +++ b/src/main/scala/viper/gobra/ast/frontend/Ast.scala @@ -1247,6 +1247,9 @@ case class PMathematicalMapType(keys: PType, values: PType) extends PGhostLitera /** The type of option types. */ case class POptionType(elem : PType) extends PGhostLiteralType +/** The type of ghost pointers */ +case class PGhostPointerType(elem: PType) extends PGhostLiteralType + /** The type of ADT types */ case class PAdtType(clauses: Vector[PAdtClause]) extends PGhostLiteralType with PUnorderedScope diff --git a/src/main/scala/viper/gobra/ast/frontend/PrettyPrinter.scala b/src/main/scala/viper/gobra/ast/frontend/PrettyPrinter.scala index 62cd318fe..fee1642f6 100644 --- a/src/main/scala/viper/gobra/ast/frontend/PrettyPrinter.scala +++ b/src/main/scala/viper/gobra/ast/frontend/PrettyPrinter.scala @@ -650,6 +650,7 @@ class DefaultPrettyPrinter extends PrettyPrinter with kiama.output.PrettyPrinter case PMultisetType(elem) => "mset" <> brackets(showType(elem)) case PMathematicalMapType(keys, values) => "dict" <> brackets(showType(keys)) <> showType(values) case POptionType(elem) => "option" <> brackets(showType(elem)) + case PGhostPointerType(elem) => "gpointer" <> brackets(showType(elem)) case PGhostSliceType(elem) => "ghost" <+> brackets(emptyDoc) <> showType(elem) case PDomainType(funcs, axioms) => "domain" <+> block( diff --git a/src/main/scala/viper/gobra/frontend/Desugar.scala b/src/main/scala/viper/gobra/frontend/Desugar.scala index 2dafaa58e..121590a86 100644 --- a/src/main/scala/viper/gobra/frontend/Desugar.scala +++ b/src/main/scala/viper/gobra/frontend/Desugar.scala @@ -2979,7 +2979,7 @@ object Desugar extends LazyLogging { case PIntLit(v, base) => single(in.IntLit(v, base = base)) case PBoolLit(b) => single(in.BoolLit(b)) case PStringLit(s) => single(in.StringLit(s)) - case nil: PNilLit => single(in.NilLit(typeD(info.nilType(nil).getOrElse(Type.PointerT(Type.BooleanT)), Addressability.literal)(src))) // if no type is found, then use *bool + case nil: PNilLit => single(in.NilLit(typeD(info.nilType(nil).getOrElse(Type.ActualPointerT(Type.BooleanT)), Addressability.literal)(src))) // if no type is found, then use *bool case f: PFunctionLit => registerFunctionLit(ctx, info)(f) case c: PCompositeLit => compositeLitD(ctx, info)(c) case _ => ??? @@ -3004,7 +3004,7 @@ object Desugar extends LazyLogging { // Both will have type Pointer(typeOf(v)) val src: Meta = meta(v, info) val refAlias = nm.refAlias(idName(v, info), info.scope(v), info) - val param = in.Parameter.In(refAlias, typeD(PointerT(info.typ(v)), Addressability.inParameter)(src))(src) + val param = in.Parameter.In(refAlias, typeD(ActualPointerT(info.typ(v)), Addressability.inParameter)(src))(src) val localVar = in.LocalVar(nm.alias(refAlias, info.scope(v), info), param.typ)(src) (param, localVar) } @@ -3750,7 +3750,7 @@ object Desugar extends LazyLogging { in.MapT(keysD, valuesD, addrMod) case Type.GhostSliceT(elem) => in.SliceT(typeD(elem, Addressability.sliceElement)(src), addrMod) case Type.OptionT(elem) => in.OptionT(typeD(elem, Addressability.mathDataStructureElement)(src), addrMod) - case PointerT(elem) => registerType(in.PointerT(typeD(elem, Addressability.pointerBase)(src), addrMod)) + case p: Type.PointerT => registerType(in.PointerT(typeD(p.elem, Addressability.pointerBase)(src), addrMod)) case Type.ChannelT(elem, _) => in.ChannelT(typeD(elem, Addressability.channelElement)(src), addrMod) case Type.SequenceT(elem) => in.SequenceT(typeD(elem, Addressability.mathDataStructureElement)(src), addrMod) case Type.SetT(elem) => in.SetT(typeD(elem, Addressability.mathDataStructureElement)(src), addrMod) diff --git a/src/main/scala/viper/gobra/frontend/ParseTreeTranslator.scala b/src/main/scala/viper/gobra/frontend/ParseTreeTranslator.scala index ff64e3de1..9ec87c744 100644 --- a/src/main/scala/viper/gobra/frontend/ParseTreeTranslator.scala +++ b/src/main/scala/viper/gobra/frontend/ParseTreeTranslator.scala @@ -500,6 +500,17 @@ class ParseTreeTranslator(pom: PositionManager, source: Source, specOnly : Boole PGhostSliceType(typ).at(ctx) } + /** + * {@inheritDoc } + * + *

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

+ */ + override def visitGhostPointerType(ctx: GhostPointerTypeContext): PGhostPointerType = { + val typ = visitNode[PType](ctx.elementType().type_()) + PGhostPointerType(typ).at(ctx) + } + /** * {@inheritDoc } * diff --git a/src/main/scala/viper/gobra/frontend/info/base/Type.scala b/src/main/scala/viper/gobra/frontend/info/base/Type.scala index 66cb0fa49..59d2b7465 100644 --- a/src/main/scala/viper/gobra/frontend/info/base/Type.scala +++ b/src/main/scala/viper/gobra/frontend/info/base/Type.scala @@ -74,7 +74,13 @@ object Type { case class MapT(key: Type, elem: Type) extends PrettyType(s"map[$key]$elem") - case class PointerT(elem: Type) extends PrettyType(s"*$elem") + trait PointerT { + val elem: Type + } + + case class ActualPointerT(elem: Type) extends PrettyType(s"*$elem") with PointerT + + case class GhostPointerT(elem: Type) extends PrettyType(s"gpointer[$elem]") with PointerT case class ChannelT(elem: Type, mod: ChannelModus) extends PrettyType(s"$mod $elem") diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/property/Assignability.scala b/src/main/scala/viper/gobra/frontend/info/implementation/property/Assignability.scala index f414d92fe..1b9611b36 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/property/Assignability.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/property/Assignability.scala @@ -110,7 +110,14 @@ trait Assignability extends BaseProperty { this: TypeInfoImpl => case e => s"got $e that is not assignable" } { case e if !isMutable(e) => false - case e: PDeref if isEnclosingGhost(e) => false // TODO allow derefs of ghost pointers + case e: PDeref if isEnclosingGhost(e) => + resolve(e) match { + case Some(ap.Deref(base)) => exprType(base) match { + case _: GhostPointerT => true // we dereference a ghost pointer in ghost code + case _ => false + } + case _ => false + } case PIndexedExp(b, _) => underlyingType(exprType(b)) match { case _: ArrayT => assignable(b) case _: SliceT | _: GhostSliceT => assignable(b) diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/property/Convertibility.scala b/src/main/scala/viper/gobra/frontend/info/implementation/property/Convertibility.scala index 6352cbd6b..4d2704ca9 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/property/Convertibility.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/property/Convertibility.scala @@ -6,7 +6,7 @@ package viper.gobra.frontend.info.implementation.property -import viper.gobra.frontend.info.base.Type.{DeclaredT, Float32T, Float64T, IntT, PermissionT, PointerT, Single, SliceT, StringT, Type} +import viper.gobra.frontend.info.base.Type.{ActualPointerT, DeclaredT, Float32T, Float64T, GhostPointerT, IntT, PermissionT, Single, SliceT, StringT, Type} import viper.gobra.frontend.info.implementation.TypeInfoImpl trait Convertibility extends BaseProperty { this: TypeInfoImpl => @@ -29,7 +29,9 @@ trait Convertibility extends BaseProperty { this: TypeInfoImpl => case (left, right) => (underlyingType(left), underlyingType(right)) match { case (l, r) if identicalTypes(l, r) => true case (IntT(_), IntT(_)) => true - case (PointerT(l), PointerT(r)) if identicalTypes(underlyingType(l), underlyingType(r)) && + case (ActualPointerT(l), ActualPointerT(r)) if identicalTypes(underlyingType(l), underlyingType(r)) && + !(left.isInstanceOf[DeclaredT] && right.isInstanceOf[DeclaredT]) => true + case (GhostPointerT(l), GhostPointerT(r)) if identicalTypes(underlyingType(l), underlyingType(r)) && !(left.isInstanceOf[DeclaredT] && right.isInstanceOf[DeclaredT]) => true case _ => false } diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/property/TypeIdentity.scala b/src/main/scala/viper/gobra/frontend/info/implementation/property/TypeIdentity.scala index e8a3c564a..4a01fe2b1 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/property/TypeIdentity.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/property/TypeIdentity.scala @@ -51,7 +51,8 @@ trait TypeIdentity extends BaseProperty { this: TypeInfoImpl => lm.keySet.forall(k => rm.get(k).exists(m => identicalTypes(memberType(m), memberType(lm(k))))) && rm.keySet.forall(k => lm.get(k).exists(m => identicalTypes(memberType(m), memberType(rm(k))))) - case (PointerT(l), PointerT(r)) => identicalTypes(l, r) + case (ActualPointerT(l), ActualPointerT(r)) => identicalTypes(l, r) + case (GhostPointerT(l), GhostPointerT(r)) => identicalTypes(l, r) case (SortT, SortT) => true diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/property/TypeMerging.scala b/src/main/scala/viper/gobra/frontend/info/implementation/property/TypeMerging.scala index b78a0ecda..5edaae0ec 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/property/TypeMerging.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/property/TypeMerging.scala @@ -7,7 +7,7 @@ package viper.gobra.frontend.info.implementation.property import viper.gobra.ast.internal.{Float32T, Float64T} -import viper.gobra.frontend.info.base.Type.{ArrayT, AssertionT, BooleanT, ChannelT, GhostSliceT, IntT, InternalTupleT, MapT, MultisetT, PermissionT, PointerT, SequenceT, SetT, Single, SliceT, Type} +import viper.gobra.frontend.info.base.Type.{ActualPointerT, ArrayT, AssertionT, BooleanT, ChannelT, GhostPointerT, GhostSliceT, IntT, InternalTupleT, MapT, MultisetT, PermissionT, SequenceT, SetT, Single, SliceT, Type} import viper.gobra.frontend.info.implementation.TypeInfoImpl trait TypeMerging extends BaseProperty { this: TypeInfoImpl => @@ -45,7 +45,8 @@ trait TypeMerging extends BaseProperty { this: TypeInfoImpl => k <- typeMerge(k1, k2) v <- typeMerge(v1, v2) } yield MapT(k, v) - case (PointerT(l), PointerT(r)) => typeMerge(l, r) map PointerT + case (ActualPointerT(l), ActualPointerT(r)) => typeMerge(l, r) map ActualPointerT + case (GhostPointerT(l), GhostPointerT(r)) => typeMerge(l, r) map GhostPointerT case (ChannelT(l, mod1), ChannelT(r, mod2)) if mod1 == mod2 => typeMerge(l, r) map (ChannelT(_, mod1)) case _ => None } diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/property/UnderlyingType.scala b/src/main/scala/viper/gobra/frontend/info/implementation/property/UnderlyingType.scala index d9c47981b..6131c6548 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/property/UnderlyingType.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/property/UnderlyingType.scala @@ -9,7 +9,7 @@ package viper.gobra.frontend.info.implementation.property import viper.gobra.ast.frontend.{PDeref, PDot, PEmbeddedName, PEmbeddedPointer, PEmbeddedType, PInterfaceType, PNamedOperand, PStructType, PType, PTypeDecl} import viper.gobra.frontend.info.ExternalTypeInfo import viper.gobra.frontend.info.base.BuiltInMemberTag.BuiltInTypeTag -import viper.gobra.frontend.info.base.Type.{BooleanT, ChannelT, DeclaredT, FunctionT, GhostSliceT, IntT, InterfaceT, MapT, NilType, PointerT, Single, SliceT, StringT, StructT, Type} +import viper.gobra.frontend.info.base.Type.{ActualPointerT, BooleanT, ChannelT, DeclaredT, FunctionT, GhostSliceT, IntT, InterfaceT, MapT, NilType, PointerT, Single, SliceT, StringT, StructT, Type} import viper.gobra.frontend.info.base.{SymbolTable => st} import viper.gobra.frontend.info.implementation.TypeInfoImpl @@ -65,7 +65,7 @@ trait UnderlyingType { this: TypeInfoImpl => lazy val derefType: Type => Option[Type] = attr[Type, Option[Type]] { case Single(DeclaredT(t: PTypeDecl, context: ExternalTypeInfo)) => derefType(context.symbType(t.right)) - case Single(PointerT(elem)) => Some(elem) + case Single(p: PointerT) => Some(p.elem) case _ => None } @@ -200,7 +200,7 @@ trait UnderlyingType { this: TypeInfoImpl => lazy val isReceiverType: Property[Type] = createBinaryProperty("not a receiver type") { case _: DeclaredT => true - case PointerT(t) => t.isInstanceOf[DeclaredT] + case ActualPointerT(t) => t.isInstanceOf[DeclaredT] case _ => false } diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/resolution/MemberResolution.scala b/src/main/scala/viper/gobra/frontend/info/implementation/resolution/MemberResolution.scala index 238158abf..c2544cd28 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/resolution/MemberResolution.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/resolution/MemberResolution.scala @@ -50,7 +50,7 @@ trait MemberResolution { this: TypeInfoImpl => def go(pastDeref: Boolean): Type => AdvancedMemberSet[StructMember] = attr[Type, AdvancedMemberSet[StructMember]] { case DeclaredT(decl, context) => go(pastDeref)(context.symbType(decl.right)).surface - case PointerT(t) if !pastDeref => go(pastDeref = true)(t).ref + case ActualPointerT(t) if !pastDeref => go(pastDeref = true)(t).ref case s: StructT => val (es, fs) = (s.decl.embedded, s.decl.fields) @@ -86,7 +86,7 @@ trait MemberResolution { this: TypeInfoImpl => def go(pastDeref: Boolean): Type => AdvancedMemberSet[AdtMember] = attr[Type, AdvancedMemberSet[AdtMember]] { case DeclaredT(decl, context) => go(pastDeref)(context.symbType(decl.right)).surface - case PointerT(t) if !pastDeref => go(pastDeref = true)(t).ref + case ActualPointerT(t) if !pastDeref => go(pastDeref = true)(t).ref case t: AdtT => val clauseMemberSets = t.adtDecl.clauses.map(adtClauseMemberSet(_, t.decl, t.adtDecl, t.context)) @@ -225,7 +225,7 @@ trait MemberResolution { this: TypeInfoImpl => def go(pastDeref: Boolean): Type => AdvancedMemberSet[M] = attr[Type, AdvancedMemberSet[M]] { case DeclaredT(decl, context) => go(pastDeref)(context.symbType(decl.right)).surface - case PointerT(t) if !pastDeref => go(pastDeref = true)(t).ref + case ActualPointerT(t) if !pastDeref => go(pastDeref = true)(t).ref case s: StructT => AdvancedMemberSet.union(s.decl.embedded map { e => @@ -246,15 +246,15 @@ trait MemberResolution { this: TypeInfoImpl => private val pastPromotionsMethodSuffix: Type => AdvancedMemberSet[TypeMember] = attr[Type, AdvancedMemberSet[TypeMember]] { case t: InterfaceT => interfaceMethodSet(t) - case pt@PointerT(t) => receiverSet(pt) union receiverSet(t).ref - case t => receiverSet(t) union receiverSet(PointerT(t)).deref + case pt@ActualPointerT(t) => receiverSet(pt) union receiverSet(t).ref + case t => receiverSet(t) union receiverSet(ActualPointerT(t)).deref } val nonAddressableMethodSet: Type => AdvancedMemberSet[TypeMember] = attr[Type, AdvancedMemberSet[TypeMember]] { case Single(t) => pastPromotions(pastPromotionsMethodSuffix)(t) union (t match { - case pt@ PointerT(st) => receiverSet(pt) union receiverSet(st).ref + case pt@ ActualPointerT(st) => receiverSet(pt) union receiverSet(st).ref case _ => receiverSet(t) }) case _ => AdvancedMemberSet.empty @@ -264,8 +264,8 @@ trait MemberResolution { this: TypeInfoImpl => attr[Type, AdvancedMemberSet[TypeMember]] { case Single(t) => pastPromotions(pastPromotionsMethodSuffix)(t) union (t match { - case pt@ PointerT(st) => receiverSet(pt) union receiverSet(st).ref - case _ => receiverSet(t) union receiverSet(PointerT(t)).deref + case pt@ ActualPointerT(st) => receiverSet(pt) union receiverSet(st).ref + case _ => receiverSet(t) union receiverSet(ActualPointerT(t)).deref }) case _ => AdvancedMemberSet.empty } @@ -317,7 +317,7 @@ trait MemberResolution { this: TypeInfoImpl => private def getMethodReceiverContext(t: Type): ExternalTypeInfo = { Single.unapply(t) match { case Some(ct: ContextualType) => ct.context - case Some(p: PointerT) => getMethodReceiverContext(p.elem) + case Some(p: ActualPointerT) => getMethodReceiverContext(p.elem) case _ => this } } diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ExprTyping.scala b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ExprTyping.scala index 0bf0223f1..ac155d5e7 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ExprTyping.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ExprTyping.scala @@ -43,7 +43,7 @@ trait ExprTyping extends BaseTyping { this: TypeInfoImpl => resolve(n) match { case Some(p: ap.Deref) => exprType(p.base) match { - case Single(PointerT(_)) => noMessages + case Single(_: PointerT) => noMessages case t => error(n, s"expected pointer type but got $t") } @@ -101,7 +101,7 @@ trait ExprTyping extends BaseTyping { this: TypeInfoImpl => resolve(n) match { case Some(p: ap.Deref) => exprType(p.base) match { - case Single(PointerT(t)) => t + case Single(p: PointerT) => p.elem case t => violation(s"expected pointer but got $t") } case Some(_: ap.PointerType) => SortT @@ -324,7 +324,7 @@ trait ExprTyping extends BaseTyping { this: TypeInfoImpl => val idxOpt = intConstantEval(index) error(n, s"index $index is out of bounds", !idxOpt.forall(i => i >= 0 && i < l)) - case (PointerT(ArrayT(l, _)), IntT(_)) => + case (ActualPointerT(ArrayT(l, _)), IntT(_)) => val idxOpt = intConstantEval(index) error(n, s"index $index is out of bounds", !idxOpt.forall(i => i >= 0 && i < l)) @@ -390,7 +390,7 @@ trait ExprTyping extends BaseTyping { this: TypeInfoImpl => error(cap, "sequence slice expressions do not allow specifying a capacity", capT.isDefined) } - case (PointerT(ArrayT(l, _)), None | Some(IntT(_)), None | Some(IntT(_)), None | Some(IntT(_))) => + case (ActualPointerT(ArrayT(l, _)), None | Some(IntT(_)), None | Some(IntT(_)), None | Some(IntT(_))) => val (lowOpt, highOpt, capOpt) = (low map intConstantEval, high map intConstantEval, cap map intConstantEval) error(n, s"index $low is out of bounds", !lowOpt.forall(_.forall(i => i >= 0 && i < l))) ++ error(n, s"index $high is out of bounds", !highOpt.forall(_.forall(i => i >= 0 && i < l))) ++ @@ -689,7 +689,7 @@ trait ExprTyping extends BaseTyping { this: TypeInfoImpl => (underlyingType(baseType), underlyingType(idxType)) match { case (Single(base), Single(idx)) => (base, idx) match { case (ArrayT(_, elem), IntT(_)) => elem - case (PointerT(ArrayT(_, elem)), IntT(_)) => elem + case (ActualPointerT(ArrayT(_, elem)), IntT(_)) => elem case (SequenceT(elem), IntT(_)) => elem case (SliceT(elem), IntT(_)) => elem case (GhostSliceT(elem), IntT(_)) => elem @@ -707,7 +707,7 @@ trait ExprTyping extends BaseTyping { this: TypeInfoImpl => val baseType = exprType(base) (underlyingType(baseType), low map exprType, high map exprType, cap map exprType) match { case (ArrayT(_, elem), None | Some(IntT(_)), None | Some(IntT(_)), None | Some(IntT(_))) if addressable(base) => SliceT(elem) - case (PointerT(ArrayT(_, elem)), None | Some(IntT(_)), None | Some(IntT(_)), None | Some(IntT(_))) => SliceT(elem) + case (ActualPointerT(ArrayT(_, elem)), None | Some(IntT(_)), None | Some(IntT(_)), None | Some(IntT(_))) => SliceT(elem) case (SequenceT(_), None | Some(IntT(_)), None | Some(IntT(_)), None) => baseType case (SliceT(_), None | Some(IntT(_)), None | Some(IntT(_)), None | Some(IntT(_))) => baseType case (GhostSliceT(_), None | Some(IntT(_)), None | Some(IntT(_)), None | Some(IntT(_))) => baseType @@ -725,7 +725,7 @@ trait ExprTyping extends BaseTyping { this: TypeInfoImpl => case t => violation(s"expected receive-permitting channel but got $t") } - case PReference(exp) if effAddressable(exp) => PointerT(exprType(exp)) + case r@ PReference(exp) if effAddressable(exp) => if (isEnclosingGhost(r)) GhostPointerT(exprType(exp)) else ActualPointerT(exprType(exp)) case n: PAnd => // is boolean if left and right argument are boolean, otherwise is an assertion val lt = exprType(n.left) @@ -750,7 +750,7 @@ trait ExprTyping extends BaseTyping { this: TypeInfoImpl => case b: PBlankIdentifier => getBlankIdType(b) - case PNew(typ) => PointerT(typeSymbType(typ)) + case n: PNew => if (isEnclosingGhost(n)) GhostPointerT(typeSymbType(n.typ)) else ActualPointerT(typeSymbType(n.typ)) case PMake(typ, _) => typeSymbType(typ) diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/typing/MiscTyping.scala b/src/main/scala/viper/gobra/frontend/info/implementation/typing/MiscTyping.scala index 059966248..9056bd3ba 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/typing/MiscTyping.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/typing/MiscTyping.scala @@ -25,8 +25,8 @@ trait MiscTyping extends BaseTyping { this: TypeInfoImpl => private[typing] def wellDefActualMisc(misc: PActualMisc): Messages = misc match { case n@PRange(exp, _) => isExpr(exp).out ++ (underlyingType(exprType(exp)) match { - case _: ArrayT | PointerT(_: ArrayT) | _: SliceT | _: GhostSliceT | _: MapT | - ChannelT(_, ChannelModus.Recv | ChannelModus.Bi) => noMessages + case _: ArrayT | ActualPointerT(_: ArrayT) | _: SliceT | _: GhostSliceT | _: MapT | + ChannelT(_, ChannelModus.Recv | ChannelModus.Bi) => noMessages case t => message(n, s"type error: got $t but expected rangeable type") }) @@ -52,7 +52,7 @@ trait MiscTyping extends BaseTyping { this: TypeInfoImpl => case PRange(exp, _) => underlyingType(exprType(exp)) match { case ArrayT(_, elem) => InternalSingleMulti(IntT(config.typeBounds.Int), InternalTupleT(Vector(IntT(config.typeBounds.Int), elem))) - case PointerT(ArrayT(_, elem)) => InternalSingleMulti(IntT(config.typeBounds.Int), InternalTupleT(Vector(IntT(config.typeBounds.Int), elem))) + case ActualPointerT(ArrayT(_, elem)) => InternalSingleMulti(IntT(config.typeBounds.Int), InternalTupleT(Vector(IntT(config.typeBounds.Int), elem))) case SliceT(elem) => InternalSingleMulti(IntT(config.typeBounds.Int), InternalTupleT(Vector(IntT(config.typeBounds.Int), elem))) case GhostSliceT(elem) => InternalSingleMulti(IntT(config.typeBounds.Int), InternalTupleT(Vector(IntT(config.typeBounds.Int), elem))) case MapT(key, elem) => InternalSingleMulti(key, InternalTupleT(Vector(key, elem))) @@ -68,7 +68,7 @@ trait MiscTyping extends BaseTyping { this: TypeInfoImpl => case PClosureDecl(args, res, _, _) => FunctionT(args.map(typ), miscType(res)) case PEmbeddedName(t) => typeSymbType(t) - case PEmbeddedPointer(t) => PointerT(typeSymbType(t)) + case PEmbeddedPointer(t) => ActualPointerT(typeSymbType(t)) case l: PLiteralValue => expectedMiscType(l) case l: PKeyedElement => miscType(l.exp) diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/typing/TypeTyping.scala b/src/main/scala/viper/gobra/frontend/info/implementation/typing/TypeTyping.scala index 993be91a3..a583e23af 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/typing/TypeTyping.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/typing/TypeTyping.scala @@ -130,7 +130,7 @@ trait TypeTyping extends BaseTyping { this: TypeInfoImpl => case PMethodReceiveName(t) => typeSymbType(t) - case PMethodReceivePointer(t) => PointerT(typeSymbType(t)) + case PMethodReceivePointer(t) => ActualPointerT(typeSymbType(t)) case PFunctionType(args, r) => FunctionT(args map miscType, miscType(r)) @@ -145,7 +145,8 @@ trait TypeTyping extends BaseTyping { this: TypeInfoImpl => case n: PDeref => resolve(n) match { - case Some(p: ap.PointerType) => PointerT(typeSymbType(p.base)) + // since we have special syntax for ghost pointer types, `*T` always resolves to an actual pointer type + case Some(p: ap.PointerType) => ActualPointerT(typeSymbType(p.base)) case _ => violation(s"expected type, but got $n") } diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/GhostTypeTyping.scala b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/GhostTypeTyping.scala index fca06a828..3ef5392cc 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/GhostTypeTyping.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/GhostTypeTyping.scala @@ -21,6 +21,7 @@ trait GhostTypeTyping extends BaseTyping { this : TypeInfoImpl => case PMultisetType(elem) => isType(elem).out case PMathematicalMapType(key, value) => isType(key).out ++ isType(value).out case POptionType(elem) => isType(elem).out + case PGhostPointerType(elem) => isType(elem).out case n: PGhostSliceType => isType(n.elem).out case _: PDomainType => noMessages @@ -39,6 +40,7 @@ trait GhostTypeTyping extends BaseTyping { this : TypeInfoImpl => case PMultisetType(elem) => MultisetT(typeSymbType(elem)) case PMathematicalMapType(keys, values) => MathMapT(typeSymbType(keys), typeSymbType(values)) case POptionType(elem) => OptionT(typeSymbType(elem)) + case PGhostPointerType(elem) => GhostPointerT(typeSymbType(elem)) case PGhostSliceType(elem) => GhostSliceT(typeSymbType(elem)) case t: PDomainType => DomainT(t, this) case a: PAdtType => adtSymbType(a) diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostWellDef.scala b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostWellDef.scala index c6db45808..9ccf6492b 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostWellDef.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostWellDef.scala @@ -11,6 +11,8 @@ import viper.gobra.ast.frontend._ import viper.gobra.frontend.info.implementation.TypeInfoImpl import viper.gobra.ast.frontend.{AstPattern => ap} import viper.gobra.frontend.info.base.SymbolTable.{Closure, Function, Regular, SingleLocalVariable} +import viper.gobra.frontend.info.base.Type.GhostPointerT +import viper.gobra.util.Violation import viper.gobra.util.Violation.violation trait GhostWellDef { this: TypeInfoImpl => @@ -100,7 +102,10 @@ trait GhostWellDef { this: TypeInfoImpl => case e if enclosingGhostContext(e) => e match { case PMake(_: PGhostSliceType, _) => noMessages - case _: PMake | _: PNew | PReference(_: PCompositeLit) => error(e, "Allocating memory within ghost code is forbidden") + case _: PMake => error(e, "Allocating memory within ghost code is forbidden") + case _: PNew | PReference(_: PCompositeLit) => + Violation.violation(exprType(e).isInstanceOf[GhostPointerT], s"All memory allocated within ghost code must be located on the ghost heap") + noMessages case _ => noMessages } diff --git a/src/test/resources/regressions/features/ghost_pointer/ghost-fields-fail01.gobra b/src/test/resources/regressions/features/ghost_pointer/ghost-fields-fail01.gobra new file mode 100644 index 000000000..d982e742e --- /dev/null +++ b/src/test/resources/regressions/features/ghost_pointer/ghost-fields-fail01.gobra @@ -0,0 +1,9 @@ +package GhostFieldsFail01 + +type Test struct { + IntField int + PIntField *int + // since gpointer is a ghost type, it can only be used as a type for a ghost instead of actual struct field + //:: ExpectedOutput(type_error) + GPIntField gpointer[int] +} diff --git a/src/test/resources/regressions/features/ghost_pointer/ghost-read-fail01.gobra b/src/test/resources/regressions/features/ghost_pointer/ghost-read-fail01.gobra new file mode 100644 index 000000000..c397266b6 --- /dev/null +++ b/src/test/resources/regressions/features/ghost_pointer/ghost-read-fail01.gobra @@ -0,0 +1,12 @@ +package GhostReadFail01 + +// x is a pointer to a location on the ghost heap +// thus, reading it results in a ghost value, which +// cannot be assigned to an actual program variable. + +decreases +requires acc(x) +func actualReadFunc(ghost x gpointer[int]) int { + //:: ExpectedOutput(type_error) + return *x +} diff --git a/src/test/resources/regressions/features/ghost_pointer/ghost-reference-simple01.gobra b/src/test/resources/regressions/features/ghost_pointer/ghost-reference-simple01.gobra new file mode 100644 index 000000000..09b6d32e1 --- /dev/null +++ b/src/test/resources/regressions/features/ghost_pointer/ghost-reference-simple01.gobra @@ -0,0 +1,22 @@ +package GhostReferenceSimple01 + +type Test struct { + field int +} + +ghost +decreases +ensures acc(x) +func GhostFunc() (x gpointer[Test]) { + x = &Test{ 42 } + //:: ExpectedOutput(assert.failed:assertion.false) + assert false +} + +decreases +ensures acc(x) +func ActualFunc() (x *Test) { + x = &Test{ 42 } + //:: ExpectedOutput(assert.failed:assertion.false) + assert false +} diff --git a/src/test/resources/regressions/features/ghost_pointer/ghost-write-simple01.gobra b/src/test/resources/regressions/features/ghost_pointer/ghost-write-simple01.gobra new file mode 100644 index 000000000..45e4089c0 --- /dev/null +++ b/src/test/resources/regressions/features/ghost_pointer/ghost-write-simple01.gobra @@ -0,0 +1,33 @@ +package GhostWriteSimple01 + +// x is a pointer to a location on the ghost heap +// thus, writing in ghost code is forbidden as effects +// are observable (via aliasing). + +ghost +decreases +requires acc(x) +func ghostWriteFunc(x gpointer[int]) { + *x = 42 + //:: ExpectedOutput(assert.failed:assertion.false) + assert false +} + +decreases +requires acc(x) +func actualWriteFunc(ghost x gpointer[int]) { + *x = 42 +} + +ghost +decreases +requires acc(x) +func ghostReadFunc(x gpointer[int]) int { + return *x +} + +decreases +requires acc(x) +func actualReadFunc(ghost x gpointer[int]) (ghost res int) { + return *x +} diff --git a/src/test/resources/regressions/features/ghost_pointer/pointer-creation-fail01.gobra b/src/test/resources/regressions/features/ghost_pointer/pointer-creation-fail01.gobra new file mode 100644 index 000000000..51ba55a00 --- /dev/null +++ b/src/test/resources/regressions/features/ghost_pointer/pointer-creation-fail01.gobra @@ -0,0 +1,30 @@ +package PointerCreationFail01 + +// Pointers created in actual code are pointers to locations on the actual heap. +// Pointers created in ghost code are pointers to locations on the ghost heap. + +ghost +decreases +func GhostFunc() (x *int) { + // ghost pointer is not assignable to an actual pointer + //:: ExpectedOutput(type_error) + x = new(int) +} + +decreases +func ActualFunc() { + var x *int + + // gpointer is a ghost type which cannot be used for actual variables: + //:: ExpectedOutput(type_error) + var y gpointer[int] + + ghost var z gpointer[int] + + // ghost pointer is not assignable to an actual pointer + //:: ExpectedOutput(type_error) + ghost x = new(int) + + // actual pointer is not assignable to a ghost pointer: + z = new(int) +} diff --git a/src/test/resources/regressions/features/ghost_pointer/pointer-creation-simple01.gobra b/src/test/resources/regressions/features/ghost_pointer/pointer-creation-simple01.gobra new file mode 100644 index 000000000..591809176 --- /dev/null +++ b/src/test/resources/regressions/features/ghost_pointer/pointer-creation-simple01.gobra @@ -0,0 +1,21 @@ +package PointerCreationSimple01 + +// Pointers created in actual code are pointers to locations on the actual heap. +// Pointers created in ghost code are pointers to locations on the ghost heap. + +ghost +decreases +ensures acc(x) +func GhostFunc() (x gpointer[int]) { + x = new(int) + //:: ExpectedOutput(assert.failed:assertion.false) + assert false +} + +decreases +ensures acc(x) +func ActualFunc() (x *int) { + x = new(int) + //:: ExpectedOutput(assert.failed:assertion.false) + assert false +} From 174f9557f72552a6f7360476107a6dc271310729 Mon Sep 17 00:00:00 2001 From: Linard Arquint Date: Wed, 20 Mar 2024 18:24:41 +0100 Subject: [PATCH 03/16] adds license headers --- .../features/ghost_pointer/ghost-fields-fail01.gobra | 3 +++ .../regressions/features/ghost_pointer/ghost-read-fail01.gobra | 3 +++ .../features/ghost_pointer/ghost-reference-simple01.gobra | 3 +++ .../features/ghost_pointer/ghost-write-fail01.gobra | 3 +++ .../features/ghost_pointer/ghost-write-simple01.gobra | 3 +++ .../features/ghost_pointer/pointer-creation-fail01.gobra | 3 +++ .../features/ghost_pointer/pointer-creation-simple01.gobra | 3 +++ 7 files changed, 21 insertions(+) diff --git a/src/test/resources/regressions/features/ghost_pointer/ghost-fields-fail01.gobra b/src/test/resources/regressions/features/ghost_pointer/ghost-fields-fail01.gobra index d982e742e..b9337cf79 100644 --- a/src/test/resources/regressions/features/ghost_pointer/ghost-fields-fail01.gobra +++ b/src/test/resources/regressions/features/ghost_pointer/ghost-fields-fail01.gobra @@ -1,3 +1,6 @@ +// Any copyright is dedicated to the Public Domain. +// http://creativecommons.org/publicdomain/zero/1.0/ + package GhostFieldsFail01 type Test struct { diff --git a/src/test/resources/regressions/features/ghost_pointer/ghost-read-fail01.gobra b/src/test/resources/regressions/features/ghost_pointer/ghost-read-fail01.gobra index c397266b6..ab6797201 100644 --- a/src/test/resources/regressions/features/ghost_pointer/ghost-read-fail01.gobra +++ b/src/test/resources/regressions/features/ghost_pointer/ghost-read-fail01.gobra @@ -1,3 +1,6 @@ +// Any copyright is dedicated to the Public Domain. +// http://creativecommons.org/publicdomain/zero/1.0/ + package GhostReadFail01 // x is a pointer to a location on the ghost heap diff --git a/src/test/resources/regressions/features/ghost_pointer/ghost-reference-simple01.gobra b/src/test/resources/regressions/features/ghost_pointer/ghost-reference-simple01.gobra index 09b6d32e1..93b168671 100644 --- a/src/test/resources/regressions/features/ghost_pointer/ghost-reference-simple01.gobra +++ b/src/test/resources/regressions/features/ghost_pointer/ghost-reference-simple01.gobra @@ -1,3 +1,6 @@ +// Any copyright is dedicated to the Public Domain. +// http://creativecommons.org/publicdomain/zero/1.0/ + package GhostReferenceSimple01 type Test struct { diff --git a/src/test/resources/regressions/features/ghost_pointer/ghost-write-fail01.gobra b/src/test/resources/regressions/features/ghost_pointer/ghost-write-fail01.gobra index 590dd9623..6c810b49b 100644 --- a/src/test/resources/regressions/features/ghost_pointer/ghost-write-fail01.gobra +++ b/src/test/resources/regressions/features/ghost_pointer/ghost-write-fail01.gobra @@ -1,3 +1,6 @@ +// Any copyright is dedicated to the Public Domain. +// http://creativecommons.org/publicdomain/zero/1.0/ + package GhostWriteFail01 // x is a pointer to a location on the actual heap diff --git a/src/test/resources/regressions/features/ghost_pointer/ghost-write-simple01.gobra b/src/test/resources/regressions/features/ghost_pointer/ghost-write-simple01.gobra index 45e4089c0..e198bd904 100644 --- a/src/test/resources/regressions/features/ghost_pointer/ghost-write-simple01.gobra +++ b/src/test/resources/regressions/features/ghost_pointer/ghost-write-simple01.gobra @@ -1,3 +1,6 @@ +// Any copyright is dedicated to the Public Domain. +// http://creativecommons.org/publicdomain/zero/1.0/ + package GhostWriteSimple01 // x is a pointer to a location on the ghost heap diff --git a/src/test/resources/regressions/features/ghost_pointer/pointer-creation-fail01.gobra b/src/test/resources/regressions/features/ghost_pointer/pointer-creation-fail01.gobra index 51ba55a00..d7a4f41e7 100644 --- a/src/test/resources/regressions/features/ghost_pointer/pointer-creation-fail01.gobra +++ b/src/test/resources/regressions/features/ghost_pointer/pointer-creation-fail01.gobra @@ -1,3 +1,6 @@ +// Any copyright is dedicated to the Public Domain. +// http://creativecommons.org/publicdomain/zero/1.0/ + package PointerCreationFail01 // Pointers created in actual code are pointers to locations on the actual heap. diff --git a/src/test/resources/regressions/features/ghost_pointer/pointer-creation-simple01.gobra b/src/test/resources/regressions/features/ghost_pointer/pointer-creation-simple01.gobra index 591809176..ac04b6030 100644 --- a/src/test/resources/regressions/features/ghost_pointer/pointer-creation-simple01.gobra +++ b/src/test/resources/regressions/features/ghost_pointer/pointer-creation-simple01.gobra @@ -1,3 +1,6 @@ +// Any copyright is dedicated to the Public Domain. +// http://creativecommons.org/publicdomain/zero/1.0/ + package PointerCreationSimple01 // Pointers created in actual code are pointers to locations on the actual heap. From a0c65dffa98b2166c4f3a1ed8e23bcdfb8eb82c4 Mon Sep 17 00:00:00 2001 From: Linard Arquint Date: Fri, 22 Mar 2024 09:20:06 +0100 Subject: [PATCH 04/16] fixes references to consider the ghostness of the memory instead of ghostness of the program location and adapts test cases --- .../scala/viper/gobra/ast/frontend/Ast.scala | 8 +++- .../gobra/ast/frontend/PrettyPrinter.scala | 5 ++- .../scala/viper/gobra/frontend/Desugar.scala | 2 +- .../gobra/frontend/ParseTreeTranslator.scala | 3 +- .../viper/gobra/frontend/info/base/Type.scala | 2 +- .../property/Assignability.scala | 8 ---- .../resolution/MemberResolution.scala | 2 +- .../resolution/NameResolution.scala | 2 +- .../implementation/typing/ExprTyping.scala | 4 +- .../implementation/typing/TypeTyping.scala | 5 ++- .../ghost/separation/GhostAssignability.scala | 19 +++++--- .../ghost/separation/GhostClassifier.scala | 2 + .../typing/ghost/separation/GhostTyping.scala | 45 ++++++++++++++++--- .../ghost/separation/GhostWellDef.scala | 20 ++++----- .../evaluation/impl_errors/parallel_sum.gobra | 2 +- .../examples/evaluation/parallel_sum.gobra | 2 +- .../evaluation/spec_errors/parallel_sum.gobra | 2 +- .../regressions/examples/tour/Test4.gobra | 1 + .../ghost_pointer/ghost-read-fail01.gobra | 5 ++- .../ghost-reference-fail01.gobra | 10 +++++ .../ghost-reference-fail02.gobra | 27 +++++++++++ .../ghost-reference-simple01.gobra | 10 ++++- .../ghost_pointer/ghost-write-simple01.gobra | 2 +- .../pointer-creation-fail01.gobra | 1 + .../pointer-creation-simple01.gobra | 4 +- .../features/labels/ghost-label.gobra | 29 ++++++++++++ .../regressions/features/wands/list.gobra | 3 +- .../resources/regressions/issues/000039.gobra | 3 +- 28 files changed, 176 insertions(+), 52 deletions(-) create mode 100644 src/test/resources/regressions/features/ghost_pointer/ghost-reference-fail01.gobra create mode 100644 src/test/resources/regressions/features/ghost_pointer/ghost-reference-fail02.gobra create mode 100644 src/test/resources/regressions/features/labels/ghost-label.gobra diff --git a/src/main/scala/viper/gobra/ast/frontend/Ast.scala b/src/main/scala/viper/gobra/ast/frontend/Ast.scala index 61ad66a89..bf8fa8038 100644 --- a/src/main/scala/viper/gobra/ast/frontend/Ast.scala +++ b/src/main/scala/viper/gobra/ast/frontend/Ast.scala @@ -737,7 +737,13 @@ sealed trait PMethodRecvType extends PActualType { // TODO: will have to be remo case class PMethodReceiveName(typ: PNamedOperand) extends PMethodRecvType -case class PMethodReceivePointer(typ: PNamedOperand) extends PMethodRecvType +trait PMethodReceivePointer extends PMethodRecvType { + def typ: PNamedOperand +} + +case class PMethodReceiveActualPointer(typ: PNamedOperand) extends PMethodReceivePointer + +case class PMethodReceiveGhostPointer(typ: PNamedOperand) extends PMethodReceivePointer with PGhostNode // TODO: Named type is not allowed to be an interface diff --git a/src/main/scala/viper/gobra/ast/frontend/PrettyPrinter.scala b/src/main/scala/viper/gobra/ast/frontend/PrettyPrinter.scala index fee1642f6..aeb2ef4ab 100644 --- a/src/main/scala/viper/gobra/ast/frontend/PrettyPrinter.scala +++ b/src/main/scala/viper/gobra/ast/frontend/PrettyPrinter.scala @@ -641,7 +641,10 @@ class DefaultPrettyPrinter extends PrettyPrinter with kiama.output.PrettyPrinter ssep(pspec map showInterfaceClause, line) ) case PMethodReceiveName(t) => showType(t) - case PMethodReceivePointer(t) => "*" <> showType(t) + case r: PMethodReceivePointer => r match { + case PMethodReceiveActualPointer(t) => "*" <> showType(t) + case PMethodReceiveGhostPointer(t) => "gpointer" <> brackets(showType(t)) + } } def showGhostType(typ : PGhostType) : Doc = typ match { diff --git a/src/main/scala/viper/gobra/frontend/Desugar.scala b/src/main/scala/viper/gobra/frontend/Desugar.scala index 121590a86..49d8927b7 100644 --- a/src/main/scala/viper/gobra/frontend/Desugar.scala +++ b/src/main/scala/viper/gobra/frontend/Desugar.scala @@ -4914,7 +4914,7 @@ object Desugar extends LazyLogging { topLevelName(s"$METHODSPEC_PREFIX${interface(t)}")(n, context) def method (n: String, t: PMethodRecvType, context: ExternalTypeInfo): String = t match { case PMethodReceiveName(typ) => topLevelName(s"$METHOD_PREFIX${typ.name}")(n, context) - case PMethodReceivePointer(typ) => topLevelName(s"P$METHOD_PREFIX${typ.name}")(n, context) + case r: PMethodReceivePointer => topLevelName(s"P$METHOD_PREFIX${r.typ.name}")(n, context) } private def stringifyType(typ: in.Type): String = Names.serializeType(typ) def builtInMember(tag: BuiltInMemberTag, dependantTypes: Vector[in.Type]): String = { diff --git a/src/main/scala/viper/gobra/frontend/ParseTreeTranslator.scala b/src/main/scala/viper/gobra/frontend/ParseTreeTranslator.scala index 9ec87c744..b65e7ddc5 100644 --- a/src/main/scala/viper/gobra/frontend/ParseTreeTranslator.scala +++ b/src/main/scala/viper/gobra/frontend/ParseTreeTranslator.scala @@ -900,7 +900,8 @@ class ParseTreeTranslator(pom: PositionManager, source: Source, specOnly : Boole override def visitReceiver(ctx: ReceiverContext): PReceiver = { val recvType = visitNode[PType](ctx.type_()) match { case t : PNamedOperand => PMethodReceiveName(t).at(t) - case PDeref(t : PNamedOperand) => PMethodReceivePointer(t).at(t) + case PDeref(t: PNamedOperand) => PMethodReceiveActualPointer(t).at(t) + case PGhostPointerType(t: PNamedOperand) => PMethodReceiveGhostPointer(t).at(t) case f => fail(ctx.type_(), s"Expected declared type or pointer to declared type but got: $f.") } diff --git a/src/main/scala/viper/gobra/frontend/info/base/Type.scala b/src/main/scala/viper/gobra/frontend/info/base/Type.scala index 59d2b7465..22312e160 100644 --- a/src/main/scala/viper/gobra/frontend/info/base/Type.scala +++ b/src/main/scala/viper/gobra/frontend/info/base/Type.scala @@ -80,7 +80,7 @@ object Type { case class ActualPointerT(elem: Type) extends PrettyType(s"*$elem") with PointerT - case class GhostPointerT(elem: Type) extends PrettyType(s"gpointer[$elem]") with PointerT + case class GhostPointerT(elem: Type) extends PrettyType(s"gpointer[$elem]") with PointerT with GhostType case class ChannelT(elem: Type, mod: ChannelModus) extends PrettyType(s"$mod $elem") diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/property/Assignability.scala b/src/main/scala/viper/gobra/frontend/info/implementation/property/Assignability.scala index 1b9611b36..df5ec576f 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/property/Assignability.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/property/Assignability.scala @@ -110,14 +110,6 @@ trait Assignability extends BaseProperty { this: TypeInfoImpl => case e => s"got $e that is not assignable" } { case e if !isMutable(e) => false - case e: PDeref if isEnclosingGhost(e) => - resolve(e) match { - case Some(ap.Deref(base)) => exprType(base) match { - case _: GhostPointerT => true // we dereference a ghost pointer in ghost code - case _ => false - } - case _ => false - } case PIndexedExp(b, _) => underlyingType(exprType(b)) match { case _: ArrayT => assignable(b) case _: SliceT | _: GhostSliceT => assignable(b) diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/resolution/MemberResolution.scala b/src/main/scala/viper/gobra/frontend/info/implementation/resolution/MemberResolution.scala index c2544cd28..e2a61394c 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/resolution/MemberResolution.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/resolution/MemberResolution.scala @@ -50,7 +50,7 @@ trait MemberResolution { this: TypeInfoImpl => def go(pastDeref: Boolean): Type => AdvancedMemberSet[StructMember] = attr[Type, AdvancedMemberSet[StructMember]] { case DeclaredT(decl, context) => go(pastDeref)(context.symbType(decl.right)).surface - case ActualPointerT(t) if !pastDeref => go(pastDeref = true)(t).ref + case p: PointerT if !pastDeref => go(pastDeref = true)(p.elem).ref case s: StructT => val (es, fs) = (s.decl.embedded, s.decl.fields) diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/resolution/NameResolution.scala b/src/main/scala/viper/gobra/frontend/info/implementation/resolution/NameResolution.scala index ee076f137..43d2a52a7 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/resolution/NameResolution.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/resolution/NameResolution.scala @@ -144,7 +144,7 @@ trait NameResolution { case _ => violation("PIdnUnk always has a parent") } - private[resolution] lazy val isGhostDef: PNode => Boolean = isEnclosingExplicitGhost + private[resolution] lazy val isGhostDef: PNode => Boolean = isEnclosingGhost private[resolution] def serialize(id: PIdnNode): String = id.name diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ExprTyping.scala b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ExprTyping.scala index ac155d5e7..ad571b198 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ExprTyping.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ExprTyping.scala @@ -725,7 +725,9 @@ trait ExprTyping extends BaseTyping { this: TypeInfoImpl => case t => violation(s"expected receive-permitting channel but got $t") } - case r@ PReference(exp) if effAddressable(exp) => if (isEnclosingGhost(r)) GhostPointerT(exprType(exp)) else ActualPointerT(exprType(exp)) + case PReference(exp) if effAddressable(exp) => + // we do not care whether the reference itself is in a ghost context or not but whether `exp` is ghost + if (isGhostLocation(exp)) GhostPointerT(exprType(exp)) else ActualPointerT(exprType(exp)) case n: PAnd => // is boolean if left and right argument are boolean, otherwise is an assertion val lt = exprType(n.left) diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/typing/TypeTyping.scala b/src/main/scala/viper/gobra/frontend/info/implementation/typing/TypeTyping.scala index a583e23af..bf085e8fc 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/typing/TypeTyping.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/typing/TypeTyping.scala @@ -130,7 +130,10 @@ trait TypeTyping extends BaseTyping { this: TypeInfoImpl => case PMethodReceiveName(t) => typeSymbType(t) - case PMethodReceivePointer(t) => ActualPointerT(typeSymbType(t)) + case r: PMethodReceivePointer => r match { + case PMethodReceiveActualPointer(t) => ActualPointerT(typeSymbType(t)) + case PMethodReceiveGhostPointer(t) => GhostPointerT(typeSymbType(t)) + } case PFunctionType(args, r) => FunctionT(args map miscType, miscType(r)) diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostAssignability.scala b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostAssignability.scala index 80deb079e..e1b28aea5 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostAssignability.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostAssignability.scala @@ -11,6 +11,7 @@ import viper.gobra.ast.frontend._ import viper.gobra.frontend.info.implementation.TypeInfoImpl import viper.gobra.ast.frontend.{AstPattern => ap} import viper.gobra.frontend.info.ExternalTypeInfo +import viper.gobra.frontend.info.base.Type import viper.gobra.frontend.info.implementation.property.{AssignMode, NonStrictAssignMode} import viper.gobra.frontend.info.implementation.typing.ghost.separation.GhostType.ghost import viper.gobra.util.Violation @@ -85,12 +86,15 @@ trait GhostAssignability { (argTyping, resTyping) } - /** conservative ghost separation assignment check */ + /** conservative ghost separation assignment check for assignment in actual and ghost code */ private[separation] def ghostAssignableToAssignee(exprs: PExpression*)(lefts: PAssignee*): Messages = generalGhostAssignableTo(ghostExprResultTyping)(ghostAssigneeAssignmentMsg)(exprs: _*)(lefts: _*) + private def ghostAssigneeAssignmentMsg(isRightGhost: Boolean, left: PAssignee): Messages = + if (isEnclosingGhost(left)) ghostAssigneeAssignmentMsgInGhostCode(left) else ghostAssigneeAssignmentMsgInActualCode(isRightGhost, left) - private def ghostAssigneeAssignmentMsg(isRightGhost: Boolean, left: PAssignee): Messages = left match { + // handles the case of assignments in actual code + private def ghostAssigneeAssignmentMsgInActualCode(isRightGhost: Boolean, left: PAssignee): Messages = left match { case _: PDeref => // *x := e ~ !ghost(e) error(left, "ghost error: ghost cannot be assigned to pointer", isRightGhost) @@ -103,17 +107,20 @@ trait GhostAssignability { error(left, "ghost error: ghost cannot be assigned to non-ghost", isRightGhost && !ghostIdClassification(id)) case n: PDot => exprOrType(n.base) match { - case Left(base) => // x.f := e ~ (ghost(x) || ghost(e)) ==> ghost(f) - error(left, "ghost error: ghost cannot be assigned to non-ghost field", isRightGhost && !ghostIdClassification(n.id)) ++ - error(left, "ghost error: cannot assign to non-ghost field of ghost reference", ghostExprResultClassification(base) && !ghostIdClassification(n.id)) + case Left(base) => // x.f := e ~ ghost(e) ==> ghostassignee(x.f) + error(left, "ghost error: ghost cannot be assigned to non-ghost location", isRightGhost && !ghostLocationClassification(left)) case _ if resolve(n).exists(_.isInstanceOf[ap.GlobalVariable]) => error(left, "ghost error: ghost cannot be assigned to a global variable", isRightGhost) case _ => error(left, "ghost error: selections on types are not assignable") - } + } case PBlankIdentifier() => noMessages } + // handles the case of assignments in ghost code + private def ghostAssigneeAssignmentMsgInGhostCode(left: PAssignee): Messages = + error(left, s"ghost error: only ghost locations can be assigned to in ghost code: ${exprType(left)}", !ghostLocationClassification(left)) + /** conservative ghost separation assignment check */ private[separation] def ghostAssignableToId(exprs: PExpression*)(lefts: PIdnNode*): Messages = generalGhostAssignableTo(ghostExprResultTyping)(dfltGhostAssignableMsg(ghostIdClassification))(exprs: _*)(lefts: _*) diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostClassifier.scala b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostClassifier.scala index 40afb6364..66c0e9b97 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostClassifier.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostClassifier.scala @@ -24,6 +24,8 @@ trait GhostClassifier { def isParamGhost(param: PParameter): Boolean + def isGhostLocation(expr: PExpression): Boolean + def isStructClauseGhost(clause: PStructClause): Boolean def isInterfaceClauseGhost(clause: PInterfaceClause): Boolean diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostTyping.scala b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostTyping.scala index 690d90fa0..cae808e2c 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostTyping.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostTyping.scala @@ -20,7 +20,7 @@ trait GhostTyping extends GhostClassifier { this: TypeInfoImpl => private[separation] lazy val ghostMemberClassification: PMember => Boolean = attr[PMember, Boolean] { case _: PGhostMember => true - case m if enclosingGhostContext(m) => true + case m if isEnclosingGhost(m) => true case _ => false } @@ -45,7 +45,7 @@ trait GhostTyping extends GhostClassifier { this: TypeInfoImpl => attr[PStatement, Boolean] { case _: PGhostStatement => true - case s if enclosingGhostContext(s) => true + case s if isEnclosingGhost(s) => true case PAssignment(_, left) => left.forall(ghostExprClassification) case PAssignmentWithOp(_, _, left) => ghostExprClassification(left) case PShortVarDecl(right, left, _) => varDeclClassification(left, right) @@ -80,6 +80,7 @@ trait GhostTyping extends GhostClassifier { this: TypeInfoImpl => case PNamedOperand(id) => ghost(ghostIdClassification(id)) case _: PFunctionLit => notGhost + case e: PCompositeLit if isEnclosingGhost(e) => isGhost // struct literals occurring in ghost code are treated as ghost no matter whether the type is ghost or not case n: PInvoke => (exprOrType(n.base), resolve(n)) match { case (Right(_), Some(_: ap.Conversion)) => notGhost // conversions cannot be ghost (for now) @@ -119,6 +120,39 @@ trait GhostTyping extends GhostClassifier { this: TypeInfoImpl => } } + /** returns true iff expression refers to a ghost location (ghost heap or local ghost variable) */ + private[separation] lazy val ghostLocationClassification: PExpression => Boolean = + createGhostClassification[PExpression](e => ghostLocationTyping(e).isGhost) + + /** returns ghost typing of the location that expression represents */ + private[separation] lazy val ghostLocationTyping: PExpression => GhostType = { + import GhostType._ + + createGhostTyping[PExpression] { + case PNamedOperand(id) => ghost(ghostIdClassification(id)) + case e: PDeref => resolve(e) match { + case Some(ap.Deref(base)) => exprType(base) match { + case _: Type.GhostPointerT => isGhost + case _ => notGhost + } + case _ => Violation.violation(s"type-checker should only permit PDeref assignees that have the Deref pattern") + } + case e: PDot => resolve(e) match { + case Some(s: ap.FieldSelection) => + val isGhostField = ghostIdClassification(s.id) + (typ(s.base), isGhostField) match { + case (_, true) => isGhost // ghost fields are always ghost memory + case (tb: Type.PointerT, _) => ghost(tb.isInstanceOf[Type.GhostPointerT]) // assignee is on the ghost heap + case _ => ghostLocationTyping(s.base) // assignee is on the stack, recurse to find out if it's a ghost or actual variable + } + case Some(g: ap.GlobalVariable) => ghost(g.symb.ghost) + case _ => Violation.violation(s"type-checker should only permit PDot assignees that are either field or global variable accesses") + } + + case e => ghostExprTyping(e) + } + } + /** returns true iff type is classified as ghost */ private[separation] lazy val ghostTypeClassification: PType => Boolean = createGhostClassification[PType]{ case _: PGhostType => true // TODO: This check seems insufficient to me in the long run. What if a type definition is ghost? @@ -147,10 +181,6 @@ trait GhostTyping extends GhostClassifier { this: TypeInfoImpl => case _: PExplicitGhostParameter => true } - /** returns true iff node is contained in ghost code */ - private[separation] def enclosingGhostContext(n: PNode): Boolean = - isEnclosingExplicitGhost(n) || isEnclosingDomain(n) - /** returns true iff node does not contain ghost expression or id that is not contained in another statement */ private[separation] lazy val noGhostPropagationFromChildren: PNode => Boolean = attr[PNode, Boolean] { node => @@ -202,6 +232,9 @@ trait GhostTyping extends GhostClassifier { this: TypeInfoImpl => override def isParamGhost(param: PParameter): Boolean = ghostParameterClassification(param) + override def isGhostLocation(expr: PExpression): Boolean = + ghostLocationClassification(expr) + override def isStructClauseGhost(clause: PStructClause): Boolean = clause match { case _: PActualStructClause => false case _: PExplicitGhostStructClause => true diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostWellDef.scala b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostWellDef.scala index 9ccf6492b..0bb8afe39 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostWellDef.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostWellDef.scala @@ -40,11 +40,11 @@ trait GhostWellDef { this: TypeInfoImpl => case n : PVarDecl => n.typ match { case Some(typ) => error(n, s"ghost error: expected an actual type but found $typ", - isTypeGhost(typ) && !enclosingGhostContext(n)) + isTypeGhost(typ) && !isEnclosingGhost(n)) case None => noMessages } - case m if enclosingGhostContext(m) => noMessages + case m if isEnclosingGhost(m) => noMessages case _ => noMessages } @@ -52,8 +52,11 @@ trait GhostWellDef { this: TypeInfoImpl => private def stmtGhostSeparation(stmt: PStatement): Messages = stmt match { case p: PClosureImplProof => provenSpecMatchesInGhostnessWithCall(p) + case PAssignment(right, left) => ghostAssignableToAssignee(right: _*)(left: _*) + case PAssignmentWithOp(right, _, left) => ghostAssignableToAssignee(right)(left) + case _: PGhostStatement => noMessages - case s if enclosingGhostContext(s) => noMessages + case s if isEnclosingGhost(s) => noMessages case stmt @ PForStmt(pre, cond, post, _, body) => { // NOTE the loop specification *is* allowed to contain ghost constructs; the rest isn't @@ -86,9 +89,6 @@ trait GhostWellDef { this: TypeInfoImpl => | _: PDeferStmt ) => error(n, "ghost error: Found ghost child expression but expected none", !noGhostPropagationFromChildren(n)) - case PAssignment(right, left) => ghostAssignableToAssignee(right: _*)(left: _*) - case PAssignmentWithOp(right, _, left) => ghostAssignableToAssignee(right)(left) - case PShortVarDecl(right, left, _) => ghostAssignableToId(right: _*)(left: _*) case n@ PReturn(right) => @@ -99,11 +99,11 @@ trait GhostWellDef { this: TypeInfoImpl => private def exprGhostSeparation(expr: PExpression): Messages = expr match { case _: PGhostExpression => noMessages - case e if enclosingGhostContext(e) => + case e if isEnclosingGhost(e) => e match { case PMake(_: PGhostSliceType, _) => noMessages case _: PMake => error(e, "Allocating memory within ghost code is forbidden") - case _: PNew | PReference(_: PCompositeLit) => + case _: PNew => Violation.violation(exprType(e).isInstanceOf[GhostPointerT], s"All memory allocated within ghost code must be located on the ghost heap") noMessages case _ => noMessages @@ -155,7 +155,7 @@ trait GhostWellDef { this: TypeInfoImpl => case _: PGhostType => noMessages case n: PStructType => n.fields.flatMap(f => { error(f, s"ghost error: expected an actual type but found ${f.typ}", - isTypeGhost(f.typ) && !enclosingGhostContext(f)) + isTypeGhost(f.typ) && !isEnclosingGhost(f)) }) case _: PInterfaceType => noMessages case n: PType => error(n, "ghost error: Found ghost child expression, but expected none", !noGhostPropagationFromChildren(n)) @@ -186,7 +186,7 @@ trait GhostWellDef { this: TypeInfoImpl => private def miscGhostSeparation(misc : PMisc) : Messages = misc match { case _: PGhostMisc => noMessages case p: PActualParameter => error(p, s"ghost error: expected an actual type but found ${p.typ}", - isTypeGhost(p.typ) && !enclosingGhostContext(p)) + isTypeGhost(p.typ) && !isEnclosingGhost(p)) case _ => noMessages } } diff --git a/src/test/resources/regressions/examples/evaluation/impl_errors/parallel_sum.gobra b/src/test/resources/regressions/examples/evaluation/impl_errors/parallel_sum.gobra index 865e43e62..4e5cd982c 100644 --- a/src/test/resources/regressions/examples/evaluation/impl_errors/parallel_sum.gobra +++ b/src/test/resources/regressions/examples/evaluation/impl_errors/parallel_sum.gobra @@ -105,7 +105,7 @@ func sumExtensional(ghost a []int, ghost b ghost []int) { } } -pred locHasVal(loc *int, val int) { +pred locHasVal(loc gpointer[int], val int) { acc(loc, 1/2) && *loc == val } diff --git a/src/test/resources/regressions/examples/evaluation/parallel_sum.gobra b/src/test/resources/regressions/examples/evaluation/parallel_sum.gobra index 590ed2c41..90357b532 100644 --- a/src/test/resources/regressions/examples/evaluation/parallel_sum.gobra +++ b/src/test/resources/regressions/examples/evaluation/parallel_sum.gobra @@ -106,7 +106,7 @@ func sumExtensional(ghost a []int, ghost b ghost []int) { } } -pred locHasVal(loc *int, val int) { +pred locHasVal(loc gpointer[int], val int) { acc(loc, 1/2) && *loc == val } diff --git a/src/test/resources/regressions/examples/evaluation/spec_errors/parallel_sum.gobra b/src/test/resources/regressions/examples/evaluation/spec_errors/parallel_sum.gobra index 4792922e7..8faf2c427 100644 --- a/src/test/resources/regressions/examples/evaluation/spec_errors/parallel_sum.gobra +++ b/src/test/resources/regressions/examples/evaluation/spec_errors/parallel_sum.gobra @@ -105,7 +105,7 @@ func sumExtensional(ghost a []int, ghost b ghost []int) { } } -pred locHasVal(loc *int, val int) { +pred locHasVal(loc gpointer[int], val int) { acc(loc, 1/2) && *loc == val } diff --git a/src/test/resources/regressions/examples/tour/Test4.gobra b/src/test/resources/regressions/examples/tour/Test4.gobra index b7b273767..39fe50f5e 100644 --- a/src/test/resources/regressions/examples/tour/Test4.gobra +++ b/src/test/resources/regressions/examples/tour/Test4.gobra @@ -8,6 +8,7 @@ type Point struct { y int; }; +decreases requires acc(&p.x); pure func (p *Point) getX1() int { return p.x; diff --git a/src/test/resources/regressions/features/ghost_pointer/ghost-read-fail01.gobra b/src/test/resources/regressions/features/ghost_pointer/ghost-read-fail01.gobra index ab6797201..ad6b5fdd3 100644 --- a/src/test/resources/regressions/features/ghost_pointer/ghost-read-fail01.gobra +++ b/src/test/resources/regressions/features/ghost_pointer/ghost-read-fail01.gobra @@ -9,7 +9,8 @@ package GhostReadFail01 decreases requires acc(x) -func actualReadFunc(ghost x gpointer[int]) int { +func actualReadFunc(ghost x gpointer[int]) (res int) { //:: ExpectedOutput(type_error) - return *x + res = *x + return } diff --git a/src/test/resources/regressions/features/ghost_pointer/ghost-reference-fail01.gobra b/src/test/resources/regressions/features/ghost_pointer/ghost-reference-fail01.gobra new file mode 100644 index 000000000..33bed7fdf --- /dev/null +++ b/src/test/resources/regressions/features/ghost_pointer/ghost-reference-fail01.gobra @@ -0,0 +1,10 @@ +package GhostReferenceFail01 + +func ActualFunc() { + x@ := 42 + ghost p := &x + + // the following write fails as it's ghost code but assigning to an actual heap location: + //:: ExpectedOutput(type_error) + ghost *p = 42 +} diff --git a/src/test/resources/regressions/features/ghost_pointer/ghost-reference-fail02.gobra b/src/test/resources/regressions/features/ghost_pointer/ghost-reference-fail02.gobra new file mode 100644 index 000000000..638421ca9 --- /dev/null +++ b/src/test/resources/regressions/features/ghost_pointer/ghost-reference-fail02.gobra @@ -0,0 +1,27 @@ +package GhostReferenceFail02 + +type S struct { + field int +} + +func ActualFunc() { + x@ := S{ 42 } + ghost var p *S = &x + + // the following writes fail as it's ghost code but assigning to an actual heap location: + //:: ExpectedOutput(type_error) + ghost (*p).field = 42 + //:: ExpectedOutput(type_error) + ghost p.field = 42 +} + +ghost +decreases +requires acc(p) +func GhostFunc(p *S) { + // the following writes fail as it's ghost code but assigning to an actual heap location: + //:: ExpectedOutput(type_error) + (*p).field = 42 + //:: ExpectedOutput(type_error) + p.field = 42 +} diff --git a/src/test/resources/regressions/features/ghost_pointer/ghost-reference-simple01.gobra b/src/test/resources/regressions/features/ghost_pointer/ghost-reference-simple01.gobra index 93b168671..bb2e4a34e 100644 --- a/src/test/resources/regressions/features/ghost_pointer/ghost-reference-simple01.gobra +++ b/src/test/resources/regressions/features/ghost_pointer/ghost-reference-simple01.gobra @@ -12,7 +12,7 @@ decreases ensures acc(x) func GhostFunc() (x gpointer[Test]) { x = &Test{ 42 } - //:: ExpectedOutput(assert.failed:assertion.false) + //:: ExpectedOutput(assert_error:assertion_error) assert false } @@ -20,6 +20,12 @@ decreases ensures acc(x) func ActualFunc() (x *Test) { x = &Test{ 42 } - //:: ExpectedOutput(assert.failed:assertion.false) + ghost p1 := &Test{ 0 } + p1.field = 42 + (*p1).field = 42 + ghost t2@ := Test{ 0 } + t2.field = 42 + (*(&t2)).field = 42 + //:: ExpectedOutput(assert_error:assertion_error) assert false } diff --git a/src/test/resources/regressions/features/ghost_pointer/ghost-write-simple01.gobra b/src/test/resources/regressions/features/ghost_pointer/ghost-write-simple01.gobra index e198bd904..dd68fbf5e 100644 --- a/src/test/resources/regressions/features/ghost_pointer/ghost-write-simple01.gobra +++ b/src/test/resources/regressions/features/ghost_pointer/ghost-write-simple01.gobra @@ -12,7 +12,7 @@ decreases requires acc(x) func ghostWriteFunc(x gpointer[int]) { *x = 42 - //:: ExpectedOutput(assert.failed:assertion.false) + //:: ExpectedOutput(assert_error:assertion_error) assert false } diff --git a/src/test/resources/regressions/features/ghost_pointer/pointer-creation-fail01.gobra b/src/test/resources/regressions/features/ghost_pointer/pointer-creation-fail01.gobra index d7a4f41e7..890f57a5c 100644 --- a/src/test/resources/regressions/features/ghost_pointer/pointer-creation-fail01.gobra +++ b/src/test/resources/regressions/features/ghost_pointer/pointer-creation-fail01.gobra @@ -29,5 +29,6 @@ func ActualFunc() { ghost x = new(int) // actual pointer is not assignable to a ghost pointer: + //:: ExpectedOutput(type_error) z = new(int) } diff --git a/src/test/resources/regressions/features/ghost_pointer/pointer-creation-simple01.gobra b/src/test/resources/regressions/features/ghost_pointer/pointer-creation-simple01.gobra index ac04b6030..33b24eb83 100644 --- a/src/test/resources/regressions/features/ghost_pointer/pointer-creation-simple01.gobra +++ b/src/test/resources/regressions/features/ghost_pointer/pointer-creation-simple01.gobra @@ -11,7 +11,7 @@ decreases ensures acc(x) func GhostFunc() (x gpointer[int]) { x = new(int) - //:: ExpectedOutput(assert.failed:assertion.false) + //:: ExpectedOutput(assert_error:assertion_error) assert false } @@ -19,6 +19,6 @@ decreases ensures acc(x) func ActualFunc() (x *int) { x = new(int) - //:: ExpectedOutput(assert.failed:assertion.false) + //:: ExpectedOutput(assert_error:assertion_error) assert false } diff --git a/src/test/resources/regressions/features/labels/ghost-label.gobra b/src/test/resources/regressions/features/labels/ghost-label.gobra new file mode 100644 index 000000000..ef8c8c14e --- /dev/null +++ b/src/test/resources/regressions/features/labels/ghost-label.gobra @@ -0,0 +1,29 @@ +// Any copyright is dedicated to the Public Domain. +// http://creativecommons.org/publicdomain/zero/1.0/ + +package main + +func test() { + + x1 := 5 + x2@ := 5 + + // despite the line breaks, `x1 = 8` is treated as a labeled statement that is marked ghost. Thus, the assignment violates ghost separation + ghost L: + //:: ExpectedOutput(type_error) + x1 = 8 + x2 = 8 +} + +func test2() { + + x1 := 5 + x2@ := 5 + + // the issue above can be fixed by inserting an empty statement / block such that the assignments are not treated + // as being part of the labeled statement. + ghost L: {} + + x1 = 8 + x2 = 8 +} diff --git a/src/test/resources/regressions/features/wands/list.gobra b/src/test/resources/regressions/features/wands/list.gobra index cd3d27fdd..fbf2bc880 100644 --- a/src/test/resources/regressions/features/wands/list.gobra +++ b/src/test/resources/regressions/features/wands/list.gobra @@ -18,7 +18,6 @@ pure func elems(start *List) (res seq[int]) { return unfolding start.Mem() in (start.next == nil? seq[int]{start.val} : (seq[int]{start.val} ++ elems(start.next))) } -ghost requires l1.Mem() && l2.Mem() && l2 != nil ensures l1.Mem() && elems(l1) == old(elems(l1) ++ elems(l2)) func (l1 *List) Append(l2 *List) { @@ -53,4 +52,4 @@ func (l1 *List) Append(l2 *List) { fold tmp.Mem() apply tmp.Mem() --* (l1.Mem() && elems(l1) == old((elems(l1))[:index] ++ old[#lhs](elems(tmp)))) } -} \ No newline at end of file +} diff --git a/src/test/resources/regressions/issues/000039.gobra b/src/test/resources/regressions/issues/000039.gobra index f257f3378..6ebcb8a6b 100644 --- a/src/test/resources/regressions/issues/000039.gobra +++ b/src/test/resources/regressions/issues/000039.gobra @@ -8,7 +8,8 @@ func test() { x1 := 5 x2@ := 5 - ghost L: + // an empty block is inserted such that the assignments are not treated being part of the ghost labeled statement + ghost L: {} x1 = 8 x2 = 8 From 8265457f2065ac59d7f8402d1547c182fb0738a3 Mon Sep 17 00:00:00 2001 From: Linard Arquint Date: Fri, 22 Mar 2024 09:21:08 +0100 Subject: [PATCH 05/16] Update src/main/scala/viper/gobra/frontend/info/implementation/typing/ExprTyping.scala CR suggestion by Felix Co-authored-by: Felix Wolf <60103963+Felalolf@users.noreply.github.com> --- .../gobra/frontend/info/implementation/typing/ExprTyping.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ExprTyping.scala b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ExprTyping.scala index ad571b198..ae58bc0c6 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ExprTyping.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ExprTyping.scala @@ -390,7 +390,7 @@ trait ExprTyping extends BaseTyping { this: TypeInfoImpl => error(cap, "sequence slice expressions do not allow specifying a capacity", capT.isDefined) } - case (ActualPointerT(ArrayT(l, _)), None | Some(IntT(_)), None | Some(IntT(_)), None | Some(IntT(_))) => + case (ActualPointerT(ArrayT(l, _)), None | Some(IntT(_)), None | Some(IntT(_)), None | Some(IntT(_))) => // without ghost slices, slicing a ghost pointer is not allowed. val (lowOpt, highOpt, capOpt) = (low map intConstantEval, high map intConstantEval, cap map intConstantEval) error(n, s"index $low is out of bounds", !lowOpt.forall(_.forall(i => i >= 0 && i < l))) ++ error(n, s"index $high is out of bounds", !highOpt.forall(_.forall(i => i >= 0 && i < l))) ++ From d5e0258d4577e81f2f677e95d0c571e9276b10da Mon Sep 17 00:00:00 2001 From: Linard Arquint Date: Fri, 22 Mar 2024 09:26:00 +0100 Subject: [PATCH 06/16] applies CR suggestion by Felix Co-authored-by: Felix Wolf <60103963+Felalolf@users.noreply.github.com> --- .../features/ghost_pointer/pointer-creation-fail01.gobra | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/test/resources/regressions/features/ghost_pointer/pointer-creation-fail01.gobra b/src/test/resources/regressions/features/ghost_pointer/pointer-creation-fail01.gobra index 890f57a5c..d929c1d65 100644 --- a/src/test/resources/regressions/features/ghost_pointer/pointer-creation-fail01.gobra +++ b/src/test/resources/regressions/features/ghost_pointer/pointer-creation-fail01.gobra @@ -27,6 +27,9 @@ func ActualFunc() { // ghost pointer is not assignable to an actual pointer //:: ExpectedOutput(type_error) ghost x = new(int) + + // ghost pointer is assignable: + ghost z = new(int) // actual pointer is not assignable to a ghost pointer: //:: ExpectedOutput(type_error) From c761f27dc28616a128be39c8f7eaa075193a876a Mon Sep 17 00:00:00 2001 From: Linard Arquint Date: Fri, 22 Mar 2024 11:01:55 +0100 Subject: [PATCH 07/16] adds support for index expression to ghost memory and implements CR suggestions by Felix --- .../viper/gobra/frontend/info/base/Type.scala | 6 +- .../property/Assignability.scala | 5 +- .../implementation/typing/ExprTyping.scala | 6 +- .../implementation/typing/MiscTyping.scala | 2 +- .../ghost/separation/GhostAssignability.scala | 2 +- .../typing/ghost/separation/GhostTyping.scala | 10 +++- .../ghost_pointer/ghost-array-fail01.gobra | 37 ++++++++++++ .../ghost-array-range-fail01.gobra | 41 ++++++++++++++ .../ghost-array-range-simple01.gobra | 52 +++++++++++++++++ .../ghost_pointer/ghost-array-simple01.gobra | 56 +++++++++++++++++++ .../pointer-creation-fail01.gobra | 2 +- 11 files changed, 207 insertions(+), 12 deletions(-) create mode 100644 src/test/resources/regressions/features/ghost_pointer/ghost-array-fail01.gobra create mode 100644 src/test/resources/regressions/features/ghost_pointer/ghost-array-range-fail01.gobra create mode 100644 src/test/resources/regressions/features/ghost_pointer/ghost-array-range-simple01.gobra create mode 100644 src/test/resources/regressions/features/ghost_pointer/ghost-array-simple01.gobra diff --git a/src/main/scala/viper/gobra/frontend/info/base/Type.scala b/src/main/scala/viper/gobra/frontend/info/base/Type.scala index 22312e160..df867da6b 100644 --- a/src/main/scala/viper/gobra/frontend/info/base/Type.scala +++ b/src/main/scala/viper/gobra/frontend/info/base/Type.scala @@ -74,10 +74,14 @@ object Type { case class MapT(key: Type, elem: Type) extends PrettyType(s"map[$key]$elem") - trait PointerT { + sealed trait PointerT { val elem: Type } + object PointerT { + def unapply(arg: PointerT): Option[Type] = Some(arg.elem) + } + case class ActualPointerT(elem: Type) extends PrettyType(s"*$elem") with PointerT case class GhostPointerT(elem: Type) extends PrettyType(s"gpointer[$elem]") with PointerT with GhostType diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/property/Assignability.scala b/src/main/scala/viper/gobra/frontend/info/implementation/property/Assignability.scala index df5ec576f..1175fe801 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/property/Assignability.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/property/Assignability.scala @@ -105,10 +105,7 @@ trait Assignability extends BaseProperty { this: TypeInfoImpl => case _ => errorProp() } - lazy val assignable: Property[PExpression] = createFlatProperty[PExpression]{ - case e if isEnclosingGhost(e) => s"got $e that is not assignable in ghost code" - case e => s"got $e that is not assignable" - } { + lazy val assignable: Property[PExpression] = createBinaryProperty("assignable") { case e if !isMutable(e) => false case PIndexedExp(b, _) => underlyingType(exprType(b)) match { case _: ArrayT => assignable(b) diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ExprTyping.scala b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ExprTyping.scala index ae58bc0c6..f00b7b685 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ExprTyping.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ExprTyping.scala @@ -10,7 +10,7 @@ import org.bitbucket.inkytonik.kiama.util.Messaging.{Messages, check, error, noM import viper.gobra.ast.frontend.{AstPattern => ap, _} import viper.gobra.frontend.info.base.{SymbolTable => st} import viper.gobra.frontend.info.base.SymbolTable.{AdtDestructor, AdtDiscriminator, GlobalVariable, SingleConstant} -import viper.gobra.frontend.info.base.Type._ +import viper.gobra.frontend.info.base.Type.{PointerT, _} import viper.gobra.frontend.info.implementation.TypeInfoImpl import viper.gobra.util.TypeBounds.{BoundedIntegerKind, UnboundedInteger} import viper.gobra.util.{Constants, TypeBounds, Violation} @@ -324,7 +324,7 @@ trait ExprTyping extends BaseTyping { this: TypeInfoImpl => val idxOpt = intConstantEval(index) error(n, s"index $index is out of bounds", !idxOpt.forall(i => i >= 0 && i < l)) - case (ActualPointerT(ArrayT(l, _)), IntT(_)) => + case (PointerT(ArrayT(l, _)), IntT(_)) => val idxOpt = intConstantEval(index) error(n, s"index $index is out of bounds", !idxOpt.forall(i => i >= 0 && i < l)) @@ -689,7 +689,7 @@ trait ExprTyping extends BaseTyping { this: TypeInfoImpl => (underlyingType(baseType), underlyingType(idxType)) match { case (Single(base), Single(idx)) => (base, idx) match { case (ArrayT(_, elem), IntT(_)) => elem - case (ActualPointerT(ArrayT(_, elem)), IntT(_)) => elem + case (PointerT(ArrayT(_, elem)), IntT(_)) => elem case (SequenceT(elem), IntT(_)) => elem case (SliceT(elem), IntT(_)) => elem case (GhostSliceT(elem), IntT(_)) => elem diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/typing/MiscTyping.scala b/src/main/scala/viper/gobra/frontend/info/implementation/typing/MiscTyping.scala index 9056bd3ba..523d34ee8 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/typing/MiscTyping.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/typing/MiscTyping.scala @@ -25,7 +25,7 @@ trait MiscTyping extends BaseTyping { this: TypeInfoImpl => private[typing] def wellDefActualMisc(misc: PActualMisc): Messages = misc match { case n@PRange(exp, _) => isExpr(exp).out ++ (underlyingType(exprType(exp)) match { - case _: ArrayT | ActualPointerT(_: ArrayT) | _: SliceT | _: GhostSliceT | _: MapT | + case _: ArrayT | PointerT(_: ArrayT) | _: SliceT | _: GhostSliceT | _: MapT | ChannelT(_, ChannelModus.Recv | ChannelModus.Bi) => noMessages case t => message(n, s"type error: got $t but expected rangeable type") }) diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostAssignability.scala b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostAssignability.scala index e1b28aea5..1debc4c96 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostAssignability.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostAssignability.scala @@ -119,7 +119,7 @@ trait GhostAssignability { // handles the case of assignments in ghost code private def ghostAssigneeAssignmentMsgInGhostCode(left: PAssignee): Messages = - error(left, s"ghost error: only ghost locations can be assigned to in ghost code: ${exprType(left)}", !ghostLocationClassification(left)) + error(left, s"ghost error: only ghost locations can be assigned to in ghost code}", !ghostLocationClassification(left)) /** conservative ghost separation assignment check */ private[separation] def ghostAssignableToId(exprs: PExpression*)(lefts: PIdnNode*): Messages = diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostTyping.scala b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostTyping.scala index cae808e2c..d5cf0b5fc 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostTyping.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostTyping.scala @@ -142,12 +142,20 @@ trait GhostTyping extends GhostClassifier { this: TypeInfoImpl => val isGhostField = ghostIdClassification(s.id) (typ(s.base), isGhostField) match { case (_, true) => isGhost // ghost fields are always ghost memory - case (tb: Type.PointerT, _) => ghost(tb.isInstanceOf[Type.GhostPointerT]) // assignee is on the ghost heap + case (tb: Type.PointerT, _) => ghost(tb.isInstanceOf[Type.GhostPointerT]) // (implicitly) dereferencing a ghost pointer denotes a ghost heap location case _ => ghostLocationTyping(s.base) // assignee is on the stack, recurse to find out if it's a ghost or actual variable } case Some(g: ap.GlobalVariable) => ghost(g.symb.ghost) case _ => Violation.violation(s"type-checker should only permit PDot assignees that are either field or global variable accesses") } + case PIndexedExp(base, _) => + println(s"looking at $base") + typ(base) match { + case tb: Type.PointerT => + println(s"$base is of pointer type") + ghost(tb.isInstanceOf[Type.GhostPointerT]) // (implicitly) dereferencing a ghost pointer denotes a ghost heap location + case _ => ghostLocationTyping(base) // assignee is on the stack, recurse to find out if it's a ghost or actual variable + } case e => ghostExprTyping(e) } diff --git a/src/test/resources/regressions/features/ghost_pointer/ghost-array-fail01.gobra b/src/test/resources/regressions/features/ghost_pointer/ghost-array-fail01.gobra new file mode 100644 index 000000000..83273e943 --- /dev/null +++ b/src/test/resources/regressions/features/ghost_pointer/ghost-array-fail01.gobra @@ -0,0 +1,37 @@ +// Any copyright is dedicated to the Public Domain. +// http://creativecommons.org/publicdomain/zero/1.0/ + +package GhostArrayFail01 + +ghost +decreases +ensures acc(x) +func GhostFunc() (x gpointer[[5]int]) { + arr@ := [5]int{ 0, 1, 2, 3, 4 } + return &arr +} + +ghost +decreases +requires acc(p) +func GhostArrayAssign(p *[5]int) { + x := GhostFunc() + // assigning to a pointer to an array is neither possible in ghost nor actual code: + //:: ExpectedOutput(type_error) + x[3] = 42 + + // not okay: + //:: ExpectedOutput(type_error) + p[0] = 42 + //:: ExpectedOutput(type_error) + (*p)[0] = 42 +} + +decreases +requires acc(p) +func ActualArrayAssign(p *[5]int) { + // assigning to a pointer to an array is neither possible in ghost nor actual code: + //:: ExpectedOutput(type_error) + p[3] = 42 + (*p)[4] = 42 +} diff --git a/src/test/resources/regressions/features/ghost_pointer/ghost-array-range-fail01.gobra b/src/test/resources/regressions/features/ghost_pointer/ghost-array-range-fail01.gobra new file mode 100644 index 000000000..fd55339f6 --- /dev/null +++ b/src/test/resources/regressions/features/ghost_pointer/ghost-array-range-fail01.gobra @@ -0,0 +1,41 @@ +// Any copyright is dedicated to the Public Domain. +// http://creativecommons.org/publicdomain/zero/1.0/ + +package GhostArrayRangeFail01 + +ghost +decreases +requires acc(p[0]) && acc(p[1]) +func GhostArrayRange(p [2]*int) { + invariant acc(p[0]) + invariant acc(p[1]) + invariant 0 <= i && i <= len(p) + decreases len(p) - i0 + for i, j := range p with i0 { + assert j != nil + v := *j + v = *p[i] + // assignment is not possible + //:: ExpectedOutput(type_error) + *j = 42 + } +} + +// ranging over a pointer or ghost pointer to an array is not yet supported: +ghost +func GhostPtrArrayRange() { + arr@ := [2]int{ 0, 1 } + p := &arr + var elem int + //:: ExpectedOutput(type_error) + for elem = range(p) with i0 {} +} + +ghost +func ActualPtrArrayRange() { + arr@ := [2]int{ 0, 1 } + p := &arr + var elem int + //:: ExpectedOutput(type_error) + for elem = range(p) with i0 {} +} diff --git a/src/test/resources/regressions/features/ghost_pointer/ghost-array-range-simple01.gobra b/src/test/resources/regressions/features/ghost_pointer/ghost-array-range-simple01.gobra new file mode 100644 index 000000000..959fc5984 --- /dev/null +++ b/src/test/resources/regressions/features/ghost_pointer/ghost-array-range-simple01.gobra @@ -0,0 +1,52 @@ +// Any copyright is dedicated to the Public Domain. +// http://creativecommons.org/publicdomain/zero/1.0/ + +package GhostArrayRangeSimple01 + +ghost +decreases +ensures acc(x[0]) && acc(x[1]) +func GhostFunc() (x [2]gpointer[int]) { + arr@ := [2]gpointer[int]{ new(int), new(int) } + return arr +} + +ghost +decreases +requires acc(p[0]) && acc(p[1]) +func GhostArrayRange(p [2]*int) { + invariant acc(p[0]) + invariant acc(p[1]) + invariant 0 <= i && i <= len(p) + decreases len(p) - i0 + for i, j := range p with i0 { + assert j != nil + v := *j + v = *p[i] + // assignment is not possible + // *j = 42 + } + + x := GhostFunc() + invariant acc(x[0]) + invariant acc(x[1]) + invariant 0 <= i && i <= len(x) + decreases len(x) - i0 + for i, j := range x with i0 { + assert j != nil + v := *j + v = *p[i] + // assigning should be possible: + *j = 42 + } +} + +ghost +func ActualPtrArrayRange() { + arr@ := [2]int{ 0, 1 } + p := &arr + var elem int + for elem = range(p) with i0 { + + } +} diff --git a/src/test/resources/regressions/features/ghost_pointer/ghost-array-simple01.gobra b/src/test/resources/regressions/features/ghost_pointer/ghost-array-simple01.gobra new file mode 100644 index 000000000..4ae9e3a3c --- /dev/null +++ b/src/test/resources/regressions/features/ghost_pointer/ghost-array-simple01.gobra @@ -0,0 +1,56 @@ +// Any copyright is dedicated to the Public Domain. +// http://creativecommons.org/publicdomain/zero/1.0/ + +package GhostArraySimple01 + +ghost +decreases +func GhostFunc() (x [5]int) { + x = [5]int{ 0, 1, 2, 3, 4 } + //:: ExpectedOutput(assert_error:assertion_error) + assert false + return +} + +ghost +decreases +ensures acc(x) && acc(y) +func GhostFunc2() (x gpointer[[5]int], y gpointer[[5]int]) { + arr@ := [5]int{ 0, 1, 2, 3, 4 } + x = &arr + y = &[5]int{ 0, 1, 2, 3, 4 } + //:: ExpectedOutput(assert_error:assertion_error) + assert false + return +} + +ghost +decreases +requires acc(p) +func GhostArrayAssign(p *[5]int) { + x := GhostFunc() + y, z := GhostFunc2() + x[2] = 42 + // y[3] = 42 + (*z)[4] = 42 +} + + +decreases +ensures acc(x) && acc(y) +func ActualFunc2() (x *[5]int, y *[5]int) { + arr@ := [5]int{ 0, 1, 2, 3, 4 } + x = &arr + y = &[5]int{ 0, 1, 2, 3, 4 } + //:: ExpectedOutput(assert_error:assertion_error) + assert false + return +} + +decreases +requires acc(p) +func ActualArrayAssign(p *[5]int) { + y, z := ActualFunc2() + // y[3] = 42 + (*z)[4] = 42 +} diff --git a/src/test/resources/regressions/features/ghost_pointer/pointer-creation-fail01.gobra b/src/test/resources/regressions/features/ghost_pointer/pointer-creation-fail01.gobra index d929c1d65..a428dda2f 100644 --- a/src/test/resources/regressions/features/ghost_pointer/pointer-creation-fail01.gobra +++ b/src/test/resources/regressions/features/ghost_pointer/pointer-creation-fail01.gobra @@ -28,7 +28,7 @@ func ActualFunc() { //:: ExpectedOutput(type_error) ghost x = new(int) - // ghost pointer is assignable: + // ghost pointer is assignable to a ghost pointer: ghost z = new(int) // actual pointer is not assignable to a ghost pointer: From cd840b0a8112da630ef68de88c42c02e8ee20c22 Mon Sep 17 00:00:00 2001 From: Linard Arquint Date: Fri, 22 Mar 2024 18:31:53 +0100 Subject: [PATCH 08/16] adapts or fixes some unit tests, fixes ghost memory analysis to correctly consider indexed expressions --- .../typing/ghost/separation/GhostTyping.scala | 13 ++--- .../regressions/features/adts/simple1.gobra | 4 +- .../closures/closures-fail5-proofs.gobra | 3 +- .../ghost-array-range-simple01.gobra | 25 ++++++++-- .../ghost_pointer/ghost-location-fail01.gobra | 50 +++++++++++++++++++ .../ghost-reference-fail01.gobra | 3 ++ .../ghost-reference-fail02.gobra | 3 ++ 7 files changed, 86 insertions(+), 15 deletions(-) create mode 100644 src/test/resources/regressions/features/ghost_pointer/ghost-location-fail01.gobra diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostTyping.scala b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostTyping.scala index d5cf0b5fc..a5da2ccc0 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostTyping.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostTyping.scala @@ -142,19 +142,16 @@ trait GhostTyping extends GhostClassifier { this: TypeInfoImpl => val isGhostField = ghostIdClassification(s.id) (typ(s.base), isGhostField) match { case (_, true) => isGhost // ghost fields are always ghost memory - case (tb: Type.PointerT, _) => ghost(tb.isInstanceOf[Type.GhostPointerT]) // (implicitly) dereferencing a ghost pointer denotes a ghost heap location + case (tb: Type.PointerT, _) => ghost(tb.isInstanceOf[Type.GhostPointerT]) // (implicitly) dereferencing a ghost pointer leads to a ghost heap location case _ => ghostLocationTyping(s.base) // assignee is on the stack, recurse to find out if it's a ghost or actual variable } case Some(g: ap.GlobalVariable) => ghost(g.symb.ghost) case _ => Violation.violation(s"type-checker should only permit PDot assignees that are either field or global variable accesses") } - case PIndexedExp(base, _) => - println(s"looking at $base") - typ(base) match { - case tb: Type.PointerT => - println(s"$base is of pointer type") - ghost(tb.isInstanceOf[Type.GhostPointerT]) // (implicitly) dereferencing a ghost pointer denotes a ghost heap location - case _ => ghostLocationTyping(base) // assignee is on the stack, recurse to find out if it's a ghost or actual variable + case PIndexedExp(base, _) => underlyingType(typ(base)) match { + case t if !isPointerType(t) => ghostLocationTyping(base) // assignee is on the stack, recurse to find out if it's a ghost or actual variable + case _: Type.GhostPointerT | _: Type.GhostSliceT => isGhost // (implicitly) dereferencing a ghost pointer leads to a ghost heap location + case _ => notGhost } case e => ghostExprTyping(e) diff --git a/src/test/resources/regressions/features/adts/simple1.gobra b/src/test/resources/regressions/features/adts/simple1.gobra index 369acfd97..9ba5f50d0 100644 --- a/src/test/resources/regressions/features/adts/simple1.gobra +++ b/src/test/resources/regressions/features/adts/simple1.gobra @@ -1,7 +1,7 @@ // Any copyright is dedicated to the Public Domain. // http://creativecommons.org/publicdomain/zero/1.0/ -package pkg; +package pkg type tree adt{ leaf{ value int } @@ -17,7 +17,7 @@ func test1() { } func test2(x tree) { - var y int + ghost var y int match x { case node{leaf{5}, _}: y = 4 case _: y = 3 diff --git a/src/test/resources/regressions/features/closures/closures-fail5-proofs.gobra b/src/test/resources/regressions/features/closures/closures-fail5-proofs.gobra index 0472c288d..e7329075c 100644 --- a/src/test/resources/regressions/features/closures/closures-fail5-proofs.gobra +++ b/src/test/resources/regressions/features/closures/closures-fail5-proofs.gobra @@ -66,7 +66,8 @@ func test4() { //:: ExpectedOutput(type_error) proof cl implements pspec { - x = 2 + //:: ExpectedOutput(type_error) + x = 2 // assignment in ghost code to a non-ghost variable y = cl1(x) as id1 } } diff --git a/src/test/resources/regressions/features/ghost_pointer/ghost-array-range-simple01.gobra b/src/test/resources/regressions/features/ghost_pointer/ghost-array-range-simple01.gobra index 959fc5984..1bd1f5b47 100644 --- a/src/test/resources/regressions/features/ghost_pointer/ghost-array-range-simple01.gobra +++ b/src/test/resources/regressions/features/ghost_pointer/ghost-array-range-simple01.gobra @@ -14,7 +14,7 @@ func GhostFunc() (x [2]gpointer[int]) { ghost decreases requires acc(p[0]) && acc(p[1]) -func GhostArrayRange(p [2]*int) { +func GhostRangeOverActualPts(p [2]*int) { invariant acc(p[0]) invariant acc(p[1]) invariant 0 <= i && i <= len(p) @@ -26,7 +26,11 @@ func GhostArrayRange(p [2]*int) { // assignment is not possible // *j = 42 } +} +ghost +decreases +func GhostRangeOverGhostPts() { x := GhostFunc() invariant acc(x[0]) invariant acc(x[1]) @@ -35,18 +39,31 @@ func GhostArrayRange(p [2]*int) { for i, j := range x with i0 { assert j != nil v := *j - v = *p[i] + v = *x[i] // assigning should be possible: *j = 42 } } ghost -func ActualPtrArrayRange() { +decreases +func GhostRangeOverGhostPtrToInts() { + arr@ := [2]int{ 0, 1 } + p := &arr + var elem int + decreases len(*p) - i0 + for elem = range(*p) with i0 { + + } +} + +decreases +func ActualRangeOverPtrToInts() { arr@ := [2]int{ 0, 1 } p := &arr var elem int - for elem = range(p) with i0 { + decreases len(*p) - i0 + for elem = range(*p) with i0 { } } diff --git a/src/test/resources/regressions/features/ghost_pointer/ghost-location-fail01.gobra b/src/test/resources/regressions/features/ghost_pointer/ghost-location-fail01.gobra new file mode 100644 index 000000000..e5d887177 --- /dev/null +++ b/src/test/resources/regressions/features/ghost_pointer/ghost-location-fail01.gobra @@ -0,0 +1,50 @@ +// Any copyright is dedicated to the Public Domain. +// http://creativecommons.org/publicdomain/zero/1.0/ + +package GhostLocationFail01 + +ghost +decreases +requires 1 <= len(p) +requires forall i int :: 0 <= i && i < len(p) ==> acc(&p[i]) +func SliceInGhostCode(p []int) { + gp := p + + // both `p` and `gp` are slices that are located in actual memory + //:: ExpectedOutput(type_error) + p[0] = 42 + //:: ExpectedOutput(type_error) + gp[0] = 42 +} + +ghost +decreases +requires 1 <= len(p) +requires forall i int :: 0 <= i && i < len(p) ==> acc(&p[i]) +func GhostSliceInGhostCode(p ghost []int) { + gp := p + p[0] = 42 + gp[0] = 42 +} + +decreases +requires 1 <= len(p) +requires forall i int :: 0 <= i && i < len(p) ==> acc(&p[i]) +func SliceInActualCode(p []int) { + gp := p + + // both `p` and `gp` are slices that are located in actual memory + //:: ExpectedOutput(type_error) + p[0] = 42 + //:: ExpectedOutput(type_error) + gp[0] = 42 +} + +decreases +requires 1 <= len(p) +requires forall i int :: 0 <= i && i < len(p) ==> acc(&p[i]) +func GhostSliceInActualCode(ghost p ghost []int) { + gp := p + p[0] = 42 + gp[0] = 42 +} diff --git a/src/test/resources/regressions/features/ghost_pointer/ghost-reference-fail01.gobra b/src/test/resources/regressions/features/ghost_pointer/ghost-reference-fail01.gobra index 33bed7fdf..f8a8e2583 100644 --- a/src/test/resources/regressions/features/ghost_pointer/ghost-reference-fail01.gobra +++ b/src/test/resources/regressions/features/ghost_pointer/ghost-reference-fail01.gobra @@ -1,3 +1,6 @@ +// Any copyright is dedicated to the Public Domain. +// http://creativecommons.org/publicdomain/zero/1.0/ + package GhostReferenceFail01 func ActualFunc() { diff --git a/src/test/resources/regressions/features/ghost_pointer/ghost-reference-fail02.gobra b/src/test/resources/regressions/features/ghost_pointer/ghost-reference-fail02.gobra index 638421ca9..b7c116970 100644 --- a/src/test/resources/regressions/features/ghost_pointer/ghost-reference-fail02.gobra +++ b/src/test/resources/regressions/features/ghost_pointer/ghost-reference-fail02.gobra @@ -1,3 +1,6 @@ +// Any copyright is dedicated to the Public Domain. +// http://creativecommons.org/publicdomain/zero/1.0/ + package GhostReferenceFail02 type S struct { From dfa1233d300fc89b4cc38a3bb29c27c3aeea93b1 Mon Sep 17 00:00:00 2001 From: Linard Arquint Date: Sun, 24 Mar 2024 17:09:08 +0100 Subject: [PATCH 09/16] fixes a unit test --- .../features/ghost_pointer/ghost-location-fail01.gobra | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/test/resources/regressions/features/ghost_pointer/ghost-location-fail01.gobra b/src/test/resources/regressions/features/ghost_pointer/ghost-location-fail01.gobra index e5d887177..7ba0f03a8 100644 --- a/src/test/resources/regressions/features/ghost_pointer/ghost-location-fail01.gobra +++ b/src/test/resources/regressions/features/ghost_pointer/ghost-location-fail01.gobra @@ -10,7 +10,7 @@ requires forall i int :: 0 <= i && i < len(p) ==> acc(&p[i]) func SliceInGhostCode(p []int) { gp := p - // both `p` and `gp` are slices that are located in actual memory + // both `p` and `gp` are slices that are located in actual memory, thus writing in ghost code is forbidden //:: ExpectedOutput(type_error) p[0] = 42 //:: ExpectedOutput(type_error) @@ -33,10 +33,8 @@ requires forall i int :: 0 <= i && i < len(p) ==> acc(&p[i]) func SliceInActualCode(p []int) { gp := p - // both `p` and `gp` are slices that are located in actual memory - //:: ExpectedOutput(type_error) + // both `p` and `gp` are slices that are located in actual memory, thus writing in actual code is permitted p[0] = 42 - //:: ExpectedOutput(type_error) gp[0] = 42 } From 37e5a892d58b4dcc26df6497b6573754cd663e57 Mon Sep 17 00:00:00 2001 From: Linard Arquint Date: Sun, 24 Mar 2024 19:35:09 +0100 Subject: [PATCH 10/16] adds support for method receivers of ghost pointer type, minimizes diff --- .../scala/viper/gobra/ast/frontend/Ast.scala | 8 ++-- .../gobra/ast/frontend/PrettyPrinter.scala | 6 +-- .../scala/viper/gobra/frontend/Desugar.scala | 2 +- .../property/UnderlyingType.scala | 6 +-- .../implementation/typing/TypeTyping.scala | 5 +- .../typing/ghost/GhostTypeTyping.scala | 2 + .../ghost/separation/GhostAssignability.scala | 3 +- .../ghost/separation/GhostWellDef.scala | 3 ++ .../ghost-pointer-receiver-fail01.gobra | 32 +++++++++++++ .../ghost-pointer-receiver-simple01.gobra | 47 +++++++++++++++++++ 10 files changed, 96 insertions(+), 18 deletions(-) create mode 100644 src/test/resources/regressions/features/ghost_pointer/ghost-pointer-receiver-fail01.gobra create mode 100644 src/test/resources/regressions/features/ghost_pointer/ghost-pointer-receiver-simple01.gobra diff --git a/src/main/scala/viper/gobra/ast/frontend/Ast.scala b/src/main/scala/viper/gobra/ast/frontend/Ast.scala index bf8fa8038..cfbdd921f 100644 --- a/src/main/scala/viper/gobra/ast/frontend/Ast.scala +++ b/src/main/scala/viper/gobra/ast/frontend/Ast.scala @@ -731,19 +731,19 @@ case class PEmbeddedDecl(typ: PEmbeddedType, id: PIdnDef) extends PActualStructC require(id.name == typ.name) } -sealed trait PMethodRecvType extends PActualType { // TODO: will have to be removed for packages +sealed trait PMethodRecvType extends PType { // TODO: will have to be removed for packages def typ: PNamedOperand } -case class PMethodReceiveName(typ: PNamedOperand) extends PMethodRecvType +case class PMethodReceiveName(typ: PNamedOperand) extends PMethodRecvType with PActualType trait PMethodReceivePointer extends PMethodRecvType { def typ: PNamedOperand } -case class PMethodReceiveActualPointer(typ: PNamedOperand) extends PMethodReceivePointer +case class PMethodReceiveActualPointer(typ: PNamedOperand) extends PMethodReceivePointer with PActualType -case class PMethodReceiveGhostPointer(typ: PNamedOperand) extends PMethodReceivePointer with PGhostNode +case class PMethodReceiveGhostPointer(typ: PNamedOperand) extends PMethodReceivePointer with PGhostType // TODO: Named type is not allowed to be an interface diff --git a/src/main/scala/viper/gobra/ast/frontend/PrettyPrinter.scala b/src/main/scala/viper/gobra/ast/frontend/PrettyPrinter.scala index aeb2ef4ab..f5c7a94a3 100644 --- a/src/main/scala/viper/gobra/ast/frontend/PrettyPrinter.scala +++ b/src/main/scala/viper/gobra/ast/frontend/PrettyPrinter.scala @@ -641,10 +641,7 @@ class DefaultPrettyPrinter extends PrettyPrinter with kiama.output.PrettyPrinter ssep(pspec map showInterfaceClause, line) ) case PMethodReceiveName(t) => showType(t) - case r: PMethodReceivePointer => r match { - case PMethodReceiveActualPointer(t) => "*" <> showType(t) - case PMethodReceiveGhostPointer(t) => "gpointer" <> brackets(showType(t)) - } + case PMethodReceiveActualPointer(t) => "*" <> showType(t) } def showGhostType(typ : PGhostType) : Doc = typ match { @@ -660,6 +657,7 @@ class DefaultPrettyPrinter extends PrettyPrinter with kiama.output.PrettyPrinter ssep((funcs ++ axioms) map showMisc, line) ) case PAdtType(clauses) => "adt" <> block(ssep(clauses map showMisc, line)) + case PMethodReceiveGhostPointer(t) => "gpointer" <> brackets(showType(t)) } def showStructClause(c: PStructClause): Doc = c match { diff --git a/src/main/scala/viper/gobra/frontend/Desugar.scala b/src/main/scala/viper/gobra/frontend/Desugar.scala index 49d8927b7..b236f7317 100644 --- a/src/main/scala/viper/gobra/frontend/Desugar.scala +++ b/src/main/scala/viper/gobra/frontend/Desugar.scala @@ -3750,7 +3750,7 @@ object Desugar extends LazyLogging { in.MapT(keysD, valuesD, addrMod) case Type.GhostSliceT(elem) => in.SliceT(typeD(elem, Addressability.sliceElement)(src), addrMod) case Type.OptionT(elem) => in.OptionT(typeD(elem, Addressability.mathDataStructureElement)(src), addrMod) - case p: Type.PointerT => registerType(in.PointerT(typeD(p.elem, Addressability.pointerBase)(src), addrMod)) + case Type.PointerT(elem) => registerType(in.PointerT(typeD(elem, Addressability.pointerBase)(src), addrMod)) case Type.ChannelT(elem, _) => in.ChannelT(typeD(elem, Addressability.channelElement)(src), addrMod) case Type.SequenceT(elem) => in.SequenceT(typeD(elem, Addressability.mathDataStructureElement)(src), addrMod) case Type.SetT(elem) => in.SetT(typeD(elem, Addressability.mathDataStructureElement)(src), addrMod) diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/property/UnderlyingType.scala b/src/main/scala/viper/gobra/frontend/info/implementation/property/UnderlyingType.scala index 6131c6548..d9c47981b 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/property/UnderlyingType.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/property/UnderlyingType.scala @@ -9,7 +9,7 @@ package viper.gobra.frontend.info.implementation.property import viper.gobra.ast.frontend.{PDeref, PDot, PEmbeddedName, PEmbeddedPointer, PEmbeddedType, PInterfaceType, PNamedOperand, PStructType, PType, PTypeDecl} import viper.gobra.frontend.info.ExternalTypeInfo import viper.gobra.frontend.info.base.BuiltInMemberTag.BuiltInTypeTag -import viper.gobra.frontend.info.base.Type.{ActualPointerT, BooleanT, ChannelT, DeclaredT, FunctionT, GhostSliceT, IntT, InterfaceT, MapT, NilType, PointerT, Single, SliceT, StringT, StructT, Type} +import viper.gobra.frontend.info.base.Type.{BooleanT, ChannelT, DeclaredT, FunctionT, GhostSliceT, IntT, InterfaceT, MapT, NilType, PointerT, Single, SliceT, StringT, StructT, Type} import viper.gobra.frontend.info.base.{SymbolTable => st} import viper.gobra.frontend.info.implementation.TypeInfoImpl @@ -65,7 +65,7 @@ trait UnderlyingType { this: TypeInfoImpl => lazy val derefType: Type => Option[Type] = attr[Type, Option[Type]] { case Single(DeclaredT(t: PTypeDecl, context: ExternalTypeInfo)) => derefType(context.symbType(t.right)) - case Single(p: PointerT) => Some(p.elem) + case Single(PointerT(elem)) => Some(elem) case _ => None } @@ -200,7 +200,7 @@ trait UnderlyingType { this: TypeInfoImpl => lazy val isReceiverType: Property[Type] = createBinaryProperty("not a receiver type") { case _: DeclaredT => true - case ActualPointerT(t) => t.isInstanceOf[DeclaredT] + case PointerT(t) => t.isInstanceOf[DeclaredT] case _ => false } diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/typing/TypeTyping.scala b/src/main/scala/viper/gobra/frontend/info/implementation/typing/TypeTyping.scala index bf085e8fc..f28bc6505 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/typing/TypeTyping.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/typing/TypeTyping.scala @@ -130,10 +130,7 @@ trait TypeTyping extends BaseTyping { this: TypeInfoImpl => case PMethodReceiveName(t) => typeSymbType(t) - case r: PMethodReceivePointer => r match { - case PMethodReceiveActualPointer(t) => ActualPointerT(typeSymbType(t)) - case PMethodReceiveGhostPointer(t) => GhostPointerT(typeSymbType(t)) - } + case PMethodReceiveActualPointer(t) => ActualPointerT(typeSymbType(t)) case PFunctionType(args, r) => FunctionT(args map miscType, miscType(r)) diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/GhostTypeTyping.scala b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/GhostTypeTyping.scala index 3ef5392cc..390aa2b54 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/GhostTypeTyping.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/GhostTypeTyping.scala @@ -23,6 +23,7 @@ trait GhostTypeTyping extends BaseTyping { this : TypeInfoImpl => case POptionType(elem) => isType(elem).out case PGhostPointerType(elem) => isType(elem).out case n: PGhostSliceType => isType(n.elem).out + case n: PMethodReceivePointer => isType(n.typ).out case _: PDomainType => noMessages case n: PAdtType => n match { @@ -42,6 +43,7 @@ trait GhostTypeTyping extends BaseTyping { this : TypeInfoImpl => case POptionType(elem) => OptionT(typeSymbType(elem)) case PGhostPointerType(elem) => GhostPointerT(typeSymbType(elem)) case PGhostSliceType(elem) => GhostSliceT(typeSymbType(elem)) + case PMethodReceiveGhostPointer(t) => GhostPointerT(typeSymbType(t)) case t: PDomainType => DomainT(t, this) case a: PAdtType => adtSymbType(a) } diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostAssignability.scala b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostAssignability.scala index 1debc4c96..f0792f8e1 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostAssignability.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostAssignability.scala @@ -11,7 +11,6 @@ import viper.gobra.ast.frontend._ import viper.gobra.frontend.info.implementation.TypeInfoImpl import viper.gobra.ast.frontend.{AstPattern => ap} import viper.gobra.frontend.info.ExternalTypeInfo -import viper.gobra.frontend.info.base.Type import viper.gobra.frontend.info.implementation.property.{AssignMode, NonStrictAssignMode} import viper.gobra.frontend.info.implementation.typing.ghost.separation.GhostType.ghost import viper.gobra.util.Violation @@ -107,7 +106,7 @@ trait GhostAssignability { error(left, "ghost error: ghost cannot be assigned to non-ghost", isRightGhost && !ghostIdClassification(id)) case n: PDot => exprOrType(n.base) match { - case Left(base) => // x.f := e ~ ghost(e) ==> ghostassignee(x.f) + case Left(_) => // x.f := e ~ ghost(e) ==> ghostassignee(x.f) error(left, "ghost error: ghost cannot be assigned to non-ghost location", isRightGhost && !ghostLocationClassification(left)) case _ if resolve(n).exists(_.isInstanceOf[ap.GlobalVariable]) => error(left, "ghost error: ghost cannot be assigned to a global variable", isRightGhost) diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostWellDef.scala b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostWellDef.scala index 0bb8afe39..7c9f161d1 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostWellDef.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostWellDef.scala @@ -46,6 +46,9 @@ trait GhostWellDef { this: TypeInfoImpl => case m if isEnclosingGhost(m) => noMessages + case m: PMethodDecl => error(m, "ghost error: expected an actual receiver type", + isTypeGhost(m.receiver.typ) && !isEnclosingGhost(m)) + case _ => noMessages } diff --git a/src/test/resources/regressions/features/ghost_pointer/ghost-pointer-receiver-fail01.gobra b/src/test/resources/regressions/features/ghost_pointer/ghost-pointer-receiver-fail01.gobra new file mode 100644 index 000000000..412e66ed4 --- /dev/null +++ b/src/test/resources/regressions/features/ghost_pointer/ghost-pointer-receiver-fail01.gobra @@ -0,0 +1,32 @@ +// Any copyright is dedicated to the Public Domain. +// http://creativecommons.org/publicdomain/zero/1.0/ + +package GhostPointerReceiverFail01 + +type Foo struct { + field int +} + +ghost +decreases +func GhostFunc() { + p := &Foo{ 42 } + p.bar1() + //:: ExpectedOutput(type_error) + p.bar2() // bar2 is not defined on a ghost pointer +} + +decreases +//:: ExpectedOutput(type_error) +func (r gpointer[Foo]) bar1() int { // ghostpointer is only allowed for ghost methods + r.field = 0 + return 42 +} + +ghost +decreases +func (r *Foo) bar2() int { + //:: ExpectedOutput(type_error) + r.field = 0 // fails since we're trying to modify actual memory + return r.field +} diff --git a/src/test/resources/regressions/features/ghost_pointer/ghost-pointer-receiver-simple01.gobra b/src/test/resources/regressions/features/ghost_pointer/ghost-pointer-receiver-simple01.gobra new file mode 100644 index 000000000..c21f3a77a --- /dev/null +++ b/src/test/resources/regressions/features/ghost_pointer/ghost-pointer-receiver-simple01.gobra @@ -0,0 +1,47 @@ +// Any copyright is dedicated to the Public Domain. +// http://creativecommons.org/publicdomain/zero/1.0/ + +package GhostPointerReceiverSimple01 + +type Foo struct { + field int +} + +ghost +decreases +preserves acc(p) +func GhostFunc(p *Foo) { + gp := &Foo{ 42 } + gp.bar1() + + p.bar2() + (*p).bar3() + (*gp).bar3() +} + +ghost +decreases +preserves acc(r) +func (r gpointer[Foo]) bar1() int { + r.field = 0 + return r.field +} + +decreases +preserves acc(r) +func (r *Foo) bar2() int { + r.field = 0 + return r.field +} + +ghost +decreases +func (r Foo) bar3() int { + r.field = 42 + return r.field +} + +func (r Foo) bar4() int { + r.field = 42 + return r.field +} From c7ae8bb261201fc555eda57fac603ce2338b08af Mon Sep 17 00:00:00 2001 From: Linard Arquint Date: Sun, 24 Mar 2024 19:45:48 +0100 Subject: [PATCH 11/16] simplifies diff further --- .../info/implementation/resolution/MemberResolution.scala | 2 +- .../frontend/info/implementation/typing/ExprTyping.scala | 4 ++-- .../frontend/info/implementation/typing/MiscTyping.scala | 4 ++-- .../info/implementation/typing/ghost/GhostTypeTyping.scala | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/resolution/MemberResolution.scala b/src/main/scala/viper/gobra/frontend/info/implementation/resolution/MemberResolution.scala index e2a61394c..ff21f6c06 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/resolution/MemberResolution.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/resolution/MemberResolution.scala @@ -50,7 +50,7 @@ trait MemberResolution { this: TypeInfoImpl => def go(pastDeref: Boolean): Type => AdvancedMemberSet[StructMember] = attr[Type, AdvancedMemberSet[StructMember]] { case DeclaredT(decl, context) => go(pastDeref)(context.symbType(decl.right)).surface - case p: PointerT if !pastDeref => go(pastDeref = true)(p.elem).ref + case PointerT(t) if !pastDeref => go(pastDeref = true)(t).ref case s: StructT => val (es, fs) = (s.decl.embedded, s.decl.fields) diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ExprTyping.scala b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ExprTyping.scala index f00b7b685..8d5826598 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ExprTyping.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ExprTyping.scala @@ -43,7 +43,7 @@ trait ExprTyping extends BaseTyping { this: TypeInfoImpl => resolve(n) match { case Some(p: ap.Deref) => exprType(p.base) match { - case Single(_: PointerT) => noMessages + case Single(PointerT(_)) => noMessages case t => error(n, s"expected pointer type but got $t") } @@ -101,7 +101,7 @@ trait ExprTyping extends BaseTyping { this: TypeInfoImpl => resolve(n) match { case Some(p: ap.Deref) => exprType(p.base) match { - case Single(p: PointerT) => p.elem + case Single(PointerT(t)) => t case t => violation(s"expected pointer but got $t") } case Some(_: ap.PointerType) => SortT diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/typing/MiscTyping.scala b/src/main/scala/viper/gobra/frontend/info/implementation/typing/MiscTyping.scala index 523d34ee8..c27b99fb9 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/typing/MiscTyping.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/typing/MiscTyping.scala @@ -26,7 +26,7 @@ trait MiscTyping extends BaseTyping { this: TypeInfoImpl => case n@PRange(exp, _) => isExpr(exp).out ++ (underlyingType(exprType(exp)) match { case _: ArrayT | PointerT(_: ArrayT) | _: SliceT | _: GhostSliceT | _: MapT | - ChannelT(_, ChannelModus.Recv | ChannelModus.Bi) => noMessages + ChannelT(_, ChannelModus.Recv | ChannelModus.Bi) => noMessages case t => message(n, s"type error: got $t but expected rangeable type") }) @@ -52,7 +52,7 @@ trait MiscTyping extends BaseTyping { this: TypeInfoImpl => case PRange(exp, _) => underlyingType(exprType(exp)) match { case ArrayT(_, elem) => InternalSingleMulti(IntT(config.typeBounds.Int), InternalTupleT(Vector(IntT(config.typeBounds.Int), elem))) - case ActualPointerT(ArrayT(_, elem)) => InternalSingleMulti(IntT(config.typeBounds.Int), InternalTupleT(Vector(IntT(config.typeBounds.Int), elem))) + case PointerT(ArrayT(_, elem)) => InternalSingleMulti(IntT(config.typeBounds.Int), InternalTupleT(Vector(IntT(config.typeBounds.Int), elem))) case SliceT(elem) => InternalSingleMulti(IntT(config.typeBounds.Int), InternalTupleT(Vector(IntT(config.typeBounds.Int), elem))) case GhostSliceT(elem) => InternalSingleMulti(IntT(config.typeBounds.Int), InternalTupleT(Vector(IntT(config.typeBounds.Int), elem))) case MapT(key, elem) => InternalSingleMulti(key, InternalTupleT(Vector(key, elem))) diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/GhostTypeTyping.scala b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/GhostTypeTyping.scala index 390aa2b54..ac2c76e9c 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/GhostTypeTyping.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/GhostTypeTyping.scala @@ -23,7 +23,7 @@ trait GhostTypeTyping extends BaseTyping { this : TypeInfoImpl => case POptionType(elem) => isType(elem).out case PGhostPointerType(elem) => isType(elem).out case n: PGhostSliceType => isType(n.elem).out - case n: PMethodReceivePointer => isType(n.typ).out + case PMethodReceiveGhostPointer(t) => isType(t).out case _: PDomainType => noMessages case n: PAdtType => n match { From 461517a9a8f74245367185b7126dfcfe59cf2198 Mon Sep 17 00:00:00 2001 From: Linard Arquint Date: Sun, 24 Mar 2024 22:31:34 +0100 Subject: [PATCH 12/16] fixes a unit test --- .../features/ghost_pointer/ghost-pointer-receiver-fail01.gobra | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/test/resources/regressions/features/ghost_pointer/ghost-pointer-receiver-fail01.gobra b/src/test/resources/regressions/features/ghost_pointer/ghost-pointer-receiver-fail01.gobra index 412e66ed4..d8c9e4d32 100644 --- a/src/test/resources/regressions/features/ghost_pointer/ghost-pointer-receiver-fail01.gobra +++ b/src/test/resources/regressions/features/ghost_pointer/ghost-pointer-receiver-fail01.gobra @@ -16,8 +16,9 @@ func GhostFunc() { p.bar2() // bar2 is not defined on a ghost pointer } -decreases +// note that the type error refers to the receiver but is (for technical reasons) located at the beginning of the function declaration //:: ExpectedOutput(type_error) +decreases func (r gpointer[Foo]) bar1() int { // ghostpointer is only allowed for ghost methods r.field = 0 return 42 From 9ff5a0680a5bb49140305c20207a4cd82ac86660 Mon Sep 17 00:00:00 2001 From: Linard Arquint Date: Wed, 27 Mar 2024 09:32:44 +0100 Subject: [PATCH 13/16] applies CR suggestions by Felix Co-authored-by: Felix Wolf <60103963+Felalolf@users.noreply.github.com> --- src/main/scala/viper/gobra/frontend/Desugar.scala | 2 ++ .../typing/ghost/separation/GhostAssignability.scala | 2 +- .../implementation/typing/ghost/separation/GhostTyping.scala | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/scala/viper/gobra/frontend/Desugar.scala b/src/main/scala/viper/gobra/frontend/Desugar.scala index 5b305392c..d044058a1 100644 --- a/src/main/scala/viper/gobra/frontend/Desugar.scala +++ b/src/main/scala/viper/gobra/frontend/Desugar.scala @@ -3017,6 +3017,8 @@ object Desugar extends LazyLogging { // Both will have type Pointer(typeOf(v)) val src: Meta = meta(v, info) val refAlias = nm.refAlias(idName(v, info), info.scope(v), info) + // If `v` is a ghost variable, we consider `param` a ghost pointer. + // However, we can use ActualPointer here since there is a single internal pointer type only. val param = in.Parameter.In(refAlias, typeD(ActualPointerT(info.typ(v)), Addressability.inParameter)(src))(src) val localVar = in.LocalVar(nm.alias(refAlias, info.scope(v), info), param.typ)(src) (param, localVar) diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostAssignability.scala b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostAssignability.scala index f0792f8e1..d3d946e86 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostAssignability.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostAssignability.scala @@ -118,7 +118,7 @@ trait GhostAssignability { // handles the case of assignments in ghost code private def ghostAssigneeAssignmentMsgInGhostCode(left: PAssignee): Messages = - error(left, s"ghost error: only ghost locations can be assigned to in ghost code}", !ghostLocationClassification(left)) + error(left, s"ghost error: only ghost locations can be assigned to in ghost code", !ghostLocationClassification(left)) /** conservative ghost separation assignment check */ private[separation] def ghostAssignableToId(exprs: PExpression*)(lefts: PIdnNode*): Messages = diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostTyping.scala b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostTyping.scala index a5da2ccc0..aeb011743 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostTyping.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostTyping.scala @@ -142,7 +142,7 @@ trait GhostTyping extends GhostClassifier { this: TypeInfoImpl => val isGhostField = ghostIdClassification(s.id) (typ(s.base), isGhostField) match { case (_, true) => isGhost // ghost fields are always ghost memory - case (tb: Type.PointerT, _) => ghost(tb.isInstanceOf[Type.GhostPointerT]) // (implicitly) dereferencing a ghost pointer leads to a ghost heap location + case (tb: Type.PointerT, _) => ghost(tb.isInstanceOf[Type.GhostPointerT]) // (implicitly) dereferencing a field of a ghost pointer leads to a ghost heap location case _ => ghostLocationTyping(s.base) // assignee is on the stack, recurse to find out if it's a ghost or actual variable } case Some(g: ap.GlobalVariable) => ghost(g.symb.ghost) From fd98dccb0ed8a1cb31f05ae788f9d42771bbaa76 Mon Sep 17 00:00:00 2001 From: Linard Arquint Date: Thu, 28 Mar 2024 08:48:58 +0100 Subject: [PATCH 14/16] regenerates parser --- .../java/viper/gobra/frontend/GobraLexer.java | 644 +++++++++--------- .../viper/gobra/frontend/GobraParser.java | 4 +- .../frontend/GobraParserBaseVisitor.java | 2 +- .../gobra/frontend/GobraParserVisitor.java | 2 +- 4 files changed, 328 insertions(+), 324 deletions(-) diff --git a/src/main/java/viper/gobra/frontend/GobraLexer.java b/src/main/java/viper/gobra/frontend/GobraLexer.java index a0fbbaaf0..96641cdc3 100644 --- a/src/main/java/viper/gobra/frontend/GobraLexer.java +++ b/src/main/java/viper/gobra/frontend/GobraLexer.java @@ -1,4 +1,4 @@ -// Generated from src/main/antlr4/GobraLexer.g4 by ANTLR 4.12.0 +// Generated from src/main/antlr4/GobraLexer.g4 by ANTLR 4.13.1 package viper.gobra.frontend; import org.antlr.v4.runtime.Lexer; import org.antlr.v4.runtime.CharStream; @@ -9,9 +9,9 @@ import org.antlr.v4.runtime.dfa.DFA; import org.antlr.v4.runtime.misc.*; -@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast", "CheckReturnValue"}) +@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast", "CheckReturnValue", "this-escape"}) public class GobraLexer extends Lexer { - static { RuntimeMetaData.checkVersion("4.12.0", RuntimeMetaData.VERSION); } + static { RuntimeMetaData.checkVersion("4.13.1", RuntimeMetaData.VERSION); } protected static final DFA[] _decisionToDFA; protected static final PredictionContextCache _sharedContextCache = @@ -445,7 +445,7 @@ private boolean DECIMAL_FLOAT_LIT_sempred(RuleContext _localctx, int predIndex) "\u0000PPpp\u0002\u0000++--\u0001\u0000``\u0002\u0000\"\"\\\\\u0002\u0000"+ "\t\t \u0002\u0000\n\n\r\r\u0003\u0000\n\n\r\r\'\'\t\u0000\"\"\'\'\\\\"+ "abffnnrrttvv\u0001\u000007\u0003\u000009AFaf\u0001\u000001\u0002\u0000"+ - "EEee>\u000009\u0660\u0669\u06f0\u06f9\u07c0\u07c9\u0966\u096f\u09e6\u09ef"+ + "EEee@\u000009\u0660\u0669\u06f0\u06f9\u07c0\u07c9\u0966\u096f\u09e6\u09ef"+ "\u0a66\u0a6f\u0ae6\u0aef\u0b66\u0b6f\u0be6\u0bef\u0c66\u0c6f\u0ce6\u0cef"+ "\u0d66\u0d6f\u0de6\u0def\u0e50\u0e59\u0ed0\u0ed9\u0f20\u0f29\u1040\u1049"+ "\u1090\u1099\u17e0\u17e9\u1810\u1819\u1946\u194f\u19d0\u19d9\u1a80\u1a89"+ @@ -458,115 +458,116 @@ private boolean DECIMAL_FLOAT_LIT_sempred(RuleContext _localctx, int predIndex) "\u8001\u1459\u8001\u14d0\u8001\u14d9\u8001\u1650\u8001\u1659\u8001\u16c0"+ "\u8001\u16c9\u8001\u1730\u8001\u1739\u8001\u18e0\u8001\u18e9\u8001\u1950"+ "\u8001\u1959\u8001\u1c50\u8001\u1c59\u8001\u1d50\u8001\u1d59\u8001\u1da0"+ - "\u8001\u1da9\u8001\u6a60\u8001\u6a69\u8001\u6ac0\u8001\u6ac9\u8001\u6b50"+ - "\u8001\u6b59\u8001\ud7ce\u8001\ud7ff\u8001\ue140\u8001\ue149\u8001\ue2f0"+ - "\u8001\ue2f9\u8001\ue950\u8001\ue959\u8001\ufbf0\u8001\ufbf9\u0288\u0000"+ - "AZaz\u00aa\u00aa\u00b5\u00b5\u00ba\u00ba\u00c0\u00d6\u00d8\u00f6\u00f8"+ - "\u02c1\u02c6\u02d1\u02e0\u02e4\u02ec\u02ec\u02ee\u02ee\u0370\u0374\u0376"+ - "\u0377\u037a\u037d\u037f\u037f\u0386\u0386\u0388\u038a\u038c\u038c\u038e"+ - "\u03a1\u03a3\u03f5\u03f7\u0481\u048a\u052f\u0531\u0556\u0559\u0559\u0560"+ - "\u0588\u05d0\u05ea\u05ef\u05f2\u0620\u064a\u066e\u066f\u0671\u06d3\u06d5"+ - "\u06d5\u06e5\u06e6\u06ee\u06ef\u06fa\u06fc\u06ff\u06ff\u0710\u0710\u0712"+ - "\u072f\u074d\u07a5\u07b1\u07b1\u07ca\u07ea\u07f4\u07f5\u07fa\u07fa\u0800"+ - "\u0815\u081a\u081a\u0824\u0824\u0828\u0828\u0840\u0858\u0860\u086a\u0870"+ - "\u0887\u0889\u088e\u08a0\u08c9\u0904\u0939\u093d\u093d\u0950\u0950\u0958"+ - "\u0961\u0971\u0980\u0985\u098c\u098f\u0990\u0993\u09a8\u09aa\u09b0\u09b2"+ - "\u09b2\u09b6\u09b9\u09bd\u09bd\u09ce\u09ce\u09dc\u09dd\u09df\u09e1\u09f0"+ - "\u09f1\u09fc\u09fc\u0a05\u0a0a\u0a0f\u0a10\u0a13\u0a28\u0a2a\u0a30\u0a32"+ - "\u0a33\u0a35\u0a36\u0a38\u0a39\u0a59\u0a5c\u0a5e\u0a5e\u0a72\u0a74\u0a85"+ - "\u0a8d\u0a8f\u0a91\u0a93\u0aa8\u0aaa\u0ab0\u0ab2\u0ab3\u0ab5\u0ab9\u0abd"+ - "\u0abd\u0ad0\u0ad0\u0ae0\u0ae1\u0af9\u0af9\u0b05\u0b0c\u0b0f\u0b10\u0b13"+ - "\u0b28\u0b2a\u0b30\u0b32\u0b33\u0b35\u0b39\u0b3d\u0b3d\u0b5c\u0b5d\u0b5f"+ - "\u0b61\u0b71\u0b71\u0b83\u0b83\u0b85\u0b8a\u0b8e\u0b90\u0b92\u0b95\u0b99"+ - "\u0b9a\u0b9c\u0b9c\u0b9e\u0b9f\u0ba3\u0ba4\u0ba8\u0baa\u0bae\u0bb9\u0bd0"+ - "\u0bd0\u0c05\u0c0c\u0c0e\u0c10\u0c12\u0c28\u0c2a\u0c39\u0c3d\u0c3d\u0c58"+ - "\u0c5a\u0c5d\u0c5d\u0c60\u0c61\u0c80\u0c80\u0c85\u0c8c\u0c8e\u0c90\u0c92"+ - "\u0ca8\u0caa\u0cb3\u0cb5\u0cb9\u0cbd\u0cbd\u0cdd\u0cde\u0ce0\u0ce1\u0cf1"+ - "\u0cf2\u0d04\u0d0c\u0d0e\u0d10\u0d12\u0d3a\u0d3d\u0d3d\u0d4e\u0d4e\u0d54"+ - "\u0d56\u0d5f\u0d61\u0d7a\u0d7f\u0d85\u0d96\u0d9a\u0db1\u0db3\u0dbb\u0dbd"+ - "\u0dbd\u0dc0\u0dc6\u0e01\u0e30\u0e32\u0e33\u0e40\u0e46\u0e81\u0e82\u0e84"+ - "\u0e84\u0e86\u0e8a\u0e8c\u0ea3\u0ea5\u0ea5\u0ea7\u0eb0\u0eb2\u0eb3\u0ebd"+ - "\u0ebd\u0ec0\u0ec4\u0ec6\u0ec6\u0edc\u0edf\u0f00\u0f00\u0f40\u0f47\u0f49"+ - "\u0f6c\u0f88\u0f8c\u1000\u102a\u103f\u103f\u1050\u1055\u105a\u105d\u1061"+ - "\u1061\u1065\u1066\u106e\u1070\u1075\u1081\u108e\u108e\u10a0\u10c5\u10c7"+ - "\u10c7\u10cd\u10cd\u10d0\u10fa\u10fc\u1248\u124a\u124d\u1250\u1256\u1258"+ - "\u1258\u125a\u125d\u1260\u1288\u128a\u128d\u1290\u12b0\u12b2\u12b5\u12b8"+ - "\u12be\u12c0\u12c0\u12c2\u12c5\u12c8\u12d6\u12d8\u1310\u1312\u1315\u1318"+ - "\u135a\u1380\u138f\u13a0\u13f5\u13f8\u13fd\u1401\u166c\u166f\u167f\u1681"+ - "\u169a\u16a0\u16ea\u16f1\u16f8\u1700\u1711\u171f\u1731\u1740\u1751\u1760"+ - "\u176c\u176e\u1770\u1780\u17b3\u17d7\u17d7\u17dc\u17dc\u1820\u1878\u1880"+ - "\u1884\u1887\u18a8\u18aa\u18aa\u18b0\u18f5\u1900\u191e\u1950\u196d\u1970"+ - "\u1974\u1980\u19ab\u19b0\u19c9\u1a00\u1a16\u1a20\u1a54\u1aa7\u1aa7\u1b05"+ - "\u1b33\u1b45\u1b4c\u1b83\u1ba0\u1bae\u1baf\u1bba\u1be5\u1c00\u1c23\u1c4d"+ - "\u1c4f\u1c5a\u1c7d\u1c80\u1c88\u1c90\u1cba\u1cbd\u1cbf\u1ce9\u1cec\u1cee"+ - "\u1cf3\u1cf5\u1cf6\u1cfa\u1cfa\u1d00\u1dbf\u1e00\u1f15\u1f18\u1f1d\u1f20"+ - "\u1f45\u1f48\u1f4d\u1f50\u1f57\u1f59\u1f59\u1f5b\u1f5b\u1f5d\u1f5d\u1f5f"+ - "\u1f7d\u1f80\u1fb4\u1fb6\u1fbc\u1fbe\u1fbe\u1fc2\u1fc4\u1fc6\u1fcc\u1fd0"+ - "\u1fd3\u1fd6\u1fdb\u1fe0\u1fec\u1ff2\u1ff4\u1ff6\u1ffc\u2071\u2071\u207f"+ - "\u207f\u2090\u209c\u2102\u2102\u2107\u2107\u210a\u2113\u2115\u2115\u2119"+ - "\u211d\u2124\u2124\u2126\u2126\u2128\u2128\u212a\u212d\u212f\u2139\u213c"+ - "\u213f\u2145\u2149\u214e\u214e\u2183\u2184\u2c00\u2ce4\u2ceb\u2cee\u2cf2"+ - "\u2cf3\u2d00\u2d25\u2d27\u2d27\u2d2d\u2d2d\u2d30\u2d67\u2d6f\u2d6f\u2d80"+ - "\u2d96\u2da0\u2da6\u2da8\u2dae\u2db0\u2db6\u2db8\u2dbe\u2dc0\u2dc6\u2dc8"+ - "\u2dce\u2dd0\u2dd6\u2dd8\u2dde\u2e2f\u2e2f\u3005\u3006\u3031\u3035\u303b"+ - "\u303c\u3041\u3096\u309d\u309f\u30a1\u30fa\u30fc\u30ff\u3105\u312f\u3131"+ - "\u318e\u31a0\u31bf\u31f0\u31ff\u3400\u4dbf\u4e00\u8000\ua48c\u8000\ua4d0"+ - "\u8000\ua4fd\u8000\ua500\u8000\ua60c\u8000\ua610\u8000\ua61f\u8000\ua62a"+ - "\u8000\ua62b\u8000\ua640\u8000\ua66e\u8000\ua67f\u8000\ua69d\u8000\ua6a0"+ - "\u8000\ua6e5\u8000\ua717\u8000\ua71f\u8000\ua722\u8000\ua788\u8000\ua78b"+ - "\u8000\ua7ca\u8000\ua7d0\u8000\ua7d1\u8000\ua7d3\u8000\ua7d3\u8000\ua7d5"+ - "\u8000\ua7d9\u8000\ua7f2\u8000\ua801\u8000\ua803\u8000\ua805\u8000\ua807"+ - "\u8000\ua80a\u8000\ua80c\u8000\ua822\u8000\ua840\u8000\ua873\u8000\ua882"+ - "\u8000\ua8b3\u8000\ua8f2\u8000\ua8f7\u8000\ua8fb\u8000\ua8fb\u8000\ua8fd"+ - "\u8000\ua8fe\u8000\ua90a\u8000\ua925\u8000\ua930\u8000\ua946\u8000\ua960"+ - "\u8000\ua97c\u8000\ua984\u8000\ua9b2\u8000\ua9cf\u8000\ua9cf\u8000\ua9e0"+ - "\u8000\ua9e4\u8000\ua9e6\u8000\ua9ef\u8000\ua9fa\u8000\ua9fe\u8000\uaa00"+ - "\u8000\uaa28\u8000\uaa40\u8000\uaa42\u8000\uaa44\u8000\uaa4b\u8000\uaa60"+ - "\u8000\uaa76\u8000\uaa7a\u8000\uaa7a\u8000\uaa7e\u8000\uaaaf\u8000\uaab1"+ - "\u8000\uaab1\u8000\uaab5\u8000\uaab6\u8000\uaab9\u8000\uaabd\u8000\uaac0"+ - "\u8000\uaac0\u8000\uaac2\u8000\uaac2\u8000\uaadb\u8000\uaadd\u8000\uaae0"+ - "\u8000\uaaea\u8000\uaaf2\u8000\uaaf4\u8000\uab01\u8000\uab06\u8000\uab09"+ - "\u8000\uab0e\u8000\uab11\u8000\uab16\u8000\uab20\u8000\uab26\u8000\uab28"+ - "\u8000\uab2e\u8000\uab30\u8000\uab5a\u8000\uab5c\u8000\uab69\u8000\uab70"+ - "\u8000\uabe2\u8000\uac00\u8000\ud7a3\u8000\ud7b0\u8000\ud7c6\u8000\ud7cb"+ - "\u8000\ud7fb\u8000\uf900\u8000\ufa6d\u8000\ufa70\u8000\ufad9\u8000\ufb00"+ - "\u8000\ufb06\u8000\ufb13\u8000\ufb17\u8000\ufb1d\u8000\ufb1d\u8000\ufb1f"+ - "\u8000\ufb28\u8000\ufb2a\u8000\ufb36\u8000\ufb38\u8000\ufb3c\u8000\ufb3e"+ - "\u8000\ufb3e\u8000\ufb40\u8000\ufb41\u8000\ufb43\u8000\ufb44\u8000\ufb46"+ - "\u8000\ufbb1\u8000\ufbd3\u8000\ufd3d\u8000\ufd50\u8000\ufd8f\u8000\ufd92"+ - "\u8000\ufdc7\u8000\ufdf0\u8000\ufdfb\u8000\ufe70\u8000\ufe74\u8000\ufe76"+ - "\u8000\ufefc\u8000\uff21\u8000\uff3a\u8000\uff41\u8000\uff5a\u8000\uff66"+ - "\u8000\uffbe\u8000\uffc2\u8000\uffc7\u8000\uffca\u8000\uffcf\u8000\uffd2"+ - "\u8000\uffd7\u8000\uffda\u8000\uffdc\u8001\u0000\u8001\u000b\u8001\r\u8001"+ - "&\u8001(\u8001:\u8001<\u8001=\u8001?\u8001M\u8001P\u8001]\u8001\u0080"+ - "\u8001\u00fa\u8001\u0280\u8001\u029c\u8001\u02a0\u8001\u02d0\u8001\u0300"+ - "\u8001\u031f\u8001\u032d\u8001\u0340\u8001\u0342\u8001\u0349\u8001\u0350"+ - "\u8001\u0375\u8001\u0380\u8001\u039d\u8001\u03a0\u8001\u03c3\u8001\u03c8"+ - "\u8001\u03cf\u8001\u0400\u8001\u049d\u8001\u04b0\u8001\u04d3\u8001\u04d8"+ - "\u8001\u04fb\u8001\u0500\u8001\u0527\u8001\u0530\u8001\u0563\u8001\u0570"+ - "\u8001\u057a\u8001\u057c\u8001\u058a\u8001\u058c\u8001\u0592\u8001\u0594"+ - "\u8001\u0595\u8001\u0597\u8001\u05a1\u8001\u05a3\u8001\u05b1\u8001\u05b3"+ - "\u8001\u05b9\u8001\u05bb\u8001\u05bc\u8001\u0600\u8001\u0736\u8001\u0740"+ - "\u8001\u0755\u8001\u0760\u8001\u0767\u8001\u0780\u8001\u0785\u8001\u0787"+ - "\u8001\u07b0\u8001\u07b2\u8001\u07ba\u8001\u0800\u8001\u0805\u8001\u0808"+ - "\u8001\u0808\u8001\u080a\u8001\u0835\u8001\u0837\u8001\u0838\u8001\u083c"+ - "\u8001\u083c\u8001\u083f\u8001\u0855\u8001\u0860\u8001\u0876\u8001\u0880"+ - "\u8001\u089e\u8001\u08e0\u8001\u08f2\u8001\u08f4\u8001\u08f5\u8001\u0900"+ - "\u8001\u0915\u8001\u0920\u8001\u0939\u8001\u0980\u8001\u09b7\u8001\u09be"+ - "\u8001\u09bf\u8001\u0a00\u8001\u0a00\u8001\u0a10\u8001\u0a13\u8001\u0a15"+ - "\u8001\u0a17\u8001\u0a19\u8001\u0a35\u8001\u0a60\u8001\u0a7c\u8001\u0a80"+ - "\u8001\u0a9c\u8001\u0ac0\u8001\u0ac7\u8001\u0ac9\u8001\u0ae4\u8001\u0b00"+ - "\u8001\u0b35\u8001\u0b40\u8001\u0b55\u8001\u0b60\u8001\u0b72\u8001\u0b80"+ - "\u8001\u0b91\u8001\u0c00\u8001\u0c48\u8001\u0c80\u8001\u0cb2\u8001\u0cc0"+ - "\u8001\u0cf2\u8001\u0d00\u8001\u0d23\u8001\u0e80\u8001\u0ea9\u8001\u0eb0"+ - "\u8001\u0eb1\u8001\u0f00\u8001\u0f1c\u8001\u0f27\u8001\u0f27\u8001\u0f30"+ - "\u8001\u0f45\u8001\u0f70\u8001\u0f81\u8001\u0fb0\u8001\u0fc4\u8001\u0fe0"+ - "\u8001\u0ff6\u8001\u1003\u8001\u1037\u8001\u1071\u8001\u1072\u8001\u1075"+ - "\u8001\u1075\u8001\u1083\u8001\u10af\u8001\u10d0\u8001\u10e8\u8001\u1103"+ - "\u8001\u1126\u8001\u1144\u8001\u1144\u8001\u1147\u8001\u1147\u8001\u1150"+ - "\u8001\u1172\u8001\u1176\u8001\u1176\u8001\u1183\u8001\u11b2\u8001\u11c1"+ - "\u8001\u11c4\u8001\u11da\u8001\u11da\u8001\u11dc\u8001\u11dc\u8001\u1200"+ - "\u8001\u1211\u8001\u1213\u8001\u122b\u8001\u1280\u8001\u1286\u8001\u1288"+ + "\u8001\u1da9\u8001\u1f50\u8001\u1f59\u8001\u6a60\u8001\u6a69\u8001\u6ac0"+ + "\u8001\u6ac9\u8001\u6b50\u8001\u6b59\u8001\ud7ce\u8001\ud7ff\u8001\ue140"+ + "\u8001\ue149\u8001\ue2f0\u8001\ue2f9\u8001\ue4f0\u8001\ue4f9\u8001\ue950"+ + "\u8001\ue959\u8001\ufbf0\u8001\ufbf9\u0293\u0000AZaz\u00aa\u00aa\u00b5"+ + "\u00b5\u00ba\u00ba\u00c0\u00d6\u00d8\u00f6\u00f8\u02c1\u02c6\u02d1\u02e0"+ + "\u02e4\u02ec\u02ec\u02ee\u02ee\u0370\u0374\u0376\u0377\u037a\u037d\u037f"+ + "\u037f\u0386\u0386\u0388\u038a\u038c\u038c\u038e\u03a1\u03a3\u03f5\u03f7"+ + "\u0481\u048a\u052f\u0531\u0556\u0559\u0559\u0560\u0588\u05d0\u05ea\u05ef"+ + "\u05f2\u0620\u064a\u066e\u066f\u0671\u06d3\u06d5\u06d5\u06e5\u06e6\u06ee"+ + "\u06ef\u06fa\u06fc\u06ff\u06ff\u0710\u0710\u0712\u072f\u074d\u07a5\u07b1"+ + "\u07b1\u07ca\u07ea\u07f4\u07f5\u07fa\u07fa\u0800\u0815\u081a\u081a\u0824"+ + "\u0824\u0828\u0828\u0840\u0858\u0860\u086a\u0870\u0887\u0889\u088e\u08a0"+ + "\u08c9\u0904\u0939\u093d\u093d\u0950\u0950\u0958\u0961\u0971\u0980\u0985"+ + "\u098c\u098f\u0990\u0993\u09a8\u09aa\u09b0\u09b2\u09b2\u09b6\u09b9\u09bd"+ + "\u09bd\u09ce\u09ce\u09dc\u09dd\u09df\u09e1\u09f0\u09f1\u09fc\u09fc\u0a05"+ + "\u0a0a\u0a0f\u0a10\u0a13\u0a28\u0a2a\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38"+ + "\u0a39\u0a59\u0a5c\u0a5e\u0a5e\u0a72\u0a74\u0a85\u0a8d\u0a8f\u0a91\u0a93"+ + "\u0aa8\u0aaa\u0ab0\u0ab2\u0ab3\u0ab5\u0ab9\u0abd\u0abd\u0ad0\u0ad0\u0ae0"+ + "\u0ae1\u0af9\u0af9\u0b05\u0b0c\u0b0f\u0b10\u0b13\u0b28\u0b2a\u0b30\u0b32"+ + "\u0b33\u0b35\u0b39\u0b3d\u0b3d\u0b5c\u0b5d\u0b5f\u0b61\u0b71\u0b71\u0b83"+ + "\u0b83\u0b85\u0b8a\u0b8e\u0b90\u0b92\u0b95\u0b99\u0b9a\u0b9c\u0b9c\u0b9e"+ + "\u0b9f\u0ba3\u0ba4\u0ba8\u0baa\u0bae\u0bb9\u0bd0\u0bd0\u0c05\u0c0c\u0c0e"+ + "\u0c10\u0c12\u0c28\u0c2a\u0c39\u0c3d\u0c3d\u0c58\u0c5a\u0c5d\u0c5d\u0c60"+ + "\u0c61\u0c80\u0c80\u0c85\u0c8c\u0c8e\u0c90\u0c92\u0ca8\u0caa\u0cb3\u0cb5"+ + "\u0cb9\u0cbd\u0cbd\u0cdd\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d04\u0d0c\u0d0e"+ + "\u0d10\u0d12\u0d3a\u0d3d\u0d3d\u0d4e\u0d4e\u0d54\u0d56\u0d5f\u0d61\u0d7a"+ + "\u0d7f\u0d85\u0d96\u0d9a\u0db1\u0db3\u0dbb\u0dbd\u0dbd\u0dc0\u0dc6\u0e01"+ + "\u0e30\u0e32\u0e33\u0e40\u0e46\u0e81\u0e82\u0e84\u0e84\u0e86\u0e8a\u0e8c"+ + "\u0ea3\u0ea5\u0ea5\u0ea7\u0eb0\u0eb2\u0eb3\u0ebd\u0ebd\u0ec0\u0ec4\u0ec6"+ + "\u0ec6\u0edc\u0edf\u0f00\u0f00\u0f40\u0f47\u0f49\u0f6c\u0f88\u0f8c\u1000"+ + "\u102a\u103f\u103f\u1050\u1055\u105a\u105d\u1061\u1061\u1065\u1066\u106e"+ + "\u1070\u1075\u1081\u108e\u108e\u10a0\u10c5\u10c7\u10c7\u10cd\u10cd\u10d0"+ + "\u10fa\u10fc\u1248\u124a\u124d\u1250\u1256\u1258\u1258\u125a\u125d\u1260"+ + "\u1288\u128a\u128d\u1290\u12b0\u12b2\u12b5\u12b8\u12be\u12c0\u12c0\u12c2"+ + "\u12c5\u12c8\u12d6\u12d8\u1310\u1312\u1315\u1318\u135a\u1380\u138f\u13a0"+ + "\u13f5\u13f8\u13fd\u1401\u166c\u166f\u167f\u1681\u169a\u16a0\u16ea\u16f1"+ + "\u16f8\u1700\u1711\u171f\u1731\u1740\u1751\u1760\u176c\u176e\u1770\u1780"+ + "\u17b3\u17d7\u17d7\u17dc\u17dc\u1820\u1878\u1880\u1884\u1887\u18a8\u18aa"+ + "\u18aa\u18b0\u18f5\u1900\u191e\u1950\u196d\u1970\u1974\u1980\u19ab\u19b0"+ + "\u19c9\u1a00\u1a16\u1a20\u1a54\u1aa7\u1aa7\u1b05\u1b33\u1b45\u1b4c\u1b83"+ + "\u1ba0\u1bae\u1baf\u1bba\u1be5\u1c00\u1c23\u1c4d\u1c4f\u1c5a\u1c7d\u1c80"+ + "\u1c88\u1c90\u1cba\u1cbd\u1cbf\u1ce9\u1cec\u1cee\u1cf3\u1cf5\u1cf6\u1cfa"+ + "\u1cfa\u1d00\u1dbf\u1e00\u1f15\u1f18\u1f1d\u1f20\u1f45\u1f48\u1f4d\u1f50"+ + "\u1f57\u1f59\u1f59\u1f5b\u1f5b\u1f5d\u1f5d\u1f5f\u1f7d\u1f80\u1fb4\u1fb6"+ + "\u1fbc\u1fbe\u1fbe\u1fc2\u1fc4\u1fc6\u1fcc\u1fd0\u1fd3\u1fd6\u1fdb\u1fe0"+ + "\u1fec\u1ff2\u1ff4\u1ff6\u1ffc\u2071\u2071\u207f\u207f\u2090\u209c\u2102"+ + "\u2102\u2107\u2107\u210a\u2113\u2115\u2115\u2119\u211d\u2124\u2124\u2126"+ + "\u2126\u2128\u2128\u212a\u212d\u212f\u2139\u213c\u213f\u2145\u2149\u214e"+ + "\u214e\u2183\u2184\u2c00\u2ce4\u2ceb\u2cee\u2cf2\u2cf3\u2d00\u2d25\u2d27"+ + "\u2d27\u2d2d\u2d2d\u2d30\u2d67\u2d6f\u2d6f\u2d80\u2d96\u2da0\u2da6\u2da8"+ + "\u2dae\u2db0\u2db6\u2db8\u2dbe\u2dc0\u2dc6\u2dc8\u2dce\u2dd0\u2dd6\u2dd8"+ + "\u2dde\u2e2f\u2e2f\u3005\u3006\u3031\u3035\u303b\u303c\u3041\u3096\u309d"+ + "\u309f\u30a1\u30fa\u30fc\u30ff\u3105\u312f\u3131\u318e\u31a0\u31bf\u31f0"+ + "\u31ff\u3400\u4dbf\u4e00\u8000\ua48c\u8000\ua4d0\u8000\ua4fd\u8000\ua500"+ + "\u8000\ua60c\u8000\ua610\u8000\ua61f\u8000\ua62a\u8000\ua62b\u8000\ua640"+ + "\u8000\ua66e\u8000\ua67f\u8000\ua69d\u8000\ua6a0\u8000\ua6e5\u8000\ua717"+ + "\u8000\ua71f\u8000\ua722\u8000\ua788\u8000\ua78b\u8000\ua7ca\u8000\ua7d0"+ + "\u8000\ua7d1\u8000\ua7d3\u8000\ua7d3\u8000\ua7d5\u8000\ua7d9\u8000\ua7f2"+ + "\u8000\ua801\u8000\ua803\u8000\ua805\u8000\ua807\u8000\ua80a\u8000\ua80c"+ + "\u8000\ua822\u8000\ua840\u8000\ua873\u8000\ua882\u8000\ua8b3\u8000\ua8f2"+ + "\u8000\ua8f7\u8000\ua8fb\u8000\ua8fb\u8000\ua8fd\u8000\ua8fe\u8000\ua90a"+ + "\u8000\ua925\u8000\ua930\u8000\ua946\u8000\ua960\u8000\ua97c\u8000\ua984"+ + "\u8000\ua9b2\u8000\ua9cf\u8000\ua9cf\u8000\ua9e0\u8000\ua9e4\u8000\ua9e6"+ + "\u8000\ua9ef\u8000\ua9fa\u8000\ua9fe\u8000\uaa00\u8000\uaa28\u8000\uaa40"+ + "\u8000\uaa42\u8000\uaa44\u8000\uaa4b\u8000\uaa60\u8000\uaa76\u8000\uaa7a"+ + "\u8000\uaa7a\u8000\uaa7e\u8000\uaaaf\u8000\uaab1\u8000\uaab1\u8000\uaab5"+ + "\u8000\uaab6\u8000\uaab9\u8000\uaabd\u8000\uaac0\u8000\uaac0\u8000\uaac2"+ + "\u8000\uaac2\u8000\uaadb\u8000\uaadd\u8000\uaae0\u8000\uaaea\u8000\uaaf2"+ + "\u8000\uaaf4\u8000\uab01\u8000\uab06\u8000\uab09\u8000\uab0e\u8000\uab11"+ + "\u8000\uab16\u8000\uab20\u8000\uab26\u8000\uab28\u8000\uab2e\u8000\uab30"+ + "\u8000\uab5a\u8000\uab5c\u8000\uab69\u8000\uab70\u8000\uabe2\u8000\uac00"+ + "\u8000\ud7a3\u8000\ud7b0\u8000\ud7c6\u8000\ud7cb\u8000\ud7fb\u8000\uf900"+ + "\u8000\ufa6d\u8000\ufa70\u8000\ufad9\u8000\ufb00\u8000\ufb06\u8000\ufb13"+ + "\u8000\ufb17\u8000\ufb1d\u8000\ufb1d\u8000\ufb1f\u8000\ufb28\u8000\ufb2a"+ + "\u8000\ufb36\u8000\ufb38\u8000\ufb3c\u8000\ufb3e\u8000\ufb3e\u8000\ufb40"+ + "\u8000\ufb41\u8000\ufb43\u8000\ufb44\u8000\ufb46\u8000\ufbb1\u8000\ufbd3"+ + "\u8000\ufd3d\u8000\ufd50\u8000\ufd8f\u8000\ufd92\u8000\ufdc7\u8000\ufdf0"+ + "\u8000\ufdfb\u8000\ufe70\u8000\ufe74\u8000\ufe76\u8000\ufefc\u8000\uff21"+ + "\u8000\uff3a\u8000\uff41\u8000\uff5a\u8000\uff66\u8000\uffbe\u8000\uffc2"+ + "\u8000\uffc7\u8000\uffca\u8000\uffcf\u8000\uffd2\u8000\uffd7\u8000\uffda"+ + "\u8000\uffdc\u8001\u0000\u8001\u000b\u8001\r\u8001&\u8001(\u8001:\u8001"+ + "<\u8001=\u8001?\u8001M\u8001P\u8001]\u8001\u0080\u8001\u00fa\u8001\u0280"+ + "\u8001\u029c\u8001\u02a0\u8001\u02d0\u8001\u0300\u8001\u031f\u8001\u032d"+ + "\u8001\u0340\u8001\u0342\u8001\u0349\u8001\u0350\u8001\u0375\u8001\u0380"+ + "\u8001\u039d\u8001\u03a0\u8001\u03c3\u8001\u03c8\u8001\u03cf\u8001\u0400"+ + "\u8001\u049d\u8001\u04b0\u8001\u04d3\u8001\u04d8\u8001\u04fb\u8001\u0500"+ + "\u8001\u0527\u8001\u0530\u8001\u0563\u8001\u0570\u8001\u057a\u8001\u057c"+ + "\u8001\u058a\u8001\u058c\u8001\u0592\u8001\u0594\u8001\u0595\u8001\u0597"+ + "\u8001\u05a1\u8001\u05a3\u8001\u05b1\u8001\u05b3\u8001\u05b9\u8001\u05bb"+ + "\u8001\u05bc\u8001\u0600\u8001\u0736\u8001\u0740\u8001\u0755\u8001\u0760"+ + "\u8001\u0767\u8001\u0780\u8001\u0785\u8001\u0787\u8001\u07b0\u8001\u07b2"+ + "\u8001\u07ba\u8001\u0800\u8001\u0805\u8001\u0808\u8001\u0808\u8001\u080a"+ + "\u8001\u0835\u8001\u0837\u8001\u0838\u8001\u083c\u8001\u083c\u8001\u083f"+ + "\u8001\u0855\u8001\u0860\u8001\u0876\u8001\u0880\u8001\u089e\u8001\u08e0"+ + "\u8001\u08f2\u8001\u08f4\u8001\u08f5\u8001\u0900\u8001\u0915\u8001\u0920"+ + "\u8001\u0939\u8001\u0980\u8001\u09b7\u8001\u09be\u8001\u09bf\u8001\u0a00"+ + "\u8001\u0a00\u8001\u0a10\u8001\u0a13\u8001\u0a15\u8001\u0a17\u8001\u0a19"+ + "\u8001\u0a35\u8001\u0a60\u8001\u0a7c\u8001\u0a80\u8001\u0a9c\u8001\u0ac0"+ + "\u8001\u0ac7\u8001\u0ac9\u8001\u0ae4\u8001\u0b00\u8001\u0b35\u8001\u0b40"+ + "\u8001\u0b55\u8001\u0b60\u8001\u0b72\u8001\u0b80\u8001\u0b91\u8001\u0c00"+ + "\u8001\u0c48\u8001\u0c80\u8001\u0cb2\u8001\u0cc0\u8001\u0cf2\u8001\u0d00"+ + "\u8001\u0d23\u8001\u0e80\u8001\u0ea9\u8001\u0eb0\u8001\u0eb1\u8001\u0f00"+ + "\u8001\u0f1c\u8001\u0f27\u8001\u0f27\u8001\u0f30\u8001\u0f45\u8001\u0f70"+ + "\u8001\u0f81\u8001\u0fb0\u8001\u0fc4\u8001\u0fe0\u8001\u0ff6\u8001\u1003"+ + "\u8001\u1037\u8001\u1071\u8001\u1072\u8001\u1075\u8001\u1075\u8001\u1083"+ + "\u8001\u10af\u8001\u10d0\u8001\u10e8\u8001\u1103\u8001\u1126\u8001\u1144"+ + "\u8001\u1144\u8001\u1147\u8001\u1147\u8001\u1150\u8001\u1172\u8001\u1176"+ + "\u8001\u1176\u8001\u1183\u8001\u11b2\u8001\u11c1\u8001\u11c4\u8001\u11da"+ + "\u8001\u11da\u8001\u11dc\u8001\u11dc\u8001\u1200\u8001\u1211\u8001\u1213"+ + "\u8001\u122b\u8001\u123f\u8001\u1240\u8001\u1280\u8001\u1286\u8001\u1288"+ "\u8001\u1288\u8001\u128a\u8001\u128d\u8001\u128f\u8001\u129d\u8001\u129f"+ "\u8001\u12a8\u8001\u12b0\u8001\u12de\u8001\u1305\u8001\u130c\u8001\u130f"+ "\u8001\u1310\u8001\u1313\u8001\u1328\u8001\u132a\u8001\u1330\u8001\u1332"+ @@ -587,16 +588,18 @@ private boolean DECIMAL_FLOAT_LIT_sempred(RuleContext _localctx, int predIndex) "\u8001\u1c8f\u8001\u1d00\u8001\u1d06\u8001\u1d08\u8001\u1d09\u8001\u1d0b"+ "\u8001\u1d30\u8001\u1d46\u8001\u1d46\u8001\u1d60\u8001\u1d65\u8001\u1d67"+ "\u8001\u1d68\u8001\u1d6a\u8001\u1d89\u8001\u1d98\u8001\u1d98\u8001\u1ee0"+ - "\u8001\u1ef2\u8001\u1fb0\u8001\u1fb0\u8001\u2000\u8001\u2399\u8001\u2480"+ - "\u8001\u2543\u8001\u2f90\u8001\u2ff0\u8001\u3000\u8001\u342e\u8001\u4400"+ - "\u8001\u4646\u8001\u6800\u8001\u6a38\u8001\u6a40\u8001\u6a5e\u8001\u6a70"+ - "\u8001\u6abe\u8001\u6ad0\u8001\u6aed\u8001\u6b00\u8001\u6b2f\u8001\u6b40"+ - "\u8001\u6b43\u8001\u6b63\u8001\u6b77\u8001\u6b7d\u8001\u6b8f\u8001\u6e40"+ - "\u8001\u6e7f\u8001\u6f00\u8001\u6f4a\u8001\u6f50\u8001\u6f50\u8001\u6f93"+ - "\u8001\u6f9f\u8001\u6fe0\u8001\u6fe1\u8001\u6fe3\u8001\u6fe3\u8001\u7000"+ - "\u8001\u87f7\u8001\u8800\u8001\u8cd5\u8001\u8d00\u8001\u8d08\u8001\uaff0"+ - "\u8001\uaff3\u8001\uaff5\u8001\uaffb\u8001\uaffd\u8001\uaffe\u8001\ub000"+ - "\u8001\ub122\u8001\ub150\u8001\ub152\u8001\ub164\u8001\ub167\u8001\ub170"+ + "\u8001\u1ef2\u8001\u1f02\u8001\u1f02\u8001\u1f04\u8001\u1f10\u8001\u1f12"+ + "\u8001\u1f33\u8001\u1fb0\u8001\u1fb0\u8001\u2000\u8001\u2399\u8001\u2480"+ + "\u8001\u2543\u8001\u2f90\u8001\u2ff0\u8001\u3000\u8001\u342f\u8001\u3441"+ + "\u8001\u3446\u8001\u4400\u8001\u4646\u8001\u6800\u8001\u6a38\u8001\u6a40"+ + "\u8001\u6a5e\u8001\u6a70\u8001\u6abe\u8001\u6ad0\u8001\u6aed\u8001\u6b00"+ + "\u8001\u6b2f\u8001\u6b40\u8001\u6b43\u8001\u6b63\u8001\u6b77\u8001\u6b7d"+ + "\u8001\u6b8f\u8001\u6e40\u8001\u6e7f\u8001\u6f00\u8001\u6f4a\u8001\u6f50"+ + "\u8001\u6f50\u8001\u6f93\u8001\u6f9f\u8001\u6fe0\u8001\u6fe1\u8001\u6fe3"+ + "\u8001\u6fe3\u8001\u7000\u8001\u87f7\u8001\u8800\u8001\u8cd5\u8001\u8d00"+ + "\u8001\u8d08\u8001\uaff0\u8001\uaff3\u8001\uaff5\u8001\uaffb\u8001\uaffd"+ + "\u8001\uaffe\u8001\ub000\u8001\ub122\u8001\ub132\u8001\ub132\u8001\ub150"+ + "\u8001\ub152\u8001\ub155\u8001\ub155\u8001\ub164\u8001\ub167\u8001\ub170"+ "\u8001\ub2fb\u8001\ubc00\u8001\ubc6a\u8001\ubc70\u8001\ubc7c\u8001\ubc80"+ "\u8001\ubc88\u8001\ubc90\u8001\ubc99\u8001\ud400\u8001\ud454\u8001\ud456"+ "\u8001\ud49c\u8001\ud49e\u8001\ud49f\u8001\ud4a2\u8001\ud4a2\u8001\ud4a5"+ @@ -608,9 +611,10 @@ private boolean DECIMAL_FLOAT_LIT_sempred(RuleContext _localctx, int predIndex) "\u8001\ud6c0\u8001\ud6c2\u8001\ud6da\u8001\ud6dc\u8001\ud6fa\u8001\ud6fc"+ "\u8001\ud714\u8001\ud716\u8001\ud734\u8001\ud736\u8001\ud74e\u8001\ud750"+ "\u8001\ud76e\u8001\ud770\u8001\ud788\u8001\ud78a\u8001\ud7a8\u8001\ud7aa"+ - "\u8001\ud7c2\u8001\ud7c4\u8001\ud7cb\u8001\udf00\u8001\udf1e\u8001\ue100"+ - "\u8001\ue12c\u8001\ue137\u8001\ue13d\u8001\ue14e\u8001\ue14e\u8001\ue290"+ - "\u8001\ue2ad\u8001\ue2c0\u8001\ue2eb\u8001\ue7e0\u8001\ue7e6\u8001\ue7e8"+ + "\u8001\ud7c2\u8001\ud7c4\u8001\ud7cb\u8001\udf00\u8001\udf1e\u8001\udf25"+ + "\u8001\udf2a\u8001\ue030\u8001\ue06d\u8001\ue100\u8001\ue12c\u8001\ue137"+ + "\u8001\ue13d\u8001\ue14e\u8001\ue14e\u8001\ue290\u8001\ue2ad\u8001\ue2c0"+ + "\u8001\ue2eb\u8001\ue4d0\u8001\ue4eb\u8001\ue7e0\u8001\ue7e6\u8001\ue7e8"+ "\u8001\ue7eb\u8001\ue7ed\u8001\ue7ee\u8001\ue7f0\u8001\ue7fe\u8001\ue800"+ "\u8001\ue8c4\u8001\ue900\u8001\ue943\u8001\ue94b\u8001\ue94b\u8001\uee00"+ "\u8001\uee03\u8001\uee05\u8001\uee1f\u8001\uee21\u8001\uee22\u8001\uee24"+ @@ -624,201 +628,201 @@ private boolean DECIMAL_FLOAT_LIT_sempred(RuleContext _localctx, int predIndex) "\u8001\uee72\u8001\uee74\u8001\uee77\u8001\uee79\u8001\uee7c\u8001\uee7e"+ "\u8001\uee7e\u8001\uee80\u8001\uee89\u8001\uee8b\u8001\uee9b\u8001\ueea1"+ "\u8001\ueea3\u8001\ueea5\u8001\ueea9\u8001\ueeab\u8001\ueebb\u8002\u0000"+ - "\u8002\ua6df\u8002\ua700\u8002\ub738\u8002\ub740\u8002\ub81d\u8002\ub820"+ + "\u8002\ua6df\u8002\ua700\u8002\ub739\u8002\ub740\u8002\ub81d\u8002\ub820"+ "\u8002\ucea1\u8002\uceb0\u8002\uebe0\u8002\uf800\u8002\ufa1d\u8003\u0000"+ - "\u8003\u134a\u0633\u0000\u0002\u0001\u0000\u0000\u0000\u0000\u0004\u0001"+ - "\u0000\u0000\u0000\u0000\u0006\u0001\u0000\u0000\u0000\u0000\b\u0001\u0000"+ - "\u0000\u0000\u0000\n\u0001\u0000\u0000\u0000\u0000\f\u0001\u0000\u0000"+ - "\u0000\u0000\u000e\u0001\u0000\u0000\u0000\u0000\u0010\u0001\u0000\u0000"+ - "\u0000\u0000\u0012\u0001\u0000\u0000\u0000\u0000\u0014\u0001\u0000\u0000"+ - "\u0000\u0000\u0016\u0001\u0000\u0000\u0000\u0000\u0018\u0001\u0000\u0000"+ - "\u0000\u0000\u001a\u0001\u0000\u0000\u0000\u0000\u001c\u0001\u0000\u0000"+ - "\u0000\u0000\u001e\u0001\u0000\u0000\u0000\u0000 \u0001\u0000\u0000\u0000"+ - "\u0000\"\u0001\u0000\u0000\u0000\u0000$\u0001\u0000\u0000\u0000\u0000"+ - "&\u0001\u0000\u0000\u0000\u0000(\u0001\u0000\u0000\u0000\u0000*\u0001"+ - "\u0000\u0000\u0000\u0000,\u0001\u0000\u0000\u0000\u0000.\u0001\u0000\u0000"+ - "\u0000\u00000\u0001\u0000\u0000\u0000\u00002\u0001\u0000\u0000\u0000\u0000"+ - "4\u0001\u0000\u0000\u0000\u00006\u0001\u0000\u0000\u0000\u00008\u0001"+ - "\u0000\u0000\u0000\u0000:\u0001\u0000\u0000\u0000\u0000<\u0001\u0000\u0000"+ - "\u0000\u0000>\u0001\u0000\u0000\u0000\u0000@\u0001\u0000\u0000\u0000\u0000"+ - "B\u0001\u0000\u0000\u0000\u0000D\u0001\u0000\u0000\u0000\u0000F\u0001"+ - "\u0000\u0000\u0000\u0000H\u0001\u0000\u0000\u0000\u0000J\u0001\u0000\u0000"+ - "\u0000\u0000L\u0001\u0000\u0000\u0000\u0000N\u0001\u0000\u0000\u0000\u0000"+ - "P\u0001\u0000\u0000\u0000\u0000R\u0001\u0000\u0000\u0000\u0000T\u0001"+ - "\u0000\u0000\u0000\u0000V\u0001\u0000\u0000\u0000\u0000X\u0001\u0000\u0000"+ - "\u0000\u0000Z\u0001\u0000\u0000\u0000\u0000\\\u0001\u0000\u0000\u0000"+ - "\u0000^\u0001\u0000\u0000\u0000\u0000`\u0001\u0000\u0000\u0000\u0000b"+ - "\u0001\u0000\u0000\u0000\u0000d\u0001\u0000\u0000\u0000\u0000f\u0001\u0000"+ - "\u0000\u0000\u0000h\u0001\u0000\u0000\u0000\u0000j\u0001\u0000\u0000\u0000"+ - "\u0000l\u0001\u0000\u0000\u0000\u0000n\u0001\u0000\u0000\u0000\u0000p"+ - "\u0001\u0000\u0000\u0000\u0000r\u0001\u0000\u0000\u0000\u0000t\u0001\u0000"+ - "\u0000\u0000\u0000v\u0001\u0000\u0000\u0000\u0000x\u0001\u0000\u0000\u0000"+ - "\u0000z\u0001\u0000\u0000\u0000\u0000|\u0001\u0000\u0000\u0000\u0000~"+ - "\u0001\u0000\u0000\u0000\u0000\u0080\u0001\u0000\u0000\u0000\u0000\u0082"+ - "\u0001\u0000\u0000\u0000\u0000\u0084\u0001\u0000\u0000\u0000\u0000\u0086"+ - "\u0001\u0000\u0000\u0000\u0000\u0088\u0001\u0000\u0000\u0000\u0000\u008a"+ - "\u0001\u0000\u0000\u0000\u0000\u008c\u0001\u0000\u0000\u0000\u0000\u008e"+ - "\u0001\u0000\u0000\u0000\u0000\u0090\u0001\u0000\u0000\u0000\u0000\u0092"+ - "\u0001\u0000\u0000\u0000\u0000\u0094\u0001\u0000\u0000\u0000\u0000\u0096"+ - "\u0001\u0000\u0000\u0000\u0000\u0098\u0001\u0000\u0000\u0000\u0000\u009a"+ - "\u0001\u0000\u0000\u0000\u0000\u009c\u0001\u0000\u0000\u0000\u0000\u009e"+ - "\u0001\u0000\u0000\u0000\u0000\u00a0\u0001\u0000\u0000\u0000\u0000\u00a2"+ - "\u0001\u0000\u0000\u0000\u0000\u00a4\u0001\u0000\u0000\u0000\u0000\u00a6"+ - "\u0001\u0000\u0000\u0000\u0000\u00a8\u0001\u0000\u0000\u0000\u0000\u00aa"+ - "\u0001\u0000\u0000\u0000\u0000\u00ac\u0001\u0000\u0000\u0000\u0000\u00ae"+ - "\u0001\u0000\u0000\u0000\u0000\u00b0\u0001\u0000\u0000\u0000\u0000\u00b2"+ - "\u0001\u0000\u0000\u0000\u0000\u00b4\u0001\u0000\u0000\u0000\u0000\u00b6"+ - "\u0001\u0000\u0000\u0000\u0000\u00b8\u0001\u0000\u0000\u0000\u0000\u00ba"+ - "\u0001\u0000\u0000\u0000\u0000\u00bc\u0001\u0000\u0000\u0000\u0000\u00be"+ - "\u0001\u0000\u0000\u0000\u0000\u00c0\u0001\u0000\u0000\u0000\u0000\u00c2"+ - "\u0001\u0000\u0000\u0000\u0000\u00c4\u0001\u0000\u0000\u0000\u0000\u00c6"+ - "\u0001\u0000\u0000\u0000\u0000\u00c8\u0001\u0000\u0000\u0000\u0000\u00ca"+ - "\u0001\u0000\u0000\u0000\u0000\u00cc\u0001\u0000\u0000\u0000\u0000\u00ce"+ - "\u0001\u0000\u0000\u0000\u0000\u00d0\u0001\u0000\u0000\u0000\u0000\u00d2"+ - "\u0001\u0000\u0000\u0000\u0000\u00d4\u0001\u0000\u0000\u0000\u0000\u00d6"+ - "\u0001\u0000\u0000\u0000\u0000\u00d8\u0001\u0000\u0000\u0000\u0000\u00da"+ - "\u0001\u0000\u0000\u0000\u0000\u00dc\u0001\u0000\u0000\u0000\u0000\u00de"+ - "\u0001\u0000\u0000\u0000\u0000\u00e0\u0001\u0000\u0000\u0000\u0000\u00e2"+ - "\u0001\u0000\u0000\u0000\u0000\u00e4\u0001\u0000\u0000\u0000\u0000\u00e6"+ - "\u0001\u0000\u0000\u0000\u0000\u00e8\u0001\u0000\u0000\u0000\u0000\u00ea"+ - "\u0001\u0000\u0000\u0000\u0000\u00ec\u0001\u0000\u0000\u0000\u0000\u00ee"+ - "\u0001\u0000\u0000\u0000\u0000\u00f0\u0001\u0000\u0000\u0000\u0000\u00f2"+ - "\u0001\u0000\u0000\u0000\u0000\u00f4\u0001\u0000\u0000\u0000\u0000\u00f6"+ - "\u0001\u0000\u0000\u0000\u0000\u00f8\u0001\u0000\u0000\u0000\u0000\u00fa"+ - "\u0001\u0000\u0000\u0000\u0000\u00fc\u0001\u0000\u0000\u0000\u0000\u00fe"+ - "\u0001\u0000\u0000\u0000\u0000\u0100\u0001\u0000\u0000\u0000\u0000\u0102"+ - "\u0001\u0000\u0000\u0000\u0000\u0104\u0001\u0000\u0000\u0000\u0000\u0106"+ - "\u0001\u0000\u0000\u0000\u0000\u0108\u0001\u0000\u0000\u0000\u0000\u010a"+ - "\u0001\u0000\u0000\u0000\u0000\u010c\u0001\u0000\u0000\u0000\u0000\u010e"+ - "\u0001\u0000\u0000\u0000\u0000\u0110\u0001\u0000\u0000\u0000\u0000\u0112"+ - "\u0001\u0000\u0000\u0000\u0000\u0114\u0001\u0000\u0000\u0000\u0000\u0116"+ - "\u0001\u0000\u0000\u0000\u0000\u0118\u0001\u0000\u0000\u0000\u0000\u011a"+ - "\u0001\u0000\u0000\u0000\u0000\u011c\u0001\u0000\u0000\u0000\u0000\u011e"+ - "\u0001\u0000\u0000\u0000\u0000\u0120\u0001\u0000\u0000\u0000\u0000\u0122"+ - "\u0001\u0000\u0000\u0000\u0000\u0124\u0001\u0000\u0000\u0000\u0000\u012a"+ - "\u0001\u0000\u0000\u0000\u0000\u012e\u0001\u0000\u0000\u0000\u0000\u0130"+ - "\u0001\u0000\u0000\u0000\u0000\u0132\u0001\u0000\u0000\u0000\u0000\u0134"+ - "\u0001\u0000\u0000\u0000\u0000\u0136\u0001\u0000\u0000\u0000\u0000\u0138"+ - "\u0001\u0000\u0000\u0000\u0000\u013a\u0001\u0000\u0000\u0000\u0000\u013c"+ - "\u0001\u0000\u0000\u0000\u0000\u013e\u0001\u0000\u0000\u0000\u0000\u0140"+ - "\u0001\u0000\u0000\u0000\u0000\u0142\u0001\u0000\u0000\u0000\u0000\u0144"+ - "\u0001\u0000\u0000\u0000\u0001\u015a\u0001\u0000\u0000\u0000\u0001\u015c"+ - "\u0001\u0000\u0000\u0000\u0001\u015e\u0001\u0000\u0000\u0000\u0001\u0160"+ - "\u0001\u0000\u0000\u0000\u0001\u0162\u0001\u0000\u0000\u0000\u0002\u0166"+ - "\u0001\u0000\u0000\u0000\u0004\u017c\u0001\u0000\u0000\u0000\u0006\u017e"+ - "\u0001\u0000\u0000\u0000\b\u0185\u0001\u0000\u0000\u0000\n\u018d\u0001"+ - "\u0000\u0000\u0000\f\u0194\u0001\u0000\u0000\u0000\u000e\u019b\u0001\u0000"+ - "\u0000\u0000\u0010\u01a2\u0001\u0000\u0000\u0000\u0012\u01a9\u0001\u0000"+ - "\u0000\u0000\u0014\u01b2\u0001\u0000\u0000\u0000\u0016\u01bc\u0001\u0000"+ - "\u0000\u0000\u0018\u01c4\u0001\u0000\u0000\u0000\u001a\u01ce\u0001\u0000"+ - "\u0000\u0000\u001c\u01da\u0001\u0000\u0000\u0000\u001e\u01e1\u0001\u0000"+ - "\u0000\u0000 \u01ec\u0001\u0000\u0000\u0000\"\u01ef\u0001\u0000\u0000"+ - "\u0000$\u01f5\u0001\u0000\u0000\u0000&\u01fe\u0001\u0000\u0000\u0000("+ - "\u0203\u0001\u0000\u0000\u0000*\u020a\u0001\u0000\u0000\u0000,\u0211\u0001"+ - "\u0000\u0000\u0000.\u0217\u0001\u0000\u0000\u00000\u021c\u0001\u0000\u0000"+ - "\u00002\u0223\u0001\u0000\u0000\u00004\u022d\u0001\u0000\u0000\u00006"+ - "\u0231\u0001\u0000\u0000\u00008\u0237\u0001\u0000\u0000\u0000:\u023a\u0001"+ - "\u0000\u0000\u0000<\u023c\u0001\u0000\u0000\u0000>\u0243\u0001\u0000\u0000"+ - "\u0000@\u0249\u0001\u0000\u0000\u0000B\u0256\u0001\u0000\u0000\u0000D"+ - "\u025f\u0001\u0000\u0000\u0000F\u0263\u0001\u0000\u0000\u0000H\u0267\u0001"+ - "\u0000\u0000\u0000J\u026d\u0001\u0000\u0000\u0000L\u026f\u0001\u0000\u0000"+ - "\u0000N\u0272\u0001\u0000\u0000\u0000P\u0277\u0001\u0000\u0000\u0000R"+ - "\u027d\u0001\u0000\u0000\u0000T\u0283\u0001\u0000\u0000\u0000V\u028a\u0001"+ - "\u0000\u0000\u0000X\u0291\u0001\u0000\u0000\u0000Z\u029a\u0001\u0000\u0000"+ - "\u0000\\\u02a5\u0001\u0000\u0000\u0000^\u02ab\u0001\u0000\u0000\u0000"+ - "`\u02b1\u0001\u0000\u0000\u0000b\u02b8\u0001\u0000\u0000\u0000d\u02be"+ - "\u0001\u0000\u0000\u0000f\u02c5\u0001\u0000\u0000\u0000h\u02cb\u0001\u0000"+ - "\u0000\u0000j\u02d4\u0001\u0000\u0000\u0000l\u02dc\u0001\u0000\u0000\u0000"+ - "n\u02e2\u0001\u0000\u0000\u0000p\u02ea\u0001\u0000\u0000\u0000r\u02f1"+ - "\u0001\u0000\u0000\u0000t\u02f6\u0001\u0000\u0000\u0000v\u02ff\u0001\u0000"+ - "\u0000\u0000x\u030e\u0001\u0000\u0000\u0000z\u0314\u0001\u0000\u0000\u0000"+ - "|\u0318\u0001\u0000\u0000\u0000~\u031b\u0001\u0000\u0000\u0000\u0080\u0322"+ - "\u0001\u0000\u0000\u0000\u0082\u032c\u0001\u0000\u0000\u0000\u0084\u0336"+ - "\u0001\u0000\u0000\u0000\u0086\u0342\u0001\u0000\u0000\u0000\u0088\u034b"+ - "\u0001\u0000\u0000\u0000\u008a\u0355\u0001\u0000\u0000\u0000\u008c\u035d"+ - "\u0001\u0000\u0000\u0000\u008e\u0369\u0001\u0000\u0000\u0000\u0090\u0378"+ - "\u0001\u0000\u0000\u0000\u0092\u037e\u0001\u0000\u0000\u0000\u0094\u0382"+ - "\u0001\u0000\u0000\u0000\u0096\u0386\u0001\u0000\u0000\u0000\u0098\u038b"+ - "\u0001\u0000\u0000\u0000\u009a\u0394\u0001\u0000\u0000\u0000\u009c\u039b"+ - "\u0001\u0000\u0000\u0000\u009e\u03a4\u0001\u0000\u0000\u0000\u00a0\u03ac"+ - "\u0001\u0000\u0000\u0000\u00a2\u03b4\u0001\u0000\u0000\u0000\u00a4\u03b9"+ - "\u0001\u0000\u0000\u0000\u00a6\u03c3\u0001\u0000\u0000\u0000\u00a8\u03ca"+ - "\u0001\u0000\u0000\u0000\u00aa\u03cf\u0001\u0000\u0000\u0000\u00ac\u03d5"+ - "\u0001\u0000\u0000\u0000\u00ae\u03d8\u0001\u0000\u0000\u0000\u00b0\u03dc"+ - "\u0001\u0000\u0000\u0000\u00b2\u03e3\u0001\u0000\u0000\u0000\u00b4\u03e8"+ - "\u0001\u0000\u0000\u0000\u00b6\u03ed\u0001\u0000\u0000\u0000\u00b8\u03f2"+ - "\u0001\u0000\u0000\u0000\u00ba\u03fa\u0001\u0000\u0000\u0000\u00bc\u0401"+ - "\u0001\u0000\u0000\u0000\u00be\u0407\u0001\u0000\u0000\u0000\u00c0\u0415"+ - "\u0001\u0000\u0000\u0000\u00c2\u0418\u0001\u0000\u0000\u0000\u00c4\u041e"+ - "\u0001\u0000\u0000\u0000\u00c6\u0423\u0001\u0000\u0000\u0000\u00c8\u042e"+ - "\u0001\u0000\u0000\u0000\u00ca\u0432\u0001\u0000\u0000\u0000\u00cc\u0439"+ - "\u0001\u0000\u0000\u0000\u00ce\u0442\u0001\u0000\u0000\u0000\u00d0\u0446"+ - "\u0001\u0000\u0000\u0000\u00d2\u044c\u0001\u0000\u0000\u0000\u00d4\u0456"+ - "\u0001\u0000\u0000\u0000\u00d6\u0458\u0001\u0000\u0000\u0000\u00d8\u045c"+ - "\u0001\u0000\u0000\u0000\u00da\u045e\u0001\u0000\u0000\u0000\u00dc\u0462"+ - "\u0001\u0000\u0000\u0000\u00de\u0464\u0001\u0000\u0000\u0000\u00e0\u0468"+ - "\u0001\u0000\u0000\u0000\u00e2\u046a\u0001\u0000\u0000\u0000\u00e4\u046c"+ - "\u0001\u0000\u0000\u0000\u00e6\u046e\u0001\u0000\u0000\u0000\u00e8\u0470"+ - "\u0001\u0000\u0000\u0000\u00ea\u0472\u0001\u0000\u0000\u0000\u00ec\u0477"+ - "\u0001\u0000\u0000\u0000\u00ee\u047c\u0001\u0000\u0000\u0000\u00f0\u047f"+ - "\u0001\u0000\u0000\u0000\u00f2\u0483\u0001\u0000\u0000\u0000\u00f4\u0486"+ - "\u0001\u0000\u0000\u0000\u00f6\u0489\u0001\u0000\u0000\u0000\u00f8\u048c"+ - "\u0001\u0000\u0000\u0000\u00fa\u048f\u0001\u0000\u0000\u0000\u00fc\u0491"+ - "\u0001\u0000\u0000\u0000\u00fe\u0494\u0001\u0000\u0000\u0000\u0100\u0496"+ - "\u0001\u0000\u0000\u0000\u0102\u0499\u0001\u0000\u0000\u0000\u0104\u049b"+ - "\u0001\u0000\u0000\u0000\u0106\u049d\u0001\u0000\u0000\u0000\u0108\u049f"+ - "\u0001\u0000\u0000\u0000\u010a\u04a2\u0001\u0000\u0000\u0000\u010c\u04a5"+ - "\u0001\u0000\u0000\u0000\u010e\u04a8\u0001\u0000\u0000\u0000\u0110\u04aa"+ - "\u0001\u0000\u0000\u0000\u0112\u04ac\u0001\u0000\u0000\u0000\u0114\u04ae"+ - "\u0001\u0000\u0000\u0000\u0116\u04b0\u0001\u0000\u0000\u0000\u0118\u04b2"+ - "\u0001\u0000\u0000\u0000\u011a\u04b4\u0001\u0000\u0000\u0000\u011c\u04c2"+ - "\u0001\u0000\u0000\u0000\u011e\u04c6\u0001\u0000\u0000\u0000\u0120\u04d2"+ - "\u0001\u0000\u0000\u0000\u0122\u04e0\u0001\u0000\u0000\u0000\u0124\u04ec"+ - "\u0001\u0000\u0000\u0000\u0126\u0510\u0001\u0000\u0000\u0000\u0128\u0512"+ - "\u0001\u0000\u0000\u0000\u012a\u051d\u0001\u0000\u0000\u0000\u012c\u0523"+ - "\u0001\u0000\u0000\u0000\u012e\u052a\u0001\u0000\u0000\u0000\u0130\u0530"+ - "\u0001\u0000\u0000\u0000\u0132\u0532\u0001\u0000\u0000\u0000\u0134\u0537"+ - "\u0001\u0000\u0000\u0000\u0136\u053c\u0001\u0000\u0000\u0000\u0138\u0543"+ - "\u0001\u0000\u0000\u0000\u013a\u054e\u0001\u0000\u0000\u0000\u013c\u0559"+ - "\u0001\u0000\u0000\u0000\u013e\u0566\u0001\u0000\u0000\u0000\u0140\u056c"+ - "\u0001\u0000\u0000\u0000\u0142\u057b\u0001\u0000\u0000\u0000\u0144\u0581"+ - "\u0001\u0000\u0000\u0000\u0146\u0590\u0001\u0000\u0000\u0000\u0148\u0592"+ - "\u0001\u0000\u0000\u0000\u014a\u05ae\u0001\u0000\u0000\u0000\u014c\u05b8"+ - "\u0001\u0000\u0000\u0000\u014e\u05ba\u0001\u0000\u0000\u0000\u0150\u05bc"+ - "\u0001\u0000\u0000\u0000\u0152\u05be\u0001\u0000\u0000\u0000\u0154\u05c6"+ - "\u0001\u0000\u0000\u0000\u0156\u05c8\u0001\u0000\u0000\u0000\u0158\u05ca"+ - "\u0001\u0000\u0000\u0000\u015a\u05cd\u0001\u0000\u0000\u0000\u015c\u05d3"+ - "\u0001\u0000\u0000\u0000\u015e\u05e1\u0001\u0000\u0000\u0000\u0160\u05fe"+ - "\u0001\u0000\u0000\u0000\u0162\u0602\u0001\u0000\u0000\u0000\u0164\u0167"+ - "\u0003\u0004\u0001\u0000\u0165\u0167\u0003\u0124\u0091\u0000\u0166\u0164"+ - "\u0001\u0000\u0000\u0000\u0166\u0165\u0001\u0000\u0000\u0000\u0167\u0168"+ - "\u0001\u0000\u0000\u0000\u0168\u0169\u0006\u0000\u0000\u0000\u0169\u0003"+ - "\u0001\u0000\u0000\u0000\u016a\u0174\u0003\u014a\u00a4\u0000\u016b\u016c"+ - "\u0005.\u0000\u0000\u016c\u016e\u0004\u0001\u0000\u0000\u016d\u016f\u0003"+ - "\u014a\u00a4\u0000\u016e\u016d\u0001\u0000\u0000\u0000\u016e\u016f\u0001"+ - "\u0000\u0000\u0000\u016f\u0171\u0001\u0000\u0000\u0000\u0170\u0172\u0003"+ - "\u0152\u00a8\u0000\u0171\u0170\u0001\u0000\u0000\u0000\u0171\u0172\u0001"+ - "\u0000\u0000\u0000\u0172\u0175\u0001\u0000\u0000\u0000\u0173\u0175\u0003"+ - "\u0152\u00a8\u0000\u0174\u016b\u0001\u0000\u0000\u0000\u0174\u0173\u0001"+ - "\u0000\u0000\u0000\u0175\u017d\u0001\u0000\u0000\u0000\u0176\u0177\u0005"+ - ".\u0000\u0000\u0177\u0178\u0004\u0001\u0001\u0000\u0178\u017a\u0003\u014a"+ - "\u00a4\u0000\u0179\u017b\u0003\u0152\u00a8\u0000\u017a\u0179\u0001\u0000"+ - "\u0000\u0000\u017a\u017b\u0001\u0000\u0000\u0000\u017b\u017d\u0001\u0000"+ - "\u0000\u0000\u017c\u016a\u0001\u0000\u0000\u0000\u017c\u0176\u0001\u0000"+ - "\u0000\u0000\u017d\u0005\u0001\u0000\u0000\u0000\u017e\u017f\u0005t\u0000"+ - "\u0000\u017f\u0180\u0005r\u0000\u0000\u0180\u0181\u0005u\u0000\u0000\u0181"+ - "\u0182\u0005e\u0000\u0000\u0182\u0183\u0001\u0000\u0000\u0000\u0183\u0184"+ - "\u0006\u0002\u0000\u0000\u0184\u0007\u0001\u0000\u0000\u0000\u0185\u0186"+ - "\u0005f\u0000\u0000\u0186\u0187\u0005a\u0000\u0000\u0187\u0188\u0005l"+ - "\u0000\u0000\u0188\u0189\u0005s\u0000\u0000\u0189\u018a\u0005e\u0000\u0000"+ - "\u018a\u018b\u0001\u0000\u0000\u0000\u018b\u018c\u0006\u0003\u0000\u0000"+ - "\u018c\t\u0001\u0000\u0000\u0000\u018d\u018e\u0005a\u0000\u0000\u018e"+ - "\u018f\u0005s\u0000\u0000\u018f\u0190\u0005s\u0000\u0000\u0190\u0191\u0005"+ - "e\u0000\u0000\u0191\u0192\u0005r\u0000\u0000\u0192\u0193\u0005t\u0000"+ - "\u0000\u0193\u000b\u0001\u0000\u0000\u0000\u0194\u0195\u0005a\u0000\u0000"+ - "\u0195\u0196\u0005s\u0000\u0000\u0196\u0197\u0005s\u0000\u0000\u0197\u0198"+ - "\u0005u\u0000\u0000\u0198\u0199\u0005m\u0000\u0000\u0199\u019a\u0005e"+ - "\u0000\u0000\u019a\r\u0001\u0000\u0000\u0000\u019b\u019c\u0005i\u0000"+ + "\u8003\u134a\u8003\u1350\u8003\u23af\u0633\u0000\u0002\u0001\u0000\u0000"+ + "\u0000\u0000\u0004\u0001\u0000\u0000\u0000\u0000\u0006\u0001\u0000\u0000"+ + "\u0000\u0000\b\u0001\u0000\u0000\u0000\u0000\n\u0001\u0000\u0000\u0000"+ + "\u0000\f\u0001\u0000\u0000\u0000\u0000\u000e\u0001\u0000\u0000\u0000\u0000"+ + "\u0010\u0001\u0000\u0000\u0000\u0000\u0012\u0001\u0000\u0000\u0000\u0000"+ + "\u0014\u0001\u0000\u0000\u0000\u0000\u0016\u0001\u0000\u0000\u0000\u0000"+ + "\u0018\u0001\u0000\u0000\u0000\u0000\u001a\u0001\u0000\u0000\u0000\u0000"+ + "\u001c\u0001\u0000\u0000\u0000\u0000\u001e\u0001\u0000\u0000\u0000\u0000"+ + " \u0001\u0000\u0000\u0000\u0000\"\u0001\u0000\u0000\u0000\u0000$\u0001"+ + "\u0000\u0000\u0000\u0000&\u0001\u0000\u0000\u0000\u0000(\u0001\u0000\u0000"+ + "\u0000\u0000*\u0001\u0000\u0000\u0000\u0000,\u0001\u0000\u0000\u0000\u0000"+ + ".\u0001\u0000\u0000\u0000\u00000\u0001\u0000\u0000\u0000\u00002\u0001"+ + "\u0000\u0000\u0000\u00004\u0001\u0000\u0000\u0000\u00006\u0001\u0000\u0000"+ + "\u0000\u00008\u0001\u0000\u0000\u0000\u0000:\u0001\u0000\u0000\u0000\u0000"+ + "<\u0001\u0000\u0000\u0000\u0000>\u0001\u0000\u0000\u0000\u0000@\u0001"+ + "\u0000\u0000\u0000\u0000B\u0001\u0000\u0000\u0000\u0000D\u0001\u0000\u0000"+ + "\u0000\u0000F\u0001\u0000\u0000\u0000\u0000H\u0001\u0000\u0000\u0000\u0000"+ + "J\u0001\u0000\u0000\u0000\u0000L\u0001\u0000\u0000\u0000\u0000N\u0001"+ + "\u0000\u0000\u0000\u0000P\u0001\u0000\u0000\u0000\u0000R\u0001\u0000\u0000"+ + "\u0000\u0000T\u0001\u0000\u0000\u0000\u0000V\u0001\u0000\u0000\u0000\u0000"+ + "X\u0001\u0000\u0000\u0000\u0000Z\u0001\u0000\u0000\u0000\u0000\\\u0001"+ + "\u0000\u0000\u0000\u0000^\u0001\u0000\u0000\u0000\u0000`\u0001\u0000\u0000"+ + "\u0000\u0000b\u0001\u0000\u0000\u0000\u0000d\u0001\u0000\u0000\u0000\u0000"+ + "f\u0001\u0000\u0000\u0000\u0000h\u0001\u0000\u0000\u0000\u0000j\u0001"+ + "\u0000\u0000\u0000\u0000l\u0001\u0000\u0000\u0000\u0000n\u0001\u0000\u0000"+ + "\u0000\u0000p\u0001\u0000\u0000\u0000\u0000r\u0001\u0000\u0000\u0000\u0000"+ + "t\u0001\u0000\u0000\u0000\u0000v\u0001\u0000\u0000\u0000\u0000x\u0001"+ + "\u0000\u0000\u0000\u0000z\u0001\u0000\u0000\u0000\u0000|\u0001\u0000\u0000"+ + "\u0000\u0000~\u0001\u0000\u0000\u0000\u0000\u0080\u0001\u0000\u0000\u0000"+ + "\u0000\u0082\u0001\u0000\u0000\u0000\u0000\u0084\u0001\u0000\u0000\u0000"+ + "\u0000\u0086\u0001\u0000\u0000\u0000\u0000\u0088\u0001\u0000\u0000\u0000"+ + "\u0000\u008a\u0001\u0000\u0000\u0000\u0000\u008c\u0001\u0000\u0000\u0000"+ + "\u0000\u008e\u0001\u0000\u0000\u0000\u0000\u0090\u0001\u0000\u0000\u0000"+ + "\u0000\u0092\u0001\u0000\u0000\u0000\u0000\u0094\u0001\u0000\u0000\u0000"+ + "\u0000\u0096\u0001\u0000\u0000\u0000\u0000\u0098\u0001\u0000\u0000\u0000"+ + "\u0000\u009a\u0001\u0000\u0000\u0000\u0000\u009c\u0001\u0000\u0000\u0000"+ + "\u0000\u009e\u0001\u0000\u0000\u0000\u0000\u00a0\u0001\u0000\u0000\u0000"+ + "\u0000\u00a2\u0001\u0000\u0000\u0000\u0000\u00a4\u0001\u0000\u0000\u0000"+ + "\u0000\u00a6\u0001\u0000\u0000\u0000\u0000\u00a8\u0001\u0000\u0000\u0000"+ + "\u0000\u00aa\u0001\u0000\u0000\u0000\u0000\u00ac\u0001\u0000\u0000\u0000"+ + "\u0000\u00ae\u0001\u0000\u0000\u0000\u0000\u00b0\u0001\u0000\u0000\u0000"+ + "\u0000\u00b2\u0001\u0000\u0000\u0000\u0000\u00b4\u0001\u0000\u0000\u0000"+ + "\u0000\u00b6\u0001\u0000\u0000\u0000\u0000\u00b8\u0001\u0000\u0000\u0000"+ + "\u0000\u00ba\u0001\u0000\u0000\u0000\u0000\u00bc\u0001\u0000\u0000\u0000"+ + "\u0000\u00be\u0001\u0000\u0000\u0000\u0000\u00c0\u0001\u0000\u0000\u0000"+ + "\u0000\u00c2\u0001\u0000\u0000\u0000\u0000\u00c4\u0001\u0000\u0000\u0000"+ + "\u0000\u00c6\u0001\u0000\u0000\u0000\u0000\u00c8\u0001\u0000\u0000\u0000"+ + "\u0000\u00ca\u0001\u0000\u0000\u0000\u0000\u00cc\u0001\u0000\u0000\u0000"+ + "\u0000\u00ce\u0001\u0000\u0000\u0000\u0000\u00d0\u0001\u0000\u0000\u0000"+ + "\u0000\u00d2\u0001\u0000\u0000\u0000\u0000\u00d4\u0001\u0000\u0000\u0000"+ + "\u0000\u00d6\u0001\u0000\u0000\u0000\u0000\u00d8\u0001\u0000\u0000\u0000"+ + "\u0000\u00da\u0001\u0000\u0000\u0000\u0000\u00dc\u0001\u0000\u0000\u0000"+ + "\u0000\u00de\u0001\u0000\u0000\u0000\u0000\u00e0\u0001\u0000\u0000\u0000"+ + "\u0000\u00e2\u0001\u0000\u0000\u0000\u0000\u00e4\u0001\u0000\u0000\u0000"+ + "\u0000\u00e6\u0001\u0000\u0000\u0000\u0000\u00e8\u0001\u0000\u0000\u0000"+ + "\u0000\u00ea\u0001\u0000\u0000\u0000\u0000\u00ec\u0001\u0000\u0000\u0000"+ + "\u0000\u00ee\u0001\u0000\u0000\u0000\u0000\u00f0\u0001\u0000\u0000\u0000"+ + "\u0000\u00f2\u0001\u0000\u0000\u0000\u0000\u00f4\u0001\u0000\u0000\u0000"+ + "\u0000\u00f6\u0001\u0000\u0000\u0000\u0000\u00f8\u0001\u0000\u0000\u0000"+ + "\u0000\u00fa\u0001\u0000\u0000\u0000\u0000\u00fc\u0001\u0000\u0000\u0000"+ + "\u0000\u00fe\u0001\u0000\u0000\u0000\u0000\u0100\u0001\u0000\u0000\u0000"+ + "\u0000\u0102\u0001\u0000\u0000\u0000\u0000\u0104\u0001\u0000\u0000\u0000"+ + "\u0000\u0106\u0001\u0000\u0000\u0000\u0000\u0108\u0001\u0000\u0000\u0000"+ + "\u0000\u010a\u0001\u0000\u0000\u0000\u0000\u010c\u0001\u0000\u0000\u0000"+ + "\u0000\u010e\u0001\u0000\u0000\u0000\u0000\u0110\u0001\u0000\u0000\u0000"+ + "\u0000\u0112\u0001\u0000\u0000\u0000\u0000\u0114\u0001\u0000\u0000\u0000"+ + "\u0000\u0116\u0001\u0000\u0000\u0000\u0000\u0118\u0001\u0000\u0000\u0000"+ + "\u0000\u011a\u0001\u0000\u0000\u0000\u0000\u011c\u0001\u0000\u0000\u0000"+ + "\u0000\u011e\u0001\u0000\u0000\u0000\u0000\u0120\u0001\u0000\u0000\u0000"+ + "\u0000\u0122\u0001\u0000\u0000\u0000\u0000\u0124\u0001\u0000\u0000\u0000"+ + "\u0000\u012a\u0001\u0000\u0000\u0000\u0000\u012e\u0001\u0000\u0000\u0000"+ + "\u0000\u0130\u0001\u0000\u0000\u0000\u0000\u0132\u0001\u0000\u0000\u0000"+ + "\u0000\u0134\u0001\u0000\u0000\u0000\u0000\u0136\u0001\u0000\u0000\u0000"+ + "\u0000\u0138\u0001\u0000\u0000\u0000\u0000\u013a\u0001\u0000\u0000\u0000"+ + "\u0000\u013c\u0001\u0000\u0000\u0000\u0000\u013e\u0001\u0000\u0000\u0000"+ + "\u0000\u0140\u0001\u0000\u0000\u0000\u0000\u0142\u0001\u0000\u0000\u0000"+ + "\u0000\u0144\u0001\u0000\u0000\u0000\u0001\u015a\u0001\u0000\u0000\u0000"+ + "\u0001\u015c\u0001\u0000\u0000\u0000\u0001\u015e\u0001\u0000\u0000\u0000"+ + "\u0001\u0160\u0001\u0000\u0000\u0000\u0001\u0162\u0001\u0000\u0000\u0000"+ + "\u0002\u0166\u0001\u0000\u0000\u0000\u0004\u017c\u0001\u0000\u0000\u0000"+ + "\u0006\u017e\u0001\u0000\u0000\u0000\b\u0185\u0001\u0000\u0000\u0000\n"+ + "\u018d\u0001\u0000\u0000\u0000\f\u0194\u0001\u0000\u0000\u0000\u000e\u019b"+ + "\u0001\u0000\u0000\u0000\u0010\u01a2\u0001\u0000\u0000\u0000\u0012\u01a9"+ + "\u0001\u0000\u0000\u0000\u0014\u01b2\u0001\u0000\u0000\u0000\u0016\u01bc"+ + "\u0001\u0000\u0000\u0000\u0018\u01c4\u0001\u0000\u0000\u0000\u001a\u01ce"+ + "\u0001\u0000\u0000\u0000\u001c\u01da\u0001\u0000\u0000\u0000\u001e\u01e1"+ + "\u0001\u0000\u0000\u0000 \u01ec\u0001\u0000\u0000\u0000\"\u01ef\u0001"+ + "\u0000\u0000\u0000$\u01f5\u0001\u0000\u0000\u0000&\u01fe\u0001\u0000\u0000"+ + "\u0000(\u0203\u0001\u0000\u0000\u0000*\u020a\u0001\u0000\u0000\u0000,"+ + "\u0211\u0001\u0000\u0000\u0000.\u0217\u0001\u0000\u0000\u00000\u021c\u0001"+ + "\u0000\u0000\u00002\u0223\u0001\u0000\u0000\u00004\u022d\u0001\u0000\u0000"+ + "\u00006\u0231\u0001\u0000\u0000\u00008\u0237\u0001\u0000\u0000\u0000:"+ + "\u023a\u0001\u0000\u0000\u0000<\u023c\u0001\u0000\u0000\u0000>\u0243\u0001"+ + "\u0000\u0000\u0000@\u0249\u0001\u0000\u0000\u0000B\u0256\u0001\u0000\u0000"+ + "\u0000D\u025f\u0001\u0000\u0000\u0000F\u0263\u0001\u0000\u0000\u0000H"+ + "\u0267\u0001\u0000\u0000\u0000J\u026d\u0001\u0000\u0000\u0000L\u026f\u0001"+ + "\u0000\u0000\u0000N\u0272\u0001\u0000\u0000\u0000P\u0277\u0001\u0000\u0000"+ + "\u0000R\u027d\u0001\u0000\u0000\u0000T\u0283\u0001\u0000\u0000\u0000V"+ + "\u028a\u0001\u0000\u0000\u0000X\u0291\u0001\u0000\u0000\u0000Z\u029a\u0001"+ + "\u0000\u0000\u0000\\\u02a5\u0001\u0000\u0000\u0000^\u02ab\u0001\u0000"+ + "\u0000\u0000`\u02b1\u0001\u0000\u0000\u0000b\u02b8\u0001\u0000\u0000\u0000"+ + "d\u02be\u0001\u0000\u0000\u0000f\u02c5\u0001\u0000\u0000\u0000h\u02cb"+ + "\u0001\u0000\u0000\u0000j\u02d4\u0001\u0000\u0000\u0000l\u02dc\u0001\u0000"+ + "\u0000\u0000n\u02e2\u0001\u0000\u0000\u0000p\u02ea\u0001\u0000\u0000\u0000"+ + "r\u02f1\u0001\u0000\u0000\u0000t\u02f6\u0001\u0000\u0000\u0000v\u02ff"+ + "\u0001\u0000\u0000\u0000x\u030e\u0001\u0000\u0000\u0000z\u0314\u0001\u0000"+ + "\u0000\u0000|\u0318\u0001\u0000\u0000\u0000~\u031b\u0001\u0000\u0000\u0000"+ + "\u0080\u0322\u0001\u0000\u0000\u0000\u0082\u032c\u0001\u0000\u0000\u0000"+ + "\u0084\u0336\u0001\u0000\u0000\u0000\u0086\u0342\u0001\u0000\u0000\u0000"+ + "\u0088\u034b\u0001\u0000\u0000\u0000\u008a\u0355\u0001\u0000\u0000\u0000"+ + "\u008c\u035d\u0001\u0000\u0000\u0000\u008e\u0369\u0001\u0000\u0000\u0000"+ + "\u0090\u0378\u0001\u0000\u0000\u0000\u0092\u037e\u0001\u0000\u0000\u0000"+ + "\u0094\u0382\u0001\u0000\u0000\u0000\u0096\u0386\u0001\u0000\u0000\u0000"+ + "\u0098\u038b\u0001\u0000\u0000\u0000\u009a\u0394\u0001\u0000\u0000\u0000"+ + "\u009c\u039b\u0001\u0000\u0000\u0000\u009e\u03a4\u0001\u0000\u0000\u0000"+ + "\u00a0\u03ac\u0001\u0000\u0000\u0000\u00a2\u03b4\u0001\u0000\u0000\u0000"+ + "\u00a4\u03b9\u0001\u0000\u0000\u0000\u00a6\u03c3\u0001\u0000\u0000\u0000"+ + "\u00a8\u03ca\u0001\u0000\u0000\u0000\u00aa\u03cf\u0001\u0000\u0000\u0000"+ + "\u00ac\u03d5\u0001\u0000\u0000\u0000\u00ae\u03d8\u0001\u0000\u0000\u0000"+ + "\u00b0\u03dc\u0001\u0000\u0000\u0000\u00b2\u03e3\u0001\u0000\u0000\u0000"+ + "\u00b4\u03e8\u0001\u0000\u0000\u0000\u00b6\u03ed\u0001\u0000\u0000\u0000"+ + "\u00b8\u03f2\u0001\u0000\u0000\u0000\u00ba\u03fa\u0001\u0000\u0000\u0000"+ + "\u00bc\u0401\u0001\u0000\u0000\u0000\u00be\u0407\u0001\u0000\u0000\u0000"+ + "\u00c0\u0415\u0001\u0000\u0000\u0000\u00c2\u0418\u0001\u0000\u0000\u0000"+ + "\u00c4\u041e\u0001\u0000\u0000\u0000\u00c6\u0423\u0001\u0000\u0000\u0000"+ + "\u00c8\u042e\u0001\u0000\u0000\u0000\u00ca\u0432\u0001\u0000\u0000\u0000"+ + "\u00cc\u0439\u0001\u0000\u0000\u0000\u00ce\u0442\u0001\u0000\u0000\u0000"+ + "\u00d0\u0446\u0001\u0000\u0000\u0000\u00d2\u044c\u0001\u0000\u0000\u0000"+ + "\u00d4\u0456\u0001\u0000\u0000\u0000\u00d6\u0458\u0001\u0000\u0000\u0000"+ + "\u00d8\u045c\u0001\u0000\u0000\u0000\u00da\u045e\u0001\u0000\u0000\u0000"+ + "\u00dc\u0462\u0001\u0000\u0000\u0000\u00de\u0464\u0001\u0000\u0000\u0000"+ + "\u00e0\u0468\u0001\u0000\u0000\u0000\u00e2\u046a\u0001\u0000\u0000\u0000"+ + "\u00e4\u046c\u0001\u0000\u0000\u0000\u00e6\u046e\u0001\u0000\u0000\u0000"+ + "\u00e8\u0470\u0001\u0000\u0000\u0000\u00ea\u0472\u0001\u0000\u0000\u0000"+ + "\u00ec\u0477\u0001\u0000\u0000\u0000\u00ee\u047c\u0001\u0000\u0000\u0000"+ + "\u00f0\u047f\u0001\u0000\u0000\u0000\u00f2\u0483\u0001\u0000\u0000\u0000"+ + "\u00f4\u0486\u0001\u0000\u0000\u0000\u00f6\u0489\u0001\u0000\u0000\u0000"+ + "\u00f8\u048c\u0001\u0000\u0000\u0000\u00fa\u048f\u0001\u0000\u0000\u0000"+ + "\u00fc\u0491\u0001\u0000\u0000\u0000\u00fe\u0494\u0001\u0000\u0000\u0000"+ + "\u0100\u0496\u0001\u0000\u0000\u0000\u0102\u0499\u0001\u0000\u0000\u0000"+ + "\u0104\u049b\u0001\u0000\u0000\u0000\u0106\u049d\u0001\u0000\u0000\u0000"+ + "\u0108\u049f\u0001\u0000\u0000\u0000\u010a\u04a2\u0001\u0000\u0000\u0000"+ + "\u010c\u04a5\u0001\u0000\u0000\u0000\u010e\u04a8\u0001\u0000\u0000\u0000"+ + "\u0110\u04aa\u0001\u0000\u0000\u0000\u0112\u04ac\u0001\u0000\u0000\u0000"+ + "\u0114\u04ae\u0001\u0000\u0000\u0000\u0116\u04b0\u0001\u0000\u0000\u0000"+ + "\u0118\u04b2\u0001\u0000\u0000\u0000\u011a\u04b4\u0001\u0000\u0000\u0000"+ + "\u011c\u04c2\u0001\u0000\u0000\u0000\u011e\u04c6\u0001\u0000\u0000\u0000"+ + "\u0120\u04d2\u0001\u0000\u0000\u0000\u0122\u04e0\u0001\u0000\u0000\u0000"+ + "\u0124\u04ec\u0001\u0000\u0000\u0000\u0126\u0510\u0001\u0000\u0000\u0000"+ + "\u0128\u0512\u0001\u0000\u0000\u0000\u012a\u051d\u0001\u0000\u0000\u0000"+ + "\u012c\u0523\u0001\u0000\u0000\u0000\u012e\u052a\u0001\u0000\u0000\u0000"+ + "\u0130\u0530\u0001\u0000\u0000\u0000\u0132\u0532\u0001\u0000\u0000\u0000"+ + "\u0134\u0537\u0001\u0000\u0000\u0000\u0136\u053c\u0001\u0000\u0000\u0000"+ + "\u0138\u0543\u0001\u0000\u0000\u0000\u013a\u054e\u0001\u0000\u0000\u0000"+ + "\u013c\u0559\u0001\u0000\u0000\u0000\u013e\u0566\u0001\u0000\u0000\u0000"+ + "\u0140\u056c\u0001\u0000\u0000\u0000\u0142\u057b\u0001\u0000\u0000\u0000"+ + "\u0144\u0581\u0001\u0000\u0000\u0000\u0146\u0590\u0001\u0000\u0000\u0000"+ + "\u0148\u0592\u0001\u0000\u0000\u0000\u014a\u05ae\u0001\u0000\u0000\u0000"+ + "\u014c\u05b8\u0001\u0000\u0000\u0000\u014e\u05ba\u0001\u0000\u0000\u0000"+ + "\u0150\u05bc\u0001\u0000\u0000\u0000\u0152\u05be\u0001\u0000\u0000\u0000"+ + "\u0154\u05c6\u0001\u0000\u0000\u0000\u0156\u05c8\u0001\u0000\u0000\u0000"+ + "\u0158\u05ca\u0001\u0000\u0000\u0000\u015a\u05cd\u0001\u0000\u0000\u0000"+ + "\u015c\u05d3\u0001\u0000\u0000\u0000\u015e\u05e1\u0001\u0000\u0000\u0000"+ + "\u0160\u05fe\u0001\u0000\u0000\u0000\u0162\u0602\u0001\u0000\u0000\u0000"+ + "\u0164\u0167\u0003\u0004\u0001\u0000\u0165\u0167\u0003\u0124\u0091\u0000"+ + "\u0166\u0164\u0001\u0000\u0000\u0000\u0166\u0165\u0001\u0000\u0000\u0000"+ + "\u0167\u0168\u0001\u0000\u0000\u0000\u0168\u0169\u0006\u0000\u0000\u0000"+ + "\u0169\u0003\u0001\u0000\u0000\u0000\u016a\u0174\u0003\u014a\u00a4\u0000"+ + "\u016b\u016c\u0005.\u0000\u0000\u016c\u016e\u0004\u0001\u0000\u0000\u016d"+ + "\u016f\u0003\u014a\u00a4\u0000\u016e\u016d\u0001\u0000\u0000\u0000\u016e"+ + "\u016f\u0001\u0000\u0000\u0000\u016f\u0171\u0001\u0000\u0000\u0000\u0170"+ + "\u0172\u0003\u0152\u00a8\u0000\u0171\u0170\u0001\u0000\u0000\u0000\u0171"+ + "\u0172\u0001\u0000\u0000\u0000\u0172\u0175\u0001\u0000\u0000\u0000\u0173"+ + "\u0175\u0003\u0152\u00a8\u0000\u0174\u016b\u0001\u0000\u0000\u0000\u0174"+ + "\u0173\u0001\u0000\u0000\u0000\u0175\u017d\u0001\u0000\u0000\u0000\u0176"+ + "\u0177\u0005.\u0000\u0000\u0177\u0178\u0004\u0001\u0001\u0000\u0178\u017a"+ + "\u0003\u014a\u00a4\u0000\u0179\u017b\u0003\u0152\u00a8\u0000\u017a\u0179"+ + "\u0001\u0000\u0000\u0000\u017a\u017b\u0001\u0000\u0000\u0000\u017b\u017d"+ + "\u0001\u0000\u0000\u0000\u017c\u016a\u0001\u0000\u0000\u0000\u017c\u0176"+ + "\u0001\u0000\u0000\u0000\u017d\u0005\u0001\u0000\u0000\u0000\u017e\u017f"+ + "\u0005t\u0000\u0000\u017f\u0180\u0005r\u0000\u0000\u0180\u0181\u0005u"+ + "\u0000\u0000\u0181\u0182\u0005e\u0000\u0000\u0182\u0183\u0001\u0000\u0000"+ + "\u0000\u0183\u0184\u0006\u0002\u0000\u0000\u0184\u0007\u0001\u0000\u0000"+ + "\u0000\u0185\u0186\u0005f\u0000\u0000\u0186\u0187\u0005a\u0000\u0000\u0187"+ + "\u0188\u0005l\u0000\u0000\u0188\u0189\u0005s\u0000\u0000\u0189\u018a\u0005"+ + "e\u0000\u0000\u018a\u018b\u0001\u0000\u0000\u0000\u018b\u018c\u0006\u0003"+ + "\u0000\u0000\u018c\t\u0001\u0000\u0000\u0000\u018d\u018e\u0005a\u0000"+ + "\u0000\u018e\u018f\u0005s\u0000\u0000\u018f\u0190\u0005s\u0000\u0000\u0190"+ + "\u0191\u0005e\u0000\u0000\u0191\u0192\u0005r\u0000\u0000\u0192\u0193\u0005"+ + "t\u0000\u0000\u0193\u000b\u0001\u0000\u0000\u0000\u0194\u0195\u0005a\u0000"+ + "\u0000\u0195\u0196\u0005s\u0000\u0000\u0196\u0197\u0005s\u0000\u0000\u0197"+ + "\u0198\u0005u\u0000\u0000\u0198\u0199\u0005m\u0000\u0000\u0199\u019a\u0005"+ + "e\u0000\u0000\u019a\r\u0001\u0000\u0000\u0000\u019b\u019c\u0005i\u0000"+ "\u0000\u019c\u019d\u0005n\u0000\u0000\u019d\u019e\u0005h\u0000\u0000\u019e"+ "\u019f\u0005a\u0000\u0000\u019f\u01a0\u0005l\u0000\u0000\u01a0\u01a1\u0005"+ "e\u0000\u0000\u01a1\u000f\u0001\u0000\u0000\u0000\u01a2\u01a3\u0005e\u0000"+ diff --git a/src/main/java/viper/gobra/frontend/GobraParser.java b/src/main/java/viper/gobra/frontend/GobraParser.java index 827cbe936..39199c952 100644 --- a/src/main/java/viper/gobra/frontend/GobraParser.java +++ b/src/main/java/viper/gobra/frontend/GobraParser.java @@ -1,4 +1,4 @@ -// Generated from src/main/antlr4/GobraParser.g4 by ANTLR 4.12.0 +// Generated from src/main/antlr4/GobraParser.g4 by ANTLR 4.13.1 package viper.gobra.frontend; import org.antlr.v4.runtime.atn.*; import org.antlr.v4.runtime.dfa.DFA; @@ -11,7 +11,7 @@ @SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast", "CheckReturnValue"}) public class GobraParser extends GobraParserBase { - static { RuntimeMetaData.checkVersion("4.12.0", RuntimeMetaData.VERSION); } + static { RuntimeMetaData.checkVersion("4.13.1", RuntimeMetaData.VERSION); } protected static final DFA[] _decisionToDFA; protected static final PredictionContextCache _sharedContextCache = diff --git a/src/main/java/viper/gobra/frontend/GobraParserBaseVisitor.java b/src/main/java/viper/gobra/frontend/GobraParserBaseVisitor.java index cc609ad80..ea41681a0 100644 --- a/src/main/java/viper/gobra/frontend/GobraParserBaseVisitor.java +++ b/src/main/java/viper/gobra/frontend/GobraParserBaseVisitor.java @@ -1,4 +1,4 @@ -// Generated from src/main/antlr4/GobraParser.g4 by ANTLR 4.12.0 +// Generated from src/main/antlr4/GobraParser.g4 by ANTLR 4.13.1 package viper.gobra.frontend; import org.antlr.v4.runtime.tree.AbstractParseTreeVisitor; diff --git a/src/main/java/viper/gobra/frontend/GobraParserVisitor.java b/src/main/java/viper/gobra/frontend/GobraParserVisitor.java index 9b23c3195..37344b222 100644 --- a/src/main/java/viper/gobra/frontend/GobraParserVisitor.java +++ b/src/main/java/viper/gobra/frontend/GobraParserVisitor.java @@ -1,4 +1,4 @@ -// Generated from src/main/antlr4/GobraParser.g4 by ANTLR 4.12.0 +// Generated from src/main/antlr4/GobraParser.g4 by ANTLR 4.13.1 package viper.gobra.frontend; import org.antlr.v4.runtime.tree.ParseTreeVisitor; From 9834dedaadf059f40f9a5afa56505b2763304826 Mon Sep 17 00:00:00 2001 From: Linard Arquint Date: Thu, 28 Mar 2024 08:52:34 +0100 Subject: [PATCH 15/16] implements CR suggestions by Felix --- .../resolution/MemberResolution.scala | 14 ++++---- .../typing/ghost/separation/GhostTyping.scala | 4 +-- .../ghost_pointer/ghost-nil-simple01.gobra | 25 +++++++++++++ .../ghost-pointer-receiver-fail01.gobra | 33 ----------------- .../ghost-pointer-receiver-simple01.gobra | 35 ++++++++++++++----- 5 files changed, 62 insertions(+), 49 deletions(-) create mode 100644 src/test/resources/regressions/features/ghost_pointer/ghost-nil-simple01.gobra delete mode 100644 src/test/resources/regressions/features/ghost_pointer/ghost-pointer-receiver-fail01.gobra diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/resolution/MemberResolution.scala b/src/main/scala/viper/gobra/frontend/info/implementation/resolution/MemberResolution.scala index ff21f6c06..0aa807928 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/resolution/MemberResolution.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/resolution/MemberResolution.scala @@ -86,7 +86,7 @@ trait MemberResolution { this: TypeInfoImpl => def go(pastDeref: Boolean): Type => AdvancedMemberSet[AdtMember] = attr[Type, AdvancedMemberSet[AdtMember]] { case DeclaredT(decl, context) => go(pastDeref)(context.symbType(decl.right)).surface - case ActualPointerT(t) if !pastDeref => go(pastDeref = true)(t).ref + case PointerT(t) if !pastDeref => go(pastDeref = true)(t).ref case t: AdtT => val clauseMemberSets = t.adtDecl.clauses.map(adtClauseMemberSet(_, t.decl, t.adtDecl, t.context)) @@ -225,7 +225,7 @@ trait MemberResolution { this: TypeInfoImpl => def go(pastDeref: Boolean): Type => AdvancedMemberSet[M] = attr[Type, AdvancedMemberSet[M]] { case DeclaredT(decl, context) => go(pastDeref)(context.symbType(decl.right)).surface - case ActualPointerT(t) if !pastDeref => go(pastDeref = true)(t).ref + case PointerT(t) if !pastDeref => go(pastDeref = true)(t).ref case s: StructT => AdvancedMemberSet.union(s.decl.embedded map { e => @@ -246,7 +246,8 @@ trait MemberResolution { this: TypeInfoImpl => private val pastPromotionsMethodSuffix: Type => AdvancedMemberSet[TypeMember] = attr[Type, AdvancedMemberSet[TypeMember]] { case t: InterfaceT => interfaceMethodSet(t) - case pt@ActualPointerT(t) => receiverSet(pt) union receiverSet(t).ref + case pt@PointerT(t) => receiverSet(pt) union receiverSet(t).ref + // we do not add `receiverSet(GhostPointerT(t)).deref` since this would result in implicitly assuming that the receiver points to the ghost heap, which is not guaranteed: case t => receiverSet(t) union receiverSet(ActualPointerT(t)).deref } @@ -254,7 +255,7 @@ trait MemberResolution { this: TypeInfoImpl => attr[Type, AdvancedMemberSet[TypeMember]] { case Single(t) => pastPromotions(pastPromotionsMethodSuffix)(t) union (t match { - case pt@ ActualPointerT(st) => receiverSet(pt) union receiverSet(st).ref + case pt@ PointerT(st) => receiverSet(pt) union receiverSet(st).ref case _ => receiverSet(t) }) case _ => AdvancedMemberSet.empty @@ -264,7 +265,8 @@ trait MemberResolution { this: TypeInfoImpl => attr[Type, AdvancedMemberSet[TypeMember]] { case Single(t) => pastPromotions(pastPromotionsMethodSuffix)(t) union (t match { - case pt@ ActualPointerT(st) => receiverSet(pt) union receiverSet(st).ref + case pt@ PointerT(st) => receiverSet(pt) union receiverSet(st).ref + // we do not add `receiverSet(GhostPointerT(t)).deref` since this would result in implicitly assuming that the receiver points to the ghost heap, which is not guaranteed: case _ => receiverSet(t) union receiverSet(ActualPointerT(t)).deref }) case _ => AdvancedMemberSet.empty @@ -317,7 +319,7 @@ trait MemberResolution { this: TypeInfoImpl => private def getMethodReceiverContext(t: Type): ExternalTypeInfo = { Single.unapply(t) match { case Some(ct: ContextualType) => ct.context - case Some(p: ActualPointerT) => getMethodReceiverContext(p.elem) + case Some(p: PointerT) => getMethodReceiverContext(p.elem) case _ => this } } diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostTyping.scala b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostTyping.scala index aeb011743..308d66ff6 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostTyping.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostTyping.scala @@ -131,7 +131,7 @@ trait GhostTyping extends GhostClassifier { this: TypeInfoImpl => createGhostTyping[PExpression] { case PNamedOperand(id) => ghost(ghostIdClassification(id)) case e: PDeref => resolve(e) match { - case Some(ap.Deref(base)) => exprType(base) match { + case Some(ap.Deref(base)) => underlyingType(exprType(base)) match { case _: Type.GhostPointerT => isGhost case _ => notGhost } @@ -140,7 +140,7 @@ trait GhostTyping extends GhostClassifier { this: TypeInfoImpl => case e: PDot => resolve(e) match { case Some(s: ap.FieldSelection) => val isGhostField = ghostIdClassification(s.id) - (typ(s.base), isGhostField) match { + (underlyingType(typ(s.base)), isGhostField) match { case (_, true) => isGhost // ghost fields are always ghost memory case (tb: Type.PointerT, _) => ghost(tb.isInstanceOf[Type.GhostPointerT]) // (implicitly) dereferencing a field of a ghost pointer leads to a ghost heap location case _ => ghostLocationTyping(s.base) // assignee is on the stack, recurse to find out if it's a ghost or actual variable diff --git a/src/test/resources/regressions/features/ghost_pointer/ghost-nil-simple01.gobra b/src/test/resources/regressions/features/ghost_pointer/ghost-nil-simple01.gobra new file mode 100644 index 000000000..e551bdd90 --- /dev/null +++ b/src/test/resources/regressions/features/ghost_pointer/ghost-nil-simple01.gobra @@ -0,0 +1,25 @@ +// Any copyright is dedicated to the Public Domain. +// http://creativecommons.org/publicdomain/zero/1.0/ + +package GhostNilSimple01 + +ghost +decreases +func GhostFunc(a *int) { + a = nil + var b gpointer[int] + b = nil + b = new(int) + //:: ExpectedOutput(assert_error:assertion_error) + assert false +} + +decreases +func ActualFunc(ghost b gpointer[int]) { + var a *int = nil + a = new(int) + b = nil + ghost b = new(int) + //:: ExpectedOutput(assert_error:assertion_error) + assert false +} diff --git a/src/test/resources/regressions/features/ghost_pointer/ghost-pointer-receiver-fail01.gobra b/src/test/resources/regressions/features/ghost_pointer/ghost-pointer-receiver-fail01.gobra deleted file mode 100644 index d8c9e4d32..000000000 --- a/src/test/resources/regressions/features/ghost_pointer/ghost-pointer-receiver-fail01.gobra +++ /dev/null @@ -1,33 +0,0 @@ -// Any copyright is dedicated to the Public Domain. -// http://creativecommons.org/publicdomain/zero/1.0/ - -package GhostPointerReceiverFail01 - -type Foo struct { - field int -} - -ghost -decreases -func GhostFunc() { - p := &Foo{ 42 } - p.bar1() - //:: ExpectedOutput(type_error) - p.bar2() // bar2 is not defined on a ghost pointer -} - -// note that the type error refers to the receiver but is (for technical reasons) located at the beginning of the function declaration -//:: ExpectedOutput(type_error) -decreases -func (r gpointer[Foo]) bar1() int { // ghostpointer is only allowed for ghost methods - r.field = 0 - return 42 -} - -ghost -decreases -func (r *Foo) bar2() int { - //:: ExpectedOutput(type_error) - r.field = 0 // fails since we're trying to modify actual memory - return r.field -} diff --git a/src/test/resources/regressions/features/ghost_pointer/ghost-pointer-receiver-simple01.gobra b/src/test/resources/regressions/features/ghost_pointer/ghost-pointer-receiver-simple01.gobra index c21f3a77a..5cec3fc20 100644 --- a/src/test/resources/regressions/features/ghost_pointer/ghost-pointer-receiver-simple01.gobra +++ b/src/test/resources/regressions/features/ghost_pointer/ghost-pointer-receiver-simple01.gobra @@ -12,36 +12,55 @@ decreases preserves acc(p) func GhostFunc(p *Foo) { gp := &Foo{ 42 } - gp.bar1() + gp.GhostPointerReceiver() - p.bar2() - (*p).bar3() - (*gp).bar3() + (*p).GhostNonPointerReceiver() + // p is implicitly dereferenced: + p.GhostNonPointerReceiver() + (*gp).GhostNonPointerReceiver() + // gp is implicitly dereferenced: + x := gp.GhostNonPointerReceiver() +} + +decreases +preserves acc(p) +func ActualFunc(p *Foo) { + p.ActualPointerReceiver() + (*p).GhostNonPointerReceiver() + // *p is implicitly referenced: + (*p).ActualPointerReceiver() + // p is implicitly dereferenced: + p.ActualNonPointerReceiver() + //:: ExpectedOutput(assert_error:assertion_error) + assert false } ghost decreases preserves acc(r) -func (r gpointer[Foo]) bar1() int { +func (r gpointer[Foo]) GhostPointerReceiver() int { r.field = 0 return r.field } decreases preserves acc(r) -func (r *Foo) bar2() int { +func (r *Foo) ActualPointerReceiver() int { r.field = 0 return r.field } ghost decreases -func (r Foo) bar3() int { +func (r Foo) GhostNonPointerReceiver() int { r.field = 42 return r.field } -func (r Foo) bar4() int { +decreases +//:: ExpectedOutput(postcondition_error:assertion_error) +ensures r.field == 42 +func (r Foo) ActualNonPointerReceiver() int { r.field = 42 return r.field } From c9ed150a0b2172649b31501237ad80a8b8c2ac21 Mon Sep 17 00:00:00 2001 From: Linard Arquint Date: Thu, 28 Mar 2024 08:53:27 +0100 Subject: [PATCH 16/16] treats the receiver of a method expression as a ghost parameter --- .../typing/ghost/separation/GhostAssignability.scala | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostAssignability.scala b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostAssignability.scala index d3d946e86..6a0650f38 100644 --- a/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostAssignability.scala +++ b/src/main/scala/viper/gobra/frontend/info/implementation/typing/ghost/separation/GhostAssignability.scala @@ -167,12 +167,14 @@ trait GhostAssignability { case p: ap.Function => argTyping(p.symb.args, p.symb.ghost, p.symb.context) case p: ap.Closure => argTyping(p.symb.args, p.symb.ghost, p.symb.context) case p: ap.ReceivedMethod => argTyping(p.symb.args, p.symb.ghost, p.symb.context) - case p: ap.MethodExpr => GhostType.ghostTuple(false +: argTyping(p.symb.args, p.symb.ghost, p.symb.context).toTuple) + // first argument is the receiver which inherits its ghostness from the method's ghostness + case p: ap.MethodExpr => GhostType.ghostTuple(p.symb.ghost +: argTyping(p.symb.args, p.symb.ghost, p.symb.context).toTuple) case _: ap.PredicateKind => GhostType.isGhost case _: ap.DomainFunction => GhostType.isGhost case ap.BuiltInFunction(_, symb) => argGhostTyping(symb.tag, call.args.map(typ)) case ap.BuiltInReceivedMethod(recv, _, _, symb) => argGhostTyping(symb.tag, Vector(typ(recv))) - case ap.BuiltInMethodExpr(typ, _, _, symb) => GhostType.ghostTuple(false +: argGhostTyping(symb.tag, Vector(typeSymbType(typ))).toTuple) + // first argument is the receiver which inherits its ghostness from the method's ghostness + case ap.BuiltInMethodExpr(typ, _, _, symb) => GhostType.ghostTuple(symb.ghost +: argGhostTyping(symb.tag, Vector(typeSymbType(typ))).toTuple) case p: ap.ImplicitlyReceivedInterfaceMethod => argTyping(p.symb.args, p.symb.ghost, p.symb.context) case _ => GhostType.notGhost // conservative choice }