// Generated from /Users/weixiangyu/Company/qc-cloud-platform/packages/openqasm-editor/lib/antlr/openqasm.g4 by ANTLR 4.13.1
import org.antlr.v4.runtime.atn.*;
import org.antlr.v4.runtime.dfa.DFA;
import org.antlr.v4.runtime.*;
import org.antlr.v4.runtime.misc.*;
import org.antlr.v4.runtime.tree.*;
import java.util.List;
import java.util.Iterator;
import java.util.ArrayList;

@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast", "CheckReturnValue"})
public class openqasmParser extends Parser {
	static { RuntimeMetaData.checkVersion("4.13.1", RuntimeMetaData.VERSION); }

	protected static final DFA[] _decisionToDFA;
	protected static final PredictionContextCache _sharedContextCache =
		new PredictionContextCache();
	public static final int
		T__0=1, T__1=2, T__2=3, T__3=4, T__4=5, T__5=6, T__6=7, T__7=8, T__8=9, 
		T__9=10, T__10=11, T__11=12, T__12=13, T__13=14, T__14=15, T__15=16, T__16=17, 
		T__17=18, T__18=19, T__19=20, T__20=21, T__21=22, T__22=23, T__23=24, 
		T__24=25, T__25=26, T__26=27, T__27=28, T__28=29, T__29=30, T__30=31, 
		T__31=32, T__32=33, T__33=34, STRING_LITERAL=35, ID=36, REAL=37, INT=38, 
		WS=39, COMMENT=40, LINE_COMMENT=41;
	public static final int
		RULE_mainprog = 0, RULE_includeStatement = 1, RULE_statement = 2, RULE_version = 3, 
		RULE_decl = 4, RULE_gatedecl = 5, RULE_goplist = 6, RULE_qop = 7, RULE_uop = 8, 
		RULE_anylist = 9, RULE_idlist = 10, RULE_mixedlist = 11, RULE_argument = 12, 
		RULE_explist = 13, RULE_exp = 14, RULE_unaryop = 15;
	private static String[] makeRuleNames() {
		return new String[] {
			"mainprog", "includeStatement", "statement", "version", "decl", "gatedecl", 
			"goplist", "qop", "uop", "anylist", "idlist", "mixedlist", "argument", 
			"explist", "exp", "unaryop"
		};
	}
	public static final String[] ruleNames = makeRuleNames();

