SerpentCompiler

+ simple create: create(gas, mem_start, mem_size)
This commit is contained in:
romanman 2014-06-23 11:41:50 +01:00
parent 901c7af47e
commit 5d4ac105d3
12 changed files with 1218 additions and 987 deletions

View File

@ -6,7 +6,7 @@
- [x] **VM execution:** support CALL op
- [x] **VM execution:** support CALL op with in/out data
- [ ] **VM execution:** support CREATE op
- [ ] **SerpentCompiler** compile create(gas, mem_start, mem_size)
- [x] **SerpentCompiler** compile create(gas, mem_start, mem_size)
- [ ] **SerpentCompiler** compile create(gas, mem_start, import("examples/mul2.se"))
- [ ] **SerpentCompiler** compile return(array) correct
- [ ] **VM execution:** SUICIDE op adjust

View File

@ -34,7 +34,8 @@ parse: block EOF
parse_init_code_block : 'init' ':' INDENT block DEDENT 'code' ':' INDENT block DEDENT;
block: ( asm | array_assign | assign | contract_storage_assign | special_func | if_elif_else_stmt |
while_stmt | ret_func_1 | ret_func_2 | suicide_func | stop_func | single_send_fund | msg_func)* ;
while_stmt | ret_func_1 | ret_func_2 | suicide_func | stop_func | single_send_func | msg_func |
single_create_func)* ;
asm: '[asm' asm_symbol 'asm]' NL;
@ -112,7 +113,10 @@ block_gaslimit
msg_func: 'msg' '(' int_val ',' int_val ',' int_val ',' arr_def ',' int_val ',' int_val')' ;
send_func: 'send' '(' int_val ',' int_val ',' int_val ')';
single_send_fund: send_func NL;
single_send_func: send_func NL;
create_func: 'create' '(' int_val ',' int_val ',' int_val ')';
single_create_func: create_func NL;
msg_data: 'msg.data' '[' expression ']' ;

View File

@ -1,75 +1,77 @@
OP_IN_OR=52
T__29=6
EQ_OP=42
T__28=7
T__27=8
OP_AND=51
T__26=9
T__25=10
T__24=11
T__23=12
T__22=13
T__21=14
T__20=15
OP_MUL=48
DEDENT=56
T__9=26
T__8=27
T__7=28
INDENT=55
T__6=29
T__5=30
T__4=31
T__19=16
OP_EQ=50
T__16=19
T__15=20
T__18=17
T__17=18
T__12=23
T__11=24
T__14=21
T__13=22
T__10=25
OP_EX_OR=38
OP_NOT=41
VAR=46
NL=43
LINE_COMMENT=45
OP_LOG_OR=40
OP_ADD=47
HEX_DIGIT=53
INT=36
T__30=5
T__31=4
T__32=3
T__33=2
WS=44
T__34=1
T__1=34
T__0=35
T__3=32
T__2=33
ASM_SYMBOLS=37
HEX_NUMBER=54
OP_REL=49
OP_LOG_AND=39
'|'=52
'code'=35
'block.number'=34
'block.gaslimit'=33
'asm]'=32
'contract.balance'=31
'msg.sender'=30
'='=42
'return'=29
'elif'=28
OP_IN_OR=53
T__29=7
EQ_OP=43
T__28=8
T__27=9
OP_AND=52
T__26=10
T__25=11
T__24=12
T__23=13
T__22=14
T__21=15
T__20=16
OP_MUL=49
DEDENT=57
T__9=27
T__8=28
T__7=29
INDENT=56
T__6=30
T__5=31
T__4=32
T__19=17
OP_EQ=51
T__16=20
T__15=21
T__18=18
T__17=19
T__12=24
T__11=25
T__14=22
T__13=23
T__10=26
OP_EX_OR=39
OP_NOT=42
VAR=47
NL=44
LINE_COMMENT=46
OP_LOG_OR=41
OP_ADD=48
HEX_DIGIT=54
INT=37
T__30=6
T__31=5
T__32=4
T__33=3
WS=45
T__34=2
T__35=1
T__1=35
T__0=36
T__3=33
T__2=34
ASM_SYMBOLS=38
HEX_NUMBER=55
OP_REL=50
OP_LOG_AND=40
'|'=53
'code'=36
'block.number'=35
'block.gaslimit'=34
'asm]'=33
'contract.balance'=32
'msg.sender'=31
'='=43
'return'=30
'elif'=29
'create'=28
'msg.data'=27
'tx.origin'=26
'else:'=25
'tx.gasprice'=24
')'=23
'xor'=38
'xor'=39
'msg.datasize'=22
'block.difficulty'=21
'suicide'=20
@ -90,6 +92,6 @@ OP_LOG_AND=39
'msg'=5
','=4
'block.coinbase'=3
'&'=51
'&'=52
'stop'=2
']'=1

View File

