You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nlpcraft.apache.org by ar...@apache.org on 2021/07/22 08:38:35 UTC

[incubator-nlpcraft] branch NLPCRAFT-369 updated: WIP on NLPCRAFT-369.

This is an automated email from the ASF dual-hosted git repository.

aradzinski pushed a commit to branch NLPCRAFT-369
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git


The following commit(s) were added to refs/heads/NLPCRAFT-369 by this push:
     new b7626a8  WIP on NLPCRAFT-369.
b7626a8 is described below

commit b7626a81423cedf5f21dda8cee1bafa40dd71ffe
Author: Aaron Radzinski <ar...@datalingvo.com>
AuthorDate: Thu Jul 22 01:38:23 2021 -0700

    WIP on NLPCRAFT-369.
---
 .../apache/nlpcraft/model/intent/NCIdlIntent.scala |    7 +-
 .../nlpcraft/model/intent/NCIdlIntentOptions.scala |   27 +
 .../model/intent/compiler/NCIdlCompiler.scala      |   18 +-
 .../nlpcraft/model/intent/compiler/antlr4/NCIdl.g4 |    3 +-
 .../model/intent/compiler/antlr4/NCIdl.interp      |    5 +-
 .../model/intent/compiler/antlr4/NCIdl.tokens      |  188 ++--
 .../intent/compiler/antlr4/NCIdlBaseListener.java  |   14 +-
 .../model/intent/compiler/antlr4/NCIdlLexer.interp |    5 +-
 .../model/intent/compiler/antlr4/NCIdlLexer.java   | 1140 ++++++++++----------
 .../model/intent/compiler/antlr4/NCIdlLexer.tokens |  188 ++--
 .../intent/compiler/antlr4/NCIdlListener.java      |   12 +-
 .../model/intent/compiler/antlr4/NCIdlParser.java  |  896 ++++++++-------
 12 files changed, 1324 insertions(+), 1179 deletions(-)

diff --git a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/NCIdlIntent.scala b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/NCIdlIntent.scala
index d5b48c8..57828b1 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/NCIdlIntent.scala
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/NCIdlIntent.scala
@@ -28,6 +28,7 @@ import java.util.regex.Pattern
  * @param idl Original IDL of this intent.
  * @param id
  * @param ordered
+ * @param options
  * @param meta
  * @param flow
  * @param terms
