update fix few bugs
This commit is contained in:
12
ExprLexer.g4
12
ExprLexer.g4
@@ -8,7 +8,7 @@ fragment UnicodeEscape: '\\' UnicodeMarker HexDigit HexDigit HexDigit HexDigit;
|
||||
fragment UnicodeMarker: 'u'+;
|
||||
|
||||
|
||||
fragment RawInputCharacter:;
|
||||
fragment RawInputCharacter: .;
|
||||
//not complete need to ask question from prof.
|
||||
|
||||
// LINE TERMINATORS -----------------------------------------------------------------------------------------------------------------------
|
||||
@@ -17,10 +17,10 @@ LineTerminator: '\n' | '\r' | '\r\n';
|
||||
InputCharacter: [^\n\r];
|
||||
|
||||
//WHITE SPACE ----------------------------------------------------------------------------------------------------------------------------------------
|
||||
WhiteSpace: ' ' | '\t' | '\f' | LineTerminator;
|
||||
WhiteSpace: (' ' | '\t' | '\f' | LineTerminator) -> skip;
|
||||
|
||||
//COMMENTS --------------------------------------------------------------------------------------------------------------------------------------------------
|
||||
Comment: TraditionalComment | EndOfLineComment;
|
||||
Comment: (TraditionalComment | EndOfLineComment) -> skip;
|
||||
|
||||
fragment TraditionalComment:
|
||||
'/*' NotStar CommentTail;
|
||||
@@ -199,10 +199,10 @@ Dot: '.';
|
||||
|
||||
//OPERATORS ---------------------------------------------------------------------------------------------------------------------------------------
|
||||
Assignment: '=';
|
||||
GreterThan: '>';
|
||||
LessThan: '<';
|
||||
LogicalComplement: '!';
|
||||
BitwiseComplement: '~';
|
||||
LessThan: '<';
|
||||
GreaterThan: '>';
|
||||
LogicalComplement: '!';
|
||||
Question: '?';
|
||||
Colon: ':';
|
||||
EqualTo: '==';
|
||||
|
||||
281
ExprParser.g4
Normal file
281
ExprParser.g4
Normal file
@@ -0,0 +1,281 @@
|
||||
parser grammar ExprParser;
|
||||
|
||||
options {
|
||||
tokenVocab=ExprLexer;
|
||||
}
|
||||
|
||||
identifier: IDENTIFIER;
|
||||
|
||||
qualifiedIdentifier: identifier (Dot identifier)*;
|
||||
|
||||
literal: IntegerLiteral
|
||||
| FloatingPointLiteral
|
||||
| CharacterLiteral
|
||||
| StringLiteral
|
||||
| BooleanLiteral
|
||||
| NullLiteral;
|
||||
|
||||
expression
|
||||
: expression1 (assignmentOperator expression1)?
|
||||
;
|
||||
|
||||
assignmentOperator: Assignment
|
||||
| AddAssign
|
||||
| SubtractAssign
|
||||
| MultiplyAssign
|
||||
| DivideAssign
|
||||
| BitwiseANDAssign
|
||||
| BitwiseORAssign
|
||||
| BitwiseXORAssign
|
||||
| RemainderAssign
|
||||
| LeftShiftAssign
|
||||
| SignedRightShiftAssign
|
||||
| UnsignedRightShiftAssign;
|
||||
|
||||
type: identifier (Dot identifier)* bracketsOpt
|
||||
| basicType bracketsOpt;
|
||||
|
||||
statementExpression: expression;
|
||||
|
||||
constantExpression: expression;
|
||||
|
||||
expression1: expression2 (Question expression Colon expression1)?;
|
||||
|
||||
expression2: expression3 (expression2Rest)?;
|
||||
|
||||
expression2Rest: (infixop expression3)+
|
||||
| InstanceOf type;
|
||||
|
||||
infixop: ConditionalOR
|
||||
| ConditionalAND
|
||||
| BitwiseOR
|
||||
| BitwiseXOR
|
||||
| BitwiseAND
|
||||
| EqualTo
|
||||
| NotEqualTo
|
||||
| LessThan
|
||||
| GreaterThan
|
||||
| LessThanEqualTo
|
||||
| GreaterThanEqualTo
|
||||
| LeftShift
|
||||
| SignedRightShift
|
||||
| UnsignedRightShift
|
||||
| Addition
|
||||
| Subtraction
|
||||
| Multiplication
|
||||
| Division
|
||||
| Remainder;
|
||||
|
||||
expression3: prefixOp expression3
|
||||
| ParenthesesLeft type ParenthesesRight expression3
|
||||
| primary postfixExpression*;
|
||||
|
||||
postfixExpression: selector | postfixOp;
|
||||
|
||||
primary: ParenthesesLeft expression ParenthesesRight
|
||||
| This (arguments)?
|
||||
| Super superSuffix
|
||||
| literal
|
||||
| New creator
|
||||
| identifier (Dot identifier)* (identifierSuffix)?
|
||||
| basicType bracketsOpt Dot Class
|
||||
| Void Dot Class;
|
||||
|
||||
identifierSuffix: SquareBracketLeft SquareBracketRight bracketsOpt Dot Class //Case []...'.'class
|
||||
|SquareBracketLeft expression SquareBracketRight //arr[5]
|
||||
|arguments
|
||||
|Dot (Class | This | Super arguments | New innerCreator);
|
||||
|
||||
prefixOp: Increment
|
||||
| Decrement
|
||||
| LogicalComplement
|
||||
| BitwiseComplement
|
||||
| Addition
|
||||
| Subtraction;
|
||||
|
||||
postfixOp: Increment | Decrement;
|
||||
|
||||
selector: Dot identifier (arguments)?
|
||||
| Dot This
|
||||
| Dot Super superSuffix
|
||||
| Dot New innerCreator
|
||||
| SquareBracketLeft expression SquareBracketRight;
|
||||
|
||||
superSuffix: arguments
|
||||
| Dot identifier (arguments)?;
|
||||
|
||||
//primitives
|
||||
basicType: Byte
|
||||
| Short
|
||||
| Char
|
||||
| Int
|
||||
| Long
|
||||
| Float
|
||||
| Double
|
||||
| Boolean;
|
||||
|
||||
argumentsOpt: (arguments)?;
|
||||
|
||||
arguments: ParenthesesLeft (expression (Comma expression)*)? ParenthesesRight;
|
||||
|
||||
bracketsOpt: (SquareBracketLeft SquareBracketRight)*;
|
||||
|
||||
creator: qualifiedIdentifier ( arrayCreatorRest | classCreatorRest);
|
||||
|
||||
innerCreator: identifier classCreatorRest;
|
||||
|
||||
arrayCreatorRest: SquareBracketLeft SquareBracketRight bracketsOpt arrayInitializer
|
||||
| SquareBracketLeft expression SquareBracketRight (SquareBracketLeft expression SquareBracketRight)* bracketsOpt;
|
||||
|
||||
classCreatorRest: arguments (classBody)?;
|
||||
|
||||
arrayInitializer: CurlyBracketLeft (variableInitializer(Comma variableInitializer)*(Comma)?)? CurlyBracketRight;
|
||||
|
||||
variableInitializer: arrayInitializer
|
||||
|expression;
|
||||
|
||||
parExpression: ParenthesesLeft expression ParenthesesRight;
|
||||
|
||||
block: CurlyBracketLeft blockStatements CurlyBracketRight;
|
||||
|
||||
blockStatements: (blockStatement)*;
|
||||
|
||||
blockStatement: localVariableDeclarationStatement
|
||||
|classOrInterfaceDeclaration
|
||||
|labeledStatement
|
||||
|statement;
|
||||
|
||||
labeledStatement: identifier Colon statement;
|
||||
|
||||
localVariableDeclarationStatement: (Final)? type variableDeclarators Semicolon;
|
||||
|
||||
statement: block
|
||||
| If parExpression statement (Else statement)?
|
||||
| For ParenthesesLeft forInit? Semicolon (expression)? Semicolon forUpdate? ParenthesesRight statement
|
||||
| While parExpression statement
|
||||
| Do statement While parExpression Semicolon
|
||||
| Try block catches
|
||||
| Try block Finally block
|
||||
| Try block catches Finally block
|
||||
| switchStatement
|
||||
| Synchronized parExpression block
|
||||
| Return (expression)? Semicolon
|
||||
| Throw expression Semicolon
|
||||
| Break (identifier)? Semicolon
|
||||
| Continue (identifier)? Semicolon
|
||||
| statementExpression Semicolon
|
||||
| Semicolon;
|
||||
|
||||
catches: catchClause+;
|
||||
|
||||
catchClause: Catch ParenthesesLeft formalParameter ParenthesesRight block;
|
||||
|
||||
switchStatement: Switch parExpression CurlyBracketLeft CurlyBracketRight
|
||||
| Switch parExpression CurlyBracketLeft switchBlockStatementGroups CurlyBracketRight;
|
||||
|
||||
switchBlockStatementGroups: switchBlockStatementGroup+;
|
||||
|
||||
switchBlockStatementGroup: switchLabel blockStatements;
|
||||
|
||||
switchLabel: Case constantExpression Colon
|
||||
| Default Colon;
|
||||
|
||||
moreStatementExpressions: (Comma statementExpression)*;
|
||||
|
||||
forInit: statementExpression moreStatementExpressions
|
||||
| (Final)? type variableDeclarators;
|
||||
|
||||
forUpdate: statementExpression moreStatementExpressions;
|
||||
|
||||
modifiersOpt: (modifier)*;
|
||||
|
||||
modifier: Public
|
||||
| Protected
|
||||
| Private
|
||||
| Static
|
||||
| Abstract
|
||||
| Final
|
||||
| Native
|
||||
| Synchronized
|
||||
| Transient
|
||||
| Volatile
|
||||
| Strictfp;
|
||||
|
||||
variableDeclarators: variableDeclarator (Comma variableDeclarator)*;
|
||||
|
||||
variableDeclaratorsRest: variableDeclaratorRest (Comma variableDeclarator)*;
|
||||
|
||||
constantDeclaratorsRest: constantDeclaratorRest (Comma constantDeclarator)*;
|
||||
|
||||
variableDeclarator: identifier variableDeclaratorRest;
|
||||
|
||||
constantDeclarator: identifier constantDeclaratorRest;
|
||||
|
||||
variableDeclaratorRest: bracketsOpt (Assignment variableInitializer)?;
|
||||
|
||||
constantDeclaratorRest: bracketsOpt Assignment variableInitializer;
|
||||
|
||||
variableDeclaratorId: identifier bracketsOpt;
|
||||
|
||||
compilationUnit: (Package qualifiedIdentifier Semicolon)? (importDeclaration)* (typeDeclaration)*;
|
||||
|
||||
importDeclaration: Import identifier (Dot identifier)* (Dot Multiplication)? Semicolon;
|
||||
|
||||
typeDeclaration: classOrInterfaceDeclaration
|
||||
| Semicolon;
|
||||
|
||||
classOrInterfaceDeclaration: modifiersOpt (classDeclaration | interfaceDeclaration);
|
||||
|
||||
classDeclaration: Class identifier (Extends type)? (Implements typeList)? classBody;
|
||||
|
||||
interfaceDeclaration: Interface identifier (Extends typeList)? interfaceBody;
|
||||
|
||||
typeList: type (Comma type)*;
|
||||
|
||||
classBody: CurlyBracketLeft (classBodyDeclaration)* CurlyBracketRight;
|
||||
|
||||
interfaceBody: CurlyBracketLeft (interfaceBodyDeclaration)* CurlyBracketRight;
|
||||
|
||||
classBodyDeclaration: Semicolon
|
||||
| (Static)? block
|
||||
| modifiersOpt memberDecl;
|
||||
|
||||
memberDecl: methodOrFieldDecl
|
||||
| Void identifier methodDeclaratorRest
|
||||
| identifier constructorDeclaratorRest
|
||||
| classOrInterfaceDeclaration;
|
||||
|
||||
methodOrFieldDecl: type identifier methodOrFieldRest;
|
||||
|
||||
methodOrFieldRest: variableDeclaratorRest Semicolon
|
||||
|methodDeclaratorRest;
|
||||
|
||||
interfaceBodyDeclaration: Semicolon
|
||||
| modifiersOpt interfaceMemberDecl;
|
||||
|
||||
interfaceMemberDecl: interfaceMethodOrFieldDecl
|
||||
| Void identifier voidInterfaceMethodDeclaratorRest
|
||||
| classOrInterfaceDeclaration;
|
||||
|
||||
interfaceMethodOrFieldDecl: type identifier interfaceMethodOrFieldRest;
|
||||
|
||||
interfaceMethodOrFieldRest: constantDeclaratorRest Semicolon
|
||||
| interfaceMethodDeclaratorRest;
|
||||
|
||||
methodDeclaratorRest: formalParameters bracketsOpt (Throws qualifiedIdentifierList)?(methodBody | Semicolon);
|
||||
|
||||
voidMethodDeclaratorRest: formalParameters (Throws qualifiedIdentifierList)? (methodBody | Semicolon);
|
||||
|
||||
interfaceMethodDeclaratorRest: formalParameters bracketsOpt (Throws qualifiedIdentifierList)? Semicolon;
|
||||
|
||||
voidInterfaceMethodDeclaratorRest: formalParameters (Throws qualifiedIdentifierList)? Semicolon;
|
||||
|
||||
constructorDeclaratorRest: formalParameters (Throws qualifiedIdentifierList)? methodBody;
|
||||
|
||||
qualifiedIdentifierList: qualifiedIdentifier (Comma qualifiedIdentifier)*;
|
||||
|
||||
formalParameters: ParenthesesLeft (formalParameter (Comma formalParameter)*)? ParenthesesRight;
|
||||
|
||||
formalParameter: (Final)? type variableDeclaratorId;
|
||||
|
||||
methodBody: block;
|
||||
102
ExprTool.java
Normal file
102
ExprTool.java
Normal file
@@ -0,0 +1,102 @@
|
||||
import java.io.IOException;
|
||||
import java.nio.file.Files;
|
||||
import java.nio.file.Paths;
|
||||
import java.util.Scanner;
|
||||
|
||||
import org.antlr.v4.runtime.*;
|
||||
import org.antlr.v4.runtime.misc.ParseCancellationException;
|
||||
import org.antlr.v4.runtime.tree.*;
|
||||
|
||||
public class ExprTool {
|
||||
public static void main(String[] args) throws Exception {
|
||||
String inputText;
|
||||
String sourceName = "<stdin>";
|
||||
|
||||
if (args.length > 0) {
|
||||
try {
|
||||
inputText = new String(Files.readAllBytes(Paths.get(args[0])));
|
||||
sourceName = args[0]; // set source name to file path
|
||||
} catch (IOException e) {
|
||||
System.err.println("Error reading file: " + args[0]);
|
||||
return;
|
||||
}
|
||||
} else {
|
||||
Scanner scanner = new Scanner(System.in);
|
||||
StringBuilder inputBuilder = new StringBuilder();
|
||||
while (scanner.hasNextLine()) {
|
||||
inputBuilder.append(scanner.nextLine()).append("\n");
|
||||
}
|
||||
inputText = inputBuilder.toString();
|
||||
scanner.close();
|
||||
}
|
||||
|
||||
// Create char stream with source name
|
||||
CharStream input = CharStreams.fromString(inputText, sourceName);
|
||||
|
||||
// Create lexer
|
||||
ExprLexer lexer = new ExprLexer(input);
|
||||
lexer.removeErrorListeners();
|
||||
lexer.addErrorListener(new ThrowingErrorListener());
|
||||
|
||||
// Create token stream
|
||||
CommonTokenStream tokens = new CommonTokenStream(lexer);
|
||||
|
||||
// Create parser
|
||||
ExprSyntactic parser = new ExprSyntactic(tokens);
|
||||
parser.removeErrorListeners();
|
||||
parser.addErrorListener(new ThrowingErrorListener());
|
||||
|
||||
try {
|
||||
// Use compilationUnit as the start rule
|
||||
ParseTree tree = parser.compilationUnit();
|
||||
|
||||
// Walk the tree and print class declarations
|
||||
ParseTreeWalker walker = new ParseTreeWalker();
|
||||
walker.walk(new ClassPrinter(sourceName), tree);
|
||||
|
||||
} catch (RuntimeException e) {
|
||||
System.err.println("Parsing failed: " + e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
// Listener to print class declarations with line/column
|
||||
public static class ClassPrinter extends ExprSyntacticBaseListener {
|
||||
private final String sourceName;
|
||||
|
||||
public ClassPrinter(String sourceName) {
|
||||
this.sourceName = sourceName;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void enterClassDeclaration(ExprSyntactic.ClassDeclarationContext ctx) {
|
||||
int line = ctx.getStart().getLine();
|
||||
int col = ctx.getStart().getCharPositionInLine();
|
||||
// Get the class name from the identifier rule
|
||||
String className = ctx.identifier().getText();
|
||||
System.out.printf(" file %s, class %s at line %d, column %d%n",
|
||||
sourceName, className, line, col);
|
||||
}
|
||||
}
|
||||
|
||||
// Custom error listener for cleaner error handling
|
||||
public static class ThrowingErrorListener extends BaseErrorListener {
|
||||
@Override
|
||||
public void syntaxError(Recognizer<?, ?> recognizer,
|
||||
Object offendingSymbol,
|
||||
int line, int charPositionInLine,
|
||||
String msg,
|
||||
RecognitionException e) {
|
||||
String sourceName = recognizer.getInputStream().getSourceName();
|
||||
if (sourceName == null || sourceName.isEmpty()) {
|
||||
sourceName = "<unknown>";
|
||||
}
|
||||
|
||||
String formatted = String.format(
|
||||
" file %s, line %d, column %d%n%s",
|
||||
sourceName, line, charPositionInLine, msg
|
||||
);
|
||||
|
||||
throw new ParseCancellationException(formatted);
|
||||
}
|
||||
}
|
||||
}
|
||||
8
Outer.java
Normal file
8
Outer.java
Normal file
@@ -0,0 +1,8 @@
|
||||
public class Outer {
|
||||
public class Inner1 {
|
||||
}
|
||||
public class Inner2 {
|
||||
public class Inner3 {
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
@@ -1,813 +0,0 @@
|
||||
// Generated from C:/Users/mande/OneDrive - University of Calgary/Documents/GitHub/CPSC-499/ExprLexer.g4 by ANTLR 4.13.2
|
||||
import org.antlr.v4.runtime.Lexer;
|
||||
import org.antlr.v4.runtime.CharStream;
|
||||
import org.antlr.v4.runtime.Token;
|
||||
import org.antlr.v4.runtime.TokenStream;
|
||||
import org.antlr.v4.runtime.*;
|
||||
import org.antlr.v4.runtime.atn.*;
|
||||
import org.antlr.v4.runtime.dfa.DFA;
|
||||
import org.antlr.v4.runtime.misc.*;
|
||||
|
||||
@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast", "CheckReturnValue", "this-escape"})
|
||||
public class ExprLexer extends Lexer {
|
||||
static { RuntimeMetaData.checkVersion("4.13.2", RuntimeMetaData.VERSION); }
|
||||
|
||||
protected static final DFA[] _decisionToDFA;
|
||||
protected static final PredictionContextCache _sharedContextCache =
|
||||
new PredictionContextCache();
|
||||
public static final int
|
||||
UnicodeInputCharacter=1, LineTerminator=2, InputCharacter=3, WhiteSpace=4,
|
||||
Comment=5, Abstract=6, Assert=7, Boolean=8, Break=9, Byte=10, Case=11,
|
||||
Catch=12, Char=13, Class=14, Const=15, Continue=16, Default=17, Do=18,
|
||||
Double=19, Else=20, Extends=21, Final=22, Finally=23, Float=24, For=25,
|
||||
Goto=26, If=27, Implements=28, Import=29, InstanceOf=30, Int=31, Interface=32,
|
||||
Long=33, Native=34, New=35, Package=36, Private=37, Protected=38, Public=39,
|
||||
Return=40, Short=41, Static=42, Strictfp=43, Super=44, Switch=45, Synchronized=46,
|
||||
This=47, Throw=48, Throws=49, Transient=50, Try=51, Void=52, Volatile=53,
|
||||
While=54, IntigerLiteral=55, FloatingPointLiteral=56, CharacterLiteral=57,
|
||||
StringLiteral=58, BooleanLiteral=59, NullLiteral=60, ParanthesesLeft=61,
|
||||
ParanthesesRight=62, CurlyBracketLeft=63, CurlyBracketRight=64, SquareBracketLeft=65,
|
||||
SquareBracketRight=66, Semicolon=67, Comma=68, Dot=69, Assignment=70,
|
||||
GreterThan=71, LessThan=72, LogicalComplement=73, BitwiseComplement=74,
|
||||
Question=75, Colon=76, EqualTo=77, LessThanEqualTo=78, GreaterThanEqualTo=79,
|
||||
NotEqualTO=80, ConditionalAND=81, ConditionalOR=82, Increment=83, Decrement=84,
|
||||
Addition=85, Subtaction=86, Multiplication=87, Division=88, BitwiseAND=89,
|
||||
BitwiseOR=90, BitwiseXOR=91, Remainder=92, LeftShift=93, SignedRightShift=94,
|
||||
UnsignedRightShift=95, AddAssign=96, SubtractAssign=97, MultiplyAssign=98,
|
||||
DivideAssign=99, BitwiseANDAssign=100, BitwiseORAssign=101, BitwiseXORAssign=102,
|
||||
RemainderAssign=103, LeftShiftAssign=104, SighnedRightShiftAssign=105,
|
||||
UnsighnedRightShiftAssign=106, IDENTIFIER=107;
|
||||
public static String[] channelNames = {
|
||||
"DEFAULT_TOKEN_CHANNEL", "HIDDEN"
|
||||
};
|
||||
|
||||
public static String[] modeNames = {
|
||||
"DEFAULT_MODE"
|
||||
};
|
||||
|
||||
private static String[] makeRuleNames() {
|
||||
return new String[] {
|
||||
"UnicodeInputCharacter", "UnicodeEscape", "UnicodeMarker", "RawInputCharacter",
|
||||
"LineTerminator", "InputCharacter", "WhiteSpace", "Comment", "TraditionalComment",
|
||||
"EndOfLineComment", "CommentTail", "CommentTailStar", "NotStar", "NotStarNotSlash",
|
||||
"CharactersInLine", "Abstract", "Assert", "Boolean", "Break", "Byte",
|
||||
"Case", "Catch", "Char", "Class", "Const", "Continue", "Default", "Do",
|
||||
"Double", "Else", "Extends", "Final", "Finally", "Float", "For", "Goto",
|
||||
"If", "Implements", "Import", "InstanceOf", "Int", "Interface", "Long",
|
||||
"Native", "New", "Package", "Private", "Protected", "Public", "Return",
|
||||
"Short", "Static", "Strictfp", "Super", "Switch", "Synchronized", "This",
|
||||
"Throw", "Throws", "Transient", "Try", "Void", "Volatile", "While", "IntigerLiteral",
|
||||
"DecimalIntegerLiteral", "HexIntegerLiteral", "OctalIntegerLiteral",
|
||||
"IntegerTypeSuffix", "DecimalNumeral", "HexNumeral", "HexDigits", "HexDigit",
|
||||
"FloatingPointLiteral", "ExponentPart", "ExponentIndicator", "SignedInteger",
|
||||
"Digits", "Digit", "NonZeroDigit", "Sign", "FloatTypeSuffix", "CharacterLiteral",
|
||||
"SingleCharacter", "StringLiteral", "StringCharacters", "StringCharacter",
|
||||
"EscapeSequence", "OctalEscape", "OctalNumeral", "OctalDigits", "OctalDigit",
|
||||
"ZeroToThree", "BooleanLiteral", "NullLiteral", "ParanthesesLeft", "ParanthesesRight",
|
||||
"CurlyBracketLeft", "CurlyBracketRight", "SquareBracketLeft", "SquareBracketRight",
|
||||
"Semicolon", "Comma", "Dot", "Assignment", "GreterThan", "LessThan",
|
||||
"LogicalComplement", "BitwiseComplement", "Question", "Colon", "EqualTo",
|
||||
"LessThanEqualTo", "GreaterThanEqualTo", "NotEqualTO", "ConditionalAND",
|
||||
"ConditionalOR", "Increment", "Decrement", "Addition", "Subtaction",
|
||||
"Multiplication", "Division", "BitwiseAND", "BitwiseOR", "BitwiseXOR",
|
||||
"Remainder", "LeftShift", "SignedRightShift", "UnsignedRightShift", "AddAssign",
|
||||
"SubtractAssign", "MultiplyAssign", "DivideAssign", "BitwiseANDAssign",
|
||||
"BitwiseORAssign", "BitwiseXORAssign", "RemainderAssign", "LeftShiftAssign",
|
||||
"SighnedRightShiftAssign", "UnsighnedRightShiftAssign", "IDENTIFIER",
|
||||
"JavaLetter", "JavaLetterOrDigit"
|
||||
};
|
||||
}
|
||||
public static final String[] ruleNames = makeRuleNames();
|
||||
|
||||
private static String[] makeLiteralNames() {
|
||||
return new String[] {
|
||||
null, null, null, null, null, null, "'abstract'", "'assert'", "'boolean'",
|
||||
"'break'", "'byte'", "'case'", "'catch'", "'char'", "'class'", "'const'",
|
||||
"'continue'", "'default'", "'do'", "'double'", "'else'", "'extends'",
|
||||
"'final'", "'finally'", "'float'", "'for'", "'goto'", "'if'", "'implements'",
|
||||
"'import'", "'instanceof'", "'int'", "'interface'", "'long'", "'native'",
|
||||
"'new'", "'package'", "'private'", "'protected'", "'public'", "'return'",
|
||||
"'short'", "'static'", "'strictfp'", "'super'", "'switch'", "'synchronized'",
|
||||
"'this'", "'throw'", "'throws'", "'transient'", "'try'", "'void'", "'volatile'",
|
||||
"'while'", null, null, null, null, null, "'null'", "'('", "')'", "'{'",
|
||||
"'}'", "'['", "']'", "';'", "','", "'.'", "'='", "'>'", "'<'", "'!'",
|
||||
"'~'", "'?'", "':'", "'=='", "'<='", "'>='", "'!='", "'&&'", "'||'",
|
||||
"'++'", "'--'", "'+'", "'-'", "'*'", "'/'", "'&'", "'|'", "'^'", "'%'",
|
||||
"'<<'", "'>>'", "'>>>'", "'+='", "'-='", "'*='", "'/='", "'&='", "'|='",
|
||||
"'^='", "'%='", "'<<='", "'>>='", "'>>>='"
|
||||
};
|
||||
}
|
||||
private static final String[] _LITERAL_NAMES = makeLiteralNames();
|
||||
private static String[] makeSymbolicNames() {
|
||||
return new String[] {
|
||||
null, "UnicodeInputCharacter", "LineTerminator", "InputCharacter", "WhiteSpace",
|
||||
"Comment", "Abstract", "Assert", "Boolean", "Break", "Byte", "Case",
|
||||
"Catch", "Char", "Class", "Const", "Continue", "Default", "Do", "Double",
|
||||
"Else", "Extends", "Final", "Finally", "Float", "For", "Goto", "If",
|
||||
"Implements", "Import", "InstanceOf", "Int", "Interface", "Long", "Native",
|
||||
"New", "Package", "Private", "Protected", "Public", "Return", "Short",
|
||||
"Static", "Strictfp", "Super", "Switch", "Synchronized", "This", "Throw",
|
||||
"Throws", "Transient", "Try", "Void", "Volatile", "While", "IntigerLiteral",
|
||||
"FloatingPointLiteral", "CharacterLiteral", "StringLiteral", "BooleanLiteral",
|
||||
"NullLiteral", "ParanthesesLeft", "ParanthesesRight", "CurlyBracketLeft",
|
||||
"CurlyBracketRight", "SquareBracketLeft", "SquareBracketRight", "Semicolon",
|
||||
"Comma", "Dot", "Assignment", "GreterThan", "LessThan", "LogicalComplement",
|
||||
"BitwiseComplement", "Question", "Colon", "EqualTo", "LessThanEqualTo",
|
||||
"GreaterThanEqualTo", "NotEqualTO", "ConditionalAND", "ConditionalOR",
|
||||
"Increment", "Decrement", "Addition", "Subtaction", "Multiplication",
|
||||
"Division", "BitwiseAND", "BitwiseOR", "BitwiseXOR", "Remainder", "LeftShift",
|
||||
"SignedRightShift", "UnsignedRightShift", "AddAssign", "SubtractAssign",
|
||||
"MultiplyAssign", "DivideAssign", "BitwiseANDAssign", "BitwiseORAssign",
|
||||
"BitwiseXORAssign", "RemainderAssign", "LeftShiftAssign", "SighnedRightShiftAssign",
|
||||
"UnsighnedRightShiftAssign", "IDENTIFIER"
|
||||
};
|
||||
}
|
||||
private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames();
|
||||
public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES);
|
||||
|
||||
/**
|
||||
* @deprecated Use {@link #VOCABULARY} instead.
|
||||
*/
|
||||
@Deprecated
|
||||
public static final String[] tokenNames;
|
||||
static {
|
||||
tokenNames = new String[_SYMBOLIC_NAMES.length];
|
||||
for (int i = 0; i < tokenNames.length; i++) {
|
||||
tokenNames[i] = VOCABULARY.getLiteralName(i);
|
||||
if (tokenNames[i] == null) {
|
||||
tokenNames[i] = VOCABULARY.getSymbolicName(i);
|
||||
}
|
||||
|
||||
if (tokenNames[i] == null) {
|
||||
tokenNames[i] = "<INVALID>";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
@Deprecated
|
||||
public String[] getTokenNames() {
|
||||
return tokenNames;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
public Vocabulary getVocabulary() {
|
||||
return VOCABULARY;
|
||||
}
|
||||
|
||||
|
||||
public ExprLexer(CharStream input) {
|
||||
super(input);
|
||||
_interp = new LexerATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getGrammarFileName() { return "ExprLexer.g4"; }
|
||||
|
||||
@Override
|
||||
public String[] getRuleNames() { return ruleNames; }
|
||||
|
||||
@Override
|
||||
public String getSerializedATN() { return _serializedATN; }
|
||||
|
||||
@Override
|
||||
public String[] getChannelNames() { return channelNames; }
|
||||
|
||||
@Override
|
||||
public String[] getModeNames() { return modeNames; }
|
||||
|
||||
@Override
|
||||
public ATN getATN() { return _ATN; }
|
||||
|
||||
public static final String _serializedATN =
|
||||
"\u0004\u0000k\u0407\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\n\u0007\n\u0002\u000b"+
|
||||
"\u0007\u000b\u0002\f\u0007\f\u0002\r\u0007\r\u0002\u000e\u0007\u000e\u0002"+
|
||||
"\u000f\u0007\u000f\u0002\u0010\u0007\u0010\u0002\u0011\u0007\u0011\u0002"+
|
||||
"\u0012\u0007\u0012\u0002\u0013\u0007\u0013\u0002\u0014\u0007\u0014\u0002"+
|
||||
"\u0015\u0007\u0015\u0002\u0016\u0007\u0016\u0002\u0017\u0007\u0017\u0002"+
|
||||
"\u0018\u0007\u0018\u0002\u0019\u0007\u0019\u0002\u001a\u0007\u001a\u0002"+
|
||||
"\u001b\u0007\u001b\u0002\u001c\u0007\u001c\u0002\u001d\u0007\u001d\u0002"+
|
||||
"\u001e\u0007\u001e\u0002\u001f\u0007\u001f\u0002 \u0007 \u0002!\u0007"+
|
||||
"!\u0002\"\u0007\"\u0002#\u0007#\u0002$\u0007$\u0002%\u0007%\u0002&\u0007"+
|
||||
"&\u0002\'\u0007\'\u0002(\u0007(\u0002)\u0007)\u0002*\u0007*\u0002+\u0007"+
|
||||
"+\u0002,\u0007,\u0002-\u0007-\u0002.\u0007.\u0002/\u0007/\u00020\u0007"+
|
||||
"0\u00021\u00071\u00022\u00072\u00023\u00073\u00024\u00074\u00025\u0007"+
|
||||
"5\u00026\u00076\u00027\u00077\u00028\u00078\u00029\u00079\u0002:\u0007"+
|
||||
":\u0002;\u0007;\u0002<\u0007<\u0002=\u0007=\u0002>\u0007>\u0002?\u0007"+
|
||||
"?\u0002@\u0007@\u0002A\u0007A\u0002B\u0007B\u0002C\u0007C\u0002D\u0007"+
|
||||
"D\u0002E\u0007E\u0002F\u0007F\u0002G\u0007G\u0002H\u0007H\u0002I\u0007"+
|
||||
"I\u0002J\u0007J\u0002K\u0007K\u0002L\u0007L\u0002M\u0007M\u0002N\u0007"+
|
||||
"N\u0002O\u0007O\u0002P\u0007P\u0002Q\u0007Q\u0002R\u0007R\u0002S\u0007"+
|
||||
"S\u0002T\u0007T\u0002U\u0007U\u0002V\u0007V\u0002W\u0007W\u0002X\u0007"+
|
||||
"X\u0002Y\u0007Y\u0002Z\u0007Z\u0002[\u0007[\u0002\\\u0007\\\u0002]\u0007"+
|
||||
"]\u0002^\u0007^\u0002_\u0007_\u0002`\u0007`\u0002a\u0007a\u0002b\u0007"+
|
||||
"b\u0002c\u0007c\u0002d\u0007d\u0002e\u0007e\u0002f\u0007f\u0002g\u0007"+
|
||||
"g\u0002h\u0007h\u0002i\u0007i\u0002j\u0007j\u0002k\u0007k\u0002l\u0007"+
|
||||
"l\u0002m\u0007m\u0002n\u0007n\u0002o\u0007o\u0002p\u0007p\u0002q\u0007"+
|
||||
"q\u0002r\u0007r\u0002s\u0007s\u0002t\u0007t\u0002u\u0007u\u0002v\u0007"+
|
||||
"v\u0002w\u0007w\u0002x\u0007x\u0002y\u0007y\u0002z\u0007z\u0002{\u0007"+
|
||||
"{\u0002|\u0007|\u0002}\u0007}\u0002~\u0007~\u0002\u007f\u0007\u007f\u0002"+
|
||||
"\u0080\u0007\u0080\u0002\u0081\u0007\u0081\u0002\u0082\u0007\u0082\u0002"+
|
||||
"\u0083\u0007\u0083\u0002\u0084\u0007\u0084\u0002\u0085\u0007\u0085\u0002"+
|
||||
"\u0086\u0007\u0086\u0002\u0087\u0007\u0087\u0002\u0088\u0007\u0088\u0002"+
|
||||
"\u0089\u0007\u0089\u0002\u008a\u0007\u008a\u0002\u008b\u0007\u008b\u0002"+
|
||||
"\u008c\u0007\u008c\u0002\u008d\u0007\u008d\u0002\u008e\u0007\u008e\u0002"+
|
||||
"\u008f\u0007\u008f\u0001\u0000\u0001\u0000\u0003\u0000\u0124\b\u0000\u0001"+
|
||||
"\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001"+
|
||||
"\u0001\u0001\u0002\u0004\u0002\u012e\b\u0002\u000b\u0002\f\u0002\u012f"+
|
||||
"\u0001\u0003\u0001\u0003\u0001\u0004\u0001\u0004\u0001\u0004\u0003\u0004"+
|
||||
"\u0137\b\u0004\u0001\u0005\u0001\u0005\u0001\u0006\u0001\u0006\u0003\u0006"+
|
||||
"\u013d\b\u0006\u0001\u0007\u0001\u0007\u0003\u0007\u0141\b\u0007\u0001"+
|
||||
"\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\t\u0001\t\u0001\t\u0001"+
|
||||
"\t\u0003\t\u014d\b\t\u0001\t\u0001\t\u0001\n\u0001\n\u0001\n\u0003\n\u0154"+
|
||||
"\b\n\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001"+
|
||||
"\u000b\u0003\u000b\u015c\b\u000b\u0001\f\u0001\f\u0003\f\u0160\b\f\u0001"+
|
||||
"\r\u0001\r\u0003\r\u0164\b\r\u0001\u000e\u0001\u000e\u0003\u000e\u0168"+
|
||||
"\b\u000e\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001"+
|
||||
"\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u0010\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\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001"+
|
||||
"\u0012\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\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\u0018\u0001\u0018\u0001"+
|
||||
"\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0019\u0001\u0019\u0001"+
|
||||
"\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001"+
|
||||
"\u0019\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001"+
|
||||
"\u001a\u0001\u001a\u0001\u001a\u0001\u001b\u0001\u001b\u0001\u001b\u0001"+
|
||||
"\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001"+
|
||||
"\u001c\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001"+
|
||||
"\u001e\u0001\u001e\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 \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.\u0001.\u0001.\u0001/\u0001/\u0001/\u0001/\u0001/\u0001"+
|
||||
"/\u0001/\u0001/\u0001/\u0001/\u00010\u00010\u00010\u00010\u00010\u0001"+
|
||||
"0\u00010\u00011\u00011\u00011\u00011\u00011\u00011\u00011\u00012\u0001"+
|
||||
"2\u00012\u00012\u00012\u00012\u00013\u00013\u00013\u00013\u00013\u0001"+
|
||||
"3\u00013\u00014\u00014\u00014\u00014\u00014\u00014\u00014\u00014\u0001"+
|
||||
"4\u00015\u00015\u00015\u00015\u00015\u00015\u00016\u00016\u00016\u0001"+
|
||||
"6\u00016\u00016\u00016\u00017\u00017\u00017\u00017\u00017\u00017\u0001"+
|
||||
"7\u00017\u00017\u00017\u00017\u00017\u00017\u00018\u00018\u00018\u0001"+
|
||||
"8\u00018\u00019\u00019\u00019\u00019\u00019\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@\u0003@\u02bb\b@\u0001A\u0001A\u0003A\u02bf\bA\u0001B\u0001B\u0003"+
|
||||
"B\u02c3\bB\u0001C\u0001C\u0003C\u02c7\bC\u0001D\u0001D\u0001E\u0001E\u0001"+
|
||||
"E\u0003E\u02ce\bE\u0003E\u02d0\bE\u0001F\u0001F\u0001F\u0001F\u0001F\u0001"+
|
||||
"F\u0003F\u02d8\bF\u0001G\u0001G\u0001G\u0001G\u0003G\u02de\bG\u0001H\u0001"+
|
||||
"H\u0001I\u0001I\u0001I\u0003I\u02e5\bI\u0001I\u0003I\u02e8\bI\u0001I\u0003"+
|
||||
"I\u02eb\bI\u0001I\u0001I\u0001I\u0003I\u02f0\bI\u0001I\u0003I\u02f3\b"+
|
||||
"I\u0001I\u0001I\u0001I\u0003I\u02f8\bI\u0001I\u0001I\u0003I\u02fc\bI\u0001"+
|
||||
"I\u0001I\u0003I\u0300\bI\u0001J\u0001J\u0001J\u0001K\u0001K\u0001L\u0003"+
|
||||
"L\u0308\bL\u0001L\u0001L\u0001M\u0004M\u030d\bM\u000bM\fM\u030e\u0001"+
|
||||
"N\u0001N\u0003N\u0313\bN\u0001O\u0001O\u0001P\u0001P\u0001Q\u0001Q\u0001"+
|
||||
"R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0003R\u0323\bR\u0001"+
|
||||
"S\u0001S\u0001T\u0001T\u0003T\u0329\bT\u0001T\u0001T\u0001U\u0004U\u032e"+
|
||||
"\bU\u000bU\fU\u032f\u0001V\u0001V\u0003V\u0334\bV\u0001W\u0001W\u0001"+
|
||||
"W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001"+
|
||||
"W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001"+
|
||||
"W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001"+
|
||||
"W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0001W\u0003"+
|
||||
"W\u0360\bW\u0001X\u0001X\u0001X\u0001X\u0001X\u0001X\u0001X\u0001X\u0001"+
|
||||
"X\u0001X\u0001X\u0003X\u036d\bX\u0001Y\u0001Y\u0001Y\u0001Z\u0001Z\u0001"+
|
||||
"[\u0001[\u0001\\\u0001\\\u0001]\u0001]\u0001]\u0001]\u0001]\u0001]\u0001"+
|
||||
"]\u0001]\u0001]\u0003]\u0381\b]\u0001^\u0001^\u0001^\u0001^\u0001^\u0001"+
|
||||
"_\u0001_\u0001`\u0001`\u0001a\u0001a\u0001b\u0001b\u0001c\u0001c\u0001"+
|
||||
"d\u0001d\u0001e\u0001e\u0001f\u0001f\u0001g\u0001g\u0001h\u0001h\u0001"+
|
||||
"i\u0001i\u0001j\u0001j\u0001k\u0001k\u0001l\u0001l\u0001m\u0001m\u0001"+
|
||||
"n\u0001n\u0001o\u0001o\u0001o\u0001p\u0001p\u0001p\u0001q\u0001q\u0001"+
|
||||
"q\u0001r\u0001r\u0001r\u0001s\u0001s\u0001s\u0001t\u0001t\u0001t\u0001"+
|
||||
"u\u0001u\u0001u\u0001v\u0001v\u0001v\u0001w\u0001w\u0001x\u0001x\u0001"+
|
||||
"y\u0001y\u0001z\u0001z\u0001{\u0001{\u0001|\u0001|\u0001}\u0001}\u0001"+
|
||||
"~\u0001~\u0001\u007f\u0001\u007f\u0001\u007f\u0001\u0080\u0001\u0080\u0001"+
|
||||
"\u0080\u0001\u0081\u0001\u0081\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\u0085\u0001\u0086\u0001"+
|
||||
"\u0086\u0001\u0086\u0001\u0087\u0001\u0087\u0001\u0087\u0001\u0088\u0001"+
|
||||
"\u0088\u0001\u0088\u0001\u0089\u0001\u0089\u0001\u0089\u0001\u008a\u0001"+
|
||||
"\u008a\u0001\u008a\u0001\u008a\u0001\u008b\u0001\u008b\u0001\u008b\u0001"+
|
||||
"\u008b\u0001\u008c\u0001\u008c\u0001\u008c\u0001\u008c\u0001\u008c\u0001"+
|
||||
"\u008d\u0001\u008d\u0001\u008d\u0001\u008e\u0001\u008e\u0001\u008f\u0001"+
|
||||
"\u008f\u0003\u008f\u0406\b\u008f\u0000\u0000\u0090\u0001\u0001\u0003\u0000"+
|
||||
"\u0005\u0000\u0007\u0000\t\u0002\u000b\u0003\r\u0004\u000f\u0005\u0011"+
|
||||
"\u0000\u0013\u0000\u0015\u0000\u0017\u0000\u0019\u0000\u001b\u0000\u001d"+
|
||||
"\u0000\u001f\u0006!\u0007#\b%\t\'\n)\u000b+\f-\r/\u000e1\u000f3\u0010"+
|
||||
"5\u00117\u00129\u0013;\u0014=\u0015?\u0016A\u0017C\u0018E\u0019G\u001a"+
|
||||
"I\u001bK\u001cM\u001dO\u001eQ\u001fS U!W\"Y#[$]%_&a\'c(e)g*i+k,m-o.q/"+
|
||||
"s0u1w2y3{4}5\u007f6\u00817\u0083\u0000\u0085\u0000\u0087\u0000\u0089\u0000"+
|
||||
"\u008b\u0000\u008d\u0000\u008f\u0000\u0091\u0000\u00938\u0095\u0000\u0097"+
|
||||
"\u0000\u0099\u0000\u009b\u0000\u009d\u0000\u009f\u0000\u00a1\u0000\u00a3"+
|
||||
"\u0000\u00a59\u00a7\u0000\u00a9:\u00ab\u0000\u00ad\u0000\u00af\u0000\u00b1"+
|
||||
"\u0000\u00b3\u0000\u00b5\u0000\u00b7\u0000\u00b9\u0000\u00bb;\u00bd<\u00bf"+
|
||||
"=\u00c1>\u00c3?\u00c5@\u00c7A\u00c9B\u00cbC\u00cdD\u00cfE\u00d1F\u00d3"+
|
||||
"G\u00d5H\u00d7I\u00d9J\u00dbK\u00ddL\u00dfM\u00e1N\u00e3O\u00e5P\u00e7"+
|
||||
"Q\u00e9R\u00ebS\u00edT\u00efU\u00f1V\u00f3W\u00f5X\u00f7Y\u00f9Z\u00fb"+
|
||||
"[\u00fd\\\u00ff]\u0101^\u0103_\u0105`\u0107a\u0109b\u010bc\u010dd\u010f"+
|
||||
"e\u0111f\u0113g\u0115h\u0117i\u0119j\u011bk\u011d\u0000\u011f\u0000\u0001"+
|
||||
"\u0000\u0010\u0002\u0000\n\n\r\r\u0003\u0000\n\n\r\r^^\u0003\u0000\t\t"+
|
||||
"\f\f \u0002\u0000**^^\u0003\u0000**//^^\u0002\u0000LLll\u0003\u00000"+
|
||||
"9AFaf\u0002\u0000EEee\u0001\u000019\u0002\u0000++--\u0004\u0000DDFFdd"+
|
||||
"ff\u0003\u0000\'\'\\\\^^\u0001\u000007\u0001\u000003\u0004\u0000$$AZ_"+
|
||||
"_az\u0001\u000009\u0413\u0000\u0001\u0001\u0000\u0000\u0000\u0000\t\u0001"+
|
||||
"\u0000\u0000\u0000\u0000\u000b\u0001\u0000\u0000\u0000\u0000\r\u0001\u0000"+
|
||||
"\u0000\u0000\u0000\u000f\u0001\u0000\u0000\u0000\u0000\u001f\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\u00001\u0001\u0000\u0000"+
|
||||
"\u0000\u00003\u0001\u0000\u0000\u0000\u00005\u0001\u0000\u0000\u0000\u0000"+
|
||||
"7\u0001\u0000\u0000\u0000\u00009\u0001\u0000\u0000\u0000\u0000;\u0001"+
|
||||
"\u0000\u0000\u0000\u0000=\u0001\u0000\u0000\u0000\u0000?\u0001\u0000\u0000"+
|
||||
"\u0000\u0000A\u0001\u0000\u0000\u0000\u0000C\u0001\u0000\u0000\u0000\u0000"+
|
||||
"E\u0001\u0000\u0000\u0000\u0000G\u0001\u0000\u0000\u0000\u0000I\u0001"+
|
||||
"\u0000\u0000\u0000\u0000K\u0001\u0000\u0000\u0000\u0000M\u0001\u0000\u0000"+
|
||||
"\u0000\u0000O\u0001\u0000\u0000\u0000\u0000Q\u0001\u0000\u0000\u0000\u0000"+
|
||||
"S\u0001\u0000\u0000\u0000\u0000U\u0001\u0000\u0000\u0000\u0000W\u0001"+
|
||||
"\u0000\u0000\u0000\u0000Y\u0001\u0000\u0000\u0000\u0000[\u0001\u0000\u0000"+
|
||||
"\u0000\u0000]\u0001\u0000\u0000\u0000\u0000_\u0001\u0000\u0000\u0000\u0000"+
|
||||
"a\u0001\u0000\u0000\u0000\u0000c\u0001\u0000\u0000\u0000\u0000e\u0001"+
|
||||
"\u0000\u0000\u0000\u0000g\u0001\u0000\u0000\u0000\u0000i\u0001\u0000\u0000"+
|
||||
"\u0000\u0000k\u0001\u0000\u0000\u0000\u0000m\u0001\u0000\u0000\u0000\u0000"+
|
||||
"o\u0001\u0000\u0000\u0000\u0000q\u0001\u0000\u0000\u0000\u0000s\u0001"+
|
||||
"\u0000\u0000\u0000\u0000u\u0001\u0000\u0000\u0000\u0000w\u0001\u0000\u0000"+
|
||||
"\u0000\u0000y\u0001\u0000\u0000\u0000\u0000{\u0001\u0000\u0000\u0000\u0000"+
|
||||
"}\u0001\u0000\u0000\u0000\u0000\u007f\u0001\u0000\u0000\u0000\u0000\u0081"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u0093\u0001\u0000\u0000\u0000\u0000\u00a5"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00a9\u0001\u0000\u0000\u0000\u0000\u00bb"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00bd\u0001\u0000\u0000\u0000\u0000\u00bf"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00c1\u0001\u0000\u0000\u0000\u0000\u00c3"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00c5\u0001\u0000\u0000\u0000\u0000\u00c7"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00c9\u0001\u0000\u0000\u0000\u0000\u00cb"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00cd\u0001\u0000\u0000\u0000\u0000\u00cf"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00d1\u0001\u0000\u0000\u0000\u0000\u00d3"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00d5\u0001\u0000\u0000\u0000\u0000\u00d7"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00d9\u0001\u0000\u0000\u0000\u0000\u00db"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00dd\u0001\u0000\u0000\u0000\u0000\u00df"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00e1\u0001\u0000\u0000\u0000\u0000\u00e3"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00e5\u0001\u0000\u0000\u0000\u0000\u00e7"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00e9\u0001\u0000\u0000\u0000\u0000\u00eb"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00ed\u0001\u0000\u0000\u0000\u0000\u00ef"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00f1\u0001\u0000\u0000\u0000\u0000\u00f3"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00f5\u0001\u0000\u0000\u0000\u0000\u00f7"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00f9\u0001\u0000\u0000\u0000\u0000\u00fb"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00fd\u0001\u0000\u0000\u0000\u0000\u00ff"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u0101\u0001\u0000\u0000\u0000\u0000\u0103"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u0105\u0001\u0000\u0000\u0000\u0000\u0107"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u0109\u0001\u0000\u0000\u0000\u0000\u010b"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u010d\u0001\u0000\u0000\u0000\u0000\u010f"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u0111\u0001\u0000\u0000\u0000\u0000\u0113"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u0115\u0001\u0000\u0000\u0000\u0000\u0117"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u0119\u0001\u0000\u0000\u0000\u0000\u011b"+
|
||||
"\u0001\u0000\u0000\u0000\u0001\u0123\u0001\u0000\u0000\u0000\u0003\u0125"+
|
||||
"\u0001\u0000\u0000\u0000\u0005\u012d\u0001\u0000\u0000\u0000\u0007\u0131"+
|
||||
"\u0001\u0000\u0000\u0000\t\u0136\u0001\u0000\u0000\u0000\u000b\u0138\u0001"+
|
||||
"\u0000\u0000\u0000\r\u013c\u0001\u0000\u0000\u0000\u000f\u0140\u0001\u0000"+
|
||||
"\u0000\u0000\u0011\u0142\u0001\u0000\u0000\u0000\u0013\u0148\u0001\u0000"+
|
||||
"\u0000\u0000\u0015\u0153\u0001\u0000\u0000\u0000\u0017\u015b\u0001\u0000"+
|
||||
"\u0000\u0000\u0019\u015f\u0001\u0000\u0000\u0000\u001b\u0163\u0001\u0000"+
|
||||
"\u0000\u0000\u001d\u0167\u0001\u0000\u0000\u0000\u001f\u0169\u0001\u0000"+
|
||||
"\u0000\u0000!\u0172\u0001\u0000\u0000\u0000#\u0179\u0001\u0000\u0000\u0000"+
|
||||
"%\u0181\u0001\u0000\u0000\u0000\'\u0187\u0001\u0000\u0000\u0000)\u018c"+
|
||||
"\u0001\u0000\u0000\u0000+\u0191\u0001\u0000\u0000\u0000-\u0197\u0001\u0000"+
|
||||
"\u0000\u0000/\u019c\u0001\u0000\u0000\u00001\u01a2\u0001\u0000\u0000\u0000"+
|
||||
"3\u01a8\u0001\u0000\u0000\u00005\u01b1\u0001\u0000\u0000\u00007\u01b9"+
|
||||
"\u0001\u0000\u0000\u00009\u01bc\u0001\u0000\u0000\u0000;\u01c3\u0001\u0000"+
|
||||
"\u0000\u0000=\u01c8\u0001\u0000\u0000\u0000?\u01d0\u0001\u0000\u0000\u0000"+
|
||||
"A\u01d6\u0001\u0000\u0000\u0000C\u01de\u0001\u0000\u0000\u0000E\u01e4"+
|
||||
"\u0001\u0000\u0000\u0000G\u01e8\u0001\u0000\u0000\u0000I\u01ed\u0001\u0000"+
|
||||
"\u0000\u0000K\u01f0\u0001\u0000\u0000\u0000M\u01fb\u0001\u0000\u0000\u0000"+
|
||||
"O\u0202\u0001\u0000\u0000\u0000Q\u020d\u0001\u0000\u0000\u0000S\u0211"+
|
||||
"\u0001\u0000\u0000\u0000U\u021b\u0001\u0000\u0000\u0000W\u0220\u0001\u0000"+
|
||||
"\u0000\u0000Y\u0227\u0001\u0000\u0000\u0000[\u022b\u0001\u0000\u0000\u0000"+
|
||||
"]\u0233\u0001\u0000\u0000\u0000_\u023b\u0001\u0000\u0000\u0000a\u0245"+
|
||||
"\u0001\u0000\u0000\u0000c\u024c\u0001\u0000\u0000\u0000e\u0253\u0001\u0000"+
|
||||
"\u0000\u0000g\u0259\u0001\u0000\u0000\u0000i\u0260\u0001\u0000\u0000\u0000"+
|
||||
"k\u0269\u0001\u0000\u0000\u0000m\u026f\u0001\u0000\u0000\u0000o\u0276"+
|
||||
"\u0001\u0000\u0000\u0000q\u0283\u0001\u0000\u0000\u0000s\u0288\u0001\u0000"+
|
||||
"\u0000\u0000u\u028e\u0001\u0000\u0000\u0000w\u0295\u0001\u0000\u0000\u0000"+
|
||||
"y\u029f\u0001\u0000\u0000\u0000{\u02a3\u0001\u0000\u0000\u0000}\u02a8"+
|
||||
"\u0001\u0000\u0000\u0000\u007f\u02b1\u0001\u0000\u0000\u0000\u0081\u02ba"+
|
||||
"\u0001\u0000\u0000\u0000\u0083\u02bc\u0001\u0000\u0000\u0000\u0085\u02c0"+
|
||||
"\u0001\u0000\u0000\u0000\u0087\u02c4\u0001\u0000\u0000\u0000\u0089\u02c8"+
|
||||
"\u0001\u0000\u0000\u0000\u008b\u02cf\u0001\u0000\u0000\u0000\u008d\u02d7"+
|
||||
"\u0001\u0000\u0000\u0000\u008f\u02dd\u0001\u0000\u0000\u0000\u0091\u02df"+
|
||||
"\u0001\u0000\u0000\u0000\u0093\u02ff\u0001\u0000\u0000\u0000\u0095\u0301"+
|
||||
"\u0001\u0000\u0000\u0000\u0097\u0304\u0001\u0000\u0000\u0000\u0099\u0307"+
|
||||
"\u0001\u0000\u0000\u0000\u009b\u030c\u0001\u0000\u0000\u0000\u009d\u0312"+
|
||||
"\u0001\u0000\u0000\u0000\u009f\u0314\u0001\u0000\u0000\u0000\u00a1\u0316"+
|
||||
"\u0001\u0000\u0000\u0000\u00a3\u0318\u0001\u0000\u0000\u0000\u00a5\u0322"+
|
||||
"\u0001\u0000\u0000\u0000\u00a7\u0324\u0001\u0000\u0000\u0000\u00a9\u0326"+
|
||||
"\u0001\u0000\u0000\u0000\u00ab\u032d\u0001\u0000\u0000\u0000\u00ad\u0333"+
|
||||
"\u0001\u0000\u0000\u0000\u00af\u0335\u0001\u0000\u0000\u0000\u00b1\u036c"+
|
||||
"\u0001\u0000\u0000\u0000\u00b3\u036e\u0001\u0000\u0000\u0000\u00b5\u0371"+
|
||||
"\u0001\u0000\u0000\u0000\u00b7\u0373\u0001\u0000\u0000\u0000\u00b9\u0375"+
|
||||
"\u0001\u0000\u0000\u0000\u00bb\u0380\u0001\u0000\u0000\u0000\u00bd\u0382"+
|
||||
"\u0001\u0000\u0000\u0000\u00bf\u0387\u0001\u0000\u0000\u0000\u00c1\u0389"+
|
||||
"\u0001\u0000\u0000\u0000\u00c3\u038b\u0001\u0000\u0000\u0000\u00c5\u038d"+
|
||||
"\u0001\u0000\u0000\u0000\u00c7\u038f\u0001\u0000\u0000\u0000\u00c9\u0391"+
|
||||
"\u0001\u0000\u0000\u0000\u00cb\u0393\u0001\u0000\u0000\u0000\u00cd\u0395"+
|
||||
"\u0001\u0000\u0000\u0000\u00cf\u0397\u0001\u0000\u0000\u0000\u00d1\u0399"+
|
||||
"\u0001\u0000\u0000\u0000\u00d3\u039b\u0001\u0000\u0000\u0000\u00d5\u039d"+
|
||||
"\u0001\u0000\u0000\u0000\u00d7\u039f\u0001\u0000\u0000\u0000\u00d9\u03a1"+
|
||||
"\u0001\u0000\u0000\u0000\u00db\u03a3\u0001\u0000\u0000\u0000\u00dd\u03a5"+
|
||||
"\u0001\u0000\u0000\u0000\u00df\u03a7\u0001\u0000\u0000\u0000\u00e1\u03aa"+
|
||||
"\u0001\u0000\u0000\u0000\u00e3\u03ad\u0001\u0000\u0000\u0000\u00e5\u03b0"+
|
||||
"\u0001\u0000\u0000\u0000\u00e7\u03b3\u0001\u0000\u0000\u0000\u00e9\u03b6"+
|
||||
"\u0001\u0000\u0000\u0000\u00eb\u03b9\u0001\u0000\u0000\u0000\u00ed\u03bc"+
|
||||
"\u0001\u0000\u0000\u0000\u00ef\u03bf\u0001\u0000\u0000\u0000\u00f1\u03c1"+
|
||||
"\u0001\u0000\u0000\u0000\u00f3\u03c3\u0001\u0000\u0000\u0000\u00f5\u03c5"+
|
||||
"\u0001\u0000\u0000\u0000\u00f7\u03c7\u0001\u0000\u0000\u0000\u00f9\u03c9"+
|
||||
"\u0001\u0000\u0000\u0000\u00fb\u03cb\u0001\u0000\u0000\u0000\u00fd\u03cd"+
|
||||
"\u0001\u0000\u0000\u0000\u00ff\u03cf\u0001\u0000\u0000\u0000\u0101\u03d2"+
|
||||
"\u0001\u0000\u0000\u0000\u0103\u03d5\u0001\u0000\u0000\u0000\u0105\u03d9"+
|
||||
"\u0001\u0000\u0000\u0000\u0107\u03dc\u0001\u0000\u0000\u0000\u0109\u03df"+
|
||||
"\u0001\u0000\u0000\u0000\u010b\u03e2\u0001\u0000\u0000\u0000\u010d\u03e5"+
|
||||
"\u0001\u0000\u0000\u0000\u010f\u03e8\u0001\u0000\u0000\u0000\u0111\u03eb"+
|
||||
"\u0001\u0000\u0000\u0000\u0113\u03ee\u0001\u0000\u0000\u0000\u0115\u03f1"+
|
||||
"\u0001\u0000\u0000\u0000\u0117\u03f5\u0001\u0000\u0000\u0000\u0119\u03f9"+
|
||||
"\u0001\u0000\u0000\u0000\u011b\u03fe\u0001\u0000\u0000\u0000\u011d\u0401"+
|
||||
"\u0001\u0000\u0000\u0000\u011f\u0405\u0001\u0000\u0000\u0000\u0121\u0124"+
|
||||
"\u0003\u0003\u0001\u0000\u0122\u0124\u0003\u0007\u0003\u0000\u0123\u0121"+
|
||||
"\u0001\u0000\u0000\u0000\u0123\u0122\u0001\u0000\u0000\u0000\u0124\u0002"+
|
||||
"\u0001\u0000\u0000\u0000\u0125\u0126\u0005\\\u0000\u0000\u0126\u0127\u0003"+
|
||||
"\u0005\u0002\u0000\u0127\u0128\u0003\u0091H\u0000\u0128\u0129\u0003\u0091"+
|
||||
"H\u0000\u0129\u012a\u0003\u0091H\u0000\u012a\u012b\u0003\u0091H\u0000"+
|
||||
"\u012b\u0004\u0001\u0000\u0000\u0000\u012c\u012e\u0005u\u0000\u0000\u012d"+
|
||||
"\u012c\u0001\u0000\u0000\u0000\u012e\u012f\u0001\u0000\u0000\u0000\u012f"+
|
||||
"\u012d\u0001\u0000\u0000\u0000\u012f\u0130\u0001\u0000\u0000\u0000\u0130"+
|
||||
"\u0006\u0001\u0000\u0000\u0000\u0131\u0132\u0001\u0000\u0000\u0000\u0132"+
|
||||
"\b\u0001\u0000\u0000\u0000\u0133\u0137\u0007\u0000\u0000\u0000\u0134\u0135"+
|
||||
"\u0005\r\u0000\u0000\u0135\u0137\u0005\n\u0000\u0000\u0136\u0133\u0001"+
|
||||
"\u0000\u0000\u0000\u0136\u0134\u0001\u0000\u0000\u0000\u0137\n\u0001\u0000"+
|
||||
"\u0000\u0000\u0138\u0139\u0007\u0001\u0000\u0000\u0139\f\u0001\u0000\u0000"+
|
||||
"\u0000\u013a\u013d\u0007\u0002\u0000\u0000\u013b\u013d\u0003\t\u0004\u0000"+
|
||||
"\u013c\u013a\u0001\u0000\u0000\u0000\u013c\u013b\u0001\u0000\u0000\u0000"+
|
||||
"\u013d\u000e\u0001\u0000\u0000\u0000\u013e\u0141\u0003\u0011\b\u0000\u013f"+
|
||||
"\u0141\u0003\u0013\t\u0000\u0140\u013e\u0001\u0000\u0000\u0000\u0140\u013f"+
|
||||
"\u0001\u0000\u0000\u0000\u0141\u0010\u0001\u0000\u0000\u0000\u0142\u0143"+
|
||||
"\u0005/\u0000\u0000\u0143\u0144\u0005*\u0000\u0000\u0144\u0145\u0001\u0000"+
|
||||
"\u0000\u0000\u0145\u0146\u0003\u0019\f\u0000\u0146\u0147\u0003\u0015\n"+
|
||||
"\u0000\u0147\u0012\u0001\u0000\u0000\u0000\u0148\u0149\u0005/\u0000\u0000"+
|
||||
"\u0149\u014a\u0005/\u0000\u0000\u014a\u014c\u0001\u0000\u0000\u0000\u014b"+
|
||||
"\u014d\u0003\u001d\u000e\u0000\u014c\u014b\u0001\u0000\u0000\u0000\u014c"+
|
||||
"\u014d\u0001\u0000\u0000\u0000\u014d\u014e\u0001\u0000\u0000\u0000\u014e"+
|
||||
"\u014f\u0003\t\u0004\u0000\u014f\u0014\u0001\u0000\u0000\u0000\u0150\u0151"+
|
||||
"\u0005*\u0000\u0000\u0151\u0154\u0003\u0017\u000b\u0000\u0152\u0154\u0003"+
|
||||
"\u0019\f\u0000\u0153\u0150\u0001\u0000\u0000\u0000\u0153\u0152\u0001\u0000"+
|
||||
"\u0000\u0000\u0154\u0016\u0001\u0000\u0000\u0000\u0155\u015c\u0005/\u0000"+
|
||||
"\u0000\u0156\u0157\u0005*\u0000\u0000\u0157\u015c\u0003\u0017\u000b\u0000"+
|
||||
"\u0158\u0159\u0003\u001b\r\u0000\u0159\u015a\u0003\u0015\n\u0000\u015a"+
|
||||
"\u015c\u0001\u0000\u0000\u0000\u015b\u0155\u0001\u0000\u0000\u0000\u015b"+
|
||||
"\u0156\u0001\u0000\u0000\u0000\u015b\u0158\u0001\u0000\u0000\u0000\u015c"+
|
||||
"\u0018\u0001\u0000\u0000\u0000\u015d\u0160\u0007\u0003\u0000\u0000\u015e"+
|
||||
"\u0160\u0003\t\u0004\u0000\u015f\u015d\u0001\u0000\u0000\u0000\u015f\u015e"+
|
||||
"\u0001\u0000\u0000\u0000\u0160\u001a\u0001\u0000\u0000\u0000\u0161\u0164"+
|
||||
"\u0007\u0004\u0000\u0000\u0162\u0164\u0003\t\u0004\u0000\u0163\u0161\u0001"+
|
||||
"\u0000\u0000\u0000\u0163\u0162\u0001\u0000\u0000\u0000\u0164\u001c\u0001"+
|
||||
"\u0000\u0000\u0000\u0165\u0168\u0003\u000b\u0005\u0000\u0166\u0168\u0003"+
|
||||
"\u000b\u0005\u0000\u0167\u0165\u0001\u0000\u0000\u0000\u0167\u0166\u0001"+
|
||||
"\u0000\u0000\u0000\u0168\u001e\u0001\u0000\u0000\u0000\u0169\u016a\u0005"+
|
||||
"a\u0000\u0000\u016a\u016b\u0005b\u0000\u0000\u016b\u016c\u0005s\u0000"+
|
||||
"\u0000\u016c\u016d\u0005t\u0000\u0000\u016d\u016e\u0005r\u0000\u0000\u016e"+
|
||||
"\u016f\u0005a\u0000\u0000\u016f\u0170\u0005c\u0000\u0000\u0170\u0171\u0005"+
|
||||
"t\u0000\u0000\u0171 \u0001\u0000\u0000\u0000\u0172\u0173\u0005a\u0000"+
|
||||
"\u0000\u0173\u0174\u0005s\u0000\u0000\u0174\u0175\u0005s\u0000\u0000\u0175"+
|
||||
"\u0176\u0005e\u0000\u0000\u0176\u0177\u0005r\u0000\u0000\u0177\u0178\u0005"+
|
||||
"t\u0000\u0000\u0178\"\u0001\u0000\u0000\u0000\u0179\u017a\u0005b\u0000"+
|
||||
"\u0000\u017a\u017b\u0005o\u0000\u0000\u017b\u017c\u0005o\u0000\u0000\u017c"+
|
||||
"\u017d\u0005l\u0000\u0000\u017d\u017e\u0005e\u0000\u0000\u017e\u017f\u0005"+
|
||||
"a\u0000\u0000\u017f\u0180\u0005n\u0000\u0000\u0180$\u0001\u0000\u0000"+
|
||||
"\u0000\u0181\u0182\u0005b\u0000\u0000\u0182\u0183\u0005r\u0000\u0000\u0183"+
|
||||
"\u0184\u0005e\u0000\u0000\u0184\u0185\u0005a\u0000\u0000\u0185\u0186\u0005"+
|
||||
"k\u0000\u0000\u0186&\u0001\u0000\u0000\u0000\u0187\u0188\u0005b\u0000"+
|
||||
"\u0000\u0188\u0189\u0005y\u0000\u0000\u0189\u018a\u0005t\u0000\u0000\u018a"+
|
||||
"\u018b\u0005e\u0000\u0000\u018b(\u0001\u0000\u0000\u0000\u018c\u018d\u0005"+
|
||||
"c\u0000\u0000\u018d\u018e\u0005a\u0000\u0000\u018e\u018f\u0005s\u0000"+
|
||||
"\u0000\u018f\u0190\u0005e\u0000\u0000\u0190*\u0001\u0000\u0000\u0000\u0191"+
|
||||
"\u0192\u0005c\u0000\u0000\u0192\u0193\u0005a\u0000\u0000\u0193\u0194\u0005"+
|
||||
"t\u0000\u0000\u0194\u0195\u0005c\u0000\u0000\u0195\u0196\u0005h\u0000"+
|
||||
"\u0000\u0196,\u0001\u0000\u0000\u0000\u0197\u0198\u0005c\u0000\u0000\u0198"+
|
||||
"\u0199\u0005h\u0000\u0000\u0199\u019a\u0005a\u0000\u0000\u019a\u019b\u0005"+
|
||||
"r\u0000\u0000\u019b.\u0001\u0000\u0000\u0000\u019c\u019d\u0005c\u0000"+
|
||||
"\u0000\u019d\u019e\u0005l\u0000\u0000\u019e\u019f\u0005a\u0000\u0000\u019f"+
|
||||
"\u01a0\u0005s\u0000\u0000\u01a0\u01a1\u0005s\u0000\u0000\u01a10\u0001"+
|
||||
"\u0000\u0000\u0000\u01a2\u01a3\u0005c\u0000\u0000\u01a3\u01a4\u0005o\u0000"+
|
||||
"\u0000\u01a4\u01a5\u0005n\u0000\u0000\u01a5\u01a6\u0005s\u0000\u0000\u01a6"+
|
||||
"\u01a7\u0005t\u0000\u0000\u01a72\u0001\u0000\u0000\u0000\u01a8\u01a9\u0005"+
|
||||
"c\u0000\u0000\u01a9\u01aa\u0005o\u0000\u0000\u01aa\u01ab\u0005n\u0000"+
|
||||
"\u0000\u01ab\u01ac\u0005t\u0000\u0000\u01ac\u01ad\u0005i\u0000\u0000\u01ad"+
|
||||
"\u01ae\u0005n\u0000\u0000\u01ae\u01af\u0005u\u0000\u0000\u01af\u01b0\u0005"+
|
||||
"e\u0000\u0000\u01b04\u0001\u0000\u0000\u0000\u01b1\u01b2\u0005d\u0000"+
|
||||
"\u0000\u01b2\u01b3\u0005e\u0000\u0000\u01b3\u01b4\u0005f\u0000\u0000\u01b4"+
|
||||
"\u01b5\u0005a\u0000\u0000\u01b5\u01b6\u0005u\u0000\u0000\u01b6\u01b7\u0005"+
|
||||
"l\u0000\u0000\u01b7\u01b8\u0005t\u0000\u0000\u01b86\u0001\u0000\u0000"+
|
||||
"\u0000\u01b9\u01ba\u0005d\u0000\u0000\u01ba\u01bb\u0005o\u0000\u0000\u01bb"+
|
||||
"8\u0001\u0000\u0000\u0000\u01bc\u01bd\u0005d\u0000\u0000\u01bd\u01be\u0005"+
|
||||
"o\u0000\u0000\u01be\u01bf\u0005u\u0000\u0000\u01bf\u01c0\u0005b\u0000"+
|
||||
"\u0000\u01c0\u01c1\u0005l\u0000\u0000\u01c1\u01c2\u0005e\u0000\u0000\u01c2"+
|
||||
":\u0001\u0000\u0000\u0000\u01c3\u01c4\u0005e\u0000\u0000\u01c4\u01c5\u0005"+
|
||||
"l\u0000\u0000\u01c5\u01c6\u0005s\u0000\u0000\u01c6\u01c7\u0005e\u0000"+
|
||||
"\u0000\u01c7<\u0001\u0000\u0000\u0000\u01c8\u01c9\u0005e\u0000\u0000\u01c9"+
|
||||
"\u01ca\u0005x\u0000\u0000\u01ca\u01cb\u0005t\u0000\u0000\u01cb\u01cc\u0005"+
|
||||
"e\u0000\u0000\u01cc\u01cd\u0005n\u0000\u0000\u01cd\u01ce\u0005d\u0000"+
|
||||
"\u0000\u01ce\u01cf\u0005s\u0000\u0000\u01cf>\u0001\u0000\u0000\u0000\u01d0"+
|
||||
"\u01d1\u0005f\u0000\u0000\u01d1\u01d2\u0005i\u0000\u0000\u01d2\u01d3\u0005"+
|
||||
"n\u0000\u0000\u01d3\u01d4\u0005a\u0000\u0000\u01d4\u01d5\u0005l\u0000"+
|
||||
"\u0000\u01d5@\u0001\u0000\u0000\u0000\u01d6\u01d7\u0005f\u0000\u0000\u01d7"+
|
||||
"\u01d8\u0005i\u0000\u0000\u01d8\u01d9\u0005n\u0000\u0000\u01d9\u01da\u0005"+
|
||||
"a\u0000\u0000\u01da\u01db\u0005l\u0000\u0000\u01db\u01dc\u0005l\u0000"+
|
||||
"\u0000\u01dc\u01dd\u0005y\u0000\u0000\u01ddB\u0001\u0000\u0000\u0000\u01de"+
|
||||
"\u01df\u0005f\u0000\u0000\u01df\u01e0\u0005l\u0000\u0000\u01e0\u01e1\u0005"+
|
||||
"o\u0000\u0000\u01e1\u01e2\u0005a\u0000\u0000\u01e2\u01e3\u0005t\u0000"+
|
||||
"\u0000\u01e3D\u0001\u0000\u0000\u0000\u01e4\u01e5\u0005f\u0000\u0000\u01e5"+
|
||||
"\u01e6\u0005o\u0000\u0000\u01e6\u01e7\u0005r\u0000\u0000\u01e7F\u0001"+
|
||||
"\u0000\u0000\u0000\u01e8\u01e9\u0005g\u0000\u0000\u01e9\u01ea\u0005o\u0000"+
|
||||
"\u0000\u01ea\u01eb\u0005t\u0000\u0000\u01eb\u01ec\u0005o\u0000\u0000\u01ec"+
|
||||
"H\u0001\u0000\u0000\u0000\u01ed\u01ee\u0005i\u0000\u0000\u01ee\u01ef\u0005"+
|
||||
"f\u0000\u0000\u01efJ\u0001\u0000\u0000\u0000\u01f0\u01f1\u0005i\u0000"+
|
||||
"\u0000\u01f1\u01f2\u0005m\u0000\u0000\u01f2\u01f3\u0005p\u0000\u0000\u01f3"+
|
||||
"\u01f4\u0005l\u0000\u0000\u01f4\u01f5\u0005e\u0000\u0000\u01f5\u01f6\u0005"+
|
||||
"m\u0000\u0000\u01f6\u01f7\u0005e\u0000\u0000\u01f7\u01f8\u0005n\u0000"+
|
||||
"\u0000\u01f8\u01f9\u0005t\u0000\u0000\u01f9\u01fa\u0005s\u0000\u0000\u01fa"+
|
||||
"L\u0001\u0000\u0000\u0000\u01fb\u01fc\u0005i\u0000\u0000\u01fc\u01fd\u0005"+
|
||||
"m\u0000\u0000\u01fd\u01fe\u0005p\u0000\u0000\u01fe\u01ff\u0005o\u0000"+
|
||||
"\u0000\u01ff\u0200\u0005r\u0000\u0000\u0200\u0201\u0005t\u0000\u0000\u0201"+
|
||||
"N\u0001\u0000\u0000\u0000\u0202\u0203\u0005i\u0000\u0000\u0203\u0204\u0005"+
|
||||
"n\u0000\u0000\u0204\u0205\u0005s\u0000\u0000\u0205\u0206\u0005t\u0000"+
|
||||
"\u0000\u0206\u0207\u0005a\u0000\u0000\u0207\u0208\u0005n\u0000\u0000\u0208"+
|
||||
"\u0209\u0005c\u0000\u0000\u0209\u020a\u0005e\u0000\u0000\u020a\u020b\u0005"+
|
||||
"o\u0000\u0000\u020b\u020c\u0005f\u0000\u0000\u020cP\u0001\u0000\u0000"+
|
||||
"\u0000\u020d\u020e\u0005i\u0000\u0000\u020e\u020f\u0005n\u0000\u0000\u020f"+
|
||||
"\u0210\u0005t\u0000\u0000\u0210R\u0001\u0000\u0000\u0000\u0211\u0212\u0005"+
|
||||
"i\u0000\u0000\u0212\u0213\u0005n\u0000\u0000\u0213\u0214\u0005t\u0000"+
|
||||
"\u0000\u0214\u0215\u0005e\u0000\u0000\u0215\u0216\u0005r\u0000\u0000\u0216"+
|
||||
"\u0217\u0005f\u0000\u0000\u0217\u0218\u0005a\u0000\u0000\u0218\u0219\u0005"+
|
||||
"c\u0000\u0000\u0219\u021a\u0005e\u0000\u0000\u021aT\u0001\u0000\u0000"+
|
||||
"\u0000\u021b\u021c\u0005l\u0000\u0000\u021c\u021d\u0005o\u0000\u0000\u021d"+
|
||||
"\u021e\u0005n\u0000\u0000\u021e\u021f\u0005g\u0000\u0000\u021fV\u0001"+
|
||||
"\u0000\u0000\u0000\u0220\u0221\u0005n\u0000\u0000\u0221\u0222\u0005a\u0000"+
|
||||
"\u0000\u0222\u0223\u0005t\u0000\u0000\u0223\u0224\u0005i\u0000\u0000\u0224"+
|
||||
"\u0225\u0005v\u0000\u0000\u0225\u0226\u0005e\u0000\u0000\u0226X\u0001"+
|
||||
"\u0000\u0000\u0000\u0227\u0228\u0005n\u0000\u0000\u0228\u0229\u0005e\u0000"+
|
||||
"\u0000\u0229\u022a\u0005w\u0000\u0000\u022aZ\u0001\u0000\u0000\u0000\u022b"+
|
||||
"\u022c\u0005p\u0000\u0000\u022c\u022d\u0005a\u0000\u0000\u022d\u022e\u0005"+
|
||||
"c\u0000\u0000\u022e\u022f\u0005k\u0000\u0000\u022f\u0230\u0005a\u0000"+
|
||||
"\u0000\u0230\u0231\u0005g\u0000\u0000\u0231\u0232\u0005e\u0000\u0000\u0232"+
|
||||
"\\\u0001\u0000\u0000\u0000\u0233\u0234\u0005p\u0000\u0000\u0234\u0235"+
|
||||
"\u0005r\u0000\u0000\u0235\u0236\u0005i\u0000\u0000\u0236\u0237\u0005v"+
|
||||
"\u0000\u0000\u0237\u0238\u0005a\u0000\u0000\u0238\u0239\u0005t\u0000\u0000"+
|
||||
"\u0239\u023a\u0005e\u0000\u0000\u023a^\u0001\u0000\u0000\u0000\u023b\u023c"+
|
||||
"\u0005p\u0000\u0000\u023c\u023d\u0005r\u0000\u0000\u023d\u023e\u0005o"+
|
||||
"\u0000\u0000\u023e\u023f\u0005t\u0000\u0000\u023f\u0240\u0005e\u0000\u0000"+
|
||||
"\u0240\u0241\u0005c\u0000\u0000\u0241\u0242\u0005t\u0000\u0000\u0242\u0243"+
|
||||
"\u0005e\u0000\u0000\u0243\u0244\u0005d\u0000\u0000\u0244`\u0001\u0000"+
|
||||
"\u0000\u0000\u0245\u0246\u0005p\u0000\u0000\u0246\u0247\u0005u\u0000\u0000"+
|
||||
"\u0247\u0248\u0005b\u0000\u0000\u0248\u0249\u0005l\u0000\u0000\u0249\u024a"+
|
||||
"\u0005i\u0000\u0000\u024a\u024b\u0005c\u0000\u0000\u024bb\u0001\u0000"+
|
||||
"\u0000\u0000\u024c\u024d\u0005r\u0000\u0000\u024d\u024e\u0005e\u0000\u0000"+
|
||||
"\u024e\u024f\u0005t\u0000\u0000\u024f\u0250\u0005u\u0000\u0000\u0250\u0251"+
|
||||
"\u0005r\u0000\u0000\u0251\u0252\u0005n\u0000\u0000\u0252d\u0001\u0000"+
|
||||
"\u0000\u0000\u0253\u0254\u0005s\u0000\u0000\u0254\u0255\u0005h\u0000\u0000"+
|
||||
"\u0255\u0256\u0005o\u0000\u0000\u0256\u0257\u0005r\u0000\u0000\u0257\u0258"+
|
||||
"\u0005t\u0000\u0000\u0258f\u0001\u0000\u0000\u0000\u0259\u025a\u0005s"+
|
||||
"\u0000\u0000\u025a\u025b\u0005t\u0000\u0000\u025b\u025c\u0005a\u0000\u0000"+
|
||||
"\u025c\u025d\u0005t\u0000\u0000\u025d\u025e\u0005i\u0000\u0000\u025e\u025f"+
|
||||
"\u0005c\u0000\u0000\u025fh\u0001\u0000\u0000\u0000\u0260\u0261\u0005s"+
|
||||
"\u0000\u0000\u0261\u0262\u0005t\u0000\u0000\u0262\u0263\u0005r\u0000\u0000"+
|
||||
"\u0263\u0264\u0005i\u0000\u0000\u0264\u0265\u0005c\u0000\u0000\u0265\u0266"+
|
||||
"\u0005t\u0000\u0000\u0266\u0267\u0005f\u0000\u0000\u0267\u0268\u0005p"+
|
||||
"\u0000\u0000\u0268j\u0001\u0000\u0000\u0000\u0269\u026a\u0005s\u0000\u0000"+
|
||||
"\u026a\u026b\u0005u\u0000\u0000\u026b\u026c\u0005p\u0000\u0000\u026c\u026d"+
|
||||
"\u0005e\u0000\u0000\u026d\u026e\u0005r\u0000\u0000\u026el\u0001\u0000"+
|
||||
"\u0000\u0000\u026f\u0270\u0005s\u0000\u0000\u0270\u0271\u0005w\u0000\u0000"+
|
||||
"\u0271\u0272\u0005i\u0000\u0000\u0272\u0273\u0005t\u0000\u0000\u0273\u0274"+
|
||||
"\u0005c\u0000\u0000\u0274\u0275\u0005h\u0000\u0000\u0275n\u0001\u0000"+
|
||||
"\u0000\u0000\u0276\u0277\u0005s\u0000\u0000\u0277\u0278\u0005y\u0000\u0000"+
|
||||
"\u0278\u0279\u0005n\u0000\u0000\u0279\u027a\u0005c\u0000\u0000\u027a\u027b"+
|
||||
"\u0005h\u0000\u0000\u027b\u027c\u0005r\u0000\u0000\u027c\u027d\u0005o"+
|
||||
"\u0000\u0000\u027d\u027e\u0005n\u0000\u0000\u027e\u027f\u0005i\u0000\u0000"+
|
||||
"\u027f\u0280\u0005z\u0000\u0000\u0280\u0281\u0005e\u0000\u0000\u0281\u0282"+
|
||||
"\u0005d\u0000\u0000\u0282p\u0001\u0000\u0000\u0000\u0283\u0284\u0005t"+
|
||||
"\u0000\u0000\u0284\u0285\u0005h\u0000\u0000\u0285\u0286\u0005i\u0000\u0000"+
|
||||
"\u0286\u0287\u0005s\u0000\u0000\u0287r\u0001\u0000\u0000\u0000\u0288\u0289"+
|
||||
"\u0005t\u0000\u0000\u0289\u028a\u0005h\u0000\u0000\u028a\u028b\u0005r"+
|
||||
"\u0000\u0000\u028b\u028c\u0005o\u0000\u0000\u028c\u028d\u0005w\u0000\u0000"+
|
||||
"\u028dt\u0001\u0000\u0000\u0000\u028e\u028f\u0005t\u0000\u0000\u028f\u0290"+
|
||||
"\u0005h\u0000\u0000\u0290\u0291\u0005r\u0000\u0000\u0291\u0292\u0005o"+
|
||||
"\u0000\u0000\u0292\u0293\u0005w\u0000\u0000\u0293\u0294\u0005s\u0000\u0000"+
|
||||
"\u0294v\u0001\u0000\u0000\u0000\u0295\u0296\u0005t\u0000\u0000\u0296\u0297"+
|
||||
"\u0005r\u0000\u0000\u0297\u0298\u0005a\u0000\u0000\u0298\u0299\u0005n"+
|
||||
"\u0000\u0000\u0299\u029a\u0005s\u0000\u0000\u029a\u029b\u0005i\u0000\u0000"+
|
||||
"\u029b\u029c\u0005e\u0000\u0000\u029c\u029d\u0005n\u0000\u0000\u029d\u029e"+
|
||||
"\u0005t\u0000\u0000\u029ex\u0001\u0000\u0000\u0000\u029f\u02a0\u0005t"+
|
||||
"\u0000\u0000\u02a0\u02a1\u0005r\u0000\u0000\u02a1\u02a2\u0005y\u0000\u0000"+
|
||||
"\u02a2z\u0001\u0000\u0000\u0000\u02a3\u02a4\u0005v\u0000\u0000\u02a4\u02a5"+
|
||||
"\u0005o\u0000\u0000\u02a5\u02a6\u0005i\u0000\u0000\u02a6\u02a7\u0005d"+
|
||||
"\u0000\u0000\u02a7|\u0001\u0000\u0000\u0000\u02a8\u02a9\u0005v\u0000\u0000"+
|
||||
"\u02a9\u02aa\u0005o\u0000\u0000\u02aa\u02ab\u0005l\u0000\u0000\u02ab\u02ac"+
|
||||
"\u0005a\u0000\u0000\u02ac\u02ad\u0005t\u0000\u0000\u02ad\u02ae\u0005i"+
|
||||
"\u0000\u0000\u02ae\u02af\u0005l\u0000\u0000\u02af\u02b0\u0005e\u0000\u0000"+
|
||||
"\u02b0~\u0001\u0000\u0000\u0000\u02b1\u02b2\u0005w\u0000\u0000\u02b2\u02b3"+
|
||||
"\u0005h\u0000\u0000\u02b3\u02b4\u0005i\u0000\u0000\u02b4\u02b5\u0005l"+
|
||||
"\u0000\u0000\u02b5\u02b6\u0005e\u0000\u0000\u02b6\u0080\u0001\u0000\u0000"+
|
||||
"\u0000\u02b7\u02bb\u0003\u0083A\u0000\u02b8\u02bb\u0003\u0085B\u0000\u02b9"+
|
||||
"\u02bb\u0003\u0087C\u0000\u02ba\u02b7\u0001\u0000\u0000\u0000\u02ba\u02b8"+
|
||||
"\u0001\u0000\u0000\u0000\u02ba\u02b9\u0001\u0000\u0000\u0000\u02bb\u0082"+
|
||||
"\u0001\u0000\u0000\u0000\u02bc\u02be\u0003\u008bE\u0000\u02bd\u02bf\u0003"+
|
||||
"\u0089D\u0000\u02be\u02bd\u0001\u0000\u0000\u0000\u02be\u02bf\u0001\u0000"+
|
||||
"\u0000\u0000\u02bf\u0084\u0001\u0000\u0000\u0000\u02c0\u02c2\u0003\u008d"+
|
||||
"F\u0000\u02c1\u02c3\u0003\u0089D\u0000\u02c2\u02c1\u0001\u0000\u0000\u0000"+
|
||||
"\u02c2\u02c3\u0001\u0000\u0000\u0000\u02c3\u0086\u0001\u0000\u0000\u0000"+
|
||||
"\u02c4\u02c6\u0003\u00b3Y\u0000\u02c5\u02c7\u0003\u0089D\u0000\u02c6\u02c5"+
|
||||
"\u0001\u0000\u0000\u0000\u02c6\u02c7\u0001\u0000\u0000\u0000\u02c7\u0088"+
|
||||
"\u0001\u0000\u0000\u0000\u02c8\u02c9\u0007\u0005\u0000\u0000\u02c9\u008a"+
|
||||
"\u0001\u0000\u0000\u0000\u02ca\u02d0\u00050\u0000\u0000\u02cb\u02cd\u0003"+
|
||||
"\u009fO\u0000\u02cc\u02ce\u0003\u009bM\u0000\u02cd\u02cc\u0001\u0000\u0000"+
|
||||
"\u0000\u02cd\u02ce\u0001\u0000\u0000\u0000\u02ce\u02d0\u0001\u0000\u0000"+
|
||||
"\u0000\u02cf\u02ca\u0001\u0000\u0000\u0000\u02cf\u02cb\u0001\u0000\u0000"+
|
||||
"\u0000\u02d0\u008c\u0001\u0000\u0000\u0000\u02d1\u02d2\u00050\u0000\u0000"+
|
||||
"\u02d2\u02d3\u0005x\u0000\u0000\u02d3\u02d8\u0003\u008fG\u0000\u02d4\u02d5"+
|
||||
"\u00050\u0000\u0000\u02d5\u02d6\u0005X\u0000\u0000\u02d6\u02d8\u0003\u008f"+
|
||||
"G\u0000\u02d7\u02d1\u0001\u0000\u0000\u0000\u02d7\u02d4\u0001\u0000\u0000"+
|
||||
"\u0000\u02d8\u008e\u0001\u0000\u0000\u0000\u02d9\u02de\u0003\u0091H\u0000"+
|
||||
"\u02da\u02db\u0003\u0091H\u0000\u02db\u02dc\u0003\u008fG\u0000\u02dc\u02de"+
|
||||
"\u0001\u0000\u0000\u0000\u02dd\u02d9\u0001\u0000\u0000\u0000\u02dd\u02da"+
|
||||
"\u0001\u0000\u0000\u0000\u02de\u0090\u0001\u0000\u0000\u0000\u02df\u02e0"+
|
||||
"\u0007\u0006\u0000\u0000\u02e0\u0092\u0001\u0000\u0000\u0000\u02e1\u02e2"+
|
||||
"\u0003\u009bM\u0000\u02e2\u02e4\u0005.\u0000\u0000\u02e3\u02e5\u0003\u009b"+
|
||||
"M\u0000\u02e4\u02e3\u0001\u0000\u0000\u0000\u02e4\u02e5\u0001\u0000\u0000"+
|
||||
"\u0000\u02e5\u02e7\u0001\u0000\u0000\u0000\u02e6\u02e8\u0003\u0095J\u0000"+
|
||||
"\u02e7\u02e6\u0001\u0000\u0000\u0000\u02e7\u02e8\u0001\u0000\u0000\u0000"+
|
||||
"\u02e8\u02ea\u0001\u0000\u0000\u0000\u02e9\u02eb\u0003\u00a3Q\u0000\u02ea"+
|
||||
"\u02e9\u0001\u0000\u0000\u0000\u02ea\u02eb\u0001\u0000\u0000\u0000\u02eb"+
|
||||
"\u0300\u0001\u0000\u0000\u0000\u02ec\u02ed\u0005.\u0000\u0000\u02ed\u02ef"+
|
||||
"\u0003\u009bM\u0000\u02ee\u02f0\u0003\u0095J\u0000\u02ef\u02ee\u0001\u0000"+
|
||||
"\u0000\u0000\u02ef\u02f0\u0001\u0000\u0000\u0000\u02f0\u02f2\u0001\u0000"+
|
||||
"\u0000\u0000\u02f1\u02f3\u0003\u00a3Q\u0000\u02f2\u02f1\u0001\u0000\u0000"+
|
||||
"\u0000\u02f2\u02f3\u0001\u0000\u0000\u0000\u02f3\u0300\u0001\u0000\u0000"+
|
||||
"\u0000\u02f4\u02f5\u0003\u009bM\u0000\u02f5\u02f7\u0003\u0095J\u0000\u02f6"+
|
||||
"\u02f8\u0003\u00a3Q\u0000\u02f7\u02f6\u0001\u0000\u0000\u0000\u02f7\u02f8"+
|
||||
"\u0001\u0000\u0000\u0000\u02f8\u0300\u0001\u0000\u0000\u0000\u02f9\u02fb"+
|
||||
"\u0003\u009bM\u0000\u02fa\u02fc\u0003\u0095J\u0000\u02fb\u02fa\u0001\u0000"+
|
||||
"\u0000\u0000\u02fb\u02fc\u0001\u0000\u0000\u0000\u02fc\u02fd\u0001\u0000"+
|
||||
"\u0000\u0000\u02fd\u02fe\u0003\u00a3Q\u0000\u02fe\u0300\u0001\u0000\u0000"+
|
||||
"\u0000\u02ff\u02e1\u0001\u0000\u0000\u0000\u02ff\u02ec\u0001\u0000\u0000"+
|
||||
"\u0000\u02ff\u02f4\u0001\u0000\u0000\u0000\u02ff\u02f9\u0001\u0000\u0000"+
|
||||
"\u0000\u0300\u0094\u0001\u0000\u0000\u0000\u0301\u0302\u0003\u0097K\u0000"+
|
||||
"\u0302\u0303\u0003\u0099L\u0000\u0303\u0096\u0001\u0000\u0000\u0000\u0304"+
|
||||
"\u0305\u0007\u0007\u0000\u0000\u0305\u0098\u0001\u0000\u0000\u0000\u0306"+
|
||||
"\u0308\u0003\u00a1P\u0000\u0307\u0306\u0001\u0000\u0000\u0000\u0307\u0308"+
|
||||
"\u0001\u0000\u0000\u0000\u0308\u0309\u0001\u0000\u0000\u0000\u0309\u030a"+
|
||||
"\u0003\u009bM\u0000\u030a\u009a\u0001\u0000\u0000\u0000\u030b\u030d\u0003"+
|
||||
"\u009dN\u0000\u030c\u030b\u0001\u0000\u0000\u0000\u030d\u030e\u0001\u0000"+
|
||||
"\u0000\u0000\u030e\u030c\u0001\u0000\u0000\u0000\u030e\u030f\u0001\u0000"+
|
||||
"\u0000\u0000\u030f\u009c\u0001\u0000\u0000\u0000\u0310\u0313\u00050\u0000"+
|
||||
"\u0000\u0311\u0313\u0003\u009fO\u0000\u0312\u0310\u0001\u0000\u0000\u0000"+
|
||||
"\u0312\u0311\u0001\u0000\u0000\u0000\u0313\u009e\u0001\u0000\u0000\u0000"+
|
||||
"\u0314\u0315\u0007\b\u0000\u0000\u0315\u00a0\u0001\u0000\u0000\u0000\u0316"+
|
||||
"\u0317\u0007\t\u0000\u0000\u0317\u00a2\u0001\u0000\u0000\u0000\u0318\u0319"+
|
||||
"\u0007\n\u0000\u0000\u0319\u00a4\u0001\u0000\u0000\u0000\u031a\u031b\u0005"+
|
||||
"\'\u0000\u0000\u031b\u031c\u0003\u00a7S\u0000\u031c\u031d\u0005\'\u0000"+
|
||||
"\u0000\u031d\u0323\u0001\u0000\u0000\u0000\u031e\u031f\u0005\'\u0000\u0000"+
|
||||
"\u031f\u0320\u0003\u00afW\u0000\u0320\u0321\u0005\'\u0000\u0000\u0321"+
|
||||
"\u0323\u0001\u0000\u0000\u0000\u0322\u031a\u0001\u0000\u0000\u0000\u0322"+
|
||||
"\u031e\u0001\u0000\u0000\u0000\u0323\u00a6\u0001\u0000\u0000\u0000\u0324"+
|
||||
"\u0325\u0007\u000b\u0000\u0000\u0325\u00a8\u0001\u0000\u0000\u0000\u0326"+
|
||||
"\u0328\u0005\"\u0000\u0000\u0327\u0329\u0003\u00abU\u0000\u0328\u0327"+
|
||||
"\u0001\u0000\u0000\u0000\u0328\u0329\u0001\u0000\u0000\u0000\u0329\u032a"+
|
||||
"\u0001\u0000\u0000\u0000\u032a\u032b\u0005\"\u0000\u0000\u032b\u00aa\u0001"+
|
||||
"\u0000\u0000\u0000\u032c\u032e\u0003\u00adV\u0000\u032d\u032c\u0001\u0000"+
|
||||
"\u0000\u0000\u032e\u032f\u0001\u0000\u0000\u0000\u032f\u032d\u0001\u0000"+
|
||||
"\u0000\u0000\u032f\u0330\u0001\u0000\u0000\u0000\u0330\u00ac\u0001\u0000"+
|
||||
"\u0000\u0000\u0331\u0334\u0003\u00a7S\u0000\u0332\u0334\u0003\u00afW\u0000"+
|
||||
"\u0333\u0331\u0001\u0000\u0000\u0000\u0333\u0332\u0001\u0000\u0000\u0000"+
|
||||
"\u0334\u00ae\u0001\u0000\u0000\u0000\u0335\u035f\u0005\\\u0000\u0000\u0336"+
|
||||
"\u0337\u0005u\u0000\u0000\u0337\u0338\u00050\u0000\u0000\u0338\u0339\u0005"+
|
||||
"0\u0000\u0000\u0339\u033a\u00050\u0000\u0000\u033a\u0360\u00058\u0000"+
|
||||
"\u0000\u033b\u033c\u0005u\u0000\u0000\u033c\u033d\u00050\u0000\u0000\u033d"+
|
||||
"\u033e\u00050\u0000\u0000\u033e\u033f\u00050\u0000\u0000\u033f\u0360\u0005"+
|
||||
"9\u0000\u0000\u0340\u0341\u0005u\u0000\u0000\u0341\u0342\u00050\u0000"+
|
||||
"\u0000\u0342\u0343\u00050\u0000\u0000\u0343\u0344\u00050\u0000\u0000\u0344"+
|
||||
"\u0360\u0005a\u0000\u0000\u0345\u0346\u0005u\u0000\u0000\u0346\u0347\u0005"+
|
||||
"0\u0000\u0000\u0347\u0348\u00050\u0000\u0000\u0348\u0349\u00050\u0000"+
|
||||
"\u0000\u0349\u0360\u0005c\u0000\u0000\u034a\u034b\u0005u\u0000\u0000\u034b"+
|
||||
"\u034c\u00050\u0000\u0000\u034c\u034d\u00050\u0000\u0000\u034d\u034e\u0005"+
|
||||
"0\u0000\u0000\u034e\u0360\u0005d\u0000\u0000\u034f\u0350\u0005u\u0000"+
|
||||
"\u0000\u0350\u0351\u00050\u0000\u0000\u0351\u0352\u00050\u0000\u0000\u0352"+
|
||||
"\u0353\u00052\u0000\u0000\u0353\u0360\u00052\u0000\u0000\u0354\u0355\u0005"+
|
||||
"u\u0000\u0000\u0355\u0356\u00050\u0000\u0000\u0356\u0357\u00050\u0000"+
|
||||
"\u0000\u0357\u0358\u00052\u0000\u0000\u0358\u0360\u00057\u0000\u0000\u0359"+
|
||||
"\u035a\u0005u\u0000\u0000\u035a\u035b\u00050\u0000\u0000\u035b\u035c\u0005"+
|
||||
"0\u0000\u0000\u035c\u035d\u00055\u0000\u0000\u035d\u0360\u0005c\u0000"+
|
||||
"\u0000\u035e\u0360\u0003\u00b1X\u0000\u035f\u0336\u0001\u0000\u0000\u0000"+
|
||||
"\u035f\u033b\u0001\u0000\u0000\u0000\u035f\u0340\u0001\u0000\u0000\u0000"+
|
||||
"\u035f\u0345\u0001\u0000\u0000\u0000\u035f\u034a\u0001\u0000\u0000\u0000"+
|
||||
"\u035f\u034f\u0001\u0000\u0000\u0000\u035f\u0354\u0001\u0000\u0000\u0000"+
|
||||
"\u035f\u0359\u0001\u0000\u0000\u0000\u035f\u035e\u0001\u0000\u0000\u0000"+
|
||||
"\u0360\u00b0\u0001\u0000\u0000\u0000\u0361\u0362\u0005\\\u0000\u0000\u0362"+
|
||||
"\u036d\u0003\u00b7[\u0000\u0363\u0364\u0005\\\u0000\u0000\u0364\u0365"+
|
||||
"\u0003\u00b7[\u0000\u0365\u0366\u0003\u00b7[\u0000\u0366\u036d\u0001\u0000"+
|
||||
"\u0000\u0000\u0367\u0368\u0005\\\u0000\u0000\u0368\u0369\u0003\u00b9\\"+
|
||||
"\u0000\u0369\u036a\u0003\u00b7[\u0000\u036a\u036b\u0003\u00b7[\u0000\u036b"+
|
||||
"\u036d\u0001\u0000\u0000\u0000\u036c\u0361\u0001\u0000\u0000\u0000\u036c"+
|
||||
"\u0363\u0001\u0000\u0000\u0000\u036c\u0367\u0001\u0000\u0000\u0000\u036d"+
|
||||
"\u00b2\u0001\u0000\u0000\u0000\u036e\u036f\u00050\u0000\u0000\u036f\u0370"+
|
||||
"\u0003\u00b5Z\u0000\u0370\u00b4\u0001\u0000\u0000\u0000\u0371\u0372\u0003"+
|
||||
"\u00b7[\u0000\u0372\u00b6\u0001\u0000\u0000\u0000\u0373\u0374\u0007\f"+
|
||||
"\u0000\u0000\u0374\u00b8\u0001\u0000\u0000\u0000\u0375\u0376\u0007\r\u0000"+
|
||||
"\u0000\u0376\u00ba\u0001\u0000\u0000\u0000\u0377\u0378\u0005t\u0000\u0000"+
|
||||
"\u0378\u0379\u0005r\u0000\u0000\u0379\u037a\u0005u\u0000\u0000\u037a\u0381"+
|
||||
"\u0005e\u0000\u0000\u037b\u037c\u0005f\u0000\u0000\u037c\u037d\u0005a"+
|
||||
"\u0000\u0000\u037d\u037e\u0005l\u0000\u0000\u037e\u037f\u0005s\u0000\u0000"+
|
||||
"\u037f\u0381\u0005e\u0000\u0000\u0380\u0377\u0001\u0000\u0000\u0000\u0380"+
|
||||
"\u037b\u0001\u0000\u0000\u0000\u0381\u00bc\u0001\u0000\u0000\u0000\u0382"+
|
||||
"\u0383\u0005n\u0000\u0000\u0383\u0384\u0005u\u0000\u0000\u0384\u0385\u0005"+
|
||||
"l\u0000\u0000\u0385\u0386\u0005l\u0000\u0000\u0386\u00be\u0001\u0000\u0000"+
|
||||
"\u0000\u0387\u0388\u0005(\u0000\u0000\u0388\u00c0\u0001\u0000\u0000\u0000"+
|
||||
"\u0389\u038a\u0005)\u0000\u0000\u038a\u00c2\u0001\u0000\u0000\u0000\u038b"+
|
||||
"\u038c\u0005{\u0000\u0000\u038c\u00c4\u0001\u0000\u0000\u0000\u038d\u038e"+
|
||||
"\u0005}\u0000\u0000\u038e\u00c6\u0001\u0000\u0000\u0000\u038f\u0390\u0005"+
|
||||
"[\u0000\u0000\u0390\u00c8\u0001\u0000\u0000\u0000\u0391\u0392\u0005]\u0000"+
|
||||
"\u0000\u0392\u00ca\u0001\u0000\u0000\u0000\u0393\u0394\u0005;\u0000\u0000"+
|
||||
"\u0394\u00cc\u0001\u0000\u0000\u0000\u0395\u0396\u0005,\u0000\u0000\u0396"+
|
||||
"\u00ce\u0001\u0000\u0000\u0000\u0397\u0398\u0005.\u0000\u0000\u0398\u00d0"+
|
||||
"\u0001\u0000\u0000\u0000\u0399\u039a\u0005=\u0000\u0000\u039a\u00d2\u0001"+
|
||||
"\u0000\u0000\u0000\u039b\u039c\u0005>\u0000\u0000\u039c\u00d4\u0001\u0000"+
|
||||
"\u0000\u0000\u039d\u039e\u0005<\u0000\u0000\u039e\u00d6\u0001\u0000\u0000"+
|
||||
"\u0000\u039f\u03a0\u0005!\u0000\u0000\u03a0\u00d8\u0001\u0000\u0000\u0000"+
|
||||
"\u03a1\u03a2\u0005~\u0000\u0000\u03a2\u00da\u0001\u0000\u0000\u0000\u03a3"+
|
||||
"\u03a4\u0005?\u0000\u0000\u03a4\u00dc\u0001\u0000\u0000\u0000\u03a5\u03a6"+
|
||||
"\u0005:\u0000\u0000\u03a6\u00de\u0001\u0000\u0000\u0000\u03a7\u03a8\u0005"+
|
||||
"=\u0000\u0000\u03a8\u03a9\u0005=\u0000\u0000\u03a9\u00e0\u0001\u0000\u0000"+
|
||||
"\u0000\u03aa\u03ab\u0005<\u0000\u0000\u03ab\u03ac\u0005=\u0000\u0000\u03ac"+
|
||||
"\u00e2\u0001\u0000\u0000\u0000\u03ad\u03ae\u0005>\u0000\u0000\u03ae\u03af"+
|
||||
"\u0005=\u0000\u0000\u03af\u00e4\u0001\u0000\u0000\u0000\u03b0\u03b1\u0005"+
|
||||
"!\u0000\u0000\u03b1\u03b2\u0005=\u0000\u0000\u03b2\u00e6\u0001\u0000\u0000"+
|
||||
"\u0000\u03b3\u03b4\u0005&\u0000\u0000\u03b4\u03b5\u0005&\u0000\u0000\u03b5"+
|
||||
"\u00e8\u0001\u0000\u0000\u0000\u03b6\u03b7\u0005|\u0000\u0000\u03b7\u03b8"+
|
||||
"\u0005|\u0000\u0000\u03b8\u00ea\u0001\u0000\u0000\u0000\u03b9\u03ba\u0005"+
|
||||
"+\u0000\u0000\u03ba\u03bb\u0005+\u0000\u0000\u03bb\u00ec\u0001\u0000\u0000"+
|
||||
"\u0000\u03bc\u03bd\u0005-\u0000\u0000\u03bd\u03be\u0005-\u0000\u0000\u03be"+
|
||||
"\u00ee\u0001\u0000\u0000\u0000\u03bf\u03c0\u0005+\u0000\u0000\u03c0\u00f0"+
|
||||
"\u0001\u0000\u0000\u0000\u03c1\u03c2\u0005-\u0000\u0000\u03c2\u00f2\u0001"+
|
||||
"\u0000\u0000\u0000\u03c3\u03c4\u0005*\u0000\u0000\u03c4\u00f4\u0001\u0000"+
|
||||
"\u0000\u0000\u03c5\u03c6\u0005/\u0000\u0000\u03c6\u00f6\u0001\u0000\u0000"+
|
||||
"\u0000\u03c7\u03c8\u0005&\u0000\u0000\u03c8\u00f8\u0001\u0000\u0000\u0000"+
|
||||
"\u03c9\u03ca\u0005|\u0000\u0000\u03ca\u00fa\u0001\u0000\u0000\u0000\u03cb"+
|
||||
"\u03cc\u0005^\u0000\u0000\u03cc\u00fc\u0001\u0000\u0000\u0000\u03cd\u03ce"+
|
||||
"\u0005%\u0000\u0000\u03ce\u00fe\u0001\u0000\u0000\u0000\u03cf\u03d0\u0005"+
|
||||
"<\u0000\u0000\u03d0\u03d1\u0005<\u0000\u0000\u03d1\u0100\u0001\u0000\u0000"+
|
||||
"\u0000\u03d2\u03d3\u0005>\u0000\u0000\u03d3\u03d4\u0005>\u0000\u0000\u03d4"+
|
||||
"\u0102\u0001\u0000\u0000\u0000\u03d5\u03d6\u0005>\u0000\u0000\u03d6\u03d7"+
|
||||
"\u0005>\u0000\u0000\u03d7\u03d8\u0005>\u0000\u0000\u03d8\u0104\u0001\u0000"+
|
||||
"\u0000\u0000\u03d9\u03da\u0005+\u0000\u0000\u03da\u03db\u0005=\u0000\u0000"+
|
||||
"\u03db\u0106\u0001\u0000\u0000\u0000\u03dc\u03dd\u0005-\u0000\u0000\u03dd"+
|
||||
"\u03de\u0005=\u0000\u0000\u03de\u0108\u0001\u0000\u0000\u0000\u03df\u03e0"+
|
||||
"\u0005*\u0000\u0000\u03e0\u03e1\u0005=\u0000\u0000\u03e1\u010a\u0001\u0000"+
|
||||
"\u0000\u0000\u03e2\u03e3\u0005/\u0000\u0000\u03e3\u03e4\u0005=\u0000\u0000"+
|
||||
"\u03e4\u010c\u0001\u0000\u0000\u0000\u03e5\u03e6\u0005&\u0000\u0000\u03e6"+
|
||||
"\u03e7\u0005=\u0000\u0000\u03e7\u010e\u0001\u0000\u0000\u0000\u03e8\u03e9"+
|
||||
"\u0005|\u0000\u0000\u03e9\u03ea\u0005=\u0000\u0000\u03ea\u0110\u0001\u0000"+
|
||||
"\u0000\u0000\u03eb\u03ec\u0005^\u0000\u0000\u03ec\u03ed\u0005=\u0000\u0000"+
|
||||
"\u03ed\u0112\u0001\u0000\u0000\u0000\u03ee\u03ef\u0005%\u0000\u0000\u03ef"+
|
||||
"\u03f0\u0005=\u0000\u0000\u03f0\u0114\u0001\u0000\u0000\u0000\u03f1\u03f2"+
|
||||
"\u0005<\u0000\u0000\u03f2\u03f3\u0005<\u0000\u0000\u03f3\u03f4\u0005="+
|
||||
"\u0000\u0000\u03f4\u0116\u0001\u0000\u0000\u0000\u03f5\u03f6\u0005>\u0000"+
|
||||
"\u0000\u03f6\u03f7\u0005>\u0000\u0000\u03f7\u03f8\u0005=\u0000\u0000\u03f8"+
|
||||
"\u0118\u0001\u0000\u0000\u0000\u03f9\u03fa\u0005>\u0000\u0000\u03fa\u03fb"+
|
||||
"\u0005>\u0000\u0000\u03fb\u03fc\u0005>\u0000\u0000\u03fc\u03fd\u0005="+
|
||||
"\u0000\u0000\u03fd\u011a\u0001\u0000\u0000\u0000\u03fe\u03ff\u0003\u011d"+
|
||||
"\u008e\u0000\u03ff\u0400\u0003\u011f\u008f\u0000\u0400\u011c\u0001\u0000"+
|
||||
"\u0000\u0000\u0401\u0402\u0007\u000e\u0000\u0000\u0402\u011e\u0001\u0000"+
|
||||
"\u0000\u0000\u0403\u0406\u0003\u011d\u008e\u0000\u0404\u0406\u0007\u000f"+
|
||||
"\u0000\u0000\u0405\u0403\u0001\u0000\u0000\u0000\u0405\u0404\u0001\u0000"+
|
||||
"\u0000\u0000\u0406\u0120\u0001\u0000\u0000\u0000\'\u0000\u0123\u012f\u0136"+
|
||||
"\u013c\u0140\u014c\u0153\u015b\u015f\u0163\u0167\u02ba\u02be\u02c2\u02c6"+
|
||||
"\u02cd\u02cf\u02d7\u02dd\u02e4\u02e7\u02ea\u02ef\u02f2\u02f7\u02fb\u02ff"+
|
||||
"\u0307\u030e\u0312\u0322\u0328\u032f\u0333\u035f\u036c\u0380\u0405\u0000";
|
||||
public static final ATN _ATN =
|
||||
new ATNDeserializer().deserialize(_serializedATN.toCharArray());
|
||||
static {
|
||||
_decisionToDFA = new DFA[_ATN.getNumberOfDecisions()];
|
||||
for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) {
|
||||
_decisionToDFA[i] = new DFA(_ATN.getDecisionState(i), i);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,203 +0,0 @@
|
||||
UnicodeInputCharacter=1
|
||||
LineTerminator=2
|
||||
InputCharacter=3
|
||||
WhiteSpace=4
|
||||
Comment=5
|
||||
Abstract=6
|
||||
Assert=7
|
||||
Boolean=8
|
||||
Break=9
|
||||
Byte=10
|
||||
Case=11
|
||||
Catch=12
|
||||
Char=13
|
||||
Class=14
|
||||
Const=15
|
||||
Continue=16
|
||||
Default=17
|
||||
Do=18
|
||||
Double=19
|
||||
Else=20
|
||||
Extends=21
|
||||
Final=22
|
||||
Finally=23
|
||||
Float=24
|
||||
For=25
|
||||
Goto=26
|
||||
If=27
|
||||
Implements=28
|
||||
Import=29
|
||||
InstanceOf=30
|
||||
Int=31
|
||||
Interface=32
|
||||
Long=33
|
||||
Native=34
|
||||
New=35
|
||||
Package=36
|
||||
Private=37
|
||||
Protected=38
|
||||
Public=39
|
||||
Return=40
|
||||
Short=41
|
||||
Static=42
|
||||
Strictfp=43
|
||||
Super=44
|
||||
Switch=45
|
||||
Synchronized=46
|
||||
This=47
|
||||
Throw=48
|
||||
Throws=49
|
||||
Transient=50
|
||||
Try=51
|
||||
Void=52
|
||||
Volatile=53
|
||||
While=54
|
||||
IntigerLiteral=55
|
||||
FloatingPointLiteral=56
|
||||
CharacterLiteral=57
|
||||
StringLiteral=58
|
||||
BooleanLiteral=59
|
||||
NullLiteral=60
|
||||
ParanthesesLeft=61
|
||||
ParanthesesRight=62
|
||||
CurlyBracketLeft=63
|
||||
CurlyBracketRight=64
|
||||
SquareBracketLeft=65
|
||||
SquareBracketRight=66
|
||||
Semicolon=67
|
||||
Comma=68
|
||||
Dot=69
|
||||
Assignment=70
|
||||
GreterThan=71
|
||||
LessThan=72
|
||||
LogicalComplement=73
|
||||
BitwiseComplement=74
|
||||
Question=75
|
||||
Colon=76
|
||||
EqualTo=77
|
||||
LessThanEqualTo=78
|
||||
GreaterThanEqualTo=79
|
||||
NotEqualTO=80
|
||||
ConditionalAND=81
|
||||
ConditionalOR=82
|
||||
Increment=83
|
||||
Decrement=84
|
||||
Addition=85
|
||||
Subtaction=86
|
||||
Multiplication=87
|
||||
Division=88
|
||||
BitwiseAND=89
|
||||
BitwiseOR=90
|
||||
BitwiseXOR=91
|
||||
Remainder=92
|
||||
LeftShift=93
|
||||
SignedRightShift=94
|
||||
UnsignedRightShift=95
|
||||
AddAssign=96
|
||||
SubtractAssign=97
|
||||
MultiplyAssign=98
|
||||
DivideAssign=99
|
||||
BitwiseANDAssign=100
|
||||
BitwiseORAssign=101
|
||||
BitwiseXORAssign=102
|
||||
RemainderAssign=103
|
||||
LeftShiftAssign=104
|
||||
SighnedRightShiftAssign=105
|
||||
UnsighnedRightShiftAssign=106
|
||||
IDENTIFIER=107
|
||||
'abstract'=6
|
||||
'assert'=7
|
||||
'boolean'=8
|
||||
'break'=9
|
||||
'byte'=10
|
||||
'case'=11
|
||||
'catch'=12
|
||||
'char'=13
|
||||
'class'=14
|
||||
'const'=15
|
||||
'continue'=16
|
||||
'default'=17
|
||||
'do'=18
|
||||
'double'=19
|
||||
'else'=20
|
||||
'extends'=21
|
||||
'final'=22
|
||||
'finally'=23
|
||||
'float'=24
|
||||
'for'=25
|
||||
'goto'=26
|
||||
'if'=27
|
||||
'implements'=28
|
||||
'import'=29
|
||||
'instanceof'=30
|
||||
'int'=31
|
||||
'interface'=32
|
||||
'long'=33
|
||||
'native'=34
|
||||
'new'=35
|
||||
'package'=36
|
||||
'private'=37
|
||||
'protected'=38
|
||||
'public'=39
|
||||
'return'=40
|
||||
'short'=41
|
||||
'static'=42
|
||||
'strictfp'=43
|
||||
'super'=44
|
||||
'switch'=45
|
||||
'synchronized'=46
|
||||
'this'=47
|
||||
'throw'=48
|
||||
'throws'=49
|
||||
'transient'=50
|
||||
'try'=51
|
||||
'void'=52
|
||||
'volatile'=53
|
||||
'while'=54
|
||||
'null'=60
|
||||
'('=61
|
||||
')'=62
|
||||
'{'=63
|
||||
'}'=64
|
||||
'['=65
|
||||
']'=66
|
||||
';'=67
|
||||
','=68
|
||||
'.'=69
|
||||
'='=70
|
||||
'>'=71
|
||||
'<'=72
|
||||
'!'=73
|
||||
'~'=74
|
||||
'?'=75
|
||||
':'=76
|
||||
'=='=77
|
||||
'<='=78
|
||||
'>='=79
|
||||
'!='=80
|
||||
'&&'=81
|
||||
'||'=82
|
||||
'++'=83
|
||||
'--'=84
|
||||
'+'=85
|
||||
'-'=86
|
||||
'*'=87
|
||||
'/'=88
|
||||
'&'=89
|
||||
'|'=90
|
||||
'^'=91
|
||||
'%'=92
|
||||
'<<'=93
|
||||
'>>'=94
|
||||
'>>>'=95
|
||||
'+='=96
|
||||
'-='=97
|
||||
'*='=98
|
||||
'/='=99
|
||||
'&='=100
|
||||
'|='=101
|
||||
'^='=102
|
||||
'%='=103
|
||||
'<<='=104
|
||||
'>>='=105
|
||||
'>>>='=106
|
||||
@@ -1,44 +0,0 @@
|
||||
parser grammar syntactic;
|
||||
|
||||
options {
|
||||
tokenVocab=ExprLexer;
|
||||
}
|
||||
|
||||
identifier: IDENTIFIER;
|
||||
|
||||
qualifiedIdentifier: identifier {'.' identifier};
|
||||
|
||||
literal: IntegerLiteral
|
||||
| FloatingPointLiteral
|
||||
| CharacterLiteral
|
||||
| StringLiteral
|
||||
| BooleanLiteral
|
||||
| NullLiteral;
|
||||
|
||||
expression: expression1 [assignmentOperator expression1];
|
||||
|
||||
assignmentOperator: Assignment
|
||||
| AddAssign
|
||||
| SubtractAssign
|
||||
| MultiplyAssign
|
||||
| DivideAssign
|
||||
| BitwiseANDAssign
|
||||
| BitwiseORAssign
|
||||
| BitwiseXORAssign
|
||||
| RemainderAssign
|
||||
| LeftShiftAssign
|
||||
| SighnedRightShiftAssign
|
||||
| UnsighnedRightShiftAssign;
|
||||
|
||||
type: identifier {'.' identifier} bracketsOpt
|
||||
| basicType;
|
||||
|
||||
statementExpression: expression;
|
||||
|
||||
constantExpression: expression;
|
||||
|
||||
expression1: expression2 [expression1Rest];
|
||||
|
||||
expression1Rest: ['?' expression ':' expression1];
|
||||
|
||||
expression2: expression3 [expression2Rest];
|
||||
Reference in New Issue
Block a user