@ -1,4 +1,4 @@
// Generated from E:\WorkingArea\ethereum\ethereumj\src\main\java\org\ethereum\serpent\Serpent.g4 by ANTLR 4.1
// Generated from E:\WorkingArea\ethereum\ethereumj\ethereumj\src\main\java\org\ethereum\serpent\Serpent.g4 by ANTLR 4.1
package org.ethereum.serpent;
import org.antlr.v4.runtime.ParserRuleContext;
@ -142,6 +142,19 @@ public class SerpentBaseListener implements SerpentListener {
*/
@Override public void exitContract_address(@NotNull SerpentParser.Contract_addressContext ctx) { }
/**
* {@inheritDoc}
* <p/>
* The default implementation does nothing.
*/
@Override public void enterSingle_create_func(@NotNull SerpentParser.Single_create_funcContext ctx) { }
/**
* {@inheritDoc}
* <p/>
* The default implementation does nothing.
*/
@Override public void exitSingle_create_func(@NotNull SerpentParser.Single_create_funcContext ctx) { }
/**
* {@inheritDoc}
* <p/>
@ -285,6 +298,19 @@ public class SerpentBaseListener implements SerpentListener {
*/
@Override public void exitMul_expr(@NotNull SerpentParser.Mul_exprContext ctx) { }
/**
* {@inheritDoc}
* <p/>
* The default implementation does nothing.
*/
@Override public void enterCreate_func(@NotNull SerpentParser.Create_funcContext ctx) { }
/**
* {@inheritDoc}
* <p/>
* The default implementation does nothing.
*/
@Override public void exitCreate_func(@NotNull SerpentParser.Create_funcContext ctx) { }
/**
* {@inheritDoc}
* <p/>
@ -433,13 +459,13 @@ public class SerpentBaseListener implements SerpentListener {
* <p/>
* The default implementation does nothing.
*/
@Override public void enterSingle_send_fund(@NotNull SerpentParser.Single_send_fundContext ctx) { }
@Override public void enterSingle_send_func(@NotNull SerpentParser.Single_send_funcContext ctx) { }
/**
* {@inheritDoc}
* <p/>
* The default implementation does nothing.
*/
@Override public void exitSingle_send_fund(@NotNull SerpentParser.Single_send_fundContext ctx) { }
@Override public void exitSingle_send_func(@NotNull SerpentParser.Single_send_funcContext ctx) { }
/**
* {@inheritDoc}

View File

@ -1,4 +1,4 @@
// Generated from E:\WorkingArea\ethereum\ethereumj\src\main\java\org\ethereum\serpent\Serpent.g4 by ANTLR 4.1
// Generated from E:\WorkingArea\ethereum\ethereumj\ethereumj\src\main\java\org\ethereum\serpent\Serpent.g4 by ANTLR 4.1
package org.ethereum.serpent;
import org.antlr.v4.runtime.misc.NotNull;
import org.antlr.v4.runtime.tree.AbstractParseTreeVisitor;
@ -92,6 +92,14 @@ public class SerpentBaseVisitor<T> extends AbstractParseTreeVisitor<T> implement
*/
@Override public T visitContract_address(@NotNull SerpentParser.Contract_addressContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
* <p/>
* The default implementation returns the result of calling
* {@link #visitChildren} on {@code ctx}.
*/
@Override public T visitSingle_create_func(@NotNull SerpentParser.Single_create_funcContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
* <p/>
@ -180,6 +188,14 @@ public class SerpentBaseVisitor<T> extends AbstractParseTreeVisitor<T> implement
*/
@Override public T visitMul_expr(@NotNull SerpentParser.Mul_exprContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
* <p/>
* The default implementation returns the result of calling
* {@link #visitChildren} on {@code ctx}.
*/
@Override public T visitCreate_func(@NotNull SerpentParser.Create_funcContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
* <p/>
@ -274,7 +290,7 @@ public class SerpentBaseVisitor<T> extends AbstractParseTreeVisitor<T> implement
* The default implementation returns the result of calling
* {@link #visitChildren} on {@code ctx}.
*/
@Override public T visitSingle_send_fund(@NotNull SerpentParser.Single_send_fundContext ctx) { return visitChildren(ctx); }
@Override public T visitSingle_send_func(@NotNull SerpentParser.Single_send_funcContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}

View File

@ -1,4 +1,4 @@
// Generated from E:\WorkingArea\ethereum\ethereumj\src\main\java\org\ethereum\serpent\Serpent.g4 by ANTLR 4.1
// Generated from E:\WorkingArea\ethereum\ethereumj\ethereumj\src\main\java\org\ethereum\serpent\Serpent.g4 by ANTLR 4.1
package org.ethereum.serpent;
import com.yuvalshavit.antlr4.DenterHelper;
@ -18,14 +18,14 @@ public class SerpentLexer extends Lexer {
protected static final PredictionContextCache _sharedContextCache =
new PredictionContextCache();
public static final int
T__34=1, T__33=2, T__32=3, T__31=4, T__30=5, T__29=6, T__28=7, T__27=8,
T__26=9, T__25=10, T__24=11, T__23=12, T__22=13, T__21=14, T__20=15, T__19=16,
T__18=17, T__17=18, T__16=19, T__15=20, T__14=21, T__13=22, T__12=23,
T__11=24, T__10=25, T__9=26, T__8=27, T__7=28, T__6=29, T__5=30, T__4=31,
T__3=32, T__2=33, T__1=34, T__0=35, INT=36, ASM_SYMBOLS=37, OP_EX_OR=38,
OP_LOG_AND=39, OP_LOG_OR=40, OP_NOT=41, EQ_OP=42, NL=43, WS=44, LINE_COMMENT=45,
VAR=46, OP_ADD=47, OP_MUL=48, OP_REL=49, OP_EQ=50, OP_AND=51, OP_IN_OR=52,
HEX_DIGIT=53, HEX_NUMBER=54;
T__35=1, T__34=2, T__33=3, T__32=4, T__31=5, T__30=6, T__29=7, T__28=8,
T__27=9, T__26=10, T__25=11, T__24=12, T__23=13, T__22=14, T__21=15, T__20=16,
T__19=17, T__18=18, T__17=19, T__16=20, T__15=21, T__14=22, T__13=23,
T__12=24, T__11=25, T__10=26, T__9=27, T__8=28, T__7=29, T__6=30, T__5=31,
T__4=32, T__3=33, T__2=34, T__1=35, T__0=36, INT=37, ASM_SYMBOLS=38, OP_EX_OR=39,
OP_LOG_AND=40, OP_LOG_OR=41, OP_NOT=42, EQ_OP=43, NL=44, WS=45, LINE_COMMENT=46,
VAR=47, OP_ADD=48, OP_MUL=49, OP_REL=50, OP_EQ=51, OP_AND=52, OP_IN_OR=53,
HEX_DIGIT=54, HEX_NUMBER=55;
public static String[] modeNames = {
"DEFAULT_MODE"
};
@ -36,20 +36,20 @@ public class SerpentLexer extends Lexer {
"'['", "':'", "'('", "'if'", "'send'", "'block.timestamp'", "'contract.address'",
"'[asm'", "'msg.value'", "'init'", "'block.prevhash'", "'contract.storage'",
"'suicide'", "'block.difficulty'", "'msg.datasize'", "')'", "'tx.gasprice'",
"'else:'", "'tx.origin'", "'msg.data'", "'elif'", "'return'", "'msg.sender'",
"'contract.balance'", "'asm]'", "'block.gaslimit'", "'block.number'",
"'else:'", "'tx.origin'", "'msg.data'", "'create'", "'elif'", "'return'",
"'msg.sender'", "'contract.balance'", "'asm]'", "'block.gaslimit'", "'block.number'",
"'code'", "INT", "ASM_SYMBOLS", "'xor'", "OP_LOG_AND", "OP_LOG_OR", "OP_NOT",
"'='", "NL", "WS", "LINE_COMMENT", "VAR", "OP_ADD", "OP_MUL", "OP_REL",
"OP_EQ", "'&'", "'|'", "HEX_DIGIT", "HEX_NUMBER"
};
public static final String[] ruleNames = {
"T__34", "T__33", "T__32", "T__31", "T__30", "T__29", "T__28", "T__27",
"T__26", "T__25", "T__24", "T__23", "T__22", "T__21", "T__20", "T__19",
"T__18", "T__17", "T__16", "T__15", "T__14", "T__13", "T__12", "T__11",
"T__10", "T__9", "T__8", "T__7", "T__6", "T__5", "T__4", "T__3", "T__2",
"T__1", "T__0", "INT", "ASM_SYMBOLS", "OP_EX_OR", "OP_LOG_AND", "OP_LOG_OR",
"OP_NOT", "EQ_OP", "NL", "WS", "LINE_COMMENT", "VAR", "OP_ADD", "OP_MUL",
"OP_REL", "OP_EQ", "OP_AND", "OP_IN_OR", "HEX_DIGIT", "HEX_NUMBER"
"T__35", "T__34", "T__33", "T__32", "T__31", "T__30", "T__29", "T__28",
"T__27", "T__26", "T__25", "T__24", "T__23", "T__22", "T__21", "T__20",
"T__19", "T__18", "T__17", "T__16", "T__15", "T__14", "T__13", "T__12",
"T__11", "T__10", "T__9", "T__8", "T__7", "T__6", "T__5", "T__4", "T__3",
"T__2", "T__1", "T__0", "INT", "ASM_SYMBOLS", "OP_EX_OR", "OP_LOG_AND",
"OP_LOG_OR", "OP_NOT", "EQ_OP", "NL", "WS", "LINE_COMMENT", "VAR", "OP_ADD",
"OP_MUL", "OP_REL", "OP_EQ", "OP_AND", "OP_IN_OR", "HEX_DIGIT", "HEX_NUMBER"
};
@ -91,9 +91,9 @@ public class SerpentLexer extends Lexer {
@Override
public void action(RuleContext _localctx, int ruleIndex, int actionIndex) {
switch (ruleIndex) {
case 43: WS_action((RuleContext)_localctx, actionIndex); break;
case 44: WS_action((RuleContext)_localctx, actionIndex); break;
case 44: LINE_COMMENT_action((RuleContext)_localctx, actionIndex); break;
case 45: LINE_COMMENT_action((RuleContext)_localctx, actionIndex); break;
}
}
private void WS_action(RuleContext _localctx, int actionIndex) {
@ -108,352 +108,361 @@ public class SerpentLexer extends Lexer {
}
public static final String _serializedATN =
"\3\uacf5\uee8c\u4f5d\u8b0d\u4a45\u78bd\u1b2f\u3378\28\u03d8\b\1\4\2\t"+
"\3\uacf5\uee8c\u4f5d\u8b0d\u4a45\u78bd\u1b2f\u3378\29\u03e1\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\3\2\3\2\3\3\3\3\3\3\3\3\3\3\3\4\3\4"+
"\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\5\3\5\3\6\3\6\3"+
"\6\3\6\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\t\3\t\3\n"+
"\3\n\3\13\3\13\3\f\3\f\3\f\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\16\3\16\3\16\3\16\3\16\3\16\3\16\3\16\3\17\3\17\3\17"+
"\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17"+
"\3\20\3\20\3\20\3\20\3\20\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21"+
"\3\21\3\22\3\22\3\22\3\22\3\22\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23"+
"\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\24\3\24\3\24\3\24\3\24\3\24\3\24"+
"\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\25\3\25\3\25\3\25"+
"\3\25\3\25\3\25\3\25\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\26"+
"\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\27\3\27\3\27\3\27\3\27\3\27\3\27"+
"\3\27\3\27\3\27\3\27\3\27\3\27\3\30\3\30\3\31\3\31\3\31\3\31\3\31\3\31"+
"\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\33\3\33\3\33\3\34\3\34\3\34\3\34\3\34\3\34"+
"\3\34\3\34\3\34\3\35\3\35\3\35\3\35\3\35\3\36\3\36\3\36\3\36\3\36\3\36"+
"\3\36\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\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#\3$\3$\3$\3$\3$\3%\6%\u0198\n%\r%\16%\u0199\3&\3&\3"+
"&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3"+
"&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3"+
"&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3"+
"&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3"+
"&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3"+
"&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3"+
"&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3"+
"&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3"+
"&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3"+
"&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3"+
"&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3"+
"&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3"+
"&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3"+
"&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3"+
"&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3"+
"&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3"+
"&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3"+
"&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3"+
"&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3"+
"&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3"+
"&\3&\3&\3&\3&\3&\3&\3&\3&\3&\5&\u0374\n&\3\'\3\'\3\'\3\'\3(\3(\3(\3(\3"+
"(\5(\u037f\n(\3)\3)\3)\3)\5)\u0385\n)\3*\3*\3*\3*\5*\u038b\n*\3+\3+\3"+
",\5,\u0390\n,\3,\3,\7,\u0394\n,\f,\16,\u0397\13,\3-\6-\u039a\n-\r-\16"+
"-\u039b\3-\3-\3.\3.\3.\3.\7.\u03a4\n.\f.\16.\u03a7\13.\3.\3.\3/\3/\7/"+
"\u03ad\n/\f/\16/\u03b0\13/\3\60\3\60\3\61\3\61\3\61\3\61\3\61\5\61\u03b9"+
"\n\61\3\62\3\62\3\62\3\62\3\62\5\62\u03c0\n\62\3\63\3\63\3\63\3\63\5\63"+
"\u03c6\n\63\3\64\3\64\3\65\3\65\3\66\3\66\3\67\3\67\3\67\3\67\5\67\u03d2"+
"\n\67\3\67\6\67\u03d5\n\67\r\67\16\67\u03d6\28\3\3\1\5\4\1\7\5\1\t\6\1"+
"\13\7\1\r\b\1\17\t\1\21\n\1\23\13\1\25\f\1\27\r\1\31\16\1\33\17\1\35\20"+
"\1\37\21\1!\22\1#\23\1%\24\1\'\25\1)\26\1+\27\1-\30\1/\31\1\61\32\1\63"+
"\33\1\65\34\1\67\35\19\36\1;\37\1= \1?!\1A\"\1C#\1E$\1G%\1I&\1K\'\1M("+
"\1O)\1Q*\1S+\1U,\1W-\1Y.\2[/\3]\60\1_\61\1a\62\1c\63\1e\64\1g\65\1i\66"+
"\1k\67\1m8\1\3\2\13\3\2\62;\4\2\13\13\"\"\4\2\f\f\17\17\4\2C\\c|\5\2\62"+
";C\\c|\4\2--//\6\2\'\',,\61\61``\4\2>>@@\5\2\62;CHch\u043d\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\3o\3\2\2\2"+
"\5q\3\2\2\2\7v\3\2\2\2\t\u0085\3\2\2\2\13\u0087\3\2\2\2\r\u008b\3\2\2"+
"\2\17\u0092\3\2\2\2\21\u0098\3\2\2\2\23\u009a\3\2\2\2\25\u009c\3\2\2\2"+
"\27\u009e\3\2\2\2\31\u00a1\3\2\2\2\33\u00a6\3\2\2\2\35\u00b6\3\2\2\2\37"+
"\u00c7\3\2\2\2!\u00cc\3\2\2\2#\u00d6\3\2\2\2%\u00db\3\2\2\2\'\u00ea\3"+
"\2\2\2)\u00fb\3\2\2\2+\u0103\3\2\2\2-\u0114\3\2\2\2/\u0121\3\2\2\2\61"+
"\u0123\3\2\2\2\63\u012f\3\2\2\2\65\u0135\3\2\2\2\67\u013f\3\2\2\29\u0148"+
"\3\2\2\2;\u014d\3\2\2\2=\u0154\3\2\2\2?\u015f\3\2\2\2A\u0170\3\2\2\2C"+
"\u0175\3\2\2\2E\u0184\3\2\2\2G\u0191\3\2\2\2I\u0197\3\2\2\2K\u0373\3\2"+
"\2\2M\u0375\3\2\2\2O\u037e\3\2\2\2Q\u0384\3\2\2\2S\u038a\3\2\2\2U\u038c"+
"\3\2\2\2W\u038f\3\2\2\2Y\u0399\3\2\2\2[\u039f\3\2\2\2]\u03aa\3\2\2\2_"+
"\u03b1\3\2\2\2a\u03b8\3\2\2\2c\u03bf\3\2\2\2e\u03c5\3\2\2\2g\u03c7\3\2"+
"\2\2i\u03c9\3\2\2\2k\u03cb\3\2\2\2m\u03d1\3\2\2\2op\7_\2\2p\4\3\2\2\2"+
"qr\7u\2\2rs\7v\2\2st\7q\2\2tu\7r\2\2u\6\3\2\2\2vw\7d\2\2wx\7n\2\2xy\7"+
"q\2\2yz\7e\2\2z{\7m\2\2{|\7\60\2\2|}\7e\2\2}~\7q\2\2~\177\7k\2\2\177\u0080"+
"\7p\2\2\u0080\u0081\7d\2\2\u0081\u0082\7c\2\2\u0082\u0083\7u\2\2\u0083"+
"\u0084\7g\2\2\u0084\b\3\2\2\2\u0085\u0086\7.\2\2\u0086\n\3\2\2\2\u0087"+
"\u0088\7o\2\2\u0088\u0089\7u\2\2\u0089\u008a\7i\2\2\u008a\f\3\2\2\2\u008b"+
"\u008c\7v\2\2\u008c\u008d\7z\2\2\u008d\u008e\7\60\2\2\u008e\u008f\7i\2"+
"\2\u008f\u0090\7c\2\2\u0090\u0091\7u\2\2\u0091\16\3\2\2\2\u0092\u0093"+
"\7y\2\2\u0093\u0094\7j\2\2\u0094\u0095\7k\2\2\u0095\u0096\7n\2\2\u0096"+
"\u0097\7g\2\2\u0097\20\3\2\2\2\u0098\u0099\7]\2\2\u0099\22\3\2\2\2\u009a"+
"\u009b\7<\2\2\u009b\24\3\2\2\2\u009c\u009d\7*\2\2\u009d\26\3\2\2\2\u009e"+
"\u009f\7k\2\2\u009f\u00a0\7h\2\2\u00a0\30\3\2\2\2\u00a1\u00a2\7u\2\2\u00a2"+
"\u00a3\7g\2\2\u00a3\u00a4\7p\2\2\u00a4\u00a5\7f\2\2\u00a5\32\3\2\2\2\u00a6"+
"\u00a7\7d\2\2\u00a7\u00a8\7n\2\2\u00a8\u00a9\7q\2\2\u00a9\u00aa\7e\2\2"+
"\u00aa\u00ab\7m\2\2\u00ab\u00ac\7\60\2\2\u00ac\u00ad\7v\2\2\u00ad\u00ae"+
"\7k\2\2\u00ae\u00af\7o\2\2\u00af\u00b0\7g\2\2\u00b0\u00b1\7u\2\2\u00b1"+
"\u00b2\7v\2\2\u00b2\u00b3\7c\2\2\u00b3\u00b4\7o\2\2\u00b4\u00b5\7r\2\2"+
"\u00b5\34\3\2\2\2\u00b6\u00b7\7e\2\2\u00b7\u00b8\7q\2\2\u00b8\u00b9\7"+
"p\2\2\u00b9\u00ba\7v\2\2\u00ba\u00bb\7t\2\2\u00bb\u00bc\7c\2\2\u00bc\u00bd"+
"\7e\2\2\u00bd\u00be\7v\2\2\u00be\u00bf\7\60\2\2\u00bf\u00c0\7c\2\2\u00c0"+
"\u00c1\7f\2\2\u00c1\u00c2\7f\2\2\u00c2\u00c3\7t\2\2\u00c3\u00c4\7g\2\2"+
"\u00c4\u00c5\7u\2\2\u00c5\u00c6\7u\2\2\u00c6\36\3\2\2\2\u00c7\u00c8\7"+
"]\2\2\u00c8\u00c9\7c\2\2\u00c9\u00ca\7u\2\2\u00ca\u00cb\7o\2\2\u00cb "+
"\3\2\2\2\u00cc\u00cd\7o\2\2\u00cd\u00ce\7u\2\2\u00ce\u00cf\7i\2\2\u00cf"+
"\u00d0\7\60\2\2\u00d0\u00d1\7x\2\2\u00d1\u00d2\7c\2\2\u00d2\u00d3\7n\2"+
"\2\u00d3\u00d4\7w\2\2\u00d4\u00d5\7g\2\2\u00d5\"\3\2\2\2\u00d6\u00d7\7"+
"k\2\2\u00d7\u00d8\7p\2\2\u00d8\u00d9\7k\2\2\u00d9\u00da\7v\2\2\u00da$"+
"\3\2\2\2\u00db\u00dc\7d\2\2\u00dc\u00dd\7n\2\2\u00dd\u00de\7q\2\2\u00de"+
"\u00df\7e\2\2\u00df\u00e0\7m\2\2\u00e0\u00e1\7\60\2\2\u00e1\u00e2\7r\2"+
"\2\u00e2\u00e3\7t\2\2\u00e3\u00e4\7g\2\2\u00e4\u00e5\7x\2\2\u00e5\u00e6"+
"\7j\2\2\u00e6\u00e7\7c\2\2\u00e7\u00e8\7u\2\2\u00e8\u00e9\7j\2\2\u00e9"+
"&\3\2\2\2\u00ea\u00eb\7e\2\2\u00eb\u00ec\7q\2\2\u00ec\u00ed\7p\2\2\u00ed"+
"\u00ee\7v\2\2\u00ee\u00ef\7t\2\2\u00ef\u00f0\7c\2\2\u00f0\u00f1\7e\2\2"+
"\u00f1\u00f2\7v\2\2\u00f2\u00f3\7\60\2\2\u00f3\u00f4\7u\2\2\u00f4\u00f5"+
"\7v\2\2\u00f5\u00f6\7q\2\2\u00f6\u00f7\7t\2\2\u00f7\u00f8\7c\2\2\u00f8"+
"\u00f9\7i\2\2\u00f9\u00fa\7g\2\2\u00fa(\3\2\2\2\u00fb\u00fc\7u\2\2\u00fc"+
"\u00fd\7w\2\2\u00fd\u00fe\7k\2\2\u00fe\u00ff\7e\2\2\u00ff\u0100\7k\2\2"+
"\u0100\u0101\7f\2\2\u0101\u0102\7g\2\2\u0102*\3\2\2\2\u0103\u0104\7d\2"+
"\2\u0104\u0105\7n\2\2\u0105\u0106\7q\2\2\u0106\u0107\7e\2\2\u0107\u0108"+
"\7m\2\2\u0108\u0109\7\60\2\2\u0109\u010a\7f\2\2\u010a\u010b\7k\2\2\u010b"+
"\u010c\7h\2\2\u010c\u010d\7h\2\2\u010d\u010e\7k\2\2\u010e\u010f\7e\2\2"+
"\u010f\u0110\7w\2\2\u0110\u0111\7n\2\2\u0111\u0112\7v\2\2\u0112\u0113"+
"\7{\2\2\u0113,\3\2\2\2\u0114\u0115\7o\2\2\u0115\u0116\7u\2\2\u0116\u0117"+
"\7i\2\2\u0117\u0118\7\60\2\2\u0118\u0119\7f\2\2\u0119\u011a\7c\2\2\u011a"+
"\u011b\7v\2\2\u011b\u011c\7c\2\2\u011c\u011d\7u\2\2\u011d\u011e\7k\2\2"+
"\u011e\u011f\7|\2\2\u011f\u0120\7g\2\2\u0120.\3\2\2\2\u0121\u0122\7+\2"+
"\2\u0122\60\3\2\2\2\u0123\u0124\7v\2\2\u0124\u0125\7z\2\2\u0125\u0126"+
"\7\60\2\2\u0126\u0127\7i\2\2\u0127\u0128\7c\2\2\u0128\u0129\7u\2\2\u0129"+
"\u012a\7r\2\2\u012a\u012b\7t\2\2\u012b\u012c\7k\2\2\u012c\u012d\7e\2\2"+
"\u012d\u012e\7g\2\2\u012e\62\3\2\2\2\u012f\u0130\7g\2\2\u0130\u0131\7"+
"n\2\2\u0131\u0132\7u\2\2\u0132\u0133\7g\2\2\u0133\u0134\7<\2\2\u0134\64"+
"\3\2\2\2\u0135\u0136\7v\2\2\u0136\u0137\7z\2\2\u0137\u0138\7\60\2\2\u0138"+
"\u0139\7q\2\2\u0139\u013a\7t\2\2\u013a\u013b\7k\2\2\u013b\u013c\7i\2\2"+
"\u013c\u013d\7k\2\2\u013d\u013e\7p\2\2\u013e\66\3\2\2\2\u013f\u0140\7"+
"o\2\2\u0140\u0141\7u\2\2\u0141\u0142\7i\2\2\u0142\u0143\7\60\2\2\u0143"+
"\u0144\7f\2\2\u0144\u0145\7c\2\2\u0145\u0146\7v\2\2\u0146\u0147\7c\2\2"+
"\u01478\3\2\2\2\u0148\u0149\7g\2\2\u0149\u014a\7n\2\2\u014a\u014b\7k\2"+
"\2\u014b\u014c\7h\2\2\u014c:\3\2\2\2\u014d\u014e\7t\2\2\u014e\u014f\7"+
"g\2\2\u014f\u0150\7v\2\2\u0150\u0151\7w\2\2\u0151\u0152\7t\2\2\u0152\u0153"+
"\7p\2\2\u0153<\3\2\2\2\u0154\u0155\7o\2\2\u0155\u0156\7u\2\2\u0156\u0157"+
"\7i\2\2\u0157\u0158\7\60\2\2\u0158\u0159\7u\2\2\u0159\u015a\7g\2\2\u015a"+
"\u015b\7p\2\2\u015b\u015c\7f\2\2\u015c\u015d\7g\2\2\u015d\u015e\7t\2\2"+
"\u015e>\3\2\2\2\u015f\u0160\7e\2\2\u0160\u0161\7q\2\2\u0161\u0162\7p\2"+
"\2\u0162\u0163\7v\2\2\u0163\u0164\7t\2\2\u0164\u0165\7c\2\2\u0165\u0166"+
"\7e\2\2\u0166\u0167\7v\2\2\u0167\u0168\7\60\2\2\u0168\u0169\7d\2\2\u0169"+
"\u016a\7c\2\2\u016a\u016b\7n\2\2\u016b\u016c\7c\2\2\u016c\u016d\7p\2\2"+
"\u016d\u016e\7e\2\2\u016e\u016f\7g\2\2\u016f@\3\2\2\2\u0170\u0171\7c\2"+
"\2\u0171\u0172\7u\2\2\u0172\u0173\7o\2\2\u0173\u0174\7_\2\2\u0174B\3\2"+
"\2\2\u0175\u0176\7d\2\2\u0176\u0177\7n\2\2\u0177\u0178\7q\2\2\u0178\u0179"+
"\7e\2\2\u0179\u017a\7m\2\2\u017a\u017b\7\60\2\2\u017b\u017c\7i\2\2\u017c"+
"\u017d\7c\2\2\u017d\u017e\7u\2\2\u017e\u017f\7n\2\2\u017f\u0180\7k\2\2"+
"\u0180\u0181\7o\2\2\u0181\u0182\7k\2\2\u0182\u0183\7v\2\2\u0183D\3\2\2"+
"\2\u0184\u0185\7d\2\2\u0185\u0186\7n\2\2\u0186\u0187\7q\2\2\u0187\u0188"+
"\7e\2\2\u0188\u0189\7m\2\2\u0189\u018a\7\60\2\2\u018a\u018b\7p\2\2\u018b"+
"\u018c\7w\2\2\u018c\u018d\7o\2\2\u018d\u018e\7d\2\2\u018e\u018f\7g\2\2"+
"\u018f\u0190\7t\2\2\u0190F\3\2\2\2\u0191\u0192\7e\2\2\u0192\u0193\7q\2"+
"\2\u0193\u0194\7f\2\2\u0194\u0195\7g\2\2\u0195H\3\2\2\2\u0196\u0198\t"+
"\2\2\2\u0197\u0196\3\2\2\2\u0198\u0199\3\2\2\2\u0199\u0197\3\2\2\2\u0199"+
"\u019a\3\2\2\2\u019aJ\3\2\2\2\u019b\u019c\7U\2\2\u019c\u019d\7V\2\2\u019d"+
"\u019e\7Q\2\2\u019e\u0374\7R\2\2\u019f\u01a0\7C\2\2\u01a0\u01a1\7F\2\2"+
"\u01a1\u0374\7F\2\2\u01a2\u01a3\7O\2\2\u01a3\u01a4\7W\2\2\u01a4\u0374"+
"\7N\2\2\u01a5\u01a6\7U\2\2\u01a6\u01a7\7W\2\2\u01a7\u0374\7D\2\2\u01a8"+
"\u01a9\7F\2\2\u01a9\u01aa\7K\2\2\u01aa\u0374\7X\2\2\u01ab\u01ac\7U\2\2"+
"\u01ac\u01ad\7F\2\2\u01ad\u01ae\7K\2\2\u01ae\u0374\7X\2\2\u01af\u01b0"+
"\7O\2\2\u01b0\u01b1\7Q\2\2\u01b1\u0374\7F\2\2\u01b2\u01b3\7U\2\2\u01b3"+
"\u01b4\7O\2\2\u01b4\u01b5\7Q\2\2\u01b5\u0374\7F\2\2\u01b6\u01b7\7G\2\2"+
"\u01b7\u01b8\7Z\2\2\u01b8\u0374\7R\2\2\u01b9\u01ba\7P\2\2\u01ba\u01bb"+
"\7G\2\2\u01bb\u0374\7I\2\2\u01bc\u01bd\7N\2\2\u01bd\u0374\7V\2\2\u01be"+
"\u01bf\7I\2\2\u01bf\u0374\7V\2\2\u01c0\u01c1\7U\2\2\u01c1\u01c2\7N\2\2"+
"\u01c2\u0374\7V\2\2\u01c3\u01c4\7U\2\2\u01c4\u01c5\7I\2\2\u01c5\u0374"+
"\7V\2\2\u01c6\u01c7\7G\2\2\u01c7\u0374\7S\2\2\u01c8\u01c9\7P\2\2\u01c9"+
"\u01ca\7Q\2\2\u01ca\u0374\7V\2\2\u01cb\u01cc\7C\2\2\u01cc\u01cd\7P\2\2"+
"\u01cd\u0374\7F\2\2\u01ce\u01cf\7Q\2\2\u01cf\u0374\7T\2\2\u01d0\u01d1"+
"\7Z\2\2\u01d1\u01d2\7Q\2\2\u01d2\u0374\7T\2\2\u01d3\u01d4\7D\2\2\u01d4"+
"\u01d5\7[\2\2\u01d5\u01d6\7V\2\2\u01d6\u0374\7G\2\2\u01d7\u01d8\7U\2\2"+
"\u01d8\u01d9\7J\2\2\u01d9\u01da\7C\2\2\u01da\u0374\7\65\2\2\u01db\u01dc"+
"\7C\2\2\u01dc\u01dd\7F\2\2\u01dd\u01de\7F\2\2\u01de\u01df\7T\2\2\u01df"+
"\u01e0\7G\2\2\u01e0\u01e1\7U\2\2\u01e1\u0374\7U\2\2\u01e2\u01e3\7D\2\2"+
"\u01e3\u01e4\7C\2\2\u01e4\u01e5\7N\2\2\u01e5\u01e6\7C\2\2\u01e6\u01e7"+
"\7P\2\2\u01e7\u01e8\7E\2\2\u01e8\u0374\7G\2\2\u01e9\u01ea\7Q\2\2\u01ea"+
"\u01eb\7T\2\2\u01eb\u01ec\7K\2\2\u01ec\u01ed\7I\2\2\u01ed\u01ee\7K\2\2"+
"\u01ee\u0374\7P\2\2\u01ef\u01f0\7E\2\2\u01f0\u01f1\7C\2\2\u01f1\u01f2"+
"\7N\2\2\u01f2\u01f3\7N\2\2\u01f3\u01f4\7G\2\2\u01f4\u0374\7T\2\2\u01f5"+
"\u01f6\7E\2\2\u01f6\u01f7\7C\2\2\u01f7\u01f8\7N\2\2\u01f8\u01f9\7N\2\2"+
"\u01f9\u01fa\7X\2\2\u01fa\u01fb\7C\2\2\u01fb\u01fc\7N\2\2\u01fc\u01fd"+
"\7W\2\2\u01fd\u0374\7G\2\2\u01fe\u01ff\7E\2\2\u01ff\u0200\7C\2\2\u0200"+
"\u0201\7N\2\2\u0201\u0202\7N\2\2\u0202\u0203\7F\2\2\u0203\u0204\7C\2\2"+
"\u0204\u0205\7V\2\2\u0205\u0206\7C\2\2\u0206\u0207\7N\2\2\u0207\u0208"+
"\7Q\2\2\u0208\u0209\7C\2\2\u0209\u0374\7F\2\2\u020a\u020b\7E\2\2\u020b"+
"\u020c\7C\2\2\u020c\u020d\7N\2\2\u020d\u020e\7N\2\2\u020e\u020f\7F\2\2"+
"\u020f\u0210\7C\2\2\u0210\u0211\7V\2\2\u0211\u0212\7C\2\2\u0212\u0213"+
"\7U\2\2\u0213\u0214\7K\2\2\u0214\u0215\7\\\2\2\u0215\u0374\7G\2\2\u0216"+
"\u0217\7E\2\2\u0217\u0218\7C\2\2\u0218\u0219\7N\2\2\u0219\u021a\7N\2\2"+
"\u021a\u021b\7F\2\2\u021b\u021c\7C\2\2\u021c\u021d\7V\2\2\u021d\u021e"+
"\7C\2\2\u021e\u021f\7E\2\2\u021f\u0220\7Q\2\2\u0220\u0221\7R\2\2\u0221"+
"\u0374\7[\2\2\u0222\u0223\7E\2\2\u0223\u0224\7Q\2\2\u0224\u0225\7F\2\2"+
"\u0225\u0226\7G\2\2\u0226\u0227\7U\2\2\u0227\u0228\7K\2\2\u0228\u0229"+
"\7\\\2\2\u0229\u0374\7G\2\2\u022a\u022b\7E\2\2\u022b\u022c\7Q\2\2\u022c"+
"\u022d\7F\2\2\u022d\u022e\7G\2\2\u022e\u022f\7E\2\2\u022f\u0230\7Q\2\2"+
"\u0230\u0231\7R\2\2\u0231\u0374\7[\2\2\u0232\u0233\7I\2\2\u0233\u0234"+
"\7C\2\2\u0234\u0235\7U\2\2\u0235\u0236\7R\2\2\u0236\u0237\7T\2\2\u0237"+
"\u0238\7K\2\2\u0238\u0239\7E\2\2\u0239\u0374\7G\2\2\u023a\u023b\7R\2\2"+
"\u023b\u023c\7T\2\2\u023c\u023d\7G\2\2\u023d\u023e\7X\2\2\u023e\u023f"+
"\7J\2\2\u023f\u0240\7C\2\2\u0240\u0241\7U\2\2\u0241\u0374\7J\2\2\u0242"+
"\u0243\7E\2\2\u0243\u0244\7Q\2\2\u0244\u0245\7K\2\2\u0245\u0246\7P\2\2"+
"\u0246\u0247\7D\2\2\u0247\u0248\7C\2\2\u0248\u0249\7U\2\2\u0249\u0374"+
"\7G\2\2\u024a\u024b\7V\2\2\u024b\u024c\7K\2\2\u024c\u024d\7O\2\2\u024d"+
"\u024e\7G\2\2\u024e\u024f\7U\2\2\u024f\u0250\7V\2\2\u0250\u0251\7C\2\2"+
"\u0251\u0252\7O\2\2\u0252\u0374\7R\2\2\u0253\u0254\7P\2\2\u0254\u0255"+
"\7W\2\2\u0255\u0256\7O\2\2\u0256\u0257\7D\2\2\u0257\u0258\7G\2\2\u0258"+
"\u0374\7T\2\2\u0259\u025a\7F\2\2\u025a\u025b\7K\2\2\u025b\u025c\7H\2\2"+
"\u025c\u025d\7H\2\2\u025d\u025e\7K\2\2\u025e\u025f\7E\2\2\u025f\u0260"+
"\7W\2\2\u0260\u0261\7N\2\2\u0261\u0262\7V\2\2\u0262\u0374\7[\2\2\u0263"+
"\u0264\7I\2\2\u0264\u0265\7C\2\2\u0265\u0266\7U\2\2\u0266\u0267\7N\2\2"+
"\u0267\u0268\7K\2\2\u0268\u0269\7O\2\2\u0269\u026a\7K\2\2\u026a\u0374"+
"\7V\2\2\u026b\u026c\7R\2\2\u026c\u026d\7Q\2\2\u026d\u0374\7R\2\2\u026e"+
"\u026f\7F\2\2\u026f\u0270\7W\2\2\u0270\u0374\7R\2\2\u0271\u0272\7U\2\2"+
"\u0272\u0273\7Y\2\2\u0273\u0274\7C\2\2\u0274\u0374\7R\2\2\u0275\u0276"+
"\7O\2\2\u0276\u0277\7N\2\2\u0277\u0278\7Q\2\2\u0278\u0279\7C\2\2\u0279"+
"\u0374\7F\2\2\u027a\u027b\7O\2\2\u027b\u027c\7U\2\2\u027c\u027d\7V\2\2"+
"\u027d\u027e\7Q\2\2\u027e\u027f\7T\2\2\u027f\u0374\7G\2\2\u0280\u0281"+
"\7O\2\2\u0281\u0282\7U\2\2\u0282\u0283\7V\2\2\u0283\u0284\7Q\2\2\u0284"+
"\u0285\7T\2\2\u0285\u0286\7G\2\2\u0286\u0374\7:\2\2\u0287\u0288\7U\2\2"+
"\u0288\u0289\7N\2\2\u0289\u028a\7Q\2\2\u028a\u028b\7C\2\2\u028b\u0374"+
"\7F\2\2\u028c\u028d\7U\2\2\u028d\u028e\7U\2\2\u028e\u028f\7V\2\2\u028f"+
"\u0290\7Q\2\2\u0290\u0291\7T\2\2\u0291\u0374\7G\2\2\u0292\u0293\7L\2\2"+
"\u0293\u0294\7W\2\2\u0294\u0295\7O\2\2\u0295\u0374\7R\2\2\u0296\u0297"+
"\7L\2\2\u0297\u0298\7W\2\2\u0298\u0299\7O\2\2\u0299\u029a\7R\2\2\u029a"+
"\u0374\7K\2\2\u029b\u029c\7R\2\2\u029c\u0374\7E\2\2\u029d\u029e\7O\2\2"+
"\u029e\u029f\7U\2\2\u029f\u02a0\7K\2\2\u02a0\u02a1\7\\\2\2\u02a1\u0374"+
"\7G\2\2\u02a2\u02a3\7I\2\2\u02a3\u02a4\7C\2\2\u02a4\u0374\7U\2\2\u02a5"+
"\u02a6\7R\2\2\u02a6\u02a7\7W\2\2\u02a7\u02a8\7U\2\2\u02a8\u02a9\7J\2\2"+
"\u02a9\u0374\7\63\2\2\u02aa\u02ab\7R\2\2\u02ab\u02ac\7W\2\2\u02ac\u02ad"+
"\7U\2\2\u02ad\u02ae\7J\2\2\u02ae\u0374\7\64\2\2\u02af\u02b0\7R\2\2\u02b0"+
"\u02b1\7W\2\2\u02b1\u02b2\7U\2\2\u02b2\u02b3\7J\2\2\u02b3\u0374\7\65\2"+
"\2\u02b4\u02b5\7R\2\2\u02b5\u02b6\7W\2\2\u02b6\u02b7\7U\2\2\u02b7\u02b8"+
"\7J\2\2\u02b8\u0374\7\66\2\2\u02b9\u02ba\7R\2\2\u02ba\u02bb\7W\2\2\u02bb"+
"\u02bc\7U\2\2\u02bc\u02bd\7J\2\2\u02bd\u0374\7\67\2\2\u02be\u02bf\7R\2"+
"\2\u02bf\u02c0\7W\2\2\u02c0\u02c1\7U\2\2\u02c1\u02c2\7J\2\2\u02c2\u0374"+
"\78\2\2\u02c3\u02c4\7R\2\2\u02c4\u02c5\7W\2\2\u02c5\u02c6\7U\2\2\u02c6"+
"\u02c7\7J\2\2\u02c7\u0374\79\2\2\u02c8\u02c9\7R\2\2\u02c9\u02ca\7W\2\2"+
"\u02ca\u02cb\7U\2\2\u02cb\u02cc\7J\2\2\u02cc\u0374\7:\2\2\u02cd\u02ce"+
"\7R\2\2\u02ce\u02cf\7W\2\2\u02cf\u02d0\7U\2\2\u02d0\u02d1\7J\2\2\u02d1"+
"\u0374\7;\2\2\u02d2\u02d3\7R\2\2\u02d3\u02d4\7W\2\2\u02d4\u02d5\7U\2\2"+
"\u02d5\u02d6\7J\2\2\u02d6\u02d7\7\63\2\2\u02d7\u0374\7\62\2\2\u02d8\u02d9"+
"\7R\2\2\u02d9\u02da\7W\2\2\u02da\u02db\7U\2\2\u02db\u02dc\7J\2\2\u02dc"+
"\u02dd\7\63\2\2\u02dd\u0374\7\63\2\2\u02de\u02df\7R\2\2\u02df\u02e0\7"+
"W\2\2\u02e0\u02e1\7U\2\2\u02e1\u02e2\7J\2\2\u02e2\u02e3\7\63\2\2\u02e3"+
"\u0374\7\64\2\2\u02e4\u02e5\7R\2\2\u02e5\u02e6\7W\2\2\u02e6\u02e7\7U\2"+
"\2\u02e7\u02e8\7J\2\2\u02e8\u02e9\7\63\2\2\u02e9\u0374\7\65\2\2\u02ea"+
"\u02eb\7R\2\2\u02eb\u02ec\7W\2\2\u02ec\u02ed\7U\2\2\u02ed\u02ee\7J\2\2"+
"\u02ee\u02ef\7\63\2\2\u02ef\u0374\7\66\2\2\u02f0\u02f1\7R\2\2\u02f1\u02f2"+
"\7W\2\2\u02f2\u02f3\7U\2\2\u02f3\u02f4\7J\2\2\u02f4\u02f5\7\63\2\2\u02f5"+
"\u0374\7\67\2\2\u02f6\u02f7\7R\2\2\u02f7\u02f8\7W\2\2\u02f8\u02f9\7U\2"+
"\2\u02f9\u02fa\7J\2\2\u02fa\u02fb\7\63\2\2\u02fb\u0374\78\2\2\u02fc\u02fd"+
"\7R\2\2\u02fd\u02fe\7W\2\2\u02fe\u02ff\7U\2\2\u02ff\u0300\7J\2\2\u0300"+
"\u0301\7\63\2\2\u0301\u0374\79\2\2\u0302\u0303\7R\2\2\u0303\u0304\7W\2"+
"\2\u0304\u0305\7U\2\2\u0305\u0306\7J\2\2\u0306\u0307\7\63\2\2\u0307\u0374"+
"\7:\2\2\u0308\u0309\7R\2\2\u0309\u030a\7W\2\2\u030a\u030b\7U\2\2\u030b"+
"\u030c\7J\2\2\u030c\u030d\7\63\2\2\u030d\u0374\7;\2\2\u030e\u030f\7R\2"+
"\2\u030f\u0310\7W\2\2\u0310\u0311\7U\2\2\u0311\u0312\7J\2\2\u0312\u0313"+
"\7\64\2\2\u0313\u0374\7\62\2\2\u0314\u0315\7R\2\2\u0315\u0316\7W\2\2\u0316"+
"\u0317\7U\2\2\u0317\u0318\7J\2\2\u0318\u0319\7\64\2\2\u0319\u0374\7\63"+
"\2\2\u031a\u031b\7R\2\2\u031b\u031c\7W\2\2\u031c\u031d\7U\2\2\u031d\u031e"+
"\7J\2\2\u031e\u031f\7\64\2\2\u031f\u0374\7\64\2\2\u0320\u0321\7R\2\2\u0321"+
"\u0322\7W\2\2\u0322\u0323\7U\2\2\u0323\u0324\7J\2\2\u0324\u0325\7\64\2"+
"\2\u0325\u0374\7\65\2\2\u0326\u0327\7R\2\2\u0327\u0328\7W\2\2\u0328\u0329"+
"\7U\2\2\u0329\u032a\7J\2\2\u032a\u032b\7\64\2\2\u032b\u0374\7\66\2\2\u032c"+
"\u032d\7R\2\2\u032d\u032e\7W\2\2\u032e\u032f\7U\2\2\u032f\u0330\7J\2\2"+
"\u0330\u0331\7\64\2\2\u0331\u0374\7\67\2\2\u0332\u0333\7R\2\2\u0333\u0334"+
"\7W\2\2\u0334\u0335\7U\2\2\u0335\u0336\7J\2\2\u0336\u0337\7\64\2\2\u0337"+
"\u0374\78\2\2\u0338\u0339\7R\2\2\u0339\u033a\7W\2\2\u033a\u033b\7U\2\2"+
"\u033b\u033c\7J\2\2\u033c\u033d\7\64\2\2\u033d\u0374\79\2\2\u033e\u033f"+
"\7R\2\2\u033f\u0340\7W\2\2\u0340\u0341\7U\2\2\u0341\u0342\7J\2\2\u0342"+
"\u0343\7\64\2\2\u0343\u0374\7:\2\2\u0344\u0345\7R\2\2\u0345\u0346\7W\2"+
"\2\u0346\u0347\7U\2\2\u0347\u0348\7J\2\2\u0348\u0349\7\64\2\2\u0349\u0374"+
"\7;\2\2\u034a\u034b\7R\2\2\u034b\u034c\7W\2\2\u034c\u034d\7U\2\2\u034d"+
"\u034e\7J\2\2\u034e\u034f\7\65\2\2\u034f\u0374\7\62\2\2\u0350\u0351\7"+
"R\2\2\u0351\u0352\7W\2\2\u0352\u0353\7U\2\2\u0353\u0354\7J\2\2\u0354\u0355"+
"\7\65\2\2\u0355\u0374\7\63\2\2\u0356\u0357\7R\2\2\u0357\u0358\7W\2\2\u0358"+
"\u0359\7U\2\2\u0359\u035a\7J\2\2\u035a\u035b\7\65\2\2\u035b\u0374\7\64"+
"\2\2\u035c\u035d\7E\2\2\u035d\u035e\7T\2\2\u035e\u035f\7G\2\2\u035f\u0360"+
"\7C\2\2\u0360\u0361\7V\2\2\u0361\u0374\7G\2\2\u0362\u0363\7E\2\2\u0363"+
"\u0364\7C\2\2\u0364\u0365\7N\2\2\u0365\u0374\7N\2\2\u0366\u0367\7T\2\2"+
"\u0367\u0368\7G\2\2\u0368\u0369\7V\2\2\u0369\u036a\7W\2\2\u036a\u036b"+
"\7T\2\2\u036b\u0374\7P\2\2\u036c\u036d\7U\2\2\u036d\u036e\7W\2\2\u036e"+
"\u036f\7K\2\2\u036f\u0370\7E\2\2\u0370\u0371\7K\2\2\u0371\u0372\7F\2\2"+
"\u0372\u0374\7G\2\2\u0373\u019b\3\2\2\2\u0373\u019f\3\2\2\2\u0373\u01a2"+
"\3\2\2\2\u0373\u01a5\3\2\2\2\u0373\u01a8\3\2\2\2\u0373\u01ab\3\2\2\2\u0373"+
"\u01af\3\2\2\2\u0373\u01b2\3\2\2\2\u0373\u01b6\3\2\2\2\u0373\u01b9\3\2"+
"\2\2\u0373\u01bc\3\2\2\2\u0373\u01be\3\2\2\2\u0373\u01c0\3\2\2\2\u0373"+
"\u01c3\3\2\2\2\u0373\u01c6\3\2\2\2\u0373\u01c8\3\2\2\2\u0373\u01cb\3\2"+
"\2\2\u0373\u01ce\3\2\2\2\u0373\u01d0\3\2\2\2\u0373\u01d3\3\2\2\2\u0373"+
"\u01d7\3\2\2\2\u0373\u01db\3\2\2\2\u0373\u01e2\3\2\2\2\u0373\u01e9\3\2"+
"\2\2\u0373\u01ef\3\2\2\2\u0373\u01f5\3\2\2\2\u0373\u01fe\3\2\2\2\u0373"+
"\u020a\3\2\2\2\u0373\u0216\3\2\2\2\u0373\u0222\3\2\2\2\u0373\u022a\3\2"+
"\2\2\u0373\u0232\3\2\2\2\u0373\u023a\3\2\2\2\u0373\u0242\3\2\2\2\u0373"+
"\u024a\3\2\2\2\u0373\u0253\3\2\2\2\u0373\u0259\3\2\2\2\u0373\u0263\3\2"+
"\2\2\u0373\u026b\3\2\2\2\u0373\u026e\3\2\2\2\u0373\u0271\3\2\2\2\u0373"+
"\u0275\3\2\2\2\u0373\u027a\3\2\2\2\u0373\u0280\3\2\2\2\u0373\u0287\3\2"+
"\2\2\u0373\u028c\3\2\2\2\u0373\u0292\3\2\2\2\u0373\u0296\3\2\2\2\u0373"+
"\u029b\3\2\2\2\u0373\u029d\3\2\2\2\u0373\u02a2\3\2\2\2\u0373\u02a5\3\2"+
"\2\2\u0373\u02aa\3\2\2\2\u0373\u02af\3\2\2\2\u0373\u02b4\3\2\2\2\u0373"+
"\u02b9\3\2\2\2\u0373\u02be\3\2\2\2\u0373\u02c3\3\2\2\2\u0373\u02c8\3\2"+
"\2\2\u0373\u02cd\3\2\2\2\u0373\u02d2\3\2\2\2\u0373\u02d8\3\2\2\2\u0373"+
"\u02de\3\2\2\2\u0373\u02e4\3\2\2\2\u0373\u02ea\3\2\2\2\u0373\u02f0\3\2"+
"\2\2\u0373\u02f6\3\2\2\2\u0373\u02fc\3\2\2\2\u0373\u0302\3\2\2\2\u0373"+
"\u0308\3\2\2\2\u0373\u030e\3\2\2\2\u0373\u0314\3\2\2\2\u0373\u031a\3\2"+
"\2\2\u0373\u0320\3\2\2\2\u0373\u0326\3\2\2\2\u0373\u032c\3\2\2\2\u0373"+
"\u0332\3\2\2\2\u0373\u0338\3\2\2\2\u0373\u033e\3\2\2\2\u0373\u0344\3\2"+
"\2\2\u0373\u034a\3\2\2\2\u0373\u0350\3\2\2\2\u0373\u0356\3\2\2\2\u0373"+
"\u035c\3\2\2\2\u0373\u0362\3\2\2\2\u0373\u0366\3\2\2\2\u0373\u036c\3\2"+
"\2\2\u0374L\3\2\2\2\u0375\u0376\7z\2\2\u0376\u0377\7q\2\2\u0377\u0378"+
"\7t\2\2\u0378N\3\2\2\2\u0379\u037a\7(\2\2\u037a\u037f\7(\2\2\u037b\u037c"+
"\7c\2\2\u037c\u037d\7p\2\2\u037d\u037f\7f\2\2\u037e\u0379\3\2\2\2\u037e"+
"\u037b\3\2\2\2\u037fP\3\2\2\2\u0380\u0381\7~\2\2\u0381\u0385\7~\2\2\u0382"+
"\u0383\7q\2\2\u0383\u0385\7t\2\2\u0384\u0380\3\2\2\2\u0384\u0382\3\2\2"+
"\2\u0385R\3\2\2\2\u0386\u038b\7#\2\2\u0387\u0388\7p\2\2\u0388\u0389\7"+
"q\2\2\u0389\u038b\7v\2\2\u038a\u0386\3\2\2\2\u038a\u0387\3\2\2\2\u038b"+
"T\3\2\2\2\u038c\u038d\7?\2\2\u038dV\3\2\2\2\u038e\u0390\7\17\2\2\u038f"+
"\u038e\3\2\2\2\u038f\u0390\3\2\2\2\u0390\u0391\3\2\2\2\u0391\u0395\7\f"+
"\2\2\u0392\u0394\7\"\2\2\u0393\u0392\3\2\2\2\u0394\u0397\3\2\2\2\u0395"+
"\u0393\3\2\2\2\u0395\u0396\3\2\2\2\u0396X\3\2\2\2\u0397\u0395\3\2\2\2"+
"\u0398\u039a\t\3\2\2\u0399\u0398\3\2\2\2\u039a\u039b\3\2\2\2\u039b\u0399"+
"\3\2\2\2\u039b\u039c\3\2\2\2\u039c\u039d\3\2\2\2\u039d\u039e\b-\2\2\u039e"+
"Z\3\2\2\2\u039f\u03a0\7\61\2\2\u03a0\u03a1\7\61\2\2\u03a1\u03a5\3\2\2"+
"\2\u03a2\u03a4\n\4\2\2\u03a3\u03a2\3\2\2\2\u03a4\u03a7\3\2\2\2\u03a5\u03a3"+
"\3\2\2\2\u03a5\u03a6\3\2\2\2\u03a6\u03a8\3\2\2\2\u03a7\u03a5\3\2\2\2\u03a8"+
"\u03a9\b.\3\2\u03a9\\\3\2\2\2\u03aa\u03ae\t\5\2\2\u03ab\u03ad\t\6\2\2"+
"\u03ac\u03ab\3\2\2\2\u03ad\u03b0\3\2\2\2\u03ae\u03ac\3\2\2\2\u03ae\u03af"+
"\3\2\2\2\u03af^\3\2\2\2\u03b0\u03ae\3\2\2\2\u03b1\u03b2\t\7\2\2\u03b2"+
"`\3\2\2\2\u03b3\u03b9\t\b\2\2\u03b4\u03b5\7%\2\2\u03b5\u03b9\7\61\2\2"+
"\u03b6\u03b7\7%\2\2\u03b7\u03b9\7\'\2\2\u03b8\u03b3\3\2\2\2\u03b8\u03b4"+
"\3\2\2\2\u03b8\u03b6\3\2\2\2\u03b9b\3\2\2\2\u03ba\u03c0\t\t\2\2\u03bb"+
"\u03bc\7>\2\2\u03bc\u03c0\7?\2\2\u03bd\u03be\7@\2\2\u03be\u03c0\7?\2\2"+
"\u03bf\u03ba\3\2\2\2\u03bf\u03bb\3\2\2\2\u03bf\u03bd\3\2\2\2\u03c0d\3"+
"\2\2\2\u03c1\u03c2\7?\2\2\u03c2\u03c6\7?\2\2\u03c3\u03c4\7#\2\2\u03c4"+
"\u03c6\7?\2\2\u03c5\u03c1\3\2\2\2\u03c5\u03c3\3\2\2\2\u03c6f\3\2\2\2\u03c7"+
"\u03c8\7(\2\2\u03c8h\3\2\2\2\u03c9\u03ca\7~\2\2\u03caj\3\2\2\2\u03cb\u03cc"+
"\t\n\2\2\u03ccl\3\2\2\2\u03cd\u03ce\7\62\2\2\u03ce\u03d2\7z\2\2\u03cf"+
"\u03d0\7\62\2\2\u03d0\u03d2\7Z\2\2\u03d1\u03cd\3\2\2\2\u03d1\u03cf\3\2"+
"\2\2\u03d2\u03d4\3\2\2\2\u03d3\u03d5\5k\66\2\u03d4\u03d3\3\2\2\2\u03d5"+
"\u03d6\3\2\2\2\u03d6\u03d4\3\2\2\2\u03d6\u03d7\3\2\2\2\u03d7n\3\2\2\2"+
"\22\2\u0199\u0373\u037e\u0384\u038a\u038f\u0395\u039b\u03a5\u03ae\u03b8"+
"\u03bf\u03c5\u03d1\u03d6";
"\64\4\65\t\65\4\66\t\66\4\67\t\67\48\t8\3\2\3\2\3\3\3\3\3\3\3\3\3\3\3"+
"\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\5\3\5\3\6"+
"\3\6\3\6\3\6\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\t\3"+
"\t\3\n\3\n\3\13\3\13\3\f\3\f\3\f\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\16\3\16\3\16\3\16\3\16\3\16\3\16\3\16\3\17\3"+
"\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3"+
"\17\3\17\3\20\3\20\3\20\3\20\3\20\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3"+
"\21\3\21\3\21\3\22\3\22\3\22\3\22\3\22\3\23\3\23\3\23\3\23\3\23\3\23\3"+
"\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\24\3\24\3\24\3\24\3\24\3"+
"\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\25\3\25\3"+
"\25\3\25\3\25\3\25\3\25\3\25\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3"+
"\26\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\27\3\27\3\27\3\27\3\27\3"+
"\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\30\3\30\3\31\3\31\3\31\3\31\3"+
"\31\3\31\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\33\3\33\3\33\3\34\3\34\3\34\3\34\3"+
"\34\3\34\3\34\3\34\3\34\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\36\3\36\3"+
"\36\3\36\3\36\3\37\3\37\3\37\3\37\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$\3$\3"+
"$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3%\3%\3%\3%\3%\3&\6&\u01a1\n&\r&\16&\u01a2"+
"\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3"+
"\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'"+
"\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3"+
"\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'"+
"\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3"+
"\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'"+
"\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3"+
"\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'"+
"\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3"+
"\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'"+
"\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3"+
"\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'"+
"\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3"+
"\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'"+
"\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3"+
"\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'"+
"\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3"+
"\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'"+
"\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3"+
"\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'"+
"\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3"+
"\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'"+
"\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3"+
"\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'"+
"\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3"+
"\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'"+
"\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\5"+
"\'\u037d\n\'\3(\3(\3(\3(\3)\3)\3)\3)\3)\5)\u0388\n)\3*\3*\3*\3*\5*\u038e"+
"\n*\3+\3+\3+\3+\5+\u0394\n+\3,\3,\3-\5-\u0399\n-\3-\3-\7-\u039d\n-\f-"+
"\16-\u03a0\13-\3.\6.\u03a3\n.\r.\16.\u03a4\3.\3.\3/\3/\3/\3/\7/\u03ad"+
"\n/\f/\16/\u03b0\13/\3/\3/\3\60\3\60\7\60\u03b6\n\60\f\60\16\60\u03b9"+
"\13\60\3\61\3\61\3\62\3\62\3\62\3\62\3\62\5\62\u03c2\n\62\3\63\3\63\3"+
"\63\3\63\3\63\5\63\u03c9\n\63\3\64\3\64\3\64\3\64\5\64\u03cf\n\64\3\65"+
"\3\65\3\66\3\66\3\67\3\67\38\38\38\38\58\u03db\n8\38\68\u03de\n8\r8\16"+
"8\u03df\29\3\3\1\5\4\1\7\5\1\t\6\1\13\7\1\r\b\1\17\t\1\21\n\1\23\13\1"+
"\25\f\1\27\r\1\31\16\1\33\17\1\35\20\1\37\21\1!\22\1#\23\1%\24\1\'\25"+
"\1)\26\1+\27\1-\30\1/\31\1\61\32\1\63\33\1\65\34\1\67\35\19\36\1;\37\1"+
"= \1?!\1A\"\1C#\1E$\1G%\1I&\1K\'\1M(\1O)\1Q*\1S+\1U,\1W-\1Y.\1[/\2]\60"+
"\3_\61\1a\62\1c\63\1e\64\1g\65\1i\66\1k\67\1m8\1o9\1\3\2\13\3\2\62;\4"+
"\2\13\13\"\"\4\2\f\f\17\17\4\2C\\c|\5\2\62;C\\c|\4\2--//\6\2\'\',,\61"+
"\61``\4\2>>@@\5\2\62;CHch\u0446\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\3q\3\2\2\2\5s\3\2\2\2\7x"+
"\3\2\2\2\t\u0087\3\2\2\2\13\u0089\3\2\2\2\r\u008d\3\2\2\2\17\u0094\3\2"+
"\2\2\21\u009a\3\2\2\2\23\u009c\3\2\2\2\25\u009e\3\2\2\2\27\u00a0\3\2\2"+
"\2\31\u00a3\3\2\2\2\33\u00a8\3\2\2\2\35\u00b8\3\2\2\2\37\u00c9\3\2\2\2"+
"!\u00ce\3\2\2\2#\u00d8\3\2\2\2%\u00dd\3\2\2\2\'\u00ec\3\2\2\2)\u00fd\3"+
"\2\2\2+\u0105\3\2\2\2-\u0116\3\2\2\2/\u0123\3\2\2\2\61\u0125\3\2\2\2\63"+
"\u0131\3\2\2\2\65\u0137\3\2\2\2\67\u0141\3\2\2\29\u014a\3\2\2\2;\u0151"+
"\3\2\2\2=\u0156\3\2\2\2?\u015d\3\2\2\2A\u0168\3\2\2\2C\u0179\3\2\2\2E"+
"\u017e\3\2\2\2G\u018d\3\2\2\2I\u019a\3\2\2\2K\u01a0\3\2\2\2M\u037c\3\2"+
"\2\2O\u037e\3\2\2\2Q\u0387\3\2\2\2S\u038d\3\2\2\2U\u0393\3\2\2\2W\u0395"+
"\3\2\2\2Y\u0398\3\2\2\2[\u03a2\3\2\2\2]\u03a8\3\2\2\2_\u03b3\3\2\2\2a"+
"\u03ba\3\2\2\2c\u03c1\3\2\2\2e\u03c8\3\2\2\2g\u03ce\3\2\2\2i\u03d0\3\2"+
"\2\2k\u03d2\3\2\2\2m\u03d4\3\2\2\2o\u03da\3\2\2\2qr\7_\2\2r\4\3\2\2\2"+
"st\7u\2\2tu\7v\2\2uv\7q\2\2vw\7r\2\2w\6\3\2\2\2xy\7d\2\2yz\7n\2\2z{\7"+
"q\2\2{|\7e\2\2|}\7m\2\2}~\7\60\2\2~\177\7e\2\2\177\u0080\7q\2\2\u0080"+
"\u0081\7k\2\2\u0081\u0082\7p\2\2\u0082\u0083\7d\2\2\u0083\u0084\7c\2\2"+
"\u0084\u0085\7u\2\2\u0085\u0086\7g\2\2\u0086\b\3\2\2\2\u0087\u0088\7."+
"\2\2\u0088\n\3\2\2\2\u0089\u008a\7o\2\2\u008a\u008b\7u\2\2\u008b\u008c"+
"\7i\2\2\u008c\f\3\2\2\2\u008d\u008e\7v\2\2\u008e\u008f\7z\2\2\u008f\u0090"+
"\7\60\2\2\u0090\u0091\7i\2\2\u0091\u0092\7c\2\2\u0092\u0093\7u\2\2\u0093"+
"\16\3\2\2\2\u0094\u0095\7y\2\2\u0095\u0096\7j\2\2\u0096\u0097\7k\2\2\u0097"+
"\u0098\7n\2\2\u0098\u0099\7g\2\2\u0099\20\3\2\2\2\u009a\u009b\7]\2\2\u009b"+
"\22\3\2\2\2\u009c\u009d\7<\2\2\u009d\24\3\2\2\2\u009e\u009f\7*\2\2\u009f"+
"\26\3\2\2\2\u00a0\u00a1\7k\2\2\u00a1\u00a2\7h\2\2\u00a2\30\3\2\2\2\u00a3"+
"\u00a4\7u\2\2\u00a4\u00a5\7g\2\2\u00a5\u00a6\7p\2\2\u00a6\u00a7\7f\2\2"+
"\u00a7\32\3\2\2\2\u00a8\u00a9\7d\2\2\u00a9\u00aa\7n\2\2\u00aa\u00ab\7"+
"q\2\2\u00ab\u00ac\7e\2\2\u00ac\u00ad\7m\2\2\u00ad\u00ae\7\60\2\2\u00ae"+
"\u00af\7v\2\2\u00af\u00b0\7k\2\2\u00b0\u00b1\7o\2\2\u00b1\u00b2\7g\2\2"+
"\u00b2\u00b3\7u\2\2\u00b3\u00b4\7v\2\2\u00b4\u00b5\7c\2\2\u00b5\u00b6"+
"\7o\2\2\u00b6\u00b7\7r\2\2\u00b7\34\3\2\2\2\u00b8\u00b9\7e\2\2\u00b9\u00ba"+
"\7q\2\2\u00ba\u00bb\7p\2\2\u00bb\u00bc\7v\2\2\u00bc\u00bd\7t\2\2\u00bd"+
"\u00be\7c\2\2\u00be\u00bf\7e\2\2\u00bf\u00c0\7v\2\2\u00c0\u00c1\7\60\2"+
"\2\u00c1\u00c2\7c\2\2\u00c2\u00c3\7f\2\2\u00c3\u00c4\7f\2\2\u00c4\u00c5"+
"\7t\2\2\u00c5\u00c6\7g\2\2\u00c6\u00c7\7u\2\2\u00c7\u00c8\7u\2\2\u00c8"+
"\36\3\2\2\2\u00c9\u00ca\7]\2\2\u00ca\u00cb\7c\2\2\u00cb\u00cc\7u\2\2\u00cc"+
"\u00cd\7o\2\2\u00cd \3\2\2\2\u00ce\u00cf\7o\2\2\u00cf\u00d0\7u\2\2\u00d0"+
"\u00d1\7i\2\2\u00d1\u00d2\7\60\2\2\u00d2\u00d3\7x\2\2\u00d3\u00d4\7c\2"+
"\2\u00d4\u00d5\7n\2\2\u00d5\u00d6\7w\2\2\u00d6\u00d7\7g\2\2\u00d7\"\3"+
"\2\2\2\u00d8\u00d9\7k\2\2\u00d9\u00da\7p\2\2\u00da\u00db\7k\2\2\u00db"+
"\u00dc\7v\2\2\u00dc$\3\2\2\2\u00dd\u00de\7d\2\2\u00de\u00df\7n\2\2\u00df"+
"\u00e0\7q\2\2\u00e0\u00e1\7e\2\2\u00e1\u00e2\7m\2\2\u00e2\u00e3\7\60\2"+
"\2\u00e3\u00e4\7r\2\2\u00e4\u00e5\7t\2\2\u00e5\u00e6\7g\2\2\u00e6\u00e7"+
"\7x\2\2\u00e7\u00e8\7j\2\2\u00e8\u00e9\7c\2\2\u00e9\u00ea\7u\2\2\u00ea"+
"\u00eb\7j\2\2\u00eb&\3\2\2\2\u00ec\u00ed\7e\2\2\u00ed\u00ee\7q\2\2\u00ee"+
"\u00ef\7p\2\2\u00ef\u00f0\7v\2\2\u00f0\u00f1\7t\2\2\u00f1\u00f2\7c\2\2"+
"\u00f2\u00f3\7e\2\2\u00f3\u00f4\7v\2\2\u00f4\u00f5\7\60\2\2\u00f5\u00f6"+
"\7u\2\2\u00f6\u00f7\7v\2\2\u00f7\u00f8\7q\2\2\u00f8\u00f9\7t\2\2\u00f9"+
"\u00fa\7c\2\2\u00fa\u00fb\7i\2\2\u00fb\u00fc\7g\2\2\u00fc(\3\2\2\2\u00fd"+
"\u00fe\7u\2\2\u00fe\u00ff\7w\2\2\u00ff\u0100\7k\2\2\u0100\u0101\7e\2\2"+
"\u0101\u0102\7k\2\2\u0102\u0103\7f\2\2\u0103\u0104\7g\2\2\u0104*\3\2\2"+
"\2\u0105\u0106\7d\2\2\u0106\u0107\7n\2\2\u0107\u0108\7q\2\2\u0108\u0109"+
"\7e\2\2\u0109\u010a\7m\2\2\u010a\u010b\7\60\2\2\u010b\u010c\7f\2\2\u010c"+
"\u010d\7k\2\2\u010d\u010e\7h\2\2\u010e\u010f\7h\2\2\u010f\u0110\7k\2\2"+
"\u0110\u0111\7e\2\2\u0111\u0112\7w\2\2\u0112\u0113\7n\2\2\u0113\u0114"+
"\7v\2\2\u0114\u0115\7{\2\2\u0115,\3\2\2\2\u0116\u0117\7o\2\2\u0117\u0118"+
"\7u\2\2\u0118\u0119\7i\2\2\u0119\u011a\7\60\2\2\u011a\u011b\7f\2\2\u011b"+
"\u011c\7c\2\2\u011c\u011d\7v\2\2\u011d\u011e\7c\2\2\u011e\u011f\7u\2\2"+
"\u011f\u0120\7k\2\2\u0120\u0121\7|\2\2\u0121\u0122\7g\2\2\u0122.\3\2\2"+
"\2\u0123\u0124\7+\2\2\u0124\60\3\2\2\2\u0125\u0126\7v\2\2\u0126\u0127"+
"\7z\2\2\u0127\u0128\7\60\2\2\u0128\u0129\7i\2\2\u0129\u012a\7c\2\2\u012a"+
"\u012b\7u\2\2\u012b\u012c\7r\2\2\u012c\u012d\7t\2\2\u012d\u012e\7k\2\2"+
"\u012e\u012f\7e\2\2\u012f\u0130\7g\2\2\u0130\62\3\2\2\2\u0131\u0132\7"+
"g\2\2\u0132\u0133\7n\2\2\u0133\u0134\7u\2\2\u0134\u0135\7g\2\2\u0135\u0136"+
"\7<\2\2\u0136\64\3\2\2\2\u0137\u0138\7v\2\2\u0138\u0139\7z\2\2\u0139\u013a"+
"\7\60\2\2\u013a\u013b\7q\2\2\u013b\u013c\7t\2\2\u013c\u013d\7k\2\2\u013d"+
"\u013e\7i\2\2\u013e\u013f\7k\2\2\u013f\u0140\7p\2\2\u0140\66\3\2\2\2\u0141"+
"\u0142\7o\2\2\u0142\u0143\7u\2\2\u0143\u0144\7i\2\2\u0144\u0145\7\60\2"+
"\2\u0145\u0146\7f\2\2\u0146\u0147\7c\2\2\u0147\u0148\7v\2\2\u0148\u0149"+
"\7c\2\2\u01498\3\2\2\2\u014a\u014b\7e\2\2\u014b\u014c\7t\2\2\u014c\u014d"+
"\7g\2\2\u014d\u014e\7c\2\2\u014e\u014f\7v\2\2\u014f\u0150\7g\2\2\u0150"+
":\3\2\2\2\u0151\u0152\7g\2\2\u0152\u0153\7n\2\2\u0153\u0154\7k\2\2\u0154"+
"\u0155\7h\2\2\u0155<\3\2\2\2\u0156\u0157\7t\2\2\u0157\u0158\7g\2\2\u0158"+
"\u0159\7v\2\2\u0159\u015a\7w\2\2\u015a\u015b\7t\2\2\u015b\u015c\7p\2\2"+
"\u015c>\3\2\2\2\u015d\u015e\7o\2\2\u015e\u015f\7u\2\2\u015f\u0160\7i\2"+
"\2\u0160\u0161\7\60\2\2\u0161\u0162\7u\2\2\u0162\u0163\7g\2\2\u0163\u0164"+
"\7p\2\2\u0164\u0165\7f\2\2\u0165\u0166\7g\2\2\u0166\u0167\7t\2\2\u0167"+
"@\3\2\2\2\u0168\u0169\7e\2\2\u0169\u016a\7q\2\2\u016a\u016b\7p\2\2\u016b"+
"\u016c\7v\2\2\u016c\u016d\7t\2\2\u016d\u016e\7c\2\2\u016e\u016f\7e\2\2"+
"\u016f\u0170\7v\2\2\u0170\u0171\7\60\2\2\u0171\u0172\7d\2\2\u0172\u0173"+
"\7c\2\2\u0173\u0174\7n\2\2\u0174\u0175\7c\2\2\u0175\u0176\7p\2\2\u0176"+
"\u0177\7e\2\2\u0177\u0178\7g\2\2\u0178B\3\2\2\2\u0179\u017a\7c\2\2\u017a"+
"\u017b\7u\2\2\u017b\u017c\7o\2\2\u017c\u017d\7_\2\2\u017dD\3\2\2\2\u017e"+
"\u017f\7d\2\2\u017f\u0180\7n\2\2\u0180\u0181\7q\2\2\u0181\u0182\7e\2\2"+
"\u0182\u0183\7m\2\2\u0183\u0184\7\60\2\2\u0184\u0185\7i\2\2\u0185\u0186"+
"\7c\2\2\u0186\u0187\7u\2\2\u0187\u0188\7n\2\2\u0188\u0189\7k\2\2\u0189"+
"\u018a\7o\2\2\u018a\u018b\7k\2\2\u018b\u018c\7v\2\2\u018cF\3\2\2\2\u018d"+
"\u018e\7d\2\2\u018e\u018f\7n\2\2\u018f\u0190\7q\2\2\u0190\u0191\7e\2\2"+
"\u0191\u0192\7m\2\2\u0192\u0193\7\60\2\2\u0193\u0194\7p\2\2\u0194\u0195"+
"\7w\2\2\u0195\u0196\7o\2\2\u0196\u0197\7d\2\2\u0197\u0198\7g\2\2\u0198"+
"\u0199\7t\2\2\u0199H\3\2\2\2\u019a\u019b\7e\2\2\u019b\u019c\7q\2\2\u019c"+
"\u019d\7f\2\2\u019d\u019e\7g\2\2\u019eJ\3\2\2\2\u019f\u01a1\t\2\2\2\u01a0"+
"\u019f\3\2\2\2\u01a1\u01a2\3\2\2\2\u01a2\u01a0\3\2\2\2\u01a2\u01a3\3\2"+
"\2\2\u01a3L\3\2\2\2\u01a4\u01a5\7U\2\2\u01a5\u01a6\7V\2\2\u01a6\u01a7"+
"\7Q\2\2\u01a7\u037d\7R\2\2\u01a8\u01a9\7C\2\2\u01a9\u01aa\7F\2\2\u01aa"+
"\u037d\7F\2\2\u01ab\u01ac\7O\2\2\u01ac\u01ad\7W\2\2\u01ad\u037d\7N\2\2"+
"\u01ae\u01af\7U\2\2\u01af\u01b0\7W\2\2\u01b0\u037d\7D\2\2\u01b1\u01b2"+
"\7F\2\2\u01b2\u01b3\7K\2\2\u01b3\u037d\7X\2\2\u01b4\u01b5\7U\2\2\u01b5"+
"\u01b6\7F\2\2\u01b6\u01b7\7K\2\2\u01b7\u037d\7X\2\2\u01b8\u01b9\7O\2\2"+
"\u01b9\u01ba\7Q\2\2\u01ba\u037d\7F\2\2\u01bb\u01bc\7U\2\2\u01bc\u01bd"+
"\7O\2\2\u01bd\u01be\7Q\2\2\u01be\u037d\7F\2\2\u01bf\u01c0\7G\2\2\u01c0"+
"\u01c1\7Z\2\2\u01c1\u037d\7R\2\2\u01c2\u01c3\7P\2\2\u01c3\u01c4\7G\2\2"+
"\u01c4\u037d\7I\2\2\u01c5\u01c6\7N\2\2\u01c6\u037d\7V\2\2\u01c7\u01c8"+
"\7I\2\2\u01c8\u037d\7V\2\2\u01c9\u01ca\7U\2\2\u01ca\u01cb\7N\2\2\u01cb"+
"\u037d\7V\2\2\u01cc\u01cd\7U\2\2\u01cd\u01ce\7I\2\2\u01ce\u037d\7V\2\2"+
"\u01cf\u01d0\7G\2\2\u01d0\u037d\7S\2\2\u01d1\u01d2\7P\2\2\u01d2\u01d3"+
"\7Q\2\2\u01d3\u037d\7V\2\2\u01d4\u01d5\7C\2\2\u01d5\u01d6\7P\2\2\u01d6"+
"\u037d\7F\2\2\u01d7\u01d8\7Q\2\2\u01d8\u037d\7T\2\2\u01d9\u01da\7Z\2\2"+
"\u01da\u01db\7Q\2\2\u01db\u037d\7T\2\2\u01dc\u01dd\7D\2\2\u01dd\u01de"+
"\7[\2\2\u01de\u01df\7V\2\2\u01df\u037d\7G\2\2\u01e0\u01e1\7U\2\2\u01e1"+
"\u01e2\7J\2\2\u01e2\u01e3\7C\2\2\u01e3\u037d\7\65\2\2\u01e4\u01e5\7C\2"+
"\2\u01e5\u01e6\7F\2\2\u01e6\u01e7\7F\2\2\u01e7\u01e8\7T\2\2\u01e8\u01e9"+
"\7G\2\2\u01e9\u01ea\7U\2\2\u01ea\u037d\7U\2\2\u01eb\u01ec\7D\2\2\u01ec"+
"\u01ed\7C\2\2\u01ed\u01ee\7N\2\2\u01ee\u01ef\7C\2\2\u01ef\u01f0\7P\2\2"+
"\u01f0\u01f1\7E\2\2\u01f1\u037d\7G\2\2\u01f2\u01f3\7Q\2\2\u01f3\u01f4"+
"\7T\2\2\u01f4\u01f5\7K\2\2\u01f5\u01f6\7I\2\2\u01f6\u01f7\7K\2\2\u01f7"+
"\u037d\7P\2\2\u01f8\u01f9\7E\2\2\u01f9\u01fa\7C\2\2\u01fa\u01fb\7N\2\2"+
"\u01fb\u01fc\7N\2\2\u01fc\u01fd\7G\2\2\u01fd\u037d\7T\2\2\u01fe\u01ff"+
"\7E\2\2\u01ff\u0200\7C\2\2\u0200\u0201\7N\2\2\u0201\u0202\7N\2\2\u0202"+
"\u0203\7X\2\2\u0203\u0204\7C\2\2\u0204\u0205\7N\2\2\u0205\u0206\7W\2\2"+
"\u0206\u037d\7G\2\2\u0207\u0208\7E\2\2\u0208\u0209\7C\2\2\u0209\u020a"+
"\7N\2\2\u020a\u020b\7N\2\2\u020b\u020c\7F\2\2\u020c\u020d\7C\2\2\u020d"+
"\u020e\7V\2\2\u020e\u020f\7C\2\2\u020f\u0210\7N\2\2\u0210\u0211\7Q\2\2"+
"\u0211\u0212\7C\2\2\u0212\u037d\7F\2\2\u0213\u0214\7E\2\2\u0214\u0215"+
"\7C\2\2\u0215\u0216\7N\2\2\u0216\u0217\7N\2\2\u0217\u0218\7F\2\2\u0218"+
"\u0219\7C\2\2\u0219\u021a\7V\2\2\u021a\u021b\7C\2\2\u021b\u021c\7U\2\2"+
"\u021c\u021d\7K\2\2\u021d\u021e\7\\\2\2\u021e\u037d\7G\2\2\u021f\u0220"+
"\7E\2\2\u0220\u0221\7C\2\2\u0221\u0222\7N\2\2\u0222\u0223\7N\2\2\u0223"+
"\u0224\7F\2\2\u0224\u0225\7C\2\2\u0225\u0226\7V\2\2\u0226\u0227\7C\2\2"+
"\u0227\u0228\7E\2\2\u0228\u0229\7Q\2\2\u0229\u022a\7R\2\2\u022a\u037d"+
"\7[\2\2\u022b\u022c\7E\2\2\u022c\u022d\7Q\2\2\u022d\u022e\7F\2\2\u022e"+
"\u022f\7G\2\2\u022f\u0230\7U\2\2\u0230\u0231\7K\2\2\u0231\u0232\7\\\2"+
"\2\u0232\u037d\7G\2\2\u0233\u0234\7E\2\2\u0234\u0235\7Q\2\2\u0235\u0236"+
"\7F\2\2\u0236\u0237\7G\2\2\u0237\u0238\7E\2\2\u0238\u0239\7Q\2\2\u0239"+
"\u023a\7R\2\2\u023a\u037d\7[\2\2\u023b\u023c\7I\2\2\u023c\u023d\7C\2\2"+
"\u023d\u023e\7U\2\2\u023e\u023f\7R\2\2\u023f\u0240\7T\2\2\u0240\u0241"+
"\7K\2\2\u0241\u0242\7E\2\2\u0242\u037d\7G\2\2\u0243\u0244\7R\2\2\u0244"+
"\u0245\7T\2\2\u0245\u0246\7G\2\2\u0246\u0247\7X\2\2\u0247\u0248\7J\2\2"+
"\u0248\u0249\7C\2\2\u0249\u024a\7U\2\2\u024a\u037d\7J\2\2\u024b\u024c"+
"\7E\2\2\u024c\u024d\7Q\2\2\u024d\u024e\7K\2\2\u024e\u024f\7P\2\2\u024f"+
"\u0250\7D\2\2\u0250\u0251\7C\2\2\u0251\u0252\7U\2\2\u0252\u037d\7G\2\2"+
"\u0253\u0254\7V\2\2\u0254\u0255\7K\2\2\u0255\u0256\7O\2\2\u0256\u0257"+
"\7G\2\2\u0257\u0258\7U\2\2\u0258\u0259\7V\2\2\u0259\u025a\7C\2\2\u025a"+
"\u025b\7O\2\2\u025b\u037d\7R\2\2\u025c\u025d\7P\2\2\u025d\u025e\7W\2\2"+
"\u025e\u025f\7O\2\2\u025f\u0260\7D\2\2\u0260\u0261\7G\2\2\u0261\u037d"+
"\7T\2\2\u0262\u0263\7F\2\2\u0263\u0264\7K\2\2\u0264\u0265\7H\2\2\u0265"+
"\u0266\7H\2\2\u0266\u0267\7K\2\2\u0267\u0268\7E\2\2\u0268\u0269\7W\2\2"+
"\u0269\u026a\7N\2\2\u026a\u026b\7V\2\2\u026b\u037d\7[\2\2\u026c\u026d"+
"\7I\2\2\u026d\u026e\7C\2\2\u026e\u026f\7U\2\2\u026f\u0270\7N\2\2\u0270"+
"\u0271\7K\2\2\u0271\u0272\7O\2\2\u0272\u0273\7K\2\2\u0273\u037d\7V\2\2"+
"\u0274\u0275\7R\2\2\u0275\u0276\7Q\2\2\u0276\u037d\7R\2\2\u0277\u0278"+
"\7F\2\2\u0278\u0279\7W\2\2\u0279\u037d\7R\2\2\u027a\u027b\7U\2\2\u027b"+
"\u027c\7Y\2\2\u027c\u027d\7C\2\2\u027d\u037d\7R\2\2\u027e\u027f\7O\2\2"+
"\u027f\u0280\7N\2\2\u0280\u0281\7Q\2\2\u0281\u0282\7C\2\2\u0282\u037d"+
"\7F\2\2\u0283\u0284\7O\2\2\u0284\u0285\7U\2\2\u0285\u0286\7V\2\2\u0286"+
"\u0287\7Q\2\2\u0287\u0288\7T\2\2\u0288\u037d\7G\2\2\u0289\u028a\7O\2\2"+
"\u028a\u028b\7U\2\2\u028b\u028c\7V\2\2\u028c\u028d\7Q\2\2\u028d\u028e"+
"\7T\2\2\u028e\u028f\7G\2\2\u028f\u037d\7:\2\2\u0290\u0291\7U\2\2\u0291"+
"\u0292\7N\2\2\u0292\u0293\7Q\2\2\u0293\u0294\7C\2\2\u0294\u037d\7F\2\2"+
"\u0295\u0296\7U\2\2\u0296\u0297\7U\2\2\u0297\u0298\7V\2\2\u0298\u0299"+
"\7Q\2\2\u0299\u029a\7T\2\2\u029a\u037d\7G\2\2\u029b\u029c\7L\2\2\u029c"+
"\u029d\7W\2\2\u029d\u029e\7O\2\2\u029e\u037d\7R\2\2\u029f\u02a0\7L\2\2"+
"\u02a0\u02a1\7W\2\2\u02a1\u02a2\7O\2\2\u02a2\u02a3\7R\2\2\u02a3\u037d"+
"\7K\2\2\u02a4\u02a5\7R\2\2\u02a5\u037d\7E\2\2\u02a6\u02a7\7O\2\2\u02a7"+
"\u02a8\7U\2\2\u02a8\u02a9\7K\2\2\u02a9\u02aa\7\\\2\2\u02aa\u037d\7G\2"+
"\2\u02ab\u02ac\7I\2\2\u02ac\u02ad\7C\2\2\u02ad\u037d\7U\2\2\u02ae\u02af"+
"\7R\2\2\u02af\u02b0\7W\2\2\u02b0\u02b1\7U\2\2\u02b1\u02b2\7J\2\2\u02b2"+
"\u037d\7\63\2\2\u02b3\u02b4\7R\2\2\u02b4\u02b5\7W\2\2\u02b5\u02b6\7U\2"+
"\2\u02b6\u02b7\7J\2\2\u02b7\u037d\7\64\2\2\u02b8\u02b9\7R\2\2\u02b9\u02ba"+
"\7W\2\2\u02ba\u02bb\7U\2\2\u02bb\u02bc\7J\2\2\u02bc\u037d\7\65\2\2\u02bd"+
"\u02be\7R\2\2\u02be\u02bf\7W\2\2\u02bf\u02c0\7U\2\2\u02c0\u02c1\7J\2\2"+
"\u02c1\u037d\7\66\2\2\u02c2\u02c3\7R\2\2\u02c3\u02c4\7W\2\2\u02c4\u02c5"+
"\7U\2\2\u02c5\u02c6\7J\2\2\u02c6\u037d\7\67\2\2\u02c7\u02c8\7R\2\2\u02c8"+
"\u02c9\7W\2\2\u02c9\u02ca\7U\2\2\u02ca\u02cb\7J\2\2\u02cb\u037d\78\2\2"+
"\u02cc\u02cd\7R\2\2\u02cd\u02ce\7W\2\2\u02ce\u02cf\7U\2\2\u02cf\u02d0"+
"\7J\2\2\u02d0\u037d\79\2\2\u02d1\u02d2\7R\2\2\u02d2\u02d3\7W\2\2\u02d3"+
"\u02d4\7U\2\2\u02d4\u02d5\7J\2\2\u02d5\u037d\7:\2\2\u02d6\u02d7\7R\2\2"+
"\u02d7\u02d8\7W\2\2\u02d8\u02d9\7U\2\2\u02d9\u02da\7J\2\2\u02da\u037d"+
"\7;\2\2\u02db\u02dc\7R\2\2\u02dc\u02dd\7W\2\2\u02dd\u02de\7U\2\2\u02de"+
"\u02df\7J\2\2\u02df\u02e0\7\63\2\2\u02e0\u037d\7\62\2\2\u02e1\u02e2\7"+
"R\2\2\u02e2\u02e3\7W\2\2\u02e3\u02e4\7U\2\2\u02e4\u02e5\7J\2\2\u02e5\u02e6"+
"\7\63\2\2\u02e6\u037d\7\63\2\2\u02e7\u02e8\7R\2\2\u02e8\u02e9\7W\2\2\u02e9"+
"\u02ea\7U\2\2\u02ea\u02eb\7J\2\2\u02eb\u02ec\7\63\2\2\u02ec\u037d\7\64"+
"\2\2\u02ed\u02ee\7R\2\2\u02ee\u02ef\7W\2\2\u02ef\u02f0\7U\2\2\u02f0\u02f1"+
"\7J\2\2\u02f1\u02f2\7\63\2\2\u02f2\u037d\7\65\2\2\u02f3\u02f4\7R\2\2\u02f4"+
"\u02f5\7W\2\2\u02f5\u02f6\7U\2\2\u02f6\u02f7\7J\2\2\u02f7\u02f8\7\63\2"+
"\2\u02f8\u037d\7\66\2\2\u02f9\u02fa\7R\2\2\u02fa\u02fb\7W\2\2\u02fb\u02fc"+
"\7U\2\2\u02fc\u02fd\7J\2\2\u02fd\u02fe\7\63\2\2\u02fe\u037d\7\67\2\2\u02ff"+
"\u0300\7R\2\2\u0300\u0301\7W\2\2\u0301\u0302\7U\2\2\u0302\u0303\7J\2\2"+
"\u0303\u0304\7\63\2\2\u0304\u037d\78\2\2\u0305\u0306\7R\2\2\u0306\u0307"+
"\7W\2\2\u0307\u0308\7U\2\2\u0308\u0309\7J\2\2\u0309\u030a\7\63\2\2\u030a"+
"\u037d\79\2\2\u030b\u030c\7R\2\2\u030c\u030d\7W\2\2\u030d\u030e\7U\2\2"+
"\u030e\u030f\7J\2\2\u030f\u0310\7\63\2\2\u0310\u037d\7:\2\2\u0311\u0312"+
"\7R\2\2\u0312\u0313\7W\2\2\u0313\u0314\7U\2\2\u0314\u0315\7J\2\2\u0315"+
"\u0316\7\63\2\2\u0316\u037d\7;\2\2\u0317\u0318\7R\2\2\u0318\u0319\7W\2"+
"\2\u0319\u031a\7U\2\2\u031a\u031b\7J\2\2\u031b\u031c\7\64\2\2\u031c\u037d"+
"\7\62\2\2\u031d\u031e\7R\2\2\u031e\u031f\7W\2\2\u031f\u0320\7U\2\2\u0320"+
"\u0321\7J\2\2\u0321\u0322\7\64\2\2\u0322\u037d\7\63\2\2\u0323\u0324\7"+
"R\2\2\u0324\u0325\7W\2\2\u0325\u0326\7U\2\2\u0326\u0327\7J\2\2\u0327\u0328"+
"\7\64\2\2\u0328\u037d\7\64\2\2\u0329\u032a\7R\2\2\u032a\u032b\7W\2\2\u032b"+
"\u032c\7U\2\2\u032c\u032d\7J\2\2\u032d\u032e\7\64\2\2\u032e\u037d\7\65"+
"\2\2\u032f\u0330\7R\2\2\u0330\u0331\7W\2\2\u0331\u0332\7U\2\2\u0332\u0333"+
"\7J\2\2\u0333\u0334\7\64\2\2\u0334\u037d\7\66\2\2\u0335\u0336\7R\2\2\u0336"+
"\u0337\7W\2\2\u0337\u0338\7U\2\2\u0338\u0339\7J\2\2\u0339\u033a\7\64\2"+
"\2\u033a\u037d\7\67\2\2\u033b\u033c\7R\2\2\u033c\u033d\7W\2\2\u033d\u033e"+
"\7U\2\2\u033e\u033f\7J\2\2\u033f\u0340\7\64\2\2\u0340\u037d\78\2\2\u0341"+
"\u0342\7R\2\2\u0342\u0343\7W\2\2\u0343\u0344\7U\2\2\u0344\u0345\7J\2\2"+
"\u0345\u0346\7\64\2\2\u0346\u037d\79\2\2\u0347\u0348\7R\2\2\u0348\u0349"+
"\7W\2\2\u0349\u034a\7U\2\2\u034a\u034b\7J\2\2\u034b\u034c\7\64\2\2\u034c"+
"\u037d\7:\2\2\u034d\u034e\7R\2\2\u034e\u034f\7W\2\2\u034f\u0350\7U\2\2"+
"\u0350\u0351\7J\2\2\u0351\u0352\7\64\2\2\u0352\u037d\7;\2\2\u0353\u0354"+
"\7R\2\2\u0354\u0355\7W\2\2\u0355\u0356\7U\2\2\u0356\u0357\7J\2\2\u0357"+
"\u0358\7\65\2\2\u0358\u037d\7\62\2\2\u0359\u035a\7R\2\2\u035a\u035b\7"+
"W\2\2\u035b\u035c\7U\2\2\u035c\u035d\7J\2\2\u035d\u035e\7\65\2\2\u035e"+
"\u037d\7\63\2\2\u035f\u0360\7R\2\2\u0360\u0361\7W\2\2\u0361\u0362\7U\2"+
"\2\u0362\u0363\7J\2\2\u0363\u0364\7\65\2\2\u0364\u037d\7\64\2\2\u0365"+
"\u0366\7E\2\2\u0366\u0367\7T\2\2\u0367\u0368\7G\2\2\u0368\u0369\7C\2\2"+
"\u0369\u036a\7V\2\2\u036a\u037d\7G\2\2\u036b\u036c\7E\2\2\u036c\u036d"+
"\7C\2\2\u036d\u036e\7N\2\2\u036e\u037d\7N\2\2\u036f\u0370\7T\2\2\u0370"+
"\u0371\7G\2\2\u0371\u0372\7V\2\2\u0372\u0373\7W\2\2\u0373\u0374\7T\2\2"+
"\u0374\u037d\7P\2\2\u0375\u0376\7U\2\2\u0376\u0377\7W\2\2\u0377\u0378"+
"\7K\2\2\u0378\u0379\7E\2\2\u0379\u037a\7K\2\2\u037a\u037b\7F\2\2\u037b"+
"\u037d\7G\2\2\u037c\u01a4\3\2\2\2\u037c\u01a8\3\2\2\2\u037c\u01ab\3\2"+
"\2\2\u037c\u01ae\3\2\2\2\u037c\u01b1\3\2\2\2\u037c\u01b4\3\2\2\2\u037c"+
"\u01b8\3\2\2\2\u037c\u01bb\3\2\2\2\u037c\u01bf\3\2\2\2\u037c\u01c2\3\2"+
"\2\2\u037c\u01c5\3\2\2\2\u037c\u01c7\3\2\2\2\u037c\u01c9\3\2\2\2\u037c"+
"\u01cc\3\2\2\2\u037c\u01cf\3\2\2\2\u037c\u01d1\3\2\2\2\u037c\u01d4\3\2"+
"\2\2\u037c\u01d7\3\2\2\2\u037c\u01d9\3\2\2\2\u037c\u01dc\3\2\2\2\u037c"+
"\u01e0\3\2\2\2\u037c\u01e4\3\2\2\2\u037c\u01eb\3\2\2\2\u037c\u01f2\3\2"+
"\2\2\u037c\u01f8\3\2\2\2\u037c\u01fe\3\2\2\2\u037c\u0207\3\2\2\2\u037c"+
"\u0213\3\2\2\2\u037c\u021f\3\2\2\2\u037c\u022b\3\2\2\2\u037c\u0233\3\2"+
"\2\2\u037c\u023b\3\2\2\2\u037c\u0243\3\2\2\2\u037c\u024b\3\2\2\2\u037c"+
"\u0253\3\2\2\2\u037c\u025c\3\2\2\2\u037c\u0262\3\2\2\2\u037c\u026c\3\2"+
"\2\2\u037c\u0274\3\2\2\2\u037c\u0277\3\2\2\2\u037c\u027a\3\2\2\2\u037c"+
"\u027e\3\2\2\2\u037c\u0283\3\2\2\2\u037c\u0289\3\2\2\2\u037c\u0290\3\2"+
"\2\2\u037c\u0295\3\2\2\2\u037c\u029b\3\2\2\2\u037c\u029f\3\2\2\2\u037c"+
"\u02a4\3\2\2\2\u037c\u02a6\3\2\2\2\u037c\u02ab\3\2\2\2\u037c\u02ae\3\2"+
"\2\2\u037c\u02b3\3\2\2\2\u037c\u02b8\3\2\2\2\u037c\u02bd\3\2\2\2\u037c"+
"\u02c2\3\2\2\2\u037c\u02c7\3\2\2\2\u037c\u02cc\3\2\2\2\u037c\u02d1\3\2"+
"\2\2\u037c\u02d6\3\2\2\2\u037c\u02db\3\2\2\2\u037c\u02e1\3\2\2\2\u037c"+
"\u02e7\3\2\2\2\u037c\u02ed\3\2\2\2\u037c\u02f3\3\2\2\2\u037c\u02f9\3\2"+
"\2\2\u037c\u02ff\3\2\2\2\u037c\u0305\3\2\2\2\u037c\u030b\3\2\2\2\u037c"+
"\u0311\3\2\2\2\u037c\u0317\3\2\2\2\u037c\u031d\3\2\2\2\u037c\u0323\3\2"+
"\2\2\u037c\u0329\3\2\2\2\u037c\u032f\3\2\2\2\u037c\u0335\3\2\2\2\u037c"+
"\u033b\3\2\2\2\u037c\u0341\3\2\2\2\u037c\u0347\3\2\2\2\u037c\u034d\3\2"+
"\2\2\u037c\u0353\3\2\2\2\u037c\u0359\3\2\2\2\u037c\u035f\3\2\2\2\u037c"+
"\u0365\3\2\2\2\u037c\u036b\3\2\2\2\u037c\u036f\3\2\2\2\u037c\u0375\3\2"+
"\2\2\u037dN\3\2\2\2\u037e\u037f\7z\2\2\u037f\u0380\7q\2\2\u0380\u0381"+
"\7t\2\2\u0381P\3\2\2\2\u0382\u0383\7(\2\2\u0383\u0388\7(\2\2\u0384\u0385"+
"\7c\2\2\u0385\u0386\7p\2\2\u0386\u0388\7f\2\2\u0387\u0382\3\2\2\2\u0387"+
"\u0384\3\2\2\2\u0388R\3\2\2\2\u0389\u038a\7~\2\2\u038a\u038e\7~\2\2\u038b"+
"\u038c\7q\2\2\u038c\u038e\7t\2\2\u038d\u0389\3\2\2\2\u038d\u038b\3\2\2"+
"\2\u038eT\3\2\2\2\u038f\u0394\7#\2\2\u0390\u0391\7p\2\2\u0391\u0392\7"+
"q\2\2\u0392\u0394\7v\2\2\u0393\u038f\3\2\2\2\u0393\u0390\3\2\2\2\u0394"+
"V\3\2\2\2\u0395\u0396\7?\2\2\u0396X\3\2\2\2\u0397\u0399\7\17\2\2\u0398"+
"\u0397\3\2\2\2\u0398\u0399\3\2\2\2\u0399\u039a\3\2\2\2\u039a\u039e\7\f"+
"\2\2\u039b\u039d\7\"\2\2\u039c\u039b\3\2\2\2\u039d\u03a0\3\2\2\2\u039e"+
"\u039c\3\2\2\2\u039e\u039f\3\2\2\2\u039fZ\3\2\2\2\u03a0\u039e\3\2\2\2"+
"\u03a1\u03a3\t\3\2\2\u03a2\u03a1\3\2\2\2\u03a3\u03a4\3\2\2\2\u03a4\u03a2"+
"\3\2\2\2\u03a4\u03a5\3\2\2\2\u03a5\u03a6\3\2\2\2\u03a6\u03a7\b.\2\2\u03a7"+
"\\\3\2\2\2\u03a8\u03a9\7\61\2\2\u03a9\u03aa\7\61\2\2\u03aa\u03ae\3\2\2"+
"\2\u03ab\u03ad\n\4\2\2\u03ac\u03ab\3\2\2\2\u03ad\u03b0\3\2\2\2\u03ae\u03ac"+
"\3\2\2\2\u03ae\u03af\3\2\2\2\u03af\u03b1\3\2\2\2\u03b0\u03ae\3\2\2\2\u03b1"+
"\u03b2\b/\3\2\u03b2^\3\2\2\2\u03b3\u03b7\t\5\2\2\u03b4\u03b6\t\6\2\2\u03b5"+
"\u03b4\3\2\2\2\u03b6\u03b9\3\2\2\2\u03b7\u03b5\3\2\2\2\u03b7\u03b8\3\2"+
"\2\2\u03b8`\3\2\2\2\u03b9\u03b7\3\2\2\2\u03ba\u03bb\t\7\2\2\u03bbb\3\2"+
"\2\2\u03bc\u03c2\t\b\2\2\u03bd\u03be\7%\2\2\u03be\u03c2\7\61\2\2\u03bf"+
"\u03c0\7%\2\2\u03c0\u03c2\7\'\2\2\u03c1\u03bc\3\2\2\2\u03c1\u03bd\3\2"+
"\2\2\u03c1\u03bf\3\2\2\2\u03c2d\3\2\2\2\u03c3\u03c9\t\t\2\2\u03c4\u03c5"+
"\7>\2\2\u03c5\u03c9\7?\2\2\u03c6\u03c7\7@\2\2\u03c7\u03c9\7?\2\2\u03c8"+
"\u03c3\3\2\2\2\u03c8\u03c4\3\2\2\2\u03c8\u03c6\3\2\2\2\u03c9f\3\2\2\2"+
"\u03ca\u03cb\7?\2\2\u03cb\u03cf\7?\2\2\u03cc\u03cd\7#\2\2\u03cd\u03cf"+
"\7?\2\2\u03ce\u03ca\3\2\2\2\u03ce\u03cc\3\2\2\2\u03cfh\3\2\2\2\u03d0\u03d1"+
"\7(\2\2\u03d1j\3\2\2\2\u03d2\u03d3\7~\2\2\u03d3l\3\2\2\2\u03d4\u03d5\t"+
"\n\2\2\u03d5n\3\2\2\2\u03d6\u03d7\7\62\2\2\u03d7\u03db\7z\2\2\u03d8\u03d9"+
"\7\62\2\2\u03d9\u03db\7Z\2\2\u03da\u03d6\3\2\2\2\u03da\u03d8\3\2\2\2\u03db"+
"\u03dd\3\2\2\2\u03dc\u03de\5m\67\2\u03dd\u03dc\3\2\2\2\u03de\u03df\3\2"+
"\2\2\u03df\u03dd\3\2\2\2\u03df\u03e0\3\2\2\2\u03e0p\3\2\2\2\22\2\u01a2"+
"\u037c\u0387\u038d\u0393\u0398\u039e\u03a4\u03ae\u03b7\u03c1\u03c8\u03ce"+
"\u03da\u03df";
public static final ATN _ATN =
ATNSimulator.deserialize(_serializedATN.toCharArray());
static {

View File

@ -1,73 +1,75 @@
OP_IN_OR=52
T__29=6
EQ_OP=42
T__28=7
T__27=8
OP_AND=51
T__26=9
T__25=10
T__24=11
T__23=12
T__22=13
T__21=14
T__20=15
OP_MUL=48
T__9=26
T__8=27
T__7=28
T__6=29
T__5=30
T__4=31
T__19=16
OP_EQ=50
T__16=19
T__15=20
T__18=17
T__17=18
T__12=23
T__11=24
T__14=21
T__13=22
T__10=25
OP_EX_OR=38
OP_NOT=41
VAR=46
NL=43
LINE_COMMENT=45
OP_LOG_OR=40
OP_ADD=47
HEX_DIGIT=53
INT=36
T__30=5
T__31=4
T__32=3
T__33=2
WS=44
T__34=1
T__1=34
T__0=35
T__3=32
T__2=33
ASM_SYMBOLS=37
HEX_NUMBER=54
OP_REL=49
OP_LOG_AND=39
'|'=52
'code'=35
'block.number'=34
'block.gaslimit'=33
'asm]'=32
'contract.balance'=31
'msg.sender'=30
'='=42
'return'=29
'elif'=28
OP_IN_OR=53
T__29=7
EQ_OP=43
T__28=8
T__27=9
OP_AND=52
T__26=10
T__25=11
T__24=12
T__23=13
T__22=14
T__21=15
T__20=16
OP_MUL=49
T__9=27
T__8=28
T__7=29
T__6=30
T__5=31
T__4=32
T__19=17
OP_EQ=51
T__16=20
T__15=21
T__18=18
T__17=19
T__12=24
T__11=25
T__14=22
T__13=23
T__10=26
OP_EX_OR=39
OP_NOT=42
VAR=47
NL=44
LINE_COMMENT=46
OP_LOG_OR=41
OP_ADD=48
HEX_DIGIT=54
INT=37
T__30=6
T__31=5
T__32=4
T__33=3
WS=45
T__34=2
T__35=1
T__1=35
T__0=36
T__3=33
T__2=34
ASM_SYMBOLS=38
HEX_NUMBER=55
OP_REL=50
OP_LOG_AND=40
'|'=53
'code'=36
'block.number'=35
'block.gaslimit'=34
'asm]'=33
'contract.balance'=32
'msg.sender'=31
'='=43
'return'=30
'elif'=29
'create'=28
'msg.data'=27
'tx.origin'=26
'else:'=25
'tx.gasprice'=24
')'=23
'xor'=38
'xor'=39
'msg.datasize'=22
'block.difficulty'=21
'suicide'=20
@ -88,6 +90,6 @@ OP_LOG_AND=39
'msg'=5
','=4
'block.coinbase'=3
'&'=51
'&'=52
'stop'=2
']'=1

View File

@ -1,4 +1,4 @@
// Generated from E:\WorkingArea\ethereum\ethereumj\src\main\java\org\ethereum\serpent\Serpent.g4 by ANTLR 4.1
// Generated from E:\WorkingArea\ethereum\ethereumj\ethereumj\src\main\java\org\ethereum\serpent\Serpent.g4 by ANTLR 4.1
package org.ethereum.serpent;
import org.antlr.v4.runtime.misc.NotNull;
import org.antlr.v4.runtime.tree.ParseTreeListener;
@ -118,6 +118,17 @@ public interface SerpentListener extends ParseTreeListener {
*/
void exitContract_address(@NotNull SerpentParser.Contract_addressContext ctx);
/**
* Enter a parse tree produced by {@link SerpentParser#single_create_func}.
* @param ctx the parse tree
*/
void enterSingle_create_func(@NotNull SerpentParser.Single_create_funcContext ctx);
/**
* Exit a parse tree produced by {@link SerpentParser#single_create_func}.
* @param ctx the parse tree
*/
void exitSingle_create_func(@NotNull SerpentParser.Single_create_funcContext ctx);
/**
* Enter a parse tree produced by {@link SerpentParser#array_retreive}.
* @param ctx the parse tree
@ -239,6 +250,17 @@ public interface SerpentListener extends ParseTreeListener {
*/
void exitMul_expr(@NotNull SerpentParser.Mul_exprContext ctx);
/**
* Enter a parse tree produced by {@link SerpentParser#create_func}.
* @param ctx the parse tree
*/
void enterCreate_func(@NotNull SerpentParser.Create_funcContext ctx);
/**
* Exit a parse tree produced by {@link SerpentParser#create_func}.
* @param ctx the parse tree
*/
void exitCreate_func(@NotNull SerpentParser.Create_funcContext ctx);
/**
* Enter a parse tree produced by {@link SerpentParser#msg_data}.
* @param ctx the parse tree
@ -361,15 +383,15 @@ public interface SerpentListener extends ParseTreeListener {
void exitParse_init_code_block(@NotNull SerpentParser.Parse_init_code_blockContext ctx);
/**
* Enter a parse tree produced by {@link SerpentParser#single_send_fund}.
* Enter a parse tree produced by {@link SerpentParser#single_send_func}.
* @param ctx the parse tree
*/
void enterSingle_send_fund(@NotNull SerpentParser.Single_send_fundContext ctx);
void enterSingle_send_func(@NotNull SerpentParser.Single_send_funcContext ctx);
/**
* Exit a parse tree produced by {@link SerpentParser#single_send_fund}.
* Exit a parse tree produced by {@link SerpentParser#single_send_func}.
* @param ctx the parse tree
*/
void exitSingle_send_fund(@NotNull SerpentParser.Single_send_fundContext ctx);
void exitSingle_send_func(@NotNull SerpentParser.Single_send_funcContext ctx);
/**
* Enter a parse tree produced by {@link SerpentParser#ex_or_exp}.

View File

@ -641,6 +641,16 @@ public class SerpentToAssemblyCompiler extends SerpentBaseVisitor<String> {
return String.format("0 0 0 0 %s %s %s CALL ", operand2, operand1, operand0);
}
@Override
public String visitCreate_func(@NotNull SerpentParser.Create_funcContext ctx) {
String operand0 = visit(ctx.int_val(0));
String operand1 = visit(ctx.int_val(1));
String operand2 = visit(ctx.int_val(2));
// MEM_SIZE MEM_START GAS CREATE
return String.format(" %s %s %s CREATE ", operand2, operand1, operand0);
}
@Override
public String visitAsm(@NotNull SerpentParser.AsmContext ctx) {

View File

@ -1,4 +1,4 @@
// Generated from E:\WorkingArea\ethereum\ethereumj\src\main\java\org\ethereum\serpent\Serpent.g4 by ANTLR 4.1
// Generated from E:\WorkingArea\ethereum\ethereumj\ethereumj\src\main\java\org\ethereum\serpent\Serpent.g4 by ANTLR 4.1
package org.ethereum.serpent;
import org.antlr.v4.runtime.misc.NotNull;
import org.antlr.v4.runtime.tree.ParseTreeVisitor;
@ -81,6 +81,13 @@ public interface SerpentVisitor<T> extends ParseTreeVisitor<T> {
*/
T visitContract_address(@NotNull SerpentParser.Contract_addressContext ctx);
/**
* Visit a parse tree produced by {@link SerpentParser#single_create_func}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitSingle_create_func(@NotNull SerpentParser.Single_create_funcContext ctx);
/**
* Visit a parse tree produced by {@link SerpentParser#array_retreive}.
* @param ctx the parse tree
@ -158,6 +165,13 @@ public interface SerpentVisitor<T> extends ParseTreeVisitor<T> {
*/
T visitMul_expr(@NotNull SerpentParser.Mul_exprContext ctx);
/**
* Visit a parse tree produced by {@link SerpentParser#create_func}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitCreate_func(@NotNull SerpentParser.Create_funcContext ctx);
/**
* Visit a parse tree produced by {@link SerpentParser#msg_data}.
* @param ctx the parse tree
@ -236,11 +250,11 @@ public interface SerpentVisitor<T> extends ParseTreeVisitor<T> {
T visitParse_init_code_block(@NotNull SerpentParser.Parse_init_code_blockContext ctx);
/**
* Visit a parse tree produced by {@link SerpentParser#single_send_fund}.
* Visit a parse tree produced by {@link SerpentParser#single_send_func}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitSingle_send_fund(@NotNull SerpentParser.Single_send_fundContext ctx);
T visitSingle_send_func(@NotNull SerpentParser.Single_send_funcContext ctx);
/**
* Visit a parse tree produced by {@link SerpentParser#ex_or_exp}.

View File

@ -1336,6 +1336,16 @@ public class SerpentCompileTest {
Assert.assertEquals(expected, asmResult);
}
@Test // test create(gas, mem_start , mem_size)
public void test51(){
String code = "\n" +
"create(100, 0, 32) \n";
String expected = "32 0 100 CREATE";
String asmResult = SerpentCompiler.compile(code);
Assert.assertEquals(expected, asmResult);
}
@ -1345,7 +1355,6 @@ public class SerpentCompileTest {
# *) a = msg.data
# 0) sha();
# 2) create(1, 2, 3, 4)
# 3) x = sha3(v)
# 4) x = byte(y,z)
# 5) v = getch(x,i)