@@ -37,6 +38,7 @@ case class NCIdlIntent(
     idl: String,
     id: String,
     ordered: Boolean,
+    options: NCIdlIntentOptions,
     meta: ScalaMeta,
     flow: Option[String],
     flowClsName: Option[String],
@@ -46,15 +48,16 @@ case class NCIdlIntent(
     require(id != null)
     require(terms.nonEmpty)
     require(meta != null)
+    require(options != null)
 
     // Flow regex as a compiled pattern.
     // Regex validity check is already done during intent compilation.
-    lazy val flowRegex = flow match {
+    lazy val flowRegex: Option[Pattern] = flow match {
         case Some(r) => Some(Pattern.compile(r))
         case None => None
     }
 
-    lazy val isFlowDefined = flow.isDefined || flowMtdName.isDefined
+    lazy val isFlowDefined: Boolean = flow.isDefined || flowMtdName.isDefined
 
     override def toString: String = idl
 }
diff --git a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/NCIdlIntentOptions.scala b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/NCIdlIntentOptions.scala
new file mode 100644
index 0000000..7e93280
--- /dev/null
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/NCIdlIntentOptions.scala
@@ -0,0 +1,27 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      https://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.nlpcraft.model.intent
+
+/**
+ * Intent options container.
+ */
+class NCIdlIntentOptions {
+    var ignoreUnusedFreeWords: Boolean = true
+    var ignoreUnusedSystemTokens: Boolean = true
+    var ignoreUnusedUserTokens: Boolean = false
+}
diff --git a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/NCIdlCompiler.scala b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/NCIdlCompiler.scala
index 7748a2e..60559b2 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/NCIdlCompiler.scala
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/NCIdlCompiler.scala
@@ -26,7 +26,7 @@ import org.apache.nlpcraft.common.antlr4.NCCompilerUtils
 import org.apache.nlpcraft.model.intent.compiler.antlr4.{NCIdlBaseListener, NCIdlLexer, NCIdlParser => IDP}
 import org.apache.nlpcraft.model.intent.compiler.{NCIdlCompilerGlobal => Global}
 import org.apache.nlpcraft.model._
-import org.apache.nlpcraft.model.intent.{NCIdlContext, NCIdlFunction, NCIdlIntent, NCIdlStack, NCIdlSynonym, NCIdlTerm, NCIdlStackItem => Z}
+import org.apache.nlpcraft.model.intent.{NCIdlContext, NCIdlFunction, NCIdlIntent, NCIdlIntentOptions, NCIdlStack, NCIdlSynonym, NCIdlTerm, NCIdlStackItem => Z}
 
 import java.io._
 import java.net._
@@ -66,6 +66,7 @@ object NCIdlCompiler extends LazyLogging {
         private var ordered: Boolean = false
         private var flowRegex: Option[String] = None
         private var intentMeta: ScalaMeta = _
+        private var intentOpts: NCIdlIntentOptions = _
 
         // Accumulator for parsed terms.
         private val terms = mutable.ArrayBuffer.empty[NCIdlTerm]
@@ -83,6 +84,13 @@ object NCIdlCompiler extends LazyLogging {
         private var flowClsName: Option[String] = None
         private var flowMtdName: Option[String] = None
 
+        // Supported intent options (JSON fields).
+        private val OPTIONS = Seq(
+            "unused_free_words",
+            "unused_sys_toks",
+            "unused_user_toks"
+        )
+
         // List of instructions for the current expression.
         private val expr = mutable.Buffer.empty[SI]
 
@@ -112,10 +120,17 @@ object NCIdlCompiler extends LazyLogging {
         override def exitTermEq(ctx: IDP.TermEqContext): Unit = termConv = ctx.TILDA() != null
         override def exitFragMeta(ctx: IDP.FragMetaContext): Unit = fragMeta = U.jsonToScalaMap(ctx.jsonObj().getText)
         override def exitMetaDecl(ctx: IDP.MetaDeclContext): Unit = intentMeta = U.jsonToScalaMap(ctx.jsonObj().getText)
+        override def exitOptDecl (ctx: IDP.OptDeclContext): Unit = intentOpts = convertToOptions(U.jsonToScalaMap(ctx.jsonObj().getText))
         override def exitOrderedDecl(ctx: IDP.OrderedDeclContext): Unit = ordered = ctx.BOOL().getText == "true"
         override def exitIntentId(ctx: IDP.IntentIdContext): Unit =  intentId = ctx.id().getText
         override def exitAlias(ctx: IDP.AliasContext): Unit = alias = ctx.id().getText
 
+        private def convertToOptions(json: Map[String, Object]): NCIdlIntentOptions = {
+            val opts = new NCIdlIntentOptions()
+
+
+        }
+
         override def enterCallExpr(ctx: IDP.CallExprContext): Unit =
             expr += ((_, stack: NCIdlStack, _) => stack.push(stack.PLIST_MARKER))
 
@@ -458,6 +473,7 @@ object NCIdlCompiler extends LazyLogging {
                     idl,
                     intentId,
                     ordered,
+                    intentOpts,
                     if (intentMeta == null) Map.empty else intentMeta,
                     flowRegex,
                     flowClsName,
diff --git a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdl.g4 b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdl.g4
index 7348625..9ebca9c 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdl.g4
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdl.g4
@@ -35,12 +35,13 @@ frag: fragId termDecls;
 fragId: FRAG ASSIGN id;
 fragRef: FRAG LPAR id fragMeta? RPAR;
 fragMeta: COMMA jsonObj;
-intent: intentId orderedDecl? flowDecl? metaDecl? termDecls;
+intent: intentId orderedDecl? optDecl? flowDecl? metaDecl? termDecls;
 intentId: 'intent' ASSIGN id;
 orderedDecl: 'ordered' ASSIGN BOOL;
 mtdDecl: DIV mtdRef DIV;
 flowDecl: 'flow' ASSIGN (qstring | mtdDecl);
 metaDecl: 'meta' ASSIGN jsonObj;
+optDecl: 'options' ASSIGN jsonObj;
 jsonObj
     : LBRACE jsonPair (COMMA jsonPair)* RBRACE
     | LBRACE RBRACE
diff --git a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdl.interp b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdl.interp
index f3a74b6..acb18b1 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdl.interp
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdl.interp
@@ -1,5 +1,6 @@
 token literal names:
 null
+'options'
 null
 'import'
 'intent'
@@ -55,6 +56,7 @@ null
 
 token symbolic names:
 null
+null
 FUN_NAME
 IMPORT
 INTENT
@@ -125,6 +127,7 @@ orderedDecl
 mtdDecl
 flowDecl
 metaDecl
+optDecl
 jsonObj
 jsonPair
 jsonVal
@@ -150,4 +153,4 @@ id
 
 
 atn:
-[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 54, 377, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, [...]
\ No newline at end of file
+[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 55, 386, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, [...]
\ No newline at end of file
diff --git a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdl.tokens b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdl.tokens
index 9b1574e..ed273b3 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdl.tokens
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdl.tokens
@@ -1,93 +1,95 @@
-FUN_NAME=1
-IMPORT=2
-INTENT=3
-ORDERED=4
-FLOW=5
-META=6
-TERM=7
-FRAG=8
-SQSTRING=9
-DQSTRING=10
-BOOL=11
-NULL=12
-EQ=13
-NEQ=14
-GTEQ=15
-LTEQ=16
-GT=17
-LT=18
-AND=19
-OR=20
-VERT=21
-NOT=22
-LPAR=23
-RPAR=24
-LBRACE=25
-RBRACE=26
-SQUOTE=27
-DQUOTE=28
-TILDA=29
-LBR=30
-RBR=31
-POUND=32
-COMMA=33
-COLON=34
-MINUS=35
-DOT=36
-UNDERSCORE=37
-ASSIGN=38
-PLUS=39
-QUESTION=40
-MULT=41
-DIV=42
-MOD=43
-AT=44
-DOLLAR=45
-INT=46
-REAL=47
-EXP=48
-ID=49
-COMMENT=50
-WS=51
-ErrorChar=52
-'import'=2
-'intent'=3
-'ordered'=4
-'flow'=5
-'meta'=6
-'term'=7
-'fragment'=8
-'null'=12
-'=='=13
-'!='=14
-'>='=15
-'<='=16
-'>'=17
-'<'=18
-'&&'=19
-'||'=20
-'|'=21
-'!'=22
-'('=23
-')'=24
-'{'=25
-'}'=26
-'\''=27
-'"'=28
-'~'=29
-'['=30
-']'=31
-'#'=32
-','=33
-':'=34
-'-'=35
-'.'=36
-'_'=37
-'='=38
-'+'=39
-'?'=40
-'*'=41
-'/'=42
-'%'=43
-'@'=44
-'$'=45
+T__0=1
+FUN_NAME=2
+IMPORT=3
+INTENT=4
+ORDERED=5
+FLOW=6
+META=7
+TERM=8
+FRAG=9
+SQSTRING=10
+DQSTRING=11
+BOOL=12
+NULL=13
+EQ=14
+NEQ=15
+GTEQ=16
+LTEQ=17
+GT=18
+LT=19
+AND=20
+OR=21
+VERT=22
+NOT=23
+LPAR=24
+RPAR=25
+LBRACE=26
+RBRACE=27
+SQUOTE=28
+DQUOTE=29
+TILDA=30
+LBR=31
+RBR=32
+POUND=33
+COMMA=34
+COLON=35
+MINUS=36
+DOT=37
+UNDERSCORE=38
+ASSIGN=39
+PLUS=40
+QUESTION=41
+MULT=42
+DIV=43
+MOD=44
+AT=45
+DOLLAR=46
+INT=47
+REAL=48
+EXP=49
+ID=50
+COMMENT=51
+WS=52
+ErrorChar=53
+'options'=1
+'import'=3
+'intent'=4
+'ordered'=5
+'flow'=6
+'meta'=7
+'term'=8
+'fragment'=9
+'null'=13
+'=='=14
+'!='=15
+'>='=16
+'<='=17
+'>'=18
+'<'=19
+'&&'=20
+'||'=21
+'|'=22
+'!'=23
+'('=24
+')'=25
+'{'=26
+'}'=27
+'\''=28
+'"'=29
+'~'=30
+'['=31
+']'=32
+'#'=33
+','=34
+':'=35
+'-'=36
+'.'=37
+'_'=38
+'='=39
+'+'=40
+'?'=41
+'*'=42
+'/'=43
+'%'=44
+'@'=45
+'$'=46
diff --git a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdlBaseListener.java b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdlBaseListener.java
index bc8d329..3bc7323 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdlBaseListener.java
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdlBaseListener.java
@@ -1,4 +1,4 @@
-// Generated from /Users/nivanov/incubator-nlpcraft/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdl.g4 by ANTLR 4.9.1
+// Generated from C:/Users/Nikita Ivanov/Documents/GitHub/incubator-nlpcraft/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4\NCIdl.g4 by ANTLR 4.9.1
 package org.apache.nlpcraft.model.intent.compiler.antlr4;
 
 import org.antlr.v4.runtime.ParserRuleContext;
@@ -208,6 +208,18 @@ public class NCIdlBaseListener implements NCIdlListener {
 	 *
 	 * <p>The default implementation does nothing.</p>
 	 */
+	@Override public void enterOptDecl(NCIdlParser.OptDeclContext ctx) { }
+	/**
+	 * {@inheritDoc}
+	 *
+	 * <p>The default implementation does nothing.</p>
+	 */
+	@Override public void exitOptDecl(NCIdlParser.OptDeclContext ctx) { }
+	/**
+	 * {@inheritDoc}
+	 *
+	 * <p>The default implementation does nothing.</p>
+	 */
 	@Override public void enterJsonObj(NCIdlParser.JsonObjContext ctx) { }
 	/**
 	 * {@inheritDoc}
diff --git a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdlLexer.interp b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdlLexer.interp
index 155ebae..333010d 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdlLexer.interp
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdlLexer.interp
@@ -1,5 +1,6 @@
 token literal names:
 null
+'options'
 null
 'import'
 'intent'
@@ -55,6 +56,7 @@ null
 
 token symbolic names:
 null
+null
 FUN_NAME
 IMPORT
 INTENT
@@ -109,6 +111,7 @@ WS
 ErrorChar
 
 rule names:
+T__0
 FUN_NAME
 IMPORT
 INTENT
@@ -172,4 +175,4 @@ mode names:
 DEFAULT_MODE
 
 atn:
-[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 54, 1518, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, [...]
\ No newline at end of file
+[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 55, 1528, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, [...]
\ No newline at end of file
diff --git a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdlLexer.java b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdlLexer.java
index d66a9af..60587f5 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdlLexer.java
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdlLexer.java
@@ -1,4 +1,4 @@
-// Generated from /Users/nivanov/incubator-nlpcraft/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdl.g4 by ANTLR 4.9.1
+// Generated from C:/Users/Nikita Ivanov/Documents/GitHub/incubator-nlpcraft/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4\NCIdl.g4 by ANTLR 4.9.1
 package org.apache.nlpcraft.model.intent.compiler.antlr4;
 import org.antlr.v4.runtime.Lexer;
 import org.antlr.v4.runtime.CharStream;
@@ -17,13 +17,13 @@ public class NCIdlLexer extends Lexer {
 	protected static final PredictionContextCache _sharedContextCache =
 		new PredictionContextCache();
 	public static final int
-		FUN_NAME=1, IMPORT=2, INTENT=3, ORDERED=4, FLOW=5, META=6, TERM=7, FRAG=8, 
-		SQSTRING=9, DQSTRING=10, BOOL=11, NULL=12, EQ=13, NEQ=14, GTEQ=15, LTEQ=16, 
-		GT=17, LT=18, AND=19, OR=20, VERT=21, NOT=22, LPAR=23, RPAR=24, LBRACE=25, 
-		RBRACE=26, SQUOTE=27, DQUOTE=28, TILDA=29, LBR=30, RBR=31, POUND=32, COMMA=33, 
-		COLON=34, MINUS=35, DOT=36, UNDERSCORE=37, ASSIGN=38, PLUS=39, QUESTION=40, 
-		MULT=41, DIV=42, MOD=43, AT=44, DOLLAR=45, INT=46, REAL=47, EXP=48, ID=49, 
-		COMMENT=50, WS=51, ErrorChar=52;
+		T__0=1, FUN_NAME=2, IMPORT=3, INTENT=4, ORDERED=5, FLOW=6, META=7, TERM=8, 
+		FRAG=9, SQSTRING=10, DQSTRING=11, BOOL=12, NULL=13, EQ=14, NEQ=15, GTEQ=16, 
+		LTEQ=17, GT=18, LT=19, AND=20, OR=21, VERT=22, NOT=23, LPAR=24, RPAR=25, 
+		LBRACE=26, RBRACE=27, SQUOTE=28, DQUOTE=29, TILDA=30, LBR=31, RBR=32, 
+		POUND=33, COMMA=34, COLON=35, MINUS=36, DOT=37, UNDERSCORE=38, ASSIGN=39, 
+		PLUS=40, QUESTION=41, MULT=42, DIV=43, MOD=44, AT=45, DOLLAR=46, INT=47, 
+		REAL=48, EXP=49, ID=50, COMMENT=51, WS=52, ErrorChar=53;
 	public static String[] channelNames = {
 		"DEFAULT_TOKEN_CHANNEL", "HIDDEN"
 	};
@@ -34,34 +34,35 @@ public class NCIdlLexer extends Lexer {
 
 	private static String[] makeRuleNames() {
 		return new String[] {
-			"FUN_NAME", "IMPORT", "INTENT", "ORDERED", "FLOW", "META", "TERM", "FRAG", 
-			"SQSTRING", "DQSTRING", "BOOL", "NULL", "EQ", "NEQ", "GTEQ", "LTEQ", 
-			"GT", "LT", "AND", "OR", "VERT", "NOT", "LPAR", "RPAR", "LBRACE", "RBRACE", 
-			"SQUOTE", "DQUOTE", "TILDA", "LBR", "RBR", "POUND", "COMMA", "COLON", 
-			"MINUS", "DOT", "UNDERSCORE", "ASSIGN", "PLUS", "QUESTION", "MULT", "DIV", 
-			"MOD", "AT", "DOLLAR", "INT", "REAL", "EXP", "UNI_CHAR", "LETTER", "ID", 
-			"COMMENT", "WS", "ErrorChar"
+			"T__0", "FUN_NAME", "IMPORT", "INTENT", "ORDERED", "FLOW", "META", "TERM", 
+			"FRAG", "SQSTRING", "DQSTRING", "BOOL", "NULL", "EQ", "NEQ", "GTEQ", 
+			"LTEQ", "GT", "LT", "AND", "OR", "VERT", "NOT", "LPAR", "RPAR", "LBRACE", 
+			"RBRACE", "SQUOTE", "DQUOTE", "TILDA", "LBR", "RBR", "POUND", "COMMA", 
+			"COLON", "MINUS", "DOT", "UNDERSCORE", "ASSIGN", "PLUS", "QUESTION", 
+			"MULT", "DIV", "MOD", "AT", "DOLLAR", "INT", "REAL", "EXP", "UNI_CHAR", 
+			"LETTER", "ID", "COMMENT", "WS", "ErrorChar"
 		};
 	}
 	public static final String[] ruleNames = makeRuleNames();
 
 	private static String[] makeLiteralNames() {
 		return new String[] {
-			null, null, "'import'", "'intent'", "'ordered'", "'flow'", "'meta'", 
-			"'term'", "'fragment'", null, null, null, "'null'", "'=='", "'!='", "'>='", 
-			"'<='", "'>'", "'<'", "'&&'", "'||'", "'|'", "'!'", "'('", "')'", "'{'", 
-			"'}'", "'''", "'\"'", "'~'", "'['", "']'", "'#'", "','", "':'", "'-'", 
-			"'.'", "'_'", "'='", "'+'", "'?'", "'*'", "'/'", "'%'", "'@'", "'$'"
+			null, "'options'", null, "'import'", "'intent'", "'ordered'", "'flow'", 
+			"'meta'", "'term'", "'fragment'", null, null, null, "'null'", "'=='", 
+			"'!='", "'>='", "'<='", "'>'", "'<'", "'&&'", "'||'", "'|'", "'!'", "'('", 
+			"')'", "'{'", "'}'", "'''", "'\"'", "'~'", "'['", "']'", "'#'", "','", 
+			"':'", "'-'", "'.'", "'_'", "'='", "'+'", "'?'", "'*'", "'/'", "'%'", 
+			"'@'", "'$'"
 		};
 	}
 	private static final String[] _LITERAL_NAMES = makeLiteralNames();
 	private static String[] makeSymbolicNames() {
 		return new String[] {
-			null, "FUN_NAME", "IMPORT", "INTENT", "ORDERED", "FLOW", "META", "TERM", 
-			"FRAG", "SQSTRING", "DQSTRING", "BOOL", "NULL", "EQ", "NEQ", "GTEQ", 
-			"LTEQ", "GT", "LT", "AND", "OR", "VERT", "NOT", "LPAR", "RPAR", "LBRACE", 
-			"RBRACE", "SQUOTE", "DQUOTE", "TILDA", "LBR", "RBR", "POUND", "COMMA", 
-			"COLON", "MINUS", "DOT", "UNDERSCORE", "ASSIGN", "PLUS", "QUESTION", 
+			null, null, "FUN_NAME", "IMPORT", "INTENT", "ORDERED", "FLOW", "META", 
+			"TERM", "FRAG", "SQSTRING", "DQSTRING", "BOOL", "NULL", "EQ", "NEQ", 
+			"GTEQ", "LTEQ", "GT", "LT", "AND", "OR", "VERT", "NOT", "LPAR", "RPAR", 
+			"LBRACE", "RBRACE", "SQUOTE", "DQUOTE", "TILDA", "LBR", "RBR", "POUND", 
+			"COMMA", "COLON", "MINUS", "DOT", "UNDERSCORE", "ASSIGN", "PLUS", "QUESTION", 
 			"MULT", "DIV", "MOD", "AT", "DOLLAR", "INT", "REAL", "EXP", "ID", "COMMENT", 
 			"WS", "ErrorChar"
 		};
@@ -125,555 +126,558 @@ public class NCIdlLexer extends Lexer {
 	public ATN getATN() { return _ATN; }
 
 	public static final String _serializedATN =
-		"\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\66\u05ee\b\1\4\2"+
+		"\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\67\u05f8\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\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3"+
-		"\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2"+
-		"\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\2\5\2\u04f9"+
-		"\n\2\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\5\3\5\3"+
-		"\5\3\5\3\5\3\5\3\5\3\5\3\6\3\6\3\6\3\6\3\6\3\7\3\7\3\7\3\7\3\7\3\b\3\b"+
-		"\3\b\3\b\3\b\3\t\3\t\3\t\3\t\3\t\3\t\3\t\3\t\3\t\3\n\3\n\3\n\3\n\7\n\u052d"+
-		"\n\n\f\n\16\n\u0530\13\n\3\n\3\n\3\13\3\13\3\13\3\13\7\13\u0538\n\13\f"+
-		"\13\16\13\u053b\13\13\3\13\3\13\3\f\3\f\3\f\3\f\3\f\3\f\3\f\3\f\3\f\5"+
-		"\f\u0548\n\f\3\r\3\r\3\r\3\r\3\r\3\16\3\16\3\16\3\17\3\17\3\17\3\20\3"+
-		"\20\3\20\3\21\3\21\3\21\3\22\3\22\3\23\3\23\3\24\3\24\3\24\3\25\3\25\3"+
-		"\25\3\26\3\26\3\27\3\27\3\30\3\30\3\31\3\31\3\32\3\32\3\33\3\33\3\34\3"+
-		"\34\3\35\3\35\3\36\3\36\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/\7/"+
-		"\u059a\n/\f/\16/\u059d\13/\5/\u059f\n/\3\60\3\60\6\60\u05a3\n\60\r\60"+
-		"\16\60\u05a4\3\61\3\61\5\61\u05a9\n\61\3\61\3\61\3\62\3\62\3\62\5\62\u05b0"+
-		"\n\62\3\63\3\63\3\64\3\64\3\64\3\64\6\64\u05b8\n\64\r\64\16\64\u05b9\3"+
-		"\64\3\64\3\64\3\64\3\64\3\64\3\64\7\64\u05c3\n\64\f\64\16\64\u05c6\13"+
-		"\64\3\65\3\65\3\65\3\65\7\65\u05cc\n\65\f\65\16\65\u05cf\13\65\3\65\5"+
-		"\65\u05d2\n\65\3\65\5\65\u05d5\n\65\3\65\3\65\3\65\3\65\7\65\u05db\n\65"+
-		"\f\65\16\65\u05de\13\65\3\65\3\65\5\65\u05e2\n\65\3\65\3\65\3\66\6\66"+
-		"\u05e7\n\66\r\66\16\66\u05e8\3\66\3\66\3\67\3\67\3\u05dc\28\3\3\5\4\7"+
-		"\5\t\6\13\7\r\b\17\t\21\n\23\13\25\f\27\r\31\16\33\17\35\20\37\21!\22"+
-		"#\23%\24\'\25)\26+\27-\30/\31\61\32\63\33\65\34\67\359\36;\37= ?!A\"C"+
-		"#E$G%I&K\'M(O)Q*S+U,W-Y.[/]\60_\61a\62c\2e\2g\63i\64k\65m\66\3\2\20\3"+
-		"\2))\3\2$$\3\2\63;\4\2\62;aa\3\2\62;\4\2GGgg\4\2--//\4\2\2\u0081\ud802"+
-		"\udc01\3\2\ud802\udc01\3\2\udc02\ue001\4\2C\\c|\4\2\f\f\17\17\3\3\f\f"+
-		"\5\2\13\f\16\17\"\"\2\u0697\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\2g\3\2\2\2\2i\3\2\2\2\2k\3\2\2\2\2m"+
-		"\3\2\2\2\3\u04f8\3\2\2\2\5\u04fa\3\2\2\2\7\u0501\3\2\2\2\t\u0508\3\2\2"+
-		"\2\13\u0510\3\2\2\2\r\u0515\3\2\2\2\17\u051a\3\2\2\2\21\u051f\3\2\2\2"+
-		"\23\u0528\3\2\2\2\25\u0533\3\2\2\2\27\u0547\3\2\2\2\31\u0549\3\2\2\2\33"+
-		"\u054e\3\2\2\2\35\u0551\3\2\2\2\37\u0554\3\2\2\2!\u0557\3\2\2\2#\u055a"+
-		"\3\2\2\2%\u055c\3\2\2\2\'\u055e\3\2\2\2)\u0561\3\2\2\2+\u0564\3\2\2\2"+
-		"-\u0566\3\2\2\2/\u0568\3\2\2\2\61\u056a\3\2\2\2\63\u056c\3\2\2\2\65\u056e"+
-		"\3\2\2\2\67\u0570\3\2\2\29\u0572\3\2\2\2;\u0574\3\2\2\2=\u0576\3\2\2\2"+
-		"?\u0578\3\2\2\2A\u057a\3\2\2\2C\u057c\3\2\2\2E\u057e\3\2\2\2G\u0580\3"+
-		"\2\2\2I\u0582\3\2\2\2K\u0584\3\2\2\2M\u0586\3\2\2\2O\u0588\3\2\2\2Q\u058a"+
-		"\3\2\2\2S\u058c\3\2\2\2U\u058e\3\2\2\2W\u0590\3\2\2\2Y\u0592\3\2\2\2["+
-		"\u0594\3\2\2\2]\u059e\3\2\2\2_\u05a0\3\2\2\2a\u05a6\3\2\2\2c\u05af\3\2"+
-		"\2\2e\u05b1\3\2\2\2g\u05b7\3\2\2\2i\u05e1\3\2\2\2k\u05e6\3\2\2\2m\u05ec"+
-		"\3\2\2\2op\7o\2\2pq\7g\2\2qr\7v\2\2rs\7c\2\2st\7a\2\2tu\7v\2\2uv\7q\2"+
-		"\2v\u04f9\7m\2\2wx\7o\2\2xy\7g\2\2yz\7v\2\2z{\7c\2\2{|\7a\2\2|}\7r\2\2"+
-		"}~\7c\2\2~\177\7t\2\2\177\u04f9\7v\2\2\u0080\u0081\7o\2\2\u0081\u0082"+
-		"\7g\2\2\u0082\u0083\7v\2\2\u0083\u0084\7c\2\2\u0084\u0085\7a\2\2\u0085"+
-		"\u0086\7o\2\2\u0086\u0087\7q\2\2\u0087\u0088\7f\2\2\u0088\u0089\7g\2\2"+
-		"\u0089\u04f9\7n\2\2\u008a\u008b\7o\2\2\u008b\u008c\7g\2\2\u008c\u008d"+
-		"\7v\2\2\u008d\u008e\7c\2\2\u008e\u008f\7a\2\2\u008f\u0090\7k\2\2\u0090"+
-		"\u0091\7p\2\2\u0091\u0092\7v\2\2\u0092\u0093\7g\2\2\u0093\u0094\7p\2\2"+
-		"\u0094\u04f9\7v\2\2\u0095\u0096\7o\2\2\u0096\u0097\7g\2\2\u0097\u0098"+
-		"\7v\2\2\u0098\u0099\7c\2\2\u0099\u009a\7a\2\2\u009a\u009b\7t\2\2\u009b"+
-		"\u009c\7g\2\2\u009c\u04f9\7s\2\2\u009d\u009e\7o\2\2\u009e\u009f\7g\2\2"+
-		"\u009f\u00a0\7v\2\2\u00a0\u00a1\7c\2\2\u00a1\u00a2\7a\2\2\u00a2\u00a3"+
-		"\7w\2\2\u00a3\u00a4\7u\2\2\u00a4\u00a5\7g\2\2\u00a5\u04f9\7t\2\2\u00a6"+
-		"\u00a7\7o\2\2\u00a7\u00a8\7g\2\2\u00a8\u00a9\7v\2\2\u00a9\u00aa\7c\2\2"+
-		"\u00aa\u00ab\7a\2\2\u00ab\u00ac\7e\2\2\u00ac\u00ad\7q\2\2\u00ad\u00ae"+
-		"\7o\2\2\u00ae\u00af\7r\2\2\u00af\u00b0\7c\2\2\u00b0\u00b1\7p\2\2\u00b1"+
-		"\u04f9\7{\2\2\u00b2\u00b3\7o\2\2\u00b3\u00b4\7g\2\2\u00b4\u00b5\7v\2\2"+
-		"\u00b5\u00b6\7c\2\2\u00b6\u00b7\7a\2\2\u00b7\u00b8\7u\2\2\u00b8\u00b9"+
-		"\7{\2\2\u00b9\u04f9\7u\2\2\u00ba\u00bb\7o\2\2\u00bb\u00bc\7g\2\2\u00bc"+
-		"\u00bd\7v\2\2\u00bd\u00be\7c\2\2\u00be\u00bf\7a\2\2\u00bf\u00c0\7e\2\2"+
-		"\u00c0\u00c1\7q\2\2\u00c1\u00c2\7p\2\2\u00c2\u04f9\7x\2\2\u00c3\u00c4"+
-		"\7o\2\2\u00c4\u00c5\7g\2\2\u00c5\u00c6\7v\2\2\u00c6\u00c7\7c\2\2\u00c7"+
-		"\u00c8\7a\2\2\u00c8\u00c9\7h\2\2\u00c9\u00ca\7t\2\2\u00ca\u00cb\7c\2\2"+
-		"\u00cb\u04f9\7i\2\2\u00cc\u00cd\7l\2\2\u00cd\u00ce\7u\2\2\u00ce\u00cf"+
-		"\7q\2\2\u00cf\u04f9\7p\2\2\u00d0\u00d1\7k\2\2\u00d1\u04f9\7h\2\2\u00d2"+
-		"\u00d3\7v\2\2\u00d3\u00d4\7q\2\2\u00d4\u00d5\7m\2\2\u00d5\u00d6\7a\2\2"+
-		"\u00d6\u00d7\7k\2\2\u00d7\u04f9\7f\2\2\u00d8\u00d9\7v\2\2\u00d9\u00da"+
-		"\7q\2\2\u00da\u00db\7m\2\2\u00db\u00dc\7a\2\2\u00dc\u00dd\7n\2\2\u00dd"+
-		"\u00de\7g\2\2\u00de\u00df\7o\2\2\u00df\u00e0\7o\2\2\u00e0\u04f9\7c\2\2"+
-		"\u00e1\u00e2\7v\2\2\u00e2\u00e3\7q\2\2\u00e3\u00e4\7m\2\2\u00e4\u00e5"+
-		"\7a\2\2\u00e5\u00e6\7u\2\2\u00e6\u00e7\7v\2\2\u00e7\u00e8\7g\2\2\u00e8"+
-		"\u04f9\7o\2\2\u00e9\u00ea\7v\2\2\u00ea\u00eb\7q\2\2\u00eb\u00ec\7m\2\2"+
-		"\u00ec\u00ed\7a\2\2\u00ed\u00ee\7r\2\2\u00ee\u00ef\7q\2\2\u00ef\u04f9"+
-		"\7u\2\2\u00f0\u00f1\7v\2\2\u00f1\u00f2\7q\2\2\u00f2\u00f3\7m\2\2\u00f3"+
-		"\u00f4\7a\2\2\u00f4\u00f5\7u\2\2\u00f5\u00f6\7r\2\2\u00f6\u00f7\7c\2\2"+
-		"\u00f7\u00f8\7t\2\2\u00f8\u00f9\7u\2\2\u00f9\u00fa\7k\2\2\u00fa\u00fb"+
-		"\7v\2\2\u00fb\u04f9\7{\2\2\u00fc\u00fd\7v\2\2\u00fd\u00fe\7q\2\2\u00fe"+
-		"\u00ff\7m\2\2\u00ff\u0100\7a\2\2\u0100\u0101\7w\2\2\u0101\u0102\7p\2\2"+
-		"\u0102\u0103\7k\2\2\u0103\u04f9\7f\2\2\u0104\u0105\7v\2\2\u0105\u0106"+
-		"\7q\2\2\u0106\u0107\7m\2\2\u0107\u0108\7a\2\2\u0108\u0109\7k\2\2\u0109"+
-		"\u010a\7u\2\2\u010a\u010b\7a\2\2\u010b\u010c\7c\2\2\u010c\u010d\7d\2\2"+
-		"\u010d\u010e\7u\2\2\u010e\u010f\7v\2\2\u010f\u0110\7t\2\2\u0110\u0111"+
-		"\7c\2\2\u0111\u0112\7e\2\2\u0112\u04f9\7v\2\2\u0113\u0114\7v\2\2\u0114"+
-		"\u0115\7q\2\2\u0115\u0116\7m\2\2\u0116\u0117\7a\2\2\u0117\u0118\7k\2\2"+
-		"\u0118\u0119\7u\2\2\u0119\u011a\7a\2\2\u011a\u011b\7d\2\2\u011b\u011c"+
-		"\7t\2\2\u011c\u011d\7c\2\2\u011d\u011e\7e\2\2\u011e\u011f\7m\2\2\u011f"+
-		"\u0120\7g\2\2\u0120\u0121\7v\2\2\u0121\u0122\7g\2\2\u0122\u04f9\7f\2\2"+
-		"\u0123\u0124\7v\2\2\u0124\u0125\7q\2\2\u0125\u0126\7m\2\2\u0126\u0127"+
-		"\7a\2\2\u0127\u0128\7k\2\2\u0128\u0129\7u\2\2\u0129\u012a\7a\2\2\u012a"+
-		"\u012b\7f\2\2\u012b\u012c\7k\2\2\u012c\u012d\7t\2\2\u012d\u012e\7g\2\2"+
-		"\u012e\u012f\7e\2\2\u012f\u04f9\7v\2\2\u0130\u0131\7v\2\2\u0131\u0132"+
-		"\7q\2\2\u0132\u0133\7m\2\2\u0133\u0134\7a\2\2\u0134\u0135\7k\2\2\u0135"+
-		"\u0136\7u\2\2\u0136\u0137\7a\2\2\u0137\u0138\7r\2\2\u0138\u0139\7g\2\2"+
-		"\u0139\u013a\7t\2\2\u013a\u013b\7o\2\2\u013b\u013c\7w\2\2\u013c\u013d"+
-		"\7v\2\2\u013d\u013e\7c\2\2\u013e\u013f\7v\2\2\u013f\u0140\7g\2\2\u0140"+
-		"\u04f9\7f\2\2\u0141\u0142\7v\2\2\u0142\u0143\7q\2\2\u0143\u0144\7m\2\2"+
-		"\u0144\u0145\7a\2\2\u0145\u0146\7k\2\2\u0146\u0147\7u\2\2\u0147\u0148"+
-		"\7a\2\2\u0148\u0149\7g\2\2\u0149\u014a\7p\2\2\u014a\u014b\7i\2\2\u014b"+
-		"\u014c\7n\2\2\u014c\u014d\7k\2\2\u014d\u014e\7u\2\2\u014e\u04f9\7j\2\2"+
-		"\u014f\u0150\7v\2\2\u0150\u0151\7q\2\2\u0151\u0152\7m\2\2\u0152\u0153"+
-		"\7a\2\2\u0153\u0154\7k\2\2\u0154\u0155\7u\2\2\u0155\u0156\7a\2\2\u0156"+
-		"\u0157\7h\2\2\u0157\u0158\7t\2\2\u0158\u0159\7g\2\2\u0159\u015a\7g\2\2"+
-		"\u015a\u015b\7y\2\2\u015b\u015c\7q\2\2\u015c\u015d\7t\2\2\u015d\u04f9"+
-		"\7f\2\2\u015e\u015f\7v\2\2\u015f\u0160\7q\2\2\u0160\u0161\7m\2\2\u0161"+
-		"\u0162\7a\2\2\u0162\u0163\7k\2\2\u0163\u0164\7u\2\2\u0164\u0165\7a\2\2"+
-		"\u0165\u0166\7s\2\2\u0166\u0167\7w\2\2\u0167\u0168\7q\2\2\u0168\u0169"+
-		"\7v\2\2\u0169\u016a\7g\2\2\u016a\u04f9\7f\2\2\u016b\u016c\7v\2\2\u016c"+
-		"\u016d\7q\2\2\u016d\u016e\7m\2\2\u016e\u016f\7a\2\2\u016f\u0170\7k\2\2"+
-		"\u0170\u0171\7u\2\2\u0171\u0172\7a\2\2\u0172\u0173\7u\2\2\u0173\u0174"+
-		"\7v\2\2\u0174\u0175\7q\2\2\u0175\u0176\7r\2\2\u0176\u0177\7y\2\2\u0177"+
-		"\u0178\7q\2\2\u0178\u0179\7t\2\2\u0179\u04f9\7f\2\2\u017a\u017b\7v\2\2"+
-		"\u017b\u017c\7q\2\2\u017c\u017d\7m\2\2\u017d\u017e\7a\2\2\u017e\u017f"+
-		"\7k\2\2\u017f\u0180\7u\2\2\u0180\u0181\7a\2\2\u0181\u0182\7u\2\2\u0182"+
-		"\u0183\7y\2\2\u0183\u0184\7g\2\2\u0184\u0185\7c\2\2\u0185\u04f9\7t\2\2"+
-		"\u0186\u0187\7v\2\2\u0187\u0188\7q\2\2\u0188\u0189\7m\2\2\u0189\u018a"+
-		"\7a\2\2\u018a\u018b\7k\2\2\u018b\u018c\7u\2\2\u018c\u018d\7a\2\2\u018d"+
-		"\u018e\7w\2\2\u018e\u018f\7u\2\2\u018f\u0190\7g\2\2\u0190\u04f9\7t\2\2"+
-		"\u0191\u0192\7v\2\2\u0192\u0193\7q\2\2\u0193\u0194\7m\2\2\u0194\u0195"+
-		"\7a\2\2\u0195\u0196\7k\2\2\u0196\u0197\7u\2\2\u0197\u0198\7a\2\2\u0198"+
-		"\u0199\7y\2\2\u0199\u019a\7q\2\2\u019a\u019b\7t\2\2\u019b\u019c\7f\2\2"+
-		"\u019c\u019d\7p\2\2\u019d\u019e\7g\2\2\u019e\u04f9\7v\2\2\u019f\u01a0"+
-		"\7v\2\2\u01a0\u01a1\7q\2\2\u01a1\u01a2\7m\2\2\u01a2\u01a3\7a\2\2\u01a3"+
-		"\u01a4\7c\2\2\u01a4\u01a5\7p\2\2\u01a5\u01a6\7e\2\2\u01a6\u01a7\7g\2\2"+
-		"\u01a7\u01a8\7u\2\2\u01a8\u01a9\7v\2\2\u01a9\u01aa\7q\2\2\u01aa\u01ab"+
-		"\7t\2\2\u01ab\u04f9\7u\2\2\u01ac\u01ad\7v\2\2\u01ad\u01ae\7q\2\2\u01ae"+
-		"\u01af\7m\2\2\u01af\u01b0\7a\2\2\u01b0\u01b1\7r\2\2\u01b1\u01b2\7c\2\2"+
-		"\u01b2\u01b3\7t\2\2\u01b3\u01b4\7g\2\2\u01b4\u01b5\7p\2\2\u01b5\u04f9"+
-		"\7v\2\2\u01b6\u01b7\7v\2\2\u01b7\u01b8\7q\2\2\u01b8\u01b9\7m\2\2\u01b9"+
-		"\u01ba\7a\2\2\u01ba\u01bb\7i\2\2\u01bb\u01bc\7t\2\2\u01bc\u01bd\7q\2\2"+
-		"\u01bd\u01be\7w\2\2\u01be\u01bf\7r\2\2\u01bf\u04f9\7u\2\2\u01c0\u01c1"+
-		"\7v\2\2\u01c1\u01c2\7q\2\2\u01c2\u01c3\7m\2\2\u01c3\u01c4\7a\2\2\u01c4"+
-		"\u01c5\7x\2\2\u01c5\u01c6\7c\2\2\u01c6\u01c7\7n\2\2\u01c7\u01c8\7w\2\2"+
-		"\u01c8\u04f9\7g\2\2\u01c9\u01ca\7v\2\2\u01ca\u01cb\7q\2\2\u01cb\u01cc"+
-		"\7m\2\2\u01cc\u01cd\7a\2\2\u01cd\u01ce\7c\2\2\u01ce\u01cf\7n\2\2\u01cf"+
-		"\u01d0\7k\2\2\u01d0\u01d1\7c\2\2\u01d1\u01d2\7u\2\2\u01d2\u01d3\7g\2\2"+
-		"\u01d3\u04f9\7u\2\2\u01d4\u01d5\7v\2\2\u01d5\u01d6\7q\2\2\u01d6\u01d7"+
-		"\7m\2\2\u01d7\u01d8\7a\2\2\u01d8\u01d9\7u\2\2\u01d9\u01da\7v\2\2\u01da"+
-		"\u01db\7c\2\2\u01db\u01dc\7t\2\2\u01dc\u01dd\7v\2\2\u01dd\u01de\7a\2\2"+
-		"\u01de\u01df\7k\2\2\u01df\u01e0\7f\2\2\u01e0\u04f9\7z\2\2\u01e1\u01e2"+
-		"\7v\2\2\u01e2\u01e3\7q\2\2\u01e3\u01e4\7m\2\2\u01e4\u01e5\7a\2\2\u01e5"+
-		"\u01e6\7g\2\2\u01e6\u01e7\7p\2\2\u01e7\u01e8\7f\2\2\u01e8\u01e9\7a\2\2"+
-		"\u01e9\u01ea\7k\2\2\u01ea\u01eb\7f\2\2\u01eb\u04f9\7z\2\2\u01ec\u01ed"+
-		"\7v\2\2\u01ed\u01ee\7q\2\2\u01ee\u01ef\7m\2\2\u01ef\u01f0\7a\2\2\u01f0"+
-		"\u01f1\7v\2\2\u01f1\u01f2\7j\2\2\u01f2\u01f3\7k\2\2\u01f3\u04f9\7u\2\2"+
-		"\u01f4\u01f5\7v\2\2\u01f5\u01f6\7q\2\2\u01f6\u01f7\7m\2\2\u01f7\u01f8"+
-		"\7a\2\2\u01f8\u01f9\7h\2\2\u01f9\u01fa\7k\2\2\u01fa\u01fb\7p\2\2\u01fb"+
-		"\u01fc\7f\2\2\u01fc\u01fd\7a\2\2\u01fd\u01fe\7r\2\2\u01fe\u01ff\7c\2\2"+
-		"\u01ff\u0200\7t\2\2\u0200\u04f9\7v\2\2\u0201\u0202\7v\2\2\u0202\u0203"+
-		"\7q\2\2\u0203\u0204\7m\2\2\u0204\u0205\7a\2\2\u0205\u0206\7j\2\2\u0206"+
-		"\u0207\7c\2\2\u0207\u0208\7u\2\2\u0208\u0209\7a\2\2\u0209\u020a\7r\2\2"+
-		"\u020a\u020b\7c\2\2\u020b\u020c\7t\2\2\u020c\u04f9\7v\2\2\u020d\u020e"+
-		"\7v\2\2\u020e\u020f\7q\2\2\u020f\u0210\7m\2\2\u0210\u0211\7a\2\2\u0211"+
-		"\u0212\7h\2\2\u0212\u0213\7k\2\2\u0213\u0214\7p\2\2\u0214\u0215\7f\2\2"+
-		"\u0215\u0216\7a\2\2\u0216\u0217\7r\2\2\u0217\u0218\7c\2\2\u0218\u0219"+
-		"\7t\2\2\u0219\u021a\7v\2\2\u021a\u04f9\7u\2\2\u021b\u021c\7t\2\2\u021c"+
-		"\u021d\7g\2\2\u021d\u021e\7s\2\2\u021e\u021f\7a\2\2\u021f\u0220\7k\2\2"+
-		"\u0220\u04f9\7f\2\2\u0221\u0222\7t\2\2\u0222\u0223\7g\2\2\u0223\u0224"+
-		"\7s\2\2\u0224\u0225\7a\2\2\u0225\u0226\7p\2\2\u0226\u0227\7q\2\2\u0227"+
-		"\u0228\7t\2\2\u0228\u0229\7o\2\2\u0229\u022a\7v\2\2\u022a\u022b\7g\2\2"+
-		"\u022b\u022c\7z\2\2\u022c\u04f9\7v\2\2\u022d\u022e\7t\2\2\u022e\u022f"+
-		"\7g\2\2\u022f\u0230\7s\2\2\u0230\u0231\7a\2\2\u0231\u0232\7v\2\2\u0232"+
-		"\u0233\7u\2\2\u0233\u0234\7v\2\2\u0234\u0235\7c\2\2\u0235\u0236\7o\2\2"+
-		"\u0236\u04f9\7r\2\2\u0237\u0238\7t\2\2\u0238\u0239\7g\2\2\u0239\u023a"+
-		"\7s\2\2\u023a\u023b\7a\2\2\u023b\u023c\7c\2\2\u023c\u023d\7f\2\2\u023d"+
-		"\u023e\7f\2\2\u023e\u04f9\7t\2\2\u023f\u0240\7t\2\2\u0240\u0241\7g\2\2"+
-		"\u0241\u0242\7s\2\2\u0242\u0243\7a\2\2\u0243\u0244\7c\2\2\u0244\u0245"+
-		"\7i\2\2\u0245\u0246\7g\2\2\u0246\u0247\7p\2\2\u0247\u04f9\7v\2\2\u0248"+
-		"\u0249\7w\2\2\u0249\u024a\7u\2\2\u024a\u024b\7g\2\2\u024b\u024c\7t\2\2"+
-		"\u024c\u024d\7a\2\2\u024d\u024e\7k\2\2\u024e\u04f9\7f\2\2\u024f\u0250"+
-		"\7w\2\2\u0250\u0251\7u\2\2\u0251\u0252\7g\2\2\u0252\u0253\7t\2\2\u0253"+
-		"\u0254\7a\2\2\u0254\u0255\7h\2\2\u0255\u0256\7p\2\2\u0256\u0257\7c\2\2"+
-		"\u0257\u0258\7o\2\2\u0258\u04f9\7g\2\2\u0259\u025a\7w\2\2\u025a\u025b"+
-		"\7u\2\2\u025b\u025c\7g\2\2\u025c\u025d\7t\2\2\u025d\u025e\7a\2\2\u025e"+
-		"\u025f\7n\2\2\u025f\u0260\7p\2\2\u0260\u0261\7c\2\2\u0261\u0262\7o\2\2"+
-		"\u0262\u04f9\7g\2\2\u0263\u0264\7w\2\2\u0264\u0265\7u\2\2\u0265\u0266"+
-		"\7g\2\2\u0266\u0267\7t\2\2\u0267\u0268\7a\2\2\u0268\u0269\7g\2\2\u0269"+
-		"\u026a\7o\2\2\u026a\u026b\7c\2\2\u026b\u026c\7k\2\2\u026c\u04f9\7n\2\2"+
-		"\u026d\u026e\7w\2\2\u026e\u026f\7u\2\2\u026f\u0270\7g\2\2\u0270\u0271"+
-		"\7t\2\2\u0271\u0272\7a\2\2\u0272\u0273\7c\2\2\u0273\u0274\7f\2\2\u0274"+
-		"\u0275\7o\2\2\u0275\u0276\7k\2\2\u0276\u04f9\7p\2\2\u0277\u0278\7w\2\2"+
-		"\u0278\u0279\7u\2\2\u0279\u027a\7g\2\2\u027a\u027b\7t\2\2\u027b\u027c"+
-		"\7a\2\2\u027c\u027d\7u\2\2\u027d\u027e\7k\2\2\u027e\u027f\7i\2\2\u027f"+
-		"\u0280\7p\2\2\u0280\u0281\7w\2\2\u0281\u0282\7r\2\2\u0282\u0283\7a\2\2"+
-		"\u0283\u0284\7v\2\2\u0284\u0285\7u\2\2\u0285\u0286\7v\2\2\u0286\u0287"+
-		"\7c\2\2\u0287\u0288\7o\2\2\u0288\u04f9\7r\2\2\u0289\u028a\7e\2\2\u028a"+
-		"\u028b\7q\2\2\u028b\u028c\7o\2\2\u028c\u028d\7r\2\2\u028d\u028e\7a\2\2"+
-		"\u028e\u028f\7k\2\2\u028f\u04f9\7f\2\2\u0290\u0291\7e\2\2\u0291\u0292"+
-		"\7q\2\2\u0292\u0293\7o\2\2\u0293\u0294\7r\2\2\u0294\u0295\7a\2\2\u0295"+
-		"\u0296\7p\2\2\u0296\u0297\7c\2\2\u0297\u0298\7o\2\2\u0298\u04f9\7g\2\2"+
-		"\u0299\u029a\7e\2\2\u029a\u029b\7q\2\2\u029b\u029c\7o\2\2\u029c\u029d"+
-		"\7r\2\2\u029d\u029e\7a\2\2\u029e\u029f\7y\2\2\u029f\u02a0\7g\2\2\u02a0"+
-		"\u02a1\7d\2\2\u02a1\u02a2\7u\2\2\u02a2\u02a3\7k\2\2\u02a3\u02a4\7v\2\2"+
-		"\u02a4\u04f9\7g\2\2\u02a5\u02a6\7e\2\2\u02a6\u02a7\7q\2\2\u02a7\u02a8"+
-		"\7o\2\2\u02a8\u02a9\7r\2\2\u02a9\u02aa\7a\2\2\u02aa\u02ab\7e\2\2\u02ab"+
-		"\u02ac\7q\2\2\u02ac\u02ad\7w\2\2\u02ad\u02ae\7p\2\2\u02ae\u02af\7v\2\2"+
-		"\u02af\u02b0\7t\2\2\u02b0\u04f9\7{\2\2\u02b1\u02b2\7e\2\2\u02b2\u02b3"+
-		"\7q\2\2\u02b3\u02b4\7o\2\2\u02b4\u02b5\7r\2\2\u02b5\u02b6\7a\2\2\u02b6"+
-		"\u02b7\7t\2\2\u02b7\u02b8\7g\2\2\u02b8\u02b9\7i\2\2\u02b9\u02ba\7k\2\2"+
-		"\u02ba\u02bb\7q\2\2\u02bb\u04f9\7p\2\2\u02bc\u02bd\7e\2\2\u02bd\u02be"+
-		"\7q\2\2\u02be\u02bf\7o\2\2\u02bf\u02c0\7r\2\2\u02c0\u02c1\7a\2\2\u02c1"+
-		"\u02c2\7e\2\2\u02c2\u02c3\7k\2\2\u02c3\u02c4\7v\2\2\u02c4\u04f9\7{\2\2"+
-		"\u02c5\u02c6\7e\2\2\u02c6\u02c7\7q\2\2\u02c7\u02c8\7o\2\2\u02c8\u02c9"+
-		"\7r\2\2\u02c9\u02ca\7a\2\2\u02ca\u02cb\7c\2\2\u02cb\u02cc\7f\2\2\u02cc"+
-		"\u02cd\7f\2\2\u02cd\u04f9\7t\2\2\u02ce\u02cf\7e\2\2\u02cf\u02d0\7q\2\2"+
-		"\u02d0\u02d1\7o\2\2\u02d1\u02d2\7r\2\2\u02d2\u02d3\7a\2\2\u02d3\u02d4"+
-		"\7r\2\2\u02d4\u02d5\7q\2\2\u02d5\u02d6\7u\2\2\u02d6\u02d7\7v\2\2\u02d7"+
-		"\u02d8\7e\2\2\u02d8\u02d9\7q\2\2\u02d9\u02da\7f\2\2\u02da\u04f9\7g\2\2"+
-		"\u02db\u02dc\7v\2\2\u02dc\u02dd\7t\2\2\u02dd\u02de\7k\2\2\u02de\u04f9"+
-		"\7o\2\2\u02df\u02e0\7u\2\2\u02e0\u02e1\7v\2\2\u02e1\u02e2\7t\2\2\u02e2"+
-		"\u02e3\7k\2\2\u02e3\u04f9\7r\2\2\u02e4\u02e5\7w\2\2\u02e5\u02e6\7r\2\2"+
-		"\u02e6\u02e7\7r\2\2\u02e7\u02e8\7g\2\2\u02e8\u02e9\7t\2\2\u02e9\u02ea"+
-		"\7e\2\2\u02ea\u02eb\7c\2\2\u02eb\u02ec\7u\2\2\u02ec\u04f9\7g\2\2\u02ed"+
-		"\u02ee\7n\2\2\u02ee\u02ef\7q\2\2\u02ef\u02f0\7y\2\2\u02f0\u02f1\7g\2\2"+
-		"\u02f1\u02f2\7t\2\2\u02f2\u02f3\7e\2\2\u02f3\u02f4\7c\2\2\u02f4\u02f5"+
-		"\7u\2\2\u02f5\u04f9\7g\2\2\u02f6\u02f7\7k\2\2\u02f7\u02f8\7u\2\2\u02f8"+
-		"\u02f9\7a\2\2\u02f9\u02fa\7c\2\2\u02fa\u02fb\7n\2\2\u02fb\u02fc\7r\2\2"+
-		"\u02fc\u02fd\7j\2\2\u02fd\u04f9\7c\2\2\u02fe\u02ff\7k\2\2\u02ff\u0300"+
-		"\7u\2\2\u0300\u0301\7a\2\2\u0301\u0302\7c\2\2\u0302\u0303\7n\2\2\u0303"+
-		"\u0304\7r\2\2\u0304\u0305\7j\2\2\u0305\u0306\7c\2\2\u0306\u0307\7p\2\2"+
-		"\u0307\u0308\7w\2\2\u0308\u04f9\7o\2\2\u0309\u030a\7k\2\2\u030a\u030b"+
-		"\7u\2\2\u030b\u030c\7a\2\2\u030c\u030d\7y\2\2\u030d\u030e\7j\2\2\u030e"+
-		"\u030f\7k\2\2\u030f\u0310\7v\2\2\u0310\u0311\7g\2\2\u0311\u0312\7u\2\2"+
-		"\u0312\u0313\7r\2\2\u0313\u0314\7c\2\2\u0314\u0315\7e\2\2\u0315\u04f9"+
-		"\7g\2\2\u0316\u0317\7k\2\2\u0317\u0318\7u\2\2\u0318\u0319\7a\2\2\u0319"+
-		"\u031a\7p\2\2\u031a\u031b\7w\2\2\u031b\u04f9\7o\2\2\u031c\u031d\7k\2\2"+
-		"\u031d\u031e\7u\2\2\u031e\u031f\7a\2\2\u031f\u0320\7p\2\2\u0320\u0321"+
-		"\7w\2\2\u0321\u0322\7o\2\2\u0322\u0323\7u\2\2\u0323\u0324\7r\2\2\u0324"+
-		"\u0325\7c\2\2\u0325\u0326\7e\2\2\u0326\u04f9\7g\2\2\u0327\u0328\7k\2\2"+
-		"\u0328\u0329\7u\2\2\u0329\u032a\7a\2\2\u032a\u032b\7c\2\2\u032b\u032c"+
-		"\7n\2\2\u032c\u032d\7r\2\2\u032d\u032e\7j\2\2\u032e\u032f\7c\2\2\u032f"+
-		"\u0330\7u\2\2\u0330\u0331\7r\2\2\u0331\u0332\7c\2\2\u0332\u0333\7e\2\2"+
-		"\u0333\u04f9\7g\2\2\u0334\u0335\7k\2\2\u0335\u0336\7u\2\2\u0336\u0337"+
-		"\7a\2\2\u0337\u0338\7c\2\2\u0338\u0339\7n\2\2\u0339\u033a\7r\2\2\u033a"+
-		"\u033b\7j\2\2\u033b\u033c\7c\2\2\u033c\u033d\7p\2\2\u033d\u033e\7w\2\2"+
-		"\u033e\u033f\7o\2\2\u033f\u0340\7u\2\2\u0340\u0341\7r\2\2\u0341\u0342"+
-		"\7c\2\2\u0342\u0343\7e\2\2\u0343\u04f9\7g\2\2\u0344\u0345\7u\2\2\u0345"+
-		"\u0346\7r\2\2\u0346\u0347\7n\2\2\u0347\u0348\7k\2\2\u0348\u04f9\7v\2\2"+
-		"\u0349\u034a\7u\2\2\u034a\u034b\7r\2\2\u034b\u034c\7n\2\2\u034c\u034d"+
-		"\7k\2\2\u034d\u034e\7v\2\2\u034e\u034f\7a\2\2\u034f\u0350\7v\2\2\u0350"+
-		"\u0351\7t\2\2\u0351\u0352\7k\2\2\u0352\u04f9\7o\2\2\u0353\u0354\7u\2\2"+
-		"\u0354\u0355\7v\2\2\u0355\u0356\7c\2\2\u0356\u0357\7t\2\2\u0357\u0358"+
-		"\7v\2\2\u0358\u0359\7u\2\2\u0359\u035a\7a\2\2\u035a\u035b\7y\2\2\u035b"+
-		"\u035c\7k\2\2\u035c\u035d\7v\2\2\u035d\u04f9\7j\2\2\u035e\u035f\7g\2\2"+
-		"\u035f\u0360\7p\2\2\u0360\u0361\7f\2\2\u0361\u0362\7u\2\2\u0362\u0363"+
-		"\7a\2\2\u0363\u0364\7y\2\2\u0364\u0365\7k\2\2\u0365\u0366\7v\2\2\u0366"+
-		"\u04f9\7j\2\2\u0367\u0368\7k\2\2\u0368\u0369\7p\2\2\u0369\u036a\7f\2\2"+
-		"\u036a\u036b\7g\2\2\u036b\u036c\7z\2\2\u036c\u036d\7a\2\2\u036d\u036e"+
-		"\7q\2\2\u036e\u04f9\7h\2\2\u036f\u0370\7e\2\2\u0370\u0371\7q\2\2\u0371"+
-		"\u0372\7p\2\2\u0372\u0373\7v\2\2\u0373\u0374\7c\2\2\u0374\u0375\7k\2\2"+
-		"\u0375\u0376\7p\2\2\u0376\u04f9\7u\2\2\u0377\u0378\7u\2\2\u0378\u0379"+
-		"\7w\2\2\u0379\u037a\7d\2\2\u037a\u037b\7u\2\2\u037b\u037c\7v\2\2\u037c"+
-		"\u04f9\7t\2\2\u037d\u037e\7t\2\2\u037e\u037f\7g\2\2\u037f\u0380\7r\2\2"+
-		"\u0380\u0381\7n\2\2\u0381\u0382\7c\2\2\u0382\u0383\7e\2\2\u0383\u04f9"+
-		"\7g\2\2\u0384\u0385\7c\2\2\u0385\u0386\7d\2\2\u0386\u04f9\7u\2\2\u0387"+
-		"\u0388\7e\2\2\u0388\u0389\7g\2\2\u0389\u038a\7k\2\2\u038a\u04f9\7n\2\2"+
-		"\u038b\u038c\7h\2\2\u038c\u038d\7n\2\2\u038d\u038e\7q\2\2\u038e\u038f"+
-		"\7q\2\2\u038f\u04f9\7t\2\2\u0390\u0391\7t\2\2\u0391\u0392\7k\2\2\u0392"+
-		"\u0393\7p\2\2\u0393\u04f9\7v\2\2\u0394\u0395\7t\2\2\u0395\u0396\7q\2\2"+
-		"\u0396\u0397\7w\2\2\u0397\u0398\7p\2\2\u0398\u04f9\7f\2\2\u0399\u039a"+
-		"\7u\2\2\u039a\u039b\7k\2\2\u039b\u039c\7i\2\2\u039c\u039d\7p\2\2\u039d"+
-		"\u039e\7w\2\2\u039e\u04f9\7o\2\2\u039f\u03a0\7u\2\2\u03a0\u03a1\7s\2\2"+
-		"\u03a1\u03a2\7t\2\2\u03a2\u04f9\7v\2\2\u03a3\u03a4\7e\2\2\u03a4\u03a5"+
-		"\7d\2\2\u03a5\u03a6\7t\2\2\u03a6\u04f9\7v\2\2\u03a7\u03a8\7r\2\2\u03a8"+
-		"\u04f9\7k\2\2\u03a9\u03aa\7v\2\2\u03aa\u03ab\7q\2\2\u03ab\u03ac\7a\2\2"+
-		"\u03ac\u03ad\7f\2\2\u03ad\u03ae\7q\2\2\u03ae\u03af\7w\2\2\u03af\u03b0"+
-		"\7d\2\2\u03b0\u03b1\7n\2\2\u03b1\u04f9\7g\2\2\u03b2\u03b3\7v\2\2\u03b3"+
-		"\u03b4\7q\2\2\u03b4\u03b5\7a\2\2\u03b5\u03b6\7k\2\2\u03b6\u03b7\7p\2\2"+
-		"\u03b7\u04f9\7v\2\2\u03b8\u03b9\7g\2\2\u03b9\u03ba\7w\2\2\u03ba\u03bb"+
-		"\7n\2\2\u03bb\u03bc\7g\2\2\u03bc\u04f9\7t\2\2\u03bd\u03be\7c\2\2\u03be"+
-		"\u03bf\7e\2\2\u03bf\u03c0\7q\2\2\u03c0\u04f9\7u\2\2\u03c1\u03c2\7c\2\2"+
-		"\u03c2\u03c3\7u\2\2\u03c3\u03c4\7k\2\2\u03c4\u04f9\7p\2\2\u03c5\u03c6"+
-		"\7c\2\2\u03c6\u03c7\7v\2\2\u03c7\u03c8\7c\2\2\u03c8\u04f9\7p\2\2\u03c9"+
-		"\u03ca\7e\2\2\u03ca\u03cb\7q\2\2\u03cb\u04f9\7u\2\2\u03cc\u03cd\7u\2\2"+
-		"\u03cd\u03ce\7k\2\2\u03ce\u04f9\7p\2\2\u03cf\u03d0\7v\2\2\u03d0\u03d1"+
-		"\7c\2\2\u03d1\u04f9\7p\2\2\u03d2\u03d3\7e\2\2\u03d3\u03d4\7q\2\2\u03d4"+
-		"\u03d5\7u\2\2\u03d5\u04f9\7j\2\2\u03d6\u03d7\7u\2\2\u03d7\u03d8\7k\2\2"+
-		"\u03d8\u03d9\7p\2\2\u03d9\u04f9\7j\2\2\u03da\u03db\7v\2\2\u03db\u03dc"+
-		"\7c\2\2\u03dc\u03dd\7p\2\2\u03dd\u04f9\7j\2\2\u03de\u03df\7c\2\2\u03df"+
-		"\u03e0\7v\2\2\u03e0\u03e1\7c\2\2\u03e1\u03e2\7p\2\2\u03e2\u04f9\7\64\2"+
-		"\2\u03e3\u03e4\7f\2\2\u03e4\u03e5\7g\2\2\u03e5\u03e6\7i\2\2\u03e6\u03e7"+
-		"\7t\2\2\u03e7\u03e8\7g\2\2\u03e8\u03e9\7g\2\2\u03e9\u04f9\7u\2\2\u03ea"+
-		"\u03eb\7t\2\2\u03eb\u03ec\7c\2\2\u03ec\u03ed\7f\2\2\u03ed\u03ee\7k\2\2"+
-		"\u03ee\u03ef\7c\2\2\u03ef\u03f0\7p\2\2\u03f0\u04f9\7u\2\2\u03f1\u03f2"+
-		"\7g\2\2\u03f2\u03f3\7z\2\2\u03f3\u04f9\7r\2\2\u03f4\u03f5\7g\2\2\u03f5"+
-		"\u03f6\7z\2\2\u03f6\u03f7\7r\2\2\u03f7\u03f8\7o\2\2\u03f8\u04f9\7\63\2"+
-		"\2\u03f9\u03fa\7j\2\2\u03fa\u03fb\7{\2\2\u03fb\u03fc\7r\2\2\u03fc\u03fd"+
-		"\7q\2\2\u03fd\u04f9\7v\2\2\u03fe\u03ff\7n\2\2\u03ff\u0400\7q\2\2\u0400"+
-		"\u04f9\7i\2\2\u0401\u0402\7n\2\2\u0402\u0403\7q\2\2\u0403\u0404\7i\2\2"+
-		"\u0404\u0405\7\63\2\2\u0405\u04f9\7\62\2\2\u0406\u0407\7n\2\2\u0407\u0408"+
-		"\7q\2\2\u0408\u0409\7i\2\2\u0409\u040a\7\63\2\2\u040a\u04f9\7r\2\2\u040b"+
-		"\u040c\7r\2\2\u040c\u040d\7q\2\2\u040d\u04f9\7y\2\2\u040e\u040f\7t\2\2"+
-		"\u040f\u0410\7c\2\2\u0410\u0411\7p\2\2\u0411\u04f9\7f\2\2\u0412\u0413"+
-		"\7u\2\2\u0413\u0414\7s\2\2\u0414\u0415\7w\2\2\u0415\u0416\7c\2\2\u0416"+
-		"\u0417\7t\2\2\u0417\u04f9\7g\2\2\u0418\u0419\7n\2\2\u0419\u041a\7k\2\2"+
-		"\u041a\u041b\7u\2\2\u041b\u04f9\7v\2\2\u041c\u041d\7i\2\2\u041d\u041e"+
-		"\7g\2\2\u041e\u04f9\7v\2\2\u041f\u0420\7j\2\2\u0420\u0421\7c\2\2\u0421"+
-		"\u04f9\7u\2\2\u0422\u0423\7j\2\2\u0423\u0424\7c\2\2\u0424\u0425\7u\2\2"+
-		"\u0425\u0426\7a\2\2\u0426\u0427\7c\2\2\u0427\u0428\7p\2\2\u0428\u04f9"+
-		"\7{\2\2\u0429\u042a\7j\2\2\u042a\u042b\7c\2\2\u042b\u042c\7u\2\2\u042c"+
-		"\u042d\7a\2\2\u042d\u042e\7c\2\2\u042e\u042f\7n\2\2\u042f\u04f9\7n\2\2"+
-		"\u0430\u0431\7h\2\2\u0431\u0432\7k\2\2\u0432\u0433\7t\2\2\u0433\u0434"+
-		"\7u\2\2\u0434\u04f9\7v\2\2\u0435\u0436\7n\2\2\u0436\u0437\7c\2\2\u0437"+
-		"\u0438\7u\2\2\u0438\u04f9\7v\2\2\u0439\u043a\7m\2\2\u043a\u043b\7g\2\2"+
-		"\u043b\u043c\7{\2\2\u043c\u04f9\7u\2\2\u043d\u043e\7x\2\2\u043e\u043f"+
-		"\7c\2\2\u043f\u0440\7n\2\2\u0440\u0441\7w\2\2\u0441\u0442\7g\2\2\u0442"+
-		"\u04f9\7u\2\2\u0443\u0444\7n\2\2\u0444\u0445\7g\2\2\u0445\u0446\7p\2\2"+
-		"\u0446\u0447\7i\2\2\u0447\u0448\7v\2\2\u0448\u04f9\7j\2\2\u0449\u044a"+
-		"\7e\2\2\u044a\u044b\7q\2\2\u044b\u044c\7w\2\2\u044c\u044d\7p\2\2\u044d"+
-		"\u04f9\7v\2\2\u044e\u044f\7u\2\2\u044f\u0450\7k\2\2\u0450\u0451\7|\2\2"+
-		"\u0451\u04f9\7g\2\2\u0452\u0453\7u\2\2\u0453\u0454\7q\2\2\u0454\u0455"+
-		"\7t\2\2\u0455\u04f9\7v\2\2\u0456\u0457\7t\2\2\u0457\u0458\7g\2\2\u0458"+
-		"\u0459\7x\2\2\u0459\u045a\7g\2\2\u045a\u045b\7t\2\2\u045b\u045c\7u\2\2"+
-		"\u045c\u04f9\7g\2\2\u045d\u045e\7k\2\2\u045e\u045f\7u\2\2\u045f\u0460"+
-		"\7a\2\2\u0460\u0461\7g\2\2\u0461\u0462\7o\2\2\u0462\u0463\7r\2\2\u0463"+
-		"\u0464\7v\2\2\u0464\u04f9\7{\2\2\u0465\u0466\7p\2\2\u0466\u0467\7q\2\2"+
-		"\u0467\u0468\7p\2\2\u0468\u0469\7a\2\2\u0469\u046a\7g\2\2\u046a\u046b"+
-		"\7o\2\2\u046b\u046c\7r\2\2\u046c\u046d\7v\2\2\u046d\u04f9\7{\2\2\u046e"+
-		"\u046f\7f\2\2\u046f\u0470\7k\2\2\u0470\u0471\7u\2\2\u0471\u0472\7v\2\2"+
-		"\u0472\u0473\7k\2\2\u0473\u0474\7p\2\2\u0474\u0475\7e\2\2\u0475\u04f9"+
-		"\7v\2\2\u0476\u0477\7e\2\2\u0477\u0478\7q\2\2\u0478\u0479\7p\2\2\u0479"+
-		"\u047a\7e\2\2\u047a\u047b\7c\2\2\u047b\u04f9\7v\2\2\u047c\u047d\7v\2\2"+
-		"\u047d\u047e\7q\2\2\u047e\u047f\7a\2\2\u047f\u0480\7u\2\2\u0480\u0481"+
-		"\7v\2\2\u0481\u0482\7t\2\2\u0482\u0483\7k\2\2\u0483\u0484\7p\2\2\u0484"+
-		"\u04f9\7i\2\2\u0485\u0486\7o\2\2\u0486\u0487\7c\2\2\u0487\u04f9\7z\2\2"+
-		"\u0488\u0489\7o\2\2\u0489\u048a\7k\2\2\u048a\u04f9\7p\2\2\u048b\u048c"+
-		"\7c\2\2\u048c\u048d\7x\2\2\u048d\u04f9\7i\2\2\u048e\u048f\7u\2\2\u048f"+
-		"\u0490\7v\2\2\u0490\u0491\7f\2\2\u0491\u0492\7g\2\2\u0492\u04f9\7x\2\2"+
-		"\u0493\u0494\7{\2\2\u0494\u0495\7g\2\2\u0495\u0496\7c\2\2\u0496\u04f9"+
-		"\7t\2\2\u0497\u0498\7o\2\2\u0498\u0499\7q\2\2\u0499\u049a\7p\2\2\u049a"+
-		"\u049b\7v\2\2\u049b\u04f9\7j\2\2\u049c\u049d\7f\2\2\u049d\u049e\7c\2\2"+
-		"\u049e\u049f\7{\2\2\u049f\u04a0\7a\2\2\u04a0\u04a1\7q\2\2\u04a1\u04a2"+
-		"\7h\2\2\u04a2\u04a3\7a\2\2\u04a3\u04a4\7o\2\2\u04a4\u04a5\7q\2\2\u04a5"+
-		"\u04a6\7p\2\2\u04a6\u04a7\7v\2\2\u04a7\u04f9\7j\2\2\u04a8\u04a9\7f\2\2"+
-		"\u04a9\u04aa\7c\2\2\u04aa\u04ab\7{\2\2\u04ab\u04ac\7a\2\2\u04ac\u04ad"+
-		"\7q\2\2\u04ad\u04ae\7h\2\2\u04ae\u04af\7a\2\2\u04af\u04b0\7y\2\2\u04b0"+
-		"\u04b1\7g\2\2\u04b1\u04b2\7g\2\2\u04b2\u04f9\7m\2\2\u04b3\u04b4\7f\2\2"+
-		"\u04b4\u04b5\7c\2\2\u04b5\u04b6\7{\2\2\u04b6\u04b7\7a\2\2\u04b7\u04b8"+
-		"\7q\2\2\u04b8\u04b9\7h\2\2\u04b9\u04ba\7a\2\2\u04ba\u04bb\7{\2\2\u04bb"+
-		"\u04bc\7g\2\2\u04bc\u04bd\7c\2\2\u04bd\u04f9\7t\2\2\u04be\u04bf\7j\2\2"+
-		"\u04bf\u04c0\7q\2\2\u04c0\u04c1\7w\2\2\u04c1\u04f9\7t\2\2\u04c2\u04c3"+
-		"\7o\2\2\u04c3\u04c4\7k\2\2\u04c4\u04c5\7p\2\2\u04c5\u04c6\7w\2\2\u04c6"+
-		"\u04c7\7v\2\2\u04c7\u04f9\7g\2\2\u04c8\u04c9\7u\2\2\u04c9\u04ca\7g\2\2"+
-		"\u04ca\u04cb\7e\2\2\u04cb\u04cc\7q\2\2\u04cc\u04cd\7p\2\2\u04cd\u04f9"+
-		"\7f\2\2\u04ce\u04cf\7y\2\2\u04cf\u04d0\7g\2\2\u04d0\u04d1\7g\2\2\u04d1"+
-		"\u04d2\7m\2\2\u04d2\u04d3\7a\2\2\u04d3\u04d4\7q\2\2\u04d4\u04d5\7h\2\2"+
-		"\u04d5\u04d6\7a\2\2\u04d6\u04d7\7o\2\2\u04d7\u04d8\7q\2\2\u04d8\u04d9"+
-		"\7p\2\2\u04d9\u04da\7v\2\2\u04da\u04f9\7j\2\2\u04db\u04dc\7y\2\2\u04dc"+
-		"\u04dd\7g\2\2\u04dd\u04de\7g\2\2\u04de\u04df\7m\2\2\u04df\u04e0\7a\2\2"+
-		"\u04e0\u04e1\7q\2\2\u04e1\u04e2\7h\2\2\u04e2\u04e3\7a\2\2\u04e3\u04e4"+
-		"\7{\2\2\u04e4\u04e5\7g\2\2\u04e5\u04e6\7c\2\2\u04e6\u04f9\7t\2\2\u04e7"+
-		"\u04e8\7s\2\2\u04e8\u04e9\7w\2\2\u04e9\u04ea\7c\2\2\u04ea\u04eb\7t\2\2"+
-		"\u04eb\u04ec\7v\2\2\u04ec\u04ed\7g\2\2\u04ed\u04f9\7t\2\2\u04ee\u04ef"+
-		"\7p\2\2\u04ef\u04f0\7q\2\2\u04f0\u04f9\7y\2\2\u04f1\u04f2\7q\2\2\u04f2"+
-		"\u04f3\7t\2\2\u04f3\u04f4\7a\2\2\u04f4\u04f5\7g\2\2\u04f5\u04f6\7n\2\2"+
-		"\u04f6\u04f7\7u\2\2\u04f7\u04f9\7g\2\2\u04f8o\3\2\2\2\u04f8w\3\2\2\2\u04f8"+
-		"\u0080\3\2\2\2\u04f8\u008a\3\2\2\2\u04f8\u0095\3\2\2\2\u04f8\u009d\3\2"+
-		"\2\2\u04f8\u00a6\3\2\2\2\u04f8\u00b2\3\2\2\2\u04f8\u00ba\3\2\2\2\u04f8"+
-		"\u00c3\3\2\2\2\u04f8\u00cc\3\2\2\2\u04f8\u00d0\3\2\2\2\u04f8\u00d2\3\2"+
-		"\2\2\u04f8\u00d8\3\2\2\2\u04f8\u00e1\3\2\2\2\u04f8\u00e9\3\2\2\2\u04f8"+
-		"\u00f0\3\2\2\2\u04f8\u00fc\3\2\2\2\u04f8\u0104\3\2\2\2\u04f8\u0113\3\2"+
-		"\2\2\u04f8\u0123\3\2\2\2\u04f8\u0130\3\2\2\2\u04f8\u0141\3\2\2\2\u04f8"+
-		"\u014f\3\2\2\2\u04f8\u015e\3\2\2\2\u04f8\u016b\3\2\2\2\u04f8\u017a\3\2"+
-		"\2\2\u04f8\u0186\3\2\2\2\u04f8\u0191\3\2\2\2\u04f8\u019f\3\2\2\2\u04f8"+
-		"\u01ac\3\2\2\2\u04f8\u01b6\3\2\2\2\u04f8\u01c0\3\2\2\2\u04f8\u01c9\3\2"+
-		"\2\2\u04f8\u01d4\3\2\2\2\u04f8\u01e1\3\2\2\2\u04f8\u01ec\3\2\2\2\u04f8"+
-		"\u01f4\3\2\2\2\u04f8\u0201\3\2\2\2\u04f8\u020d\3\2\2\2\u04f8\u021b\3\2"+
-		"\2\2\u04f8\u0221\3\2\2\2\u04f8\u022d\3\2\2\2\u04f8\u0237\3\2\2\2\u04f8"+
-		"\u023f\3\2\2\2\u04f8\u0248\3\2\2\2\u04f8\u024f\3\2\2\2\u04f8\u0259\3\2"+
-		"\2\2\u04f8\u0263\3\2\2\2\u04f8\u026d\3\2\2\2\u04f8\u0277\3\2\2\2\u04f8"+
-		"\u0289\3\2\2\2\u04f8\u0290\3\2\2\2\u04f8\u0299\3\2\2\2\u04f8\u02a5\3\2"+
-		"\2\2\u04f8\u02b1\3\2\2\2\u04f8\u02bc\3\2\2\2\u04f8\u02c5\3\2\2\2\u04f8"+
-		"\u02ce\3\2\2\2\u04f8\u02db\3\2\2\2\u04f8\u02df\3\2\2\2\u04f8\u02e4\3\2"+
-		"\2\2\u04f8\u02ed\3\2\2\2\u04f8\u02f6\3\2\2\2\u04f8\u02fe\3\2\2\2\u04f8"+
-		"\u0309\3\2\2\2\u04f8\u0316\3\2\2\2\u04f8\u031c\3\2\2\2\u04f8\u0327\3\2"+
-		"\2\2\u04f8\u0334\3\2\2\2\u04f8\u0344\3\2\2\2\u04f8\u0349\3\2\2\2\u04f8"+
-		"\u0353\3\2\2\2\u04f8\u035e\3\2\2\2\u04f8\u0367\3\2\2\2\u04f8\u036f\3\2"+
-		"\2\2\u04f8\u0377\3\2\2\2\u04f8\u037d\3\2\2\2\u04f8\u0384\3\2\2\2\u04f8"+
-		"\u0387\3\2\2\2\u04f8\u038b\3\2\2\2\u04f8\u0390\3\2\2\2\u04f8\u0394\3\2"+
-		"\2\2\u04f8\u0399\3\2\2\2\u04f8\u039f\3\2\2\2\u04f8\u03a3\3\2\2\2\u04f8"+
-		"\u03a7\3\2\2\2\u04f8\u03a9\3\2\2\2\u04f8\u03b2\3\2\2\2\u04f8\u03b8\3\2"+
-		"\2\2\u04f8\u03bd\3\2\2\2\u04f8\u03c1\3\2\2\2\u04f8\u03c5\3\2\2\2\u04f8"+
-		"\u03c9\3\2\2\2\u04f8\u03cc\3\2\2\2\u04f8\u03cf\3\2\2\2\u04f8\u03d2\3\2"+
-		"\2\2\u04f8\u03d6\3\2\2\2\u04f8\u03da\3\2\2\2\u04f8\u03de\3\2\2\2\u04f8"+
-		"\u03e3\3\2\2\2\u04f8\u03ea\3\2\2\2\u04f8\u03f1\3\2\2\2\u04f8\u03f4\3\2"+
-		"\2\2\u04f8\u03f9\3\2\2\2\u04f8\u03fe\3\2\2\2\u04f8\u0401\3\2\2\2\u04f8"+
-		"\u0406\3\2\2\2\u04f8\u040b\3\2\2\2\u04f8\u040e\3\2\2\2\u04f8\u0412\3\2"+
-		"\2\2\u04f8\u0418\3\2\2\2\u04f8\u041c\3\2\2\2\u04f8\u041f\3\2\2\2\u04f8"+
-		"\u0422\3\2\2\2\u04f8\u0429\3\2\2\2\u04f8\u0430\3\2\2\2\u04f8\u0435\3\2"+
-		"\2\2\u04f8\u0439\3\2\2\2\u04f8\u043d\3\2\2\2\u04f8\u0443\3\2\2\2\u04f8"+
-		"\u0449\3\2\2\2\u04f8\u044e\3\2\2\2\u04f8\u0452\3\2\2\2\u04f8\u0456\3\2"+
-		"\2\2\u04f8\u045d\3\2\2\2\u04f8\u0465\3\2\2\2\u04f8\u046e\3\2\2\2\u04f8"+
-		"\u0476\3\2\2\2\u04f8\u047c\3\2\2\2\u04f8\u0485\3\2\2\2\u04f8\u0488\3\2"+
-		"\2\2\u04f8\u048b\3\2\2\2\u04f8\u048e\3\2\2\2\u04f8\u0493\3\2\2\2\u04f8"+
-		"\u0497\3\2\2\2\u04f8\u049c\3\2\2\2\u04f8\u04a8\3\2\2\2\u04f8\u04b3\3\2"+
-		"\2\2\u04f8\u04be\3\2\2\2\u04f8\u04c2\3\2\2\2\u04f8\u04c8\3\2\2\2\u04f8"+
-		"\u04ce\3\2\2\2\u04f8\u04db\3\2\2\2\u04f8\u04e7\3\2\2\2\u04f8\u04ee\3\2"+
-		"\2\2\u04f8\u04f1\3\2\2\2\u04f9\4\3\2\2\2\u04fa\u04fb\7k\2\2\u04fb\u04fc"+
-		"\7o\2\2\u04fc\u04fd\7r\2\2\u04fd\u04fe\7q\2\2\u04fe\u04ff\7t\2\2\u04ff"+
-		"\u0500\7v\2\2\u0500\6\3\2\2\2\u0501\u0502\7k\2\2\u0502\u0503\7p\2\2\u0503"+
-		"\u0504\7v\2\2\u0504\u0505\7g\2\2\u0505\u0506\7p\2\2\u0506\u0507\7v\2\2"+
-		"\u0507\b\3\2\2\2\u0508\u0509\7q\2\2\u0509\u050a\7t\2\2\u050a\u050b\7f"+
-		"\2\2\u050b\u050c\7g\2\2\u050c\u050d\7t\2\2\u050d\u050e\7g\2\2\u050e\u050f"+
-		"\7f\2\2\u050f\n\3\2\2\2\u0510\u0511\7h\2\2\u0511\u0512\7n\2\2\u0512\u0513"+
-		"\7q\2\2\u0513\u0514\7y\2\2\u0514\f\3\2\2\2\u0515\u0516\7o\2\2\u0516\u0517"+
-		"\7g\2\2\u0517\u0518\7v\2\2\u0518\u0519\7c\2\2\u0519\16\3\2\2\2\u051a\u051b"+
-		"\7v\2\2\u051b\u051c\7g\2\2\u051c\u051d\7t\2\2\u051d\u051e\7o\2\2\u051e"+
-		"\20\3\2\2\2\u051f\u0520\7h\2\2\u0520\u0521\7t\2\2\u0521\u0522\7c\2\2\u0522"+
-		"\u0523\7i\2\2\u0523\u0524\7o\2\2\u0524\u0525\7g\2\2\u0525\u0526\7p\2\2"+
-		"\u0526\u0527\7v\2\2\u0527\22\3\2\2\2\u0528\u052e\5\67\34\2\u0529\u052d"+
-		"\n\2\2\2\u052a\u052b\7^\2\2\u052b\u052d\7)\2\2\u052c\u0529\3\2\2\2\u052c"+
-		"\u052a\3\2\2\2\u052d\u0530\3\2\2\2\u052e\u052c\3\2\2\2\u052e\u052f\3\2"+
-		"\2\2\u052f\u0531\3\2\2\2\u0530\u052e\3\2\2\2\u0531\u0532\5\67\34\2\u0532"+
-		"\24\3\2\2\2\u0533\u0539\59\35\2\u0534\u0538\n\3\2\2\u0535\u0536\7^\2\2"+
-		"\u0536\u0538\7$\2\2\u0537\u0534\3\2\2\2\u0537\u0535\3\2\2\2\u0538\u053b"+
-		"\3\2\2\2\u0539\u0537\3\2\2\2\u0539\u053a\3\2\2\2\u053a\u053c\3\2\2\2\u053b"+
-		"\u0539\3\2\2\2\u053c\u053d\59\35\2\u053d\26\3\2\2\2\u053e\u053f\7v\2\2"+
-		"\u053f\u0540\7t\2\2\u0540\u0541\7w\2\2\u0541\u0548\7g\2\2\u0542\u0543"+
-		"\7h\2\2\u0543\u0544\7c\2\2\u0544\u0545\7n\2\2\u0545\u0546\7u\2\2\u0546"+
-		"\u0548\7g\2\2\u0547\u053e\3\2\2\2\u0547\u0542\3\2\2\2\u0548\30\3\2\2\2"+
-		"\u0549\u054a\7p\2\2\u054a\u054b\7w\2\2\u054b\u054c\7n\2\2\u054c\u054d"+
-		"\7n\2\2\u054d\32\3\2\2\2\u054e\u054f\7?\2\2\u054f\u0550\7?\2\2\u0550\34"+
-		"\3\2\2\2\u0551\u0552\7#\2\2\u0552\u0553\7?\2\2\u0553\36\3\2\2\2\u0554"+
-		"\u0555\7@\2\2\u0555\u0556\7?\2\2\u0556 \3\2\2\2\u0557\u0558\7>\2\2\u0558"+
-		"\u0559\7?\2\2\u0559\"\3\2\2\2\u055a\u055b\7@\2\2\u055b$\3\2\2\2\u055c"+
-		"\u055d\7>\2\2\u055d&\3\2\2\2\u055e\u055f\7(\2\2\u055f\u0560\7(\2\2\u0560"+
-		"(\3\2\2\2\u0561\u0562\7~\2\2\u0562\u0563\7~\2\2\u0563*\3\2\2\2\u0564\u0565"+
-		"\7~\2\2\u0565,\3\2\2\2\u0566\u0567\7#\2\2\u0567.\3\2\2\2\u0568\u0569\7"+
-		"*\2\2\u0569\60\3\2\2\2\u056a\u056b\7+\2\2\u056b\62\3\2\2\2\u056c\u056d"+
-		"\7}\2\2\u056d\64\3\2\2\2\u056e\u056f\7\177\2\2\u056f\66\3\2\2\2\u0570"+
-		"\u0571\7)\2\2\u05718\3\2\2\2\u0572\u0573\7$\2\2\u0573:\3\2\2\2\u0574\u0575"+
-		"\7\u0080\2\2\u0575<\3\2\2\2\u0576\u0577\7]\2\2\u0577>\3\2\2\2\u0578\u0579"+
-		"\7_\2\2\u0579@\3\2\2\2\u057a\u057b\7%\2\2\u057bB\3\2\2\2\u057c\u057d\7"+
-		".\2\2\u057dD\3\2\2\2\u057e\u057f\7<\2\2\u057fF\3\2\2\2\u0580\u0581\7/"+
-		"\2\2\u0581H\3\2\2\2\u0582\u0583\7\60\2\2\u0583J\3\2\2\2\u0584\u0585\7"+
-		"a\2\2\u0585L\3\2\2\2\u0586\u0587\7?\2\2\u0587N\3\2\2\2\u0588\u0589\7-"+
-		"\2\2\u0589P\3\2\2\2\u058a\u058b\7A\2\2\u058bR\3\2\2\2\u058c\u058d\7,\2"+
-		"\2\u058dT\3\2\2\2\u058e\u058f\7\61\2\2\u058fV\3\2\2\2\u0590\u0591\7\'"+
-		"\2\2\u0591X\3\2\2\2\u0592\u0593\7B\2\2\u0593Z\3\2\2\2\u0594\u0595\7&\2"+
-		"\2\u0595\\\3\2\2\2\u0596\u059f\7\62\2\2\u0597\u059b\t\4\2\2\u0598\u059a"+
-		"\t\5\2\2\u0599\u0598\3\2\2\2\u059a\u059d\3\2\2\2\u059b\u0599\3\2\2\2\u059b"+
-		"\u059c\3\2\2\2\u059c\u059f\3\2\2\2\u059d\u059b\3\2\2\2\u059e\u0596\3\2"+
-		"\2\2\u059e\u0597\3\2\2\2\u059f^\3\2\2\2\u05a0\u05a2\5I%\2\u05a1\u05a3"+
-		"\t\6\2\2\u05a2\u05a1\3\2\2\2\u05a3\u05a4\3\2\2\2\u05a4\u05a2\3\2\2\2\u05a4"+
-		"\u05a5\3\2\2\2\u05a5`\3\2\2\2\u05a6\u05a8\t\7\2\2\u05a7\u05a9\t\b\2\2"+
-		"\u05a8\u05a7\3\2\2\2\u05a8\u05a9\3\2\2\2\u05a9\u05aa\3\2\2\2\u05aa\u05ab"+
-		"\5]/\2\u05abb\3\2\2\2\u05ac\u05b0\n\t\2\2\u05ad\u05ae\t\n\2\2\u05ae\u05b0"+
-		"\t\13\2\2\u05af\u05ac\3\2\2\2\u05af\u05ad\3\2\2\2\u05b0d\3\2\2\2\u05b1"+
-		"\u05b2\t\f\2\2\u05b2f\3\2\2\2\u05b3\u05b8\5c\62\2\u05b4\u05b8\5K&\2\u05b5"+
-		"\u05b8\5e\63\2\u05b6\u05b8\5[.\2\u05b7\u05b3\3\2\2\2\u05b7\u05b4\3\2\2"+
-		"\2\u05b7\u05b5\3\2\2\2\u05b7\u05b6\3\2\2\2\u05b8\u05b9\3\2\2\2\u05b9\u05b7"+
-		"\3\2\2\2\u05b9\u05ba\3\2\2\2\u05ba\u05c4\3\2\2\2\u05bb\u05c3\5c\62\2\u05bc"+
-		"\u05c3\5[.\2\u05bd\u05c3\5e\63\2\u05be\u05c3\t\6\2\2\u05bf\u05c3\5E#\2"+
-		"\u05c0\u05c3\5G$\2\u05c1\u05c3\5K&\2\u05c2\u05bb\3\2\2\2\u05c2\u05bc\3"+
-		"\2\2\2\u05c2\u05bd\3\2\2\2\u05c2\u05be\3\2\2\2\u05c2\u05bf\3\2\2\2\u05c2"+
-		"\u05c0\3\2\2\2\u05c2\u05c1\3\2\2\2\u05c3\u05c6\3\2\2\2\u05c4\u05c2\3\2"+
-		"\2\2\u05c4\u05c5\3\2\2\2\u05c5h\3\2\2\2\u05c6\u05c4\3\2\2\2\u05c7\u05c8"+
-		"\7\61\2\2\u05c8\u05c9\7\61\2\2\u05c9\u05cd\3\2\2\2\u05ca\u05cc\n\r\2\2"+
-		"\u05cb\u05ca\3\2\2\2\u05cc\u05cf\3\2\2\2\u05cd\u05cb\3\2\2\2\u05cd\u05ce"+
-		"\3\2\2\2\u05ce\u05d1\3\2\2\2\u05cf\u05cd\3\2\2\2\u05d0\u05d2\7\17\2\2"+
-		"\u05d1\u05d0\3\2\2\2\u05d1\u05d2\3\2\2\2\u05d2\u05d4\3\2\2\2\u05d3\u05d5"+
-		"\t\16\2\2\u05d4\u05d3\3\2\2\2\u05d5\u05e2\3\2\2\2\u05d6\u05d7\7\61\2\2"+
-		"\u05d7\u05d8\7,\2\2\u05d8\u05dc\3\2\2\2\u05d9\u05db\13\2\2\2\u05da\u05d9"+
-		"\3\2\2\2\u05db\u05de\3\2\2\2\u05dc\u05dd\3\2\2\2\u05dc\u05da\3\2\2\2\u05dd"+
-		"\u05df\3\2\2\2\u05de\u05dc\3\2\2\2\u05df\u05e0\7,\2\2\u05e0\u05e2\7\61"+
-		"\2\2\u05e1\u05c7\3\2\2\2\u05e1\u05d6\3\2\2\2\u05e2\u05e3\3\2\2\2\u05e3"+
-		"\u05e4\b\65\2\2\u05e4j\3\2\2\2\u05e5\u05e7\t\17\2\2\u05e6\u05e5\3\2\2"+
-		"\2\u05e7\u05e8\3\2\2\2\u05e8\u05e6\3\2\2\2\u05e8\u05e9\3\2\2\2\u05e9\u05ea"+
-		"\3\2\2\2\u05ea\u05eb\b\66\2\2\u05ebl\3\2\2\2\u05ec\u05ed\13\2\2\2\u05ed"+
-		"n\3\2\2\2\30\2\u04f8\u052c\u052e\u0537\u0539\u0547\u059b\u059e\u05a4\u05a8"+
-		"\u05af\u05b7\u05b9\u05c2\u05c4\u05cd\u05d1\u05d4\u05dc\u05e1\u05e8\3\b"+
-		"\2\2";
+		"\t\64\4\65\t\65\4\66\t\66\4\67\t\67\48\t8\3\2\3\2\3\2\3\2\3\2\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\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3"+
+		"\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\3\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\3\u0503\n\3\3\4\3\4\3\4\3\4\3\4\3\4\3\4"+
+		"\3\5\3\5\3\5\3\5\3\5\3\5\3\5\3\6\3\6\3\6\3\6\3\6\3\6\3\6\3\6\3\7\3\7\3"+
+		"\7\3\7\3\7\3\b\3\b\3\b\3\b\3\b\3\t\3\t\3\t\3\t\3\t\3\n\3\n\3\n\3\n\3\n"+
+		"\3\n\3\n\3\n\3\n\3\13\3\13\3\13\3\13\7\13\u0537\n\13\f\13\16\13\u053a"+
+		"\13\13\3\13\3\13\3\f\3\f\3\f\3\f\7\f\u0542\n\f\f\f\16\f\u0545\13\f\3\f"+
+		"\3\f\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3\r\5\r\u0552\n\r\3\16\3\16\3\16"+
+		"\3\16\3\16\3\17\3\17\3\17\3\20\3\20\3\20\3\21\3\21\3\21\3\22\3\22\3\22"+
+		"\3\23\3\23\3\24\3\24\3\25\3\25\3\25\3\26\3\26\3\26\3\27\3\27\3\30\3\30"+
+		"\3\31\3\31\3\32\3\32\3\33\3\33\3\34\3\34\3\35\3\35\3\36\3\36\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\60\3\60\3\60\7\60\u05a4\n\60\f\60\16"+
+		"\60\u05a7\13\60\5\60\u05a9\n\60\3\61\3\61\6\61\u05ad\n\61\r\61\16\61\u05ae"+
+		"\3\62\3\62\5\62\u05b3\n\62\3\62\3\62\3\63\3\63\3\63\5\63\u05ba\n\63\3"+
+		"\64\3\64\3\65\3\65\3\65\3\65\6\65\u05c2\n\65\r\65\16\65\u05c3\3\65\3\65"+
+		"\3\65\3\65\3\65\3\65\3\65\7\65\u05cd\n\65\f\65\16\65\u05d0\13\65\3\66"+
+		"\3\66\3\66\3\66\7\66\u05d6\n\66\f\66\16\66\u05d9\13\66\3\66\5\66\u05dc"+
+		"\n\66\3\66\5\66\u05df\n\66\3\66\3\66\3\66\3\66\7\66\u05e5\n\66\f\66\16"+
+		"\66\u05e8\13\66\3\66\3\66\5\66\u05ec\n\66\3\66\3\66\3\67\6\67\u05f1\n"+
+		"\67\r\67\16\67\u05f2\3\67\3\67\38\38\3\u05e6\29\3\3\5\4\7\5\t\6\13\7\r"+
+		"\b\17\t\21\n\23\13\25\f\27\r\31\16\33\17\35\20\37\21!\22#\23%\24\'\25"+
+		")\26+\27-\30/\31\61\32\63\33\65\34\67\359\36;\37= ?!A\"C#E$G%I&K\'M(O"+
+		")Q*S+U,W-Y.[/]\60_\61a\62c\63e\2g\2i\64k\65m\66o\67\3\2\20\3\2))\3\2$"+
+		"$\3\2\63;\4\2\62;aa\3\2\62;\4\2GGgg\4\2--//\4\2\2\u0081\ud802\udc01\3"+
+		"\2\ud802\udc01\3\2\udc02\ue001\4\2C\\c|\4\2\f\f\17\17\3\3\f\f\5\2\13\f"+
+		"\16\17\"\"\2\u06a1\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\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\5\u0502\3\2\2\2\7\u0504\3\2\2\2\t\u050b\3\2\2\2\13"+
+		"\u0512\3\2\2\2\r\u051a\3\2\2\2\17\u051f\3\2\2\2\21\u0524\3\2\2\2\23\u0529"+
+		"\3\2\2\2\25\u0532\3\2\2\2\27\u053d\3\2\2\2\31\u0551\3\2\2\2\33\u0553\3"+
+		"\2\2\2\35\u0558\3\2\2\2\37\u055b\3\2\2\2!\u055e\3\2\2\2#\u0561\3\2\2\2"+
+		"%\u0564\3\2\2\2\'\u0566\3\2\2\2)\u0568\3\2\2\2+\u056b\3\2\2\2-\u056e\3"+
+		"\2\2\2/\u0570\3\2\2\2\61\u0572\3\2\2\2\63\u0574\3\2\2\2\65\u0576\3\2\2"+
+		"\2\67\u0578\3\2\2\29\u057a\3\2\2\2;\u057c\3\2\2\2=\u057e\3\2\2\2?\u0580"+
+		"\3\2\2\2A\u0582\3\2\2\2C\u0584\3\2\2\2E\u0586\3\2\2\2G\u0588\3\2\2\2I"+
+		"\u058a\3\2\2\2K\u058c\3\2\2\2M\u058e\3\2\2\2O\u0590\3\2\2\2Q\u0592\3\2"+
+		"\2\2S\u0594\3\2\2\2U\u0596\3\2\2\2W\u0598\3\2\2\2Y\u059a\3\2\2\2[\u059c"+
+		"\3\2\2\2]\u059e\3\2\2\2_\u05a8\3\2\2\2a\u05aa\3\2\2\2c\u05b0\3\2\2\2e"+
+		"\u05b9\3\2\2\2g\u05bb\3\2\2\2i\u05c1\3\2\2\2k\u05eb\3\2\2\2m\u05f0\3\2"+
+		"\2\2o\u05f6\3\2\2\2qr\7q\2\2rs\7r\2\2st\7v\2\2tu\7k\2\2uv\7q\2\2vw\7p"+
+		"\2\2wx\7u\2\2x\4\3\2\2\2yz\7o\2\2z{\7g\2\2{|\7v\2\2|}\7c\2\2}~\7a\2\2"+
+		"~\177\7v\2\2\177\u0080\7q\2\2\u0080\u0503\7m\2\2\u0081\u0082\7o\2\2\u0082"+
+		"\u0083\7g\2\2\u0083\u0084\7v\2\2\u0084\u0085\7c\2\2\u0085\u0086\7a\2\2"+
+		"\u0086\u0087\7r\2\2\u0087\u0088\7c\2\2\u0088\u0089\7t\2\2\u0089\u0503"+
+		"\7v\2\2\u008a\u008b\7o\2\2\u008b\u008c\7g\2\2\u008c\u008d\7v\2\2\u008d"+
+		"\u008e\7c\2\2\u008e\u008f\7a\2\2\u008f\u0090\7o\2\2\u0090\u0091\7q\2\2"+
+		"\u0091\u0092\7f\2\2\u0092\u0093\7g\2\2\u0093\u0503\7n\2\2\u0094\u0095"+
+		"\7o\2\2\u0095\u0096\7g\2\2\u0096\u0097\7v\2\2\u0097\u0098\7c\2\2\u0098"+
+		"\u0099\7a\2\2\u0099\u009a\7k\2\2\u009a\u009b\7p\2\2\u009b\u009c\7v\2\2"+
+		"\u009c\u009d\7g\2\2\u009d\u009e\7p\2\2\u009e\u0503\7v\2\2\u009f\u00a0"+
+		"\7o\2\2\u00a0\u00a1\7g\2\2\u00a1\u00a2\7v\2\2\u00a2\u00a3\7c\2\2\u00a3"+
+		"\u00a4\7a\2\2\u00a4\u00a5\7t\2\2\u00a5\u00a6\7g\2\2\u00a6\u0503\7s\2\2"+
+		"\u00a7\u00a8\7o\2\2\u00a8\u00a9\7g\2\2\u00a9\u00aa\7v\2\2\u00aa\u00ab"+
+		"\7c\2\2\u00ab\u00ac\7a\2\2\u00ac\u00ad\7w\2\2\u00ad\u00ae\7u\2\2\u00ae"+
+		"\u00af\7g\2\2\u00af\u0503\7t\2\2\u00b0\u00b1\7o\2\2\u00b1\u00b2\7g\2\2"+
+		"\u00b2\u00b3\7v\2\2\u00b3\u00b4\7c\2\2\u00b4\u00b5\7a\2\2\u00b5\u00b6"+
+		"\7e\2\2\u00b6\u00b7\7q\2\2\u00b7\u00b8\7o\2\2\u00b8\u00b9\7r\2\2\u00b9"+
+		"\u00ba\7c\2\2\u00ba\u00bb\7p\2\2\u00bb\u0503\7{\2\2\u00bc\u00bd\7o\2\2"+
+		"\u00bd\u00be\7g\2\2\u00be\u00bf\7v\2\2\u00bf\u00c0\7c\2\2\u00c0\u00c1"+
+		"\7a\2\2\u00c1\u00c2\7u\2\2\u00c2\u00c3\7{\2\2\u00c3\u0503\7u\2\2\u00c4"+
+		"\u00c5\7o\2\2\u00c5\u00c6\7g\2\2\u00c6\u00c7\7v\2\2\u00c7\u00c8\7c\2\2"+
+		"\u00c8\u00c9\7a\2\2\u00c9\u00ca\7e\2\2\u00ca\u00cb\7q\2\2\u00cb\u00cc"+
+		"\7p\2\2\u00cc\u0503\7x\2\2\u00cd\u00ce\7o\2\2\u00ce\u00cf\7g\2\2\u00cf"+
+		"\u00d0\7v\2\2\u00d0\u00d1\7c\2\2\u00d1\u00d2\7a\2\2\u00d2\u00d3\7h\2\2"+
+		"\u00d3\u00d4\7t\2\2\u00d4\u00d5\7c\2\2\u00d5\u0503\7i\2\2\u00d6\u00d7"+
+		"\7l\2\2\u00d7\u00d8\7u\2\2\u00d8\u00d9\7q\2\2\u00d9\u0503\7p\2\2\u00da"+
+		"\u00db\7k\2\2\u00db\u0503\7h\2\2\u00dc\u00dd\7v\2\2\u00dd\u00de\7q\2\2"+
+		"\u00de\u00df\7m\2\2\u00df\u00e0\7a\2\2\u00e0\u00e1\7k\2\2\u00e1\u0503"+
+		"\7f\2\2\u00e2\u00e3\7v\2\2\u00e3\u00e4\7q\2\2\u00e4\u00e5\7m\2\2\u00e5"+
+		"\u00e6\7a\2\2\u00e6\u00e7\7n\2\2\u00e7\u00e8\7g\2\2\u00e8\u00e9\7o\2\2"+
+		"\u00e9\u00ea\7o\2\2\u00ea\u0503\7c\2\2\u00eb\u00ec\7v\2\2\u00ec\u00ed"+
+		"\7q\2\2\u00ed\u00ee\7m\2\2\u00ee\u00ef\7a\2\2\u00ef\u00f0\7u\2\2\u00f0"+
+		"\u00f1\7v\2\2\u00f1\u00f2\7g\2\2\u00f2\u0503\7o\2\2\u00f3\u00f4\7v\2\2"+
+		"\u00f4\u00f5\7q\2\2\u00f5\u00f6\7m\2\2\u00f6\u00f7\7a\2\2\u00f7\u00f8"+
+		"\7r\2\2\u00f8\u00f9\7q\2\2\u00f9\u0503\7u\2\2\u00fa\u00fb\7v\2\2\u00fb"+
+		"\u00fc\7q\2\2\u00fc\u00fd\7m\2\2\u00fd\u00fe\7a\2\2\u00fe\u00ff\7u\2\2"+
+		"\u00ff\u0100\7r\2\2\u0100\u0101\7c\2\2\u0101\u0102\7t\2\2\u0102\u0103"+
+		"\7u\2\2\u0103\u0104\7k\2\2\u0104\u0105\7v\2\2\u0105\u0503\7{\2\2\u0106"+
+		"\u0107\7v\2\2\u0107\u0108\7q\2\2\u0108\u0109\7m\2\2\u0109\u010a\7a\2\2"+
+		"\u010a\u010b\7w\2\2\u010b\u010c\7p\2\2\u010c\u010d\7k\2\2\u010d\u0503"+
+		"\7f\2\2\u010e\u010f\7v\2\2\u010f\u0110\7q\2\2\u0110\u0111\7m\2\2\u0111"+
+		"\u0112\7a\2\2\u0112\u0113\7k\2\2\u0113\u0114\7u\2\2\u0114\u0115\7a\2\2"+
+		"\u0115\u0116\7c\2\2\u0116\u0117\7d\2\2\u0117\u0118\7u\2\2\u0118\u0119"+
+		"\7v\2\2\u0119\u011a\7t\2\2\u011a\u011b\7c\2\2\u011b\u011c\7e\2\2\u011c"+
+		"\u0503\7v\2\2\u011d\u011e\7v\2\2\u011e\u011f\7q\2\2\u011f\u0120\7m\2\2"+
+		"\u0120\u0121\7a\2\2\u0121\u0122\7k\2\2\u0122\u0123\7u\2\2\u0123\u0124"+
+		"\7a\2\2\u0124\u0125\7d\2\2\u0125\u0126\7t\2\2\u0126\u0127\7c\2\2\u0127"+
+		"\u0128\7e\2\2\u0128\u0129\7m\2\2\u0129\u012a\7g\2\2\u012a\u012b\7v\2\2"+
+		"\u012b\u012c\7g\2\2\u012c\u0503\7f\2\2\u012d\u012e\7v\2\2\u012e\u012f"+
+		"\7q\2\2\u012f\u0130\7m\2\2\u0130\u0131\7a\2\2\u0131\u0132\7k\2\2\u0132"+
+		"\u0133\7u\2\2\u0133\u0134\7a\2\2\u0134\u0135\7f\2\2\u0135\u0136\7k\2\2"+
+		"\u0136\u0137\7t\2\2\u0137\u0138\7g\2\2\u0138\u0139\7e\2\2\u0139\u0503"+
+		"\7v\2\2\u013a\u013b\7v\2\2\u013b\u013c\7q\2\2\u013c\u013d\7m\2\2\u013d"+
+		"\u013e\7a\2\2\u013e\u013f\7k\2\2\u013f\u0140\7u\2\2\u0140\u0141\7a\2\2"+
+		"\u0141\u0142\7r\2\2\u0142\u0143\7g\2\2\u0143\u0144\7t\2\2\u0144\u0145"+
+		"\7o\2\2\u0145\u0146\7w\2\2\u0146\u0147\7v\2\2\u0147\u0148\7c\2\2\u0148"+
+		"\u0149\7v\2\2\u0149\u014a\7g\2\2\u014a\u0503\7f\2\2\u014b\u014c\7v\2\2"+
+		"\u014c\u014d\7q\2\2\u014d\u014e\7m\2\2\u014e\u014f\7a\2\2\u014f\u0150"+
+		"\7k\2\2\u0150\u0151\7u\2\2\u0151\u0152\7a\2\2\u0152\u0153\7g\2\2\u0153"+
+		"\u0154\7p\2\2\u0154\u0155\7i\2\2\u0155\u0156\7n\2\2\u0156\u0157\7k\2\2"+
+		"\u0157\u0158\7u\2\2\u0158\u0503\7j\2\2\u0159\u015a\7v\2\2\u015a\u015b"+
+		"\7q\2\2\u015b\u015c\7m\2\2\u015c\u015d\7a\2\2\u015d\u015e\7k\2\2\u015e"+
+		"\u015f\7u\2\2\u015f\u0160\7a\2\2\u0160\u0161\7h\2\2\u0161\u0162\7t\2\2"+
+		"\u0162\u0163\7g\2\2\u0163\u0164\7g\2\2\u0164\u0165\7y\2\2\u0165\u0166"+
+		"\7q\2\2\u0166\u0167\7t\2\2\u0167\u0503\7f\2\2\u0168\u0169\7v\2\2\u0169"+
+		"\u016a\7q\2\2\u016a\u016b\7m\2\2\u016b\u016c\7a\2\2\u016c\u016d\7k\2\2"+
+		"\u016d\u016e\7u\2\2\u016e\u016f\7a\2\2\u016f\u0170\7s\2\2\u0170\u0171"+
+		"\7w\2\2\u0171\u0172\7q\2\2\u0172\u0173\7v\2\2\u0173\u0174\7g\2\2\u0174"+
+		"\u0503\7f\2\2\u0175\u0176\7v\2\2\u0176\u0177\7q\2\2\u0177\u0178\7m\2\2"+
+		"\u0178\u0179\7a\2\2\u0179\u017a\7k\2\2\u017a\u017b\7u\2\2\u017b\u017c"+
+		"\7a\2\2\u017c\u017d\7u\2\2\u017d\u017e\7v\2\2\u017e\u017f\7q\2\2\u017f"+
+		"\u0180\7r\2\2\u0180\u0181\7y\2\2\u0181\u0182\7q\2\2\u0182\u0183\7t\2\2"+
+		"\u0183\u0503\7f\2\2\u0184\u0185\7v\2\2\u0185\u0186\7q\2\2\u0186\u0187"+
+		"\7m\2\2\u0187\u0188\7a\2\2\u0188\u0189\7k\2\2\u0189\u018a\7u\2\2\u018a"+
+		"\u018b\7a\2\2\u018b\u018c\7u\2\2\u018c\u018d\7y\2\2\u018d\u018e\7g\2\2"+
+		"\u018e\u018f\7c\2\2\u018f\u0503\7t\2\2\u0190\u0191\7v\2\2\u0191\u0192"+
+		"\7q\2\2\u0192\u0193\7m\2\2\u0193\u0194\7a\2\2\u0194\u0195\7k\2\2\u0195"+
+		"\u0196\7u\2\2\u0196\u0197\7a\2\2\u0197\u0198\7w\2\2\u0198\u0199\7u\2\2"+
+		"\u0199\u019a\7g\2\2\u019a\u0503\7t\2\2\u019b\u019c\7v\2\2\u019c\u019d"+
+		"\7q\2\2\u019d\u019e\7m\2\2\u019e\u019f\7a\2\2\u019f\u01a0\7k\2\2\u01a0"+
+		"\u01a1\7u\2\2\u01a1\u01a2\7a\2\2\u01a2\u01a3\7y\2\2\u01a3\u01a4\7q\2\2"+
+		"\u01a4\u01a5\7t\2\2\u01a5\u01a6\7f\2\2\u01a6\u01a7\7p\2\2\u01a7\u01a8"+
+		"\7g\2\2\u01a8\u0503\7v\2\2\u01a9\u01aa\7v\2\2\u01aa\u01ab\7q\2\2\u01ab"+
+		"\u01ac\7m\2\2\u01ac\u01ad\7a\2\2\u01ad\u01ae\7c\2\2\u01ae\u01af\7p\2\2"+
+		"\u01af\u01b0\7e\2\2\u01b0\u01b1\7g\2\2\u01b1\u01b2\7u\2\2\u01b2\u01b3"+
+		"\7v\2\2\u01b3\u01b4\7q\2\2\u01b4\u01b5\7t\2\2\u01b5\u0503\7u\2\2\u01b6"+
+		"\u01b7\7v\2\2\u01b7\u01b8\7q\2\2\u01b8\u01b9\7m\2\2\u01b9\u01ba\7a\2\2"+
+		"\u01ba\u01bb\7r\2\2\u01bb\u01bc\7c\2\2\u01bc\u01bd\7t\2\2\u01bd\u01be"+
+		"\7g\2\2\u01be\u01bf\7p\2\2\u01bf\u0503\7v\2\2\u01c0\u01c1\7v\2\2\u01c1"+
+		"\u01c2\7q\2\2\u01c2\u01c3\7m\2\2\u01c3\u01c4\7a\2\2\u01c4\u01c5\7i\2\2"+
+		"\u01c5\u01c6\7t\2\2\u01c6\u01c7\7q\2\2\u01c7\u01c8\7w\2\2\u01c8\u01c9"+
+		"\7r\2\2\u01c9\u0503\7u\2\2\u01ca\u01cb\7v\2\2\u01cb\u01cc\7q\2\2\u01cc"+
+		"\u01cd\7m\2\2\u01cd\u01ce\7a\2\2\u01ce\u01cf\7x\2\2\u01cf\u01d0\7c\2\2"+
+		"\u01d0\u01d1\7n\2\2\u01d1\u01d2\7w\2\2\u01d2\u0503\7g\2\2\u01d3\u01d4"+
+		"\7v\2\2\u01d4\u01d5\7q\2\2\u01d5\u01d6\7m\2\2\u01d6\u01d7\7a\2\2\u01d7"+
+		"\u01d8\7c\2\2\u01d8\u01d9\7n\2\2\u01d9\u01da\7k\2\2\u01da\u01db\7c\2\2"+
+		"\u01db\u01dc\7u\2\2\u01dc\u01dd\7g\2\2\u01dd\u0503\7u\2\2\u01de\u01df"+
+		"\7v\2\2\u01df\u01e0\7q\2\2\u01e0\u01e1\7m\2\2\u01e1\u01e2\7a\2\2\u01e2"+
+		"\u01e3\7u\2\2\u01e3\u01e4\7v\2\2\u01e4\u01e5\7c\2\2\u01e5\u01e6\7t\2\2"+
+		"\u01e6\u01e7\7v\2\2\u01e7\u01e8\7a\2\2\u01e8\u01e9\7k\2\2\u01e9\u01ea"+
+		"\7f\2\2\u01ea\u0503\7z\2\2\u01eb\u01ec\7v\2\2\u01ec\u01ed\7q\2\2\u01ed"+
+		"\u01ee\7m\2\2\u01ee\u01ef\7a\2\2\u01ef\u01f0\7g\2\2\u01f0\u01f1\7p\2\2"+
+		"\u01f1\u01f2\7f\2\2\u01f2\u01f3\7a\2\2\u01f3\u01f4\7k\2\2\u01f4\u01f5"+
+		"\7f\2\2\u01f5\u0503\7z\2\2\u01f6\u01f7\7v\2\2\u01f7\u01f8\7q\2\2\u01f8"+
+		"\u01f9\7m\2\2\u01f9\u01fa\7a\2\2\u01fa\u01fb\7v\2\2\u01fb\u01fc\7j\2\2"+
+		"\u01fc\u01fd\7k\2\2\u01fd\u0503\7u\2\2\u01fe\u01ff\7v\2\2\u01ff\u0200"+
+		"\7q\2\2\u0200\u0201\7m\2\2\u0201\u0202\7a\2\2\u0202\u0203\7h\2\2\u0203"+
+		"\u0204\7k\2\2\u0204\u0205\7p\2\2\u0205\u0206\7f\2\2\u0206\u0207\7a\2\2"+
+		"\u0207\u0208\7r\2\2\u0208\u0209\7c\2\2\u0209\u020a\7t\2\2\u020a\u0503"+
+		"\7v\2\2\u020b\u020c\7v\2\2\u020c\u020d\7q\2\2\u020d\u020e\7m\2\2\u020e"+
+		"\u020f\7a\2\2\u020f\u0210\7j\2\2\u0210\u0211\7c\2\2\u0211\u0212\7u\2\2"+
+		"\u0212\u0213\7a\2\2\u0213\u0214\7r\2\2\u0214\u0215\7c\2\2\u0215\u0216"+
+		"\7t\2\2\u0216\u0503\7v\2\2\u0217\u0218\7v\2\2\u0218\u0219\7q\2\2\u0219"+
+		"\u021a\7m\2\2\u021a\u021b\7a\2\2\u021b\u021c\7h\2\2\u021c\u021d\7k\2\2"+
+		"\u021d\u021e\7p\2\2\u021e\u021f\7f\2\2\u021f\u0220\7a\2\2\u0220\u0221"+
+		"\7r\2\2\u0221\u0222\7c\2\2\u0222\u0223\7t\2\2\u0223\u0224\7v\2\2\u0224"+
+		"\u0503\7u\2\2\u0225\u0226\7t\2\2\u0226\u0227\7g\2\2\u0227\u0228\7s\2\2"+
+		"\u0228\u0229\7a\2\2\u0229\u022a\7k\2\2\u022a\u0503\7f\2\2\u022b\u022c"+
+		"\7t\2\2\u022c\u022d\7g\2\2\u022d\u022e\7s\2\2\u022e\u022f\7a\2\2\u022f"+
+		"\u0230\7p\2\2\u0230\u0231\7q\2\2\u0231\u0232\7t\2\2\u0232\u0233\7o\2\2"+
+		"\u0233\u0234\7v\2\2\u0234\u0235\7g\2\2\u0235\u0236\7z\2\2\u0236\u0503"+
+		"\7v\2\2\u0237\u0238\7t\2\2\u0238\u0239\7g\2\2\u0239\u023a\7s\2\2\u023a"+
+		"\u023b\7a\2\2\u023b\u023c\7v\2\2\u023c\u023d\7u\2\2\u023d\u023e\7v\2\2"+
+		"\u023e\u023f\7c\2\2\u023f\u0240\7o\2\2\u0240\u0503\7r\2\2\u0241\u0242"+
+		"\7t\2\2\u0242\u0243\7g\2\2\u0243\u0244\7s\2\2\u0244\u0245\7a\2\2\u0245"+
+		"\u0246\7c\2\2\u0246\u0247\7f\2\2\u0247\u0248\7f\2\2\u0248\u0503\7t\2\2"+
+		"\u0249\u024a\7t\2\2\u024a\u024b\7g\2\2\u024b\u024c\7s\2\2\u024c\u024d"+
+		"\7a\2\2\u024d\u024e\7c\2\2\u024e\u024f\7i\2\2\u024f\u0250\7g\2\2\u0250"+
+		"\u0251\7p\2\2\u0251\u0503\7v\2\2\u0252\u0253\7w\2\2\u0253\u0254\7u\2\2"+
+		"\u0254\u0255\7g\2\2\u0255\u0256\7t\2\2\u0256\u0257\7a\2\2\u0257\u0258"+
+		"\7k\2\2\u0258\u0503\7f\2\2\u0259\u025a\7w\2\2\u025a\u025b\7u\2\2\u025b"+
+		"\u025c\7g\2\2\u025c\u025d\7t\2\2\u025d\u025e\7a\2\2\u025e\u025f\7h\2\2"+
+		"\u025f\u0260\7p\2\2\u0260\u0261\7c\2\2\u0261\u0262\7o\2\2\u0262\u0503"+
+		"\7g\2\2\u0263\u0264\7w\2\2\u0264\u0265\7u\2\2\u0265\u0266\7g\2\2\u0266"+
+		"\u0267\7t\2\2\u0267\u0268\7a\2\2\u0268\u0269\7n\2\2\u0269\u026a\7p\2\2"+
+		"\u026a\u026b\7c\2\2\u026b\u026c\7o\2\2\u026c\u0503\7g\2\2\u026d\u026e"+
+		"\7w\2\2\u026e\u026f\7u\2\2\u026f\u0270\7g\2\2\u0270\u0271\7t\2\2\u0271"+
+		"\u0272\7a\2\2\u0272\u0273\7g\2\2\u0273\u0274\7o\2\2\u0274\u0275\7c\2\2"+
+		"\u0275\u0276\7k\2\2\u0276\u0503\7n\2\2\u0277\u0278\7w\2\2\u0278\u0279"+
+		"\7u\2\2\u0279\u027a\7g\2\2\u027a\u027b\7t\2\2\u027b\u027c\7a\2\2\u027c"+
+		"\u027d\7c\2\2\u027d\u027e\7f\2\2\u027e\u027f\7o\2\2\u027f\u0280\7k\2\2"+
+		"\u0280\u0503\7p\2\2\u0281\u0282\7w\2\2\u0282\u0283\7u\2\2\u0283\u0284"+
+		"\7g\2\2\u0284\u0285\7t\2\2\u0285\u0286\7a\2\2\u0286\u0287\7u\2\2\u0287"+
+		"\u0288\7k\2\2\u0288\u0289\7i\2\2\u0289\u028a\7p\2\2\u028a\u028b\7w\2\2"+
+		"\u028b\u028c\7r\2\2\u028c\u028d\7a\2\2\u028d\u028e\7v\2\2\u028e\u028f"+
+		"\7u\2\2\u028f\u0290\7v\2\2\u0290\u0291\7c\2\2\u0291\u0292\7o\2\2\u0292"+
+		"\u0503\7r\2\2\u0293\u0294\7e\2\2\u0294\u0295\7q\2\2\u0295\u0296\7o\2\2"+
+		"\u0296\u0297\7r\2\2\u0297\u0298\7a\2\2\u0298\u0299\7k\2\2\u0299\u0503"+
+		"\7f\2\2\u029a\u029b\7e\2\2\u029b\u029c\7q\2\2\u029c\u029d\7o\2\2\u029d"+
+		"\u029e\7r\2\2\u029e\u029f\7a\2\2\u029f\u02a0\7p\2\2\u02a0\u02a1\7c\2\2"+
+		"\u02a1\u02a2\7o\2\2\u02a2\u0503\7g\2\2\u02a3\u02a4\7e\2\2\u02a4\u02a5"+
+		"\7q\2\2\u02a5\u02a6\7o\2\2\u02a6\u02a7\7r\2\2\u02a7\u02a8\7a\2\2\u02a8"+
+		"\u02a9\7y\2\2\u02a9\u02aa\7g\2\2\u02aa\u02ab\7d\2\2\u02ab\u02ac\7u\2\2"+
+		"\u02ac\u02ad\7k\2\2\u02ad\u02ae\7v\2\2\u02ae\u0503\7g\2\2\u02af\u02b0"+
+		"\7e\2\2\u02b0\u02b1\7q\2\2\u02b1\u02b2\7o\2\2\u02b2\u02b3\7r\2\2\u02b3"+
+		"\u02b4\7a\2\2\u02b4\u02b5\7e\2\2\u02b5\u02b6\7q\2\2\u02b6\u02b7\7w\2\2"+
+		"\u02b7\u02b8\7p\2\2\u02b8\u02b9\7v\2\2\u02b9\u02ba\7t\2\2\u02ba\u0503"+
+		"\7{\2\2\u02bb\u02bc\7e\2\2\u02bc\u02bd\7q\2\2\u02bd\u02be\7o\2\2\u02be"+
+		"\u02bf\7r\2\2\u02bf\u02c0\7a\2\2\u02c0\u02c1\7t\2\2\u02c1\u02c2\7g\2\2"+
+		"\u02c2\u02c3\7i\2\2\u02c3\u02c4\7k\2\2\u02c4\u02c5\7q\2\2\u02c5\u0503"+
+		"\7p\2\2\u02c6\u02c7\7e\2\2\u02c7\u02c8\7q\2\2\u02c8\u02c9\7o\2\2\u02c9"+
+		"\u02ca\7r\2\2\u02ca\u02cb\7a\2\2\u02cb\u02cc\7e\2\2\u02cc\u02cd\7k\2\2"+
+		"\u02cd\u02ce\7v\2\2\u02ce\u0503\7{\2\2\u02cf\u02d0\7e\2\2\u02d0\u02d1"+
+		"\7q\2\2\u02d1\u02d2\7o\2\2\u02d2\u02d3\7r\2\2\u02d3\u02d4\7a\2\2\u02d4"+
+		"\u02d5\7c\2\2\u02d5\u02d6\7f\2\2\u02d6\u02d7\7f\2\2\u02d7\u0503\7t\2\2"+
+		"\u02d8\u02d9\7e\2\2\u02d9\u02da\7q\2\2\u02da\u02db\7o\2\2\u02db\u02dc"+
+		"\7r\2\2\u02dc\u02dd\7a\2\2\u02dd\u02de\7r\2\2\u02de\u02df\7q\2\2\u02df"+
+		"\u02e0\7u\2\2\u02e0\u02e1\7v\2\2\u02e1\u02e2\7e\2\2\u02e2\u02e3\7q\2\2"+
+		"\u02e3\u02e4\7f\2\2\u02e4\u0503\7g\2\2\u02e5\u02e6\7v\2\2\u02e6\u02e7"+
+		"\7t\2\2\u02e7\u02e8\7k\2\2\u02e8\u0503\7o\2\2\u02e9\u02ea\7u\2\2\u02ea"+
+		"\u02eb\7v\2\2\u02eb\u02ec\7t\2\2\u02ec\u02ed\7k\2\2\u02ed\u0503\7r\2\2"+
+		"\u02ee\u02ef\7w\2\2\u02ef\u02f0\7r\2\2\u02f0\u02f1\7r\2\2\u02f1\u02f2"+
+		"\7g\2\2\u02f2\u02f3\7t\2\2\u02f3\u02f4\7e\2\2\u02f4\u02f5\7c\2\2\u02f5"+
+		"\u02f6\7u\2\2\u02f6\u0503\7g\2\2\u02f7\u02f8\7n\2\2\u02f8\u02f9\7q\2\2"+
+		"\u02f9\u02fa\7y\2\2\u02fa\u02fb\7g\2\2\u02fb\u02fc\7t\2\2\u02fc\u02fd"+
+		"\7e\2\2\u02fd\u02fe\7c\2\2\u02fe\u02ff\7u\2\2\u02ff\u0503\7g\2\2\u0300"+
+		"\u0301\7k\2\2\u0301\u0302\7u\2\2\u0302\u0303\7a\2\2\u0303\u0304\7c\2\2"+
+		"\u0304\u0305\7n\2\2\u0305\u0306\7r\2\2\u0306\u0307\7j\2\2\u0307\u0503"+
+		"\7c\2\2\u0308\u0309\7k\2\2\u0309\u030a\7u\2\2\u030a\u030b\7a\2\2\u030b"+
+		"\u030c\7c\2\2\u030c\u030d\7n\2\2\u030d\u030e\7r\2\2\u030e\u030f\7j\2\2"+
+		"\u030f\u0310\7c\2\2\u0310\u0311\7p\2\2\u0311\u0312\7w\2\2\u0312\u0503"+
+		"\7o\2\2\u0313\u0314\7k\2\2\u0314\u0315\7u\2\2\u0315\u0316\7a\2\2\u0316"+
+		"\u0317\7y\2\2\u0317\u0318\7j\2\2\u0318\u0319\7k\2\2\u0319\u031a\7v\2\2"+
+		"\u031a\u031b\7g\2\2\u031b\u031c\7u\2\2\u031c\u031d\7r\2\2\u031d\u031e"+
+		"\7c\2\2\u031e\u031f\7e\2\2\u031f\u0503\7g\2\2\u0320\u0321\7k\2\2\u0321"+
+		"\u0322\7u\2\2\u0322\u0323\7a\2\2\u0323\u0324\7p\2\2\u0324\u0325\7w\2\2"+
+		"\u0325\u0503\7o\2\2\u0326\u0327\7k\2\2\u0327\u0328\7u\2\2\u0328\u0329"+
+		"\7a\2\2\u0329\u032a\7p\2\2\u032a\u032b\7w\2\2\u032b\u032c\7o\2\2\u032c"+
+		"\u032d\7u\2\2\u032d\u032e\7r\2\2\u032e\u032f\7c\2\2\u032f\u0330\7e\2\2"+
+		"\u0330\u0503\7g\2\2\u0331\u0332\7k\2\2\u0332\u0333\7u\2\2\u0333\u0334"+
+		"\7a\2\2\u0334\u0335\7c\2\2\u0335\u0336\7n\2\2\u0336\u0337\7r\2\2\u0337"+
+		"\u0338\7j\2\2\u0338\u0339\7c\2\2\u0339\u033a\7u\2\2\u033a\u033b\7r\2\2"+
+		"\u033b\u033c\7c\2\2\u033c\u033d\7e\2\2\u033d\u0503\7g\2\2\u033e\u033f"+
+		"\7k\2\2\u033f\u0340\7u\2\2\u0340\u0341\7a\2\2\u0341\u0342\7c\2\2\u0342"+
+		"\u0343\7n\2\2\u0343\u0344\7r\2\2\u0344\u0345\7j\2\2\u0345\u0346\7c\2\2"+
+		"\u0346\u0347\7p\2\2\u0347\u0348\7w\2\2\u0348\u0349\7o\2\2\u0349\u034a"+
+		"\7u\2\2\u034a\u034b\7r\2\2\u034b\u034c\7c\2\2\u034c\u034d\7e\2\2\u034d"+
+		"\u0503\7g\2\2\u034e\u034f\7u\2\2\u034f\u0350\7r\2\2\u0350\u0351\7n\2\2"+
+		"\u0351\u0352\7k\2\2\u0352\u0503\7v\2\2\u0353\u0354\7u\2\2\u0354\u0355"+
+		"\7r\2\2\u0355\u0356\7n\2\2\u0356\u0357\7k\2\2\u0357\u0358\7v\2\2\u0358"+
+		"\u0359\7a\2\2\u0359\u035a\7v\2\2\u035a\u035b\7t\2\2\u035b\u035c\7k\2\2"+
+		"\u035c\u0503\7o\2\2\u035d\u035e\7u\2\2\u035e\u035f\7v\2\2\u035f\u0360"+
+		"\7c\2\2\u0360\u0361\7t\2\2\u0361\u0362\7v\2\2\u0362\u0363\7u\2\2\u0363"+
+		"\u0364\7a\2\2\u0364\u0365\7y\2\2\u0365\u0366\7k\2\2\u0366\u0367\7v\2\2"+
+		"\u0367\u0503\7j\2\2\u0368\u0369\7g\2\2\u0369\u036a\7p\2\2\u036a\u036b"+
+		"\7f\2\2\u036b\u036c\7u\2\2\u036c\u036d\7a\2\2\u036d\u036e\7y\2\2\u036e"+
+		"\u036f\7k\2\2\u036f\u0370\7v\2\2\u0370\u0503\7j\2\2\u0371\u0372\7k\2\2"+
+		"\u0372\u0373\7p\2\2\u0373\u0374\7f\2\2\u0374\u0375\7g\2\2\u0375\u0376"+
+		"\7z\2\2\u0376\u0377\7a\2\2\u0377\u0378\7q\2\2\u0378\u0503\7h\2\2\u0379"+
+		"\u037a\7e\2\2\u037a\u037b\7q\2\2\u037b\u037c\7p\2\2\u037c\u037d\7v\2\2"+
+		"\u037d\u037e\7c\2\2\u037e\u037f\7k\2\2\u037f\u0380\7p\2\2\u0380\u0503"+
+		"\7u\2\2\u0381\u0382\7u\2\2\u0382\u0383\7w\2\2\u0383\u0384\7d\2\2\u0384"+
+		"\u0385\7u\2\2\u0385\u0386\7v\2\2\u0386\u0503\7t\2\2\u0387\u0388\7t\2\2"+
+		"\u0388\u0389\7g\2\2\u0389\u038a\7r\2\2\u038a\u038b\7n\2\2\u038b\u038c"+
+		"\7c\2\2\u038c\u038d\7e\2\2\u038d\u0503\7g\2\2\u038e\u038f\7c\2\2\u038f"+
+		"\u0390\7d\2\2\u0390\u0503\7u\2\2\u0391\u0392\7e\2\2\u0392\u0393\7g\2\2"+
+		"\u0393\u0394\7k\2\2\u0394\u0503\7n\2\2\u0395\u0396\7h\2\2\u0396\u0397"+
+		"\7n\2\2\u0397\u0398\7q\2\2\u0398\u0399\7q\2\2\u0399\u0503\7t\2\2\u039a"+
+		"\u039b\7t\2\2\u039b\u039c\7k\2\2\u039c\u039d\7p\2\2\u039d\u0503\7v\2\2"+
+		"\u039e\u039f\7t\2\2\u039f\u03a0\7q\2\2\u03a0\u03a1\7w\2\2\u03a1\u03a2"+
+		"\7p\2\2\u03a2\u0503\7f\2\2\u03a3\u03a4\7u\2\2\u03a4\u03a5\7k\2\2\u03a5"+
+		"\u03a6\7i\2\2\u03a6\u03a7\7p\2\2\u03a7\u03a8\7w\2\2\u03a8\u0503\7o\2\2"+
+		"\u03a9\u03aa\7u\2\2\u03aa\u03ab\7s\2\2\u03ab\u03ac\7t\2\2\u03ac\u0503"+
+		"\7v\2\2\u03ad\u03ae\7e\2\2\u03ae\u03af\7d\2\2\u03af\u03b0\7t\2\2\u03b0"+
+		"\u0503\7v\2\2\u03b1\u03b2\7r\2\2\u03b2\u0503\7k\2\2\u03b3\u03b4\7v\2\2"+
+		"\u03b4\u03b5\7q\2\2\u03b5\u03b6\7a\2\2\u03b6\u03b7\7f\2\2\u03b7\u03b8"+
+		"\7q\2\2\u03b8\u03b9\7w\2\2\u03b9\u03ba\7d\2\2\u03ba\u03bb\7n\2\2\u03bb"+
+		"\u0503\7g\2\2\u03bc\u03bd\7v\2\2\u03bd\u03be\7q\2\2\u03be\u03bf\7a\2\2"+
+		"\u03bf\u03c0\7k\2\2\u03c0\u03c1\7p\2\2\u03c1\u0503\7v\2\2\u03c2\u03c3"+
+		"\7g\2\2\u03c3\u03c4\7w\2\2\u03c4\u03c5\7n\2\2\u03c5\u03c6\7g\2\2\u03c6"+
+		"\u0503\7t\2\2\u03c7\u03c8\7c\2\2\u03c8\u03c9\7e\2\2\u03c9\u03ca\7q\2\2"+
+		"\u03ca\u0503\7u\2\2\u03cb\u03cc\7c\2\2\u03cc\u03cd\7u\2\2\u03cd\u03ce"+
+		"\7k\2\2\u03ce\u0503\7p\2\2\u03cf\u03d0\7c\2\2\u03d0\u03d1\7v\2\2\u03d1"+
+		"\u03d2\7c\2\2\u03d2\u0503\7p\2\2\u03d3\u03d4\7e\2\2\u03d4\u03d5\7q\2\2"+
+		"\u03d5\u0503\7u\2\2\u03d6\u03d7\7u\2\2\u03d7\u03d8\7k\2\2\u03d8\u0503"+
+		"\7p\2\2\u03d9\u03da\7v\2\2\u03da\u03db\7c\2\2\u03db\u0503\7p\2\2\u03dc"+
+		"\u03dd\7e\2\2\u03dd\u03de\7q\2\2\u03de\u03df\7u\2\2\u03df\u0503\7j\2\2"+
+		"\u03e0\u03e1\7u\2\2\u03e1\u03e2\7k\2\2\u03e2\u03e3\7p\2\2\u03e3\u0503"+
+		"\7j\2\2\u03e4\u03e5\7v\2\2\u03e5\u03e6\7c\2\2\u03e6\u03e7\7p\2\2\u03e7"+
+		"\u0503\7j\2\2\u03e8\u03e9\7c\2\2\u03e9\u03ea\7v\2\2\u03ea\u03eb\7c\2\2"+
+		"\u03eb\u03ec\7p\2\2\u03ec\u0503\7\64\2\2\u03ed\u03ee\7f\2\2\u03ee\u03ef"+
+		"\7g\2\2\u03ef\u03f0\7i\2\2\u03f0\u03f1\7t\2\2\u03f1\u03f2\7g\2\2\u03f2"+
+		"\u03f3\7g\2\2\u03f3\u0503\7u\2\2\u03f4\u03f5\7t\2\2\u03f5\u03f6\7c\2\2"+
+		"\u03f6\u03f7\7f\2\2\u03f7\u03f8\7k\2\2\u03f8\u03f9\7c\2\2\u03f9\u03fa"+
+		"\7p\2\2\u03fa\u0503\7u\2\2\u03fb\u03fc\7g\2\2\u03fc\u03fd\7z\2\2\u03fd"+
+		"\u0503\7r\2\2\u03fe\u03ff\7g\2\2\u03ff\u0400\7z\2\2\u0400\u0401\7r\2\2"+
+		"\u0401\u0402\7o\2\2\u0402\u0503\7\63\2\2\u0403\u0404\7j\2\2\u0404\u0405"+
+		"\7{\2\2\u0405\u0406\7r\2\2\u0406\u0407\7q\2\2\u0407\u0503\7v\2\2\u0408"+
+		"\u0409\7n\2\2\u0409\u040a\7q\2\2\u040a\u0503\7i\2\2\u040b\u040c\7n\2\2"+
+		"\u040c\u040d\7q\2\2\u040d\u040e\7i\2\2\u040e\u040f\7\63\2\2\u040f\u0503"+
+		"\7\62\2\2\u0410\u0411\7n\2\2\u0411\u0412\7q\2\2\u0412\u0413\7i\2\2\u0413"+
+		"\u0414\7\63\2\2\u0414\u0503\7r\2\2\u0415\u0416\7r\2\2\u0416\u0417\7q\2"+
+		"\2\u0417\u0503\7y\2\2\u0418\u0419\7t\2\2\u0419\u041a\7c\2\2\u041a\u041b"+
+		"\7p\2\2\u041b\u0503\7f\2\2\u041c\u041d\7u\2\2\u041d\u041e\7s\2\2\u041e"+
+		"\u041f\7w\2\2\u041f\u0420\7c\2\2\u0420\u0421\7t\2\2\u0421\u0503\7g\2\2"+
+		"\u0422\u0423\7n\2\2\u0423\u0424\7k\2\2\u0424\u0425\7u\2\2\u0425\u0503"+
+		"\7v\2\2\u0426\u0427\7i\2\2\u0427\u0428\7g\2\2\u0428\u0503\7v\2\2\u0429"+
+		"\u042a\7j\2\2\u042a\u042b\7c\2\2\u042b\u0503\7u\2\2\u042c\u042d\7j\2\2"+
+		"\u042d\u042e\7c\2\2\u042e\u042f\7u\2\2\u042f\u0430\7a\2\2\u0430\u0431"+
+		"\7c\2\2\u0431\u0432\7p\2\2\u0432\u0503\7{\2\2\u0433\u0434\7j\2\2\u0434"+
+		"\u0435\7c\2\2\u0435\u0436\7u\2\2\u0436\u0437\7a\2\2\u0437\u0438\7c\2\2"+
+		"\u0438\u0439\7n\2\2\u0439\u0503\7n\2\2\u043a\u043b\7h\2\2\u043b\u043c"+
+		"\7k\2\2\u043c\u043d\7t\2\2\u043d\u043e\7u\2\2\u043e\u0503\7v\2\2\u043f"+
+		"\u0440\7n\2\2\u0440\u0441\7c\2\2\u0441\u0442\7u\2\2\u0442\u0503\7v\2\2"+
+		"\u0443\u0444\7m\2\2\u0444\u0445\7g\2\2\u0445\u0446\7{\2\2\u0446\u0503"+
+		"\7u\2\2\u0447\u0448\7x\2\2\u0448\u0449\7c\2\2\u0449\u044a\7n\2\2\u044a"+
+		"\u044b\7w\2\2\u044b\u044c\7g\2\2\u044c\u0503\7u\2\2\u044d\u044e\7n\2\2"+
+		"\u044e\u044f\7g\2\2\u044f\u0450\7p\2\2\u0450\u0451\7i\2\2\u0451\u0452"+
+		"\7v\2\2\u0452\u0503\7j\2\2\u0453\u0454\7e\2\2\u0454\u0455\7q\2\2\u0455"+
+		"\u0456\7w\2\2\u0456\u0457\7p\2\2\u0457\u0503\7v\2\2\u0458\u0459\7u\2\2"+
+		"\u0459\u045a\7k\2\2\u045a\u045b\7|\2\2\u045b\u0503\7g\2\2\u045c\u045d"+
+		"\7u\2\2\u045d\u045e\7q\2\2\u045e\u045f\7t\2\2\u045f\u0503\7v\2\2\u0460"+
+		"\u0461\7t\2\2\u0461\u0462\7g\2\2\u0462\u0463\7x\2\2\u0463\u0464\7g\2\2"+
+		"\u0464\u0465\7t\2\2\u0465\u0466\7u\2\2\u0466\u0503\7g\2\2\u0467\u0468"+
+		"\7k\2\2\u0468\u0469\7u\2\2\u0469\u046a\7a\2\2\u046a\u046b\7g\2\2\u046b"+
+		"\u046c\7o\2\2\u046c\u046d\7r\2\2\u046d\u046e\7v\2\2\u046e\u0503\7{\2\2"+
+		"\u046f\u0470\7p\2\2\u0470\u0471\7q\2\2\u0471\u0472\7p\2\2\u0472\u0473"+
+		"\7a\2\2\u0473\u0474\7g\2\2\u0474\u0475\7o\2\2\u0475\u0476\7r\2\2\u0476"+
+		"\u0477\7v\2\2\u0477\u0503\7{\2\2\u0478\u0479\7f\2\2\u0479\u047a\7k\2\2"+
+		"\u047a\u047b\7u\2\2\u047b\u047c\7v\2\2\u047c\u047d\7k\2\2\u047d\u047e"+
+		"\7p\2\2\u047e\u047f\7e\2\2\u047f\u0503\7v\2\2\u0480\u0481\7e\2\2\u0481"+
+		"\u0482\7q\2\2\u0482\u0483\7p\2\2\u0483\u0484\7e\2\2\u0484\u0485\7c\2\2"+
+		"\u0485\u0503\7v\2\2\u0486\u0487\7v\2\2\u0487\u0488\7q\2\2\u0488\u0489"+
+		"\7a\2\2\u0489\u048a\7u\2\2\u048a\u048b\7v\2\2\u048b\u048c\7t\2\2\u048c"+
+		"\u048d\7k\2\2\u048d\u048e\7p\2\2\u048e\u0503\7i\2\2\u048f\u0490\7o\2\2"+
+		"\u0490\u0491\7c\2\2\u0491\u0503\7z\2\2\u0492\u0493\7o\2\2\u0493\u0494"+
+		"\7k\2\2\u0494\u0503\7p\2\2\u0495\u0496\7c\2\2\u0496\u0497\7x\2\2\u0497"+
+		"\u0503\7i\2\2\u0498\u0499\7u\2\2\u0499\u049a\7v\2\2\u049a\u049b\7f\2\2"+
+		"\u049b\u049c\7g\2\2\u049c\u0503\7x\2\2\u049d\u049e\7{\2\2\u049e\u049f"+
+		"\7g\2\2\u049f\u04a0\7c\2\2\u04a0\u0503\7t\2\2\u04a1\u04a2\7o\2\2\u04a2"+
+		"\u04a3\7q\2\2\u04a3\u04a4\7p\2\2\u04a4\u04a5\7v\2\2\u04a5\u0503\7j\2\2"+
+		"\u04a6\u04a7\7f\2\2\u04a7\u04a8\7c\2\2\u04a8\u04a9\7{\2\2\u04a9\u04aa"+
+		"\7a\2\2\u04aa\u04ab\7q\2\2\u04ab\u04ac\7h\2\2\u04ac\u04ad\7a\2\2\u04ad"+
+		"\u04ae\7o\2\2\u04ae\u04af\7q\2\2\u04af\u04b0\7p\2\2\u04b0\u04b1\7v\2\2"+
+		"\u04b1\u0503\7j\2\2\u04b2\u04b3\7f\2\2\u04b3\u04b4\7c\2\2\u04b4\u04b5"+
+		"\7{\2\2\u04b5\u04b6\7a\2\2\u04b6\u04b7\7q\2\2\u04b7\u04b8\7h\2\2\u04b8"+
+		"\u04b9\7a\2\2\u04b9\u04ba\7y\2\2\u04ba\u04bb\7g\2\2\u04bb\u04bc\7g\2\2"+
+		"\u04bc\u0503\7m\2\2\u04bd\u04be\7f\2\2\u04be\u04bf\7c\2\2\u04bf\u04c0"+
+		"\7{\2\2\u04c0\u04c1\7a\2\2\u04c1\u04c2\7q\2\2\u04c2\u04c3\7h\2\2\u04c3"+
+		"\u04c4\7a\2\2\u04c4\u04c5\7{\2\2\u04c5\u04c6\7g\2\2\u04c6\u04c7\7c\2\2"+
+		"\u04c7\u0503\7t\2\2\u04c8\u04c9\7j\2\2\u04c9\u04ca\7q\2\2\u04ca\u04cb"+
+		"\7w\2\2\u04cb\u0503\7t\2\2\u04cc\u04cd\7o\2\2\u04cd\u04ce\7k\2\2\u04ce"+
+		"\u04cf\7p\2\2\u04cf\u04d0\7w\2\2\u04d0\u04d1\7v\2\2\u04d1\u0503\7g\2\2"+
+		"\u04d2\u04d3\7u\2\2\u04d3\u04d4\7g\2\2\u04d4\u04d5\7e\2\2\u04d5\u04d6"+
+		"\7q\2\2\u04d6\u04d7\7p\2\2\u04d7\u0503\7f\2\2\u04d8\u04d9\7y\2\2\u04d9"+
+		"\u04da\7g\2\2\u04da\u04db\7g\2\2\u04db\u04dc\7m\2\2\u04dc\u04dd\7a\2\2"+
+		"\u04dd\u04de\7q\2\2\u04de\u04df\7h\2\2\u04df\u04e0\7a\2\2\u04e0\u04e1"+
+		"\7o\2\2\u04e1\u04e2\7q\2\2\u04e2\u04e3\7p\2\2\u04e3\u04e4\7v\2\2\u04e4"+
+		"\u0503\7j\2\2\u04e5\u04e6\7y\2\2\u04e6\u04e7\7g\2\2\u04e7\u04e8\7g\2\2"+
+		"\u04e8\u04e9\7m\2\2\u04e9\u04ea\7a\2\2\u04ea\u04eb\7q\2\2\u04eb\u04ec"+
+		"\7h\2\2\u04ec\u04ed\7a\2\2\u04ed\u04ee\7{\2\2\u04ee\u04ef\7g\2\2\u04ef"+
+		"\u04f0\7c\2\2\u04f0\u0503\7t\2\2\u04f1\u04f2\7s\2\2\u04f2\u04f3\7w\2\2"+
+		"\u04f3\u04f4\7c\2\2\u04f4\u04f5\7t\2\2\u04f5\u04f6\7v\2\2\u04f6\u04f7"+
+		"\7g\2\2\u04f7\u0503\7t\2\2\u04f8\u04f9\7p\2\2\u04f9\u04fa\7q\2\2\u04fa"+
+		"\u0503\7y\2\2\u04fb\u04fc\7q\2\2\u04fc\u04fd\7t\2\2\u04fd\u04fe\7a\2\2"+
+		"\u04fe\u04ff\7g\2\2\u04ff\u0500\7n\2\2\u0500\u0501\7u\2\2\u0501\u0503"+
+		"\7g\2\2\u0502y\3\2\2\2\u0502\u0081\3\2\2\2\u0502\u008a\3\2\2\2\u0502\u0094"+
+		"\3\2\2\2\u0502\u009f\3\2\2\2\u0502\u00a7\3\2\2\2\u0502\u00b0\3\2\2\2\u0502"+
+		"\u00bc\3\2\2\2\u0502\u00c4\3\2\2\2\u0502\u00cd\3\2\2\2\u0502\u00d6\3\2"+
+		"\2\2\u0502\u00da\3\2\2\2\u0502\u00dc\3\2\2\2\u0502\u00e2\3\2\2\2\u0502"+
+		"\u00eb\3\2\2\2\u0502\u00f3\3\2\2\2\u0502\u00fa\3\2\2\2\u0502\u0106\3\2"+
+		"\2\2\u0502\u010e\3\2\2\2\u0502\u011d\3\2\2\2\u0502\u012d\3\2\2\2\u0502"+
+		"\u013a\3\2\2\2\u0502\u014b\3\2\2\2\u0502\u0159\3\2\2\2\u0502\u0168\3\2"+
+		"\2\2\u0502\u0175\3\2\2\2\u0502\u0184\3\2\2\2\u0502\u0190\3\2\2\2\u0502"+
+		"\u019b\3\2\2\2\u0502\u01a9\3\2\2\2\u0502\u01b6\3\2\2\2\u0502\u01c0\3\2"+
+		"\2\2\u0502\u01ca\3\2\2\2\u0502\u01d3\3\2\2\2\u0502\u01de\3\2\2\2\u0502"+
+		"\u01eb\3\2\2\2\u0502\u01f6\3\2\2\2\u0502\u01fe\3\2\2\2\u0502\u020b\3\2"+
+		"\2\2\u0502\u0217\3\2\2\2\u0502\u0225\3\2\2\2\u0502\u022b\3\2\2\2\u0502"+
+		"\u0237\3\2\2\2\u0502\u0241\3\2\2\2\u0502\u0249\3\2\2\2\u0502\u0252\3\2"+
+		"\2\2\u0502\u0259\3\2\2\2\u0502\u0263\3\2\2\2\u0502\u026d\3\2\2\2\u0502"+
+		"\u0277\3\2\2\2\u0502\u0281\3\2\2\2\u0502\u0293\3\2\2\2\u0502\u029a\3\2"+
+		"\2\2\u0502\u02a3\3\2\2\2\u0502\u02af\3\2\2\2\u0502\u02bb\3\2\2\2\u0502"+
+		"\u02c6\3\2\2\2\u0502\u02cf\3\2\2\2\u0502\u02d8\3\2\2\2\u0502\u02e5\3\2"+
+		"\2\2\u0502\u02e9\3\2\2\2\u0502\u02ee\3\2\2\2\u0502\u02f7\3\2\2\2\u0502"+
+		"\u0300\3\2\2\2\u0502\u0308\3\2\2\2\u0502\u0313\3\2\2\2\u0502\u0320\3\2"+
+		"\2\2\u0502\u0326\3\2\2\2\u0502\u0331\3\2\2\2\u0502\u033e\3\2\2\2\u0502"+
+		"\u034e\3\2\2\2\u0502\u0353\3\2\2\2\u0502\u035d\3\2\2\2\u0502\u0368\3\2"+
+		"\2\2\u0502\u0371\3\2\2\2\u0502\u0379\3\2\2\2\u0502\u0381\3\2\2\2\u0502"+
+		"\u0387\3\2\2\2\u0502\u038e\3\2\2\2\u0502\u0391\3\2\2\2\u0502\u0395\3\2"+
+		"\2\2\u0502\u039a\3\2\2\2\u0502\u039e\3\2\2\2\u0502\u03a3\3\2\2\2\u0502"+
+		"\u03a9\3\2\2\2\u0502\u03ad\3\2\2\2\u0502\u03b1\3\2\2\2\u0502\u03b3\3\2"+
+		"\2\2\u0502\u03bc\3\2\2\2\u0502\u03c2\3\2\2\2\u0502\u03c7\3\2\2\2\u0502"+
+		"\u03cb\3\2\2\2\u0502\u03cf\3\2\2\2\u0502\u03d3\3\2\2\2\u0502\u03d6\3\2"+
+		"\2\2\u0502\u03d9\3\2\2\2\u0502\u03dc\3\2\2\2\u0502\u03e0\3\2\2\2\u0502"+
+		"\u03e4\3\2\2\2\u0502\u03e8\3\2\2\2\u0502\u03ed\3\2\2\2\u0502\u03f4\3\2"+
+		"\2\2\u0502\u03fb\3\2\2\2\u0502\u03fe\3\2\2\2\u0502\u0403\3\2\2\2\u0502"+
+		"\u0408\3\2\2\2\u0502\u040b\3\2\2\2\u0502\u0410\3\2\2\2\u0502\u0415\3\2"+
+		"\2\2\u0502\u0418\3\2\2\2\u0502\u041c\3\2\2\2\u0502\u0422\3\2\2\2\u0502"+
+		"\u0426\3\2\2\2\u0502\u0429\3\2\2\2\u0502\u042c\3\2\2\2\u0502\u0433\3\2"+
+		"\2\2\u0502\u043a\3\2\2\2\u0502\u043f\3\2\2\2\u0502\u0443\3\2\2\2\u0502"+
+		"\u0447\3\2\2\2\u0502\u044d\3\2\2\2\u0502\u0453\3\2\2\2\u0502\u0458\3\2"+
+		"\2\2\u0502\u045c\3\2\2\2\u0502\u0460\3\2\2\2\u0502\u0467\3\2\2\2\u0502"+
+		"\u046f\3\2\2\2\u0502\u0478\3\2\2\2\u0502\u0480\3\2\2\2\u0502\u0486\3\2"+
+		"\2\2\u0502\u048f\3\2\2\2\u0502\u0492\3\2\2\2\u0502\u0495\3\2\2\2\u0502"+
+		"\u0498\3\2\2\2\u0502\u049d\3\2\2\2\u0502\u04a1\3\2\2\2\u0502\u04a6\3\2"+
+		"\2\2\u0502\u04b2\3\2\2\2\u0502\u04bd\3\2\2\2\u0502\u04c8\3\2\2\2\u0502"+
+		"\u04cc\3\2\2\2\u0502\u04d2\3\2\2\2\u0502\u04d8\3\2\2\2\u0502\u04e5\3\2"+
+		"\2\2\u0502\u04f1\3\2\2\2\u0502\u04f8\3\2\2\2\u0502\u04fb\3\2\2\2\u0503"+
+		"\6\3\2\2\2\u0504\u0505\7k\2\2\u0505\u0506\7o\2\2\u0506\u0507\7r\2\2\u0507"+
+		"\u0508\7q\2\2\u0508\u0509\7t\2\2\u0509\u050a\7v\2\2\u050a\b\3\2\2\2\u050b"+
+		"\u050c\7k\2\2\u050c\u050d\7p\2\2\u050d\u050e\7v\2\2\u050e\u050f\7g\2\2"+
+		"\u050f\u0510\7p\2\2\u0510\u0511\7v\2\2\u0511\n\3\2\2\2\u0512\u0513\7q"+
+		"\2\2\u0513\u0514\7t\2\2\u0514\u0515\7f\2\2\u0515\u0516\7g\2\2\u0516\u0517"+
+		"\7t\2\2\u0517\u0518\7g\2\2\u0518\u0519\7f\2\2\u0519\f\3\2\2\2\u051a\u051b"+
+		"\7h\2\2\u051b\u051c\7n\2\2\u051c\u051d\7q\2\2\u051d\u051e\7y\2\2\u051e"+
+		"\16\3\2\2\2\u051f\u0520\7o\2\2\u0520\u0521\7g\2\2\u0521\u0522\7v\2\2\u0522"+
+		"\u0523\7c\2\2\u0523\20\3\2\2\2\u0524\u0525\7v\2\2\u0525\u0526\7g\2\2\u0526"+
+		"\u0527\7t\2\2\u0527\u0528\7o\2\2\u0528\22\3\2\2\2\u0529\u052a\7h\2\2\u052a"+
+		"\u052b\7t\2\2\u052b\u052c\7c\2\2\u052c\u052d\7i\2\2\u052d\u052e\7o\2\2"+
+		"\u052e\u052f\7g\2\2\u052f\u0530\7p\2\2\u0530\u0531\7v\2\2\u0531\24\3\2"+
+		"\2\2\u0532\u0538\59\35\2\u0533\u0537\n\2\2\2\u0534\u0535\7^\2\2\u0535"+
+		"\u0537\7)\2\2\u0536\u0533\3\2\2\2\u0536\u0534\3\2\2\2\u0537\u053a\3\2"+
+		"\2\2\u0538\u0536\3\2\2\2\u0538\u0539\3\2\2\2\u0539\u053b\3\2\2\2\u053a"+
+		"\u0538\3\2\2\2\u053b\u053c\59\35\2\u053c\26\3\2\2\2\u053d\u0543\5;\36"+
+		"\2\u053e\u0542\n\3\2\2\u053f\u0540\7^\2\2\u0540\u0542\7$\2\2\u0541\u053e"+
+		"\3\2\2\2\u0541\u053f\3\2\2\2\u0542\u0545\3\2\2\2\u0543\u0541\3\2\2\2\u0543"+
+		"\u0544\3\2\2\2\u0544\u0546\3\2\2\2\u0545\u0543\3\2\2\2\u0546\u0547\5;"+
+		"\36\2\u0547\30\3\2\2\2\u0548\u0549\7v\2\2\u0549\u054a\7t\2\2\u054a\u054b"+
+		"\7w\2\2\u054b\u0552\7g\2\2\u054c\u054d\7h\2\2\u054d\u054e\7c\2\2\u054e"+
+		"\u054f\7n\2\2\u054f\u0550\7u\2\2\u0550\u0552\7g\2\2\u0551\u0548\3\2\2"+
+		"\2\u0551\u054c\3\2\2\2\u0552\32\3\2\2\2\u0553\u0554\7p\2\2\u0554\u0555"+
+		"\7w\2\2\u0555\u0556\7n\2\2\u0556\u0557\7n\2\2\u0557\34\3\2\2\2\u0558\u0559"+
+		"\7?\2\2\u0559\u055a\7?\2\2\u055a\36\3\2\2\2\u055b\u055c\7#\2\2\u055c\u055d"+
+		"\7?\2\2\u055d \3\2\2\2\u055e\u055f\7@\2\2\u055f\u0560\7?\2\2\u0560\"\3"+
+		"\2\2\2\u0561\u0562\7>\2\2\u0562\u0563\7?\2\2\u0563$\3\2\2\2\u0564\u0565"+
+		"\7@\2\2\u0565&\3\2\2\2\u0566\u0567\7>\2\2\u0567(\3\2\2\2\u0568\u0569\7"+
+		"(\2\2\u0569\u056a\7(\2\2\u056a*\3\2\2\2\u056b\u056c\7~\2\2\u056c\u056d"+
+		"\7~\2\2\u056d,\3\2\2\2\u056e\u056f\7~\2\2\u056f.\3\2\2\2\u0570\u0571\7"+
+		"#\2\2\u0571\60\3\2\2\2\u0572\u0573\7*\2\2\u0573\62\3\2\2\2\u0574\u0575"+
+		"\7+\2\2\u0575\64\3\2\2\2\u0576\u0577\7}\2\2\u0577\66\3\2\2\2\u0578\u0579"+
+		"\7\177\2\2\u05798\3\2\2\2\u057a\u057b\7)\2\2\u057b:\3\2\2\2\u057c\u057d"+
+		"\7$\2\2\u057d<\3\2\2\2\u057e\u057f\7\u0080\2\2\u057f>\3\2\2\2\u0580\u0581"+
+		"\7]\2\2\u0581@\3\2\2\2\u0582\u0583\7_\2\2\u0583B\3\2\2\2\u0584\u0585\7"+
+		"%\2\2\u0585D\3\2\2\2\u0586\u0587\7.\2\2\u0587F\3\2\2\2\u0588\u0589\7<"+
+		"\2\2\u0589H\3\2\2\2\u058a\u058b\7/\2\2\u058bJ\3\2\2\2\u058c\u058d\7\60"+
+		"\2\2\u058dL\3\2\2\2\u058e\u058f\7a\2\2\u058fN\3\2\2\2\u0590\u0591\7?\2"+
+		"\2\u0591P\3\2\2\2\u0592\u0593\7-\2\2\u0593R\3\2\2\2\u0594\u0595\7A\2\2"+
+		"\u0595T\3\2\2\2\u0596\u0597\7,\2\2\u0597V\3\2\2\2\u0598\u0599\7\61\2\2"+
+		"\u0599X\3\2\2\2\u059a\u059b\7\'\2\2\u059bZ\3\2\2\2\u059c\u059d\7B\2\2"+
+		"\u059d\\\3\2\2\2\u059e\u059f\7&\2\2\u059f^\3\2\2\2\u05a0\u05a9\7\62\2"+
+		"\2\u05a1\u05a5\t\4\2\2\u05a2\u05a4\t\5\2\2\u05a3\u05a2\3\2\2\2\u05a4\u05a7"+
+		"\3\2\2\2\u05a5\u05a3\3\2\2\2\u05a5\u05a6\3\2\2\2\u05a6\u05a9\3\2\2\2\u05a7"+
+		"\u05a5\3\2\2\2\u05a8\u05a0\3\2\2\2\u05a8\u05a1\3\2\2\2\u05a9`\3\2\2\2"+
+		"\u05aa\u05ac\5K&\2\u05ab\u05ad\t\6\2\2\u05ac\u05ab\3\2\2\2\u05ad\u05ae"+
+		"\3\2\2\2\u05ae\u05ac\3\2\2\2\u05ae\u05af\3\2\2\2\u05afb\3\2\2\2\u05b0"+
+		"\u05b2\t\7\2\2\u05b1\u05b3\t\b\2\2\u05b2\u05b1\3\2\2\2\u05b2\u05b3\3\2"+
+		"\2\2\u05b3\u05b4\3\2\2\2\u05b4\u05b5\5_\60\2\u05b5d\3\2\2\2\u05b6\u05ba"+
+		"\n\t\2\2\u05b7\u05b8\t\n\2\2\u05b8\u05ba\t\13\2\2\u05b9\u05b6\3\2\2\2"+
+		"\u05b9\u05b7\3\2\2\2\u05baf\3\2\2\2\u05bb\u05bc\t\f\2\2\u05bch\3\2\2\2"+
+		"\u05bd\u05c2\5e\63\2\u05be\u05c2\5M\'\2\u05bf\u05c2\5g\64\2\u05c0\u05c2"+
+		"\5]/\2\u05c1\u05bd\3\2\2\2\u05c1\u05be\3\2\2\2\u05c1\u05bf\3\2\2\2\u05c1"+
+		"\u05c0\3\2\2\2\u05c2\u05c3\3\2\2\2\u05c3\u05c1\3\2\2\2\u05c3\u05c4\3\2"+
+		"\2\2\u05c4\u05ce\3\2\2\2\u05c5\u05cd\5e\63\2\u05c6\u05cd\5]/\2\u05c7\u05cd"+
+		"\5g\64\2\u05c8\u05cd\t\6\2\2\u05c9\u05cd\5G$\2\u05ca\u05cd\5I%\2\u05cb"+
+		"\u05cd\5M\'\2\u05cc\u05c5\3\2\2\2\u05cc\u05c6\3\2\2\2\u05cc\u05c7\3\2"+
+		"\2\2\u05cc\u05c8\3\2\2\2\u05cc\u05c9\3\2\2\2\u05cc\u05ca\3\2\2\2\u05cc"+
+		"\u05cb\3\2\2\2\u05cd\u05d0\3\2\2\2\u05ce\u05cc\3\2\2\2\u05ce\u05cf\3\2"+
+		"\2\2\u05cfj\3\2\2\2\u05d0\u05ce\3\2\2\2\u05d1\u05d2\7\61\2\2\u05d2\u05d3"+
+		"\7\61\2\2\u05d3\u05d7\3\2\2\2\u05d4\u05d6\n\r\2\2\u05d5\u05d4\3\2\2\2"+
+		"\u05d6\u05d9\3\2\2\2\u05d7\u05d5\3\2\2\2\u05d7\u05d8\3\2\2\2\u05d8\u05db"+
+		"\3\2\2\2\u05d9\u05d7\3\2\2\2\u05da\u05dc\7\17\2\2\u05db\u05da\3\2\2\2"+
+		"\u05db\u05dc\3\2\2\2\u05dc\u05de\3\2\2\2\u05dd\u05df\t\16\2\2\u05de\u05dd"+
+		"\3\2\2\2\u05df\u05ec\3\2\2\2\u05e0\u05e1\7\61\2\2\u05e1\u05e2\7,\2\2\u05e2"+
+		"\u05e6\3\2\2\2\u05e3\u05e5\13\2\2\2\u05e4\u05e3\3\2\2\2\u05e5\u05e8\3"+
+		"\2\2\2\u05e6\u05e7\3\2\2\2\u05e6\u05e4\3\2\2\2\u05e7\u05e9\3\2\2\2\u05e8"+
+		"\u05e6\3\2\2\2\u05e9\u05ea\7,\2\2\u05ea\u05ec\7\61\2\2\u05eb\u05d1\3\2"+
+		"\2\2\u05eb\u05e0\3\2\2\2\u05ec\u05ed\3\2\2\2\u05ed\u05ee\b\66\2\2\u05ee"+
+		"l\3\2\2\2\u05ef\u05f1\t\17\2\2\u05f0\u05ef\3\2\2\2\u05f1\u05f2\3\2\2\2"+
+		"\u05f2\u05f0\3\2\2\2\u05f2\u05f3\3\2\2\2\u05f3\u05f4\3\2\2\2\u05f4\u05f5"+
+		"\b\67\2\2\u05f5n\3\2\2\2\u05f6\u05f7\13\2\2\2\u05f7p\3\2\2\2\30\2\u0502"+
+		"\u0536\u0538\u0541\u0543\u0551\u05a5\u05a8\u05ae\u05b2\u05b9\u05c1\u05c3"+
+		"\u05cc\u05ce\u05d7\u05db\u05de\u05e6\u05eb\u05f2\3\b\2\2";
 	public static final ATN _ATN =
 		new ATNDeserializer().deserialize(_serializedATN.toCharArray());
 	static {
diff --git a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdlLexer.tokens b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdlLexer.tokens
index 9b1574e..ed273b3 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdlLexer.tokens
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdlLexer.tokens
@@ -1,93 +1,95 @@
-FUN_NAME=1
-IMPORT=2
-INTENT=3
-ORDERED=4
-FLOW=5
-META=6
-TERM=7
-FRAG=8
-SQSTRING=9
-DQSTRING=10
-BOOL=11
-NULL=12
-EQ=13
-NEQ=14
-GTEQ=15
-LTEQ=16
-GT=17
-LT=18
-AND=19
-OR=20
-VERT=21
-NOT=22
-LPAR=23
-RPAR=24
-LBRACE=25
-RBRACE=26
-SQUOTE=27
-DQUOTE=28
-TILDA=29
-LBR=30
-RBR=31
-POUND=32
-COMMA=33
-COLON=34
-MINUS=35
-DOT=36
-UNDERSCORE=37
-ASSIGN=38
-PLUS=39
-QUESTION=40
-MULT=41
-DIV=42
-MOD=43
-AT=44
-DOLLAR=45
-INT=46
-REAL=47
-EXP=48
-ID=49
-COMMENT=50
-WS=51
-ErrorChar=52
-'import'=2
-'intent'=3
-'ordered'=4
-'flow'=5
-'meta'=6
-'term'=7
-'fragment'=8
-'null'=12
-'=='=13
-'!='=14
-'>='=15
-'<='=16
-'>'=17
-'<'=18
-'&&'=19
-'||'=20
-'|'=21
-'!'=22
-'('=23
-')'=24
-'{'=25
-'}'=26
-'\''=27
-'"'=28
-'~'=29
-'['=30
-']'=31
-'#'=32
-','=33
-':'=34
-'-'=35
-'.'=36
-'_'=37
-'='=38
-'+'=39
-'?'=40
-'*'=41
-'/'=42
-'%'=43
-'@'=44
-'$'=45
+T__0=1
+FUN_NAME=2
+IMPORT=3
+INTENT=4
+ORDERED=5
+FLOW=6
+META=7
+TERM=8
+FRAG=9
+SQSTRING=10
+DQSTRING=11
+BOOL=12
+NULL=13
+EQ=14
+NEQ=15
+GTEQ=16
+LTEQ=17
+GT=18
+LT=19
+AND=20
+OR=21
+VERT=22
+NOT=23
+LPAR=24
+RPAR=25
+LBRACE=26
+RBRACE=27
+SQUOTE=28
+DQUOTE=29
+TILDA=30
+LBR=31
+RBR=32
+POUND=33
+COMMA=34
+COLON=35
+MINUS=36
+DOT=37
+UNDERSCORE=38
+ASSIGN=39
+PLUS=40
+QUESTION=41
+MULT=42
+DIV=43
+MOD=44
+AT=45
+DOLLAR=46
+INT=47
+REAL=48
+EXP=49
+ID=50
+COMMENT=51
+WS=52
+ErrorChar=53
+'options'=1
+'import'=3
+'intent'=4
+'ordered'=5
+'flow'=6
+'meta'=7
+'term'=8
+'fragment'=9
+'null'=13
+'=='=14
+'!='=15
+'>='=16
+'<='=17
+'>'=18
+'<'=19
+'&&'=20
+'||'=21
+'|'=22
+'!'=23
+'('=24
+')'=25
+'{'=26
+'}'=27
+'\''=28
+'"'=29
+'~'=30
+'['=31
+']'=32
+'#'=33
+','=34
+':'=35
+'-'=36
+'.'=37
+'_'=38
+'='=39
+'+'=40
+'?'=41
+'*'=42
+'/'=43
+'%'=44
+'@'=45
+'$'=46
diff --git a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdlListener.java b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdlListener.java
index 9f159ec..7eb8104 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdlListener.java
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdlListener.java
@@ -1,4 +1,4 @@
-// Generated from /Users/nivanov/incubator-nlpcraft/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdl.g4 by ANTLR 4.9.1
+// Generated from C:/Users/Nikita Ivanov/Documents/GitHub/incubator-nlpcraft/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4\NCIdl.g4 by ANTLR 4.9.1
 package org.apache.nlpcraft.model.intent.compiler.antlr4;
 import org.antlr.v4.runtime.tree.ParseTreeListener;
 
@@ -168,6 +168,16 @@ public interface NCIdlListener extends ParseTreeListener {
 	 */
 	void exitMetaDecl(NCIdlParser.MetaDeclContext ctx);
 	/**
+	 * Enter a parse tree produced by {@link NCIdlParser#optDecl}.
+	 * @param ctx the parse tree
+	 */
+	void enterOptDecl(NCIdlParser.OptDeclContext ctx);
+	/**
+	 * Exit a parse tree produced by {@link NCIdlParser#optDecl}.
+	 * @param ctx the parse tree
+	 */
+	void exitOptDecl(NCIdlParser.OptDeclContext ctx);
+	/**
 	 * Enter a parse tree produced by {@link NCIdlParser#jsonObj}.
 	 * @param ctx the parse tree
 	 */
diff --git a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdlParser.java b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdlParser.java
index ba6736a..95451dd 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdlParser.java
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdlParser.java
@@ -1,4 +1,4 @@
-// Generated from /Users/nivanov/incubator-nlpcraft/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4/NCIdl.g4 by ANTLR 4.9.1
+// Generated from C:/Users/Nikita Ivanov/Documents/GitHub/incubator-nlpcraft/nlpcraft/src/main/scala/org/apache/nlpcraft/model/intent/compiler/antlr4\NCIdl.g4 by ANTLR 4.9.1
 package org.apache.nlpcraft.model.intent.compiler.antlr4;
 import org.antlr.v4.runtime.atn.*;
 import org.antlr.v4.runtime.dfa.DFA;
@@ -17,52 +17,54 @@ public class NCIdlParser extends Parser {
 	protected static final PredictionContextCache _sharedContextCache =
 		new PredictionContextCache();
 	public static final int
-		FUN_NAME=1, IMPORT=2, INTENT=3, ORDERED=4, FLOW=5, META=6, TERM=7, FRAG=8, 
-		SQSTRING=9, DQSTRING=10, BOOL=11, NULL=12, EQ=13, NEQ=14, GTEQ=15, LTEQ=16, 
-		GT=17, LT=18, AND=19, OR=20, VERT=21, NOT=22, LPAR=23, RPAR=24, LBRACE=25, 
-		RBRACE=26, SQUOTE=27, DQUOTE=28, TILDA=29, LBR=30, RBR=31, POUND=32, COMMA=33, 
-		COLON=34, MINUS=35, DOT=36, UNDERSCORE=37, ASSIGN=38, PLUS=39, QUESTION=40, 
-		MULT=41, DIV=42, MOD=43, AT=44, DOLLAR=45, INT=46, REAL=47, EXP=48, ID=49, 
-		COMMENT=50, WS=51, ErrorChar=52;
+		T__0=1, FUN_NAME=2, IMPORT=3, INTENT=4, ORDERED=5, FLOW=6, META=7, TERM=8, 
+		FRAG=9, SQSTRING=10, DQSTRING=11, BOOL=12, NULL=13, EQ=14, NEQ=15, GTEQ=16, 
+		LTEQ=17, GT=18, LT=19, AND=20, OR=21, VERT=22, NOT=23, LPAR=24, RPAR=25, 
+		LBRACE=26, RBRACE=27, SQUOTE=28, DQUOTE=29, TILDA=30, LBR=31, RBR=32, 
+		POUND=33, COMMA=34, COLON=35, MINUS=36, DOT=37, UNDERSCORE=38, ASSIGN=39, 
+		PLUS=40, QUESTION=41, MULT=42, DIV=43, MOD=44, AT=45, DOLLAR=46, INT=47, 
+		REAL=48, EXP=49, ID=50, COMMENT=51, WS=52, ErrorChar=53;
 	public static final int
 		RULE_idl = 0, RULE_synonym = 1, RULE_alias = 2, RULE_idlDecls = 3, RULE_idlDecl = 4, 
 		RULE_imp = 5, RULE_frag = 6, RULE_fragId = 7, RULE_fragRef = 8, RULE_fragMeta = 9, 
 		RULE_intent = 10, RULE_intentId = 11, RULE_orderedDecl = 12, RULE_mtdDecl = 13, 
-		RULE_flowDecl = 14, RULE_metaDecl = 15, RULE_jsonObj = 16, RULE_jsonPair = 17, 
-		RULE_jsonVal = 18, RULE_jsonArr = 19, RULE_termDecls = 20, RULE_termDecl = 21, 
-		RULE_termEq = 22, RULE_term = 23, RULE_mtdRef = 24, RULE_javaFqn = 25, 
-		RULE_javaClass = 26, RULE_termId = 27, RULE_expr = 28, RULE_vars = 29, 
-		RULE_varDecl = 30, RULE_paramList = 31, RULE_atom = 32, RULE_qstring = 33, 
-		RULE_minMax = 34, RULE_minMaxShortcut = 35, RULE_minMaxRange = 36, RULE_id = 37;
+		RULE_flowDecl = 14, RULE_metaDecl = 15, RULE_optDecl = 16, RULE_jsonObj = 17, 
+		RULE_jsonPair = 18, RULE_jsonVal = 19, RULE_jsonArr = 20, RULE_termDecls = 21, 
+		RULE_termDecl = 22, RULE_termEq = 23, RULE_term = 24, RULE_mtdRef = 25, 
+		RULE_javaFqn = 26, RULE_javaClass = 27, RULE_termId = 28, RULE_expr = 29, 
+		RULE_vars = 30, RULE_varDecl = 31, RULE_paramList = 32, RULE_atom = 33, 
+		RULE_qstring = 34, RULE_minMax = 35, RULE_minMaxShortcut = 36, RULE_minMaxRange = 37, 
+		RULE_id = 38;
 	private static String[] makeRuleNames() {
 		return new String[] {
 			"idl", "synonym", "alias", "idlDecls", "idlDecl", "imp", "frag", "fragId", 
 			"fragRef", "fragMeta", "intent", "intentId", "orderedDecl", "mtdDecl", 
-			"flowDecl", "metaDecl", "jsonObj", "jsonPair", "jsonVal", "jsonArr", 
-			"termDecls", "termDecl", "termEq", "term", "mtdRef", "javaFqn", "javaClass", 
-			"termId", "expr", "vars", "varDecl", "paramList", "atom", "qstring", 
-			"minMax", "minMaxShortcut", "minMaxRange", "id"
+			"flowDecl", "metaDecl", "optDecl", "jsonObj", "jsonPair", "jsonVal", 
+			"jsonArr", "termDecls", "termDecl", "termEq", "term", "mtdRef", "javaFqn", 
+			"javaClass", "termId", "expr", "vars", "varDecl", "paramList", "atom", 
+			"qstring", "minMax", "minMaxShortcut", "minMaxRange", "id"
 		};
 	}
 	public static final String[] ruleNames = makeRuleNames();
 
 	private static String[] makeLiteralNames() {
 		return new String[] {
-			null, null, "'import'", "'intent'", "'ordered'", "'flow'", "'meta'", 
-			"'term'", "'fragment'", null, null, null, "'null'", "'=='", "'!='", "'>='", 
-			"'<='", "'>'", "'<'", "'&&'", "'||'", "'|'", "'!'", "'('", "')'", "'{'", 
-			"'}'", "'''", "'\"'", "'~'", "'['", "']'", "'#'", "','", "':'", "'-'", 
-			"'.'", "'_'", "'='", "'+'", "'?'", "'*'", "'/'", "'%'", "'@'", "'$'"
+			null, "'options'", null, "'import'", "'intent'", "'ordered'", "'flow'", 
+			"'meta'", "'term'", "'fragment'", null, null, null, "'null'", "'=='", 
+			"'!='", "'>='", "'<='", "'>'", "'<'", "'&&'", "'||'", "'|'", "'!'", "'('", 
+			"')'", "'{'", "'}'", "'''", "'\"'", "'~'", "'['", "']'", "'#'", "','", 
+			"':'", "'-'", "'.'", "'_'", "'='", "'+'", "'?'", "'*'", "'/'", "'%'", 
+			"'@'", "'$'"
 		};
 	}
 	private static final String[] _LITERAL_NAMES = makeLiteralNames();
 	private static String[] makeSymbolicNames() {
 		return new String[] {
-			null, "FUN_NAME", "IMPORT", "INTENT", "ORDERED", "FLOW", "META", "TERM", 
-			"FRAG", "SQSTRING", "DQSTRING", "BOOL", "NULL", "EQ", "NEQ", "GTEQ", 
-			"LTEQ", "GT", "LT", "AND", "OR", "VERT", "NOT", "LPAR", "RPAR", "LBRACE", 
-			"RBRACE", "SQUOTE", "DQUOTE", "TILDA", "LBR", "RBR", "POUND", "COMMA", 
-			"COLON", "MINUS", "DOT", "UNDERSCORE", "ASSIGN", "PLUS", "QUESTION", 
+			null, null, "FUN_NAME", "IMPORT", "INTENT", "ORDERED", "FLOW", "META", 
+			"TERM", "FRAG", "SQSTRING", "DQSTRING", "BOOL", "NULL", "EQ", "NEQ", 
+			"GTEQ", "LTEQ", "GT", "LT", "AND", "OR", "VERT", "NOT", "LPAR", "RPAR", 
+			"LBRACE", "RBRACE", "SQUOTE", "DQUOTE", "TILDA", "LBR", "RBR", "POUND", 
+			"COMMA", "COLON", "MINUS", "DOT", "UNDERSCORE", "ASSIGN", "PLUS", "QUESTION", 
 			"MULT", "DIV", "MOD", "AT", "DOLLAR", "INT", "REAL", "EXP", "ID", "COMMENT", 
 			"WS", "ErrorChar"
 		};
@@ -143,9 +145,9 @@ public class NCIdlParser extends Parser {
 		try {
 			enterOuterAlt(_localctx, 1);
 			{
-			setState(76);
+			setState(78);
 			idlDecls(0);
-			setState(77);
+			setState(79);
 			match(EOF);
 			}
 		}
@@ -194,33 +196,33 @@ public class NCIdlParser extends Parser {
 		try {
 			enterOuterAlt(_localctx, 1);
 			{
-			setState(80);
+			setState(82);
 			_errHandler.sync(this);
 			_la = _input.LA(1);
 			if (_la==LBR) {
 				{
-				setState(79);
+				setState(81);
 				alias();
 				}
 			}
 
-			setState(82);
-			match(LBRACE);
 			setState(84);
+			match(LBRACE);
+			setState(86);
 			_errHandler.sync(this);
 			switch ( getInterpreter().adaptivePredict(_input,1,_ctx) ) {
 			case 1:
 				{
-				setState(83);
+				setState(85);
 				vars(0);
 				}
 				break;
 			}
-			setState(86);
+			setState(88);
 			expr(0);
-			setState(87);
+			setState(89);
 			match(RBRACE);
-			setState(88);
+			setState(90);
 			match(EOF);
 			}
 		}
@@ -261,11 +263,11 @@ public class NCIdlParser extends Parser {
 		try {
 			enterOuterAlt(_localctx, 1);
 			{
-			setState(90);
+			setState(92);
 			match(LBR);
-			setState(91);
+			setState(93);
 			id();
-			setState(92);
+			setState(94);
 			match(RBR);
 			}
 		}
@@ -317,11 +319,11 @@ public class NCIdlParser extends Parser {
 			enterOuterAlt(_localctx, 1);
 			{
 			{
-			setState(95);
+			setState(97);
 			idlDecl();
 			}
 			_ctx.stop = _input.LT(-1);
-			setState(101);
+			setState(103);
 			_errHandler.sync(this);
 			_alt = getInterpreter().adaptivePredict(_input,2,_ctx);
 			while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
@@ -332,14 +334,14 @@ public class NCIdlParser extends Parser {
 					{
 					_localctx = new IdlDeclsContext(_parentctx, _parentState);
 					pushNewRecursionContext(_localctx, _startState, RULE_idlDecls);
-					setState(97);
+					setState(99);
 					if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
-					setState(98);
+					setState(100);
 					idlDecl();
 					}
 					} 
 				}
-				setState(103);
+				setState(105);
 				_errHandler.sync(this);
 				_alt = getInterpreter().adaptivePredict(_input,2,_ctx);
 			}
@@ -384,27 +386,27 @@ public class NCIdlParser extends Parser {
 		IdlDeclContext _localctx = new IdlDeclContext(_ctx, getState());
 		enterRule(_localctx, 8, RULE_idlDecl);
 		try {
-			setState(107);
+			setState(109);
 			_errHandler.sync(this);
 			switch (_input.LA(1)) {
 			case INTENT:
 				enterOuterAlt(_localctx, 1);
 				{
-				setState(104);
+				setState(106);
 				intent();
 				}
 				break;
 			case FRAG:
 				enterOuterAlt(_localctx, 2);
 				{
-				setState(105);
+				setState(107);
 				frag();
 				}
 				break;
 			case IMPORT:
 				enterOuterAlt(_localctx, 3);
 				{
-				setState(106);
+				setState(108);
 				imp();
 				}
 				break;
@@ -450,13 +452,13 @@ public class NCIdlParser extends Parser {
 		try {
 			enterOuterAlt(_localctx, 1);
 			{
-			setState(109);
+			setState(111);
 			match(IMPORT);
-			setState(110);
+			setState(112);
 			match(LPAR);
-			setState(111);
+			setState(113);
 			qstring();
-			setState(112);
+			setState(114);
 			match(RPAR);
 			}
 		}
@@ -498,9 +500,9 @@ public class NCIdlParser extends Parser {
 		try {
 			enterOuterAlt(_localctx, 1);
 			{
-			setState(114);
+			setState(116);
 			fragId();
-			setState(115);
+			setState(117);
 			termDecls(0);
 			}
 		}
@@ -541,11 +543,11 @@ public class NCIdlParser extends Parser {
 		try {
 			enterOuterAlt(_localctx, 1);
 			{
-			setState(117);
+			setState(119);
 			match(FRAG);
-			setState(118);
+			setState(120);
 			match(ASSIGN);
-			setState(119);
+			setState(121);
 			id();
 			}
 		}
@@ -591,23 +593,23 @@ public class NCIdlParser extends Parser {
 		try {
 			enterOuterAlt(_localctx, 1);
 			{
-			setState(121);
+			setState(123);
 			match(FRAG);
-			setState(122);
+			setState(124);
 			match(LPAR);
-			setState(123);
-			id();
 			setState(125);
+			id();
+			setState(127);
 			_errHandler.sync(this);
 			_la = _input.LA(1);
 			if (_la==COMMA) {
 				{
-				setState(124);
+				setState(126);
 				fragMeta();
 				}
 			}
 
-			setState(127);
+			setState(129);
 			match(RPAR);
 			}
 		}
@@ -647,9 +649,9 @@ public class NCIdlParser extends Parser {
 		try {
 			enterOuterAlt(_localctx, 1);
 			{
-			setState(129);
+			setState(131);
 			match(COMMA);
-			setState(130);
+			setState(132);
 			jsonObj();
 			}
 		}
@@ -674,6 +676,9 @@ public class NCIdlParser extends Parser {
 		public OrderedDeclContext orderedDecl() {
 			return getRuleContext(OrderedDeclContext.class,0);
 		}
+		public OptDeclContext optDecl() {
+			return getRuleContext(OptDeclContext.class,0);
+		}
 		public FlowDeclContext flowDecl() {
 			return getRuleContext(FlowDeclContext.class,0);
 		}
@@ -701,39 +706,49 @@ public class NCIdlParser extends Parser {
 		try {
 			enterOuterAlt(_localctx, 1);
 			{
-			setState(132);
-			intentId();
 			setState(134);
+			intentId();
+			setState(136);
 			_errHandler.sync(this);
 			_la = _input.LA(1);
 			if (_la==ORDERED) {
 				{
-				setState(133);
+				setState(135);
 				orderedDecl();
 				}
 			}
 
-			setState(137);
+			setState(139);
+			_errHandler.sync(this);
+			_la = _input.LA(1);
+			if (_la==T__0) {
+				{
+				setState(138);
+				optDecl();
+				}
+			}
+
+			setState(142);
 			_errHandler.sync(this);
 			_la = _input.LA(1);
 			if (_la==FLOW) {
 				{
-				setState(136);
+				setState(141);
 				flowDecl();
 				}
 			}
 
-			setState(140);
+			setState(145);
 			_errHandler.sync(this);
 			_la = _input.LA(1);
 			if (_la==META) {
 				{
-				setState(139);
+				setState(144);
 				metaDecl();
 				}
 			}
 
-			setState(142);
+			setState(147);
 			termDecls(0);
 			}
 		}
@@ -774,11 +789,11 @@ public class NCIdlParser extends Parser {
 		try {
 			enterOuterAlt(_localctx, 1);
 			{
-			setState(144);
+			setState(149);
 			match(INTENT);
-			setState(145);
+			setState(150);
 			match(ASSIGN);
-			setState(146);
+			setState(151);
 			id();
 			}
 		}
@@ -817,11 +832,11 @@ public class NCIdlParser extends Parser {
 		try {
 			enterOuterAlt(_localctx, 1);
 			{
-			setState(148);
+			setState(153);
 			match(ORDERED);
-			setState(149);
+			setState(154);
 			match(ASSIGN);
-			setState(150);
+			setState(155);
 			match(BOOL);
 			}
 		}
@@ -864,11 +879,11 @@ public class NCIdlParser extends Parser {
 		try {
 			enterOuterAlt(_localctx, 1);
 			{
-			setState(152);
+			setState(157);
 			match(DIV);
-			setState(153);
+			setState(158);
 			mtdRef();
-			setState(154);
+			setState(159);
 			match(DIV);
 			}
 		}
@@ -912,23 +927,23 @@ public class NCIdlParser extends Parser {
 		try {
 			enterOuterAlt(_localctx, 1);
 			{
-			setState(156);
+			setState(161);
 			match(FLOW);
-			setState(157);
+			setState(162);
 			match(ASSIGN);
-			setState(160);
+			setState(165);
 			_errHandler.sync(this);
 			switch (_input.LA(1)) {
 			case SQSTRING:
 			case DQSTRING:
 				{
-				setState(158);
+				setState(163);
 				qstring();
 				}
 				break;
 			case DIV:
 				{
-				setState(159);
+				setState(164);
 				mtdDecl();
 				}
 				break;
@@ -974,11 +989,55 @@ public class NCIdlParser extends Parser {
 		try {
 			enterOuterAlt(_localctx, 1);
 			{
-			setState(162);
+			setState(167);
 			match(META);
-			setState(163);
+			setState(168);
 			match(ASSIGN);
-			setState(164);
+			setState(169);
+			jsonObj();
+			}
+		}
+		catch (RecognitionException re) {
+			_localctx.exception = re;
+			_errHandler.reportError(this, re);
+			_errHandler.recover(this, re);
+		}
+		finally {
+			exitRule();
+		}
+		return _localctx;
+	}
+
+	public static class OptDeclContext extends ParserRuleContext {
+		public TerminalNode ASSIGN() { return getToken(NCIdlParser.ASSIGN, 0); }
+		public JsonObjContext jsonObj() {
+			return getRuleContext(JsonObjContext.class,0);
+		}
+		public OptDeclContext(ParserRuleContext parent, int invokingState) {
+			super(parent, invokingState);
+		}
+		@Override public int getRuleIndex() { return RULE_optDecl; }
+		@Override
+		public void enterRule(ParseTreeListener listener) {
+			if ( listener instanceof NCIdlListener ) ((NCIdlListener)listener).enterOptDecl(this);
+		}
+		@Override
+		public void exitRule(ParseTreeListener listener) {
+			if ( listener instanceof NCIdlListener ) ((NCIdlListener)listener).exitOptDecl(this);
+		}
+	}
+
+	public final OptDeclContext optDecl() throws RecognitionException {
+		OptDeclContext _localctx = new OptDeclContext(_ctx, getState());
+		enterRule(_localctx, 32, RULE_optDecl);
+		try {
+			enterOuterAlt(_localctx, 1);
+			{
+			setState(171);
+			match(T__0);
+			setState(172);
+			match(ASSIGN);
+			setState(173);
 			jsonObj();
 			}
 		}
@@ -1022,45 +1081,45 @@ public class NCIdlParser extends Parser {
 
 	public final JsonObjContext jsonObj() throws RecognitionException {
 		JsonObjContext _localctx = new JsonObjContext(_ctx, getState());
-		enterRule(_localctx, 32, RULE_jsonObj);
+		enterRule(_localctx, 34, RULE_jsonObj);
 		int _la;
 		try {
-			setState(179);
+			setState(188);
 			_errHandler.sync(this);
-			switch ( getInterpreter().adaptivePredict(_input,10,_ctx) ) {
+			switch ( getInterpreter().adaptivePredict(_input,11,_ctx) ) {
 			case 1:
 				enterOuterAlt(_localctx, 1);
 				{
-				setState(166);
+				setState(175);
 				match(LBRACE);
-				setState(167);
+				setState(176);
 				jsonPair();
-				setState(172);
+				setState(181);
 				_errHandler.sync(this);
 				_la = _input.LA(1);
 				while (_la==COMMA) {
 					{
 					{
-					setState(168);
+					setState(177);
 					match(COMMA);
-					setState(169);
+					setState(178);
 					jsonPair();
 					}
 					}
-					setState(174);
+					setState(183);
 					_errHandler.sync(this);
 					_la = _input.LA(1);
 				}
-				setState(175);
+				setState(184);
 				match(RBRACE);
 				}
 				break;
 			case 2:
 				enterOuterAlt(_localctx, 2);
 				{
-				setState(177);
+				setState(186);
 				match(LBRACE);
-				setState(178);
+				setState(187);
 				match(RBRACE);
 				}
 				break;
@@ -1101,15 +1160,15 @@ public class NCIdlParser extends Parser {
 
 	public final JsonPairContext jsonPair() throws RecognitionException {
 		JsonPairContext _localctx = new JsonPairContext(_ctx, getState());
-		enterRule(_localctx, 34, RULE_jsonPair);
+		enterRule(_localctx, 36, RULE_jsonPair);
 		try {
 			enterOuterAlt(_localctx, 1);
 			{
-			setState(181);
+			setState(190);
 			qstring();
-			setState(182);
+			setState(191);
 			match(COLON);
-			setState(183);
+			setState(192);
 			jsonVal();
 			}
 		}
@@ -1156,17 +1215,17 @@ public class NCIdlParser extends Parser {
 
 	public final JsonValContext jsonVal() throws RecognitionException {
 		JsonValContext _localctx = new JsonValContext(_ctx, getState());
-		enterRule(_localctx, 36, RULE_jsonVal);
+		enterRule(_localctx, 38, RULE_jsonVal);
 		int _la;
 		try {
-			setState(200);
+			setState(209);
 			_errHandler.sync(this);
 			switch (_input.LA(1)) {
 			case SQSTRING:
 			case DQSTRING:
 				enterOuterAlt(_localctx, 1);
 				{
-				setState(185);
+				setState(194);
 				qstring();
 				}
 				break;
@@ -1174,34 +1233,34 @@ public class NCIdlParser extends Parser {
 			case INT:
 				enterOuterAlt(_localctx, 2);
 				{
-				setState(187);
+				setState(196);
 				_errHandler.sync(this);
 				_la = _input.LA(1);
 				if (_la==MINUS) {
 					{
-					setState(186);
+					setState(195);
 					match(MINUS);
 					}
 				}
 
-				setState(189);
+				setState(198);
 				match(INT);
-				setState(191);
+				setState(200);
 				_errHandler.sync(this);
 				_la = _input.LA(1);
 				if (_la==REAL) {
 					{
-					setState(190);
+					setState(199);
 					match(REAL);
 					}
 				}
 
-				setState(194);
+				setState(203);
 				_errHandler.sync(this);
 				_la = _input.LA(1);
 				if (_la==EXP) {
 					{
-					setState(193);
+					setState(202);
 					match(EXP);
 					}
 				}
@@ -1211,28 +1270,28 @@ public class NCIdlParser extends Parser {
 			case LBRACE:
 				enterOuterAlt(_localctx, 3);
 				{
-				setState(196);
+				setState(205);
 				jsonObj();
 				}
 				break;
 			case LBR:
 				enterOuterAlt(_localctx, 4);
 				{
-				setState(197);
+				setState(206);
 				jsonArr();
 				}
 				break;
 			case BOOL:
 				enterOuterAlt(_localctx, 5);
 				{
-				setState(198);
+				setState(207);
 				match(BOOL);
 				}
 				break;
 			case NULL:
 				enterOuterAlt(_localctx, 6);
 				{
-				setState(199);
+				setState(208);
 				match(NULL);
 				}
 				break;
@@ -1280,45 +1339,45 @@ public class NCIdlParser extends Parser {
 
 	public final JsonArrContext jsonArr() throws RecognitionException {
 		JsonArrContext _localctx = new JsonArrContext(_ctx, getState());
-		enterRule(_localctx, 38, RULE_jsonArr);
+		enterRule(_localctx, 40, RULE_jsonArr);
 		int _la;
 		try {
-			setState(215);
+			setState(224);
 			_errHandler.sync(this);
-			switch ( getInterpreter().adaptivePredict(_input,16,_ctx) ) {
+			switch ( getInterpreter().adaptivePredict(_input,17,_ctx) ) {
 			case 1:
 				enterOuterAlt(_localctx, 1);
 				{
-				setState(202);
+				setState(211);
 				match(LBR);
-				setState(203);
+				setState(212);
 				jsonVal();
-				setState(208);
+				setState(217);
 				_errHandler.sync(this);
 				_la = _input.LA(1);
 				while (_la==COMMA) {
 					{
 					{
-					setState(204);
+					setState(213);
 					match(COMMA);
-					setState(205);
+					setState(214);
 					jsonVal();
 					}
 					}
-					setState(210);
+					setState(219);
 					_errHandler.sync(this);
 					_la = _input.LA(1);
 				}
-				setState(211);
+				setState(220);
 				match(RBR);
 				}
 				break;
 			case 2:
 				enterOuterAlt(_localctx, 2);
 				{
-				setState(213);
+				setState(222);
 				match(LBR);
-				setState(214);
+				setState(223);
 				match(RBR);
 				}
 				break;
@@ -1365,20 +1424,20 @@ public class NCIdlParser extends Parser {
 		int _parentState = getState();
 		TermDeclsContext _localctx = new TermDeclsContext(_ctx, _parentState);
 		TermDeclsContext _prevctx = _localctx;
-		int _startState = 40;
-		enterRecursionRule(_localctx, 40, RULE_termDecls, _p);
+		int _startState = 42;
+		enterRecursionRule(_localctx, 42, RULE_termDecls, _p);
 		try {
 			int _alt;
 			enterOuterAlt(_localctx, 1);
 			{
 			{
-			setState(218);
+			setState(227);
 			termDecl();
 			}
 			_ctx.stop = _input.LT(-1);
-			setState(224);
+			setState(233);
 			_errHandler.sync(this);
-			_alt = getInterpreter().adaptivePredict(_input,17,_ctx);
+			_alt = getInterpreter().adaptivePredict(_input,18,_ctx);
 			while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
 				if ( _alt==1 ) {
 					if ( _parseListeners!=null ) triggerExitRuleEvent();
@@ -1387,16 +1446,16 @@ public class NCIdlParser extends Parser {
 					{
 					_localctx = new TermDeclsContext(_parentctx, _parentState);
 					pushNewRecursionContext(_localctx, _startState, RULE_termDecls);
-					setState(220);
+					setState(229);
 					if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
-					setState(221);
+					setState(230);
 					termDecl();
 					}
 					} 
 				}
-				setState(226);
+				setState(235);
 				_errHandler.sync(this);
-				_alt = getInterpreter().adaptivePredict(_input,17,_ctx);
+				_alt = getInterpreter().adaptivePredict(_input,18,_ctx);
 			}
 			}
 		}
@@ -1434,22 +1493,22 @@ public class NCIdlParser extends Parser {
 
 	public final TermDeclContext termDecl() throws RecognitionException {
 		TermDeclContext _localctx = new TermDeclContext(_ctx, getState());
-		enterRule(_localctx, 42, RULE_termDecl);
+		enterRule(_localctx, 44, RULE_termDecl);
 		try {
-			setState(229);
+			setState(238);
 			_errHandler.sync(this);
 			switch (_input.LA(1)) {
 			case TERM:
 				enterOuterAlt(_localctx, 1);
 				{
-				setState(227);
+				setState(236);
 				term();
 				}
 				break;
 			case FRAG:
 				enterOuterAlt(_localctx, 2);
 				{
-				setState(228);
+				setState(237);
 				fragRef();
 				}
 				break;
@@ -1487,12 +1546,12 @@ public class NCIdlParser extends Parser {
 
 	public final TermEqContext termEq() throws RecognitionException {
 		TermEqContext _localctx = new TermEqContext(_ctx, getState());
-		enterRule(_localctx, 44, RULE_termEq);
+		enterRule(_localctx, 46, RULE_termEq);
 		int _la;
 		try {
 			enterOuterAlt(_localctx, 1);
 			{
-			setState(231);
+			setState(240);
 			_la = _input.LA(1);
 			if ( !(_la==TILDA || _la==ASSIGN) ) {
 			_errHandler.recoverInline(this);
@@ -1553,65 +1612,65 @@ public class NCIdlParser extends Parser {
 
 	public final TermContext term() throws RecognitionException {
 		TermContext _localctx = new TermContext(_ctx, getState());
-		enterRule(_localctx, 46, RULE_term);
+		enterRule(_localctx, 48, RULE_term);
 		int _la;
 		try {
 			enterOuterAlt(_localctx, 1);
 			{
-			setState(233);
+			setState(242);
 			match(TERM);
-			setState(235);
+			setState(244);
 			_errHandler.sync(this);
 			_la = _input.LA(1);
 			if (_la==LPAR) {
 				{
-				setState(234);
+				setState(243);
 				termId();
 				}
 			}
 
-			setState(237);
-			termEq();
 			setState(246);
+			termEq();
+			setState(255);
 			_errHandler.sync(this);
 			switch (_input.LA(1)) {
 			case LBRACE:
 				{
 				{
-				setState(238);
+				setState(247);
 				match(LBRACE);
-				setState(240);
+				setState(249);
 				_errHandler.sync(this);
-				switch ( getInterpreter().adaptivePredict(_input,20,_ctx) ) {
+				switch ( getInterpreter().adaptivePredict(_input,21,_ctx) ) {
 				case 1:
 					{
-					setState(239);
+					setState(248);
 					vars(0);
 					}
 					break;
 				}
-				setState(242);
+				setState(251);
 				expr(0);
-				setState(243);
+				setState(252);
 				match(RBRACE);
 				}
 				}
 				break;
 			case DIV:
 				{
-				setState(245);
+				setState(254);
 				mtdDecl();
 				}
 				break;
 			default:
 				throw new NoViableAltException(this);
 			}
-			setState(249);
+			setState(258);
 			_errHandler.sync(this);
-			switch ( getInterpreter().adaptivePredict(_input,22,_ctx) ) {
+			switch ( getInterpreter().adaptivePredict(_input,23,_ctx) ) {
 			case 1:
 				{
-				setState(248);
+				setState(257);
 				minMax();
 				}
 				break;
@@ -1653,24 +1712,24 @@ public class NCIdlParser extends Parser {
 
 	public final MtdRefContext mtdRef() throws RecognitionException {
 		MtdRefContext _localctx = new MtdRefContext(_ctx, getState());
-		enterRule(_localctx, 48, RULE_mtdRef);
+		enterRule(_localctx, 50, RULE_mtdRef);
 		int _la;
 		try {
 			enterOuterAlt(_localctx, 1);
 			{
-			setState(252);
+			setState(261);
 			_errHandler.sync(this);
 			_la = _input.LA(1);
 			if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << FUN_NAME) | (1L << IMPORT) | (1L << INTENT) | (1L << ORDERED) | (1L << FLOW) | (1L << META) | (1L << TERM) | (1L << FRAG) | (1L << ID))) != 0)) {
 				{
-				setState(251);
+				setState(260);
 				javaFqn(0);
 				}
 			}
 
-			setState(254);
+			setState(263);
 			match(POUND);
-			setState(255);
+			setState(264);
 			id();
 			}
 		}
@@ -1716,20 +1775,20 @@ public class NCIdlParser extends Parser {
 		int _parentState = getState();
 		JavaFqnContext _localctx = new JavaFqnContext(_ctx, _parentState);
 		JavaFqnContext _prevctx = _localctx;
-		int _startState = 50;
-		enterRecursionRule(_localctx, 50, RULE_javaFqn, _p);
+		int _startState = 52;
+		enterRecursionRule(_localctx, 52, RULE_javaFqn, _p);
 		try {
 			int _alt;
 			enterOuterAlt(_localctx, 1);
 			{
 			{
-			setState(258);
+			setState(267);
 			javaClass();
 			}
 			_ctx.stop = _input.LT(-1);
-			setState(265);
+			setState(274);
 			_errHandler.sync(this);
-			_alt = getInterpreter().adaptivePredict(_input,24,_ctx);
+			_alt = getInterpreter().adaptivePredict(_input,25,_ctx);
 			while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
 				if ( _alt==1 ) {
 					if ( _parseListeners!=null ) triggerExitRuleEvent();
@@ -1738,18 +1797,18 @@ public class NCIdlParser extends Parser {
 					{
 					_localctx = new JavaFqnContext(_parentctx, _parentState);
 					pushNewRecursionContext(_localctx, _startState, RULE_javaFqn);
-					setState(260);
+					setState(269);
 					if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
-					setState(261);
+					setState(270);
 					match(DOT);
-					setState(262);
+					setState(271);
 					javaClass();
 					}
 					} 
 				}
-				setState(267);
+				setState(276);
 				_errHandler.sync(this);
-				_alt = getInterpreter().adaptivePredict(_input,24,_ctx);
+				_alt = getInterpreter().adaptivePredict(_input,25,_ctx);
 			}
 			}
 		}
@@ -1791,65 +1850,65 @@ public class NCIdlParser extends Parser {
 
 	public final JavaClassContext javaClass() throws RecognitionException {
 		JavaClassContext _localctx = new JavaClassContext(_ctx, getState());
-		enterRule(_localctx, 52, RULE_javaClass);
+		enterRule(_localctx, 54, RULE_javaClass);
 		try {
-			setState(276);
+			setState(285);
 			_errHandler.sync(this);
 			switch (_input.LA(1)) {
 			case FUN_NAME:
 			case ID:
 				enterOuterAlt(_localctx, 1);
 				{
-				setState(268);
+				setState(277);
 				id();
 				}
 				break;
 			case IMPORT:
 				enterOuterAlt(_localctx, 2);
 				{
-				setState(269);
+				setState(278);
 				match(IMPORT);
 				}
 				break;
 			case INTENT:
 				enterOuterAlt(_localctx, 3);
 				{
-				setState(270);
+				setState(279);
 				match(INTENT);
 				}
 				break;
 			case ORDERED:
 				enterOuterAlt(_localctx, 4);
 				{
-				setState(271);
+				setState(280);
 				match(ORDERED);
 				}
 				break;
 			case FLOW:
 				enterOuterAlt(_localctx, 5);
 				{
-				setState(272);
+				setState(281);
 				match(FLOW);
 				}
 				break;
 			case META:
 				enterOuterAlt(_localctx, 6);
 				{
-				setState(273);
+				setState(282);
 				match(META);
 				}
 				break;
 			case TERM:
 				enterOuterAlt(_localctx, 7);
 				{
-				setState(274);
+				setState(283);
 				match(TERM);
 				}
 				break;
 			case FRAG:
 				enterOuterAlt(_localctx, 8);
 				{
-				setState(275);
+				setState(284);
 				match(FRAG);
 				}
 				break;
@@ -1890,15 +1949,15 @@ public class NCIdlParser extends Parser {
 
 	public final TermIdContext termId() throws RecognitionException {
 		TermIdContext _localctx = new TermIdContext(_ctx, getState());
-		enterRule(_localctx, 54, RULE_termId);
+		enterRule(_localctx, 56, RULE_termId);
 		try {
 			enterOuterAlt(_localctx, 1);
 			{
-			setState(278);
+			setState(287);
 			match(LPAR);
-			setState(279);
+			setState(288);
 			id();
-			setState(280);
+			setState(289);
 			match(RPAR);
 			}
 		}
@@ -2116,14 +2175,14 @@ public class NCIdlParser extends Parser {
 		int _parentState = getState();
 		ExprContext _localctx = new ExprContext(_ctx, _parentState);
 		ExprContext _prevctx = _localctx;
-		int _startState = 56;
-		enterRecursionRule(_localctx, 56, RULE_expr, _p);
+		int _startState = 58;
+		enterRecursionRule(_localctx, 58, RULE_expr, _p);
 		int _la;
 		try {
 			int _alt;
 			enterOuterAlt(_localctx, 1);
 			{
-			setState(298);
+			setState(307);
 			_errHandler.sync(this);
 			switch (_input.LA(1)) {
 			case NOT:
@@ -2133,7 +2192,7 @@ public class NCIdlParser extends Parser {
 				_ctx = _localctx;
 				_prevctx = _localctx;
 
-				setState(283);
+				setState(292);
 				((UnaryExprContext)_localctx).op = _input.LT(1);
 				_la = _input.LA(1);
 				if ( !(_la==NOT || _la==MINUS) ) {
@@ -2144,7 +2203,7 @@ public class NCIdlParser extends Parser {
 					_errHandler.reportMatch(this);
 					consume();
 				}
-				setState(284);
+				setState(293);
 				expr(10);
 				}
 				break;
@@ -2153,11 +2212,11 @@ public class NCIdlParser extends Parser {
 				_localctx = new ParExprContext(_localctx);
 				_ctx = _localctx;
 				_prevctx = _localctx;
-				setState(285);
+				setState(294);
 				match(LPAR);
-				setState(286);
+				setState(295);
 				expr(0);
-				setState(287);
+				setState(296);
 				match(RPAR);
 				}
 				break;
@@ -2170,7 +2229,7 @@ public class NCIdlParser extends Parser {
 				_localctx = new AtomExprContext(_localctx);
 				_ctx = _localctx;
 				_prevctx = _localctx;
-				setState(289);
+				setState(298);
 				atom();
 				}
 				break;
@@ -2179,21 +2238,21 @@ public class NCIdlParser extends Parser {
 				_localctx = new CallExprContext(_localctx);
 				_ctx = _localctx;
 				_prevctx = _localctx;
-				setState(290);
+				setState(299);
 				match(FUN_NAME);
-				setState(291);
+				setState(300);
 				match(LPAR);
-				setState(293);
+				setState(302);
 				_errHandler.sync(this);
 				_la = _input.LA(1);
 				if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << FUN_NAME) | (1L << SQSTRING) | (1L << DQSTRING) | (1L << BOOL) | (1L << NULL) | (1L << NOT) | (1L << LPAR) | (1L << MINUS) | (1L << AT) | (1L << INT))) != 0)) {
 					{
-					setState(292);
+					setState(301);
 					paramList(0);
 					}
 				}
 
-				setState(295);
+				setState(304);
 				match(RPAR);
 				}
 				break;
@@ -2202,9 +2261,9 @@ public class NCIdlParser extends Parser {
 				_localctx = new VarRefContext(_localctx);
 				_ctx = _localctx;
 				_prevctx = _localctx;
-				setState(296);
+				setState(305);
 				match(AT);
-				setState(297);
+				setState(306);
 				id();
 				}
 				break;
@@ -2212,24 +2271,24 @@ public class NCIdlParser extends Parser {
 				throw new NoViableAltException(this);
 			}
 			_ctx.stop = _input.LT(-1);
-			setState(317);
+			setState(326);
 			_errHandler.sync(this);
-			_alt = getInterpreter().adaptivePredict(_input,29,_ctx);
+			_alt = getInterpreter().adaptivePredict(_input,30,_ctx);
 			while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
 				if ( _alt==1 ) {
 					if ( _parseListeners!=null ) triggerExitRuleEvent();
 					_prevctx = _localctx;
 					{
-					setState(315);
+					setState(324);
 					_errHandler.sync(this);
-					switch ( getInterpreter().adaptivePredict(_input,28,_ctx) ) {
+					switch ( getInterpreter().adaptivePredict(_input,29,_ctx) ) {
 					case 1:
 						{
 						_localctx = new MultDivModExprContext(new ExprContext(_parentctx, _parentState));
 						pushNewRecursionContext(_localctx, _startState, RULE_expr);
-						setState(300);
+						setState(309);
 						if (!(precpred(_ctx, 8))) throw new FailedPredicateException(this, "precpred(_ctx, 8)");
-						setState(301);
+						setState(310);
 						((MultDivModExprContext)_localctx).op = _input.LT(1);
 						_la = _input.LA(1);
 						if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << MULT) | (1L << DIV) | (1L << MOD))) != 0)) ) {
@@ -2240,7 +2299,7 @@ public class NCIdlParser extends Parser {
 							_errHandler.reportMatch(this);
 							consume();
 						}
-						setState(302);
+						setState(311);
 						expr(9);
 						}
 						break;
@@ -2248,9 +2307,9 @@ public class NCIdlParser extends Parser {
 						{
 						_localctx = new PlusMinusExprContext(new ExprContext(_parentctx, _parentState));
 						pushNewRecursionContext(_localctx, _startState, RULE_expr);
-						setState(303);
+						setState(312);
 						if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)");
-						setState(304);
+						setState(313);
 						((PlusMinusExprContext)_localctx).op = _input.LT(1);
 						_la = _input.LA(1);
 						if ( !(_la==MINUS || _la==PLUS) ) {
@@ -2261,7 +2320,7 @@ public class NCIdlParser extends Parser {
 							_errHandler.reportMatch(this);
 							consume();
 						}
-						setState(305);
+						setState(314);
 						expr(8);
 						}
 						break;
@@ -2269,9 +2328,9 @@ public class NCIdlParser extends Parser {
 						{
 						_localctx = new CompExprContext(new ExprContext(_parentctx, _parentState));
 						pushNewRecursionContext(_localctx, _startState, RULE_expr);
-						setState(306);
+						setState(315);
 						if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)");
-						setState(307);
+						setState(316);
 						((CompExprContext)_localctx).op = _input.LT(1);
 						_la = _input.LA(1);
 						if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << GTEQ) | (1L << LTEQ) | (1L << GT) | (1L << LT))) != 0)) ) {
@@ -2282,7 +2341,7 @@ public class NCIdlParser extends Parser {
 							_errHandler.reportMatch(this);
 							consume();
 						}
-						setState(308);
+						setState(317);
 						expr(7);
 						}
 						break;
@@ -2290,9 +2349,9 @@ public class NCIdlParser extends Parser {
 						{
 						_localctx = new EqNeqExprContext(new ExprContext(_parentctx, _parentState));
 						pushNewRecursionContext(_localctx, _startState, RULE_expr);
-						setState(309);
+						setState(318);
 						if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)");
-						setState(310);
+						setState(319);
 						((EqNeqExprContext)_localctx).op = _input.LT(1);
 						_la = _input.LA(1);
 						if ( !(_la==EQ || _la==NEQ) ) {
@@ -2303,7 +2362,7 @@ public class NCIdlParser extends Parser {
 							_errHandler.reportMatch(this);
 							consume();
 						}
-						setState(311);
+						setState(320);
 						expr(6);
 						}
 						break;
@@ -2311,9 +2370,9 @@ public class NCIdlParser extends Parser {
 						{
 						_localctx = new AndOrExprContext(new ExprContext(_parentctx, _parentState));
 						pushNewRecursionContext(_localctx, _startState, RULE_expr);
-						setState(312);
+						setState(321);
 						if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)");
-						setState(313);
+						setState(322);
 						((AndOrExprContext)_localctx).op = _input.LT(1);
 						_la = _input.LA(1);
 						if ( !(_la==AND || _la==OR) ) {
@@ -2324,16 +2383,16 @@ public class NCIdlParser extends Parser {
 							_errHandler.reportMatch(this);
 							consume();
 						}
-						setState(314);
+						setState(323);
 						expr(5);
 						}
 						break;
 					}
 					} 
 				}
-				setState(319);
+				setState(328);
 				_errHandler.sync(this);
-				_alt = getInterpreter().adaptivePredict(_input,29,_ctx);
+				_alt = getInterpreter().adaptivePredict(_input,30,_ctx);
 			}
 			}
 		}
@@ -2378,20 +2437,20 @@ public class NCIdlParser extends Parser {
 		int _parentState = getState();
 		VarsContext _localctx = new VarsContext(_ctx, _parentState);
 		VarsContext _prevctx = _localctx;
-		int _startState = 58;
-		enterRecursionRule(_localctx, 58, RULE_vars, _p);
+		int _startState = 60;
+		enterRecursionRule(_localctx, 60, RULE_vars, _p);
 		try {
 			int _alt;
 			enterOuterAlt(_localctx, 1);
 			{
 			{
-			setState(321);
+			setState(330);
 			varDecl();
 			}
 			_ctx.stop = _input.LT(-1);
-			setState(327);
+			setState(336);
 			_errHandler.sync(this);
-			_alt = getInterpreter().adaptivePredict(_input,30,_ctx);
+			_alt = getInterpreter().adaptivePredict(_input,31,_ctx);
 			while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
 				if ( _alt==1 ) {
 					if ( _parseListeners!=null ) triggerExitRuleEvent();
@@ -2400,16 +2459,16 @@ public class NCIdlParser extends Parser {
 					{
 					_localctx = new VarsContext(_parentctx, _parentState);
 					pushNewRecursionContext(_localctx, _startState, RULE_vars);
-					setState(323);
+					setState(332);
 					if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
-					setState(324);
+					setState(333);
 					varDecl();
 					}
 					} 
 				}
-				setState(329);
+				setState(338);
 				_errHandler.sync(this);
-				_alt = getInterpreter().adaptivePredict(_input,30,_ctx);
+				_alt = getInterpreter().adaptivePredict(_input,31,_ctx);
 			}
 			}
 		}
@@ -2449,17 +2508,17 @@ public class NCIdlParser extends Parser {
 
 	public final VarDeclContext varDecl() throws RecognitionException {
 		VarDeclContext _localctx = new VarDeclContext(_ctx, getState());
-		enterRule(_localctx, 60, RULE_varDecl);
+		enterRule(_localctx, 62, RULE_varDecl);
 		try {
 			enterOuterAlt(_localctx, 1);
 			{
-			setState(330);
+			setState(339);
 			match(AT);
-			setState(331);
+			setState(340);
 			id();
-			setState(332);
+			setState(341);
 			match(ASSIGN);
-			setState(333);
+			setState(342);
 			expr(0);
 			}
 		}
@@ -2505,20 +2564,20 @@ public class NCIdlParser extends Parser {
 		int _parentState = getState();
 		ParamListContext _localctx = new ParamListContext(_ctx, _parentState);
 		ParamListContext _prevctx = _localctx;
-		int _startState = 62;
-		enterRecursionRule(_localctx, 62, RULE_paramList, _p);
+		int _startState = 64;
+		enterRecursionRule(_localctx, 64, RULE_paramList, _p);
 		try {
 			int _alt;
 			enterOuterAlt(_localctx, 1);
 			{
 			{
-			setState(336);
+			setState(345);
 			expr(0);
 			}
 			_ctx.stop = _input.LT(-1);
-			setState(343);
+			setState(352);
 			_errHandler.sync(this);
-			_alt = getInterpreter().adaptivePredict(_input,31,_ctx);
+			_alt = getInterpreter().adaptivePredict(_input,32,_ctx);
 			while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
 				if ( _alt==1 ) {
 					if ( _parseListeners!=null ) triggerExitRuleEvent();
@@ -2527,18 +2586,18 @@ public class NCIdlParser extends Parser {
 					{
 					_localctx = new ParamListContext(_parentctx, _parentState);
 					pushNewRecursionContext(_localctx, _startState, RULE_paramList);
-					setState(338);
+					setState(347);
 					if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
-					setState(339);
+					setState(348);
 					match(COMMA);
-					setState(340);
+					setState(349);
 					expr(0);
 					}
 					} 
 				}
-				setState(345);
+				setState(354);
 				_errHandler.sync(this);
-				_alt = getInterpreter().adaptivePredict(_input,31,_ctx);
+				_alt = getInterpreter().adaptivePredict(_input,32,_ctx);
 			}
 			}
 		}
@@ -2578,39 +2637,39 @@ public class NCIdlParser extends Parser {
 
 	public final AtomContext atom() throws RecognitionException {
 		AtomContext _localctx = new AtomContext(_ctx, getState());
-		enterRule(_localctx, 64, RULE_atom);
+		enterRule(_localctx, 66, RULE_atom);
 		try {
-			setState(356);
+			setState(365);
 			_errHandler.sync(this);
 			switch (_input.LA(1)) {
 			case NULL:
 				enterOuterAlt(_localctx, 1);
 				{
-				setState(346);
+				setState(355);
 				match(NULL);
 				}
 				break;
 			case INT:
 				enterOuterAlt(_localctx, 2);
 				{
-				setState(347);
+				setState(356);
 				match(INT);
-				setState(349);
+				setState(358);
 				_errHandler.sync(this);
-				switch ( getInterpreter().adaptivePredict(_input,32,_ctx) ) {
+				switch ( getInterpreter().adaptivePredict(_input,33,_ctx) ) {
 				case 1:
 					{
-					setState(348);
+					setState(357);
 					match(REAL);
 					}
 					break;
 				}
-				setState(352);
+				setState(361);
 				_errHandler.sync(this);
-				switch ( getInterpreter().adaptivePredict(_input,33,_ctx) ) {
+				switch ( getInterpreter().adaptivePredict(_input,34,_ctx) ) {
 				case 1:
 					{
-					setState(351);
+					setState(360);
 					match(EXP);
 					}
 					break;
@@ -2620,7 +2679,7 @@ public class NCIdlParser extends Parser {
 			case BOOL:
 				enterOuterAlt(_localctx, 3);
 				{
-				setState(354);
+				setState(363);
 				match(BOOL);
 				}
 				break;
@@ -2628,7 +2687,7 @@ public class NCIdlParser extends Parser {
 			case DQSTRING:
 				enterOuterAlt(_localctx, 4);
 				{
-				setState(355);
+				setState(364);
 				qstring();
 				}
 				break;
@@ -2666,12 +2725,12 @@ public class NCIdlParser extends Parser {
 
 	public final QstringContext qstring() throws RecognitionException {
 		QstringContext _localctx = new QstringContext(_ctx, getState());
-		enterRule(_localctx, 66, RULE_qstring);
+		enterRule(_localctx, 68, RULE_qstring);
 		int _la;
 		try {
 			enterOuterAlt(_localctx, 1);
 			{
-			setState(358);
+			setState(367);
 			_la = _input.LA(1);
 			if ( !(_la==SQSTRING || _la==DQSTRING) ) {
 			_errHandler.recoverInline(this);
@@ -2717,9 +2776,9 @@ public class NCIdlParser extends Parser {
 
 	public final MinMaxContext minMax() throws RecognitionException {
 		MinMaxContext _localctx = new MinMaxContext(_ctx, getState());
-		enterRule(_localctx, 68, RULE_minMax);
+		enterRule(_localctx, 70, RULE_minMax);
 		try {
-			setState(362);
+			setState(371);
 			_errHandler.sync(this);
 			switch (_input.LA(1)) {
 			case PLUS:
@@ -2727,14 +2786,14 @@ public class NCIdlParser extends Parser {
 			case MULT:
 				enterOuterAlt(_localctx, 1);
 				{
-				setState(360);
+				setState(369);
 				minMaxShortcut();
 				}
 				break;
 			case LBR:
 				enterOuterAlt(_localctx, 2);
 				{
-				setState(361);
+				setState(370);
 				minMaxRange();
 				}
 				break;
@@ -2773,12 +2832,12 @@ public class NCIdlParser extends Parser {
 
 	public final MinMaxShortcutContext minMaxShortcut() throws RecognitionException {
 		MinMaxShortcutContext _localctx = new MinMaxShortcutContext(_ctx, getState());
-		enterRule(_localctx, 70, RULE_minMaxShortcut);
+		enterRule(_localctx, 72, RULE_minMaxShortcut);
 		int _la;
 		try {
 			enterOuterAlt(_localctx, 1);
 			{
-			setState(364);
+			setState(373);
 			_la = _input.LA(1);
 			if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << PLUS) | (1L << QUESTION) | (1L << MULT))) != 0)) ) {
 			_errHandler.recoverInline(this);
@@ -2825,19 +2884,19 @@ public class NCIdlParser extends Parser {
 
 	public final MinMaxRangeContext minMaxRange() throws RecognitionException {
 		MinMaxRangeContext _localctx = new MinMaxRangeContext(_ctx, getState());
-		enterRule(_localctx, 72, RULE_minMaxRange);
+		enterRule(_localctx, 74, RULE_minMaxRange);
 		try {
 			enterOuterAlt(_localctx, 1);
 			{
-			setState(366);
+			setState(375);
 			match(LBR);
-			setState(367);
+			setState(376);
 			match(INT);
-			setState(368);
+			setState(377);
 			match(COMMA);
-			setState(369);
+			setState(378);
 			match(INT);
-			setState(370);
+			setState(379);
 			match(RBR);
 			}
 		}
@@ -2871,12 +2930,12 @@ public class NCIdlParser extends Parser {
 
 	public final IdContext id() throws RecognitionException {
 		IdContext _localctx = new IdContext(_ctx, getState());
-		enterRule(_localctx, 74, RULE_id);
+		enterRule(_localctx, 76, RULE_id);
 		int _la;
 		try {
 			enterOuterAlt(_localctx, 1);
 			{
-			setState(372);
+			setState(381);
 			_la = _input.LA(1);
 			if ( !(_la==FUN_NAME || _la==ID) ) {
 			_errHandler.recoverInline(this);
@@ -2903,15 +2962,15 @@ public class NCIdlParser extends Parser {
 		switch (ruleIndex) {
 		case 3:
 			return idlDecls_sempred((IdlDeclsContext)_localctx, predIndex);
-		case 20:
+		case 21:
 			return termDecls_sempred((TermDeclsContext)_localctx, predIndex);
-		case 25:
+		case 26:
 			return javaFqn_sempred((JavaFqnContext)_localctx, predIndex);
-		case 28:
-			return expr_sempred((ExprContext)_localctx, predIndex);
 		case 29:
+			return expr_sempred((ExprContext)_localctx, predIndex);
+		case 30:
 			return vars_sempred((VarsContext)_localctx, predIndex);
-		case 31:
+		case 32:
 			return paramList_sempred((ParamListContext)_localctx, predIndex);
 		}
 		return true;
@@ -2968,139 +3027,142 @@ public class NCIdlParser extends Parser {
 	}
 
 	public static final String _serializedATN =
-		"\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\66\u0179\4\2\t\2"+
+		"\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\67\u0182\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\'\3\2\3\2\3\2\3\3\5\3S\n\3\3"+
-		"\3\3\3\5\3W\n\3\3\3\3\3\3\3\3\3\3\4\3\4\3\4\3\4\3\5\3\5\3\5\3\5\3\5\7"+
-		"\5f\n\5\f\5\16\5i\13\5\3\6\3\6\3\6\5\6n\n\6\3\7\3\7\3\7\3\7\3\7\3\b\3"+
-		"\b\3\b\3\t\3\t\3\t\3\t\3\n\3\n\3\n\3\n\5\n\u0080\n\n\3\n\3\n\3\13\3\13"+
-		"\3\13\3\f\3\f\5\f\u0089\n\f\3\f\5\f\u008c\n\f\3\f\5\f\u008f\n\f\3\f\3"+
-		"\f\3\r\3\r\3\r\3\r\3\16\3\16\3\16\3\16\3\17\3\17\3\17\3\17\3\20\3\20\3"+
-		"\20\3\20\5\20\u00a3\n\20\3\21\3\21\3\21\3\21\3\22\3\22\3\22\3\22\7\22"+
-		"\u00ad\n\22\f\22\16\22\u00b0\13\22\3\22\3\22\3\22\3\22\5\22\u00b6\n\22"+
-		"\3\23\3\23\3\23\3\23\3\24\3\24\5\24\u00be\n\24\3\24\3\24\5\24\u00c2\n"+
-		"\24\3\24\5\24\u00c5\n\24\3\24\3\24\3\24\3\24\5\24\u00cb\n\24\3\25\3\25"+
-		"\3\25\3\25\7\25\u00d1\n\25\f\25\16\25\u00d4\13\25\3\25\3\25\3\25\3\25"+
-		"\5\25\u00da\n\25\3\26\3\26\3\26\3\26\3\26\7\26\u00e1\n\26\f\26\16\26\u00e4"+
-		"\13\26\3\27\3\27\5\27\u00e8\n\27\3\30\3\30\3\31\3\31\5\31\u00ee\n\31\3"+
-		"\31\3\31\3\31\5\31\u00f3\n\31\3\31\3\31\3\31\3\31\5\31\u00f9\n\31\3\31"+
-		"\5\31\u00fc\n\31\3\32\5\32\u00ff\n\32\3\32\3\32\3\32\3\33\3\33\3\33\3"+
-		"\33\3\33\3\33\7\33\u010a\n\33\f\33\16\33\u010d\13\33\3\34\3\34\3\34\3"+
-		"\34\3\34\3\34\3\34\3\34\5\34\u0117\n\34\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\36\3\36\3\36\5\36\u0128\n\36\3\36\3\36"+
-		"\3\36\5\36\u012d\n\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36"+
-		"\3\36\3\36\3\36\3\36\3\36\7\36\u013e\n\36\f\36\16\36\u0141\13\36\3\37"+
-		"\3\37\3\37\3\37\3\37\7\37\u0148\n\37\f\37\16\37\u014b\13\37\3 \3 \3 \3"+
-		" \3 \3!\3!\3!\3!\3!\3!\7!\u0158\n!\f!\16!\u015b\13!\3\"\3\"\3\"\5\"\u0160"+
-		"\n\"\3\"\5\"\u0163\n\"\3\"\3\"\5\"\u0167\n\"\3#\3#\3$\3$\5$\u016d\n$\3"+
-		"%\3%\3&\3&\3&\3&\3&\3&\3\'\3\'\3\'\2\b\b*\64:<@(\2\4\6\b\n\f\16\20\22"+
-		"\24\26\30\32\34\36 \"$&(*,.\60\62\64\668:<>@BDFHJL\2\f\4\2\37\37((\4\2"+
-		"\30\30%%\3\2+-\4\2%%))\3\2\21\24\3\2\17\20\3\2\25\26\3\2\13\f\3\2)+\4"+
-		"\2\3\3\63\63\2\u0189\2N\3\2\2\2\4R\3\2\2\2\6\\\3\2\2\2\b`\3\2\2\2\nm\3"+
-		"\2\2\2\fo\3\2\2\2\16t\3\2\2\2\20w\3\2\2\2\22{\3\2\2\2\24\u0083\3\2\2\2"+
-		"\26\u0086\3\2\2\2\30\u0092\3\2\2\2\32\u0096\3\2\2\2\34\u009a\3\2\2\2\36"+
-		"\u009e\3\2\2\2 \u00a4\3\2\2\2\"\u00b5\3\2\2\2$\u00b7\3\2\2\2&\u00ca\3"+
-		"\2\2\2(\u00d9\3\2\2\2*\u00db\3\2\2\2,\u00e7\3\2\2\2.\u00e9\3\2\2\2\60"+
-		"\u00eb\3\2\2\2\62\u00fe\3\2\2\2\64\u0103\3\2\2\2\66\u0116\3\2\2\28\u0118"+
-		"\3\2\2\2:\u012c\3\2\2\2<\u0142\3\2\2\2>\u014c\3\2\2\2@\u0151\3\2\2\2B"+
-		"\u0166\3\2\2\2D\u0168\3\2\2\2F\u016c\3\2\2\2H\u016e\3\2\2\2J\u0170\3\2"+
-		"\2\2L\u0176\3\2\2\2NO\5\b\5\2OP\7\2\2\3P\3\3\2\2\2QS\5\6\4\2RQ\3\2\2\2"+
-		"RS\3\2\2\2ST\3\2\2\2TV\7\33\2\2UW\5<\37\2VU\3\2\2\2VW\3\2\2\2WX\3\2\2"+
-		"\2XY\5:\36\2YZ\7\34\2\2Z[\7\2\2\3[\5\3\2\2\2\\]\7 \2\2]^\5L\'\2^_\7!\2"+
-		"\2_\7\3\2\2\2`a\b\5\1\2ab\5\n\6\2bg\3\2\2\2cd\f\3\2\2df\5\n\6\2ec\3\2"+
-		"\2\2fi\3\2\2\2ge\3\2\2\2gh\3\2\2\2h\t\3\2\2\2ig\3\2\2\2jn\5\26\f\2kn\5"+
-		"\16\b\2ln\5\f\7\2mj\3\2\2\2mk\3\2\2\2ml\3\2\2\2n\13\3\2\2\2op\7\4\2\2"+
-		"pq\7\31\2\2qr\5D#\2rs\7\32\2\2s\r\3\2\2\2tu\5\20\t\2uv\5*\26\2v\17\3\2"+
-		"\2\2wx\7\n\2\2xy\7(\2\2yz\5L\'\2z\21\3\2\2\2{|\7\n\2\2|}\7\31\2\2}\177"+
-		"\5L\'\2~\u0080\5\24\13\2\177~\3\2\2\2\177\u0080\3\2\2\2\u0080\u0081\3"+
-		"\2\2\2\u0081\u0082\7\32\2\2\u0082\23\3\2\2\2\u0083\u0084\7#\2\2\u0084"+
-		"\u0085\5\"\22\2\u0085\25\3\2\2\2\u0086\u0088\5\30\r\2\u0087\u0089\5\32"+
-		"\16\2\u0088\u0087\3\2\2\2\u0088\u0089\3\2\2\2\u0089\u008b\3\2\2\2\u008a"+
-		"\u008c\5\36\20\2\u008b\u008a\3\2\2\2\u008b\u008c\3\2\2\2\u008c\u008e\3"+
-		"\2\2\2\u008d\u008f\5 \21\2\u008e\u008d\3\2\2\2\u008e\u008f\3\2\2\2\u008f"+
-		"\u0090\3\2\2\2\u0090\u0091\5*\26\2\u0091\27\3\2\2\2\u0092\u0093\7\5\2"+
-		"\2\u0093\u0094\7(\2\2\u0094\u0095\5L\'\2\u0095\31\3\2\2\2\u0096\u0097"+
-		"\7\6\2\2\u0097\u0098\7(\2\2\u0098\u0099\7\r\2\2\u0099\33\3\2\2\2\u009a"+
-		"\u009b\7,\2\2\u009b\u009c\5\62\32\2\u009c\u009d\7,\2\2\u009d\35\3\2\2"+
-		"\2\u009e\u009f\7\7\2\2\u009f\u00a2\7(\2\2\u00a0\u00a3\5D#\2\u00a1\u00a3"+
-		"\5\34\17\2\u00a2\u00a0\3\2\2\2\u00a2\u00a1\3\2\2\2\u00a3\37\3\2\2\2\u00a4"+
-		"\u00a5\7\b\2\2\u00a5\u00a6\7(\2\2\u00a6\u00a7\5\"\22\2\u00a7!\3\2\2\2"+
-		"\u00a8\u00a9\7\33\2\2\u00a9\u00ae\5$\23\2\u00aa\u00ab\7#\2\2\u00ab\u00ad"+
-		"\5$\23\2\u00ac\u00aa\3\2\2\2\u00ad\u00b0\3\2\2\2\u00ae\u00ac\3\2\2\2\u00ae"+
-		"\u00af\3\2\2\2\u00af\u00b1\3\2\2\2\u00b0\u00ae\3\2\2\2\u00b1\u00b2\7\34"+
-		"\2\2\u00b2\u00b6\3\2\2\2\u00b3\u00b4\7\33\2\2\u00b4\u00b6\7\34\2\2\u00b5"+
-		"\u00a8\3\2\2\2\u00b5\u00b3\3\2\2\2\u00b6#\3\2\2\2\u00b7\u00b8\5D#\2\u00b8"+
-		"\u00b9\7$\2\2\u00b9\u00ba\5&\24\2\u00ba%\3\2\2\2\u00bb\u00cb\5D#\2\u00bc"+
-		"\u00be\7%\2\2\u00bd\u00bc\3\2\2\2\u00bd\u00be\3\2\2\2\u00be\u00bf\3\2"+
-		"\2\2\u00bf\u00c1\7\60\2\2\u00c0\u00c2\7\61\2\2\u00c1\u00c0\3\2\2\2\u00c1"+
-		"\u00c2\3\2\2\2\u00c2\u00c4\3\2\2\2\u00c3\u00c5\7\62\2\2\u00c4\u00c3\3"+
-		"\2\2\2\u00c4\u00c5\3\2\2\2\u00c5\u00cb\3\2\2\2\u00c6\u00cb\5\"\22\2\u00c7"+
-		"\u00cb\5(\25\2\u00c8\u00cb\7\r\2\2\u00c9\u00cb\7\16\2\2\u00ca\u00bb\3"+
-		"\2\2\2\u00ca\u00bd\3\2\2\2\u00ca\u00c6\3\2\2\2\u00ca\u00c7\3\2\2\2\u00ca"+
-		"\u00c8\3\2\2\2\u00ca\u00c9\3\2\2\2\u00cb\'\3\2\2\2\u00cc\u00cd\7 \2\2"+
-		"\u00cd\u00d2\5&\24\2\u00ce\u00cf\7#\2\2\u00cf\u00d1\5&\24\2\u00d0\u00ce"+
-		"\3\2\2\2\u00d1\u00d4\3\2\2\2\u00d2\u00d0\3\2\2\2\u00d2\u00d3\3\2\2\2\u00d3"+
-		"\u00d5\3\2\2\2\u00d4\u00d2\3\2\2\2\u00d5\u00d6\7!\2\2\u00d6\u00da\3\2"+
-		"\2\2\u00d7\u00d8\7 \2\2\u00d8\u00da\7!\2\2\u00d9\u00cc\3\2\2\2\u00d9\u00d7"+
-		"\3\2\2\2\u00da)\3\2\2\2\u00db\u00dc\b\26\1\2\u00dc\u00dd\5,\27\2\u00dd"+
-		"\u00e2\3\2\2\2\u00de\u00df\f\3\2\2\u00df\u00e1\5,\27\2\u00e0\u00de\3\2"+
-		"\2\2\u00e1\u00e4\3\2\2\2\u00e2\u00e0\3\2\2\2\u00e2\u00e3\3\2\2\2\u00e3"+
-		"+\3\2\2\2\u00e4\u00e2\3\2\2\2\u00e5\u00e8\5\60\31\2\u00e6\u00e8\5\22\n"+
-		"\2\u00e7\u00e5\3\2\2\2\u00e7\u00e6\3\2\2\2\u00e8-\3\2\2\2\u00e9\u00ea"+
-		"\t\2\2\2\u00ea/\3\2\2\2\u00eb\u00ed\7\t\2\2\u00ec\u00ee\58\35\2\u00ed"+
-		"\u00ec\3\2\2\2\u00ed\u00ee\3\2\2\2\u00ee\u00ef\3\2\2\2\u00ef\u00f8\5."+
-		"\30\2\u00f0\u00f2\7\33\2\2\u00f1\u00f3\5<\37\2\u00f2\u00f1\3\2\2\2\u00f2"+
-		"\u00f3\3\2\2\2\u00f3\u00f4\3\2\2\2\u00f4\u00f5\5:\36\2\u00f5\u00f6\7\34"+
-		"\2\2\u00f6\u00f9\3\2\2\2\u00f7\u00f9\5\34\17\2\u00f8\u00f0\3\2\2\2\u00f8"+
-		"\u00f7\3\2\2\2\u00f9\u00fb\3\2\2\2\u00fa\u00fc\5F$\2\u00fb\u00fa\3\2\2"+
-		"\2\u00fb\u00fc\3\2\2\2\u00fc\61\3\2\2\2\u00fd\u00ff\5\64\33\2\u00fe\u00fd"+
-		"\3\2\2\2\u00fe\u00ff\3\2\2\2\u00ff\u0100\3\2\2\2\u0100\u0101\7\"\2\2\u0101"+
-		"\u0102\5L\'\2\u0102\63\3\2\2\2\u0103\u0104\b\33\1\2\u0104\u0105\5\66\34"+
-		"\2\u0105\u010b\3\2\2\2\u0106\u0107\f\3\2\2\u0107\u0108\7&\2\2\u0108\u010a"+
-		"\5\66\34\2\u0109\u0106\3\2\2\2\u010a\u010d\3\2\2\2\u010b\u0109\3\2\2\2"+
-		"\u010b\u010c\3\2\2\2\u010c\65\3\2\2\2\u010d\u010b\3\2\2\2\u010e\u0117"+
-		"\5L\'\2\u010f\u0117\7\4\2\2\u0110\u0117\7\5\2\2\u0111\u0117\7\6\2\2\u0112"+
-		"\u0117\7\7\2\2\u0113\u0117\7\b\2\2\u0114\u0117\7\t\2\2\u0115\u0117\7\n"+
-		"\2\2\u0116\u010e\3\2\2\2\u0116\u010f\3\2\2\2\u0116\u0110\3\2\2\2\u0116"+
-		"\u0111\3\2\2\2\u0116\u0112\3\2\2\2\u0116\u0113\3\2\2\2\u0116\u0114\3\2"+
-		"\2\2\u0116\u0115\3\2\2\2\u0117\67\3\2\2\2\u0118\u0119\7\31\2\2\u0119\u011a"+
-		"\5L\'\2\u011a\u011b\7\32\2\2\u011b9\3\2\2\2\u011c\u011d\b\36\1\2\u011d"+
-		"\u011e\t\3\2\2\u011e\u012d\5:\36\f\u011f\u0120\7\31\2\2\u0120\u0121\5"+
-		":\36\2\u0121\u0122\7\32\2\2\u0122\u012d\3\2\2\2\u0123\u012d\5B\"\2\u0124"+
-		"\u0125\7\3\2\2\u0125\u0127\7\31\2\2\u0126\u0128\5@!\2\u0127\u0126\3\2"+
-		"\2\2\u0127\u0128\3\2\2\2\u0128\u0129\3\2\2\2\u0129\u012d\7\32\2\2\u012a"+
-		"\u012b\7.\2\2\u012b\u012d\5L\'\2\u012c\u011c\3\2\2\2\u012c\u011f\3\2\2"+
-		"\2\u012c\u0123\3\2\2\2\u012c\u0124\3\2\2\2\u012c\u012a\3\2\2\2\u012d\u013f"+
-		"\3\2\2\2\u012e\u012f\f\n\2\2\u012f\u0130\t\4\2\2\u0130\u013e\5:\36\13"+
-		"\u0131\u0132\f\t\2\2\u0132\u0133\t\5\2\2\u0133\u013e\5:\36\n\u0134\u0135"+
-		"\f\b\2\2\u0135\u0136\t\6\2\2\u0136\u013e\5:\36\t\u0137\u0138\f\7\2\2\u0138"+
-		"\u0139\t\7\2\2\u0139\u013e\5:\36\b\u013a\u013b\f\6\2\2\u013b\u013c\t\b"+
-		"\2\2\u013c\u013e\5:\36\7\u013d\u012e\3\2\2\2\u013d\u0131\3\2\2\2\u013d"+
-		"\u0134\3\2\2\2\u013d\u0137\3\2\2\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\u0140;\3\2\2\2\u0141\u013f"+
-		"\3\2\2\2\u0142\u0143\b\37\1\2\u0143\u0144\5> \2\u0144\u0149\3\2\2\2\u0145"+
-		"\u0146\f\3\2\2\u0146\u0148\5> \2\u0147\u0145\3\2\2\2\u0148\u014b\3\2\2"+
-		"\2\u0149\u0147\3\2\2\2\u0149\u014a\3\2\2\2\u014a=\3\2\2\2\u014b\u0149"+
-		"\3\2\2\2\u014c\u014d\7.\2\2\u014d\u014e\5L\'\2\u014e\u014f\7(\2\2\u014f"+
-		"\u0150\5:\36\2\u0150?\3\2\2\2\u0151\u0152\b!\1\2\u0152\u0153\5:\36\2\u0153"+
-		"\u0159\3\2\2\2\u0154\u0155\f\3\2\2\u0155\u0156\7#\2\2\u0156\u0158\5:\36"+
-		"\2\u0157\u0154\3\2\2\2\u0158\u015b\3\2\2\2\u0159\u0157\3\2\2\2\u0159\u015a"+
-		"\3\2\2\2\u015aA\3\2\2\2\u015b\u0159\3\2\2\2\u015c\u0167\7\16\2\2\u015d"+
-		"\u015f\7\60\2\2\u015e\u0160\7\61\2\2\u015f\u015e\3\2\2\2\u015f\u0160\3"+
-		"\2\2\2\u0160\u0162\3\2\2\2\u0161\u0163\7\62\2\2\u0162\u0161\3\2\2\2\u0162"+
-		"\u0163\3\2\2\2\u0163\u0167\3\2\2\2\u0164\u0167\7\r\2\2\u0165\u0167\5D"+
-		"#\2\u0166\u015c\3\2\2\2\u0166\u015d\3\2\2\2\u0166\u0164\3\2\2\2\u0166"+
-		"\u0165\3\2\2\2\u0167C\3\2\2\2\u0168\u0169\t\t\2\2\u0169E\3\2\2\2\u016a"+
-		"\u016d\5H%\2\u016b\u016d\5J&\2\u016c\u016a\3\2\2\2\u016c\u016b\3\2\2\2"+
-		"\u016dG\3\2\2\2\u016e\u016f\t\n\2\2\u016fI\3\2\2\2\u0170\u0171\7 \2\2"+
-		"\u0171\u0172\7\60\2\2\u0172\u0173\7#\2\2\u0173\u0174\7\60\2\2\u0174\u0175"+
-		"\7!\2\2\u0175K\3\2\2\2\u0176\u0177\t\13\2\2\u0177M\3\2\2\2&RVgm\177\u0088"+
-		"\u008b\u008e\u00a2\u00ae\u00b5\u00bd\u00c1\u00c4\u00ca\u00d2\u00d9\u00e2"+
-		"\u00e7\u00ed\u00f2\u00f8\u00fb\u00fe\u010b\u0116\u0127\u012c\u013d\u013f"+
-		"\u0149\u0159\u015f\u0162\u0166\u016c";
+		"\t!\4\"\t\"\4#\t#\4$\t$\4%\t%\4&\t&\4\'\t\'\4(\t(\3\2\3\2\3\2\3\3\5\3"+
+		"U\n\3\3\3\3\3\5\3Y\n\3\3\3\3\3\3\3\3\3\3\4\3\4\3\4\3\4\3\5\3\5\3\5\3\5"+
+		"\3\5\7\5h\n\5\f\5\16\5k\13\5\3\6\3\6\3\6\5\6p\n\6\3\7\3\7\3\7\3\7\3\7"+
+		"\3\b\3\b\3\b\3\t\3\t\3\t\3\t\3\n\3\n\3\n\3\n\5\n\u0082\n\n\3\n\3\n\3\13"+
+		"\3\13\3\13\3\f\3\f\5\f\u008b\n\f\3\f\5\f\u008e\n\f\3\f\5\f\u0091\n\f\3"+
+		"\f\5\f\u0094\n\f\3\f\3\f\3\r\3\r\3\r\3\r\3\16\3\16\3\16\3\16\3\17\3\17"+
+		"\3\17\3\17\3\20\3\20\3\20\3\20\5\20\u00a8\n\20\3\21\3\21\3\21\3\21\3\22"+
+		"\3\22\3\22\3\22\3\23\3\23\3\23\3\23\7\23\u00b6\n\23\f\23\16\23\u00b9\13"+
+		"\23\3\23\3\23\3\23\3\23\5\23\u00bf\n\23\3\24\3\24\3\24\3\24\3\25\3\25"+
+		"\5\25\u00c7\n\25\3\25\3\25\5\25\u00cb\n\25\3\25\5\25\u00ce\n\25\3\25\3"+
+		"\25\3\25\3\25\5\25\u00d4\n\25\3\26\3\26\3\26\3\26\7\26\u00da\n\26\f\26"+
+		"\16\26\u00dd\13\26\3\26\3\26\3\26\3\26\5\26\u00e3\n\26\3\27\3\27\3\27"+
+		"\3\27\3\27\7\27\u00ea\n\27\f\27\16\27\u00ed\13\27\3\30\3\30\5\30\u00f1"+
+		"\n\30\3\31\3\31\3\32\3\32\5\32\u00f7\n\32\3\32\3\32\3\32\5\32\u00fc\n"+
+		"\32\3\32\3\32\3\32\3\32\5\32\u0102\n\32\3\32\5\32\u0105\n\32\3\33\5\33"+
+		"\u0108\n\33\3\33\3\33\3\33\3\34\3\34\3\34\3\34\3\34\3\34\7\34\u0113\n"+
+		"\34\f\34\16\34\u0116\13\34\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\5\35"+
+		"\u0120\n\35\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\5\37\u0131\n\37\3\37\3\37\3\37\5\37\u0136\n\37\3\37\3"+
+		"\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\7"+
+		"\37\u0147\n\37\f\37\16\37\u014a\13\37\3 \3 \3 \3 \3 \7 \u0151\n \f \16"+
+		" \u0154\13 \3!\3!\3!\3!\3!\3\"\3\"\3\"\3\"\3\"\3\"\7\"\u0161\n\"\f\"\16"+
+		"\"\u0164\13\"\3#\3#\3#\5#\u0169\n#\3#\5#\u016c\n#\3#\3#\5#\u0170\n#\3"+
+		"$\3$\3%\3%\5%\u0176\n%\3&\3&\3\'\3\'\3\'\3\'\3\'\3\'\3(\3(\3(\2\b\b,\66"+
+		"<>B)\2\4\6\b\n\f\16\20\22\24\26\30\32\34\36 \"$&(*,.\60\62\64\668:<>@"+
+		"BDFHJLN\2\f\4\2  ))\4\2\31\31&&\3\2,.\4\2&&**\3\2\22\25\3\2\20\21\3\2"+
+		"\26\27\3\2\f\r\3\2*,\4\2\4\4\64\64\2\u0192\2P\3\2\2\2\4T\3\2\2\2\6^\3"+
+		"\2\2\2\bb\3\2\2\2\no\3\2\2\2\fq\3\2\2\2\16v\3\2\2\2\20y\3\2\2\2\22}\3"+
+		"\2\2\2\24\u0085\3\2\2\2\26\u0088\3\2\2\2\30\u0097\3\2\2\2\32\u009b\3\2"+
+		"\2\2\34\u009f\3\2\2\2\36\u00a3\3\2\2\2 \u00a9\3\2\2\2\"\u00ad\3\2\2\2"+
+		"$\u00be\3\2\2\2&\u00c0\3\2\2\2(\u00d3\3\2\2\2*\u00e2\3\2\2\2,\u00e4\3"+
+		"\2\2\2.\u00f0\3\2\2\2\60\u00f2\3\2\2\2\62\u00f4\3\2\2\2\64\u0107\3\2\2"+
+		"\2\66\u010c\3\2\2\28\u011f\3\2\2\2:\u0121\3\2\2\2<\u0135\3\2\2\2>\u014b"+
+		"\3\2\2\2@\u0155\3\2\2\2B\u015a\3\2\2\2D\u016f\3\2\2\2F\u0171\3\2\2\2H"+
+		"\u0175\3\2\2\2J\u0177\3\2\2\2L\u0179\3\2\2\2N\u017f\3\2\2\2PQ\5\b\5\2"+
+		"QR\7\2\2\3R\3\3\2\2\2SU\5\6\4\2TS\3\2\2\2TU\3\2\2\2UV\3\2\2\2VX\7\34\2"+
+		"\2WY\5> \2XW\3\2\2\2XY\3\2\2\2YZ\3\2\2\2Z[\5<\37\2[\\\7\35\2\2\\]\7\2"+
+		"\2\3]\5\3\2\2\2^_\7!\2\2_`\5N(\2`a\7\"\2\2a\7\3\2\2\2bc\b\5\1\2cd\5\n"+
+		"\6\2di\3\2\2\2ef\f\3\2\2fh\5\n\6\2ge\3\2\2\2hk\3\2\2\2ig\3\2\2\2ij\3\2"+
+		"\2\2j\t\3\2\2\2ki\3\2\2\2lp\5\26\f\2mp\5\16\b\2np\5\f\7\2ol\3\2\2\2om"+
+		"\3\2\2\2on\3\2\2\2p\13\3\2\2\2qr\7\5\2\2rs\7\32\2\2st\5F$\2tu\7\33\2\2"+
+		"u\r\3\2\2\2vw\5\20\t\2wx\5,\27\2x\17\3\2\2\2yz\7\13\2\2z{\7)\2\2{|\5N"+
+		"(\2|\21\3\2\2\2}~\7\13\2\2~\177\7\32\2\2\177\u0081\5N(\2\u0080\u0082\5"+
+		"\24\13\2\u0081\u0080\3\2\2\2\u0081\u0082\3\2\2\2\u0082\u0083\3\2\2\2\u0083"+
+		"\u0084\7\33\2\2\u0084\23\3\2\2\2\u0085\u0086\7$\2\2\u0086\u0087\5$\23"+
+		"\2\u0087\25\3\2\2\2\u0088\u008a\5\30\r\2\u0089\u008b\5\32\16\2\u008a\u0089"+
+		"\3\2\2\2\u008a\u008b\3\2\2\2\u008b\u008d\3\2\2\2\u008c\u008e\5\"\22\2"+
+		"\u008d\u008c\3\2\2\2\u008d\u008e\3\2\2\2\u008e\u0090\3\2\2\2\u008f\u0091"+
+		"\5\36\20\2\u0090\u008f\3\2\2\2\u0090\u0091\3\2\2\2\u0091\u0093\3\2\2\2"+
+		"\u0092\u0094\5 \21\2\u0093\u0092\3\2\2\2\u0093\u0094\3\2\2\2\u0094\u0095"+
+		"\3\2\2\2\u0095\u0096\5,\27\2\u0096\27\3\2\2\2\u0097\u0098\7\6\2\2\u0098"+
+		"\u0099\7)\2\2\u0099\u009a\5N(\2\u009a\31\3\2\2\2\u009b\u009c\7\7\2\2\u009c"+
+		"\u009d\7)\2\2\u009d\u009e\7\16\2\2\u009e\33\3\2\2\2\u009f\u00a0\7-\2\2"+
+		"\u00a0\u00a1\5\64\33\2\u00a1\u00a2\7-\2\2\u00a2\35\3\2\2\2\u00a3\u00a4"+
+		"\7\b\2\2\u00a4\u00a7\7)\2\2\u00a5\u00a8\5F$\2\u00a6\u00a8\5\34\17\2\u00a7"+
+		"\u00a5\3\2\2\2\u00a7\u00a6\3\2\2\2\u00a8\37\3\2\2\2\u00a9\u00aa\7\t\2"+
+		"\2\u00aa\u00ab\7)\2\2\u00ab\u00ac\5$\23\2\u00ac!\3\2\2\2\u00ad\u00ae\7"+
+		"\3\2\2\u00ae\u00af\7)\2\2\u00af\u00b0\5$\23\2\u00b0#\3\2\2\2\u00b1\u00b2"+
+		"\7\34\2\2\u00b2\u00b7\5&\24\2\u00b3\u00b4\7$\2\2\u00b4\u00b6\5&\24\2\u00b5"+
+		"\u00b3\3\2\2\2\u00b6\u00b9\3\2\2\2\u00b7\u00b5\3\2\2\2\u00b7\u00b8\3\2"+
+		"\2\2\u00b8\u00ba\3\2\2\2\u00b9\u00b7\3\2\2\2\u00ba\u00bb\7\35\2\2\u00bb"+
+		"\u00bf\3\2\2\2\u00bc\u00bd\7\34\2\2\u00bd\u00bf\7\35\2\2\u00be\u00b1\3"+
+		"\2\2\2\u00be\u00bc\3\2\2\2\u00bf%\3\2\2\2\u00c0\u00c1\5F$\2\u00c1\u00c2"+
+		"\7%\2\2\u00c2\u00c3\5(\25\2\u00c3\'\3\2\2\2\u00c4\u00d4\5F$\2\u00c5\u00c7"+
+		"\7&\2\2\u00c6\u00c5\3\2\2\2\u00c6\u00c7\3\2\2\2\u00c7\u00c8\3\2\2\2\u00c8"+
+		"\u00ca\7\61\2\2\u00c9\u00cb\7\62\2\2\u00ca\u00c9\3\2\2\2\u00ca\u00cb\3"+
+		"\2\2\2\u00cb\u00cd\3\2\2\2\u00cc\u00ce\7\63\2\2\u00cd\u00cc\3\2\2\2\u00cd"+
+		"\u00ce\3\2\2\2\u00ce\u00d4\3\2\2\2\u00cf\u00d4\5$\23\2\u00d0\u00d4\5*"+
+		"\26\2\u00d1\u00d4\7\16\2\2\u00d2\u00d4\7\17\2\2\u00d3\u00c4\3\2\2\2\u00d3"+
+		"\u00c6\3\2\2\2\u00d3\u00cf\3\2\2\2\u00d3\u00d0\3\2\2\2\u00d3\u00d1\3\2"+
+		"\2\2\u00d3\u00d2\3\2\2\2\u00d4)\3\2\2\2\u00d5\u00d6\7!\2\2\u00d6\u00db"+
+		"\5(\25\2\u00d7\u00d8\7$\2\2\u00d8\u00da\5(\25\2\u00d9\u00d7\3\2\2\2\u00da"+
+		"\u00dd\3\2\2\2\u00db\u00d9\3\2\2\2\u00db\u00dc\3\2\2\2\u00dc\u00de\3\2"+
+		"\2\2\u00dd\u00db\3\2\2\2\u00de\u00df\7\"\2\2\u00df\u00e3\3\2\2\2\u00e0"+
+		"\u00e1\7!\2\2\u00e1\u00e3\7\"\2\2\u00e2\u00d5\3\2\2\2\u00e2\u00e0\3\2"+
+		"\2\2\u00e3+\3\2\2\2\u00e4\u00e5\b\27\1\2\u00e5\u00e6\5.\30\2\u00e6\u00eb"+
+		"\3\2\2\2\u00e7\u00e8\f\3\2\2\u00e8\u00ea\5.\30\2\u00e9\u00e7\3\2\2\2\u00ea"+
+		"\u00ed\3\2\2\2\u00eb\u00e9\3\2\2\2\u00eb\u00ec\3\2\2\2\u00ec-\3\2\2\2"+
+		"\u00ed\u00eb\3\2\2\2\u00ee\u00f1\5\62\32\2\u00ef\u00f1\5\22\n\2\u00f0"+
+		"\u00ee\3\2\2\2\u00f0\u00ef\3\2\2\2\u00f1/\3\2\2\2\u00f2\u00f3\t\2\2\2"+
+		"\u00f3\61\3\2\2\2\u00f4\u00f6\7\n\2\2\u00f5\u00f7\5:\36\2\u00f6\u00f5"+
+		"\3\2\2\2\u00f6\u00f7\3\2\2\2\u00f7\u00f8\3\2\2\2\u00f8\u0101\5\60\31\2"+
+		"\u00f9\u00fb\7\34\2\2\u00fa\u00fc\5> \2\u00fb\u00fa\3\2\2\2\u00fb\u00fc"+
+		"\3\2\2\2\u00fc\u00fd\3\2\2\2\u00fd\u00fe\5<\37\2\u00fe\u00ff\7\35\2\2"+
+		"\u00ff\u0102\3\2\2\2\u0100\u0102\5\34\17\2\u0101\u00f9\3\2\2\2\u0101\u0100"+
+		"\3\2\2\2\u0102\u0104\3\2\2\2\u0103\u0105\5H%\2\u0104\u0103\3\2\2\2\u0104"+
+		"\u0105\3\2\2\2\u0105\63\3\2\2\2\u0106\u0108\5\66\34\2\u0107\u0106\3\2"+
+		"\2\2\u0107\u0108\3\2\2\2\u0108\u0109\3\2\2\2\u0109\u010a\7#\2\2\u010a"+
+		"\u010b\5N(\2\u010b\65\3\2\2\2\u010c\u010d\b\34\1\2\u010d\u010e\58\35\2"+
+		"\u010e\u0114\3\2\2\2\u010f\u0110\f\3\2\2\u0110\u0111\7\'\2\2\u0111\u0113"+
+		"\58\35\2\u0112\u010f\3\2\2\2\u0113\u0116\3\2\2\2\u0114\u0112\3\2\2\2\u0114"+
+		"\u0115\3\2\2\2\u0115\67\3\2\2\2\u0116\u0114\3\2\2\2\u0117\u0120\5N(\2"+
+		"\u0118\u0120\7\5\2\2\u0119\u0120\7\6\2\2\u011a\u0120\7\7\2\2\u011b\u0120"+
+		"\7\b\2\2\u011c\u0120\7\t\2\2\u011d\u0120\7\n\2\2\u011e\u0120\7\13\2\2"+
+		"\u011f\u0117\3\2\2\2\u011f\u0118\3\2\2\2\u011f\u0119\3\2\2\2\u011f\u011a"+
+		"\3\2\2\2\u011f\u011b\3\2\2\2\u011f\u011c\3\2\2\2\u011f\u011d\3\2\2\2\u011f"+
+		"\u011e\3\2\2\2\u01209\3\2\2\2\u0121\u0122\7\32\2\2\u0122\u0123\5N(\2\u0123"+
+		"\u0124\7\33\2\2\u0124;\3\2\2\2\u0125\u0126\b\37\1\2\u0126\u0127\t\3\2"+
+		"\2\u0127\u0136\5<\37\f\u0128\u0129\7\32\2\2\u0129\u012a\5<\37\2\u012a"+
+		"\u012b\7\33\2\2\u012b\u0136\3\2\2\2\u012c\u0136\5D#\2\u012d\u012e\7\4"+
+		"\2\2\u012e\u0130\7\32\2\2\u012f\u0131\5B\"\2\u0130\u012f\3\2\2\2\u0130"+
+		"\u0131\3\2\2\2\u0131\u0132\3\2\2\2\u0132\u0136\7\33\2\2\u0133\u0134\7"+
+		"/\2\2\u0134\u0136\5N(\2\u0135\u0125\3\2\2\2\u0135\u0128\3\2\2\2\u0135"+
+		"\u012c\3\2\2\2\u0135\u012d\3\2\2\2\u0135\u0133\3\2\2\2\u0136\u0148\3\2"+
+		"\2\2\u0137\u0138\f\n\2\2\u0138\u0139\t\4\2\2\u0139\u0147\5<\37\13\u013a"+
+		"\u013b\f\t\2\2\u013b\u013c\t\5\2\2\u013c\u0147\5<\37\n\u013d\u013e\f\b"+
+		"\2\2\u013e\u013f\t\6\2\2\u013f\u0147\5<\37\t\u0140\u0141\f\7\2\2\u0141"+
+		"\u0142\t\7\2\2\u0142\u0147\5<\37\b\u0143\u0144\f\6\2\2\u0144\u0145\t\b"+
+		"\2\2\u0145\u0147\5<\37\7\u0146\u0137\3\2\2\2\u0146\u013a\3\2\2\2\u0146"+
+		"\u013d\3\2\2\2\u0146\u0140\3\2\2\2\u0146\u0143\3\2\2\2\u0147\u014a\3\2"+
+		"\2\2\u0148\u0146\3\2\2\2\u0148\u0149\3\2\2\2\u0149=\3\2\2\2\u014a\u0148"+
+		"\3\2\2\2\u014b\u014c\b \1\2\u014c\u014d\5@!\2\u014d\u0152\3\2\2\2\u014e"+
+		"\u014f\f\3\2\2\u014f\u0151\5@!\2\u0150\u014e\3\2\2\2\u0151\u0154\3\2\2"+
+		"\2\u0152\u0150\3\2\2\2\u0152\u0153\3\2\2\2\u0153?\3\2\2\2\u0154\u0152"+
+		"\3\2\2\2\u0155\u0156\7/\2\2\u0156\u0157\5N(\2\u0157\u0158\7)\2\2\u0158"+
+		"\u0159\5<\37\2\u0159A\3\2\2\2\u015a\u015b\b\"\1\2\u015b\u015c\5<\37\2"+
+		"\u015c\u0162\3\2\2\2\u015d\u015e\f\3\2\2\u015e\u015f\7$\2\2\u015f\u0161"+
+		"\5<\37\2\u0160\u015d\3\2\2\2\u0161\u0164\3\2\2\2\u0162\u0160\3\2\2\2\u0162"+
+		"\u0163\3\2\2\2\u0163C\3\2\2\2\u0164\u0162\3\2\2\2\u0165\u0170\7\17\2\2"+
+		"\u0166\u0168\7\61\2\2\u0167\u0169\7\62\2\2\u0168\u0167\3\2\2\2\u0168\u0169"+
+		"\3\2\2\2\u0169\u016b\3\2\2\2\u016a\u016c\7\63\2\2\u016b\u016a\3\2\2\2"+
+		"\u016b\u016c\3\2\2\2\u016c\u0170\3\2\2\2\u016d\u0170\7\16\2\2\u016e\u0170"+
+		"\5F$\2\u016f\u0165\3\2\2\2\u016f\u0166\3\2\2\2\u016f\u016d\3\2\2\2\u016f"+
+		"\u016e\3\2\2\2\u0170E\3\2\2\2\u0171\u0172\t\t\2\2\u0172G\3\2\2\2\u0173"+
+		"\u0176\5J&\2\u0174\u0176\5L\'\2\u0175\u0173\3\2\2\2\u0175\u0174\3\2\2"+
+		"\2\u0176I\3\2\2\2\u0177\u0178\t\n\2\2\u0178K\3\2\2\2\u0179\u017a\7!\2"+
+		"\2\u017a\u017b\7\61\2\2\u017b\u017c\7$\2\2\u017c\u017d\7\61\2\2\u017d"+
+		"\u017e\7\"\2\2\u017eM\3\2\2\2\u017f\u0180\t\13\2\2\u0180O\3\2\2\2\'TX"+
+		"io\u0081\u008a\u008d\u0090\u0093\u00a7\u00b7\u00be\u00c6\u00ca\u00cd\u00d3"+
+		"\u00db\u00e2\u00eb\u00f0\u00f6\u00fb\u0101\u0104\u0107\u0114\u011f\u0130"+
+		"\u0135\u0146\u0148\u0152\u0162\u0168\u016b\u016f\u0175";
 	public static final ATN _ATN =
 		new ATNDeserializer().deserialize(_serializedATN.toCharArray());
 	static {