diff --git a/compiler/antlr/prog8.g4 b/compiler/antlr/prog8.g4 index 6e47cfbd8..9c7a9957a 100644 --- a/compiler/antlr/prog8.g4 +++ b/compiler/antlr/prog8.g4 @@ -112,7 +112,7 @@ assignment : assign_targets '=' expression ; assign_targets : assign_target (',' assign_target)* ; augassignment : - assign_target operator=('+=' | '-=' | '/=' | '//=' | '*=' | '**=' | '&=' | '|=' | '^=' | '%=' | '<<=' | '>>=' ) expression + assign_target operator=('+=' | '-=' | '/=' | '*=' | '**=' | '&=' | '|=' | '^=' | '%=' | '<<=' | '>>=' ) expression ; assign_target: @@ -128,7 +128,7 @@ expression : functioncall | prefix = ('+'|'-'|'~') expression | left = expression bop = '**' right = expression - | left = expression bop = ('*' | '/' | '//' | '%' ) right = expression + | left = expression bop = ('*' | '/' | '%' ) right = expression | left = expression bop = ('+' | '-' ) right = expression | left = expression bop = ('<<' | '>>' ) right = expression | left = expression bop = ('<' | '>' | '<=' | '>=') right = expression diff --git a/compiler/prog8lib/c64flt.p8 b/compiler/prog8lib/c64flt.p8 index 958688ac6..0f9e9666f 100644 --- a/compiler/prog8lib/c64flt.p8 +++ b/compiler/prog8lib/c64flt.p8 @@ -519,17 +519,6 @@ push_fac1_as_result .proc .pend -floordiv_f .proc - ; -- push f1//f2 on stack - jsr pop_2_floats_f2_in_fac1 - stx c64.SCRATCH_ZPREGX - lda #fmath_float1 - jsr c64flt.FDIV - jsr c64flt.INT - jmp push_fac1_as_result - .pend - div_f .proc ; -- push f1/f2 on stack jsr pop_2_floats_f2_in_fac1 diff --git a/compiler/src/prog8/ast/AST.kt b/compiler/src/prog8/ast/AST.kt index 9251ebe98..6fd5521af 100644 --- a/compiler/src/prog8/ast/AST.kt +++ b/compiler/src/prog8/ast/AST.kt @@ -861,7 +861,7 @@ class BinaryExpression(var left: IExpression, var operator: String, var right: I null } } - "//" -> if(leftDt==null || rightDt==null) null else integerDivisionOpDt(leftDt, rightDt) + "/" -> if(leftDt==null || rightDt==null) null else divisionOpDt(leftDt, rightDt) "&" -> leftDt "|" -> leftDt "^" -> leftDt @@ -870,73 +870,77 @@ class BinaryExpression(var left: IExpression, var operator: String, var right: I "<=", ">=", "==", "!=" -> DataType.UBYTE "<<", ">>" -> leftDt - "/" -> DataType.FLOAT // use integer division '//' if you don't want floats else -> throw FatalAstException("resulting datatype check for invalid operator $operator") } } - private fun integerDivisionOpDt(leftDt: DataType, rightDt: DataType): DataType { - return when(leftDt) { - DataType.UBYTE -> when(rightDt) { - DataType.UBYTE, DataType.UWORD -> DataType.UBYTE - DataType.BYTE, DataType.WORD, DataType.FLOAT -> DataType.BYTE + companion object { + fun divisionOpDt(leftDt: DataType, rightDt: DataType): DataType { + return when(leftDt) { + DataType.UBYTE -> when(rightDt) { + DataType.UBYTE, DataType.UWORD -> DataType.UBYTE + DataType.BYTE, DataType.WORD -> DataType.WORD + DataType.FLOAT -> DataType.BYTE + else -> throw FatalAstException("arithmetic operation on incompatible datatypes: $leftDt and $rightDt") + } + DataType.BYTE -> when(rightDt) { + in NumericDatatypes -> DataType.BYTE + else -> throw FatalAstException("arithmetic operation on incompatible datatypes: $leftDt and $rightDt") + } + DataType.UWORD -> when(rightDt) { + DataType.UBYTE, DataType.UWORD -> DataType.UWORD + DataType.BYTE, DataType.WORD -> DataType.WORD + DataType.FLOAT -> DataType.FLOAT + else -> throw FatalAstException("arithmetic operation on incompatible datatypes: $leftDt and $rightDt") + } + DataType.WORD -> when(rightDt) { + in NumericDatatypes -> DataType.WORD + else -> throw FatalAstException("arithmetic operation on incompatible datatypes: $leftDt and $rightDt") + } + DataType.FLOAT -> when(rightDt) { + in NumericDatatypes -> DataType.FLOAT + else -> throw FatalAstException("arithmetic operation on incompatible datatypes: $leftDt and $rightDt") + } else -> throw FatalAstException("arithmetic operation on incompatible datatypes: $leftDt and $rightDt") } - DataType.BYTE -> when(rightDt) { - in NumericDatatypes -> DataType.BYTE + } + + fun arithmeticOpDt(leftDt: DataType, rightDt: DataType): DataType { + return when(leftDt) { + DataType.UBYTE -> when(rightDt) { + DataType.UBYTE -> DataType.UBYTE + DataType.BYTE -> DataType.BYTE + DataType.UWORD -> DataType.UWORD + DataType.WORD -> DataType.WORD + DataType.FLOAT -> DataType.FLOAT + else -> throw FatalAstException("arithmetic operation on incompatible datatypes: $leftDt and $rightDt") + } + DataType.BYTE -> when(rightDt) { + DataType.BYTE, DataType.UBYTE -> DataType.BYTE + DataType.WORD, DataType.UWORD -> DataType.WORD + DataType.FLOAT -> DataType.FLOAT + else -> throw FatalAstException("arithmetic operation on incompatible datatypes: $leftDt and $rightDt") + } + DataType.UWORD -> when(rightDt) { + DataType.UBYTE, DataType.UWORD -> DataType.UWORD + DataType.BYTE, DataType.WORD -> DataType.WORD + DataType.FLOAT -> DataType.FLOAT + else -> throw FatalAstException("arithmetic operation on incompatible datatypes: $leftDt and $rightDt") + } + DataType.WORD -> when(rightDt) { + DataType.BYTE, DataType.UBYTE, DataType.WORD, DataType.UWORD -> DataType.WORD + DataType.FLOAT -> DataType.FLOAT + else -> throw FatalAstException("arithmetic operation on incompatible datatypes: $leftDt and $rightDt") + } + DataType.FLOAT -> when(rightDt) { + in NumericDatatypes -> DataType.FLOAT + else -> throw FatalAstException("arithmetic operation on incompatible datatypes: $leftDt and $rightDt") + } else -> throw FatalAstException("arithmetic operation on incompatible datatypes: $leftDt and $rightDt") } - DataType.UWORD -> when(rightDt) { - DataType.UBYTE, DataType.UWORD -> DataType.UWORD - DataType.BYTE, DataType.WORD, DataType.FLOAT -> DataType.WORD - else -> throw FatalAstException("arithmetic operation on incompatible datatypes: $leftDt and $rightDt") - } - DataType.WORD -> when(rightDt) { - in NumericDatatypes -> DataType.WORD - else -> throw FatalAstException("arithmetic operation on incompatible datatypes: $leftDt and $rightDt") - } - DataType.FLOAT -> when(rightDt) { - in NumericDatatypes -> DataType.FLOAT - else -> throw FatalAstException("arithmetic operation on incompatible datatypes: $leftDt and $rightDt") - } - else -> throw FatalAstException("arithmetic operation on incompatible datatypes: $leftDt and $rightDt") } } - private fun arithmeticOpDt(leftDt: DataType, rightDt: DataType): DataType { - return when(leftDt) { - DataType.UBYTE -> when(rightDt) { - DataType.UBYTE -> DataType.UBYTE - DataType.BYTE -> DataType.BYTE - DataType.UWORD -> DataType.UWORD - DataType.WORD -> DataType.WORD - DataType.FLOAT -> DataType.FLOAT - else -> throw FatalAstException("arithmetic operation on incompatible datatypes: $leftDt and $rightDt") - } - DataType.BYTE -> when(rightDt) { - DataType.BYTE, DataType.UBYTE -> DataType.BYTE - DataType.WORD, DataType.UWORD -> DataType.WORD - DataType.FLOAT -> DataType.FLOAT - else -> throw FatalAstException("arithmetic operation on incompatible datatypes: $leftDt and $rightDt") - } - DataType.UWORD -> when(rightDt) { - DataType.UBYTE, DataType.UWORD -> DataType.UWORD - DataType.BYTE, DataType.WORD -> DataType.WORD - DataType.FLOAT -> DataType.FLOAT - else -> throw FatalAstException("arithmetic operation on incompatible datatypes: $leftDt and $rightDt") - } - DataType.WORD -> when(rightDt) { - DataType.BYTE, DataType.UBYTE, DataType.WORD, DataType.UWORD -> DataType.WORD - DataType.FLOAT -> DataType.FLOAT - else -> throw FatalAstException("arithmetic operation on incompatible datatypes: $leftDt and $rightDt") - } - DataType.FLOAT -> when(rightDt) { - in NumericDatatypes -> DataType.FLOAT - else -> throw FatalAstException("arithmetic operation on incompatible datatypes: $leftDt and $rightDt") - } - else -> throw FatalAstException("arithmetic operation on incompatible datatypes: $leftDt and $rightDt") - } - } } class ArrayIndexedExpression(val identifier: IdentifierReference, diff --git a/compiler/src/prog8/ast/AstChecker.kt b/compiler/src/prog8/ast/AstChecker.kt index 2fbdc9284..a8432ef06 100644 --- a/compiler/src/prog8/ast/AstChecker.kt +++ b/compiler/src/prog8/ast/AstChecker.kt @@ -689,7 +689,7 @@ class AstChecker(private val namespace: INameScope, override fun process(expr: BinaryExpression): IExpression { when(expr.operator){ - "/", "//", "%" -> { + "/", "%" -> { val constvalRight = expr.right.constValue(namespace, heap) val divisor = constvalRight?.asNumericValue?.toDouble() if(divisor==0.0) diff --git a/compiler/src/prog8/compiler/Compiler.kt b/compiler/src/prog8/compiler/Compiler.kt index 405210a23..b5f2a708d 100644 --- a/compiler/src/prog8/compiler/Compiler.kt +++ b/compiler/src/prog8/compiler/Compiler.kt @@ -591,7 +591,7 @@ private class StatementTranslator(private val prog: IntermediateProgram, val rightDt = expr.right.resultingDatatype(namespace, heap)!! val commonDt = if(expr.operator=="/") - DataType.FLOAT // result of division is always float + BinaryExpression.divisionOpDt(leftDt, rightDt) else commonDatatype(leftDt, rightDt, expr.left.position, expr.right.position) translate(expr.left) @@ -1099,16 +1099,12 @@ private class StatementTranslator(private val prog: IntermediateProgram, } } "/" -> { - if(dt!=DataType.FLOAT) throw CompilerException("normal division only possible between floats") - else Opcode.DIV_F - } - "//" -> { when(dt) { DataType.UBYTE -> Opcode.IDIV_UB DataType.BYTE -> Opcode.IDIV_B DataType.UWORD -> Opcode.IDIV_UW DataType.WORD -> Opcode.IDIV_W - DataType.FLOAT -> Opcode.FLOORDIV + DataType.FLOAT -> Opcode.DIV_F else -> throw CompilerException("only byte/word/float possible") } } @@ -1639,14 +1635,13 @@ private class StatementTranslator(private val prog: IntermediateProgram, else -> throw CompilerException("only byte/word/lfoat possible") } } - "/=" -> TODO("/=") - "//=" -> { + "/=" -> { when (valueDt) { DataType.UBYTE -> Opcode.IDIV_UB DataType.BYTE -> Opcode.IDIV_B DataType.UWORD -> Opcode.IDIV_UW DataType.WORD -> Opcode.IDIV_W - DataType.FLOAT -> Opcode.FLOORDIV + DataType.FLOAT -> Opcode.DIV_F else -> throw CompilerException("only byte/word/lfoat possible") } } diff --git a/compiler/src/prog8/compiler/intermediate/Opcode.kt b/compiler/src/prog8/compiler/intermediate/Opcode.kt index fd85b836e..ffd6491a1 100644 --- a/compiler/src/prog8/compiler/intermediate/Opcode.kt +++ b/compiler/src/prog8/compiler/intermediate/Opcode.kt @@ -58,7 +58,6 @@ enum class Opcode { IDIV_UW, IDIV_W, DIV_F, - FLOORDIV, // integer division but on floatint point argument(s) REMAINDER_UB, // signed remainder is undefined/unimplemented REMAINDER_UW, // signed remainder is undefined/unimplemented POW_UB, diff --git a/compiler/src/prog8/compiler/intermediate/Value.kt b/compiler/src/prog8/compiler/intermediate/Value.kt index bc3e0b618..93d0f7417 100644 --- a/compiler/src/prog8/compiler/intermediate/Value.kt +++ b/compiler/src/prog8/compiler/intermediate/Value.kt @@ -200,23 +200,6 @@ class Value(val type: DataType, numericvalueOrHeapId: Number) { } } - fun floordiv(other: Value): Value { - if(other.type == DataType.FLOAT && (type!= DataType.FLOAT)) - throw ValueException("floating point loss of precision on type $type") - val v1 = numericValue() - val v2 = other.numericValue() - val result = floor(v1.toDouble() / v2.toDouble()) - // NOTE: integer division returns integer result! - return when(type) { - DataType.BYTE -> Value(DataType.BYTE, result) - DataType.UBYTE -> Value(DataType.UBYTE, result) - DataType.WORD -> Value(DataType.WORD, result) - DataType.UWORD -> Value(DataType.UWORD, result) - DataType.FLOAT -> Value(DataType.FLOAT, result) - else -> throw ValueException("div on non-numeric type") - } - } - fun remainder(other: Value): Value? { val v1 = numericValue() val v2 = other.numericValue() diff --git a/compiler/src/prog8/compiler/target/c64/AsmGen.kt b/compiler/src/prog8/compiler/target/c64/AsmGen.kt index c28b21e42..763b09a19 100644 --- a/compiler/src/prog8/compiler/target/c64/AsmGen.kt +++ b/compiler/src/prog8/compiler/target/c64/AsmGen.kt @@ -811,7 +811,6 @@ class AsmGen(val options: CompilationOptions, val program: IntermediateProgram, Opcode.SUB_F -> " jsr c64flt.sub_f" Opcode.MUL_F -> " jsr c64flt.mul_f" Opcode.DIV_F -> " jsr c64flt.div_f" - Opcode.FLOORDIV -> " jsr c64flt.floordiv_f" Opcode.IDIV_UB -> " jsr prog8_lib.idiv_ub" Opcode.IDIV_B -> " jsr prog8_lib.idiv_b" Opcode.IDIV_W -> " jsr prog8_lib.idiv_w" diff --git a/compiler/src/prog8/optimizing/ConstExprEvaluator.kt b/compiler/src/prog8/optimizing/ConstExprEvaluator.kt index 78205c612..c3f8d9224 100644 --- a/compiler/src/prog8/optimizing/ConstExprEvaluator.kt +++ b/compiler/src/prog8/optimizing/ConstExprEvaluator.kt @@ -16,7 +16,6 @@ class ConstExprEvaluator { "-" -> minus(left, right) "*" -> multiply(left, right, heap) "/" -> divide(left, right) - "//" -> floordivide(left, right) "%" -> remainder(left, right) "**" -> power(left, right) "&" -> bitwiseand(left, right) @@ -234,7 +233,7 @@ class ConstExprEvaluator { left.asIntegerValue!=null -> when { right.asIntegerValue!=null -> { if(right.asIntegerValue==0) divideByZeroError(right.position) - val result = left.asIntegerValue.toDouble() / right.asIntegerValue.toDouble() + val result: Int = left.asIntegerValue / right.asIntegerValue LiteralValue.optimalNumeric(result, left.position) } right.floatvalue!=null -> { @@ -258,35 +257,6 @@ class ConstExprEvaluator { } } - private fun floordivide(left: LiteralValue, right: LiteralValue): LiteralValue { - val error = "cannot floordivide $left by $right" - return when { - left.asIntegerValue!=null -> when { - right.asIntegerValue!=null -> { - if(right.asIntegerValue==0) divideByZeroError(right.position) - LiteralValue.optimalInteger(left.asIntegerValue / right.asIntegerValue, left.position) - } - right.floatvalue!=null -> { - if(right.floatvalue==0.0) divideByZeroError(right.position) - LiteralValue.optimalInteger(left.asIntegerValue / right.floatvalue, left.position) - } - else -> throw ExpressionError(error, left.position) - } - left.floatvalue!=null -> when { - right.asIntegerValue!=null -> { - if(right.asIntegerValue==0) divideByZeroError(right.position) - LiteralValue.optimalInteger(left.floatvalue / right.asIntegerValue, left.position) - } - right.floatvalue!=null -> { - if(right.floatvalue==0.0) divideByZeroError(right.position) - LiteralValue.optimalInteger(left.floatvalue / right.floatvalue, left.position) - } - else -> throw ExpressionError(error, left.position) - } - else -> throw ExpressionError(error, left.position) - } - } - private fun remainder(left: LiteralValue, right: LiteralValue): LiteralValue { val error = "cannot compute remainder of $left by $right" return when { diff --git a/compiler/src/prog8/optimizing/SimplifyExpressions.kt b/compiler/src/prog8/optimizing/SimplifyExpressions.kt index 05d7d7944..417c00f0f 100644 --- a/compiler/src/prog8/optimizing/SimplifyExpressions.kt +++ b/compiler/src/prog8/optimizing/SimplifyExpressions.kt @@ -132,7 +132,7 @@ class SimplifyExpressions(private val namespace: INameScope, private val heap: H } } "*" -> return optimizeMultiplication(expr, leftVal, rightVal) - "/", "//" -> return optimizeDivision(expr, leftVal, rightVal) + "/" -> return optimizeDivision(expr, leftVal, rightVal) "+" -> return optimizeAdd(expr, leftVal, rightVal) "-" -> return optimizeSub(expr, leftVal, rightVal) "**" -> return optimizePower(expr, leftVal, rightVal) @@ -378,31 +378,17 @@ class SimplifyExpressions(private val namespace: INameScope, private val heap: H val leftDt = expr.left.resultingDatatype(namespace, heap) when(cv) { -1.0 -> { - // '/' -> -left, '//' -> -ceil(left) (if operand is float) else just -left - optimizationsDone++ - when(expr.operator) { - "/" -> return PrefixExpression("-", expr.left, expr.position) - "//" -> { - return if(leftDt in IntegerDatatypes) - PrefixExpression("-", expr.left, expr.left.position) - else - PrefixExpression("-", - FunctionCall(IdentifierReference(listOf("ceil"), expr.position), mutableListOf(expr.left), expr.position), - expr.position) - } + // '/' -> -left + if (expr.operator == "/") { + optimizationsDone++ + return PrefixExpression("-", expr.left, expr.position) } } 1.0 -> { - // '/' -> left, '//' -> floor(left) (if operand is float) else just left - optimizationsDone++ - when(expr.operator) { - "/" -> return expr.left - "//" -> { - return if(leftDt in IntegerDatatypes) - expr.left - else - FunctionCall(IdentifierReference(listOf("floor"), expr.position), mutableListOf(expr.left), expr.position) - } + // '/' -> left + if (expr.operator == "/") { + optimizationsDone++ + return expr.left } } 2.0, 4.0, 8.0, 16.0, 32.0, 64.0, 128.0, 256.0, 512.0, 1024.0, 2048.0, 4096.0, 8192.0, 16384.0, 32768.0, 65536.0 -> { diff --git a/compiler/src/prog8/optimizing/StatementOptimizer.kt b/compiler/src/prog8/optimizing/StatementOptimizer.kt index 664f409a7..7ab858e21 100644 --- a/compiler/src/prog8/optimizing/StatementOptimizer.kt +++ b/compiler/src/prog8/optimizing/StatementOptimizer.kt @@ -219,10 +219,6 @@ class StatementOptimizer(private val namespace: INameScope, private val heap: He optimizationsDone++ return NopStatement(assignment.position) } - "//" -> if (cv==1.0) { - optimizationsDone++ - return NopStatement(assignment.position) - } "**" -> if (cv==1.0) { optimizationsDone++ return NopStatement(assignment.position) diff --git a/compiler/src/prog8/parser/prog8Lexer.java b/compiler/src/prog8/parser/prog8Lexer.java index 05bfeae8c..7ddd722f7 100644 --- a/compiler/src/prog8/parser/prog8Lexer.java +++ b/compiler/src/prog8/parser/prog8Lexer.java @@ -32,10 +32,9 @@ public class prog8Lexer extends Lexer { T__87=88, T__88=89, T__89=90, T__90=91, T__91=92, T__92=93, T__93=94, T__94=95, T__95=96, T__96=97, T__97=98, T__98=99, T__99=100, T__100=101, T__101=102, T__102=103, T__103=104, T__104=105, T__105=106, T__106=107, - T__107=108, T__108=109, T__109=110, T__110=111, T__111=112, T__112=113, - T__113=114, LINECOMMENT=115, COMMENT=116, WS=117, EOL=118, NAME=119, DEC_INTEGER=120, - HEX_INTEGER=121, BIN_INTEGER=122, FLOAT_NUMBER=123, STRING=124, INLINEASMBLOCK=125, - SINGLECHAR=126; + T__107=108, T__108=109, T__109=110, T__110=111, T__111=112, LINECOMMENT=113, + COMMENT=114, WS=115, EOL=116, NAME=117, DEC_INTEGER=118, HEX_INTEGER=119, + BIN_INTEGER=120, FLOAT_NUMBER=121, STRING=122, INLINEASMBLOCK=123, SINGLECHAR=124; public static String[] channelNames = { "DEFAULT_TOKEN_CHANNEL", "HIDDEN" }; @@ -60,9 +59,9 @@ public class prog8Lexer extends Lexer { "T__89", "T__90", "T__91", "T__92", "T__93", "T__94", "T__95", "T__96", "T__97", "T__98", "T__99", "T__100", "T__101", "T__102", "T__103", "T__104", "T__105", "T__106", "T__107", "T__108", "T__109", "T__110", "T__111", - "T__112", "T__113", "LINECOMMENT", "COMMENT", "WS", "EOL", "NAME", "DEC_INTEGER", - "HEX_INTEGER", "BIN_INTEGER", "FLOAT_NUMBER", "FNUMBER", "STRING_ESCAPE_SEQ", - "STRING", "INLINEASMBLOCK", "SINGLECHAR" + "LINECOMMENT", "COMMENT", "WS", "EOL", "NAME", "DEC_INTEGER", "HEX_INTEGER", + "BIN_INTEGER", "FLOAT_NUMBER", "FNUMBER", "STRING_ESCAPE_SEQ", "STRING", + "INLINEASMBLOCK", "SINGLECHAR" }; } public static final String[] ruleNames = makeRuleNames(); @@ -73,17 +72,17 @@ public class prog8Lexer extends Lexer { "'%zpreserved'", "'%address'", "'%import'", "'%breakpoint'", "'%asminclude'", "'%asmbinary'", "'%option'", "','", "'='", "'const'", "'memory'", "'ubyte'", "'byte'", "'uword'", "'word'", "'float'", "'str'", "'str_p'", "'str_s'", - "'str_ps'", "'['", "']'", "'+='", "'-='", "'/='", "'//='", "'*='", "'**='", - "'&='", "'|='", "'^='", "'%='", "'<<='", "'>>='", "'++'", "'--'", "'+'", - "'-'", "'**'", "'*'", "'/'", "'//'", "'%'", "'<<'", "'>>'", "'<'", "'>'", - "'<='", "'>='", "'=='", "'!='", "'&'", "'^'", "'|'", "'to'", "'step'", - "'and'", "'or'", "'xor'", "'not'", "'('", "')'", "'as'", "'@'", "'return'", - "'break'", "'continue'", "'.'", "'A'", "'X'", "'Y'", "'AX'", "'AY'", - "'XY'", "'Pc'", "'Pz'", "'Pn'", "'Pv'", "'.w'", "'true'", "'false'", - "'%asm'", "'sub'", "'->'", "'{'", "'}'", "'asmsub'", "'clobbers'", "'stack'", - "'if'", "'else'", "'if_cs'", "'if_cc'", "'if_eq'", "'if_z'", "'if_ne'", - "'if_nz'", "'if_pl'", "'if_pos'", "'if_mi'", "'if_neg'", "'if_vs'", "'if_vc'", - "'for'", "'in'", "'while'", "'repeat'", "'until'" + "'str_ps'", "'['", "']'", "'+='", "'-='", "'/='", "'*='", "'**='", "'&='", + "'|='", "'^='", "'%='", "'<<='", "'>>='", "'++'", "'--'", "'+'", "'-'", + "'**'", "'*'", "'/'", "'%'", "'<<'", "'>>'", "'<'", "'>'", "'<='", "'>='", + "'=='", "'!='", "'&'", "'^'", "'|'", "'to'", "'step'", "'and'", "'or'", + "'xor'", "'not'", "'('", "')'", "'as'", "'@'", "'return'", "'break'", + "'continue'", "'.'", "'A'", "'X'", "'Y'", "'AX'", "'AY'", "'XY'", "'Pc'", + "'Pz'", "'Pn'", "'Pv'", "'.w'", "'true'", "'false'", "'%asm'", "'sub'", + "'->'", "'{'", "'}'", "'asmsub'", "'clobbers'", "'stack'", "'if'", "'else'", + "'if_cs'", "'if_cc'", "'if_eq'", "'if_z'", "'if_ne'", "'if_nz'", "'if_pl'", + "'if_pos'", "'if_mi'", "'if_neg'", "'if_vs'", "'if_vc'", "'for'", "'in'", + "'while'", "'repeat'", "'until'" }; } private static final String[] _LITERAL_NAMES = makeLiteralNames(); @@ -98,8 +97,8 @@ public class prog8Lexer extends Lexer { null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, - null, null, null, null, null, null, null, "LINECOMMENT", "COMMENT", "WS", - "EOL", "NAME", "DEC_INTEGER", "HEX_INTEGER", "BIN_INTEGER", "FLOAT_NUMBER", + null, null, null, null, null, "LINECOMMENT", "COMMENT", "WS", "EOL", + "NAME", "DEC_INTEGER", "HEX_INTEGER", "BIN_INTEGER", "FLOAT_NUMBER", "STRING", "INLINEASMBLOCK", "SINGLECHAR" }; } @@ -164,13 +163,13 @@ public class prog8Lexer extends Lexer { @Override public void action(RuleContext _localctx, int ruleIndex, int actionIndex) { switch (ruleIndex) { - case 125: + case 123: STRING_action((RuleContext)_localctx, actionIndex); break; - case 126: + case 124: INLINEASMBLOCK_action((RuleContext)_localctx, actionIndex); break; - case 127: + case 125: SINGLECHAR_action((RuleContext)_localctx, actionIndex); break; } @@ -210,303 +209,297 @@ public class prog8Lexer extends Lexer { } public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\u0080\u0378\b\1\4"+ - "\2\t\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n"+ - "\4\13\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22"+ - "\t\22\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31"+ - "\t\31\4\32\t\32\4\33\t\33\4\34\t\34\4\35\t\35\4\36\t\36\4\37\t\37\4 \t"+ - " \4!\t!\4\"\t\"\4#\t#\4$\t$\4%\t%\4&\t&\4\'\t\'\4(\t(\4)\t)\4*\t*\4+\t"+ - "+\4,\t,\4-\t-\4.\t.\4/\t/\4\60\t\60\4\61\t\61\4\62\t\62\4\63\t\63\4\64"+ - "\t\64\4\65\t\65\4\66\t\66\4\67\t\67\48\t8\49\t9\4:\t:\4;\t;\4<\t<\4=\t"+ - "=\4>\t>\4?\t?\4@\t@\4A\tA\4B\tB\4C\tC\4D\tD\4E\tE\4F\tF\4G\tG\4H\tH\4"+ - "I\tI\4J\tJ\4K\tK\4L\tL\4M\tM\4N\tN\4O\tO\4P\tP\4Q\tQ\4R\tR\4S\tS\4T\t"+ - "T\4U\tU\4V\tV\4W\tW\4X\tX\4Y\tY\4Z\tZ\4[\t[\4\\\t\\\4]\t]\4^\t^\4_\t_"+ - "\4`\t`\4a\ta\4b\tb\4c\tc\4d\td\4e\te\4f\tf\4g\tg\4h\th\4i\ti\4j\tj\4k"+ - "\tk\4l\tl\4m\tm\4n\tn\4o\to\4p\tp\4q\tq\4r\tr\4s\ts\4t\tt\4u\tu\4v\tv"+ - "\4w\tw\4x\tx\4y\ty\4z\tz\4{\t{\4|\t|\4}\t}\4~\t~\4\177\t\177\4\u0080\t"+ - "\u0080\4\u0081\t\u0081\3\2\3\2\3\3\3\3\3\4\3\4\3\4\3\4\3\4\3\5\3\5\3\5"+ - "\3\5\3\5\3\5\3\5\3\5\3\6\3\6\3\6\3\6\3\6\3\6\3\6\3\6\3\6\3\6\3\7\3\7\3"+ - "\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\b\3\b\3\b\3\b\3\b\3\b\3\b\3\b\3\b\3\b"+ - "\3\b\3\b\3\t\3\t\3\t\3\t\3\t\3\t\3\t\3\t\3\t\3\n\3\n\3\n\3\n\3\n\3\n\3"+ - "\n\3\n\3\13\3\13\3\13\3\13\3\13\3\13\3\13\3\13\3\13\3\13\3\13\3\13\3\f"+ - "\3\f\3\f\3\f\3\f\3\f\3\f\3\f\3\f\3\f\3\f\3\f\3\r\3\r\3\r\3\r\3\r\3\r\3"+ - "\r\3\r\3\r\3\r\3\r\3\16\3\16\3\16\3\16\3\16\3\16\3\16\3\16\3\17\3\17\3"+ - "\20\3\20\3\21\3\21\3\21\3\21\3\21\3\21\3\22\3\22\3\22\3\22\3\22\3\22\3"+ - "\22\3\23\3\23\3\23\3\23\3\23\3\23\3\24\3\24\3\24\3\24\3\24\3\25\3\25\3"+ - "\25\3\25\3\25\3\25\3\26\3\26\3\26\3\26\3\26\3\27\3\27\3\27\3\27\3\27\3"+ - "\27\3\30\3\30\3\30\3\30\3\31\3\31\3\31\3\31\3\31\3\31\3\32\3\32\3\32\3"+ - "\32\3\32\3\32\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\34\3\34\3\35\3\35\3"+ - "\36\3\36\3\36\3\37\3\37\3\37\3 \3 \3 \3!\3!\3!\3!\3\"\3\"\3\"\3#\3#\3"+ - "#\3#\3$\3$\3$\3%\3%\3%\3&\3&\3&\3\'\3\'\3\'\3(\3(\3(\3(\3)\3)\3)\3)\3"+ - "*\3*\3*\3+\3+\3+\3,\3,\3-\3-\3.\3.\3.\3/\3/\3\60\3\60\3\61\3\61\3\61\3"+ - "\62\3\62\3\63\3\63\3\63\3\64\3\64\3\64\3\65\3\65\3\66\3\66\3\67\3\67\3"+ - "\67\38\38\38\39\39\39\3:\3:\3:\3;\3;\3<\3<\3=\3=\3>\3>\3>\3?\3?\3?\3?"+ - "\3?\3@\3@\3@\3@\3A\3A\3A\3B\3B\3B\3B\3C\3C\3C\3C\3D\3D\3E\3E\3F\3F\3F"+ - "\3G\3G\3H\3H\3H\3H\3H\3H\3H\3I\3I\3I\3I\3I\3I\3J\3J\3J\3J\3J\3J\3J\3J"+ - "\3J\3K\3K\3L\3L\3M\3M\3N\3N\3O\3O\3O\3P\3P\3P\3Q\3Q\3Q\3R\3R\3R\3S\3S"+ - "\3S\3T\3T\3T\3U\3U\3U\3V\3V\3V\3W\3W\3W\3W\3W\3X\3X\3X\3X\3X\3X\3Y\3Y"+ - "\3Y\3Y\3Y\3Z\3Z\3Z\3Z\3[\3[\3[\3\\\3\\\3]\3]\3^\3^\3^\3^\3^\3^\3^\3_\3"+ - "_\3_\3_\3_\3_\3_\3_\3_\3`\3`\3`\3`\3`\3`\3a\3a\3a\3b\3b\3b\3b\3b\3c\3"+ - "c\3c\3c\3c\3c\3d\3d\3d\3d\3d\3d\3e\3e\3e\3e\3e\3e\3f\3f\3f\3f\3f\3g\3"+ - "g\3g\3g\3g\3g\3h\3h\3h\3h\3h\3h\3i\3i\3i\3i\3i\3i\3j\3j\3j\3j\3j\3j\3"+ - "j\3k\3k\3k\3k\3k\3k\3l\3l\3l\3l\3l\3l\3l\3m\3m\3m\3m\3m\3m\3n\3n\3n\3"+ - "n\3n\3n\3o\3o\3o\3o\3p\3p\3p\3q\3q\3q\3q\3q\3q\3r\3r\3r\3r\3r\3r\3r\3"+ - "s\3s\3s\3s\3s\3s\3t\3t\7t\u0307\nt\ft\16t\u030a\13t\3t\3t\3t\3t\3u\3u"+ - "\7u\u0312\nu\fu\16u\u0315\13u\3u\3u\3v\3v\3v\3v\3w\6w\u031e\nw\rw\16w"+ - "\u031f\3x\3x\7x\u0324\nx\fx\16x\u0327\13x\3y\3y\3y\6y\u032c\ny\ry\16y"+ - "\u032d\5y\u0330\ny\3z\3z\6z\u0334\nz\rz\16z\u0335\3{\3{\6{\u033a\n{\r"+ - "{\16{\u033b\3|\3|\3|\5|\u0341\n|\3|\5|\u0344\n|\3}\6}\u0347\n}\r}\16}"+ - "\u0348\3}\3}\6}\u034d\n}\r}\16}\u034e\5}\u0351\n}\3~\3~\3~\3~\5~\u0357"+ - "\n~\3\177\3\177\3\177\7\177\u035c\n\177\f\177\16\177\u035f\13\177\3\177"+ - "\3\177\3\177\3\u0080\3\u0080\3\u0080\3\u0080\6\u0080\u0368\n\u0080\r\u0080"+ - "\16\u0080\u0369\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0081\3\u0081"+ - "\3\u0081\5\u0081\u0374\n\u0081\3\u0081\3\u0081\3\u0081\3\u0369\2\u0082"+ - "\3\3\5\4\7\5\t\6\13\7\r\b\17\t\21\n\23\13\25\f\27\r\31\16\33\17\35\20"+ - "\37\21!\22#\23%\24\'\25)\26+\27-\30/\31\61\32\63\33\65\34\67\359\36;\37"+ - "= ?!A\"C#E$G%I&K\'M(O)Q*S+U,W-Y.[/]\60_\61a\62c\63e\64g\65i\66k\67m8o"+ - "9q:s;u{?}@\177A\u0081B\u0083C\u0085D\u0087E\u0089F\u008bG\u008dH"+ - "\u008fI\u0091J\u0093K\u0095L\u0097M\u0099N\u009bO\u009dP\u009fQ\u00a1"+ - "R\u00a3S\u00a5T\u00a7U\u00a9V\u00abW\u00adX\u00afY\u00b1Z\u00b3[\u00b5"+ - "\\\u00b7]\u00b9^\u00bb_\u00bd`\u00bfa\u00c1b\u00c3c\u00c5d\u00c7e\u00c9"+ - "f\u00cbg\u00cdh\u00cfi\u00d1j\u00d3k\u00d5l\u00d7m\u00d9n\u00dbo\u00dd"+ - "p\u00dfq\u00e1r\u00e3s\u00e5t\u00e7u\u00e9v\u00ebw\u00edx\u00efy\u00f1"+ - "z\u00f3{\u00f5|\u00f7}\u00f9\2\u00fb\2\u00fd~\u00ff\177\u0101\u0080\3"+ - "\2\n\4\2\f\f\17\17\4\2\13\13\"\"\5\2C\\aac|\6\2\62;C\\aac|\5\2\62;CHc"+ - "h\4\2GGgg\4\2--//\6\2\f\f\16\17$$^^\2\u0387\2\3\3\2\2\2\2\5\3\2\2\2\2"+ - "\7\3\2\2\2\2\t\3\2\2\2\2\13\3\2\2\2\2\r\3\2\2\2\2\17\3\2\2\2\2\21\3\2"+ - "\2\2\2\23\3\2\2\2\2\25\3\2\2\2\2\27\3\2\2\2\2\31\3\2\2\2\2\33\3\2\2\2"+ - "\2\35\3\2\2\2\2\37\3\2\2\2\2!\3\2\2\2\2#\3\2\2\2\2%\3\2\2\2\2\'\3\2\2"+ - "\2\2)\3\2\2\2\2+\3\2\2\2\2-\3\2\2\2\2/\3\2\2\2\2\61\3\2\2\2\2\63\3\2\2"+ - "\2\2\65\3\2\2\2\2\67\3\2\2\2\29\3\2\2\2\2;\3\2\2\2\2=\3\2\2\2\2?\3\2\2"+ - "\2\2A\3\2\2\2\2C\3\2\2\2\2E\3\2\2\2\2G\3\2\2\2\2I\3\2\2\2\2K\3\2\2\2\2"+ - "M\3\2\2\2\2O\3\2\2\2\2Q\3\2\2\2\2S\3\2\2\2\2U\3\2\2\2\2W\3\2\2\2\2Y\3"+ - "\2\2\2\2[\3\2\2\2\2]\3\2\2\2\2_\3\2\2\2\2a\3\2\2\2\2c\3\2\2\2\2e\3\2\2"+ - "\2\2g\3\2\2\2\2i\3\2\2\2\2k\3\2\2\2\2m\3\2\2\2\2o\3\2\2\2\2q\3\2\2\2\2"+ - "s\3\2\2\2\2u\3\2\2\2\2w\3\2\2\2\2y\3\2\2\2\2{\3\2\2\2\2}\3\2\2\2\2\177"+ - "\3\2\2\2\2\u0081\3\2\2\2\2\u0083\3\2\2\2\2\u0085\3\2\2\2\2\u0087\3\2\2"+ - "\2\2\u0089\3\2\2\2\2\u008b\3\2\2\2\2\u008d\3\2\2\2\2\u008f\3\2\2\2\2\u0091"+ - "\3\2\2\2\2\u0093\3\2\2\2\2\u0095\3\2\2\2\2\u0097\3\2\2\2\2\u0099\3\2\2"+ - "\2\2\u009b\3\2\2\2\2\u009d\3\2\2\2\2\u009f\3\2\2\2\2\u00a1\3\2\2\2\2\u00a3"+ - "\3\2\2\2\2\u00a5\3\2\2\2\2\u00a7\3\2\2\2\2\u00a9\3\2\2\2\2\u00ab\3\2\2"+ - "\2\2\u00ad\3\2\2\2\2\u00af\3\2\2\2\2\u00b1\3\2\2\2\2\u00b3\3\2\2\2\2\u00b5"+ - "\3\2\2\2\2\u00b7\3\2\2\2\2\u00b9\3\2\2\2\2\u00bb\3\2\2\2\2\u00bd\3\2\2"+ - "\2\2\u00bf\3\2\2\2\2\u00c1\3\2\2\2\2\u00c3\3\2\2\2\2\u00c5\3\2\2\2\2\u00c7"+ - "\3\2\2\2\2\u00c9\3\2\2\2\2\u00cb\3\2\2\2\2\u00cd\3\2\2\2\2\u00cf\3\2\2"+ - "\2\2\u00d1\3\2\2\2\2\u00d3\3\2\2\2\2\u00d5\3\2\2\2\2\u00d7\3\2\2\2\2\u00d9"+ - "\3\2\2\2\2\u00db\3\2\2\2\2\u00dd\3\2\2\2\2\u00df\3\2\2\2\2\u00e1\3\2\2"+ - "\2\2\u00e3\3\2\2\2\2\u00e5\3\2\2\2\2\u00e7\3\2\2\2\2\u00e9\3\2\2\2\2\u00eb"+ - "\3\2\2\2\2\u00ed\3\2\2\2\2\u00ef\3\2\2\2\2\u00f1\3\2\2\2\2\u00f3\3\2\2"+ - "\2\2\u00f5\3\2\2\2\2\u00f7\3\2\2\2\2\u00fd\3\2\2\2\2\u00ff\3\2\2\2\2\u0101"+ - "\3\2\2\2\3\u0103\3\2\2\2\5\u0105\3\2\2\2\7\u0107\3\2\2\2\t\u010c\3\2\2"+ - "\2\13\u0114\3\2\2\2\r\u011e\3\2\2\2\17\u0128\3\2\2\2\21\u0134\3\2\2\2"+ - "\23\u013d\3\2\2\2\25\u0145\3\2\2\2\27\u0151\3\2\2\2\31\u015d\3\2\2\2\33"+ - "\u0168\3\2\2\2\35\u0170\3\2\2\2\37\u0172\3\2\2\2!\u0174\3\2\2\2#\u017a"+ - "\3\2\2\2%\u0181\3\2\2\2\'\u0187\3\2\2\2)\u018c\3\2\2\2+\u0192\3\2\2\2"+ - "-\u0197\3\2\2\2/\u019d\3\2\2\2\61\u01a1\3\2\2\2\63\u01a7\3\2\2\2\65\u01ad"+ - "\3\2\2\2\67\u01b4\3\2\2\29\u01b6\3\2\2\2;\u01b8\3\2\2\2=\u01bb\3\2\2\2"+ - "?\u01be\3\2\2\2A\u01c1\3\2\2\2C\u01c5\3\2\2\2E\u01c8\3\2\2\2G\u01cc\3"+ - "\2\2\2I\u01cf\3\2\2\2K\u01d2\3\2\2\2M\u01d5\3\2\2\2O\u01d8\3\2\2\2Q\u01dc"+ - "\3\2\2\2S\u01e0\3\2\2\2U\u01e3\3\2\2\2W\u01e6\3\2\2\2Y\u01e8\3\2\2\2["+ - "\u01ea\3\2\2\2]\u01ed\3\2\2\2_\u01ef\3\2\2\2a\u01f1\3\2\2\2c\u01f4\3\2"+ - "\2\2e\u01f6\3\2\2\2g\u01f9\3\2\2\2i\u01fc\3\2\2\2k\u01fe\3\2\2\2m\u0200"+ - "\3\2\2\2o\u0203\3\2\2\2q\u0206\3\2\2\2s\u0209\3\2\2\2u\u020c\3\2\2\2w"+ - "\u020e\3\2\2\2y\u0210\3\2\2\2{\u0212\3\2\2\2}\u0215\3\2\2\2\177\u021a"+ - "\3\2\2\2\u0081\u021e\3\2\2\2\u0083\u0221\3\2\2\2\u0085\u0225\3\2\2\2\u0087"+ - "\u0229\3\2\2\2\u0089\u022b\3\2\2\2\u008b\u022d\3\2\2\2\u008d\u0230\3\2"+ - "\2\2\u008f\u0232\3\2\2\2\u0091\u0239\3\2\2\2\u0093\u023f\3\2\2\2\u0095"+ - "\u0248\3\2\2\2\u0097\u024a\3\2\2\2\u0099\u024c\3\2\2\2\u009b\u024e\3\2"+ - "\2\2\u009d\u0250\3\2\2\2\u009f\u0253\3\2\2\2\u00a1\u0256\3\2\2\2\u00a3"+ - "\u0259\3\2\2\2\u00a5\u025c\3\2\2\2\u00a7\u025f\3\2\2\2\u00a9\u0262\3\2"+ - "\2\2\u00ab\u0265\3\2\2\2\u00ad\u0268\3\2\2\2\u00af\u026d\3\2\2\2\u00b1"+ - "\u0273\3\2\2\2\u00b3\u0278\3\2\2\2\u00b5\u027c\3\2\2\2\u00b7\u027f\3\2"+ - "\2\2\u00b9\u0281\3\2\2\2\u00bb\u0283\3\2\2\2\u00bd\u028a\3\2\2\2\u00bf"+ - "\u0293\3\2\2\2\u00c1\u0299\3\2\2\2\u00c3\u029c\3\2\2\2\u00c5\u02a1\3\2"+ - "\2\2\u00c7\u02a7\3\2\2\2\u00c9\u02ad\3\2\2\2\u00cb\u02b3\3\2\2\2\u00cd"+ - "\u02b8\3\2\2\2\u00cf\u02be\3\2\2\2\u00d1\u02c4\3\2\2\2\u00d3\u02ca\3\2"+ - "\2\2\u00d5\u02d1\3\2\2\2\u00d7\u02d7\3\2\2\2\u00d9\u02de\3\2\2\2\u00db"+ - "\u02e4\3\2\2\2\u00dd\u02ea\3\2\2\2\u00df\u02ee\3\2\2\2\u00e1\u02f1\3\2"+ - "\2\2\u00e3\u02f7\3\2\2\2\u00e5\u02fe\3\2\2\2\u00e7\u0304\3\2\2\2\u00e9"+ - "\u030f\3\2\2\2\u00eb\u0318\3\2\2\2\u00ed\u031d\3\2\2\2\u00ef\u0321\3\2"+ - "\2\2\u00f1\u032f\3\2\2\2\u00f3\u0331\3\2\2\2\u00f5\u0337\3\2\2\2\u00f7"+ - "\u033d\3\2\2\2\u00f9\u0346\3\2\2\2\u00fb\u0356\3\2\2\2\u00fd\u0358\3\2"+ - "\2\2\u00ff\u0363\3\2\2\2\u0101\u0370\3\2\2\2\u0103\u0104\7\u0080\2\2\u0104"+ - "\4\3\2\2\2\u0105\u0106\7<\2\2\u0106\6\3\2\2\2\u0107\u0108\7i\2\2\u0108"+ - "\u0109\7q\2\2\u0109\u010a\7v\2\2\u010a\u010b\7q\2\2\u010b\b\3\2\2\2\u010c"+ - "\u010d\7\'\2\2\u010d\u010e\7q\2\2\u010e\u010f\7w\2\2\u010f\u0110\7v\2"+ - "\2\u0110\u0111\7r\2\2\u0111\u0112\7w\2\2\u0112\u0113\7v\2\2\u0113\n\3"+ - "\2\2\2\u0114\u0115\7\'\2\2\u0115\u0116\7n\2\2\u0116\u0117\7c\2\2\u0117"+ - "\u0118\7w\2\2\u0118\u0119\7p\2\2\u0119\u011a\7e\2\2\u011a\u011b\7j\2\2"+ - "\u011b\u011c\7g\2\2\u011c\u011d\7t\2\2\u011d\f\3\2\2\2\u011e\u011f\7\'"+ - "\2\2\u011f\u0120\7|\2\2\u0120\u0121\7g\2\2\u0121\u0122\7t\2\2\u0122\u0123"+ - "\7q\2\2\u0123\u0124\7r\2\2\u0124\u0125\7c\2\2\u0125\u0126\7i\2\2\u0126"+ - "\u0127\7g\2\2\u0127\16\3\2\2\2\u0128\u0129\7\'\2\2\u0129\u012a\7|\2\2"+ - "\u012a\u012b\7r\2\2\u012b\u012c\7t\2\2\u012c\u012d\7g\2\2\u012d\u012e"+ - "\7u\2\2\u012e\u012f\7g\2\2\u012f\u0130\7t\2\2\u0130\u0131\7x\2\2\u0131"+ - "\u0132\7g\2\2\u0132\u0133\7f\2\2\u0133\20\3\2\2\2\u0134\u0135\7\'\2\2"+ - "\u0135\u0136\7c\2\2\u0136\u0137\7f\2\2\u0137\u0138\7f\2\2\u0138\u0139"+ - "\7t\2\2\u0139\u013a\7g\2\2\u013a\u013b\7u\2\2\u013b\u013c\7u\2\2\u013c"+ - "\22\3\2\2\2\u013d\u013e\7\'\2\2\u013e\u013f\7k\2\2\u013f\u0140\7o\2\2"+ - "\u0140\u0141\7r\2\2\u0141\u0142\7q\2\2\u0142\u0143\7t\2\2\u0143\u0144"+ - "\7v\2\2\u0144\24\3\2\2\2\u0145\u0146\7\'\2\2\u0146\u0147\7d\2\2\u0147"+ - "\u0148\7t\2\2\u0148\u0149\7g\2\2\u0149\u014a\7c\2\2\u014a\u014b\7m\2\2"+ - "\u014b\u014c\7r\2\2\u014c\u014d\7q\2\2\u014d\u014e\7k\2\2\u014e\u014f"+ - "\7p\2\2\u014f\u0150\7v\2\2\u0150\26\3\2\2\2\u0151\u0152\7\'\2\2\u0152"+ - "\u0153\7c\2\2\u0153\u0154\7u\2\2\u0154\u0155\7o\2\2\u0155\u0156\7k\2\2"+ - "\u0156\u0157\7p\2\2\u0157\u0158\7e\2\2\u0158\u0159\7n\2\2\u0159\u015a"+ - "\7w\2\2\u015a\u015b\7f\2\2\u015b\u015c\7g\2\2\u015c\30\3\2\2\2\u015d\u015e"+ - "\7\'\2\2\u015e\u015f\7c\2\2\u015f\u0160\7u\2\2\u0160\u0161\7o\2\2\u0161"+ - "\u0162\7d\2\2\u0162\u0163\7k\2\2\u0163\u0164\7p\2\2\u0164\u0165\7c\2\2"+ - "\u0165\u0166\7t\2\2\u0166\u0167\7{\2\2\u0167\32\3\2\2\2\u0168\u0169\7"+ - "\'\2\2\u0169\u016a\7q\2\2\u016a\u016b\7r\2\2\u016b\u016c\7v\2\2\u016c"+ - "\u016d\7k\2\2\u016d\u016e\7q\2\2\u016e\u016f\7p\2\2\u016f\34\3\2\2\2\u0170"+ - "\u0171\7.\2\2\u0171\36\3\2\2\2\u0172\u0173\7?\2\2\u0173 \3\2\2\2\u0174"+ - "\u0175\7e\2\2\u0175\u0176\7q\2\2\u0176\u0177\7p\2\2\u0177\u0178\7u\2\2"+ - "\u0178\u0179\7v\2\2\u0179\"\3\2\2\2\u017a\u017b\7o\2\2\u017b\u017c\7g"+ - "\2\2\u017c\u017d\7o\2\2\u017d\u017e\7q\2\2\u017e\u017f\7t\2\2\u017f\u0180"+ - "\7{\2\2\u0180$\3\2\2\2\u0181\u0182\7w\2\2\u0182\u0183\7d\2\2\u0183\u0184"+ - "\7{\2\2\u0184\u0185\7v\2\2\u0185\u0186\7g\2\2\u0186&\3\2\2\2\u0187\u0188"+ - "\7d\2\2\u0188\u0189\7{\2\2\u0189\u018a\7v\2\2\u018a\u018b\7g\2\2\u018b"+ - "(\3\2\2\2\u018c\u018d\7w\2\2\u018d\u018e\7y\2\2\u018e\u018f\7q\2\2\u018f"+ - "\u0190\7t\2\2\u0190\u0191\7f\2\2\u0191*\3\2\2\2\u0192\u0193\7y\2\2\u0193"+ - "\u0194\7q\2\2\u0194\u0195\7t\2\2\u0195\u0196\7f\2\2\u0196,\3\2\2\2\u0197"+ - "\u0198\7h\2\2\u0198\u0199\7n\2\2\u0199\u019a\7q\2\2\u019a\u019b\7c\2\2"+ - "\u019b\u019c\7v\2\2\u019c.\3\2\2\2\u019d\u019e\7u\2\2\u019e\u019f\7v\2"+ - "\2\u019f\u01a0\7t\2\2\u01a0\60\3\2\2\2\u01a1\u01a2\7u\2\2\u01a2\u01a3"+ - "\7v\2\2\u01a3\u01a4\7t\2\2\u01a4\u01a5\7a\2\2\u01a5\u01a6\7r\2\2\u01a6"+ - "\62\3\2\2\2\u01a7\u01a8\7u\2\2\u01a8\u01a9\7v\2\2\u01a9\u01aa\7t\2\2\u01aa"+ - "\u01ab\7a\2\2\u01ab\u01ac\7u\2\2\u01ac\64\3\2\2\2\u01ad\u01ae\7u\2\2\u01ae"+ - "\u01af\7v\2\2\u01af\u01b0\7t\2\2\u01b0\u01b1\7a\2\2\u01b1\u01b2\7r\2\2"+ - "\u01b2\u01b3\7u\2\2\u01b3\66\3\2\2\2\u01b4\u01b5\7]\2\2\u01b58\3\2\2\2"+ - "\u01b6\u01b7\7_\2\2\u01b7:\3\2\2\2\u01b8\u01b9\7-\2\2\u01b9\u01ba\7?\2"+ - "\2\u01ba<\3\2\2\2\u01bb\u01bc\7/\2\2\u01bc\u01bd\7?\2\2\u01bd>\3\2\2\2"+ - "\u01be\u01bf\7\61\2\2\u01bf\u01c0\7?\2\2\u01c0@\3\2\2\2\u01c1\u01c2\7"+ - "\61\2\2\u01c2\u01c3\7\61\2\2\u01c3\u01c4\7?\2\2\u01c4B\3\2\2\2\u01c5\u01c6"+ - "\7,\2\2\u01c6\u01c7\7?\2\2\u01c7D\3\2\2\2\u01c8\u01c9\7,\2\2\u01c9\u01ca"+ - "\7,\2\2\u01ca\u01cb\7?\2\2\u01cbF\3\2\2\2\u01cc\u01cd\7(\2\2\u01cd\u01ce"+ - "\7?\2\2\u01ceH\3\2\2\2\u01cf\u01d0\7~\2\2\u01d0\u01d1\7?\2\2\u01d1J\3"+ - "\2\2\2\u01d2\u01d3\7`\2\2\u01d3\u01d4\7?\2\2\u01d4L\3\2\2\2\u01d5\u01d6"+ - "\7\'\2\2\u01d6\u01d7\7?\2\2\u01d7N\3\2\2\2\u01d8\u01d9\7>\2\2\u01d9\u01da"+ - "\7>\2\2\u01da\u01db\7?\2\2\u01dbP\3\2\2\2\u01dc\u01dd\7@\2\2\u01dd\u01de"+ - "\7@\2\2\u01de\u01df\7?\2\2\u01dfR\3\2\2\2\u01e0\u01e1\7-\2\2\u01e1\u01e2"+ - "\7-\2\2\u01e2T\3\2\2\2\u01e3\u01e4\7/\2\2\u01e4\u01e5\7/\2\2\u01e5V\3"+ - "\2\2\2\u01e6\u01e7\7-\2\2\u01e7X\3\2\2\2\u01e8\u01e9\7/\2\2\u01e9Z\3\2"+ - "\2\2\u01ea\u01eb\7,\2\2\u01eb\u01ec\7,\2\2\u01ec\\\3\2\2\2\u01ed\u01ee"+ - "\7,\2\2\u01ee^\3\2\2\2\u01ef\u01f0\7\61\2\2\u01f0`\3\2\2\2\u01f1\u01f2"+ - "\7\61\2\2\u01f2\u01f3\7\61\2\2\u01f3b\3\2\2\2\u01f4\u01f5\7\'\2\2\u01f5"+ - "d\3\2\2\2\u01f6\u01f7\7>\2\2\u01f7\u01f8\7>\2\2\u01f8f\3\2\2\2\u01f9\u01fa"+ - "\7@\2\2\u01fa\u01fb\7@\2\2\u01fbh\3\2\2\2\u01fc\u01fd\7>\2\2\u01fdj\3"+ - "\2\2\2\u01fe\u01ff\7@\2\2\u01ffl\3\2\2\2\u0200\u0201\7>\2\2\u0201\u0202"+ - "\7?\2\2\u0202n\3\2\2\2\u0203\u0204\7@\2\2\u0204\u0205\7?\2\2\u0205p\3"+ - "\2\2\2\u0206\u0207\7?\2\2\u0207\u0208\7?\2\2\u0208r\3\2\2\2\u0209\u020a"+ - "\7#\2\2\u020a\u020b\7?\2\2\u020bt\3\2\2\2\u020c\u020d\7(\2\2\u020dv\3"+ - "\2\2\2\u020e\u020f\7`\2\2\u020fx\3\2\2\2\u0210\u0211\7~\2\2\u0211z\3\2"+ - "\2\2\u0212\u0213\7v\2\2\u0213\u0214\7q\2\2\u0214|\3\2\2\2\u0215\u0216"+ - "\7u\2\2\u0216\u0217\7v\2\2\u0217\u0218\7g\2\2\u0218\u0219\7r\2\2\u0219"+ - "~\3\2\2\2\u021a\u021b\7c\2\2\u021b\u021c\7p\2\2\u021c\u021d\7f\2\2\u021d"+ - "\u0080\3\2\2\2\u021e\u021f\7q\2\2\u021f\u0220\7t\2\2\u0220\u0082\3\2\2"+ - "\2\u0221\u0222\7z\2\2\u0222\u0223\7q\2\2\u0223\u0224\7t\2\2\u0224\u0084"+ - "\3\2\2\2\u0225\u0226\7p\2\2\u0226\u0227\7q\2\2\u0227\u0228\7v\2\2\u0228"+ - "\u0086\3\2\2\2\u0229\u022a\7*\2\2\u022a\u0088\3\2\2\2\u022b\u022c\7+\2"+ - "\2\u022c\u008a\3\2\2\2\u022d\u022e\7c\2\2\u022e\u022f\7u\2\2\u022f\u008c"+ - "\3\2\2\2\u0230\u0231\7B\2\2\u0231\u008e\3\2\2\2\u0232\u0233\7t\2\2\u0233"+ - "\u0234\7g\2\2\u0234\u0235\7v\2\2\u0235\u0236\7w\2\2\u0236\u0237\7t\2\2"+ - "\u0237\u0238\7p\2\2\u0238\u0090\3\2\2\2\u0239\u023a\7d\2\2\u023a\u023b"+ - "\7t\2\2\u023b\u023c\7g\2\2\u023c\u023d\7c\2\2\u023d\u023e\7m\2\2\u023e"+ - "\u0092\3\2\2\2\u023f\u0240\7e\2\2\u0240\u0241\7q\2\2\u0241\u0242\7p\2"+ - "\2\u0242\u0243\7v\2\2\u0243\u0244\7k\2\2\u0244\u0245\7p\2\2\u0245\u0246"+ - "\7w\2\2\u0246\u0247\7g\2\2\u0247\u0094\3\2\2\2\u0248\u0249\7\60\2\2\u0249"+ - "\u0096\3\2\2\2\u024a\u024b\7C\2\2\u024b\u0098\3\2\2\2\u024c\u024d\7Z\2"+ - "\2\u024d\u009a\3\2\2\2\u024e\u024f\7[\2\2\u024f\u009c\3\2\2\2\u0250\u0251"+ - "\7C\2\2\u0251\u0252\7Z\2\2\u0252\u009e\3\2\2\2\u0253\u0254\7C\2\2\u0254"+ - "\u0255\7[\2\2\u0255\u00a0\3\2\2\2\u0256\u0257\7Z\2\2\u0257\u0258\7[\2"+ - "\2\u0258\u00a2\3\2\2\2\u0259\u025a\7R\2\2\u025a\u025b\7e\2\2\u025b\u00a4"+ - "\3\2\2\2\u025c\u025d\7R\2\2\u025d\u025e\7|\2\2\u025e\u00a6\3\2\2\2\u025f"+ - "\u0260\7R\2\2\u0260\u0261\7p\2\2\u0261\u00a8\3\2\2\2\u0262\u0263\7R\2"+ - "\2\u0263\u0264\7x\2\2\u0264\u00aa\3\2\2\2\u0265\u0266\7\60\2\2\u0266\u0267"+ - "\7y\2\2\u0267\u00ac\3\2\2\2\u0268\u0269\7v\2\2\u0269\u026a\7t\2\2\u026a"+ - "\u026b\7w\2\2\u026b\u026c\7g\2\2\u026c\u00ae\3\2\2\2\u026d\u026e\7h\2"+ - "\2\u026e\u026f\7c\2\2\u026f\u0270\7n\2\2\u0270\u0271\7u\2\2\u0271\u0272"+ - "\7g\2\2\u0272\u00b0\3\2\2\2\u0273\u0274\7\'\2\2\u0274\u0275\7c\2\2\u0275"+ - "\u0276\7u\2\2\u0276\u0277\7o\2\2\u0277\u00b2\3\2\2\2\u0278\u0279\7u\2"+ - "\2\u0279\u027a\7w\2\2\u027a\u027b\7d\2\2\u027b\u00b4\3\2\2\2\u027c\u027d"+ - "\7/\2\2\u027d\u027e\7@\2\2\u027e\u00b6\3\2\2\2\u027f\u0280\7}\2\2\u0280"+ - "\u00b8\3\2\2\2\u0281\u0282\7\177\2\2\u0282\u00ba\3\2\2\2\u0283\u0284\7"+ - "c\2\2\u0284\u0285\7u\2\2\u0285\u0286\7o\2\2\u0286\u0287\7u\2\2\u0287\u0288"+ - "\7w\2\2\u0288\u0289\7d\2\2\u0289\u00bc\3\2\2\2\u028a\u028b\7e\2\2\u028b"+ - "\u028c\7n\2\2\u028c\u028d\7q\2\2\u028d\u028e\7d\2\2\u028e\u028f\7d\2\2"+ - "\u028f\u0290\7g\2\2\u0290\u0291\7t\2\2\u0291\u0292\7u\2\2\u0292\u00be"+ - "\3\2\2\2\u0293\u0294\7u\2\2\u0294\u0295\7v\2\2\u0295\u0296\7c\2\2\u0296"+ - "\u0297\7e\2\2\u0297\u0298\7m\2\2\u0298\u00c0\3\2\2\2\u0299\u029a\7k\2"+ - "\2\u029a\u029b\7h\2\2\u029b\u00c2\3\2\2\2\u029c\u029d\7g\2\2\u029d\u029e"+ - "\7n\2\2\u029e\u029f\7u\2\2\u029f\u02a0\7g\2\2\u02a0\u00c4\3\2\2\2\u02a1"+ - "\u02a2\7k\2\2\u02a2\u02a3\7h\2\2\u02a3\u02a4\7a\2\2\u02a4\u02a5\7e\2\2"+ - "\u02a5\u02a6\7u\2\2\u02a6\u00c6\3\2\2\2\u02a7\u02a8\7k\2\2\u02a8\u02a9"+ - "\7h\2\2\u02a9\u02aa\7a\2\2\u02aa\u02ab\7e\2\2\u02ab\u02ac\7e\2\2\u02ac"+ - "\u00c8\3\2\2\2\u02ad\u02ae\7k\2\2\u02ae\u02af\7h\2\2\u02af\u02b0\7a\2"+ - "\2\u02b0\u02b1\7g\2\2\u02b1\u02b2\7s\2\2\u02b2\u00ca\3\2\2\2\u02b3\u02b4"+ - "\7k\2\2\u02b4\u02b5\7h\2\2\u02b5\u02b6\7a\2\2\u02b6\u02b7\7|\2\2\u02b7"+ - "\u00cc\3\2\2\2\u02b8\u02b9\7k\2\2\u02b9\u02ba\7h\2\2\u02ba\u02bb\7a\2"+ - "\2\u02bb\u02bc\7p\2\2\u02bc\u02bd\7g\2\2\u02bd\u00ce\3\2\2\2\u02be\u02bf"+ - "\7k\2\2\u02bf\u02c0\7h\2\2\u02c0\u02c1\7a\2\2\u02c1\u02c2\7p\2\2\u02c2"+ - "\u02c3\7|\2\2\u02c3\u00d0\3\2\2\2\u02c4\u02c5\7k\2\2\u02c5\u02c6\7h\2"+ - "\2\u02c6\u02c7\7a\2\2\u02c7\u02c8\7r\2\2\u02c8\u02c9\7n\2\2\u02c9\u00d2"+ - "\3\2\2\2\u02ca\u02cb\7k\2\2\u02cb\u02cc\7h\2\2\u02cc\u02cd\7a\2\2\u02cd"+ - "\u02ce\7r\2\2\u02ce\u02cf\7q\2\2\u02cf\u02d0\7u\2\2\u02d0\u00d4\3\2\2"+ - "\2\u02d1\u02d2\7k\2\2\u02d2\u02d3\7h\2\2\u02d3\u02d4\7a\2\2\u02d4\u02d5"+ - "\7o\2\2\u02d5\u02d6\7k\2\2\u02d6\u00d6\3\2\2\2\u02d7\u02d8\7k\2\2\u02d8"+ - "\u02d9\7h\2\2\u02d9\u02da\7a\2\2\u02da\u02db\7p\2\2\u02db\u02dc\7g\2\2"+ - "\u02dc\u02dd\7i\2\2\u02dd\u00d8\3\2\2\2\u02de\u02df\7k\2\2\u02df\u02e0"+ - "\7h\2\2\u02e0\u02e1\7a\2\2\u02e1\u02e2\7x\2\2\u02e2\u02e3\7u\2\2\u02e3"+ - "\u00da\3\2\2\2\u02e4\u02e5\7k\2\2\u02e5\u02e6\7h\2\2\u02e6\u02e7\7a\2"+ - "\2\u02e7\u02e8\7x\2\2\u02e8\u02e9\7e\2\2\u02e9\u00dc\3\2\2\2\u02ea\u02eb"+ - "\7h\2\2\u02eb\u02ec\7q\2\2\u02ec\u02ed\7t\2\2\u02ed\u00de\3\2\2\2\u02ee"+ - "\u02ef\7k\2\2\u02ef\u02f0\7p\2\2\u02f0\u00e0\3\2\2\2\u02f1\u02f2\7y\2"+ - "\2\u02f2\u02f3\7j\2\2\u02f3\u02f4\7k\2\2\u02f4\u02f5\7n\2\2\u02f5\u02f6"+ - "\7g\2\2\u02f6\u00e2\3\2\2\2\u02f7\u02f8\7t\2\2\u02f8\u02f9\7g\2\2\u02f9"+ - "\u02fa\7r\2\2\u02fa\u02fb\7g\2\2\u02fb\u02fc\7c\2\2\u02fc\u02fd\7v\2\2"+ - "\u02fd\u00e4\3\2\2\2\u02fe\u02ff\7w\2\2\u02ff\u0300\7p\2\2\u0300\u0301"+ - "\7v\2\2\u0301\u0302\7k\2\2\u0302\u0303\7n\2\2\u0303\u00e6\3\2\2\2\u0304"+ - "\u0308\t\2\2\2\u0305\u0307\t\3\2\2\u0306\u0305\3\2\2\2\u0307\u030a\3\2"+ - "\2\2\u0308\u0306\3\2\2\2\u0308\u0309\3\2\2\2\u0309\u030b\3\2\2\2\u030a"+ - "\u0308\3\2\2\2\u030b\u030c\5\u00e9u\2\u030c\u030d\3\2\2\2\u030d\u030e"+ - "\bt\2\2\u030e\u00e8\3\2\2\2\u030f\u0313\7=\2\2\u0310\u0312\n\2\2\2\u0311"+ - "\u0310\3\2\2\2\u0312\u0315\3\2\2\2\u0313\u0311\3\2\2\2\u0313\u0314\3\2"+ - "\2\2\u0314\u0316\3\2\2\2\u0315\u0313\3\2\2\2\u0316\u0317\bu\2\2\u0317"+ - "\u00ea\3\2\2\2\u0318\u0319\t\3\2\2\u0319\u031a\3\2\2\2\u031a\u031b\bv"+ - "\3\2\u031b\u00ec\3\2\2\2\u031c\u031e\t\2\2\2\u031d\u031c\3\2\2\2\u031e"+ - "\u031f\3\2\2\2\u031f\u031d\3\2\2\2\u031f\u0320\3\2\2\2\u0320\u00ee\3\2"+ - "\2\2\u0321\u0325\t\4\2\2\u0322\u0324\t\5\2\2\u0323\u0322\3\2\2\2\u0324"+ - "\u0327\3\2\2\2\u0325\u0323\3\2\2\2\u0325\u0326\3\2\2\2\u0326\u00f0\3\2"+ - "\2\2\u0327\u0325\3\2\2\2\u0328\u0330\4\62;\2\u0329\u032b\4\63;\2\u032a"+ - "\u032c\4\62;\2\u032b\u032a\3\2\2\2\u032c\u032d\3\2\2\2\u032d\u032b\3\2"+ - "\2\2\u032d\u032e\3\2\2\2\u032e\u0330\3\2\2\2\u032f\u0328\3\2\2\2\u032f"+ - "\u0329\3\2\2\2\u0330\u00f2\3\2\2\2\u0331\u0333\7&\2\2\u0332\u0334\t\6"+ - "\2\2\u0333\u0332\3\2\2\2\u0334\u0335\3\2\2\2\u0335\u0333\3\2\2\2\u0335"+ - "\u0336\3\2\2\2\u0336\u00f4\3\2\2\2\u0337\u0339\7\'\2\2\u0338\u033a\4\62"+ - "\63\2\u0339\u0338\3\2\2\2\u033a\u033b\3\2\2\2\u033b\u0339\3\2\2\2\u033b"+ - "\u033c\3\2\2\2\u033c\u00f6\3\2\2\2\u033d\u0343\5\u00f9}\2\u033e\u0340"+ - "\t\7\2\2\u033f\u0341\t\b\2\2\u0340\u033f\3\2\2\2\u0340\u0341\3\2\2\2\u0341"+ - "\u0342\3\2\2\2\u0342\u0344\5\u00f9}\2\u0343\u033e\3\2\2\2\u0343\u0344"+ - "\3\2\2\2\u0344\u00f8\3\2\2\2\u0345\u0347\4\62;\2\u0346\u0345\3\2\2\2\u0347"+ - "\u0348\3\2\2\2\u0348\u0346\3\2\2\2\u0348\u0349\3\2\2\2\u0349\u0350\3\2"+ - "\2\2\u034a\u034c\7\60\2\2\u034b\u034d\4\62;\2\u034c\u034b\3\2\2\2\u034d"+ - "\u034e\3\2\2\2\u034e\u034c\3\2\2\2\u034e\u034f\3\2\2\2\u034f\u0351\3\2"+ - "\2\2\u0350\u034a\3\2\2\2\u0350\u0351\3\2\2\2\u0351\u00fa\3\2\2\2\u0352"+ - "\u0353\7^\2\2\u0353\u0357\13\2\2\2\u0354\u0355\7^\2\2\u0355\u0357\5\u00ed"+ - "w\2\u0356\u0352\3\2\2\2\u0356\u0354\3\2\2\2\u0357\u00fc\3\2\2\2\u0358"+ - "\u035d\7$\2\2\u0359\u035c\5\u00fb~\2\u035a\u035c\n\t\2\2\u035b\u0359\3"+ - "\2\2\2\u035b\u035a\3\2\2\2\u035c\u035f\3\2\2\2\u035d\u035b\3\2\2\2\u035d"+ - "\u035e\3\2\2\2\u035e\u0360\3\2\2\2\u035f\u035d\3\2\2\2\u0360\u0361\7$"+ - "\2\2\u0361\u0362\b\177\4\2\u0362\u00fe\3\2\2\2\u0363\u0364\7}\2\2\u0364"+ - "\u0365\7}\2\2\u0365\u0367\3\2\2\2\u0366\u0368\13\2\2\2\u0367\u0366\3\2"+ - "\2\2\u0368\u0369\3\2\2\2\u0369\u036a\3\2\2\2\u0369\u0367\3\2\2\2\u036a"+ - "\u036b\3\2\2\2\u036b\u036c\7\177\2\2\u036c\u036d\7\177\2\2\u036d\u036e"+ - "\3\2\2\2\u036e\u036f\b\u0080\5\2\u036f\u0100\3\2\2\2\u0370\u0373\7)\2"+ - "\2\u0371\u0374\5\u00fb~\2\u0372\u0374\n\t\2\2\u0373\u0371\3\2\2\2\u0373"+ - "\u0372\3\2\2\2\u0374\u0375\3\2\2\2\u0375\u0376\7)\2\2\u0376\u0377\b\u0081"+ - "\6\2\u0377\u0102\3\2\2\2\26\2\u0308\u0313\u031f\u0325\u032d\u032f\u0333"+ - "\u0335\u033b\u0340\u0343\u0348\u034e\u0350\u0356\u035b\u035d\u0369\u0373"+ - "\7\2\3\2\b\2\2\3\177\2\3\u0080\3\3\u0081\4"; + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2~\u036d\b\1\4\2\t"+ + "\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4\13"+ + "\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22\t\22"+ + "\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31\t\31"+ + "\4\32\t\32\4\33\t\33\4\34\t\34\4\35\t\35\4\36\t\36\4\37\t\37\4 \t \4!"+ + "\t!\4\"\t\"\4#\t#\4$\t$\4%\t%\4&\t&\4\'\t\'\4(\t(\4)\t)\4*\t*\4+\t+\4"+ + ",\t,\4-\t-\4.\t.\4/\t/\4\60\t\60\4\61\t\61\4\62\t\62\4\63\t\63\4\64\t"+ + "\64\4\65\t\65\4\66\t\66\4\67\t\67\48\t8\49\t9\4:\t:\4;\t;\4<\t<\4=\t="+ + "\4>\t>\4?\t?\4@\t@\4A\tA\4B\tB\4C\tC\4D\tD\4E\tE\4F\tF\4G\tG\4H\tH\4I"+ + "\tI\4J\tJ\4K\tK\4L\tL\4M\tM\4N\tN\4O\tO\4P\tP\4Q\tQ\4R\tR\4S\tS\4T\tT"+ + "\4U\tU\4V\tV\4W\tW\4X\tX\4Y\tY\4Z\tZ\4[\t[\4\\\t\\\4]\t]\4^\t^\4_\t_\4"+ + "`\t`\4a\ta\4b\tb\4c\tc\4d\td\4e\te\4f\tf\4g\tg\4h\th\4i\ti\4j\tj\4k\t"+ + "k\4l\tl\4m\tm\4n\tn\4o\to\4p\tp\4q\tq\4r\tr\4s\ts\4t\tt\4u\tu\4v\tv\4"+ + "w\tw\4x\tx\4y\ty\4z\tz\4{\t{\4|\t|\4}\t}\4~\t~\4\177\t\177\3\2\3\2\3\3"+ + "\3\3\3\4\3\4\3\4\3\4\3\4\3\5\3\5\3\5\3\5\3\5\3\5\3\5\3\5\3\6\3\6\3\6\3"+ + "\6\3\6\3\6\3\6\3\6\3\6\3\6\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\b"+ + "\3\b\3\b\3\b\3\b\3\b\3\b\3\b\3\b\3\b\3\b\3\b\3\t\3\t\3\t\3\t\3\t\3\t\3"+ + "\t\3\t\3\t\3\n\3\n\3\n\3\n\3\n\3\n\3\n\3\n\3\13\3\13\3\13\3\13\3\13\3"+ + "\13\3\13\3\13\3\13\3\13\3\13\3\13\3\f\3\f\3\f\3\f\3\f\3\f\3\f\3\f\3\f"+ + "\3\f\3\f\3\f\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3\16\3\16\3\16"+ + "\3\16\3\16\3\16\3\16\3\16\3\17\3\17\3\20\3\20\3\21\3\21\3\21\3\21\3\21"+ + "\3\21\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\23\3\23\3\23\3\23\3\23\3\23"+ + "\3\24\3\24\3\24\3\24\3\24\3\25\3\25\3\25\3\25\3\25\3\25\3\26\3\26\3\26"+ + "\3\26\3\26\3\27\3\27\3\27\3\27\3\27\3\27\3\30\3\30\3\30\3\30\3\31\3\31"+ + "\3\31\3\31\3\31\3\31\3\32\3\32\3\32\3\32\3\32\3\32\3\33\3\33\3\33\3\33"+ + "\3\33\3\33\3\33\3\34\3\34\3\35\3\35\3\36\3\36\3\36\3\37\3\37\3\37\3 \3"+ + " \3 \3!\3!\3!\3\"\3\"\3\"\3\"\3#\3#\3#\3$\3$\3$\3%\3%\3%\3&\3&\3&\3\'"+ + "\3\'\3\'\3\'\3(\3(\3(\3(\3)\3)\3)\3*\3*\3*\3+\3+\3,\3,\3-\3-\3-\3.\3."+ + "\3/\3/\3\60\3\60\3\61\3\61\3\61\3\62\3\62\3\62\3\63\3\63\3\64\3\64\3\65"+ + "\3\65\3\65\3\66\3\66\3\66\3\67\3\67\3\67\38\38\38\39\39\3:\3:\3;\3;\3"+ + "<\3<\3<\3=\3=\3=\3=\3=\3>\3>\3>\3>\3?\3?\3?\3@\3@\3@\3@\3A\3A\3A\3A\3"+ + "B\3B\3C\3C\3D\3D\3D\3E\3E\3F\3F\3F\3F\3F\3F\3F\3G\3G\3G\3G\3G\3G\3H\3"+ + "H\3H\3H\3H\3H\3H\3H\3H\3I\3I\3J\3J\3K\3K\3L\3L\3M\3M\3M\3N\3N\3N\3O\3"+ + "O\3O\3P\3P\3P\3Q\3Q\3Q\3R\3R\3R\3S\3S\3S\3T\3T\3T\3U\3U\3U\3U\3U\3V\3"+ + "V\3V\3V\3V\3V\3W\3W\3W\3W\3W\3X\3X\3X\3X\3Y\3Y\3Y\3Z\3Z\3[\3[\3\\\3\\"+ + "\3\\\3\\\3\\\3\\\3\\\3]\3]\3]\3]\3]\3]\3]\3]\3]\3^\3^\3^\3^\3^\3^\3_\3"+ + "_\3_\3`\3`\3`\3`\3`\3a\3a\3a\3a\3a\3a\3b\3b\3b\3b\3b\3b\3c\3c\3c\3c\3"+ + "c\3c\3d\3d\3d\3d\3d\3e\3e\3e\3e\3e\3e\3f\3f\3f\3f\3f\3f\3g\3g\3g\3g\3"+ + "g\3g\3h\3h\3h\3h\3h\3h\3h\3i\3i\3i\3i\3i\3i\3j\3j\3j\3j\3j\3j\3j\3k\3"+ + "k\3k\3k\3k\3k\3l\3l\3l\3l\3l\3l\3m\3m\3m\3m\3n\3n\3n\3o\3o\3o\3o\3o\3"+ + "o\3p\3p\3p\3p\3p\3p\3p\3q\3q\3q\3q\3q\3q\3r\3r\7r\u02fc\nr\fr\16r\u02ff"+ + "\13r\3r\3r\3r\3r\3s\3s\7s\u0307\ns\fs\16s\u030a\13s\3s\3s\3t\3t\3t\3t"+ + "\3u\6u\u0313\nu\ru\16u\u0314\3v\3v\7v\u0319\nv\fv\16v\u031c\13v\3w\3w"+ + "\3w\6w\u0321\nw\rw\16w\u0322\5w\u0325\nw\3x\3x\6x\u0329\nx\rx\16x\u032a"+ + "\3y\3y\6y\u032f\ny\ry\16y\u0330\3z\3z\3z\5z\u0336\nz\3z\5z\u0339\nz\3"+ + "{\6{\u033c\n{\r{\16{\u033d\3{\3{\6{\u0342\n{\r{\16{\u0343\5{\u0346\n{"+ + "\3|\3|\3|\3|\5|\u034c\n|\3}\3}\3}\7}\u0351\n}\f}\16}\u0354\13}\3}\3}\3"+ + "}\3~\3~\3~\3~\6~\u035d\n~\r~\16~\u035e\3~\3~\3~\3~\3~\3\177\3\177\3\177"+ + "\5\177\u0369\n\177\3\177\3\177\3\177\3\u035e\2\u0080\3\3\5\4\7\5\t\6\13"+ + "\7\r\b\17\t\21\n\23\13\25\f\27\r\31\16\33\17\35\20\37\21!\22#\23%\24\'"+ + "\25)\26+\27-\30/\31\61\32\63\33\65\34\67\359\36;\37= ?!A\"C#E$G%I&K\'"+ + "M(O)Q*S+U,W-Y.[/]\60_\61a\62c\63e\64g\65i\66k\67m8o9q:s;u{?}@\177"+ + "A\u0081B\u0083C\u0085D\u0087E\u0089F\u008bG\u008dH\u008fI\u0091J\u0093"+ + "K\u0095L\u0097M\u0099N\u009bO\u009dP\u009fQ\u00a1R\u00a3S\u00a5T\u00a7"+ + "U\u00a9V\u00abW\u00adX\u00afY\u00b1Z\u00b3[\u00b5\\\u00b7]\u00b9^\u00bb"+ + "_\u00bd`\u00bfa\u00c1b\u00c3c\u00c5d\u00c7e\u00c9f\u00cbg\u00cdh\u00cf"+ + "i\u00d1j\u00d3k\u00d5l\u00d7m\u00d9n\u00dbo\u00ddp\u00dfq\u00e1r\u00e3"+ + "s\u00e5t\u00e7u\u00e9v\u00ebw\u00edx\u00efy\u00f1z\u00f3{\u00f5\2\u00f7"+ + "\2\u00f9|\u00fb}\u00fd~\3\2\n\4\2\f\f\17\17\4\2\13\13\"\"\5\2C\\aac|\6"+ + "\2\62;C\\aac|\5\2\62;CHch\4\2GGgg\4\2--//\6\2\f\f\16\17$$^^\2\u037c\2"+ + "\3\3\2\2\2\2\5\3\2\2\2\2\7\3\2\2\2\2\t\3\2\2\2\2\13\3\2\2\2\2\r\3\2\2"+ + "\2\2\17\3\2\2\2\2\21\3\2\2\2\2\23\3\2\2\2\2\25\3\2\2\2\2\27\3\2\2\2\2"+ + "\31\3\2\2\2\2\33\3\2\2\2\2\35\3\2\2\2\2\37\3\2\2\2\2!\3\2\2\2\2#\3\2\2"+ + "\2\2%\3\2\2\2\2\'\3\2\2\2\2)\3\2\2\2\2+\3\2\2\2\2-\3\2\2\2\2/\3\2\2\2"+ + "\2\61\3\2\2\2\2\63\3\2\2\2\2\65\3\2\2\2\2\67\3\2\2\2\29\3\2\2\2\2;\3\2"+ + "\2\2\2=\3\2\2\2\2?\3\2\2\2\2A\3\2\2\2\2C\3\2\2\2\2E\3\2\2\2\2G\3\2\2\2"+ + "\2I\3\2\2\2\2K\3\2\2\2\2M\3\2\2\2\2O\3\2\2\2\2Q\3\2\2\2\2S\3\2\2\2\2U"+ + "\3\2\2\2\2W\3\2\2\2\2Y\3\2\2\2\2[\3\2\2\2\2]\3\2\2\2\2_\3\2\2\2\2a\3\2"+ + "\2\2\2c\3\2\2\2\2e\3\2\2\2\2g\3\2\2\2\2i\3\2\2\2\2k\3\2\2\2\2m\3\2\2\2"+ + "\2o\3\2\2\2\2q\3\2\2\2\2s\3\2\2\2\2u\3\2\2\2\2w\3\2\2\2\2y\3\2\2\2\2{"+ + "\3\2\2\2\2}\3\2\2\2\2\177\3\2\2\2\2\u0081\3\2\2\2\2\u0083\3\2\2\2\2\u0085"+ + "\3\2\2\2\2\u0087\3\2\2\2\2\u0089\3\2\2\2\2\u008b\3\2\2\2\2\u008d\3\2\2"+ + "\2\2\u008f\3\2\2\2\2\u0091\3\2\2\2\2\u0093\3\2\2\2\2\u0095\3\2\2\2\2\u0097"+ + "\3\2\2\2\2\u0099\3\2\2\2\2\u009b\3\2\2\2\2\u009d\3\2\2\2\2\u009f\3\2\2"+ + "\2\2\u00a1\3\2\2\2\2\u00a3\3\2\2\2\2\u00a5\3\2\2\2\2\u00a7\3\2\2\2\2\u00a9"+ + "\3\2\2\2\2\u00ab\3\2\2\2\2\u00ad\3\2\2\2\2\u00af\3\2\2\2\2\u00b1\3\2\2"+ + "\2\2\u00b3\3\2\2\2\2\u00b5\3\2\2\2\2\u00b7\3\2\2\2\2\u00b9\3\2\2\2\2\u00bb"+ + "\3\2\2\2\2\u00bd\3\2\2\2\2\u00bf\3\2\2\2\2\u00c1\3\2\2\2\2\u00c3\3\2\2"+ + "\2\2\u00c5\3\2\2\2\2\u00c7\3\2\2\2\2\u00c9\3\2\2\2\2\u00cb\3\2\2\2\2\u00cd"+ + "\3\2\2\2\2\u00cf\3\2\2\2\2\u00d1\3\2\2\2\2\u00d3\3\2\2\2\2\u00d5\3\2\2"+ + "\2\2\u00d7\3\2\2\2\2\u00d9\3\2\2\2\2\u00db\3\2\2\2\2\u00dd\3\2\2\2\2\u00df"+ + "\3\2\2\2\2\u00e1\3\2\2\2\2\u00e3\3\2\2\2\2\u00e5\3\2\2\2\2\u00e7\3\2\2"+ + "\2\2\u00e9\3\2\2\2\2\u00eb\3\2\2\2\2\u00ed\3\2\2\2\2\u00ef\3\2\2\2\2\u00f1"+ + "\3\2\2\2\2\u00f3\3\2\2\2\2\u00f9\3\2\2\2\2\u00fb\3\2\2\2\2\u00fd\3\2\2"+ + "\2\3\u00ff\3\2\2\2\5\u0101\3\2\2\2\7\u0103\3\2\2\2\t\u0108\3\2\2\2\13"+ + "\u0110\3\2\2\2\r\u011a\3\2\2\2\17\u0124\3\2\2\2\21\u0130\3\2\2\2\23\u0139"+ + "\3\2\2\2\25\u0141\3\2\2\2\27\u014d\3\2\2\2\31\u0159\3\2\2\2\33\u0164\3"+ + "\2\2\2\35\u016c\3\2\2\2\37\u016e\3\2\2\2!\u0170\3\2\2\2#\u0176\3\2\2\2"+ + "%\u017d\3\2\2\2\'\u0183\3\2\2\2)\u0188\3\2\2\2+\u018e\3\2\2\2-\u0193\3"+ + "\2\2\2/\u0199\3\2\2\2\61\u019d\3\2\2\2\63\u01a3\3\2\2\2\65\u01a9\3\2\2"+ + "\2\67\u01b0\3\2\2\29\u01b2\3\2\2\2;\u01b4\3\2\2\2=\u01b7\3\2\2\2?\u01ba"+ + "\3\2\2\2A\u01bd\3\2\2\2C\u01c0\3\2\2\2E\u01c4\3\2\2\2G\u01c7\3\2\2\2I"+ + "\u01ca\3\2\2\2K\u01cd\3\2\2\2M\u01d0\3\2\2\2O\u01d4\3\2\2\2Q\u01d8\3\2"+ + "\2\2S\u01db\3\2\2\2U\u01de\3\2\2\2W\u01e0\3\2\2\2Y\u01e2\3\2\2\2[\u01e5"+ + "\3\2\2\2]\u01e7\3\2\2\2_\u01e9\3\2\2\2a\u01eb\3\2\2\2c\u01ee\3\2\2\2e"+ + "\u01f1\3\2\2\2g\u01f3\3\2\2\2i\u01f5\3\2\2\2k\u01f8\3\2\2\2m\u01fb\3\2"+ + "\2\2o\u01fe\3\2\2\2q\u0201\3\2\2\2s\u0203\3\2\2\2u\u0205\3\2\2\2w\u0207"+ + "\3\2\2\2y\u020a\3\2\2\2{\u020f\3\2\2\2}\u0213\3\2\2\2\177\u0216\3\2\2"+ + "\2\u0081\u021a\3\2\2\2\u0083\u021e\3\2\2\2\u0085\u0220\3\2\2\2\u0087\u0222"+ + "\3\2\2\2\u0089\u0225\3\2\2\2\u008b\u0227\3\2\2\2\u008d\u022e\3\2\2\2\u008f"+ + "\u0234\3\2\2\2\u0091\u023d\3\2\2\2\u0093\u023f\3\2\2\2\u0095\u0241\3\2"+ + "\2\2\u0097\u0243\3\2\2\2\u0099\u0245\3\2\2\2\u009b\u0248\3\2\2\2\u009d"+ + "\u024b\3\2\2\2\u009f\u024e\3\2\2\2\u00a1\u0251\3\2\2\2\u00a3\u0254\3\2"+ + "\2\2\u00a5\u0257\3\2\2\2\u00a7\u025a\3\2\2\2\u00a9\u025d\3\2\2\2\u00ab"+ + "\u0262\3\2\2\2\u00ad\u0268\3\2\2\2\u00af\u026d\3\2\2\2\u00b1\u0271\3\2"+ + "\2\2\u00b3\u0274\3\2\2\2\u00b5\u0276\3\2\2\2\u00b7\u0278\3\2\2\2\u00b9"+ + "\u027f\3\2\2\2\u00bb\u0288\3\2\2\2\u00bd\u028e\3\2\2\2\u00bf\u0291\3\2"+ + "\2\2\u00c1\u0296\3\2\2\2\u00c3\u029c\3\2\2\2\u00c5\u02a2\3\2\2\2\u00c7"+ + "\u02a8\3\2\2\2\u00c9\u02ad\3\2\2\2\u00cb\u02b3\3\2\2\2\u00cd\u02b9\3\2"+ + "\2\2\u00cf\u02bf\3\2\2\2\u00d1\u02c6\3\2\2\2\u00d3\u02cc\3\2\2\2\u00d5"+ + "\u02d3\3\2\2\2\u00d7\u02d9\3\2\2\2\u00d9\u02df\3\2\2\2\u00db\u02e3\3\2"+ + "\2\2\u00dd\u02e6\3\2\2\2\u00df\u02ec\3\2\2\2\u00e1\u02f3\3\2\2\2\u00e3"+ + "\u02f9\3\2\2\2\u00e5\u0304\3\2\2\2\u00e7\u030d\3\2\2\2\u00e9\u0312\3\2"+ + "\2\2\u00eb\u0316\3\2\2\2\u00ed\u0324\3\2\2\2\u00ef\u0326\3\2\2\2\u00f1"+ + "\u032c\3\2\2\2\u00f3\u0332\3\2\2\2\u00f5\u033b\3\2\2\2\u00f7\u034b\3\2"+ + "\2\2\u00f9\u034d\3\2\2\2\u00fb\u0358\3\2\2\2\u00fd\u0365\3\2\2\2\u00ff"+ + "\u0100\7\u0080\2\2\u0100\4\3\2\2\2\u0101\u0102\7<\2\2\u0102\6\3\2\2\2"+ + "\u0103\u0104\7i\2\2\u0104\u0105\7q\2\2\u0105\u0106\7v\2\2\u0106\u0107"+ + "\7q\2\2\u0107\b\3\2\2\2\u0108\u0109\7\'\2\2\u0109\u010a\7q\2\2\u010a\u010b"+ + "\7w\2\2\u010b\u010c\7v\2\2\u010c\u010d\7r\2\2\u010d\u010e\7w\2\2\u010e"+ + "\u010f\7v\2\2\u010f\n\3\2\2\2\u0110\u0111\7\'\2\2\u0111\u0112\7n\2\2\u0112"+ + "\u0113\7c\2\2\u0113\u0114\7w\2\2\u0114\u0115\7p\2\2\u0115\u0116\7e\2\2"+ + "\u0116\u0117\7j\2\2\u0117\u0118\7g\2\2\u0118\u0119\7t\2\2\u0119\f\3\2"+ + "\2\2\u011a\u011b\7\'\2\2\u011b\u011c\7|\2\2\u011c\u011d\7g\2\2\u011d\u011e"+ + "\7t\2\2\u011e\u011f\7q\2\2\u011f\u0120\7r\2\2\u0120\u0121\7c\2\2\u0121"+ + "\u0122\7i\2\2\u0122\u0123\7g\2\2\u0123\16\3\2\2\2\u0124\u0125\7\'\2\2"+ + "\u0125\u0126\7|\2\2\u0126\u0127\7r\2\2\u0127\u0128\7t\2\2\u0128\u0129"+ + "\7g\2\2\u0129\u012a\7u\2\2\u012a\u012b\7g\2\2\u012b\u012c\7t\2\2\u012c"+ + "\u012d\7x\2\2\u012d\u012e\7g\2\2\u012e\u012f\7f\2\2\u012f\20\3\2\2\2\u0130"+ + "\u0131\7\'\2\2\u0131\u0132\7c\2\2\u0132\u0133\7f\2\2\u0133\u0134\7f\2"+ + "\2\u0134\u0135\7t\2\2\u0135\u0136\7g\2\2\u0136\u0137\7u\2\2\u0137\u0138"+ + "\7u\2\2\u0138\22\3\2\2\2\u0139\u013a\7\'\2\2\u013a\u013b\7k\2\2\u013b"+ + "\u013c\7o\2\2\u013c\u013d\7r\2\2\u013d\u013e\7q\2\2\u013e\u013f\7t\2\2"+ + "\u013f\u0140\7v\2\2\u0140\24\3\2\2\2\u0141\u0142\7\'\2\2\u0142\u0143\7"+ + "d\2\2\u0143\u0144\7t\2\2\u0144\u0145\7g\2\2\u0145\u0146\7c\2\2\u0146\u0147"+ + "\7m\2\2\u0147\u0148\7r\2\2\u0148\u0149\7q\2\2\u0149\u014a\7k\2\2\u014a"+ + "\u014b\7p\2\2\u014b\u014c\7v\2\2\u014c\26\3\2\2\2\u014d\u014e\7\'\2\2"+ + "\u014e\u014f\7c\2\2\u014f\u0150\7u\2\2\u0150\u0151\7o\2\2\u0151\u0152"+ + "\7k\2\2\u0152\u0153\7p\2\2\u0153\u0154\7e\2\2\u0154\u0155\7n\2\2\u0155"+ + "\u0156\7w\2\2\u0156\u0157\7f\2\2\u0157\u0158\7g\2\2\u0158\30\3\2\2\2\u0159"+ + "\u015a\7\'\2\2\u015a\u015b\7c\2\2\u015b\u015c\7u\2\2\u015c\u015d\7o\2"+ + "\2\u015d\u015e\7d\2\2\u015e\u015f\7k\2\2\u015f\u0160\7p\2\2\u0160\u0161"+ + "\7c\2\2\u0161\u0162\7t\2\2\u0162\u0163\7{\2\2\u0163\32\3\2\2\2\u0164\u0165"+ + "\7\'\2\2\u0165\u0166\7q\2\2\u0166\u0167\7r\2\2\u0167\u0168\7v\2\2\u0168"+ + "\u0169\7k\2\2\u0169\u016a\7q\2\2\u016a\u016b\7p\2\2\u016b\34\3\2\2\2\u016c"+ + "\u016d\7.\2\2\u016d\36\3\2\2\2\u016e\u016f\7?\2\2\u016f \3\2\2\2\u0170"+ + "\u0171\7e\2\2\u0171\u0172\7q\2\2\u0172\u0173\7p\2\2\u0173\u0174\7u\2\2"+ + "\u0174\u0175\7v\2\2\u0175\"\3\2\2\2\u0176\u0177\7o\2\2\u0177\u0178\7g"+ + "\2\2\u0178\u0179\7o\2\2\u0179\u017a\7q\2\2\u017a\u017b\7t\2\2\u017b\u017c"+ + "\7{\2\2\u017c$\3\2\2\2\u017d\u017e\7w\2\2\u017e\u017f\7d\2\2\u017f\u0180"+ + "\7{\2\2\u0180\u0181\7v\2\2\u0181\u0182\7g\2\2\u0182&\3\2\2\2\u0183\u0184"+ + "\7d\2\2\u0184\u0185\7{\2\2\u0185\u0186\7v\2\2\u0186\u0187\7g\2\2\u0187"+ + "(\3\2\2\2\u0188\u0189\7w\2\2\u0189\u018a\7y\2\2\u018a\u018b\7q\2\2\u018b"+ + "\u018c\7t\2\2\u018c\u018d\7f\2\2\u018d*\3\2\2\2\u018e\u018f\7y\2\2\u018f"+ + "\u0190\7q\2\2\u0190\u0191\7t\2\2\u0191\u0192\7f\2\2\u0192,\3\2\2\2\u0193"+ + "\u0194\7h\2\2\u0194\u0195\7n\2\2\u0195\u0196\7q\2\2\u0196\u0197\7c\2\2"+ + "\u0197\u0198\7v\2\2\u0198.\3\2\2\2\u0199\u019a\7u\2\2\u019a\u019b\7v\2"+ + "\2\u019b\u019c\7t\2\2\u019c\60\3\2\2\2\u019d\u019e\7u\2\2\u019e\u019f"+ + "\7v\2\2\u019f\u01a0\7t\2\2\u01a0\u01a1\7a\2\2\u01a1\u01a2\7r\2\2\u01a2"+ + "\62\3\2\2\2\u01a3\u01a4\7u\2\2\u01a4\u01a5\7v\2\2\u01a5\u01a6\7t\2\2\u01a6"+ + "\u01a7\7a\2\2\u01a7\u01a8\7u\2\2\u01a8\64\3\2\2\2\u01a9\u01aa\7u\2\2\u01aa"+ + "\u01ab\7v\2\2\u01ab\u01ac\7t\2\2\u01ac\u01ad\7a\2\2\u01ad\u01ae\7r\2\2"+ + "\u01ae\u01af\7u\2\2\u01af\66\3\2\2\2\u01b0\u01b1\7]\2\2\u01b18\3\2\2\2"+ + "\u01b2\u01b3\7_\2\2\u01b3:\3\2\2\2\u01b4\u01b5\7-\2\2\u01b5\u01b6\7?\2"+ + "\2\u01b6<\3\2\2\2\u01b7\u01b8\7/\2\2\u01b8\u01b9\7?\2\2\u01b9>\3\2\2\2"+ + "\u01ba\u01bb\7\61\2\2\u01bb\u01bc\7?\2\2\u01bc@\3\2\2\2\u01bd\u01be\7"+ + ",\2\2\u01be\u01bf\7?\2\2\u01bfB\3\2\2\2\u01c0\u01c1\7,\2\2\u01c1\u01c2"+ + "\7,\2\2\u01c2\u01c3\7?\2\2\u01c3D\3\2\2\2\u01c4\u01c5\7(\2\2\u01c5\u01c6"+ + "\7?\2\2\u01c6F\3\2\2\2\u01c7\u01c8\7~\2\2\u01c8\u01c9\7?\2\2\u01c9H\3"+ + "\2\2\2\u01ca\u01cb\7`\2\2\u01cb\u01cc\7?\2\2\u01ccJ\3\2\2\2\u01cd\u01ce"+ + "\7\'\2\2\u01ce\u01cf\7?\2\2\u01cfL\3\2\2\2\u01d0\u01d1\7>\2\2\u01d1\u01d2"+ + "\7>\2\2\u01d2\u01d3\7?\2\2\u01d3N\3\2\2\2\u01d4\u01d5\7@\2\2\u01d5\u01d6"+ + "\7@\2\2\u01d6\u01d7\7?\2\2\u01d7P\3\2\2\2\u01d8\u01d9\7-\2\2\u01d9\u01da"+ + "\7-\2\2\u01daR\3\2\2\2\u01db\u01dc\7/\2\2\u01dc\u01dd\7/\2\2\u01ddT\3"+ + "\2\2\2\u01de\u01df\7-\2\2\u01dfV\3\2\2\2\u01e0\u01e1\7/\2\2\u01e1X\3\2"+ + "\2\2\u01e2\u01e3\7,\2\2\u01e3\u01e4\7,\2\2\u01e4Z\3\2\2\2\u01e5\u01e6"+ + "\7,\2\2\u01e6\\\3\2\2\2\u01e7\u01e8\7\61\2\2\u01e8^\3\2\2\2\u01e9\u01ea"+ + "\7\'\2\2\u01ea`\3\2\2\2\u01eb\u01ec\7>\2\2\u01ec\u01ed\7>\2\2\u01edb\3"+ + "\2\2\2\u01ee\u01ef\7@\2\2\u01ef\u01f0\7@\2\2\u01f0d\3\2\2\2\u01f1\u01f2"+ + "\7>\2\2\u01f2f\3\2\2\2\u01f3\u01f4\7@\2\2\u01f4h\3\2\2\2\u01f5\u01f6\7"+ + ">\2\2\u01f6\u01f7\7?\2\2\u01f7j\3\2\2\2\u01f8\u01f9\7@\2\2\u01f9\u01fa"+ + "\7?\2\2\u01fal\3\2\2\2\u01fb\u01fc\7?\2\2\u01fc\u01fd\7?\2\2\u01fdn\3"+ + "\2\2\2\u01fe\u01ff\7#\2\2\u01ff\u0200\7?\2\2\u0200p\3\2\2\2\u0201\u0202"+ + "\7(\2\2\u0202r\3\2\2\2\u0203\u0204\7`\2\2\u0204t\3\2\2\2\u0205\u0206\7"+ + "~\2\2\u0206v\3\2\2\2\u0207\u0208\7v\2\2\u0208\u0209\7q\2\2\u0209x\3\2"+ + "\2\2\u020a\u020b\7u\2\2\u020b\u020c\7v\2\2\u020c\u020d\7g\2\2\u020d\u020e"+ + "\7r\2\2\u020ez\3\2\2\2\u020f\u0210\7c\2\2\u0210\u0211\7p\2\2\u0211\u0212"+ + "\7f\2\2\u0212|\3\2\2\2\u0213\u0214\7q\2\2\u0214\u0215\7t\2\2\u0215~\3"+ + "\2\2\2\u0216\u0217\7z\2\2\u0217\u0218\7q\2\2\u0218\u0219\7t\2\2\u0219"+ + "\u0080\3\2\2\2\u021a\u021b\7p\2\2\u021b\u021c\7q\2\2\u021c\u021d\7v\2"+ + "\2\u021d\u0082\3\2\2\2\u021e\u021f\7*\2\2\u021f\u0084\3\2\2\2\u0220\u0221"+ + "\7+\2\2\u0221\u0086\3\2\2\2\u0222\u0223\7c\2\2\u0223\u0224\7u\2\2\u0224"+ + "\u0088\3\2\2\2\u0225\u0226\7B\2\2\u0226\u008a\3\2\2\2\u0227\u0228\7t\2"+ + "\2\u0228\u0229\7g\2\2\u0229\u022a\7v\2\2\u022a\u022b\7w\2\2\u022b\u022c"+ + "\7t\2\2\u022c\u022d\7p\2\2\u022d\u008c\3\2\2\2\u022e\u022f\7d\2\2\u022f"+ + "\u0230\7t\2\2\u0230\u0231\7g\2\2\u0231\u0232\7c\2\2\u0232\u0233\7m\2\2"+ + "\u0233\u008e\3\2\2\2\u0234\u0235\7e\2\2\u0235\u0236\7q\2\2\u0236\u0237"+ + "\7p\2\2\u0237\u0238\7v\2\2\u0238\u0239\7k\2\2\u0239\u023a\7p\2\2\u023a"+ + "\u023b\7w\2\2\u023b\u023c\7g\2\2\u023c\u0090\3\2\2\2\u023d\u023e\7\60"+ + "\2\2\u023e\u0092\3\2\2\2\u023f\u0240\7C\2\2\u0240\u0094\3\2\2\2\u0241"+ + "\u0242\7Z\2\2\u0242\u0096\3\2\2\2\u0243\u0244\7[\2\2\u0244\u0098\3\2\2"+ + "\2\u0245\u0246\7C\2\2\u0246\u0247\7Z\2\2\u0247\u009a\3\2\2\2\u0248\u0249"+ + "\7C\2\2\u0249\u024a\7[\2\2\u024a\u009c\3\2\2\2\u024b\u024c\7Z\2\2\u024c"+ + "\u024d\7[\2\2\u024d\u009e\3\2\2\2\u024e\u024f\7R\2\2\u024f\u0250\7e\2"+ + "\2\u0250\u00a0\3\2\2\2\u0251\u0252\7R\2\2\u0252\u0253\7|\2\2\u0253\u00a2"+ + "\3\2\2\2\u0254\u0255\7R\2\2\u0255\u0256\7p\2\2\u0256\u00a4\3\2\2\2\u0257"+ + "\u0258\7R\2\2\u0258\u0259\7x\2\2\u0259\u00a6\3\2\2\2\u025a\u025b\7\60"+ + "\2\2\u025b\u025c\7y\2\2\u025c\u00a8\3\2\2\2\u025d\u025e\7v\2\2\u025e\u025f"+ + "\7t\2\2\u025f\u0260\7w\2\2\u0260\u0261\7g\2\2\u0261\u00aa\3\2\2\2\u0262"+ + "\u0263\7h\2\2\u0263\u0264\7c\2\2\u0264\u0265\7n\2\2\u0265\u0266\7u\2\2"+ + "\u0266\u0267\7g\2\2\u0267\u00ac\3\2\2\2\u0268\u0269\7\'\2\2\u0269\u026a"+ + "\7c\2\2\u026a\u026b\7u\2\2\u026b\u026c\7o\2\2\u026c\u00ae\3\2\2\2\u026d"+ + "\u026e\7u\2\2\u026e\u026f\7w\2\2\u026f\u0270\7d\2\2\u0270\u00b0\3\2\2"+ + "\2\u0271\u0272\7/\2\2\u0272\u0273\7@\2\2\u0273\u00b2\3\2\2\2\u0274\u0275"+ + "\7}\2\2\u0275\u00b4\3\2\2\2\u0276\u0277\7\177\2\2\u0277\u00b6\3\2\2\2"+ + "\u0278\u0279\7c\2\2\u0279\u027a\7u\2\2\u027a\u027b\7o\2\2\u027b\u027c"+ + "\7u\2\2\u027c\u027d\7w\2\2\u027d\u027e\7d\2\2\u027e\u00b8\3\2\2\2\u027f"+ + "\u0280\7e\2\2\u0280\u0281\7n\2\2\u0281\u0282\7q\2\2\u0282\u0283\7d\2\2"+ + "\u0283\u0284\7d\2\2\u0284\u0285\7g\2\2\u0285\u0286\7t\2\2\u0286\u0287"+ + "\7u\2\2\u0287\u00ba\3\2\2\2\u0288\u0289\7u\2\2\u0289\u028a\7v\2\2\u028a"+ + "\u028b\7c\2\2\u028b\u028c\7e\2\2\u028c\u028d\7m\2\2\u028d\u00bc\3\2\2"+ + "\2\u028e\u028f\7k\2\2\u028f\u0290\7h\2\2\u0290\u00be\3\2\2\2\u0291\u0292"+ + "\7g\2\2\u0292\u0293\7n\2\2\u0293\u0294\7u\2\2\u0294\u0295\7g\2\2\u0295"+ + "\u00c0\3\2\2\2\u0296\u0297\7k\2\2\u0297\u0298\7h\2\2\u0298\u0299\7a\2"+ + "\2\u0299\u029a\7e\2\2\u029a\u029b\7u\2\2\u029b\u00c2\3\2\2\2\u029c\u029d"+ + "\7k\2\2\u029d\u029e\7h\2\2\u029e\u029f\7a\2\2\u029f\u02a0\7e\2\2\u02a0"+ + "\u02a1\7e\2\2\u02a1\u00c4\3\2\2\2\u02a2\u02a3\7k\2\2\u02a3\u02a4\7h\2"+ + "\2\u02a4\u02a5\7a\2\2\u02a5\u02a6\7g\2\2\u02a6\u02a7\7s\2\2\u02a7\u00c6"+ + "\3\2\2\2\u02a8\u02a9\7k\2\2\u02a9\u02aa\7h\2\2\u02aa\u02ab\7a\2\2\u02ab"+ + "\u02ac\7|\2\2\u02ac\u00c8\3\2\2\2\u02ad\u02ae\7k\2\2\u02ae\u02af\7h\2"+ + "\2\u02af\u02b0\7a\2\2\u02b0\u02b1\7p\2\2\u02b1\u02b2\7g\2\2\u02b2\u00ca"+ + "\3\2\2\2\u02b3\u02b4\7k\2\2\u02b4\u02b5\7h\2\2\u02b5\u02b6\7a\2\2\u02b6"+ + "\u02b7\7p\2\2\u02b7\u02b8\7|\2\2\u02b8\u00cc\3\2\2\2\u02b9\u02ba\7k\2"+ + "\2\u02ba\u02bb\7h\2\2\u02bb\u02bc\7a\2\2\u02bc\u02bd\7r\2\2\u02bd\u02be"+ + "\7n\2\2\u02be\u00ce\3\2\2\2\u02bf\u02c0\7k\2\2\u02c0\u02c1\7h\2\2\u02c1"+ + "\u02c2\7a\2\2\u02c2\u02c3\7r\2\2\u02c3\u02c4\7q\2\2\u02c4\u02c5\7u\2\2"+ + "\u02c5\u00d0\3\2\2\2\u02c6\u02c7\7k\2\2\u02c7\u02c8\7h\2\2\u02c8\u02c9"+ + "\7a\2\2\u02c9\u02ca\7o\2\2\u02ca\u02cb\7k\2\2\u02cb\u00d2\3\2\2\2\u02cc"+ + "\u02cd\7k\2\2\u02cd\u02ce\7h\2\2\u02ce\u02cf\7a\2\2\u02cf\u02d0\7p\2\2"+ + "\u02d0\u02d1\7g\2\2\u02d1\u02d2\7i\2\2\u02d2\u00d4\3\2\2\2\u02d3\u02d4"+ + "\7k\2\2\u02d4\u02d5\7h\2\2\u02d5\u02d6\7a\2\2\u02d6\u02d7\7x\2\2\u02d7"+ + "\u02d8\7u\2\2\u02d8\u00d6\3\2\2\2\u02d9\u02da\7k\2\2\u02da\u02db\7h\2"+ + "\2\u02db\u02dc\7a\2\2\u02dc\u02dd\7x\2\2\u02dd\u02de\7e\2\2\u02de\u00d8"+ + "\3\2\2\2\u02df\u02e0\7h\2\2\u02e0\u02e1\7q\2\2\u02e1\u02e2\7t\2\2\u02e2"+ + "\u00da\3\2\2\2\u02e3\u02e4\7k\2\2\u02e4\u02e5\7p\2\2\u02e5\u00dc\3\2\2"+ + "\2\u02e6\u02e7\7y\2\2\u02e7\u02e8\7j\2\2\u02e8\u02e9\7k\2\2\u02e9\u02ea"+ + "\7n\2\2\u02ea\u02eb\7g\2\2\u02eb\u00de\3\2\2\2\u02ec\u02ed\7t\2\2\u02ed"+ + "\u02ee\7g\2\2\u02ee\u02ef\7r\2\2\u02ef\u02f0\7g\2\2\u02f0\u02f1\7c\2\2"+ + "\u02f1\u02f2\7v\2\2\u02f2\u00e0\3\2\2\2\u02f3\u02f4\7w\2\2\u02f4\u02f5"+ + "\7p\2\2\u02f5\u02f6\7v\2\2\u02f6\u02f7\7k\2\2\u02f7\u02f8\7n\2\2\u02f8"+ + "\u00e2\3\2\2\2\u02f9\u02fd\t\2\2\2\u02fa\u02fc\t\3\2\2\u02fb\u02fa\3\2"+ + "\2\2\u02fc\u02ff\3\2\2\2\u02fd\u02fb\3\2\2\2\u02fd\u02fe\3\2\2\2\u02fe"+ + "\u0300\3\2\2\2\u02ff\u02fd\3\2\2\2\u0300\u0301\5\u00e5s\2\u0301\u0302"+ + "\3\2\2\2\u0302\u0303\br\2\2\u0303\u00e4\3\2\2\2\u0304\u0308\7=\2\2\u0305"+ + "\u0307\n\2\2\2\u0306\u0305\3\2\2\2\u0307\u030a\3\2\2\2\u0308\u0306\3\2"+ + "\2\2\u0308\u0309\3\2\2\2\u0309\u030b\3\2\2\2\u030a\u0308\3\2\2\2\u030b"+ + "\u030c\bs\2\2\u030c\u00e6\3\2\2\2\u030d\u030e\t\3\2\2\u030e\u030f\3\2"+ + "\2\2\u030f\u0310\bt\3\2\u0310\u00e8\3\2\2\2\u0311\u0313\t\2\2\2\u0312"+ + "\u0311\3\2\2\2\u0313\u0314\3\2\2\2\u0314\u0312\3\2\2\2\u0314\u0315\3\2"+ + "\2\2\u0315\u00ea\3\2\2\2\u0316\u031a\t\4\2\2\u0317\u0319\t\5\2\2\u0318"+ + "\u0317\3\2\2\2\u0319\u031c\3\2\2\2\u031a\u0318\3\2\2\2\u031a\u031b\3\2"+ + "\2\2\u031b\u00ec\3\2\2\2\u031c\u031a\3\2\2\2\u031d\u0325\4\62;\2\u031e"+ + "\u0320\4\63;\2\u031f\u0321\4\62;\2\u0320\u031f\3\2\2\2\u0321\u0322\3\2"+ + "\2\2\u0322\u0320\3\2\2\2\u0322\u0323\3\2\2\2\u0323\u0325\3\2\2\2\u0324"+ + "\u031d\3\2\2\2\u0324\u031e\3\2\2\2\u0325\u00ee\3\2\2\2\u0326\u0328\7&"+ + "\2\2\u0327\u0329\t\6\2\2\u0328\u0327\3\2\2\2\u0329\u032a\3\2\2\2\u032a"+ + "\u0328\3\2\2\2\u032a\u032b\3\2\2\2\u032b\u00f0\3\2\2\2\u032c\u032e\7\'"+ + "\2\2\u032d\u032f\4\62\63\2\u032e\u032d\3\2\2\2\u032f\u0330\3\2\2\2\u0330"+ + "\u032e\3\2\2\2\u0330\u0331\3\2\2\2\u0331\u00f2\3\2\2\2\u0332\u0338\5\u00f5"+ + "{\2\u0333\u0335\t\7\2\2\u0334\u0336\t\b\2\2\u0335\u0334\3\2\2\2\u0335"+ + "\u0336\3\2\2\2\u0336\u0337\3\2\2\2\u0337\u0339\5\u00f5{\2\u0338\u0333"+ + "\3\2\2\2\u0338\u0339\3\2\2\2\u0339\u00f4\3\2\2\2\u033a\u033c\4\62;\2\u033b"+ + "\u033a\3\2\2\2\u033c\u033d\3\2\2\2\u033d\u033b\3\2\2\2\u033d\u033e\3\2"+ + "\2\2\u033e\u0345\3\2\2\2\u033f\u0341\7\60\2\2\u0340\u0342\4\62;\2\u0341"+ + "\u0340\3\2\2\2\u0342\u0343\3\2\2\2\u0343\u0341\3\2\2\2\u0343\u0344\3\2"+ + "\2\2\u0344\u0346\3\2\2\2\u0345\u033f\3\2\2\2\u0345\u0346\3\2\2\2\u0346"+ + "\u00f6\3\2\2\2\u0347\u0348\7^\2\2\u0348\u034c\13\2\2\2\u0349\u034a\7^"+ + "\2\2\u034a\u034c\5\u00e9u\2\u034b\u0347\3\2\2\2\u034b\u0349\3\2\2\2\u034c"+ + "\u00f8\3\2\2\2\u034d\u0352\7$\2\2\u034e\u0351\5\u00f7|\2\u034f\u0351\n"+ + "\t\2\2\u0350\u034e\3\2\2\2\u0350\u034f\3\2\2\2\u0351\u0354\3\2\2\2\u0352"+ + "\u0350\3\2\2\2\u0352\u0353\3\2\2\2\u0353\u0355\3\2\2\2\u0354\u0352\3\2"+ + "\2\2\u0355\u0356\7$\2\2\u0356\u0357\b}\4\2\u0357\u00fa\3\2\2\2\u0358\u0359"+ + "\7}\2\2\u0359\u035a\7}\2\2\u035a\u035c\3\2\2\2\u035b\u035d\13\2\2\2\u035c"+ + "\u035b\3\2\2\2\u035d\u035e\3\2\2\2\u035e\u035f\3\2\2\2\u035e\u035c\3\2"+ + "\2\2\u035f\u0360\3\2\2\2\u0360\u0361\7\177\2\2\u0361\u0362\7\177\2\2\u0362"+ + "\u0363\3\2\2\2\u0363\u0364\b~\5\2\u0364\u00fc\3\2\2\2\u0365\u0368\7)\2"+ + "\2\u0366\u0369\5\u00f7|\2\u0367\u0369\n\t\2\2\u0368\u0366\3\2\2\2\u0368"+ + "\u0367\3\2\2\2\u0369\u036a\3\2\2\2\u036a\u036b\7)\2\2\u036b\u036c\b\177"+ + "\6\2\u036c\u00fe\3\2\2\2\26\2\u02fd\u0308\u0314\u031a\u0322\u0324\u0328"+ + "\u032a\u0330\u0335\u0338\u033d\u0343\u0345\u034b\u0350\u0352\u035e\u0368"+ + "\7\2\3\2\b\2\2\3}\2\3~\3\3\177\4"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff --git a/compiler/src/prog8/parser/prog8Parser.java b/compiler/src/prog8/parser/prog8Parser.java index 639bfd022..87c7d8f86 100644 --- a/compiler/src/prog8/parser/prog8Parser.java +++ b/compiler/src/prog8/parser/prog8Parser.java @@ -32,10 +32,9 @@ public class prog8Parser extends Parser { T__87=88, T__88=89, T__89=90, T__90=91, T__91=92, T__92=93, T__93=94, T__94=95, T__95=96, T__96=97, T__97=98, T__98=99, T__99=100, T__100=101, T__101=102, T__102=103, T__103=104, T__104=105, T__105=106, T__106=107, - T__107=108, T__108=109, T__109=110, T__110=111, T__111=112, T__112=113, - T__113=114, LINECOMMENT=115, COMMENT=116, WS=117, EOL=118, NAME=119, DEC_INTEGER=120, - HEX_INTEGER=121, BIN_INTEGER=122, FLOAT_NUMBER=123, STRING=124, INLINEASMBLOCK=125, - SINGLECHAR=126; + T__107=108, T__108=109, T__109=110, T__110=111, T__111=112, LINECOMMENT=113, + COMMENT=114, WS=115, EOL=116, NAME=117, DEC_INTEGER=118, HEX_INTEGER=119, + BIN_INTEGER=120, FLOAT_NUMBER=121, STRING=122, INLINEASMBLOCK=123, SINGLECHAR=124; public static final int RULE_module = 0, RULE_modulestatement = 1, RULE_block = 2, RULE_statement = 3, RULE_labeldef = 4, RULE_unconditionaljump = 5, RULE_directive = 6, RULE_directivearg = 7, @@ -80,17 +79,17 @@ public class prog8Parser extends Parser { "'%zpreserved'", "'%address'", "'%import'", "'%breakpoint'", "'%asminclude'", "'%asmbinary'", "'%option'", "','", "'='", "'const'", "'memory'", "'ubyte'", "'byte'", "'uword'", "'word'", "'float'", "'str'", "'str_p'", "'str_s'", - "'str_ps'", "'['", "']'", "'+='", "'-='", "'/='", "'//='", "'*='", "'**='", - "'&='", "'|='", "'^='", "'%='", "'<<='", "'>>='", "'++'", "'--'", "'+'", - "'-'", "'**'", "'*'", "'/'", "'//'", "'%'", "'<<'", "'>>'", "'<'", "'>'", - "'<='", "'>='", "'=='", "'!='", "'&'", "'^'", "'|'", "'to'", "'step'", - "'and'", "'or'", "'xor'", "'not'", "'('", "')'", "'as'", "'@'", "'return'", - "'break'", "'continue'", "'.'", "'A'", "'X'", "'Y'", "'AX'", "'AY'", - "'XY'", "'Pc'", "'Pz'", "'Pn'", "'Pv'", "'.w'", "'true'", "'false'", - "'%asm'", "'sub'", "'->'", "'{'", "'}'", "'asmsub'", "'clobbers'", "'stack'", - "'if'", "'else'", "'if_cs'", "'if_cc'", "'if_eq'", "'if_z'", "'if_ne'", - "'if_nz'", "'if_pl'", "'if_pos'", "'if_mi'", "'if_neg'", "'if_vs'", "'if_vc'", - "'for'", "'in'", "'while'", "'repeat'", "'until'" + "'str_ps'", "'['", "']'", "'+='", "'-='", "'/='", "'*='", "'**='", "'&='", + "'|='", "'^='", "'%='", "'<<='", "'>>='", "'++'", "'--'", "'+'", "'-'", + "'**'", "'*'", "'/'", "'%'", "'<<'", "'>>'", "'<'", "'>'", "'<='", "'>='", + "'=='", "'!='", "'&'", "'^'", "'|'", "'to'", "'step'", "'and'", "'or'", + "'xor'", "'not'", "'('", "')'", "'as'", "'@'", "'return'", "'break'", + "'continue'", "'.'", "'A'", "'X'", "'Y'", "'AX'", "'AY'", "'XY'", "'Pc'", + "'Pz'", "'Pn'", "'Pv'", "'.w'", "'true'", "'false'", "'%asm'", "'sub'", + "'->'", "'{'", "'}'", "'asmsub'", "'clobbers'", "'stack'", "'if'", "'else'", + "'if_cs'", "'if_cc'", "'if_eq'", "'if_z'", "'if_ne'", "'if_nz'", "'if_pl'", + "'if_pos'", "'if_mi'", "'if_neg'", "'if_vs'", "'if_vc'", "'for'", "'in'", + "'while'", "'repeat'", "'until'" }; } private static final String[] _LITERAL_NAMES = makeLiteralNames(); @@ -105,8 +104,8 @@ public class prog8Parser extends Parser { null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, - null, null, null, null, null, null, null, "LINECOMMENT", "COMMENT", "WS", - "EOL", "NAME", "DEC_INTEGER", "HEX_INTEGER", "BIN_INTEGER", "FLOAT_NUMBER", + null, null, null, null, null, "LINECOMMENT", "COMMENT", "WS", "EOL", + "NAME", "DEC_INTEGER", "HEX_INTEGER", "BIN_INTEGER", "FLOAT_NUMBER", "STRING", "INLINEASMBLOCK", "SINGLECHAR" }; } @@ -328,7 +327,7 @@ public class prog8Parser extends Parser { setState(140); _errHandler.sync(this); _la = _input.LA(1); - if (((((_la - 120)) & ~0x3f) == 0 && ((1L << (_la - 120)) & ((1L << (DEC_INTEGER - 120)) | (1L << (HEX_INTEGER - 120)) | (1L << (BIN_INTEGER - 120)))) != 0)) { + if (((((_la - 118)) & ~0x3f) == 0 && ((1L << (_la - 118)) & ((1L << (DEC_INTEGER - 118)) | (1L << (HEX_INTEGER - 118)) | (1L << (BIN_INTEGER - 118)))) != 0)) { { setState(139); integerliteral(); @@ -1192,7 +1191,7 @@ public class prog8Parser extends Parser { setState(235); ((AugassignmentContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); - if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__28) | (1L << T__29) | (1L << T__30) | (1L << T__31) | (1L << T__32) | (1L << T__33) | (1L << T__34) | (1L << T__35) | (1L << T__36) | (1L << T__37) | (1L << T__38) | (1L << T__39))) != 0)) ) { + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__28) | (1L << T__29) | (1L << T__30) | (1L << T__31) | (1L << T__32) | (1L << T__33) | (1L << T__34) | (1L << T__35) | (1L << T__36) | (1L << T__37) | (1L << T__38))) != 0)) ) { ((AugassignmentContext)_localctx).operator = (Token)_errHandler.recoverInline(this); } else { @@ -1305,7 +1304,7 @@ public class prog8Parser extends Parser { setState(245); ((PostincrdecrContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); - if ( !(_la==T__40 || _la==T__41) ) { + if ( !(_la==T__39 || _la==T__40) ) { ((PostincrdecrContext)_localctx).operator = (Token)_errHandler.recoverInline(this); } else { @@ -1397,7 +1396,7 @@ public class prog8Parser extends Parser { setState(249); ((ExpressionContext)_localctx).prefix = _input.LT(1); _la = _input.LA(1); - if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__0) | (1L << T__42) | (1L << T__43))) != 0)) ) { + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__0) | (1L << T__41) | (1L << T__42))) != 0)) ) { ((ExpressionContext)_localctx).prefix = (Token)_errHandler.recoverInline(this); } else { @@ -1412,7 +1411,7 @@ public class prog8Parser extends Parser { case 3: { setState(251); - ((ExpressionContext)_localctx).prefix = match(T__65); + ((ExpressionContext)_localctx).prefix = match(T__63); setState(252); expression(8); } @@ -1450,11 +1449,11 @@ public class prog8Parser extends Parser { case 9: { setState(258); - match(T__66); + match(T__64); setState(259); expression(0); setState(260); - match(T__67); + match(T__65); } break; } @@ -1479,7 +1478,7 @@ public class prog8Parser extends Parser { setState(264); if (!(precpred(_ctx, 21))) throw new FailedPredicateException(this, "precpred(_ctx, 21)"); setState(265); - ((ExpressionContext)_localctx).bop = match(T__44); + ((ExpressionContext)_localctx).bop = match(T__43); setState(266); ((ExpressionContext)_localctx).right = expression(22); } @@ -1495,7 +1494,7 @@ public class prog8Parser extends Parser { setState(268); ((ExpressionContext)_localctx).bop = _input.LT(1); _la = _input.LA(1); - if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__45) | (1L << T__46) | (1L << T__47) | (1L << T__48))) != 0)) ) { + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__44) | (1L << T__45) | (1L << T__46))) != 0)) ) { ((ExpressionContext)_localctx).bop = (Token)_errHandler.recoverInline(this); } else { @@ -1518,7 +1517,7 @@ public class prog8Parser extends Parser { setState(271); ((ExpressionContext)_localctx).bop = _input.LT(1); _la = _input.LA(1); - if ( !(_la==T__42 || _la==T__43) ) { + if ( !(_la==T__41 || _la==T__42) ) { ((ExpressionContext)_localctx).bop = (Token)_errHandler.recoverInline(this); } else { @@ -1541,7 +1540,7 @@ public class prog8Parser extends Parser { setState(274); ((ExpressionContext)_localctx).bop = _input.LT(1); _la = _input.LA(1); - if ( !(_la==T__49 || _la==T__50) ) { + if ( !(_la==T__47 || _la==T__48) ) { ((ExpressionContext)_localctx).bop = (Token)_errHandler.recoverInline(this); } else { @@ -1564,7 +1563,7 @@ public class prog8Parser extends Parser { setState(277); ((ExpressionContext)_localctx).bop = _input.LT(1); _la = _input.LA(1); - if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__51) | (1L << T__52) | (1L << T__53) | (1L << T__54))) != 0)) ) { + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__49) | (1L << T__50) | (1L << T__51) | (1L << T__52))) != 0)) ) { ((ExpressionContext)_localctx).bop = (Token)_errHandler.recoverInline(this); } else { @@ -1587,7 +1586,7 @@ public class prog8Parser extends Parser { setState(280); ((ExpressionContext)_localctx).bop = _input.LT(1); _la = _input.LA(1); - if ( !(_la==T__55 || _la==T__56) ) { + if ( !(_la==T__53 || _la==T__54) ) { ((ExpressionContext)_localctx).bop = (Token)_errHandler.recoverInline(this); } else { @@ -1608,7 +1607,7 @@ public class prog8Parser extends Parser { setState(282); if (!(precpred(_ctx, 15))) throw new FailedPredicateException(this, "precpred(_ctx, 15)"); setState(283); - ((ExpressionContext)_localctx).bop = match(T__57); + ((ExpressionContext)_localctx).bop = match(T__55); setState(284); ((ExpressionContext)_localctx).right = expression(16); } @@ -1622,7 +1621,7 @@ public class prog8Parser extends Parser { setState(285); if (!(precpred(_ctx, 14))) throw new FailedPredicateException(this, "precpred(_ctx, 14)"); setState(286); - ((ExpressionContext)_localctx).bop = match(T__58); + ((ExpressionContext)_localctx).bop = match(T__56); setState(287); ((ExpressionContext)_localctx).right = expression(15); } @@ -1636,7 +1635,7 @@ public class prog8Parser extends Parser { setState(288); if (!(precpred(_ctx, 13))) throw new FailedPredicateException(this, "precpred(_ctx, 13)"); setState(289); - ((ExpressionContext)_localctx).bop = match(T__59); + ((ExpressionContext)_localctx).bop = match(T__57); setState(290); ((ExpressionContext)_localctx).right = expression(14); } @@ -1650,7 +1649,7 @@ public class prog8Parser extends Parser { setState(291); if (!(precpred(_ctx, 11))) throw new FailedPredicateException(this, "precpred(_ctx, 11)"); setState(292); - ((ExpressionContext)_localctx).bop = match(T__62); + ((ExpressionContext)_localctx).bop = match(T__60); setState(293); ((ExpressionContext)_localctx).right = expression(12); } @@ -1664,7 +1663,7 @@ public class prog8Parser extends Parser { setState(294); if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)"); setState(295); - ((ExpressionContext)_localctx).bop = match(T__63); + ((ExpressionContext)_localctx).bop = match(T__61); setState(296); ((ExpressionContext)_localctx).right = expression(11); } @@ -1678,7 +1677,7 @@ public class prog8Parser extends Parser { setState(297); if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)"); setState(298); - ((ExpressionContext)_localctx).bop = match(T__64); + ((ExpressionContext)_localctx).bop = match(T__62); setState(299); ((ExpressionContext)_localctx).right = expression(10); } @@ -1692,7 +1691,7 @@ public class prog8Parser extends Parser { setState(300); if (!(precpred(_ctx, 12))) throw new FailedPredicateException(this, "precpred(_ctx, 12)"); setState(301); - match(T__60); + match(T__58); setState(302); ((ExpressionContext)_localctx).rangeto = expression(0); setState(305); @@ -1701,7 +1700,7 @@ public class prog8Parser extends Parser { case 1: { setState(303); - match(T__61); + match(T__59); setState(304); ((ExpressionContext)_localctx).rangestep = expression(0); } @@ -1756,7 +1755,7 @@ public class prog8Parser extends Parser { enterOuterAlt(_localctx, 1); { setState(314); - match(T__68); + match(T__66); setState(315); datatype(); } @@ -1825,13 +1824,13 @@ public class prog8Parser extends Parser { enterOuterAlt(_localctx, 1); { setState(320); - match(T__69); + match(T__67); setState(321); - match(T__66); + match(T__64); setState(322); expression(0); setState(323); - match(T__67); + match(T__65); } } catch (RecognitionException re) { @@ -1868,11 +1867,11 @@ public class prog8Parser extends Parser { setState(325); scoped_identifier(); setState(326); - match(T__66); + match(T__64); setState(328); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__0) | (1L << T__26) | (1L << T__42) | (1L << T__43))) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & ((1L << (T__65 - 66)) | (1L << (T__66 - 66)) | (1L << (T__69 - 66)) | (1L << (T__74 - 66)) | (1L << (T__75 - 66)) | (1L << (T__76 - 66)) | (1L << (T__85 - 66)) | (1L << (T__86 - 66)) | (1L << (NAME - 66)) | (1L << (DEC_INTEGER - 66)) | (1L << (HEX_INTEGER - 66)) | (1L << (BIN_INTEGER - 66)) | (1L << (FLOAT_NUMBER - 66)) | (1L << (STRING - 66)) | (1L << (SINGLECHAR - 66)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__0) | (1L << T__26) | (1L << T__41) | (1L << T__42))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (T__63 - 64)) | (1L << (T__64 - 64)) | (1L << (T__67 - 64)) | (1L << (T__72 - 64)) | (1L << (T__73 - 64)) | (1L << (T__74 - 64)) | (1L << (T__83 - 64)) | (1L << (T__84 - 64)) | (1L << (NAME - 64)) | (1L << (DEC_INTEGER - 64)) | (1L << (HEX_INTEGER - 64)) | (1L << (BIN_INTEGER - 64)) | (1L << (FLOAT_NUMBER - 64)) | (1L << (STRING - 64)) | (1L << (SINGLECHAR - 64)))) != 0)) { { setState(327); expression_list(); @@ -1880,7 +1879,7 @@ public class prog8Parser extends Parser { } setState(330); - match(T__67); + match(T__65); } } catch (RecognitionException re) { @@ -1917,11 +1916,11 @@ public class prog8Parser extends Parser { setState(332); scoped_identifier(); setState(333); - match(T__66); + match(T__64); setState(335); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__0) | (1L << T__26) | (1L << T__42) | (1L << T__43))) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & ((1L << (T__65 - 66)) | (1L << (T__66 - 66)) | (1L << (T__69 - 66)) | (1L << (T__74 - 66)) | (1L << (T__75 - 66)) | (1L << (T__76 - 66)) | (1L << (T__85 - 66)) | (1L << (T__86 - 66)) | (1L << (NAME - 66)) | (1L << (DEC_INTEGER - 66)) | (1L << (HEX_INTEGER - 66)) | (1L << (BIN_INTEGER - 66)) | (1L << (FLOAT_NUMBER - 66)) | (1L << (STRING - 66)) | (1L << (SINGLECHAR - 66)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__0) | (1L << T__26) | (1L << T__41) | (1L << T__42))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (T__63 - 64)) | (1L << (T__64 - 64)) | (1L << (T__67 - 64)) | (1L << (T__72 - 64)) | (1L << (T__73 - 64)) | (1L << (T__74 - 64)) | (1L << (T__83 - 64)) | (1L << (T__84 - 64)) | (1L << (NAME - 64)) | (1L << (DEC_INTEGER - 64)) | (1L << (HEX_INTEGER - 64)) | (1L << (BIN_INTEGER - 64)) | (1L << (FLOAT_NUMBER - 64)) | (1L << (STRING - 64)) | (1L << (SINGLECHAR - 64)))) != 0)) { { setState(334); expression_list(); @@ -1929,7 +1928,7 @@ public class prog8Parser extends Parser { } setState(337); - match(T__67); + match(T__65); } } catch (RecognitionException re) { @@ -2025,7 +2024,7 @@ public class prog8Parser extends Parser { enterOuterAlt(_localctx, 1); { setState(350); - match(T__70); + match(T__68); setState(352); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,22,_ctx) ) { @@ -2063,7 +2062,7 @@ public class prog8Parser extends Parser { enterOuterAlt(_localctx, 1); { setState(354); - match(T__71); + match(T__69); } } catch (RecognitionException re) { @@ -2091,7 +2090,7 @@ public class prog8Parser extends Parser { enterOuterAlt(_localctx, 1); { setState(356); - match(T__72); + match(T__70); } } catch (RecognitionException re) { @@ -2162,7 +2161,7 @@ public class prog8Parser extends Parser { { { setState(361); - match(T__73); + match(T__71); setState(362); match(NAME); } @@ -2201,7 +2200,7 @@ public class prog8Parser extends Parser { { setState(368); _la = _input.LA(1); - if ( !(((((_la - 75)) & ~0x3f) == 0 && ((1L << (_la - 75)) & ((1L << (T__74 - 75)) | (1L << (T__75 - 75)) | (1L << (T__76 - 75)))) != 0)) ) { + if ( !(((((_la - 73)) & ~0x3f) == 0 && ((1L << (_la - 73)) & ((1L << (T__72 - 73)) | (1L << (T__73 - 73)) | (1L << (T__74 - 73)))) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -2238,7 +2237,7 @@ public class prog8Parser extends Parser { { setState(370); _la = _input.LA(1); - if ( !(((((_la - 75)) & ~0x3f) == 0 && ((1L << (_la - 75)) & ((1L << (T__74 - 75)) | (1L << (T__75 - 75)) | (1L << (T__76 - 75)) | (1L << (T__77 - 75)) | (1L << (T__78 - 75)) | (1L << (T__79 - 75)))) != 0)) ) { + if ( !(((((_la - 73)) & ~0x3f) == 0 && ((1L << (_la - 73)) & ((1L << (T__72 - 73)) | (1L << (T__73 - 73)) | (1L << (T__74 - 73)) | (1L << (T__75 - 73)) | (1L << (T__76 - 73)) | (1L << (T__77 - 73)))) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -2275,7 +2274,7 @@ public class prog8Parser extends Parser { { setState(372); _la = _input.LA(1); - if ( !(((((_la - 81)) & ~0x3f) == 0 && ((1L << (_la - 81)) & ((1L << (T__80 - 81)) | (1L << (T__81 - 81)) | (1L << (T__82 - 81)) | (1L << (T__83 - 81)))) != 0)) ) { + if ( !(((((_la - 79)) & ~0x3f) == 0 && ((1L << (_la - 79)) & ((1L << (T__78 - 79)) | (1L << (T__79 - 79)) | (1L << (T__80 - 79)) | (1L << (T__81 - 79)))) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -2320,7 +2319,7 @@ public class prog8Parser extends Parser { setState(374); ((IntegerliteralContext)_localctx).intpart = _input.LT(1); _la = _input.LA(1); - if ( !(((((_la - 120)) & ~0x3f) == 0 && ((1L << (_la - 120)) & ((1L << (DEC_INTEGER - 120)) | (1L << (HEX_INTEGER - 120)) | (1L << (BIN_INTEGER - 120)))) != 0)) ) { + if ( !(((((_la - 118)) & ~0x3f) == 0 && ((1L << (_la - 118)) & ((1L << (DEC_INTEGER - 118)) | (1L << (HEX_INTEGER - 118)) | (1L << (BIN_INTEGER - 118)))) != 0)) ) { ((IntegerliteralContext)_localctx).intpart = (Token)_errHandler.recoverInline(this); } else { @@ -2365,7 +2364,7 @@ public class prog8Parser extends Parser { enterOuterAlt(_localctx, 1); { setState(378); - match(T__84); + match(T__82); } } catch (RecognitionException re) { @@ -2395,7 +2394,7 @@ public class prog8Parser extends Parser { { setState(380); _la = _input.LA(1); - if ( !(_la==T__85 || _la==T__86) ) { + if ( !(_la==T__83 || _la==T__84) ) { _errHandler.recoverInline(this); } else { @@ -2633,8 +2632,8 @@ public class prog8Parser extends Parser { integerliteral(); } break; - case T__85: - case T__86: + case T__83: + case T__84: enterOuterAlt(_localctx, 2); { setState(409); @@ -2699,7 +2698,7 @@ public class prog8Parser extends Parser { enterOuterAlt(_localctx, 1); { setState(416); - match(T__87); + match(T__85); setState(417); match(INLINEASMBLOCK); } @@ -2743,11 +2742,11 @@ public class prog8Parser extends Parser { enterOuterAlt(_localctx, 1); { setState(419); - match(T__88); + match(T__86); setState(420); identifier(); setState(421); - match(T__66); + match(T__64); setState(423); _errHandler.sync(this); _la = _input.LA(1); @@ -2759,11 +2758,11 @@ public class prog8Parser extends Parser { } setState(425); - match(T__67); + match(T__65); setState(427); _errHandler.sync(this); _la = _input.LA(1); - if (_la==T__89) { + if (_la==T__87) { { setState(426); sub_return_part(); @@ -2806,7 +2805,7 @@ public class prog8Parser extends Parser { enterOuterAlt(_localctx, 1); { setState(432); - match(T__89); + match(T__87); setState(433); sub_returns(); } @@ -2847,13 +2846,13 @@ public class prog8Parser extends Parser { enterOuterAlt(_localctx, 1); { setState(435); - match(T__90); + match(T__88); setState(436); match(EOL); setState(441); _errHandler.sync(this); _la = _input.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__2) | (1L << T__3) | (1L << T__4) | (1L << T__5) | (1L << T__6) | (1L << T__7) | (1L << T__8) | (1L << T__9) | (1L << T__10) | (1L << T__11) | (1L << T__12) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20) | (1L << T__21) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25))) != 0) || ((((_la - 70)) & ~0x3f) == 0 && ((1L << (_la - 70)) & ((1L << (T__69 - 70)) | (1L << (T__70 - 70)) | (1L << (T__71 - 70)) | (1L << (T__72 - 70)) | (1L << (T__74 - 70)) | (1L << (T__75 - 70)) | (1L << (T__76 - 70)) | (1L << (T__87 - 70)) | (1L << (T__88 - 70)) | (1L << (T__92 - 70)) | (1L << (T__95 - 70)) | (1L << (T__97 - 70)) | (1L << (T__98 - 70)) | (1L << (T__99 - 70)) | (1L << (T__100 - 70)) | (1L << (T__101 - 70)) | (1L << (T__102 - 70)) | (1L << (T__103 - 70)) | (1L << (T__104 - 70)) | (1L << (T__105 - 70)) | (1L << (T__106 - 70)) | (1L << (T__107 - 70)) | (1L << (T__108 - 70)) | (1L << (T__109 - 70)) | (1L << (T__111 - 70)) | (1L << (T__112 - 70)) | (1L << (EOL - 70)) | (1L << (NAME - 70)))) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__2) | (1L << T__3) | (1L << T__4) | (1L << T__5) | (1L << T__6) | (1L << T__7) | (1L << T__8) | (1L << T__9) | (1L << T__10) | (1L << T__11) | (1L << T__12) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20) | (1L << T__21) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25))) != 0) || ((((_la - 68)) & ~0x3f) == 0 && ((1L << (_la - 68)) & ((1L << (T__67 - 68)) | (1L << (T__68 - 68)) | (1L << (T__69 - 68)) | (1L << (T__70 - 68)) | (1L << (T__72 - 68)) | (1L << (T__73 - 68)) | (1L << (T__74 - 68)) | (1L << (T__85 - 68)) | (1L << (T__86 - 68)) | (1L << (T__90 - 68)) | (1L << (T__93 - 68)) | (1L << (T__95 - 68)) | (1L << (T__96 - 68)) | (1L << (T__97 - 68)) | (1L << (T__98 - 68)) | (1L << (T__99 - 68)) | (1L << (T__100 - 68)) | (1L << (T__101 - 68)) | (1L << (T__102 - 68)) | (1L << (T__103 - 68)) | (1L << (T__104 - 68)) | (1L << (T__105 - 68)) | (1L << (T__106 - 68)) | (1L << (T__107 - 68)) | (1L << (T__109 - 68)) | (1L << (T__110 - 68)) | (1L << (EOL - 68)) | (1L << (NAME - 68)))) != 0)) { { setState(439); _errHandler.sync(this); @@ -2880,17 +2879,19 @@ public class prog8Parser extends Parser { case T__23: case T__24: case T__25: + case T__67: + case T__68: case T__69: case T__70: - case T__71: case T__72: + case T__73: case T__74: - case T__75: - case T__76: - case T__87: - case T__88: - case T__92: + case T__85: + case T__86: + case T__90: + case T__93: case T__95: + case T__96: case T__97: case T__98: case T__99: @@ -2902,10 +2903,8 @@ public class prog8Parser extends Parser { case T__105: case T__106: case T__107: - case T__108: case T__109: - case T__111: - case T__112: + case T__110: case NAME: { setState(437); @@ -2927,7 +2926,7 @@ public class prog8Parser extends Parser { _la = _input.LA(1); } setState(444); - match(T__91); + match(T__89); } } catch (RecognitionException re) { @@ -3104,11 +3103,11 @@ public class prog8Parser extends Parser { enterOuterAlt(_localctx, 1); { setState(468); - match(T__92); + match(T__90); setState(469); identifier(); setState(470); - match(T__66); + match(T__64); setState(472); _errHandler.sync(this); _la = _input.LA(1); @@ -3120,17 +3119,17 @@ public class prog8Parser extends Parser { } setState(474); - match(T__67); + match(T__65); setState(475); - match(T__89); + match(T__87); setState(476); - match(T__93); + match(T__91); setState(477); - match(T__66); + match(T__64); setState(479); _errHandler.sync(this); _la = _input.LA(1); - if (((((_la - 75)) & ~0x3f) == 0 && ((1L << (_la - 75)) & ((1L << (T__74 - 75)) | (1L << (T__75 - 75)) | (1L << (T__76 - 75)))) != 0)) { + if (((((_la - 73)) & ~0x3f) == 0 && ((1L << (_la - 73)) & ((1L << (T__72 - 73)) | (1L << (T__73 - 73)) | (1L << (T__74 - 73)))) != 0)) { { setState(478); clobber(); @@ -3138,11 +3137,11 @@ public class prog8Parser extends Parser { } setState(481); - match(T__67); + match(T__65); setState(482); - match(T__89); + match(T__87); setState(483); - match(T__66); + match(T__64); setState(485); _errHandler.sync(this); _la = _input.LA(1); @@ -3154,7 +3153,7 @@ public class prog8Parser extends Parser { } setState(487); - match(T__67); + match(T__65); setState(490); _errHandler.sync(this); switch (_input.LA(1)) { @@ -3164,7 +3163,7 @@ public class prog8Parser extends Parser { asmsub_address(); } break; - case T__90: + case T__88: { setState(489); statement_block(); @@ -3311,34 +3310,34 @@ public class prog8Parser extends Parser { setState(506); vardecl(); setState(507); - match(T__69); + match(T__67); setState(511); _errHandler.sync(this); switch (_input.LA(1)) { + case T__72: + case T__73: case T__74: case T__75: case T__76: case T__77: - case T__78: - case T__79: { setState(508); registerorpair(); } break; + case T__78: + case T__79: case T__80: case T__81: - case T__82: - case T__83: { setState(509); statusregister(); } break; - case T__94: + case T__92: { setState(510); - ((Asmsub_paramContext)_localctx).stack = match(T__94); + ((Asmsub_paramContext)_localctx).stack = match(T__92); } break; default: @@ -3499,34 +3498,34 @@ public class prog8Parser extends Parser { setState(532); datatype(); setState(533); - match(T__69); + match(T__67); setState(537); _errHandler.sync(this); switch (_input.LA(1)) { + case T__72: + case T__73: case T__74: case T__75: case T__76: case T__77: - case T__78: - case T__79: { setState(534); registerorpair(); } break; + case T__78: + case T__79: case T__80: case T__81: - case T__82: - case T__83: { setState(535); statusregister(); } break; - case T__94: + case T__92: { setState(536); - ((Asmsub_returnContext)_localctx).stack = match(T__94); + ((Asmsub_returnContext)_localctx).stack = match(T__92); } break; default: @@ -3576,7 +3575,7 @@ public class prog8Parser extends Parser { enterOuterAlt(_localctx, 1); { setState(539); - match(T__95); + match(T__93); setState(540); expression(0); setState(542); @@ -3614,17 +3613,19 @@ public class prog8Parser extends Parser { case T__23: case T__24: case T__25: + case T__67: + case T__68: case T__69: case T__70: - case T__71: case T__72: + case T__73: case T__74: - case T__75: - case T__76: - case T__87: - case T__88: - case T__92: + case T__85: + case T__86: + case T__90: + case T__93: case T__95: + case T__96: case T__97: case T__98: case T__99: @@ -3636,17 +3637,15 @@ public class prog8Parser extends Parser { case T__105: case T__106: case T__107: - case T__108: case T__109: - case T__111: - case T__112: + case T__110: case NAME: { setState(544); statement(); } break; - case T__90: + case T__88: { setState(545); statement_block(); @@ -3710,7 +3709,7 @@ public class prog8Parser extends Parser { enterOuterAlt(_localctx, 1); { setState(554); - match(T__96); + match(T__94); setState(556); _errHandler.sync(this); _la = _input.LA(1); @@ -3746,17 +3745,19 @@ public class prog8Parser extends Parser { case T__23: case T__24: case T__25: + case T__67: + case T__68: case T__69: case T__70: - case T__71: case T__72: + case T__73: case T__74: - case T__75: - case T__76: - case T__87: - case T__88: - case T__92: + case T__85: + case T__86: + case T__90: + case T__93: case T__95: + case T__96: case T__97: case T__98: case T__99: @@ -3768,17 +3769,15 @@ public class prog8Parser extends Parser { case T__105: case T__106: case T__107: - case T__108: case T__109: - case T__111: - case T__112: + case T__110: case NAME: { setState(558); statement(); } break; - case T__90: + case T__88: { setState(559); statement_block(); @@ -3867,17 +3866,19 @@ public class prog8Parser extends Parser { case T__23: case T__24: case T__25: + case T__67: + case T__68: case T__69: case T__70: - case T__71: case T__72: + case T__73: case T__74: - case T__75: - case T__76: - case T__87: - case T__88: - case T__92: + case T__85: + case T__86: + case T__90: + case T__93: case T__95: + case T__96: case T__97: case T__98: case T__99: @@ -3889,17 +3890,15 @@ public class prog8Parser extends Parser { case T__105: case T__106: case T__107: - case T__108: case T__109: - case T__111: - case T__112: + case T__110: case NAME: { setState(566); statement(); } break; - case T__90: + case T__88: { setState(567); statement_block(); @@ -3921,7 +3920,7 @@ public class prog8Parser extends Parser { setState(574); _errHandler.sync(this); _la = _input.LA(1); - if (_la==T__96) { + if (_la==T__94) { { setState(573); else_part(); @@ -3959,7 +3958,7 @@ public class prog8Parser extends Parser { { setState(578); _la = _input.LA(1); - if ( !(((((_la - 98)) & ~0x3f) == 0 && ((1L << (_la - 98)) & ((1L << (T__97 - 98)) | (1L << (T__98 - 98)) | (1L << (T__99 - 98)) | (1L << (T__100 - 98)) | (1L << (T__101 - 98)) | (1L << (T__102 - 98)) | (1L << (T__103 - 98)) | (1L << (T__104 - 98)) | (1L << (T__105 - 98)) | (1L << (T__106 - 98)) | (1L << (T__107 - 98)) | (1L << (T__108 - 98)))) != 0)) ) { + if ( !(((((_la - 96)) & ~0x3f) == 0 && ((1L << (_la - 96)) & ((1L << (T__95 - 96)) | (1L << (T__96 - 96)) | (1L << (T__97 - 96)) | (1L << (T__98 - 96)) | (1L << (T__99 - 96)) | (1L << (T__100 - 96)) | (1L << (T__101 - 96)) | (1L << (T__102 - 96)) | (1L << (T__103 - 96)) | (1L << (T__104 - 96)) | (1L << (T__105 - 96)) | (1L << (T__106 - 96)))) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -4011,7 +4010,7 @@ public class prog8Parser extends Parser { enterOuterAlt(_localctx, 1); { setState(580); - match(T__109); + match(T__107); setState(582); _errHandler.sync(this); _la = _input.LA(1); @@ -4025,9 +4024,9 @@ public class prog8Parser extends Parser { setState(586); _errHandler.sync(this); switch (_input.LA(1)) { + case T__72: + case T__73: case T__74: - case T__75: - case T__76: { setState(584); register(); @@ -4043,7 +4042,7 @@ public class prog8Parser extends Parser { throw new NoViableAltException(this); } setState(588); - match(T__110); + match(T__108); setState(589); expression(0); setState(591); @@ -4096,7 +4095,7 @@ public class prog8Parser extends Parser { enterOuterAlt(_localctx, 1); { setState(595); - match(T__111); + match(T__109); setState(596); expression(0); setState(598); @@ -4134,17 +4133,19 @@ public class prog8Parser extends Parser { case T__23: case T__24: case T__25: + case T__67: + case T__68: case T__69: case T__70: - case T__71: case T__72: + case T__73: case T__74: - case T__75: - case T__76: - case T__87: - case T__88: - case T__92: + case T__85: + case T__86: + case T__90: + case T__93: case T__95: + case T__96: case T__97: case T__98: case T__99: @@ -4156,17 +4157,15 @@ public class prog8Parser extends Parser { case T__105: case T__106: case T__107: - case T__108: case T__109: - case T__111: - case T__112: + case T__110: case NAME: { setState(600); statement(); } break; - case T__90: + case T__88: { setState(601); statement_block(); @@ -4213,7 +4212,7 @@ public class prog8Parser extends Parser { enterOuterAlt(_localctx, 1); { setState(604); - match(T__112); + match(T__110); setState(607); _errHandler.sync(this); switch (_input.LA(1)) { @@ -4239,17 +4238,19 @@ public class prog8Parser extends Parser { case T__23: case T__24: case T__25: + case T__67: + case T__68: case T__69: case T__70: - case T__71: case T__72: + case T__73: case T__74: - case T__75: - case T__76: - case T__87: - case T__88: - case T__92: + case T__85: + case T__86: + case T__90: + case T__93: case T__95: + case T__96: case T__97: case T__98: case T__99: @@ -4261,17 +4262,15 @@ public class prog8Parser extends Parser { case T__105: case T__106: case T__107: - case T__108: case T__109: - case T__111: - case T__112: + case T__110: case NAME: { setState(605); statement(); } break; - case T__90: + case T__88: { setState(606); statement_block(); @@ -4291,7 +4290,7 @@ public class prog8Parser extends Parser { } setState(612); - match(T__113); + match(T__111); setState(613); expression(0); } @@ -4349,9 +4348,9 @@ public class prog8Parser extends Parser { } public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\u0080\u026a\4\2\t"+ - "\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4\13"+ - "\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22\t\22"+ + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3~\u026a\4\2\t\2\4"+ + "\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4\13\t"+ + "\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22\t\22"+ "\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31\t\31"+ "\4\32\t\32\4\33\t\33\4\34\t\34\4\35\t\35\4\36\t\36\4\37\t\37\4 \t \4!"+ "\t!\4\"\t\"\4#\t#\4$\t$\4%\t%\4&\t&\4\'\t\'\4(\t(\4)\t)\4*\t*\4+\t+\4"+ @@ -4395,8 +4394,8 @@ public class prog8Parser extends Parser { "\3=\3=\3>\3>\3>\5>\u0259\n>\3>\3>\5>\u025d\n>\3?\3?\3?\5?\u0262\n?\3?"+ "\5?\u0265\n?\3?\3?\3?\3?\2\3(@\2\4\6\b\n\f\16\20\22\24\26\30\32\34\36"+ " \"$&(*,.\60\62\64\668:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|\2\22\3\2\6\17"+ - "\3\2\24\34\3\2\37*\3\2+,\4\2\3\3-.\3\2\60\63\3\2-.\3\2\64\65\3\2\669\3"+ - "\2:;\3\2MO\3\2MR\3\2SV\3\2z|\3\2XY\3\2do\2\u029d\2\u0082\3\2\2\2\4\u0089"+ + "\3\2\24\34\3\2\37)\3\2*+\4\2\3\3,-\3\2/\61\3\2,-\3\2\62\63\3\2\64\67\3"+ + "\289\3\2KM\3\2KP\3\2QT\3\2xz\3\2VW\3\2bm\2\u029d\2\u0082\3\2\2\2\4\u0089"+ "\3\2\2\2\6\u008b\3\2\2\2\b\u00a9\3\2\2\2\n\u00ab\3\2\2\2\f\u00ae\3\2\2"+ "\2\16\u00b3\3\2\2\2\20\u00c4\3\2\2\2\22\u00c6\3\2\2\2\24\u00cc\3\2\2\2"+ "\26\u00d4\3\2\2\2\30\u00d7\3\2\2\2\32\u00da\3\2\2\2\34\u00dc\3\2\2\2\36"+ @@ -4410,13 +4409,13 @@ public class prog8Parser extends Parser { "^\u01c0\3\2\2\2`\u01cb\3\2\2\2b\u01d6\3\2\2\2d\u01ee\3\2\2\2f\u01f1\3"+ "\2\2\2h\u01fc\3\2\2\2j\u0203\3\2\2\2l\u020b\3\2\2\2n\u0216\3\2\2\2p\u021d"+ "\3\2\2\2r\u022c\3\2\2\2t\u0234\3\2\2\2v\u0244\3\2\2\2x\u0246\3\2\2\2z"+ - "\u0255\3\2\2\2|\u025e\3\2\2\2~\u0081\5\4\3\2\177\u0081\7x\2\2\u0080~\3"+ + "\u0255\3\2\2\2|\u025e\3\2\2\2~\u0081\5\4\3\2\177\u0081\7v\2\2\u0080~\3"+ "\2\2\2\u0080\177\3\2\2\2\u0081\u0084\3\2\2\2\u0082\u0080\3\2\2\2\u0082"+ "\u0083\3\2\2\2\u0083\u0085\3\2\2\2\u0084\u0082\3\2\2\2\u0085\u0086\7\2"+ "\2\3\u0086\3\3\2\2\2\u0087\u008a\5\16\b\2\u0088\u008a\5\6\4\2\u0089\u0087"+ "\3\2\2\2\u0089\u0088\3\2\2\2\u008a\5\3\2\2\2\u008b\u008c\7\3\2\2\u008c"+ "\u008e\5<\37\2\u008d\u008f\5F$\2\u008e\u008d\3\2\2\2\u008e\u008f\3\2\2"+ - "\2\u008f\u0090\3\2\2\2\u0090\u0091\5\\/\2\u0091\u0092\7x\2\2\u0092\7\3"+ + "\2\u008f\u0090\3\2\2\2\u0090\u0091\5\\/\2\u0091\u0092\7v\2\2\u0092\7\3"+ "\2\2\2\u0093\u00aa\5\16\b\2\u0094\u00aa\5\24\13\2\u0095\u00aa\5\22\n\2"+ "\u0096\u00aa\5\26\f\2\u0097\u00aa\5\30\r\2\u0098\u00aa\5\36\20\2\u0099"+ "\u00aa\5\"\22\2\u009a\u00aa\5\f\7\2\u009b\u00aa\5&\24\2\u009c\u00aa\5"+ @@ -4456,133 +4455,132 @@ public class prog8Parser extends Parser { "\3\2\2\2\u00f4\u00f2\3\2\2\2\u00f4\u00f3\3\2\2\2\u00f5%\3\2\2\2\u00f6"+ "\u00f7\5$\23\2\u00f7\u00f8\t\5\2\2\u00f8\'\3\2\2\2\u00f9\u00fa\b\25\1"+ "\2\u00fa\u0109\5\60\31\2\u00fb\u00fc\t\6\2\2\u00fc\u0109\5(\25\30\u00fd"+ - "\u00fe\7D\2\2\u00fe\u0109\5(\25\n\u00ff\u0109\5T+\2\u0100\u0109\5@!\2"+ + "\u00fe\7B\2\2\u00fe\u0109\5(\25\n\u00ff\u0109\5T+\2\u0100\u0109\5@!\2"+ "\u0101\u0109\5> \2\u0102\u0109\5,\27\2\u0103\u0109\5.\30\2\u0104\u0105"+ - "\7E\2\2\u0105\u0106\5(\25\2\u0106\u0107\7F\2\2\u0107\u0109\3\2\2\2\u0108"+ + "\7C\2\2\u0105\u0106\5(\25\2\u0106\u0107\7D\2\2\u0107\u0109\3\2\2\2\u0108"+ "\u00f9\3\2\2\2\u0108\u00fb\3\2\2\2\u0108\u00fd\3\2\2\2\u0108\u00ff\3\2"+ "\2\2\u0108\u0100\3\2\2\2\u0108\u0101\3\2\2\2\u0108\u0102\3\2\2\2\u0108"+ "\u0103\3\2\2\2\u0108\u0104\3\2\2\2\u0109\u0139\3\2\2\2\u010a\u010b\f\27"+ - "\2\2\u010b\u010c\7/\2\2\u010c\u0138\5(\25\30\u010d\u010e\f\26\2\2\u010e"+ + "\2\2\u010b\u010c\7.\2\2\u010c\u0138\5(\25\30\u010d\u010e\f\26\2\2\u010e"+ "\u010f\t\7\2\2\u010f\u0138\5(\25\27\u0110\u0111\f\25\2\2\u0111\u0112\t"+ "\b\2\2\u0112\u0138\5(\25\26\u0113\u0114\f\24\2\2\u0114\u0115\t\t\2\2\u0115"+ "\u0138\5(\25\25\u0116\u0117\f\23\2\2\u0117\u0118\t\n\2\2\u0118\u0138\5"+ "(\25\24\u0119\u011a\f\22\2\2\u011a\u011b\t\13\2\2\u011b\u0138\5(\25\23"+ - "\u011c\u011d\f\21\2\2\u011d\u011e\7<\2\2\u011e\u0138\5(\25\22\u011f\u0120"+ - "\f\20\2\2\u0120\u0121\7=\2\2\u0121\u0138\5(\25\21\u0122\u0123\f\17\2\2"+ - "\u0123\u0124\7>\2\2\u0124\u0138\5(\25\20\u0125\u0126\f\r\2\2\u0126\u0127"+ - "\7A\2\2\u0127\u0138\5(\25\16\u0128\u0129\f\f\2\2\u0129\u012a\7B\2\2\u012a"+ - "\u0138\5(\25\r\u012b\u012c\f\13\2\2\u012c\u012d\7C\2\2\u012d\u0138\5("+ - "\25\f\u012e\u012f\f\16\2\2\u012f\u0130\7?\2\2\u0130\u0133\5(\25\2\u0131"+ - "\u0132\7@\2\2\u0132\u0134\5(\25\2\u0133\u0131\3\2\2\2\u0133\u0134\3\2"+ + "\u011c\u011d\f\21\2\2\u011d\u011e\7:\2\2\u011e\u0138\5(\25\22\u011f\u0120"+ + "\f\20\2\2\u0120\u0121\7;\2\2\u0121\u0138\5(\25\21\u0122\u0123\f\17\2\2"+ + "\u0123\u0124\7<\2\2\u0124\u0138\5(\25\20\u0125\u0126\f\r\2\2\u0126\u0127"+ + "\7?\2\2\u0127\u0138\5(\25\16\u0128\u0129\f\f\2\2\u0129\u012a\7@\2\2\u012a"+ + "\u0138\5(\25\r\u012b\u012c\f\13\2\2\u012c\u012d\7A\2\2\u012d\u0138\5("+ + "\25\f\u012e\u012f\f\16\2\2\u012f\u0130\7=\2\2\u0130\u0133\5(\25\2\u0131"+ + "\u0132\7>\2\2\u0132\u0134\5(\25\2\u0133\u0131\3\2\2\2\u0133\u0134\3\2"+ "\2\2\u0134\u0138\3\2\2\2\u0135\u0136\f\4\2\2\u0136\u0138\5*\26\2\u0137"+ "\u010a\3\2\2\2\u0137\u010d\3\2\2\2\u0137\u0110\3\2\2\2\u0137\u0113\3\2"+ "\2\2\u0137\u0116\3\2\2\2\u0137\u0119\3\2\2\2\u0137\u011c\3\2\2\2\u0137"+ "\u011f\3\2\2\2\u0137\u0122\3\2\2\2\u0137\u0125\3\2\2\2\u0137\u0128\3\2"+ "\2\2\u0137\u012b\3\2\2\2\u0137\u012e\3\2\2\2\u0137\u0135\3\2\2\2\u0138"+ "\u013b\3\2\2\2\u0139\u0137\3\2\2\2\u0139\u013a\3\2\2\2\u013a)\3\2\2\2"+ - "\u013b\u0139\3\2\2\2\u013c\u013d\7G\2\2\u013d\u013e\5\32\16\2\u013e+\3"+ + "\u013b\u0139\3\2\2\2\u013c\u013d\7E\2\2\u013d\u013e\5\32\16\2\u013e+\3"+ "\2\2\2\u013f\u0140\5> \2\u0140\u0141\5\34\17\2\u0141-\3\2\2\2\u0142\u0143"+ - "\7H\2\2\u0143\u0144\7E\2\2\u0144\u0145\5(\25\2\u0145\u0146\7F\2\2\u0146"+ - "/\3\2\2\2\u0147\u0148\5> \2\u0148\u014a\7E\2\2\u0149\u014b\5\64\33\2\u014a"+ - "\u0149\3\2\2\2\u014a\u014b\3\2\2\2\u014b\u014c\3\2\2\2\u014c\u014d\7F"+ - "\2\2\u014d\61\3\2\2\2\u014e\u014f\5> \2\u014f\u0151\7E\2\2\u0150\u0152"+ + "\7F\2\2\u0143\u0144\7C\2\2\u0144\u0145\5(\25\2\u0145\u0146\7D\2\2\u0146"+ + "/\3\2\2\2\u0147\u0148\5> \2\u0148\u014a\7C\2\2\u0149\u014b\5\64\33\2\u014a"+ + "\u0149\3\2\2\2\u014a\u014b\3\2\2\2\u014b\u014c\3\2\2\2\u014c\u014d\7D"+ + "\2\2\u014d\61\3\2\2\2\u014e\u014f\5> \2\u014f\u0151\7C\2\2\u0150\u0152"+ "\5\64\33\2\u0151\u0150\3\2\2\2\u0151\u0152\3\2\2\2\u0152\u0153\3\2\2\2"+ - "\u0153\u0154\7F\2\2\u0154\63\3\2\2\2\u0155\u015d\5(\25\2\u0156\u0158\7"+ - "\20\2\2\u0157\u0159\7x\2\2\u0158\u0157\3\2\2\2\u0158\u0159\3\2\2\2\u0159"+ + "\u0153\u0154\7D\2\2\u0154\63\3\2\2\2\u0155\u015d\5(\25\2\u0156\u0158\7"+ + "\20\2\2\u0157\u0159\7v\2\2\u0158\u0157\3\2\2\2\u0158\u0159\3\2\2\2\u0159"+ "\u015a\3\2\2\2\u015a\u015c\5(\25\2\u015b\u0156\3\2\2\2\u015c\u015f\3\2"+ "\2\2\u015d\u015b\3\2\2\2\u015d\u015e\3\2\2\2\u015e\65\3\2\2\2\u015f\u015d"+ - "\3\2\2\2\u0160\u0162\7I\2\2\u0161\u0163\5\64\33\2\u0162\u0161\3\2\2\2"+ - "\u0162\u0163\3\2\2\2\u0163\67\3\2\2\2\u0164\u0165\7J\2\2\u01659\3\2\2"+ - "\2\u0166\u0167\7K\2\2\u0167;\3\2\2\2\u0168\u0169\7y\2\2\u0169=\3\2\2\2"+ - "\u016a\u016f\7y\2\2\u016b\u016c\7L\2\2\u016c\u016e\7y\2\2\u016d\u016b"+ + "\3\2\2\2\u0160\u0162\7G\2\2\u0161\u0163\5\64\33\2\u0162\u0161\3\2\2\2"+ + "\u0162\u0163\3\2\2\2\u0163\67\3\2\2\2\u0164\u0165\7H\2\2\u01659\3\2\2"+ + "\2\u0166\u0167\7I\2\2\u0167;\3\2\2\2\u0168\u0169\7w\2\2\u0169=\3\2\2\2"+ + "\u016a\u016f\7w\2\2\u016b\u016c\7J\2\2\u016c\u016e\7w\2\2\u016d\u016b"+ "\3\2\2\2\u016e\u0171\3\2\2\2\u016f\u016d\3\2\2\2\u016f\u0170\3\2\2\2\u0170"+ "?\3\2\2\2\u0171\u016f\3\2\2\2\u0172\u0173\t\f\2\2\u0173A\3\2\2\2\u0174"+ "\u0175\t\r\2\2\u0175C\3\2\2\2\u0176\u0177\t\16\2\2\u0177E\3\2\2\2\u0178"+ "\u017a\t\17\2\2\u0179\u017b\5H%\2\u017a\u0179\3\2\2\2\u017a\u017b\3\2"+ - "\2\2\u017bG\3\2\2\2\u017c\u017d\7W\2\2\u017dI\3\2\2\2\u017e\u017f\t\20"+ - "\2\2\u017fK\3\2\2\2\u0180\u0182\7\35\2\2\u0181\u0183\7x\2\2\u0182\u0181"+ + "\2\2\u017bG\3\2\2\2\u017c\u017d\7U\2\2\u017dI\3\2\2\2\u017e\u017f\t\20"+ + "\2\2\u017fK\3\2\2\2\u0180\u0182\7\35\2\2\u0181\u0183\7v\2\2\u0182\u0181"+ "\3\2\2\2\u0182\u0183\3\2\2\2\u0183\u0184\3\2\2\2\u0184\u018c\5(\25\2\u0185"+ - "\u0187\7\20\2\2\u0186\u0188\7x\2\2\u0187\u0186\3\2\2\2\u0187\u0188\3\2"+ + "\u0187\7\20\2\2\u0186\u0188\7v\2\2\u0187\u0186\3\2\2\2\u0187\u0188\3\2"+ "\2\2\u0188\u0189\3\2\2\2\u0189\u018b\5(\25\2\u018a\u0185\3\2\2\2\u018b"+ "\u018e\3\2\2\2\u018c\u018a\3\2\2\2\u018c\u018d\3\2\2\2\u018d\u0190\3\2"+ - "\2\2\u018e\u018c\3\2\2\2\u018f\u0191\7x\2\2\u0190\u018f\3\2\2\2\u0190"+ + "\2\2\u018e\u018c\3\2\2\2\u018f\u0191\7v\2\2\u0190\u018f\3\2\2\2\u0190"+ "\u0191\3\2\2\2\u0191\u0192\3\2\2\2\u0192\u0193\7\36\2\2\u0193M\3\2\2\2"+ - "\u0194\u0195\7~\2\2\u0195O\3\2\2\2\u0196\u0197\7\u0080\2\2\u0197Q\3\2"+ - "\2\2\u0198\u0199\7}\2\2\u0199S\3\2\2\2\u019a\u01a1\5F$\2\u019b\u01a1\5"+ - "J&\2\u019c\u01a1\5L\'\2\u019d\u01a1\5N(\2\u019e\u01a1\5P)\2\u019f\u01a1"+ - "\5R*\2\u01a0\u019a\3\2\2\2\u01a0\u019b\3\2\2\2\u01a0\u019c\3\2\2\2\u01a0"+ - "\u019d\3\2\2\2\u01a0\u019e\3\2\2\2\u01a0\u019f\3\2\2\2\u01a1U\3\2\2\2"+ - "\u01a2\u01a3\7Z\2\2\u01a3\u01a4\7\177\2\2\u01a4W\3\2\2\2\u01a5\u01a6\7"+ - "[\2\2\u01a6\u01a7\5<\37\2\u01a7\u01a9\7E\2\2\u01a8\u01aa\5^\60\2\u01a9"+ - "\u01a8\3\2\2\2\u01a9\u01aa\3\2\2\2\u01aa\u01ab\3\2\2\2\u01ab\u01ad\7F"+ - "\2\2\u01ac\u01ae\5Z.\2\u01ad\u01ac\3\2\2\2\u01ad\u01ae\3\2\2\2\u01ae\u01af"+ - "\3\2\2\2\u01af\u01b0\5\\/\2\u01b0\u01b1\7x\2\2\u01b1Y\3\2\2\2\u01b2\u01b3"+ - "\7\\\2\2\u01b3\u01b4\5`\61\2\u01b4[\3\2\2\2\u01b5\u01b6\7]\2\2\u01b6\u01bb"+ - "\7x\2\2\u01b7\u01ba\5\b\5\2\u01b8\u01ba\7x\2\2\u01b9\u01b7\3\2\2\2\u01b9"+ - "\u01b8\3\2\2\2\u01ba\u01bd\3\2\2\2\u01bb\u01b9\3\2\2\2\u01bb\u01bc\3\2"+ - "\2\2\u01bc\u01be\3\2\2\2\u01bd\u01bb\3\2\2\2\u01be\u01bf\7^\2\2\u01bf"+ - "]\3\2\2\2\u01c0\u01c8\5\22\n\2\u01c1\u01c3\7\20\2\2\u01c2\u01c4\7x\2\2"+ - "\u01c3\u01c2\3\2\2\2\u01c3\u01c4\3\2\2\2\u01c4\u01c5\3\2\2\2\u01c5\u01c7"+ - "\5\22\n\2\u01c6\u01c1\3\2\2\2\u01c7\u01ca\3\2\2\2\u01c8\u01c6\3\2\2\2"+ - "\u01c8\u01c9\3\2\2\2\u01c9_\3\2\2\2\u01ca\u01c8\3\2\2\2\u01cb\u01d3\5"+ - "\32\16\2\u01cc\u01ce\7\20\2\2\u01cd\u01cf\7x\2\2\u01ce\u01cd\3\2\2\2\u01ce"+ - "\u01cf\3\2\2\2\u01cf\u01d0\3\2\2\2\u01d0\u01d2\5\32\16\2\u01d1\u01cc\3"+ - "\2\2\2\u01d2\u01d5\3\2\2\2\u01d3\u01d1\3\2\2\2\u01d3\u01d4\3\2\2\2\u01d4"+ - "a\3\2\2\2\u01d5\u01d3\3\2\2\2\u01d6\u01d7\7_\2\2\u01d7\u01d8\5<\37\2\u01d8"+ - "\u01da\7E\2\2\u01d9\u01db\5f\64\2\u01da\u01d9\3\2\2\2\u01da\u01db\3\2"+ - "\2\2\u01db\u01dc\3\2\2\2\u01dc\u01dd\7F\2\2\u01dd\u01de\7\\\2\2\u01de"+ - "\u01df\7`\2\2\u01df\u01e1\7E\2\2\u01e0\u01e2\5j\66\2\u01e1\u01e0\3\2\2"+ - "\2\u01e1\u01e2\3\2\2\2\u01e2\u01e3\3\2\2\2\u01e3\u01e4\7F\2\2\u01e4\u01e5"+ - "\7\\\2\2\u01e5\u01e7\7E\2\2\u01e6\u01e8\5l\67\2\u01e7\u01e6\3\2\2\2\u01e7"+ - "\u01e8\3\2\2\2\u01e8\u01e9\3\2\2\2\u01e9\u01ec\7F\2\2\u01ea\u01ed\5d\63"+ - "\2\u01eb\u01ed\5\\/\2\u01ec\u01ea\3\2\2\2\u01ec\u01eb\3\2\2\2\u01edc\3"+ - "\2\2\2\u01ee\u01ef\7\21\2\2\u01ef\u01f0\5F$\2\u01f0e\3\2\2\2\u01f1\u01f9"+ - "\5h\65\2\u01f2\u01f4\7\20\2\2\u01f3\u01f5\7x\2\2\u01f4\u01f3\3\2\2\2\u01f4"+ - "\u01f5\3\2\2\2\u01f5\u01f6\3\2\2\2\u01f6\u01f8\5h\65\2\u01f7\u01f2\3\2"+ - "\2\2\u01f8\u01fb\3\2\2\2\u01f9\u01f7\3\2\2\2\u01f9\u01fa\3\2\2\2\u01fa"+ - "g\3\2\2\2\u01fb\u01f9\3\2\2\2\u01fc\u01fd\5\22\n\2\u01fd\u0201\7H\2\2"+ - "\u01fe\u0202\5B\"\2\u01ff\u0202\5D#\2\u0200\u0202\7a\2\2\u0201\u01fe\3"+ - "\2\2\2\u0201\u01ff\3\2\2\2\u0201\u0200\3\2\2\2\u0202i\3\2\2\2\u0203\u0208"+ - "\5@!\2\u0204\u0205\7\20\2\2\u0205\u0207\5@!\2\u0206\u0204\3\2\2\2\u0207"+ - "\u020a\3\2\2\2\u0208\u0206\3\2\2\2\u0208\u0209\3\2\2\2\u0209k\3\2\2\2"+ - "\u020a\u0208\3\2\2\2\u020b\u0213\5n8\2\u020c\u020e\7\20\2\2\u020d\u020f"+ - "\7x\2\2\u020e\u020d\3\2\2\2\u020e\u020f\3\2\2\2\u020f\u0210\3\2\2\2\u0210"+ - "\u0212\5n8\2\u0211\u020c\3\2\2\2\u0212\u0215\3\2\2\2\u0213\u0211\3\2\2"+ - "\2\u0213\u0214\3\2\2\2\u0214m\3\2\2\2\u0215\u0213\3\2\2\2\u0216\u0217"+ - "\5\32\16\2\u0217\u021b\7H\2\2\u0218\u021c\5B\"\2\u0219\u021c\5D#\2\u021a"+ - "\u021c\7a\2\2\u021b\u0218\3\2\2\2\u021b\u0219\3\2\2\2\u021b\u021a\3\2"+ - "\2\2\u021co\3\2\2\2\u021d\u021e\7b\2\2\u021e\u0220\5(\25\2\u021f\u0221"+ - "\7x\2\2\u0220\u021f\3\2\2\2\u0220\u0221\3\2\2\2\u0221\u0224\3\2\2\2\u0222"+ - "\u0225\5\b\5\2\u0223\u0225\5\\/\2\u0224\u0222\3\2\2\2\u0224\u0223\3\2"+ - "\2\2\u0225\u0227\3\2\2\2\u0226\u0228\7x\2\2\u0227\u0226\3\2\2\2\u0227"+ - "\u0228\3\2\2\2\u0228\u022a\3\2\2\2\u0229\u022b\5r:\2\u022a\u0229\3\2\2"+ - "\2\u022a\u022b\3\2\2\2\u022bq\3\2\2\2\u022c\u022e\7c\2\2\u022d\u022f\7"+ - "x\2\2\u022e\u022d\3\2\2\2\u022e\u022f\3\2\2\2\u022f\u0232\3\2\2\2\u0230"+ - "\u0233\5\b\5\2\u0231\u0233\5\\/\2\u0232\u0230\3\2\2\2\u0232\u0231\3\2"+ - "\2\2\u0233s\3\2\2\2\u0234\u0236\5v<\2\u0235\u0237\7x\2\2\u0236\u0235\3"+ - "\2\2\2\u0236\u0237\3\2\2\2\u0237\u023a\3\2\2\2\u0238\u023b\5\b\5\2\u0239"+ - "\u023b\5\\/\2\u023a\u0238\3\2\2\2\u023a\u0239\3\2\2\2\u023b\u023d\3\2"+ - "\2\2\u023c\u023e\7x\2\2\u023d\u023c\3\2\2\2\u023d\u023e\3\2\2\2\u023e"+ - "\u0240\3\2\2\2\u023f\u0241\5r:\2\u0240\u023f\3\2\2\2\u0240\u0241\3\2\2"+ - "\2\u0241\u0242\3\2\2\2\u0242\u0243\7x\2\2\u0243u\3\2\2\2\u0244\u0245\t"+ - "\21\2\2\u0245w\3\2\2\2\u0246\u0248\7p\2\2\u0247\u0249\5\32\16\2\u0248"+ - "\u0247\3\2\2\2\u0248\u0249\3\2\2\2\u0249\u024c\3\2\2\2\u024a\u024d\5@"+ - "!\2\u024b\u024d\5<\37\2\u024c\u024a\3\2\2\2\u024c\u024b\3\2\2\2\u024d"+ - "\u024e\3\2\2\2\u024e\u024f\7q\2\2\u024f\u0251\5(\25\2\u0250\u0252\7x\2"+ - "\2\u0251\u0250\3\2\2\2\u0251\u0252\3\2\2\2\u0252\u0253\3\2\2\2\u0253\u0254"+ - "\5\\/\2\u0254y\3\2\2\2\u0255\u0256\7r\2\2\u0256\u0258\5(\25\2\u0257\u0259"+ - "\7x\2\2\u0258\u0257\3\2\2\2\u0258\u0259\3\2\2\2\u0259\u025c\3\2\2\2\u025a"+ - "\u025d\5\b\5\2\u025b\u025d\5\\/\2\u025c\u025a\3\2\2\2\u025c\u025b\3\2"+ - "\2\2\u025d{\3\2\2\2\u025e\u0261\7s\2\2\u025f\u0262\5\b\5\2\u0260\u0262"+ - "\5\\/\2\u0261\u025f\3\2\2\2\u0261\u0260\3\2\2\2\u0262\u0264\3\2\2\2\u0263"+ - "\u0265\7x\2\2\u0264\u0263\3\2\2\2\u0264\u0265\3\2\2\2\u0265\u0266\3\2"+ - "\2\2\u0266\u0267\7t\2\2\u0267\u0268\5(\25\2\u0268}\3\2\2\2D\u0080\u0082"+ - "\u0089\u008e\u00a9\u00b1\u00b5\u00bc\u00bf\u00c4\u00c8\u00ce\u00e9\u00f4"+ - "\u0108\u0133\u0137\u0139\u014a\u0151\u0158\u015d\u0162\u016f\u017a\u0182"+ - "\u0187\u018c\u0190\u01a0\u01a9\u01ad\u01b9\u01bb\u01c3\u01c8\u01ce\u01d3"+ - "\u01da\u01e1\u01e7\u01ec\u01f4\u01f9\u0201\u0208\u020e\u0213\u021b\u0220"+ - "\u0224\u0227\u022a\u022e\u0232\u0236\u023a\u023d\u0240\u0248\u024c\u0251"+ - "\u0258\u025c\u0261\u0264"; + "\u0194\u0195\7|\2\2\u0195O\3\2\2\2\u0196\u0197\7~\2\2\u0197Q\3\2\2\2\u0198"+ + "\u0199\7{\2\2\u0199S\3\2\2\2\u019a\u01a1\5F$\2\u019b\u01a1\5J&\2\u019c"+ + "\u01a1\5L\'\2\u019d\u01a1\5N(\2\u019e\u01a1\5P)\2\u019f\u01a1\5R*\2\u01a0"+ + "\u019a\3\2\2\2\u01a0\u019b\3\2\2\2\u01a0\u019c\3\2\2\2\u01a0\u019d\3\2"+ + "\2\2\u01a0\u019e\3\2\2\2\u01a0\u019f\3\2\2\2\u01a1U\3\2\2\2\u01a2\u01a3"+ + "\7X\2\2\u01a3\u01a4\7}\2\2\u01a4W\3\2\2\2\u01a5\u01a6\7Y\2\2\u01a6\u01a7"+ + "\5<\37\2\u01a7\u01a9\7C\2\2\u01a8\u01aa\5^\60\2\u01a9\u01a8\3\2\2\2\u01a9"+ + "\u01aa\3\2\2\2\u01aa\u01ab\3\2\2\2\u01ab\u01ad\7D\2\2\u01ac\u01ae\5Z."+ + "\2\u01ad\u01ac\3\2\2\2\u01ad\u01ae\3\2\2\2\u01ae\u01af\3\2\2\2\u01af\u01b0"+ + "\5\\/\2\u01b0\u01b1\7v\2\2\u01b1Y\3\2\2\2\u01b2\u01b3\7Z\2\2\u01b3\u01b4"+ + "\5`\61\2\u01b4[\3\2\2\2\u01b5\u01b6\7[\2\2\u01b6\u01bb\7v\2\2\u01b7\u01ba"+ + "\5\b\5\2\u01b8\u01ba\7v\2\2\u01b9\u01b7\3\2\2\2\u01b9\u01b8\3\2\2\2\u01ba"+ + "\u01bd\3\2\2\2\u01bb\u01b9\3\2\2\2\u01bb\u01bc\3\2\2\2\u01bc\u01be\3\2"+ + "\2\2\u01bd\u01bb\3\2\2\2\u01be\u01bf\7\\\2\2\u01bf]\3\2\2\2\u01c0\u01c8"+ + "\5\22\n\2\u01c1\u01c3\7\20\2\2\u01c2\u01c4\7v\2\2\u01c3\u01c2\3\2\2\2"+ + "\u01c3\u01c4\3\2\2\2\u01c4\u01c5\3\2\2\2\u01c5\u01c7\5\22\n\2\u01c6\u01c1"+ + "\3\2\2\2\u01c7\u01ca\3\2\2\2\u01c8\u01c6\3\2\2\2\u01c8\u01c9\3\2\2\2\u01c9"+ + "_\3\2\2\2\u01ca\u01c8\3\2\2\2\u01cb\u01d3\5\32\16\2\u01cc\u01ce\7\20\2"+ + "\2\u01cd\u01cf\7v\2\2\u01ce\u01cd\3\2\2\2\u01ce\u01cf\3\2\2\2\u01cf\u01d0"+ + "\3\2\2\2\u01d0\u01d2\5\32\16\2\u01d1\u01cc\3\2\2\2\u01d2\u01d5\3\2\2\2"+ + "\u01d3\u01d1\3\2\2\2\u01d3\u01d4\3\2\2\2\u01d4a\3\2\2\2\u01d5\u01d3\3"+ + "\2\2\2\u01d6\u01d7\7]\2\2\u01d7\u01d8\5<\37\2\u01d8\u01da\7C\2\2\u01d9"+ + "\u01db\5f\64\2\u01da\u01d9\3\2\2\2\u01da\u01db\3\2\2\2\u01db\u01dc\3\2"+ + "\2\2\u01dc\u01dd\7D\2\2\u01dd\u01de\7Z\2\2\u01de\u01df\7^\2\2\u01df\u01e1"+ + "\7C\2\2\u01e0\u01e2\5j\66\2\u01e1\u01e0\3\2\2\2\u01e1\u01e2\3\2\2\2\u01e2"+ + "\u01e3\3\2\2\2\u01e3\u01e4\7D\2\2\u01e4\u01e5\7Z\2\2\u01e5\u01e7\7C\2"+ + "\2\u01e6\u01e8\5l\67\2\u01e7\u01e6\3\2\2\2\u01e7\u01e8\3\2\2\2\u01e8\u01e9"+ + "\3\2\2\2\u01e9\u01ec\7D\2\2\u01ea\u01ed\5d\63\2\u01eb\u01ed\5\\/\2\u01ec"+ + "\u01ea\3\2\2\2\u01ec\u01eb\3\2\2\2\u01edc\3\2\2\2\u01ee\u01ef\7\21\2\2"+ + "\u01ef\u01f0\5F$\2\u01f0e\3\2\2\2\u01f1\u01f9\5h\65\2\u01f2\u01f4\7\20"+ + "\2\2\u01f3\u01f5\7v\2\2\u01f4\u01f3\3\2\2\2\u01f4\u01f5\3\2\2\2\u01f5"+ + "\u01f6\3\2\2\2\u01f6\u01f8\5h\65\2\u01f7\u01f2\3\2\2\2\u01f8\u01fb\3\2"+ + "\2\2\u01f9\u01f7\3\2\2\2\u01f9\u01fa\3\2\2\2\u01fag\3\2\2\2\u01fb\u01f9"+ + "\3\2\2\2\u01fc\u01fd\5\22\n\2\u01fd\u0201\7F\2\2\u01fe\u0202\5B\"\2\u01ff"+ + "\u0202\5D#\2\u0200\u0202\7_\2\2\u0201\u01fe\3\2\2\2\u0201\u01ff\3\2\2"+ + "\2\u0201\u0200\3\2\2\2\u0202i\3\2\2\2\u0203\u0208\5@!\2\u0204\u0205\7"+ + "\20\2\2\u0205\u0207\5@!\2\u0206\u0204\3\2\2\2\u0207\u020a\3\2\2\2\u0208"+ + "\u0206\3\2\2\2\u0208\u0209\3\2\2\2\u0209k\3\2\2\2\u020a\u0208\3\2\2\2"+ + "\u020b\u0213\5n8\2\u020c\u020e\7\20\2\2\u020d\u020f\7v\2\2\u020e\u020d"+ + "\3\2\2\2\u020e\u020f\3\2\2\2\u020f\u0210\3\2\2\2\u0210\u0212\5n8\2\u0211"+ + "\u020c\3\2\2\2\u0212\u0215\3\2\2\2\u0213\u0211\3\2\2\2\u0213\u0214\3\2"+ + "\2\2\u0214m\3\2\2\2\u0215\u0213\3\2\2\2\u0216\u0217\5\32\16\2\u0217\u021b"+ + "\7F\2\2\u0218\u021c\5B\"\2\u0219\u021c\5D#\2\u021a\u021c\7_\2\2\u021b"+ + "\u0218\3\2\2\2\u021b\u0219\3\2\2\2\u021b\u021a\3\2\2\2\u021co\3\2\2\2"+ + "\u021d\u021e\7`\2\2\u021e\u0220\5(\25\2\u021f\u0221\7v\2\2\u0220\u021f"+ + "\3\2\2\2\u0220\u0221\3\2\2\2\u0221\u0224\3\2\2\2\u0222\u0225\5\b\5\2\u0223"+ + "\u0225\5\\/\2\u0224\u0222\3\2\2\2\u0224\u0223\3\2\2\2\u0225\u0227\3\2"+ + "\2\2\u0226\u0228\7v\2\2\u0227\u0226\3\2\2\2\u0227\u0228\3\2\2\2\u0228"+ + "\u022a\3\2\2\2\u0229\u022b\5r:\2\u022a\u0229\3\2\2\2\u022a\u022b\3\2\2"+ + "\2\u022bq\3\2\2\2\u022c\u022e\7a\2\2\u022d\u022f\7v\2\2\u022e\u022d\3"+ + "\2\2\2\u022e\u022f\3\2\2\2\u022f\u0232\3\2\2\2\u0230\u0233\5\b\5\2\u0231"+ + "\u0233\5\\/\2\u0232\u0230\3\2\2\2\u0232\u0231\3\2\2\2\u0233s\3\2\2\2\u0234"+ + "\u0236\5v<\2\u0235\u0237\7v\2\2\u0236\u0235\3\2\2\2\u0236\u0237\3\2\2"+ + "\2\u0237\u023a\3\2\2\2\u0238\u023b\5\b\5\2\u0239\u023b\5\\/\2\u023a\u0238"+ + "\3\2\2\2\u023a\u0239\3\2\2\2\u023b\u023d\3\2\2\2\u023c\u023e\7v\2\2\u023d"+ + "\u023c\3\2\2\2\u023d\u023e\3\2\2\2\u023e\u0240\3\2\2\2\u023f\u0241\5r"+ + ":\2\u0240\u023f\3\2\2\2\u0240\u0241\3\2\2\2\u0241\u0242\3\2\2\2\u0242"+ + "\u0243\7v\2\2\u0243u\3\2\2\2\u0244\u0245\t\21\2\2\u0245w\3\2\2\2\u0246"+ + "\u0248\7n\2\2\u0247\u0249\5\32\16\2\u0248\u0247\3\2\2\2\u0248\u0249\3"+ + "\2\2\2\u0249\u024c\3\2\2\2\u024a\u024d\5@!\2\u024b\u024d\5<\37\2\u024c"+ + "\u024a\3\2\2\2\u024c\u024b\3\2\2\2\u024d\u024e\3\2\2\2\u024e\u024f\7o"+ + "\2\2\u024f\u0251\5(\25\2\u0250\u0252\7v\2\2\u0251\u0250\3\2\2\2\u0251"+ + "\u0252\3\2\2\2\u0252\u0253\3\2\2\2\u0253\u0254\5\\/\2\u0254y\3\2\2\2\u0255"+ + "\u0256\7p\2\2\u0256\u0258\5(\25\2\u0257\u0259\7v\2\2\u0258\u0257\3\2\2"+ + "\2\u0258\u0259\3\2\2\2\u0259\u025c\3\2\2\2\u025a\u025d\5\b\5\2\u025b\u025d"+ + "\5\\/\2\u025c\u025a\3\2\2\2\u025c\u025b\3\2\2\2\u025d{\3\2\2\2\u025e\u0261"+ + "\7q\2\2\u025f\u0262\5\b\5\2\u0260\u0262\5\\/\2\u0261\u025f\3\2\2\2\u0261"+ + "\u0260\3\2\2\2\u0262\u0264\3\2\2\2\u0263\u0265\7v\2\2\u0264\u0263\3\2"+ + "\2\2\u0264\u0265\3\2\2\2\u0265\u0266\3\2\2\2\u0266\u0267\7r\2\2\u0267"+ + "\u0268\5(\25\2\u0268}\3\2\2\2D\u0080\u0082\u0089\u008e\u00a9\u00b1\u00b5"+ + "\u00bc\u00bf\u00c4\u00c8\u00ce\u00e9\u00f4\u0108\u0133\u0137\u0139\u014a"+ + "\u0151\u0158\u015d\u0162\u016f\u017a\u0182\u0187\u018c\u0190\u01a0\u01a9"+ + "\u01ad\u01b9\u01bb\u01c3\u01c8\u01ce\u01d3\u01da\u01e1\u01e7\u01ec\u01f4"+ + "\u01f9\u0201\u0208\u020e\u0213\u021b\u0220\u0224\u0227\u022a\u022e\u0232"+ + "\u0236\u023a\u023d\u0240\u0248\u024c\u0251\u0258\u025c\u0261\u0264"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff --git a/compiler/src/prog8/stackvm/StackVm.kt b/compiler/src/prog8/stackvm/StackVm.kt index fce5ef094..8a51ad24d 100644 --- a/compiler/src/prog8/stackvm/StackVm.kt +++ b/compiler/src/prog8/stackvm/StackVm.kt @@ -469,12 +469,6 @@ class StackVm(private var traceOutputFile: String?) { checkDt(second, DataType.FLOAT) evalstack.push(second.div(top)) } - Opcode.FLOORDIV -> { - val (top, second) = evalstack.pop2() - checkDt(top, DataType.FLOAT) - checkDt(second, DataType.FLOAT) - evalstack.push(second.floordiv(top)) - } Opcode.REMAINDER_UB -> { val (top, second) = evalstack.pop2() checkDt(top, DataType.UBYTE) diff --git a/compiler/test/StackVMOpcodeTests.kt b/compiler/test/StackVMOpcodeTests.kt index 0f824d9dd..09fe5c663 100644 --- a/compiler/test/StackVMOpcodeTests.kt +++ b/compiler/test/StackVMOpcodeTests.kt @@ -325,11 +325,6 @@ class TestStackVmOpcodes { } } - @Test - fun testFloorDiv() { - testBinaryOperator(Value(DataType.FLOAT, 4000.25), Opcode.FLOORDIV, Value(DataType.FLOAT, 40.2), Value(DataType.FLOAT, 99.0)) - } - @Test fun testPow() { testBinaryOperator(Value(DataType.UBYTE, 3), Opcode.POW_UB, Value(DataType.UBYTE, 4), Value(DataType.UBYTE, 81)) diff --git a/docs/source/syntaxreference.rst b/docs/source/syntaxreference.rst index 134c39dc7..2017281e9 100644 --- a/docs/source/syntaxreference.rst +++ b/docs/source/syntaxreference.rst @@ -360,10 +360,9 @@ Operators Takes the address of the symbol following it: ``word address = #somevar`` -arithmetic: ``+`` ``-`` ``*`` ``/`` ``//`` ``**`` ``%`` +arithmetic: ``+`` ``-`` ``*`` ``/`` ``**`` ``%`` ``+``, ``-``, ``*``, ``/`` are the familiar arithmetic operations. - ``/`` is floating-point division (will always result in a floating point result) - ``//`` is the integer divison (can divide integers into integer result of the same type), or floor-division on floating points (the division resulting in a whole number rounded towards minus infinity). + ``/`` is division (will result in integer division when using on integer operands, and a floating point division when at least one of the operands is a float) ``**`` is the power operator: ``3 ** 5`` is equal to 3*3*3*3*3 and is 243. ``%`` is the remainder operator: ``25 % 7`` is 4. Be careful: without a space, %10 will be parsed as the binary number 2 Remainder is only supported on integer operands (not floats). diff --git a/examples/cube3d-float.p8 b/examples/cube3d-float.p8 index 6b232f5d2..e2267461c 100644 --- a/examples/cube3d-float.p8 +++ b/examples/cube3d-float.p8 @@ -70,8 +70,8 @@ float rz = rotatedz[i] if rz >= 0.1 { float persp = (5.0+rz)/height - ubyte sx = rotatedx[i] / persp + width//2 as ubyte - ubyte sy = rotatedy[i] / persp + height//2 as ubyte + ubyte sx = rotatedx[i] / persp + width/2 as ubyte + ubyte sy = rotatedy[i] / persp + height/2 as ubyte c64scr.setcc(sx, sy, 46, i+2) } } @@ -80,8 +80,8 @@ float rz = rotatedz[i] if rz < 0.1 { float persp = (5.0+rz)/height - ubyte sx = rotatedx[i] / persp + width//2 as ubyte - ubyte sy = rotatedy[i] / persp + height//2 as ubyte + ubyte sx = rotatedx[i] / persp + width/2 as ubyte + ubyte sy = rotatedy[i] / persp + height/2 as ubyte c64scr.setcc(sx, sy, 81, i+2) } } diff --git a/examples/cube3d-stackvm.p8 b/examples/cube3d-stackvm.p8 index d0d144c2a..a96a899d5 100644 --- a/examples/cube3d-stackvm.p8 +++ b/examples/cube3d-stackvm.p8 @@ -39,8 +39,8 @@ vm_gfx_text(8, 6, 1, "Spin") vm_gfx_text(29, 11, 1, "to Win !") - for uword i in 0 to width//10 { - vm_gfx_line(i*2+width//2-width//10, 130, i*10.w, 199, 6) + for uword i in 0 to width/10 { + vm_gfx_line(i*2+width/2-width/10, 130, i*10.w, 199, 6) } rotate_vertices(irq.global_time as float / 30.0) @@ -83,11 +83,11 @@ sub draw_edges() { sub toscreenx(float x, float z) -> word { - return x/(4.2+z) * (height as float) as word + width // 2 + return x/(4.2+z) * (height as float) as word + width / 2 } sub toscreeny(float y, float z) -> word { - return y/(4.2+z) * (height as float) as word + height // 2 + return y/(4.2+z) * (height as float) as word + height / 2 } ; draw all edges of the object diff --git a/examples/cube3d.p8 b/examples/cube3d.p8 index 8982d2992..da178850e 100644 --- a/examples/cube3d.p8 +++ b/examples/cube3d.p8 @@ -16,9 +16,15 @@ word[len(zcoor)] rotatedz sub start() { + uword anglex uword angley uword anglez + word rz=33 + word persp = (rz+200) + persp = rz / 25 + persp = rz / height + persp = (rz+200) / height while(true) { rotate_vertices(msb(anglex), msb(angley), msb(anglez)) c64scr.clear_screenchars(32) @@ -45,23 +51,23 @@ word wcosc = cos8(az) as word word wsinc = sin8(az) as word - word wcosa_sinb = wcosa*wsinb // 128 - word wsina_sinb = wsina*wsinb // 128 + word wcosa_sinb = wcosa*wsinb / 128 + word wsina_sinb = wsina*wsinb / 128 - word Axx = wcosa*wcosb // 128 - word Axy = (wcosa_sinb*wsinc - wsina*wcosc) // 128 - word Axz = (wcosa_sinb*wcosc + wsina*wsinc) // 128 - word Ayx = wsina*wcosb // 128 - word Ayy = (wsina_sinb*wsinc + wcosa*wcosc) // 128 - word Ayz = (wsina_sinb*wcosc - wcosa*wsinc) // 128 + word Axx = wcosa*wcosb / 128 + word Axy = (wcosa_sinb*wsinc - wsina*wcosc) / 128 + word Axz = (wcosa_sinb*wcosc + wsina*wsinc) / 128 + word Ayx = wsina*wcosb / 128 + word Ayy = (wsina_sinb*wsinc + wcosa*wcosc) / 128 + word Ayz = (wsina_sinb*wcosc - wcosa*wsinc) / 128 word Azx = -wsinb - word Azy = wcosb*wsinc // 128 - word Azz = wcosb*wcosc // 128 + word Azy = wcosb*wsinc / 128 + word Azz = wcosb*wcosc / 128 for ubyte i in 0 to len(xcoor)-1 { - rotatedx[i] = (Axx*xcoor[i] + Axy*ycoor[i] + Axz*zcoor[i]) // 128 - rotatedy[i] =(Ayx*xcoor[i] + Ayy*ycoor[i] + Ayz*zcoor[i]) // 128 - rotatedz[i] = (Azx*xcoor[i] + Azy*ycoor[i] + Azz*zcoor[i]) // 128 + rotatedx[i] = (Axx*xcoor[i] + Axy*ycoor[i] + Axz*zcoor[i]) / 128 + rotatedy[i] =(Ayx*xcoor[i] + Ayy*ycoor[i] + Ayz*zcoor[i]) / 128 + rotatedz[i] = (Azx*xcoor[i] + Azy*ycoor[i] + Azz*zcoor[i]) / 128 } } @@ -73,9 +79,9 @@ for ubyte i in 0 to len(xcoor)-1 { word rz = rotatedz[i] if rz >= 10 { - word persp = (rz+200) // height - byte sx = rotatedx[i] // persp as byte + width//2 - byte sy = rotatedy[i] // persp as byte + height//2 + word persp = (rz+200) / height + byte sx = rotatedx[i] / persp as byte + width/2 + byte sy = rotatedy[i] / persp as byte + height/2 c64scr.setcc(sx as ubyte, sy as ubyte, 46, i+2) } } @@ -83,9 +89,9 @@ for ubyte i in 0 to len(xcoor)-1 { word rz = rotatedz[i] if rz < 10 { - word persp = (rz+200) // height - byte sx = rotatedx[i] // persp as byte + width//2 - byte sy = rotatedy[i] // persp as byte + height//2 + word persp = (rz+200) / height + byte sx = rotatedx[i] / persp as byte + width/2 + byte sy = rotatedy[i] / persp as byte + height/2 c64scr.setcc(sx as ubyte, sy as ubyte, 81, i+2) } } diff --git a/examples/mandelbrot-stackvm.p8 b/examples/mandelbrot-stackvm.p8 index 7bafaed61..739cbe593 100644 --- a/examples/mandelbrot-stackvm.p8 +++ b/examples/mandelbrot-stackvm.p8 @@ -2,8 +2,8 @@ %import c64flt ~ main { - const uword width = 320 // 2 - const uword height = 256 // 2 + const uword width = 320 / 2 + const uword height = 256 / 2 const uword xoffset = 40 const uword yoffset = 30 diff --git a/examples/sprites.p8 b/examples/sprites.p8 index 2e2d7c1b3..cd6d9b438 100644 --- a/examples/sprites.p8 +++ b/examples/sprites.p8 @@ -40,7 +40,7 @@ c64.STROUT("...we are all floating...\n") for ubyte i in 0 to 7 { - c64.SPRPTR[i] = $0a00 // 64 + c64.SPRPTR[i] = $0a00 / 64 c64.SPXY[i*2] = 50+25*i c64.SPXY[i*2+1] = rnd() } diff --git a/examples/swirl-stackvm.p8 b/examples/swirl-stackvm.p8 index c93806b1b..529174c9f 100644 --- a/examples/swirl-stackvm.p8 +++ b/examples/swirl-stackvm.p8 @@ -16,16 +16,16 @@ while true { float x = sin(t*1.01) + cos(t*1.1234) float y = cos(t) + sin(t*0.03456) - vm_gfx_pixel(screenx(x), screeny(y), color//16) + vm_gfx_pixel(screenx(x), screeny(y), color/16) t += 0.01 color++ } } sub screenx(float x) -> word { - return (x/4.1* (width as float)) as word + width // 2 + return (x/4.1* (width as float)) as word + width / 2 } sub screeny(float y) -> word { - return (y/4.1 * (height as float)) as word + height // 2 + return (y/4.1 * (height as float)) as word + height / 2 } } diff --git a/examples/test.p8 b/examples/test.p8 index b5451f7bd..fc5684eba 100644 --- a/examples/test.p8 +++ b/examples/test.p8 @@ -4,35 +4,13 @@ sub start() { - ; @todo '/' with two integer operands should result in integer again instead of having to use '//' all the time? + const word height=25 - ubyte ub = 10 - byte b = -10 - uword uw = 10 - word w = -10 - - b = b + (-1) - b = b - (-1) - b = 1+b - b = (-1) + b - - c64scr.print_uw(uw+1) - c64.CHROUT('\n') - c64scr.print_uw(uw+2) - c64.CHROUT('\n') - c64scr.print_uw(uw+3) - c64.CHROUT('\n') - c64scr.print_uw(uw+4) - c64.CHROUT('\n') - - c64scr.print_uw(uw-1) - c64.CHROUT('\n') - c64scr.print_uw(uw-2) - c64.CHROUT('\n') - c64scr.print_uw(uw-3) - c64.CHROUT('\n') - c64scr.print_uw(uw-4) - c64.CHROUT('\n') + word rz=33 + word persp = (rz+200) + persp = rz / 25 + persp = rz / height + persp = (rz+200) / height } } diff --git a/examples/wizzine.p8 b/examples/wizzine.p8 index d1920218a..cb2807cd9 100644 --- a/examples/wizzine.p8 +++ b/examples/wizzine.p8 @@ -34,10 +34,10 @@ sub start() { for ubyte i in 0 to 7 { - c64.SPRPTR[i] = $0a00//64 + c64.SPRPTR[i] = $0a00/64 } c64.SPENA = 255 ; enable all sprites - c64utils.set_rasterirq(260) ; enable animation + c64utils.set_rasterirq(200) ; enable animation } } @@ -55,7 +55,7 @@ sub irq() { ubyte i=14 nextsprite: ; @todo should be a for loop from 14 to 0 step -2 but this causes a value out of range error at the moment uword x = sin8u(angle*2-i*8) as uword + 50 - ubyte y = cos8u(angle*3-i*8) // 2 + 70 + ubyte y = cos8u(angle*3-i*8) / 2 + 70 c64.SPXY[i] = lsb(x) c64.SPXY[i+1] = y lsl(c64.MSIGX) diff --git a/compiler/stackvm.sh b/stackvm.sh similarity index 55% rename from compiler/stackvm.sh rename to stackvm.sh index 52f0b21e3..e90d6aacb 100755 --- a/compiler/stackvm.sh +++ b/stackvm.sh @@ -1,7 +1,8 @@ #!/usr/bin/env sh -PROG8CLASSPATH=out/production/compiler +PROG8_COMPILER_DIR=compiler +PROG8CLASSPATH=${PROG8_COMPILER_DIR}/out/production/compiler KOTLINPATH=${HOME}/.IntelliJIdea2018.3/config/plugins/Kotlin -LIBJARS=${KOTLINPATH}/lib/kotlin-stdlib.jar:${KOTLINPATH}/lib/kotlin-reflect.jar:antlr/lib/antlr-runtime-4.7.1.jar +LIBJARS=${KOTLINPATH}/lib/kotlin-stdlib.jar:${KOTLINPATH}/lib/kotlin-reflect.jar:${PROG8_COMPILER_DIR}/antlr/lib/antlr-runtime-4.7.1.jar java -cp ${PROG8CLASSPATH}:${LIBJARS} prog8.StackVmMainKt $*