/* The following code was generated by JFlex 1.4.1 on 9/14/13 7:14 PM */ /* * 12/23/2010 * * ClojureTokenMaker.java - Scanner for Clojure. * * This library is distributed under a modified BSD license. See the included * RSyntaxTextArea.License.txt file for details. */ package org.fife.ui.rsyntaxtextarea.modes; import java.io.*; import javax.swing.text.Segment; import org.fife.ui.rsyntaxtextarea.*; /** * Scanner for the Clojure programming language.<p> * * The original version of this class was graciously donated by the folks at the * <a href="http://pacific.mpi-cbg.de/wiki/index.php/Fiji">Fiji</a> project. * This version has been modified to fix a few issues. * Its original location was * <a href="http://pacific.mpi-cbg.de/cgi-bin/gitweb.cgi?p=fiji.git;a=tree;f=src-plugins/Script_Editor/fiji/scripting;hb=935d85d9d88dd780c6d5f2765937ddc18b5008ca">here</a>. * <p> * * This implementation was created using * <a href="http://www.jflex.de/">JFlex</a> 1.4.1; however, the generated file * was modified for performance. Memory allocation needs to be almost * completely removed to be competitive with the handwritten lexers (subclasses * of <code>AbstractTokenMaker</code>, so this class has been modified so that * Strings are never allocated (via yytext()), and the scanner never has to * worry about refilling its buffer (needlessly copying chars around). * We can achieve this because RText always scans exactly 1 line of tokens at a * time, and hands the scanner this line as an array of characters (a Segment * really). Since tokens contain pointers to char arrays instead of Strings * holding their contents, there is no need for allocating new memory for * Strings.<p> * * The actual algorithm generated for scanning has, of course, not been * modified.<p> * * If you wish to regenerate this file yourself, keep in mind the following: * <ul> * <li>The generated <code>ClojureTokenMaker.java</code> file will contain two * definitions of both <code>zzRefill</code> and <code>yyreset</code>. * You should hand-delete the second of each definition (the ones * generated by the lexer), as these generated methods modify the input * buffer, which we'll never have to do.</li> * <li>You should also change the declaration/definition of zzBuffer to NOT * be initialized. This is a needless memory allocation for us since we * will be pointing the array somewhere else anyway.</li> * <li>You should NOT call <code>yylex()</code> on the generated scanner * directly; rather, you should use <code>getTokenList</code> as you would * with any other <code>TokenMaker</code> instance.</li> * </ul> * * */ public class ClojureTokenMaker extends AbstractJFlexTokenMaker { /** This character denotes the end of file */ public static final int YYEOF = -1; /** lexical states */ public static final int EOL_COMMENT = 2; public static final int STRING = 1; public static final int YYINITIAL = 0; /** * Translates characters to character classes */ private static final String ZZ_CMAP_PACKED = "\11\0\1\57\1\16\1\0\1\37\1\35\22\0\1\60\1\71\1\17"+ "\1\53\1\72\1\67\1\67\1\12\1\45\1\50\1\66\1\63\1\73"+ "\1\44\1\20\1\70\1\4\1\15\1\15\1\15\4\7\2\5\1\2"+ "\1\1\1\64\1\65\1\62\1\36\1\52\3\6\1\42\1\43\1\42"+ "\5\3\1\41\13\3\1\40\2\3\1\34\1\11\1\34\1\54\1\61"+ "\1\47\1\23\1\27\1\24\1\76\1\25\1\14\1\104\1\74\1\33"+ "\1\105\1\106\1\32\1\77\1\30\1\75\1\22\1\101\1\13\1\21"+ "\1\26\1\10\1\103\1\31\1\100\1\102\1\107\1\55\1\46\1\56"+ "\1\51\uff81\0"; /** * Translates characters to character classes */ private static final char [] ZZ_CMAP = zzUnpackCMap(ZZ_CMAP_PACKED); /** * Translates DFA states to action switch labels. */ private static final int [] ZZ_ACTION = zzUnpackAction(); private static final String ZZ_ACTION_PACKED_0 = "\1\1\2\0\1\2\1\3\1\4\1\1\2\5\1\1"+ "\1\2\2\1\1\6\1\7\14\1\1\10\1\4\1\11"+ "\1\10\1\4\1\2\4\4\11\1\1\12\1\13\1\14"+ "\1\15\2\12\1\16\2\12\1\17\2\20\1\21\1\20"+ "\2\22\1\20\1\5\1\20\1\1\1\23\3\0\6\1"+ "\1\24\3\1\1\25\52\1\1\24\4\1\4\0\1\4"+ "\3\1\1\26\4\1\1\26\11\1\1\24\13\1\1\13"+ "\1\12\4\0\1\21\1\22\1\1\1\21\2\1\3\0"+ "\4\1\1\25\5\1\1\25\4\1\1\24\2\1\2\25"+ "\40\1\1\24\1\27\1\25\13\1\1\25\3\1\2\0"+ "\2\27\26\1\1\24\10\1\1\25\4\1\4\0\3\1"+ "\2\0\4\1\1\25\4\1\2\25\2\1\1\25\1\24"+ "\1\25\3\1\1\30\1\1\1\25\3\1\1\25\3\1"+ "\1\24\1\1\1\25\5\1\1\25\3\1\2\0\26\1"+ "\1\25\2\1\1\0\1\31\1\0\1\1\2\0\7\1"+ "\1\25\52\1\2\0\1\1\1\0\176\1\1\25\50\1"+ "\1\26\44\1"; private static int [] zzUnpackAction() { int [] result = new int[629]; int offset = 0; offset = zzUnpackAction(ZZ_ACTION_PACKED_0, offset, result); return result; } private static int zzUnpackAction(String packed, int offset, int [] result) { int i = 0; /* index in packed string */ int j = offset; /* index in unpacked array */ int l = packed.length(); while (i < l) { int count = packed.charAt(i++); int value = packed.charAt(i++); do result[j++] = value; while (--count > 0); } return j; } /** * Translates a state to a row index in the transition table */ private static final int [] ZZ_ROWMAP = zzUnpackRowMap(); private static final String ZZ_ROWMAP_PACKED_0 = "\0\0\0\110\0\220\0\330\0\330\0\u0120\0\u0168\0\u01b0"+ "\0\u01f8\0\u0240\0\u0288\0\u02d0\0\u0318\0\330\0\330\0\u0360"+ "\0\u03a8\0\u03f0\0\u0438\0\u0480\0\u04c8\0\u0510\0\u0558\0\u05a0"+ "\0\u05e8\0\u0630\0\u0678\0\330\0\u0168\0\u06c0\0\u0708\0\330"+ "\0\u0750\0\u0798\0\u07e0\0\u0828\0\u0870\0\u08b8\0\u0900\0\u0948"+ "\0\u0990\0\u09d8\0\u0a20\0\u0a68\0\u0ab0\0\u0af8\0\u0b40\0\u0b88"+ "\0\330\0\u0bd0\0\u0c18\0\u0c60\0\330\0\u0ca8\0\u0cf0\0\u0d38"+ "\0\u0d80\0\u0dc8\0\u0e10\0\u0e58\0\u0dc8\0\u0ea0\0\u0ee8\0\u0dc8"+ "\0\u0f30\0\u0f78\0\330\0\u0fc0\0\u1008\0\u1050\0\u1098\0\u10e0"+ "\0\u1128\0\u1170\0\u11b8\0\u1200\0\u1248\0\u1290\0\u12d8\0\u1320"+ "\0\u0168\0\u1368\0\u13b0\0\u13f8\0\u1440\0\u1488\0\u14d0\0\u1518"+ "\0\u1560\0\u15a8\0\u15f0\0\u1638\0\u1680\0\u16c8\0\u1710\0\u1758"+ "\0\u17a0\0\u17e8\0\u1830\0\u1878\0\u18c0\0\u1908\0\u1950\0\u1998"+ "\0\u19e0\0\u1a28\0\u1a70\0\u1ab8\0\u1b00\0\u1b48\0\u1b90\0\u1bd8"+ "\0\u1c20\0\u1c68\0\u1cb0\0\u1cf8\0\u1d40\0\u1d88\0\u1dd0\0\u1e18"+ "\0\u1e60\0\u1ea8\0\u1ef0\0\u1f38\0\u1f80\0\u1fc8\0\u2010\0\u2058"+ "\0\u20a0\0\u20e8\0\u2130\0\u2178\0\u21c0\0\u2208\0\u2250\0\u2298"+ "\0\u0168\0\u22e0\0\u2328\0\u2370\0\u23b8\0\u2400\0\u2448\0\u2490"+ "\0\u24d8\0\u2520\0\u2568\0\u25b0\0\u25f8\0\u2640\0\u2688\0\u26d0"+ "\0\u2718\0\u2760\0\u27a8\0\u27f0\0\u2838\0\u2880\0\u28c8\0\u2910"+ "\0\u2958\0\u29a0\0\u29e8\0\330\0\330\0\u2a30\0\u2a78\0\u2ac0"+ "\0\u2b08\0\u0dc8\0\u2b50\0\u2b98\0\u2be0\0\u2c28\0\u2c70\0\u2cb8"+ "\0\u2d00\0\u2d48\0\u2d90\0\u2dd8\0\u2e20\0\u2e68\0\u2eb0\0\u2ef8"+ "\0\u2f40\0\u2f88\0\u2fd0\0\u3018\0\u3060\0\u30a8\0\u30f0\0\u3138"+ "\0\u3180\0\u0168\0\u31c8\0\u3210\0\u3258\0\u32a0\0\u32e8\0\u3330"+ "\0\u3378\0\u33c0\0\u3408\0\u3450\0\u3498\0\u34e0\0\u3528\0\u3570"+ "\0\u35b8\0\u2eb0\0\u3600\0\u3648\0\u3690\0\u36d8\0\u3720\0\u3768"+ "\0\u37b0\0\u37f8\0\u3840\0\u3888\0\u38d0\0\u3918\0\u3960\0\u39a8"+ "\0\u39f0\0\u3a38\0\u3a80\0\u3ac8\0\u3b10\0\u3b58\0\u3ba0\0\u3450"+ "\0\u3be8\0\u3c30\0\u3c78\0\u3cc0\0\u3d08\0\u3d50\0\u3d98\0\u3de0"+ "\0\u3e28\0\u3e70\0\u3eb8\0\u3f00\0\u3f48\0\u3f90\0\u3fd8\0\u4020"+ "\0\u4068\0\u40b0\0\330\0\u2178\0\u40f8\0\u4140\0\u4188\0\u41d0"+ "\0\u4218\0\u4260\0\u42a8\0\u42f0\0\u4338\0\u4380\0\u43c8\0\u4410"+ "\0\u4458\0\u44a0\0\u44e8\0\u4530\0\u4578\0\u45c0\0\u4608\0\u4650"+ "\0\u4698\0\u46e0\0\u4728\0\u4770\0\u47b8\0\u4800\0\u4848\0\u4890"+ "\0\u48d8\0\u4920\0\u4968\0\u49b0\0\u49f8\0\u4a40\0\u4a88\0\u4ad0"+ "\0\u4b18\0\u4b60\0\u4ba8\0\u4bf0\0\u4c38\0\u4c80\0\u4cc8\0\u4d10"+ "\0\u4d58\0\u4da0\0\u4de8\0\u4e30\0\u4e78\0\u4ec0\0\u4f08\0\u4f50"+ "\0\u4f98\0\u4fe0\0\u5028\0\u4fe0\0\u5070\0\u50b8\0\u5100\0\u3e28"+ "\0\u5148\0\u5190\0\u51d8\0\u5220\0\u0168\0\u5268\0\u52b0\0\u52f8"+ "\0\u5340\0\u5388\0\u53d0\0\u5418\0\u5460\0\u54a8\0\u54f0\0\u5538"+ "\0\u5580\0\u55c8\0\u5610\0\u5658\0\u56a0\0\u56e8\0\u5730\0\u5778"+ "\0\u57c0\0\u5808\0\u5850\0\u5898\0\u58e0\0\u5928\0\u5970\0\u59b8"+ "\0\u5a00\0\u5a48\0\u5a90\0\u5ad8\0\u5b20\0\u5b68\0\u5bb0\0\u5bf8"+ "\0\u5c40\0\u5c88\0\u5cd0\0\u5d18\0\u5d60\0\u5da8\0\u5df0\0\u5e38"+ "\0\u5e80\0\u5ec8\0\u3648\0\u5f10\0\u5f58\0\u5fa0\0\u5fe8\0\u6030"+ "\0\u6078\0\u60c0\0\u6108\0\u6150\0\u6198\0\u61e0\0\u6228\0\u6270"+ "\0\u62b8\0\u6300\0\u6348\0\u6390\0\u63d8\0\u6420\0\u6468\0\u64b0"+ "\0\u64f8\0\u6540\0\u6588\0\u65d0\0\u6618\0\u6660\0\u66a8\0\u66f0"+ "\0\u6738\0\u6780\0\u67c8\0\u6810\0\u6858\0\u68a0\0\u68e8\0\u6930"+ "\0\u6978\0\u69c0\0\u6a08\0\u6a50\0\u6a98\0\u6ae0\0\u6b28\0\u6b70"+ "\0\u6bb8\0\u6c00\0\u6c48\0\u6c90\0\u6cd8\0\u6d20\0\u6d68\0\u6db0"+ "\0\u6df8\0\u6e40\0\u6e88\0\u6ed0\0\u6f18\0\u6f60\0\u5fe8\0\u6fa8"+ "\0\u6ff0\0\u7038\0\u7080\0\u70c8\0\u7110\0\u7158\0\u71a0\0\u71e8"+ "\0\u7230\0\u7278\0\u72c0\0\u7308\0\u7350\0\u7398\0\u73e0\0\u7428"+ "\0\u7470\0\u74b8\0\u7500\0\u7548\0\u7590\0\u75d8\0\u7620\0\u7668"+ "\0\u76b0\0\u76f8\0\u7740\0\u7788\0\u77d0\0\u7818\0\u7860\0\u78a8"+ "\0\u78f0\0\u7938\0\u7980\0\u79c8\0\u7a10\0\u7a58\0\u7aa0\0\u7ae8"+ "\0\u7b30\0\u7b78\0\u7bc0\0\u49b0\0\u7c08\0\u7c50\0\u7c98\0\u7ce0"+ "\0\u7d28\0\u7d70\0\u7db8\0\u7e00\0\u7e48\0\u7e90\0\u7ed8\0\u7f20"+ "\0\u7f68\0\u7fb0\0\u53d0\0\u7ff8\0\u8040\0\u8088\0\u80d0\0\u8118"+ "\0\u8160\0\u81a8\0\u81f0\0\u8238\0\u8280\0\u82c8\0\u8310\0\u8358"+ "\0\u83a0\0\u83e8\0\u8430\0\u8478\0\u84c0\0\u8508\0\u8550\0\u8598"+ "\0\u85e0\0\u8628\0\u8670\0\u86b8\0\u8700\0\u8748\0\u8790\0\u87d8"+ "\0\u8820\0\u8868\0\u88b0\0\u88f8\0\u8940\0\u8988\0\u89d0\0\u8a18"+ "\0\u8a60\0\u8aa8\0\u8af0\0\u8b38\0\u8b80\0\u8bc8\0\u8c10\0\u8c58"+ "\0\u8ca0\0\u8ce8\0\u8d30\0\u8d78\0\u8dc0\0\u8e08\0\u8e50\0\u8e98"+ "\0\u8ee0\0\u8f28\0\u8f70\0\u8fb8\0\u9000\0\u9048\0\u9090\0\u90d8"+ "\0\u9120\0\u9168\0\u91b0\0\u91f8\0\u9240\0\u9288\0\u92d0\0\u9318"+ "\0\u9360\0\u93a8\0\u93f0\0\u9438\0\u9480\0\u94c8\0\u9510\0\u9558"+ "\0\u95a0\0\u95e8\0\u9630\0\u9678\0\u96c0\0\u9708\0\u9750\0\u9798"+ "\0\u97e0\0\u9828\0\u9870\0\u98b8\0\u9900\0\u9948\0\u9990\0\u99d8"+ "\0\u9a20\0\u9a68\0\u9ab0\0\u9af8\0\u9b40\0\u9b88\0\u9bd0\0\u9c18"+ "\0\u9c60\0\u9ca8\0\u9cf0\0\u9d38\0\u9d80\0\u9dc8\0\u9e10\0\u9e58"+ "\0\u9ea0\0\u9ee8\0\u9f30\0\u9f78\0\u9fc0\0\ua008\0\ua050\0\ua098"+ "\0\ua0e0\0\ua128\0\ua170\0\ua1b8\0\ua200\0\ua248\0\ua290\0\ua2d8"+ "\0\ua320\0\ua368\0\ua3b0\0\ua3f8\0\ua440\0\ua488\0\ua4d0\0\ua518"+ "\0\ua560\0\ua5a8\0\ua5f0\0\ua638\0\ua680\0\ua6c8\0\ua710\0\ua758"+ "\0\ua7a0\0\ua7e8\0\ua830\0\ua878\0\u5580"; private static int [] zzUnpackRowMap() { int [] result = new int[629]; int offset = 0; offset = zzUnpackRowMap(ZZ_ROWMAP_PACKED_0, offset, result); return result; } private static int zzUnpackRowMap(String packed, int offset, int [] result) { int i = 0; /* index in packed string */ int j = offset; /* index in unpacked array */ int l = packed.length(); while (i < l) { int high = packed.charAt(i++) << 16; result[j++] = high | packed.charAt(i++); } return j; } /** * The transition table of the DFA */ private static final int [] ZZ_TRANS = zzUnpackTrans(); private static final String ZZ_TRANS_PACKED_0 = "\1\4\1\5\1\6\1\7\1\10\1\11\1\7\1\11"+ "\1\12\1\13\1\4\1\14\1\15\1\11\1\16\1\17"+ "\1\20\1\21\1\22\1\23\1\24\1\25\1\26\1\27"+ "\1\30\1\31\1\32\1\33\1\34\1\4\1\35\1\36"+ "\4\7\1\35\1\37\2\4\1\34\1\40\1\4\1\41"+ "\1\40\2\34\2\36\1\7\1\42\1\35\1\43\1\44"+ "\1\45\1\40\1\35\1\43\2\4\1\46\1\47\1\50"+ "\1\51\1\7\1\52\1\7\1\53\1\54\1\7\1\55"+ "\1\56\11\57\1\60\4\57\1\61\1\62\70\57\14\63"+ "\1\64\1\63\1\65\12\63\1\66\42\63\1\67\13\63"+ "\113\0\1\70\2\0\1\70\1\0\1\70\2\0\2\70"+ "\4\0\13\70\2\0\1\70\1\0\5\70\16\0\1\70"+ "\2\0\1\70\1\0\2\70\2\0\14\70\3\0\6\7"+ "\2\0\3\7\2\0\14\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\1\71\2\0\1\72\1\73\1\74\1\72\1\73\1\72"+ "\1\71\1\0\1\72\1\75\1\73\2\0\1\76\4\72"+ "\1\77\4\72\1\100\1\72\2\0\1\7\1\0\1\101"+ "\1\100\1\75\1\77\1\7\2\0\1\71\2\0\2\71"+ "\5\0\1\72\3\7\1\0\1\7\1\0\2\7\1\71"+ "\1\0\2\72\1\75\1\72\1\101\7\72\1\71\2\0"+ "\1\72\2\11\1\72\1\11\1\72\1\71\1\0\1\72"+ "\1\75\1\11\2\0\1\76\4\72\1\77\4\72\1\100"+ "\1\72\2\0\1\7\1\0\1\72\1\100\1\75\1\77"+ "\1\7\2\0\1\71\2\0\2\71\5\0\1\72\3\7"+ "\1\0\1\7\1\0\2\7\1\71\1\0\2\72\1\75"+ "\11\72\3\0\6\7\2\0\3\7\2\0\10\7\1\102"+ "\3\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\20\0\1\103\1\104"+ "\4\0\1\105\1\0\1\106\62\0\6\7\2\0\1\107"+ "\1\110\1\7\2\0\1\7\1\111\1\7\1\112\1\7"+ "\1\113\6\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\1\107\1\110\1\7\2\0\3\7\1\114\4\7"+ "\1\115\1\7\1\116\1\117\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\1\7"+ "\1\120\12\7\3\0\1\7\2\76\1\7\1\76\1\7"+ "\2\0\2\7\1\76\2\0\1\121\13\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\2\7"+ "\1\122\2\7\1\123\1\124\5\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\1\125\1\126\4\7\1\127\5\7\3\0\6\7\2\0"+ "\1\130\2\7\2\0\5\7\1\131\6\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\1\7\1\132\1\7\1\133\10\7\3\0\6\7"+ "\2\0\1\134\2\7\2\0\1\7\1\135\1\136\5\7"+ "\1\137\1\7\1\140\1\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\10\7"+ "\1\141\3\7\3\0\6\7\2\0\3\7\2\0\3\7"+ "\1\142\6\7\1\143\1\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\1\144"+ "\1\145\4\7\1\146\5\7\3\0\6\7\2\0\3\7"+ "\2\0\10\7\1\147\3\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\5\7"+ "\1\150\1\7\1\151\4\7\3\0\6\7\2\0\1\152"+ "\2\7\2\0\3\7\1\153\7\7\1\154\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\1\155\13\7\3\0\6\7\2\0\3\7\2\0"+ "\13\7\1\156\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\1\7\1\157\4\7"+ "\1\160\5\7\3\0\6\7\2\0\3\7\2\0\3\7"+ "\1\161\1\7\1\162\1\163\4\7\1\164\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\1\7\1\165\12\7\3\0\6\7\2\0\3\7"+ "\2\0\13\7\1\166\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\1\167\13\7"+ "\3\0\6\7\2\0\3\7\2\0\3\7\1\170\1\7"+ "\1\171\5\7\1\172\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\1\7\1\173"+ "\12\7\3\0\6\7\2\0\1\7\1\174\1\7\2\0"+ "\6\7\1\175\1\7\1\176\3\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\2\7\1\177\1\200\10\7\37\0\1\36\17\0\2\36"+ "\41\0\1\201\36\0\1\202\50\0\1\203\41\0\1\204"+ "\36\0\6\7\2\0\3\7\2\0\14\7\2\0\1\7"+ "\1\0\5\7\14\0\1\7\1\205\2\7\1\40\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\14\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\40\1\7\1\0\2\7\2\0\14\7\65\0\1\40"+ "\25\0\5\7\1\206\2\0\1\207\1\210\1\211\2\0"+ "\1\7\1\212\1\213\1\214\1\215\1\216\2\7\1\217"+ "\1\220\1\7\1\221\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\1\7\1\222"+ "\1\7\1\223\10\7\3\0\6\7\2\0\3\7\2\0"+ "\3\7\1\224\10\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\1\121\2\7\2\0\14\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\1\225\2\7\2\0"+ "\5\7\1\226\5\7\1\227\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\1\7"+ "\1\230\12\7\3\0\6\7\2\0\3\7\2\0\3\7"+ "\1\231\1\7\1\232\5\7\1\233\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\1\7\1\234\12\7\3\0\5\7\1\235\2\0\3\7"+ "\2\0\14\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\3\7\2\0\3\7\1\236\1\7\1\237\6\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\5\7\1\240\6\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\5\7\1\241\6\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\5\7\1\242\5\7\1\243\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\11\57\1\0\4\57\2\0\70\57\16\244\1\0"+ "\71\244\17\0\1\245\70\0\14\63\1\0\1\63\1\0"+ "\12\63\1\0\42\63\1\0\13\63\26\0\1\246\4\0"+ "\1\247\105\0\1\250\104\0\1\251\64\0\6\70\2\0"+ "\3\70\3\0\13\70\2\0\1\70\1\0\5\70\16\0"+ "\1\70\2\0\1\70\1\0\2\70\2\0\14\70\1\71"+ "\2\0\7\71\1\0\3\71\3\0\13\71\4\0\4\71"+ "\3\0\1\71\2\0\2\71\5\0\1\71\10\0\1\71"+ "\1\0\15\71\2\0\6\72\1\71\1\0\3\72\2\0"+ "\1\7\13\72\2\0\1\7\1\0\4\72\1\7\2\0"+ "\1\71\2\0\2\71\5\0\1\72\3\7\1\0\1\7"+ "\1\0\2\7\1\71\1\0\14\72\1\71\2\0\1\72"+ "\1\73\1\74\1\72\1\73\1\72\1\71\1\0\1\72"+ "\1\75\1\73\2\0\1\76\4\72\1\77\4\72\1\252"+ "\1\72\2\0\1\7\1\0\1\72\1\252\1\75\1\77"+ "\1\7\2\0\1\71\2\0\2\71\5\0\1\72\3\7"+ "\1\0\1\7\1\0\2\7\1\71\1\0\2\72\1\75"+ "\11\72\1\71\2\0\1\72\2\74\1\72\1\74\1\72"+ "\1\71\1\0\1\72\1\75\1\74\2\0\1\76\4\72"+ "\1\77\6\72\2\0\1\7\1\0\2\72\1\75\1\77"+ "\1\7\2\0\1\71\2\0\2\71\5\0\1\72\3\7"+ "\1\0\1\7\1\0\2\7\1\71\1\0\2\72\1\75"+ "\11\72\1\71\2\0\1\72\2\76\1\72\1\76\1\72"+ "\1\71\1\0\1\72\1\75\1\76\2\0\1\7\4\72"+ "\1\77\6\72\2\0\1\7\1\0\2\72\1\75\1\77"+ "\1\7\2\0\1\71\2\0\2\71\5\0\1\72\3\7"+ "\1\0\1\7\1\0\2\7\1\71\1\0\2\72\1\75"+ "\11\72\1\71\2\0\1\72\2\253\1\72\1\253\1\72"+ "\1\71\1\0\2\72\1\253\2\0\1\7\13\72\2\0"+ "\1\7\1\0\4\72\1\254\2\0\1\71\2\0\2\71"+ "\5\0\1\72\1\7\1\254\1\7\1\0\1\7\1\0"+ "\2\7\1\71\1\0\14\72\1\71\2\0\1\72\4\255"+ "\1\72\1\71\1\0\1\72\2\255\2\0\1\7\2\72"+ "\3\255\1\72\1\255\4\72\2\0\1\7\1\0\2\72"+ "\2\255\1\7\2\0\1\71\2\0\2\71\5\0\1\72"+ "\3\7\1\0\1\7\1\0\2\7\1\71\1\0\2\72"+ "\1\255\11\72\3\0\6\7\2\0\1\256\2\7\2\0"+ "\13\7\1\257\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\22\0\1\260"+ "\110\0\1\261\111\0\1\262\65\0\6\7\2\0\3\7"+ "\2\0\5\7\1\263\6\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\13\7\1\264\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\5\7\1\265\6\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\10\7\1\266\3\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\1\7\1\267"+ "\1\7\2\0\1\7\1\270\1\271\1\272\1\273\7\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\2\7\1\274\1\275\3\7\1\276"+ "\4\7\3\0\6\7\2\0\3\7\2\0\12\7\1\277"+ "\1\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\1\7\1\111\12\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\14\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\1\7\1\300\12\7\3\0\6\7\2\0"+ "\1\263\2\7\2\0\10\7\1\301\1\7\1\140\1\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\1\302"+ "\2\7\2\0\14\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\12\7\1\303\1\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\4\7\1\304\1\7\1\305\5\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\5\7\1\121\6\7\3\0\6\7\2\0\1\306\2\7"+ "\2\0\14\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\3\7\2\0\14\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\1\7"+ "\1\307\12\7\3\0\6\7\2\0\1\310\2\7\2\0"+ "\14\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\10\7\1\311\3\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\3\7\1\121\10\7\3\0\6\7\2\0\3\7\2\0"+ "\10\7\1\121\2\7\1\312\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\5\7\1\313\6\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\1\7\1\314\1\121\11\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\3\7\1\315"+ "\10\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\1\316\2\7\2\0\14\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\1\7\1\317\3\7"+ "\1\320\6\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\3\7\2\0\2\7\1\321\11\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\14\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\2\7\1\121\3\7\1\121\5\7"+ "\3\0\6\7\2\0\3\7\2\0\6\7\1\322\5\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\5\7\1\323\6\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\1\7\1\324\12\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\3\7\1\325\1\7\1\326\6\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\3\7"+ "\1\47\10\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\5\7"+ "\1\312\2\0\3\7\2\0\10\7\1\327\3\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\3\7\1\330\10\7\3\0\6\7\2\0"+ "\3\7\2\0\4\7\1\331\7\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\1\7\1\332"+ "\12\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\12\7\1\333\1\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\3\7\1\334"+ "\1\7\1\335\6\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\5\7\1\336\2\0\3\7\2\0\14\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\6\7\1\337\5\7\3\0\6\7\2\0\3\7"+ "\2\0\14\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\12\7\1\340\1\7"+ "\3\0\6\7\2\0\3\7\2\0\14\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\3\7\1\341\10\7\3\0\6\7\2\0\1\342"+ "\2\7\2\0\13\7\1\343\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\10\7\1\344\3\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\14\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\1\7\1\345\12\7"+ "\3\0\6\7\2\0\3\7\2\0\6\7\1\341\5\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\14\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\3\7\1\346\10\7"+ "\3\0\6\7\2\0\3\7\2\0\11\7\1\347\2\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\10\7\1\314\3\7\3\0\6\7"+ "\2\0\3\7\2\0\14\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\1\121"+ "\13\7\3\0\6\7\2\0\3\7\2\0\12\7\1\350"+ "\1\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\6\7\1\351\5\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\6\7\1\352"+ "\5\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\5\7\1\353\6\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\14\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\13\7\1\354\3\0\6\7\2\0\3\7"+ "\2\0\6\7\1\302\5\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\1\7\1\355\12\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\3\7\1\356\1\357\3\7\1\360\3\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\1\7\1\361\12\7\3\0\6\7\2\0"+ "\3\7\2\0\14\7\2\0\1\7\1\0\4\7\1\362"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\5\7\1\363\6\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\1\7\1\364\2\7\1\121\1\7\1\365\5\7"+ "\2\0\1\7\1\0\4\7\1\366\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\5\7\1\367\6\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\2\7\1\370"+ "\11\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\46\0\1\371\113\0"+ "\1\372\36\0\1\34\14\0\2\34\1\203\24\0\1\34"+ "\11\0\2\34\27\0\1\204\1\373\14\204\2\373\1\204"+ "\1\0\34\204\2\373\1\374\27\204\3\0\6\7\2\0"+ "\3\7\2\0\14\7\2\0\1\7\1\0\5\7\14\0"+ "\1\7\1\35\2\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\1\7\1\375"+ "\6\7\1\376\3\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\5\7\1\377\6\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\10\7\1\u0100\1\7\1\u0101\1\u0102\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\14\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\1\7\1\u0103\12\7\3\0\6\7\2\0"+ "\1\u0104\2\7\2\0\14\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\1\7\1\u0105\10\7"+ "\1\u0106\1\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\10\7\1\u0107\3\7"+ "\3\0\5\7\1\u0108\2\0\3\7\2\0\12\7\1\u0109"+ "\1\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\1\7\1\u010a\12\7\3\0"+ "\6\7\2\0\1\u010b\2\7\2\0\14\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\1\7"+ "\1\u010c\12\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\3\7\2\0\3\7\1\u010d\10\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\10\7"+ "\1\u010c\3\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\5\7"+ "\1\u010e\2\0\3\7\2\0\14\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\3\7\1\u010f"+ "\10\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\1\7\1\u0110\12\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\14\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\1\7\1\u0111\12\7\3\0\6\7\2\0"+ "\1\u0112\1\u0113\1\7\2\0\4\7\1\121\5\7\1\316"+ "\1\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\1\7\1\u0114\12\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\5\7\1\u0115\2\0\3\7\2\0\1\7"+ "\1\111\4\7\1\u0116\5\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\2\7\1\306\11\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\4\7\1\121\5\7\1\u0117\1\7"+ "\3\0\6\7\2\0\1\266\2\7\2\0\6\7\1\u0118"+ "\5\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\3\7\1\u0119\10\7\3\0"+ "\6\7\2\0\3\7\2\0\10\7\1\121\3\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\10\7\1\u011a\3\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\14\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\1\7\1\u011b\12\7\3\0\6\7\2\0\1\302\2\7"+ "\2\0\12\7\1\u011c\1\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\4\7\1\u011d\7\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\6\7\1\121\1\7\1\u011e\3\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\14\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\6\7\1\u011c\5\7\3\0\6\7"+ "\2\0\1\u011f\2\7\2\0\14\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\2\7\1\u0120"+ "\11\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\22\0\1\u0121\117\0"+ "\1\u0122\106\0\1\u0123\104\0\1\u0124\61\0\1\71\2\0"+ "\1\72\2\253\1\72\1\253\1\72\1\71\1\0\1\72"+ "\1\75\1\253\2\0\1\7\13\72\2\0\1\7\1\0"+ "\2\72\1\75\1\72\1\7\2\0\1\71\2\0\2\71"+ "\5\0\1\72\3\7\1\0\1\7\1\0\2\7\1\71"+ "\1\0\2\72\1\75\11\72\3\0\1\7\2\253\1\7"+ "\1\253\1\7\2\0\2\7\1\253\2\0\14\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\1\71\2\0\1\72\4\255\1\72"+ "\1\71\1\0\1\72\2\255\2\0\1\7\2\72\3\255"+ "\1\72\1\255\2\72\1\252\1\72\2\0\1\7\1\0"+ "\1\72\1\252\2\255\1\7\2\0\1\71\2\0\2\71"+ "\5\0\1\72\3\7\1\0\1\7\1\0\2\7\1\71"+ "\1\0\2\72\1\255\11\72\3\0\6\7\2\0\3\7"+ "\2\0\5\7\1\u0125\6\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\10\7\1\u0126\3\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\3\7\1\u0127\10\7\23\0\1\u0128"+ "\113\0\1\103\111\0\1\u0129\61\0\6\7\2\0\3\7"+ "\2\0\1\7\1\270\12\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\1\263\2\7\2\0\14\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\14\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\5\7\1\121\6\7\3\0"+ "\6\7\2\0\3\7\2\0\14\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\10\7\1\341\3\7\3\0\6\7\2\0\3\7\2\0"+ "\5\7\1\47\6\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\6\7\1\121\5\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\5\7\1\300\4\7\1\u012a\1\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\14\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\2\7\1\121\11\7\3\0\5\7\1\120"+ "\2\0\3\7\2\0\14\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\5\7\1\u012b\2\0\3\7\2\0\14\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\14\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\1\7\1\u012c\12\7\3\0"+ "\6\7\2\0\3\7\2\0\5\7\1\u012d\6\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\1\7\1\336\12\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\3\7\1\270\10\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\14\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\2\7\1\u012e\11\7\3\0"+ "\6\7\2\0\3\7\2\0\13\7\1\u012f\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\14\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\1\7\1\u0130\12\7\3\0\6\7"+ "\2\0\3\7\2\0\14\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\1\7\1\302\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\4\7\1\300"+ "\7\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\1\270\2\7\2\0\14\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\6\7\1\u0131\5\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\4\7\1\121\7\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\10\7\1\270\3\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\14\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\12\7\1\121\1\7"+ "\3\0\6\7\2\0\3\7\2\0\14\7\2\0\1\121"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\2\7"+ "\1\121\11\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\3\7\2\0\3\7\1\u0132\10\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\14\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\1\7\1\311\12\7\3\0\6\7"+ "\2\0\3\7\2\0\6\7\1\u0133\5\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\12\7"+ "\1\u0134\1\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\3\7\2\0\6\7\1\121\1\7\1\u0135\3\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\5\7\1\302\6\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\1\7\1\343\12\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\3\7\1\u0136\10\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\1\7\1\u0137\2\7"+ "\1\300\7\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\2\7\1\u0138\6\7"+ "\1\121\2\7\3\0\6\7\2\0\3\7\2\0\2\7"+ "\1\u0139\11\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\3\7\1\u013a\10\7"+ "\3\0\6\7\2\0\3\7\2\0\12\7\1\341\1\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\5\7\1\u013b\2\0"+ "\3\7\2\0\14\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\14\7\2\0\1\121\1\0"+ "\4\7\1\u013c\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\12\7"+ "\1\121\1\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\1\u0132\2\7\2\0\14\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\5\7\1\u013d"+ "\6\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\14\7\2\0\1\7\1\0\4\7\1\u013e"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\5\7\1\u013f\6\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\5\7\1\121\6\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\14\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\1\7\1\u0140\12\7\3\0\6\7\2\0\3\7"+ "\2\0\1\7\1\302\12\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\14\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\2\7\1\u0141\11\7\3\0\6\7\2\0\3\7"+ "\2\0\12\7\1\u0142\1\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\5\7\1\u0143\6\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\12\7\1\u0144\1\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\14\7\2\0\1\7"+ "\1\0\4\7\1\u0145\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\14\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\1\u0146\13\7\3\0\6\7"+ "\2\0\3\7\2\0\10\7\1\u0147\3\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\14\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\6\7\1\u0148\5\7\3\0\6\7"+ "\2\0\3\7\2\0\6\7\1\u0149\5\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\14\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\2\7\1\u014a\11\7\3\0\6\7"+ "\2\0\3\7\2\0\14\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\12\7"+ "\1\u0141\1\7\3\0\6\7\2\0\3\7\2\0\14\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\10\7\1\121\3\7\3\0\6\7"+ "\2\0\3\7\2\0\2\7\1\302\11\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\10\7"+ "\1\u014b\1\7\1\u014c\1\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\1\u014d\2\7\2\0\14\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\6\7\1\u014e\5\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\14\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\1\7\1\u014f\12\7\3\0\6\7\2\0\3\7\2\0"+ "\10\7\1\u0150\3\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\10\7\1\u0151\3\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\12\7\1\u0152\1\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\1\7\1\307"+ "\12\7\47\0\1\u0153\106\0\1\u0154\44\0\6\7\2\0"+ "\3\7\2\0\5\7\1\u0155\6\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\4\7\1\u0156"+ "\7\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\3\7\1\u0157\10\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\14\7\2\0"+ "\1\7\1\0\4\7\1\u0158\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\5\7\1\u0159\2\0"+ "\3\7\2\0\14\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\12\7\1\u015a\1\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\5\7\1\u015b\2\0\3\7"+ "\2\0\14\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\3\7\2\0\13\7\1\u015c\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\1\7\1\u015d"+ "\12\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\12\7\1\u015e\1\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\5\7\1\u015f"+ "\6\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\1\u0160\2\7\2\0\14\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\14\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\1\7\1\u0161\12\7\3\0\6\7\2\0\3\7"+ "\2\0\14\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\3\7\1\u0162\10\7"+ "\3\0\6\7\2\0\1\u010c\2\7\2\0\14\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\14\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\211\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\1\u0163\2\7\2\0\14\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\6\7\1\u010c\5\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\6\7\1\u0164\5\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\14\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\1\u0165\13\7\3\0\6\7\2\0\3\7\2\0"+ "\2\7\1\u013f\11\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\5\7\1\u0166\6\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\10\7\1\302\3\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\3\7\1\u0167"+ "\10\7\3\0\6\7\2\0\3\7\2\0\1\7\1\317"+ "\12\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\7\7\1\331\4\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\13\7\1\u0168"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\1\7\1\121\12\7\3\0\6\7"+ "\2\0\3\7\2\0\5\7\1\u0169\6\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\3\7"+ "\1\121\10\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\1\7\1\233\1\7\2\0\14\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\13\7"+ "\1\u016a\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\6\7\1\u016b\5\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\1\7\1\121"+ "\12\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\6\7\1\u016c\5\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\1\7\1\u016d"+ "\12\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\14\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\1\7\1\314"+ "\12\7\3\0\6\7\2\0\3\7\2\0\14\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\3\7\1\133\10\7\2\0\1\u016e\132\0"+ "\1\u0121\102\0\1\u016f\111\0\1\u0170\70\0\6\7\2\0"+ "\1\7\1\322\1\7\2\0\14\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\6\7\1\u0171"+ "\5\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\2\7\1\125\11\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\24\0\1\u0172\115\0\1\u0173\60\0\6\7\2\0"+ "\3\7\2\0\13\7\1\u0174\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\4\7\1\341\7\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\14\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\7\7\1\u0175\4\7"+ "\3\0\6\7\2\0\1\u0176\2\7\2\0\14\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\14\7\2\0\1\7\1\0\4\7\1\u0177\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\3\7\2\0\6\7\1\u0178\5\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\10\7"+ "\1\272\3\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\3\7\2\0\5\7\1\u0179\6\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\14\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\6\7\1\121\5\7\3\0\6\7"+ "\2\0\3\7\2\0\14\7\2\0\1\7\1\0\4\7"+ "\1\u017a\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\6\7\1\u017b"+ "\5\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\1\u017c\2\7\2\0\14\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\6\7\1\u017d\5\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\12\7\1\u0152\1\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\5\7\1\160\2\0\3\7\2\0\14\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\1\341\2\7"+ "\2\0\14\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\1\u017e\2\7\2\0\14\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\1\7\1\u017f\1\7\2\0"+ "\14\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\14\7\2\0\1\7\1\0\4\7\1\u0180"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\11\7\1\302\2\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\13\7\1\u0181\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\5\7\1\u0182\6\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\1\7\1\u0183\12\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\13\7\1\u0184\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\3\7"+ "\1\u0185\1\7\1\u0186\6\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\14\7\2\0\1\7"+ "\1\0\4\7\1\u0187\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\14\7\2\0\1\7\1\0\4\7\1\u0188\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\3\7\2\0\14\7\2\0\1\7\1\0\4\7"+ "\1\u0189\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\14\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\121\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\14\7\2\0\1\7\1\0\4\7\1\u018a\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\3\7\2\0\14\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\1\7"+ "\1\171\12\7\3\0\6\7\2\0\3\7\2\0\5\7"+ "\1\171\6\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\3\7\2\0\3\7\1\160\10\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\3\7"+ "\1\u018b\10\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\3\7\2\0\14\7\2\0\1\7\1\0\4\7"+ "\1\u018c\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\3\7\1\u018d"+ "\10\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\6\7\1\u018e\5\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\5\7\1\u018f"+ "\6\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\50\0\1\34\110\0"+ "\1\u0153\41\0\6\7\2\0\3\7\2\0\14\7\2\0"+ "\1\7\1\0\4\7\1\u0190\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\14\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\1\u0191\13\7\3\0"+ "\6\7\2\0\3\7\2\0\14\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\2\7\1\u0192\11\7\3\0\6\7\2\0\3\7\2\0"+ "\12\7\1\u0193\1\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\1\7\1\u0194\12\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\5\7\1\u010c\6\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\1\u0195\2\7\2\0\14\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\10\7"+ "\1\u0196\3\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\3\7\2\0\5\7\1\u0197\6\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\14\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\1\7\1\u0198\12\7\3\0\6\7"+ "\2\0\3\7\2\0\10\7\1\u010e\3\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\1\u0199\2\7\2\0"+ "\14\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\14\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\11\7\1\u019a"+ "\2\7\3\0\6\7\2\0\3\7\2\0\2\7\1\u019b"+ "\11\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\3\7\1\u019c\10\7\3\0"+ "\6\7\2\0\3\7\2\0\10\7\1\u019d\3\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\14\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\1\u019e\13\7\3\0\6\7"+ "\2\0\3\7\2\0\14\7\2\0\1\7\1\0\4\7"+ "\1\u0120\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\1\7\1\121\1\7\2\0"+ "\14\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\5\7\1\u019f"+ "\2\0\3\7\2\0\3\7\1\u01a0\1\7\1\u01a1\6\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\14\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\3\7\1\u01a2\10\7"+ "\3\0\6\7\2\0\3\7\2\0\14\7\2\0\1\7"+ "\1\0\4\7\1\u01a3\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\6\7\1\u01a4\5\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\14\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\1\7\1\47\12\7\3\0\6\7\2\0\3\7\2\0"+ "\14\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\6\7\1\u01a5\5\7\70\0"+ "\1\u01a6\20\0\2\u01a7\6\u016f\1\0\1\u01a7\3\u016f\2\0"+ "\1\u01a7\13\u016f\1\u01a7\1\0\1\u01a7\1\0\4\u016f\2\u01a7"+ "\2\0\4\u01a7\5\0\1\u01a7\1\0\1\u01a7\1\0\3\u01a7"+ "\1\u016f\1\u01a7\1\u016f\1\u01a7\14\u016f\2\0\1\u016e\16\0"+ "\1\u0121\71\0\6\7\2\0\3\7\2\0\5\7\1\u01a8"+ "\6\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\25\0\1\103\115\0"+ "\1\u01a9\57\0\6\7\2\0\3\7\2\0\4\7\1\u014d"+ "\7\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\5\7\1\u01aa\6\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\1\7\1\341"+ "\12\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\14\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\7\7\1\144"+ "\4\7\3\0\6\7\2\0\3\7\2\0\14\7\2\0"+ "\1\7\1\0\4\7\1\u01ab\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\14\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\2\7\1\u01ac\11\7"+ "\3\0\6\7\2\0\1\7\1\u01ad\1\7\2\0\1\7"+ "\1\u01ae\5\7\1\u01af\2\7\1\u01b0\1\312\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\2\7\1\u01b1\11\7\3\0\6\7\2\0\3\7"+ "\2\0\14\7\2\0\1\7\1\0\4\7\1\u01b2\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\14\7\2\0\1\7\1\0"+ "\4\7\1\u01b3\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\3\7"+ "\1\u01b4\10\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\3\7\2\0\5\7\1\u01b5\6\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\13\7"+ "\1\u01b6\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\11\7\1\u01b7\2\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\10\7\1\360"+ "\3\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\3\7\1\233\10\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\2\7\1\u01b8"+ "\11\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\10\7\1\341\3\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\10\7\1\u0132"+ "\3\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\14\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\7\7\1\u01b9"+ "\4\7\3\0\6\7\2\0\3\7\2\0\14\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\3\7\1\u01ba\10\7\3\0\6\7\2\0"+ "\1\7\1\u01bb\1\7\2\0\10\7\1\u014b\1\7\1\u014c"+ "\1\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\4\7\1\u01bc\7\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\1\7\1\u01bd\1\7\2\0"+ "\14\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\10\7\1\u01be\3\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\3\7\1\u01bf"+ "\10\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\14\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\3\7\1\u01c0"+ "\10\7\3\0\6\7\2\0\3\7\2\0\13\7\1\u01c1"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\14\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\3\7\1\u01c2\10\7"+ "\3\0\6\7\2\0\3\7\2\0\4\7\1\u01c3\7\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\5\7\1\u01c4\6\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\14\7\2\0\1\7"+ "\1\0\4\7\1\u01c5\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\14\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\1\7\1\u01c6\12\7\3\0"+ "\6\7\2\0\3\7\2\0\14\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\1\u01c7\13\7\3\0\6\7\2\0\3\7\2\0\4\7"+ "\1\u01c8\7\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\3\7\2\0\6\7\1\u01c9\5\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\1\u010e\2\7\2\0"+ "\14\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\11\7\1\u01ca\2\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\5\7\1\u01cb"+ "\6\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\5\7\1\u01cc"+ "\2\0\3\7\2\0\14\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\13\7\1\u01cd\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\3\7\1\u01ce\10\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\14\7\2\0\1\7\1\0"+ "\4\7\1\u01cf\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\14\7"+ "\2\0\1\7\1\0\4\7\1\u01d0\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\12\7\1\u01d1\1\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\4\7\1\u01d2"+ "\7\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\6\7\1\u01d3\5\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\5\7\1\u01d4"+ "\6\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\2\7\1\u01d5\1\u01bf\10\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\14\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\1\7\1\u01d6\12\7\3\0\6\7"+ "\2\0\3\7\2\0\14\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\3\7"+ "\1\121\10\7\70\0\1\u016f\22\0\6\7\2\0\1\233"+ "\2\7\2\0\14\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\30\0"+ "\1\u0172\62\0\6\7\2\0\3\7\2\0\14\7\2\0"+ "\1\7\1\0\4\7\1\u01d7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\3\7\1\270\5\7\1\u01d8\2\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\14\7"+ "\2\0\1\7\1\0\4\7\1\u01d9\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\12\7\1\116\1\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\14\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\1\125\13\7\3\0\6\7\2\0\3\7"+ "\2\0\14\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\1\7\1\157\4\7"+ "\1\160\5\7\3\0\6\7\2\0\3\7\2\0\14\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\1\7\1\u0181\12\7\3\0\6\7"+ "\2\0\3\7\2\0\14\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\1\7"+ "\1\u01da\12\7\3\0\6\7\2\0\3\7\2\0\5\7"+ "\1\u01db\6\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\1\7\1\u0166\12\7"+ "\3\0\6\7\2\0\3\7\2\0\3\7\1\u01dc\10\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\10\7\1\u01dd\3\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\1\7\1\314\1\7\2\0\14\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\10\7\1\u01de\3\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\14\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\1\u01bd\13\7\3\0\6\7\2\0\3\7\2\0"+ "\3\7\1\u012b\10\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\5\7\1\335\6\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\5\7\1\u01df\6\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\13\7\1\u01e0\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\14\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\1\7\1\u01e1\12\7\3\0\6\7"+ "\2\0\3\7\2\0\13\7\1\331\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\4\7\1\u01e2"+ "\7\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\1\134\2\7\2\0\14\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\5\7\1\u01e3\6\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\6\7\1\u0132\5\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\5\7\1\312\6\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\14\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\1\7\1\u01e4\12\7"+ "\3\0\6\7\2\0\3\7\2\0\4\7\1\u01e5\7\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\5\7\1\u01e6\6\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\3\7\1\u01e7\10\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\14\7\2\0\1\7\1\0\4\7\1\u01e8\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\5\7\1\u01e9\6\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\14\7\2\0\1\7\1\0\4\7\1\u01ea\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\3\7\2\0\14\7\2\0\1\7\1\0\4\7"+ "\1\u01eb\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\10\7\1\u01ec"+ "\3\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\1\u01ed\2\7\2\0\14\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\12\7\1\u01ee\1\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\10\7\1\u01ef\3\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\14\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\1\7\1\u01f0\12\7\3\0\6\7\2\0\3\7"+ "\2\0\4\7\1\u01f1\7\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\6\7\1\u01f2\5\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\1\u01f3"+ "\2\7\2\0\14\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\14\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\1\u01f4\13\7\3\0\6\7\2\0\1\u01f5\2\7\2\0"+ "\14\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\1\u01f6\2\7\2\0\14\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\14\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\3\7\1\u01f7\10\7\3\0\6\7\2\0\3\7"+ "\2\0\13\7\1\u01f8\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\14\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\3\7\1\u01f9\10\7\3\0\5\7\1\u0115\2\0\3\7"+ "\2\0\14\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\1\u01fa\2\7\2\0\14\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\14\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\10\7\1\u01fb\3\7\3\0\6\7\2\0"+ "\3\7\2\0\6\7\1\u01fc\5\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\3\7\1\u01fd"+ "\10\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\6\7\1\u0118\5\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\1\u01fe\2\7\2\0\14\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\10\7\1\u01d4\3\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\5\7\1\u01ff\6\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\10\7\1\u0200\3\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\14\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\12\7\1\u0201\1\7\3\0\6\7\2\0\3\7"+ "\2\0\14\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\7\7\1\u0202\4\7"+ "\3\0\6\7\2\0\3\7\2\0\14\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\2\7\1\u0203\11\7\3\0\6\7\2\0\3\7"+ "\2\0\14\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\1\7\1\u0204\12\7"+ "\3\0\6\7\2\0\3\7\2\0\14\7\2\0\1\7"+ "\1\0\4\7\1\u0205\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\1\u0206\2\7"+ "\2\0\12\7\1\u0207\1\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\2\7"+ "\1\u0208\1\u0209\10\7\3\0\5\7\1\u020a\2\0\3\7"+ "\2\0\14\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\3\7\2\0\6\7\1\u020b\5\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\5\7"+ "\1\u020c\6\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\3\7\2\0\5\7\1\u020d\6\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\14\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\2\7\1\u020e\11\7\3\0\6\7"+ "\2\0\3\7\2\0\10\7\1\u020f\3\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\14\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\1\7\1\u0210\12\7\3\0\6\7"+ "\2\0\3\7\2\0\13\7\1\121\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\14\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\1\7\1\302\12\7\3\0\6\7\2\0"+ "\3\7\2\0\14\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\1\7\1\272"+ "\12\7\3\0\6\7\2\0\3\7\2\0\14\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\1\7\1\u0211\12\7\3\0\6\7\2\0"+ "\3\7\2\0\14\7\2\0\1\7\1\0\4\7\1\u0212"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\5\7\1\u01a1\6\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\6\7\1\163\5\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\3\7\1\u0213\10\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\1\u0214"+ "\2\7\2\0\14\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\5\7\1\u0215\6\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\12\7\1\u0132\1\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\12\7\1\u0216\1\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\1\7\1\171\12\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\14\7\2\0\1\302\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\6\7\1\u0217"+ "\5\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\5\7\1\u0218\6\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\3\7\1\u0219"+ "\10\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\5\7\1\u010b\6\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\10\7\1\u021a"+ "\3\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\2\7\1\u021b\11\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\5\7\1\u021c"+ "\6\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\5\7\1\u021d\6\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\5\7\1\u021e\2\0\3\7\2\0\14\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\5\7\1\u021f\6\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\10\7\1\u0220\3\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\14\7\2\0\1\7\1\0\4\7\1\u0221\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\14\7\2\0\1\7\1\0"+ "\4\7\1\u0222\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\14\7"+ "\2\0\1\7\1\0\4\7\1\u0223\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\14\7\2\0\1\7\1\0\4\7\1\u0224"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\14\7\2\0\1\7"+ "\1\0\4\7\1\u0225\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\10\7\1\u0226\3\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\14\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\4\7\1\u0132\7\7\3\0\6\7\2\0\3\7\2\0"+ "\5\7\1\u0227\6\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\2\7\1\u0228\11\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\14\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\1\7\1\u0229\12\7\3\0"+ "\6\7\2\0\3\7\2\0\10\7\1\u022a\3\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\12\7\1\u022b\1\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\5\7\1\u022c\6\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\14\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\2\7\1\u022d\11\7\3\0"+ "\6\7\2\0\3\7\2\0\12\7\1\u010c\1\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\14\7\2\0\1\7\1\0\4\7\1\u022e\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\3\7\2\0\3\7\1\u022f\10\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\3\7"+ "\1\u0230\10\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\3\7\2\0\10\7\1\u0231\3\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\7\7\1\u0232\4\7\3\0\6\7\2\0\3\7"+ "\2\0\2\7\1\u010c\11\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\6\7\1\u0233\5\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\1\u0234"+ "\2\7\2\0\14\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\10\7\1\u0235\3\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\14\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\7\7\1\u0236\4\7\3\0"+ "\6\7\2\0\1\7\1\u0237\1\7\2\0\2\7\1\u021b"+ "\11\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\12\7\1\u0238\1\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\1\u0239\2\7\2\0\14\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\6\7\1\u023a\5\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\10\7\1\u023b\3\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\4\7\1\u023c\7\7\3\0\6\7"+ "\2\0\3\7\2\0\14\7\2\0\1\7\1\0\4\7"+ "\1\u023d\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\1\u01d4\2\7\2\0\14\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\6\7\1\u023e\5\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\14\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\6\7\1\302\5\7\3\0\6\7\2\0\3\7"+ "\2\0\14\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\4\7\1\u023f\7\7"+ "\3\0\6\7\2\0\3\7\2\0\14\7\2\0\1\7"+ "\1\0\4\7\1\u0240\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\10\7\1\u0241\3\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\6\7\1\u0242\5\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\14\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\2\7\1\u0243\11\7\3\0"+ "\6\7\2\0\3\7\2\0\14\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\10\7\1\u022f\3\7\3\0\6\7\2\0\3\7\2\0"+ "\5\7\1\u0219\6\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\3\7\1\u0244\10\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\5\7\1\u0245\6\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\3\7\1\u0246\10\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\5\7\1\u0247\6\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\13\7\1\u0248\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\13\7"+ "\1\u0249\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\5\7\1\u024a\6\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\5\7\1\u024b"+ "\6\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\6\7\1\u024c\5\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\13\7\1\171"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\7\7\1\u0132\4\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\14\7\2\0\1\7"+ "\1\0\4\7\1\u024d\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\6\7\1\u024e\5\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\14\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\3\7\1\u021b\10\7\3\0\6\7\2\0\3\7\2\0"+ "\5\7\1\u024f\6\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\14\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\1\u010c\13\7\3\0\6\7\2\0\3\7\2\0\3\7"+ "\1\u0250\10\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\3\7\2\0\14\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\u0251\1\0\2\7\2\0\14\7"+ "\3\0\6\7\2\0\3\7\2\0\1\7\1\u0252\12\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\14\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\3\7\1\u0253\10\7"+ "\3\0\6\7\2\0\1\u0254\2\7\2\0\14\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\12\7\1\u0255\1\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\10\7\1\u0256\3\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\1\7\1\u0257"+ "\1\7\2\0\14\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\14\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\4\7\1\u010e\7\7\3\0\6\7\2\0\3\7\2\0"+ "\5\7\1\120\6\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\5\7\1\u01db\6\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\14\7\2\0\1\7\1\0\4\7\1\u0258\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\3\7\2\0\11\7\1\u0259\2\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\7\7"+ "\1\u025a\4\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\3\7\2\0\14\7\2\0\1\7\1\0\4\7"+ "\1\u025b\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\14\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\1\7\1\u025c\12\7\3\0\6\7\2\0"+ "\3\7\2\0\5\7\1\u025d\6\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\1\7\1\u025e"+ "\12\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\5\7\1\217\6\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\5\7\1\u025f"+ "\6\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\12\7\1\u0260\1\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\4\7\1\u0261"+ "\7\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\12\7\1\u0262\1\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\12\7\1\u0263"+ "\1\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\14\7\2\0\1\7\1\0\5\7\14\0"+ "\1\7\1\121\2\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\12\7\1\u0264"+ "\1\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\1\7\1\u0265\12\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\13\7\1\u0266"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\14\7\3\0\6\7\2\0\3\7"+ "\2\0\14\7\2\0\1\7\1\0\4\7\1\u0267\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\5\7\1\u0268\6\7\2\0"+ "\1\7\1\0\5\7\14\0\4\7\1\0\1\7\1\0"+ "\2\7\2\0\14\7\3\0\6\7\2\0\3\7\2\0"+ "\12\7\1\u0269\1\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\14\7\3\0"+ "\6\7\2\0\3\7\2\0\13\7\1\u026a\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\14\7"+ "\2\0\1\7\1\0\5\7\14\0\4\7\1\0\1\7"+ "\1\0\2\7\2\0\6\7\1\u010c\5\7\3\0\6\7"+ "\2\0\3\7\2\0\14\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\7\7"+ "\1\u026b\4\7\3\0\6\7\2\0\3\7\2\0\2\7"+ "\1\u026c\11\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\3\7\2\0\14\7\2\0\1\7\1\0\5\7"+ "\14\0\4\7\1\0\1\7\1\0\2\7\2\0\1\7"+ "\1\221\12\7\3\0\6\7\2\0\3\7\2\0\3\7"+ "\1\u026d\10\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\3\7\2\0\4\7\1\u026e\7\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\3\7"+ "\1\u026f\10\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\3\7\2\0\10\7\1\u015a\3\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\3\7\2\0\5\7"+ "\1\u0270\6\7\2\0\1\7\1\0\5\7\14\0\4\7"+ "\1\0\1\7\1\0\2\7\2\0\14\7\3\0\6\7"+ "\2\0\3\7\2\0\3\7\1\u0271\10\7\2\0\1\7"+ "\1\0\5\7\14\0\4\7\1\0\1\7\1\0\2\7"+ "\2\0\14\7\3\0\6\7\2\0\1\u0272\2\7\2\0"+ "\14\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\6\7\1\u025e\5\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7\3\0\6\7\2\0\3\7\2\0\1\7\1\u0273"+ "\12\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\14\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\2\7\1\u025f"+ "\11\7\3\0\6\7\2\0\3\7\2\0\4\7\1\u0274"+ "\7\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\14\7\2\0\1\7\1\0\5\7\14\0"+ "\4\7\1\0\1\7\1\0\2\7\2\0\10\7\1\217"+ "\3\7\3\0\6\7\2\0\3\7\2\0\1\7\1\u0158"+ "\12\7\2\0\1\7\1\0\5\7\14\0\4\7\1\0"+ "\1\7\1\0\2\7\2\0\14\7\3\0\6\7\2\0"+ "\3\7\2\0\5\7\1\u0275\6\7\2\0\1\7\1\0"+ "\5\7\14\0\4\7\1\0\1\7\1\0\2\7\2\0"+ "\14\7"; private static int [] zzUnpackTrans() { int [] result = new int[43200]; int offset = 0; offset = zzUnpackTrans(ZZ_TRANS_PACKED_0, offset, result); return result; } private static int zzUnpackTrans(String packed, int offset, int [] result) { int i = 0; /* index in packed string */ int j = offset; /* index in unpacked array */ int l = packed.length(); while (i < l) { int count = packed.charAt(i++); int value = packed.charAt(i++); value--; do result[j++] = value; while (--count > 0); } return j; } /* error codes */ private static final int ZZ_UNKNOWN_ERROR = 0; private static final int ZZ_NO_MATCH = 1; private static final int ZZ_PUSHBACK_2BIG = 2; /* error messages for the codes above */ private static final String ZZ_ERROR_MSG[] = { "Unkown internal scanner error", "Error: could not match input", "Error: pushback value was too large" }; /** * ZZ_ATTRIBUTE[aState] contains the attributes of state <code>aState</code> */ private static final int [] ZZ_ATTRIBUTE = zzUnpackAttribute(); private static final String ZZ_ATTRIBUTE_PACKED_0 = "\1\1\2\0\2\11\10\1\2\11\14\1\1\11\3\1"+ "\1\11\20\1\1\11\3\1\1\11\15\1\1\11\3\0"+ "\72\1\4\0\37\1\2\11\4\0\6\1\3\0\106\1"+ "\2\0\1\11\45\1\4\0\3\1\2\0\51\1\2\0"+ "\31\1\1\0\1\1\1\0\1\1\2\0\62\1\2\0"+ "\1\1\1\0\314\1"; private static int [] zzUnpackAttribute() { int [] result = new int[629]; int offset = 0; offset = zzUnpackAttribute(ZZ_ATTRIBUTE_PACKED_0, offset, result); return result; } private static int zzUnpackAttribute(String packed, int offset, int [] result) { int i = 0; /* index in packed string */ int j = offset; /* index in unpacked array */ int l = packed.length(); while (i < l) { int count = packed.charAt(i++); int value = packed.charAt(i++); do result[j++] = value; while (--count > 0); } return j; } /** the input device */ private java.io.Reader zzReader; /** the current state of the DFA */ private int zzState; /** the current lexical state */ private int zzLexicalState = YYINITIAL; /** this buffer contains the current text to be matched and is the source of the yytext() string */ private char zzBuffer[]; /** the textposition at the last accepting state */ private int zzMarkedPos; /** the current text position in the buffer */ private int zzCurrentPos; /** startRead marks the beginning of the yytext() string in the buffer */ private int zzStartRead; /** endRead marks the last character in the buffer, that has been read from input */ private int zzEndRead; /** zzAtEOF == true <=> the scanner is at the EOF */ private boolean zzAtEOF; /* user code: */ /** * Constructor. This must be here because JFlex does not generate a * no-parameter constructor. */ public ClojureTokenMaker() { } /** * Adds the token specified to the current linked list of tokens. * * @param tokenType The token's type. * @see #addToken(int, int, int) */ private void addHyperlinkToken(int start, int end, int tokenType) { int so = start + offsetShift; addToken(zzBuffer, start,end, tokenType, so, true); } /** * Adds the token specified to the current linked list of tokens. * * @param tokenType The token's type. */ private void addToken(int tokenType) { addToken(zzStartRead, zzMarkedPos-1, tokenType); } /** * Adds the token specified to the current linked list of tokens. * * @param tokenType The token's type. * @see #addHyperlinkToken(int, int, int) */ private void addToken(int start, int end, int tokenType) { int so = start + offsetShift; addToken(zzBuffer, start,end, tokenType, so, false); } /** * Adds the token specified to the current linked list of tokens. * * @param array The character array. * @param start The starting offset in the array. * @param end The ending offset in the array. * @param tokenType The token's type. * @param startOffset The offset in the document at which this token * occurs. * @param hyperlink Whether this token is a hyperlink. */ @Override public void addToken(char[] array, int start, int end, int tokenType, int startOffset, boolean hyperlink) { super.addToken(array, start,end, tokenType, startOffset, hyperlink); zzStartRead = zzMarkedPos; } /** * {@inheritDoc} */ @Override public String[] getLineCommentStartAndEnd(int languageIndex) { return new String[] { ";", null }; } /** * Returns the first token in the linked list of tokens generated * from <code>text</code>. This method must be implemented by * subclasses so they can correctly implement syntax highlighting. * * @param text The text from which to get tokens. * @param initialTokenType The token type we should start with. * @param startOffset The offset into the document at which * <code>text</code> starts. * @return The first <code>Token</code> in a linked list representing * the syntax highlighted text. */ public Token getTokenList(Segment text, int initialTokenType, int startOffset) { resetTokenList(); this.offsetShift = -text.offset + startOffset; // Start off in the proper state. int state = Token.NULL; switch (initialTokenType) { /*case Token.COMMENT_MULTILINE: state = MLC; start = text.offset; break; case Token.COMMENT_DOCUMENTATION: state = DOCCOMMENT; start = text.offset; break;*/ case Token.LITERAL_STRING_DOUBLE_QUOTE: state = STRING; start = text.offset; break; default: state = Token.NULL; } s = text; try { yyreset(zzReader); yybegin(state); return yylex(); } catch (IOException ioe) { ioe.printStackTrace(); return new TokenImpl(); } } /** * Refills the input buffer. * * @return <code>true</code> if EOF was reached, otherwise * <code>false</code>. */ private boolean zzRefill() { return zzCurrentPos>=s.offset+s.count; } /** * Resets the scanner to read from a new input stream. * Does not close the old reader. * * All internal variables are reset, the old input stream * <b>cannot</b> be reused (internal buffer is discarded and lost). * Lexical state is set to <tt>YY_INITIAL</tt>. * * @param reader the new input stream */ public final void yyreset(Reader reader) { // 's' has been updated. zzBuffer = s.array; /* * We replaced the line below with the two below it because zzRefill * no longer "refills" the buffer (since the way we do it, it's always * "full" the first time through, since it points to the segment's * array). So, we assign zzEndRead here. */ //zzStartRead = zzEndRead = s.offset; zzStartRead = s.offset; zzEndRead = zzStartRead + s.count - 1; zzCurrentPos = zzMarkedPos = s.offset; zzLexicalState = YYINITIAL; zzReader = reader; zzAtEOF = false; } /** * Creates a new scanner * There is also a java.io.InputStream version of this constructor. * * @param in the java.io.Reader to read input from. */ public ClojureTokenMaker(java.io.Reader in) { this.zzReader = in; } /** * Creates a new scanner. * There is also java.io.Reader version of this constructor. * * @param in the java.io.Inputstream to read input from. */ public ClojureTokenMaker(java.io.InputStream in) { this(new java.io.InputStreamReader(in)); } /** * Unpacks the compressed character translation table. * * @param packed the packed character translation table * @return the unpacked character translation table */ private static char [] zzUnpackCMap(String packed) { char [] map = new char[0x10000]; int i = 0; /* index in packed string */ int j = 0; /* index in unpacked array */ while (i < 164) { int count = packed.charAt(i++); char value = packed.charAt(i++); do map[j++] = value; while (--count > 0); } return map; } /** * Closes the input stream. */ public final void yyclose() throws java.io.IOException { zzAtEOF = true; /* indicate end of file */ zzEndRead = zzStartRead; /* invalidate buffer */ if (zzReader != null) zzReader.close(); } /** * Returns the current lexical state. */ public final int yystate() { return zzLexicalState; } /** * Enters a new lexical state * * @param newState the new lexical state */ @Override public final void yybegin(int newState) { zzLexicalState = newState; } /** * Returns the text matched by the current regular expression. */ public final String yytext() { return new String( zzBuffer, zzStartRead, zzMarkedPos-zzStartRead ); } /** * Returns the character at position <tt>pos</tt> from the * matched text. * * It is equivalent to yytext().charAt(pos), but faster * * @param pos the position of the character to fetch. * A value from 0 to yylength()-1. * * @return the character at position pos */ public final char yycharat(int pos) { return zzBuffer[zzStartRead+pos]; } /** * Returns the length of the matched text region. */ public final int yylength() { return zzMarkedPos-zzStartRead; } /** * Reports an error that occured while scanning. * * In a wellformed scanner (no or only correct usage of * yypushback(int) and a match-all fallback rule) this method * will only be called with things that "Can't Possibly Happen". * If this method is called, something is seriously wrong * (e.g. a JFlex bug producing a faulty scanner etc.). * * Usual syntax/scanner level error handling should be done * in error fallback rules. * * @param errorCode the code of the errormessage to display */ private void zzScanError(int errorCode) { String message; try { message = ZZ_ERROR_MSG[errorCode]; } catch (ArrayIndexOutOfBoundsException e) { message = ZZ_ERROR_MSG[ZZ_UNKNOWN_ERROR]; } throw new Error(message); } /** * Pushes the specified amount of characters back into the input stream. * * They will be read again by then next call of the scanning method * * @param number the number of characters to be read again. * This number must not be greater than yylength()! */ public void yypushback(int number) { if ( number > yylength() ) zzScanError(ZZ_PUSHBACK_2BIG); zzMarkedPos -= number; } /** * Resumes scanning until the next regular expression is matched, * the end of input is encountered or an I/O-Error occurs. * * @return the next token * @exception java.io.IOException if any I/O-Error occurs */ public org.fife.ui.rsyntaxtextarea.Token yylex() throws java.io.IOException { int zzInput; int zzAction; // cached fields: int zzCurrentPosL; int zzMarkedPosL; int zzEndReadL = zzEndRead; char [] zzBufferL = zzBuffer; char [] zzCMapL = ZZ_CMAP; int [] zzTransL = ZZ_TRANS; int [] zzRowMapL = ZZ_ROWMAP; int [] zzAttrL = ZZ_ATTRIBUTE; while (true) { zzMarkedPosL = zzMarkedPos; zzAction = -1; zzCurrentPosL = zzCurrentPos = zzStartRead = zzMarkedPosL; zzState = zzLexicalState; zzForAction: { while (true) { if (zzCurrentPosL < zzEndReadL) zzInput = zzBufferL[zzCurrentPosL++]; else if (zzAtEOF) { zzInput = YYEOF; break zzForAction; } else { // store back cached positions zzCurrentPos = zzCurrentPosL; zzMarkedPos = zzMarkedPosL; boolean eof = zzRefill(); // get translated positions and possibly new buffer zzCurrentPosL = zzCurrentPos; zzMarkedPosL = zzMarkedPos; zzBufferL = zzBuffer; zzEndReadL = zzEndRead; if (eof) { zzInput = YYEOF; break zzForAction; } else { zzInput = zzBufferL[zzCurrentPosL++]; } } int zzNext = zzTransL[ zzRowMapL[zzState] + zzCMapL[zzInput] ]; if (zzNext == -1) break zzForAction; zzState = zzNext; int zzAttributes = zzAttrL[zzState]; if ( (zzAttributes & 1) == 1 ) { zzAction = zzState; zzMarkedPosL = zzCurrentPosL; if ( (zzAttributes & 8) == 8 ) break zzForAction; } } } // store back cached position zzMarkedPos = zzMarkedPosL; switch (zzAction < 0 ? zzAction : ZZ_ACTION[zzAction]) { case 15: { addToken(Token.PREPROCESSOR); } case 26: break; case 6: { addNullToken(); return firstToken; } case 27: break; case 19: { addToken(Token.LITERAL_CHAR); } case 28: break; case 9: { addToken(Token.WHITESPACE); } case 29: break; case 17: { addToken(Token.LITERAL_NUMBER_HEXADECIMAL); } case 30: break; case 18: { addToken(Token.LITERAL_NUMBER_FLOAT); } case 31: break; case 20: { addToken(Token.RESERVED_WORD); } case 32: break; case 22: { addToken(Token.VARIABLE); } case 33: break; case 8: { addToken(Token.SEPARATOR); } case 34: break; case 1: { addToken(Token.IDENTIFIER); } case 35: break; case 14: { addToken(start,zzStartRead-1, Token.COMMENT_EOL); addNullToken(); return firstToken; } case 36: break; case 21: { addToken(Token.FUNCTION); } case 37: break; case 23: { addToken(Token.DATA_TYPE); } case 38: break; case 11: { /* Skip escaped chars. */ } case 39: break; case 2: { addToken(Token.ERROR_IDENTIFIER); } case 40: break; case 24: { addToken(Token.LITERAL_BOOLEAN); } case 41: break; case 12: { addToken(start,zzStartRead-1, Token.LITERAL_STRING_DOUBLE_QUOTE); return firstToken; } case 42: break; case 25: { int temp=zzStartRead; addToken(start,zzStartRead-1, Token.COMMENT_EOL); addHyperlinkToken(temp,zzMarkedPos-1, Token.COMMENT_EOL); start = zzMarkedPos; } case 43: break; case 16: { addToken(Token.ERROR_NUMBER_FORMAT); } case 44: break; case 7: { start = zzMarkedPos-1; yybegin(STRING); } case 45: break; case 3: { start = zzMarkedPos-1; yybegin(EOL_COMMENT); } case 46: break; case 5: { addToken(Token.LITERAL_NUMBER_DECIMAL_INT); } case 47: break; case 4: { addToken(Token.OPERATOR); } case 48: break; case 13: { yybegin(YYINITIAL); addToken(start,zzStartRead, Token.LITERAL_STRING_DOUBLE_QUOTE); } case 49: break; case 10: { } case 50: break; default: if (zzInput == YYEOF && zzStartRead == zzCurrentPos) { zzAtEOF = true; switch (zzLexicalState) { case EOL_COMMENT: { addToken(start,zzStartRead-1, Token.COMMENT_EOL); addNullToken(); return firstToken; } case 630: break; case STRING: { addToken(start,zzStartRead-1, Token.LITERAL_STRING_DOUBLE_QUOTE); return firstToken; } case 631: break; case YYINITIAL: { addNullToken(); return firstToken; } case 632: break; default: return null; } } else { zzScanError(ZZ_NO_MATCH); } } } } }