diff --git a/ethereumj-core/TODO.md b/ethereumj-core/TODO.md
index a2d7e316..87d73c3f 100644
--- a/ethereumj-core/TODO.md
+++ b/ethereumj-core/TODO.md
@@ -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
diff --git a/ethereumj-core/src/main/java/org/ethereum/serpent/Serpent.g4 b/ethereumj-core/src/main/java/org/ethereum/serpent/Serpent.g4
index 484d1bd3..1713a767 100644
--- a/ethereumj-core/src/main/java/org/ethereum/serpent/Serpent.g4
+++ b/ethereumj-core/src/main/java/org/ethereum/serpent/Serpent.g4
@@ -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 ']' ;
diff --git a/ethereumj-core/src/main/java/org/ethereum/serpent/Serpent.tokens b/ethereumj-core/src/main/java/org/ethereum/serpent/Serpent.tokens
index 6147e931..548bcba6 100644
--- a/ethereumj-core/src/main/java/org/ethereum/serpent/Serpent.tokens
+++ b/ethereumj-core/src/main/java/org/ethereum/serpent/Serpent.tokens
@@ -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
diff --git a/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentBaseListener.java b/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentBaseListener.java
index 2586d211..a2477401 100644
--- a/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentBaseListener.java
+++ b/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentBaseListener.java
@@ -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}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void enterSingle_create_func(@NotNull SerpentParser.Single_create_funcContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void exitSingle_create_func(@NotNull SerpentParser.Single_create_funcContext ctx) { }
+
/**
* {@inheritDoc}
*
@@ -285,6 +298,19 @@ public class SerpentBaseListener implements SerpentListener {
*/
@Override public void exitMul_expr(@NotNull SerpentParser.Mul_exprContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void enterCreate_func(@NotNull SerpentParser.Create_funcContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void exitCreate_func(@NotNull SerpentParser.Create_funcContext ctx) { }
+
/**
* {@inheritDoc}
*
@@ -433,13 +459,13 @@ public class SerpentBaseListener implements SerpentListener {
*
* 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}
*
* 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}
diff --git a/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentBaseVisitor.java b/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentBaseVisitor.java
index 4dadcadf..a3a5e1bc 100644
--- a/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentBaseVisitor.java
+++ b/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentBaseVisitor.java
@@ -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 extends AbstractParseTreeVisitor implement
*/
@Override public T visitContract_address(@NotNull SerpentParser.Contract_addressContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * 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}
*
@@ -180,6 +188,14 @@ public class SerpentBaseVisitor extends AbstractParseTreeVisitor implement
*/
@Override public T visitMul_expr(@NotNull SerpentParser.Mul_exprContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * 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}
*
@@ -274,7 +290,7 @@ public class SerpentBaseVisitor extends AbstractParseTreeVisitor 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}
diff --git a/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentLexer.java b/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentLexer.java
index 938a0e67..f85ecb5c 100644
--- a/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentLexer.java
+++ b/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentLexer.java
@@ -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 {
diff --git a/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentLexer.tokens b/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentLexer.tokens
index 5d56f069..377f4892 100644
--- a/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentLexer.tokens
+++ b/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentLexer.tokens
@@ -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
diff --git a/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentListener.java b/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentListener.java
index 0dfc1de5..539d9623 100644
--- a/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentListener.java
+++ b/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentListener.java
@@ -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}.
diff --git a/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentParser.java b/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentParser.java
index dc2729da..36b7af3d 100644
--- a/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentParser.java
+++ b/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentParser.java
@@ -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.atn.*;
import org.antlr.v4.runtime.dfa.DFA;
@@ -15,25 +15,25 @@ public class SerpentParser extends Parser {
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, INDENT=55, DEDENT=56;
+ 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, INDENT=56, DEDENT=57;
public static final String[] tokenNames = {
"", "']'", "'stop'", "'block.coinbase'", "','", "'msg'", "'tx.gas'",
"'while'", "'['", "':'", "'('", "'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'", "'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",
- "INDENT", "DEDENT"
+ "')'", "'tx.gasprice'", "'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", "INDENT", "DEDENT"
};
public static final int
RULE_parse = 0, RULE_parse_init_code_block = 1, RULE_block = 2, RULE_asm = 3,
@@ -42,25 +42,26 @@ public class SerpentParser extends Parser {
RULE_tx_gasprice = 11, RULE_tx_origin = 12, RULE_tx_gas = 13, RULE_contract_balance = 14,
RULE_contract_address = 15, RULE_block_prevhash = 16, RULE_block_coinbase = 17,
RULE_block_timestamp = 18, RULE_block_number = 19, RULE_block_difficulty = 20,
- RULE_block_gaslimit = 21, RULE_msg_func = 22, RULE_send_func = 23, RULE_single_send_fund = 24,
- RULE_msg_data = 25, RULE_array_assign = 26, RULE_array_retreive = 27,
- RULE_assign = 28, RULE_arr_def = 29, RULE_contract_storage_assign = 30,
- RULE_contract_storage_load = 31, RULE_mul_expr = 32, RULE_add_expr = 33,
- RULE_rel_exp = 34, RULE_eq_exp = 35, RULE_and_exp = 36, RULE_ex_or_exp = 37,
- RULE_in_or_exp = 38, RULE_log_and_exp = 39, RULE_log_or_exp = 40, RULE_expression = 41,
- RULE_condition = 42, RULE_int_val = 43, RULE_hex_num = 44, RULE_ret_func_1 = 45,
- RULE_ret_func_2 = 46, RULE_suicide_func = 47, RULE_stop_func = 48, RULE_get_var = 49;
+ RULE_block_gaslimit = 21, RULE_msg_func = 22, RULE_send_func = 23, RULE_single_send_func = 24,
+ RULE_create_func = 25, RULE_single_create_func = 26, RULE_msg_data = 27,
+ RULE_array_assign = 28, RULE_array_retreive = 29, RULE_assign = 30, RULE_arr_def = 31,
+ RULE_contract_storage_assign = 32, RULE_contract_storage_load = 33, RULE_mul_expr = 34,
+ RULE_add_expr = 35, RULE_rel_exp = 36, RULE_eq_exp = 37, RULE_and_exp = 38,
+ RULE_ex_or_exp = 39, RULE_in_or_exp = 40, RULE_log_and_exp = 41, RULE_log_or_exp = 42,
+ RULE_expression = 43, RULE_condition = 44, RULE_int_val = 45, RULE_hex_num = 46,
+ RULE_ret_func_1 = 47, RULE_ret_func_2 = 48, RULE_suicide_func = 49, RULE_stop_func = 50,
+ RULE_get_var = 51;
public static final String[] ruleNames = {
"parse", "parse_init_code_block", "block", "asm", "asm_symbol", "if_elif_else_stmt",
"while_stmt", "special_func", "msg_datasize", "msg_sender", "msg_value",
"tx_gasprice", "tx_origin", "tx_gas", "contract_balance", "contract_address",
"block_prevhash", "block_coinbase", "block_timestamp", "block_number",
- "block_difficulty", "block_gaslimit", "msg_func", "send_func", "single_send_fund",
- "msg_data", "array_assign", "array_retreive", "assign", "arr_def", "contract_storage_assign",
- "contract_storage_load", "mul_expr", "add_expr", "rel_exp", "eq_exp",
- "and_exp", "ex_or_exp", "in_or_exp", "log_and_exp", "log_or_exp", "expression",
- "condition", "int_val", "hex_num", "ret_func_1", "ret_func_2", "suicide_func",
- "stop_func", "get_var"
+ "block_difficulty", "block_gaslimit", "msg_func", "send_func", "single_send_func",
+ "create_func", "single_create_func", "msg_data", "array_assign", "array_retreive",
+ "assign", "arr_def", "contract_storage_assign", "contract_storage_load",
+ "mul_expr", "add_expr", "rel_exp", "eq_exp", "and_exp", "ex_or_exp", "in_or_exp",
+ "log_and_exp", "log_or_exp", "expression", "condition", "int_val", "hex_num",
+ "ret_func_1", "ret_func_2", "suicide_func", "stop_func", "get_var"
};
@Override
@@ -109,8 +110,8 @@ public class SerpentParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(100); block();
- setState(101); match(EOF);
+ setState(104); block();
+ setState(105); match(EOF);
}
}
catch (RecognitionException re) {
@@ -164,16 +165,16 @@ public class SerpentParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(103); match(17);
- setState(104); match(9);
- setState(105); match(INDENT);
- setState(106); block();
- setState(107); match(DEDENT);
- setState(108); match(35);
- setState(109); match(9);
- setState(110); match(INDENT);
- setState(111); block();
- setState(112); match(DEDENT);
+ setState(107); match(17);
+ setState(108); match(9);
+ setState(109); match(INDENT);
+ setState(110); block();
+ setState(111); match(DEDENT);
+ setState(112); match(36);
+ setState(113); match(9);
+ setState(114); match(INDENT);
+ setState(115); block();
+ setState(116); match(DEDENT);
}
}
catch (RecognitionException re) {
@@ -188,15 +189,15 @@ public class SerpentParser extends Parser {
}
public static class BlockContext extends ParserRuleContext {
- public Single_send_fundContext single_send_fund(int i) {
- return getRuleContext(Single_send_fundContext.class,i);
+ public Single_create_funcContext single_create_func(int i) {
+ return getRuleContext(Single_create_funcContext.class,i);
+ }
+ public List single_create_func() {
+ return getRuleContexts(Single_create_funcContext.class);
}
public Array_assignContext array_assign(int i) {
return getRuleContext(Array_assignContext.class,i);
}
- public List single_send_fund() {
- return getRuleContexts(Single_send_fundContext.class);
- }
public List ret_func_1() {
return getRuleContexts(Ret_func_1Context.class);
}
@@ -242,6 +243,9 @@ public class SerpentParser extends Parser {
public Contract_storage_assignContext contract_storage_assign(int i) {
return getRuleContext(Contract_storage_assignContext.class,i);
}
+ public List single_send_func() {
+ return getRuleContexts(Single_send_funcContext.class);
+ }
public Special_funcContext special_func(int i) {
return getRuleContext(Special_funcContext.class,i);
}
@@ -251,6 +255,9 @@ public class SerpentParser extends Parser {
public Ret_func_2Context ret_func_2(int i) {
return getRuleContext(Ret_func_2Context.class,i);
}
+ public Single_send_funcContext single_send_func(int i) {
+ return getRuleContext(Single_send_funcContext.class,i);
+ }
public AssignContext assign(int i) {
return getRuleContext(AssignContext.class,i);
}
@@ -292,93 +299,99 @@ public class SerpentParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(129);
+ setState(134);
_errHandler.sync(this);
_la = _input.LA(1);
- while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << 2) | (1L << 3) | (1L << 5) | (1L << 6) | (1L << 7) | (1L << 11) | (1L << 12) | (1L << 13) | (1L << 14) | (1L << 15) | (1L << 16) | (1L << 18) | (1L << 19) | (1L << 20) | (1L << 21) | (1L << 22) | (1L << 24) | (1L << 26) | (1L << 29) | (1L << 30) | (1L << 31) | (1L << 33) | (1L << 34) | (1L << VAR))) != 0)) {
+ while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << 2) | (1L << 3) | (1L << 5) | (1L << 6) | (1L << 7) | (1L << 11) | (1L << 12) | (1L << 13) | (1L << 14) | (1L << 15) | (1L << 16) | (1L << 18) | (1L << 19) | (1L << 20) | (1L << 21) | (1L << 22) | (1L << 24) | (1L << 26) | (1L << 28) | (1L << 30) | (1L << 31) | (1L << 32) | (1L << 34) | (1L << 35) | (1L << VAR))) != 0)) {
{
- setState(127);
+ setState(132);
switch ( getInterpreter().adaptivePredict(_input,0,_ctx) ) {
case 1:
{
- setState(114); asm();
+ setState(118); asm();
}
break;
case 2:
{
- setState(115); array_assign();
+ setState(119); array_assign();
}
break;
case 3:
{
- setState(116); assign();
+ setState(120); assign();
}
break;
case 4:
{
- setState(117); contract_storage_assign();
+ setState(121); contract_storage_assign();
}
break;
case 5:
{
- setState(118); special_func();
+ setState(122); special_func();
}
break;
case 6:
{
- setState(119); if_elif_else_stmt();
+ setState(123); if_elif_else_stmt();
}
break;
case 7:
{
- setState(120); while_stmt();
+ setState(124); while_stmt();
}
break;
case 8:
{
- setState(121); ret_func_1();
+ setState(125); ret_func_1();
}
break;
case 9:
{
- setState(122); ret_func_2();
+ setState(126); ret_func_2();
}
break;
case 10:
{
- setState(123); suicide_func();
+ setState(127); suicide_func();
}
break;
case 11:
{
- setState(124); stop_func();
+ setState(128); stop_func();
}
break;
case 12:
{
- setState(125); single_send_fund();
+ setState(129); single_send_func();
}
break;
case 13:
{
- setState(126); msg_func();
+ setState(130); msg_func();
+ }
+ break;
+
+ case 14:
+ {
+ setState(131); single_create_func();
}
break;
}
}
- setState(131);
+ setState(136);
_errHandler.sync(this);
_la = _input.LA(1);
}
@@ -425,10 +438,10 @@ public class SerpentParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(132); match(15);
- setState(133); asm_symbol();
- setState(134); match(32);
- setState(135); match(NL);
+ setState(137); match(15);
+ setState(138); asm_symbol();
+ setState(139); match(33);
+ setState(140); match(NL);
}
}
catch (RecognitionException re) {
@@ -481,13 +494,13 @@ public class SerpentParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(140);
+ setState(145);
_errHandler.sync(this);
_la = _input.LA(1);
while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << INT) | (1L << ASM_SYMBOLS) | (1L << HEX_NUMBER))) != 0)) {
{
{
- setState(137);
+ setState(142);
_la = _input.LA(1);
if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << INT) | (1L << ASM_SYMBOLS) | (1L << HEX_NUMBER))) != 0)) ) {
_errHandler.recoverInline(this);
@@ -495,7 +508,7 @@ public class SerpentParser extends Parser {
consume();
}
}
- setState(142);
+ setState(147);
_errHandler.sync(this);
_la = _input.LA(1);
}
@@ -559,38 +572,38 @@ public class SerpentParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(143); match(11);
- setState(144); condition();
- setState(145); match(9);
- setState(146); match(INDENT);
- setState(147); block();
- setState(148); match(DEDENT);
- setState(158);
+ setState(148); match(11);
+ setState(149); condition();
+ setState(150); match(9);
+ setState(151); match(INDENT);
+ setState(152); block();
+ setState(153); match(DEDENT);
+ setState(163);
_errHandler.sync(this);
_la = _input.LA(1);
- while (_la==28) {
+ while (_la==29) {
{
{
- setState(149); match(28);
- setState(150); condition();
- setState(151); match(9);
- setState(152); match(INDENT);
- setState(153); block();
- setState(154); match(DEDENT);
+ setState(154); match(29);
+ setState(155); condition();
+ setState(156); match(9);
+ setState(157); match(INDENT);
+ setState(158); block();
+ setState(159); match(DEDENT);
}
}
- setState(160);
+ setState(165);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(166);
+ setState(171);
_la = _input.LA(1);
if (_la==25) {
{
- setState(161); match(25);
- setState(162); match(INDENT);
- setState(163); block();
- setState(164); match(DEDENT);
+ setState(166); match(25);
+ setState(167); match(INDENT);
+ setState(168); block();
+ setState(169); match(DEDENT);
}
}
@@ -641,12 +654,12 @@ public class SerpentParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(168); match(7);
- setState(169); condition();
- setState(170); match(9);
- setState(171); match(INDENT);
- setState(172); block();
- setState(173); match(DEDENT);
+ setState(173); match(7);
+ setState(174); condition();
+ setState(175); match(9);
+ setState(176); match(INDENT);
+ setState(177); block();
+ setState(178); match(DEDENT);
}
}
catch (RecognitionException re) {
@@ -726,90 +739,90 @@ public class SerpentParser extends Parser {
Special_funcContext _localctx = new Special_funcContext(_ctx, getState());
enterRule(_localctx, 14, RULE_special_func);
try {
- setState(189);
+ setState(194);
switch (_input.LA(1)) {
case 22:
enterOuterAlt(_localctx, 1);
{
- setState(175); msg_datasize();
+ setState(180); msg_datasize();
}
break;
- case 30:
+ case 31:
enterOuterAlt(_localctx, 2);
{
- setState(176); msg_sender();
+ setState(181); msg_sender();
}
break;
case 16:
enterOuterAlt(_localctx, 3);
{
- setState(177); msg_value();
+ setState(182); msg_value();
}
break;
case 24:
enterOuterAlt(_localctx, 4);
{
- setState(178); tx_gasprice();
+ setState(183); tx_gasprice();
}
break;
case 26:
enterOuterAlt(_localctx, 5);
{
- setState(179); tx_origin();
+ setState(184); tx_origin();
}
break;
case 6:
enterOuterAlt(_localctx, 6);
{
- setState(180); tx_gas();
+ setState(185); tx_gas();
}
break;
- case 31:
+ case 32:
enterOuterAlt(_localctx, 7);
{
- setState(181); contract_balance();
+ setState(186); contract_balance();
}
break;
case 14:
enterOuterAlt(_localctx, 8);
{
- setState(182); contract_address();
+ setState(187); contract_address();
}
break;
case 18:
enterOuterAlt(_localctx, 9);
{
- setState(183); block_prevhash();
+ setState(188); block_prevhash();
}
break;
case 3:
enterOuterAlt(_localctx, 10);
{
- setState(184); block_coinbase();
+ setState(189); block_coinbase();
}
break;
case 13:
enterOuterAlt(_localctx, 11);
{
- setState(185); block_timestamp();
+ setState(190); block_timestamp();
}
break;
- case 34:
+ case 35:
enterOuterAlt(_localctx, 12);
{
- setState(186); block_number();
+ setState(191); block_number();
}
break;
case 21:
enterOuterAlt(_localctx, 13);
{
- setState(187); block_difficulty();
+ setState(192); block_difficulty();
}
break;
- case 33:
+ case 34:
enterOuterAlt(_localctx, 14);
{
- setState(188); block_gaslimit();
+ setState(193); block_gaslimit();
}
break;
default:
@@ -853,7 +866,7 @@ public class SerpentParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(191); match(22);
+ setState(196); match(22);
}
}
catch (RecognitionException re) {
@@ -893,7 +906,7 @@ public class SerpentParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(193); match(30);
+ setState(198); match(31);
}
}
catch (RecognitionException re) {
@@ -933,7 +946,7 @@ public class SerpentParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(195); match(16);
+ setState(200); match(16);
}
}
catch (RecognitionException re) {
@@ -973,7 +986,7 @@ public class SerpentParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(197); match(24);
+ setState(202); match(24);
}
}
catch (RecognitionException re) {
@@ -1013,7 +1026,7 @@ public class SerpentParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(199); match(26);
+ setState(204); match(26);
}
}
catch (RecognitionException re) {
@@ -1053,7 +1066,7 @@ public class SerpentParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(201); match(6);
+ setState(206); match(6);
}
}
catch (RecognitionException re) {
@@ -1093,7 +1106,7 @@ public class SerpentParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(203); match(31);
+ setState(208); match(32);
}
}
catch (RecognitionException re) {
@@ -1133,7 +1146,7 @@ public class SerpentParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(205); match(14);
+ setState(210); match(14);
}
}
catch (RecognitionException re) {
@@ -1173,7 +1186,7 @@ public class SerpentParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(207); match(18);
+ setState(212); match(18);
}
}
catch (RecognitionException re) {
@@ -1213,7 +1226,7 @@ public class SerpentParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(209); match(3);
+ setState(214); match(3);
}
}
catch (RecognitionException re) {
@@ -1253,7 +1266,7 @@ public class SerpentParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(211); match(13);
+ setState(216); match(13);
}
}
catch (RecognitionException re) {
@@ -1293,7 +1306,7 @@ public class SerpentParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(213); match(34);
+ setState(218); match(35);
}
}
catch (RecognitionException re) {
@@ -1333,7 +1346,7 @@ public class SerpentParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(215); match(21);
+ setState(220); match(21);
}
}
catch (RecognitionException re) {
@@ -1373,7 +1386,7 @@ public class SerpentParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(217); match(33);
+ setState(222); match(34);
}
}
catch (RecognitionException re) {
@@ -1422,20 +1435,20 @@ public class SerpentParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(219); match(5);
- setState(220); match(10);
- setState(221); int_val();
- setState(222); match(4);
- setState(223); int_val();
- setState(224); match(4);
- setState(225); int_val();
- setState(226); match(4);
- setState(227); arr_def();
- setState(228); match(4);
- setState(229); int_val();
- setState(230); match(4);
- setState(231); int_val();
- setState(232); match(23);
+ setState(224); match(5);
+ setState(225); match(10);
+ setState(226); int_val();
+ setState(227); match(4);
+ setState(228); int_val();
+ setState(229); match(4);
+ setState(230); int_val();
+ setState(231); match(4);
+ setState(232); arr_def();
+ setState(233); match(4);
+ setState(234); int_val();
+ setState(235); match(4);
+ setState(236); int_val();
+ setState(237); match(23);
}
}
catch (RecognitionException re) {
@@ -1481,14 +1494,14 @@ public class SerpentParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(234); match(12);
- setState(235); match(10);
- setState(236); int_val();
- setState(237); match(4);
- setState(238); int_val();
- setState(239); match(4);
- setState(240); int_val();
- setState(241); match(23);
+ setState(239); match(12);
+ setState(240); match(10);
+ setState(241); int_val();
+ setState(242); match(4);
+ setState(243); int_val();
+ setState(244); match(4);
+ setState(245); int_val();
+ setState(246); match(23);
}
}
catch (RecognitionException re) {
@@ -1502,38 +1515,136 @@ public class SerpentParser extends Parser {
return _localctx;
}
- public static class Single_send_fundContext extends ParserRuleContext {
+ public static class Single_send_funcContext extends ParserRuleContext {
public TerminalNode NL() { return getToken(SerpentParser.NL, 0); }
public Send_funcContext send_func() {
return getRuleContext(Send_funcContext.class,0);
}
- public Single_send_fundContext(ParserRuleContext parent, int invokingState) {
+ public Single_send_funcContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
}
- @Override public int getRuleIndex() { return RULE_single_send_fund; }
+ @Override public int getRuleIndex() { return RULE_single_send_func; }
@Override
public void enterRule(ParseTreeListener listener) {
- if ( listener instanceof SerpentListener ) ((SerpentListener)listener).enterSingle_send_fund(this);
+ if ( listener instanceof SerpentListener ) ((SerpentListener)listener).enterSingle_send_func(this);
}
@Override
public void exitRule(ParseTreeListener listener) {
- if ( listener instanceof SerpentListener ) ((SerpentListener)listener).exitSingle_send_fund(this);
+ if ( listener instanceof SerpentListener ) ((SerpentListener)listener).exitSingle_send_func(this);
}
@Override
public T accept(ParseTreeVisitor extends T> visitor) {
- if ( visitor instanceof SerpentVisitor ) return ((SerpentVisitor extends T>)visitor).visitSingle_send_fund(this);
+ if ( visitor instanceof SerpentVisitor ) return ((SerpentVisitor extends T>)visitor).visitSingle_send_func(this);
else return visitor.visitChildren(this);
}
}
- public final Single_send_fundContext single_send_fund() throws RecognitionException {
- Single_send_fundContext _localctx = new Single_send_fundContext(_ctx, getState());
- enterRule(_localctx, 48, RULE_single_send_fund);
+ public final Single_send_funcContext single_send_func() throws RecognitionException {
+ Single_send_funcContext _localctx = new Single_send_funcContext(_ctx, getState());
+ enterRule(_localctx, 48, RULE_single_send_func);
try {
enterOuterAlt(_localctx, 1);
{
- setState(243); send_func();
- setState(244); match(NL);
+ setState(248); send_func();
+ setState(249); match(NL);
+ }
+ }
+ catch (RecognitionException re) {
+ _localctx.exception = re;
+ _errHandler.reportError(this, re);
+ _errHandler.recover(this, re);
+ }
+ finally {
+ exitRule();
+ }
+ return _localctx;
+ }
+
+ public static class Create_funcContext extends ParserRuleContext {
+ public Int_valContext int_val(int i) {
+ return getRuleContext(Int_valContext.class,i);
+ }
+ public List int_val() {
+ return getRuleContexts(Int_valContext.class);
+ }
+ public Create_funcContext(ParserRuleContext parent, int invokingState) {
+ super(parent, invokingState);
+ }
+ @Override public int getRuleIndex() { return RULE_create_func; }
+ @Override
+ public void enterRule(ParseTreeListener listener) {
+ if ( listener instanceof SerpentListener ) ((SerpentListener)listener).enterCreate_func(this);
+ }
+ @Override
+ public void exitRule(ParseTreeListener listener) {
+ if ( listener instanceof SerpentListener ) ((SerpentListener)listener).exitCreate_func(this);
+ }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof SerpentVisitor ) return ((SerpentVisitor extends T>)visitor).visitCreate_func(this);
+ else return visitor.visitChildren(this);
+ }
+ }
+
+ public final Create_funcContext create_func() throws RecognitionException {
+ Create_funcContext _localctx = new Create_funcContext(_ctx, getState());
+ enterRule(_localctx, 50, RULE_create_func);
+ try {
+ enterOuterAlt(_localctx, 1);
+ {
+ setState(251); match(28);
+ setState(252); match(10);
+ setState(253); int_val();
+ setState(254); match(4);
+ setState(255); int_val();
+ setState(256); match(4);
+ setState(257); int_val();
+ setState(258); match(23);
+ }
+ }
+ catch (RecognitionException re) {
+ _localctx.exception = re;
+ _errHandler.reportError(this, re);
+ _errHandler.recover(this, re);
+ }
+ finally {
+ exitRule();
+ }
+ return _localctx;
+ }
+
+ public static class Single_create_funcContext extends ParserRuleContext {
+ public Create_funcContext create_func() {
+ return getRuleContext(Create_funcContext.class,0);
+ }
+ public TerminalNode NL() { return getToken(SerpentParser.NL, 0); }
+ public Single_create_funcContext(ParserRuleContext parent, int invokingState) {
+ super(parent, invokingState);
+ }
+ @Override public int getRuleIndex() { return RULE_single_create_func; }
+ @Override
+ public void enterRule(ParseTreeListener listener) {
+ if ( listener instanceof SerpentListener ) ((SerpentListener)listener).enterSingle_create_func(this);
+ }
+ @Override
+ public void exitRule(ParseTreeListener listener) {
+ if ( listener instanceof SerpentListener ) ((SerpentListener)listener).exitSingle_create_func(this);
+ }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof SerpentVisitor ) return ((SerpentVisitor extends T>)visitor).visitSingle_create_func(this);
+ else return visitor.visitChildren(this);
+ }
+ }
+
+ public final Single_create_funcContext single_create_func() throws RecognitionException {
+ Single_create_funcContext _localctx = new Single_create_funcContext(_ctx, getState());
+ enterRule(_localctx, 52, RULE_single_create_func);
+ try {
+ enterOuterAlt(_localctx, 1);
+ {
+ setState(260); create_func();
+ setState(261); match(NL);
}
}
catch (RecognitionException re) {
@@ -1572,14 +1683,14 @@ public class SerpentParser extends Parser {
public final Msg_dataContext msg_data() throws RecognitionException {
Msg_dataContext _localctx = new Msg_dataContext(_ctx, getState());
- enterRule(_localctx, 50, RULE_msg_data);
+ enterRule(_localctx, 54, RULE_msg_data);
try {
enterOuterAlt(_localctx, 1);
{
- setState(246); match(27);
- setState(247); match(8);
- setState(248); expression();
- setState(249); match(1);
+ setState(263); match(27);
+ setState(264); match(8);
+ setState(265); expression();
+ setState(266); match(1);
}
}
catch (RecognitionException re) {
@@ -1624,17 +1735,17 @@ public class SerpentParser extends Parser {
public final Array_assignContext array_assign() throws RecognitionException {
Array_assignContext _localctx = new Array_assignContext(_ctx, getState());
- enterRule(_localctx, 52, RULE_array_assign);
+ enterRule(_localctx, 56, RULE_array_assign);
try {
enterOuterAlt(_localctx, 1);
{
- setState(251); match(VAR);
- setState(252); match(8);
- setState(253); int_val();
- setState(254); match(1);
- setState(255); match(EQ_OP);
- setState(256); expression();
- setState(257); match(NL);
+ setState(268); match(VAR);
+ setState(269); match(8);
+ setState(270); int_val();
+ setState(271); match(1);
+ setState(272); match(EQ_OP);
+ setState(273); expression();
+ setState(274); match(NL);
}
}
catch (RecognitionException re) {
@@ -1674,14 +1785,14 @@ public class SerpentParser extends Parser {
public final Array_retreiveContext array_retreive() throws RecognitionException {
Array_retreiveContext _localctx = new Array_retreiveContext(_ctx, getState());
- enterRule(_localctx, 54, RULE_array_retreive);
+ enterRule(_localctx, 58, RULE_array_retreive);
try {
enterOuterAlt(_localctx, 1);
{
- setState(259); match(VAR);
- setState(260); match(8);
- setState(261); int_val();
- setState(262); match(1);
+ setState(276); match(VAR);
+ setState(277); match(8);
+ setState(278); int_val();
+ setState(279); match(1);
}
}
catch (RecognitionException re) {
@@ -1729,13 +1840,13 @@ public class SerpentParser extends Parser {
public final AssignContext assign() throws RecognitionException {
AssignContext _localctx = new AssignContext(_ctx, getState());
- enterRule(_localctx, 56, RULE_assign);
+ enterRule(_localctx, 60, RULE_assign);
try {
enterOuterAlt(_localctx, 1);
{
- setState(264); match(VAR);
- setState(265); match(EQ_OP);
- setState(269);
+ setState(281); match(VAR);
+ setState(282); match(EQ_OP);
+ setState(286);
switch (_input.LA(1)) {
case 3:
case 6:
@@ -1751,32 +1862,32 @@ public class SerpentParser extends Parser {
case 24:
case 26:
case 27:
- case 30:
case 31:
- case 33:
+ case 32:
case 34:
+ case 35:
case INT:
case OP_NOT:
case VAR:
case HEX_NUMBER:
{
- setState(266); expression();
+ setState(283); expression();
}
break;
case 8:
{
- setState(267); arr_def();
+ setState(284); arr_def();
}
break;
case 5:
{
- setState(268); msg_func();
+ setState(285); msg_func();
}
break;
default:
throw new NoViableAltException(this);
}
- setState(271); match(NL);
+ setState(288); match(NL);
}
}
catch (RecognitionException re) {
@@ -1818,34 +1929,34 @@ public class SerpentParser extends Parser {
public final Arr_defContext arr_def() throws RecognitionException {
Arr_defContext _localctx = new Arr_defContext(_ctx, getState());
- enterRule(_localctx, 58, RULE_arr_def);
+ enterRule(_localctx, 62, RULE_arr_def);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(273); match(8);
- setState(280);
+ setState(290); match(8);
+ setState(297);
_errHandler.sync(this);
_la = _input.LA(1);
- while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << 3) | (1L << 6) | (1L << 10) | (1L << 12) | (1L << 13) | (1L << 14) | (1L << 16) | (1L << 18) | (1L << 19) | (1L << 21) | (1L << 22) | (1L << 24) | (1L << 26) | (1L << 27) | (1L << 30) | (1L << 31) | (1L << 33) | (1L << 34) | (1L << INT) | (1L << OP_NOT) | (1L << VAR) | (1L << HEX_NUMBER))) != 0)) {
+ while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << 3) | (1L << 6) | (1L << 10) | (1L << 12) | (1L << 13) | (1L << 14) | (1L << 16) | (1L << 18) | (1L << 19) | (1L << 21) | (1L << 22) | (1L << 24) | (1L << 26) | (1L << 27) | (1L << 31) | (1L << 32) | (1L << 34) | (1L << 35) | (1L << INT) | (1L << OP_NOT) | (1L << VAR) | (1L << HEX_NUMBER))) != 0)) {
{
{
- setState(274); int_val();
- setState(276);
+ setState(291); int_val();
+ setState(293);
_la = _input.LA(1);
if (_la==4) {
{
- setState(275); match(4);
+ setState(292); match(4);
}
}
}
}
- setState(282);
+ setState(299);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(283); match(1);
+ setState(300); match(1);
}
}
catch (RecognitionException re) {
@@ -1889,17 +2000,17 @@ public class SerpentParser extends Parser {
public final Contract_storage_assignContext contract_storage_assign() throws RecognitionException {
Contract_storage_assignContext _localctx = new Contract_storage_assignContext(_ctx, getState());
- enterRule(_localctx, 60, RULE_contract_storage_assign);
+ enterRule(_localctx, 64, RULE_contract_storage_assign);
try {
enterOuterAlt(_localctx, 1);
{
- setState(285); match(19);
- setState(286); match(8);
- setState(287); expression();
- setState(288); match(1);
- setState(289); match(EQ_OP);
- setState(290); expression();
- setState(291); match(NL);
+ setState(302); match(19);
+ setState(303); match(8);
+ setState(304); expression();
+ setState(305); match(1);
+ setState(306); match(EQ_OP);
+ setState(307); expression();
+ setState(308); match(NL);
}
}
catch (RecognitionException re) {
@@ -1938,14 +2049,14 @@ public class SerpentParser extends Parser {
public final Contract_storage_loadContext contract_storage_load() throws RecognitionException {
Contract_storage_loadContext _localctx = new Contract_storage_loadContext(_ctx, getState());
- enterRule(_localctx, 62, RULE_contract_storage_load);
+ enterRule(_localctx, 66, RULE_contract_storage_load);
try {
enterOuterAlt(_localctx, 1);
{
- setState(293); match(19);
- setState(294); match(8);
- setState(295); expression();
- setState(296); match(1);
+ setState(310); match(19);
+ setState(311); match(8);
+ setState(312); expression();
+ setState(313); match(1);
}
}
catch (RecognitionException re) {
@@ -1994,17 +2105,17 @@ public class SerpentParser extends Parser {
int _parentState = getState();
Mul_exprContext _localctx = new Mul_exprContext(_ctx, _parentState, _p);
Mul_exprContext _prevctx = _localctx;
- int _startState = 64;
+ int _startState = 68;
enterRecursionRule(_localctx, RULE_mul_expr);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
{
- setState(299); int_val();
+ setState(316); int_val();
}
_ctx.stop = _input.LT(-1);
- setState(306);
+ setState(323);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,9,_ctx);
while ( _alt!=2 && _alt!=-1 ) {
@@ -2015,14 +2126,14 @@ public class SerpentParser extends Parser {
{
_localctx = new Mul_exprContext(_parentctx, _parentState, _p);
pushNewRecursionContext(_localctx, _startState, RULE_mul_expr);
- setState(301);
+ setState(318);
if (!(1 >= _localctx._p)) throw new FailedPredicateException(this, "1 >= $_p");
- setState(302); match(OP_MUL);
- setState(303); int_val();
+ setState(319); match(OP_MUL);
+ setState(320); int_val();
}
}
}
- setState(308);
+ setState(325);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,9,_ctx);
}
@@ -2074,17 +2185,17 @@ public class SerpentParser extends Parser {
int _parentState = getState();
Add_exprContext _localctx = new Add_exprContext(_ctx, _parentState, _p);
Add_exprContext _prevctx = _localctx;
- int _startState = 66;
+ int _startState = 70;
enterRecursionRule(_localctx, RULE_add_expr);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
{
- setState(310); mul_expr(0);
+ setState(327); mul_expr(0);
}
_ctx.stop = _input.LT(-1);
- setState(317);
+ setState(334);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,10,_ctx);
while ( _alt!=2 && _alt!=-1 ) {
@@ -2095,14 +2206,14 @@ public class SerpentParser extends Parser {
{
_localctx = new Add_exprContext(_parentctx, _parentState, _p);
pushNewRecursionContext(_localctx, _startState, RULE_add_expr);
- setState(312);
+ setState(329);
if (!(1 >= _localctx._p)) throw new FailedPredicateException(this, "1 >= $_p");
- setState(313); match(OP_ADD);
- setState(314); mul_expr(0);
+ setState(330); match(OP_ADD);
+ setState(331); mul_expr(0);
}
}
}
- setState(319);
+ setState(336);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,10,_ctx);
}
@@ -2154,17 +2265,17 @@ public class SerpentParser extends Parser {
int _parentState = getState();
Rel_expContext _localctx = new Rel_expContext(_ctx, _parentState, _p);
Rel_expContext _prevctx = _localctx;
- int _startState = 68;
+ int _startState = 72;
enterRecursionRule(_localctx, RULE_rel_exp);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
{
- setState(321); add_expr(0);
+ setState(338); add_expr(0);
}
_ctx.stop = _input.LT(-1);
- setState(328);
+ setState(345);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,11,_ctx);
while ( _alt!=2 && _alt!=-1 ) {
@@ -2175,14 +2286,14 @@ public class SerpentParser extends Parser {
{
_localctx = new Rel_expContext(_parentctx, _parentState, _p);
pushNewRecursionContext(_localctx, _startState, RULE_rel_exp);
- setState(323);
+ setState(340);
if (!(1 >= _localctx._p)) throw new FailedPredicateException(this, "1 >= $_p");
- setState(324); match(OP_REL);
- setState(325); add_expr(0);
+ setState(341); match(OP_REL);
+ setState(342); add_expr(0);
}
}
}
- setState(330);
+ setState(347);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,11,_ctx);
}
@@ -2234,17 +2345,17 @@ public class SerpentParser extends Parser {
int _parentState = getState();
Eq_expContext _localctx = new Eq_expContext(_ctx, _parentState, _p);
Eq_expContext _prevctx = _localctx;
- int _startState = 70;
+ int _startState = 74;
enterRecursionRule(_localctx, RULE_eq_exp);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
{
- setState(332); rel_exp(0);
+ setState(349); rel_exp(0);
}
_ctx.stop = _input.LT(-1);
- setState(339);
+ setState(356);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,12,_ctx);
while ( _alt!=2 && _alt!=-1 ) {
@@ -2255,14 +2366,14 @@ public class SerpentParser extends Parser {
{
_localctx = new Eq_expContext(_parentctx, _parentState, _p);
pushNewRecursionContext(_localctx, _startState, RULE_eq_exp);
- setState(334);
+ setState(351);
if (!(1 >= _localctx._p)) throw new FailedPredicateException(this, "1 >= $_p");
- setState(335); match(OP_EQ);
- setState(336); rel_exp(0);
+ setState(352); match(OP_EQ);
+ setState(353); rel_exp(0);
}
}
}
- setState(341);
+ setState(358);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,12,_ctx);
}
@@ -2314,17 +2425,17 @@ public class SerpentParser extends Parser {
int _parentState = getState();
And_expContext _localctx = new And_expContext(_ctx, _parentState, _p);
And_expContext _prevctx = _localctx;
- int _startState = 72;
+ int _startState = 76;
enterRecursionRule(_localctx, RULE_and_exp);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
{
- setState(343); eq_exp(0);
+ setState(360); eq_exp(0);
}
_ctx.stop = _input.LT(-1);
- setState(350);
+ setState(367);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,13,_ctx);
while ( _alt!=2 && _alt!=-1 ) {
@@ -2335,14 +2446,14 @@ public class SerpentParser extends Parser {
{
_localctx = new And_expContext(_parentctx, _parentState, _p);
pushNewRecursionContext(_localctx, _startState, RULE_and_exp);
- setState(345);
+ setState(362);
if (!(1 >= _localctx._p)) throw new FailedPredicateException(this, "1 >= $_p");
- setState(346); match(OP_AND);
- setState(347); eq_exp(0);
+ setState(363); match(OP_AND);
+ setState(364); eq_exp(0);
}
}
}
- setState(352);
+ setState(369);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,13,_ctx);
}
@@ -2394,17 +2505,17 @@ public class SerpentParser extends Parser {
int _parentState = getState();
Ex_or_expContext _localctx = new Ex_or_expContext(_ctx, _parentState, _p);
Ex_or_expContext _prevctx = _localctx;
- int _startState = 74;
+ int _startState = 78;
enterRecursionRule(_localctx, RULE_ex_or_exp);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
{
- setState(354); and_exp(0);
+ setState(371); and_exp(0);
}
_ctx.stop = _input.LT(-1);
- setState(361);
+ setState(378);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,14,_ctx);
while ( _alt!=2 && _alt!=-1 ) {
@@ -2415,14 +2526,14 @@ public class SerpentParser extends Parser {
{
_localctx = new Ex_or_expContext(_parentctx, _parentState, _p);
pushNewRecursionContext(_localctx, _startState, RULE_ex_or_exp);
- setState(356);
+ setState(373);
if (!(1 >= _localctx._p)) throw new FailedPredicateException(this, "1 >= $_p");
- setState(357); match(OP_EX_OR);
- setState(358); and_exp(0);
+ setState(374); match(OP_EX_OR);
+ setState(375); and_exp(0);
}
}
}
- setState(363);
+ setState(380);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,14,_ctx);
}
@@ -2474,17 +2585,17 @@ public class SerpentParser extends Parser {
int _parentState = getState();
In_or_expContext _localctx = new In_or_expContext(_ctx, _parentState, _p);
In_or_expContext _prevctx = _localctx;
- int _startState = 76;
+ int _startState = 80;
enterRecursionRule(_localctx, RULE_in_or_exp);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
{
- setState(365); ex_or_exp(0);
+ setState(382); ex_or_exp(0);
}
_ctx.stop = _input.LT(-1);
- setState(372);
+ setState(389);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,15,_ctx);
while ( _alt!=2 && _alt!=-1 ) {
@@ -2495,14 +2606,14 @@ public class SerpentParser extends Parser {
{
_localctx = new In_or_expContext(_parentctx, _parentState, _p);
pushNewRecursionContext(_localctx, _startState, RULE_in_or_exp);
- setState(367);
+ setState(384);
if (!(1 >= _localctx._p)) throw new FailedPredicateException(this, "1 >= $_p");
- setState(368); match(OP_IN_OR);
- setState(369); ex_or_exp(0);
+ setState(385); match(OP_IN_OR);
+ setState(386); ex_or_exp(0);
}
}
}
- setState(374);
+ setState(391);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,15,_ctx);
}
@@ -2554,17 +2665,17 @@ public class SerpentParser extends Parser {
int _parentState = getState();
Log_and_expContext _localctx = new Log_and_expContext(_ctx, _parentState, _p);
Log_and_expContext _prevctx = _localctx;
- int _startState = 78;
+ int _startState = 82;
enterRecursionRule(_localctx, RULE_log_and_exp);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
{
- setState(376); in_or_exp(0);
+ setState(393); in_or_exp(0);
}
_ctx.stop = _input.LT(-1);
- setState(383);
+ setState(400);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,16,_ctx);
while ( _alt!=2 && _alt!=-1 ) {
@@ -2575,14 +2686,14 @@ public class SerpentParser extends Parser {
{
_localctx = new Log_and_expContext(_parentctx, _parentState, _p);
pushNewRecursionContext(_localctx, _startState, RULE_log_and_exp);
- setState(378);
+ setState(395);
if (!(1 >= _localctx._p)) throw new FailedPredicateException(this, "1 >= $_p");
- setState(379); match(OP_LOG_AND);
- setState(380); in_or_exp(0);
+ setState(396); match(OP_LOG_AND);
+ setState(397); in_or_exp(0);
}
}
}
- setState(385);
+ setState(402);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,16,_ctx);
}
@@ -2634,17 +2745,17 @@ public class SerpentParser extends Parser {
int _parentState = getState();
Log_or_expContext _localctx = new Log_or_expContext(_ctx, _parentState, _p);
Log_or_expContext _prevctx = _localctx;
- int _startState = 80;
+ int _startState = 84;
enterRecursionRule(_localctx, RULE_log_or_exp);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
{
- setState(387); log_and_exp(0);
+ setState(404); log_and_exp(0);
}
_ctx.stop = _input.LT(-1);
- setState(394);
+ setState(411);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,17,_ctx);
while ( _alt!=2 && _alt!=-1 ) {
@@ -2655,14 +2766,14 @@ public class SerpentParser extends Parser {
{
_localctx = new Log_or_expContext(_parentctx, _parentState, _p);
pushNewRecursionContext(_localctx, _startState, RULE_log_or_exp);
- setState(389);
+ setState(406);
if (!(1 >= _localctx._p)) throw new FailedPredicateException(this, "1 >= $_p");
- setState(390); match(OP_LOG_OR);
- setState(391); log_and_exp(0);
+ setState(407); match(OP_LOG_OR);
+ setState(408); log_and_exp(0);
}
}
}
- setState(396);
+ setState(413);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,17,_ctx);
}
@@ -2704,11 +2815,11 @@ public class SerpentParser extends Parser {
public final ExpressionContext expression() throws RecognitionException {
ExpressionContext _localctx = new ExpressionContext(_ctx, getState());
- enterRule(_localctx, 82, RULE_expression);
+ enterRule(_localctx, 86, RULE_expression);
try {
enterOuterAlt(_localctx, 1);
{
- setState(397); log_or_exp(0);
+ setState(414); log_or_exp(0);
}
}
catch (RecognitionException re) {
@@ -2747,11 +2858,11 @@ public class SerpentParser extends Parser {
public final ConditionContext condition() throws RecognitionException {
ConditionContext _localctx = new ConditionContext(_ctx, getState());
- enterRule(_localctx, 84, RULE_condition);
+ enterRule(_localctx, 88, RULE_condition);
try {
enterOuterAlt(_localctx, 1);
{
- setState(399); expression();
+ setState(416); expression();
}
}
catch (RecognitionException re) {
@@ -2813,82 +2924,82 @@ public class SerpentParser extends Parser {
public final Int_valContext int_val() throws RecognitionException {
Int_valContext _localctx = new Int_valContext(_ctx, getState());
- enterRule(_localctx, 86, RULE_int_val);
+ enterRule(_localctx, 90, RULE_int_val);
try {
- setState(418);
+ setState(435);
switch ( getInterpreter().adaptivePredict(_input,18,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(401); match(INT);
+ setState(418); match(INT);
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(402); hex_num();
+ setState(419); hex_num();
}
break;
case 3:
enterOuterAlt(_localctx, 3);
{
- setState(403); get_var();
+ setState(420); get_var();
}
break;
case 4:
enterOuterAlt(_localctx, 4);
{
- setState(404); special_func();
+ setState(421); special_func();
}
break;
case 5:
enterOuterAlt(_localctx, 5);
{
- setState(405); match(10);
- setState(406); expression();
- setState(407); match(23);
+ setState(422); match(10);
+ setState(423); expression();
+ setState(424); match(23);
}
break;
case 6:
enterOuterAlt(_localctx, 6);
{
- setState(409); match(OP_NOT);
- setState(410); match(10);
- setState(411); expression();
- setState(412); match(23);
+ setState(426); match(OP_NOT);
+ setState(427); match(10);
+ setState(428); expression();
+ setState(429); match(23);
}
break;
case 7:
enterOuterAlt(_localctx, 7);
{
- setState(414); msg_data();
+ setState(431); msg_data();
}
break;
case 8:
enterOuterAlt(_localctx, 8);
{
- setState(415); send_func();
+ setState(432); send_func();
}
break;
case 9:
enterOuterAlt(_localctx, 9);
{
- setState(416); contract_storage_load();
+ setState(433); contract_storage_load();
}
break;
case 10:
enterOuterAlt(_localctx, 10);
{
- setState(417); array_retreive();
+ setState(434); array_retreive();
}
break;
}
@@ -2927,11 +3038,11 @@ public class SerpentParser extends Parser {
public final Hex_numContext hex_num() throws RecognitionException {
Hex_numContext _localctx = new Hex_numContext(_ctx, getState());
- enterRule(_localctx, 88, RULE_hex_num);
+ enterRule(_localctx, 92, RULE_hex_num);
try {
enterOuterAlt(_localctx, 1);
{
- setState(420); match(HEX_NUMBER);
+ setState(437); match(HEX_NUMBER);
}
}
catch (RecognitionException re) {
@@ -2971,15 +3082,15 @@ public class SerpentParser extends Parser {
public final Ret_func_1Context ret_func_1() throws RecognitionException {
Ret_func_1Context _localctx = new Ret_func_1Context(_ctx, getState());
- enterRule(_localctx, 90, RULE_ret_func_1);
+ enterRule(_localctx, 94, RULE_ret_func_1);
try {
enterOuterAlt(_localctx, 1);
{
- setState(422); match(29);
- setState(423); match(10);
- setState(424); expression();
- setState(425); match(23);
- setState(426); match(NL);
+ setState(439); match(30);
+ setState(440); match(10);
+ setState(441); expression();
+ setState(442); match(23);
+ setState(443); match(NL);
}
}
catch (RecognitionException re) {
@@ -3022,17 +3133,17 @@ public class SerpentParser extends Parser {
public final Ret_func_2Context ret_func_2() throws RecognitionException {
Ret_func_2Context _localctx = new Ret_func_2Context(_ctx, getState());
- enterRule(_localctx, 92, RULE_ret_func_2);
+ enterRule(_localctx, 96, RULE_ret_func_2);
try {
enterOuterAlt(_localctx, 1);
{
- setState(428); match(29);
- setState(429); match(10);
- setState(430); expression();
- setState(431); match(4);
- setState(432); expression();
- setState(433); match(23);
- setState(434); match(NL);
+ setState(445); match(30);
+ setState(446); match(10);
+ setState(447); expression();
+ setState(448); match(4);
+ setState(449); expression();
+ setState(450); match(23);
+ setState(451); match(NL);
}
}
catch (RecognitionException re) {
@@ -3072,15 +3183,15 @@ public class SerpentParser extends Parser {
public final Suicide_funcContext suicide_func() throws RecognitionException {
Suicide_funcContext _localctx = new Suicide_funcContext(_ctx, getState());
- enterRule(_localctx, 94, RULE_suicide_func);
+ enterRule(_localctx, 98, RULE_suicide_func);
try {
enterOuterAlt(_localctx, 1);
{
- setState(436); match(20);
- setState(437); match(10);
- setState(438); expression();
- setState(439); match(23);
- setState(440); match(NL);
+ setState(453); match(20);
+ setState(454); match(10);
+ setState(455); expression();
+ setState(456); match(23);
+ setState(457); match(NL);
}
}
catch (RecognitionException re) {
@@ -3117,12 +3228,12 @@ public class SerpentParser extends Parser {
public final Stop_funcContext stop_func() throws RecognitionException {
Stop_funcContext _localctx = new Stop_funcContext(_ctx, getState());
- enterRule(_localctx, 96, RULE_stop_func);
+ enterRule(_localctx, 100, RULE_stop_func);
try {
enterOuterAlt(_localctx, 1);
{
- setState(442); match(2);
- setState(443); match(NL);
+ setState(459); match(2);
+ setState(460); match(NL);
}
}
catch (RecognitionException re) {
@@ -3159,11 +3270,11 @@ public class SerpentParser extends Parser {
public final Get_varContext get_var() throws RecognitionException {
Get_varContext _localctx = new Get_varContext(_ctx, getState());
- enterRule(_localctx, 98, RULE_get_var);
+ enterRule(_localctx, 102, RULE_get_var);
try {
enterOuterAlt(_localctx, 1);
{
- setState(445); match(VAR);
+ setState(462); match(VAR);
}
}
catch (RecognitionException re) {
@@ -3179,23 +3290,23 @@ public class SerpentParser extends Parser {
public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) {
switch (ruleIndex) {
- case 32: return mul_expr_sempred((Mul_exprContext)_localctx, predIndex);
+ case 34: return mul_expr_sempred((Mul_exprContext)_localctx, predIndex);
- case 33: return add_expr_sempred((Add_exprContext)_localctx, predIndex);
+ case 35: return add_expr_sempred((Add_exprContext)_localctx, predIndex);
- case 34: return rel_exp_sempred((Rel_expContext)_localctx, predIndex);
+ case 36: return rel_exp_sempred((Rel_expContext)_localctx, predIndex);
- case 35: return eq_exp_sempred((Eq_expContext)_localctx, predIndex);
+ case 37: return eq_exp_sempred((Eq_expContext)_localctx, predIndex);
- case 36: return and_exp_sempred((And_expContext)_localctx, predIndex);
+ case 38: return and_exp_sempred((And_expContext)_localctx, predIndex);
- case 37: return ex_or_exp_sempred((Ex_or_expContext)_localctx, predIndex);
+ case 39: return ex_or_exp_sempred((Ex_or_expContext)_localctx, predIndex);
- case 38: return in_or_exp_sempred((In_or_expContext)_localctx, predIndex);
+ case 40: return in_or_exp_sempred((In_or_expContext)_localctx, predIndex);
- case 39: return log_and_exp_sempred((Log_and_expContext)_localctx, predIndex);
+ case 41: return log_and_exp_sempred((Log_and_expContext)_localctx, predIndex);
- case 40: return log_or_exp_sempred((Log_or_expContext)_localctx, predIndex);
+ case 42: return log_or_exp_sempred((Log_or_expContext)_localctx, predIndex);
}
return true;
}
@@ -3255,155 +3366,161 @@ public class SerpentParser extends Parser {
}
public static final String _serializedATN =
- "\3\uacf5\uee8c\u4f5d\u8b0d\u4a45\u78bd\u1b2f\u3378\3:\u01c2\4\2\t\2\4"+
+ "\3\uacf5\uee8c\u4f5d\u8b0d\u4a45\u78bd\u1b2f\u3378\3;\u01d3\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\3\2\3\2"+
- "\3\2\3\3\3\3\3\3\3\3\3\3\3\3\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\7\4\u0082\n\4\f\4\16\4\u0085\13\4\3\5\3"+
- "\5\3\5\3\5\3\5\3\6\7\6\u008d\n\6\f\6\16\6\u0090\13\6\3\7\3\7\3\7\3\7\3"+
- "\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\7\7\u009f\n\7\f\7\16\7\u00a2\13\7\3"+
- "\7\3\7\3\7\3\7\3\7\5\7\u00a9\n\7\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\t\3\t\3\t\3\t\3\t\5\t\u00c0\n\t\3\n\3\n\3"+
- "\13\3\13\3\f\3\f\3\r\3\r\3\16\3\16\3\17\3\17\3\20\3\20\3\21\3\21\3\22"+
- "\3\22\3\23\3\23\3\24\3\24\3\25\3\25\3\26\3\26\3\27\3\27\3\30\3\30\3\30"+
- "\3\30\3\30\3\30\3\30\3\30\3\30\3\30\3\30\3\30\3\30\3\30\3\30\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\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\35\3\35\3\35\3\35\3\35"+
- "\3\36\3\36\3\36\3\36\3\36\5\36\u0110\n\36\3\36\3\36\3\37\3\37\3\37\5\37"+
- "\u0117\n\37\7\37\u0119\n\37\f\37\16\37\u011c\13\37\3\37\3\37\3 \3 \3 "+
- "\3 \3 \3 \3 \3 \3!\3!\3!\3!\3!\3\"\3\"\3\"\3\"\3\"\3\"\7\"\u0133\n\"\f"+
- "\"\16\"\u0136\13\"\3#\3#\3#\3#\3#\3#\7#\u013e\n#\f#\16#\u0141\13#\3$\3"+
- "$\3$\3$\3$\3$\7$\u0149\n$\f$\16$\u014c\13$\3%\3%\3%\3%\3%\3%\7%\u0154"+
- "\n%\f%\16%\u0157\13%\3&\3&\3&\3&\3&\3&\7&\u015f\n&\f&\16&\u0162\13&\3"+
- "\'\3\'\3\'\3\'\3\'\3\'\7\'\u016a\n\'\f\'\16\'\u016d\13\'\3(\3(\3(\3(\3"+
- "(\3(\7(\u0175\n(\f(\16(\u0178\13(\3)\3)\3)\3)\3)\3)\7)\u0180\n)\f)\16"+
- ")\u0183\13)\3*\3*\3*\3*\3*\3*\7*\u018b\n*\f*\16*\u018e\13*\3+\3+\3,\3"+
- ",\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\3-\5-\u01a5\n-\3.\3"+
- ".\3/\3/\3/\3/\3/\3/\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\61\3\61"+
- "\3\61\3\61\3\61\3\61\3\62\3\62\3\62\3\63\3\63\3\63\2\64\2\4\6\b\n\f\16"+
- "\20\22\24\26\30\32\34\36 \"$&(*,.\60\62\64\668:<>@BDFHJLNPRTVXZ\\^`bd"+
- "\2\3\4\2&\'88\u01c2\2f\3\2\2\2\4i\3\2\2\2\6\u0083\3\2\2\2\b\u0086\3\2"+
- "\2\2\n\u008e\3\2\2\2\f\u0091\3\2\2\2\16\u00aa\3\2\2\2\20\u00bf\3\2\2\2"+
- "\22\u00c1\3\2\2\2\24\u00c3\3\2\2\2\26\u00c5\3\2\2\2\30\u00c7\3\2\2\2\32"+
- "\u00c9\3\2\2\2\34\u00cb\3\2\2\2\36\u00cd\3\2\2\2 \u00cf\3\2\2\2\"\u00d1"+
- "\3\2\2\2$\u00d3\3\2\2\2&\u00d5\3\2\2\2(\u00d7\3\2\2\2*\u00d9\3\2\2\2,"+
- "\u00db\3\2\2\2.\u00dd\3\2\2\2\60\u00ec\3\2\2\2\62\u00f5\3\2\2\2\64\u00f8"+
- "\3\2\2\2\66\u00fd\3\2\2\28\u0105\3\2\2\2:\u010a\3\2\2\2<\u0113\3\2\2\2"+
- ">\u011f\3\2\2\2@\u0127\3\2\2\2B\u012c\3\2\2\2D\u0137\3\2\2\2F\u0142\3"+
- "\2\2\2H\u014d\3\2\2\2J\u0158\3\2\2\2L\u0163\3\2\2\2N\u016e\3\2\2\2P\u0179"+
- "\3\2\2\2R\u0184\3\2\2\2T\u018f\3\2\2\2V\u0191\3\2\2\2X\u01a4\3\2\2\2Z"+
- "\u01a6\3\2\2\2\\\u01a8\3\2\2\2^\u01ae\3\2\2\2`\u01b6\3\2\2\2b\u01bc\3"+
- "\2\2\2d\u01bf\3\2\2\2fg\5\6\4\2gh\7\2\2\3h\3\3\2\2\2ij\7\23\2\2jk\7\13"+
- "\2\2kl\79\2\2lm\5\6\4\2mn\7:\2\2no\7%\2\2op\7\13\2\2pq\79\2\2qr\5\6\4"+
- "\2rs\7:\2\2s\5\3\2\2\2t\u0082\5\b\5\2u\u0082\5\66\34\2v\u0082\5:\36\2"+
- "w\u0082\5> \2x\u0082\5\20\t\2y\u0082\5\f\7\2z\u0082\5\16\b\2{\u0082\5"+
- "\\/\2|\u0082\5^\60\2}\u0082\5`\61\2~\u0082\5b\62\2\177\u0082\5\62\32\2"+
- "\u0080\u0082\5.\30\2\u0081t\3\2\2\2\u0081u\3\2\2\2\u0081v\3\2\2\2\u0081"+
- "w\3\2\2\2\u0081x\3\2\2\2\u0081y\3\2\2\2\u0081z\3\2\2\2\u0081{\3\2\2\2"+
- "\u0081|\3\2\2\2\u0081}\3\2\2\2\u0081~\3\2\2\2\u0081\177\3\2\2\2\u0081"+
- "\u0080\3\2\2\2\u0082\u0085\3\2\2\2\u0083\u0081\3\2\2\2\u0083\u0084\3\2"+
- "\2\2\u0084\7\3\2\2\2\u0085\u0083\3\2\2\2\u0086\u0087\7\21\2\2\u0087\u0088"+
- "\5\n\6\2\u0088\u0089\7\"\2\2\u0089\u008a\7-\2\2\u008a\t\3\2\2\2\u008b"+
- "\u008d\t\2\2\2\u008c\u008b\3\2\2\2\u008d\u0090\3\2\2\2\u008e\u008c\3\2"+
- "\2\2\u008e\u008f\3\2\2\2\u008f\13\3\2\2\2\u0090\u008e\3\2\2\2\u0091\u0092"+
- "\7\r\2\2\u0092\u0093\5V,\2\u0093\u0094\7\13\2\2\u0094\u0095\79\2\2\u0095"+
- "\u0096\5\6\4\2\u0096\u00a0\7:\2\2\u0097\u0098\7\36\2\2\u0098\u0099\5V"+
- ",\2\u0099\u009a\7\13\2\2\u009a\u009b\79\2\2\u009b\u009c\5\6\4\2\u009c"+
- "\u009d\7:\2\2\u009d\u009f\3\2\2\2\u009e\u0097\3\2\2\2\u009f\u00a2\3\2"+
- "\2\2\u00a0\u009e\3\2\2\2\u00a0\u00a1\3\2\2\2\u00a1\u00a8\3\2\2\2\u00a2"+
- "\u00a0\3\2\2\2\u00a3\u00a4\7\33\2\2\u00a4\u00a5\79\2\2\u00a5\u00a6\5\6"+
- "\4\2\u00a6\u00a7\7:\2\2\u00a7\u00a9\3\2\2\2\u00a8\u00a3\3\2\2\2\u00a8"+
- "\u00a9\3\2\2\2\u00a9\r\3\2\2\2\u00aa\u00ab\7\t\2\2\u00ab\u00ac\5V,\2\u00ac"+
- "\u00ad\7\13\2\2\u00ad\u00ae\79\2\2\u00ae\u00af\5\6\4\2\u00af\u00b0\7:"+
- "\2\2\u00b0\17\3\2\2\2\u00b1\u00c0\5\22\n\2\u00b2\u00c0\5\24\13\2\u00b3"+
- "\u00c0\5\26\f\2\u00b4\u00c0\5\30\r\2\u00b5\u00c0\5\32\16\2\u00b6\u00c0"+
- "\5\34\17\2\u00b7\u00c0\5\36\20\2\u00b8\u00c0\5 \21\2\u00b9\u00c0\5\"\22"+
- "\2\u00ba\u00c0\5$\23\2\u00bb\u00c0\5&\24\2\u00bc\u00c0\5(\25\2\u00bd\u00c0"+
- "\5*\26\2\u00be\u00c0\5,\27\2\u00bf\u00b1\3\2\2\2\u00bf\u00b2\3\2\2\2\u00bf"+
- "\u00b3\3\2\2\2\u00bf\u00b4\3\2\2\2\u00bf\u00b5\3\2\2\2\u00bf\u00b6\3\2"+
- "\2\2\u00bf\u00b7\3\2\2\2\u00bf\u00b8\3\2\2\2\u00bf\u00b9\3\2\2\2\u00bf"+
- "\u00ba\3\2\2\2\u00bf\u00bb\3\2\2\2\u00bf\u00bc\3\2\2\2\u00bf\u00bd\3\2"+
- "\2\2\u00bf\u00be\3\2\2\2\u00c0\21\3\2\2\2\u00c1\u00c2\7\30\2\2\u00c2\23"+
- "\3\2\2\2\u00c3\u00c4\7 \2\2\u00c4\25\3\2\2\2\u00c5\u00c6\7\22\2\2\u00c6"+
- "\27\3\2\2\2\u00c7\u00c8\7\32\2\2\u00c8\31\3\2\2\2\u00c9\u00ca\7\34\2\2"+
- "\u00ca\33\3\2\2\2\u00cb\u00cc\7\b\2\2\u00cc\35\3\2\2\2\u00cd\u00ce\7!"+
- "\2\2\u00ce\37\3\2\2\2\u00cf\u00d0\7\20\2\2\u00d0!\3\2\2\2\u00d1\u00d2"+
- "\7\24\2\2\u00d2#\3\2\2\2\u00d3\u00d4\7\5\2\2\u00d4%\3\2\2\2\u00d5\u00d6"+
- "\7\17\2\2\u00d6\'\3\2\2\2\u00d7\u00d8\7$\2\2\u00d8)\3\2\2\2\u00d9\u00da"+
- "\7\27\2\2\u00da+\3\2\2\2\u00db\u00dc\7#\2\2\u00dc-\3\2\2\2\u00dd\u00de"+
- "\7\7\2\2\u00de\u00df\7\f\2\2\u00df\u00e0\5X-\2\u00e0\u00e1\7\6\2\2\u00e1"+
- "\u00e2\5X-\2\u00e2\u00e3\7\6\2\2\u00e3\u00e4\5X-\2\u00e4\u00e5\7\6\2\2"+
- "\u00e5\u00e6\5<\37\2\u00e6\u00e7\7\6\2\2\u00e7\u00e8\5X-\2\u00e8\u00e9"+
- "\7\6\2\2\u00e9\u00ea\5X-\2\u00ea\u00eb\7\31\2\2\u00eb/\3\2\2\2\u00ec\u00ed"+
- "\7\16\2\2\u00ed\u00ee\7\f\2\2\u00ee\u00ef\5X-\2\u00ef\u00f0\7\6\2\2\u00f0"+
- "\u00f1\5X-\2\u00f1\u00f2\7\6\2\2\u00f2\u00f3\5X-\2\u00f3\u00f4\7\31\2"+
- "\2\u00f4\61\3\2\2\2\u00f5\u00f6\5\60\31\2\u00f6\u00f7\7-\2\2\u00f7\63"+
- "\3\2\2\2\u00f8\u00f9\7\35\2\2\u00f9\u00fa\7\n\2\2\u00fa\u00fb\5T+\2\u00fb"+
- "\u00fc\7\3\2\2\u00fc\65\3\2\2\2\u00fd\u00fe\7\60\2\2\u00fe\u00ff\7\n\2"+
- "\2\u00ff\u0100\5X-\2\u0100\u0101\7\3\2\2\u0101\u0102\7,\2\2\u0102\u0103"+
- "\5T+\2\u0103\u0104\7-\2\2\u0104\67\3\2\2\2\u0105\u0106\7\60\2\2\u0106"+
- "\u0107\7\n\2\2\u0107\u0108\5X-\2\u0108\u0109\7\3\2\2\u01099\3\2\2\2\u010a"+
- "\u010b\7\60\2\2\u010b\u010f\7,\2\2\u010c\u0110\5T+\2\u010d\u0110\5<\37"+
- "\2\u010e\u0110\5.\30\2\u010f\u010c\3\2\2\2\u010f\u010d\3\2\2\2\u010f\u010e"+
- "\3\2\2\2\u0110\u0111\3\2\2\2\u0111\u0112\7-\2\2\u0112;\3\2\2\2\u0113\u011a"+
- "\7\n\2\2\u0114\u0116\5X-\2\u0115\u0117\7\6\2\2\u0116\u0115\3\2\2\2\u0116"+
- "\u0117\3\2\2\2\u0117\u0119\3\2\2\2\u0118\u0114\3\2\2\2\u0119\u011c\3\2"+
- "\2\2\u011a\u0118\3\2\2\2\u011a\u011b\3\2\2\2\u011b\u011d\3\2\2\2\u011c"+
- "\u011a\3\2\2\2\u011d\u011e\7\3\2\2\u011e=\3\2\2\2\u011f\u0120\7\25\2\2"+
- "\u0120\u0121\7\n\2\2\u0121\u0122\5T+\2\u0122\u0123\7\3\2\2\u0123\u0124"+
- "\7,\2\2\u0124\u0125\5T+\2\u0125\u0126\7-\2\2\u0126?\3\2\2\2\u0127\u0128"+
- "\7\25\2\2\u0128\u0129\7\n\2\2\u0129\u012a\5T+\2\u012a\u012b\7\3\2\2\u012b"+
- "A\3\2\2\2\u012c\u012d\b\"\1\2\u012d\u012e\5X-\2\u012e\u0134\3\2\2\2\u012f"+
- "\u0130\6\"\2\3\u0130\u0131\7\62\2\2\u0131\u0133\5X-\2\u0132\u012f\3\2"+
- "\2\2\u0133\u0136\3\2\2\2\u0134\u0132\3\2\2\2\u0134\u0135\3\2\2\2\u0135"+
- "C\3\2\2\2\u0136\u0134\3\2\2\2\u0137\u0138\b#\1\2\u0138\u0139\5B\"\2\u0139"+
- "\u013f\3\2\2\2\u013a\u013b\6#\3\3\u013b\u013c\7\61\2\2\u013c\u013e\5B"+
- "\"\2\u013d\u013a\3\2\2\2\u013e\u0141\3\2\2\2\u013f\u013d\3\2\2\2\u013f"+
- "\u0140\3\2\2\2\u0140E\3\2\2\2\u0141\u013f\3\2\2\2\u0142\u0143\b$\1\2\u0143"+
- "\u0144\5D#\2\u0144\u014a\3\2\2\2\u0145\u0146\6$\4\3\u0146\u0147\7\63\2"+
- "\2\u0147\u0149\5D#\2\u0148\u0145\3\2\2\2\u0149\u014c\3\2\2\2\u014a\u0148"+
- "\3\2\2\2\u014a\u014b\3\2\2\2\u014bG\3\2\2\2\u014c\u014a\3\2\2\2\u014d"+
- "\u014e\b%\1\2\u014e\u014f\5F$\2\u014f\u0155\3\2\2\2\u0150\u0151\6%\5\3"+
- "\u0151\u0152\7\64\2\2\u0152\u0154\5F$\2\u0153\u0150\3\2\2\2\u0154\u0157"+
- "\3\2\2\2\u0155\u0153\3\2\2\2\u0155\u0156\3\2\2\2\u0156I\3\2\2\2\u0157"+
- "\u0155\3\2\2\2\u0158\u0159\b&\1\2\u0159\u015a\5H%\2\u015a\u0160\3\2\2"+
- "\2\u015b\u015c\6&\6\3\u015c\u015d\7\65\2\2\u015d\u015f\5H%\2\u015e\u015b"+
- "\3\2\2\2\u015f\u0162\3\2\2\2\u0160\u015e\3\2\2\2\u0160\u0161\3\2\2\2\u0161"+
- "K\3\2\2\2\u0162\u0160\3\2\2\2\u0163\u0164\b\'\1\2\u0164\u0165\5J&\2\u0165"+
- "\u016b\3\2\2\2\u0166\u0167\6\'\7\3\u0167\u0168\7(\2\2\u0168\u016a\5J&"+
- "\2\u0169\u0166\3\2\2\2\u016a\u016d\3\2\2\2\u016b\u0169\3\2\2\2\u016b\u016c"+
- "\3\2\2\2\u016cM\3\2\2\2\u016d\u016b\3\2\2\2\u016e\u016f\b(\1\2\u016f\u0170"+
- "\5L\'\2\u0170\u0176\3\2\2\2\u0171\u0172\6(\b\3\u0172\u0173\7\66\2\2\u0173"+
- "\u0175\5L\'\2\u0174\u0171\3\2\2\2\u0175\u0178\3\2\2\2\u0176\u0174\3\2"+
- "\2\2\u0176\u0177\3\2\2\2\u0177O\3\2\2\2\u0178\u0176\3\2\2\2\u0179\u017a"+
- "\b)\1\2\u017a\u017b\5N(\2\u017b\u0181\3\2\2\2\u017c\u017d\6)\t\3\u017d"+
- "\u017e\7)\2\2\u017e\u0180\5N(\2\u017f\u017c\3\2\2\2\u0180\u0183\3\2\2"+
- "\2\u0181\u017f\3\2\2\2\u0181\u0182\3\2\2\2\u0182Q\3\2\2\2\u0183\u0181"+
- "\3\2\2\2\u0184\u0185\b*\1\2\u0185\u0186\5P)\2\u0186\u018c\3\2\2\2\u0187"+
- "\u0188\6*\n\3\u0188\u0189\7*\2\2\u0189\u018b\5P)\2\u018a\u0187\3\2\2\2"+
- "\u018b\u018e\3\2\2\2\u018c\u018a\3\2\2\2\u018c\u018d\3\2\2\2\u018dS\3"+
- "\2\2\2\u018e\u018c\3\2\2\2\u018f\u0190\5R*\2\u0190U\3\2\2\2\u0191\u0192"+
- "\5T+\2\u0192W\3\2\2\2\u0193\u01a5\7&\2\2\u0194\u01a5\5Z.\2\u0195\u01a5"+
- "\5d\63\2\u0196\u01a5\5\20\t\2\u0197\u0198\7\f\2\2\u0198\u0199\5T+\2\u0199"+
- "\u019a\7\31\2\2\u019a\u01a5\3\2\2\2\u019b\u019c\7+\2\2\u019c\u019d\7\f"+
- "\2\2\u019d\u019e\5T+\2\u019e\u019f\7\31\2\2\u019f\u01a5\3\2\2\2\u01a0"+
- "\u01a5\5\64\33\2\u01a1\u01a5\5\60\31\2\u01a2\u01a5\5@!\2\u01a3\u01a5\5"+
- "8\35\2\u01a4\u0193\3\2\2\2\u01a4\u0194\3\2\2\2\u01a4\u0195\3\2\2\2\u01a4"+
- "\u0196\3\2\2\2\u01a4\u0197\3\2\2\2\u01a4\u019b\3\2\2\2\u01a4\u01a0\3\2"+
- "\2\2\u01a4\u01a1\3\2\2\2\u01a4\u01a2\3\2\2\2\u01a4\u01a3\3\2\2\2\u01a5"+
- "Y\3\2\2\2\u01a6\u01a7\78\2\2\u01a7[\3\2\2\2\u01a8\u01a9\7\37\2\2\u01a9"+
- "\u01aa\7\f\2\2\u01aa\u01ab\5T+\2\u01ab\u01ac\7\31\2\2\u01ac\u01ad\7-\2"+
- "\2\u01ad]\3\2\2\2\u01ae\u01af\7\37\2\2\u01af\u01b0\7\f\2\2\u01b0\u01b1"+
- "\5T+\2\u01b1\u01b2\7\6\2\2\u01b2\u01b3\5T+\2\u01b3\u01b4\7\31\2\2\u01b4"+
- "\u01b5\7-\2\2\u01b5_\3\2\2\2\u01b6\u01b7\7\26\2\2\u01b7\u01b8\7\f\2\2"+
- "\u01b8\u01b9\5T+\2\u01b9\u01ba\7\31\2\2\u01ba\u01bb\7-\2\2\u01bba\3\2"+
- "\2\2\u01bc\u01bd\7\4\2\2\u01bd\u01be\7-\2\2\u01bec\3\2\2\2\u01bf\u01c0"+
- "\7\60\2\2\u01c0e\3\2\2\2\25\u0081\u0083\u008e\u00a0\u00a8\u00bf\u010f"+
- "\u0116\u011a\u0134\u013f\u014a\u0155\u0160\u016b\u0176\u0181\u018c\u01a4";
+ ",\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\3\2\3\2\3\2\3\3\3\3\3\3\3\3\3\3\3\3\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\7\4\u0087\n\4"+
+ "\f\4\16\4\u008a\13\4\3\5\3\5\3\5\3\5\3\5\3\6\7\6\u0092\n\6\f\6\16\6\u0095"+
+ "\13\6\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\7\7\u00a4\n"+
+ "\7\f\7\16\7\u00a7\13\7\3\7\3\7\3\7\3\7\3\7\5\7\u00ae\n\7\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\t\3\t\3\t\3\t\3\t"+
+ "\5\t\u00c5\n\t\3\n\3\n\3\13\3\13\3\f\3\f\3\r\3\r\3\16\3\16\3\17\3\17\3"+
+ "\20\3\20\3\21\3\21\3\22\3\22\3\23\3\23\3\24\3\24\3\25\3\25\3\26\3\26\3"+
+ "\27\3\27\3\30\3\30\3\30\3\30\3\30\3\30\3\30\3\30\3\30\3\30\3\30\3\30\3"+
+ "\30\3\30\3\30\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\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\3\33\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\36\3\37\3\37\3"+
+ "\37\3\37\3\37\3 \3 \3 \3 \3 \5 \u0121\n \3 \3 \3!\3!\3!\5!\u0128\n!\7"+
+ "!\u012a\n!\f!\16!\u012d\13!\3!\3!\3\"\3\"\3\"\3\"\3\"\3\"\3\"\3\"\3#\3"+
+ "#\3#\3#\3#\3$\3$\3$\3$\3$\3$\7$\u0144\n$\f$\16$\u0147\13$\3%\3%\3%\3%"+
+ "\3%\3%\7%\u014f\n%\f%\16%\u0152\13%\3&\3&\3&\3&\3&\3&\7&\u015a\n&\f&\16"+
+ "&\u015d\13&\3\'\3\'\3\'\3\'\3\'\3\'\7\'\u0165\n\'\f\'\16\'\u0168\13\'"+
+ "\3(\3(\3(\3(\3(\3(\7(\u0170\n(\f(\16(\u0173\13(\3)\3)\3)\3)\3)\3)\7)\u017b"+
+ "\n)\f)\16)\u017e\13)\3*\3*\3*\3*\3*\3*\7*\u0186\n*\f*\16*\u0189\13*\3"+
+ "+\3+\3+\3+\3+\3+\7+\u0191\n+\f+\16+\u0194\13+\3,\3,\3,\3,\3,\3,\7,\u019c"+
+ "\n,\f,\16,\u019f\13,\3-\3-\3.\3.\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3"+
+ "/\3/\3/\3/\3/\5/\u01b6\n/\3\60\3\60\3\61\3\61\3\61\3\61\3\61\3\61\3\62"+
+ "\3\62\3\62\3\62\3\62\3\62\3\62\3\62\3\63\3\63\3\63\3\63\3\63\3\63\3\64"+
+ "\3\64\3\64\3\65\3\65\3\65\2\66\2\4\6\b\n\f\16\20\22\24\26\30\32\34\36"+
+ " \"$&(*,.\60\62\64\668:<>@BDFHJLNPRTVXZ\\^`bdfh\2\3\4\2\'(99\u01d2\2j"+
+ "\3\2\2\2\4m\3\2\2\2\6\u0088\3\2\2\2\b\u008b\3\2\2\2\n\u0093\3\2\2\2\f"+
+ "\u0096\3\2\2\2\16\u00af\3\2\2\2\20\u00c4\3\2\2\2\22\u00c6\3\2\2\2\24\u00c8"+
+ "\3\2\2\2\26\u00ca\3\2\2\2\30\u00cc\3\2\2\2\32\u00ce\3\2\2\2\34\u00d0\3"+
+ "\2\2\2\36\u00d2\3\2\2\2 \u00d4\3\2\2\2\"\u00d6\3\2\2\2$\u00d8\3\2\2\2"+
+ "&\u00da\3\2\2\2(\u00dc\3\2\2\2*\u00de\3\2\2\2,\u00e0\3\2\2\2.\u00e2\3"+
+ "\2\2\2\60\u00f1\3\2\2\2\62\u00fa\3\2\2\2\64\u00fd\3\2\2\2\66\u0106\3\2"+
+ "\2\28\u0109\3\2\2\2:\u010e\3\2\2\2<\u0116\3\2\2\2>\u011b\3\2\2\2@\u0124"+
+ "\3\2\2\2B\u0130\3\2\2\2D\u0138\3\2\2\2F\u013d\3\2\2\2H\u0148\3\2\2\2J"+
+ "\u0153\3\2\2\2L\u015e\3\2\2\2N\u0169\3\2\2\2P\u0174\3\2\2\2R\u017f\3\2"+
+ "\2\2T\u018a\3\2\2\2V\u0195\3\2\2\2X\u01a0\3\2\2\2Z\u01a2\3\2\2\2\\\u01b5"+
+ "\3\2\2\2^\u01b7\3\2\2\2`\u01b9\3\2\2\2b\u01bf\3\2\2\2d\u01c7\3\2\2\2f"+
+ "\u01cd\3\2\2\2h\u01d0\3\2\2\2jk\5\6\4\2kl\7\2\2\3l\3\3\2\2\2mn\7\23\2"+
+ "\2no\7\13\2\2op\7:\2\2pq\5\6\4\2qr\7;\2\2rs\7&\2\2st\7\13\2\2tu\7:\2\2"+
+ "uv\5\6\4\2vw\7;\2\2w\5\3\2\2\2x\u0087\5\b\5\2y\u0087\5:\36\2z\u0087\5"+
+ "> \2{\u0087\5B\"\2|\u0087\5\20\t\2}\u0087\5\f\7\2~\u0087\5\16\b\2\177"+
+ "\u0087\5`\61\2\u0080\u0087\5b\62\2\u0081\u0087\5d\63\2\u0082\u0087\5f"+
+ "\64\2\u0083\u0087\5\62\32\2\u0084\u0087\5.\30\2\u0085\u0087\5\66\34\2"+
+ "\u0086x\3\2\2\2\u0086y\3\2\2\2\u0086z\3\2\2\2\u0086{\3\2\2\2\u0086|\3"+
+ "\2\2\2\u0086}\3\2\2\2\u0086~\3\2\2\2\u0086\177\3\2\2\2\u0086\u0080\3\2"+
+ "\2\2\u0086\u0081\3\2\2\2\u0086\u0082\3\2\2\2\u0086\u0083\3\2\2\2\u0086"+
+ "\u0084\3\2\2\2\u0086\u0085\3\2\2\2\u0087\u008a\3\2\2\2\u0088\u0086\3\2"+
+ "\2\2\u0088\u0089\3\2\2\2\u0089\7\3\2\2\2\u008a\u0088\3\2\2\2\u008b\u008c"+
+ "\7\21\2\2\u008c\u008d\5\n\6\2\u008d\u008e\7#\2\2\u008e\u008f\7.\2\2\u008f"+
+ "\t\3\2\2\2\u0090\u0092\t\2\2\2\u0091\u0090\3\2\2\2\u0092\u0095\3\2\2\2"+
+ "\u0093\u0091\3\2\2\2\u0093\u0094\3\2\2\2\u0094\13\3\2\2\2\u0095\u0093"+
+ "\3\2\2\2\u0096\u0097\7\r\2\2\u0097\u0098\5Z.\2\u0098\u0099\7\13\2\2\u0099"+
+ "\u009a\7:\2\2\u009a\u009b\5\6\4\2\u009b\u00a5\7;\2\2\u009c\u009d\7\37"+
+ "\2\2\u009d\u009e\5Z.\2\u009e\u009f\7\13\2\2\u009f\u00a0\7:\2\2\u00a0\u00a1"+
+ "\5\6\4\2\u00a1\u00a2\7;\2\2\u00a2\u00a4\3\2\2\2\u00a3\u009c\3\2\2\2\u00a4"+
+ "\u00a7\3\2\2\2\u00a5\u00a3\3\2\2\2\u00a5\u00a6\3\2\2\2\u00a6\u00ad\3\2"+
+ "\2\2\u00a7\u00a5\3\2\2\2\u00a8\u00a9\7\33\2\2\u00a9\u00aa\7:\2\2\u00aa"+
+ "\u00ab\5\6\4\2\u00ab\u00ac\7;\2\2\u00ac\u00ae\3\2\2\2\u00ad\u00a8\3\2"+
+ "\2\2\u00ad\u00ae\3\2\2\2\u00ae\r\3\2\2\2\u00af\u00b0\7\t\2\2\u00b0\u00b1"+
+ "\5Z.\2\u00b1\u00b2\7\13\2\2\u00b2\u00b3\7:\2\2\u00b3\u00b4\5\6\4\2\u00b4"+
+ "\u00b5\7;\2\2\u00b5\17\3\2\2\2\u00b6\u00c5\5\22\n\2\u00b7\u00c5\5\24\13"+
+ "\2\u00b8\u00c5\5\26\f\2\u00b9\u00c5\5\30\r\2\u00ba\u00c5\5\32\16\2\u00bb"+
+ "\u00c5\5\34\17\2\u00bc\u00c5\5\36\20\2\u00bd\u00c5\5 \21\2\u00be\u00c5"+
+ "\5\"\22\2\u00bf\u00c5\5$\23\2\u00c0\u00c5\5&\24\2\u00c1\u00c5\5(\25\2"+
+ "\u00c2\u00c5\5*\26\2\u00c3\u00c5\5,\27\2\u00c4\u00b6\3\2\2\2\u00c4\u00b7"+
+ "\3\2\2\2\u00c4\u00b8\3\2\2\2\u00c4\u00b9\3\2\2\2\u00c4\u00ba\3\2\2\2\u00c4"+
+ "\u00bb\3\2\2\2\u00c4\u00bc\3\2\2\2\u00c4\u00bd\3\2\2\2\u00c4\u00be\3\2"+
+ "\2\2\u00c4\u00bf\3\2\2\2\u00c4\u00c0\3\2\2\2\u00c4\u00c1\3\2\2\2\u00c4"+
+ "\u00c2\3\2\2\2\u00c4\u00c3\3\2\2\2\u00c5\21\3\2\2\2\u00c6\u00c7\7\30\2"+
+ "\2\u00c7\23\3\2\2\2\u00c8\u00c9\7!\2\2\u00c9\25\3\2\2\2\u00ca\u00cb\7"+
+ "\22\2\2\u00cb\27\3\2\2\2\u00cc\u00cd\7\32\2\2\u00cd\31\3\2\2\2\u00ce\u00cf"+
+ "\7\34\2\2\u00cf\33\3\2\2\2\u00d0\u00d1\7\b\2\2\u00d1\35\3\2\2\2\u00d2"+
+ "\u00d3\7\"\2\2\u00d3\37\3\2\2\2\u00d4\u00d5\7\20\2\2\u00d5!\3\2\2\2\u00d6"+
+ "\u00d7\7\24\2\2\u00d7#\3\2\2\2\u00d8\u00d9\7\5\2\2\u00d9%\3\2\2\2\u00da"+
+ "\u00db\7\17\2\2\u00db\'\3\2\2\2\u00dc\u00dd\7%\2\2\u00dd)\3\2\2\2\u00de"+
+ "\u00df\7\27\2\2\u00df+\3\2\2\2\u00e0\u00e1\7$\2\2\u00e1-\3\2\2\2\u00e2"+
+ "\u00e3\7\7\2\2\u00e3\u00e4\7\f\2\2\u00e4\u00e5\5\\/\2\u00e5\u00e6\7\6"+
+ "\2\2\u00e6\u00e7\5\\/\2\u00e7\u00e8\7\6\2\2\u00e8\u00e9\5\\/\2\u00e9\u00ea"+
+ "\7\6\2\2\u00ea\u00eb\5@!\2\u00eb\u00ec\7\6\2\2\u00ec\u00ed\5\\/\2\u00ed"+
+ "\u00ee\7\6\2\2\u00ee\u00ef\5\\/\2\u00ef\u00f0\7\31\2\2\u00f0/\3\2\2\2"+
+ "\u00f1\u00f2\7\16\2\2\u00f2\u00f3\7\f\2\2\u00f3\u00f4\5\\/\2\u00f4\u00f5"+
+ "\7\6\2\2\u00f5\u00f6\5\\/\2\u00f6\u00f7\7\6\2\2\u00f7\u00f8\5\\/\2\u00f8"+
+ "\u00f9\7\31\2\2\u00f9\61\3\2\2\2\u00fa\u00fb\5\60\31\2\u00fb\u00fc\7."+
+ "\2\2\u00fc\63\3\2\2\2\u00fd\u00fe\7\36\2\2\u00fe\u00ff\7\f\2\2\u00ff\u0100"+
+ "\5\\/\2\u0100\u0101\7\6\2\2\u0101\u0102\5\\/\2\u0102\u0103\7\6\2\2\u0103"+
+ "\u0104\5\\/\2\u0104\u0105\7\31\2\2\u0105\65\3\2\2\2\u0106\u0107\5\64\33"+
+ "\2\u0107\u0108\7.\2\2\u0108\67\3\2\2\2\u0109\u010a\7\35\2\2\u010a\u010b"+
+ "\7\n\2\2\u010b\u010c\5X-\2\u010c\u010d\7\3\2\2\u010d9\3\2\2\2\u010e\u010f"+
+ "\7\61\2\2\u010f\u0110\7\n\2\2\u0110\u0111\5\\/\2\u0111\u0112\7\3\2\2\u0112"+
+ "\u0113\7-\2\2\u0113\u0114\5X-\2\u0114\u0115\7.\2\2\u0115;\3\2\2\2\u0116"+
+ "\u0117\7\61\2\2\u0117\u0118\7\n\2\2\u0118\u0119\5\\/\2\u0119\u011a\7\3"+
+ "\2\2\u011a=\3\2\2\2\u011b\u011c\7\61\2\2\u011c\u0120\7-\2\2\u011d\u0121"+
+ "\5X-\2\u011e\u0121\5@!\2\u011f\u0121\5.\30\2\u0120\u011d\3\2\2\2\u0120"+
+ "\u011e\3\2\2\2\u0120\u011f\3\2\2\2\u0121\u0122\3\2\2\2\u0122\u0123\7."+
+ "\2\2\u0123?\3\2\2\2\u0124\u012b\7\n\2\2\u0125\u0127\5\\/\2\u0126\u0128"+
+ "\7\6\2\2\u0127\u0126\3\2\2\2\u0127\u0128\3\2\2\2\u0128\u012a\3\2\2\2\u0129"+
+ "\u0125\3\2\2\2\u012a\u012d\3\2\2\2\u012b\u0129\3\2\2\2\u012b\u012c\3\2"+
+ "\2\2\u012c\u012e\3\2\2\2\u012d\u012b\3\2\2\2\u012e\u012f\7\3\2\2\u012f"+
+ "A\3\2\2\2\u0130\u0131\7\25\2\2\u0131\u0132\7\n\2\2\u0132\u0133\5X-\2\u0133"+
+ "\u0134\7\3\2\2\u0134\u0135\7-\2\2\u0135\u0136\5X-\2\u0136\u0137\7.\2\2"+
+ "\u0137C\3\2\2\2\u0138\u0139\7\25\2\2\u0139\u013a\7\n\2\2\u013a\u013b\5"+
+ "X-\2\u013b\u013c\7\3\2\2\u013cE\3\2\2\2\u013d\u013e\b$\1\2\u013e\u013f"+
+ "\5\\/\2\u013f\u0145\3\2\2\2\u0140\u0141\6$\2\3\u0141\u0142\7\63\2\2\u0142"+
+ "\u0144\5\\/\2\u0143\u0140\3\2\2\2\u0144\u0147\3\2\2\2\u0145\u0143\3\2"+
+ "\2\2\u0145\u0146\3\2\2\2\u0146G\3\2\2\2\u0147\u0145\3\2\2\2\u0148\u0149"+
+ "\b%\1\2\u0149\u014a\5F$\2\u014a\u0150\3\2\2\2\u014b\u014c\6%\3\3\u014c"+
+ "\u014d\7\62\2\2\u014d\u014f\5F$\2\u014e\u014b\3\2\2\2\u014f\u0152\3\2"+
+ "\2\2\u0150\u014e\3\2\2\2\u0150\u0151\3\2\2\2\u0151I\3\2\2\2\u0152\u0150"+
+ "\3\2\2\2\u0153\u0154\b&\1\2\u0154\u0155\5H%\2\u0155\u015b\3\2\2\2\u0156"+
+ "\u0157\6&\4\3\u0157\u0158\7\64\2\2\u0158\u015a\5H%\2\u0159\u0156\3\2\2"+
+ "\2\u015a\u015d\3\2\2\2\u015b\u0159\3\2\2\2\u015b\u015c\3\2\2\2\u015cK"+
+ "\3\2\2\2\u015d\u015b\3\2\2\2\u015e\u015f\b\'\1\2\u015f\u0160\5J&\2\u0160"+
+ "\u0166\3\2\2\2\u0161\u0162\6\'\5\3\u0162\u0163\7\65\2\2\u0163\u0165\5"+
+ "J&\2\u0164\u0161\3\2\2\2\u0165\u0168\3\2\2\2\u0166\u0164\3\2\2\2\u0166"+
+ "\u0167\3\2\2\2\u0167M\3\2\2\2\u0168\u0166\3\2\2\2\u0169\u016a\b(\1\2\u016a"+
+ "\u016b\5L\'\2\u016b\u0171\3\2\2\2\u016c\u016d\6(\6\3\u016d\u016e\7\66"+
+ "\2\2\u016e\u0170\5L\'\2\u016f\u016c\3\2\2\2\u0170\u0173\3\2\2\2\u0171"+
+ "\u016f\3\2\2\2\u0171\u0172\3\2\2\2\u0172O\3\2\2\2\u0173\u0171\3\2\2\2"+
+ "\u0174\u0175\b)\1\2\u0175\u0176\5N(\2\u0176\u017c\3\2\2\2\u0177\u0178"+
+ "\6)\7\3\u0178\u0179\7)\2\2\u0179\u017b\5N(\2\u017a\u0177\3\2\2\2\u017b"+
+ "\u017e\3\2\2\2\u017c\u017a\3\2\2\2\u017c\u017d\3\2\2\2\u017dQ\3\2\2\2"+
+ "\u017e\u017c\3\2\2\2\u017f\u0180\b*\1\2\u0180\u0181\5P)\2\u0181\u0187"+
+ "\3\2\2\2\u0182\u0183\6*\b\3\u0183\u0184\7\67\2\2\u0184\u0186\5P)\2\u0185"+
+ "\u0182\3\2\2\2\u0186\u0189\3\2\2\2\u0187\u0185\3\2\2\2\u0187\u0188\3\2"+
+ "\2\2\u0188S\3\2\2\2\u0189\u0187\3\2\2\2\u018a\u018b\b+\1\2\u018b\u018c"+
+ "\5R*\2\u018c\u0192\3\2\2\2\u018d\u018e\6+\t\3\u018e\u018f\7*\2\2\u018f"+
+ "\u0191\5R*\2\u0190\u018d\3\2\2\2\u0191\u0194\3\2\2\2\u0192\u0190\3\2\2"+
+ "\2\u0192\u0193\3\2\2\2\u0193U\3\2\2\2\u0194\u0192\3\2\2\2\u0195\u0196"+
+ "\b,\1\2\u0196\u0197\5T+\2\u0197\u019d\3\2\2\2\u0198\u0199\6,\n\3\u0199"+
+ "\u019a\7+\2\2\u019a\u019c\5T+\2\u019b\u0198\3\2\2\2\u019c\u019f\3\2\2"+
+ "\2\u019d\u019b\3\2\2\2\u019d\u019e\3\2\2\2\u019eW\3\2\2\2\u019f\u019d"+
+ "\3\2\2\2\u01a0\u01a1\5V,\2\u01a1Y\3\2\2\2\u01a2\u01a3\5X-\2\u01a3[\3\2"+
+ "\2\2\u01a4\u01b6\7\'\2\2\u01a5\u01b6\5^\60\2\u01a6\u01b6\5h\65\2\u01a7"+
+ "\u01b6\5\20\t\2\u01a8\u01a9\7\f\2\2\u01a9\u01aa\5X-\2\u01aa\u01ab\7\31"+
+ "\2\2\u01ab\u01b6\3\2\2\2\u01ac\u01ad\7,\2\2\u01ad\u01ae\7\f\2\2\u01ae"+
+ "\u01af\5X-\2\u01af\u01b0\7\31\2\2\u01b0\u01b6\3\2\2\2\u01b1\u01b6\58\35"+
+ "\2\u01b2\u01b6\5\60\31\2\u01b3\u01b6\5D#\2\u01b4\u01b6\5<\37\2\u01b5\u01a4"+
+ "\3\2\2\2\u01b5\u01a5\3\2\2\2\u01b5\u01a6\3\2\2\2\u01b5\u01a7\3\2\2\2\u01b5"+
+ "\u01a8\3\2\2\2\u01b5\u01ac\3\2\2\2\u01b5\u01b1\3\2\2\2\u01b5\u01b2\3\2"+
+ "\2\2\u01b5\u01b3\3\2\2\2\u01b5\u01b4\3\2\2\2\u01b6]\3\2\2\2\u01b7\u01b8"+
+ "\79\2\2\u01b8_\3\2\2\2\u01b9\u01ba\7 \2\2\u01ba\u01bb\7\f\2\2\u01bb\u01bc"+
+ "\5X-\2\u01bc\u01bd\7\31\2\2\u01bd\u01be\7.\2\2\u01bea\3\2\2\2\u01bf\u01c0"+
+ "\7 \2\2\u01c0\u01c1\7\f\2\2\u01c1\u01c2\5X-\2\u01c2\u01c3\7\6\2\2\u01c3"+
+ "\u01c4\5X-\2\u01c4\u01c5\7\31\2\2\u01c5\u01c6\7.\2\2\u01c6c\3\2\2\2\u01c7"+
+ "\u01c8\7\26\2\2\u01c8\u01c9\7\f\2\2\u01c9\u01ca\5X-\2\u01ca\u01cb\7\31"+
+ "\2\2\u01cb\u01cc\7.\2\2\u01cce\3\2\2\2\u01cd\u01ce\7\4\2\2\u01ce\u01cf"+
+ "\7.\2\2\u01cfg\3\2\2\2\u01d0\u01d1\7\61\2\2\u01d1i\3\2\2\2\25\u0086\u0088"+
+ "\u0093\u00a5\u00ad\u00c4\u0120\u0127\u012b\u0145\u0150\u015b\u0166\u0171"+
+ "\u017c\u0187\u0192\u019d\u01b5";
public static final ATN _ATN =
ATNSimulator.deserialize(_serializedATN.toCharArray());
static {
diff --git a/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentToAssemblyCompiler.java b/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentToAssemblyCompiler.java
index 6c8aa48e..72cd05fe 100644
--- a/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentToAssemblyCompiler.java
+++ b/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentToAssemblyCompiler.java
@@ -641,6 +641,16 @@ public class SerpentToAssemblyCompiler extends SerpentBaseVisitor {
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) {
diff --git a/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentVisitor.java b/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentVisitor.java
index c46e93d6..20e52f8e 100644
--- a/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentVisitor.java
+++ b/ethereumj-core/src/main/java/org/ethereum/serpent/SerpentVisitor.java
@@ -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 extends ParseTreeVisitor {
*/
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 extends ParseTreeVisitor {
*/
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 extends ParseTreeVisitor {
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}.
diff --git a/ethereumj-core/src/test/java/org/ethereum/serpent/SerpentCompileTest.java b/ethereumj-core/src/test/java/org/ethereum/serpent/SerpentCompileTest.java
index 1be17dcf..f4bef1e2 100644
--- a/ethereumj-core/src/test/java/org/ethereum/serpent/SerpentCompileTest.java
+++ b/ethereumj-core/src/test/java/org/ethereum/serpent/SerpentCompileTest.java
@@ -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)