	private static String[] makeLiteralNames() {
		return new String[] {
			null, "'include'", "';'", "'}'", "'opaque'", "'('", "')'", "'if'", "'=='", 
			"'barrier'", "'OPENQASM'", "'qreg'", "'['", "']'", "'creg'", "'gate'", 
			"'{'", "'measure'", "'->'", "'reset'", "'U'", "'CX'", "','", "'pi'", 
			"'+'", "'-'", "'*'", "'/'", "'^'", "'sin'", "'cos'", "'tan'", "'exp'", 
			"'ln'", "'sqrt'"
		};
	}
	private static final String[] _LITERAL_NAMES = makeLiteralNames();
	private static String[] makeSymbolicNames() {
		return new String[] {
			null, null, null, null, null, null, null, null, null, null, null, null, 
			null, null, null, null, null, null, null, null, null, null, null, null, 
			null, null, null, null, null, null, null, null, null, null, null, "STRING_LITERAL", 
			"ID", "REAL", "INT", "WS", "COMMENT", "LINE_COMMENT"
		};
	}
	private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames();
	public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES);

	/**
	 * @deprecated Use {@link #VOCABULARY} instead.
	 */
	@Deprecated
	public static final String[] tokenNames;
	static {
		tokenNames = new String[_SYMBOLIC_NAMES.length];
		for (int i = 0; i < tokenNames.length; i++) {
			tokenNames[i] = VOCABULARY.getLiteralName(i);
			if (tokenNames[i] == null) {
				tokenNames[i] = VOCABULARY.getSymbolicName(i);
			}

			if (tokenNames[i] == null) {
				tokenNames[i] = "<INVALID>";
			}
		}
	}

	@Override
	@Deprecated
	public String[] getTokenNames() {
		return tokenNames;
	}

	@Override

	public Vocabulary getVocabulary() {
		return VOCABULARY;
	}

	@Override
	public String getGrammarFileName() { return "openqasm.g4"; }

	@Override
	public String[] getRuleNames() { return ruleNames; }

	@Override
	public String getSerializedATN() { return _serializedATN; }

	@Override
	public ATN getATN() { return _ATN; }

	public openqasmParser(TokenStream input) {
		super(input);
		_interp = new ParserATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache);
	}

	@SuppressWarnings("CheckReturnValue")
	public static class MainprogContext extends ParserRuleContext {
		public VersionContext version() {
			return getRuleContext(VersionContext.class,0);
		}
		public IncludeStatementContext includeStatement() {
			return getRuleContext(IncludeStatementContext.class,0);
		}
		public List<StatementContext> statement() {
			return getRuleContexts(StatementContext.class);
		}
		public StatementContext statement(int i) {
			return getRuleContext(StatementContext.class,i);
		}
		public MainprogContext(ParserRuleContext parent, int invokingState) {
			super(parent, invokingState);
		}
		@Override public int getRuleIndex() { return RULE_mainprog; }
	}

	public final MainprogContext mainprog() throws RecognitionException {
		MainprogContext _localctx = new MainprogContext(_ctx, getState());
		enterRule(_localctx, 0, RULE_mainprog);
		int _la;
		try {
			enterOuterAlt(_localctx, 1);
			{
			setState(32);
			version();
			setState(33);
			includeStatement();
			setState(37);
			_errHandler.sync(this);
			_la = _input.LA(1);
			while ((((_la) & ~0x3f) == 0 && ((1L << _la) & 68723329680L) != 0)) {
				{
				{
				setState(34);
				statement();
				}
				}
				setState(39);
				_errHandler.sync(this);
				_la = _input.LA(1);
			}
			}
		}
		catch (RecognitionException re) {
			_localctx.exception = re;
			_errHandler.reportError(this, re);
			_errHandler.recover(this, re);
		}
		finally {
			exitRule();
		}
		return _localctx;
	}

	@SuppressWarnings("CheckReturnValue")
	public static class IncludeStatementContext extends ParserRuleContext {
		public TerminalNode STRING_LITERAL() { return getToken(openqasmParser.STRING_LITERAL, 0); }
		public IncludeStatementContext(ParserRuleContext parent, int invokingState) {
			super(parent, invokingState);
		}
		@Override public int getRuleIndex() { return RULE_includeStatement; }
	}

	public final IncludeStatementContext includeStatement() throws RecognitionException {
		IncludeStatementContext _localctx = new IncludeStatementContext(_ctx, getState());
		enterRule(_localctx, 2, RULE_includeStatement);
		try {
			enterOuterAlt(_localctx, 1);
			{
			setState(40);
			match(T__0);
			setState(41);
			match(STRING_LITERAL);
			setState(42);
			match(T__1);
			}
		}
		catch (RecognitionException re) {
			_localctx.exception = re;
			_errHandler.reportError(this, re);
			_errHandler.recover(this, re);
		}
		finally {
			exitRule();
		}
		return _localctx;
	}

	@SuppressWarnings("CheckReturnValue")
	public static class StatementContext extends ParserRuleContext {
		public DeclContext decl() {
			return getRuleContext(DeclContext.class,0);
		}
		public GatedeclContext gatedecl() {
			return getRuleContext(GatedeclContext.class,0);
		}
		public GoplistContext goplist() {
			return getRuleContext(GoplistContext.class,0);
		}
		public TerminalNode ID() { return getToken(openqasmParser.ID, 0); }
		public List<IdlistContext> idlist() {
			return getRuleContexts(IdlistContext.class);
		}
		public IdlistContext idlist(int i) {
			return getRuleContext(IdlistContext.class,i);
		}
		public QopContext qop() {
			return getRuleContext(QopContext.class,0);
		}
		public TerminalNode INT() { return getToken(openqasmParser.INT, 0); }
		public AnylistContext anylist() {
			return getRuleContext(AnylistContext.class,0);
		}
		public StatementContext(ParserRuleContext parent, int invokingState) {
			super(parent, invokingState);
		}
		@Override public int getRuleIndex() { return RULE_statement; }
	}

	public final StatementContext statement() throws RecognitionException {
		StatementContext _localctx = new StatementContext(_ctx, getState());
		enterRule(_localctx, 4, RULE_statement);
		try {
			setState(84);
			_errHandler.sync(this);
			switch ( getInterpreter().adaptivePredict(_input,1,_ctx) ) {
			case 1:
				enterOuterAlt(_localctx, 1);
				{
				setState(44);
				decl();
				}
				break;
			case 2:
				enterOuterAlt(_localctx, 2);
				{
				setState(45);
				gatedecl();
				setState(46);
				goplist();
				setState(47);
				match(T__2);
				}
				break;
			case 3:
				enterOuterAlt(_localctx, 3);
				{
				setState(49);
				gatedecl();
				setState(50);
				match(T__2);
				}
				break;
			case 4:
				enterOuterAlt(_localctx, 4);
				{
				setState(52);
				match(T__3);
				setState(53);
				match(ID);
				setState(54);
				idlist();
				setState(55);
				match(T__1);
				}
				break;
			case 5:
				enterOuterAlt(_localctx, 5);
				{
				setState(57);
				match(T__3);
				setState(58);
				match(ID);
				setState(59);
				match(T__4);
				setState(60);
				match(T__5);
				setState(61);
				idlist();
				setState(62);
				match(T__1);
				}
				break;
			case 6:
				enterOuterAlt(_localctx, 6);
				{
				setState(64);
				match(T__3);
				setState(65);
				match(ID);
				setState(66);
				match(T__4);
				setState(67);
				idlist();
				setState(68);
				match(T__5);
				setState(69);
				idlist();
				setState(70);
				match(T__1);
				}
				break;
			case 7:
				enterOuterAlt(_localctx, 7);
				{
				setState(72);
				qop();
				}
				break;
			case 8:
				enterOuterAlt(_localctx, 8);
				{
				setState(73);
				match(T__6);
				setState(74);
				match(T__4);
				setState(75);
				match(ID);
				setState(76);
				match(T__7);
				setState(77);
				match(INT);
				setState(78);
				match(T__5);
				setState(79);
				qop();
				}
				break;
			case 9:
				enterOuterAlt(_localctx, 9);
				{
				setState(80);
				match(T__8);
				setState(81);
				anylist();
				setState(82);
				match(T__1);
				}
				break;
			}
		}
		catch (RecognitionException re) {
			_localctx.exception = re;
			_errHandler.reportError(this, re);
			_errHandler.recover(this, re);
		}
		finally {
			exitRule();
		}
		return _localctx;
	}

	@SuppressWarnings("CheckReturnValue")
	public static class VersionContext extends ParserRuleContext {
		public TerminalNode REAL() { return getToken(openqasmParser.REAL, 0); }
		public VersionContext(ParserRuleContext parent, int invokingState) {
			super(parent, invokingState);
		}
		@Override public int getRuleIndex() { return RULE_version; }
	}

	public final VersionContext version() throws RecognitionException {
		VersionContext _localctx = new VersionContext(_ctx, getState());
		enterRule(_localctx, 6, RULE_version);
		try {
			enterOuterAlt(_localctx, 1);
			{
			setState(86);
			match(T__9);
			setState(87);
			match(REAL);
			setState(88);
			match(T__1);
			}
		}
		catch (RecognitionException re) {
			_localctx.exception = re;
			_errHandler.reportError(this, re);
			_errHandler.recover(this, re);
		}
		finally {
			exitRule();
		}
		return _localctx;
	}

	@SuppressWarnings("CheckReturnValue")
	public static class DeclContext extends ParserRuleContext {
		public TerminalNode ID() { return getToken(openqasmParser.ID, 0); }
		public TerminalNode INT() { return getToken(openqasmParser.INT, 0); }
		public DeclContext(ParserRuleContext parent, int invokingState) {
			super(parent, invokingState);
		}
		@Override public int getRuleIndex() { return RULE_decl; }
	}

	public final DeclContext decl() throws RecognitionException {
		DeclContext _localctx = new DeclContext(_ctx, getState());
		enterRule(_localctx, 8, RULE_decl);
		try {
			setState(102);
			_errHandler.sync(this);
			switch (_input.LA(1)) {
			case T__10:
				enterOuterAlt(_localctx, 1);
				{
				setState(90);
				match(T__10);
				setState(91);
				match(ID);
				setState(92);
				match(T__11);
				setState(93);
				match(INT);
				setState(94);
				match(T__12);
				setState(95);
				match(T__1);
				}
				break;
			case T__13:
				enterOuterAlt(_localctx, 2);
				{
				setState(96);
				match(T__13);
				setState(97);
				match(ID);
				setState(98);
				match(T__11);
				setState(99);
				match(INT);
				setState(100);
				match(T__12);
				setState(101);
				match(T__1);
				}
				break;
			default:
				throw new NoViableAltException(this);
			}
		}
		catch (RecognitionException re) {
			_localctx.exception = re;
			_errHandler.reportError(this, re);
			_errHandler.recover(this, re);
		}
		finally {
			exitRule();
		}
		return _localctx;
	}

	@SuppressWarnings("CheckReturnValue")
	public static class GatedeclContext extends ParserRuleContext {
		public TerminalNode ID() { return getToken(openqasmParser.ID, 0); }
		public List<IdlistContext> idlist() {
			return getRuleContexts(IdlistContext.class);
		}
		public IdlistContext idlist(int i) {
			return getRuleContext(IdlistContext.class,i);
		}
		public GatedeclContext(ParserRuleContext parent, int invokingState) {
			super(parent, invokingState);
		}
		@Override public int getRuleIndex() { return RULE_gatedecl; }
	}

	public final GatedeclContext gatedecl() throws RecognitionException {
		GatedeclContext _localctx = new GatedeclContext(_ctx, getState());
		enterRule(_localctx, 10, RULE_gatedecl);
		try {
			setState(124);
			_errHandler.sync(this);
			switch ( getInterpreter().adaptivePredict(_input,3,_ctx) ) {
			case 1:
				enterOuterAlt(_localctx, 1);
				{
				setState(104);
				match(T__14);
				setState(105);
				match(ID);
				setState(106);
				idlist();
				setState(107);
				match(T__15);
				}
				break;
			case 2:
				enterOuterAlt(_localctx, 2);
				{
				setState(109);
				match(T__14);
				setState(110);
				match(ID);
				setState(111);
				match(T__4);
				setState(112);
				match(T__5);
				setState(113);
				idlist();
				setState(114);
				match(T__15);
				}
				break;
			case 3:
				enterOuterAlt(_localctx, 3);
				{
				setState(116);
				match(T__14);
				setState(117);
				match(ID);
				setState(118);
				match(T__4);
				setState(119);
				idlist();
				setState(120);
				match(T__5);
				setState(121);
				idlist();
				setState(122);
				match(T__15);
				}
				break;
			}
		}
		catch (RecognitionException re) {
			_localctx.exception = re;
			_errHandler.reportError(this, re);
			_errHandler.recover(this, re);
		}
		finally {
			exitRule();
		}
		return _localctx;
	}

	@SuppressWarnings("CheckReturnValue")
	public static class GoplistContext extends ParserRuleContext {
		public List<UopContext> uop() {
			return getRuleContexts(UopContext.class);
		}
		public UopContext uop(int i) {
			return getRuleContext(UopContext.class,i);
		}
		public List<IdlistContext> idlist() {
			return getRuleContexts(IdlistContext.class);
		}
		public IdlistContext idlist(int i) {
			return getRuleContext(IdlistContext.class,i);
		}
		public GoplistContext(ParserRuleContext parent, int invokingState) {
			super(parent, invokingState);
		}
		@Override public int getRuleIndex() { return RULE_goplist; }
	}

	public final GoplistContext goplist() throws RecognitionException {
		GoplistContext _localctx = new GoplistContext(_ctx, getState());
		enterRule(_localctx, 12, RULE_goplist);
		int _la;
		try {
			enterOuterAlt(_localctx, 1);
			{
			setState(131); 
			_errHandler.sync(this);
			_la = _input.LA(1);
			do {
				{
				setState(131);
				_errHandler.sync(this);
				switch (_input.LA(1)) {
				case T__19:
				case T__20:
				case ID:
					{
					setState(126);
					uop();
					}
					break;
				case T__8:
					{
					setState(127);
					match(T__8);
					setState(128);
					idlist();
					setState(129);
					match(T__1);
					}
					break;
				default:
					throw new NoViableAltException(this);
				}
				}
				setState(133); 
				_errHandler.sync(this);
				_la = _input.LA(1);
			} while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & 68722622976L) != 0) );
			}
		}
		catch (RecognitionException re) {
			_localctx.exception = re;
			_errHandler.reportError(this, re);
			_errHandler.recover(this, re);
		}
		finally {
			exitRule();
		}
		return _localctx;
	}

	@SuppressWarnings("CheckReturnValue")
	public static class QopContext extends ParserRuleContext {
		public UopContext uop() {
			return getRuleContext(UopContext.class,0);
		}
		public List<ArgumentContext> argument() {
			return getRuleContexts(ArgumentContext.class);
		}
		public ArgumentContext argument(int i) {
			return getRuleContext(ArgumentContext.class,i);
		}
		public QopContext(ParserRuleContext parent, int invokingState) {
			super(parent, invokingState);
		}
		@Override public int getRuleIndex() { return RULE_qop; }
	}

	public final QopContext qop() throws RecognitionException {
		QopContext _localctx = new QopContext(_ctx, getState());
		enterRule(_localctx, 14, RULE_qop);
		try {
			setState(146);
			_errHandler.sync(this);
			switch (_input.LA(1)) {
			case T__19:
			case T__20:
			case ID:
				enterOuterAlt(_localctx, 1);
				{
				setState(135);
				uop();
				}
				break;
			case T__16:
				enterOuterAlt(_localctx, 2);
				{
				setState(136);
				match(T__16);
				setState(137);
				argument();
				setState(138);
				match(T__17);
				setState(139);
				argument();
				setState(140);
				match(T__1);
				}
				break;
			case T__18:
				enterOuterAlt(_localctx, 3);
				{
				setState(142);
				match(T__18);
				setState(143);
				argument();
				setState(144);
				match(T__1);
				}
				break;
			default:
				throw new NoViableAltException(this);
			}
		}
		catch (RecognitionException re) {
			_localctx.exception = re;
			_errHandler.reportError(this, re);
			_errHandler.recover(this, re);
		}
		finally {
			exitRule();
		}
		return _localctx;
	}

	@SuppressWarnings("CheckReturnValue")
	public static class UopContext extends ParserRuleContext {
		public ExplistContext explist() {
			return getRuleContext(ExplistContext.class,0);
		}
		public List<ArgumentContext> argument() {
			return getRuleContexts(ArgumentContext.class);
		}
		public ArgumentContext argument(int i) {
			return getRuleContext(ArgumentContext.class,i);
		}
		public TerminalNode ID() { return getToken(openqasmParser.ID, 0); }
		public AnylistContext anylist() {
			return getRuleContext(AnylistContext.class,0);
		}
		public UopContext(ParserRuleContext parent, int invokingState) {
			super(parent, invokingState);
		}
		@Override public int getRuleIndex() { return RULE_uop; }
	}

	public final UopContext uop() throws RecognitionException {
		UopContext _localctx = new UopContext(_ctx, getState());
		enterRule(_localctx, 16, RULE_uop);
		try {
			setState(178);
			_errHandler.sync(this);
			switch ( getInterpreter().adaptivePredict(_input,7,_ctx) ) {
			case 1:
				enterOuterAlt(_localctx, 1);
				{
				setState(148);
				match(T__19);
				setState(149);
				match(T__4);
				setState(150);
				explist();
				setState(151);
				match(T__5);
				setState(152);
				argument();
				setState(153);
				match(T__1);
				}
				break;
			case 2:
				enterOuterAlt(_localctx, 2);
				{
				setState(155);
				match(T__20);
				setState(156);
				argument();
				setState(157);
				match(T__21);
				setState(158);
				argument();
				setState(159);
				match(T__1);
				}
				break;
			case 3:
				enterOuterAlt(_localctx, 3);
				{
				setState(161);
				match(ID);
				setState(162);
				anylist();
				setState(163);
				match(T__1);
				}
				break;
			case 4:
				enterOuterAlt(_localctx, 4);
				{
				setState(165);
				match(ID);
				setState(166);
				match(T__4);
				setState(167);
				match(T__5);
				setState(168);
				anylist();
				setState(169);
				match(T__1);
				}
				break;
			case 5:
				enterOuterAlt(_localctx, 5);
				{
				setState(171);
				match(ID);
				setState(172);
				match(T__4);
				setState(173);
				explist();
				setState(174);
				match(T__5);
				setState(175);
				anylist();
				setState(176);
				match(T__1);
				}
				break;
			}
		}
		catch (RecognitionException re) {
			_localctx.exception = re;
			_errHandler.reportError(this, re);
			_errHandler.recover(this, re);
		}
		finally {
			exitRule();
		}
		return _localctx;
	}

	@SuppressWarnings("CheckReturnValue")
	public static class AnylistContext extends ParserRuleContext {
		public IdlistContext idlist() {
			return getRuleContext(IdlistContext.class,0);
		}
		public MixedlistContext mixedlist() {
			return getRuleContext(MixedlistContext.class,0);
		}
		public AnylistContext(ParserRuleContext parent, int invokingState) {
			super(parent, invokingState);
		}
		@Override public int getRuleIndex() { return RULE_anylist; }
	}

	public final AnylistContext anylist() throws RecognitionException {
		AnylistContext _localctx = new AnylistContext(_ctx, getState());
		enterRule(_localctx, 18, RULE_anylist);
		try {
			setState(182);
			_errHandler.sync(this);
			switch ( getInterpreter().adaptivePredict(_input,8,_ctx) ) {
			case 1:
				enterOuterAlt(_localctx, 1);
				{
				setState(180);
				idlist();
				}
				break;
			case 2:
				enterOuterAlt(_localctx, 2);
				{
				setState(181);
				mixedlist();
				}
				break;
			}
		}
		catch (RecognitionException re) {
			_localctx.exception = re;
			_errHandler.reportError(this, re);
			_errHandler.recover(this, re);
		}
		finally {
			exitRule();
		}
		return _localctx;
	}

	@SuppressWarnings("CheckReturnValue")
	public static class IdlistContext extends ParserRuleContext {
		public List<TerminalNode> ID() { return getTokens(openqasmParser.ID); }
		public TerminalNode ID(int i) {
			return getToken(openqasmParser.ID, i);
		}
		public IdlistContext(ParserRuleContext parent, int invokingState) {
			super(parent, invokingState);
		}
		@Override public int getRuleIndex() { return RULE_idlist; }
	}

	public final IdlistContext idlist() throws RecognitionException {
		IdlistContext _localctx = new IdlistContext(_ctx, getState());
		enterRule(_localctx, 20, RULE_idlist);
		try {
			int _alt;
			enterOuterAlt(_localctx, 1);
			{
			setState(188);
			_errHandler.sync(this);
			_alt = getInterpreter().adaptivePredict(_input,9,_ctx);
			while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
				if ( _alt==1 ) {
					{
					{
					setState(184);
					match(ID);
					setState(185);
					match(T__21);
					}
					} 
				}
				setState(190);
				_errHandler.sync(this);
				_alt = getInterpreter().adaptivePredict(_input,9,_ctx);
			}
			setState(191);
			match(ID);
			}
		}
		catch (RecognitionException re) {
			_localctx.exception = re;
			_errHandler.reportError(this, re);
			_errHandler.recover(this, re);
		}
		finally {
			exitRule();
		}
		return _localctx;
	}

	@SuppressWarnings("CheckReturnValue")
	public static class MixedlistContext extends ParserRuleContext {
		public List<TerminalNode> ID() { return getTokens(openqasmParser.ID); }
		public TerminalNode ID(int i) {
			return getToken(openqasmParser.ID, i);
		}
		public List<TerminalNode> INT() { return getTokens(openqasmParser.INT); }
		public TerminalNode INT(int i) {
			return getToken(openqasmParser.INT, i);
		}
		public MixedlistContext(ParserRuleContext parent, int invokingState) {
			super(parent, invokingState);
		}
		@Override public int getRuleIndex() { return RULE_mixedlist; }
	}

	public final MixedlistContext mixedlist() throws RecognitionException {
		MixedlistContext _localctx = new MixedlistContext(_ctx, getState());
		enterRule(_localctx, 22, RULE_mixedlist);
		try {
			int _alt;
			setState(236);
			_errHandler.sync(this);
			switch ( getInterpreter().adaptivePredict(_input,14,_ctx) ) {
			case 1:
				enterOuterAlt(_localctx, 1);
				{
				setState(200);
				_errHandler.sync(this);
				_alt = getInterpreter().adaptivePredict(_input,10,_ctx);
				while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
					if ( _alt==1 ) {
						{
						{
						setState(193);
						match(ID);
						setState(194);
						match(T__11);
						setState(195);
						match(INT);
						setState(196);
						match(T__12);
						setState(197);
						match(T__21);
						}
						} 
					}
					setState(202);
					_errHandler.sync(this);
					_alt = getInterpreter().adaptivePredict(_input,10,_ctx);
				}
				setState(203);
				match(ID);
				}
				break;
			case 2:
				enterOuterAlt(_localctx, 2);
				{
				setState(211);
				_errHandler.sync(this);
				_alt = getInterpreter().adaptivePredict(_input,11,_ctx);
				while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
					if ( _alt==1 ) {
						{
						{
						setState(204);
						match(ID);
						setState(205);
						match(T__11);
						setState(206);
						match(INT);
						setState(207);
						match(T__12);
						setState(208);
						match(T__21);
						}
						} 
					}
					setState(213);
					_errHandler.sync(this);
					_alt = getInterpreter().adaptivePredict(_input,11,_ctx);
				}
				setState(214);
				match(ID);
				setState(215);
				match(T__11);
				setState(216);
				match(INT);
				setState(217);
				match(T__12);
				}
				break;
			case 3:
				enterOuterAlt(_localctx, 3);
				{
				setState(229);
				_errHandler.sync(this);
				_alt = getInterpreter().adaptivePredict(_input,13,_ctx);
				while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
					if ( _alt==1 ) {
						{
						{
						setState(222);
						_errHandler.sync(this);
						_alt = getInterpreter().adaptivePredict(_input,12,_ctx);
						while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
							if ( _alt==1 ) {
								{
								{
								setState(218);
								match(ID);
								setState(219);
								match(T__21);
								}
								} 
							}
							setState(224);
							_errHandler.sync(this);
							_alt = getInterpreter().adaptivePredict(_input,12,_ctx);
						}
						setState(225);
						match(ID);
						setState(226);
						match(T__21);
						}
						} 
					}
					setState(231);
					_errHandler.sync(this);
					_alt = getInterpreter().adaptivePredict(_input,13,_ctx);
				}
				setState(232);
				match(ID);
				setState(233);
				match(T__11);
				setState(234);
				match(INT);
				setState(235);
				match(T__12);
				}
				break;
			}
		}
		catch (RecognitionException re) {
			_localctx.exception = re;
			_errHandler.reportError(this, re);
			_errHandler.recover(this, re);
		}
		finally {
			exitRule();
		}
		return _localctx;
	}

	@SuppressWarnings("CheckReturnValue")
	public static class ArgumentContext extends ParserRuleContext {
		public TerminalNode ID() { return getToken(openqasmParser.ID, 0); }
		public TerminalNode INT() { return getToken(openqasmParser.INT, 0); }
		public ArgumentContext(ParserRuleContext parent, int invokingState) {
			super(parent, invokingState);
		}
		@Override public int getRuleIndex() { return RULE_argument; }
	}

	public final ArgumentContext argument() throws RecognitionException {
		ArgumentContext _localctx = new ArgumentContext(_ctx, getState());
		enterRule(_localctx, 24, RULE_argument);
		try {
			setState(243);
			_errHandler.sync(this);
			switch ( getInterpreter().adaptivePredict(_input,15,_ctx) ) {
			case 1:
				enterOuterAlt(_localctx, 1);
				{
				setState(238);
				match(ID);
				}
				break;
			case 2:
				enterOuterAlt(_localctx, 2);
				{
				setState(239);
				match(ID);
				setState(240);
				match(T__11);
				setState(241);
				match(INT);
				setState(242);
				match(T__12);
				}
				break;
			}
		}
		catch (RecognitionException re) {
			_localctx.exception = re;
			_errHandler.reportError(this, re);
			_errHandler.recover(this, re);
		}
		finally {
			exitRule();
		}
		return _localctx;
	}

	@SuppressWarnings("CheckReturnValue")
	public static class ExplistContext extends ParserRuleContext {
		public List<ExpContext> exp() {
			return getRuleContexts(ExpContext.class);
		}
		public ExpContext exp(int i) {
			return getRuleContext(ExpContext.class,i);
		}
		public ExplistContext(ParserRuleContext parent, int invokingState) {
			super(parent, invokingState);
		}
		@Override public int getRuleIndex() { return RULE_explist; }
	}

	public final ExplistContext explist() throws RecognitionException {
		ExplistContext _localctx = new ExplistContext(_ctx, getState());
		enterRule(_localctx, 26, RULE_explist);
		try {
			int _alt;
			enterOuterAlt(_localctx, 1);
			{
			setState(250);
			_errHandler.sync(this);
			_alt = getInterpreter().adaptivePredict(_input,16,_ctx);
			while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
				if ( _alt==1 ) {
					{
					{
					setState(245);
					exp(0);
					setState(246);
					match(T__21);
					}
					} 
				}
				setState(252);
				_errHandler.sync(this);
				_alt = getInterpreter().adaptivePredict(_input,16,_ctx);
			}
			setState(253);
			exp(0);
			}
		}
		catch (RecognitionException re) {
			_localctx.exception = re;
			_errHandler.reportError(this, re);
			_errHandler.recover(this, re);
		}
		finally {
			exitRule();
		}
		return _localctx;
	}

	@SuppressWarnings("CheckReturnValue")
	public static class ExpContext extends ParserRuleContext {
		public TerminalNode REAL() { return getToken(openqasmParser.REAL, 0); }
		public TerminalNode INT() { return getToken(openqasmParser.INT, 0); }
		public TerminalNode ID() { return getToken(openqasmParser.ID, 0); }
		public List<ExpContext> exp() {
			return getRuleContexts(ExpContext.class);
		}
		public ExpContext exp(int i) {
			return getRuleContext(ExpContext.class,i);
		}
		public UnaryopContext unaryop() {
			return getRuleContext(UnaryopContext.class,0);
		}
		public ExpContext(ParserRuleContext parent, int invokingState) {
			super(parent, invokingState);
		}
		@Override public int getRuleIndex() { return RULE_exp; }
	}

	public final ExpContext exp() throws RecognitionException {
		return exp(0);
	}

	private ExpContext exp(int _p) throws RecognitionException {
		ParserRuleContext _parentctx = _ctx;
		int _parentState = getState();
		ExpContext _localctx = new ExpContext(_ctx, _parentState);
		ExpContext _prevctx = _localctx;
		int _startState = 28;
		enterRecursionRule(_localctx, 28, RULE_exp, _p);
		try {
			int _alt;
			enterOuterAlt(_localctx, 1);
			{
			setState(271);
			_errHandler.sync(this);
			switch (_input.LA(1)) {
			case REAL:
				{
				setState(256);
				match(REAL);
				}
				break;
			case INT:
				{
				setState(257);
				match(INT);
				}
				break;
			case T__22:
				{
				setState(258);
				match(T__22);
				}
				break;
			case ID:
				{
				setState(259);
				match(ID);
				}
				break;
			case T__24:
				{
				setState(260);
				match(T__24);
				setState(261);
				exp(4);
				}
				break;
			case T__4:
				{
				setState(262);
				match(T__4);
				setState(263);
				exp(0);
				setState(264);
				match(T__5);
				}
				break;
			case T__28:
			case T__29:
			case T__30:
			case T__31:
			case T__32:
			case T__33:
				{
				setState(266);
				unaryop();
				setState(267);
				match(T__4);
				setState(268);
				exp(0);
				setState(269);
				match(T__5);
				}
				break;
			default:
				throw new NoViableAltException(this);
			}
			_ctx.stop = _input.LT(-1);
			setState(290);
			_errHandler.sync(this);
			_alt = getInterpreter().adaptivePredict(_input,19,_ctx);
			while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
				if ( _alt==1 ) {
					if ( _parseListeners!=null ) triggerExitRuleEvent();
					_prevctx = _localctx;
					{
					setState(288);
					_errHandler.sync(this);
					switch ( getInterpreter().adaptivePredict(_input,18,_ctx) ) {
					case 1:
						{
						_localctx = new ExpContext(_parentctx, _parentState);
						pushNewRecursionContext(_localctx, _startState, RULE_exp);
						setState(273);
						if (!(precpred(_ctx, 8))) throw new FailedPredicateException(this, "precpred(_ctx, 8)");
						setState(274);
						match(T__23);
						setState(275);
						exp(9);
						}
						break;
					case 2:
						{
						_localctx = new ExpContext(_parentctx, _parentState);
						pushNewRecursionContext(_localctx, _startState, RULE_exp);
						setState(276);
						if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)");
						setState(277);
						match(T__24);
						setState(278);
						exp(8);
						}
						break;
					case 3:
						{
						_localctx = new ExpContext(_parentctx, _parentState);
						pushNewRecursionContext(_localctx, _startState, RULE_exp);
						setState(279);
						if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)");
						setState(280);
						match(T__25);
						setState(281);
						exp(7);
						}
						break;
					case 4:
						{
						_localctx = new ExpContext(_parentctx, _parentState);
						pushNewRecursionContext(_localctx, _startState, RULE_exp);
						setState(282);
						if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)");
						setState(283);
						match(T__26);
						setState(284);
						exp(6);
						}
						break;
					case 5:
						{
						_localctx = new ExpContext(_parentctx, _parentState);
						pushNewRecursionContext(_localctx, _startState, RULE_exp);
						setState(285);
						if (!(precpred(_ctx, 3))) throw new FailedPredicateException(this, "precpred(_ctx, 3)");
						setState(286);
						match(T__27);
						setState(287);
						exp(4);
						}
						break;
					}
					} 
				}
				setState(292);
				_errHandler.sync(this);
				_alt = getInterpreter().adaptivePredict(_input,19,_ctx);
			}
			}
		}
		catch (RecognitionException re) {
			_localctx.exception = re;
			_errHandler.reportError(this, re);
			_errHandler.recover(this, re);
		}
		finally {
			unrollRecursionContexts(_parentctx);
		}
		return _localctx;
	}

	@SuppressWarnings("CheckReturnValue")
	public static class UnaryopContext extends ParserRuleContext {
		public UnaryopContext(ParserRuleContext parent, int invokingState) {
			super(parent, invokingState);
		}
		@Override public int getRuleIndex() { return RULE_unaryop; }
	}

	public final UnaryopContext unaryop() throws RecognitionException {
		UnaryopContext _localctx = new UnaryopContext(_ctx, getState());
		enterRule(_localctx, 30, RULE_unaryop);
		int _la;
		try {
			enterOuterAlt(_localctx, 1);
			{
			setState(293);
			_la = _input.LA(1);
			if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 33822867456L) != 0)) ) {
			_errHandler.recoverInline(this);
			}
			else {
				if ( _input.LA(1)==Token.EOF ) matchedEOF = true;
				_errHandler.reportMatch(this);
				consume();
			}
			}
		}
		catch (RecognitionException re) {
			_localctx.exception = re;
			_errHandler.reportError(this, re);
			_errHandler.recover(this, re);
		}
		finally {
			exitRule();
		}
		return _localctx;
	}

	public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) {
		switch (ruleIndex) {
		case 14:
			return exp_sempred((ExpContext)_localctx, predIndex);
		}
		return true;
	}
	private boolean exp_sempred(ExpContext _localctx, int predIndex) {
		switch (predIndex) {
		case 0:
			return precpred(_ctx, 8);
		case 1:
			return precpred(_ctx, 7);
		case 2:
			return precpred(_ctx, 6);
		case 3:
			return precpred(_ctx, 5);
		case 4:
			return precpred(_ctx, 3);
		}
		return true;
	}

	public static final String _serializedATN =
		"\u0004\u0001)\u0128\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001\u0002"+
		"\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004\u0007\u0004\u0002"+
		"\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002\u0007\u0007\u0007\u0002"+
		"\b\u0007\b\u0002\t\u0007\t\u0002\n\u0007\n\u0002\u000b\u0007\u000b\u0002"+
		"\f\u0007\f\u0002\r\u0007\r\u0002\u000e\u0007\u000e\u0002\u000f\u0007\u000f"+
		"\u0001\u0000\u0001\u0000\u0001\u0000\u0005\u0000$\b\u0000\n\u0000\f\u0000"+
		"\'\t\u0000\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0002"+
		"\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002"+
		"\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002"+
		"\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002"+
		"\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002"+
		"\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002"+
		"\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002"+
		"\u0001\u0002\u0001\u0002\u0001\u0002\u0003\u0002U\b\u0002\u0001\u0003"+
		"\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0004\u0001\u0004\u0001\u0004"+
		"\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004"+
		"\u0001\u0004\u0001\u0004\u0001\u0004\u0003\u0004g\b\u0004\u0001\u0005"+
		"\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+
		"\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+
		"\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+
		"\u0001\u0005\u0003\u0005}\b\u0005\u0001\u0006\u0001\u0006\u0001\u0006"+
		"\u0001\u0006\u0001\u0006\u0004\u0006\u0084\b\u0006\u000b\u0006\f\u0006"+
		"\u0085\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001"+
		"\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0003"+
		"\u0007\u0093\b\u0007\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001"+
		"\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001"+
		"\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001"+
		"\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0003\b\u00b3\b\b\u0001\t\u0001"+
		"\t\u0003\t\u00b7\b\t\u0001\n\u0001\n\u0005\n\u00bb\b\n\n\n\f\n\u00be\t"+
		"\n\u0001\n\u0001\n\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001"+
		"\u000b\u0005\u000b\u00c7\b\u000b\n\u000b\f\u000b\u00ca\t\u000b\u0001\u000b"+
		"\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0005\u000b"+
		"\u00d2\b\u000b\n\u000b\f\u000b\u00d5\t\u000b\u0001\u000b\u0001\u000b\u0001"+
		"\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0005\u000b\u00dd\b\u000b\n"+
		"\u000b\f\u000b\u00e0\t\u000b\u0001\u000b\u0001\u000b\u0005\u000b\u00e4"+
		"\b\u000b\n\u000b\f\u000b\u00e7\t\u000b\u0001\u000b\u0001\u000b\u0001\u000b"+
		"\u0001\u000b\u0003\u000b\u00ed\b\u000b\u0001\f\u0001\f\u0001\f\u0001\f"+
		"\u0001\f\u0003\f\u00f4\b\f\u0001\r\u0001\r\u0001\r\u0005\r\u00f9\b\r\n"+
		"\r\f\r\u00fc\t\r\u0001\r\u0001\r\u0001\u000e\u0001\u000e\u0001\u000e\u0001"+
		"\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001"+
		"\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001"+
		"\u000e\u0003\u000e\u0110\b\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001"+
		"\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001"+
		"\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0005"+
		"\u000e\u0121\b\u000e\n\u000e\f\u000e\u0124\t\u000e\u0001\u000f\u0001\u000f"+
		"\u0001\u000f\u0000\u0001\u001c\u0010\u0000\u0002\u0004\u0006\b\n\f\u000e"+
		"\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e\u0000\u0001\u0001\u0000"+
		"\u001d\"\u0140\u0000 \u0001\u0000\u0000\u0000\u0002(\u0001\u0000\u0000"+
		"\u0000\u0004T\u0001\u0000\u0000\u0000\u0006V\u0001\u0000\u0000\u0000\b"+
		"f\u0001\u0000\u0000\u0000\n|\u0001\u0000\u0000\u0000\f\u0083\u0001\u0000"+
		"\u0000\u0000\u000e\u0092\u0001\u0000\u0000\u0000\u0010\u00b2\u0001\u0000"+
		"\u0000\u0000\u0012\u00b6\u0001\u0000\u0000\u0000\u0014\u00bc\u0001\u0000"+
		"\u0000\u0000\u0016\u00ec\u0001\u0000\u0000\u0000\u0018\u00f3\u0001\u0000"+
		"\u0000\u0000\u001a\u00fa\u0001\u0000\u0000\u0000\u001c\u010f\u0001\u0000"+
		"\u0000\u0000\u001e\u0125\u0001\u0000\u0000\u0000 !\u0003\u0006\u0003\u0000"+
		"!%\u0003\u0002\u0001\u0000\"$\u0003\u0004\u0002\u0000#\"\u0001\u0000\u0000"+
		"\u0000$\'\u0001\u0000\u0000\u0000%#\u0001\u0000\u0000\u0000%&\u0001\u0000"+
		"\u0000\u0000&\u0001\u0001\u0000\u0000\u0000\'%\u0001\u0000\u0000\u0000"+
		"()\u0005\u0001\u0000\u0000)*\u0005#\u0000\u0000*+\u0005\u0002\u0000\u0000"+
		"+\u0003\u0001\u0000\u0000\u0000,U\u0003\b\u0004\u0000-.\u0003\n\u0005"+
		"\u0000./\u0003\f\u0006\u0000/0\u0005\u0003\u0000\u00000U\u0001\u0000\u0000"+
		"\u000012\u0003\n\u0005\u000023\u0005\u0003\u0000\u00003U\u0001\u0000\u0000"+
		"\u000045\u0005\u0004\u0000\u000056\u0005$\u0000\u000067\u0003\u0014\n"+
		"\u000078\u0005\u0002\u0000\u00008U\u0001\u0000\u0000\u00009:\u0005\u0004"+
		"\u0000\u0000:;\u0005$\u0000\u0000;<\u0005\u0005\u0000\u0000<=\u0005\u0006"+
		"\u0000\u0000=>\u0003\u0014\n\u0000>?\u0005\u0002\u0000\u0000?U\u0001\u0000"+
		"\u0000\u0000@A\u0005\u0004\u0000\u0000AB\u0005$\u0000\u0000BC\u0005\u0005"+
		"\u0000\u0000CD\u0003\u0014\n\u0000DE\u0005\u0006\u0000\u0000EF\u0003\u0014"+
		"\n\u0000FG\u0005\u0002\u0000\u0000GU\u0001\u0000\u0000\u0000HU\u0003\u000e"+
		"\u0007\u0000IJ\u0005\u0007\u0000\u0000JK\u0005\u0005\u0000\u0000KL\u0005"+
		"$\u0000\u0000LM\u0005\b\u0000\u0000MN\u0005&\u0000\u0000NO\u0005\u0006"+
		"\u0000\u0000OU\u0003\u000e\u0007\u0000PQ\u0005\t\u0000\u0000QR\u0003\u0012"+
		"\t\u0000RS\u0005\u0002\u0000\u0000SU\u0001\u0000\u0000\u0000T,\u0001\u0000"+
		"\u0000\u0000T-\u0001\u0000\u0000\u0000T1\u0001\u0000\u0000\u0000T4\u0001"+
		"\u0000\u0000\u0000T9\u0001\u0000\u0000\u0000T@\u0001\u0000\u0000\u0000"+
		"TH\u0001\u0000\u0000\u0000TI\u0001\u0000\u0000\u0000TP\u0001\u0000\u0000"+
		"\u0000U\u0005\u0001\u0000\u0000\u0000VW\u0005\n\u0000\u0000WX\u0005%\u0000"+
		"\u0000XY\u0005\u0002\u0000\u0000Y\u0007\u0001\u0000\u0000\u0000Z[\u0005"+
		"\u000b\u0000\u0000[\\\u0005$\u0000\u0000\\]\u0005\f\u0000\u0000]^\u0005"+
		"&\u0000\u0000^_\u0005\r\u0000\u0000_g\u0005\u0002\u0000\u0000`a\u0005"+
		"\u000e\u0000\u0000ab\u0005$\u0000\u0000bc\u0005\f\u0000\u0000cd\u0005"+
		"&\u0000\u0000de\u0005\r\u0000\u0000eg\u0005\u0002\u0000\u0000fZ\u0001"+
		"\u0000\u0000\u0000f`\u0001\u0000\u0000\u0000g\t\u0001\u0000\u0000\u0000"+
		"hi\u0005\u000f\u0000\u0000ij\u0005$\u0000\u0000jk\u0003\u0014\n\u0000"+
		"kl\u0005\u0010\u0000\u0000l}\u0001\u0000\u0000\u0000mn\u0005\u000f\u0000"+
		"\u0000no\u0005$\u0000\u0000op\u0005\u0005\u0000\u0000pq\u0005\u0006\u0000"+
		"\u0000qr\u0003\u0014\n\u0000rs\u0005\u0010\u0000\u0000s}\u0001\u0000\u0000"+
		"\u0000tu\u0005\u000f\u0000\u0000uv\u0005$\u0000\u0000vw\u0005\u0005\u0000"+
		"\u0000wx\u0003\u0014\n\u0000xy\u0005\u0006\u0000\u0000yz\u0003\u0014\n"+
		"\u0000z{\u0005\u0010\u0000\u0000{}\u0001\u0000\u0000\u0000|h\u0001\u0000"+
		"\u0000\u0000|m\u0001\u0000\u0000\u0000|t\u0001\u0000\u0000\u0000}\u000b"+
		"\u0001\u0000\u0000\u0000~\u0084\u0003\u0010\b\u0000\u007f\u0080\u0005"+
		"\t\u0000\u0000\u0080\u0081\u0003\u0014\n\u0000\u0081\u0082\u0005\u0002"+
		"\u0000\u0000\u0082\u0084\u0001\u0000\u0000\u0000\u0083~\u0001\u0000\u0000"+
		"\u0000\u0083\u007f\u0001\u0000\u0000\u0000\u0084\u0085\u0001\u0000\u0000"+
		"\u0000\u0085\u0083\u0001\u0000\u0000\u0000\u0085\u0086\u0001\u0000\u0000"+
		"\u0000\u0086\r\u0001\u0000\u0000\u0000\u0087\u0093\u0003\u0010\b\u0000"+
		"\u0088\u0089\u0005\u0011\u0000\u0000\u0089\u008a\u0003\u0018\f\u0000\u008a"+
		"\u008b\u0005\u0012\u0000\u0000\u008b\u008c\u0003\u0018\f\u0000\u008c\u008d"+
		"\u0005\u0002\u0000\u0000\u008d\u0093\u0001\u0000\u0000\u0000\u008e\u008f"+
		"\u0005\u0013\u0000\u0000\u008f\u0090\u0003\u0018\f\u0000\u0090\u0091\u0005"+
		"\u0002\u0000\u0000\u0091\u0093\u0001\u0000\u0000\u0000\u0092\u0087\u0001"+
		"\u0000\u0000\u0000\u0092\u0088\u0001\u0000\u0000\u0000\u0092\u008e\u0001"+
		"\u0000\u0000\u0000\u0093\u000f\u0001\u0000\u0000\u0000\u0094\u0095\u0005"+
		"\u0014\u0000\u0000\u0095\u0096\u0005\u0005\u0000\u0000\u0096\u0097\u0003"+
		"\u001a\r\u0000\u0097\u0098\u0005\u0006\u0000\u0000\u0098\u0099\u0003\u0018"+
		"\f\u0000\u0099\u009a\u0005\u0002\u0000\u0000\u009a\u00b3\u0001\u0000\u0000"+
		"\u0000\u009b\u009c\u0005\u0015\u0000\u0000\u009c\u009d\u0003\u0018\f\u0000"+
		"\u009d\u009e\u0005\u0016\u0000\u0000\u009e\u009f\u0003\u0018\f\u0000\u009f"+
		"\u00a0\u0005\u0002\u0000\u0000\u00a0\u00b3\u0001\u0000\u0000\u0000\u00a1"+
		"\u00a2\u0005$\u0000\u0000\u00a2\u00a3\u0003\u0012\t\u0000\u00a3\u00a4"+
		"\u0005\u0002\u0000\u0000\u00a4\u00b3\u0001\u0000\u0000\u0000\u00a5\u00a6"+
		"\u0005$\u0000\u0000\u00a6\u00a7\u0005\u0005\u0000\u0000\u00a7\u00a8\u0005"+
		"\u0006\u0000\u0000\u00a8\u00a9\u0003\u0012\t\u0000\u00a9\u00aa\u0005\u0002"+
		"\u0000\u0000\u00aa\u00b3\u0001\u0000\u0000\u0000\u00ab\u00ac\u0005$\u0000"+
		"\u0000\u00ac\u00ad\u0005\u0005\u0000\u0000\u00ad\u00ae\u0003\u001a\r\u0000"+
		"\u00ae\u00af\u0005\u0006\u0000\u0000\u00af\u00b0\u0003\u0012\t\u0000\u00b0"+
		"\u00b1\u0005\u0002\u0000\u0000\u00b1\u00b3\u0001\u0000\u0000\u0000\u00b2"+
		"\u0094\u0001\u0000\u0000\u0000\u00b2\u009b\u0001\u0000\u0000\u0000\u00b2"+
		"\u00a1\u0001\u0000\u0000\u0000\u00b2\u00a5\u0001\u0000\u0000\u0000\u00b2"+
		"\u00ab\u0001\u0000\u0000\u0000\u00b3\u0011\u0001\u0000\u0000\u0000\u00b4"+
		"\u00b7\u0003\u0014\n\u0000\u00b5\u00b7\u0003\u0016\u000b\u0000\u00b6\u00b4"+
		"\u0001\u0000\u0000\u0000\u00b6\u00b5\u0001\u0000\u0000\u0000\u00b7\u0013"+
		"\u0001\u0000\u0000\u0000\u00b8\u00b9\u0005$\u0000\u0000\u00b9\u00bb\u0005"+
		"\u0016\u0000\u0000\u00ba\u00b8\u0001\u0000\u0000\u0000\u00bb\u00be\u0001"+
		"\u0000\u0000\u0000\u00bc\u00ba\u0001\u0000\u0000\u0000\u00bc\u00bd\u0001"+
		"\u0000\u0000\u0000\u00bd\u00bf\u0001\u0000\u0000\u0000\u00be\u00bc\u0001"+
		"\u0000\u0000\u0000\u00bf\u00c0\u0005$\u0000\u0000\u00c0\u0015\u0001\u0000"+
		"\u0000\u0000\u00c1\u00c2\u0005$\u0000\u0000\u00c2\u00c3\u0005\f\u0000"+
		"\u0000\u00c3\u00c4\u0005&\u0000\u0000\u00c4\u00c5\u0005\r\u0000\u0000"+
		"\u00c5\u00c7\u0005\u0016\u0000\u0000\u00c6\u00c1\u0001\u0000\u0000\u0000"+
		"\u00c7\u00ca\u0001\u0000\u0000\u0000\u00c8\u00c6\u0001\u0000\u0000\u0000"+
		"\u00c8\u00c9\u0001\u0000\u0000\u0000\u00c9\u00cb\u0001\u0000\u0000\u0000"+
		"\u00ca\u00c8\u0001\u0000\u0000\u0000\u00cb\u00ed\u0005$\u0000\u0000\u00cc"+
		"\u00cd\u0005$\u0000\u0000\u00cd\u00ce\u0005\f\u0000\u0000\u00ce\u00cf"+
		"\u0005&\u0000\u0000\u00cf\u00d0\u0005\r\u0000\u0000\u00d0\u00d2\u0005"+
		"\u0016\u0000\u0000\u00d1\u00cc\u0001\u0000\u0000\u0000\u00d2\u00d5\u0001"+
		"\u0000\u0000\u0000\u00d3\u00d1\u0001\u0000\u0000\u0000\u00d3\u00d4\u0001"+
		"\u0000\u0000\u0000\u00d4\u00d6\u0001\u0000\u0000\u0000\u00d5\u00d3\u0001"+
		"\u0000\u0000\u0000\u00d6\u00d7\u0005$\u0000\u0000\u00d7\u00d8\u0005\f"+
		"\u0000\u0000\u00d8\u00d9\u0005&\u0000\u0000\u00d9\u00ed\u0005\r\u0000"+
		"\u0000\u00da\u00db\u0005$\u0000\u0000\u00db\u00dd\u0005\u0016\u0000\u0000"+
		"\u00dc\u00da\u0001\u0000\u0000\u0000\u00dd\u00e0\u0001\u0000\u0000\u0000"+
		"\u00de\u00dc\u0001\u0000\u0000\u0000\u00de\u00df\u0001\u0000\u0000\u0000"+
		"\u00df\u00e1\u0001\u0000\u0000\u0000\u00e0\u00de\u0001\u0000\u0000\u0000"+
		"\u00e1\u00e2\u0005$\u0000\u0000\u00e2\u00e4\u0005\u0016\u0000\u0000\u00e3"+
		"\u00de\u0001\u0000\u0000\u0000\u00e4\u00e7\u0001\u0000\u0000\u0000\u00e5"+
		"\u00e3\u0001\u0000\u0000\u0000\u00e5\u00e6\u0001\u0000\u0000\u0000\u00e6"+
		"\u00e8\u0001\u0000\u0000\u0000\u00e7\u00e5\u0001\u0000\u0000\u0000\u00e8"+
		"\u00e9\u0005$\u0000\u0000\u00e9\u00ea\u0005\f\u0000\u0000\u00ea\u00eb"+
		"\u0005&\u0000\u0000\u00eb\u00ed\u0005\r\u0000\u0000\u00ec\u00c8\u0001"+
		"\u0000\u0000\u0000\u00ec\u00d3\u0001\u0000\u0000\u0000\u00ec\u00e5\u0001"+
		"\u0000\u0000\u0000\u00ed\u0017\u0001\u0000\u0000\u0000\u00ee\u00f4\u0005"+
		"$\u0000\u0000\u00ef\u00f0\u0005$\u0000\u0000\u00f0\u00f1\u0005\f\u0000"+
		"\u0000\u00f1\u00f2\u0005&\u0000\u0000\u00f2\u00f4\u0005\r\u0000\u0000"+
		"\u00f3\u00ee\u0001\u0000\u0000\u0000\u00f3\u00ef\u0001\u0000\u0000\u0000"+
		"\u00f4\u0019\u0001\u0000\u0000\u0000\u00f5\u00f6\u0003\u001c\u000e\u0000"+
		"\u00f6\u00f7\u0005\u0016\u0000\u0000\u00f7\u00f9\u0001\u0000\u0000\u0000"+
		"\u00f8\u00f5\u0001\u0000\u0000\u0000\u00f9\u00fc\u0001\u0000\u0000\u0000"+
		"\u00fa\u00f8\u0001\u0000\u0000\u0000\u00fa\u00fb\u0001\u0000\u0000\u0000"+
		"\u00fb\u00fd\u0001\u0000\u0000\u0000\u00fc\u00fa\u0001\u0000\u0000\u0000"+
		"\u00fd\u00fe\u0003\u001c\u000e\u0000\u00fe\u001b\u0001\u0000\u0000\u0000"+
		"\u00ff\u0100\u0006\u000e\uffff\uffff\u0000\u0100\u0110\u0005%\u0000\u0000"+
		"\u0101\u0110\u0005&\u0000\u0000\u0102\u0110\u0005\u0017\u0000\u0000\u0103"+
		"\u0110\u0005$\u0000\u0000\u0104\u0105\u0005\u0019\u0000\u0000\u0105\u0110"+
		"\u0003\u001c\u000e\u0004\u0106\u0107\u0005\u0005\u0000\u0000\u0107\u0108"+
		"\u0003\u001c\u000e\u0000\u0108\u0109\u0005\u0006\u0000\u0000\u0109\u0110"+
		"\u0001\u0000\u0000\u0000\u010a\u010b\u0003\u001e\u000f\u0000\u010b\u010c"+
		"\u0005\u0005\u0000\u0000\u010c\u010d\u0003\u001c\u000e\u0000\u010d\u010e"+
		"\u0005\u0006\u0000\u0000\u010e\u0110\u0001\u0000\u0000\u0000\u010f\u00ff"+
		"\u0001\u0000\u0000\u0000\u010f\u0101\u0001\u0000\u0000\u0000\u010f\u0102"+
		"\u0001\u0000\u0000\u0000\u010f\u0103\u0001\u0000\u0000\u0000\u010f\u0104"+
		"\u0001\u0000\u0000\u0000\u010f\u0106\u0001\u0000\u0000\u0000\u010f\u010a"+
		"\u0001\u0000\u0000\u0000\u0110\u0122\u0001\u0000\u0000\u0000\u0111\u0112"+
		"\n\b\u0000\u0000\u0112\u0113\u0005\u0018\u0000\u0000\u0113\u0121\u0003"+
		"\u001c\u000e\t\u0114\u0115\n\u0007\u0000\u0000\u0115\u0116\u0005\u0019"+
		"\u0000\u0000\u0116\u0121\u0003\u001c\u000e\b\u0117\u0118\n\u0006\u0000"+
		"\u0000\u0118\u0119\u0005\u001a\u0000\u0000\u0119\u0121\u0003\u001c\u000e"+
		"\u0007\u011a\u011b\n\u0005\u0000\u0000\u011b\u011c\u0005\u001b\u0000\u0000"+
		"\u011c\u0121\u0003\u001c\u000e\u0006\u011d\u011e\n\u0003\u0000\u0000\u011e"+
		"\u011f\u0005\u001c\u0000\u0000\u011f\u0121\u0003\u001c\u000e\u0004\u0120"+
		"\u0111\u0001\u0000\u0000\u0000\u0120\u0114\u0001\u0000\u0000\u0000\u0120"+
		"\u0117\u0001\u0000\u0000\u0000\u0120\u011a\u0001\u0000\u0000\u0000\u0120"+
		"\u011d\u0001\u0000\u0000\u0000\u0121\u0124\u0001\u0000\u0000\u0000\u0122"+
		"\u0120\u0001\u0000\u0000\u0000\u0122\u0123\u0001\u0000\u0000\u0000\u0123"+
		"\u001d\u0001\u0000\u0000\u0000\u0124\u0122\u0001\u0000\u0000\u0000\u0125"+
		"\u0126\u0007\u0000\u0000\u0000\u0126\u001f\u0001\u0000\u0000\u0000\u0014"+
		"%Tf|\u0083\u0085\u0092\u00b2\u00b6\u00bc\u00c8\u00d3\u00de\u00e5\u00ec"+
		"\u00f3\u00fa\u010f\u0120\u0122";
	public static final ATN _ATN =
		new ATNDeserializer().deserialize(_serializedATN.toCharArray());
	static {
		_decisionToDFA = new DFA[_ATN.getNumberOfDecisions()];
		for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) {
			_decisionToDFA[i] = new DFA(_ATN.getDecisionState(i), i);
		}
	}
}