got rid of separate '//' floordivision operator

This commit is contained in:
Irmen de Jong 2019-01-09 22:01:47 +01:00
parent 71e6497eed
commit f1b2bd1cc4
25 changed files with 715 additions and 830 deletions

View File

@ -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
| <assoc=right> 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

View File

@ -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
ldy #>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

View File

@ -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,

View File

@ -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)

View File

@ -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")
}
}

View File

@ -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,

View File

@ -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()

View File

@ -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"

View File

@ -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 {

View File

@ -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 -> {

View File

@ -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)

View File

@ -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<w=y>{?}@\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<w=y>{?}@\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 {

File diff suppressed because it is too large Load Diff

View File

@ -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)

View File

@ -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))

View File

@ -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).

View File

@ -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)
}
}

View File

@ -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

View File

@ -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)
}
}

View File

@ -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

View File

@ -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()
}

View File

@ -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
}
}

View File

@ -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
}
}

View File

@ -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)

View File

@ -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 $*