From 3d333f0499b63eeaf0a64c508de2922ff3ab2626 Mon Sep 17 00:00:00 2001 From: Przemyslaw Czerpak Date: Mon, 2 Mar 2009 20:23:33 +0000 Subject: [PATCH] 2009-03-02 21:28 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/include/hbcomp.h * harbour/include/hbcompdf.h * harbour/include/hbexpra.c * harbour/source/compiler/hbmain.c * harbour/source/compiler/cmdcheck.c * harbour/source/compiler/hbcomp.c * harbour/source/compiler/genc.c * harbour/source/compiler/harbour.yyc * harbour/source/compiler/harbour.y * harbour/source/compiler/harbour.yyh * harbour/source/compiler/ppcomp.c * harbour/source/compiler/hbdbginf.c * harbour/source/compiler/genhrb.c * harbour/source/compiler/hbusage.c ! fixed static variables indexes in the generated PCODE when static variables are declared inside extended codeblocks - in some cases wrong PCODE was generated ! fixed initialization PCODE for thread static variables declared inside extended codeblocks ! fixed modulename generated for debugger to always contain function name part for extended codeblock declared as file wide static variables. In such case "(_INITSTATICS)" is used as function name. Without it debugger does not register entering such codeblocks and GPFs. + added support for automatic adding 1-st function with the same name as compiled .prg file if some code statements are used before 1-st function/procedure declared explicitly in .prg file. Such mode can be enabled by -n2 new harbour compiler switch. --- harbour/ChangeLog | 30 + harbour/include/hbcomp.h | 3 +- harbour/include/hbcompdf.h | 7 +- harbour/include/hbexpra.c | 6 +- harbour/source/compiler/cmdcheck.c | 33 +- harbour/source/compiler/genc.c | 17 +- harbour/source/compiler/genhrb.c | 2 +- harbour/source/compiler/harbour.y | 159 +- harbour/source/compiler/harbour.yyc | 5455 +++++++++++++-------------- harbour/source/compiler/harbour.yyh | 2 +- harbour/source/compiler/hbcomp.c | 5 +- harbour/source/compiler/hbdbginf.c | 2 +- harbour/source/compiler/hbmain.c | 282 +- harbour/source/compiler/hbusage.c | 1 + harbour/source/compiler/ppcomp.c | 5 +- 15 files changed, 2998 insertions(+), 3011 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 347d13fb88..cfd7780db1 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,36 @@ 2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2009-03-02 21:28 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/include/hbcomp.h + * harbour/include/hbcompdf.h + * harbour/include/hbexpra.c + * harbour/source/compiler/hbmain.c + * harbour/source/compiler/cmdcheck.c + * harbour/source/compiler/hbcomp.c + * harbour/source/compiler/genc.c + * harbour/source/compiler/harbour.yyc + * harbour/source/compiler/harbour.y + * harbour/source/compiler/harbour.yyh + * harbour/source/compiler/ppcomp.c + * harbour/source/compiler/hbdbginf.c + * harbour/source/compiler/genhrb.c + * harbour/source/compiler/hbusage.c + ! fixed static variables indexes in the generated PCODE when static + variables are declared inside extended codeblocks - in some cases + wrong PCODE was generated + ! fixed initialization PCODE for thread static variables declared + inside extended codeblocks + ! fixed modulename generated for debugger to always contain function name + part for extended codeblock declared as file wide static variables. + In such case "(_INITSTATICS)" is used as function name. + Without it debugger does not register entering such codeblocks and + GPFs. + + added support for automatic adding 1-st function with the same name + as compiled .prg file if some code statements are used before 1-st + function/procedure declared explicitly in .prg file. Such mode can + be enabled by -n2 new harbour compiler switch. + 2009-03-02 18:48 UTC+0100 Viktor Szakats (harbour.01 syenar hu) * utils/hbmk2/hbmk2.prg + Compiler value unknown message now shows the actual value. diff --git a/harbour/include/hbcomp.h b/harbour/include/hbcomp.h index ee7aea58a2..2f85bee111 100644 --- a/harbour/include/hbcomp.h +++ b/harbour/include/hbcomp.h @@ -126,7 +126,7 @@ extern int hb_compVariableScope( HB_COMP_DECL, const char * ); #define VT_OFFSET_OPTIONAL 90 /* - * flags for bFlags member + * flags for funFlags member */ #define FUN_STATEMENTS 0x01 /* Function have at least one executable statement */ #define FUN_USES_STATICS 0x02 /* Function uses static variables */ @@ -135,6 +135,7 @@ extern int hb_compVariableScope( HB_COMP_DECL, const char * ); #define FUN_USES_LOCAL_PARAMS 0x10 /* parameters are declared using () */ #define FUN_WITH_RETURN 0x20 /* there was RETURN statement in previous line */ #define FUN_EXTBLOCK 0x40 /* it's extended codeblock */ +#define FUN_FILE_DECL 0x80 /* pseudo function with file wide declarations */ extern void hb_compFunctionAdd( HB_COMP_DECL, const char * szFunName, HB_SYMBOLSCOPE cScope, int iType ); /* starts a new Clipper language function definition */ extern PFUNCTION hb_compFunctionFind( HB_COMP_DECL, const char * szFunName ); /* locates a previously defined function */ diff --git a/harbour/include/hbcompdf.h b/harbour/include/hbcompdf.h index e3b8f6ea8d..607c5a64af 100644 --- a/harbour/include/hbcompdf.h +++ b/harbour/include/hbcompdf.h @@ -379,7 +379,7 @@ typedef struct __FUNC { const char * szName; /* name of a defined Clipper function */ HB_SYMBOLSCOPE cScope; /* scope of a defined Clipper function */ - BYTE bFlags; /* some flags we may need */ + USHORT funFlags; /* some flags we may need */ USHORT wParamCount; /* number of declared parameters */ USHORT wParamNum; /* current parameter number */ PVAR pLocals; /* pointer to local variables list */ @@ -674,10 +674,8 @@ typedef struct _HB_COMP char cDataListType; /* current declared variable list type */ char cCastType; /* current casting type */ - int iPassByRef; /* check if it's possible to pass variable be reference, can be removed */ - int iErrorCount; - int iFunctionCnt; + BOOL iStartProc; /* holds if we need to create the starting procedure */ int iMaxTransCycles; /* maximum translate cycles in PP (-r=) */ int iHidden; /* hide strings */ int iWarnings; /* enable parse warnings */ @@ -693,7 +691,6 @@ typedef struct _HB_COMP BOOL fExit; /* force breaking compilation process */ BOOL fPPO; /* flag indicating, is ppo output needed */ BOOL fPPT; /* flag indicating, is ppt output needed */ - BOOL fStartProc; /* holds if we need to create the starting procedure */ BOOL fLineNumbers; /* holds if we need pcodes with line numbers */ BOOL fAnyWarning; /* holds if there was any warning during the compilation process */ BOOL fAutoMemvarAssume; /* holds if undeclared variables are automatically assumed MEMVAR (-a)*/ diff --git a/harbour/include/hbexpra.c b/harbour/include/hbexpra.c index ab7f2ed432..a7bb5ca603 100644 --- a/harbour/include/hbexpra.c +++ b/harbour/include/hbexpra.c @@ -60,7 +60,7 @@ ULONG hb_compExprListEval( HB_COMP_DECL, HB_EXPR_PTR pExpr, HB_CARGO_FUNC_PTR pEval ) { ULONG ulLen = 0; - + if( pEval && ((pExpr->ExprType == HB_ET_LIST) || (pExpr->ExprType == HB_ET_ARGLIST)) ) { pExpr = pExpr->value.asList.pExprList; @@ -79,8 +79,8 @@ ULONG hb_compExprListEval2( HB_COMP_DECL, HB_EXPR_PTR pExpr1, HB_EXPR_PTR pExpr2 ULONG ulLen = 0; if( !pEval ) - return ulLen; - + return ulLen; + if( (pExpr1->ExprType == HB_ET_LIST || pExpr1->ExprType == HB_ET_ARGLIST) && (pExpr2->ExprType == HB_ET_LIST || pExpr2->ExprType == HB_ET_ARGLIST) ) diff --git a/harbour/source/compiler/cmdcheck.c b/harbour/source/compiler/cmdcheck.c index 41a86fcaab..b7c16c7323 100644 --- a/harbour/source/compiler/cmdcheck.c +++ b/harbour/source/compiler/cmdcheck.c @@ -492,26 +492,23 @@ static void hb_compChkEnvironVar( HB_COMP_DECL, const char *szSwitch ) case 'n': case 'N': - /* - -n1 no start up procedure and no implicit start up procedure - */ - if( *( s + 1 ) == '1' ) + HB_COMP_PARAM->fNoStartUp = s[ 1 ] == '1'; + switch( s[ 1 ] ) { - HB_COMP_PARAM->fStartProc = FALSE; - HB_COMP_PARAM->fNoStartUp = TRUE; + case '-': + HB_COMP_PARAM->iStartProc = 0; + break; + case '\0': + case '0': + case '1': + HB_COMP_PARAM->iStartProc = 1; + break; + case '2': + HB_COMP_PARAM->iStartProc = 2; + break; + default: + hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'F', HB_COMP_ERR_BADOPTION, s, NULL ); } - /* - -n or -n0 no implicit start up procedure - */ - else if( ( *( s + 1 ) == '0' ) || ( *( s + 1 ) == '\0' ) ) - HB_COMP_PARAM->fStartProc = FALSE; - /* - -n- creates implicit start up procedure - */ - else if( *( s + 1 ) == '-' ) - HB_COMP_PARAM->fStartProc = TRUE; - else - hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'F', HB_COMP_ERR_BADOPTION, s, NULL ); break; case 'o': diff --git a/harbour/source/compiler/genc.c b/harbour/source/compiler/genc.c index 115d683505..612b7fc9fc 100644 --- a/harbour/source/compiler/genc.c +++ b/harbour/source/compiler/genc.c @@ -96,7 +96,14 @@ void hb_compGenCCode( HB_COMP_DECL, PHB_FNAME pFileName ) /* generates the hb_xfree( szHrb ); } - if( HB_COMP_PARAM->iFunctionCnt ) + pFunc = HB_COMP_PARAM->functions.pFirst; + while( pFunc && + ( ( pFunc->funFlags & FUN_FILE_DECL ) != 0 || + pFunc == HB_COMP_PARAM->pInitFunc || + pFunc == HB_COMP_PARAM->pLineFunc ) ) + pFunc = pFunc->pNext; + + if( pFunc ) { fprintf( yyc, "#include \"hbvmpub.h\"\n" ); if( HB_COMP_PARAM->iGenCOutput != HB_COMPGENC_COMPACT ) @@ -110,8 +117,8 @@ void hb_compGenCCode( HB_COMP_DECL, PHB_FNAME pFileName ) /* generates the /* write functions prototypes for PRG defined functions */ pFunc = HB_COMP_PARAM->functions.pFirst; - if( ! HB_COMP_PARAM->fStartProc ) - pFunc = pFunc->pNext; /* No implicit starting procedure */ + if( ( pFunc->funFlags & FUN_FILE_DECL ) != 0 ) + pFunc = pFunc->pNext; while( pFunc ) { @@ -258,8 +265,8 @@ void hb_compGenCCode( HB_COMP_DECL, PHB_FNAME pFileName ) /* generates the /* Generate functions data */ pFunc = HB_COMP_PARAM->functions.pFirst; - if( ! HB_COMP_PARAM->fStartProc ) - pFunc = pFunc->pNext; /* No implicit starting procedure */ + if( ( pFunc->funFlags & FUN_FILE_DECL ) != 0 ) + pFunc = pFunc->pNext; while( pFunc ) { diff --git a/harbour/source/compiler/genhrb.c b/harbour/source/compiler/genhrb.c index 5fa42190d8..b6f63829d3 100644 --- a/harbour/source/compiler/genhrb.c +++ b/harbour/source/compiler/genhrb.c @@ -39,7 +39,7 @@ static PFUNCTION hb_compFirstFunc( HB_COMP_DECL ) { PFUNCTION pFunc = HB_COMP_PARAM->functions.pFirst; - if( ! HB_COMP_PARAM->fStartProc ) + if( ( pFunc->funFlags & FUN_FILE_DECL ) != 0 ) pFunc = pFunc->pNext; return pFunc; } diff --git a/harbour/source/compiler/harbour.y b/harbour/source/compiler/harbour.y index bd8f8f0c2c..6260511379 100644 --- a/harbour/source/compiler/harbour.y +++ b/harbour/source/compiler/harbour.y @@ -360,50 +360,50 @@ ParamList : IdentName AsType { hb_compVariableAdd( HB_COMP_PARAM * stop compilation if invalid syntax will be used. */ Statement : ExecFlow CrlfStmnt - | IfInline CrlfStmnt { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( $1, HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; } - | FunCall CrlfStmnt { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( $1, HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; } - | AliasExpr CrlfStmnt { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( $1, HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; } - | ObjectMethod CrlfStmnt { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( $1, HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; } + | IfInline CrlfStmnt { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( $1, HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; } + | FunCall CrlfStmnt { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( $1, HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; } + | AliasExpr CrlfStmnt { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( $1, HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; } + | ObjectMethod CrlfStmnt { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( $1, HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; } | MacroVar CrlfStmnt { if( HB_COMP_ISSUPPORTED( HB_COMPFLAG_XBASE ) ) HB_COMP_EXPR_DELETE( hb_compExprGenStatement( $1, HB_COMP_PARAM ) ); else HB_COMP_EXPR_DELETE( HB_COMP_ERROR_SYNTAX( $1 ) ); - HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; + HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; } | MacroExpr CrlfStmnt { if( HB_COMP_ISSUPPORTED( HB_COMPFLAG_XBASE ) ) HB_COMP_EXPR_DELETE( hb_compExprGenStatement( $1, HB_COMP_PARAM ) ); else HB_COMP_EXPR_DELETE( HB_COMP_ERROR_SYNTAX( $1 ) ); - HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; + HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; } - | PareExpList CrlfStmnt { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( $1, HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; } - | ExprPreOp CrlfStmnt { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( $1, HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; } - | ExprPostOp CrlfStmnt { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( $1, HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; } - | ExprOperEq CrlfStmnt { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( $1, HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; } - | ExprEqual CrlfStmnt { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( $1, HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; } - | ExprAssign CrlfStmnt { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( $1, HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; } - | DoProc CrlfStmnt { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( $1, HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; } + | PareExpList CrlfStmnt { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( $1, HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; } + | ExprPreOp CrlfStmnt { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( $1, HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; } + | ExprPostOp CrlfStmnt { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( $1, HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; } + | ExprOperEq CrlfStmnt { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( $1, HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; } + | ExprEqual CrlfStmnt { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( $1, HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; } + | ExprAssign CrlfStmnt { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( $1, HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; } + | DoProc CrlfStmnt { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( $1, HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; } | BREAK CrlfStmnt { hb_compGenBreak( HB_COMP_PARAM ); hb_compGenPCode2( HB_P_DOSHORT, 0, HB_COMP_PARAM ); - HB_COMP_PARAM->functions.pLast->bFlags |= FUN_BREAK_CODE; } + HB_COMP_PARAM->functions.pLast->funFlags |= FUN_BREAK_CODE; } | BREAK { hb_compLinePushIfInside( HB_COMP_PARAM ); } Expression Crlf { hb_compGenBreak( HB_COMP_PARAM ); HB_COMP_EXPR_DELETE( hb_compExprGenPush( $3, HB_COMP_PARAM ) ); hb_compGenPCode2( HB_P_DOSHORT, 1, HB_COMP_PARAM ); - HB_COMP_PARAM->functions.pLast->bFlags |= FUN_BREAK_CODE; + HB_COMP_PARAM->functions.pLast->funFlags |= FUN_BREAK_CODE; } - | EXIT CrlfStmnt { hb_compLoopExit( HB_COMP_PARAM ); HB_COMP_PARAM->functions.pLast->bFlags |= FUN_BREAK_CODE; } - | LOOP CrlfStmnt { hb_compLoopLoop( HB_COMP_PARAM ); HB_COMP_PARAM->functions.pLast->bFlags |= FUN_BREAK_CODE; } + | EXIT CrlfStmnt { hb_compLoopExit( HB_COMP_PARAM ); HB_COMP_PARAM->functions.pLast->funFlags |= FUN_BREAK_CODE; } + | LOOP CrlfStmnt { hb_compLoopLoop( HB_COMP_PARAM ); HB_COMP_PARAM->functions.pLast->funFlags |= FUN_BREAK_CODE; } | RETURN CrlfStmnt { if( HB_COMP_PARAM->functions.pLast->wSeqCounter ) { hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "RETURN", NULL ); } hb_compGenPCode1( HB_P_ENDPROC, HB_COMP_PARAM ); - if( (HB_COMP_PARAM->functions.pLast->bFlags & FUN_PROCEDURE) == 0 ) + if( (HB_COMP_PARAM->functions.pLast->funFlags & FUN_PROCEDURE) == 0 ) { /* return from a function without a return value */ hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_NO_RETURN_VALUE, NULL, NULL ); } - HB_COMP_PARAM->functions.pLast->bFlags |= FUN_WITH_RETURN | FUN_BREAK_CODE; + HB_COMP_PARAM->functions.pLast->funFlags |= FUN_WITH_RETURN | FUN_BREAK_CODE; } | RETURN { hb_compLinePushIfInside( HB_COMP_PARAM ); } Expression Crlf @@ -414,28 +414,28 @@ Statement : ExecFlow CrlfStmnt } /* TODO: check if return value agree with declared value */ HB_COMP_EXPR_DELETE( hb_compExprGenPush( $3, HB_COMP_PARAM ) ); - if( HB_COMP_PARAM->functions.pLast->bFlags & FUN_EXTBLOCK ) + if( HB_COMP_PARAM->functions.pLast->funFlags & FUN_EXTBLOCK ) /* extended clodeblock, use HB_P_ENDBLOCK to return value and stop execution */ hb_compGenPCode1( HB_P_ENDBLOCK, HB_COMP_PARAM ); else hb_compGenPCode2( HB_P_RETVALUE, HB_P_ENDPROC, HB_COMP_PARAM ); - if( HB_COMP_PARAM->functions.pLast->bFlags & FUN_PROCEDURE ) + if( HB_COMP_PARAM->functions.pLast->funFlags & FUN_PROCEDURE ) { /* procedure returns a value */ hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_PROC_RETURN_VALUE, NULL, NULL ); } - HB_COMP_PARAM->functions.pLast->bFlags |= FUN_WITH_RETURN | FUN_BREAK_CODE; + HB_COMP_PARAM->functions.pLast->funFlags |= FUN_WITH_RETURN | FUN_BREAK_CODE; } | PUBLIC { hb_compLinePushIfInside( HB_COMP_PARAM ); HB_COMP_PARAM->iVarScope = VS_PUBLIC; } ExtVarList { hb_compRTVariableGen( HB_COMP_PARAM, "__MVPUBLIC" ); HB_COMP_PARAM->iVarScope = VS_NONE; - HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; + HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; } Crlf | PRIVATE { hb_compLinePushIfInside( HB_COMP_PARAM ); HB_COMP_PARAM->iVarScope = VS_PRIVATE; } ExtVarList { hb_compRTVariableGen( HB_COMP_PARAM, "__MVPRIVATE" ); HB_COMP_PARAM->iVarScope = VS_NONE; - HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; + HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; } Crlf | VarDefs | FieldsDef @@ -456,7 +456,7 @@ Statement : ExecFlow CrlfStmnt else hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_DUPL_ANNOUNCE, $2, NULL ); } Crlf - | PROCREQ CompTimeStr ')' Crlf { HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; } + | PROCREQ CompTimeStr ')' Crlf { HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; } ; CompTimeStr : LITERAL { @@ -759,13 +759,14 @@ VariableAt : NumValue ArrayIndex { $$ = $2; } VariableAtAlias : VariableAt ALIASOP ; - -FunIdentCall: IdentName '(' { $$ = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL;} ArgList ')' { $$ = hb_compExprNewFunCall( hb_compExprNewFunName( $1, HB_COMP_PARAM ), $4, HB_COMP_PARAM ); HB_COMP_PARAM->iPassByRef = $3; } /* function call */ +FunIdentCall: IdentName '(' ArgList ')' { $$ = hb_compExprNewFunCall( hb_compExprNewFunName( $1, HB_COMP_PARAM ), $3, HB_COMP_PARAM ); } + ; + FunCall : FunIdentCall - | MacroVar '(' { $$ = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL;} ArgList ')' { $$ = hb_compExprNewFunCall( $1, $4, HB_COMP_PARAM ); HB_COMP_PARAM->iPassByRef = $3; } - | MacroExpr '(' { $$ = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL;} ArgList ')' { $$ = hb_compExprNewFunCall( $1, $4, HB_COMP_PARAM ); HB_COMP_PARAM->iPassByRef = $3; } + | MacroVar '(' ArgList ')' { $$ = hb_compExprNewFunCall( $1, $3, HB_COMP_PARAM ); } + | MacroExpr '(' ArgList ')' { $$ = hb_compExprNewFunCall( $1, $3, HB_COMP_PARAM ); } ; /* FunRef : '@' FunCall { $$ = hb_compCheckPassByRef( HB_COMP_PARAM, $2 ); } */ @@ -817,7 +818,7 @@ ObjectDataAlias : ObjectData ALIASOP /* Object's method */ -ObjectMethod : ObjectData '(' {$$=HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL;} ArgList ')' { $$ = hb_compExprNewMethodCall( $1, $4 ); HB_COMP_PARAM->iPassByRef=$3; } +ObjectMethod : ObjectData '(' ArgList ')' { $$ = hb_compExprNewMethodCall( $1, $3 ); } ; ObjectMethodAlias : ObjectMethod ALIASOP @@ -1054,7 +1055,7 @@ CodeBlock : BlockHead HB_CBVAR_PTR pVar; $$ = HB_COMP_PARAM->functions.pLast->lPCodePos; hb_compCodeBlockStart( HB_COMP_PARAM, TRUE ); - HB_COMP_PARAM->functions.pLast->bFlags |= FUN_EXTBLOCK; + HB_COMP_PARAM->functions.pLast->funFlags |= FUN_EXTBLOCK; HB_COMP_PARAM->functions.pLast->fVParams = ( $1->value.asCodeblock.flags & HB_BLOCK_VPARAMS ) != 0; @@ -1113,7 +1114,7 @@ VarDefs : LOCAL { HB_COMP_PARAM->iVarScope = VS_LOCAL; hb_compLinePush( HB_COMP VarList Crlf | THREAD STATIC { HB_COMP_PARAM->iVarScope = VS_TH_STATIC; hb_compLinePush( HB_COMP_PARAM ); } VarList Crlf - | PARAMETERS { if( HB_COMP_PARAM->functions.pLast->bFlags & FUN_USES_LOCAL_PARAMS ) + | PARAMETERS { if( HB_COMP_PARAM->functions.pLast->funFlags & FUN_USES_LOCAL_PARAMS ) hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_PARAMETERS_NOT_ALLOWED, NULL, NULL ); else { @@ -1150,8 +1151,9 @@ ExtVarDef : VarDef } ; -VarDef : IdentName AsType { hb_compVariableAdd( HB_COMP_PARAM, $1, $2 ); } +VarDef : IdentName AsType { + hb_compVariableAdd( HB_COMP_PARAM, $1, $2 ); if( HB_COMP_PARAM->iVarScope & VS_STATIC ) { hb_compStaticDefStart( HB_COMP_PARAM ); /* switch to statics pcode buffer */ @@ -1162,7 +1164,7 @@ VarDef : IdentName AsType { hb_compVariableAdd( HB_COMP_PARAM, $1, $2 ); } hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( $1, NULL, HB_COMP_PARAM ), FALSE ); } else if( HB_COMP_PARAM->iVarScope == VS_LOCAL && - ( HB_COMP_PARAM->functions.pLast->bFlags & FUN_EXTBLOCK ) ) + ( HB_COMP_PARAM->functions.pLast->funFlags & FUN_EXTBLOCK ) ) { HB_COMP_EXPR_DELETE( hb_compExprGenPush( hb_compExprNewNil( HB_COMP_PARAM ), HB_COMP_PARAM ) ); } @@ -1170,28 +1172,28 @@ VarDef : IdentName AsType { hb_compVariableAdd( HB_COMP_PARAM, $1, $2 ); } | IdentName AsType { $$ = HB_COMP_PARAM->iVarScope; hb_compVariableAdd( HB_COMP_PARAM, $1, $2 ); } - INASSIGN { ; } Expression + INASSIGN Expression { HB_COMP_PARAM->iVarScope = $3; if( HB_COMP_PARAM->iVarScope & VS_STATIC ) { hb_compStaticDefStart( HB_COMP_PARAM ); /* switch to statics pcode buffer */ - HB_COMP_EXPR_DELETE( hb_compExprGenStatement( hb_compExprAssignStatic( hb_compExprNewVar( $1, HB_COMP_PARAM ), $6, HB_COMP_PARAM ), HB_COMP_PARAM ) ); + HB_COMP_EXPR_DELETE( hb_compExprGenStatement( hb_compExprAssignStatic( hb_compExprNewVar( $1, HB_COMP_PARAM ), $5, HB_COMP_PARAM ), HB_COMP_PARAM ) ); hb_compStaticDefEnd( HB_COMP_PARAM, $1 ); } else if( HB_COMP_PARAM->iVarScope == VS_PUBLIC || HB_COMP_PARAM->iVarScope == VS_PRIVATE ) { - HB_COMP_EXPR_DELETE( hb_compExprGenPush( $6, HB_COMP_PARAM ) ); + HB_COMP_EXPR_DELETE( hb_compExprGenPush( $5, HB_COMP_PARAM ) ); hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( $1, NULL, HB_COMP_PARAM ), TRUE ); } else if( HB_COMP_PARAM->iVarScope == VS_LOCAL && - ( HB_COMP_PARAM->functions.pLast->bFlags & FUN_EXTBLOCK ) ) + ( HB_COMP_PARAM->functions.pLast->funFlags & FUN_EXTBLOCK ) ) { - HB_COMP_EXPR_DELETE( hb_compExprGenPush( $6, HB_COMP_PARAM ) ); + HB_COMP_EXPR_DELETE( hb_compExprGenPush( $5, HB_COMP_PARAM ) ); } else { - HB_COMP_EXPR_DELETE( hb_compExprGenStatement( hb_compExprAssign( hb_compExprNewVar( $1, HB_COMP_PARAM ), $6, HB_COMP_PARAM ), HB_COMP_PARAM ) ); + HB_COMP_EXPR_DELETE( hb_compExprGenStatement( hb_compExprAssign( hb_compExprNewVar( $1, HB_COMP_PARAM ), $5, HB_COMP_PARAM ), HB_COMP_PARAM ) ); } HB_COMP_PARAM->iVarScope = $3; } @@ -1395,11 +1397,11 @@ IfBegin : IF ExpList { $$ = hb_compGenJump( 0, HB_COMP_PARAM ); hb_compGenJumpHere( $5, HB_COMP_PARAM ); } ; -IfElse : ELSE Crlf { HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; } +IfElse : ELSE Crlf { HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; } EmptyStats ; -IfElseIf : ELSEIF { HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; hb_compLinePush( HB_COMP_PARAM ); } +IfElseIf : ELSEIF { HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; hb_compLinePush( HB_COMP_PARAM ); } ExpList Crlf { HB_COMP_EXPR_DELETE( hb_compExprGenPush( $3, HB_COMP_PARAM ) ); $$ = hb_compGenJumpFalse( 0, HB_COMP_PARAM ); @@ -1409,7 +1411,7 @@ IfElseIf : ELSEIF { HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE hb_compGenJumpHere( $5, HB_COMP_PARAM ); } - | IfElseIf ELSEIF { HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; hb_compLinePush( HB_COMP_PARAM ); } + | IfElseIf ELSEIF { HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; hb_compLinePush( HB_COMP_PARAM ); } ExpList Crlf { HB_COMP_EXPR_DELETE( hb_compExprGenPush( $4, HB_COMP_PARAM ) ); $$ = hb_compGenJumpFalse( 0, HB_COMP_PARAM ); @@ -1424,7 +1426,7 @@ EndIf : EndIfID { if( HB_COMP_PARAM->functions.pLast->wIfCounter ) --HB_COMP_PARAM->functions.pLast->wIfCounter; - HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); + HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); } ; @@ -1452,7 +1454,7 @@ DoCase : DoCaseBegin EndCase : EndCaseID { if( HB_COMP_PARAM->functions.pLast->wCaseCounter ) --HB_COMP_PARAM->functions.pLast->wCaseCounter; - HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); + HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); } ; @@ -1479,7 +1481,7 @@ Cases : CASE { hb_compLinePushIfInside( HB_COMP_PARAM ); } ExpList Crlf } EmptyStats { - HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; + HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; $$ = hb_compElseIfGen( HB_COMP_PARAM, NULL, hb_compGenJump( 0, HB_COMP_PARAM ) ); hb_compGenJumpHere( $5, HB_COMP_PARAM ); } @@ -1491,13 +1493,13 @@ Cases : CASE { hb_compLinePushIfInside( HB_COMP_PARAM ); } ExpList Crlf } EmptyStats { - HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; + HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; $$ = hb_compElseIfGen( HB_COMP_PARAM, $1, hb_compGenJump( 0, HB_COMP_PARAM ) ); hb_compGenJumpHere( $6, HB_COMP_PARAM ); } ; -Otherwise : OTHERWISE {hb_compLinePushIfDebugger( HB_COMP_PARAM ); } Crlf { HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; } +Otherwise : OTHERWISE {hb_compLinePushIfDebugger( HB_COMP_PARAM ); } Crlf { HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; } EmptyStats | Otherwise OTHERWISE { hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_MAYHEM_IN_CASE, NULL, NULL ); } Crlf EmptyStats @@ -1519,7 +1521,7 @@ DoWhile : WhileBegin ExpList Crlf if( HB_COMP_PARAM->functions.pLast->wWhileCounter ) --HB_COMP_PARAM->functions.pLast->wWhileCounter; hb_compLoopEnd( HB_COMP_PARAM ); - HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; + HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; } ; @@ -1533,7 +1535,7 @@ WhileBegin : WHILE ; EndWhile : EndWhileID - { HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; } + { HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; } ; EndWhileID : ENDDO @@ -1603,7 +1605,7 @@ ForNext : FOR LValue ForAssign Expression /* 1 2 3 4 */ if( hb_compExprAsSymbol( $2 ) ) hb_compForEnd( HB_COMP_PARAM, hb_compExprAsSymbol( $2 ) ); HB_COMP_EXPR_DELETE( $5 ); /* deletes $5, $2, $4 */ - HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); + HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); } ; @@ -1677,7 +1679,7 @@ ForEach : FOREACH ForList IN ForArgs /* 1 2 3 4 */ hb_compGenJumpHere( ( ULONG ) $9, HB_COMP_PARAM ); hb_compLoopEnd( HB_COMP_PARAM ); - HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); + HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); hb_compEnumEnd( HB_COMP_PARAM, $2 ); HB_COMP_EXPR_DELETE( $2 ); HB_COMP_EXPR_DELETE( $4 ); @@ -1712,7 +1714,7 @@ EndSwitch : EndSwitchID { if( HB_COMP_PARAM->functions.pLast->wSwitchCounter ) --HB_COMP_PARAM->functions.pLast->wSwitchCounter; - HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); + HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); } ; @@ -1751,7 +1753,7 @@ SwitchCases : CASE Expression { hb_compSwitchAdd( HB_COMP_PARAM, $2 ); hb_compLi | SwitchCases SwitchDefault ; -SwitchDefault : OTHERWISE { hb_compSwitchAdd( HB_COMP_PARAM, NULL ); hb_compLinePush( HB_COMP_PARAM ); } Crlf { HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; } +SwitchDefault : OTHERWISE { hb_compSwitchAdd( HB_COMP_PARAM, NULL ); hb_compLinePush( HB_COMP_PARAM ); } Crlf { HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; } EmptyStats ; @@ -1787,7 +1789,7 @@ BeginSeq : BEGINSEQ /* 1 */ AlwaysSeq /* 9 */ { /* 10 */ long lLoopCount = hb_compLoopCount( HB_COMP_PARAM ); - HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); + HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); if( $9 ) { if( $4 != lLoopCount ) @@ -1835,21 +1837,21 @@ AlwaysSeq : /* no always */ { $$ = 0; } Always : ALWAYS { - HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); + HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); $$ = HB_COMP_PARAM->functions.pLast->lPCodePos; ++HB_COMP_PARAM->functions.pLast->wAlwaysCounter; hb_compSequenceAlways( HB_COMP_PARAM ); } ; -RecoverSeq : /* no recover */ { $$ = 0; HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; } +RecoverSeq : /* no recover */ { $$ = 0; HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; } | RecoverEmpty Crlf EmptyStats | RecoverUsing Crlf EmptyStats ; RecoverEmpty : RECOVER { - HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; + HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; $$ = HB_COMP_PARAM->functions.pLast->lPCodePos; if( HB_COMP_PARAM->functions.pLast->wSeqCounter ) --HB_COMP_PARAM->functions.pLast->wSeqCounter; @@ -1860,7 +1862,7 @@ RecoverEmpty : RECOVER RecoverUsing : RECOVERUSING IdentName { - HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; + HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; $$ = HB_COMP_PARAM->functions.pLast->lPCodePos; if( HB_COMP_PARAM->functions.pLast->wSeqCounter ) --HB_COMP_PARAM->functions.pLast->wSeqCounter; @@ -1880,21 +1882,15 @@ DoName : MacroVar | MacroExpr ; -DoProc : DO DoName - { $$ = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL; } - DoArgs +DoProc : DO DoName DoArgs { - $$ = hb_compExprNewFunCall( $2, $4, HB_COMP_PARAM ); - HB_COMP_PARAM->iPassByRef = $3; + $$ = hb_compExprNewFunCall( $2, $3, HB_COMP_PARAM ); } - | DOIDENT - { $$ = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL; } - DoArgs + | DOIDENT DoArgs { hb_compAutoOpenAdd( HB_COMP_PARAM, $1 ); /* DOIDENT is the only one identifier which can be returned in lower letters */ - $$ = hb_compExprNewFunCall( hb_compExprNewFunName( hb_compIdentifierNew( HB_COMP_PARAM, hb_strupr( hb_strdup( $1 ) ), HB_IDENT_FREE ), HB_COMP_PARAM ), $3, HB_COMP_PARAM ); - HB_COMP_PARAM->iPassByRef = $2; + $$ = hb_compExprNewFunCall( hb_compExprNewFunName( hb_compIdentifierNew( HB_COMP_PARAM, hb_strupr( hb_strdup( $1 ) ), HB_IDENT_FREE ), HB_COMP_PARAM ), $2, HB_COMP_PARAM ); } ; @@ -2419,7 +2415,7 @@ static void hb_compVariableDim( const char * szName, HB_EXPR_PTR pInitValue, HB_ hb_compVariableAdd( HB_COMP_PARAM, szName, hb_compVarTypeNew( HB_COMP_PARAM, 'A', NULL ) ); HB_COMP_EXPR_DELETE( hb_compArrayDimPush( pInitValue, HB_COMP_PARAM ) ); if( HB_COMP_PARAM->iVarScope != VS_LOCAL || - !( HB_COMP_PARAM->functions.pLast->bFlags & FUN_EXTBLOCK ) ) + !( HB_COMP_PARAM->functions.pLast->funFlags & FUN_EXTBLOCK ) ) { HB_COMP_EXPR_DELETE( hb_compExprGenPop( hb_compExprNewVar( szName, HB_COMP_PARAM ), HB_COMP_PARAM ) ); } @@ -2583,7 +2579,7 @@ static void hb_compSwitchAdd( HB_COMP_DECL, HB_EXPR_PTR pExpr ) HB_SWITCHCASE_PTR pCase; PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast; - pFunc->bFlags &= ~FUN_BREAK_CODE; + pFunc->funFlags &= ~FUN_BREAK_CODE; if( pExpr ) { @@ -2742,24 +2738,7 @@ static HB_EXPR_PTR hb_compCheckPassByRef( HB_COMP_DECL, HB_EXPR_PTR pExpr ) return hb_compErrorRefer( HB_COMP_PARAM, pExpr, szDesc ); } } -#if 0 - else if( !( HB_COMP_PARAM->iPassByRef & ( HB_PASSBYREF_FUNCALL | HB_PASSBYREF_ARRAY ) ) ) - { - const char * szDesc; - if( pExpr->ExprType == HB_ET_REFERENCE ) - { - HB_EXPR_PTR pDelExpr = pExpr; - pExpr = pExpr->value.asReference; - HB_COMP_EXPR_CLEAR( pDelExpr ); - } - szDesc = hb_compExprAsSymbol( pExpr ); - if( ! szDesc ) - szDesc = hb_compExprDescription( pExpr ); - - return hb_compErrorRefer( HB_COMP_PARAM, pExpr, szDesc ); - } -#endif return pExpr; } @@ -2804,10 +2783,10 @@ BOOL hb_compCheckUnclosedStru( HB_COMP_DECL, PFUNCTION pFunc ) hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "BEGIN SEQUENCE", NULL ); pFunc->wSeqCounter = 0; } - else if( pFunc->bFlags & FUN_EXTBLOCK ) + else if( pFunc->funFlags & FUN_EXTBLOCK ) { hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "{||...}", NULL ); - pFunc->bFlags &= ~FUN_EXTBLOCK; + pFunc->funFlags &= ~FUN_EXTBLOCK; } else fUnclosed = FALSE; diff --git a/harbour/source/compiler/harbour.yyc b/harbour/source/compiler/harbour.yyc index a6c6e803df..f399318761 100644 --- a/harbour/source/compiler/harbour.yyc +++ b/harbour/source/compiler/harbour.yyc @@ -699,18 +699,18 @@ union yyalloc #endif /* YYFINAL -- State number of the termination state. */ -#define YYFINAL 290 +#define YYFINAL 291 /* YYLAST -- Last index in YYTABLE. */ -#define YYLAST 8873 +#define YYLAST 8916 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 133 /* YYNNTS -- Number of nonterminals. */ -#define YYNNTS 248 +#define YYNNTS 240 /* YYNRULES -- Number of rules. */ -#define YYNRULES 635 +#define YYNRULES 627 /* YYNRULES -- Number of states. */ -#define YYNSTATES 1013 +#define YYNSTATES 1005 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 @@ -789,83 +789,82 @@ static const yytype_uint16 yyprhs[] = 549, 552, 555, 558, 561, 564, 567, 570, 573, 576, 579, 582, 585, 588, 591, 594, 597, 600, 603, 606, 609, 612, 615, 618, 621, 624, 627, 630, 633, 636, - 639, 642, 645, 648, 651, 652, 658, 660, 661, 667, - 668, 674, 677, 680, 682, 686, 688, 690, 693, 696, - 699, 702, 705, 707, 709, 713, 717, 720, 722, 724, - 726, 731, 734, 735, 741, 744, 746, 748, 750, 752, - 754, 756, 758, 761, 763, 765, 767, 769, 771, 773, - 775, 777, 779, 782, 784, 786, 789, 791, 794, 796, - 798, 800, 802, 804, 806, 808, 810, 812, 814, 816, - 819, 822, 824, 826, 828, 829, 831, 833, 835, 837, + 639, 642, 645, 648, 651, 656, 658, 663, 668, 671, + 674, 676, 680, 682, 684, 687, 690, 693, 696, 699, + 701, 703, 707, 711, 714, 716, 718, 720, 725, 728, + 733, 736, 738, 740, 742, 744, 746, 748, 750, 753, + 755, 757, 759, 761, 763, 765, 767, 769, 771, 774, + 776, 778, 781, 783, 786, 788, 790, 792, 794, 796, + 798, 800, 802, 804, 806, 808, 811, 814, 816, 818, + 820, 821, 823, 825, 827, 829, 831, 833, 835, 837, 839, 841, 843, 845, 847, 849, 851, 853, 855, 857, 859, 861, 863, 865, 867, 869, 871, 873, 875, 877, - 879, 881, 883, 885, 887, 889, 891, 894, 897, 900, - 903, 906, 909, 913, 917, 921, 925, 929, 933, 937, - 941, 945, 949, 953, 957, 961, 965, 969, 973, 977, - 981, 985, 989, 993, 997, 1001, 1005, 1009, 1013, 1017, - 1021, 1023, 1025, 1027, 1029, 1031, 1033, 1037, 1041, 1045, - 1049, 1053, 1057, 1061, 1065, 1069, 1073, 1077, 1081, 1085, - 1089, 1093, 1097, 1101, 1104, 1107, 1111, 1116, 1118, 1122, - 1123, 1128, 1129, 1131, 1133, 1137, 1140, 1145, 1147, 1151, - 1152, 1153, 1159, 1160, 1166, 1168, 1172, 1176, 1179, 1188, - 1191, 1192, 1197, 1198, 1203, 1204, 1210, 1211, 1216, 1218, - 1222, 1224, 1228, 1230, 1233, 1238, 1242, 1243, 1247, 1248, - 1249, 1256, 1260, 1263, 1266, 1270, 1275, 1276, 1282, 1285, - 1290, 1291, 1294, 1295, 1300, 1303, 1308, 1309, 1318, 1319, - 1325, 1329, 1334, 1338, 1339, 1347, 1349, 1353, 1355, 1358, - 1360, 1363, 1364, 1371, 1372, 1376, 1377, 1379, 1381, 1385, - 1387, 1391, 1393, 1396, 1400, 1406, 1411, 1417, 1425, 1429, - 1434, 1441, 1447, 1454, 1463, 1465, 1467, 1469, 1471, 1473, - 1475, 1477, 1479, 1482, 1486, 1490, 1495, 1496, 1497, 1504, - 1505, 1510, 1511, 1512, 1519, 1520, 1521, 1529, 1531, 1533, - 1535, 1539, 1543, 1546, 1551, 1553, 1555, 1557, 1558, 1562, - 1564, 1567, 1568, 1569, 1576, 1577, 1578, 1586, 1587, 1588, - 1594, 1595, 1601, 1602, 1603, 1611, 1613, 1615, 1617, 1619, - 1620, 1621, 1622, 1635, 1637, 1639, 1640, 1643, 1646, 1648, - 1651, 1653, 1656, 1658, 1660, 1662, 1666, 1669, 1671, 1673, - 1677, 1678, 1679, 1680, 1691, 1692, 1694, 1695, 1700, 1703, - 1705, 1707, 1709, 1710, 1715, 1717, 1720, 1721, 1727, 1728, - 1735, 1737, 1740, 1741, 1742, 1748, 1749, 1750, 1751, 1752, - 1764, 1766, 1768, 1769, 1772, 1773, 1777, 1779, 1780, 1784, - 1788, 1790, 1793, 1795, 1797, 1798, 1803, 1804, 1808, 1809, - 1812, 1814, 1817, 1819, 1822, 1826, 1828, 1830, 1832, 1834, - 1836, 1837, 1844, 1846, 1848, 1850 + 879, 881, 883, 886, 889, 892, 895, 898, 901, 905, + 909, 913, 917, 921, 925, 929, 933, 937, 941, 945, + 949, 953, 957, 961, 965, 969, 973, 977, 981, 985, + 989, 993, 997, 1001, 1005, 1009, 1013, 1015, 1017, 1019, + 1021, 1023, 1025, 1029, 1033, 1037, 1041, 1045, 1049, 1053, + 1057, 1061, 1065, 1069, 1073, 1077, 1081, 1085, 1089, 1093, + 1096, 1099, 1103, 1108, 1110, 1114, 1115, 1120, 1121, 1123, + 1125, 1129, 1132, 1137, 1139, 1143, 1144, 1145, 1151, 1152, + 1158, 1160, 1164, 1168, 1171, 1180, 1183, 1184, 1189, 1190, + 1195, 1196, 1202, 1203, 1208, 1210, 1214, 1216, 1220, 1222, + 1225, 1230, 1234, 1237, 1238, 1244, 1248, 1251, 1254, 1258, + 1263, 1264, 1270, 1273, 1278, 1279, 1282, 1283, 1288, 1291, + 1296, 1297, 1306, 1307, 1313, 1317, 1322, 1326, 1327, 1335, + 1337, 1341, 1343, 1346, 1348, 1351, 1352, 1359, 1360, 1364, + 1365, 1367, 1369, 1373, 1375, 1379, 1381, 1384, 1388, 1394, + 1399, 1405, 1413, 1417, 1422, 1429, 1435, 1442, 1451, 1453, + 1455, 1457, 1459, 1461, 1463, 1465, 1467, 1470, 1474, 1478, + 1483, 1484, 1485, 1492, 1493, 1498, 1499, 1500, 1507, 1508, + 1509, 1517, 1519, 1521, 1523, 1527, 1531, 1534, 1539, 1541, + 1543, 1545, 1546, 1550, 1552, 1555, 1556, 1557, 1564, 1565, + 1566, 1574, 1575, 1576, 1582, 1583, 1589, 1590, 1591, 1599, + 1601, 1603, 1605, 1607, 1608, 1609, 1610, 1623, 1625, 1627, + 1628, 1631, 1634, 1636, 1639, 1641, 1644, 1646, 1648, 1650, + 1654, 1657, 1659, 1661, 1665, 1666, 1667, 1668, 1679, 1680, + 1682, 1683, 1688, 1691, 1693, 1695, 1697, 1698, 1703, 1705, + 1708, 1709, 1715, 1716, 1723, 1725, 1728, 1729, 1730, 1736, + 1737, 1738, 1739, 1740, 1752, 1754, 1756, 1757, 1760, 1761, + 1765, 1767, 1768, 1772, 1776, 1778, 1781, 1783, 1785, 1789, + 1792, 1793, 1796, 1798, 1801, 1803, 1806, 1810, 1812, 1814, + 1816, 1818, 1820, 1821, 1828, 1830, 1832, 1834 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ static const yytype_int16 yyrhs[] = { - 134, 0, -1, 135, -1, -1, 380, -1, 278, -1, - 137, -1, 149, -1, 136, -1, 1, 380, -1, 135, - 380, -1, 135, 278, -1, 135, 137, -1, 135, 149, - -1, 135, 136, -1, 135, 1, 380, -1, 71, 10, - 19, 380, -1, 71, 10, 19, 121, 19, 380, -1, - -1, 142, 3, 167, 138, 380, -1, -1, 142, 4, - 167, 139, 380, -1, -1, 142, 3, 167, 140, 125, - 143, 126, 380, -1, -1, 142, 4, 167, 141, 125, - 143, 126, 380, -1, -1, 12, -1, 25, -1, 26, + 134, 0, -1, 135, -1, -1, 372, -1, 272, -1, + 137, -1, 149, -1, 136, -1, 1, 372, -1, 135, + 372, -1, 135, 272, -1, 135, 137, -1, 135, 149, + -1, 135, 136, -1, 135, 1, 372, -1, 71, 10, + 19, 372, -1, 71, 10, 19, 121, 19, 372, -1, + -1, 142, 3, 167, 138, 372, -1, -1, 142, 4, + 167, 139, 372, -1, -1, 142, 3, 167, 140, 125, + 143, 126, 372, -1, -1, 142, 4, 167, 141, 125, + 143, 126, 372, -1, -1, 12, -1, 25, -1, 26, -1, -1, 105, -1, 148, -1, 148, 124, 105, -1, -1, 146, -1, -1, 147, -1, 80, -1, 76, -1, 78, -1, 79, -1, 75, -1, 81, -1, 77, 167, -1, 82, -1, 147, -1, 74, -1, 93, -1, 89, -1, 91, -1, 92, -1, 87, -1, 88, -1, 94, -1, 90, 167, -1, 167, 144, -1, 148, 124, 167, - 144, -1, 293, 158, -1, 255, 158, -1, 202, 158, - -1, 197, 158, -1, 215, 158, -1, 189, 158, -1, - 191, 158, -1, 253, 158, -1, 226, 158, -1, 225, - 158, -1, 236, 158, -1, 229, 158, -1, 228, 158, - -1, 371, 158, -1, 63, 158, -1, -1, 63, 150, - 219, 380, -1, 26, 158, -1, 44, 158, -1, 6, - 158, -1, -1, 6, 151, 219, 380, -1, -1, -1, - 30, 152, 263, 153, 380, -1, -1, -1, 61, 154, - 263, 155, 380, -1, 257, -1, 271, -1, 275, -1, - 23, 165, 380, -1, 24, 166, 380, -1, -1, 22, - 167, 156, 380, -1, 95, 157, 126, 380, -1, 19, - -1, 19, 113, 19, -1, -1, 159, 380, -1, 380, - -1, 149, -1, 278, -1, 136, -1, 161, -1, 1, - -1, 162, 3, 167, 380, -1, 162, 3, 167, 125, - 143, 126, 380, -1, 162, 4, 167, 380, -1, 162, - 4, 167, 125, 143, 126, 380, -1, -1, 12, -1, + 144, -1, 287, 158, -1, 251, 158, -1, 201, 158, + -1, 197, 158, -1, 212, 158, -1, 189, 158, -1, + 191, 158, -1, 249, 158, -1, 222, 158, -1, 221, + 158, -1, 232, 158, -1, 225, 158, -1, 224, 158, + -1, 365, 158, -1, 63, 158, -1, -1, 63, 150, + 215, 372, -1, 26, 158, -1, 44, 158, -1, 6, + 158, -1, -1, 6, 151, 215, 372, -1, -1, -1, + 30, 152, 259, 153, 372, -1, -1, -1, 61, 154, + 259, 155, 372, -1, 253, -1, 265, -1, 269, -1, + 23, 165, 372, -1, 24, 166, 372, -1, -1, 22, + 167, 156, 372, -1, 95, 157, 126, 372, -1, 19, + -1, 19, 113, 19, -1, -1, 159, 372, -1, 372, + -1, 149, -1, 272, -1, 136, -1, 161, -1, 1, + -1, 162, 3, 167, 372, -1, 162, 3, 167, 125, + 143, 126, 372, -1, 162, 4, 167, 372, -1, 162, + 4, 167, 125, 143, 126, 372, -1, -1, 12, -1, 25, -1, 26, -1, 160, -1, 163, 160, -1, -1, 163, -1, 167, -1, 165, 124, 167, -1, 167, -1, 166, 124, 167, -1, 5, -1, 48, -1, 47, -1, @@ -874,153 +873,151 @@ static const yytype_int16 yyrhs[] = 61, -1, 30, -1, 53, -1, 95, -1, 99, -1, 107, -1, 8, -1, 10, -1, 104, -1, 10, 36, -1, 8, 36, -1, 7, -1, 171, 36, -1, 19, - -1, 173, 36, -1, 248, 36, -1, 20, -1, 21, + -1, 173, 36, -1, 244, 36, -1, 20, -1, 21, -1, 176, 36, -1, 70, -1, 178, 36, -1, 127, - 242, 128, -1, 180, 36, -1, 180, 240, -1, 182, + 238, 128, -1, 180, 36, -1, 180, 236, -1, 182, 36, -1, 127, 106, 128, -1, 127, 186, 128, -1, - 184, 36, -1, 219, 106, 221, -1, 186, 124, 219, - 106, 221, -1, 167, -1, 167, 36, -1, 72, -1, - 73, -1, 189, 36, -1, 120, 253, -1, 191, 36, + 184, 36, -1, 215, 106, 217, -1, 186, 124, 215, + 106, 217, -1, 167, -1, 167, 36, -1, 72, -1, + 73, -1, 189, 36, -1, 120, 249, -1, 191, 36, -1, 51, 36, -1, 51, 36, 193, -1, 193, 188, - -1, 193, 170, -1, 193, 254, -1, 193, 190, -1, + -1, 193, 170, -1, 193, 250, -1, 193, 190, -1, 193, 192, -1, 193, 172, -1, 193, 174, -1, 193, 177, -1, 193, 175, -1, 193, 179, -1, 193, 181, - -1, 193, 183, -1, 193, 185, -1, 193, 256, -1, + -1, 193, 183, -1, 193, 185, -1, 193, 252, -1, 167, -1, 189, -1, 191, -1, 170, 195, -1, 190, - 195, -1, 192, 195, -1, 254, 195, -1, 172, 195, + 195, -1, 192, 195, -1, 250, 195, -1, 172, 195, -1, 174, 195, -1, 177, 195, -1, 175, 195, -1, 185, 195, -1, 179, 195, -1, 181, 195, -1, 183, - 195, -1, 199, 195, -1, 256, 195, -1, 206, 195, - -1, 214, 195, -1, 217, 195, -1, 188, 195, -1, - 193, 195, -1, 194, 195, -1, 170, 253, -1, 188, - 253, -1, 190, 253, -1, 192, 253, -1, 254, 253, - -1, 193, 253, -1, 168, 240, -1, 171, 240, -1, - 169, 240, -1, 173, 240, -1, 248, 240, -1, 176, - 240, -1, 184, 240, -1, 178, 240, -1, 187, 240, - -1, 196, 240, -1, 197, 240, -1, 189, 240, -1, - 191, 240, -1, 211, 240, -1, 215, 240, -1, 202, - 240, -1, 255, 240, -1, 253, 240, -1, 198, 36, - -1, -1, 167, 125, 201, 207, 126, -1, 200, -1, - -1, 189, 125, 203, 207, 126, -1, -1, 191, 125, - 204, 207, 126, -1, 121, 200, -1, 202, 36, -1, - 210, -1, 207, 124, 210, -1, 221, -1, 209, -1, - 121, 167, -1, 121, 189, -1, 121, 196, -1, 121, - 211, -1, 121, 198, -1, 105, -1, 208, -1, 223, - 129, 212, -1, 213, 129, 212, -1, 129, 212, -1, - 167, -1, 189, -1, 191, -1, 125, 121, 167, 126, - -1, 211, 36, -1, -1, 211, 125, 216, 207, 126, - -1, 215, 36, -1, 168, -1, 171, -1, 169, -1, - 173, -1, 248, -1, 176, -1, 178, -1, 178, 146, + 195, -1, 199, 195, -1, 252, 195, -1, 203, 195, + -1, 211, 195, -1, 213, 195, -1, 188, 195, -1, + 193, 195, -1, 194, 195, -1, 170, 249, -1, 188, + 249, -1, 190, 249, -1, 192, 249, -1, 250, 249, + -1, 193, 249, -1, 168, 236, -1, 171, 236, -1, + 169, 236, -1, 173, 236, -1, 244, 236, -1, 176, + 236, -1, 184, 236, -1, 178, 236, -1, 187, 236, + -1, 196, 236, -1, 197, 236, -1, 189, 236, -1, + 191, 236, -1, 208, 236, -1, 212, 236, -1, 201, + 236, -1, 251, 236, -1, 249, 236, -1, 198, 36, + -1, 167, 125, 204, 126, -1, 200, -1, 189, 125, + 204, 126, -1, 191, 125, 204, 126, -1, 121, 200, + -1, 201, 36, -1, 207, -1, 204, 124, 207, -1, + 217, -1, 206, -1, 121, 167, -1, 121, 189, -1, + 121, 196, -1, 121, 208, -1, 121, 198, -1, 105, + -1, 205, -1, 219, 129, 209, -1, 210, 129, 209, + -1, 129, 209, -1, 167, -1, 189, -1, 191, -1, + 125, 121, 167, 126, -1, 208, 36, -1, 208, 125, + 204, 126, -1, 212, 36, -1, 168, -1, 171, -1, + 169, -1, 173, -1, 244, -1, 176, -1, 178, -1, + 178, 146, -1, 180, -1, 182, -1, 184, -1, 196, + -1, 197, -1, 189, -1, 191, -1, 198, -1, 201, + -1, 201, 146, -1, 251, -1, 208, -1, 208, 146, + -1, 212, -1, 212, 146, -1, 224, -1, 232, -1, + 221, -1, 222, -1, 223, -1, 233, -1, 234, -1, + 235, -1, 214, -1, 187, -1, 249, -1, 187, 146, + -1, 249, 146, -1, 202, -1, 105, -1, 215, -1, + -1, 215, -1, 167, -1, 196, -1, 189, -1, 191, + -1, 208, -1, 198, -1, 249, -1, 168, -1, 171, + -1, 169, -1, 173, -1, 244, -1, 176, -1, 178, -1, 180, -1, 182, -1, 184, -1, 196, -1, 197, - -1, 189, -1, 191, -1, 198, -1, 202, -1, 202, - 146, -1, 255, -1, 211, -1, 211, 146, -1, 215, - -1, 215, 146, -1, 228, -1, 236, -1, 225, -1, - 226, -1, 227, -1, 237, -1, 238, -1, 239, -1, - 218, -1, 187, -1, 253, -1, 187, 146, -1, 253, - 146, -1, 205, -1, 105, -1, 219, -1, -1, 219, - -1, 167, -1, 196, -1, 189, -1, 191, -1, 211, - -1, 198, -1, 253, -1, 168, -1, 171, -1, 169, - -1, 173, -1, 248, -1, 176, -1, 178, -1, 180, - -1, 182, -1, 184, -1, 196, -1, 197, -1, 189, - -1, 191, -1, 187, -1, 198, -1, 253, -1, 202, - -1, 255, -1, 211, -1, 215, -1, 34, -1, 35, - -1, 223, 224, -1, 34, 219, -1, 35, 219, -1, - 29, 219, -1, 114, 219, -1, 113, 219, -1, 168, - 9, 219, -1, 171, 9, 219, -1, 169, 9, 219, - -1, 173, 9, 219, -1, 248, 9, 219, -1, 176, - 9, 219, -1, 178, 9, 219, -1, 180, 9, 219, - -1, 182, 9, 219, -1, 184, 9, 219, -1, 196, - 9, 219, -1, 197, 9, 219, -1, 189, 9, 219, - -1, 191, 9, 219, -1, 187, 9, 219, -1, 198, - 9, 219, -1, 253, 9, 219, -1, 255, 9, 219, - -1, 202, 9, 219, -1, 211, 9, 219, -1, 215, - 9, 219, -1, 223, 109, 219, -1, 223, 54, 219, - -1, 223, 55, 219, -1, 223, 56, 219, -1, 223, - 57, 219, -1, 223, 60, 219, -1, 223, 59, 219, - -1, 230, -1, 231, -1, 232, -1, 233, -1, 234, - -1, 235, -1, 219, 113, 219, -1, 219, 114, 219, - -1, 219, 115, 219, -1, 219, 116, 219, -1, 219, - 117, 219, -1, 219, 58, 219, -1, 219, 27, 219, - -1, 219, 28, 219, -1, 219, 31, 219, -1, 219, - 110, 219, -1, 219, 111, 219, -1, 219, 49, 219, - -1, 219, 50, 219, -1, 219, 32, 219, -1, 219, - 33, 219, -1, 219, 112, 219, -1, 219, 109, 219, - -1, 241, 130, -1, 131, 220, -1, 241, 124, 220, - -1, 241, 130, 131, 220, -1, 210, -1, 242, 124, - 210, -1, -1, 96, 244, 245, 132, -1, -1, 105, - -1, 246, -1, 246, 124, 105, -1, 167, 144, -1, - 246, 124, 167, 144, -1, 219, -1, 247, 124, 219, - -1, -1, -1, 243, 249, 247, 250, 128, -1, -1, - 243, 380, 251, 164, 128, -1, 219, -1, 252, 124, - 219, -1, 125, 252, 126, -1, 253, 36, -1, 13, - 125, 219, 124, 208, 124, 208, 126, -1, 255, 36, - -1, -1, 11, 258, 262, 380, -1, -1, 12, 259, - 262, 380, -1, -1, 107, 12, 260, 262, 380, -1, - -1, 53, 261, 277, 380, -1, 265, -1, 262, 124, - 265, -1, 264, -1, 263, 124, 264, -1, 265, -1, - 189, 144, -1, 189, 144, 9, 219, -1, 189, 269, - 145, -1, -1, 167, 144, 266, -1, -1, -1, 167, - 144, 267, 9, 268, 219, -1, 167, 269, 145, -1, - 270, 130, -1, 131, 219, -1, 270, 124, 219, -1, - 270, 130, 131, 219, -1, -1, 51, 272, 273, 274, - 380, -1, 167, 144, -1, 273, 124, 167, 144, -1, - -1, 52, 167, -1, -1, 42, 276, 277, 380, -1, - 167, 144, -1, 277, 124, 167, 144, -1, -1, 83, - 167, 125, 279, 288, 126, 144, 380, -1, -1, 83, - 167, 280, 283, 380, -1, 85, 167, 380, -1, 85, - 167, 167, 380, -1, 86, 284, 380, -1, -1, 86, - 127, 144, 281, 282, 128, 380, -1, 286, -1, 282, - 124, 286, -1, 284, -1, 283, 284, -1, 286, -1, - 283, 286, -1, -1, 167, 125, 285, 288, 126, 144, - -1, -1, 167, 287, 144, -1, -1, 291, -1, 292, - -1, 291, 124, 292, -1, 290, -1, 289, 124, 290, - -1, 221, -1, 167, 144, -1, 121, 167, 144, -1, - 121, 167, 125, 289, 126, -1, 291, 124, 167, 144, - -1, 291, 124, 121, 167, 144, -1, 291, 124, 121, - 167, 125, 289, 126, -1, 84, 167, 144, -1, 84, - 121, 167, 144, -1, 84, 121, 167, 125, 289, 126, - -1, 292, 124, 84, 167, 144, -1, 292, 124, 84, - 121, 167, 144, -1, 292, 124, 84, 121, 167, 125, - 289, 126, -1, 294, -1, 307, -1, 322, -1, 328, - -1, 358, -1, 340, -1, 345, -1, 377, -1, 295, - 305, -1, 295, 298, 305, -1, 295, 300, 305, -1, - 295, 300, 298, 305, -1, -1, -1, 14, 252, 296, - 380, 297, 164, -1, -1, 15, 380, 299, 164, -1, - -1, -1, 16, 301, 252, 380, 302, 164, -1, -1, - -1, 300, 16, 303, 252, 380, 304, 164, -1, 306, - -1, 18, -1, 17, -1, 312, 313, 308, -1, 312, - 318, 308, -1, 312, 308, -1, 312, 313, 318, 308, - -1, 309, -1, 40, -1, 17, -1, -1, 37, 311, - 380, -1, 310, -1, 310, 163, -1, -1, -1, 38, - 314, 252, 380, 315, 164, -1, -1, -1, 313, 38, - 316, 252, 380, 317, 164, -1, -1, -1, 39, 319, - 380, 320, 164, -1, -1, 318, 39, 321, 380, 164, - -1, -1, -1, 325, 252, 380, 323, 164, 324, 326, - -1, 43, -1, 327, -1, 41, -1, 17, -1, -1, - -1, -1, 45, 222, 332, 219, 329, 47, 252, 333, - 330, 380, 331, 334, -1, 109, -1, 9, -1, -1, - 48, 252, -1, 164, 335, -1, 46, -1, 46, 167, - -1, 17, -1, 17, 167, -1, 167, -1, 196, -1, - 336, -1, 337, 124, 336, -1, 121, 167, -1, 219, - -1, 338, -1, 339, 124, 338, -1, -1, -1, -1, - 98, 337, 52, 339, 341, 344, 342, 380, 343, 334, - -1, -1, 99, -1, -1, 351, 346, 352, 347, -1, - 351, 347, -1, 348, -1, 101, -1, 17, -1, -1, - 100, 350, 219, 380, -1, 349, -1, 349, 163, -1, - -1, 38, 219, 353, 380, 164, -1, -1, 352, 38, - 219, 354, 380, 164, -1, 355, -1, 352, 355, -1, - -1, -1, 39, 356, 380, 357, 164, -1, -1, -1, - -1, -1, 62, 359, 364, 380, 164, 360, 367, 361, - 365, 362, 363, -1, 67, -1, 17, -1, -1, 69, - 219, -1, -1, 366, 380, 164, -1, 66, -1, -1, - 368, 380, 164, -1, 369, 380, 164, -1, 64, -1, - 65, 167, -1, 189, -1, 191, -1, -1, 68, 370, - 372, 374, -1, -1, 97, 373, 374, -1, -1, 69, - 375, -1, 124, -1, 124, 376, -1, 376, -1, 375, - 124, -1, 375, 124, 376, -1, 167, -1, 209, -1, - 205, -1, 218, -1, 253, -1, -1, 102, 219, 380, - 378, 164, 379, -1, 103, -1, 17, -1, 122, -1, - 123, -1 + -1, 189, -1, 191, -1, 187, -1, 198, -1, 249, + -1, 201, -1, 251, -1, 208, -1, 212, -1, 34, + -1, 35, -1, 219, 220, -1, 34, 215, -1, 35, + 215, -1, 29, 215, -1, 114, 215, -1, 113, 215, + -1, 168, 9, 215, -1, 171, 9, 215, -1, 169, + 9, 215, -1, 173, 9, 215, -1, 244, 9, 215, + -1, 176, 9, 215, -1, 178, 9, 215, -1, 180, + 9, 215, -1, 182, 9, 215, -1, 184, 9, 215, + -1, 196, 9, 215, -1, 197, 9, 215, -1, 189, + 9, 215, -1, 191, 9, 215, -1, 187, 9, 215, + -1, 198, 9, 215, -1, 249, 9, 215, -1, 251, + 9, 215, -1, 201, 9, 215, -1, 208, 9, 215, + -1, 212, 9, 215, -1, 219, 109, 215, -1, 219, + 54, 215, -1, 219, 55, 215, -1, 219, 56, 215, + -1, 219, 57, 215, -1, 219, 60, 215, -1, 219, + 59, 215, -1, 226, -1, 227, -1, 228, -1, 229, + -1, 230, -1, 231, -1, 215, 113, 215, -1, 215, + 114, 215, -1, 215, 115, 215, -1, 215, 116, 215, + -1, 215, 117, 215, -1, 215, 58, 215, -1, 215, + 27, 215, -1, 215, 28, 215, -1, 215, 31, 215, + -1, 215, 110, 215, -1, 215, 111, 215, -1, 215, + 49, 215, -1, 215, 50, 215, -1, 215, 32, 215, + -1, 215, 33, 215, -1, 215, 112, 215, -1, 215, + 109, 215, -1, 237, 130, -1, 131, 216, -1, 237, + 124, 216, -1, 237, 130, 131, 216, -1, 207, -1, + 238, 124, 207, -1, -1, 96, 240, 241, 132, -1, + -1, 105, -1, 242, -1, 242, 124, 105, -1, 167, + 144, -1, 242, 124, 167, 144, -1, 215, -1, 243, + 124, 215, -1, -1, -1, 239, 245, 243, 246, 128, + -1, -1, 239, 372, 247, 164, 128, -1, 215, -1, + 248, 124, 215, -1, 125, 248, 126, -1, 249, 36, + -1, 13, 125, 215, 124, 205, 124, 205, 126, -1, + 251, 36, -1, -1, 11, 254, 258, 372, -1, -1, + 12, 255, 258, 372, -1, -1, 107, 12, 256, 258, + 372, -1, -1, 53, 257, 271, 372, -1, 261, -1, + 258, 124, 261, -1, 260, -1, 259, 124, 260, -1, + 261, -1, 189, 144, -1, 189, 144, 9, 215, -1, + 189, 263, 145, -1, 167, 144, -1, -1, 167, 144, + 262, 9, 215, -1, 167, 263, 145, -1, 264, 130, + -1, 131, 215, -1, 264, 124, 215, -1, 264, 130, + 131, 215, -1, -1, 51, 266, 267, 268, 372, -1, + 167, 144, -1, 267, 124, 167, 144, -1, -1, 52, + 167, -1, -1, 42, 270, 271, 372, -1, 167, 144, + -1, 271, 124, 167, 144, -1, -1, 83, 167, 125, + 273, 282, 126, 144, 372, -1, -1, 83, 167, 274, + 277, 372, -1, 85, 167, 372, -1, 85, 167, 167, + 372, -1, 86, 278, 372, -1, -1, 86, 127, 144, + 275, 276, 128, 372, -1, 280, -1, 276, 124, 280, + -1, 278, -1, 277, 278, -1, 280, -1, 277, 280, + -1, -1, 167, 125, 279, 282, 126, 144, -1, -1, + 167, 281, 144, -1, -1, 285, -1, 286, -1, 285, + 124, 286, -1, 284, -1, 283, 124, 284, -1, 217, + -1, 167, 144, -1, 121, 167, 144, -1, 121, 167, + 125, 283, 126, -1, 285, 124, 167, 144, -1, 285, + 124, 121, 167, 144, -1, 285, 124, 121, 167, 125, + 283, 126, -1, 84, 167, 144, -1, 84, 121, 167, + 144, -1, 84, 121, 167, 125, 283, 126, -1, 286, + 124, 84, 167, 144, -1, 286, 124, 84, 121, 167, + 144, -1, 286, 124, 84, 121, 167, 125, 283, 126, + -1, 288, -1, 301, -1, 316, -1, 322, -1, 352, + -1, 334, -1, 339, -1, 369, -1, 289, 299, -1, + 289, 292, 299, -1, 289, 294, 299, -1, 289, 294, + 292, 299, -1, -1, -1, 14, 248, 290, 372, 291, + 164, -1, -1, 15, 372, 293, 164, -1, -1, -1, + 16, 295, 248, 372, 296, 164, -1, -1, -1, 294, + 16, 297, 248, 372, 298, 164, -1, 300, -1, 18, + -1, 17, -1, 306, 307, 302, -1, 306, 312, 302, + -1, 306, 302, -1, 306, 307, 312, 302, -1, 303, + -1, 40, -1, 17, -1, -1, 37, 305, 372, -1, + 304, -1, 304, 163, -1, -1, -1, 38, 308, 248, + 372, 309, 164, -1, -1, -1, 307, 38, 310, 248, + 372, 311, 164, -1, -1, -1, 39, 313, 372, 314, + 164, -1, -1, 312, 39, 315, 372, 164, -1, -1, + -1, 319, 248, 372, 317, 164, 318, 320, -1, 43, + -1, 321, -1, 41, -1, 17, -1, -1, -1, -1, + 45, 218, 326, 215, 323, 47, 248, 327, 324, 372, + 325, 328, -1, 109, -1, 9, -1, -1, 48, 248, + -1, 164, 329, -1, 46, -1, 46, 167, -1, 17, + -1, 17, 167, -1, 167, -1, 196, -1, 330, -1, + 331, 124, 330, -1, 121, 167, -1, 215, -1, 332, + -1, 333, 124, 332, -1, -1, -1, -1, 98, 331, + 52, 333, 335, 338, 336, 372, 337, 328, -1, -1, + 99, -1, -1, 345, 340, 346, 341, -1, 345, 341, + -1, 342, -1, 101, -1, 17, -1, -1, 100, 344, + 215, 372, -1, 343, -1, 343, 163, -1, -1, 38, + 215, 347, 372, 164, -1, -1, 346, 38, 215, 348, + 372, 164, -1, 349, -1, 346, 349, -1, -1, -1, + 39, 350, 372, 351, 164, -1, -1, -1, -1, -1, + 62, 353, 358, 372, 164, 354, 361, 355, 359, 356, + 357, -1, 67, -1, 17, -1, -1, 69, 215, -1, + -1, 360, 372, 164, -1, 66, -1, -1, 362, 372, + 164, -1, 363, 372, 164, -1, 64, -1, 65, 167, + -1, 189, -1, 191, -1, 68, 364, 366, -1, 97, + 366, -1, -1, 69, 367, -1, 124, -1, 124, 368, + -1, 368, -1, 367, 124, -1, 367, 124, 368, -1, + 167, -1, 206, -1, 202, -1, 214, -1, 249, -1, + -1, 102, 215, 372, 370, 164, 371, -1, 103, -1, + 17, -1, 122, -1, 123, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ @@ -1049,47 +1046,46 @@ static const yytype_uint16 yyrline[] = 713, 714, 715, 716, 717, 718, 719, 720, 721, 730, 731, 732, 733, 734, 735, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, - 755, 756, 757, 760, 763, 763, 766, 767, 767, 768, - 768, 772, 775, 778, 779, 782, 783, 786, 787, 788, - 789, 790, 793, 794, 799, 800, 801, 807, 808, 809, - 812, 815, 820, 820, 823, 832, 833, 834, 835, 836, - 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, - 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, - 857, 858, 859, 860, 861, 862, 865, 866, 867, 868, - 869, 870, 873, 874, 877, 878, 881, 882, 883, 884, - 885, 886, 887, 894, 895, 896, 897, 898, 899, 900, - 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, - 911, 912, 913, 914, 920, 921, 924, 927, 928, 931, - 932, 933, 936, 937, 938, 939, 940, 941, 942, 943, - 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, - 954, 955, 956, 959, 962, 965, 968, 971, 974, 977, - 980, 981, 982, 983, 984, 985, 988, 989, 990, 991, - 992, 993, 996, 997, 1000, 1001, 1002, 1003, 1004, 1005, - 1006, 1007, 1008, 1011, 1017, 1018, 1019, 1022, 1023, 1026, - 1026, 1032, 1033, 1034, 1035, 1038, 1039, 1042, 1043, 1047, - 1050, 1046, 1053, 1052, 1088, 1089, 1091, 1094, 1103, 1107, - 1110, 1110, 1112, 1112, 1114, 1114, 1116, 1116, 1126, 1127, - 1130, 1131, 1139, 1140, 1142, 1146, 1153, 1153, 1170, 1173, - 1170, 1199, 1205, 1208, 1209, 1210, 1213, 1213, 1220, 1221, - 1224, 1225, 1228, 1228, 1231, 1232, 1235, 1235, 1254, 1254, - 1255, 1256, 1257, 1258, 1258, 1261, 1262, 1265, 1266, 1267, - 1268, 1271, 1271, 1290, 1290, 1345, 1346, 1347, 1348, 1351, - 1352, 1355, 1358, 1359, 1360, 1361, 1362, 1363, 1366, 1367, - 1368, 1369, 1370, 1371, 1374, 1375, 1376, 1377, 1378, 1379, - 1380, 1381, 1384, 1385, 1386, 1387, 1391, 1393, 1390, 1398, - 1398, 1402, 1404, 1402, 1412, 1414, 1412, 1423, 1431, 1432, - 1435, 1439, 1443, 1446, 1452, 1459, 1460, 1463, 1463, 1466, - 1467, 1475, 1476, 1475, 1487, 1488, 1487, 1500, 1500, 1500, - 1502, 1502, 1507, 1512, 1506, 1526, 1535, 1539, 1540, 1544, - 1557, 1562, 1543, 1610, 1611, 1614, 1615, 1618, 1626, 1627, - 1628, 1629, 1632, 1633, 1636, 1637, 1640, 1641, 1644, 1645, - 1650, 1656, 1667, 1649, 1687, 1688, 1692, 1691, 1704, 1711, - 1719, 1720, 1724, 1723, 1733, 1734, 1743, 1743, 1746, 1746, - 1749, 1751, 1754, 1754, 1754, 1759, 1767, 1778, 1788, 1758, - 1819, 1820, 1823, 1824, 1832, 1833, 1836, 1845, 1846, 1847, - 1850, 1861, 1879, 1880, 1884, 1883, 1891, 1890, 1901, 1902, - 1905, 1906, 1907, 1908, 1909, 1912, 1913, 1914, 1915, 1916, - 1920, 1919, 1942, 1943, 1946, 1947 + 755, 756, 757, 760, 764, 767, 768, 769, 773, 776, + 779, 780, 783, 784, 787, 788, 789, 790, 791, 794, + 795, 800, 801, 802, 808, 809, 810, 813, 816, 821, + 824, 833, 834, 835, 836, 837, 838, 839, 840, 841, + 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, + 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, + 862, 863, 866, 867, 868, 869, 870, 871, 874, 875, + 878, 879, 882, 883, 884, 885, 886, 887, 888, 895, + 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, + 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, + 921, 922, 925, 928, 929, 932, 933, 934, 937, 938, + 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, + 949, 950, 951, 952, 953, 954, 955, 956, 957, 960, + 963, 966, 969, 972, 975, 978, 981, 982, 983, 984, + 985, 986, 989, 990, 991, 992, 993, 994, 997, 998, + 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1012, + 1018, 1019, 1020, 1023, 1024, 1027, 1027, 1033, 1034, 1035, + 1036, 1039, 1040, 1043, 1044, 1048, 1051, 1047, 1054, 1053, + 1089, 1090, 1092, 1095, 1104, 1108, 1111, 1111, 1113, 1113, + 1115, 1115, 1117, 1117, 1127, 1128, 1131, 1132, 1140, 1141, + 1143, 1147, 1154, 1172, 1172, 1201, 1207, 1210, 1211, 1212, + 1215, 1215, 1222, 1223, 1226, 1227, 1230, 1230, 1233, 1234, + 1237, 1237, 1256, 1256, 1257, 1258, 1259, 1260, 1260, 1263, + 1264, 1267, 1268, 1269, 1270, 1273, 1273, 1292, 1292, 1347, + 1348, 1349, 1350, 1353, 1354, 1357, 1360, 1361, 1362, 1363, + 1364, 1365, 1368, 1369, 1370, 1371, 1372, 1373, 1376, 1377, + 1378, 1379, 1380, 1381, 1382, 1383, 1386, 1387, 1388, 1389, + 1393, 1395, 1392, 1400, 1400, 1404, 1406, 1404, 1414, 1416, + 1414, 1425, 1433, 1434, 1437, 1441, 1445, 1448, 1454, 1461, + 1462, 1465, 1465, 1468, 1469, 1477, 1478, 1477, 1489, 1490, + 1489, 1502, 1502, 1502, 1504, 1504, 1509, 1514, 1508, 1528, + 1537, 1541, 1542, 1546, 1559, 1564, 1545, 1612, 1613, 1616, + 1617, 1620, 1628, 1629, 1630, 1631, 1634, 1635, 1638, 1639, + 1642, 1643, 1646, 1647, 1652, 1658, 1669, 1651, 1689, 1690, + 1694, 1693, 1706, 1713, 1721, 1722, 1726, 1725, 1735, 1736, + 1745, 1745, 1748, 1748, 1751, 1753, 1756, 1756, 1756, 1761, + 1769, 1780, 1790, 1760, 1821, 1822, 1825, 1826, 1834, 1835, + 1838, 1847, 1848, 1849, 1852, 1863, 1881, 1882, 1885, 1889, + 1897, 1898, 1901, 1902, 1903, 1904, 1905, 1908, 1909, 1910, + 1911, 1912, 1916, 1915, 1938, 1939, 1942, 1943 }; #endif @@ -1129,37 +1125,36 @@ static const char *const yytname[] = "ArrayAt", "ArrayAtAlias", "Hash", "HashAlias", "HashList", "Variable", "VarAlias", "MacroVar", "MacroVarAlias", "MacroExpr", "MacroExprAlias", "FieldAlias", "FieldVarAlias", "AliasId", "AliasVar", "AliasExpr", - "VariableAt", "VariableAtAlias", "FunIdentCall", "@13", "FunCall", "@14", - "@15", "FunRef", "FunCallAlias", "ArgList", "Argument", "RefArgument", - "ExtArgument", "ObjectData", "SendId", "ObjectRef", "ObjectDataAlias", - "ObjectMethod", "@16", "ObjectMethodAlias", "SimpleExpression", - "Expression", "ExtExpression", "EmptyExpression", "LValue", - "LeftExpression", "PostOp", "ExprPostOp", "ExprPreOp", "ExprUnary", - "ExprAssign", "ExprEqual", "ExprPlusEq", "ExprMinusEq", "ExprMultEq", - "ExprDivEq", "ExprModEq", "ExprExpEq", "ExprOperEq", "ExprMath", - "ExprBool", "ExprRelation", "ArrayIndex", "IndexList", "ElemList", - "BlockHead", "@17", "BlockVars", "BlockVarList", "BlockExpList", - "CodeBlock", "@18", "@19", "@20", "ExpList", "PareExpList", - "PareExpListAlias", "IfInline", "IfInlineAlias", "VarDefs", "@21", "@22", - "@23", "@24", "VarList", "ExtVarList", "ExtVarDef", "VarDef", "@25", - "@26", "@27", "DimList", "DimIndex", "FieldsDef", "@28", "FieldList", - "InAlias", "MemvarDef", "@29", "MemvarList", "Declaration", "@30", "@31", - "@32", "DecDataList", "ClassInfo", "DecMethod", "@33", "DecData", "@34", - "DecList", "DummyArgList", "DummyArgument", "FormalList", "OptList", - "ExecFlow", "IfEndif", "IfBegin", "@35", "@36", "IfElse", "@37", - "IfElseIf", "@38", "@39", "@40", "@41", "EndIf", "EndIfID", "DoCase", - "EndCase", "EndCaseID", "DoCaseStart", "@42", "DoCaseBegin", "Cases", - "@43", "@44", "@45", "@46", "Otherwise", "@47", "@48", "@49", "DoWhile", - "@50", "@51", "WhileBegin", "EndWhile", "EndWhileID", "ForNext", "@52", - "@53", "@54", "ForAssign", "StepExpr", "ForStatements", "EndForID", - "ForVar", "ForList", "ForExpr", "ForArgs", "ForEach", "@55", "@56", - "@57", "Descend", "DoSwitch", "@58", "EndSwitch", "EndSwitchID", - "SwitchStart", "@59", "SwitchBegin", "SwitchCases", "@60", "@61", - "SwitchDefault", "@62", "@63", "BeginSeq", "@64", "@65", "@66", "@67", - "EndSeqID", "BlockSeq", "AlwaysSeq", "Always", "RecoverSeq", - "RecoverEmpty", "RecoverUsing", "DoName", "DoProc", "@68", "@69", - "DoArgs", "DoArgList", "DoArgument", "WithObject", "@70", "EndWithID", - "Crlf", 0 + "VariableAt", "VariableAtAlias", "FunIdentCall", "FunCall", "FunRef", + "FunCallAlias", "ArgList", "Argument", "RefArgument", "ExtArgument", + "ObjectData", "SendId", "ObjectRef", "ObjectDataAlias", "ObjectMethod", + "ObjectMethodAlias", "SimpleExpression", "Expression", "ExtExpression", + "EmptyExpression", "LValue", "LeftExpression", "PostOp", "ExprPostOp", + "ExprPreOp", "ExprUnary", "ExprAssign", "ExprEqual", "ExprPlusEq", + "ExprMinusEq", "ExprMultEq", "ExprDivEq", "ExprModEq", "ExprExpEq", + "ExprOperEq", "ExprMath", "ExprBool", "ExprRelation", "ArrayIndex", + "IndexList", "ElemList", "BlockHead", "@13", "BlockVars", "BlockVarList", + "BlockExpList", "CodeBlock", "@14", "@15", "@16", "ExpList", + "PareExpList", "PareExpListAlias", "IfInline", "IfInlineAlias", + "VarDefs", "@17", "@18", "@19", "@20", "VarList", "ExtVarList", + "ExtVarDef", "VarDef", "@21", "DimList", "DimIndex", "FieldsDef", "@22", + "FieldList", "InAlias", "MemvarDef", "@23", "MemvarList", "Declaration", + "@24", "@25", "@26", "DecDataList", "ClassInfo", "DecMethod", "@27", + "DecData", "@28", "DecList", "DummyArgList", "DummyArgument", + "FormalList", "OptList", "ExecFlow", "IfEndif", "IfBegin", "@29", "@30", + "IfElse", "@31", "IfElseIf", "@32", "@33", "@34", "@35", "EndIf", + "EndIfID", "DoCase", "EndCase", "EndCaseID", "DoCaseStart", "@36", + "DoCaseBegin", "Cases", "@37", "@38", "@39", "@40", "Otherwise", "@41", + "@42", "@43", "DoWhile", "@44", "@45", "WhileBegin", "EndWhile", + "EndWhileID", "ForNext", "@46", "@47", "@48", "ForAssign", "StepExpr", + "ForStatements", "EndForID", "ForVar", "ForList", "ForExpr", "ForArgs", + "ForEach", "@49", "@50", "@51", "Descend", "DoSwitch", "@52", + "EndSwitch", "EndSwitchID", "SwitchStart", "@53", "SwitchBegin", + "SwitchCases", "@54", "@55", "SwitchDefault", "@56", "@57", "BeginSeq", + "@58", "@59", "@60", "@61", "EndSeqID", "BlockSeq", "AlwaysSeq", + "Always", "RecoverSeq", "RecoverEmpty", "RecoverUsing", "DoName", + "DoProc", "DoArgs", "DoArgList", "DoArgument", "WithObject", "@62", + "EndWithID", "Crlf", 0 }; #endif @@ -1211,47 +1206,46 @@ static const yytype_uint16 yyr1[] = 196, 196, 196, 196, 196, 196, 196, 196, 196, 197, 197, 197, 197, 197, 197, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, - 198, 198, 198, 199, 201, 200, 202, 203, 202, 204, - 202, 205, 206, 207, 207, 208, 208, 209, 209, 209, - 209, 209, 210, 210, 211, 211, 211, 212, 212, 212, - 213, 214, 216, 215, 217, 218, 218, 218, 218, 218, - 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, - 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, - 218, 218, 218, 218, 218, 218, 219, 219, 219, 219, - 219, 219, 220, 220, 221, 221, 222, 222, 222, 222, - 222, 222, 222, 223, 223, 223, 223, 223, 223, 223, - 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, - 223, 223, 223, 223, 224, 224, 225, 226, 226, 227, - 227, 227, 228, 228, 228, 228, 228, 228, 228, 228, - 228, 228, 228, 228, 228, 228, 228, 228, 228, 228, - 228, 228, 228, 229, 230, 231, 232, 233, 234, 235, - 236, 236, 236, 236, 236, 236, 237, 237, 237, 237, - 237, 237, 238, 238, 239, 239, 239, 239, 239, 239, - 239, 239, 239, 240, 241, 241, 241, 242, 242, 244, - 243, 245, 245, 245, 245, 246, 246, 247, 247, 249, - 250, 248, 251, 248, 252, 252, 253, 254, 255, 256, - 258, 257, 259, 257, 260, 257, 261, 257, 262, 262, - 263, 263, 264, 264, 264, 264, 266, 265, 267, 268, - 265, 265, 269, 270, 270, 270, 272, 271, 273, 273, - 274, 274, 276, 275, 277, 277, 279, 278, 280, 278, - 278, 278, 278, 281, 278, 282, 282, 283, 283, 283, - 283, 285, 284, 287, 286, 288, 288, 288, 288, 289, - 289, 290, 291, 291, 291, 291, 291, 291, 292, 292, - 292, 292, 292, 292, 293, 293, 293, 293, 293, 293, - 293, 293, 294, 294, 294, 294, 296, 297, 295, 299, - 298, 301, 302, 300, 303, 304, 300, 305, 306, 306, - 307, 307, 307, 307, 308, 309, 309, 311, 310, 312, - 312, 314, 315, 313, 316, 317, 313, 319, 320, 318, - 321, 318, 323, 324, 322, 325, 326, 327, 327, 329, - 330, 331, 328, 332, 332, 333, 333, 334, 335, 335, - 335, 335, 336, 336, 337, 337, 338, 338, 339, 339, - 341, 342, 343, 340, 344, 344, 346, 345, 345, 347, - 348, 348, 350, 349, 351, 351, 353, 352, 354, 352, - 352, 352, 356, 357, 355, 359, 360, 361, 362, 358, - 363, 363, 364, 364, 365, 365, 366, 367, 367, 367, - 368, 369, 370, 370, 372, 371, 373, 371, 374, 374, - 375, 375, 375, 375, 375, 376, 376, 376, 376, 376, - 378, 377, 379, 379, 380, 380 + 198, 198, 198, 199, 200, 201, 201, 201, 202, 203, + 204, 204, 205, 205, 206, 206, 206, 206, 206, 207, + 207, 208, 208, 208, 209, 209, 209, 210, 211, 212, + 213, 214, 214, 214, 214, 214, 214, 214, 214, 214, + 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, + 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, + 214, 214, 215, 215, 215, 215, 215, 215, 216, 216, + 217, 217, 218, 218, 218, 218, 218, 218, 218, 219, + 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, + 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, + 220, 220, 221, 222, 222, 223, 223, 223, 224, 224, + 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, + 224, 224, 224, 224, 224, 224, 224, 224, 224, 225, + 226, 227, 228, 229, 230, 231, 232, 232, 232, 232, + 232, 232, 233, 233, 233, 233, 233, 233, 234, 234, + 235, 235, 235, 235, 235, 235, 235, 235, 235, 236, + 237, 237, 237, 238, 238, 240, 239, 241, 241, 241, + 241, 242, 242, 243, 243, 245, 246, 244, 247, 244, + 248, 248, 249, 250, 251, 252, 254, 253, 255, 253, + 256, 253, 257, 253, 258, 258, 259, 259, 260, 260, + 260, 260, 261, 262, 261, 261, 263, 264, 264, 264, + 266, 265, 267, 267, 268, 268, 270, 269, 271, 271, + 273, 272, 274, 272, 272, 272, 272, 275, 272, 276, + 276, 277, 277, 277, 277, 279, 278, 281, 280, 282, + 282, 282, 282, 283, 283, 284, 285, 285, 285, 285, + 285, 285, 286, 286, 286, 286, 286, 286, 287, 287, + 287, 287, 287, 287, 287, 287, 288, 288, 288, 288, + 290, 291, 289, 293, 292, 295, 296, 294, 297, 298, + 294, 299, 300, 300, 301, 301, 301, 301, 302, 303, + 303, 305, 304, 306, 306, 308, 309, 307, 310, 311, + 307, 313, 314, 312, 315, 312, 317, 318, 316, 319, + 320, 321, 321, 323, 324, 325, 322, 326, 326, 327, + 327, 328, 329, 329, 329, 329, 330, 330, 331, 331, + 332, 332, 333, 333, 335, 336, 337, 334, 338, 338, + 340, 339, 339, 341, 342, 342, 344, 343, 345, 345, + 347, 346, 348, 346, 346, 346, 350, 351, 349, 353, + 354, 355, 356, 352, 357, 357, 358, 358, 359, 359, + 360, 361, 361, 361, 362, 363, 364, 364, 365, 365, + 366, 366, 367, 367, 367, 367, 367, 368, 368, 368, + 368, 368, 370, 369, 371, 371, 372, 372 }; /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ @@ -1280,47 +1274,46 @@ static const yytype_uint8 yyr2[] = 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 0, 5, 1, 0, 5, 0, - 5, 2, 2, 1, 3, 1, 1, 2, 2, 2, - 2, 2, 1, 1, 3, 3, 2, 1, 1, 1, - 4, 2, 0, 5, 2, 1, 1, 1, 1, 1, - 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 2, 1, 1, 2, 1, 2, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, - 2, 1, 1, 1, 0, 1, 1, 1, 1, 1, + 2, 2, 2, 2, 4, 1, 4, 4, 2, 2, + 1, 3, 1, 1, 2, 2, 2, 2, 2, 1, + 1, 3, 3, 2, 1, 1, 1, 4, 2, 4, + 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, + 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, + 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, - 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, + 1, 1, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, - 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, - 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, - 3, 3, 3, 2, 2, 3, 4, 1, 3, 0, - 4, 0, 1, 1, 3, 2, 4, 1, 3, 0, - 0, 5, 0, 5, 1, 3, 3, 2, 8, 2, - 0, 4, 0, 4, 0, 5, 0, 4, 1, 3, - 1, 3, 1, 2, 4, 3, 0, 3, 0, 0, - 6, 3, 2, 2, 3, 4, 0, 5, 2, 4, - 0, 2, 0, 4, 2, 4, 0, 8, 0, 5, - 3, 4, 3, 0, 7, 1, 3, 1, 2, 1, - 2, 0, 6, 0, 3, 0, 1, 1, 3, 1, - 3, 1, 2, 3, 5, 4, 5, 7, 3, 4, - 6, 5, 6, 8, 1, 1, 1, 1, 1, 1, - 1, 1, 2, 3, 3, 4, 0, 0, 6, 0, - 4, 0, 0, 6, 0, 0, 7, 1, 1, 1, - 3, 3, 2, 4, 1, 1, 1, 0, 3, 1, - 2, 0, 0, 6, 0, 0, 7, 0, 0, 5, - 0, 5, 0, 0, 7, 1, 1, 1, 1, 0, - 0, 0, 12, 1, 1, 0, 2, 2, 1, 2, - 1, 2, 1, 1, 1, 3, 2, 1, 1, 3, - 0, 0, 0, 10, 0, 1, 0, 4, 2, 1, - 1, 1, 0, 4, 1, 2, 0, 5, 0, 6, - 1, 2, 0, 0, 5, 0, 0, 0, 0, 11, - 1, 1, 0, 2, 0, 3, 1, 0, 3, 3, - 1, 2, 1, 1, 0, 4, 0, 3, 0, 2, - 1, 2, 1, 2, 3, 1, 1, 1, 1, 1, - 0, 6, 1, 1, 1, 1 + 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, + 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, + 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, + 2, 3, 4, 1, 3, 0, 4, 0, 1, 1, + 3, 2, 4, 1, 3, 0, 0, 5, 0, 5, + 1, 3, 3, 2, 8, 2, 0, 4, 0, 4, + 0, 5, 0, 4, 1, 3, 1, 3, 1, 2, + 4, 3, 2, 0, 5, 3, 2, 2, 3, 4, + 0, 5, 2, 4, 0, 2, 0, 4, 2, 4, + 0, 8, 0, 5, 3, 4, 3, 0, 7, 1, + 3, 1, 2, 1, 2, 0, 6, 0, 3, 0, + 1, 1, 3, 1, 3, 1, 2, 3, 5, 4, + 5, 7, 3, 4, 6, 5, 6, 8, 1, 1, + 1, 1, 1, 1, 1, 1, 2, 3, 3, 4, + 0, 0, 6, 0, 4, 0, 0, 6, 0, 0, + 7, 1, 1, 1, 3, 3, 2, 4, 1, 1, + 1, 0, 3, 1, 2, 0, 0, 6, 0, 0, + 7, 0, 0, 5, 0, 5, 0, 0, 7, 1, + 1, 1, 1, 0, 0, 0, 12, 1, 1, 0, + 2, 2, 1, 2, 1, 2, 1, 1, 1, 3, + 2, 1, 1, 3, 0, 0, 0, 10, 0, 1, + 0, 4, 2, 1, 1, 1, 0, 4, 1, 2, + 0, 5, 0, 6, 1, 2, 0, 0, 5, 0, + 0, 0, 0, 11, 1, 1, 0, 2, 0, 3, + 1, 0, 3, 3, 1, 2, 1, 1, 3, 2, + 0, 2, 1, 2, 1, 2, 3, 1, 1, 1, + 1, 1, 0, 6, 1, 1, 1, 1 }; /* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state @@ -1328,794 +1321,776 @@ static const yytype_uint8 yyr2[] = means the default is an error. */ static const yytype_uint16 yydefact[] = { - 0, 0, 120, 78, 144, 139, 140, 420, 422, 0, + 0, 0, 120, 78, 144, 139, 140, 416, 418, 0, 0, 146, 149, 150, 129, 127, 128, 28, 124, 80, - 0, 0, 527, 452, 545, 123, 0, 122, 121, 446, - 125, 426, 83, 595, 73, 0, 152, 0, 165, 166, - 0, 126, 0, 0, 136, 399, 616, 0, 137, 582, - 0, 141, 138, 0, 634, 635, 0, 304, 0, 0, - 0, 8, 6, 0, 7, 163, 313, 315, 0, 314, - 0, 316, 0, 0, 318, 0, 319, 0, 320, 0, - 321, 0, 322, 0, 327, 0, 325, 0, 326, 0, - 0, 0, 323, 324, 328, 0, 236, 330, 0, 332, - 0, 0, 333, 0, 0, 96, 96, 96, 96, 370, - 371, 372, 373, 374, 375, 96, 409, 317, 329, 0, - 331, 0, 86, 87, 88, 5, 96, 494, 0, 495, - 0, 0, 496, 0, 497, 499, 500, 0, 576, 498, - 96, 501, 4, 9, 0, 77, 0, 143, 142, 0, + 0, 0, 521, 446, 539, 123, 0, 122, 121, 440, + 125, 422, 83, 589, 73, 0, 152, 0, 165, 166, + 0, 126, 0, 0, 136, 395, 610, 0, 137, 576, + 0, 141, 138, 0, 626, 627, 0, 300, 0, 0, + 0, 8, 6, 0, 7, 163, 309, 311, 0, 310, + 0, 312, 0, 0, 314, 0, 315, 0, 316, 0, + 317, 0, 318, 0, 323, 0, 321, 0, 322, 0, + 0, 0, 319, 320, 324, 0, 235, 326, 0, 328, + 0, 0, 329, 0, 0, 96, 96, 96, 96, 366, + 367, 368, 369, 370, 371, 96, 405, 313, 325, 0, + 327, 0, 86, 87, 88, 5, 96, 488, 0, 489, + 0, 0, 490, 0, 491, 493, 494, 0, 570, 492, + 96, 495, 4, 9, 0, 77, 0, 143, 142, 0, 0, 0, 130, 132, 129, 127, 128, 124, 0, 134, 131, 123, 0, 135, 133, 136, 138, 0, 0, 0, - 265, 267, 266, 268, 270, 271, 273, 274, 275, 297, - 278, 279, 276, 277, 280, 281, 301, 284, 286, 296, - 414, 0, 290, 291, 292, 288, 289, 293, 294, 295, - 269, 506, 298, 283, 91, 0, 116, 0, 118, 75, - 0, 337, 338, 0, 0, 76, 163, 313, 315, 314, - 316, 318, 319, 320, 321, 322, 327, 308, 309, 307, - 324, 311, 330, 310, 333, 0, 0, 317, 312, 331, - 170, 0, 0, 0, 602, 0, 72, 612, 613, 614, - 0, 458, 0, 34, 0, 0, 94, 0, 401, 618, - 163, 325, 326, 563, 328, 332, 329, 564, 0, 0, - 0, 424, 0, 168, 0, 0, 252, 0, 0, 0, - 253, 246, 397, 305, 245, 0, 257, 258, 259, 256, - 1, 0, 14, 12, 13, 11, 10, 0, 0, 164, - 234, 0, 0, 215, 0, 0, 217, 186, 187, 188, - 189, 209, 0, 145, 216, 193, 0, 147, 218, 194, - 196, 0, 151, 220, 195, 0, 153, 222, 198, 0, - 155, 156, 199, 0, 157, 200, 0, 160, 221, 197, - 0, 223, 206, 210, 0, 167, 237, 63, 226, 190, - 211, 0, 169, 239, 64, 227, 191, 212, 0, 0, - 186, 173, 0, 177, 0, 178, 180, 0, 179, 0, - 181, 0, 182, 0, 183, 0, 184, 172, 187, 175, - 188, 176, 207, 0, 214, 174, 0, 185, 208, 0, - 224, 0, 61, 225, 0, 233, 201, 0, 242, 60, - 230, 203, 0, 261, 262, 228, 0, 204, 0, 264, - 62, 229, 205, 334, 335, 0, 0, 0, 0, 0, - 0, 0, 0, 336, 67, 66, 70, 69, 68, 0, - 412, 0, 148, 219, 0, 417, 65, 232, 192, 213, - 0, 419, 59, 231, 202, 58, 0, 511, 519, 518, - 0, 0, 502, 517, 103, 422, 110, 124, 101, 99, - 112, 102, 0, 0, 100, 98, 526, 531, 537, 525, - 522, 524, 0, 0, 0, 0, 581, 580, 0, 578, - 579, 71, 0, 97, 34, 0, 428, 0, 0, 339, - 341, 340, 0, 241, 47, 42, 39, 0, 40, 41, - 38, 43, 45, 52, 53, 49, 0, 50, 51, 48, - 54, 272, 46, 299, 282, 285, 287, 0, 0, 0, + 261, 263, 262, 264, 266, 267, 269, 270, 271, 293, + 274, 275, 272, 273, 276, 277, 297, 280, 282, 292, + 410, 0, 286, 287, 288, 284, 285, 289, 290, 291, + 265, 500, 294, 279, 91, 0, 116, 0, 118, 75, + 0, 333, 334, 0, 0, 76, 163, 309, 311, 310, + 312, 314, 315, 316, 317, 318, 323, 304, 305, 303, + 320, 307, 326, 306, 329, 0, 0, 313, 308, 327, + 170, 0, 0, 0, 596, 0, 72, 606, 607, 610, + 0, 452, 0, 34, 0, 0, 94, 0, 397, 0, + 609, 163, 321, 322, 557, 324, 328, 325, 558, 0, + 0, 0, 420, 0, 168, 0, 0, 249, 0, 0, + 0, 250, 243, 393, 301, 242, 0, 254, 255, 256, + 253, 1, 0, 14, 12, 13, 11, 10, 0, 0, + 164, 300, 0, 0, 215, 0, 0, 217, 186, 187, + 188, 189, 209, 0, 145, 216, 193, 0, 147, 218, + 194, 196, 0, 151, 220, 195, 0, 153, 222, 198, + 0, 155, 156, 199, 0, 157, 200, 0, 160, 221, + 197, 0, 223, 206, 210, 0, 167, 300, 63, 226, + 190, 211, 0, 169, 300, 64, 227, 191, 212, 0, + 0, 186, 173, 0, 177, 0, 178, 180, 0, 179, + 0, 181, 0, 182, 0, 183, 0, 184, 172, 187, + 175, 188, 176, 207, 0, 214, 174, 0, 185, 208, + 0, 224, 0, 61, 225, 0, 233, 201, 0, 239, + 60, 230, 203, 0, 258, 300, 228, 0, 204, 0, + 260, 62, 229, 205, 330, 331, 0, 0, 0, 0, + 0, 0, 0, 0, 332, 67, 66, 70, 69, 68, + 0, 408, 0, 148, 219, 0, 413, 65, 232, 192, + 213, 0, 415, 59, 231, 202, 58, 0, 505, 513, + 512, 0, 0, 496, 511, 103, 418, 110, 124, 101, + 99, 112, 102, 0, 0, 100, 98, 520, 525, 531, + 519, 516, 518, 0, 0, 0, 0, 575, 574, 0, + 572, 573, 71, 0, 97, 34, 0, 424, 0, 0, + 335, 337, 336, 0, 238, 47, 42, 39, 0, 40, + 41, 38, 43, 45, 52, 53, 49, 0, 50, 51, + 48, 54, 268, 46, 295, 278, 281, 283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 300, 0, 0, 89, - 0, 90, 34, 81, 430, 432, 528, 34, 0, 554, - 553, 0, 171, 34, 450, 0, 84, 0, 0, 0, - 618, 0, 456, 0, 0, 460, 463, 35, 471, 462, - 0, 0, 402, 34, 0, 403, 0, 617, 0, 0, - 0, 630, 0, 0, 416, 158, 247, 248, 249, 251, - 241, 250, 0, 159, 304, 304, 154, 15, 18, 20, - 304, 342, 302, 303, 394, 0, 393, 344, 343, 345, - 347, 348, 349, 350, 351, 356, 354, 304, 355, 304, - 352, 353, 357, 360, 361, 304, 255, 362, 364, 365, - 366, 367, 369, 368, 363, 254, 407, 410, 0, 346, - 358, 359, 509, 0, 503, 514, 0, 504, 0, 0, - 113, 0, 0, 534, 520, 0, 540, 521, 542, 0, - 592, 0, 590, 79, 0, 436, 36, 0, 0, 421, - 423, 304, 44, 55, 382, 383, 384, 389, 390, 387, - 388, 381, 392, 385, 386, 391, 376, 377, 378, 379, - 380, 415, 507, 92, 117, 119, 433, 36, 0, 0, - 454, 0, 453, 549, 448, 0, 0, 0, 427, 0, - 603, 0, 74, 615, 0, 16, 475, 473, 0, 467, - 469, 461, 0, 475, 95, 93, 405, 400, 0, 620, - 163, 301, 626, 296, 0, 298, 619, 622, 0, 567, - 568, 570, 565, 583, 0, 0, 260, 0, 305, 161, - 398, 0, 0, 0, 0, 0, 243, 395, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 505, - 0, 0, 0, 538, 0, 523, 0, 0, 586, 0, - 0, 577, 591, 443, 437, 0, 441, 37, 0, 442, - 429, 0, 0, 0, 435, 431, 82, 34, 0, 451, - 34, 447, 85, 596, 0, 126, 0, 34, 0, 476, - 477, 34, 468, 470, 459, 473, 0, 465, 0, 404, - 34, 621, 623, 566, 0, 574, 0, 425, 304, 19, - 30, 21, 30, 304, 235, 396, 238, 240, 263, 408, - 411, 413, 510, 512, 0, 30, 104, 30, 106, 532, - 0, 0, 0, 543, 0, 593, 588, 439, 444, 0, - 304, 508, 434, 455, 0, 449, 607, 17, 0, 34, - 34, 482, 34, 0, 0, 474, 0, 0, 34, 406, - 624, 569, 575, 571, 633, 632, 631, 162, 31, 0, - 32, 34, 0, 244, 0, 515, 0, 0, 0, 539, - 535, 541, 0, 0, 0, 0, 0, 445, 0, 555, - 610, 0, 597, 0, 0, 34, 488, 304, 483, 0, - 0, 34, 478, 0, 466, 464, 472, 0, 0, 0, - 56, 0, 513, 0, 0, 0, 533, 0, 548, 547, - 544, 546, 587, 594, 0, 440, 418, 0, 550, 611, - 604, 0, 0, 304, 489, 481, 0, 479, 457, 34, - 485, 0, 34, 572, 23, 33, 34, 25, 516, 105, - 107, 536, 589, 556, 0, 606, 598, 0, 608, 609, - 0, 304, 484, 304, 486, 34, 491, 0, 57, 551, - 0, 0, 490, 480, 0, 304, 492, 0, 573, 0, - 601, 600, 599, 605, 487, 0, 560, 558, 557, 552, - 493, 561, 559 + 0, 0, 0, 0, 0, 0, 0, 296, 0, 0, + 89, 0, 90, 34, 81, 426, 428, 522, 34, 0, + 548, 547, 0, 171, 34, 444, 0, 84, 0, 0, + 0, 608, 0, 450, 0, 0, 454, 457, 35, 465, + 456, 0, 0, 398, 34, 0, 399, 612, 163, 297, + 618, 292, 0, 294, 611, 614, 0, 0, 0, 622, + 0, 0, 412, 158, 244, 245, 246, 248, 238, 247, + 0, 159, 300, 300, 154, 15, 18, 20, 0, 240, + 301, 338, 298, 299, 390, 0, 389, 340, 339, 341, + 343, 344, 345, 346, 347, 352, 350, 0, 351, 0, + 348, 349, 353, 356, 357, 0, 252, 358, 360, 361, + 362, 363, 365, 364, 359, 251, 403, 406, 0, 342, + 354, 355, 503, 0, 497, 508, 0, 498, 0, 0, + 113, 0, 0, 528, 514, 0, 534, 515, 536, 0, + 586, 0, 584, 79, 0, 432, 36, 0, 0, 417, + 419, 300, 44, 55, 378, 379, 380, 385, 386, 383, + 384, 377, 388, 381, 382, 387, 372, 373, 374, 375, + 376, 411, 501, 92, 117, 119, 429, 36, 0, 0, + 448, 0, 447, 543, 442, 0, 0, 0, 423, 0, + 597, 0, 74, 0, 16, 469, 467, 0, 461, 463, + 455, 0, 469, 95, 93, 401, 396, 0, 613, 615, + 0, 561, 562, 564, 559, 577, 0, 0, 257, 0, + 161, 394, 0, 0, 0, 0, 300, 234, 391, 0, + 236, 237, 259, 0, 0, 0, 0, 0, 0, 0, + 499, 0, 0, 0, 532, 0, 517, 0, 0, 580, + 0, 0, 571, 585, 437, 0, 435, 37, 0, 436, + 425, 0, 0, 0, 431, 427, 82, 34, 0, 445, + 34, 441, 85, 590, 0, 126, 0, 34, 0, 470, + 471, 34, 462, 464, 453, 467, 0, 459, 0, 400, + 34, 616, 560, 0, 568, 0, 421, 300, 19, 30, + 21, 30, 241, 392, 404, 407, 409, 504, 506, 0, + 30, 104, 30, 106, 526, 0, 0, 0, 537, 0, + 587, 582, 0, 438, 0, 300, 502, 430, 449, 0, + 443, 601, 17, 0, 34, 34, 476, 34, 0, 0, + 468, 0, 0, 34, 402, 563, 569, 565, 625, 624, + 623, 162, 31, 0, 32, 34, 0, 0, 509, 0, + 0, 0, 533, 529, 535, 0, 0, 0, 0, 434, + 439, 0, 549, 604, 0, 591, 0, 0, 34, 482, + 300, 477, 0, 0, 34, 472, 0, 460, 458, 466, + 0, 0, 0, 56, 0, 507, 0, 0, 0, 527, + 0, 542, 541, 538, 540, 581, 588, 0, 414, 0, + 544, 605, 598, 0, 0, 300, 483, 475, 0, 473, + 451, 34, 479, 0, 34, 566, 23, 33, 34, 25, + 510, 105, 107, 530, 583, 550, 0, 600, 592, 0, + 602, 603, 0, 300, 478, 300, 480, 34, 485, 0, + 57, 545, 0, 0, 484, 474, 0, 300, 486, 0, + 567, 0, 595, 594, 593, 599, 481, 0, 554, 552, + 551, 546, 487, 555, 553 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { - -1, 59, 60, 458, 62, 751, 753, 752, 754, 63, - 889, 566, 786, 567, 512, 890, 459, 245, 144, 210, - 699, 243, 709, 537, 257, 209, 146, 460, 461, 462, - 764, 997, 205, 207, 65, 170, 171, 68, 172, 70, + -1, 59, 60, 459, 62, 752, 754, 753, 755, 63, + 883, 567, 786, 568, 513, 884, 460, 245, 144, 210, + 709, 243, 719, 538, 257, 209, 146, 461, 462, 463, + 765, 989, 205, 207, 65, 170, 171, 68, 172, 70, 173, 72, 73, 174, 75, 175, 77, 176, 79, 177, - 81, 178, 83, 279, 179, 85, 180, 87, 181, 89, - 90, 91, 310, 182, 183, 184, 95, 96, 600, 185, - 617, 619, 186, 98, 755, 280, 281, 756, 187, 289, - 100, 101, 188, 625, 103, 189, 748, 604, 284, 235, - 191, 423, 192, 193, 194, 195, 108, 109, 110, 111, - 112, 113, 114, 196, 197, 198, 199, 348, 304, 285, - 116, 258, 574, 575, 637, 200, 429, 763, 638, 275, - 202, 119, 203, 121, 122, 149, 150, 582, 242, 485, - 543, 544, 486, 784, 785, 906, 666, 667, 123, 241, - 554, 707, 124, 214, 548, 464, 716, 563, 722, 816, - 718, 255, 723, 720, 811, 808, 956, 957, 809, 810, - 126, 127, 128, 535, 792, 450, 766, 451, 643, 894, - 768, 933, 452, 453, 129, 470, 471, 130, 213, 131, - 472, 651, 898, 774, 937, 473, 652, 850, 776, 132, - 777, 902, 133, 940, 941, 134, 798, 974, 999, 551, - 948, 998, 1008, 267, 268, 740, 741, 135, 825, 927, - 987, 883, 136, 478, 479, 480, 137, 269, 138, 661, - 854, 905, 662, 779, 904, 139, 244, 866, 950, 990, - 1002, 558, 976, 977, 912, 913, 914, 249, 140, 560, - 259, 577, 736, 737, 141, 744, 886, 465 + 81, 178, 83, 280, 179, 85, 180, 87, 181, 89, + 90, 91, 311, 182, 183, 184, 95, 96, 185, 186, + 98, 608, 281, 282, 609, 187, 290, 100, 101, 188, + 103, 189, 610, 614, 285, 235, 191, 424, 192, 193, + 194, 195, 108, 109, 110, 111, 112, 113, 114, 196, + 197, 198, 199, 349, 305, 286, 116, 258, 575, 576, + 647, 200, 430, 764, 648, 276, 202, 119, 203, 121, + 122, 149, 150, 590, 242, 486, 544, 545, 487, 785, + 676, 677, 123, 241, 555, 717, 124, 214, 549, 465, + 725, 564, 731, 816, 727, 255, 732, 729, 811, 808, + 948, 949, 809, 810, 126, 127, 128, 536, 792, 451, + 767, 452, 653, 887, 769, 926, 453, 454, 129, 471, + 472, 130, 213, 131, 473, 661, 891, 775, 930, 474, + 662, 845, 777, 132, 778, 895, 133, 933, 934, 134, + 798, 966, 991, 552, 940, 990, 1000, 268, 269, 742, + 743, 135, 824, 920, 979, 877, 136, 479, 480, 481, + 137, 270, 138, 671, 849, 898, 672, 780, 897, 139, + 244, 861, 942, 982, 994, 559, 968, 969, 905, 906, + 907, 249, 140, 260, 584, 585, 141, 746, 880, 466 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ -#define YYPACT_NINF -939 +#define YYPACT_NINF -779 static const yytype_int16 yypact[] = { - 3752, 422, -939, 451, -939, 2, 25, 745, 496, -74, - 7465, -939, -939, -939, 8669, 8669, 8669, -939, 112, 787, - 7465, 7465, -939, 1199, -939, 451, 4561, -939, -939, 38, - -939, 1515, 1724, -939, 451, 305, -939, 99, -939, -939, - 8669, -939, 8669, 1630, 138, -939, -939, 4561, -939, -939, - 7465, -939, 76, 147, -939, -939, 7588, 7219, 8362, 277, - 4926, -939, -939, 424, -939, 213, 39, 45, 4370, 28, - 8362, 56, 8362, 8362, 57, 8362, 58, 8362, 69, 8362, - 20, 8362, 113, 8362, 53, 4370, 60, 4370, 91, 4370, - 3885, 8362, 101, 108, 44, 8362, -939, 98, 8362, 40, - 196, 8362, 102, 8362, 454, -939, -939, -939, -939, -939, - -939, -939, -939, -939, -939, -939, 422, 119, 131, 4370, - 169, 8362, -939, -939, -939, -939, -939, -939, 486, -939, - 5316, 370, -939, 7465, -939, -939, -939, 5443, 228, -939, - -939, -939, -939, -939, 7465, -939, 422, -939, -939, 8669, - 8669, 7465, -939, -939, -939, -939, -939, -939, 7465, -939, - -939, -939, 38, -939, -939, -939, -939, 7465, 7465, 8669, - 752, 830, 396, 611, 1739, 3324, 2001, 975, 2018, 8094, - 310, 1831, 2238, 2291, 1117, 7910, -939, 2812, 7971, -939, - 3939, 255, -939, -939, -939, -939, -939, -939, -939, -939, - 2034, 259, 8033, 2122, -939, 372, -939, 413, -939, -939, - 8406, -939, -939, 422, 8669, -939, 77, 248, 248, 4, - 14, 63, 68, 78, 376, 171, 248, 191, 211, -88, - 248, -3, 182, 227, 219, 27, 285, 224, -6, 229, - 297, 8669, 8669, 8406, 348, 7465, -939, -939, -939, -939, - 449, 346, 2379, 2046, 359, 422, 374, 380, 8451, 423, - 321, 192, 206, -88, 476, 222, 231, -939, 217, 7465, - 2928, -939, 7465, -939, 8669, 278, -939, 392, 4561, 312, - -939, -939, -939, 2651, -939, 338, -939, -939, -939, -939, - -939, 422, -939, -939, -939, -939, -939, 8669, 8669, -939, - -939, 7465, 3574, -939, 152, 7465, -939, -939, -939, -939, - -939, -939, 7465, -939, -939, -939, 7465, -939, -939, -939, - -939, 7465, -939, -939, -939, 7465, -939, -939, -939, 7465, - -939, -939, -939, 7465, -939, -939, 7465, -939, -939, -939, - 7465, -939, -939, -939, 7465, -939, -939, -939, -939, -939, - -939, 7465, -939, -939, -939, -939, -939, -939, 2, 25, - 493, -939, 502, -939, 521, -939, -939, 525, -939, 529, - -939, 78, -939, 376, -939, 548, -939, -939, 559, -939, - 567, -939, -939, 577, 586, -939, 587, -939, -939, 7465, - -939, 7465, -939, -939, 7465, -939, -939, 7465, -939, -939, - -939, -939, 7465, -939, -939, -939, 8362, -939, 7465, -939, - -939, -939, -939, -939, -939, 7465, 7465, 7465, 7465, 7465, - 7465, 7465, 8362, -939, -939, -939, -939, -939, -939, 7465, - -939, 7465, -939, -939, 7465, -939, -939, -939, -939, -939, - 7465, -939, -939, -939, -939, -939, 422, -939, -939, -939, - 590, 501, -939, -939, -939, 626, -939, 129, -939, -939, - -939, -939, 606, 5570, -939, -939, -939, -939, -939, -939, - -939, -939, 404, 342, 419, 5697, -939, -939, 573, -939, - -939, -939, 2928, -939, 4813, 425, -939, 425, 2497, 3435, - -939, -939, 397, -939, -939, -939, -939, 8669, -939, -939, - -939, -939, -939, -939, -939, -939, 8669, -939, -939, -939, - -939, -939, -939, -939, -939, -939, -939, 7465, 7465, 7465, - 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, - 7465, 7465, 7465, 7465, 7465, 422, -939, 422, 8669, -939, - 8669, -939, 4813, 500, -939, -939, -939, 2046, 447, -939, - -939, 7465, -939, 2046, 272, 447, 500, 7465, 422, 2928, - 423, 455, -939, 8669, 422, -939, -939, -939, -939, -939, - 609, 422, -939, 2046, 499, 508, 4190, -939, 7711, 4561, - 2928, -939, 8669, 491, -939, -939, 243, 191, -88, -3, - 66, 227, 7465, -939, 7465, 7342, -939, -939, 514, 515, - 7342, 3939, -939, 3939, -939, 3574, 510, 3939, 3939, 3939, - 3939, 3939, 3939, 3939, 3939, 3939, 3939, 7342, 3939, 7342, - 3939, 3939, 3939, 3939, 3939, 7342, -939, 3939, 3939, 3939, - 3939, 3939, 3939, 3939, 3939, -939, 3939, 509, 7094, 3939, - 3939, 3939, -939, 7465, -939, -939, 590, -939, 8669, 8669, - -939, 7465, 422, -939, -939, 342, -939, -939, -939, 7465, - -939, 288, -939, -939, 7465, 634, 600, 330, 8669, -939, - -939, 7834, -939, -939, 4588, 3939, 3435, 3435, 3435, 657, - 657, 593, 3435, 657, 657, 657, 366, 366, 332, 332, - 332, 3939, -939, -939, -939, -939, 639, 600, 8406, 422, - -939, 8669, -939, 3939, -939, 8669, 8669, 422, -939, 422, - 3939, 5189, -939, -939, 633, -939, 8184, 359, 2379, -939, - -939, -939, 8669, 8184, -939, -939, -939, -939, 8515, 7834, - 270, 458, -939, 464, 3939, 4432, 530, -939, 8669, 3939, - -939, 531, -939, -939, 6459, 425, -939, 2748, 3939, -939, - -939, 422, 528, 422, 532, 333, -939, -939, 3574, 434, - 466, 467, 7465, 535, 5053, 536, 6586, 419, 7465, -939, - 172, 401, 419, -939, 7465, -939, 422, 6713, 3939, 422, - 7465, -939, -939, 3939, -939, 647, -939, -939, 7465, 538, - -939, 549, 5824, 7465, -939, -939, -939, 2046, 612, -939, - 2046, -939, -939, -939, 422, 8228, 8669, 2046, 546, 551, - 552, 2046, -939, -939, -939, -939, 362, -939, 569, -939, - 2046, -939, 7834, 397, 7711, 578, 200, -939, 7465, -939, - 8560, -939, 8560, 7342, -939, -939, -939, -939, -939, 3939, - -939, -939, -939, -939, 419, 8560, -939, 8560, -939, -939, - 6205, 419, 6205, -939, 422, -939, 3939, -939, 3939, 7465, - 7834, -939, 3939, -939, 7465, -939, 554, -939, 8669, 2046, - 4681, -939, 2046, 8273, 594, -939, 8669, 422, 2046, -939, - -939, -939, -939, -939, -939, -939, -939, -939, -939, 570, - 575, 2046, 571, -939, 5824, -939, 574, 576, 5951, -939, - -939, -939, 322, 6078, 6078, 422, 7465, 3939, 582, 175, - -939, 8669, -939, 422, 422, 8706, -939, 7465, -939, 422, - 8669, 2046, 552, 8317, -939, -939, -939, 422, 422, 8624, - -939, 422, -939, 5824, 422, 422, -939, 5951, -939, -939, - -939, -939, -939, -939, 6078, 3939, -939, 7465, -939, -939, - 635, 6332, 6332, 7465, -939, -939, 470, -939, -939, 8727, - -939, 8669, 2046, -939, -939, -939, 2046, -939, -939, -939, - -939, -939, -939, 259, 422, -939, -939, 422, -939, -939, - 474, 7465, -939, 7465, -939, 8748, -939, 6840, -939, -939, - 15, 6967, -939, -939, 475, 7465, -939, 17, -939, 6840, - -939, -939, -939, -939, -939, 478, 8669, 8669, -939, -939, - -939, -939, -939 + 4603, 312, -779, 319, -779, -18, 27, 206, 396, -11, + 7441, -779, -779, -779, 8751, 8751, 8751, -779, 112, 555, + 7441, 7441, -779, 618, -779, 319, 7933, -779, -779, 61, + -779, 678, 1503, -779, 319, -28, -779, 122, -779, -779, + 8751, -779, 8751, 809, 253, -779, 156, 7933, -779, -779, + 7441, -779, 298, 165, -779, -779, 7564, 7072, 8444, 329, + 4777, -779, -779, 486, -779, 13, 31, 37, 4335, 23, + 8444, 57, 8444, 8444, 73, 8444, 97, 8444, 149, 8444, + 60, 8444, 167, 8444, 39, 4335, 58, 4335, 69, 4335, + 8044, 8444, 62, 98, 250, 8444, -779, 19, 8444, 77, + 217, 8444, 95, 8444, 1091, -779, -779, -779, -779, -779, + -779, -779, -779, -779, -779, -779, 312, 187, 173, 4335, + 178, 8444, -779, -779, -779, -779, -779, -779, 462, -779, + 5169, 419, -779, 7441, -779, -779, -779, 5296, 184, -779, + -779, -779, -779, -779, 7441, -779, 312, -779, -779, 8751, + 8751, 7441, -779, -779, -779, -779, -779, -779, 7441, -779, + -779, -779, 61, -779, -779, -779, -779, 7441, 7441, 8751, + 562, 1454, 1537, 1660, 1722, 3896, 1810, 981, 1973, 8221, + 770, 1292, 1933, 2361, 1921, 4397, -779, 2949, 8098, -779, + 2850, 478, -779, -779, -779, -779, -779, -779, -779, -779, + 2052, 246, 8159, 2295, -779, 305, -779, 392, -779, -779, + 8489, -779, -779, 312, 8751, -779, 20, 221, 221, -6, + 16, 25, 74, 175, 337, 208, 221, -5, 163, 367, + 221, 6, 211, 209, 220, 30, 266, 232, 188, 234, + 335, 8751, 8751, 8489, 345, 7441, -779, -779, -779, 156, + 406, 313, 2600, 4497, 360, 312, 341, 385, 8533, 3408, + -779, 278, -3, 124, 367, 484, 228, 238, -779, -25, + 7441, 2623, -779, 7441, -779, 8751, 393, -779, 394, 7933, + -40, -779, -779, -779, 3763, -779, 256, -779, -779, -779, + -779, -779, 312, -779, -779, -779, -779, -779, 8751, 8751, + -779, 7195, 7441, 7318, -779, 157, 7441, -779, -779, -779, + -779, -779, -779, 7441, -779, -779, -779, 7441, -779, -779, + -779, -779, 7441, -779, -779, -779, 7441, -779, -779, -779, + 7441, -779, -779, -779, 7441, -779, -779, 7441, -779, -779, + -779, 7441, -779, -779, -779, 7441, -779, 7195, -779, -779, + -779, -779, 7441, -779, 7195, -779, -779, -779, -779, -18, + 27, 494, -779, 506, -779, 517, -779, -779, 536, -779, + 542, -779, 175, -779, 337, -779, 548, -779, -779, 549, + -779, 552, -779, -779, 558, 564, -779, 577, -779, -779, + 7441, -779, 7441, -779, -779, 7441, -779, -779, 7441, -779, + -779, -779, -779, 7441, -779, 7195, -779, 8444, -779, 7441, + -779, -779, -779, -779, -779, -779, 7441, 7441, 7441, 7441, + 7441, 7441, 7441, 8444, -779, -779, -779, -779, -779, -779, + 7441, -779, 7441, -779, -779, 7441, -779, -779, -779, -779, + -779, 7441, -779, -779, -779, -779, -779, 312, -779, -779, + -779, 457, 491, -779, -779, -779, 520, -779, 114, -779, + -779, -779, -779, 497, 5423, -779, -779, -779, -779, -779, + -779, -779, -779, 423, 370, 422, 5550, -779, -779, 524, + -779, -779, -779, 2623, -779, 1190, 436, -779, 436, 2449, + 2522, -779, -779, 411, -779, -779, -779, -779, 8751, -779, + -779, -779, -779, -779, -779, -779, -779, 8751, -779, -779, + -779, -779, -779, -779, -779, -779, -779, -779, 7441, 7441, + 7441, 7441, 7441, 7441, 7441, 7441, 7441, 7441, 7441, 7441, + 7441, 7441, 7441, 7441, 7441, 7441, 312, -779, 312, 8751, + -779, 8751, -779, 1190, 496, -779, -779, -779, 4497, 443, + -779, -779, 7441, -779, 4497, 198, 443, 496, 7441, 312, + 2623, -779, 371, -779, 8751, 312, -779, -779, -779, -779, + -779, 604, 312, -779, 4497, 509, 515, 7687, 324, 459, + -779, 480, 2850, 3613, 516, -779, 7810, 7933, 2623, -779, + 8751, 511, -779, -779, 216, -5, 367, 6, 233, 209, + 7441, -779, 7441, 7195, -779, -779, 518, 519, 402, -779, + 2850, 2850, -779, 2850, -779, 7318, 525, 2850, 2850, 2850, + 2850, 2850, 2850, 2850, 2850, 2850, 2850, 415, 2850, 444, + 2850, 2850, 2850, 2850, 2850, 469, -779, 2850, 2850, 2850, + 2850, 2850, 2850, 2850, 2850, -779, 2850, 523, 6947, 2850, + 2850, 2850, -779, 7441, -779, -779, 457, -779, 8751, 8751, + -779, 7441, 312, -779, -779, 370, -779, -779, -779, 7441, + -779, 381, -779, -779, 7441, 646, 955, 247, 8751, -779, + -779, 7687, -779, -779, 2137, 2850, 2522, 2522, 2522, 1113, + 1113, 600, 2522, 1113, 1113, 1113, 353, 353, 241, 241, + 241, 2850, -779, -779, -779, -779, 648, 955, 8489, 312, + -779, 8751, -779, 2850, -779, 8751, 8751, 312, -779, 312, + 2850, 5042, -779, 647, -779, 4183, 360, 2600, -779, -779, + -779, 8751, 4183, -779, -779, -779, -779, 8578, -779, 7687, + 8751, 2850, -779, 543, -779, -779, 6312, 436, -779, 3974, + -779, -779, 312, 540, 312, 544, 7195, -779, -779, 7318, + -779, -779, -779, 7441, 551, 4913, 553, 6439, 422, 7441, + -779, 293, 299, 422, -779, 7441, -779, 312, 6566, 2850, + 312, 7441, -779, -779, 2850, 661, -779, -779, 7441, 545, + -779, 547, 5677, 7441, -779, -779, -779, 4497, 635, -779, + 4497, -779, -779, -779, 312, 8311, 8751, 4497, 557, 561, + 566, 4497, -779, -779, -779, -779, 257, -779, 568, -779, + 4497, -779, 411, 7810, 589, 40, -779, 7441, -779, 8642, + -779, 8642, -779, -779, 2850, -779, -779, -779, -779, 422, + 8642, -779, 8642, -779, -779, 6058, 422, 6058, -779, 312, + -779, 2850, 7441, 2850, 7441, 7687, -779, 2850, -779, 7441, + -779, 541, -779, 8751, 4497, 3772, -779, 4497, 8355, 612, + -779, 8751, 312, 4497, -779, -779, -779, -779, -779, -779, + -779, -779, -779, 571, 574, 4497, 573, 5677, -779, 575, + 576, 5804, -779, -779, -779, 24, 5931, 5931, 312, 2850, + 2850, 578, 159, -779, 8751, -779, 312, 312, 4474, -779, + 7441, -779, 312, 8751, 4497, 566, 8400, -779, -779, -779, + 312, 312, 8687, -779, 312, -779, 5677, 312, 312, -779, + 5804, -779, -779, -779, -779, -779, -779, 5931, -779, 7441, + -779, -779, 637, 6185, 6185, 7441, -779, -779, 500, -779, + -779, 8739, -779, 8751, 4497, -779, -779, -779, 4497, -779, + -779, -779, -779, -779, -779, 246, 312, -779, -779, 312, + -779, -779, 504, 7441, -779, 7441, -779, 8791, -779, 6693, + -779, -779, 33, 6820, -779, -779, 507, 7441, -779, 34, + -779, 6693, -779, -779, -779, -779, -779, 508, 8751, 8751, + -779, -779, -779, -779, -779 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { - -939, -939, -939, 273, 643, -939, -939, -939, -939, -939, - -371, -400, 7, -171, -638, -939, 301, -939, -939, -939, - -939, -939, -939, -939, -939, 178, -939, -457, -939, -939, - 286, -518, -939, -939, 3422, 1257, 1337, 620, 261, 622, - 328, 623, 624, 438, 627, 507, 630, 589, 631, 658, - 632, 819, 638, -939, 1460, 641, 0, 642, 71, 644, - 483, -939, 8671, 1567, 1689, 1787, -939, -166, -939, 1804, - -939, -939, -566, -939, -573, -664, -565, -55, 1981, -367, - -939, -939, 2172, -939, -939, -554, 4019, -578, -582, -939, - 2243, -939, 2308, 2353, -939, 2376, -939, -939, -939, -939, - -939, -939, -939, 2537, -939, -939, -939, 4647, -939, -939, - -939, -939, -939, -939, -939, 1000, -939, -939, -939, -9, - 151, 648, 1080, 649, -939, -939, -939, -939, -939, -145, - 482, 31, -201, -939, -939, -939, 195, -939, -939, -939, - -939, -939, -939, -939, 503, 343, -939, -939, -939, -939, - -939, -550, -939, -697, -939, 10, -938, -240, -939, -130, - -939, -939, -939, -939, -939, 295, -939, -939, -939, -939, - -939, -939, -431, -939, -939, -449, -939, -939, -939, -939, - -939, -939, -939, -939, -939, 275, -939, -939, -939, -939, - -939, -939, -939, -939, -939, -939, -939, -939, -939, -939, - -939, -250, -939, 173, -939, -71, -939, -939, -939, -939, - -939, -939, -939, -939, 89, -939, -939, -939, -939, -939, - -939, -939, 95, -939, -939, -939, -939, -939, -939, -939, - -939, -939, -939, -939, -939, -939, -939, -939, -939, -939, - -939, 198, -939, -492, -939, -939, -939, 3169 + -779, -779, -779, 222, 645, -779, -779, -779, -779, -779, + -778, -316, -1, -166, -633, -779, 248, -779, -779, -779, + -779, -779, -779, -779, -779, 286, -779, -453, -779, -779, + 147, -594, -779, -779, 3304, 755, 1276, 619, 231, 620, + 307, 621, 625, 413, 626, 471, 627, 599, 628, 858, + 629, 961, 630, -779, 1431, 632, 0, 633, 76, 636, + 485, -779, 3497, 1541, 1613, 1821, -779, -167, 1824, -253, + -779, 28, -665, -252, -56, 1936, -79, -779, -779, 2010, + -779, -251, 3983, -595, -597, -779, 2210, -779, 2165, 2325, + -779, 2384, -779, -779, -779, -779, -779, -779, -779, 2399, + -779, -779, -779, 3543, -779, -779, -779, -779, -779, -779, + -779, 1155, -779, -779, -779, 7, 186, 638, 1248, 640, + -779, -779, -779, -779, -779, -147, 488, 32, -206, -779, + 196, -779, -779, -779, -779, -779, -779, -779, 499, 267, + -779, -779, -779, -779, -779, -552, -779, -693, -779, 10, + -579, -229, -779, -123, -779, -779, -779, -779, -779, 296, + -779, -779, -779, -779, -779, -779, -437, -779, -779, -449, + -779, -779, -779, -779, -779, -779, -779, -779, -779, 279, + -779, -779, -779, -779, -779, -779, -779, -779, -779, -779, + -779, -779, -779, -779, -779, -240, -779, 166, -779, -69, + -779, -779, -779, -779, -779, -779, -779, -779, 85, -779, + -779, -779, -779, -779, -779, -779, 86, -779, -779, -779, + -779, -779, -779, -779, -779, -779, -779, -779, -779, -779, + -779, -779, -779, 510, -779, -567, -779, -779, -779, 3352 }; /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If positive, shift that token. If negative, reduce the rule which number is the opposite. If zero, do what YYDEFACT says. If YYTABLE_NINF, syntax error. */ -#define YYTABLE_NINF -630 +#define YYTABLE_NINF -622 static const yytype_int16 yytable[] = { - 86, 201, 282, 493, 511, 487, 650, 791, 513, 545, - 731, 732, 749, 719, 514, 980, 515, 516, 650, 644, - 647, 813, 733, 654, 657, 817, 227, 757, 787, 333, - 435, 536, 1000, 395, 1006, 247, 549, 312, 147, 626, - 313, -323, 545, 302, 759, 994, 760, 261, 301, 402, - 317, 151, 761, 394, 305, 635, 334, 1005, 287, 787, - 86, 148, 340, 1007, 313, 316, 321, 325, 308, 344, - 308, 88, 308, 308, 240, 308, 403, 308, 329, 308, - 395, 308, 1001, 308, 665, 308, -306, 308, 271, 308, - 378, 308, 317, 322, 326, 308, 345, 228, 308, 322, - 351, 308, -236, 308, 326, 330, 248, 397, 493, 250, - 389, 408, 590, 299, 330, -29, -29, 391, 262, 308, - 765, 308, 336, -329, 474, 302, -328, 352, 431, 288, - 86, 88, -111, -111, 398, 302, 550, 86, 409, 309, - 434, 309, 696, 309, 309, 302, 309, 700, 309, 337, - 309, 118, 309, 704, 309, 432, 309, 256, 309, 302, - 309, 380, 309, 731, 732, 404, 309, 435, 812, 309, - 302, 302, 309, 726, 309, 733, 302, 238, 440, 924, - 835, 145, -96, -96, 302, 346, -306, 302, 302, 302, - 309, 302, 309, 803, 302, -236, 908, -236, 266, 302, - 302, 88, 300, 215, 273, 441, 775, 337, 88, 302, - 542, 118, 246, -96, -96, 769, 353, 884, 398, 311, - -96, -96, 302, 947, -96, -96, 826, 345, 345, 302, - -96, -96, 302, 302, -96, -96, 343, 821, 350, 302, - 357, 384, 352, 542, 302, 476, 887, 352, 842, 299, - 302, -96, -96, -96, -96, 409, 731, 732, 403, 853, - 432, 69, 302, 403, 347, 441, 354, 435, 733, 578, - 439, 392, 272, 61, 861, 399, 605, 290, 587, 299, - 410, 118, 606, 424, 425, 426, 427, 219, 118, 413, - 414, -96, -96, 428, 54, 55, 436, 845, 442, 534, - 302, 64, 302, 885, 445, 476, 299, 650, 219, 415, - 416, 417, 418, 302, 419, 420, 346, 346, 481, 344, - -325, 69, 302, 302, 705, 406, 780, 660, 71, 477, - 880, 353, 899, 292, 901, 955, 353, 302, 300, 938, - -326, 579, 302, 125, -325, -325, 345, 404, 162, 262, - 302, 362, 404, 302, 220, 302, -332, 299, 302, 466, - 302, 294, 302, 939, -325, -325, -325, -325, 300, -325, - -325, 955, -163, -562, -163, 220, 932, 38, 39, 302, - 936, 656, 469, 534, 422, 942, 943, 466, 71, 477, - 524, 69, -625, -625, -625, 300, 706, 863, 69, 955, - 865, 955, 534, 295, 584, 312, 287, 871, 467, 468, - 469, 875, 334, 955, 422, 968, 463, 557, 364, 971, - 879, 466, 287, 475, 524, 53, 972, 297, 298, 266, - -314, -314, 313, 978, 979, 346, 592, 745, 74, -325, - 593, 302, 653, 468, 469, -562, 300, 531, 532, 533, - -314, -314, -314, -314, 788, -314, -314, 833, 71, 834, - 789, 892, 595, 86, 221, 71, 596, 790, 561, 916, - 918, 562, 919, 1003, 896, 86, 897, 288, 926, 529, - 530, 531, 532, 533, 568, 221, 876, 570, 413, 414, - 877, 930, 576, 288, 54, 55, 538, 545, 74, -27, - -27, 446, 447, 448, 449, -132, 571, 76, 415, 416, - 417, 418, 395, 419, 420, 954, 446, 645, 448, 449, - 585, 960, 300, 54, 55, -314, 847, 302, 367, 299, - -132, -132, -132, 222, 88, 54, 55, 540, 313, 219, - 750, 54, 55, 534, 54, 55, 88, 54, 55, 668, - -132, -132, -132, -132, 222, -132, -132, 317, 833, 984, - 836, 322, 986, 421, 536, 326, 988, 76, 74, 54, - 55, 701, 493, -96, -96, 74, 714, 54, 55, 261, - -627, -627, -627, 422, 337, 996, -628, -628, -628, 78, - 833, 833, 837, 838, 981, 345, 982, 369, 981, 981, - 992, 1004, 981, 352, 1010, -132, 220, 448, 449, 648, - 649, 659, 660, 432, 118, 223, 300, 746, 910, 911, - 316, -132, 435, 441, 698, -132, 118, -132, 724, -109, - -109, 727, 728, 762, 767, -132, 223, 76, 86, -22, - -24, 758, 772, -438, 76, -316, -316, 317, 793, 78, - 262, 524, 804, 830, 822, 824, 857, 832, 80, 864, - -132, -132, -132, 840, 841, -316, -316, -316, -316, 859, - -316, -316, 872, 860, 494, 873, 874, 882, 923, 371, - -132, -132, -132, -132, 224, -132, -132, 503, 504, 505, - 506, 507, 508, 509, 510, 878, 928, 931, 542, 929, - 934, 975, 935, 293, 794, 224, 522, 523, 946, 88, - 361, 86, 363, 365, 366, 524, 221, 368, 80, 78, - 370, 372, 374, 552, 69, 556, 78, 735, 376, 795, - 266, 377, 379, 818, 381, -132, 69, 697, 385, 387, - -316, 993, 302, 922, 86, 555, 646, 655, 373, 1009, - 781, -132, 742, 881, -130, -132, 782, -132, 713, 844, - 0, 301, 0, 0, 86, 851, 86, 526, 527, 528, - 529, 530, 531, 532, 533, 0, 0, 86, 893, -130, - -130, -130, 88, 0, 0, 222, -313, -313, 80, 118, - 0, 71, 86, 0, 0, 80, -134, 0, 0, -130, - -130, -130, -130, 71, -130, -130, -313, -313, -313, -313, - 0, -313, -313, 0, 0, 88, 0, 0, 0, 82, - 0, -134, -134, -134, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 88, 0, 88, 0, 305, - 219, -134, -134, -134, -134, 225, -134, -134, 88, 0, - 86, 0, 86, 0, -130, 909, 0, 0, 0, 0, - 0, 0, 118, 88, -315, -315, 225, 223, 0, 0, - -130, 0, 0, 0, -130, 0, -130, 0, 0, 82, - 735, -313, 0, 302, -315, -315, -315, -315, 0, -315, - -315, 0, 0, 0, 86, 118, -134, 0, 86, 69, - 0, 74, 0, 86, 86, 0, 0, 220, 0, 375, - 0, 0, -134, 74, 0, 118, -134, 118, -134, 0, - 0, 88, 0, 88, 0, 0, 0, 0, 118, 0, - 0, 0, 0, 86, 0, 0, 224, 86, 973, 0, - 0, 0, 0, 118, 86, 0, 0, 0, 0, 82, - 0, 86, 86, 0, 0, 0, 82, 0, 0, -315, - 0, 302, 0, 0, 0, 88, 71, 0, 0, 88, - 76, 0, 69, 735, 88, 88, 0, 0, 0, 0, - 0, 0, 76, 0, 333, 0, 0, 86, 0, 0, - 0, 86, 0, 0, 0, 0, 0, 0, 0, 86, - 117, 118, 0, 118, 88, 69, 0, 0, 88, -321, - -321, 334, 0, 0, 0, 88, 0, 221, 0, 0, - 0, 0, 88, 88, 0, 69, 237, 69, 0, -321, - -321, -321, -321, 0, -321, -321, 0, 0, 69, 71, - 0, 0, 0, 0, 0, 118, 0, 237, 0, 118, - 0, 0, 78, 69, 118, 118, 0, 0, 88, 0, - 117, 0, 88, 0, 78, 0, 0, 0, 0, 0, - 88, 0, 71, 0, 0, 0, 74, 0, 0, 0, - 120, 0, 0, 0, 118, 0, 222, 0, 118, 0, - 383, 0, 71, 0, 71, 118, 0, 225, 0, 0, - 0, 0, 118, 118, -321, 71, 239, 0, 0, 0, - 0, 69, 0, 69, 0, 0, 0, 0, 0, 0, - 71, 80, 0, 0, 0, 0, 394, 239, 0, 0, - 117, 0, 0, 80, 0, 0, 0, 117, 118, 0, - 120, 0, 118, 0, 0, 76, 0, 0, 0, 74, - 118, -328, -328, 395, 0, 69, 0, 0, 0, 69, - 0, 0, 0, 0, 69, 69, 0, 0, 223, 0, - 386, -328, -328, -328, -328, 0, -328, -328, 71, 0, - 71, 0, 74, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 69, 0, 0, 0, 69, 0, - 0, 0, 74, 0, 74, 69, 0, 0, -131, 0, - 120, 0, 69, 69, 0, 74, 0, 120, 76, 0, - 0, 0, 71, 0, 0, 0, 71, 78, 0, 0, - 74, 71, 71, -131, -131, -131, 0, 224, 0, 0, - 0, 0, 0, 0, 0, 0, -328, 0, 69, 0, - 0, 76, 69, -131, -131, -131, -131, 66, -131, -131, - 69, 71, 0, 0, 0, 71, 0, 0, 0, 0, - 0, 76, 71, 76, 0, 0, 0, 0, 237, 71, - 71, 0, 82, 217, 76, 0, 0, 0, 74, 0, - 74, 0, 0, 0, 82, 0, 80, 0, 0, 76, - 78, 0, 0, 0, 217, 0, 0, 0, -131, 0, - 0, 0, 0, 0, 0, 71, 0, 66, 0, 71, - 0, 0, 0, 0, -131, 0, 0, 71, -131, 0, - -131, 0, 74, 78, 0, 0, 74, 67, 0, 0, - 0, 74, 74, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 78, 0, 78, 0, 76, 239, 76, - 0, 0, 0, 218, 0, 0, 78, 0, 0, 80, - 0, 74, 0, 0, 0, 74, 0, 0, 0, 0, - 0, 78, 74, 0, 218, 0, 0, 66, 0, 74, - 74, 0, 0, 0, 66, 0, 0, 67, 225, 0, - 0, 76, 80, 0, 0, 76, 0, 0, 0, 0, - 76, 76, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 80, 0, 80, 74, 0, 0, 0, 74, - 0, 0, 0, 0, 0, 80, 0, 74, 0, 78, - 76, 78, 0, 0, 76, 0, 0, 0, 0, 0, - 80, 76, 0, 0, 0, 0, 0, 82, 76, 76, - 84, 0, 0, 117, 0, 0, 0, 67, 0, 0, - 0, 0, 0, 0, 67, 117, 0, 0, 0, 0, - 0, 0, 0, 78, 0, 0, 226, 78, 0, 0, - 0, 0, 78, 78, 76, 0, 0, 0, 76, 0, - 0, 0, 0, 0, 0, 0, 76, 226, 80, 0, - 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 84, 0, 78, 0, -135, 0, 78, 0, 0, 0, - 82, 0, 0, 78, 0, 217, 0, 0, 0, 0, - 78, 78, 0, 120, 0, 0, 0, 0, 0, -135, - -135, -135, 80, 0, 0, 120, 80, 0, 0, 0, - 0, 80, 80, 82, 0, 0, 0, 92, 0, -135, - -135, -135, -135, 0, -135, -135, 78, 0, 0, 237, - 78, 0, 0, 82, 0, 82, 0, 0, 78, 0, - 84, 80, 0, 229, 0, 80, 82, 84, 0, 0, - 0, 0, 80, 0, 0, 0, 0, 0, 0, 80, - 80, 82, 0, 0, 263, 218, 0, 0, 0, 0, - 0, 0, 0, 0, -135, 0, 0, 92, 0, 0, - 0, 0, 0, 0, 0, 2, 0, 0, 117, 0, - -135, 152, 153, 0, -135, 80, -135, 0, 0, 80, - 0, 0, 154, 155, 156, 0, 157, 80, 0, 239, - 159, 0, 0, 0, 0, 0, 0, 0, 0, 82, - 0, 82, 160, 0, 161, 0, 0, 27, 28, 0, - 0, 0, 30, 163, 0, 0, 0, 0, 0, 93, - 0, 164, 0, 0, 0, 0, 0, 92, 0, 0, - 0, 0, 0, 0, 92, 0, 0, 0, 0, 0, - 0, 117, 0, 82, 41, 230, 0, 82, 120, 0, - 66, 0, 82, 82, 0, 165, 0, 0, 0, 48, - 0, 0, 66, -133, 0, 0, 230, 166, 226, 0, - 0, 0, 0, 0, 117, 0, 0, 0, 321, 93, - 0, 0, 82, 0, 0, 0, 82, 253, -133, -133, - -133, 0, 0, 82, 117, 0, 117, 0, 0, 0, - 82, 82, 0, -318, -318, 322, 0, 117, -133, -133, - -133, -133, 0, -133, -133, 0, 0, 94, 0, 0, - 0, 120, 117, -318, -318, -318, -318, 0, -318, -318, - 67, 0, 0, 0, 97, 0, 82, 0, 0, 0, - 82, 0, 67, 231, 0, 0, 0, 0, 82, 93, - 0, 0, 0, 0, 120, 0, 93, 0, 0, 0, - 232, 0, 0, -133, 264, 0, 217, 0, 0, 0, - 351, 0, 0, 0, 120, 588, 120, 94, 0, -133, - 117, 232, 117, -133, 0, -133, 0, 120, 0, 0, - 0, 0, 0, 0, 97, -326, -326, 352, -318, 0, - 302, 0, 120, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, -326, -326, -326, -326, 0, - -326, -326, 0, 0, 117, 66, 0, 0, 117, 0, - 0, 0, 0, 117, 117, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 218, 94, 0, 0, - 0, 0, 0, 84, 94, 0, 0, 0, 0, 0, - 120, 0, 120, 117, 97, 84, 0, 117, 0, 0, - 0, 97, 0, 0, 117, 0, 0, 0, 0, 0, - 0, 117, 117, 0, 0, 0, 353, 0, 0, 0, - -326, 0, 302, 0, 0, 0, 0, 230, 66, 0, - 0, 0, 0, 0, 120, 67, 0, 0, 120, 0, - 0, 99, 0, 120, 120, 0, 0, 117, 0, 0, - 0, 117, 0, 0, 0, 0, 0, 0, 0, 117, - 0, 66, 0, 0, 0, 0, 0, 233, 0, 0, - 329, 0, 0, 120, 0, 0, 0, 120, 0, 0, - 0, 66, 0, 66, 120, 0, 0, 336, 265, 0, - 92, 120, 120, 0, 66, -320, -320, 330, 0, 226, - 0, 99, 92, 431, 0, 0, 0, 0, 67, 66, - 0, 0, -322, -322, 337, -320, -320, -320, -320, 0, - -320, -320, 0, 0, 0, 589, 0, 120, -317, -317, - 432, 120, -322, -322, -322, -322, 0, -322, -322, 120, - 0, 67, 232, 0, 0, 0, 0, 0, -317, -317, - -317, -317, 0, -317, -317, 0, 0, 0, 84, 0, - 0, 67, 0, 67, 0, 0, 0, 66, 0, 66, - 0, 99, 0, 0, 67, 0, 0, 0, 99, 0, - 494, 495, 496, 497, 498, 499, 500, 501, 502, 67, - -320, 440, 302, 503, 504, 505, 506, 507, 508, 509, - 510, 0, 0, 0, 0, 0, 263, -322, 0, 302, - 0, 66, 93, 0, 0, 66, -331, -331, 441, 0, - 66, 66, 0, -317, 93, 302, 0, 0, 0, 0, - 0, 84, 102, 0, 0, 0, -331, -331, -331, -331, - 0, -331, -331, 0, 0, 0, 0, 67, 0, 67, - 66, 0, 0, 0, 66, 0, 0, 0, 234, 0, - 0, 66, 0, 0, 84, 92, 0, 0, 66, 66, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 234, - 0, 0, 0, 0, 84, 0, 84, 0, 0, 0, - 0, 67, 102, 0, 0, 67, 0, 84, 0, 0, - 67, 67, 0, 104, 66, 0, 0, 389, 66, 0, - 94, -331, 84, 302, 0, 0, 66, 0, 0, 591, - 0, 0, 94, 0, 0, 0, 0, 97, 230, 236, - 67, 0, -323, -323, 67, 0, 0, 0, 92, 97, - 0, 67, 0, 0, 0, 0, 0, 0, 67, 67, - 236, 0, -323, -323, -323, -323, 0, -323, -323, 0, - 391, 0, 102, 104, 0, 0, 0, 0, 105, 102, - 84, 92, 84, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 67, -324, -324, 93, 67, 0, - 0, 92, 0, 92, 0, 0, 67, 0, 0, 0, - 0, 0, 0, 0, 92, -324, -324, -324, -324, 0, - -324, -324, 0, 106, 84, 0, 0, 0, 84, 92, - 0, 0, 0, 84, 84, 0, 264, -323, 105, 302, - 0, 0, 0, 104, 0, 0, 107, 0, 0, 0, - 104, 0, 0, 232, 2, 0, 0, 0, 0, 0, - 152, 153, 0, 84, 0, 0, 0, 84, 0, 0, - 93, 154, 155, 156, 84, 157, 0, 0, 0, 159, - 0, 84, 84, 106, 0, 0, 0, 92, 0, 92, - -324, 160, 302, 161, 0, 94, 27, 28, 0, 0, - 0, 30, 163, 93, 0, 0, 107, 0, 105, 0, - 164, 0, 97, 0, 99, 105, 0, 84, 0, 0, - 234, 84, 0, 93, 0, 93, 99, 0, 0, 84, - 0, 92, 0, 41, 0, 92, 93, 0, 0, 0, - 92, 92, 0, 0, 165, 0, 0, 0, 48, 0, - 0, 93, 0, 106, 0, 0, 166, 0, 0, 0, - 106, 0, 0, 0, 0, 0, 0, 0, 94, 0, - 92, 54, 55, 0, 92, 0, 107, 0, 0, 0, - 0, 92, 0, 107, 0, 97, 0, 0, 92, 92, - 0, 236, 0, 0, 517, 518, 0, 0, 519, 520, - 521, 94, 0, 0, 0, 0, 0, 115, 0, 93, - 0, 93, 0, 0, 0, 0, 522, 523, 97, 0, - 0, 94, 0, 94, 92, 524, 0, 0, 92, 0, - 265, 0, 0, 0, 94, 0, 92, 0, 97, 0, - 97, 0, 0, 0, 0, 0, 0, 0, 0, 94, - 0, 97, 0, 93, 0, 0, 0, 93, 0, 0, - 0, 0, 93, 93, 0, 0, 97, 115, 0, 0, - 0, 0, 0, 0, 0, 0, 525, 526, 527, 528, - 529, 530, 531, 532, 533, 0, 0, 0, 0, 99, - 0, 671, 93, 0, 0, 0, 93, 0, 0, 0, - 0, 0, 0, 93, 0, 102, 0, 94, 0, 94, - 93, 93, 0, 0, 0, 0, 0, 102, 0, 0, - 0, 0, 0, 0, 97, 0, 97, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 115, 0, 0, - 0, 0, 0, 0, 115, 0, 93, 0, 517, 518, - 93, 94, 519, 520, 521, 94, 0, 0, 93, 0, - 94, 94, 99, 0, 0, 0, 0, 0, 97, 0, - 522, 523, 97, 0, 0, 0, 104, 97, 97, 524, - 0, 0, 0, 0, 0, 0, 0, 0, 104, 0, - 94, 0, 0, 0, 94, 99, 0, 0, 0, 0, - 0, 94, 0, 0, 0, 0, 0, 97, 94, 94, - 0, 97, 0, 0, 0, 99, 0, 99, 97, 0, - 0, 234, 0, 0, 0, 97, 97, 594, 99, 0, - 525, 526, 527, 528, 529, 530, 531, 532, 533, 0, - 0, 105, 0, 99, 94, 517, 518, 0, 94, 519, - 520, 521, 0, 105, 0, 0, 94, 0, 0, 0, - 0, 97, 0, 0, 0, 97, 0, 522, 523, 0, - 0, 0, 0, 97, 0, 0, 524, 0, 0, 0, - 102, 0, 0, 0, 0, 0, 106, 0, 0, 0, - 0, 402, 236, 0, 0, 0, 0, 0, 106, 0, - 0, 99, 0, 99, 0, 0, 0, 0, 0, 107, - 0, 0, 0, 0, 0, 0, -332, -332, 403, 0, - 0, 107, 0, 0, 828, 0, 0, 525, 526, 527, - 528, 529, 530, 531, 532, 533, -332, -332, -332, -332, - 0, -332, -332, 0, 0, 99, 0, 0, 0, 99, - 0, 104, 0, 102, 99, 99, 494, 495, 496, 497, - 498, 499, 500, 501, 502, 0, 0, 0, 0, 503, - 504, 505, 506, 507, 508, 509, 510, 0, 0, 0, - 0, 0, 0, 0, 99, 0, 102, 0, 99, 0, - 0, 0, 0, 0, 0, 99, 0, 0, 0, 0, - 0, 0, 99, 99, 0, 0, 102, 404, 102, 0, - 0, -332, 0, 302, 0, 0, 105, 0, 0, 102, - 0, 0, 0, 0, 104, 517, 518, 0, 0, 519, - 520, 521, 0, 0, 102, 0, 0, 0, 99, 0, - 0, 0, 99, 0, 0, 0, 0, 522, 523, 0, - 99, 0, 0, 0, 0, 0, 524, 104, 0, 0, - 0, 106, 0, 0, 0, 0, 0, 0, 0, 0, - 115, 0, 0, 0, 0, 0, 0, 104, 0, 104, - 0, 0, 115, 0, 107, 0, 0, 0, 0, 105, - 104, 0, 102, 0, 102, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 104, 0, 525, 526, 527, - 528, 529, 530, 531, 532, 533, 0, 0, 0, 0, - 54, 55, 105, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 106, 0, 102, 0, 0, 0, - 102, 0, 105, 0, 105, 102, 102, 0, 0, 0, - 0, 0, 0, 0, 0, 105, 0, 107, 0, 0, - 0, 0, 0, 104, 0, 104, 0, 106, 0, 0, - 105, 0, 0, 0, 0, 102, 0, 0, 0, 102, - 0, 0, 0, 0, 0, 0, 102, 106, 0, 106, - 107, 0, 0, 102, 102, 0, 0, 0, 0, 0, - 106, 0, 0, 0, 0, 0, 0, 104, 0, 0, - 107, 104, 107, 0, 0, 106, 104, 104, 0, 0, - 0, 0, 0, 107, 0, 0, 0, 0, 105, 102, - 105, 0, 0, 102, 0, 0, 0, 0, 107, 142, - 143, 102, 0, 0, 0, 115, 104, 0, 0, 0, - 104, 0, 0, 0, 0, 0, 0, 104, 0, 0, - 0, 0, 0, 0, 104, 104, 0, 0, 0, 0, - 0, 0, 105, 106, 0, 106, 105, 0, 0, 0, + 86, 283, 494, 488, 546, 750, 579, 580, 581, 512, + 738, 660, 728, 514, 654, 657, 791, 201, 147, 515, + 758, 516, 517, 660, 664, 667, 227, 586, 398, -302, + 314, 346, 313, 346, 813, 247, 537, 546, 817, 550, + 302, 931, 396, 787, 38, 39, 306, 262, 341, 300, + 992, 998, 318, 886, 766, 399, 300, 878, 288, 314, + 86, 323, 889, 148, 890, 932, 317, 345, 309, 334, + 309, 390, 309, 309, 787, 309, 88, 309, 352, 309, + 999, 309, 322, 309, 600, 309, 403, 309, 601, 309, + 379, 309, 53, 318, 346, 309, 335, 240, 309, 587, + 993, 309, 228, 309, 409, 353, 326, 392, 494, 323, + 327, 248, 598, 404, 151, -29, -29, -111, -111, 309, + 347, 309, 347, 263, -321, 303, 303, 803, 303, -302, + 86, 410, 250, 327, 289, -324, 88, 86, 301, 551, + 475, -96, -96, 879, 310, 301, 310, 303, 310, 310, + 303, 310, 825, 310, 303, 310, 303, 310, 330, 310, + 353, 310, 303, 310, 833, 310, 381, 310, 303, 675, + 303, 310, 821, 837, 310, 812, 337, 310, 917, 310, + -96, -96, 435, 347, 848, 331, 118, 441, 303, 303, + 901, -96, -96, 303, 354, 310, 432, 310, 856, 353, + 303, 477, 405, 338, 303, 303, 88, 939, 303, 436, + 543, 331, 238, 88, 442, -130, 776, -96, -96, 770, + -96, -96, 61, 433, 436, 259, 303, 706, 303, 303, + 881, 69, 710, 267, -96, -96, -96, -96, 714, 274, + -130, -130, -130, 543, 338, 404, 118, 399, 64, 354, + 715, 892, 300, 894, 312, 303, 410, 219, 735, 395, + -130, -130, -130, -130, 404, -130, -130, 125, 433, -235, + 442, 344, 256, 351, 436, 358, 385, 464, 219, 595, + 303, 615, 293, 535, 476, 478, 396, 616, 354, 145, + 273, 69, -322, 925, 303, -96, -96, 929, 303, 525, + -96, -96, 935, 936, 303, 440, 303, 71, 295, 303, + 272, 215, 660, 947, 300, -130, 118, -325, 303, 303, + 246, 363, 716, 118, 579, 580, 581, 296, 636, 291, + -556, -130, 960, 220, 405, -130, 963, -130, -328, 303, + 303, 301, 303, 964, 645, -163, 407, -163, 947, 970, + 971, 303, 303, 405, 220, 263, 532, 533, 534, 303, + 300, 69, -235, 303, -235, 303, 972, 71, 69, 303, + 535, 788, 348, 335, 355, 627, 947, 789, 947, 393, + 603, 871, 629, 400, 604, 872, 162, 467, 411, 995, + 947, 425, 426, 427, 428, 423, 986, 365, 477, -27, + -27, 429, -556, 301, 437, -132, 443, 288, 997, 666, + 470, 525, 446, 74, 558, 54, 55, 537, 840, 781, + 670, 54, 55, 288, 842, 562, 482, 54, 55, 539, + -132, -132, -132, 635, 54, 55, 467, 71, 563, 221, + 467, -96, -96, 747, 71, 583, -617, -617, -617, 301, + -132, -132, -132, -132, 571, -132, -132, 468, 469, 470, + 221, 663, 469, 470, 86, 267, 530, 531, 532, 533, + 534, 76, 790, 74, 449, 450, 86, 447, 448, 449, + 450, 858, 478, 289, 860, 569, 579, 580, 581, 298, + 299, 866, 723, 54, 55, 870, -319, 222, 303, 289, + 658, 659, 546, 368, 874, -132, 447, 655, 449, 450, + 219, 572, 414, 415, 54, 55, 541, 535, 222, 592, + 396, -132, 593, -109, -109, -132, 756, -132, 757, -132, + 300, 76, 416, 417, 418, 419, 301, 420, 421, 756, + 88, 760, 314, 74, 54, 55, 535, 751, 909, 911, + 74, 912, 88, 318, -132, -132, -132, 919, 54, 55, + 678, 370, 669, 670, -134, 54, 55, 711, 756, 923, + 761, 302, 323, 494, -132, -132, -132, -132, 327, -132, + -132, -619, -619, -619, 338, 346, 220, 262, 353, -134, + -134, -134, 946, 756, 433, 762, -309, -309, 952, 78, + 436, 76, -620, -620, -620, 903, 904, 423, 76, -134, + -134, -134, -134, 442, -134, -134, -309, -309, -309, -309, + 708, -309, -309, 733, 973, 223, 974, -131, 973, -132, + 984, 973, 973, 996, 1002, 976, 301, 748, 978, 737, + 739, 736, 980, -22, -24, -132, 223, 763, 86, -132, + 118, -132, -131, -131, -131, -433, 759, 793, 525, 78, + 768, 988, 118, 263, -134, 829, 804, 823, 773, 831, + 852, 855, -131, -131, -131, -131, 854, -131, -131, 835, + -134, 836, 859, 867, -134, 868, -134, -135, 876, 372, + 869, -309, 221, 303, 873, 69, 916, 921, 922, 924, + 832, 927, 928, 967, 938, 294, 794, 69, 543, 362, + 364, 366, -135, -135, -135, 367, 369, 371, 373, 375, + 377, 86, 378, 380, 88, 553, 382, -131, 386, 78, + 388, 557, -135, -135, -135, -135, 78, -135, -135, 707, + 795, 556, 818, -131, 985, 915, 86, -131, 656, -131, + 222, 1001, 665, 744, 875, 66, 782, 783, 0, 561, + 0, 0, 0, 583, 0, 86, 0, 86, 0, 0, + 0, 71, 0, 267, 0, 0, 839, 0, 86, 345, + 0, 217, 846, 71, 0, 0, 0, -135, 0, 0, + 0, 0, 86, 0, 0, 0, 0, 88, 0, 0, + 0, 0, 217, -135, -321, -321, 346, -135, 0, -135, + 0, 0, 0, 0, 2, 66, 0, 0, 219, 0, + 152, 153, 88, 0, -321, -321, -321, -321, 0, -321, + -321, 154, 155, 156, 118, 157, 0, 0, 0, 159, + 0, 88, 0, 88, 0, 86, 0, 86, 0, 0, + 0, 160, 0, 161, 88, 0, 27, 28, 80, 0, + 0, 30, 163, 0, 0, 0, 902, 0, 88, 0, + 164, 0, 0, 0, 0, 0, 0, 74, 223, 69, + 0, 0, 0, 0, 224, 66, 0, 86, 0, 74, + 0, 86, 66, 41, 220, 347, 86, 86, 0, -321, + 0, 303, 0, 0, 165, 224, 0, 118, 48, 0, + 0, 0, 0, 0, 0, 0, 166, 0, 80, 0, + 0, 88, 0, 88, 0, 583, 86, 0, 0, 0, + 86, 0, 118, 0, 0, 76, 253, 86, 0, 0, + 0, 0, 0, 86, 86, 0, 965, 76, 374, 0, + 0, 118, 69, 118, 0, 71, 0, 0, 0, 0, + 0, 82, 0, 88, 118, 0, 0, 88, 0, 0, + 0, 0, 88, 88, 0, 0, 0, 69, 118, 86, + 0, 0, 0, 86, 0, 0, 0, 225, 80, 0, + 334, 86, 0, 0, 0, 80, 69, 0, 69, 0, + 221, 0, 88, 0, 0, 0, 88, 0, 225, 69, + 0, 0, 0, 88, 0, -317, -317, 335, 0, 88, + 88, 82, 0, 69, 0, 0, 0, 0, 71, 495, + 0, 118, 0, 118, 217, -317, -317, -317, -317, 0, + -317, -317, 504, 505, 506, 507, 508, 509, 510, 511, + 0, 376, 0, 71, 0, 88, 0, 0, 222, 88, + 0, 74, 0, 78, 0, 0, 0, 88, 0, 0, + 0, 0, 71, 118, 71, 78, 69, 118, 69, 0, + 0, 0, 118, 118, 0, 71, 0, 0, 0, 0, + 0, 82, 0, 0, 0, 0, 0, 0, 82, 71, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -317, 0, 118, 0, 0, 0, 118, 0, 69, 76, + 0, 0, 69, 118, 0, 414, 415, 69, 69, 118, + 118, 0, 0, 0, 74, 0, 0, 224, 0, 0, + 0, 0, 0, 0, 0, 416, 417, 418, 419, 0, + 420, 421, 71, 0, 71, 117, 0, 69, 0, 74, + 0, 69, 523, 524, 0, 118, 0, 0, 69, 118, + 0, 525, 0, 0, 69, 69, 0, 118, 74, 0, + 74, 237, 0, 0, 0, 0, 223, 0, 0, 0, + 0, 74, 76, 0, 71, 0, 0, 0, 71, 0, + 422, 0, 237, 71, 71, 74, 0, 0, 0, 0, + 69, 0, 0, 0, 69, 117, 0, 76, 0, 66, + 423, 0, 69, 527, 528, 529, 530, 531, 532, 533, + 534, 66, 0, 71, 0, 0, 76, 71, 76, 0, + 225, 0, 0, 0, 71, 384, 0, 78, 120, 76, + 71, 71, 0, 0, 0, 0, 0, 0, 74, 0, + 74, 0, 0, 76, 495, 496, 497, 498, 499, 500, + 501, 502, 503, 0, 239, 0, 67, 504, 505, 506, + 507, 508, 509, 510, 511, 117, 71, 0, 0, 0, + 71, 0, 117, 0, 0, 239, 0, 0, 71, 0, + 74, 352, 218, 0, 74, 0, 0, 0, 120, 74, + 74, 0, 0, 0, 0, 0, 76, 0, 76, 0, + 78, 674, 80, 218, 0, 0, -322, -322, 353, 0, + 0, 0, 0, 0, 80, 0, 67, 0, 387, 74, + 0, 0, 217, 74, 0, 78, -322, -322, -322, -322, + 74, -322, -322, 0, 0, 0, 74, 74, 76, 0, + 0, 0, 76, 0, 78, 0, 78, 76, 76, 0, + 0, 0, 0, 0, 0, 0, 0, 78, 120, 0, + 0, 0, 0, 0, 0, 120, 0, 0, 0, 0, + 0, 78, 74, 0, 0, 0, 74, 76, 0, 0, + 0, 76, 0, 66, 74, 0, 67, 0, 76, 0, + 0, 0, 0, 67, 76, 76, 0, 354, 0, 0, + 0, -322, 0, 303, 0, 82, 0, 0, 0, 0, + 0, 84, 0, 0, 237, 0, 0, 82, 0, 0, + 0, 0, 0, 0, 78, 224, 78, 0, 0, 0, + 76, 0, 0, 0, 76, 0, 0, 226, 0, 0, + 0, 0, 76, 306, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 66, 0, 226, 0, + 0, 0, 0, 0, 0, 0, 78, 0, -311, -311, + 78, 84, 0, 0, 0, 78, 78, 0, 0, 0, + 0, 66, 0, 0, 0, 0, 80, 0, -311, -311, + -311, -311, -133, -311, -311, 0, 0, 0, 0, 0, + 66, 0, 66, 0, 0, 78, 0, 239, 0, 78, + 0, 0, 0, 66, 0, 0, 78, -133, -133, -133, + 0, 92, 78, 78, 0, 0, 313, 66, 225, 0, + 0, 0, 0, 0, 0, 218, 0, -133, -133, -133, + -133, 84, -133, -133, 0, 0, 0, 229, 84, 0, + 0, -310, -310, 314, 0, 0, 0, 0, 78, 80, + 0, 0, 78, -311, 0, 303, 0, 0, 264, 0, + 78, -310, -310, -310, -310, 0, -310, -310, 0, 0, + 66, 92, 66, 0, 80, 0, 0, 0, 0, 82, + 0, 0, -133, 93, 0, 0, 0, 0, 0, 117, + 0, 0, 0, 80, 0, 80, 0, 0, -133, 0, + 0, 117, -133, 0, -133, 0, 80, 0, 0, 230, + 0, 0, 66, 0, 0, 0, 66, 0, 0, 0, + 80, 66, 66, 0, 0, 0, 0, 0, 0, 0, + 230, 0, 0, 0, 0, 0, -310, 0, 303, 317, + 0, 92, 0, 93, 0, 0, 0, 0, 92, 0, + 0, 66, 82, 0, 0, 66, 0, 0, 0, 0, + 0, 0, 66, 0, -312, -312, 318, 0, 66, 66, + 0, 0, 0, 80, 0, 80, 0, 82, 0, 0, + 226, 0, 120, 0, -312, -312, -312, -312, 0, -312, + -312, 0, 0, 0, 120, 0, 82, 0, 82, 0, + 0, 322, 0, 0, 66, 0, 0, 0, 66, 82, + 67, 0, 237, 93, 0, 80, 66, 0, 0, 80, + 93, 0, 67, 82, 80, 80, -314, -314, 323, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -314, -314, -314, -314, + 0, -314, -314, 0, 80, 0, 0, 0, 80, -312, + 0, 303, 0, 0, 0, 80, 0, 0, 0, 0, + 0, 80, 80, 117, 0, 0, 82, 0, 82, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 330, + 596, 94, 0, 0, 97, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 239, 0, 80, 0, 0, + 0, 80, 0, 0, -316, -316, 331, 231, 82, 80, + 232, -314, 82, 303, 0, 0, 0, 82, 82, 0, + 0, 0, 0, 218, -316, -316, -316, -316, 265, -316, + -316, 232, 0, 0, 0, 0, 117, 0, 0, 0, + 0, 94, 0, 0, 97, 0, 0, 82, 0, 0, + 0, 82, 230, 0, 0, 84, 120, 0, 82, 0, + 0, 117, 0, 0, 82, 82, 0, 84, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 117, 0, 117, 0, 67, 0, 0, 0, 0, 0, + 395, 0, 0, 117, 0, 0, 99, 0, 0, -316, + 82, 303, 390, 0, 82, 0, 0, 117, 0, 0, + 0, 94, 82, 0, 97, -324, -324, 396, 94, 0, + 0, 97, 233, 0, 0, 0, 0, -319, -319, 120, + 0, 0, 0, 0, 0, -324, -324, -324, -324, 0, + -324, -324, 337, 266, 0, 0, 0, -319, -319, -319, + -319, 0, -319, -319, 120, 0, 99, 67, 0, 0, + 117, 0, 117, 0, 0, 92, 0, -318, -318, 338, + 102, 0, 0, 120, 0, 120, 0, 92, 226, 0, + 0, 0, 67, 0, 0, 0, 120, -318, -318, -318, + -318, 0, -318, -318, 0, 0, 234, 0, 0, 0, + 120, 67, 117, 67, 0, 0, 117, 0, 0, 0, + -324, 117, 117, 0, 67, 0, 0, 234, 0, 0, + 0, 432, -319, 0, 303, 0, 99, 0, 67, 0, + 102, 0, 0, 99, 0, 0, 0, 93, 0, 84, + 0, 117, 0, 0, 0, 117, -313, -313, 433, 93, + 0, 0, 117, 120, 0, 120, 0, 0, 117, 117, + 597, 0, -318, 232, 303, 0, -313, -313, -313, -313, + 0, -313, -313, 0, 0, 0, 0, 0, 0, 0, + 0, 67, 0, 67, 0, 0, 0, 0, 264, 0, + 0, 0, 0, 0, 117, 120, 0, 0, 117, 120, + 102, 0, 0, 0, 120, 120, 117, 102, 0, 0, + 0, 0, 84, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 67, 518, 105, 0, 67, 520, 521, + 522, 0, 67, 67, 120, 0, 0, 84, 120, 0, + 0, -313, 0, 303, 0, 120, 523, 524, 0, 92, + 0, 120, 120, 0, 0, 525, 84, 0, 84, 0, + 230, 0, 67, 0, 0, 0, 67, 0, 0, 84, + 104, 0, 0, 67, 0, 599, 0, 0, 0, 67, + 67, 0, 0, 84, 0, 105, 0, 120, 0, 0, + 0, 120, 0, 0, 0, 0, 236, 0, 0, 120, + 0, 0, 0, 0, 0, 0, 526, 527, 528, 529, + 530, 531, 532, 533, 534, 67, 0, 236, 0, 67, + 0, 93, 92, 0, 0, 0, 0, 67, 0, 0, + 104, 0, 0, 0, 0, 0, 84, 0, 84, 0, + 0, 0, 0, 0, 0, 94, 0, 92, 97, 234, + 0, 0, 0, 0, 0, 105, 0, 94, 0, 0, + 97, 0, 105, 0, 441, 0, 92, 0, 92, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 84, 92, + 0, 0, 84, 0, 0, 106, 0, 84, 84, -327, + -327, 442, 0, 92, 93, 0, 0, 0, 0, 0, + 104, 0, 0, 0, 0, 0, 0, 104, 0, -327, + -327, -327, -327, 0, -327, -327, 0, 84, 0, 93, + 0, 84, 0, 0, 0, 0, 0, 0, 84, 0, + 392, 0, 0, 0, 84, 84, 0, 0, 93, 0, + 93, 0, 0, 0, 107, 106, 92, 0, 92, 0, + 0, 93, 0, 0, 0, -320, -320, 0, 0, 115, + 99, 0, 0, 0, 0, 93, 0, 0, 265, 0, + 84, 232, 99, 0, 84, -320, -320, -320, -320, 0, + -320, -320, 84, 0, -327, 0, 303, 0, 92, 0, + 0, 0, 92, 0, 0, 0, 0, 92, 92, 0, + 0, 0, 0, 0, 107, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 106, 0, 0, 93, 115, + 93, 0, 106, 0, 0, 0, 0, 92, 0, 94, + 0, 92, 97, 0, 102, 0, 518, 519, 92, 0, + 520, 521, 522, 0, 92, 92, 102, 0, 0, 236, + -320, 0, 303, 0, 0, 0, 0, 0, 523, 524, + 93, 0, 0, 0, 93, 0, 0, 525, 0, 93, + 93, 0, 0, 0, 107, 0, 0, 0, 0, 0, + 92, 107, 0, 266, 92, 0, 0, 0, 0, 115, + 0, 0, 92, 0, 0, 0, 115, 0, 0, 93, + 0, 0, 94, 93, 0, 97, 0, 0, 0, 0, + 93, 0, 0, 520, 521, 522, 93, 93, 526, 527, + 528, 529, 530, 531, 532, 533, 534, 94, 0, 0, + 97, 523, 524, 681, 0, 0, 0, 0, 0, 0, + 525, 0, 0, 0, 99, 0, 94, 0, 94, 97, + 0, 97, 93, 0, 0, 0, 93, 234, 0, 94, + 0, 0, 97, 0, 93, 2, 0, 0, 0, 0, + 0, 152, 153, 94, 0, 0, 97, 0, 0, 0, + 0, 0, 154, 155, 156, 0, 157, 0, 0, 105, + 159, 526, 527, 528, 529, 530, 531, 532, 533, 534, + 0, 105, 160, 0, 161, 0, 0, 27, 28, 0, + 518, 519, 30, 163, 520, 521, 522, 99, 102, 0, + 0, 164, 0, 0, 0, 0, 94, 0, 94, 97, + 0, 97, 523, 524, 104, 0, 0, 0, 0, 0, + 0, 525, 99, 0, 41, 0, 104, 0, 0, 0, + 0, 0, 0, 0, 0, 165, 0, 0, 0, 48, + 0, 99, 0, 99, 0, 0, 0, 166, 94, 0, + 0, 97, 94, 0, 99, 97, 0, 94, 94, 0, + 97, 97, 54, 55, 0, 0, 0, 0, 99, 0, + 0, 102, 526, 527, 528, 529, 530, 531, 532, 533, + 534, 0, 0, 0, 0, 54, 55, 94, 0, 0, + 97, 94, 0, 0, 97, 0, 102, 0, 94, 0, + 0, 97, 0, 0, 94, 94, 0, 97, 97, 0, + 0, 0, 0, 0, 0, 102, 0, 102, 0, 0, + 0, 99, 0, 99, 0, 0, 0, 0, 102, 106, + 0, 0, 0, 0, 0, 0, 0, 236, 0, 0, + 94, 106, 102, 97, 94, 0, 0, 97, 0, 0, + 0, 0, 94, 105, 0, 97, 0, 0, 0, 0, + 0, 0, 0, 99, 0, 0, 0, 99, 0, 0, + 0, 0, 99, 99, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 107, 0, + 0, 0, 0, 0, 0, 102, 0, 102, 104, 0, + 107, 0, 99, 115, 0, 0, 99, 0, 0, 0, + 0, 0, 0, 99, 0, 115, 0, 518, 519, 99, + 99, 520, 521, 522, 0, 0, 105, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 102, 0, 523, + 524, 102, 0, 0, 0, 0, 102, 102, 525, 0, + 0, 105, 0, 0, 0, 99, 0, 0, 0, 99, + 0, 0, 0, 0, 0, 0, 0, 99, 0, 0, + 105, 104, 105, 0, 0, 0, 102, 0, 0, 0, + 102, 0, 0, 105, 0, 0, 0, 102, 0, 0, + 0, 0, 0, 102, 102, 0, 104, 105, 403, 526, + 527, 528, 529, 530, 531, 532, 533, 534, 0, 0, + 0, 0, 0, 106, 0, 104, 0, 104, 0, 0, + 0, 0, 0, -328, -328, 404, 0, 0, 104, 102, + 0, 0, 0, 102, 0, 0, 0, 0, 0, 0, + 0, 102, 104, -328, -328, -328, -328, 0, -328, -328, + 105, 0, 105, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 495, 496, 497, 498, 499, 500, 501, + 502, 503, 107, 0, 0, 0, 504, 505, 506, 507, + 508, 509, 510, 511, 0, 0, 106, 115, 0, 0, + 0, 0, 105, 0, 0, 104, 105, 104, 0, 0, 0, 105, 105, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 107, 0, 107, 296, - 104, 0, 0, 0, 104, 0, 0, 0, 0, 0, - 0, 105, 104, 0, 0, 105, 0, 106, 115, 0, - 0, 106, 105, 0, 0, 0, 106, 106, 0, 105, - 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 107, 0, 0, 0, 107, 0, 0, 0, 0, 107, - 107, 115, 0, 0, 0, 430, 106, 0, 0, 0, - 106, 0, 0, 0, 0, 105, 0, 106, 0, 105, - 0, 115, 0, 115, 106, 106, 0, 105, 0, 107, - 0, 0, 0, 107, 115, 483, 0, 0, 0, 0, - 107, 0, 0, 0, 0, 0, 0, 107, 107, 115, - 0, 0, 0, 325, 0, 0, 0, 0, 0, 0, - 106, 0, 0, 0, 106, 0, 0, 0, 0, 0, - 0, 0, 106, 0, 0, 0, 0, 0, -319, -319, - 326, 0, 0, 107, 0, 0, 0, 107, 0, 0, - 0, 0, 0, 0, 539, 107, 541, 0, -319, -319, - -319, -319, 546, -319, -319, 0, 0, 115, 0, 115, - 0, 0, 0, 0, 0, 0, 0, 0, 494, 495, - 496, 497, 498, 499, 500, 501, 502, 0, 0, 0, - 0, 503, 504, 505, 506, 507, 508, 509, 510, 0, - 0, 565, 0, 0, 569, 0, 0, 0, 0, 0, - 0, 115, 0, 0, 0, 115, 204, 206, 208, 581, - 115, 115, 0, 0, 0, 0, 0, 0, 216, 0, - 0, 0, 0, -319, 0, 302, 0, 0, 0, 0, - 597, 0, 251, 0, 252, 254, 519, 520, 521, 260, - 115, 0, 0, 0, 115, 0, 0, 0, 0, 0, - 286, 115, 0, 0, 522, 523, 0, 0, 115, 115, - 307, 0, 307, 524, 307, 307, 0, 307, 0, 307, - 0, 307, 0, 307, 0, 307, 0, 307, 0, 307, - 0, 307, 360, 307, 0, 0, 0, 307, 0, 0, - 307, 0, 0, 307, 115, 307, 0, 0, 115, 0, - 0, 0, 0, 0, 0, 0, 115, 0, 0, 0, - 0, 307, 0, 307, 525, 526, 527, 528, 529, 530, - 531, 532, 533, 0, 0, 0, 0, 0, 0, 0, + 0, 106, 0, 0, 405, 0, 0, 0, -328, 0, + 303, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 106, 105, 106, 0, 0, 105, 0, 104, 0, 0, + 0, 104, 105, 106, 0, 107, 104, 104, 105, 105, + 0, 0, 0, 0, 0, 0, 0, 106, 0, 0, + 115, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 107, 0, 0, 0, 0, 0, 104, 0, 0, 0, + 104, 0, 0, 0, 105, 115, 0, 104, 105, 107, + 0, 107, 0, 104, 104, 0, 105, 0, 0, 0, + 0, 0, 107, 0, 115, 0, 115, 0, 0, 0, + 106, 0, 106, 0, 0, 0, 107, 115, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 104, + 0, 115, 0, 104, 0, 0, 0, 0, 0, 0, + 0, 104, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 106, 0, 0, 0, 106, 0, 0, 0, + 0, 106, 106, 0, 0, 0, 0, 0, 0, 107, + 0, 107, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 115, 0, 115, 0, 0, 0, + 0, 106, 0, 0, 0, 106, 0, 0, 0, 0, + 0, 0, 106, 0, 0, 0, 0, 0, 106, 106, + 0, 107, 0, 0, 0, 107, 0, 0, 0, 0, + 107, 107, 0, 0, 0, 0, 115, 0, 0, 0, + 115, 0, 0, 0, 0, 115, 115, 0, 0, 0, + 0, 0, 0, 0, 106, 0, 0, 0, 106, 0, + 107, 0, 0, 0, 107, 0, 106, 0, 204, 206, + 208, 107, 0, 0, 0, 115, 0, 107, 107, 115, + 216, 0, 0, 0, 0, 0, 115, 0, 0, 0, + 0, 0, 115, 115, 251, 0, 252, 254, 0, 0, + 0, 261, 142, 143, 0, 0, 0, 0, 0, 0, + 0, 0, 287, 107, 0, 0, 0, 107, 0, 0, + 0, 0, 308, 0, 308, 107, 308, 308, 115, 308, + 0, 308, 115, 308, 0, 308, 0, 308, 0, 308, + 115, 308, 0, 308, 361, 308, 0, 0, 0, 308, + 0, 0, 308, 0, 0, 308, 0, 308, 0, 0, + 0, 0, 297, 2, 0, 4, 5, 0, 6, 152, + 153, 9, 0, 308, 0, 308, 0, 11, 12, 13, + 154, 155, 156, 0, 157, 0, 0, 158, 159, 0, + 0, 0, 20, 21, 0, 0, 0, 0, 0, 0, + 160, 0, 161, 485, 485, 27, 28, 0, 0, 162, + 30, 163, 0, 0, 0, 0, 0, 0, 431, 164, + 0, 0, 0, 493, 0, 0, 0, 0, 36, 0, + 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 41, 0, 0, 0, 0, 0, 484, 0, + 0, 0, 0, 165, 45, 0, 0, 48, 0, 0, + 0, 0, 51, 0, 485, 166, 0, 0, 548, 0, + 0, 167, 168, 0, 0, 0, 0, 0, 53, 279, + 0, 0, 577, 56, 0, 57, 0, 58, 0, 0, + 0, 0, 0, 0, 0, 554, 548, 485, 0, 0, + 0, 0, 0, 0, 0, 0, 565, 540, 0, 542, + 0, 0, 574, 578, 0, 547, 0, 316, 0, 320, + 321, 0, 325, 0, 329, 0, 333, 0, 336, 591, + 340, 0, 343, 594, 350, 0, 357, 383, 389, 0, + 0, 0, 397, 0, 0, 402, 0, 0, 408, 0, + 413, 0, 606, 607, 566, 0, 0, 570, 0, 304, + 307, 0, 315, 0, 319, 0, 439, 324, 445, 328, + 0, 332, 435, 589, 0, 339, 0, 342, 0, 0, + 0, 356, 0, 0, 0, 391, 394, 0, 0, 0, + 401, 0, 406, 0, 605, 412, 0, -325, -325, 436, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 484, 484, 0, 0, 0, 0, 0, 0, 2, - 0, 4, 5, 0, 6, 152, 153, 9, 0, 0, - 0, 492, 0, 11, 12, 13, 154, 155, 156, 0, - 157, 0, 0, 158, 159, 0, 0, 0, 20, 21, - 0, 0, 0, 0, 0, 642, 160, 0, 161, 0, - 0, 27, 28, 0, 0, 162, 30, 163, 0, 0, - 0, 0, 484, 0, 0, 164, 547, 0, 0, 0, - 0, 0, 0, 658, 36, 0, 38, 39, 0, 0, - 0, 663, 0, 0, 669, 0, 670, 0, 41, 0, - 0, 0, 0, 553, 547, 484, 0, 0, 0, 165, - 45, 0, 0, 48, 564, 0, 0, 0, 51, 602, - 573, 166, 0, 0, 0, 0, 0, 167, 168, 0, - 0, 0, 0, 0, 53, 169, 583, 0, 0, 56, - 586, 57, 0, 58, 692, 0, 693, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 702, 0, 598, - 599, 0, 0, 0, 708, 0, 0, 711, 712, 0, - 715, 0, 0, 721, 0, 0, 0, 0, 0, 0, - 725, 0, 0, 0, 0, 0, 0, 0, 0, 743, - 0, 0, -3, 1, 0, -26, -26, 2, 3, 4, - 5, 0, 6, 7, 8, 9, 10, 0, 0, 0, - 0, 11, 12, 13, 14, 15, 16, 17, 18, 0, - 0, 0, 19, 0, 0, 0, 20, 21, 0, 22, - 0, 0, 0, 0, 23, 24, 25, 26, 0, 27, - 28, 0, 0, 29, 30, 31, 0, 0, 0, 0, - 0, 0, 0, 32, 33, 34, 0, 0, 0, 0, - 35, 773, 36, 37, 38, 39, 0, 0, 286, 0, - 0, 0, 0, 0, 0, 40, 41, 42, 43, 0, - 0, 0, 0, 0, 286, 0, 0, 44, 45, 46, - 47, 48, 49, 0, 50, 0, 51, 0, 0, 52, - 0, 0, 0, 0, 0, 0, 0, 0, 796, 0, - 0, 0, 53, 0, 54, 55, 801, 56, 802, 57, - 0, 58, 0, 0, 0, 0, 0, 814, 0, 0, - 2, 0, 4, 358, 0, 359, 152, 153, 9, 0, - 0, 0, 0, 0, 11, 12, 13, 154, 155, 156, - 0, 157, 0, 0, 827, 159, 0, 0, 0, 672, - 829, 0, 831, 0, 0, 0, 0, 160, 673, 161, - 0, 0, 27, 28, 0, 0, 843, 30, 163, 846, - 848, 849, 0, 0, 0, 852, 164, 0, 855, 0, - 0, 0, 0, 0, 0, 36, 0, 38, 39, 0, - 694, 0, 695, 0, 0, 0, 517, 518, 0, 41, - 519, 520, 521, 867, 0, 0, 0, 0, 0, 0, - 165, 45, 0, 0, 48, 717, 0, 0, 522, 523, - 0, 0, 166, 0, 0, 0, 0, 524, 730, 0, - 0, 260, 0, 0, 484, 53, 0, 0, 0, 0, - 272, 0, 57, 895, 0, 0, 0, 0, 0, 0, - 900, 0, 0, 903, 0, 0, 0, 0, 0, 190, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 211, - 212, 0, 0, 0, 0, 0, 925, 0, 525, 526, - 527, 528, 529, 530, 531, 532, 533, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 270, - 770, 771, 0, 0, 944, 190, 283, 0, 0, 0, - 0, 0, 951, 952, 0, 0, 0, 0, 958, 0, - 484, 0, 0, 0, 0, 0, 963, 964, 0, 0, - 967, 0, 0, 969, 970, 0, 0, 0, 0, 0, + 434, 438, 0, 444, 0, 0, 0, -325, -325, -325, + -325, 0, -325, -325, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 495, 496, 497, + 498, 499, 500, 501, 502, 503, 0, 0, 0, 0, + 504, 505, 506, 507, 508, 509, 510, 511, 0, 0, + 0, 287, 0, 304, 307, 315, 319, 324, 328, 332, + 0, 339, 342, 0, 356, 391, 394, 287, 401, 0, + 406, 412, 0, 0, 0, -621, -621, -621, 0, 0, + 0, 0, -325, 434, 303, 438, 444, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 484, 0, 0, 797, 0, 0, 0, 799, 800, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 807, 0, - 717, 0, 0, 989, 815, 807, 991, 0, 0, 0, - 820, 730, 190, 0, 0, 0, 0, 0, 0, 0, - 823, 0, 0, 482, 0, 0, 0, 0, 0, 0, - 488, 0, 0, 0, 0, 0, 0, 489, 0, 0, - 0, 0, 0, 0, 0, 0, 490, 491, 0, 0, - 0, 0, 0, 0, 0, 2, 0, 4, 5, 0, - 6, 152, 153, 9, 0, 0, 0, 0, 0, 11, - 12, 13, 154, 155, 156, 0, 157, 0, 0, 158, - 159, 0, 0, 0, 20, 21, 0, 869, 870, 0, - 0, 0, 160, 0, 161, 0, 0, 27, 28, 0, - 0, 162, 30, 163, 730, 0, 0, 0, 0, 0, - 0, 164, 891, 0, 891, 0, 0, 0, 0, 0, - 36, 0, 38, 39, 559, 0, 0, 891, 0, 891, - 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 165, 45, 0, 580, 48, - 915, 190, 0, 0, 51, 921, 0, 166, 815, 0, - 0, 0, 0, 167, 168, 0, 0, 0, 0, 0, - 53, 278, 0, 0, 729, 56, 0, 57, 0, 58, - 601, 603, 0, 0, 607, 0, 0, 0, 0, 0, - 0, 608, 0, 949, 0, 609, 0, 0, 0, 0, - 610, 0, 959, 0, 611, 962, 0, 0, 612, 0, - 0, 966, 613, 0, 0, 614, 0, 0, 0, 615, - 0, 0, 0, 616, 0, 0, 0, 0, 0, 0, - 618, 0, 0, 0, 0, 2, 0, 0, 0, 0, - 0, 152, 153, 985, 0, 0, 0, 0, 0, 0, - 0, 0, 154, 155, 156, 0, 157, 0, 0, 0, - 159, 0, 0, 0, 0, 0, 0, 0, 620, 0, - 621, 0, 160, 622, 161, 0, 623, 27, 28, 0, - 0, 624, 30, 163, 0, 0, 0, 627, 1011, 1012, - 0, 164, 0, 0, 628, 629, 630, 631, 632, 633, - 634, 434, 38, 39, 0, 0, 0, 0, 636, 0, - 639, 0, 0, 640, 41, 0, 0, 0, 0, 641, - 0, 0, 0, 0, 0, 165, -329, -329, 435, 48, - 0, 0, 0, 0, 0, 0, 0, 166, 0, 0, - 0, 0, 0, 0, 0, 0, -329, -329, -329, -329, - 53, -329, -329, 0, 0, 272, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 494, 495, 496, 497, - 498, 499, 500, 501, 502, 0, 0, 0, 0, 503, - 504, 505, 506, 507, 508, 509, 510, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 674, 675, 676, 677, - 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, - 688, 689, 690, 691, -629, -629, -629, 0, 0, 0, - 0, -329, 0, 302, 0, 0, 2, 0, 4, 5, - 703, 6, 152, 153, 9, 0, 710, 0, 0, 0, - 11, 12, 13, 154, 155, 156, 0, 157, 0, 0, - 0, 159, 0, 0, 0, 734, 0, 739, 0, 0, - 0, 0, 0, 160, 0, 161, 0, 0, 27, 28, - 0, 747, 162, 30, 163, 517, 0, 0, 0, 519, - 520, 521, 164, 0, 603, 0, 0, 0, 0, 0, - 0, 36, 0, 38, 39, 0, 0, 522, 523, 0, - 0, 0, 0, 0, 0, 41, 524, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 165, 45, 0, 0, - 48, 0, 190, 0, 0, 51, 0, 0, 166, 0, - 190, 0, 0, 0, 0, 0, 0, 0, 778, 0, - 0, 53, 0, 783, 0, 0, 56, 0, 57, 0, - 58, 0, 0, 0, 0, 0, 0, 525, 526, 527, - 528, 529, 530, 531, 532, 533, 0, 0, 0, 0, - 0, 0, 0, 303, 306, 0, 314, 0, 318, 0, - 0, 323, 0, 327, 0, 331, 0, 0, 0, 338, - 0, 341, 0, 0, 0, 355, 0, 0, 0, 390, - 393, 0, 0, 0, 400, 0, 405, 0, 734, 411, - 0, 0, 0, 0, 0, 494, 495, 496, 497, 498, - 499, 500, 501, 502, 433, 437, 0, 443, 503, 504, - 505, 506, 507, 508, 509, 510, 0, 603, 0, 0, - 0, 839, 0, 0, 0, 0, 0, 190, 0, 0, - 0, 0, 0, 190, 0, 0, 0, 0, 0, 856, - 0, 0, 0, 0, 0, 0, 917, 858, 0, 0, - 0, 0, 862, 0, 0, 0, 0, 303, 306, 314, - 318, 323, 327, 331, 0, 338, 341, 0, 355, 390, - 393, 0, 400, 0, 405, 411, 0, 0, 0, 0, - 0, 734, 0, 739, 0, 0, 0, 433, 0, 437, - 443, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 303, 306, 314, 318, 323, 327, - 331, 0, 338, 341, 0, 355, 390, 393, 907, 400, - 405, 411, 0, 190, 433, 437, 443, 494, 495, 496, - 497, 498, 499, 500, 501, 502, 0, 0, 0, 0, - 503, 504, 505, 506, 507, 508, 509, 510, 0, 355, - 390, 0, 405, 437, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 945, -2, 291, 0, -26, - -26, 2, 3, 4, 5, 0, 6, 7, 8, 9, - 10, 0, 0, 0, 664, 11, 12, 13, 14, 15, - 16, 17, 18, 0, 0, 0, 19, 0, 0, 0, - 20, 21, 0, 22, 0, 0, 190, 0, 23, 24, - 25, 26, 0, 27, 28, 0, 0, 29, 30, 31, - 0, 0, 0, 0, 0, 0, 0, 32, 33, 34, - 0, 0, 0, 0, 35, 0, 36, 37, 38, 39, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, - 41, 42, 43, 0, 0, 0, 0, 0, 331, 0, - 0, 44, 45, 46, 47, 48, 49, 0, 50, 0, - 51, 0, 0, 52, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 53, 0, 54, 55, - 0, 56, 0, 57, 454, 58, -108, -108, 2, 3, - 4, 5, 0, 6, 7, 455, 9, 10, -115, -115, - -115, -115, 11, 12, 13, 14, 15, 16, 456, 457, + 304, 307, 315, 319, 324, 328, 332, 0, 339, 342, + 0, 356, 391, 394, 0, 401, 406, 412, 0, 0, + 434, 438, 444, 0, 0, 0, 0, 0, 0, 0, + 518, 519, 0, 0, 520, 521, 522, 0, 0, 652, + 0, 0, 682, 0, 0, 0, 356, 391, 0, 406, + 438, 683, 523, 524, 0, 0, 0, 0, 0, 0, + 0, 525, 0, 0, 0, 0, 0, 668, 0, 0, + 0, 0, 0, 0, 0, 673, 0, 0, 679, 0, + 680, 0, 0, 704, 0, 705, 495, 496, 497, 498, + 499, 500, 501, 502, 503, 0, 0, 0, 0, 504, + 505, 506, 507, 508, 509, 510, 511, 0, 726, 602, + 0, 0, 526, 527, 528, 529, 530, 531, 532, 533, + 534, 578, 0, 0, 0, 0, 0, 0, 702, 0, + 703, 261, 0, 0, 485, 0, 0, 910, 0, 0, + 0, 712, 0, 0, 0, 326, 0, 0, 718, 0, + 0, 721, 722, 0, 724, 332, 0, 730, 0, 0, + 0, 0, 0, 0, 734, 0, 0, 0, 0, 0, + -315, -315, 327, 0, 0, 0, 0, 0, 0, 0, + 745, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -315, -315, -315, -315, 0, -315, -315, 0, 0, 0, + 0, 0, 771, 772, 0, 0, 0, 0, 0, 0, + 495, 496, 497, 498, 499, 500, 501, 502, 503, 0, + 0, 0, 485, 504, 505, 506, 507, 508, 509, 510, + 511, 0, 0, 190, 0, 0, 0, 0, 0, 0, + 0, 518, 519, 211, 212, 520, 521, 522, 0, 0, + 0, 0, 485, 0, 774, 797, 0, 0, 0, 799, + 800, 0, 0, 523, 524, -315, 0, 303, 0, 807, + 0, 726, 525, 271, 0, 815, 807, 0, 0, 190, + 284, 820, 0, 578, 822, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 796, 0, 0, 0, 0, 0, 0, 0, 801, + 0, 802, 0, 0, 0, 0, 0, 0, 0, 814, + 827, 0, 0, 526, 527, 528, 529, 530, 531, 532, + 533, 534, 0, 0, 0, 0, 0, 0, 0, 826, + 0, 0, 0, 0, 828, 0, 830, 0, 0, 864, + 865, 0, 0, 0, 0, 0, 190, 0, 0, 0, + 838, 0, 0, 841, 843, 844, 438, 483, 0, 847, + 0, 0, 850, 885, 489, 885, 0, 0, 0, 391, + 0, 490, 406, 0, 885, 0, 885, 0, 0, 0, + 491, 492, 0, 0, 0, 0, 862, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 908, 0, 0, + 0, 0, 914, 0, 0, 815, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, + 0, 888, 0, 0, 152, 153, 0, 0, 893, 0, + 0, 896, 0, 0, 0, 154, 155, 156, 941, 157, + 0, 0, 0, 159, 0, 0, 0, 951, 0, 0, + 954, 0, 0, 0, 918, 160, 958, 161, 560, 0, + 27, 28, 0, 0, 0, 30, 163, 0, 0, 0, + 0, 0, 582, 0, 164, 0, 0, 0, 0, 0, + 937, 0, 0, 588, 0, 0, 190, 977, 943, 944, + 0, 0, 0, 0, 950, 0, 0, 805, 0, 0, + 0, 0, 955, 956, 0, 0, 959, 0, 165, 961, + 962, 0, 48, 0, 0, 611, 613, 0, 0, 617, + 166, 0, 0, 0, 0, 0, 618, 0, 0, 0, + 619, 0, 1003, 1004, 806, 620, 0, 0, 0, 621, + 0, 0, 0, 622, 0, 0, 0, 623, 981, 0, + 624, 983, 0, 0, 625, 0, 0, 0, 626, 0, + 0, 0, 0, 0, 0, 628, 0, 0, 0, 0, + 2, 0, 0, 0, 0, 0, 152, 153, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 154, 155, 156, + 0, 157, 0, 0, 0, 159, 0, 0, 0, 0, + 0, 0, 0, 630, 0, 631, 0, 160, 632, 161, + 0, 633, 27, 28, 0, 0, 634, 30, 163, 0, + 0, 0, 637, 0, 0, 0, 164, 0, 0, 638, + 639, 640, 641, 642, 643, 644, 398, 38, 39, 0, + 0, 0, 0, 646, 0, 649, 0, 0, 650, 41, + 0, 0, 0, 0, 651, 0, 0, 0, 0, 0, + 165, -326, -326, 399, 48, 0, 0, 0, 0, 0, + 0, 0, 166, 0, 0, 0, 0, 0, 0, 0, + 0, -326, -326, -326, -326, 53, -326, -326, 0, 0, + 273, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 495, 496, 497, 498, 499, 500, 501, 502, 503, + 0, 0, 0, 0, 504, 505, 506, 507, 508, 509, + 510, 511, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 684, 685, 686, 687, 688, 689, 690, 691, 692, + 693, 694, 695, 696, 697, 698, 699, 700, 701, 0, + 0, 0, 0, 0, 0, 0, -326, 0, 303, 0, + 0, 0, 0, 0, 0, 713, 0, 0, 0, 0, + 0, 720, 0, 0, 0, 0, 0, 0, 495, 496, + 497, 498, 499, 500, 501, 502, 503, 0, 0, 0, + 582, 504, 505, 506, 507, 508, 509, 510, 511, 741, + 0, 495, 496, 497, 498, 499, 500, 501, 502, 503, + 0, 0, 0, 749, 504, 505, 506, 507, 508, 509, + 510, 511, 0, 0, 0, 0, 0, 0, 613, 945, + 0, 0, 0, -3, 1, 0, -26, -26, 2, 3, + 4, 5, 0, 6, 7, 8, 9, 10, 0, 0, + 0, 0, 11, 12, 13, 14, 15, 16, 17, 18, + 0, 0, 0, 19, 0, 0, 190, 20, 21, 0, + 22, 0, 0, 0, 190, 23, 24, 25, 26, 0, + 27, 28, 779, 0, 29, 30, 31, 784, 0, 0, + 0, 0, 0, 0, 32, 33, 34, 0, 0, 0, + 0, 35, 0, 36, 37, 38, 39, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 40, 41, 42, 43, + 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, + 46, 47, 48, 49, 0, 50, 0, 51, 0, 0, + 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 582, 53, 0, 54, 55, 0, 56, 0, + 57, 0, 58, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 613, 0, 0, 0, 834, 0, 0, 0, + 0, 0, 190, 0, 0, 0, 0, 0, 190, 0, + 0, 0, 0, 0, 851, 0, 0, 0, 0, 0, + 0, 853, 0, 0, 0, 0, 857, -2, 292, 0, + -26, -26, 2, 3, 4, 5, 0, 6, 7, 8, + 9, 10, 0, 0, 0, 0, 11, 12, 13, 14, + 15, 16, 17, 18, 0, 0, 741, 19, 0, 0, + 0, 20, 21, 0, 22, 0, 0, 0, 0, 23, + 24, 25, 26, 0, 27, 28, 0, 0, 29, 30, + 31, 0, 0, 0, 0, 899, 0, 900, 32, 33, + 34, 0, 190, 0, 0, 35, 0, 36, 37, 38, + 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 40, 41, 42, 43, 0, 0, 0, 0, 0, 0, + 0, 0, 44, 45, 46, 47, 48, 49, 0, 50, + 0, 51, 0, 0, 52, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 53, 0, 54, + 55, 0, 56, 0, 57, 0, 58, 0, 0, 0, + 0, 0, 0, 0, 455, 0, -108, -108, 2, 3, + 4, 5, 190, 6, 7, 456, 9, 10, -115, -115, + -115, -115, 11, 12, 13, 14, 15, 16, 457, 458, 0, 0, 0, 19, 0, 0, 0, 20, 21, 0, 22, -115, -115, -115, -115, 23, 24, 25, 26, -115, 27, 28, 0, 0, 29, 30, 31, 0, 0, 0, @@ -2126,164 +2101,49 @@ static const yytype_int16 yytable[] = 46, 47, 48, 49, -115, 50, -115, 51, 0, 0, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 0, 54, 55, 0, 56, 0, - 57, -115, 58, 0, 0, 0, 0, 0, 0, 0, - 454, 0, -108, -108, 2, 3, 4, 5, 0, 6, - 7, 455, 9, 10, 0, 0, -114, 0, 11, 12, - 13, 14, 15, 16, 456, 457, 0, 0, 0, 19, - 0, 0, 0, 20, 21, 0, 22, 0, 0, 0, - 0, 23, 24, 25, 26, 390, 27, 28, 405, 0, - 29, 30, 31, 0, 0, 0, 0, 0, 0, 0, - 32, 33, 34, -114, -114, -114, -114, 35, 0, 36, - 37, 38, 39, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 40, 41, 42, 43, 0, 0, 0, 0, - 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, - 0, 50, 0, 51, 0, 0, 52, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, - 0, 54, 55, 0, 56, 0, 57, 454, 58, -108, - -108, 2, 3, 4, 5, 0, 6, 7, 455, 9, - 10, 0, 0, -529, 0, 11, 12, 13, 14, 15, - 16, 456, 457, 0, 0, 0, 19, 0, 0, 0, - 20, 21, 0, 22, -529, -529, -529, 0, 23, 24, - 25, 26, 0, 27, 28, 0, 0, 29, 30, 31, - 0, 0, 0, 0, 0, 0, 0, 32, 33, 34, - 0, 0, 437, 0, 35, 0, 36, 37, 38, 39, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, - 41, 42, 43, 0, 0, 0, 0, 0, 0, 0, - 0, 44, 45, 46, 47, 48, 49, 0, 50, 0, - 51, 0, 0, 52, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 53, 0, 54, 55, - 0, 56, 0, 57, 454, 58, -108, -108, 2, 3, - 4, 5, 0, 6, 7, 455, 9, 10, 0, 0, - -584, 0, 11, 12, 13, 14, 15, 16, 456, 457, - 0, 0, 0, 19, 0, 0, 0, 20, 21, 0, - 22, -584, -584, 0, 0, 23, 24, 25, 26, 0, - 27, 28, 0, 0, 29, 30, 31, 0, 0, 0, - 0, 0, 0, 0, 32, 33, 34, 0, 0, 0, - 0, 35, 0, 36, 37, 38, 39, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 40, 41, 42, 43, - 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, - 46, 47, 48, 49, -584, 50, 0, 51, 0, 0, - 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 53, 0, 54, 55, 0, 56, 0, - 57, 454, 58, -108, -108, 2, 3, 4, 5, 0, - 6, 7, 455, 9, 10, 0, 0, -530, 0, 11, - 12, 13, 14, 15, 16, 456, 457, 0, 0, 0, - 19, 0, 0, 0, 20, 21, 0, 22, -530, -530, - -530, 0, 23, 24, 25, 26, 0, 27, 28, 0, - 0, 29, 30, 31, 0, 0, 0, 0, 0, 0, - 0, 32, 33, 34, 0, 0, 0, 0, 35, 0, - 36, 37, 38, 39, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 40, 41, 42, 43, 0, 0, 0, - 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, - 49, 0, 50, 0, 51, 0, 0, 52, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 53, 0, 54, 55, 0, 56, 0, 57, 454, 58, - -108, -108, 2, 3, 4, 5, 0, 6, 7, 455, - 9, 10, 0, 0, -585, 0, 11, 12, 13, 14, - 15, 16, 456, 457, 0, 0, 0, 19, 0, 0, - 0, 20, 21, 0, 22, -585, -585, 0, 0, 23, - 24, 25, 26, 0, 27, 28, 0, 0, 29, 30, - 31, 0, 0, 0, 0, 0, 0, 0, 32, 33, - 34, 0, 0, 0, 0, 35, 0, 36, 37, 38, - 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 40, 41, 42, 43, 0, 0, 0, 0, 0, 0, - 0, 0, 44, 45, 46, 47, 48, 49, -585, 50, - 0, 51, 0, 0, 52, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 53, 0, 54, - 55, 0, 56, 0, 57, 454, 58, -108, -108, 2, - 3, 4, 5, 0, 6, 7, 455, 9, 10, -114, - -114, -114, -114, 11, 12, 13, 14, 15, 16, 456, - 457, 0, 0, 0, 19, 0, 0, 0, 20, 21, - 0, 22, 0, 0, 0, 0, 23, 24, 25, 26, - 0, 27, 28, 0, 0, 29, 30, 31, 0, 0, - 0, 0, 0, 0, 0, 32, 33, 34, 0, 0, - 0, 0, 35, 0, 36, 37, 38, 39, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 40, 41, 42, - 43, 0, 0, 0, 0, 0, 0, 0, 0, 44, - 45, 46, 47, 48, 49, 0, 50, 0, 51, 0, - 0, 52, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 53, 0, 54, 55, 0, 56, - 0, 57, 454, 58, -108, -108, 2, 3, 4, 5, - 0, 6, 7, 455, 9, 10, 0, 0, -114, 0, - 11, 12, 13, 14, 15, 16, 456, 457, 0, 0, - 0, 19, 0, 0, 0, 20, 21, 0, 22, -114, - -114, -114, 0, 23, 24, 25, 26, 0, 27, 28, - 0, 0, 29, 30, 31, 0, 0, 0, 0, 0, - 0, 0, 32, 33, 34, 0, 0, 0, 0, 35, - 0, 36, 37, 38, 39, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 40, 41, 42, 43, 0, 0, - 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, - 48, 49, 0, 50, 0, 51, 0, 0, 52, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 53, 0, 54, 55, 0, 56, 0, 57, 454, - 58, -108, -108, 2, 3, 4, 5, 0, 6, 7, - 455, 9, 10, 0, 0, -114, 0, 11, 12, 13, - 14, 15, 16, 456, 457, 0, 0, 0, 19, 0, - 0, 0, 20, 21, 0, 22, -114, -114, 0, 0, - 23, 24, 25, 26, 0, 27, 28, 0, 0, 29, - 30, 31, 0, 0, 0, 0, 0, 0, 0, 32, - 33, 34, 0, 0, 0, 0, 35, 0, 36, 37, - 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 40, 41, 42, 43, 0, 0, 0, 0, 0, - 0, 0, 0, 44, 45, 46, 47, 48, 49, -114, - 50, 0, 51, 0, 0, 52, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 53, 0, - 54, 55, 0, 56, 0, 57, 454, 58, -108, -108, - 2, 3, 4, 5, 0, 6, 7, 455, 9, 10, - 0, 0, -114, 0, 11, 12, 13, 14, 15, 16, - 456, 457, 0, 0, 0, 19, 0, 0, 0, 20, - 21, 0, 22, 0, -114, -114, 0, 23, 24, 25, - 26, 0, 27, 28, 0, 0, 29, 30, 31, 0, - 0, 0, 0, 0, 0, 0, 32, 33, 34, 0, - 0, 0, 0, 35, 0, 36, 37, 38, 39, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 40, 41, - 42, 43, 0, 0, 0, 0, 0, 0, 0, 0, - 44, 45, 46, 47, 48, 49, 0, 50, 0, 51, - 0, 0, 52, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 53, 0, 54, 55, 0, - 56, 0, 57, 454, 58, -108, -108, 2, 3, 4, - 5, 0, 6, 7, 455, 9, 10, 0, 0, -114, - 0, 11, 12, 13, 14, 15, 16, 456, 457, 0, + 57, -115, 58, 455, 0, -108, -108, 2, 3, 4, + 5, 0, 6, 7, 456, 9, 10, 0, 0, -114, + 0, 11, 12, 13, 14, 15, 16, 457, 458, 0, 0, 0, 19, 0, 0, 0, 20, 21, 0, 22, 0, 0, 0, 0, 23, 24, 25, 26, 0, 27, 28, 0, 0, 29, 30, 31, 0, 0, 0, 0, - 0, 0, 0, 32, 33, 34, 0, 0, -114, -114, + 0, 0, 0, 32, 33, 34, -114, -114, -114, -114, 35, 0, 36, 37, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 41, 42, 43, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 0, 50, 0, 51, 0, 0, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 0, 54, 55, 0, 56, 0, 57, - 454, 58, -108, -108, 2, 3, 4, 5, 0, 6, - 7, 455, 9, 10, 0, 0, -114, 0, 11, 12, - 13, 14, 15, 16, 456, 457, 0, 0, 0, 19, - 0, 0, 0, 20, 21, 0, 22, 0, 0, 0, + 455, 58, -108, -108, 2, 3, 4, 5, 0, 6, + 7, 456, 9, 10, 0, 0, -523, 0, 11, 12, + 13, 14, 15, 16, 457, 458, 0, 0, 0, 19, + 0, 0, 0, 20, 21, 0, 22, -523, -523, -523, 0, 23, 24, 25, 26, 0, 27, 28, 0, 0, 29, 30, 31, 0, 0, 0, 0, 0, 0, 0, 32, 33, 34, 0, 0, 0, 0, 35, 0, 36, 37, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 41, 42, 43, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, - 0, 50, -114, 51, 0, 0, 52, 0, 0, 0, + 0, 50, 0, 51, 0, 0, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, - 0, 54, 55, 0, 56, 0, 57, 454, 58, -108, - -108, 2, 3, 4, 5, 0, 6, 7, 455, 9, - 10, 0, 0, -114, -114, 11, 12, 13, 14, 15, - 16, 456, 457, 0, 0, 0, 19, 0, 0, 0, - 20, 21, 0, 22, 0, 0, 0, 0, 23, 24, + 0, 54, 55, 0, 56, 0, 57, 455, 58, -108, + -108, 2, 3, 4, 5, 0, 6, 7, 456, 9, + 10, 0, 0, -578, 0, 11, 12, 13, 14, 15, + 16, 457, 458, 0, 0, 0, 19, 0, 0, 0, + 20, 21, 0, 22, -578, -578, 0, 0, 23, 24, 25, 26, 0, 27, 28, 0, 0, 29, 30, 31, 0, 0, 0, 0, 0, 0, 0, 32, 33, 34, 0, 0, 0, 0, 35, 0, 36, 37, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 41, 42, 43, 0, 0, 0, 0, 0, 0, 0, - 0, 44, 45, 46, 47, 48, 49, 0, 50, 0, + 0, 44, 45, 46, 47, 48, 49, -578, 50, 0, 51, 0, 0, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 0, 54, 55, - 0, 56, 0, 57, 454, 58, -108, -108, 2, 3, - 4, 5, 0, 6, 7, 455, 9, 10, 0, 0, - -114, 0, 11, 12, 13, 14, 15, 16, 456, 457, + 0, 56, 0, 57, 455, 58, -108, -108, 2, 3, + 4, 5, 0, 6, 7, 456, 9, 10, 0, 0, + -524, 0, 11, 12, 13, 14, 15, 16, 457, 458, 0, 0, 0, 19, 0, 0, 0, 20, 21, 0, - 22, 0, 0, 0, -114, 23, 24, 25, 26, 0, + 22, -524, -524, -524, 0, 23, 24, 25, 26, 0, 27, 28, 0, 0, 29, 30, 31, 0, 0, 0, 0, 0, 0, 0, 32, 33, 34, 0, 0, 0, 0, 35, 0, 36, 37, 38, 39, 0, 0, 0, @@ -2292,36 +2152,36 @@ static const yytype_int16 yytable[] = 46, 47, 48, 49, 0, 50, 0, 51, 0, 0, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 0, 54, 55, 0, 56, 0, - 57, 454, 58, -108, -108, 2, 3, 4, 5, 0, - 6, 7, 455, 9, 10, 0, 0, -114, 0, 11, - 12, 13, 14, 15, 16, 456, 457, 0, 0, 0, - 19, 0, 0, 0, 20, 21, 0, 22, 0, 0, - 0, 0, 23, 24, 25, 26, -114, 27, 28, 0, + 57, 455, 58, -108, -108, 2, 3, 4, 5, 0, + 6, 7, 456, 9, 10, 0, 0, -579, 0, 11, + 12, 13, 14, 15, 16, 457, 458, 0, 0, 0, + 19, 0, 0, 0, 20, 21, 0, 22, -579, -579, + 0, 0, 23, 24, 25, 26, 0, 27, 28, 0, 0, 29, 30, 31, 0, 0, 0, 0, 0, 0, 0, 32, 33, 34, 0, 0, 0, 0, 35, 0, 36, 37, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 41, 42, 43, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, - 49, 0, 50, 0, 51, 0, 0, 52, 0, 0, + 49, -579, 50, 0, 51, 0, 0, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 53, 0, 54, 55, 0, 56, 0, 57, 454, 58, - -108, -108, 2, 3, 4, 5, 0, 6, 7, 455, - 9, 10, 0, 0, -114, 0, 11, 12, 13, 14, - 15, 16, 456, 457, 0, 0, 0, 19, 0, 0, + 53, 0, 54, 55, 0, 56, 0, 57, 455, 58, + -108, -108, 2, 3, 4, 5, 0, 6, 7, 456, + 9, 10, -114, -114, -114, -114, 11, 12, 13, 14, + 15, 16, 457, 458, 0, 0, 0, 19, 0, 0, 0, 20, 21, 0, 22, 0, 0, 0, 0, 23, 24, 25, 26, 0, 27, 28, 0, 0, 29, 30, 31, 0, 0, 0, 0, 0, 0, 0, 32, 33, - 34, 0, 0, 0, -114, 35, 0, 36, 37, 38, + 34, 0, 0, 0, 0, 35, 0, 36, 37, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 41, 42, 43, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 0, 50, 0, 51, 0, 0, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 0, 54, - 55, 0, 56, 0, 57, 454, 58, -108, -108, 2, - 3, 4, 5, 0, 6, 7, 455, 9, 10, 0, - 0, 0, 0, 11, 12, 13, 14, 15, 16, 456, - 457, 0, 0, 0, 19, 0, 0, 0, 20, 21, - 0, 22, 0, 0, 0, 0, 23, 24, 25, 26, + 55, 0, 56, 0, 57, 455, 58, -108, -108, 2, + 3, 4, 5, 0, 6, 7, 456, 9, 10, 0, + 0, -114, 0, 11, 12, 13, 14, 15, 16, 457, + 458, 0, 0, 0, 19, 0, 0, 0, 20, 21, + 0, 22, -114, -114, -114, 0, 23, 24, 25, 26, 0, 27, 28, 0, 0, 29, 30, 31, 0, 0, 0, 0, 0, 0, 0, 32, 33, 34, 0, 0, 0, 0, 35, 0, 36, 37, 38, 39, 0, 0, @@ -2330,19 +2190,121 @@ static const yytype_int16 yytable[] = 45, 46, 47, 48, 49, 0, 50, 0, 51, 0, 0, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 0, 54, 55, 0, 56, - 0, 57, -114, 58, 2, 0, 4, 5, 0, 6, - 152, 153, 9, 0, 0, 0, 0, 0, 11, 12, - 13, 154, 155, 156, 0, 157, 0, 0, 158, 159, - 0, 0, 0, 20, 21, 0, 0, 0, 0, 0, - 0, 160, 0, 161, 0, 0, 27, 28, 0, 0, - 162, 30, 163, 0, 0, 0, 0, 0, 0, 0, - 164, 0, 0, 0, 0, 0, 0, 0, 0, 36, - 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 165, 45, 0, 0, 48, 0, - 0, 0, 0, 51, 276, 277, 166, 0, 0, 0, - 0, 0, 167, 168, 0, 0, 0, 0, 0, 53, - 278, 0, 0, 0, 56, 0, 57, 2, 58, 4, + 0, 57, 455, 58, -108, -108, 2, 3, 4, 5, + 0, 6, 7, 456, 9, 10, 0, 0, -114, 0, + 11, 12, 13, 14, 15, 16, 457, 458, 0, 0, + 0, 19, 0, 0, 0, 20, 21, 0, 22, -114, + -114, 0, 0, 23, 24, 25, 26, 0, 27, 28, + 0, 0, 29, 30, 31, 0, 0, 0, 0, 0, + 0, 0, 32, 33, 34, 0, 0, 0, 0, 35, + 0, 36, 37, 38, 39, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 40, 41, 42, 43, 0, 0, + 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, + 48, 49, -114, 50, 0, 51, 0, 0, 52, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 53, 0, 54, 55, 0, 56, 0, 57, 455, + 58, -108, -108, 2, 3, 4, 5, 0, 6, 7, + 456, 9, 10, 0, 0, -114, 0, 11, 12, 13, + 14, 15, 16, 457, 458, 0, 0, 0, 19, 0, + 0, 0, 20, 21, 0, 22, 0, -114, -114, 0, + 23, 24, 25, 26, 0, 27, 28, 0, 0, 29, + 30, 31, 0, 0, 0, 0, 0, 0, 0, 32, + 33, 34, 0, 0, 0, 0, 35, 0, 36, 37, + 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 40, 41, 42, 43, 0, 0, 0, 0, 0, + 0, 0, 0, 44, 45, 46, 47, 48, 49, 0, + 50, 0, 51, 0, 0, 52, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 53, 0, + 54, 55, 0, 56, 0, 57, 455, 58, -108, -108, + 2, 3, 4, 5, 0, 6, 7, 456, 9, 10, + 0, 0, -114, 0, 11, 12, 13, 14, 15, 16, + 457, 458, 0, 0, 0, 19, 0, 0, 0, 20, + 21, 0, 22, 0, 0, 0, 0, 23, 24, 25, + 26, 0, 27, 28, 0, 0, 29, 30, 31, 0, + 0, 0, 0, 0, 0, 0, 32, 33, 34, 0, + 0, -114, -114, 35, 0, 36, 37, 38, 39, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 40, 41, + 42, 43, 0, 0, 0, 0, 0, 0, 0, 0, + 44, 45, 46, 47, 48, 49, 0, 50, 0, 51, + 0, 0, 52, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 53, 0, 54, 55, 0, + 56, 0, 57, 455, 58, -108, -108, 2, 3, 4, + 5, 0, 6, 7, 456, 9, 10, 0, 0, -114, + 0, 11, 12, 13, 14, 15, 16, 457, 458, 0, + 0, 0, 19, 0, 0, 0, 20, 21, 0, 22, + 0, 0, 0, 0, 23, 24, 25, 26, 0, 27, + 28, 0, 0, 29, 30, 31, 0, 0, 0, 0, + 0, 0, 0, 32, 33, 34, 0, 0, 0, 0, + 35, 0, 36, 37, 38, 39, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 40, 41, 42, 43, 0, + 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, + 47, 48, 49, 0, 50, -114, 51, 0, 0, 52, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 53, 0, 54, 55, 0, 56, 0, 57, + 455, 58, -108, -108, 2, 3, 4, 5, 0, 6, + 7, 456, 9, 10, 0, 0, -114, -114, 11, 12, + 13, 14, 15, 16, 457, 458, 0, 0, 0, 19, + 0, 0, 0, 20, 21, 0, 22, 0, 0, 0, + 0, 23, 24, 25, 26, 0, 27, 28, 0, 0, + 29, 30, 31, 0, 0, 0, 0, 0, 0, 0, + 32, 33, 34, 0, 0, 0, 0, 35, 0, 36, + 37, 38, 39, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 40, 41, 42, 43, 0, 0, 0, 0, + 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, + 0, 50, 0, 51, 0, 0, 52, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, + 0, 54, 55, 0, 56, 0, 57, 455, 58, -108, + -108, 2, 3, 4, 5, 0, 6, 7, 456, 9, + 10, 0, 0, -114, 0, 11, 12, 13, 14, 15, + 16, 457, 458, 0, 0, 0, 19, 0, 0, 0, + 20, 21, 0, 22, 0, 0, 0, -114, 23, 24, + 25, 26, 0, 27, 28, 0, 0, 29, 30, 31, + 0, 0, 0, 0, 0, 0, 0, 32, 33, 34, + 0, 0, 0, 0, 35, 0, 36, 37, 38, 39, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, + 41, 42, 43, 0, 0, 0, 0, 0, 0, 0, + 0, 44, 45, 46, 47, 48, 49, 0, 50, 0, + 51, 0, 0, 52, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 53, 0, 54, 55, + 0, 56, 0, 57, 455, 58, -108, -108, 2, 3, + 4, 5, 0, 6, 7, 456, 9, 10, 0, 0, + -114, 0, 11, 12, 13, 14, 15, 16, 457, 458, + 0, 0, 0, 19, 0, 0, 0, 20, 21, 0, + 22, 0, 0, 0, 0, 23, 24, 25, 26, -114, + 27, 28, 0, 0, 29, 30, 31, 0, 0, 0, + 0, 0, 0, 0, 32, 33, 34, 0, 0, 0, + 0, 35, 0, 36, 37, 38, 39, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 40, 41, 42, 43, + 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, + 46, 47, 48, 49, 0, 50, 0, 51, 0, 0, + 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 53, 0, 54, 55, 0, 56, 0, + 57, 455, 58, -108, -108, 2, 3, 4, 5, 0, + 6, 7, 456, 9, 10, 0, 0, -114, 0, 11, + 12, 13, 14, 15, 16, 457, 458, 0, 0, 0, + 19, 0, 0, 0, 20, 21, 0, 22, 0, 0, + 0, 0, 23, 24, 25, 26, 0, 27, 28, 0, + 0, 29, 30, 31, 0, 0, 0, 0, 0, 0, + 0, 32, 33, 34, 0, 0, 0, -114, 35, 0, + 36, 37, 38, 39, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 40, 41, 42, 43, 0, 0, 0, + 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, + 49, 0, 50, 0, 51, 0, 0, 52, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 53, 0, 54, 55, 0, 56, 0, 57, 455, 58, + -108, -108, 2, 3, 4, 5, 0, 6, 7, 456, + 9, 10, 0, 0, 0, 0, 11, 12, 13, 14, + 15, 16, 457, 458, 0, 0, 0, 19, 0, 0, + 0, 20, 21, 0, 22, 0, 0, 0, 0, 23, + 24, 25, 26, 0, 27, 28, 0, 0, 29, 30, + 31, 0, 0, 0, 0, 0, 0, 0, 32, 33, + 34, 0, 0, 0, 0, 35, 0, 36, 37, 38, + 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 40, 41, 42, 43, 0, 0, 0, 0, 0, 0, + 0, 0, 44, 45, 46, 47, 48, 49, 0, 50, + 0, 51, 0, 0, 52, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 53, 0, 54, + 55, 0, 56, 0, 57, -114, 58, 2, 0, 4, 5, 0, 6, 152, 153, 9, 0, 0, 0, 0, 0, 11, 12, 13, 154, 155, 156, 0, 157, 0, 0, 158, 159, 0, 0, 0, 20, 21, 0, 0, @@ -2352,9 +2314,9 @@ static const yytype_int16 yytable[] = 0, 0, 36, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 165, 45, 0, - 0, 48, 0, 0, 0, 0, 51, 276, 0, 166, + 0, 48, 0, 0, 0, 0, 51, 277, 278, 166, 0, 0, 0, 0, 0, 167, 168, 0, 0, 0, - 0, 0, 53, 278, 0, 0, 0, 56, 0, 57, + 0, 0, 53, 279, 0, 0, 0, 56, 0, 57, 2, 58, 4, 5, 0, 6, 152, 153, 9, 0, 0, 0, 0, 0, 11, 12, 13, 154, 155, 156, 0, 157, 0, 0, 158, 159, 0, 0, 0, 20, @@ -2365,8 +2327,8 @@ static const yytype_int16 yytable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 165, 45, 0, 0, 48, 0, 0, 0, 0, 51, - 0, 0, 166, 0, 0, 0, 0, 0, 167, 168, - 0, 0, 0, 0, 0, 53, 169, 0, 0, 0, + 277, 0, 166, 0, 0, 0, 0, 0, 167, 168, + 0, 0, 0, 0, 0, 53, 279, 0, 0, 0, 56, 0, 57, 2, 58, 4, 5, 0, 6, 152, 153, 9, 0, 0, 0, 0, 0, 11, 12, 13, 154, 155, 156, 0, 157, 0, 0, 158, 159, 0, @@ -2377,8 +2339,8 @@ static const yytype_int16 yytable[] = 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 165, 45, 0, 0, 48, 0, 0, - 0, 0, 51, 0, 0, 166, 0, 0, 0, 0, - 0, 167, 168, 0, 0, 0, 0, 0, 53, 274, + 0, 0, 51, 612, 0, 166, 0, 0, 0, 0, + 0, 167, 168, 0, 0, 0, 0, 0, 53, 169, 0, 0, 0, 56, 0, 57, 2, 58, 4, 5, 0, 6, 152, 153, 9, 0, 0, 0, 0, 0, 11, 12, 13, 154, 155, 156, 0, 157, 0, 0, @@ -2391,7 +2353,7 @@ static const yytype_int16 yytable[] = 0, 0, 0, 0, 0, 0, 165, 45, 0, 0, 48, 0, 0, 0, 0, 51, 0, 0, 166, 0, 0, 0, 0, 0, 167, 168, 0, 0, 0, 0, - 0, 53, 738, 0, 0, 0, 56, 0, 57, 2, + 0, 53, 169, 0, 0, 0, 56, 0, 57, 2, 58, 4, 5, 0, 6, 152, 153, 9, 0, 0, 0, 0, 0, 11, 12, 13, 154, 155, 156, 0, 157, 0, 0, 158, 159, 0, 0, 0, 20, 21, @@ -2399,614 +2361,631 @@ static const yytype_int16 yytable[] = 0, 27, 28, 0, 0, 162, 30, 163, 0, 0, 0, 0, 0, 0, 0, 164, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 38, 39, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 41, 397, + 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 165, 45, 0, 0, 48, 0, 0, 0, 0, 51, 0, - 0, 166, 0, 0, -330, -330, 398, 167, 168, 0, - 0, 0, 0, 0, 53, 278, 0, 0, 0, 56, - 0, 57, 0, 58, -330, -330, -330, -330, 0, -330, - -330, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 408, 0, 0, 0, 494, 495, 496, 497, 498, 499, - 500, 501, 502, 0, 0, 0, 0, 503, 504, 505, - 506, 507, 508, 509, 510, -333, -333, 409, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, -333, -333, -333, -333, 0, - -333, -333, 0, 0, 0, 0, 0, 0, 0, -330, - 0, 302, 434, 0, 0, 494, 495, 496, 497, 498, - 499, 500, 501, 502, 0, 0, 0, 0, 503, 504, - 505, 506, 507, 508, 509, 510, 0, -329, -329, 435, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, -329, -329, -329, - -329, 0, -329, -329, 0, 0, 0, 0, 0, 0, - -333, 0, 302, 340, 0, 0, 0, 494, 495, 496, - 497, 498, 499, 500, 501, 502, 0, 0, 0, 0, - 503, 504, 505, 506, 507, 508, 509, 510, -327, -327, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, -327, -327, - -327, -327, 0, -327, -327, 0, 0, 0, 0, 0, - 0, 0, -329, 0, 302, 0, 0, 0, 494, 495, - 496, 497, 498, 499, 500, 501, 502, 0, 0, 0, - 0, 503, 504, 505, 506, 507, 508, 509, 510, 2, - 0, 0, 0, 0, 0, 152, 153, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 154, 155, 156, 0, - 157, 0, 0, 0, 159, 0, 0, 0, 0, 0, - 0, 0, 0, -327, 0, 302, 160, 0, 161, 0, - 0, 27, 28, 2, 0, 0, 30, 163, 0, 152, - 153, 0, 0, 0, 0, 164, 0, 0, 0, 0, - 154, 155, 156, 0, 157, 0, 0, 0, 159, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 805, 0, - 160, 0, 161, 0, 0, 27, 28, 0, 2, 165, - 30, 163, 0, 48, 152, 153, 0, 0, 0, 164, - 0, 166, 0, 0, 0, 154, 155, 156, 0, 157, - 0, 0, 0, 159, 0, 806, 0, 0, 0, 0, - 0, 0, 41, 0, 0, 160, 0, 161, 0, 0, - 27, 28, 2, 165, 0, 30, 163, 48, 152, 153, - 0, 0, 0, 0, 164, 166, 0, 0, 0, 154, - 155, 156, 0, 157, 0, 0, 0, 159, 0, 868, - 0, 0, 0, 0, 0, 0, 0, 805, 0, 160, - 0, 161, 0, 0, 27, 28, 0, 2, 165, 30, - 163, 0, 48, 152, 153, 0, 0, 0, 164, 0, - 166, 0, 0, 0, 154, 155, 156, 0, 157, 0, - 0, 0, 159, 0, 920, 0, 0, 0, 0, 0, - 0, 41, 0, 0, 160, 0, 161, 0, 0, 27, - 28, 2, 165, 0, 30, 163, 48, 152, 153, 0, - 0, 0, 0, 164, 166, 0, 0, 0, 154, 155, - 156, 0, 157, 0, 38, 39, 159, 0, 961, 0, - 0, 0, 0, 0, 0, 0, 41, 0, 160, 0, - 161, 0, 0, 27, 28, 0, 2, 165, 30, 163, - 0, 48, 152, 153, 0, 0, 0, 164, 0, 166, - 0, 0, 0, 154, 155, 156, 0, 157, 38, 39, - 0, 159, 53, 0, 0, 0, 0, 0, 0, 0, - 41, 0, 0, 160, 0, 161, 0, 0, 27, 28, - 0, 165, 0, 30, 163, 48, 0, 0, 0, 0, - 0, 0, 164, 166, 0, 0, 0, 0, 0, 0, - 2, 0, 0, 0, 0, 0, 152, 153, 0, 0, - 0, 0, 0, 0, 0, 41, 0, 154, 155, 156, - 0, 157, 0, 0, 0, 159, 165, 0, 0, 0, - 48, 0, 0, 0, 0, 0, 572, 160, 166, 161, - 0, 0, 27, 28, 0, 2, 0, 30, 163, 0, - 0, 152, 153, 0, 0, 0, 164, 0, 0, 0, - 0, 0, 154, 155, 156, 0, 157, 0, 0, 0, - 159, 0, 0, 0, 0, 0, 0, 0, 0, 41, + 0, 166, 0, 0, 0, 0, 0, 167, 168, 0, + 0, 0, 0, 0, 53, 275, 0, 0, 0, 56, + 0, 57, 2, 58, 4, 5, 0, 6, 152, 153, + 9, 0, 0, 0, 0, 0, 11, 12, 13, 154, + 155, 156, 0, 157, 0, 0, 158, 159, 0, 0, + 0, 20, 21, 0, 0, 0, 0, 0, 0, 160, + 0, 161, 0, 0, 27, 28, 0, 0, 162, 30, + 163, 0, 0, 0, 0, 0, 0, 0, 164, 0, + 0, 0, 0, 0, 0, 0, 0, 36, 0, 38, + 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 165, 45, 0, 0, 48, 0, 0, 0, + 0, 51, 0, 0, 166, 0, 0, 0, 0, 0, + 167, 168, 0, 0, 0, 0, 0, 53, 279, 0, + 0, 0, 56, 0, 57, 2, 58, 4, 5, 0, + 6, 152, 153, 9, 0, 0, 0, 0, 0, 11, + 12, 13, 154, 155, 156, 0, 157, 0, 0, 158, + 159, 0, 0, 0, 20, 21, 0, 0, 0, 0, 0, 0, 160, 0, 161, 0, 0, 27, 28, 0, - 165, 0, 30, 163, 48, 0, 0, 0, 0, 0, - 819, 164, 166, 0, 0, 0, 0, 0, 0, 2, - 0, 0, 0, 0, 0, 152, 153, 0, 0, 0, - 0, 0, 0, 0, 41, 0, 154, 155, 156, 0, - 157, 0, 0, 0, 159, 165, 0, 0, 0, 48, - 0, 0, 0, 0, 0, 888, 160, 166, 161, 0, - 0, 27, 28, 0, 2, 0, 30, 163, 0, 0, - 152, 153, 0, 0, 0, 164, 0, 0, 0, 0, - 0, 154, 155, 156, 0, 157, 0, 0, 0, 159, + 0, 162, 30, 163, 0, 0, 0, 0, 0, 0, + 0, 164, 0, 0, 0, 0, 0, 0, 0, 0, + 36, 0, 38, 39, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 165, 45, 0, 0, 48, + 0, 0, 0, 0, 51, 0, 0, 166, 0, 0, + 0, 0, 0, 167, 168, 0, 0, 0, 0, 0, + 53, 740, 0, 0, 0, 56, 0, 57, 2, 58, + 4, 5, 0, 6, 152, 153, 9, 0, 0, 0, + 0, 0, 11, 12, 13, 154, 155, 156, 0, 157, + 0, 0, 0, 159, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 160, 0, 161, 0, 0, + 27, 28, 0, 0, 162, 30, 163, 0, 0, 0, + 0, 0, 0, 0, 164, 0, 0, 0, 0, 0, + 0, 0, 0, 36, 0, 38, 39, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 165, 45, + 0, 0, 48, 0, 0, 0, 0, 51, 0, 0, + 166, 0, 0, 0, 0, 0, 0, 0, 0, 2, + 0, 4, 359, 53, 360, 152, 153, 9, 56, 0, + 57, 0, 58, 11, 12, 13, 154, 155, 156, 0, + 157, 0, 0, 0, 159, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 160, 0, 161, 0, + 0, 27, 28, 0, 0, 0, 30, 163, 0, 0, + 0, 0, 0, 0, 0, 164, 0, 409, 0, 0, + 0, 0, 0, 0, 36, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, - 0, 160, 0, 161, 0, 0, 27, 28, 0, 165, - 0, 30, 163, 48, 0, 0, 0, 0, 0, 965, - 164, 166, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 315, 0, 319, 320, 0, 324, 0, 328, 0, - 332, 0, 335, 41, 339, 0, 342, 0, 349, 0, - 356, 382, 388, 0, 165, 0, 396, 0, 48, 401, - 0, 0, 407, 0, 412, 0, 166, 0, 0, 0, - 494, 495, 496, 497, 498, 499, 500, 501, 502, 0, - 438, 0, 444, 503, 504, 505, 506, 507, 508, 509, - 510, 494, 495, 496, 497, 498, 499, 500, 501, 502, - 0, 0, 0, 0, 503, 504, 505, 506, 507, 508, - 509, 510, 494, 495, 496, 497, 498, 499, 500, 501, - 502, 953, 0, 0, 0, 503, 504, 505, 506, 507, - 508, 509, 510, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 983, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -329, -329, 410, 0, 0, 0, 0, 165, + 45, 0, 0, 48, 0, 0, 0, 0, 0, 0, + 0, 166, -329, -329, -329, -329, 0, -329, -329, 0, + 0, 0, 0, 0, 53, 0, 0, 0, 435, 273, + 0, 57, 495, 496, 497, 498, 499, 500, 501, 502, + 503, 0, 0, 0, 0, 504, 505, 506, 507, 508, + 509, 510, 511, -325, -325, 436, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 995 + 0, 0, 0, -325, -325, -325, -325, 0, -325, -325, + 0, 0, 0, 0, 0, 0, 0, -329, 0, 303, + 341, 0, 0, 495, 496, 497, 498, 499, 500, 501, + 502, 503, 0, 0, 0, 0, 504, 505, 506, 507, + 508, 509, 510, 511, 0, -323, -323, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -323, -323, -323, -323, 0, + -323, -323, 0, 0, 0, 0, 0, 0, -325, 0, + 303, 0, 0, 0, 0, 495, 496, 497, 498, 499, + 500, 501, 502, 503, 0, 0, 0, 0, 504, 505, + 506, 507, 508, 509, 510, 511, 2, 0, 0, 0, + 0, 0, 152, 153, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 154, 155, 156, 0, 157, 0, 0, + 0, 159, 0, 0, 0, 0, 0, 0, 0, 0, + -323, 0, 303, 160, 0, 161, 0, 0, 27, 28, + 2, 0, 0, 30, 163, 0, 152, 153, 0, 0, + 0, 0, 164, 0, 0, 0, 0, 154, 155, 156, + 0, 157, 0, 0, 0, 159, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 41, 0, 160, 0, 161, + 0, 0, 27, 28, 0, 2, 165, 30, 163, 0, + 48, 152, 153, 0, 0, 0, 164, 0, 166, 0, + 0, 0, 154, 155, 156, 0, 157, 0, 0, 0, + 159, 0, 863, 0, 0, 0, 0, 0, 0, 805, + 0, 0, 160, 0, 161, 0, 0, 27, 28, 2, + 165, 0, 30, 163, 48, 152, 153, 0, 0, 0, + 0, 164, 166, 0, 0, 0, 154, 155, 156, 0, + 157, 0, 0, 0, 159, 0, 913, 0, 0, 0, + 0, 0, 0, 0, 41, 0, 160, 0, 161, 0, + 0, 27, 28, 0, 2, 165, 30, 163, 0, 48, + 152, 153, 0, 0, 0, 164, 0, 166, 0, 0, + 0, 154, 155, 156, 0, 157, 38, 39, 0, 159, + 0, 953, 0, 0, 0, 0, 0, 0, 41, 0, + 0, 160, 0, 161, 0, 0, 27, 28, 2, 165, + 0, 30, 163, 48, 152, 153, 0, 0, 0, 0, + 164, 166, 0, 0, 0, 154, 155, 156, 0, 157, + 0, 38, 39, 159, 53, 0, 0, 0, 0, 0, + 0, 0, 0, 41, 0, 160, 0, 161, 0, 0, + 27, 28, 0, 2, 165, 30, 163, 0, 48, 152, + 153, 0, 0, 0, 164, 0, 166, 0, 0, 0, + 154, 155, 156, 0, 157, 0, 0, 0, 159, 0, + 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, + 160, 0, 161, 0, 0, 27, 28, 0, 165, 0, + 30, 163, 48, 0, 0, 0, 0, 0, 573, 164, + 166, 0, 0, 0, 0, 0, 0, 2, 0, 0, + 0, 0, 0, 152, 153, 0, 0, 0, 0, 0, + 0, 0, 41, 0, 154, 155, 156, 0, 157, 0, + 0, 0, 159, 165, 0, 0, 0, 48, 0, 0, + 0, 0, 0, 819, 160, 166, 161, 0, 0, 27, + 28, 0, 2, 0, 30, 163, 0, 0, 152, 153, + 0, 0, 0, 164, 0, 0, 0, 0, 0, 154, + 155, 156, 0, 157, 0, 0, 0, 159, 0, 0, + 0, 0, 0, 0, 0, 0, 41, 0, 0, 160, + 0, 161, 0, 0, 27, 28, 0, 165, 0, 30, + 163, 48, 0, 0, 0, 0, 0, 882, 164, 166, + 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 152, 153, 0, 0, 0, 0, 0, 0, + 0, 41, 0, 154, 155, 156, 0, 157, 0, 0, + 0, 159, 165, 0, 0, 0, 48, 0, 0, 0, + 0, 0, 957, 160, 166, 161, 0, 0, 27, 28, + 0, 0, 0, 30, 163, 0, 0, 0, 0, 0, + 0, 0, 164, 495, 496, 497, 498, 499, 500, 501, + 502, 503, 0, 0, 0, 0, 504, 505, 506, 507, + 508, 509, 510, 511, 0, 41, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 165, 0, 0, 0, + 48, 0, 0, 0, 0, 0, 0, 0, 166, 0, + 0, 0, 0, 0, 975, 495, 496, 497, 498, 499, + 500, 501, 502, 503, 0, 0, 0, 0, 504, 505, + 506, 507, 508, 509, 510, 511, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 987 }; static const yytype_int16 yycheck[] = { - 0, 10, 57, 169, 175, 150, 463, 671, 179, 210, - 576, 576, 594, 563, 185, 953, 187, 188, 475, 450, - 451, 718, 576, 472, 473, 722, 26, 605, 666, 9, - 36, 202, 17, 36, 17, 35, 9, 9, 36, 406, - 36, 129, 243, 131, 617, 983, 619, 47, 9, 9, - 36, 125, 625, 9, 9, 422, 36, 995, 58, 697, - 60, 36, 9, 46, 36, 9, 9, 9, 68, 9, - 70, 0, 72, 73, 36, 75, 36, 77, 9, 79, - 36, 81, 67, 83, 484, 85, 9, 87, 12, 89, - 90, 91, 36, 36, 36, 95, 36, 26, 98, 36, - 9, 101, 36, 103, 36, 36, 35, 9, 274, 10, - 9, 9, 278, 36, 36, 3, 4, 9, 47, 119, - 638, 121, 9, 129, 133, 131, 129, 36, 9, 58, - 130, 60, 3, 4, 36, 131, 109, 137, 36, 68, - 9, 70, 542, 72, 73, 131, 75, 547, 77, 36, - 79, 0, 81, 553, 83, 36, 85, 19, 87, 131, - 89, 90, 91, 729, 729, 125, 95, 36, 718, 98, - 131, 131, 101, 573, 103, 729, 131, 26, 9, 876, - 758, 3, 122, 123, 131, 125, 109, 131, 131, 131, - 119, 131, 121, 711, 131, 129, 860, 131, 47, 131, - 131, 130, 125, 25, 53, 36, 655, 36, 137, 131, - 210, 60, 34, 122, 123, 646, 125, 17, 36, 68, - 122, 123, 131, 48, 122, 123, 744, 36, 36, 131, - 122, 123, 131, 131, 122, 123, 85, 729, 87, 131, - 89, 90, 36, 243, 131, 17, 828, 36, 766, 36, - 131, 122, 123, 122, 123, 36, 822, 822, 36, 777, - 36, 0, 131, 36, 86, 36, 88, 36, 822, 52, - 119, 93, 125, 0, 792, 97, 124, 0, 278, 36, - 102, 130, 130, 105, 106, 107, 108, 26, 137, 34, - 35, 122, 123, 115, 122, 123, 118, 125, 120, 124, - 131, 0, 131, 103, 126, 17, 36, 764, 47, 54, - 55, 56, 57, 131, 59, 60, 125, 125, 140, 9, - 129, 60, 131, 131, 52, 129, 38, 39, 0, 101, - 822, 125, 850, 60, 852, 917, 125, 131, 125, 17, - 129, 124, 131, 0, 34, 35, 36, 125, 51, 278, - 131, 90, 125, 131, 26, 131, 129, 36, 131, 17, - 131, 60, 131, 41, 54, 55, 56, 57, 125, 59, - 60, 953, 129, 52, 131, 47, 894, 72, 73, 131, - 898, 39, 40, 124, 129, 903, 904, 17, 60, 101, - 58, 130, 122, 123, 124, 125, 124, 797, 137, 981, - 800, 983, 124, 60, 126, 9, 406, 807, 38, 39, - 40, 811, 36, 995, 129, 933, 130, 69, 90, 937, - 820, 17, 422, 137, 58, 120, 944, 3, 4, 278, - 34, 35, 36, 951, 952, 125, 124, 582, 0, 129, - 128, 131, 38, 39, 40, 124, 125, 115, 116, 117, - 54, 55, 56, 57, 124, 59, 60, 124, 130, 126, - 130, 832, 124, 463, 26, 137, 128, 668, 19, 869, - 870, 125, 872, 991, 845, 475, 847, 406, 878, 113, - 114, 115, 116, 117, 125, 47, 124, 113, 34, 35, - 128, 891, 69, 422, 122, 123, 124, 698, 60, 3, - 4, 15, 16, 17, 18, 9, 126, 0, 54, 55, - 56, 57, 36, 59, 60, 915, 15, 16, 17, 18, - 128, 921, 125, 122, 123, 129, 125, 131, 90, 36, - 34, 35, 36, 26, 463, 122, 123, 124, 36, 278, - 595, 122, 123, 124, 122, 123, 475, 122, 123, 124, - 54, 55, 56, 57, 47, 59, 60, 36, 124, 959, - 126, 36, 962, 109, 735, 36, 966, 60, 130, 122, - 123, 124, 738, 122, 123, 137, 121, 122, 123, 579, - 122, 123, 124, 129, 36, 985, 122, 123, 124, 0, - 124, 124, 126, 126, 124, 36, 126, 90, 124, 124, - 126, 126, 124, 36, 126, 109, 278, 17, 18, 3, - 4, 38, 39, 36, 463, 26, 125, 126, 64, 65, - 9, 125, 36, 36, 124, 129, 475, 131, 19, 3, - 4, 132, 124, 124, 643, 9, 47, 130, 638, 125, - 125, 131, 651, 9, 137, 34, 35, 36, 9, 60, - 579, 58, 19, 125, 124, 124, 9, 125, 0, 47, - 34, 35, 36, 128, 128, 54, 55, 56, 57, 131, - 59, 60, 126, 124, 74, 124, 124, 99, 84, 90, - 54, 55, 56, 57, 26, 59, 60, 87, 88, 89, - 90, 91, 92, 93, 94, 126, 126, 126, 698, 124, - 126, 66, 126, 60, 697, 47, 49, 50, 126, 638, - 90, 711, 90, 90, 90, 58, 278, 90, 60, 130, - 90, 90, 90, 240, 463, 243, 137, 576, 90, 698, - 579, 90, 90, 723, 90, 109, 475, 542, 90, 90, - 129, 981, 131, 873, 744, 242, 451, 472, 90, 999, - 661, 125, 579, 824, 9, 129, 661, 131, 560, 768, - -1, 9, -1, -1, 764, 774, 766, 110, 111, 112, - 113, 114, 115, 116, 117, -1, -1, 777, 833, 34, - 35, 36, 711, -1, -1, 278, 34, 35, 130, 638, - -1, 463, 792, -1, -1, 137, 9, -1, -1, 54, - 55, 56, 57, 475, 59, 60, 54, 55, 56, 57, - -1, 59, 60, -1, -1, 744, -1, -1, -1, 0, - -1, 34, 35, 36, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 764, -1, 766, -1, 9, - 579, 54, 55, 56, 57, 26, 59, 60, 777, -1, - 850, -1, 852, -1, 109, 864, -1, -1, -1, -1, - -1, -1, 711, 792, 34, 35, 47, 278, -1, -1, - 125, -1, -1, -1, 129, -1, 131, -1, -1, 60, - 729, 129, -1, 131, 54, 55, 56, 57, -1, 59, - 60, -1, -1, -1, 894, 744, 109, -1, 898, 638, - -1, 463, -1, 903, 904, -1, -1, 579, -1, 90, - -1, -1, 125, 475, -1, 764, 129, 766, 131, -1, - -1, 850, -1, 852, -1, -1, -1, -1, 777, -1, - -1, -1, -1, 933, -1, -1, 278, 937, 947, -1, - -1, -1, -1, 792, 944, -1, -1, -1, -1, 130, - -1, 951, 952, -1, -1, -1, 137, -1, -1, 129, - -1, 131, -1, -1, -1, 894, 638, -1, -1, 898, - 463, -1, 711, 822, 903, 904, -1, -1, -1, -1, - -1, -1, 475, -1, 9, -1, -1, 987, -1, -1, - -1, 991, -1, -1, -1, -1, -1, -1, -1, 999, - 0, 850, -1, 852, 933, 744, -1, -1, 937, 34, - 35, 36, -1, -1, -1, 944, -1, 579, -1, -1, - -1, -1, 951, 952, -1, 764, 26, 766, -1, 54, - 55, 56, 57, -1, 59, 60, -1, -1, 777, 711, - -1, -1, -1, -1, -1, 894, -1, 47, -1, 898, - -1, -1, 463, 792, 903, 904, -1, -1, 987, -1, - 60, -1, 991, -1, 475, -1, -1, -1, -1, -1, - 999, -1, 744, -1, -1, -1, 638, -1, -1, -1, - 0, -1, -1, -1, 933, -1, 579, -1, 937, -1, - 90, -1, 764, -1, 766, 944, -1, 278, -1, -1, - -1, -1, 951, 952, 129, 777, 26, -1, -1, -1, - -1, 850, -1, 852, -1, -1, -1, -1, -1, -1, - 792, 463, -1, -1, -1, -1, 9, 47, -1, -1, - 130, -1, -1, 475, -1, -1, -1, 137, 987, -1, - 60, -1, 991, -1, -1, 638, -1, -1, -1, 711, - 999, 34, 35, 36, -1, 894, -1, -1, -1, 898, - -1, -1, -1, -1, 903, 904, -1, -1, 579, -1, - 90, 54, 55, 56, 57, -1, 59, 60, 850, -1, - 852, -1, 744, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 933, -1, -1, -1, 937, -1, - -1, -1, 764, -1, 766, 944, -1, -1, 9, -1, - 130, -1, 951, 952, -1, 777, -1, 137, 711, -1, - -1, -1, 894, -1, -1, -1, 898, 638, -1, -1, - 792, 903, 904, 34, 35, 36, -1, 579, -1, -1, - -1, -1, -1, -1, -1, -1, 129, -1, 987, -1, - -1, 744, 991, 54, 55, 56, 57, 0, 59, 60, - 999, 933, -1, -1, -1, 937, -1, -1, -1, -1, - -1, 764, 944, 766, -1, -1, -1, -1, 278, 951, - 952, -1, 463, 26, 777, -1, -1, -1, 850, -1, - 852, -1, -1, -1, 475, -1, 638, -1, -1, 792, - 711, -1, -1, -1, 47, -1, -1, -1, 109, -1, - -1, -1, -1, -1, -1, 987, -1, 60, -1, 991, - -1, -1, -1, -1, 125, -1, -1, 999, 129, -1, - 131, -1, 894, 744, -1, -1, 898, 0, -1, -1, - -1, 903, 904, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 764, -1, 766, -1, 850, 278, 852, - -1, -1, -1, 26, -1, -1, 777, -1, -1, 711, - -1, 933, -1, -1, -1, 937, -1, -1, -1, -1, - -1, 792, 944, -1, 47, -1, -1, 130, -1, 951, - 952, -1, -1, -1, 137, -1, -1, 60, 579, -1, - -1, 894, 744, -1, -1, 898, -1, -1, -1, -1, - 903, 904, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 764, -1, 766, 987, -1, -1, -1, 991, - -1, -1, -1, -1, -1, 777, -1, 999, -1, 850, - 933, 852, -1, -1, 937, -1, -1, -1, -1, -1, - 792, 944, -1, -1, -1, -1, -1, 638, 951, 952, - 0, -1, -1, 463, -1, -1, -1, 130, -1, -1, - -1, -1, -1, -1, 137, 475, -1, -1, -1, -1, - -1, -1, -1, 894, -1, -1, 26, 898, -1, -1, - -1, -1, 903, 904, 987, -1, -1, -1, 991, -1, - -1, -1, -1, -1, -1, -1, 999, 47, 850, -1, - 852, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 60, -1, 933, -1, 9, -1, 937, -1, -1, -1, - 711, -1, -1, 944, -1, 278, -1, -1, -1, -1, - 951, 952, -1, 463, -1, -1, -1, -1, -1, 34, - 35, 36, 894, -1, -1, 475, 898, -1, -1, -1, - -1, 903, 904, 744, -1, -1, -1, 0, -1, 54, - 55, 56, 57, -1, 59, 60, 987, -1, -1, 579, - 991, -1, -1, 764, -1, 766, -1, -1, 999, -1, - 130, 933, -1, 26, -1, 937, 777, 137, -1, -1, - -1, -1, 944, -1, -1, -1, -1, -1, -1, 951, - 952, 792, -1, -1, 47, 278, -1, -1, -1, -1, - -1, -1, -1, -1, 109, -1, -1, 60, -1, -1, - -1, -1, -1, -1, -1, 5, -1, -1, 638, -1, - 125, 11, 12, -1, 129, 987, 131, -1, -1, 991, - -1, -1, 22, 23, 24, -1, 26, 999, -1, 579, - 30, -1, -1, -1, -1, -1, -1, -1, -1, 850, - -1, 852, 42, -1, 44, -1, -1, 47, 48, -1, - -1, -1, 52, 53, -1, -1, -1, -1, -1, 0, - -1, 61, -1, -1, -1, -1, -1, 130, -1, -1, - -1, -1, -1, -1, 137, -1, -1, -1, -1, -1, - -1, 711, -1, 894, 84, 26, -1, 898, 638, -1, - 463, -1, 903, 904, -1, 95, -1, -1, -1, 99, - -1, -1, 475, 9, -1, -1, 47, 107, 278, -1, - -1, -1, -1, -1, 744, -1, -1, -1, 9, 60, - -1, -1, 933, -1, -1, -1, 937, 127, 34, 35, - 36, -1, -1, 944, 764, -1, 766, -1, -1, -1, - 951, 952, -1, 34, 35, 36, -1, 777, 54, 55, - 56, 57, -1, 59, 60, -1, -1, 0, -1, -1, - -1, 711, 792, 54, 55, 56, 57, -1, 59, 60, - 463, -1, -1, -1, 0, -1, 987, -1, -1, -1, - 991, -1, 475, 26, -1, -1, -1, -1, 999, 130, - -1, -1, -1, -1, 744, -1, 137, -1, -1, -1, - 26, -1, -1, 109, 47, -1, 579, -1, -1, -1, - 9, -1, -1, -1, 764, 278, 766, 60, -1, 125, - 850, 47, 852, 129, -1, 131, -1, 777, -1, -1, - -1, -1, -1, -1, 60, 34, 35, 36, 129, -1, - 131, -1, 792, -1, -1, -1, -1, -1, -1, -1, + 0, 57, 169, 150, 210, 602, 259, 259, 259, 175, + 577, 464, 564, 179, 451, 452, 681, 10, 36, 185, + 615, 187, 188, 476, 473, 474, 26, 52, 9, 9, + 36, 36, 9, 36, 727, 35, 202, 243, 731, 9, + 9, 17, 36, 676, 72, 73, 9, 47, 9, 36, + 17, 17, 36, 831, 648, 36, 36, 17, 58, 36, + 60, 36, 840, 36, 842, 41, 9, 9, 68, 9, + 70, 9, 72, 73, 707, 75, 0, 77, 9, 79, + 46, 81, 9, 83, 124, 85, 9, 87, 128, 89, + 90, 91, 120, 36, 36, 95, 36, 36, 98, 124, + 67, 101, 26, 103, 9, 36, 9, 9, 275, 36, + 36, 35, 279, 36, 125, 3, 4, 3, 4, 119, + 125, 121, 125, 47, 129, 131, 131, 721, 131, 109, + 130, 36, 10, 36, 58, 129, 60, 137, 125, 109, + 133, 122, 123, 103, 68, 125, 70, 131, 72, 73, + 131, 75, 746, 77, 131, 79, 131, 81, 9, 83, + 36, 85, 131, 87, 759, 89, 90, 91, 131, 485, + 131, 95, 739, 767, 98, 727, 9, 101, 871, 103, + 122, 123, 9, 125, 778, 36, 0, 9, 131, 131, + 855, 122, 123, 131, 125, 119, 9, 121, 792, 36, + 131, 17, 125, 36, 131, 131, 130, 48, 131, 36, + 210, 36, 26, 137, 36, 9, 665, 122, 123, 656, + 122, 123, 0, 36, 36, 69, 131, 543, 131, 131, + 827, 0, 548, 47, 122, 123, 122, 123, 554, 53, + 34, 35, 36, 243, 36, 36, 60, 36, 0, 125, + 52, 845, 36, 847, 68, 131, 36, 26, 574, 9, + 54, 55, 56, 57, 36, 59, 60, 0, 36, 36, + 36, 85, 19, 87, 36, 89, 90, 130, 47, 279, + 131, 124, 60, 124, 137, 101, 36, 130, 125, 3, + 125, 60, 129, 887, 131, 122, 123, 891, 131, 58, + 122, 123, 896, 897, 131, 119, 131, 0, 60, 131, + 12, 25, 765, 910, 36, 109, 130, 129, 131, 131, + 34, 90, 124, 137, 577, 577, 577, 60, 407, 0, + 52, 125, 926, 26, 125, 129, 930, 131, 129, 131, + 131, 125, 131, 937, 423, 129, 129, 131, 945, 943, + 944, 131, 131, 125, 47, 279, 115, 116, 117, 131, + 36, 130, 129, 131, 131, 131, 945, 60, 137, 131, + 124, 124, 86, 36, 88, 347, 973, 130, 975, 93, + 124, 124, 354, 97, 128, 128, 51, 17, 102, 983, + 987, 105, 106, 107, 108, 129, 975, 90, 17, 3, + 4, 115, 124, 125, 118, 9, 120, 407, 987, 39, + 40, 58, 126, 0, 69, 122, 123, 583, 125, 38, + 39, 122, 123, 423, 125, 19, 140, 122, 123, 124, + 34, 35, 36, 405, 122, 123, 17, 130, 125, 26, + 17, 122, 123, 590, 137, 259, 122, 123, 124, 125, + 54, 55, 56, 57, 113, 59, 60, 38, 39, 40, + 47, 38, 39, 40, 464, 279, 113, 114, 115, 116, + 117, 0, 678, 60, 17, 18, 476, 15, 16, 17, + 18, 797, 101, 407, 800, 125, 739, 739, 739, 3, + 4, 807, 121, 122, 123, 811, 129, 26, 131, 423, + 3, 4, 708, 90, 820, 109, 15, 16, 17, 18, + 279, 126, 34, 35, 122, 123, 124, 124, 47, 126, + 36, 125, 128, 3, 4, 129, 124, 131, 126, 9, + 36, 60, 54, 55, 56, 57, 125, 59, 60, 124, + 464, 126, 36, 130, 122, 123, 124, 603, 864, 865, + 137, 867, 476, 36, 34, 35, 36, 873, 122, 123, + 124, 90, 38, 39, 9, 122, 123, 124, 124, 885, + 126, 9, 36, 740, 54, 55, 56, 57, 36, 59, + 60, 122, 123, 124, 36, 36, 279, 587, 36, 34, + 35, 36, 908, 124, 36, 126, 34, 35, 914, 0, + 36, 130, 122, 123, 124, 64, 65, 129, 137, 54, + 55, 56, 57, 36, 59, 60, 54, 55, 56, 57, + 124, 59, 60, 19, 124, 26, 126, 9, 124, 109, + 126, 124, 124, 126, 126, 951, 125, 126, 954, 124, + 124, 132, 958, 125, 125, 125, 47, 124, 648, 129, + 464, 131, 34, 35, 36, 9, 131, 9, 58, 60, + 653, 977, 476, 587, 109, 125, 19, 124, 661, 125, + 9, 124, 54, 55, 56, 57, 131, 59, 60, 128, + 125, 128, 47, 126, 129, 124, 131, 9, 99, 90, + 124, 129, 279, 131, 126, 464, 84, 126, 124, 126, + 756, 126, 126, 66, 126, 60, 707, 476, 708, 90, + 90, 90, 34, 35, 36, 90, 90, 90, 90, 90, + 90, 721, 90, 90, 648, 240, 90, 109, 90, 130, + 90, 243, 54, 55, 56, 57, 137, 59, 60, 543, + 708, 242, 732, 125, 973, 868, 746, 129, 452, 131, + 279, 991, 473, 587, 823, 0, 671, 671, -1, 249, + -1, -1, -1, 577, -1, 765, -1, 767, -1, -1, + -1, 464, -1, 587, -1, -1, 769, -1, 778, 9, + -1, 26, 775, 476, -1, -1, -1, 109, -1, -1, + -1, -1, 792, -1, -1, -1, -1, 721, -1, -1, + -1, -1, 47, 125, 34, 35, 36, 129, -1, 131, + -1, -1, -1, -1, 5, 60, -1, -1, 587, -1, + 11, 12, 746, -1, 54, 55, 56, 57, -1, 59, + 60, 22, 23, 24, 648, 26, -1, -1, -1, 30, + -1, 765, -1, 767, -1, 845, -1, 847, -1, -1, + -1, 42, -1, 44, 778, -1, 47, 48, 0, -1, + -1, 52, 53, -1, -1, -1, 859, -1, 792, -1, + 61, -1, -1, -1, -1, -1, -1, 464, 279, 648, + -1, -1, -1, -1, 26, 130, -1, 887, -1, 476, + -1, 891, 137, 84, 587, 125, 896, 897, -1, 129, + -1, 131, -1, -1, 95, 47, -1, 721, 99, -1, + -1, -1, -1, -1, -1, -1, 107, -1, 60, -1, + -1, 845, -1, 847, -1, 739, 926, -1, -1, -1, + 930, -1, 746, -1, -1, 464, 127, 937, -1, -1, + -1, -1, -1, 943, 944, -1, 939, 476, 90, -1, + -1, 765, 721, 767, -1, 648, -1, -1, -1, -1, + -1, 0, -1, 887, 778, -1, -1, 891, -1, -1, + -1, -1, 896, 897, -1, -1, -1, 746, 792, 979, + -1, -1, -1, 983, -1, -1, -1, 26, 130, -1, + 9, 991, -1, -1, -1, 137, 765, -1, 767, -1, + 587, -1, 926, -1, -1, -1, 930, -1, 47, 778, + -1, -1, -1, 937, -1, 34, 35, 36, -1, 943, + 944, 60, -1, 792, -1, -1, -1, -1, 721, 74, + -1, 845, -1, 847, 279, 54, 55, 56, 57, -1, + 59, 60, 87, 88, 89, 90, 91, 92, 93, 94, + -1, 90, -1, 746, -1, 979, -1, -1, 587, 983, + -1, 648, -1, 464, -1, -1, -1, 991, -1, -1, + -1, -1, 765, 887, 767, 476, 845, 891, 847, -1, + -1, -1, 896, 897, -1, 778, -1, -1, -1, -1, + -1, 130, -1, -1, -1, -1, -1, -1, 137, 792, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 129, -1, 926, -1, -1, -1, 930, -1, 887, 648, + -1, -1, 891, 937, -1, 34, 35, 896, 897, 943, + 944, -1, -1, -1, 721, -1, -1, 279, -1, -1, -1, -1, -1, -1, -1, 54, 55, 56, 57, -1, - 59, 60, -1, -1, 894, 638, -1, -1, 898, -1, - -1, -1, -1, 903, 904, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 579, 130, -1, -1, - -1, -1, -1, 463, 137, -1, -1, -1, -1, -1, - 850, -1, 852, 933, 130, 475, -1, 937, -1, -1, - -1, 137, -1, -1, 944, -1, -1, -1, -1, -1, - -1, 951, 952, -1, -1, -1, 125, -1, -1, -1, - 129, -1, 131, -1, -1, -1, -1, 278, 711, -1, - -1, -1, -1, -1, 894, 638, -1, -1, 898, -1, - -1, 0, -1, 903, 904, -1, -1, 987, -1, -1, - -1, 991, -1, -1, -1, -1, -1, -1, -1, 999, - -1, 744, -1, -1, -1, -1, -1, 26, -1, -1, - 9, -1, -1, 933, -1, -1, -1, 937, -1, -1, - -1, 764, -1, 766, 944, -1, -1, 9, 47, -1, - 463, 951, 952, -1, 777, 34, 35, 36, -1, 579, - -1, 60, 475, 9, -1, -1, -1, -1, 711, 792, - -1, -1, 34, 35, 36, 54, 55, 56, 57, -1, - 59, 60, -1, -1, -1, 278, -1, 987, 34, 35, - 36, 991, 54, 55, 56, 57, -1, 59, 60, 999, - -1, 744, 278, -1, -1, -1, -1, -1, 54, 55, - 56, 57, -1, 59, 60, -1, -1, -1, 638, -1, - -1, 764, -1, 766, -1, -1, -1, 850, -1, 852, - -1, 130, -1, -1, 777, -1, -1, -1, 137, -1, - 74, 75, 76, 77, 78, 79, 80, 81, 82, 792, - 129, 9, 131, 87, 88, 89, 90, 91, 92, 93, - 94, -1, -1, -1, -1, -1, 579, 129, -1, 131, - -1, 894, 463, -1, -1, 898, 34, 35, 36, -1, - 903, 904, -1, 129, 475, 131, -1, -1, -1, -1, - -1, 711, 0, -1, -1, -1, 54, 55, 56, 57, - -1, 59, 60, -1, -1, -1, -1, 850, -1, 852, - 933, -1, -1, -1, 937, -1, -1, -1, 26, -1, - -1, 944, -1, -1, 744, 638, -1, -1, 951, 952, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 47, - -1, -1, -1, -1, 764, -1, 766, -1, -1, -1, - -1, 894, 60, -1, -1, 898, -1, 777, -1, -1, - 903, 904, -1, 0, 987, -1, -1, 9, 991, -1, - 463, 129, 792, 131, -1, -1, 999, -1, -1, 278, - -1, -1, 475, -1, -1, -1, -1, 463, 579, 26, - 933, -1, 34, 35, 937, -1, -1, -1, 711, 475, - -1, 944, -1, -1, -1, -1, -1, -1, 951, 952, - 47, -1, 54, 55, 56, 57, -1, 59, 60, -1, - 9, -1, 130, 60, -1, -1, -1, -1, 0, 137, - 850, 744, 852, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 987, 34, 35, 638, 991, -1, - -1, 764, -1, 766, -1, -1, 999, -1, -1, -1, - -1, -1, -1, -1, 777, 54, 55, 56, 57, -1, - 59, 60, -1, 0, 894, -1, -1, -1, 898, 792, - -1, -1, -1, 903, 904, -1, 579, 129, 60, 131, - -1, -1, -1, 130, -1, -1, 0, -1, -1, -1, - 137, -1, -1, 579, 5, -1, -1, -1, -1, -1, - 11, 12, -1, 933, -1, -1, -1, 937, -1, -1, - 711, 22, 23, 24, 944, 26, -1, -1, -1, 30, - -1, 951, 952, 60, -1, -1, -1, 850, -1, 852, - 129, 42, 131, 44, -1, 638, 47, 48, -1, -1, - -1, 52, 53, 744, -1, -1, 60, -1, 130, -1, - 61, -1, 638, -1, 463, 137, -1, 987, -1, -1, - 278, 991, -1, 764, -1, 766, 475, -1, -1, 999, - -1, 894, -1, 84, -1, 898, 777, -1, -1, -1, - 903, 904, -1, -1, 95, -1, -1, -1, 99, -1, - -1, 792, -1, 130, -1, -1, 107, -1, -1, -1, - 137, -1, -1, -1, -1, -1, -1, -1, 711, -1, - 933, 122, 123, -1, 937, -1, 130, -1, -1, -1, - -1, 944, -1, 137, -1, 711, -1, -1, 951, 952, - -1, 278, -1, -1, 27, 28, -1, -1, 31, 32, - 33, 744, -1, -1, -1, -1, -1, 0, -1, 850, - -1, 852, -1, -1, -1, -1, 49, 50, 744, -1, - -1, 764, -1, 766, 987, 58, -1, -1, 991, -1, - 579, -1, -1, -1, 777, -1, 999, -1, 764, -1, - 766, -1, -1, -1, -1, -1, -1, -1, -1, 792, - -1, 777, -1, 894, -1, -1, -1, 898, -1, -1, - -1, -1, 903, 904, -1, -1, 792, 60, -1, -1, - -1, -1, -1, -1, -1, -1, 109, 110, 111, 112, - 113, 114, 115, 116, 117, -1, -1, -1, -1, 638, - -1, 124, 933, -1, -1, -1, 937, -1, -1, -1, - -1, -1, -1, 944, -1, 463, -1, 850, -1, 852, - 951, 952, -1, -1, -1, -1, -1, 475, -1, -1, - -1, -1, -1, -1, 850, -1, 852, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 130, -1, -1, - -1, -1, -1, -1, 137, -1, 987, -1, 27, 28, - 991, 894, 31, 32, 33, 898, -1, -1, 999, -1, - 903, 904, 711, -1, -1, -1, -1, -1, 894, -1, - 49, 50, 898, -1, -1, -1, 463, 903, 904, 58, - -1, -1, -1, -1, -1, -1, -1, -1, 475, -1, - 933, -1, -1, -1, 937, 744, -1, -1, -1, -1, - -1, 944, -1, -1, -1, -1, -1, 933, 951, 952, - -1, 937, -1, -1, -1, 764, -1, 766, 944, -1, - -1, 579, -1, -1, -1, 951, 952, 106, 777, -1, - 109, 110, 111, 112, 113, 114, 115, 116, 117, -1, - -1, 463, -1, 792, 987, 27, 28, -1, 991, 31, - 32, 33, -1, 475, -1, -1, 999, -1, -1, -1, - -1, 987, -1, -1, -1, 991, -1, 49, 50, -1, - -1, -1, -1, 999, -1, -1, 58, -1, -1, -1, - 638, -1, -1, -1, -1, -1, 463, -1, -1, -1, - -1, 9, 579, -1, -1, -1, -1, -1, 475, -1, - -1, 850, -1, 852, -1, -1, -1, -1, -1, 463, - -1, -1, -1, -1, -1, -1, 34, 35, 36, -1, - -1, 475, -1, -1, 106, -1, -1, 109, 110, 111, - 112, 113, 114, 115, 116, 117, 54, 55, 56, 57, - -1, 59, 60, -1, -1, 894, -1, -1, -1, 898, - -1, 638, -1, 711, 903, 904, 74, 75, 76, 77, - 78, 79, 80, 81, 82, -1, -1, -1, -1, 87, - 88, 89, 90, 91, 92, 93, 94, -1, -1, -1, - -1, -1, -1, -1, 933, -1, 744, -1, 937, -1, - -1, -1, -1, -1, -1, 944, -1, -1, -1, -1, - -1, -1, 951, 952, -1, -1, 764, 125, 766, -1, - -1, 129, -1, 131, -1, -1, 638, -1, -1, 777, - -1, -1, -1, -1, 711, 27, 28, -1, -1, 31, - 32, 33, -1, -1, 792, -1, -1, -1, 987, -1, - -1, -1, 991, -1, -1, -1, -1, 49, 50, -1, - 999, -1, -1, -1, -1, -1, 58, 744, -1, -1, - -1, 638, -1, -1, -1, -1, -1, -1, -1, -1, - 463, -1, -1, -1, -1, -1, -1, 764, -1, 766, - -1, -1, 475, -1, 638, -1, -1, -1, -1, 711, - 777, -1, 850, -1, 852, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 792, -1, 109, 110, 111, - 112, 113, 114, 115, 116, 117, -1, -1, -1, -1, - 122, 123, 744, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 711, -1, 894, -1, -1, -1, - 898, -1, 764, -1, 766, 903, 904, -1, -1, -1, - -1, -1, -1, -1, -1, 777, -1, 711, -1, -1, - -1, -1, -1, 850, -1, 852, -1, 744, -1, -1, - 792, -1, -1, -1, -1, 933, -1, -1, -1, 937, - -1, -1, -1, -1, -1, -1, 944, 764, -1, 766, - 744, -1, -1, 951, 952, -1, -1, -1, -1, -1, - 777, -1, -1, -1, -1, -1, -1, 894, -1, -1, - 764, 898, 766, -1, -1, 792, 903, 904, -1, -1, - -1, -1, -1, 777, -1, -1, -1, -1, 850, 987, - 852, -1, -1, 991, -1, -1, -1, -1, 792, 0, - 1, 999, -1, -1, -1, 638, 933, -1, -1, -1, - 937, -1, -1, -1, -1, -1, -1, 944, -1, -1, - -1, -1, -1, -1, 951, 952, -1, -1, -1, -1, - -1, -1, 894, 850, -1, 852, 898, -1, -1, -1, - -1, 903, 904, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 850, -1, 852, 60, - 987, -1, -1, -1, 991, -1, -1, -1, -1, -1, - -1, 933, 999, -1, -1, 937, -1, 894, 711, -1, - -1, 898, 944, -1, -1, -1, 903, 904, -1, 951, - 952, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 894, -1, -1, -1, 898, -1, -1, -1, -1, 903, - 904, 744, -1, -1, -1, 116, 933, -1, -1, -1, - 937, -1, -1, -1, -1, 987, -1, 944, -1, 991, - -1, 764, -1, 766, 951, 952, -1, 999, -1, 933, - -1, -1, -1, 937, 777, 146, -1, -1, -1, -1, - 944, -1, -1, -1, -1, -1, -1, 951, 952, 792, - -1, -1, -1, 9, -1, -1, -1, -1, -1, -1, - 987, -1, -1, -1, 991, -1, -1, -1, -1, -1, - -1, -1, 999, -1, -1, -1, -1, -1, 34, 35, - 36, -1, -1, 987, -1, -1, -1, 991, -1, -1, - -1, -1, -1, -1, 205, 999, 207, -1, 54, 55, - 56, 57, 213, 59, 60, -1, -1, 850, -1, 852, - -1, -1, -1, -1, -1, -1, -1, -1, 74, 75, - 76, 77, 78, 79, 80, 81, 82, -1, -1, -1, - -1, 87, 88, 89, 90, 91, 92, 93, 94, -1, - -1, 252, -1, -1, 255, -1, -1, -1, -1, -1, - -1, 894, -1, -1, -1, 898, 14, 15, 16, 270, - 903, 904, -1, -1, -1, -1, -1, -1, 26, -1, - -1, -1, -1, 129, -1, 131, -1, -1, -1, -1, - 291, -1, 40, -1, 42, 43, 31, 32, 33, 47, - 933, -1, -1, -1, 937, -1, -1, -1, -1, -1, - 58, 944, -1, -1, 49, 50, -1, -1, 951, 952, - 68, -1, 70, 58, 72, 73, -1, 75, -1, 77, - -1, 79, -1, 81, -1, 83, -1, 85, -1, 87, - -1, 89, 90, 91, -1, -1, -1, 95, -1, -1, - 98, -1, -1, 101, 987, 103, -1, -1, 991, -1, - -1, -1, -1, -1, -1, -1, 999, -1, -1, -1, - -1, 119, -1, 121, 109, 110, 111, 112, 113, 114, - 115, 116, 117, -1, -1, -1, -1, -1, -1, -1, + 59, 60, 845, -1, 847, 0, -1, 926, -1, 746, + -1, 930, 49, 50, -1, 979, -1, -1, 937, 983, + -1, 58, -1, -1, 943, 944, -1, 991, 765, -1, + 767, 26, -1, -1, -1, -1, 587, -1, -1, -1, + -1, 778, 721, -1, 887, -1, -1, -1, 891, -1, + 109, -1, 47, 896, 897, 792, -1, -1, -1, -1, + 979, -1, -1, -1, 983, 60, -1, 746, -1, 464, + 129, -1, 991, 110, 111, 112, 113, 114, 115, 116, + 117, 476, -1, 926, -1, -1, 765, 930, 767, -1, + 279, -1, -1, -1, 937, 90, -1, 648, 0, 778, + 943, 944, -1, -1, -1, -1, -1, -1, 845, -1, + 847, -1, -1, 792, 74, 75, 76, 77, 78, 79, + 80, 81, 82, -1, 26, -1, 0, 87, 88, 89, + 90, 91, 92, 93, 94, 130, 979, -1, -1, -1, + 983, -1, 137, -1, -1, 47, -1, -1, 991, -1, + 887, 9, 26, -1, 891, -1, -1, -1, 60, 896, + 897, -1, -1, -1, -1, -1, 845, -1, 847, -1, + 721, 131, 464, 47, -1, -1, 34, 35, 36, -1, + -1, -1, -1, -1, 476, -1, 60, -1, 90, 926, + -1, -1, 587, 930, -1, 746, 54, 55, 56, 57, + 937, 59, 60, -1, -1, -1, 943, 944, 887, -1, + -1, -1, 891, -1, 765, -1, 767, 896, 897, -1, + -1, -1, -1, -1, -1, -1, -1, 778, 130, -1, + -1, -1, -1, -1, -1, 137, -1, -1, -1, -1, + -1, 792, 979, -1, -1, -1, 983, 926, -1, -1, + -1, 930, -1, 648, 991, -1, 130, -1, 937, -1, + -1, -1, -1, 137, 943, 944, -1, 125, -1, -1, + -1, 129, -1, 131, -1, 464, -1, -1, -1, -1, + -1, 0, -1, -1, 279, -1, -1, 476, -1, -1, + -1, -1, -1, -1, 845, 587, 847, -1, -1, -1, + 979, -1, -1, -1, 983, -1, -1, 26, -1, -1, + -1, -1, 991, 9, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 721, -1, 47, -1, + -1, -1, -1, -1, -1, -1, 887, -1, 34, 35, + 891, 60, -1, -1, -1, 896, 897, -1, -1, -1, + -1, 746, -1, -1, -1, -1, 648, -1, 54, 55, + 56, 57, 9, 59, 60, -1, -1, -1, -1, -1, + 765, -1, 767, -1, -1, 926, -1, 279, -1, 930, + -1, -1, -1, 778, -1, -1, 937, 34, 35, 36, + -1, 0, 943, 944, -1, -1, 9, 792, 587, -1, + -1, -1, -1, -1, -1, 279, -1, 54, 55, 56, + 57, 130, 59, 60, -1, -1, -1, 26, 137, -1, + -1, 34, 35, 36, -1, -1, -1, -1, 979, 721, + -1, -1, 983, 129, -1, 131, -1, -1, 47, -1, + 991, 54, 55, 56, 57, -1, 59, 60, -1, -1, + 845, 60, 847, -1, 746, -1, -1, -1, -1, 648, + -1, -1, 109, 0, -1, -1, -1, -1, -1, 464, + -1, -1, -1, 765, -1, 767, -1, -1, 125, -1, + -1, 476, 129, -1, 131, -1, 778, -1, -1, 26, + -1, -1, 887, -1, -1, -1, 891, -1, -1, -1, + 792, 896, 897, -1, -1, -1, -1, -1, -1, -1, + 47, -1, -1, -1, -1, -1, 129, -1, 131, 9, + -1, 130, -1, 60, -1, -1, -1, -1, 137, -1, + -1, 926, 721, -1, -1, 930, -1, -1, -1, -1, + -1, -1, 937, -1, 34, 35, 36, -1, 943, 944, + -1, -1, -1, 845, -1, 847, -1, 746, -1, -1, + 279, -1, 464, -1, 54, 55, 56, 57, -1, 59, + 60, -1, -1, -1, 476, -1, 765, -1, 767, -1, + -1, 9, -1, -1, 979, -1, -1, -1, 983, 778, + 464, -1, 587, 130, -1, 887, 991, -1, -1, 891, + 137, -1, 476, 792, 896, 897, 34, 35, 36, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 149, 150, -1, -1, -1, -1, -1, -1, 5, - -1, 7, 8, -1, 10, 11, 12, 13, -1, -1, - -1, 169, -1, 19, 20, 21, 22, 23, 24, -1, - 26, -1, -1, 29, 30, -1, -1, -1, 34, 35, - -1, -1, -1, -1, -1, 446, 42, -1, 44, -1, - -1, 47, 48, -1, -1, 51, 52, 53, -1, -1, - -1, -1, 210, -1, -1, 61, 214, -1, -1, -1, - -1, -1, -1, 474, 70, -1, 72, 73, -1, -1, - -1, 482, -1, -1, 485, -1, 487, -1, 84, -1, - -1, -1, -1, 241, 242, 243, -1, -1, -1, 95, - 96, -1, -1, 99, 252, -1, -1, -1, 104, 105, - 258, 107, -1, -1, -1, -1, -1, 113, 114, -1, - -1, -1, -1, -1, 120, 121, 274, -1, -1, 125, - 278, 127, -1, 129, 535, -1, 537, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 548, -1, 297, - 298, -1, -1, -1, 555, -1, -1, 558, 559, -1, - 561, -1, -1, 564, -1, -1, -1, -1, -1, -1, - 571, -1, -1, -1, -1, -1, -1, -1, -1, 580, - -1, -1, 0, 1, -1, 3, 4, 5, 6, 7, - 8, -1, 10, 11, 12, 13, 14, -1, -1, -1, - -1, 19, 20, 21, 22, 23, 24, 25, 26, -1, - -1, -1, 30, -1, -1, -1, 34, 35, -1, 37, - -1, -1, -1, -1, 42, 43, 44, 45, -1, 47, - 48, -1, -1, 51, 52, 53, -1, -1, -1, -1, - -1, -1, -1, 61, 62, 63, -1, -1, -1, -1, - 68, 652, 70, 71, 72, 73, -1, -1, 406, -1, - -1, -1, -1, -1, -1, 83, 84, 85, 86, -1, - -1, -1, -1, -1, 422, -1, -1, 95, 96, 97, - 98, 99, 100, -1, 102, -1, 104, -1, -1, 107, - -1, -1, -1, -1, -1, -1, -1, -1, 699, -1, - -1, -1, 120, -1, 122, 123, 707, 125, 709, 127, - -1, 129, -1, -1, -1, -1, -1, 718, -1, -1, - 5, -1, 7, 8, -1, 10, 11, 12, 13, -1, - -1, -1, -1, -1, 19, 20, 21, 22, 23, 24, - -1, 26, -1, -1, 745, 30, -1, -1, -1, 497, - 751, -1, 753, -1, -1, -1, -1, 42, 506, 44, - -1, -1, 47, 48, -1, -1, 767, 52, 53, 770, - 771, 772, -1, -1, -1, 776, 61, -1, 779, -1, - -1, -1, -1, -1, -1, 70, -1, 72, 73, -1, - 538, -1, 540, -1, -1, -1, 27, 28, -1, 84, - 31, 32, 33, 804, -1, -1, -1, -1, -1, -1, - 95, 96, -1, -1, 99, 563, -1, -1, 49, 50, - -1, -1, 107, -1, -1, -1, -1, 58, 576, -1, - -1, 579, -1, -1, 582, 120, -1, -1, -1, -1, - 125, -1, 127, 844, -1, -1, -1, -1, -1, -1, - 851, -1, -1, 854, -1, -1, -1, -1, -1, 10, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 20, - 21, -1, -1, -1, -1, -1, 877, -1, 109, 110, - 111, 112, 113, 114, 115, 116, 117, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 50, - 648, 649, -1, -1, 905, 56, 57, -1, -1, -1, - -1, -1, 913, 914, -1, -1, -1, -1, 919, -1, - 668, -1, -1, -1, -1, -1, 927, 928, -1, -1, - 931, -1, -1, 934, 935, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 698, -1, -1, 701, -1, -1, -1, 705, 706, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 716, -1, - 718, -1, -1, 974, 722, 723, 977, -1, -1, -1, - 728, 729, 133, -1, -1, -1, -1, -1, -1, -1, - 738, -1, -1, 144, -1, -1, -1, -1, -1, -1, - 151, -1, -1, -1, -1, -1, -1, 158, -1, -1, - -1, -1, -1, -1, -1, -1, 167, 168, -1, -1, - -1, -1, -1, -1, -1, 5, -1, 7, 8, -1, - 10, 11, 12, 13, -1, -1, -1, -1, -1, 19, - 20, 21, 22, 23, 24, -1, 26, -1, -1, 29, - 30, -1, -1, -1, 34, 35, -1, 805, 806, -1, - -1, -1, 42, -1, 44, -1, -1, 47, 48, -1, - -1, 51, 52, 53, 822, -1, -1, -1, -1, -1, - -1, 61, 830, -1, 832, -1, -1, -1, -1, -1, - 70, -1, 72, 73, 245, -1, -1, 845, -1, 847, - -1, -1, -1, -1, 84, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 95, 96, -1, 269, 99, - 868, 272, -1, -1, 104, 873, -1, 107, 876, -1, - -1, -1, -1, 113, 114, -1, -1, -1, -1, -1, - 120, 121, -1, -1, 124, 125, -1, 127, -1, 129, - 301, 302, -1, -1, 305, -1, -1, -1, -1, -1, - -1, 312, -1, 911, -1, 316, -1, -1, -1, -1, - 321, -1, 920, -1, 325, 923, -1, -1, 329, -1, - -1, 929, 333, -1, -1, 336, -1, -1, -1, 340, - -1, -1, -1, 344, -1, -1, -1, -1, -1, -1, - 351, -1, -1, -1, -1, 5, -1, -1, -1, -1, - -1, 11, 12, 961, -1, -1, -1, -1, -1, -1, - -1, -1, 22, 23, 24, -1, 26, -1, -1, -1, - 30, -1, -1, -1, -1, -1, -1, -1, 389, -1, - 391, -1, 42, 394, 44, -1, 397, 47, 48, -1, - -1, 402, 52, 53, -1, -1, -1, 408, 1006, 1007, - -1, 61, -1, -1, 415, 416, 417, 418, 419, 420, - 421, 9, 72, 73, -1, -1, -1, -1, 429, -1, - 431, -1, -1, 434, 84, -1, -1, -1, -1, 440, - -1, -1, -1, -1, -1, 95, 34, 35, 36, 99, - -1, -1, -1, -1, -1, -1, -1, 107, -1, -1, -1, -1, -1, -1, -1, -1, 54, 55, 56, 57, - 120, 59, 60, -1, -1, 125, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 74, 75, 76, 77, - 78, 79, 80, 81, 82, -1, -1, -1, -1, 87, - 88, 89, 90, 91, 92, 93, 94, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 517, 518, 519, 520, - 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, - 531, 532, 533, 534, 122, 123, 124, -1, -1, -1, - -1, 129, -1, 131, -1, -1, 5, -1, 7, 8, - 551, 10, 11, 12, 13, -1, 557, -1, -1, -1, - 19, 20, 21, 22, 23, 24, -1, 26, -1, -1, - -1, 30, -1, -1, -1, 576, -1, 578, -1, -1, - -1, -1, -1, 42, -1, 44, -1, -1, 47, 48, - -1, 592, 51, 52, 53, 27, -1, -1, -1, 31, - 32, 33, 61, -1, 605, -1, -1, -1, -1, -1, - -1, 70, -1, 72, 73, -1, -1, 49, 50, -1, - -1, -1, -1, -1, -1, 84, 58, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 95, 96, -1, -1, - 99, -1, 643, -1, -1, 104, -1, -1, 107, -1, - 651, -1, -1, -1, -1, -1, -1, -1, 659, -1, - -1, 120, -1, 664, -1, -1, 125, -1, 127, -1, - 129, -1, -1, -1, -1, -1, -1, 109, 110, 111, - 112, 113, 114, 115, 116, 117, -1, -1, -1, -1, - -1, -1, -1, 66, 67, -1, 69, -1, 71, -1, - -1, 74, -1, 76, -1, 78, -1, -1, -1, 82, - -1, 84, -1, -1, -1, 88, -1, -1, -1, 92, - 93, -1, -1, -1, 97, -1, 99, -1, 729, 102, - -1, -1, -1, -1, -1, 74, 75, 76, 77, 78, - 79, 80, 81, 82, 117, 118, -1, 120, 87, 88, - 89, 90, 91, 92, 93, 94, -1, 758, -1, -1, - -1, 762, -1, -1, -1, -1, -1, 768, -1, -1, - -1, -1, -1, 774, -1, -1, -1, -1, -1, 780, - -1, -1, -1, -1, -1, -1, 125, 788, -1, -1, - -1, -1, 793, -1, -1, -1, -1, 170, 171, 172, - 173, 174, 175, 176, -1, 178, 179, -1, 181, 182, - 183, -1, 185, -1, 187, 188, -1, -1, -1, -1, - -1, 822, -1, 824, -1, -1, -1, 200, -1, 202, - 203, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 217, 218, 219, 220, 221, 222, - 223, -1, 225, 226, -1, 228, 229, 230, 859, 232, - 233, 234, -1, 864, 237, 238, 239, 74, 75, 76, + -1, 59, 60, -1, 926, -1, -1, -1, 930, 129, + -1, 131, -1, -1, -1, 937, -1, -1, -1, -1, + -1, 943, 944, 648, -1, -1, 845, -1, 847, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 9, + 279, 0, -1, -1, 0, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 587, -1, 979, -1, -1, + -1, 983, -1, -1, 34, 35, 36, 26, 887, 991, + 26, 129, 891, 131, -1, -1, -1, 896, 897, -1, + -1, -1, -1, 587, 54, 55, 56, 57, 47, 59, + 60, 47, -1, -1, -1, -1, 721, -1, -1, -1, + -1, 60, -1, -1, 60, -1, -1, 926, -1, -1, + -1, 930, 279, -1, -1, 464, 648, -1, 937, -1, + -1, 746, -1, -1, 943, 944, -1, 476, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 765, -1, 767, -1, 648, -1, -1, -1, -1, -1, + 9, -1, -1, 778, -1, -1, 0, -1, -1, 129, + 979, 131, 9, -1, 983, -1, -1, 792, -1, -1, + -1, 130, 991, -1, 130, 34, 35, 36, 137, -1, + -1, 137, 26, -1, -1, -1, -1, 34, 35, 721, + -1, -1, -1, -1, -1, 54, 55, 56, 57, -1, + 59, 60, 9, 47, -1, -1, -1, 54, 55, 56, + 57, -1, 59, 60, 746, -1, 60, 721, -1, -1, + 845, -1, 847, -1, -1, 464, -1, 34, 35, 36, + 0, -1, -1, 765, -1, 767, -1, 476, 587, -1, + -1, -1, 746, -1, -1, -1, 778, 54, 55, 56, + 57, -1, 59, 60, -1, -1, 26, -1, -1, -1, + 792, 765, 887, 767, -1, -1, 891, -1, -1, -1, + 129, 896, 897, -1, 778, -1, -1, 47, -1, -1, + -1, 9, 129, -1, 131, -1, 130, -1, 792, -1, + 60, -1, -1, 137, -1, -1, -1, 464, -1, 648, + -1, 926, -1, -1, -1, 930, 34, 35, 36, 476, + -1, -1, 937, 845, -1, 847, -1, -1, 943, 944, + 279, -1, 129, 279, 131, -1, 54, 55, 56, 57, + -1, 59, 60, -1, -1, -1, -1, -1, -1, -1, + -1, 845, -1, 847, -1, -1, -1, -1, 587, -1, + -1, -1, -1, -1, 979, 887, -1, -1, 983, 891, + 130, -1, -1, -1, 896, 897, 991, 137, -1, -1, + -1, -1, 721, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 887, 27, 0, -1, 891, 31, 32, + 33, -1, 896, 897, 926, -1, -1, 746, 930, -1, + -1, 129, -1, 131, -1, 937, 49, 50, -1, 648, + -1, 943, 944, -1, -1, 58, 765, -1, 767, -1, + 587, -1, 926, -1, -1, -1, 930, -1, -1, 778, + 0, -1, -1, 937, -1, 279, -1, -1, -1, 943, + 944, -1, -1, 792, -1, 60, -1, 979, -1, -1, + -1, 983, -1, -1, -1, -1, 26, -1, -1, 991, + -1, -1, -1, -1, -1, -1, 109, 110, 111, 112, + 113, 114, 115, 116, 117, 979, -1, 47, -1, 983, + -1, 648, 721, -1, -1, -1, -1, 991, -1, -1, + 60, -1, -1, -1, -1, -1, 845, -1, 847, -1, + -1, -1, -1, -1, -1, 464, -1, 746, 464, 279, + -1, -1, -1, -1, -1, 130, -1, 476, -1, -1, + 476, -1, 137, -1, 9, -1, 765, -1, 767, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 887, 778, + -1, -1, 891, -1, -1, 0, -1, 896, 897, 34, + 35, 36, -1, 792, 721, -1, -1, -1, -1, -1, + 130, -1, -1, -1, -1, -1, -1, 137, -1, 54, + 55, 56, 57, -1, 59, 60, -1, 926, -1, 746, + -1, 930, -1, -1, -1, -1, -1, -1, 937, -1, + 9, -1, -1, -1, 943, 944, -1, -1, 765, -1, + 767, -1, -1, -1, 0, 60, 845, -1, 847, -1, + -1, 778, -1, -1, -1, 34, 35, -1, -1, 0, + 464, -1, -1, -1, -1, 792, -1, -1, 587, -1, + 979, 587, 476, -1, 983, 54, 55, 56, 57, -1, + 59, 60, 991, -1, 129, -1, 131, -1, 887, -1, + -1, -1, 891, -1, -1, -1, -1, 896, 897, -1, + -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 130, -1, -1, 845, 60, + 847, -1, 137, -1, -1, -1, -1, 926, -1, 648, + -1, 930, 648, -1, 464, -1, 27, 28, 937, -1, + 31, 32, 33, -1, 943, 944, 476, -1, -1, 279, + 129, -1, 131, -1, -1, -1, -1, -1, 49, 50, + 887, -1, -1, -1, 891, -1, -1, 58, -1, 896, + 897, -1, -1, -1, 130, -1, -1, -1, -1, -1, + 979, 137, -1, 587, 983, -1, -1, -1, -1, 130, + -1, -1, 991, -1, -1, -1, 137, -1, -1, 926, + -1, -1, 721, 930, -1, 721, -1, -1, -1, -1, + 937, -1, -1, 31, 32, 33, 943, 944, 109, 110, + 111, 112, 113, 114, 115, 116, 117, 746, -1, -1, + 746, 49, 50, 124, -1, -1, -1, -1, -1, -1, + 58, -1, -1, -1, 648, -1, 765, -1, 767, 765, + -1, 767, 979, -1, -1, -1, 983, 587, -1, 778, + -1, -1, 778, -1, 991, 5, -1, -1, -1, -1, + -1, 11, 12, 792, -1, -1, 792, -1, -1, -1, + -1, -1, 22, 23, 24, -1, 26, -1, -1, 464, + 30, 109, 110, 111, 112, 113, 114, 115, 116, 117, + -1, 476, 42, -1, 44, -1, -1, 47, 48, -1, + 27, 28, 52, 53, 31, 32, 33, 721, 648, -1, + -1, 61, -1, -1, -1, -1, 845, -1, 847, 845, + -1, 847, 49, 50, 464, -1, -1, -1, -1, -1, + -1, 58, 746, -1, 84, -1, 476, -1, -1, -1, + -1, -1, -1, -1, -1, 95, -1, -1, -1, 99, + -1, 765, -1, 767, -1, -1, -1, 107, 887, -1, + -1, 887, 891, -1, 778, 891, -1, 896, 897, -1, + 896, 897, 122, 123, -1, -1, -1, -1, 792, -1, + -1, 721, 109, 110, 111, 112, 113, 114, 115, 116, + 117, -1, -1, -1, -1, 122, 123, 926, -1, -1, + 926, 930, -1, -1, 930, -1, 746, -1, 937, -1, + -1, 937, -1, -1, 943, 944, -1, 943, 944, -1, + -1, -1, -1, -1, -1, 765, -1, 767, -1, -1, + -1, 845, -1, 847, -1, -1, -1, -1, 778, 464, + -1, -1, -1, -1, -1, -1, -1, 587, -1, -1, + 979, 476, 792, 979, 983, -1, -1, 983, -1, -1, + -1, -1, 991, 648, -1, 991, -1, -1, -1, -1, + -1, -1, -1, 887, -1, -1, -1, 891, -1, -1, + -1, -1, 896, 897, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 464, -1, + -1, -1, -1, -1, -1, 845, -1, 847, 648, -1, + 476, -1, 926, 464, -1, -1, 930, -1, -1, -1, + -1, -1, -1, 937, -1, 476, -1, 27, 28, 943, + 944, 31, 32, 33, -1, -1, 721, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 887, -1, 49, + 50, 891, -1, -1, -1, -1, 896, 897, 58, -1, + -1, 746, -1, -1, -1, 979, -1, -1, -1, 983, + -1, -1, -1, -1, -1, -1, -1, 991, -1, -1, + 765, 721, 767, -1, -1, -1, 926, -1, -1, -1, + 930, -1, -1, 778, -1, -1, -1, 937, -1, -1, + -1, -1, -1, 943, 944, -1, 746, 792, 9, 109, + 110, 111, 112, 113, 114, 115, 116, 117, -1, -1, + -1, -1, -1, 648, -1, 765, -1, 767, -1, -1, + -1, -1, -1, 34, 35, 36, -1, -1, 778, 979, + -1, -1, -1, 983, -1, -1, -1, -1, -1, -1, + -1, 991, 792, 54, 55, 56, 57, -1, 59, 60, + 845, -1, 847, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 74, 75, 76, 77, 78, 79, 80, + 81, 82, 648, -1, -1, -1, 87, 88, 89, 90, + 91, 92, 93, 94, -1, -1, 721, 648, -1, -1, + -1, -1, 887, -1, -1, 845, 891, 847, -1, -1, + -1, 896, 897, -1, -1, -1, -1, -1, -1, -1, + -1, 746, -1, -1, 125, -1, -1, -1, 129, -1, + 131, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 765, 926, 767, -1, -1, 930, -1, 887, -1, -1, + -1, 891, 937, 778, -1, 721, 896, 897, 943, 944, + -1, -1, -1, -1, -1, -1, -1, 792, -1, -1, + 721, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 746, -1, -1, -1, -1, -1, 926, -1, -1, -1, + 930, -1, -1, -1, 979, 746, -1, 937, 983, 765, + -1, 767, -1, 943, 944, -1, 991, -1, -1, -1, + -1, -1, 778, -1, 765, -1, 767, -1, -1, -1, + 845, -1, 847, -1, -1, -1, 792, 778, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 979, + -1, 792, -1, 983, -1, -1, -1, -1, -1, -1, + -1, 991, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 887, -1, -1, -1, 891, -1, -1, -1, + -1, 896, 897, -1, -1, -1, -1, -1, -1, 845, + -1, 847, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 845, -1, 847, -1, -1, -1, + -1, 926, -1, -1, -1, 930, -1, -1, -1, -1, + -1, -1, 937, -1, -1, -1, -1, -1, 943, 944, + -1, 887, -1, -1, -1, 891, -1, -1, -1, -1, + 896, 897, -1, -1, -1, -1, 887, -1, -1, -1, + 891, -1, -1, -1, -1, 896, 897, -1, -1, -1, + -1, -1, -1, -1, 979, -1, -1, -1, 983, -1, + 926, -1, -1, -1, 930, -1, 991, -1, 14, 15, + 16, 937, -1, -1, -1, 926, -1, 943, 944, 930, + 26, -1, -1, -1, -1, -1, 937, -1, -1, -1, + -1, -1, 943, 944, 40, -1, 42, 43, -1, -1, + -1, 47, 0, 1, -1, -1, -1, -1, -1, -1, + -1, -1, 58, 979, -1, -1, -1, 983, -1, -1, + -1, -1, 68, -1, 70, 991, 72, 73, 979, 75, + -1, 77, 983, 79, -1, 81, -1, 83, -1, 85, + 991, 87, -1, 89, 90, 91, -1, -1, -1, 95, + -1, -1, 98, -1, -1, 101, -1, 103, -1, -1, + -1, -1, 60, 5, -1, 7, 8, -1, 10, 11, + 12, 13, -1, 119, -1, 121, -1, 19, 20, 21, + 22, 23, 24, -1, 26, -1, -1, 29, 30, -1, + -1, -1, 34, 35, -1, -1, -1, -1, -1, -1, + 42, -1, 44, 149, 150, 47, 48, -1, -1, 51, + 52, 53, -1, -1, -1, -1, -1, -1, 116, 61, + -1, -1, -1, 169, -1, -1, -1, -1, 70, -1, + 72, 73, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 84, -1, -1, -1, -1, -1, 146, -1, + -1, -1, -1, 95, 96, -1, -1, 99, -1, -1, + -1, -1, 104, -1, 210, 107, -1, -1, 214, -1, + -1, 113, 114, -1, -1, -1, -1, -1, 120, 121, + -1, -1, 124, 125, -1, 127, -1, 129, -1, -1, + -1, -1, -1, -1, -1, 241, 242, 243, -1, -1, + -1, -1, -1, -1, -1, -1, 252, 205, -1, 207, + -1, -1, 258, 259, -1, 213, -1, 70, -1, 72, + 73, -1, 75, -1, 77, -1, 79, -1, 81, 275, + 83, -1, 85, 279, 87, -1, 89, 90, 91, -1, + -1, -1, 95, -1, -1, 98, -1, -1, 101, -1, + 103, -1, 298, 299, 252, -1, -1, 255, -1, 66, + 67, -1, 69, -1, 71, -1, 119, 74, 121, 76, + -1, 78, 9, 271, -1, 82, -1, 84, -1, -1, + -1, 88, -1, -1, -1, 92, 93, -1, -1, -1, + 97, -1, 99, -1, 292, 102, -1, 34, 35, 36, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 117, 118, -1, 120, -1, -1, -1, 54, 55, 56, + 57, -1, 59, 60, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 74, 75, 76, 77, 78, 79, 80, 81, 82, -1, -1, -1, -1, - 87, 88, 89, 90, 91, 92, 93, 94, -1, 262, - 263, -1, 265, 266, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 906, 0, 1, -1, 3, - 4, 5, 6, 7, 8, -1, 10, 11, 12, 13, - 14, -1, -1, -1, 131, 19, 20, 21, 22, 23, - 24, 25, 26, -1, -1, -1, 30, -1, -1, -1, - 34, 35, -1, 37, -1, -1, 947, -1, 42, 43, - 44, 45, -1, 47, 48, -1, -1, 51, 52, 53, - -1, -1, -1, -1, -1, -1, -1, 61, 62, 63, - -1, -1, -1, -1, 68, -1, 70, 71, 72, 73, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 83, - 84, 85, 86, -1, -1, -1, -1, -1, 371, -1, - -1, 95, 96, 97, 98, 99, 100, -1, 102, -1, - 104, -1, -1, 107, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 120, -1, 122, 123, - -1, 125, -1, 127, 1, 129, 3, 4, 5, 6, - 7, 8, -1, 10, 11, 12, 13, 14, 15, 16, + 87, 88, 89, 90, 91, 92, 93, 94, -1, -1, + -1, 407, -1, 170, 171, 172, 173, 174, 175, 176, + -1, 178, 179, -1, 181, 182, 183, 423, 185, -1, + 187, 188, -1, -1, -1, 122, 123, 124, -1, -1, + -1, -1, 129, 200, 131, 202, 203, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 217, 218, 219, 220, 221, 222, 223, -1, 225, 226, + -1, 228, 229, 230, -1, 232, 233, 234, -1, -1, + 237, 238, 239, -1, -1, -1, -1, -1, -1, -1, + 27, 28, -1, -1, 31, 32, 33, -1, -1, 447, + -1, -1, 498, -1, -1, -1, 263, 264, -1, 266, + 267, 507, 49, 50, -1, -1, -1, -1, -1, -1, + -1, 58, -1, -1, -1, -1, -1, 475, -1, -1, + -1, -1, -1, -1, -1, 483, -1, -1, 486, -1, + 488, -1, -1, 539, -1, 541, 74, 75, 76, 77, + 78, 79, 80, 81, 82, -1, -1, -1, -1, 87, + 88, 89, 90, 91, 92, 93, 94, -1, 564, 106, + -1, -1, 109, 110, 111, 112, 113, 114, 115, 116, + 117, 577, -1, -1, -1, -1, -1, -1, 536, -1, + 538, 587, -1, -1, 590, -1, -1, 125, -1, -1, + -1, 549, -1, -1, -1, 9, -1, -1, 556, -1, + -1, 559, 560, -1, 562, 372, -1, 565, -1, -1, + -1, -1, -1, -1, 572, -1, -1, -1, -1, -1, + 34, 35, 36, -1, -1, -1, -1, -1, -1, -1, + 588, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 54, 55, 56, 57, -1, 59, 60, -1, -1, -1, + -1, -1, 658, 659, -1, -1, -1, -1, -1, -1, + 74, 75, 76, 77, 78, 79, 80, 81, 82, -1, + -1, -1, 678, 87, 88, 89, 90, 91, 92, 93, + 94, -1, -1, 10, -1, -1, -1, -1, -1, -1, + -1, 27, 28, 20, 21, 31, 32, 33, -1, -1, + -1, -1, 708, -1, 662, 711, -1, -1, -1, 715, + 716, -1, -1, 49, 50, 129, -1, 131, -1, 725, + -1, 727, 58, 50, -1, 731, 732, -1, -1, 56, + 57, 737, -1, 739, 740, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 709, -1, -1, -1, -1, -1, -1, -1, 717, + -1, 719, -1, -1, -1, -1, -1, -1, -1, 727, + 106, -1, -1, 109, 110, 111, 112, 113, 114, 115, + 116, 117, -1, -1, -1, -1, -1, -1, -1, 747, + -1, -1, -1, -1, 752, -1, 754, -1, -1, 805, + 806, -1, -1, -1, -1, -1, 133, -1, -1, -1, + 768, -1, -1, 771, 772, 773, 583, 144, -1, 777, + -1, -1, 780, 829, 151, 831, -1, -1, -1, 596, + -1, 158, 599, -1, 840, -1, 842, -1, -1, -1, + 167, 168, -1, -1, -1, -1, 804, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 863, -1, -1, + -1, -1, 868, -1, -1, 871, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 5, -1, + -1, 839, -1, -1, 11, 12, -1, -1, 846, -1, + -1, 849, -1, -1, -1, 22, 23, 24, 904, 26, + -1, -1, -1, 30, -1, -1, -1, 913, -1, -1, + 916, -1, -1, -1, 872, 42, 922, 44, 245, -1, + 47, 48, -1, -1, -1, 52, 53, -1, -1, -1, + -1, -1, 259, -1, 61, -1, -1, -1, -1, -1, + 898, -1, -1, 270, -1, -1, 273, 953, 906, 907, + -1, -1, -1, -1, 912, -1, -1, 84, -1, -1, + -1, -1, 920, 921, -1, -1, 924, -1, 95, 927, + 928, -1, 99, -1, -1, 302, 303, -1, -1, 306, + 107, -1, -1, -1, -1, -1, 313, -1, -1, -1, + 317, -1, 998, 999, 121, 322, -1, -1, -1, 326, + -1, -1, -1, 330, -1, -1, -1, 334, 966, -1, + 337, 969, -1, -1, 341, -1, -1, -1, 345, -1, + -1, -1, -1, -1, -1, 352, -1, -1, -1, -1, + 5, -1, -1, -1, -1, -1, 11, 12, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 22, 23, 24, + -1, 26, -1, -1, -1, 30, -1, -1, -1, -1, + -1, -1, -1, 390, -1, 392, -1, 42, 395, 44, + -1, 398, 47, 48, -1, -1, 403, 52, 53, -1, + -1, -1, 409, -1, -1, -1, 61, -1, -1, 416, + 417, 418, 419, 420, 421, 422, 9, 72, 73, -1, + -1, -1, -1, 430, -1, 432, -1, -1, 435, 84, + -1, -1, -1, -1, 441, -1, -1, -1, -1, -1, + 95, 34, 35, 36, 99, -1, -1, -1, -1, -1, + -1, -1, 107, -1, -1, -1, -1, -1, -1, -1, + -1, 54, 55, 56, 57, 120, 59, 60, -1, -1, + 125, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 74, 75, 76, 77, 78, 79, 80, 81, 82, + -1, -1, -1, -1, 87, 88, 89, 90, 91, 92, + 93, 94, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 518, 519, 520, 521, 522, 523, 524, 525, 526, + 527, 528, 529, 530, 531, 532, 533, 534, 535, -1, + -1, -1, -1, -1, -1, -1, 129, -1, 131, -1, + -1, -1, -1, -1, -1, 552, -1, -1, -1, -1, + -1, 558, -1, -1, -1, -1, -1, -1, 74, 75, + 76, 77, 78, 79, 80, 81, 82, -1, -1, -1, + 577, 87, 88, 89, 90, 91, 92, 93, 94, 586, + -1, 74, 75, 76, 77, 78, 79, 80, 81, 82, + -1, -1, -1, 600, 87, 88, 89, 90, 91, 92, + 93, 94, -1, -1, -1, -1, -1, -1, 615, 125, + -1, -1, -1, 0, 1, -1, 3, 4, 5, 6, + 7, 8, -1, 10, 11, 12, 13, 14, -1, -1, + -1, -1, 19, 20, 21, 22, 23, 24, 25, 26, + -1, -1, -1, 30, -1, -1, 653, 34, 35, -1, + 37, -1, -1, -1, 661, 42, 43, 44, 45, -1, + 47, 48, 669, -1, 51, 52, 53, 674, -1, -1, + -1, -1, -1, -1, 61, 62, 63, -1, -1, -1, + -1, 68, -1, 70, 71, 72, 73, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 83, 84, 85, 86, + -1, -1, -1, -1, -1, -1, -1, -1, 95, 96, + 97, 98, 99, 100, -1, 102, -1, 104, -1, -1, + 107, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 739, 120, -1, 122, 123, -1, 125, -1, + 127, -1, 129, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 759, -1, -1, -1, 763, -1, -1, -1, + -1, -1, 769, -1, -1, -1, -1, -1, 775, -1, + -1, -1, -1, -1, 781, -1, -1, -1, -1, -1, + -1, 788, -1, -1, -1, -1, 793, 0, 1, -1, + 3, 4, 5, 6, 7, 8, -1, 10, 11, 12, + 13, 14, -1, -1, -1, -1, 19, 20, 21, 22, + 23, 24, 25, 26, -1, -1, 823, 30, -1, -1, + -1, 34, 35, -1, 37, -1, -1, -1, -1, 42, + 43, 44, 45, -1, 47, 48, -1, -1, 51, 52, + 53, -1, -1, -1, -1, 852, -1, 854, 61, 62, + 63, -1, 859, -1, -1, 68, -1, 70, 71, 72, + 73, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 83, 84, 85, 86, -1, -1, -1, -1, -1, -1, + -1, -1, 95, 96, 97, 98, 99, 100, -1, 102, + -1, 104, -1, -1, 107, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 120, -1, 122, + 123, -1, 125, -1, 127, -1, 129, -1, -1, -1, + -1, -1, -1, -1, 1, -1, 3, 4, 5, 6, + 7, 8, 939, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, -1, 30, -1, -1, -1, 34, 35, -1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, @@ -3018,14 +2997,26 @@ static const yytype_int16 yycheck[] = 97, 98, 99, 100, 101, 102, 103, 104, -1, -1, 107, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 120, -1, 122, 123, -1, 125, -1, - 127, 128, 129, -1, -1, -1, -1, -1, -1, -1, - 1, -1, 3, 4, 5, 6, 7, 8, -1, 10, + 127, 128, 129, 1, -1, 3, 4, 5, 6, 7, + 8, -1, 10, 11, 12, 13, 14, -1, -1, 17, + -1, 19, 20, 21, 22, 23, 24, 25, 26, -1, + -1, -1, 30, -1, -1, -1, 34, 35, -1, 37, + -1, -1, -1, -1, 42, 43, 44, 45, -1, 47, + 48, -1, -1, 51, 52, 53, -1, -1, -1, -1, + -1, -1, -1, 61, 62, 63, 64, 65, 66, 67, + 68, -1, 70, 71, 72, 73, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 83, 84, 85, 86, -1, + -1, -1, -1, -1, -1, -1, -1, 95, 96, 97, + 98, 99, 100, -1, 102, -1, 104, -1, -1, 107, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 120, -1, 122, 123, -1, 125, -1, 127, + 1, 129, 3, 4, 5, 6, 7, 8, -1, 10, 11, 12, 13, 14, -1, -1, 17, -1, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, -1, 30, - -1, -1, -1, 34, 35, -1, 37, -1, -1, -1, - -1, 42, 43, 44, 45, 588, 47, 48, 591, -1, + -1, -1, -1, 34, 35, -1, 37, 38, 39, 40, + -1, 42, 43, 44, 45, -1, 47, 48, -1, -1, 51, 52, 53, -1, -1, -1, -1, -1, -1, -1, - 61, 62, 63, 64, 65, 66, 67, 68, -1, 70, + 61, 62, 63, -1, -1, -1, -1, 68, -1, 70, 71, 72, 73, -1, -1, -1, -1, -1, -1, -1, -1, -1, 83, 84, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, 95, 96, 97, 98, 99, 100, @@ -3035,58 +3026,58 @@ static const yytype_int16 yycheck[] = 4, 5, 6, 7, 8, -1, 10, 11, 12, 13, 14, -1, -1, 17, -1, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, -1, 30, -1, -1, -1, - 34, 35, -1, 37, 38, 39, 40, -1, 42, 43, + 34, 35, -1, 37, 38, 39, -1, -1, 42, 43, 44, 45, -1, 47, 48, -1, -1, 51, 52, 53, -1, -1, -1, -1, -1, -1, -1, 61, 62, 63, - -1, -1, 735, -1, 68, -1, 70, 71, 72, 73, + -1, -1, -1, -1, 68, -1, 70, 71, 72, 73, -1, -1, -1, -1, -1, -1, -1, -1, -1, 83, 84, 85, 86, -1, -1, -1, -1, -1, -1, -1, - -1, 95, 96, 97, 98, 99, 100, -1, 102, -1, + -1, 95, 96, 97, 98, 99, 100, 101, 102, -1, 104, -1, -1, 107, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 120, -1, 122, 123, -1, 125, -1, 127, 1, 129, 3, 4, 5, 6, 7, 8, -1, 10, 11, 12, 13, 14, -1, -1, 17, -1, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, -1, 30, -1, -1, -1, 34, 35, -1, - 37, 38, 39, -1, -1, 42, 43, 44, 45, -1, + 37, 38, 39, 40, -1, 42, 43, 44, 45, -1, 47, 48, -1, -1, 51, 52, 53, -1, -1, -1, -1, -1, -1, -1, 61, 62, 63, -1, -1, -1, -1, 68, -1, 70, 71, 72, 73, -1, -1, -1, -1, -1, -1, -1, -1, -1, 83, 84, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, 95, 96, - 97, 98, 99, 100, 101, 102, -1, 104, -1, -1, + 97, 98, 99, 100, -1, 102, -1, 104, -1, -1, 107, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 120, -1, 122, 123, -1, 125, -1, 127, 1, 129, 3, 4, 5, 6, 7, 8, -1, 10, 11, 12, 13, 14, -1, -1, 17, -1, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, -1, 30, -1, -1, -1, 34, 35, -1, 37, 38, 39, - 40, -1, 42, 43, 44, 45, -1, 47, 48, -1, + -1, -1, 42, 43, 44, 45, -1, 47, 48, -1, -1, 51, 52, 53, -1, -1, -1, -1, -1, -1, -1, 61, 62, 63, -1, -1, -1, -1, 68, -1, 70, 71, 72, 73, -1, -1, -1, -1, -1, -1, -1, -1, -1, 83, 84, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, 95, 96, 97, 98, 99, - 100, -1, 102, -1, 104, -1, -1, 107, -1, -1, + 100, 101, 102, -1, 104, -1, -1, 107, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 120, -1, 122, 123, -1, 125, -1, 127, 1, 129, 3, 4, 5, 6, 7, 8, -1, 10, 11, 12, - 13, 14, -1, -1, 17, -1, 19, 20, 21, 22, + 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, -1, 30, -1, -1, - -1, 34, 35, -1, 37, 38, 39, -1, -1, 42, + -1, 34, 35, -1, 37, -1, -1, -1, -1, 42, 43, 44, 45, -1, 47, 48, -1, -1, 51, 52, 53, -1, -1, -1, -1, -1, -1, -1, 61, 62, 63, -1, -1, -1, -1, 68, -1, 70, 71, 72, 73, -1, -1, -1, -1, -1, -1, -1, -1, -1, 83, 84, 85, 86, -1, -1, -1, -1, -1, -1, - -1, -1, 95, 96, 97, 98, 99, 100, 101, 102, + -1, -1, 95, 96, 97, 98, 99, 100, -1, 102, -1, 104, -1, -1, 107, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 120, -1, 122, 123, -1, 125, -1, 127, 1, 129, 3, 4, 5, - 6, 7, 8, -1, 10, 11, 12, 13, 14, 15, - 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, + 6, 7, 8, -1, 10, 11, 12, 13, 14, -1, + -1, 17, -1, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, -1, 30, -1, -1, -1, 34, 35, - -1, 37, -1, -1, -1, -1, 42, 43, 44, 45, + -1, 37, 38, 39, 40, -1, 42, 43, 44, 45, -1, 47, 48, -1, -1, 51, 52, 53, -1, -1, -1, -1, -1, -1, -1, 61, 62, 63, -1, -1, -1, -1, 68, -1, 70, 71, 72, 73, -1, -1, @@ -3099,35 +3090,35 @@ static const yytype_int16 yycheck[] = -1, 10, 11, 12, 13, 14, -1, -1, 17, -1, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, -1, 30, -1, -1, -1, 34, 35, -1, 37, 38, - 39, 40, -1, 42, 43, 44, 45, -1, 47, 48, + 39, -1, -1, 42, 43, 44, 45, -1, 47, 48, -1, -1, 51, 52, 53, -1, -1, -1, -1, -1, -1, -1, 61, 62, 63, -1, -1, -1, -1, 68, -1, 70, 71, 72, 73, -1, -1, -1, -1, -1, -1, -1, -1, -1, 83, 84, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, 95, 96, 97, 98, - 99, 100, -1, 102, -1, 104, -1, -1, 107, -1, + 99, 100, 101, 102, -1, 104, -1, -1, 107, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 120, -1, 122, 123, -1, 125, -1, 127, 1, 129, 3, 4, 5, 6, 7, 8, -1, 10, 11, 12, 13, 14, -1, -1, 17, -1, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, -1, 30, -1, - -1, -1, 34, 35, -1, 37, 38, 39, -1, -1, + -1, -1, 34, 35, -1, 37, -1, 39, 40, -1, 42, 43, 44, 45, -1, 47, 48, -1, -1, 51, 52, 53, -1, -1, -1, -1, -1, -1, -1, 61, 62, 63, -1, -1, -1, -1, 68, -1, 70, 71, 72, 73, -1, -1, -1, -1, -1, -1, -1, -1, -1, 83, 84, 85, 86, -1, -1, -1, -1, -1, - -1, -1, -1, 95, 96, 97, 98, 99, 100, 101, + -1, -1, -1, 95, 96, 97, 98, 99, 100, -1, 102, -1, 104, -1, -1, 107, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 120, -1, 122, 123, -1, 125, -1, 127, 1, 129, 3, 4, 5, 6, 7, 8, -1, 10, 11, 12, 13, 14, -1, -1, 17, -1, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, -1, 30, -1, -1, -1, 34, - 35, -1, 37, -1, 39, 40, -1, 42, 43, 44, + 35, -1, 37, -1, -1, -1, -1, 42, 43, 44, 45, -1, 47, 48, -1, -1, 51, 52, 53, -1, -1, -1, -1, -1, -1, -1, 61, 62, 63, -1, - -1, -1, -1, 68, -1, 70, 71, 72, 73, -1, + -1, 66, 67, 68, -1, 70, 71, 72, 73, -1, -1, -1, -1, -1, -1, -1, -1, -1, 83, 84, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, 95, 96, 97, 98, 99, 100, -1, 102, -1, 104, @@ -3139,15 +3130,15 @@ static const yytype_int16 yycheck[] = -1, -1, 30, -1, -1, -1, 34, 35, -1, 37, -1, -1, -1, -1, 42, 43, 44, 45, -1, 47, 48, -1, -1, 51, 52, 53, -1, -1, -1, -1, - -1, -1, -1, 61, 62, 63, -1, -1, 66, 67, + -1, -1, -1, 61, 62, 63, -1, -1, -1, -1, 68, -1, 70, 71, 72, 73, -1, -1, -1, -1, -1, -1, -1, -1, -1, 83, 84, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, 95, 96, 97, - 98, 99, 100, -1, 102, -1, 104, -1, -1, 107, + 98, 99, 100, -1, 102, 103, 104, -1, -1, 107, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 120, -1, 122, 123, -1, 125, -1, 127, 1, 129, 3, 4, 5, 6, 7, 8, -1, 10, - 11, 12, 13, 14, -1, -1, 17, -1, 19, 20, + 11, 12, 13, 14, -1, -1, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, -1, 30, -1, -1, -1, 34, 35, -1, 37, -1, -1, -1, -1, 42, 43, 44, 45, -1, 47, 48, -1, -1, @@ -3156,13 +3147,13 @@ static const yytype_int16 yycheck[] = 71, 72, 73, -1, -1, -1, -1, -1, -1, -1, -1, -1, 83, 84, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, 95, 96, 97, 98, 99, 100, - -1, 102, 103, 104, -1, -1, 107, -1, -1, -1, + -1, 102, -1, 104, -1, -1, 107, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 120, -1, 122, 123, -1, 125, -1, 127, 1, 129, 3, 4, 5, 6, 7, 8, -1, 10, 11, 12, 13, - 14, -1, -1, 17, 18, 19, 20, 21, 22, 23, + 14, -1, -1, 17, -1, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, -1, 30, -1, -1, -1, - 34, 35, -1, 37, -1, -1, -1, -1, 42, 43, + 34, 35, -1, 37, -1, -1, -1, 41, 42, 43, 44, 45, -1, 47, 48, -1, -1, 51, 52, 53, -1, -1, -1, -1, -1, -1, -1, 61, 62, 63, -1, -1, -1, -1, 68, -1, 70, 71, 72, 73, @@ -3175,7 +3166,7 @@ static const yytype_int16 yycheck[] = 7, 8, -1, 10, 11, 12, 13, 14, -1, -1, 17, -1, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, -1, 30, -1, -1, -1, 34, 35, -1, - 37, -1, -1, -1, 41, 42, 43, 44, 45, -1, + 37, -1, -1, -1, -1, 42, 43, 44, 45, 46, 47, 48, -1, -1, 51, 52, 53, -1, -1, -1, -1, -1, -1, -1, 61, 62, 63, -1, -1, -1, -1, 68, -1, 70, 71, 72, 73, -1, -1, -1, @@ -3188,9 +3179,9 @@ static const yytype_int16 yycheck[] = 10, 11, 12, 13, 14, -1, -1, 17, -1, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, -1, 30, -1, -1, -1, 34, 35, -1, 37, -1, -1, - -1, -1, 42, 43, 44, 45, 46, 47, 48, -1, + -1, -1, 42, 43, 44, 45, -1, 47, 48, -1, -1, 51, 52, 53, -1, -1, -1, -1, -1, -1, - -1, 61, 62, 63, -1, -1, -1, -1, 68, -1, + -1, 61, 62, 63, -1, -1, -1, 67, 68, -1, 70, 71, 72, 73, -1, -1, -1, -1, -1, -1, -1, -1, -1, 83, 84, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, 95, 96, 97, 98, 99, @@ -3198,43 +3189,18 @@ static const yytype_int16 yycheck[] = -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 120, -1, 122, 123, -1, 125, -1, 127, 1, 129, 3, 4, 5, 6, 7, 8, -1, 10, 11, 12, - 13, 14, -1, -1, 17, -1, 19, 20, 21, 22, + 13, 14, -1, -1, -1, -1, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, -1, 30, -1, -1, -1, 34, 35, -1, 37, -1, -1, -1, -1, 42, 43, 44, 45, -1, 47, 48, -1, -1, 51, 52, 53, -1, -1, -1, -1, -1, -1, -1, 61, 62, - 63, -1, -1, -1, 67, 68, -1, 70, 71, 72, + 63, -1, -1, -1, -1, 68, -1, 70, 71, 72, 73, -1, -1, -1, -1, -1, -1, -1, -1, -1, 83, 84, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, 95, 96, 97, 98, 99, 100, -1, 102, -1, 104, -1, -1, 107, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 120, -1, 122, - 123, -1, 125, -1, 127, 1, 129, 3, 4, 5, - 6, 7, 8, -1, 10, 11, 12, 13, 14, -1, - -1, -1, -1, 19, 20, 21, 22, 23, 24, 25, - 26, -1, -1, -1, 30, -1, -1, -1, 34, 35, - -1, 37, -1, -1, -1, -1, 42, 43, 44, 45, - -1, 47, 48, -1, -1, 51, 52, 53, -1, -1, - -1, -1, -1, -1, -1, 61, 62, 63, -1, -1, - -1, -1, 68, -1, 70, 71, 72, 73, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 83, 84, 85, - 86, -1, -1, -1, -1, -1, -1, -1, -1, 95, - 96, 97, 98, 99, 100, -1, 102, -1, 104, -1, - -1, 107, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 120, -1, 122, 123, -1, 125, - -1, 127, 128, 129, 5, -1, 7, 8, -1, 10, - 11, 12, 13, -1, -1, -1, -1, -1, 19, 20, - 21, 22, 23, 24, -1, 26, -1, -1, 29, 30, - -1, -1, -1, 34, 35, -1, -1, -1, -1, -1, - -1, 42, -1, 44, -1, -1, 47, 48, -1, -1, - 51, 52, 53, -1, -1, -1, -1, -1, -1, -1, - 61, -1, -1, -1, -1, -1, -1, -1, -1, 70, - -1, 72, 73, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 84, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 95, 96, -1, -1, 99, -1, - -1, -1, -1, 104, 105, 106, 107, -1, -1, -1, - -1, -1, 113, 114, -1, -1, -1, -1, -1, 120, - 121, -1, -1, -1, 125, -1, 127, 5, 129, 7, + 123, -1, 125, -1, 127, 128, 129, 5, -1, 7, 8, -1, 10, 11, 12, 13, -1, -1, -1, -1, -1, 19, 20, 21, 22, 23, 24, -1, 26, -1, -1, 29, 30, -1, -1, -1, 34, 35, -1, -1, @@ -3244,7 +3210,7 @@ static const yytype_int16 yycheck[] = -1, -1, 70, -1, 72, 73, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 95, 96, -1, - -1, 99, -1, -1, -1, -1, 104, 105, -1, 107, + -1, 99, -1, -1, -1, -1, 104, 105, 106, 107, -1, -1, -1, -1, -1, 113, 114, -1, -1, -1, -1, -1, 120, 121, -1, -1, -1, 125, -1, 127, 5, 129, 7, 8, -1, 10, 11, 12, 13, -1, @@ -3257,7 +3223,7 @@ static const yytype_int16 yycheck[] = -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 95, 96, -1, -1, 99, -1, -1, -1, -1, 104, - -1, -1, 107, -1, -1, -1, -1, -1, 113, 114, + 105, -1, 107, -1, -1, -1, -1, -1, 113, 114, -1, -1, -1, -1, -1, 120, 121, -1, -1, -1, 125, -1, 127, 5, 129, 7, 8, -1, 10, 11, 12, 13, -1, -1, -1, -1, -1, 19, 20, 21, @@ -3269,7 +3235,7 @@ static const yytype_int16 yycheck[] = 72, 73, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 95, 96, -1, -1, 99, -1, -1, - -1, -1, 104, -1, -1, 107, -1, -1, -1, -1, + -1, -1, 104, 105, -1, 107, -1, -1, -1, -1, -1, 113, 114, -1, -1, -1, -1, -1, 120, 121, -1, -1, -1, 125, -1, 127, 5, 129, 7, 8, -1, 10, 11, 12, 13, -1, -1, -1, -1, -1, @@ -3291,103 +3257,134 @@ static const yytype_int16 yycheck[] = -1, 47, 48, -1, -1, 51, 52, 53, -1, -1, -1, -1, -1, -1, -1, 61, -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, 72, 73, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 84, 9, + -1, -1, -1, -1, -1, -1, -1, -1, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 95, 96, -1, -1, 99, -1, -1, -1, -1, 104, -1, - -1, 107, -1, -1, 34, 35, 36, 113, 114, -1, + -1, 107, -1, -1, -1, -1, -1, 113, 114, -1, -1, -1, -1, -1, 120, 121, -1, -1, -1, 125, - -1, 127, -1, 129, 54, 55, 56, 57, -1, 59, - 60, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 9, -1, -1, -1, 74, 75, 76, 77, 78, 79, - 80, 81, 82, -1, -1, -1, -1, 87, 88, 89, - 90, 91, 92, 93, 94, 34, 35, 36, -1, -1, + -1, 127, 5, 129, 7, 8, -1, 10, 11, 12, + 13, -1, -1, -1, -1, -1, 19, 20, 21, 22, + 23, 24, -1, 26, -1, -1, 29, 30, -1, -1, + -1, 34, 35, -1, -1, -1, -1, -1, -1, 42, + -1, 44, -1, -1, 47, 48, -1, -1, 51, 52, + 53, -1, -1, -1, -1, -1, -1, -1, 61, -1, + -1, -1, -1, -1, -1, -1, -1, 70, -1, 72, + 73, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 84, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 95, 96, -1, -1, 99, -1, -1, -1, + -1, 104, -1, -1, 107, -1, -1, -1, -1, -1, + 113, 114, -1, -1, -1, -1, -1, 120, 121, -1, + -1, -1, 125, -1, 127, 5, 129, 7, 8, -1, + 10, 11, 12, 13, -1, -1, -1, -1, -1, 19, + 20, 21, 22, 23, 24, -1, 26, -1, -1, 29, + 30, -1, -1, -1, 34, 35, -1, -1, -1, -1, + -1, -1, 42, -1, 44, -1, -1, 47, 48, -1, + -1, 51, 52, 53, -1, -1, -1, -1, -1, -1, + -1, 61, -1, -1, -1, -1, -1, -1, -1, -1, + 70, -1, 72, 73, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 84, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 95, 96, -1, -1, 99, + -1, -1, -1, -1, 104, -1, -1, 107, -1, -1, + -1, -1, -1, 113, 114, -1, -1, -1, -1, -1, + 120, 121, -1, -1, -1, 125, -1, 127, 5, 129, + 7, 8, -1, 10, 11, 12, 13, -1, -1, -1, + -1, -1, 19, 20, 21, 22, 23, 24, -1, 26, + -1, -1, -1, 30, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 42, -1, 44, -1, -1, + 47, 48, -1, -1, 51, 52, 53, -1, -1, -1, + -1, -1, -1, -1, 61, -1, -1, -1, -1, -1, + -1, -1, -1, 70, -1, 72, 73, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 84, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 95, 96, + -1, -1, 99, -1, -1, -1, -1, 104, -1, -1, + 107, -1, -1, -1, -1, -1, -1, -1, -1, 5, + -1, 7, 8, 120, 10, 11, 12, 13, 125, -1, + 127, -1, 129, 19, 20, 21, 22, 23, 24, -1, + 26, -1, -1, -1, 30, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 42, -1, 44, -1, + -1, 47, 48, -1, -1, -1, 52, 53, -1, -1, + -1, -1, -1, -1, -1, 61, -1, 9, -1, -1, + -1, -1, -1, -1, 70, -1, 72, 73, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 84, -1, + -1, -1, 34, 35, 36, -1, -1, -1, -1, 95, + 96, -1, -1, 99, -1, -1, -1, -1, -1, -1, + -1, 107, 54, 55, 56, 57, -1, 59, 60, -1, + -1, -1, -1, -1, 120, -1, -1, -1, 9, 125, + -1, 127, 74, 75, 76, 77, 78, 79, 80, 81, + 82, -1, -1, -1, -1, 87, 88, 89, 90, 91, + 92, 93, 94, 34, 35, 36, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 54, 55, 56, 57, -1, 59, 60, + -1, -1, -1, -1, -1, -1, -1, 129, -1, 131, + 9, -1, -1, 74, 75, 76, 77, 78, 79, 80, + 81, 82, -1, -1, -1, -1, 87, 88, 89, 90, + 91, 92, 93, 94, -1, 34, 35, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 54, 55, 56, 57, -1, - 59, 60, -1, -1, -1, -1, -1, -1, -1, 129, - -1, 131, 9, -1, -1, 74, 75, 76, 77, 78, + 59, 60, -1, -1, -1, -1, -1, -1, 129, -1, + 131, -1, -1, -1, -1, 74, 75, 76, 77, 78, 79, 80, 81, 82, -1, -1, -1, -1, 87, 88, - 89, 90, 91, 92, 93, 94, -1, 34, 35, 36, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 54, 55, 56, - 57, -1, 59, 60, -1, -1, -1, -1, -1, -1, - 129, -1, 131, 9, -1, -1, -1, 74, 75, 76, - 77, 78, 79, 80, 81, 82, -1, -1, -1, -1, - 87, 88, 89, 90, 91, 92, 93, 94, 34, 35, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 54, 55, - 56, 57, -1, 59, 60, -1, -1, -1, -1, -1, - -1, -1, 129, -1, 131, -1, -1, -1, 74, 75, - 76, 77, 78, 79, 80, 81, 82, -1, -1, -1, - -1, 87, 88, 89, 90, 91, 92, 93, 94, 5, - -1, -1, -1, -1, -1, 11, 12, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 22, 23, 24, -1, - 26, -1, -1, -1, 30, -1, -1, -1, -1, -1, - -1, -1, -1, 129, -1, 131, 42, -1, 44, -1, - -1, 47, 48, 5, -1, -1, 52, 53, -1, 11, - 12, -1, -1, -1, -1, 61, -1, -1, -1, -1, - 22, 23, 24, -1, 26, -1, -1, -1, 30, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 84, -1, - 42, -1, 44, -1, -1, 47, 48, -1, 5, 95, - 52, 53, -1, 99, 11, 12, -1, -1, -1, 61, - -1, 107, -1, -1, -1, 22, 23, 24, -1, 26, - -1, -1, -1, 30, -1, 121, -1, -1, -1, -1, - -1, -1, 84, -1, -1, 42, -1, 44, -1, -1, - 47, 48, 5, 95, -1, 52, 53, 99, 11, 12, - -1, -1, -1, -1, 61, 107, -1, -1, -1, 22, - 23, 24, -1, 26, -1, -1, -1, 30, -1, 121, - -1, -1, -1, -1, -1, -1, -1, 84, -1, 42, - -1, 44, -1, -1, 47, 48, -1, 5, 95, 52, - 53, -1, 99, 11, 12, -1, -1, -1, 61, -1, - 107, -1, -1, -1, 22, 23, 24, -1, 26, -1, - -1, -1, 30, -1, 121, -1, -1, -1, -1, -1, - -1, 84, -1, -1, 42, -1, 44, -1, -1, 47, - 48, 5, 95, -1, 52, 53, 99, 11, 12, -1, - -1, -1, -1, 61, 107, -1, -1, -1, 22, 23, - 24, -1, 26, -1, 72, 73, 30, -1, 121, -1, - -1, -1, -1, -1, -1, -1, 84, -1, 42, -1, - 44, -1, -1, 47, 48, -1, 5, 95, 52, 53, - -1, 99, 11, 12, -1, -1, -1, 61, -1, 107, - -1, -1, -1, 22, 23, 24, -1, 26, 72, 73, - -1, 30, 120, -1, -1, -1, -1, -1, -1, -1, - 84, -1, -1, 42, -1, 44, -1, -1, 47, 48, - -1, 95, -1, 52, 53, 99, -1, -1, -1, -1, - -1, -1, 61, 107, -1, -1, -1, -1, -1, -1, - 5, -1, -1, -1, -1, -1, 11, 12, -1, -1, - -1, -1, -1, -1, -1, 84, -1, 22, 23, 24, - -1, 26, -1, -1, -1, 30, 95, -1, -1, -1, - 99, -1, -1, -1, -1, -1, 105, 42, 107, 44, - -1, -1, 47, 48, -1, 5, -1, 52, 53, -1, - -1, 11, 12, -1, -1, -1, 61, -1, -1, -1, + 89, 90, 91, 92, 93, 94, 5, -1, -1, -1, + -1, -1, 11, 12, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 22, 23, 24, -1, 26, -1, -1, + -1, 30, -1, -1, -1, -1, -1, -1, -1, -1, + 129, -1, 131, 42, -1, 44, -1, -1, 47, 48, + 5, -1, -1, 52, 53, -1, 11, 12, -1, -1, + -1, -1, 61, -1, -1, -1, -1, 22, 23, 24, + -1, 26, -1, -1, -1, 30, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 84, -1, 42, -1, 44, + -1, -1, 47, 48, -1, 5, 95, 52, 53, -1, + 99, 11, 12, -1, -1, -1, 61, -1, 107, -1, -1, -1, 22, 23, 24, -1, 26, -1, -1, -1, - 30, -1, -1, -1, -1, -1, -1, -1, -1, 84, - -1, -1, 42, -1, 44, -1, -1, 47, 48, -1, - 95, -1, 52, 53, 99, -1, -1, -1, -1, -1, - 105, 61, 107, -1, -1, -1, -1, -1, -1, 5, - -1, -1, -1, -1, -1, 11, 12, -1, -1, -1, - -1, -1, -1, -1, 84, -1, 22, 23, 24, -1, - 26, -1, -1, -1, 30, 95, -1, -1, -1, 99, - -1, -1, -1, -1, -1, 105, 42, 107, 44, -1, - -1, 47, 48, -1, 5, -1, 52, 53, -1, -1, - 11, 12, -1, -1, -1, 61, -1, -1, -1, -1, - -1, 22, 23, 24, -1, 26, -1, -1, -1, 30, - -1, -1, -1, -1, -1, -1, -1, -1, 84, -1, - -1, 42, -1, 44, -1, -1, 47, 48, -1, 95, - -1, 52, 53, 99, -1, -1, -1, -1, -1, 105, - 61, 107, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 70, -1, 72, 73, -1, 75, -1, 77, -1, - 79, -1, 81, 84, 83, -1, 85, -1, 87, -1, - 89, 90, 91, -1, 95, -1, 95, -1, 99, 98, - -1, -1, 101, -1, 103, -1, 107, -1, -1, -1, - 74, 75, 76, 77, 78, 79, 80, 81, 82, -1, - 119, -1, 121, 87, 88, 89, 90, 91, 92, 93, - 94, 74, 75, 76, 77, 78, 79, 80, 81, 82, - -1, -1, -1, -1, 87, 88, 89, 90, 91, 92, - 93, 94, 74, 75, 76, 77, 78, 79, 80, 81, - 82, 125, -1, -1, -1, 87, 88, 89, 90, 91, - 92, 93, 94, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 125, -1, -1, -1, -1, -1, -1, -1, + 30, -1, 121, -1, -1, -1, -1, -1, -1, 84, + -1, -1, 42, -1, 44, -1, -1, 47, 48, 5, + 95, -1, 52, 53, 99, 11, 12, -1, -1, -1, + -1, 61, 107, -1, -1, -1, 22, 23, 24, -1, + 26, -1, -1, -1, 30, -1, 121, -1, -1, -1, + -1, -1, -1, -1, 84, -1, 42, -1, 44, -1, + -1, 47, 48, -1, 5, 95, 52, 53, -1, 99, + 11, 12, -1, -1, -1, 61, -1, 107, -1, -1, + -1, 22, 23, 24, -1, 26, 72, 73, -1, 30, + -1, 121, -1, -1, -1, -1, -1, -1, 84, -1, + -1, 42, -1, 44, -1, -1, 47, 48, 5, 95, + -1, 52, 53, 99, 11, 12, -1, -1, -1, -1, + 61, 107, -1, -1, -1, 22, 23, 24, -1, 26, + -1, 72, 73, 30, 120, -1, -1, -1, -1, -1, + -1, -1, -1, 84, -1, 42, -1, 44, -1, -1, + 47, 48, -1, 5, 95, 52, 53, -1, 99, 11, + 12, -1, -1, -1, 61, -1, 107, -1, -1, -1, + 22, 23, 24, -1, 26, -1, -1, -1, 30, -1, + -1, -1, -1, -1, -1, -1, -1, 84, -1, -1, + 42, -1, 44, -1, -1, 47, 48, -1, 95, -1, + 52, 53, 99, -1, -1, -1, -1, -1, 105, 61, + 107, -1, -1, -1, -1, -1, -1, 5, -1, -1, + -1, -1, -1, 11, 12, -1, -1, -1, -1, -1, + -1, -1, 84, -1, 22, 23, 24, -1, 26, -1, + -1, -1, 30, 95, -1, -1, -1, 99, -1, -1, + -1, -1, -1, 105, 42, 107, 44, -1, -1, 47, + 48, -1, 5, -1, 52, 53, -1, -1, 11, 12, + -1, -1, -1, 61, -1, -1, -1, -1, -1, 22, + 23, 24, -1, 26, -1, -1, -1, 30, -1, -1, + -1, -1, -1, -1, -1, -1, 84, -1, -1, 42, + -1, 44, -1, -1, 47, 48, -1, 95, -1, 52, + 53, 99, -1, -1, -1, -1, -1, 105, 61, 107, + -1, -1, -1, -1, -1, -1, 5, -1, -1, -1, + -1, -1, 11, 12, -1, -1, -1, -1, -1, -1, + -1, 84, -1, 22, 23, 24, -1, 26, -1, -1, + -1, 30, 95, -1, -1, -1, 99, -1, -1, -1, + -1, -1, 105, 42, 107, 44, -1, -1, 47, 48, + -1, -1, -1, 52, 53, -1, -1, -1, -1, -1, + -1, -1, 61, 74, 75, 76, 77, 78, 79, 80, + 81, 82, -1, -1, -1, -1, 87, 88, 89, 90, + 91, 92, 93, 94, -1, 84, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 95, -1, -1, -1, + 99, -1, -1, -1, -1, -1, -1, -1, 107, -1, + -1, -1, -1, -1, 125, 74, 75, 76, 77, 78, + 79, 80, 81, 82, -1, -1, -1, -1, 87, 88, + 89, 90, 91, 92, 93, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 125 + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 125 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing @@ -3403,99 +3400,98 @@ static const yytype_uint16 yystos[] = 135, 136, 137, 142, 149, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 190, 191, 192, - 193, 194, 196, 197, 198, 199, 200, 202, 206, 211, - 213, 214, 215, 217, 223, 225, 226, 228, 229, 230, - 231, 232, 233, 234, 235, 236, 243, 248, 253, 254, - 255, 256, 257, 271, 275, 278, 293, 294, 295, 307, - 310, 312, 322, 325, 328, 340, 345, 349, 351, 358, - 371, 377, 380, 380, 151, 158, 159, 36, 36, 258, - 259, 125, 11, 12, 22, 23, 24, 26, 29, 30, + 193, 194, 196, 197, 198, 199, 200, 201, 203, 208, + 210, 211, 212, 213, 219, 221, 222, 224, 225, 226, + 227, 228, 229, 230, 231, 232, 239, 244, 249, 250, + 251, 252, 253, 265, 269, 272, 287, 288, 289, 301, + 304, 306, 316, 319, 322, 334, 339, 343, 345, 352, + 365, 369, 372, 372, 151, 158, 159, 36, 36, 254, + 255, 125, 11, 12, 22, 23, 24, 26, 29, 30, 42, 44, 51, 53, 61, 95, 107, 113, 114, 121, 168, 169, 171, 173, 176, 178, 180, 182, 184, 187, - 189, 191, 196, 197, 198, 202, 205, 211, 215, 218, - 219, 223, 225, 226, 227, 228, 236, 237, 238, 239, - 248, 252, 253, 255, 167, 165, 167, 166, 167, 158, - 152, 219, 219, 311, 276, 158, 167, 168, 169, 171, + 189, 191, 196, 197, 198, 201, 202, 208, 212, 214, + 215, 219, 221, 222, 223, 224, 232, 233, 234, 235, + 244, 248, 249, 251, 167, 165, 167, 166, 167, 158, + 152, 215, 215, 305, 270, 158, 167, 168, 169, 171, 173, 176, 178, 180, 182, 184, 187, 189, 191, 196, - 197, 198, 202, 211, 215, 222, 223, 248, 253, 255, - 36, 272, 261, 154, 359, 150, 158, 189, 191, 370, - 10, 167, 167, 127, 167, 284, 19, 157, 244, 373, - 167, 189, 191, 196, 198, 211, 253, 336, 337, 350, - 219, 12, 125, 253, 121, 252, 105, 106, 121, 186, - 208, 209, 210, 219, 221, 242, 167, 189, 191, 212, - 0, 1, 136, 137, 149, 278, 380, 3, 4, 36, - 125, 9, 131, 240, 241, 9, 240, 167, 189, 191, - 195, 253, 9, 36, 240, 195, 9, 36, 240, 195, - 195, 9, 36, 240, 195, 9, 36, 240, 195, 9, - 36, 240, 195, 9, 36, 195, 9, 36, 240, 195, - 9, 240, 195, 253, 9, 36, 125, 158, 240, 195, - 253, 9, 36, 125, 158, 240, 195, 253, 8, 10, - 167, 170, 171, 172, 173, 174, 175, 176, 177, 178, - 179, 180, 181, 182, 183, 184, 185, 188, 189, 190, - 191, 192, 195, 248, 253, 254, 255, 256, 195, 9, - 240, 9, 158, 240, 9, 36, 195, 9, 36, 158, - 240, 195, 9, 36, 125, 240, 129, 195, 9, 36, - 158, 240, 195, 34, 35, 54, 55, 56, 57, 59, - 60, 109, 129, 224, 158, 158, 158, 158, 158, 249, - 380, 9, 36, 240, 9, 36, 158, 240, 195, 253, - 9, 36, 158, 240, 195, 158, 15, 16, 17, 18, - 298, 300, 305, 306, 1, 12, 25, 26, 136, 149, - 160, 161, 162, 163, 278, 380, 17, 38, 39, 40, - 308, 309, 313, 318, 252, 163, 17, 101, 346, 347, - 348, 158, 219, 380, 167, 262, 265, 262, 219, 219, - 219, 219, 167, 200, 74, 75, 76, 77, 78, 79, - 80, 81, 82, 87, 88, 89, 90, 91, 92, 93, - 94, 146, 147, 146, 146, 146, 146, 27, 28, 31, - 32, 33, 49, 50, 58, 109, 110, 111, 112, 113, - 114, 115, 116, 117, 124, 296, 146, 156, 124, 380, - 124, 380, 189, 263, 264, 265, 380, 167, 277, 9, - 109, 332, 193, 167, 273, 277, 263, 69, 364, 219, - 372, 19, 125, 280, 167, 380, 144, 146, 125, 380, - 113, 126, 105, 167, 245, 246, 69, 374, 52, 124, - 219, 380, 260, 167, 126, 128, 167, 189, 196, 198, - 200, 211, 124, 128, 106, 124, 128, 380, 167, 167, - 201, 219, 105, 219, 220, 124, 130, 219, 219, 219, - 219, 219, 219, 219, 219, 219, 219, 203, 219, 204, - 219, 219, 219, 219, 219, 216, 212, 219, 219, 219, - 219, 219, 219, 219, 219, 212, 219, 247, 251, 219, - 219, 219, 380, 301, 305, 16, 298, 305, 3, 4, - 160, 314, 319, 38, 308, 318, 39, 308, 380, 38, - 39, 352, 355, 380, 131, 144, 269, 270, 124, 380, - 380, 124, 167, 167, 219, 219, 219, 219, 219, 219, - 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, - 219, 219, 380, 380, 167, 167, 144, 269, 124, 153, - 144, 124, 380, 219, 144, 52, 124, 274, 380, 155, - 219, 380, 380, 374, 121, 380, 279, 167, 283, 284, - 286, 380, 281, 285, 19, 380, 144, 132, 124, 124, - 167, 205, 209, 218, 219, 253, 375, 376, 121, 219, - 338, 339, 336, 380, 378, 262, 126, 219, 219, 221, - 210, 138, 140, 139, 141, 207, 210, 220, 131, 207, - 207, 207, 124, 250, 163, 164, 299, 252, 303, 305, - 167, 167, 252, 380, 316, 308, 321, 323, 219, 356, - 38, 347, 355, 219, 266, 267, 145, 147, 124, 130, - 265, 208, 297, 9, 145, 264, 380, 167, 329, 167, - 167, 380, 380, 164, 19, 84, 121, 167, 288, 291, - 292, 287, 284, 286, 380, 167, 282, 286, 288, 105, - 167, 376, 124, 167, 124, 341, 164, 380, 106, 380, - 125, 380, 125, 124, 126, 220, 126, 126, 126, 219, - 128, 128, 164, 380, 252, 125, 380, 125, 380, 380, - 320, 252, 380, 164, 353, 380, 219, 9, 219, 131, - 124, 164, 219, 144, 47, 144, 360, 380, 121, 167, - 167, 144, 126, 124, 124, 144, 124, 128, 126, 144, - 376, 338, 99, 344, 17, 103, 379, 221, 105, 143, - 148, 167, 143, 210, 302, 380, 143, 143, 315, 164, - 380, 164, 324, 380, 357, 354, 268, 219, 208, 252, - 64, 65, 367, 368, 369, 167, 144, 125, 144, 144, - 121, 167, 292, 84, 286, 380, 144, 342, 126, 124, - 144, 126, 164, 304, 126, 126, 164, 317, 17, 41, - 326, 327, 164, 164, 380, 219, 126, 48, 333, 167, - 361, 380, 380, 125, 144, 221, 289, 290, 380, 167, - 144, 121, 167, 380, 380, 105, 167, 380, 164, 380, - 380, 164, 164, 252, 330, 66, 365, 366, 164, 164, - 289, 124, 126, 125, 144, 167, 144, 343, 144, 380, - 362, 380, 126, 290, 289, 125, 144, 164, 334, 331, - 17, 67, 363, 164, 126, 289, 17, 46, 335, 334, - 126, 167, 167 + 197, 198, 201, 208, 212, 218, 219, 244, 249, 251, + 36, 266, 257, 154, 353, 150, 158, 189, 191, 364, + 10, 167, 167, 127, 167, 278, 19, 157, 240, 69, + 366, 167, 189, 191, 196, 198, 208, 249, 330, 331, + 344, 215, 12, 125, 249, 121, 248, 105, 106, 121, + 186, 205, 206, 207, 215, 217, 238, 167, 189, 191, + 209, 0, 1, 136, 137, 149, 272, 372, 3, 4, + 36, 125, 9, 131, 236, 237, 9, 236, 167, 189, + 191, 195, 249, 9, 36, 236, 195, 9, 36, 236, + 195, 195, 9, 36, 236, 195, 9, 36, 236, 195, + 9, 36, 236, 195, 9, 36, 195, 9, 36, 236, + 195, 9, 236, 195, 249, 9, 36, 125, 158, 236, + 195, 249, 9, 36, 125, 158, 236, 195, 249, 8, + 10, 167, 170, 171, 172, 173, 174, 175, 176, 177, + 178, 179, 180, 181, 182, 183, 184, 185, 188, 189, + 190, 191, 192, 195, 244, 249, 250, 251, 252, 195, + 9, 236, 9, 158, 236, 9, 36, 195, 9, 36, + 158, 236, 195, 9, 36, 125, 236, 129, 195, 9, + 36, 158, 236, 195, 34, 35, 54, 55, 56, 57, + 59, 60, 109, 129, 220, 158, 158, 158, 158, 158, + 245, 372, 9, 36, 236, 9, 36, 158, 236, 195, + 249, 9, 36, 158, 236, 195, 158, 15, 16, 17, + 18, 292, 294, 299, 300, 1, 12, 25, 26, 136, + 149, 160, 161, 162, 163, 272, 372, 17, 38, 39, + 40, 302, 303, 307, 312, 248, 163, 17, 101, 340, + 341, 342, 158, 215, 372, 167, 258, 261, 258, 215, + 215, 215, 215, 167, 200, 74, 75, 76, 77, 78, + 79, 80, 81, 82, 87, 88, 89, 90, 91, 92, + 93, 94, 146, 147, 146, 146, 146, 146, 27, 28, + 31, 32, 33, 49, 50, 58, 109, 110, 111, 112, + 113, 114, 115, 116, 117, 124, 290, 146, 156, 124, + 372, 124, 372, 189, 259, 260, 261, 372, 167, 271, + 9, 109, 326, 193, 167, 267, 271, 259, 69, 358, + 215, 366, 19, 125, 274, 167, 372, 144, 146, 125, + 372, 113, 126, 105, 167, 241, 242, 124, 167, 202, + 206, 214, 215, 249, 367, 368, 52, 124, 215, 372, + 256, 167, 126, 128, 167, 189, 196, 198, 200, 208, + 124, 128, 106, 124, 128, 372, 167, 167, 204, 207, + 215, 215, 105, 215, 216, 124, 130, 215, 215, 215, + 215, 215, 215, 215, 215, 215, 215, 204, 215, 204, + 215, 215, 215, 215, 215, 204, 209, 215, 215, 215, + 215, 215, 215, 215, 215, 209, 215, 243, 247, 215, + 215, 215, 372, 295, 299, 16, 292, 299, 3, 4, + 160, 308, 313, 38, 302, 312, 39, 302, 372, 38, + 39, 346, 349, 372, 131, 144, 263, 264, 124, 372, + 372, 124, 167, 167, 215, 215, 215, 215, 215, 215, + 215, 215, 215, 215, 215, 215, 215, 215, 215, 215, + 215, 215, 372, 372, 167, 167, 144, 263, 124, 153, + 144, 124, 372, 215, 144, 52, 124, 268, 372, 155, + 215, 372, 372, 121, 372, 273, 167, 277, 278, 280, + 372, 275, 279, 19, 372, 144, 132, 124, 368, 124, + 121, 215, 332, 333, 330, 372, 370, 258, 126, 215, + 217, 207, 138, 140, 139, 141, 124, 126, 216, 131, + 126, 126, 126, 124, 246, 163, 164, 293, 248, 297, + 299, 167, 167, 248, 372, 310, 302, 315, 317, 215, + 350, 38, 341, 349, 215, 262, 145, 147, 124, 130, + 261, 205, 291, 9, 145, 260, 372, 167, 323, 167, + 167, 372, 372, 164, 19, 84, 121, 167, 282, 285, + 286, 281, 278, 280, 372, 167, 276, 280, 282, 105, + 167, 368, 167, 124, 335, 164, 372, 106, 372, 125, + 372, 125, 207, 216, 215, 128, 128, 164, 372, 248, + 125, 372, 125, 372, 372, 314, 248, 372, 164, 347, + 372, 215, 9, 215, 131, 124, 164, 215, 144, 47, + 144, 354, 372, 121, 167, 167, 144, 126, 124, 124, + 144, 124, 128, 126, 144, 332, 99, 338, 17, 103, + 371, 217, 105, 143, 148, 167, 143, 296, 372, 143, + 143, 309, 164, 372, 164, 318, 372, 351, 348, 215, + 215, 205, 248, 64, 65, 361, 362, 363, 167, 144, + 125, 144, 144, 121, 167, 286, 84, 280, 372, 144, + 336, 126, 124, 144, 126, 164, 298, 126, 126, 164, + 311, 17, 41, 320, 321, 164, 164, 372, 126, 48, + 327, 167, 355, 372, 372, 125, 144, 217, 283, 284, + 372, 167, 144, 121, 167, 372, 372, 105, 167, 372, + 164, 372, 372, 164, 164, 248, 324, 66, 359, 360, + 164, 164, 283, 124, 126, 125, 144, 167, 144, 337, + 144, 372, 356, 372, 126, 284, 283, 125, 144, 164, + 328, 325, 17, 67, 357, 164, 126, 283, 17, 46, + 329, 328, 126, 167, 167 }; #define yyerrok (yyerrstatus = 0) @@ -4013,12 +4009,12 @@ yydestruct (yymsg, yytype, yyvaluep, pComp) case 19: /* "LITERAL" */ #line 270 "harbour.y" { if( (yyvaluep->valChar).dealloc ) hb_xfree( (yyvaluep->valChar).string ); }; -#line 4017 "harboury.c" +#line 4013 "harboury.c" break; case 96: /* "CBSTART" */ #line 269 "harbour.y" { if( (yyvaluep->asCodeblock).string ) hb_xfree( (yyvaluep->asCodeblock).string ); }; -#line 4022 "harboury.c" +#line 4018 "harboury.c" break; default: @@ -4516,22 +4512,22 @@ yyreduce: case 59: #line 363 "harbour.y" - { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;} + { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;} break; case 60: #line 364 "harbour.y" - { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;} + { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;} break; case 61: #line 365 "harbour.y" - { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;} + { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;} break; case 62: #line 366 "harbour.y" - { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;} + { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;} break; case 63: @@ -4540,7 +4536,7 @@ yyreduce: HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); else HB_COMP_EXPR_DELETE( HB_COMP_ERROR_SYNTAX( (yyvsp[(1) - (2)].asExpr) ) ); - HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; + HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;} break; @@ -4550,49 +4546,49 @@ yyreduce: HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); else HB_COMP_EXPR_DELETE( HB_COMP_ERROR_SYNTAX( (yyvsp[(1) - (2)].asExpr) ) ); - HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; + HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;} break; case 65: #line 379 "harbour.y" - { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;} + { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;} break; case 66: #line 380 "harbour.y" - { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;} + { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;} break; case 67: #line 381 "harbour.y" - { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;} + { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;} break; case 68: #line 382 "harbour.y" - { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;} + { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;} break; case 69: #line 383 "harbour.y" - { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;} + { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;} break; case 70: #line 384 "harbour.y" - { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;} + { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;} break; case 71: #line 385 "harbour.y" - { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;} + { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;} break; case 72: #line 386 "harbour.y" { hb_compGenBreak( HB_COMP_PARAM ); hb_compGenPCode2( HB_P_DOSHORT, 0, HB_COMP_PARAM ); - HB_COMP_PARAM->functions.pLast->bFlags |= FUN_BREAK_CODE; ;} + HB_COMP_PARAM->functions.pLast->funFlags |= FUN_BREAK_CODE; ;} break; case 73: @@ -4605,18 +4601,18 @@ yyreduce: { hb_compGenBreak( HB_COMP_PARAM ); HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ) ); hb_compGenPCode2( HB_P_DOSHORT, 1, HB_COMP_PARAM ); - HB_COMP_PARAM->functions.pLast->bFlags |= FUN_BREAK_CODE; + HB_COMP_PARAM->functions.pLast->funFlags |= FUN_BREAK_CODE; ;} break; case 75: #line 394 "harbour.y" - { hb_compLoopExit( HB_COMP_PARAM ); HB_COMP_PARAM->functions.pLast->bFlags |= FUN_BREAK_CODE; ;} + { hb_compLoopExit( HB_COMP_PARAM ); HB_COMP_PARAM->functions.pLast->funFlags |= FUN_BREAK_CODE; ;} break; case 76: #line 395 "harbour.y" - { hb_compLoopLoop( HB_COMP_PARAM ); HB_COMP_PARAM->functions.pLast->bFlags |= FUN_BREAK_CODE; ;} + { hb_compLoopLoop( HB_COMP_PARAM ); HB_COMP_PARAM->functions.pLast->funFlags |= FUN_BREAK_CODE; ;} break; case 77: @@ -4627,11 +4623,11 @@ yyreduce: hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "RETURN", NULL ); } hb_compGenPCode1( HB_P_ENDPROC, HB_COMP_PARAM ); - if( (HB_COMP_PARAM->functions.pLast->bFlags & FUN_PROCEDURE) == 0 ) + if( (HB_COMP_PARAM->functions.pLast->funFlags & FUN_PROCEDURE) == 0 ) { /* return from a function without a return value */ hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_NO_RETURN_VALUE, NULL, NULL ); } - HB_COMP_PARAM->functions.pLast->bFlags |= FUN_WITH_RETURN | FUN_BREAK_CODE; + HB_COMP_PARAM->functions.pLast->funFlags |= FUN_WITH_RETURN | FUN_BREAK_CODE; ;} break; @@ -4649,16 +4645,16 @@ yyreduce: } /* TODO: check if return value agree with declared value */ HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ) ); - if( HB_COMP_PARAM->functions.pLast->bFlags & FUN_EXTBLOCK ) + if( HB_COMP_PARAM->functions.pLast->funFlags & FUN_EXTBLOCK ) /* extended clodeblock, use HB_P_ENDBLOCK to return value and stop execution */ hb_compGenPCode1( HB_P_ENDBLOCK, HB_COMP_PARAM ); else hb_compGenPCode2( HB_P_RETVALUE, HB_P_ENDPROC, HB_COMP_PARAM ); - if( HB_COMP_PARAM->functions.pLast->bFlags & FUN_PROCEDURE ) + if( HB_COMP_PARAM->functions.pLast->funFlags & FUN_PROCEDURE ) { /* procedure returns a value */ hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_PROC_RETURN_VALUE, NULL, NULL ); } - HB_COMP_PARAM->functions.pLast->bFlags |= FUN_WITH_RETURN | FUN_BREAK_CODE; + HB_COMP_PARAM->functions.pLast->funFlags |= FUN_WITH_RETURN | FUN_BREAK_CODE; ;} break; @@ -4671,7 +4667,7 @@ yyreduce: #line 430 "harbour.y" { hb_compRTVariableGen( HB_COMP_PARAM, "__MVPUBLIC" ); HB_COMP_PARAM->iVarScope = VS_NONE; - HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; + HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;} break; @@ -4684,7 +4680,7 @@ yyreduce: #line 436 "harbour.y" { hb_compRTVariableGen( HB_COMP_PARAM, "__MVPRIVATE" ); HB_COMP_PARAM->iVarScope = VS_NONE; - HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; + HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;} break; @@ -4708,7 +4704,7 @@ yyreduce: case 93: #line 459 "harbour.y" - { HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;} + { HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;} break; case 94: @@ -5323,536 +5319,516 @@ yyreduce: break; case 234: -#line 763 "harbour.y" - { (yyval.bTrue) = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL;;} +#line 764 "harbour.y" + { (yyval.asExpr) = hb_compExprNewFunCall( hb_compExprNewFunName( (yyvsp[(1) - (4)].string), HB_COMP_PARAM ), (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ); ;} break; - case 235: -#line 763 "harbour.y" - { (yyval.asExpr) = hb_compExprNewFunCall( hb_compExprNewFunName( (yyvsp[(1) - (5)].string), HB_COMP_PARAM ), (yyvsp[(4) - (5)].asExpr), HB_COMP_PARAM ); HB_COMP_PARAM->iPassByRef = (yyvsp[(3) - (5)].bTrue); ;} + case 236: +#line 768 "harbour.y" + { (yyval.asExpr) = hb_compExprNewFunCall( (yyvsp[(1) - (4)].asExpr), (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ); ;} break; case 237: -#line 767 "harbour.y" - { (yyval.bTrue) = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL;;} +#line 769 "harbour.y" + { (yyval.asExpr) = hb_compExprNewFunCall( (yyvsp[(1) - (4)].asExpr), (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ); ;} break; case 238: -#line 767 "harbour.y" - { (yyval.asExpr) = hb_compExprNewFunCall( (yyvsp[(1) - (5)].asExpr), (yyvsp[(4) - (5)].asExpr), HB_COMP_PARAM ); HB_COMP_PARAM->iPassByRef = (yyvsp[(3) - (5)].bTrue); ;} - break; - - case 239: -#line 768 "harbour.y" - { (yyval.bTrue) = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL;;} - break; - - case 240: -#line 768 "harbour.y" - { (yyval.asExpr) = hb_compExprNewFunCall( (yyvsp[(1) - (5)].asExpr), (yyvsp[(4) - (5)].asExpr), HB_COMP_PARAM ); HB_COMP_PARAM->iPassByRef = (yyvsp[(3) - (5)].bTrue); ;} - break; - - case 241: -#line 772 "harbour.y" +#line 773 "harbour.y" { (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;} break; - case 243: -#line 778 "harbour.y" + case 240: +#line 779 "harbour.y" { (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;} break; - case 244: -#line 779 "harbour.y" + case 241: +#line 780 "harbour.y" { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} break; - case 247: -#line 786 "harbour.y" + case 244: +#line 787 "harbour.y" { (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewVarRef( (yyvsp[(2) - (2)].string), HB_COMP_PARAM ) ); ;} break; - case 248: -#line 787 "harbour.y" - { (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewRef( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) ); ;} - break; - - case 249: + case 245: #line 788 "harbour.y" { (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewRef( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) ); ;} break; - case 250: + case 246: #line 789 "harbour.y" { (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewRef( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) ); ;} break; - case 251: + case 247: #line 790 "harbour.y" + { (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewRef( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) ); ;} + break; + + case 248: +#line 791 "harbour.y" { (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr)->value.asList.reference = TRUE; ;} break; - case 252: -#line 793 "harbour.y" + case 249: +#line 794 "harbour.y" { (yyval.asExpr) = hb_compExprNewArgRef( HB_COMP_PARAM ); ;} break; - case 254: -#line 799 "harbour.y" - { (yyval.asExpr) = ((yyvsp[(3) - (3)].asMessage).bMacro ? hb_compExprNewSend( (yyvsp[(1) - (3)].asExpr), NULL, (yyvsp[(3) - (3)].asMessage).value.macro, HB_COMP_PARAM ) : hb_compExprNewSend( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asMessage).value.string, NULL, HB_COMP_PARAM )); ;} - break; - - case 255: + case 251: #line 800 "harbour.y" { (yyval.asExpr) = ((yyvsp[(3) - (3)].asMessage).bMacro ? hb_compExprNewSend( (yyvsp[(1) - (3)].asExpr), NULL, (yyvsp[(3) - (3)].asMessage).value.macro, HB_COMP_PARAM ) : hb_compExprNewSend( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asMessage).value.string, NULL, HB_COMP_PARAM )); ;} break; - case 256: + case 252: #line 801 "harbour.y" + { (yyval.asExpr) = ((yyvsp[(3) - (3)].asMessage).bMacro ? hb_compExprNewSend( (yyvsp[(1) - (3)].asExpr), NULL, (yyvsp[(3) - (3)].asMessage).value.macro, HB_COMP_PARAM ) : hb_compExprNewSend( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asMessage).value.string, NULL, HB_COMP_PARAM )); ;} + break; + + case 253: +#line 802 "harbour.y" { if( HB_COMP_PARAM->functions.pLast->wWithObjectCnt == 0 ) hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_WITHOBJECT, NULL, NULL ); (yyval.asExpr) = ((yyvsp[(2) - (2)].asMessage).bMacro ? hb_compExprNewSend( NULL, NULL, (yyvsp[(2) - (2)].asMessage).value.macro, HB_COMP_PARAM ) : hb_compExprNewSend( NULL, (yyvsp[(2) - (2)].asMessage).value.string, NULL, HB_COMP_PARAM )); ;} break; - case 257: -#line 807 "harbour.y" + case 254: +#line 808 "harbour.y" { (yyval.asMessage).value.string = (yyvsp[(1) - (1)].string); (yyval.asMessage).bMacro=FALSE; ;} break; - case 258: -#line 808 "harbour.y" - { (yyval.asMessage).value.macro = (yyvsp[(1) - (1)].asExpr); (yyval.asMessage).bMacro=TRUE; ;} - break; - - case 259: + case 255: #line 809 "harbour.y" { (yyval.asMessage).value.macro = (yyvsp[(1) - (1)].asExpr); (yyval.asMessage).bMacro=TRUE; ;} break; - case 260: -#line 812 "harbour.y" + case 256: +#line 810 "harbour.y" + { (yyval.asMessage).value.macro = (yyvsp[(1) - (1)].asExpr); (yyval.asMessage).bMacro=TRUE; ;} + break; + + case 257: +#line 813 "harbour.y" { (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(3) - (4)].string), HB_COMP_PARAM ); ;} break; - case 262: -#line 820 "harbour.y" - {(yyval.bTrue)=HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL;;} + case 259: +#line 821 "harbour.y" + { (yyval.asExpr) = hb_compExprNewMethodCall( (yyvsp[(1) - (4)].asExpr), (yyvsp[(3) - (4)].asExpr) ); ;} break; - case 263: -#line 820 "harbour.y" - { (yyval.asExpr) = hb_compExprNewMethodCall( (yyvsp[(1) - (5)].asExpr), (yyvsp[(4) - (5)].asExpr) ); HB_COMP_PARAM->iPassByRef=(yyvsp[(3) - (5)].bTrue); ;} - break; - - case 272: -#line 839 "harbour.y" + case 268: +#line 840 "harbour.y" { (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;} break; - case 282: -#line 849 "harbour.y" + case 278: +#line 850 "harbour.y" { (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;} break; - case 285: -#line 852 "harbour.y" + case 281: +#line 853 "harbour.y" { (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;} break; - case 287: -#line 854 "harbour.y" + case 283: +#line 855 "harbour.y" { (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;} break; - case 299: -#line 868 "harbour.y" - { (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;} - break; - - case 300: + case 295: #line 869 "harbour.y" { (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;} break; - case 302: -#line 873 "harbour.y" + case 296: +#line 870 "harbour.y" + { (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;} + break; + + case 298: +#line 874 "harbour.y" { (yyval.asExpr) = hb_compExprNewArgRef( HB_COMP_PARAM ); ;} break; - case 304: -#line 877 "harbour.y" + case 300: +#line 878 "harbour.y" { (yyval.asExpr) = hb_compExprNewEmpty( HB_COMP_PARAM ); ;} break; - case 306: -#line 881 "harbour.y" + case 302: +#line 882 "harbour.y" { (yyval.asExpr) = hb_compExprNewVar( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;} break; - case 312: -#line 887 "harbour.y" + case 308: +#line 888 "harbour.y" { (yyval.asExpr) = hb_compExprListStrip( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;} break; - case 334: -#line 920 "harbour.y" + case 330: +#line 921 "harbour.y" { (yyval.asExpr) = hb_compExprNewPostInc( (yyvsp[(0) - (1)].asExpr), HB_COMP_PARAM ); ;} break; - case 335: -#line 921 "harbour.y" + case 331: +#line 922 "harbour.y" { (yyval.asExpr) = hb_compExprNewPostDec( (yyvsp[(0) - (1)].asExpr), HB_COMP_PARAM ); ;} break; - case 336: -#line 924 "harbour.y" + case 332: +#line 925 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; - case 337: -#line 927 "harbour.y" + case 333: +#line 928 "harbour.y" { (yyval.asExpr) = hb_compExprNewPreInc( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 338: -#line 928 "harbour.y" + case 334: +#line 929 "harbour.y" { (yyval.asExpr) = hb_compExprNewPreDec( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 339: -#line 931 "harbour.y" + case 335: +#line 932 "harbour.y" { (yyval.asExpr) = hb_compExprNewNot( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 340: -#line 932 "harbour.y" + case 336: +#line 933 "harbour.y" { (yyval.asExpr) = hb_compExprNewNegate( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 341: -#line 933 "harbour.y" + case 337: +#line 934 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; - case 342: -#line 936 "harbour.y" - { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} - break; - - case 343: + case 338: #line 937 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 344: + case 339: #line 938 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 345: + case 340: #line 939 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 346: + case 341: #line 940 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 347: + case 342: #line 941 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 348: + case 343: #line 942 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 349: + case 344: #line 943 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 350: + case 345: #line 944 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 351: + case 346: #line 945 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 352: + case 347: #line 946 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 353: + case 348: #line 947 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 354: + case 349: #line 948 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 355: + case 350: #line 949 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 356: + case 351: #line 950 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 357: + case 352: #line 951 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 358: + case 353: #line 952 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 359: + case 354: #line 953 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 360: + case 355: #line 954 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 361: + case 356: #line 955 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 362: + case 357: #line 956 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 363: -#line 959 "harbour.y" + case 358: +#line 957 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 364: -#line 962 "harbour.y" + case 359: +#line 960 "harbour.y" + { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} + break; + + case 360: +#line 963 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewPlusEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 365: -#line 965 "harbour.y" + case 361: +#line 966 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMinusEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 366: -#line 968 "harbour.y" + case 362: +#line 969 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMultEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 367: -#line 971 "harbour.y" + case 363: +#line 972 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewDivEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 368: -#line 974 "harbour.y" + case 364: +#line 975 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewModEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 369: -#line 977 "harbour.y" + case 365: +#line 978 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewExpEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 376: -#line 988 "harbour.y" + case 372: +#line 989 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewPlus( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 377: -#line 989 "harbour.y" + case 373: +#line 990 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMinus( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 378: -#line 990 "harbour.y" + case 374: +#line 991 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMult( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 379: -#line 991 "harbour.y" + case 375: +#line 992 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewDiv( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 380: -#line 992 "harbour.y" + case 376: +#line 993 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMod( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 381: -#line 993 "harbour.y" + case 377: +#line 994 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewPower( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 382: -#line 996 "harbour.y" + case 378: +#line 997 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewAnd( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 383: -#line 997 "harbour.y" + case 379: +#line 998 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewOr( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 384: -#line 1000 "harbour.y" + case 380: +#line 1001 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewEQ( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 385: -#line 1001 "harbour.y" + case 381: +#line 1002 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewLT( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 386: -#line 1002 "harbour.y" + case 382: +#line 1003 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewGT( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 387: -#line 1003 "harbour.y" + case 383: +#line 1004 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewLE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 388: -#line 1004 "harbour.y" + case 384: +#line 1005 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewGE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 389: -#line 1005 "harbour.y" - { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewNE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} - break; - - case 390: + case 385: #line 1006 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewNE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 391: + case 386: #line 1007 "harbour.y" + { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewNE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} + break; + + case 387: +#line 1008 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewIN( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 392: -#line 1008 "harbour.y" + case 388: +#line 1009 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewEqual( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 394: -#line 1017 "harbour.y" + case 390: +#line 1018 "harbour.y" { (yyval.asExpr) = hb_compExprNewArrayAt( (yyvsp[(0) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 395: -#line 1018 "harbour.y" + case 391: +#line 1019 "harbour.y" { (yyval.asExpr) = hb_compExprNewArrayAt( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 396: -#line 1019 "harbour.y" + case 392: +#line 1020 "harbour.y" { (yyval.asExpr) = hb_compExprNewArrayAt( (yyvsp[(1) - (4)].asExpr), (yyvsp[(4) - (4)].asExpr), HB_COMP_PARAM ); ;} break; - case 397: -#line 1022 "harbour.y" + case 393: +#line 1023 "harbour.y" { (yyval.asExpr) = hb_compExprNewList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;} break; - case 398: -#line 1023 "harbour.y" + case 394: +#line 1024 "harbour.y" { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} break; - case 399: -#line 1026 "harbour.y" + case 395: +#line 1027 "harbour.y" { (yyval.asExpr) = hb_compExprNewCodeBlock( (yyvsp[(1) - (1)].asCodeblock).string, (yyvsp[(1) - (1)].asCodeblock).length, (yyvsp[(1) - (1)].asCodeblock).flags, HB_COMP_PARAM ); (yyvsp[(1) - (1)].asCodeblock).string = NULL; ;} break; - case 400: -#line 1027 "harbour.y" + case 396: +#line 1028 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (4)].asExpr); ;} break; - case 401: -#line 1032 "harbour.y" + case 397: +#line 1033 "harbour.y" { (yyval.asExpr) = NULL; ;} break; - case 402: -#line 1033 "harbour.y" + case 398: +#line 1034 "harbour.y" { (yyval.asExpr) = NULL; (yyvsp[(0) - (1)].asExpr)->value.asCodeblock.flags |= HB_BLOCK_VPARAMS; ;} break; - case 403: -#line 1034 "harbour.y" + case 399: +#line 1035 "harbour.y" { (yyval.asExpr) = (yyvsp[(1) - (1)].asExpr); ;} break; - case 404: -#line 1035 "harbour.y" + case 400: +#line 1036 "harbour.y" { (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); (yyvsp[(0) - (3)].asExpr)->value.asCodeblock.flags |= HB_BLOCK_VPARAMS; ;} break; - case 405: -#line 1038 "harbour.y" + case 401: +#line 1039 "harbour.y" { HB_COMP_PARAM->iVarScope = VS_LOCAL; (yyval.asExpr) = hb_compExprCBVarAdd( (yyvsp[(0) - (2)].asExpr), (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType)->cVarType, HB_COMP_PARAM ); ;} break; - case 406: -#line 1039 "harbour.y" + case 402: +#line 1040 "harbour.y" { HB_COMP_PARAM->iVarScope = VS_LOCAL; (yyval.asExpr) = hb_compExprCBVarAdd( (yyvsp[(0) - (4)].asExpr), (yyvsp[(3) - (4)].string), (yyvsp[(4) - (4)].asVarType)->cVarType, HB_COMP_PARAM ); ;} break; - case 407: -#line 1042 "harbour.y" + case 403: +#line 1043 "harbour.y" { (yyval.asExpr) = hb_compExprAddCodeblockExpr( (yyvsp[(-1) - (1)].asExpr), (yyvsp[(1) - (1)].asExpr) ); ;} break; - case 408: -#line 1043 "harbour.y" + case 404: +#line 1044 "harbour.y" { (yyval.asExpr) = hb_compExprAddCodeblockExpr( (yyvsp[(-1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} break; - case 409: -#line 1047 "harbour.y" + case 405: +#line 1048 "harbour.y" { (yyval.bTrue) = HB_COMP_PARAM->functions.pLast->bBlock; HB_COMP_PARAM->functions.pLast->bBlock = TRUE; ;} break; - case 410: -#line 1050 "harbour.y" + case 406: +#line 1051 "harbour.y" { HB_COMP_PARAM->functions.pLast->bBlock = (yyvsp[(2) - (3)].bTrue); ;} break; - case 412: -#line 1053 "harbour.y" + case 408: +#line 1054 "harbour.y" { /* 3 */ HB_CBVAR_PTR pVar; (yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos; hb_compCodeBlockStart( HB_COMP_PARAM, TRUE ); - HB_COMP_PARAM->functions.pLast->bFlags |= FUN_EXTBLOCK; + HB_COMP_PARAM->functions.pLast->funFlags |= FUN_EXTBLOCK; HB_COMP_PARAM->functions.pLast->fVParams = ( (yyvsp[(1) - (2)].asExpr)->value.asCodeblock.flags & HB_BLOCK_VPARAMS ) != 0; @@ -5874,8 +5850,8 @@ yyreduce: ;} break; - case 413: -#line 1078 "harbour.y" + case 409: +#line 1079 "harbour.y" { /* 6 */ hb_compCodeBlockEnd( HB_COMP_PARAM ); (yyval.asExpr) = hb_compExprSetCodeblockBody( (yyvsp[(1) - (5)].asExpr), @@ -5886,44 +5862,44 @@ yyreduce: ;} break; - case 414: -#line 1088 "harbour.y" + case 410: +#line 1089 "harbour.y" { (yyval.asExpr) = hb_compExprNewList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;} break; - case 415: -#line 1089 "harbour.y" + case 411: +#line 1090 "harbour.y" { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} break; - case 416: -#line 1091 "harbour.y" + case 412: +#line 1092 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (3)].asExpr) ;} break; - case 418: -#line 1104 "harbour.y" + case 414: +#line 1105 "harbour.y" { (yyval.asExpr) = hb_compExprNewIIF( hb_compExprAddListExpr( hb_compExprAddListExpr( hb_compExprNewList( (yyvsp[(3) - (8)].asExpr), HB_COMP_PARAM ), (yyvsp[(5) - (8)].asExpr) ), (yyvsp[(7) - (8)].asExpr) ) ); ;} break; - case 420: -#line 1110 "harbour.y" + case 416: +#line 1111 "harbour.y" { HB_COMP_PARAM->iVarScope = VS_LOCAL; hb_compLinePush( HB_COMP_PARAM ); ;} break; - case 422: -#line 1112 "harbour.y" + case 418: +#line 1113 "harbour.y" { HB_COMP_PARAM->iVarScope = VS_STATIC; hb_compLinePush( HB_COMP_PARAM ); ;} break; - case 424: -#line 1114 "harbour.y" + case 420: +#line 1115 "harbour.y" { HB_COMP_PARAM->iVarScope = VS_TH_STATIC; hb_compLinePush( HB_COMP_PARAM ); ;} break; - case 426: -#line 1116 "harbour.y" - { if( HB_COMP_PARAM->functions.pLast->bFlags & FUN_USES_LOCAL_PARAMS ) + case 422: +#line 1117 "harbour.y" + { if( HB_COMP_PARAM->functions.pLast->funFlags & FUN_USES_LOCAL_PARAMS ) hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_PARAMETERS_NOT_ALLOWED, NULL, NULL ); else { @@ -5933,190 +5909,181 @@ yyreduce: ;} break; - case 427: -#line 1123 "harbour.y" + case 423: +#line 1124 "harbour.y" { HB_COMP_PARAM->iVarScope = VS_NONE; ;} break; - case 428: -#line 1126 "harbour.y" + case 424: +#line 1127 "harbour.y" { (yyval.iNumber) = 1; ;} break; + case 425: +#line 1128 "harbour.y" + { (yyval.iNumber)++; ;} + break; + + case 426: +#line 1131 "harbour.y" + { (yyval.iNumber) = 1; ;} + break; + + case 427: +#line 1132 "harbour.y" + { (yyval.iNumber)++; ;} + break; + case 429: -#line 1127 "harbour.y" - { (yyval.iNumber)++; ;} - break; - - case 430: -#line 1130 "harbour.y" - { (yyval.iNumber) = 1; ;} - break; - - case 431: -#line 1131 "harbour.y" - { (yyval.iNumber)++; ;} - break; - - case 433: -#line 1141 "harbour.y" +#line 1142 "harbour.y" { hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( NULL, (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ), FALSE ); ;} break; - case 434: -#line 1143 "harbour.y" + case 430: +#line 1144 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(4) - (4)].asExpr), HB_COMP_PARAM ) ); hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( NULL, (yyvsp[(1) - (4)].asExpr), HB_COMP_PARAM ), TRUE ); ;} break; - case 435: -#line 1147 "harbour.y" + case 431: +#line 1148 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compArrayDimPush( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ) ); hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( NULL, (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), TRUE ); ;} break; - case 436: -#line 1153 "harbour.y" - { hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType) ); ;} - break; - - case 437: -#line 1154 "harbour.y" + case 432: +#line 1155 "harbour.y" { + hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType) ); if( HB_COMP_PARAM->iVarScope & VS_STATIC ) { hb_compStaticDefStart( HB_COMP_PARAM ); /* switch to statics pcode buffer */ - hb_compStaticDefEnd( HB_COMP_PARAM, (yyvsp[(1) - (3)].string) ); + hb_compStaticDefEnd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string) ); } else if( HB_COMP_PARAM->iVarScope == VS_PUBLIC || HB_COMP_PARAM->iVarScope == VS_PRIVATE ) { - hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( (yyvsp[(1) - (3)].string), NULL, HB_COMP_PARAM ), FALSE ); + hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( (yyvsp[(1) - (2)].string), NULL, HB_COMP_PARAM ), FALSE ); } else if( HB_COMP_PARAM->iVarScope == VS_LOCAL && - ( HB_COMP_PARAM->functions.pLast->bFlags & FUN_EXTBLOCK ) ) + ( HB_COMP_PARAM->functions.pLast->funFlags & FUN_EXTBLOCK ) ) { HB_COMP_EXPR_DELETE( hb_compExprGenPush( hb_compExprNewNil( HB_COMP_PARAM ), HB_COMP_PARAM ) ); } ;} break; - case 438: -#line 1170 "harbour.y" + case 433: +#line 1172 "harbour.y" { (yyval.iNumber) = HB_COMP_PARAM->iVarScope; hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType) ); ;} break; - case 439: -#line 1173 "harbour.y" - { ; ;} - break; - - case 440: -#line 1174 "harbour.y" + case 434: +#line 1176 "harbour.y" { - HB_COMP_PARAM->iVarScope = (yyvsp[(3) - (6)].iNumber); + HB_COMP_PARAM->iVarScope = (yyvsp[(3) - (5)].iNumber); if( HB_COMP_PARAM->iVarScope & VS_STATIC ) { hb_compStaticDefStart( HB_COMP_PARAM ); /* switch to statics pcode buffer */ - HB_COMP_EXPR_DELETE( hb_compExprGenStatement( hb_compExprAssignStatic( hb_compExprNewVar( (yyvsp[(1) - (6)].string), HB_COMP_PARAM ), (yyvsp[(6) - (6)].asExpr), HB_COMP_PARAM ), HB_COMP_PARAM ) ); - hb_compStaticDefEnd( HB_COMP_PARAM, (yyvsp[(1) - (6)].string) ); + HB_COMP_EXPR_DELETE( hb_compExprGenStatement( hb_compExprAssignStatic( hb_compExprNewVar( (yyvsp[(1) - (5)].string), HB_COMP_PARAM ), (yyvsp[(5) - (5)].asExpr), HB_COMP_PARAM ), HB_COMP_PARAM ) ); + hb_compStaticDefEnd( HB_COMP_PARAM, (yyvsp[(1) - (5)].string) ); } else if( HB_COMP_PARAM->iVarScope == VS_PUBLIC || HB_COMP_PARAM->iVarScope == VS_PRIVATE ) { - HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(6) - (6)].asExpr), HB_COMP_PARAM ) ); - hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( (yyvsp[(1) - (6)].string), NULL, HB_COMP_PARAM ), TRUE ); + HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(5) - (5)].asExpr), HB_COMP_PARAM ) ); + hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( (yyvsp[(1) - (5)].string), NULL, HB_COMP_PARAM ), TRUE ); } else if( HB_COMP_PARAM->iVarScope == VS_LOCAL && - ( HB_COMP_PARAM->functions.pLast->bFlags & FUN_EXTBLOCK ) ) + ( HB_COMP_PARAM->functions.pLast->funFlags & FUN_EXTBLOCK ) ) { - HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(6) - (6)].asExpr), HB_COMP_PARAM ) ); + HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(5) - (5)].asExpr), HB_COMP_PARAM ) ); } else { - HB_COMP_EXPR_DELETE( hb_compExprGenStatement( hb_compExprAssign( hb_compExprNewVar( (yyvsp[(1) - (6)].string), HB_COMP_PARAM ), (yyvsp[(6) - (6)].asExpr), HB_COMP_PARAM ), HB_COMP_PARAM ) ); + HB_COMP_EXPR_DELETE( hb_compExprGenStatement( hb_compExprAssign( hb_compExprNewVar( (yyvsp[(1) - (5)].string), HB_COMP_PARAM ), (yyvsp[(5) - (5)].asExpr), HB_COMP_PARAM ), HB_COMP_PARAM ) ); } - HB_COMP_PARAM->iVarScope = (yyvsp[(3) - (6)].iNumber); + HB_COMP_PARAM->iVarScope = (yyvsp[(3) - (5)].iNumber); ;} break; - case 441: -#line 1199 "harbour.y" + case 435: +#line 1201 "harbour.y" { hb_compVariableDim( (yyvsp[(1) - (3)].string), (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 443: -#line 1208 "harbour.y" + case 437: +#line 1210 "harbour.y" { (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 444: -#line 1209 "harbour.y" + case 438: +#line 1211 "harbour.y" { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} break; - case 445: -#line 1210 "harbour.y" + case 439: +#line 1212 "harbour.y" { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (4)].asExpr), (yyvsp[(4) - (4)].asExpr) ); ;} break; - case 446: -#line 1213 "harbour.y" + case 440: +#line 1215 "harbour.y" { HB_COMP_PARAM->iVarScope = VS_FIELD; ;} break; - case 447: -#line 1215 "harbour.y" + case 441: +#line 1217 "harbour.y" { if( (yyvsp[(4) - (5)].string) ) hb_compFieldSetAlias( HB_COMP_PARAM, (yyvsp[(4) - (5)].string), (yyvsp[(3) - (5)].iNumber) ); ;} break; - case 448: -#line 1220 "harbour.y" + case 442: +#line 1222 "harbour.y" { (yyval.iNumber) = hb_compFieldsCount( HB_COMP_PARAM ); hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType) ); ;} break; + case 443: +#line 1223 "harbour.y" + { hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), (yyvsp[(4) - (4)].asVarType) ); ;} + break; + + case 444: +#line 1226 "harbour.y" + { (yyval.string) = NULL; ;} + break; + + case 445: +#line 1227 "harbour.y" + { (yyval.string) = (yyvsp[(2) - (2)].string); ;} + break; + + case 446: +#line 1230 "harbour.y" + { HB_COMP_PARAM->iVarScope = VS_MEMVAR; ;} + break; + + case 448: +#line 1233 "harbour.y" + { hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType) ); ;} + break; + case 449: -#line 1221 "harbour.y" +#line 1234 "harbour.y" { hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), (yyvsp[(4) - (4)].asVarType) ); ;} break; case 450: -#line 1224 "harbour.y" - { (yyval.string) = NULL; ;} - break; - - case 451: -#line 1225 "harbour.y" - { (yyval.string) = (yyvsp[(2) - (2)].string); ;} - break; - - case 452: -#line 1228 "harbour.y" - { HB_COMP_PARAM->iVarScope = VS_MEMVAR; ;} - break; - - case 454: -#line 1231 "harbour.y" - { hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType) ); ;} - break; - - case 455: -#line 1232 "harbour.y" - { hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), (yyvsp[(4) - (4)].asVarType) ); ;} - break; - - case 456: -#line 1235 "harbour.y" +#line 1237 "harbour.y" { hb_compDeclaredAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string) ); HB_COMP_PARAM->szDeclaredFun = (yyvsp[(2) - (3)].string); ;} break; - case 457: -#line 1236 "harbour.y" + case 451: +#line 1238 "harbour.y" { if( HB_COMP_PARAM->pLastDeclared ) { @@ -6137,48 +6104,48 @@ yyreduce: ;} break; - case 458: -#line 1254 "harbour.y" + case 452: +#line 1256 "harbour.y" { HB_COMP_PARAM->pLastClass = hb_compClassAdd( HB_COMP_PARAM, (yyvsp[(2) - (2)].string), NULL ); ;} break; - case 459: -#line 1254 "harbour.y" + case 453: +#line 1256 "harbour.y" { HB_COMP_PARAM->iVarScope = VS_NONE; ;} break; - case 460: -#line 1255 "harbour.y" + case 454: +#line 1257 "harbour.y" { HB_COMP_PARAM->pLastClass = hb_compClassAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string), NULL ); HB_COMP_PARAM->iVarScope = VS_NONE; ;} break; - case 461: -#line 1256 "harbour.y" + case 455: +#line 1258 "harbour.y" { HB_COMP_PARAM->pLastClass = hb_compClassAdd( HB_COMP_PARAM, (yyvsp[(2) - (4)].string), (yyvsp[(3) - (4)].string) ); HB_COMP_PARAM->iVarScope = VS_NONE; ;} break; - case 462: -#line 1257 "harbour.y" + case 456: +#line 1259 "harbour.y" { HB_COMP_PARAM->iVarScope = VS_NONE; ;} break; - case 463: -#line 1258 "harbour.y" + case 457: +#line 1260 "harbour.y" { HB_COMP_PARAM->cDataListType = (yyvsp[(3) - (3)].asVarType)->cVarType; ;} break; - case 464: -#line 1258 "harbour.y" + case 458: +#line 1260 "harbour.y" { HB_COMP_PARAM->cDataListType = 0; HB_COMP_PARAM->iVarScope = VS_NONE; ;} break; - case 471: -#line 1271 "harbour.y" + case 465: +#line 1273 "harbour.y" { HB_COMP_PARAM->pLastMethod = hb_compMethodAdd( HB_COMP_PARAM, HB_COMP_PARAM->pLastClass, (yyvsp[(1) - (2)].string) ); ;} break; - case 472: -#line 1272 "harbour.y" + case 466: +#line 1274 "harbour.y" { if( HB_COMP_PARAM->pLastMethod ) { @@ -6197,13 +6164,13 @@ yyreduce: ;} break; - case 473: -#line 1290 "harbour.y" + case 467: +#line 1292 "harbour.y" { HB_COMP_PARAM->pLastMethod = hb_compMethodAdd( HB_COMP_PARAM, HB_COMP_PARAM->pLastClass, (yyvsp[(1) - (1)].string) ); ;} break; - case 474: -#line 1291 "harbour.y" + case 468: +#line 1293 "harbour.y" { if( HB_COMP_PARAM->pLastMethod ) { @@ -6258,183 +6225,183 @@ yyreduce: ;} break; - case 481: -#line 1355 "harbour.y" + case 475: +#line 1357 "harbour.y" { HB_COMP_EXPR_DELETE( (yyvsp[(1) - (1)].asExpr) ); ;} break; - case 482: -#line 1358 "harbour.y" + case 476: +#line 1360 "harbour.y" { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType) ); ;} break; - case 483: -#line 1359 "harbour.y" + case 477: +#line 1361 "harbour.y" { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string), hb_compVarTypeNew( HB_COMP_PARAM, (yyvsp[(3) - (3)].asVarType)->cVarType + VT_OFFSET_BYREF, NULL ) ); ;} break; - case 484: -#line 1360 "harbour.y" + case 478: +#line 1362 "harbour.y" { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(2) - (5)].string), hb_compVarTypeNew( HB_COMP_PARAM, 'F', NULL ) ); ;} break; - case 485: -#line 1361 "harbour.y" + case 479: +#line 1363 "harbour.y" { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), (yyvsp[(4) - (4)].asVarType) ); ;} break; - case 486: -#line 1362 "harbour.y" + case 480: +#line 1364 "harbour.y" { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(4) - (5)].string), hb_compVarTypeNew( HB_COMP_PARAM, (yyvsp[(5) - (5)].asVarType)->cVarType + VT_OFFSET_BYREF, NULL ) ); ;} break; - case 487: -#line 1363 "harbour.y" + case 481: +#line 1365 "harbour.y" { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(4) - (7)].string), hb_compVarTypeNew( HB_COMP_PARAM, 'F', NULL ) ); ;} break; - case 488: -#line 1366 "harbour.y" + case 482: +#line 1368 "harbour.y" { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string), hb_compVarTypeNew( HB_COMP_PARAM, (yyvsp[(3) - (3)].asVarType)->cVarType + VT_OFFSET_OPTIONAL, NULL ) ); ;} break; - case 489: -#line 1367 "harbour.y" + case 483: +#line 1369 "harbour.y" { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), hb_compVarTypeNew( HB_COMP_PARAM, (yyvsp[(4) - (4)].asVarType)->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF, NULL ) ); ;} break; - case 490: -#line 1368 "harbour.y" + case 484: +#line 1370 "harbour.y" { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(3) - (6)].string), hb_compVarTypeNew( HB_COMP_PARAM, 'F' + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF, NULL ) ); ;} break; - case 491: -#line 1369 "harbour.y" + case 485: +#line 1371 "harbour.y" { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(4) - (5)].string), hb_compVarTypeNew( HB_COMP_PARAM, (yyvsp[(5) - (5)].asVarType)->cVarType + VT_OFFSET_OPTIONAL, NULL ) ); ;} break; - case 492: -#line 1370 "harbour.y" + case 486: +#line 1372 "harbour.y" { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(5) - (6)].string), hb_compVarTypeNew( HB_COMP_PARAM, (yyvsp[(6) - (6)].asVarType)->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF, NULL ) ); ;} break; - case 493: -#line 1371 "harbour.y" + case 487: +#line 1373 "harbour.y" { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(5) - (8)].string), hb_compVarTypeNew( HB_COMP_PARAM, 'F' + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF, NULL ) ); ;} break; - case 502: -#line 1384 "harbour.y" + case 496: +#line 1386 "harbour.y" { hb_compGenJumpHere( (yyvsp[(1) - (2)].iNumber), HB_COMP_PARAM ); ;} break; - case 503: -#line 1385 "harbour.y" + case 497: +#line 1387 "harbour.y" { hb_compGenJumpHere( (yyvsp[(1) - (3)].iNumber), HB_COMP_PARAM ); ;} break; - case 504: -#line 1386 "harbour.y" + case 498: +#line 1388 "harbour.y" { hb_compGenJumpHere( (yyvsp[(1) - (3)].iNumber), HB_COMP_PARAM ); hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (3)].pVoid) ); ;} break; - case 505: -#line 1387 "harbour.y" + case 499: +#line 1389 "harbour.y" { hb_compGenJumpHere( (yyvsp[(1) - (4)].iNumber), HB_COMP_PARAM ); hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (4)].pVoid) ); ;} break; - case 506: -#line 1391 "harbour.y" + case 500: +#line 1393 "harbour.y" { ++HB_COMP_PARAM->functions.pLast->wIfCounter; hb_compLinePushIfInside( HB_COMP_PARAM ); ;} break; - case 507: -#line 1393 "harbour.y" + case 501: +#line 1395 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(2) - (4)].asExpr), HB_COMP_PARAM ) ); (yyval.iNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM ); ;} break; - case 508: -#line 1395 "harbour.y" + case 502: +#line 1397 "harbour.y" { (yyval.iNumber) = hb_compGenJump( 0, HB_COMP_PARAM ); hb_compGenJumpHere( (yyvsp[(5) - (6)].iNumber), HB_COMP_PARAM ); ;} break; - case 509: -#line 1398 "harbour.y" - { HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;} + case 503: +#line 1400 "harbour.y" + { HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; ;} break; - case 511: -#line 1402 "harbour.y" - { HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; hb_compLinePush( HB_COMP_PARAM ); ;} - break; - - case 512: + case 505: #line 1404 "harbour.y" + { HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; hb_compLinePush( HB_COMP_PARAM ); ;} + break; + + case 506: +#line 1406 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ) ); (yyval.iNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM ); ;} break; - case 513: -#line 1408 "harbour.y" + case 507: +#line 1410 "harbour.y" { (yyval.pVoid) = hb_compElseIfGen( HB_COMP_PARAM, NULL, hb_compGenJump( 0, HB_COMP_PARAM ) ); hb_compGenJumpHere( (yyvsp[(5) - (6)].iNumber), HB_COMP_PARAM ); ;} break; - case 514: -#line 1412 "harbour.y" - { HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; hb_compLinePush( HB_COMP_PARAM ); ;} + case 508: +#line 1414 "harbour.y" + { HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; hb_compLinePush( HB_COMP_PARAM ); ;} break; - case 515: -#line 1414 "harbour.y" + case 509: +#line 1416 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(4) - (5)].asExpr), HB_COMP_PARAM ) ); (yyval.iNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM ); ;} break; - case 516: -#line 1418 "harbour.y" + case 510: +#line 1420 "harbour.y" { (yyval.pVoid) = hb_compElseIfGen( HB_COMP_PARAM, (yyvsp[(1) - (7)].pVoid), hb_compGenJump( 0, HB_COMP_PARAM ) ); hb_compGenJumpHere( (yyvsp[(6) - (7)].iNumber), HB_COMP_PARAM ); ;} break; - case 517: -#line 1424 "harbour.y" + case 511: +#line 1426 "harbour.y" { if( HB_COMP_PARAM->functions.pLast->wIfCounter ) --HB_COMP_PARAM->functions.pLast->wIfCounter; - HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); + HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); ;} break; - case 520: -#line 1437 "harbour.y" + case 514: +#line 1439 "harbour.y" { hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (3)].pVoid) ); ;} break; - case 523: -#line 1449 "harbour.y" + case 517: +#line 1451 "harbour.y" { hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (4)].pVoid) ); ;} break; - case 524: -#line 1453 "harbour.y" + case 518: +#line 1455 "harbour.y" { if( HB_COMP_PARAM->functions.pLast->wCaseCounter ) --HB_COMP_PARAM->functions.pLast->wCaseCounter; - HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); + HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); ;} break; - case 527: -#line 1463 "harbour.y" + case 521: +#line 1465 "harbour.y" { ++HB_COMP_PARAM->functions.pLast->wCaseCounter; hb_compLinePushIfDebugger( HB_COMP_PARAM );;} break; - case 530: -#line 1467 "harbour.y" + case 524: +#line 1469 "harbour.y" { if( (yyvsp[(2) - (2)].lNumber) > 0 ) { @@ -6443,94 +6410,94 @@ yyreduce: ;} break; - case 531: -#line 1475 "harbour.y" + case 525: +#line 1477 "harbour.y" { hb_compLinePushIfInside( HB_COMP_PARAM ); ;} break; - case 532: -#line 1476 "harbour.y" + case 526: +#line 1478 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ) ); (yyval.iNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM ); ;} break; - case 533: -#line 1481 "harbour.y" + case 527: +#line 1483 "harbour.y" { - HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; + HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; (yyval.pVoid) = hb_compElseIfGen( HB_COMP_PARAM, NULL, hb_compGenJump( 0, HB_COMP_PARAM ) ); hb_compGenJumpHere( (yyvsp[(5) - (6)].iNumber), HB_COMP_PARAM ); ;} break; - case 534: -#line 1487 "harbour.y" + case 528: +#line 1489 "harbour.y" { hb_compLinePushIfInside( HB_COMP_PARAM ); ;} break; - case 535: -#line 1488 "harbour.y" + case 529: +#line 1490 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(4) - (5)].asExpr), HB_COMP_PARAM ) ); (yyval.iNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM ); ;} break; - case 536: -#line 1493 "harbour.y" + case 530: +#line 1495 "harbour.y" { - HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; + HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; (yyval.pVoid) = hb_compElseIfGen( HB_COMP_PARAM, (yyvsp[(1) - (7)].pVoid), hb_compGenJump( 0, HB_COMP_PARAM ) ); hb_compGenJumpHere( (yyvsp[(6) - (7)].iNumber), HB_COMP_PARAM ); ;} break; - case 537: -#line 1500 "harbour.y" + case 531: +#line 1502 "harbour.y" {hb_compLinePushIfDebugger( HB_COMP_PARAM ); ;} break; - case 538: -#line 1500 "harbour.y" - { HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;} + case 532: +#line 1502 "harbour.y" + { HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; ;} break; - case 540: -#line 1502 "harbour.y" + case 534: +#line 1504 "harbour.y" { hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_MAYHEM_IN_CASE, NULL, NULL ); ;} break; - case 542: -#line 1507 "harbour.y" + case 536: +#line 1509 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ) ); (yyval.lNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM ); ;} break; - case 543: -#line 1512 "harbour.y" + case 537: +#line 1514 "harbour.y" { hb_compLoopHere( HB_COMP_PARAM ); hb_compGenJump( ( ULONG ) (yyvsp[(1) - (5)].lNumber) - HB_COMP_PARAM->functions.pLast->lPCodePos, HB_COMP_PARAM ); ;} break; - case 544: -#line 1517 "harbour.y" + case 538: +#line 1519 "harbour.y" { hb_compGenJumpHere( ( ULONG ) (yyvsp[(4) - (7)].lNumber), HB_COMP_PARAM ); if( HB_COMP_PARAM->functions.pLast->wWhileCounter ) --HB_COMP_PARAM->functions.pLast->wWhileCounter; hb_compLoopEnd( HB_COMP_PARAM ); - HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; + HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;} break; - case 545: -#line 1527 "harbour.y" + case 539: +#line 1529 "harbour.y" { (yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos; hb_compLinePushIfInside( HB_COMP_PARAM ); @@ -6539,13 +6506,13 @@ yyreduce: ;} break; - case 546: -#line 1536 "harbour.y" - { HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;} + case 540: +#line 1538 "harbour.y" + { HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; ;} break; - case 549: -#line 1544 "harbour.y" + case 543: +#line 1546 "harbour.y" { /* 5 */ hb_compLinePushIfInside( HB_COMP_PARAM ); (yyvsp[(1) - (4)].lNumber) = HB_COMP_PARAM->currLine; @@ -6560,23 +6527,23 @@ yyreduce: ;} break; - case 550: -#line 1557 "harbour.y" + case 544: +#line 1559 "harbour.y" { /* 9 */ hb_compLoopStart( HB_COMP_PARAM, TRUE ); (yyval.lNumber) = hb_compGenJump( 0, HB_COMP_PARAM ); ;} break; - case 551: -#line 1562 "harbour.y" + case 545: +#line 1564 "harbour.y" { /* 11 */ (yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos; ;} break; - case 552: -#line 1566 "harbour.y" + case 546: +#line 1568 "harbour.y" { int iSign, iLine; @@ -6617,22 +6584,22 @@ yyreduce: if( hb_compExprAsSymbol( (yyvsp[(2) - (12)].asExpr) ) ) hb_compForEnd( HB_COMP_PARAM, hb_compExprAsSymbol( (yyvsp[(2) - (12)].asExpr) ) ); HB_COMP_EXPR_DELETE( (yyvsp[(5) - (12)].asExpr) ); /* deletes $5, $2, $4 */ - HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); + HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); ;} break; - case 555: -#line 1614 "harbour.y" + case 549: +#line 1616 "harbour.y" { (yyval.asExpr) = NULL; ;} break; - case 556: -#line 1615 "harbour.y" + case 550: +#line 1617 "harbour.y" { (yyval.asExpr) = hb_compExprReduce( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 557: -#line 1619 "harbour.y" + case 551: +#line 1621 "harbour.y" { hb_compLinePush( HB_COMP_PARAM ); if( HB_COMP_PARAM->functions.pLast->wForCounter ) @@ -6640,43 +6607,43 @@ yyreduce: ;} break; - case 562: -#line 1632 "harbour.y" + case 556: +#line 1634 "harbour.y" { (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;} break; - case 563: -#line 1633 "harbour.y" + case 557: +#line 1635 "harbour.y" { (yyval.asExpr) = hb_compExprNewRef( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;} break; - case 564: -#line 1636 "harbour.y" + case 558: +#line 1638 "harbour.y" { (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;} break; - case 565: -#line 1637 "harbour.y" + case 559: +#line 1639 "harbour.y" { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} break; - case 566: -#line 1640 "harbour.y" + case 560: +#line 1642 "harbour.y" { (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(2) - (2)].string), HB_COMP_PARAM ); ;} break; - case 568: -#line 1644 "harbour.y" + case 562: +#line 1646 "harbour.y" { (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;} break; - case 569: -#line 1645 "harbour.y" + case 563: +#line 1647 "harbour.y" { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} break; - case 570: -#line 1650 "harbour.y" + case 564: +#line 1652 "harbour.y" { ++HB_COMP_PARAM->functions.pLast->wForCounter; /* 5 */ hb_compLinePushIfInside( HB_COMP_PARAM ); @@ -6684,8 +6651,8 @@ yyreduce: ;} break; - case 571: -#line 1656 "harbour.y" + case 565: +#line 1658 "harbour.y" { /* 7 */ @@ -6698,8 +6665,8 @@ yyreduce: ;} break; - case 572: -#line 1667 "harbour.y" + case 566: +#line 1669 "harbour.y" { /* 9 */ @@ -6707,8 +6674,8 @@ yyreduce: ;} break; - case 573: -#line 1673 "harbour.y" + case 567: +#line 1675 "harbour.y" { hb_compLoopHere( HB_COMP_PARAM ); hb_compEnumNext( HB_COMP_PARAM, (yyvsp[(2) - (10)].asExpr), (yyvsp[(6) - (10)].iNumber) ); @@ -6716,25 +6683,25 @@ yyreduce: hb_compGenJumpHere( ( ULONG ) (yyvsp[(9) - (10)].lNumber), HB_COMP_PARAM ); hb_compLoopEnd( HB_COMP_PARAM ); - HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); + HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); hb_compEnumEnd( HB_COMP_PARAM, (yyvsp[(2) - (10)].asExpr) ); HB_COMP_EXPR_DELETE( (yyvsp[(2) - (10)].asExpr) ); HB_COMP_EXPR_DELETE( (yyvsp[(4) - (10)].asExpr) ); ;} break; - case 574: -#line 1687 "harbour.y" + case 568: +#line 1689 "harbour.y" { (yyval.iNumber) = 1; ;} break; - case 575: -#line 1688 "harbour.y" + case 569: +#line 1690 "harbour.y" { (yyval.iNumber) = -1; ;} break; - case 576: -#line 1692 "harbour.y" + case 570: +#line 1694 "harbour.y" { hb_compLoopStart( HB_COMP_PARAM, FALSE ); hb_compSwitchStart( HB_COMP_PARAM ); @@ -6742,46 +6709,46 @@ yyreduce: ;} break; - case 577: -#line 1699 "harbour.y" + case 571: +#line 1701 "harbour.y" { hb_compSwitchEnd( HB_COMP_PARAM ); hb_compLoopEnd( HB_COMP_PARAM ); ;} break; - case 578: -#line 1706 "harbour.y" + case 572: +#line 1708 "harbour.y" { hb_compGenPCode1( HB_P_POP, HB_COMP_PARAM ); ;} break; - case 579: -#line 1712 "harbour.y" + case 573: +#line 1714 "harbour.y" { if( HB_COMP_PARAM->functions.pLast->wSwitchCounter ) --HB_COMP_PARAM->functions.pLast->wSwitchCounter; - HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); + HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); ;} break; - case 582: -#line 1724 "harbour.y" + case 576: +#line 1726 "harbour.y" { ++HB_COMP_PARAM->functions.pLast->wSwitchCounter; hb_compLinePushIfInside( HB_COMP_PARAM ); ;} break; - case 583: -#line 1728 "harbour.y" + case 577: +#line 1730 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ) ); ;} break; - case 585: -#line 1735 "harbour.y" + case 579: +#line 1737 "harbour.y" { if( (yyvsp[(2) - (2)].lNumber) > 0 ) { @@ -6790,28 +6757,28 @@ yyreduce: ;} break; - case 586: -#line 1743 "harbour.y" + case 580: +#line 1745 "harbour.y" { hb_compSwitchAdd( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); hb_compLinePush( HB_COMP_PARAM ); ;} break; - case 588: -#line 1746 "harbour.y" + case 582: +#line 1748 "harbour.y" { hb_compSwitchAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].asExpr) ); hb_compLinePush( HB_COMP_PARAM ); ;} break; - case 592: -#line 1754 "harbour.y" + case 586: +#line 1756 "harbour.y" { hb_compSwitchAdd( HB_COMP_PARAM, NULL ); hb_compLinePush( HB_COMP_PARAM ); ;} break; - case 593: -#line 1754 "harbour.y" - { HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;} + case 587: +#line 1756 "harbour.y" + { HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; ;} break; - case 595: -#line 1759 "harbour.y" + case 589: +#line 1761 "harbour.y" { /* 2 */ hb_compLinePushIfInside( HB_COMP_PARAM ); ++HB_COMP_PARAM->functions.pLast->wSeqCounter; @@ -6819,8 +6786,8 @@ yyreduce: ;} break; - case 596: -#line 1767 "harbour.y" + case 590: +#line 1769 "harbour.y" { /* 6 */ /* Set jump address for HB_P_SEQBEGIN opcode - this address * will be used in BREAK code if there is no RECOVER clause @@ -6833,8 +6800,8 @@ yyreduce: ;} break; - case 597: -#line 1778 "harbour.y" + case 591: +#line 1780 "harbour.y" { /* 8 */ /* Replace END address with RECOVER address in * HB_P_SEQBEGIN opcode if there is RECOVER clause @@ -6846,11 +6813,11 @@ yyreduce: ;} break; - case 598: -#line 1788 "harbour.y" + case 592: +#line 1790 "harbour.y" { /* 10 */ long lLoopCount = hb_compLoopCount( HB_COMP_PARAM ); - HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); + HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); if( (yyvsp[(9) - (9)].lNumber) ) { if( (yyvsp[(4) - (9)].lNumber) != lLoopCount ) @@ -6878,13 +6845,13 @@ yyreduce: ;} break; - case 602: -#line 1823 "harbour.y" + case 596: +#line 1825 "harbour.y" { (yyval.lNumber) = 0; ;} break; - case 603: -#line 1825 "harbour.y" + case 597: +#line 1827 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) ); hb_compGenPCode1( HB_P_SEQBLOCK, HB_COMP_PARAM ); @@ -6892,30 +6859,30 @@ yyreduce: ;} break; - case 604: -#line 1832 "harbour.y" + case 598: +#line 1834 "harbour.y" { (yyval.lNumber) = 0; ;} break; - case 606: -#line 1837 "harbour.y" + case 600: +#line 1839 "harbour.y" { - HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); + HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); (yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos; ++HB_COMP_PARAM->functions.pLast->wAlwaysCounter; hb_compSequenceAlways( HB_COMP_PARAM ); ;} break; - case 607: -#line 1845 "harbour.y" - { (yyval.lNumber) = 0; HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;} + case 601: +#line 1847 "harbour.y" + { (yyval.lNumber) = 0; HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; ;} break; - case 610: -#line 1851 "harbour.y" + case 604: +#line 1853 "harbour.y" { - HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; + HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; (yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos; if( HB_COMP_PARAM->functions.pLast->wSeqCounter ) --HB_COMP_PARAM->functions.pLast->wSeqCounter; @@ -6924,10 +6891,10 @@ yyreduce: ;} break; - case 611: -#line 1862 "harbour.y" + case 605: +#line 1864 "harbour.y" { - HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; + HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; (yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos; if( HB_COMP_PARAM->functions.pLast->wSeqCounter ) --HB_COMP_PARAM->functions.pLast->wSeqCounter; @@ -6937,76 +6904,64 @@ yyreduce: ;} break; - case 614: -#line 1884 "harbour.y" - { (yyval.bTrue) = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL; ;} - break; - - case 615: + case 608: #line 1886 "harbour.y" { - (yyval.asExpr) = hb_compExprNewFunCall( (yyvsp[(2) - (4)].asExpr), (yyvsp[(4) - (4)].asExpr), HB_COMP_PARAM ); - HB_COMP_PARAM->iPassByRef = (yyvsp[(3) - (4)].bTrue); + (yyval.asExpr) = hb_compExprNewFunCall( (yyvsp[(2) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 616: -#line 1891 "harbour.y" - { (yyval.bTrue) = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL; ;} - break; - - case 617: -#line 1893 "harbour.y" + case 609: +#line 1890 "harbour.y" { - hb_compAutoOpenAdd( HB_COMP_PARAM, (yyvsp[(1) - (3)].string) ); + hb_compAutoOpenAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string) ); /* DOIDENT is the only one identifier which can be returned in lower letters */ - (yyval.asExpr) = hb_compExprNewFunCall( hb_compExprNewFunName( hb_compIdentifierNew( HB_COMP_PARAM, hb_strupr( hb_strdup( (yyvsp[(1) - (3)].string) ) ), HB_IDENT_FREE ), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); - HB_COMP_PARAM->iPassByRef = (yyvsp[(2) - (3)].bTrue); + (yyval.asExpr) = hb_compExprNewFunCall( hb_compExprNewFunName( hb_compIdentifierNew( HB_COMP_PARAM, hb_strupr( hb_strdup( (yyvsp[(1) - (2)].string) ) ), HB_IDENT_FREE ), HB_COMP_PARAM ), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 618: -#line 1901 "harbour.y" + case 610: +#line 1897 "harbour.y" { (yyval.asExpr) = NULL; ;} break; - case 619: -#line 1902 "harbour.y" + case 611: +#line 1898 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; - case 620: -#line 1905 "harbour.y" + case 612: +#line 1901 "harbour.y" { (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprNewArgList( hb_compExprNewNil( HB_COMP_PARAM ), HB_COMP_PARAM ), hb_compExprNewNil( HB_COMP_PARAM ) ); ;} break; - case 621: -#line 1906 "harbour.y" + case 613: +#line 1902 "harbour.y" { (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprNewArgList( hb_compExprNewNil( HB_COMP_PARAM ), HB_COMP_PARAM ), (yyvsp[(2) - (2)].asExpr) ); ;} break; - case 622: -#line 1907 "harbour.y" + case 614: +#line 1903 "harbour.y" { (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;} break; - case 623: -#line 1908 "harbour.y" + case 615: +#line 1904 "harbour.y" { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (2)].asExpr), hb_compExprNewNil( HB_COMP_PARAM ) ); ;} break; - case 624: -#line 1909 "harbour.y" + case 616: +#line 1905 "harbour.y" { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} break; - case 625: -#line 1912 "harbour.y" + case 617: +#line 1908 "harbour.y" { (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;} break; - case 630: -#line 1920 "harbour.y" + case 622: +#line 1916 "harbour.y" { hb_compLinePushIfInside( HB_COMP_PARAM ); HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ) ); @@ -7016,8 +6971,8 @@ yyreduce: ;} break; - case 631: -#line 1929 "harbour.y" + case 623: +#line 1925 "harbour.y" { if( HB_COMP_PARAM->functions.pLast->wWithObjectCnt ) --HB_COMP_PARAM->functions.pLast->wWithObjectCnt; if( (yyvsp[(5) - (6)].lNumber) ) @@ -7031,14 +6986,14 @@ yyreduce: ;} break; - case 634: -#line 1946 "harbour.y" + case 626: +#line 1942 "harbour.y" { HB_COMP_PARAM->fError = FALSE; ;} break; /* Line 1268 of yacc.c. */ -#line 7042 "harboury.c" +#line 6997 "harboury.c" default: break; } YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); @@ -7257,7 +7212,7 @@ yyreturn: } -#line 1950 "harbour.y" +#line 1946 "harbour.y" /* @@ -7730,7 +7685,7 @@ static void hb_compVariableDim( const char * szName, HB_EXPR_PTR pInitValue, HB_ hb_compVariableAdd( HB_COMP_PARAM, szName, hb_compVarTypeNew( HB_COMP_PARAM, 'A', NULL ) ); HB_COMP_EXPR_DELETE( hb_compArrayDimPush( pInitValue, HB_COMP_PARAM ) ); if( HB_COMP_PARAM->iVarScope != VS_LOCAL || - !( HB_COMP_PARAM->functions.pLast->bFlags & FUN_EXTBLOCK ) ) + !( HB_COMP_PARAM->functions.pLast->funFlags & FUN_EXTBLOCK ) ) { HB_COMP_EXPR_DELETE( hb_compExprGenPop( hb_compExprNewVar( szName, HB_COMP_PARAM ), HB_COMP_PARAM ) ); } @@ -7894,7 +7849,7 @@ static void hb_compSwitchAdd( HB_COMP_DECL, HB_EXPR_PTR pExpr ) HB_SWITCHCASE_PTR pCase; PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast; - pFunc->bFlags &= ~FUN_BREAK_CODE; + pFunc->funFlags &= ~FUN_BREAK_CODE; if( pExpr ) { @@ -8053,24 +8008,7 @@ static HB_EXPR_PTR hb_compCheckPassByRef( HB_COMP_DECL, HB_EXPR_PTR pExpr ) return hb_compErrorRefer( HB_COMP_PARAM, pExpr, szDesc ); } } -#if 0 - else if( !( HB_COMP_PARAM->iPassByRef & ( HB_PASSBYREF_FUNCALL | HB_PASSBYREF_ARRAY ) ) ) - { - const char * szDesc; - if( pExpr->ExprType == HB_ET_REFERENCE ) - { - HB_EXPR_PTR pDelExpr = pExpr; - pExpr = pExpr->value.asReference; - HB_COMP_EXPR_CLEAR( pDelExpr ); - } - szDesc = hb_compExprAsSymbol( pExpr ); - if( ! szDesc ) - szDesc = hb_compExprDescription( pExpr ); - - return hb_compErrorRefer( HB_COMP_PARAM, pExpr, szDesc ); - } -#endif return pExpr; } @@ -8115,10 +8053,10 @@ BOOL hb_compCheckUnclosedStru( HB_COMP_DECL, PFUNCTION pFunc ) hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "BEGIN SEQUENCE", NULL ); pFunc->wSeqCounter = 0; } - else if( pFunc->bFlags & FUN_EXTBLOCK ) + else if( pFunc->funFlags & FUN_EXTBLOCK ) { hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "{||...}", NULL ); - pFunc->bFlags &= ~FUN_EXTBLOCK; + pFunc->funFlags &= ~FUN_EXTBLOCK; } else fUnclosed = FALSE; @@ -8136,3 +8074,4 @@ void yyerror( HB_COMP_DECL, const char * s ) else hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_YACC, s, HB_COMP_PARAM->pLex->lasttok ); } + diff --git a/harbour/source/compiler/harbour.yyh b/harbour/source/compiler/harbour.yyh index 0b8765cecb..ac49fd5215 100644 --- a/harbour/source/compiler/harbour.yyh +++ b/harbour/source/compiler/harbour.yyh @@ -299,7 +299,7 @@ typedef union YYSTYPE struct { BOOL bMacro; - union + union { char * string; HB_EXPR_PTR macro; diff --git a/harbour/source/compiler/hbcomp.c b/harbour/source/compiler/hbcomp.c index c71b5e8706..b56468a833 100644 --- a/harbour/source/compiler/hbcomp.c +++ b/harbour/source/compiler/hbcomp.c @@ -220,7 +220,6 @@ HB_COMP_PTR hb_comp_new( void ) pComp->fLongOptimize = TRUE; pComp->fPPO = FALSE; /* flag indicating, is ppo output needed */ - pComp->fStartProc = TRUE; /* holds if we need to create the starting procedure */ pComp->fLineNumbers = TRUE; /* holds if we need pcodes with line numbers */ pComp->fAnyWarning = FALSE; /* holds if there was any warning during the compilation process */ pComp->fAutoMemvarAssume= FALSE; /* holds if undeclared variables are automatically assumed MEMVAR (-a)*/ @@ -234,7 +233,9 @@ HB_COMP_PTR hb_comp_new( void ) pComp->fAutoOpen = TRUE; pComp->fError = FALSE; - pComp->iWarnings = 0; /* enable parse warnings */ + pComp->iStartProc = 0; /* no implicit starting procedure */ + pComp->iWarnings = 0; /* enable parse warnings */ + pComp->iGenCOutput= HB_COMPGENC_COMPACT; /* C code generation default mode */ pComp->iExitLevel = HB_EXITLEVEL_DEFAULT; /* holds if there was any warning during the compilation process */ pComp->iLanguage = HB_LANG_C; /* default Harbour generated output language */ diff --git a/harbour/source/compiler/hbdbginf.c b/harbour/source/compiler/hbdbginf.c index d4d57a62ed..58828b6a8e 100644 --- a/harbour/source/compiler/hbdbginf.c +++ b/harbour/source/compiler/hbdbginf.c @@ -60,7 +60,7 @@ PHB_DEBUGINFO hb_compGetDebugInfo( HB_COMP_DECL ) PFUNCTION pFunc; pFunc = HB_COMP_PARAM->functions.pFirst; - if( ! HB_COMP_PARAM->fStartProc ) + if( ( pFunc->funFlags & FUN_FILE_DECL ) != 0 ) pFunc = pFunc->pNext; while( pFunc ) diff --git a/harbour/source/compiler/hbmain.c b/harbour/source/compiler/hbmain.c index fb2ba52716..0ed9be80d4 100644 --- a/harbour/source/compiler/hbmain.c +++ b/harbour/source/compiler/hbmain.c @@ -382,12 +382,12 @@ void hb_compVariableAdd( HB_COMP_DECL, const char * szVarName, PHB_VARTYPE pVarT PVAR pVar; BOOL bFreeVar = TRUE; - if( ! HB_COMP_PARAM->fStartProc && HB_COMP_PARAM->functions.iCount <= 1 && + if( ( HB_COMP_PARAM->functions.pLast->funFlags & FUN_FILE_DECL ) != 0 && ( HB_COMP_PARAM->iVarScope == VS_LOCAL || HB_COMP_PARAM->iVarScope == ( VS_PRIVATE | VS_PARAMETER ) ) ) { /* Variable declaration is outside of function/procedure body. - In this case only STATIC and PARAMETERS variables are allowed. */ + In this case only STATICs, MEMVARs and FIELDs declarations are allowed. */ hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_OUTSIDE, NULL, NULL ); return; } @@ -395,7 +395,7 @@ void hb_compVariableAdd( HB_COMP_DECL, const char * szVarName, PHB_VARTYPE pVarT /* check if we are declaring local/static variable after some * executable statements */ - if( pFunc->bFlags & FUN_STATEMENTS ) + if( pFunc->funFlags & FUN_STATEMENTS ) { const char * szVarScope; switch( HB_COMP_PARAM->iVarScope ) @@ -436,7 +436,7 @@ void hb_compVariableAdd( HB_COMP_DECL, const char * szVarName, PHB_VARTYPE pVarT HB_COMP_PARAM->iVarScope == VS_PUBLIC ) ) hb_compCheckDuplVars( HB_COMP_PARAM, pFunc->pMemvars, szVarName ); } - else if( pFunc->bFlags & FUN_EXTBLOCK ) + else if( pFunc->funFlags & FUN_EXTBLOCK ) { /* variable defined in an extended codeblock */ hb_compCheckDuplVars( HB_COMP_PARAM, pFunc->pFields, szVarName ); @@ -573,7 +573,7 @@ void hb_compVariableAdd( HB_COMP_DECL, const char * szVarName, PHB_VARTYPE pVarT if( HB_COMP_PARAM->iVarScope == VS_PARAMETER ) { ++pFunc->wParamCount; - pFunc->bFlags |= FUN_USES_LOCAL_PARAMS; + pFunc->funFlags |= FUN_USES_LOCAL_PARAMS; } if( HB_COMP_PARAM->fDebugInfo ) { @@ -585,6 +585,7 @@ void hb_compVariableAdd( HB_COMP_DECL, const char * szVarName, PHB_VARTYPE pVarT case VS_TH_STATIC: pVar->uiFlags = VS_THREAD; case VS_STATIC: + ++HB_COMP_PARAM->iStaticCnt; hb_compVarListAdd( &pFunc->pStatics, pVar ); break; @@ -694,8 +695,8 @@ PVAR hb_compVariableFind( HB_COMP_DECL, const char * szVarName, int * piPos, int /* check current function/codeblock variables */ pFunc = HB_COMP_PARAM->functions.pLast; - pGlobal = ( HB_COMP_PARAM->fStartProc || - HB_COMP_PARAM->functions.pFirst == pFunc ) + pGlobal = ( HB_COMP_PARAM->functions.pFirst == pFunc || + !( HB_COMP_PARAM->functions.pFirst->funFlags & FUN_FILE_DECL ) ) ? NULL : HB_COMP_PARAM->functions.pFirst; while( pFunc ) @@ -805,7 +806,7 @@ PVAR hb_compVariableFind( HB_COMP_DECL, const char * szVarName, int * piPos, int hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_OUTER_VAR, szVarName, NULL ); } } - else if( pFunc->bFlags & FUN_EXTBLOCK ) + else if( pFunc->funFlags & FUN_EXTBLOCK ) { /* extended codeblock */ /* check static variables */ pVar = hb_compVariableGet( pFunc->pStatics, szVarName, piPos ); @@ -860,7 +861,7 @@ const char * hb_compLocalVariableName( PFUNCTION pFunc, USHORT wVar ) { PVAR pVar; - if( pFunc->wParamCount && !( pFunc->bFlags & FUN_USES_LOCAL_PARAMS ) ) + if( pFunc->wParamCount && !( pFunc->funFlags & FUN_USES_LOCAL_PARAMS ) ) wVar -= pFunc->wParamCount; pVar = hb_compVariableGetVar( pFunc->pLocals, wVar ); @@ -1555,7 +1556,7 @@ static void hb_compOptimizeFrames( HB_COMP_DECL, PFUNCTION pFunc ) if( pFunc->pCode[ 0 ] == HB_P_STATICS && pFunc->pCode[ 5 ] == HB_P_SFRAME ) { - hb_compSymbolFind( HB_COMP_PARAM, HB_COMP_PARAM->pInitFunc->szName, &w, HB_SYM_FUNCNAME ); + hb_compSymbolFind( HB_COMP_PARAM, pFunc->szName, &w, HB_SYM_FUNCNAME ); pFunc->pCode[ 1 ] = HB_LOBYTE( w ); pFunc->pCode[ 2 ] = HB_HIBYTE( w ); pFunc->pCode[ 6 ] = HB_LOBYTE( w ); @@ -1566,7 +1567,7 @@ static void hb_compOptimizeFrames( HB_COMP_DECL, PFUNCTION pFunc ) /* NOTE: For some reason this will not work for the static init function, so I'm using an ugly hack instead. [vszakats] */ -/* if( !( pFunc->bFlags & FUN_USES_STATICS ) ) */ +/* if( !( pFunc->funFlags & FUN_USES_STATICS ) ) */ if( pFunc->pCode[ 8 ] == HB_P_ENDPROC ) { pFunc->lPCodePos -= 3; @@ -1608,7 +1609,7 @@ static void hb_compOptimizeFrames( HB_COMP_DECL, PFUNCTION pFunc ) iLocals++; } - if( pFunc->bFlags & FUN_USES_STATICS ) + if( pFunc->funFlags & FUN_USES_STATICS ) { hb_compSymbolFind( HB_COMP_PARAM, HB_COMP_PARAM->pInitFunc->szName, &w, HB_SYM_FUNCNAME ); pFunc->pCode[ 4 ] = HB_LOBYTE( w ); @@ -1623,7 +1624,7 @@ static void hb_compOptimizeFrames( HB_COMP_DECL, PFUNCTION pFunc ) /* Parameters declared with PARAMETERS statement are not * placed in the local variable list. */ - if( pFunc->bFlags & FUN_USES_LOCAL_PARAMS ) + if( pFunc->funFlags & FUN_USES_LOCAL_PARAMS ) iLocals -= pFunc->wParamCount; if( iLocals > 255 ) @@ -1681,13 +1682,22 @@ static void hb_compOptimizeFrames( HB_COMP_DECL, PFUNCTION pFunc ) } } +static void hb_compWarnUnusedVar( HB_COMP_DECL, const char * szFuncName, + const char * szVarName, int iDeclLine ) +{ + char szFun[ HB_SYMBOL_NAME_LEN + 17 ]; + hb_snprintf( szFun, sizeof( szFun ), "%s(%i)", szFuncName, iDeclLine ); + hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', + HB_COMP_WARN_VAR_NOT_USED, szVarName, szFun ); +} + static void hb_compFinalizeFunction( HB_COMP_DECL ) /* fixes all last defined function returns jumps offsets */ { PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast; if( pFunc ) { - if( ( pFunc->bFlags & FUN_WITH_RETURN ) == 0 ) + if( ( pFunc->funFlags & FUN_WITH_RETURN ) == 0 ) { /* The last statement in a function/procedure was not a RETURN * Generate end-of-procedure pcode @@ -1704,45 +1714,38 @@ static void hb_compFinalizeFunction( HB_COMP_DECL ) /* fixes all last defined fu if( HB_COMP_PARAM->iWarnings ) { - PVAR pVar; - - pVar = pFunc->pLocals; - while( pVar ) + if( ( pFunc->funFlags & FUN_FILE_DECL ) == 0 ) { - if( pVar->szName && pFunc->szName && pFunc->szName[0] && (! ( pVar->iUsed & VU_USED )) ) + PVAR pVar; + + pVar = pFunc->pLocals; + while( pVar ) { - char szFun[ 256 ]; - hb_snprintf( szFun, sizeof( szFun ), "%s(%i)", pFunc->szName, pVar->iDeclLine ); - hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_VAR_NOT_USED, pVar->szName, szFun ); + if( pVar->szName && ( pVar->iUsed & VU_USED ) == 0 ) + hb_compWarnUnusedVar( HB_COMP_PARAM, pFunc->szName, pVar->szName, pVar->iDeclLine ); + pVar = pVar->pNext; } - pVar = pVar->pNext; - } - - pVar = pFunc->pStatics; - while( pVar ) - { - if( pVar->szName && pFunc->szName && pFunc->szName[0] && ! ( pVar->iUsed & VU_USED ) ) + pVar = pFunc->pStatics; + while( pVar ) { - char szFun[ 256 ]; - hb_snprintf( szFun, sizeof( szFun ), "%s(%i)", pFunc->szName, pVar->iDeclLine ); - hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_VAR_NOT_USED, pVar->szName, szFun ); + if( pVar->szName && ( pVar->iUsed & VU_USED ) == 0 ) + hb_compWarnUnusedVar( HB_COMP_PARAM, pFunc->szName, pVar->szName, pVar->iDeclLine ); + pVar = pVar->pNext; } - - pVar = pVar->pNext; } /* Check if the function returned some value */ - if( (pFunc->bFlags & FUN_WITH_RETURN) == 0 && - (pFunc->bFlags & FUN_PROCEDURE) == 0 ) + if( (pFunc->funFlags & FUN_WITH_RETURN) == 0 && + (pFunc->funFlags & FUN_PROCEDURE) == 0 ) hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_FUN_WITH_NO_RETURN, pFunc->szName, NULL ); } if( !pFunc->bError ) { - if( pFunc->wParamCount && !( pFunc->bFlags & FUN_USES_LOCAL_PARAMS ) ) + if( pFunc->wParamCount && ( pFunc->funFlags & FUN_USES_LOCAL_PARAMS ) == 0 ) { /* There was a PARAMETERS statement used. * NOTE: This fixes local variables references in a case when @@ -1956,6 +1959,43 @@ static void hb_compAddFunc( HB_COMP_DECL, PFUNCTION pFunc ) HB_COMP_PARAM->functions.iCount++; } +static BOOL hb_compRegisterFunc( HB_COMP_DECL, const char * szFunName, + HB_SYMBOLSCOPE cScope, BOOL fError ) +{ + PFUNCTION pFunc = hb_compFunctionFind( HB_COMP_PARAM, szFunName ); + + if( pFunc ) + { + /* The name of a function/procedure is already defined */ + if( fError ) + hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'F', HB_COMP_ERR_FUNC_DUPL, szFunName, NULL ); + } + else + { + const char * szFunction = hb_compReservedName( szFunName ); + if( szFunction ) + { + if( fError ) + hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_FUNC_RESERVED, szFunction, szFunName ); + } + else + { + PCOMSYMBOL pSym = hb_compSymbolFind( HB_COMP_PARAM, szFunName, NULL, HB_SYM_FUNCNAME ); + if( ! pSym ) + { + /* there is not a symbol on the symbol table for this function name */ + pSym = hb_compSymbolAdd( HB_COMP_PARAM, szFunName, NULL, HB_SYM_FUNCNAME ); + } + if( pSym ) + { + pSym->cScope |= cScope | HB_FS_LOCAL; + return TRUE; + } + } + } + return FALSE; +} + /* * Stores a Clipper defined function/procedure * szFunName - name of a function @@ -1964,9 +2004,7 @@ static void hb_compAddFunc( HB_COMP_DECL, PFUNCTION pFunc ) */ void hb_compFunctionAdd( HB_COMP_DECL, const char * szFunName, HB_SYMBOLSCOPE cScope, int iType ) { - PCOMSYMBOL pSym; PFUNCTION pFunc; - const char * szFunction; hb_compFinalizeFunction( HB_COMP_PARAM ); /* fix all previous function returns offsets */ @@ -1983,37 +2021,12 @@ void hb_compFunctionAdd( HB_COMP_DECL, const char * szFunName, HB_SYMBOLSCOPE cS szNewName[ iLen + 1 ] = '\0'; szFunName = hb_compIdentifierNew( HB_COMP_PARAM, szNewName, HB_IDENT_COPY ); } - pFunc = hb_compFunctionFind( HB_COMP_PARAM, szFunName ); - if( pFunc ) - { - /* The name of a function/procedure is already defined */ - if( pFunc != HB_COMP_PARAM->functions.pFirst || HB_COMP_PARAM->fStartProc ) - /* it is not a starting procedure that was automatically created */ - hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'F', HB_COMP_ERR_FUNC_DUPL, szFunName, NULL ); - } - szFunction = hb_compReservedName( szFunName ); - if( szFunction && !( HB_COMP_PARAM->functions.iCount == 0 && !HB_COMP_PARAM->fStartProc ) ) - { - /* We are ignoring it when it is the name of PRG file and we are - * not creating implicit starting procedure - */ - hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_FUNC_RESERVED, szFunction, szFunName ); - } - - HB_COMP_PARAM->iFunctionCnt++; - - pSym = hb_compSymbolFind( HB_COMP_PARAM, szFunName, NULL, HB_SYM_FUNCNAME ); - if( ! pSym ) - { - /* there is not a symbol on the symbol table for this function name */ - pSym = hb_compSymbolAdd( HB_COMP_PARAM, szFunName, NULL, HB_SYM_FUNCNAME ); - } - if( pSym ) - pSym->cScope |= cScope | HB_FS_LOCAL; + if( ( iType & FUN_FILE_DECL ) == 0 ) + hb_compRegisterFunc( HB_COMP_PARAM, szFunName, cScope, TRUE ); pFunc = hb_compFunctionNew( HB_COMP_PARAM, szFunName, cScope ); - pFunc->bFlags |= iType; + pFunc->funFlags |= iType; hb_compAddFunc( HB_COMP_PARAM, pFunc ); @@ -2032,7 +2045,7 @@ void hb_compFunctionAdd( HB_COMP_DECL, const char * szFunName, HB_SYMBOLSCOPE cS PINLINE hb_compInlineAdd( HB_COMP_DECL, const char * szFunName, int iLine ) { PINLINE pInline; - PCOMSYMBOL pSym; + PCOMSYMBOL pSym; if( szFunName ) { @@ -2089,10 +2102,9 @@ void hb_compAnnounce( HB_COMP_DECL, const char * szFunName ) pSym->cScope = HB_FS_PUBLIC | HB_FS_LOCAL; pFunc = hb_compFunctionNew( HB_COMP_PARAM, szFunName, pSym->cScope ); - pFunc->bFlags |= FUN_PROCEDURE; + pFunc->funFlags |= FUN_PROCEDURE; hb_compAddFunc( HB_COMP_PARAM, pFunc ); - HB_COMP_PARAM->iFunctionCnt++; /* this function have a very limited functionality */ @@ -2160,7 +2172,8 @@ PFUNCTION hb_compFunctionFind( HB_COMP_DECL, const char * szFunctionName ) /* re while( pFunc ) { - if( ! strcmp( pFunc->szName, szFunctionName ) ) + if( ( pFunc->funFlags & FUN_FILE_DECL ) == 0 && + ! strcmp( pFunc->szName, szFunctionName ) ) break; pFunc = pFunc->pNext; } @@ -2297,12 +2310,12 @@ void hb_compLinePush( HB_COMP_DECL ) /* generates the pcode with the currently c } } - if( HB_COMP_PARAM->functions.pLast->bFlags & FUN_BREAK_CODE ) + if( HB_COMP_PARAM->functions.pLast->funFlags & FUN_BREAK_CODE ) { /* previous line contained RETURN/BREAK/LOOP/EXIT statement */ hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_UNREACHABLE, NULL, NULL ); /* clear RETURN/BREAK flag */ - HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( /*FUN_WITH_RETURN |*/ FUN_BREAK_CODE ); + HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( /*FUN_WITH_RETURN |*/ FUN_BREAK_CODE ); } } @@ -2311,16 +2324,20 @@ void hb_compLinePush( HB_COMP_DECL ) /* generates the pcode with the currently c */ void hb_compStatmentStart( HB_COMP_DECL ) { - if( ( HB_COMP_PARAM->functions.pLast->bFlags & FUN_STATEMENTS ) == 0 ) + if( ( HB_COMP_PARAM->functions.pLast->funFlags & FUN_STATEMENTS ) == 0 ) { - if( ! HB_COMP_PARAM->fStartProc && HB_COMP_PARAM->functions.iCount <= 1 && - HB_COMP_PARAM->functions.pLast != HB_COMP_PARAM->pInitFunc && - HB_COMP_PARAM->functions.pLast->szName ) + PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast; + + if( ( pFunc->funFlags & FUN_FILE_DECL ) != 0 ) { - hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_OUTSIDE, NULL, NULL ); - return; + if( HB_COMP_PARAM->iStartProc == 2 && + HB_COMP_PARAM->functions.iCount == 1 && pFunc->szName[0] && + hb_compRegisterFunc( HB_COMP_PARAM, pFunc->szName, pFunc->cScope, FALSE ) ) + pFunc->funFlags &= ~FUN_FILE_DECL; + else + hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_OUTSIDE, NULL, NULL ); } - HB_COMP_PARAM->functions.pLast->bFlags |= FUN_STATEMENTS; + pFunc->funFlags |= FUN_STATEMENTS; } } @@ -2341,12 +2358,12 @@ void hb_compLinePushIfDebugger( HB_COMP_DECL ) hb_compLinePush( HB_COMP_PARAM ); else { - if( HB_COMP_PARAM->functions.pLast->bFlags & FUN_BREAK_CODE ) + if( HB_COMP_PARAM->functions.pLast->funFlags & FUN_BREAK_CODE ) { /* previous line contained RETURN/BREAK/LOOP/EXIT statement */ hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_UNREACHABLE, NULL, NULL ); } - HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( /*FUN_WITH_RETURN |*/ FUN_BREAK_CODE ); /* clear RETURN flag */ + HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( /*FUN_WITH_RETURN |*/ FUN_BREAK_CODE ); /* clear RETURN flag */ } } @@ -2374,7 +2391,7 @@ void hb_compGenStaticName( const char *szVarName, HB_COMP_DECL ) PFUNCTION pFunc; int iVar; - if( ! HB_COMP_PARAM->fStartProc && HB_COMP_PARAM->functions.iCount <= 1 ) + if( ( HB_COMP_PARAM->functions.pLast->funFlags & FUN_FILE_DECL ) != 0 ) { /* Variable declaration is outside of function/procedure body. File-wide static variable @@ -2565,7 +2582,7 @@ void hb_compGenPopVar( const char * szVarName, HB_COMP_DECL ) /* generates the p * use 2 bytes for LOCALNEAR */ if( HB_LIM_INT8( iVar ) && !HB_COMP_PARAM->functions.pLast->szName && - !( HB_COMP_PARAM->functions.pLast->bFlags & FUN_EXTBLOCK ) ) + !( HB_COMP_PARAM->functions.pLast->funFlags & FUN_EXTBLOCK ) ) hb_compGenPCode2( HB_P_POPLOCALNEAR, ( BYTE ) iVar, HB_COMP_PARAM ); else hb_compGenPCode3( HB_P_POPLOCAL, HB_LOBYTE( iVar ), HB_HIBYTE( iVar ), HB_COMP_PARAM ); @@ -2584,7 +2601,7 @@ void hb_compGenPopVar( const char * szVarName, HB_COMP_DECL ) /* generates the p pFunc = HB_COMP_PARAM->functions.pLast; if( ( HB_COMP_PARAM->functions.pLast->cScope & HB_FS_INITEXIT ) == HB_FS_INITEXIT ) pFunc = pFunc->pOwner; - pFunc->bFlags |= FUN_USES_STATICS; + pFunc->funFlags |= FUN_USES_STATICS; } break; @@ -2649,7 +2666,7 @@ void hb_compGenPushVar( const char * szVarName, BOOL bMacroVar, HB_COMP_DECL ) * use 2 bytes for LOCALNEAR */ if( HB_LIM_INT8( iVar ) && !HB_COMP_PARAM->functions.pLast->szName && - !( HB_COMP_PARAM->functions.pLast->bFlags & FUN_EXTBLOCK ) ) + !( HB_COMP_PARAM->functions.pLast->funFlags & FUN_EXTBLOCK ) ) hb_compGenPCode2( HB_P_PUSHLOCALNEAR, ( BYTE ) iVar, HB_COMP_PARAM ); else hb_compGenPCode3( HB_P_PUSHLOCAL, HB_LOBYTE( iVar ), HB_HIBYTE( iVar ), HB_COMP_PARAM ); @@ -2659,7 +2676,7 @@ void hb_compGenPushVar( const char * szVarName, BOOL bMacroVar, HB_COMP_DECL ) case HB_VS_GLOBAL_STATIC: /* Static variable */ hb_compGenPCode3( HB_P_PUSHSTATIC, HB_LOBYTE( iVar ), HB_HIBYTE( iVar ), HB_COMP_PARAM ); - HB_COMP_PARAM->functions.pLast->bFlags |= FUN_USES_STATICS; + HB_COMP_PARAM->functions.pLast->funFlags |= FUN_USES_STATICS; break; case HB_VS_LOCAL_FIELD: @@ -2713,7 +2730,7 @@ void hb_compGenPushVarRef( const char * szVarName, HB_COMP_DECL ) /* generates t case HB_VS_GLOBAL_STATIC: /* Static variable */ hb_compGenPCode3( HB_P_PUSHSTATICREF, HB_LOBYTE( iVar ), HB_HIBYTE( iVar ), HB_COMP_PARAM ); - HB_COMP_PARAM->functions.pLast->bFlags |= FUN_USES_STATICS; + HB_COMP_PARAM->functions.pLast->funFlags |= FUN_USES_STATICS; break; case HB_VS_LOCAL_FIELD: @@ -3239,14 +3256,14 @@ void hb_compSequenceFinish( HB_COMP_DECL, ULONG ulStartPos, ULONG ulEndPos, */ void hb_compStaticDefStart( HB_COMP_DECL ) { - HB_COMP_PARAM->functions.pLast->bFlags |= FUN_USES_STATICS; + HB_COMP_PARAM->functions.pLast->funFlags |= FUN_USES_STATICS; if( ! HB_COMP_PARAM->pInitFunc ) { BYTE pBuffer[ 5 ]; HB_COMP_PARAM->pInitFunc = hb_compFunctionNew( HB_COMP_PARAM, "(_INITSTATICS)", HB_FS_INITEXIT ); HB_COMP_PARAM->pInitFunc->pOwner = HB_COMP_PARAM->functions.pLast; - HB_COMP_PARAM->pInitFunc->bFlags = FUN_USES_STATICS | FUN_PROCEDURE; + HB_COMP_PARAM->pInitFunc->funFlags = FUN_USES_STATICS | FUN_PROCEDURE; HB_COMP_PARAM->pInitFunc->cScope = HB_FS_INITEXIT | HB_FS_LOCAL; HB_COMP_PARAM->functions.pLast = HB_COMP_PARAM->pInitFunc; @@ -3283,13 +3300,12 @@ void hb_compStaticDefEnd( HB_COMP_DECL, const char * szVarName ) { HB_COMP_PARAM->functions.pLast = HB_COMP_PARAM->pInitFunc->pOwner; HB_COMP_PARAM->pInitFunc->pOwner = NULL; - ++HB_COMP_PARAM->iStaticCnt; if( HB_COMP_PARAM->fDebugInfo ) { BYTE bGlobal = 0; int iVar; - if( ! HB_COMP_PARAM->fStartProc && HB_COMP_PARAM->functions.iCount <= 1 ) + if( ( HB_COMP_PARAM->functions.pLast->funFlags & FUN_FILE_DECL ) != 0 ) { /* Variable declaration is outside of function/procedure body. * File-wide static variable @@ -3381,7 +3397,7 @@ static void hb_compLineNumberDefStart( HB_COMP_DECL ) { HB_COMP_PARAM->pLineFunc = hb_compFunctionNew( HB_COMP_PARAM, "(_INITLINES)", HB_FS_INITEXIT ); HB_COMP_PARAM->pLineFunc->pOwner = HB_COMP_PARAM->functions.pLast; - HB_COMP_PARAM->pLineFunc->bFlags = 0; + HB_COMP_PARAM->pLineFunc->funFlags = 0; HB_COMP_PARAM->pLineFunc->cScope = HB_FS_INITEXIT | HB_FS_LOCAL; HB_COMP_PARAM->functions.pLast = HB_COMP_PARAM->pLineFunc; @@ -3439,8 +3455,8 @@ void hb_compCodeBlockEnd( HB_COMP_DECL ) pCodeblock = HB_COMP_PARAM->functions.pLast; /* Check if the extended codeblock has return statement */ - if( ( pCodeblock->bFlags & FUN_EXTBLOCK ) && - !( pCodeblock->bFlags & FUN_WITH_RETURN ) ) + if( ( pCodeblock->funFlags & FUN_EXTBLOCK ) && + !( pCodeblock->funFlags & FUN_WITH_RETURN ) ) { if( HB_COMP_PARAM->iWarnings >= 1 ) hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_FUN_WITH_NO_RETURN, @@ -3453,7 +3469,7 @@ void hb_compCodeBlockEnd( HB_COMP_DECL ) if( !pCodeblock->bError ) { - if( pCodeblock->wParamCount && !( pCodeblock->bFlags & FUN_USES_LOCAL_PARAMS ) ) + if( pCodeblock->wParamCount && !( pCodeblock->funFlags & FUN_USES_LOCAL_PARAMS ) ) /* PARAMETERs were used after LOCALs in extended codeblock * fix generated local indexes */ @@ -3475,7 +3491,9 @@ void hb_compCodeBlockEnd( HB_COMP_DECL ) if( pFunc->szName && *pFunc->szName ) pFuncName = pFunc->szName; } - pFunc->bFlags |= ( pCodeblock->bFlags & FUN_USES_STATICS ); + if( *pFuncName == 0 ) + pFuncName = "(_INITSTATICS)"; + pFunc->funFlags |= ( pCodeblock->funFlags & FUN_USES_STATICS ); /* generate a proper codeblock frame with a codeblock size and with * a number of expected parameters @@ -3558,19 +3576,40 @@ void hb_compCodeBlockEnd( HB_COMP_DECL ) pVar = pCodeblock->pLocals; while( pVar ) { - if( HB_COMP_PARAM->iWarnings && pFunc->szName && pVar->szName && ! ( pVar->iUsed & VU_USED ) ) - hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_BLOCKVAR_NOT_USED, pVar->szName, pFunc->szName ); + if( HB_COMP_PARAM->iWarnings && pVar->szName && ! ( pVar->iUsed & VU_USED ) ) + hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_BLOCKVAR_NOT_USED, pVar->szName, pFuncName ); pVar = pVar->pNext; } pVar = pCodeblock->pStatics; while( pVar ) { - if( HB_COMP_PARAM->iWarnings && pFunc->szName && pVar->szName && ! ( pVar->iUsed & VU_USED ) ) - hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_VAR_NOT_USED, pVar->szName, "{||...}" ); + if( HB_COMP_PARAM->iWarnings && pVar->szName && ! ( pVar->iUsed & VU_USED ) ) + hb_compWarnUnusedVar( HB_COMP_PARAM, "{||...}", pVar->szName, pVar->iDeclLine ); pVar = pVar->pNext; } } + /* move static variables to owner */ + pVar = pFunc->pStatics; + if( pVar ) + { + while( pVar->pNext ) + pVar = pVar->pNext; + pVar->pNext = pCodeblock->pStatics; + } + else + pFunc->pStatics = pCodeblock->pStatics; + pVar = pCodeblock->pStatics; + pCodeblock->pStatics = NULL; + /* change stati variables names to avoid conflicts */ + while( pVar ) + { + char szName[ HB_SYMBOL_NAME_LEN + 4 ]; + hb_snprintf( szName, sizeof( szName ), "%s(b)", pVar->szName ); + pVar->szName = hb_compIdentifierNew( HB_COMP_PARAM, szName, HB_IDENT_COPY ); + pVar = pVar->pNext; + } + hb_compFunctionKill( HB_COMP_PARAM, pCodeblock ); } @@ -3651,7 +3690,6 @@ static void hb_compInitVars( HB_COMP_DECL ) HB_COMP_PARAM->pLineFunc = NULL; HB_COMP_PARAM->fAnyWarning = FALSE; - HB_COMP_PARAM->iFunctionCnt = 0; HB_COMP_PARAM->iErrorCount = 0; HB_COMP_PARAM->lastLinePos = 0; HB_COMP_PARAM->iStaticCnt = 0; @@ -3927,7 +3965,7 @@ static int hb_compCompile( HB_COMP_DECL, const char * szPrg, int iFileType ) if( iFileType == HB_COMP_MEMBUFFER ) { - hb_compFunctionAdd( HB_COMP_PARAM, "", 0, FUN_PROCEDURE ); + hb_compFunctionAdd( HB_COMP_PARAM, "", 0, FUN_PROCEDURE | FUN_FILE_DECL ); hb_compparse( HB_COMP_PARAM ); } else if( iFileType == HB_COMP_SINGLEFILE ) @@ -3944,18 +3982,9 @@ static int hb_compCompile( HB_COMP_DECL, const char * szPrg, int iFileType ) } /* Generate the starting procedure frame */ - if( HB_COMP_PARAM->fStartProc ) - { - hb_compFunctionAdd( HB_COMP_PARAM, hb_compIdentifierNew( HB_COMP_PARAM, hb_strupr( hb_strdup( HB_COMP_PARAM->pFileName->szName ) ), HB_IDENT_FREE ), HB_FS_PUBLIC, FUN_PROCEDURE ); - } - else - { - /* Don't pass the name of module if the code for starting procedure - * will be not generated. The name cannot be placed as first symbol - * because this symbol can be used as function call or memvar's name. - */ - hb_compFunctionAdd( HB_COMP_PARAM, "", 0, FUN_PROCEDURE ); - } + hb_compFunctionAdd( HB_COMP_PARAM, + hb_compIdentifierNew( HB_COMP_PARAM, hb_strupr( hb_strdup( HB_COMP_PARAM->pFileName->szName ) ), HB_IDENT_FREE ), + HB_FS_PUBLIC, FUN_PROCEDURE | ( HB_COMP_PARAM->iStartProc == 0 ? 0 : FUN_FILE_DECL ) ); if( !HB_COMP_PARAM->fExit ) { @@ -4072,6 +4101,7 @@ static int hb_compCompile( HB_COMP_DECL, const char * szPrg, int iFileType ) HB_COMP_PARAM->iErrorCount == 0 ) { const char * szFirstFunction = NULL; + int iFunctionCount = 0; PFUNCTION *pFunPtr; /* we create the output file name */ @@ -4079,21 +4109,20 @@ static int hb_compCompile( HB_COMP_DECL, const char * szPrg, int iFileType ) pFunPtr = &HB_COMP_PARAM->functions.pFirst; /* skip first non-startup procedure */ - if( ! HB_COMP_PARAM->fStartProc ) + if( (*pFunPtr)->funFlags & FUN_FILE_DECL ) { hb_compOptimizeFrames( HB_COMP_PARAM, *pFunPtr ); pFunPtr = &(*pFunPtr)->pNext; - HB_COMP_PARAM->iFunctionCnt--; } while( *pFunPtr && !HB_COMP_PARAM->fExit ) { - /* remove function frames with no names */ - if( ! HB_COMP_PARAM->fStartProc && ! (*pFunPtr)->szName[0] ) + /* remove pseudo function frames used in automatically included + files */ + if( (*pFunPtr)->funFlags & FUN_FILE_DECL ) { *pFunPtr = hb_compFunctionKill( HB_COMP_PARAM, *pFunPtr ); HB_COMP_PARAM->functions.iCount--; - HB_COMP_PARAM->iFunctionCnt--; } else { @@ -4104,6 +4133,9 @@ static int hb_compCompile( HB_COMP_DECL, const char * szPrg, int iFileType ) { szFirstFunction = ( *pFunPtr )->szName; } + if( *pFunPtr != HB_COMP_PARAM->pInitFunc && + *pFunPtr != HB_COMP_PARAM->pLineFunc ) + ++iFunctionCount; pFunPtr = &(*pFunPtr)->pNext; } } @@ -4119,9 +4151,9 @@ static int hb_compCompile( HB_COMP_DECL, const char * szPrg, int iFileType ) if( ! HB_COMP_PARAM->fQuiet ) { hb_snprintf( buffer, sizeof( buffer ), - "\rLines %i, Functions/Procedures %i\n", - hb_pp_lineTot( HB_COMP_PARAM->pLex->pPP ), - HB_COMP_PARAM->iFunctionCnt ); + "\rLines %i, Functions/Procedures %i\n", + hb_pp_lineTot( HB_COMP_PARAM->pLex->pPP ), + iFunctionCount ); hb_compOutStd( HB_COMP_PARAM, buffer ); } @@ -4250,10 +4282,10 @@ static int hb_compAutoOpen( HB_COMP_DECL, const char * szPrg, BOOL * pbSkipGen, } /* Generate the starting procedure frame */ - if( HB_COMP_PARAM->fStartProc ) + if( HB_COMP_PARAM->iStartProc == 0 ) hb_compFunctionAdd( HB_COMP_PARAM, hb_compIdentifierNew( HB_COMP_PARAM, hb_strupr( hb_strdup( HB_COMP_PARAM->pFileName->szName ) ), HB_IDENT_FREE ), HB_FS_PUBLIC, FUN_PROCEDURE ); else if( iFileType != HB_COMP_SINGLEFILE ) - hb_compFunctionAdd( HB_COMP_PARAM, "", 0, FUN_PROCEDURE ); + hb_compFunctionAdd( HB_COMP_PARAM, "", 0, FUN_PROCEDURE | FUN_FILE_DECL ); if( !HB_COMP_PARAM->fExit ) { diff --git a/harbour/source/compiler/hbusage.c b/harbour/source/compiler/hbusage.c index 3f479ae6df..0fd0fcfdcf 100644 --- a/harbour/source/compiler/hbusage.c +++ b/harbour/source/compiler/hbusage.c @@ -86,6 +86,7 @@ void hb_compPrintUsage( HB_COMP_DECL, const char * szSelf ) "\n %cn[] no implicit starting procedure", "\n : 0=no implicit starting procedure", "\n 1=no starting procedure at all", + "\n 2=add starting procedure if necessary", "\n %co object file drive and/or path", "\n %cp[] generate pre-processed output (.ppo) file", "\n %cp+ generate pre-processor trace (.ppt) file", diff --git a/harbour/source/compiler/ppcomp.c b/harbour/source/compiler/ppcomp.c index 1c6468c8ea..d34d654181 100644 --- a/harbour/source/compiler/ppcomp.c +++ b/harbour/source/compiler/ppcomp.c @@ -151,7 +151,10 @@ static BOOL hb_pp_CompilerSwitch( void * cargo, const char * szSwitch, case 'n': case 'N': - HB_COMP_PARAM->fStartProc = iValue != 0; + if( iValue >= 0 && iValue <= 2 ) + HB_COMP_PARAM->iStartProc = iValue; + else + fError = TRUE; break; case 'p':