diff --git a/Parser/Gmsh.l b/Parser/Gmsh.l index 09b5fec2969b45df4c814fc88e88ffacd9b88ca7..a66b16c5fdbeaea27acb02d318f73c53ae4de1d9 100644 --- a/Parser/Gmsh.l +++ b/Parser/Gmsh.l @@ -1,6 +1,6 @@ %{ -// $Id: Gmsh.l,v 1.46 2003-04-10 13:12:36 remacle Exp $ +// $Id: Gmsh.l,v 1.47 2003-04-14 17:13:14 geuzaine Exp $ // // Copyright (C) 1997-2003 C. Geuzaine, J.-F. Remacle // @@ -81,7 +81,7 @@ stepid {dieze}({digit})* %% -[\ \t\n\r\f] /* none */ ; +[\ \t\n\r\f] /* none */; ";" return tEND; "/*" skipcomments(); "//" skipline(); @@ -93,31 +93,31 @@ stepid {dieze}({digit})* "news" {yylval.d = NEWSURFACE(); return tDOUBLE;} "newv" {yylval.d = NEWVOLUME(); return tDOUBLE;} "=" return tAFFECT; -"+=" return tAFFECTPLUS ; -"-=" return tAFFECTMINUS ; -"*=" return tAFFECTTIMES ; -"/=" return tAFFECTDIVIDE ; +"+=" return tAFFECTPLUS; +"-=" return tAFFECTMINUS; +"*=" return tAFFECTTIMES; +"/=" return tAFFECTDIVIDE; ":" return tDOTS; "..." return tDOTS; -"/\\" return tCROSSPRODUCT ; -"||" return tOR ; -"&&" return tAND ; -"++" return tPLUSPLUS ; -"--" return tMINUSMINUS ; -"==" return tEQUAL ; -"!=" return tNOTEQUAL ; -"~=" return tAPPROXEQUAL ; -"<=" return tLESSOREQUAL ; -">=" return tGREATEROREQUAL ; - -Acos return tAcos ; -ArcCos return tAcos ; +"/\\" return tCROSSPRODUCT; +"||" return tOR; +"&&" return tAND; +"++" return tPLUSPLUS; +"--" return tMINUSMINUS; +"==" return tEQUAL; +"!=" return tNOTEQUAL; +"~=" return tAPPROXEQUAL; +"<=" return tLESSOREQUAL; +">=" return tGREATEROREQUAL; + +Acos return tAcos; +ArcCos return tAcos; Asin return tAsin; ArcSin return tAsin; -Atan return tAtan ; -ArcTan return tAtan ; -Atan2 return tAtan2 ; -ArcTan2 return tAtan2 ; +Atan return tAtan; +ArcTan return tAtan; +Atan2 return tAtan2; +ArcTan2 return tAtan2; Attractor return tAttractor; Bezier return tBezier; @@ -125,9 +125,9 @@ Bump return tBump; BSpline return tBSpline; Bounds return tBounds; -Ceil return tCeil ; -Cosh return tCosh ; -Cos return tCos ; +Ceil return tCeil; +Cosh return tCosh; +Cos return tCos; Characteristic return tCharacteristic; Circle return tCircle; Coherence return tCoherence; @@ -142,23 +142,22 @@ Dilate return tDilate; Duplicata return tDuplicata; Draw return tDraw; -Exp return tExp ; +Exp return tExp; Ellipsis return tEllipse; Ellipse return tEllipse; Extrude return tExtrude; Elliptic return tElliptic; -ELLIPSE return tELLIPSE; EndFor return tEndFor; EndIf return tEndIf; Exit return tExit; -Fabs return tFabs ; -Floor return tFloor ; -Fmod return tFmod ; +Fabs return tFabs; +Floor return tFloor; +Fmod return tFmod; For return tFor; Function return tFunction; -Hypot return tHypot ; +Hypot return tHypot; In return tIn; If return tIf; @@ -169,11 +168,11 @@ Knots return tKnots; Length return tLength; Line return tLine; Loop return tLoop; -Log return tLog ; -Log10 return tLog10 ; +Log return tLog; +Log10 return tLog10; Layers return tLayers; -Modulo return tModulo ; +Modulo return tModulo; Meshes return tMesh; MPI_Rank return tMPI_Rank; MPI_Size return tMPI_Size; @@ -198,20 +197,20 @@ Ruled return tRuled; Rand return tRand; Return return tReturn; -Sqrt return tSqrt ; -Sin return tSin ; -Sinh return tSinh ; +Sqrt return tSqrt; +Sin return tSin; +Sinh return tSinh; Spline return tSpline; Surface return tSurface; Symmetry return tSymmetry; -Sprintf return tSprintf ; -StrCat return tStrCat ; -StrPrefix return tStrPrefix ; +Sprintf return tSprintf; +StrCat return tStrCat; +StrPrefix return tStrPrefix; Triangulation return tTriangulation; Transfinite return tTransfinite; Translate return tTranslate; -Tanh return tTanh ; +Tanh return tTanh; Tan return tTan; Trimmed return tTrimmed; @@ -261,6 +260,7 @@ B_SPLINE_CURVE_WITH_KNOTS return tB_SPLINE_CURVE_WITH_KNOTS; ORIENTED_EDGE return tORIENTED_EDGE; EDGE_CURVE return tEDGE_CURVE; EDGE_LOOP return tEDGE_LOOP; +ELLIPSE return tELLIPSE; VERTEX_POINT return tVERTEX_POINT; FACE_OUTER_BOUND return tFACE_OUTER_BOUND; FACE_BOUND return tFACE_BOUND; @@ -326,7 +326,7 @@ void skipcomments(void) { while (1) { while ((c=yyinput()) != '*'){ if(c == EOF){ - Msg(GERROR, "End of file in commented region") ; + Msg(GERROR, "End of file in commented region"); return; } } @@ -354,7 +354,7 @@ char *strsave(char *ptr){ } void skipline(void){ - while (yyinput() != '\n') ; + while (yyinput() != '\n'); } void skip_until(char *skip, char *until){ @@ -362,12 +362,12 @@ void skip_until(char *skip, char *until){ int l, l_skip, l_until; char chars[256]; - nb_skip = 0 ; + nb_skip = 0; if(skip) l_skip = strlen(skip); else - l_skip = 0 ; + l_skip = 0; l_until = strlen(until); @@ -375,15 +375,15 @@ void skip_until(char *skip, char *until){ while (1){ chars[0] = yyinput(); if(chars[0] == (char)EOF){ - Msg(GERROR, "Unexpected end of file") ; + Msg(GERROR, "Unexpected end of file"); return; } if(chars[0] == until[0]) break; if(skip && chars[0] == skip[0]) break; } - l = MAX(l_skip,l_until) ; - for(i=1 ; i<l ; i++){ + l = MAX(l_skip,l_until); + for(i=1; i<l; i++){ chars[i] = yyinput(); if(chars[i] == (char)EOF){ l = i; diff --git a/Parser/Gmsh.tab.cpp b/Parser/Gmsh.tab.cpp index 30744a2786da1cd3ade4a81327fd402248bfca68..e6f9c89d76a9d2bf2bdddd699ec14a83cbf3463d 100644 --- a/Parser/Gmsh.tab.cpp +++ b/Parser/Gmsh.tab.cpp @@ -117,50 +117,50 @@ # define tCall 368 # define tFunction 369 # define tMesh 370 -# define tB_SPLINE_SURFACE_WITH_KNOTS 371 -# define tB_SPLINE_CURVE_WITH_KNOTS 372 -# define tCARTESIAN_POINT 373 -# define tTRUE 374 -# define tFALSE 375 -# define tUNSPECIFIED 376 -# define tU 377 -# define tV 378 -# define tEDGE_CURVE 379 -# define tVERTEX_POINT 380 -# define tORIENTED_EDGE 381 -# define tPLANE 382 -# define tFACE_OUTER_BOUND 383 -# define tEDGE_LOOP 384 -# define tADVANCED_FACE 385 -# define tVECTOR 386 -# define tDIRECTION 387 -# define tAXIS2_PLACEMENT_3D 388 -# define tISO 389 -# define tENDISO 390 -# define tENDSEC 391 -# define tDATA 392 -# define tHEADER 393 -# define tFILE_DESCRIPTION 394 -# define tFILE_SCHEMA 395 -# define tFILE_NAME 396 -# define tMANIFOLD_SOLID_BREP 397 -# define tCLOSED_SHELL 398 -# define tADVANCED_BREP_SHAPE_REPRESENTATION 399 -# define tFACE_BOUND 400 -# define tCYLINDRICAL_SURFACE 401 -# define tCONICAL_SURFACE 402 -# define tCIRCLE 403 -# define tTRIMMED_CURVE 404 -# define tGEOMETRIC_SET 405 -# define tCOMPOSITE_CURVE_SEGMENT 406 -# define tCONTINUOUS 407 -# define tCOMPOSITE_CURVE 408 -# define tTOROIDAL_SURFACE 409 -# define tPRODUCT_DEFINITION 410 -# define tPRODUCT_DEFINITION_SHAPE 411 -# define tSHAPE_DEFINITION_REPRESENTATION 412 -# define tELLIPSE 413 -# define tTrimmed 414 +# define tTrimmed 371 +# define tB_SPLINE_SURFACE_WITH_KNOTS 372 +# define tB_SPLINE_CURVE_WITH_KNOTS 373 +# define tCARTESIAN_POINT 374 +# define tTRUE 375 +# define tFALSE 376 +# define tUNSPECIFIED 377 +# define tU 378 +# define tV 379 +# define tEDGE_CURVE 380 +# define tVERTEX_POINT 381 +# define tORIENTED_EDGE 382 +# define tPLANE 383 +# define tFACE_OUTER_BOUND 384 +# define tEDGE_LOOP 385 +# define tADVANCED_FACE 386 +# define tVECTOR 387 +# define tDIRECTION 388 +# define tAXIS2_PLACEMENT_3D 389 +# define tISO 390 +# define tENDISO 391 +# define tENDSEC 392 +# define tDATA 393 +# define tHEADER 394 +# define tFILE_DESCRIPTION 395 +# define tFILE_SCHEMA 396 +# define tFILE_NAME 397 +# define tMANIFOLD_SOLID_BREP 398 +# define tCLOSED_SHELL 399 +# define tADVANCED_BREP_SHAPE_REPRESENTATION 400 +# define tFACE_BOUND 401 +# define tCYLINDRICAL_SURFACE 402 +# define tCONICAL_SURFACE 403 +# define tCIRCLE 404 +# define tTRIMMED_CURVE 405 +# define tGEOMETRIC_SET 406 +# define tCOMPOSITE_CURVE_SEGMENT 407 +# define tCONTINUOUS 408 +# define tCOMPOSITE_CURVE 409 +# define tTOROIDAL_SURFACE 410 +# define tPRODUCT_DEFINITION 411 +# define tPRODUCT_DEFINITION_SHAPE 412 +# define tSHAPE_DEFINITION_REPRESENTATION 413 +# define tELLIPSE 414 # define tSolid 415 # define tEndSolid 416 # define tVertex 417 @@ -189,7 +189,7 @@ #line 1 "Gmsh.y" -// $Id: Gmsh.tab.cpp,v 1.155 2003-04-10 13:12:36 remacle Exp $ +// $Id: Gmsh.tab.cpp,v 1.156 2003-04-14 17:13:14 geuzaine Exp $ // // Copyright (C) 1997-2003 C. Geuzaine, J.-F. Remacle // @@ -403,50 +403,50 @@ static const short yyrhs[] = 204, 166, 167, 163, 204, 204, 204, 163, 204, 204, 204, 163, 204, 204, 204, 168, 169, 0, 162, 0, 0, 206, 207, 0, 208, 0, 210, 0, 209, 0, - 135, 6, 0, 136, 6, 0, 138, 6, 0, 137, - 6, 0, 139, 6, 0, 140, 195, 325, 200, 5, - 196, 6, 0, 141, 195, 325, 196, 6, 0, 142, + 136, 6, 0, 137, 6, 0, 139, 6, 0, 138, + 6, 0, 140, 6, 0, 141, 195, 325, 200, 5, + 196, 6, 0, 142, 195, 325, 196, 6, 0, 143, 195, 5, 200, 5, 200, 325, 200, 325, 200, 5, - 200, 5, 200, 5, 196, 6, 0, 3, 7, 119, - 195, 5, 200, 323, 196, 6, 0, 3, 7, 118, + 200, 5, 200, 5, 196, 6, 0, 3, 7, 120, + 195, 5, 200, 323, 196, 6, 0, 3, 7, 119, 195, 5, 200, 321, 200, 329, 200, 320, 200, 320, 200, 320, 200, 329, 200, 329, 200, 320, 196, 6, - 0, 3, 7, 117, 195, 5, 200, 321, 200, 321, + 0, 3, 7, 118, 195, 5, 200, 321, 200, 321, 200, 327, 200, 320, 200, 320, 200, 320, 200, 320, 200, 329, 200, 329, 200, 329, 200, 329, 200, 320, - 196, 6, 0, 3, 7, 125, 195, 5, 200, 3, + 196, 6, 0, 3, 7, 126, 195, 5, 200, 3, 200, 3, 200, 3, 200, 320, 196, 6, 0, 3, - 7, 129, 195, 5, 200, 3, 200, 320, 196, 6, - 0, 3, 7, 146, 195, 5, 200, 3, 200, 320, - 196, 6, 0, 3, 7, 127, 195, 5, 200, 186, + 7, 130, 195, 5, 200, 3, 200, 320, 196, 6, + 0, 3, 7, 147, 195, 5, 200, 3, 200, 320, + 196, 6, 0, 3, 7, 128, 195, 5, 200, 186, 200, 186, 200, 321, 200, 320, 196, 6, 0, 3, - 7, 130, 195, 5, 200, 329, 196, 6, 0, 3, - 7, 131, 195, 5, 200, 329, 200, 3, 200, 320, - 196, 6, 0, 3, 7, 126, 195, 5, 200, 3, - 196, 6, 0, 3, 7, 132, 195, 5, 200, 3, - 200, 321, 196, 6, 0, 3, 7, 134, 195, 5, + 7, 131, 195, 5, 200, 329, 196, 6, 0, 3, + 7, 132, 195, 5, 200, 329, 200, 3, 200, 320, + 196, 6, 0, 3, 7, 127, 195, 5, 200, 3, + 196, 6, 0, 3, 7, 133, 195, 5, 200, 3, + 200, 321, 196, 6, 0, 3, 7, 135, 195, 5, 200, 3, 200, 3, 200, 3, 196, 6, 0, 3, - 7, 133, 195, 5, 200, 323, 196, 6, 0, 3, - 7, 128, 195, 5, 200, 3, 196, 6, 0, 3, + 7, 134, 195, 5, 200, 323, 196, 6, 0, 3, + 7, 129, 195, 5, 200, 3, 196, 6, 0, 3, 7, 41, 195, 5, 200, 3, 200, 3, 196, 6, - 0, 3, 7, 144, 195, 5, 200, 329, 196, 6, - 0, 3, 7, 145, 195, 5, 200, 329, 200, 3, - 196, 6, 0, 3, 7, 143, 195, 5, 200, 3, - 196, 6, 0, 3, 7, 147, 195, 5, 200, 3, - 200, 321, 196, 6, 0, 3, 7, 148, 195, 5, + 0, 3, 7, 145, 195, 5, 200, 329, 196, 6, + 0, 3, 7, 146, 195, 5, 200, 329, 200, 3, + 196, 6, 0, 3, 7, 144, 195, 5, 200, 3, + 196, 6, 0, 3, 7, 148, 195, 5, 200, 3, + 200, 321, 196, 6, 0, 3, 7, 149, 195, 5, 200, 3, 200, 321, 200, 321, 196, 6, 0, 3, - 7, 155, 195, 5, 200, 3, 200, 321, 200, 321, - 196, 6, 0, 3, 7, 149, 195, 5, 200, 3, - 200, 321, 196, 6, 0, 3, 7, 159, 195, 5, + 7, 156, 195, 5, 200, 3, 200, 321, 200, 321, + 196, 6, 0, 3, 7, 150, 195, 5, 200, 3, + 200, 321, 196, 6, 0, 3, 7, 160, 195, 5, 200, 3, 200, 321, 200, 321, 196, 6, 0, 3, - 7, 150, 195, 5, 200, 3, 200, 329, 200, 329, - 200, 320, 200, 320, 196, 6, 0, 3, 7, 151, - 195, 5, 200, 329, 196, 6, 0, 3, 7, 152, - 195, 153, 200, 320, 200, 3, 196, 6, 0, 3, - 7, 154, 195, 5, 200, 329, 200, 320, 196, 6, - 0, 3, 7, 156, 195, 5, 200, 5, 200, 3, - 200, 3, 196, 6, 0, 3, 7, 157, 195, 5, - 200, 5, 200, 3, 196, 6, 0, 3, 7, 158, + 7, 151, 195, 5, 200, 3, 200, 329, 200, 329, + 200, 320, 200, 320, 196, 6, 0, 3, 7, 152, + 195, 5, 200, 329, 196, 6, 0, 3, 7, 153, + 195, 154, 200, 320, 200, 3, 196, 6, 0, 3, + 7, 155, 195, 5, 200, 329, 200, 320, 196, 6, + 0, 3, 7, 157, 195, 5, 200, 5, 200, 3, + 200, 3, 196, 6, 0, 3, 7, 158, 195, 5, + 200, 5, 200, 3, 196, 6, 0, 3, 7, 159, 195, 3, 200, 3, 196, 6, 0, 0, 211, 212, 0, 214, 0, 213, 0, 296, 0, 297, 0, 298, 0, 301, 0, 302, 0, 303, 0, 306, 0, 318, @@ -594,7 +594,7 @@ static const short yyrhs[] = 6, 0, 99, 195, 321, 196, 7, 329, 6, 0, 100, 195, 321, 196, 7, 329, 104, 329, 101, 321, 6, 0, 49, 42, 195, 321, 196, 7, 329, 6, - 0, 160, 42, 195, 321, 196, 7, 201, 321, 200, + 0, 117, 42, 195, 321, 196, 7, 201, 321, 200, 329, 202, 6, 0, 50, 42, 195, 321, 196, 7, 329, 6, 0, 51, 42, 195, 321, 196, 7, 195, 321, 200, 321, 196, 329, 329, 6, 0, 100, 42, @@ -660,8 +660,8 @@ static const short yyrhs[] = 48, 42, 201, 321, 202, 7, 329, 6, 0, 52, 44, 201, 321, 202, 7, 329, 6, 0, 66, 42, 329, 7, 321, 6, 0, 66, 42, 329, 6, 0, - 68, 6, 0, 69, 6, 0, 120, 0, 121, 0, - 122, 0, 123, 0, 124, 0, 322, 0, 195, 321, + 68, 6, 0, 69, 6, 0, 121, 0, 122, 0, + 123, 0, 124, 0, 125, 0, 322, 0, 195, 321, 196, 0, 185, 321, 0, 184, 321, 0, 190, 321, 0, 321, 185, 321, 0, 321, 184, 321, 0, 321, 186, 321, 0, 321, 187, 321, 0, 321, 188, 321, @@ -804,7 +804,7 @@ static const char *const yytname[] = "tVectorPyramid", "tTensorPyramid", "tText2D", "tText3D", "tBSpline", "tBezier", "tNurbs", "tOrder", "tWith", "tBounds", "tKnots", "tColor", "tColorTable", "tFor", "tIn", "tEndFor", "tIf", "tEndIf", "tExit", - "tReturn", "tCall", "tFunction", "tMesh", + "tReturn", "tCall", "tFunction", "tMesh", "tTrimmed", "tB_SPLINE_SURFACE_WITH_KNOTS", "tB_SPLINE_CURVE_WITH_KNOTS", "tCARTESIAN_POINT", "tTRUE", "tFALSE", "tUNSPECIFIED", "tU", "tV", "tEDGE_CURVE", "tVERTEX_POINT", "tORIENTED_EDGE", "tPLANE", @@ -817,8 +817,8 @@ static const char *const yytname[] = "tGEOMETRIC_SET", "tCOMPOSITE_CURVE_SEGMENT", "tCONTINUOUS", "tCOMPOSITE_CURVE", "tTOROIDAL_SURFACE", "tPRODUCT_DEFINITION", "tPRODUCT_DEFINITION_SHAPE", "tSHAPE_DEFINITION_REPRESENTATION", - "tELLIPSE", "tTrimmed", "tSolid", "tEndSolid", "tVertex", "tFacet", - "tNormal", "tOuter", "tLoopSTL", "tEndLoop", "tEndFacet", "tAFFECTPLUS", + "tELLIPSE", "tSolid", "tEndSolid", "tVertex", "tFacet", "tNormal", + "tOuter", "tLoopSTL", "tEndLoop", "tEndFacet", "tAFFECTPLUS", "tAFFECTMINUS", "tAFFECTTIMES", "tAFFECTDIVIDE", "'?'", "tOR", "tAND", "tEQUAL", "tNOTEQUAL", "tAPPROXEQUAL", "'<'", "tLESSOREQUAL", "'>'", "tGREATEROREQUAL", "'+'", "'-'", "'*'", "'/'", "'%'", "tCROSSPRODUCT", @@ -1217,69 +1217,69 @@ static const short yydefgoto[] = static const short yypact[] = { - 2800, 41,-32768,-32768, -115,-32768, 13, 3074,-32768, 14, - 56, 81, 98, 109, 117, 122, -37, -13, -8,-32768, - -32768,-32768,-32768, 2336, 10, 188, 19, 76, 104, -50, - 135, 112, 177, 337, 195, 356, 383, 396, 402, 392, - 364, 285, 253, 252, -92, -92, 257, 316, 3, 412, - 2, 466, 479, 350, 319, 323, -28, 5, 7,-32768, - 330,-32768, 554,-32768, 524, 528, 525,-32768,-32768,-32768, + 2799, 84,-32768,-32768, -37,-32768, 12, 3110,-32768, 14, + 118, 125, 134, 152, 176, 194, 10, 19, 76,-32768, + -32768,-32768,-32768, 2336, 102, 302, 119, 137, 146, -15, + 261, 177, 188, 283, 196, 356, 396, 402, 407, 439, + 370, 100, 230, 271, -93, -93, 317, 21, 3, 473, + 2, 518, 558, 74, 330, 333, -28, 5, 7,-32768, + 337,-32768, 561,-32768, 564, 571, 542,-32768,-32768,-32768, -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, - -32768,-32768, 561, 14, 3180,-32768,-32768,-32768,-32768,-32768, - 373, 373, 570,-32768, 149, 8,-32768,-32768,-32768,-32768, - -55, 217, 283, 284, 334, 338, 348, 349, 353, 354, - 357, 358, 361, 362, 366, 376, 377, 381, 384, 385, - 388, 389, 394, 428,-32768,-32768,-32768,-32768, 2440, 2440, - 2440,-32768,-32768, 2440, 583, 31, 2440, 623, 740,-32768, - 646, 655,-32768, 2440, 2440, 2440, 471, 2440, 480, 2440, - 2440, 1488, 2440, 481, 484, 496, 513, 1488, 533, 538, - 547, 550, 552, 553, 555, 745, -92, -92, -92, 2440, - 2440, -116,-32768, -104, -92, 551, 556, 557, 562,-32768, - 1488, 563, 747,-32768,-32768,-32768, 1488, 1488, 2440, 2440, - -56, 2440, 564, 2440, 560, 643, 2440, 2440,-32768, 748, - -32768, 567,-32768, 14, 569, 571, 574, 575, 577, 579, + -32768,-32768, 586, 14, 2977,-32768,-32768,-32768,-32768,-32768, + 428, 428, 624,-32768, 110, 8,-32768,-32768,-32768,-32768, + -52, 151, 325, 334, 338, 343, 344, 347, 348, 351, + 354, 355, 358, 359, 362, 363, 366, 376, 377, 381, + 384, 444, 458, 480,-32768,-32768,-32768,-32768, 2440, 2440, + 2440,-32768,-32768, 2440, 583, 27, 2440, 646, 740,-32768, + 673, 677,-32768, 2440, 2440, 2440, 496, 2440, 513, 2440, + 2440, 1488, 2440, 529, 536, 537, 538, 1488, 533, 541, + 544, 550, 552, 553, 554, 746, -93, -93, -93, 2440, + 2440, -116,-32768, -84, -93, 551, 556, 557, 562,-32768, + 1488, 563, 745,-32768,-32768,-32768, 1488, 1488, 2440, 2440, + -60, 2440, 555, 2440, 560, 645, 2440, 2440,-32768, 756, + -32768, 568,-32768, 14, 569, 570, 574, 575, 577, 579, 580, 582, 584, 585, 587, 588, 590, 591, 593, 594, - 626, 636, 637, 638, 640, 644, 645, 652, 663, 665, - 669, 670, 671, 672, 760, 673, 641, 674, 2440, 859, - -32768, -92,-32768, 2440, 2440, 2440, 2440, 2440, 2440, 2440, + 626, 636, 637, 638, 640, 644, 652, 663, 665, 669, + 670, 671, 672, 674, 761, 675, 641, 679, 2440, 836, + -32768, -93,-32768, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, - 2440, 2440, 2440, 2440, 2440, 55, 39, 39, 675, 675, - 675, 809, 861, 2533, 2555, 25, 676, 863, 781,-32768, + 2440, 2440, 2440, 2440, 2440, 42, 39, 39, 676, 676, + 676, 809, 856, 2533, 2790, 25, 681, 861, 781,-32768, -32768, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, - 2440, 2440, 2440, 2440, 2440, 2440,-32768, -124, 10706, 10729, - 10752, 2440, 10775, 2440, 10798, 10821, 258, 1555, 2533, 668, - 864,-32768, 10844, 2440, 2440, 2440, 2440, 865, 2440, 2440, - 2440, 2440, 2440, 2440, 2440, 683, 124,-32768,-32768, 3504, - 3525, -92, -92, 460, 460, 153, 2440, 2440, 2440, 2440, - 2716, 270, 2440,-32768, 2927, 873, 874, 10867, 10890, 779, - 2440, 10913, 778, 3546,-32768, 684, 969, 10936,-32768, 2440, - 718, 881, 882, 883, 884, 885, 886, 887, 889, 890, + 2440, 2440, 2440, 2440, 2440, 2440,-32768, -19, 10704, 10727, + 10750, 2440, 10773, 2440, 10796, 10819, 256, 1555, 2533, 668, + 864,-32768, 10842, 2440, 2440, 2440, 2440, 865, 2440, 2440, + 2440, 2440, 2440, 2440, 2440, 678, -91,-32768,-32768, 3502, + 3523, -93, -93, 372, 372, -81, 2440, 2440, 2440, 2440, + 2662, 270, 2440,-32768, 2698, 866, 874, 10865, 10888, 779, + 2440, 10911, 778, 3544,-32768, 683, 969, 10934,-32768, 2440, + 719, 881, 882, 883, 884, 885, 886, 887, 889, 890, 891, 895, 896, 897, 898, 899, 900, 901, 902, 903, - 904, 905, 906, 907, 766, 924, 925, 926, 927, 930, - 931,-32768, -88, 934, 929, 935, 10056, 140, -84, 3118, - 10959, 10081, 10982, 10106, 11005, 10131, 11028, 10156, 11051, 10181, - 11074, 10206, 11097, 10231, 11120, 10256, 11143, 10281, 11166, 10306, - 11189, 10331, 3567, 3588, 11212, 10356, 11235, 10381, 11258, 10406, - 11281, 10431, 11304, 10456, 11327, 10481, 3609, 3630, 3651, 3672, - 3693, 3714, 391,-32768, -19, 742, 749,-32768, 1488, 2628, - 668,-32768, 311, 20, 39, 2440, 937, 940, 9,-32768, - 2107, 193, 219, 280, 280, -53, -53, -53, -53, 289, - 289, 675, 675, 675, 675, 941, 2533, 939, 942, 943, - 11350, 944, 11373, 945, 946, 1157, 318, 2533, 416, 2440, - 2440, 953, 2299, 11396, 11419, 11442, 2440, 2597, 3042, 11465, - 11488, 11511, 11534, 11557, 771, -92, 2440, 2440,-32768,-32768, - -32768, 746, 2993,-32768, 769, 2440, 3735, 3756, 3777, 10506, - -76, -39, -40,-32768,-32768,-32768, 2440, 10531,-32768, 775, - 777, 972, 973, 786, 11580, 981, 800, 2440, 2960, 2440, - 2440,-32768, 11603, 833, 801, 802, 804, 806, 812, 813, + 904, 905, 906, 907, 765, 924, 925, 926, 927, 930, + 931,-32768, 103, 934, 929, 935, 10054, 163, 139, 2918, + 10957, 10079, 10980, 10104, 11003, 10129, 11026, 10154, 11049, 10179, + 11072, 10204, 11095, 10229, 11118, 10254, 11141, 10279, 11164, 10304, + 11187, 10329, 3565, 3586, 11210, 10354, 11233, 10379, 11256, 10404, + 11279, 10429, 11302, 10454, 11325, 10479, 3607, 3628, 3649, 3670, + 3691, 3712, 191,-32768, 131, 742, 747,-32768, 1488, 2628, + 668,-32768, 380, 20, 39, 2440, 938, 941, 9,-32768, + 2107, 193, 219, 280, 280, 291, 291, 291, 291, 323, + 323, 676, 676, 676, 676, 940, 2533, 942, 943, 944, + 11348, 945, 11371, 946, 953, 1157, 322, 2533, 383, 2440, + 2440, 963, 2299, 11394, 11417, 11440, 2440, 2845, 3009, 11463, + 11486, 11509, 11532, 11555, 748, -93, 2440, 2440,-32768,-32768, + -32768, 769, 3190,-32768, 774, 2440, 3733, 3754, 3775, 10504, + -114, -39, -40,-32768,-32768,-32768, 2440, 10529,-32768, 777, + 780, 972, 973, 753, 11578, 981, 800, 2440, 2832, 2440, + 2440,-32768, 11601, 833, 801, 802, 804, 806, 812, 813, 814, 815, 816, 817, 818, 820, 821, 822, 823, 824, - 825, 826, 827, 828, 829, 830, 831, 832, 835, 836, - 838, 839, 840, 841,-32768, 1037, 847,-32768, 844, -97, - -32768,-32768, 851, 852, 854, 855, 856, 858, 860, 862, - 866, 867, 868, 869, 875, 876, 878, 879, 880, 916, - 928, 933, 936, 938, 947, 963, 970, 997, 1048,-32768, + 825, 826, 827, 828, 829, 830, 831, 832, 835, 838, + 839, 840, 841, 842,-32768, 1031, 847,-32768, 844, -5, + -32768,-32768, 851, 852, 854, 855, 858, 859, 860, 862, + 867, 868, 869, 873, 875, 876, 878, 879, 880, 916, + 928, 933, 936, 937, 939, 947, 970, 997, 1045,-32768, -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, @@ -1287,165 +1287,165 @@ static const short yypact[] = -32768,-32768,-32768,-32768,-32768,-32768,-32768, 2440, 2440,-32768, -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, -32768, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 1052,-32768, - 2533, 39,-32768, 1053, 2533, 870, 38, 2440, 1054, 1063, - 932,-32768, 1070, 951, 5, 1072, 2440,-32768, 101, -92, + 2533, 39,-32768, 1053, 2533, 863, 31, 2440, 1054, 1063, + 932,-32768, 1070, 951, 5, 1072, 2440,-32768, 189, -93, 1488, 1488, 1115, 1488, 1117, 1488, 1488,-32768, 2533, 1187, - 417,-32768, 2487, 1046, 992, 1118, 1120, 1122, 1123, 450, - 1125, 1127, 1128, 1129, 1130, 1131, 1133, 1075, 165, 3798, - 3819,-32768,-32768, 3098, -92, -92, -92, 1135, 2533, 2533, - 2533, 1414, 1188, 2440, 2440, 1488, 1488, 2440, 1218, 1488, - 1191, 3840,-32768, 2502, 642, 1230, 1076, 1235, 2440, 2440, - -92, 1238, 1239, 1057, 1242, 1244, 1488, 1488, 1246, -92, + 388,-32768, 2487, 1046, 957, 1118, 1120, 1122, 1123, 450, + 1126, 1128, 1129, 1130, 1131, 1133, 1134, 1075, 153, 3796, + 3817,-32768,-32768, 3081, -93, -93, -93, 1188, 2533, 2533, + 2533, 1414, 1189, 2440, 2440, 1488, 1488, 2440, 1186, 1488, + 1221, 3838,-32768, 2502, 642, 1230, 1076, 1235, 2440, 2440, + -93, 1238, 1239, 1057, 1242, 1244, 1488, 1488, 1246, -93, 1249, 1250, 1488, 1488, 1251, 1252, 1253, 1255, 1256, 1488, - 418, 1488, 1257, 1258, 1259, 1265, 1267,-32768, 1266, 373, - 1269,-32768, 3174, 2440, 2440, 2440, 2440, 2440, 2440, 2440, + 236, 1488, 1257, 1258, 1259, 1265, 1267,-32768, 1266, 428, + 1269,-32768, 2986, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440,-32768, - 11626, 10556, 11649, 10581, 11672, 10606, 11695, 10631, 10656, 1065, - 159, 1066,-32768, 668,-32768, 123, 172, 1077, 1264, 1620, - -32768,-32768,-32768, 5, 2440,-32768, 420,-32768, 2983, 1271, - 82, 37, 1272, 1488, 1274, 1488, 1275, 1277, 439,-32768, + 11624, 10554, 11647, 10579, 11670, 10604, 11693, 10629, 10654, 1065, + 212, 1066,-32768, 668,-32768, 123, 172, 1077, 1264, 1620, + -32768,-32768,-32768, 5, 2440,-32768, 416,-32768, 12544, 1271, + 82, 37, 1272, 1488, 1274, 1488, 1275, 1277, 417,-32768, 2533,-32768, 2440,-32768, 2440, 1488, 1488, 1488, 1080,-32768, - 304, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 500, 2440, - 2440, 2440, 1109, -123, -118, -86,-32768, 440, 443, 446, - -32768,-32768, 3861, 3882, 1305, 1306, 11718, -15, 1210,-32768, - 2440, 2440, 2440,-32768, 1114, 14, 1121, 3903, 3924, -21, - 1124, 1126, 1132, 1134, 1136, 1138, 1137, 1139, 118, 1140, - 1142, 1147, 1144, 1145, 1146, 1148, 1149, 1150, 1155,-32768, + 401, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 500, 2440, + 2440, 2440, 1109, -118, -105, -86,-32768, 420, 440, 441, + -32768,-32768, 3859, 3880, 1305, 1306, 11716, -112, 1210,-32768, + 2440, 2440, 2440,-32768, 1114, 14, 1121, 3901, 3922, -124, + 1124, 1127, 1125, 1132, 1135, 1136, 1137, 1138, -21, 1139, + 1140, 1144, 1143, 1145, 1146, 1148, 1149, 1150, 1155,-32768, -32768,-32768,-32768,-32768, 1153, 1154, 1156, 1159, 1160, 1161, - 1162,-32768, 1163, 140, 1311, 3945, 3966, 3987, 4008, 4029, - 4050, 4071, 4092, 4113, 4134, 4155, 4176, 4197, 4218, 4239, - 4260, 4281, 4302, 4323, 4344, 4365, 4386, 4407, 4428, 4449, - 4470,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, 1165, - -32768,-32768,-32768, 1488, 39, 2440, 1317, 1321, 9,-32768, - 1320, 10681, 5,-32768,-32768,-32768,-32768, -92,-32768, 1322, - -32768, 1323,-32768,-32768, 1167, 447, 2983, 4491, 1325, 1329, - 1355, 2440, 2440, 2440, 1360, 1361, 1362, 1363, 1364, 1367, - 1368,-32768, 2406, 3166, 11741, 1294, 460, -92, 1369, -92, - 1370, -92, 1372, 1373, 1374, 1375, 2440, 2440,-32768,-32768, - 1376, 1488, 1488, 1223, 1488, 2434, 314, 11764, 2440, 14, - 1381, 2440, 1488, 1380, 1384, 1383, 1204, 1385, 418, 1386, - 1390, 2440, 1388, 1392, 1391, 1393, 1397, 418, 2440, 2440, - 2440, 1488, 1395, 1399, 418, 2440, 1400, 1402, 1404, 2440, - 373,-32768,-32768, 2440, 2440, 2440, 2440, 2440, 2440, 2440, + 1162,-32768, 1163, 163, 1311, 3943, 3964, 3985, 4006, 4027, + 4048, 4069, 4090, 4111, 4132, 4153, 4174, 4195, 4216, 4237, + 4258, 4279, 4300, 4321, 4342, 4363, 4384, 4405, 4426, 4447, + 4468,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, 1165, + -32768,-32768,-32768, 1488, 39, 2440, 1316, 1322, 9,-32768, + 1321, 10679, 5,-32768,-32768,-32768,-32768, -93,-32768, 1323, + -32768, 1324,-32768,-32768, 1167, 445, 12544, 4489, 1325, 1328, + 1338, 2440, 2440, 2440, 1355, 1360, 1361, 1362, 1363, 1364, + 1367,-32768, 2406, 3134, 11739, 1294, 372, -93, 1368, -93, + 1369, -93, 1370, 1372, 1373, 1374, 2440, 2440,-32768,-32768, + 1376, 1488, 1488, 1280, 1488, 2434, 314, 11762, 2440, 14, + 1378, 2440, 1488, 1380, 1384, 1383, 1204, 1385, 236, 1386, + 1390, 2440, 1388, 1392, 1391, 1393, 1397, 236, 2440, 2440, + 2440, 1488, 1395, 1399, 236, 2440, 1400, 1402, 1404, 2440, + 428,-32768,-32768, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 1408, 1407, 1409, 1674,-32768, 1389, 1410,-32768, 1209,-32768, 90, - -32768,-32768,-32768, 1216, 2440,-32768,-32768,-32768, 4512, 1758, + -32768,-32768,-32768, 1216, 2440,-32768,-32768,-32768, 4510, 1758, 1806,-32768,-32768,-32768,-32768,-32768,-32768,-32768, 1871, 1411, - 1217,-32768, 2440,-32768, 1219, 167,-32768, 1221, 209,-32768, - 1222, 237,-32768, 1224,-32768,-32768,-32768, 4533, 4554, -15, - 189,-32768, 451, 1225, 1318, 2440,-32768, 2440,-32768,-32768, - 4575, 14, 1228, 4596, 1227,-32768, 1229,-32768, 1254,-32768, - 1232,-32768, 1260, 11787,-32768, 1261,-32768,-32768, 1234, 1262, - 11810, 4617, 11833, 1263,-32768, 1268, 1287, 4638, 1273, 1288, - -32768, 4659, 1286, 4680, 4701, 4722, 4743, 4764, 4785, 4806, - 4827, 4848, 4869, 4890, 4911, 4932, 4953, 4974, 4995, 5016, - 5037, 5058, 5079, 5100, 5121, 5142, 5163, 5184, 5205, 1297, - -32768,-32768,-32768, 5,-32768, 1346,-32768,-32768, 5226, 2440, - -32768,-32768,-32768,-32768, 460, 2525,-32768, 2304, 12, 2304, - 12, 2304, 12, 2440, 2440, 1351,-32768, 1488,-32768, 1488, - 2440, 3197, 3220, 1488, 1293, 1451, -15, 418, 1456, 2440, - 1459, 418, 1461, 1492, 1515, 1516, 1517, 2440, 1518, 1488, - 1519, 1520, 2440, 1524, 1522, 2440, 1457, 2440, 2440, 2440, + 1217,-32768, 2440,-32768, 1219, 165,-32768, 1218, 167,-32768, + 1222, 209,-32768, 1223,-32768,-32768,-32768, 4531, 4552, -112, + 254,-32768, 446, 1224, 1326, 2440,-32768, 2440,-32768,-32768, + 4573, 14, 1226, 4594, 1228,-32768, 1229,-32768, 1254,-32768, + 1234,-32768, 1260, 11785,-32768, 1261,-32768,-32768, 1262, 1263, + 11808, 4615, 11831, 1273,-32768, 1268, 1287, 4636, 1284, 1290, + -32768, 4657, 1293, 4678, 4699, 4720, 4741, 4762, 4783, 4804, + 4825, 4846, 4867, 4888, 4909, 4930, 4951, 4972, 4993, 5014, + 5035, 5056, 5077, 5098, 5119, 5140, 5161, 5182, 5203, 1299, + -32768,-32768,-32768, 5,-32768, 1320,-32768,-32768, 5224, 2440, + -32768,-32768,-32768,-32768, 372, 2589,-32768, 2304, 68, 2304, + 68, 2304, 68, 2440, 2440, 1348,-32768, 1488,-32768, 1488, + 2440, 3157, 3186, 1488, 1292, 1450, -112, 236, 1454, 2440, + 1456, 236, 1457, 1462, 1461, 1515, 1516, 2440, 1517, 1488, + 1518, 1519, 2440, 1523, 1521, 2440, 1524, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, - 2440, 2440, 2440,-32768, 1523,-32768, 1525, 11856, 1354, 2440, - -32768, 2304, 2304, 2440, 3243, 243, 1551, 1330, -43,-32768, - 3274, 245, -42, 3297, 247, -33, 3320, 3343, 1403,-32768, + 2440, 2440, 2440,-32768, 1522,-32768, 1525, 11854, 1329, 2440, + -32768, 2304, 2304, 2440, 3209, 237, 1550, 1356, -43,-32768, + 3238, 243, -42, 3268, 245, -33, 3291, 3314, 1403,-32768, 1405, 2081,-32768,-32768, 1359, 14,-32768, 1406, 1412, 1413, - 5247,-32768, 1366,-32768, 1418,-32768,-32768,-32768, 11879,-32768, - 1415,-32768,-32768, 11902, 1420,-32768, 11925, 1417, 11948, 11971, - 11994, 5268, 5289, 5310, 5331, 5352, 5373, 5394, 5415, 5436, - 5457, 5478, 5499, 5520, 5541, 5562, 5583, 5604, 5625, 5646, - 5667, 5688, 12017, 5709,-32768, 1421, 1488,-32768, 3366, 2697, + 5245,-32768, 1366,-32768, 1418,-32768,-32768,-32768, 11877,-32768, + 1415,-32768,-32768, 11900, 1420,-32768, 11923, 1417, 11946, 11969, + 11992, 5266, 5287, 5308, 5329, 5350, 5371, 5392, 5413, 5434, + 5455, 5476, 5497, 5518, 5539, 5560, 5581, 5602, 5623, 5644, + 5665, 5686, 12015, 5707,-32768, 1421, 1488,-32768, 3337, 3475, 1587, 2440,-32768, 1488, 1597,-32768, 1601, 2440, 1603, 1604, - 2440, 1612, 1614, 1616, 1488, 1488,-32768, 1617, 14, 418, - 418, 418, 418, 1618, 1622, 1624, 418, 1646, 1647, 1648, + 2440, 1612, 1614, 1616, 1488, 1488,-32768, 1617, 14, 236, + 236, 236, 236, 1618, 1622, 1624, 236, 1646, 1647, 1648, 1650,-32768,-32768,-32768, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440,-32768, 2440, 1651, 1488,-32768, - -32768, 1458, 3389, 1460,-32768,-32768, 1462, 3412,-32768,-32768, - 1463, 3435,-32768,-32768,-32768, 1465, 1464,-32768, 14, 1467, + -32768, 1458, 3360, 1460,-32768,-32768, 1463, 3383,-32768,-32768, + 1464, 3406,-32768,-32768,-32768, 1466, 1459,-32768, 14, 1467, 1469, 1474, 1475,-32768,-32768,-32768, 1476,-32768,-32768,-32768, - 1477, 1473, 1478, 1480, 5730, 5751, 5772, 5793, 5814, 5835, - 5856, 5877, 5898, 5919, 5940, 5961, 5982, 6003, 6024, 6045, - 6066, 6087, 6108, 6129, 6150, 1481, 12040, 1484, 1652, 12, - 1655, 1488, 12, 1669, 12, 1679, 1488, 1585, 1527, 418, - 418, 1681, 1682, 418, 1687, 2440, 2440, 2440, 2440, 2440, + 1477, 1473, 1478, 1480, 5728, 5749, 5770, 5791, 5812, 5833, + 5854, 5875, 5896, 5917, 5938, 5959, 5980, 6001, 6022, 6043, + 6064, 6085, 6106, 6127, 6148, 1481, 12038, 1484, 1652, 68, + 1657, 1488, 68, 1669, 68, 1679, 1488, 1585, 1527, 236, + 236, 1681, 1682, 236, 1687, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 39, - -32768, 1688,-32768, -30,-32768, 1493, 456, -26,-32768, 1494, + -32768, 1688,-32768, -30,-32768, 1493, 449, -26,-32768, 1494, -18,-32768, 1495, 1497, 1499, 14, 1501, 1502,-32768,-32768, - 1507, 1508, 457, 2983, 461, 2983, 462, 2983, 6171, 6192, - 6213, 6234, 6255, 6276, 6297, 6318, 6339, 6360, 6381, 6402, - 6423, 6444, 6465, 6486, 6507, 6528, 6549, 6570, 6591, 465, - -32768, 1504, 1509, 1700, 12, 1488, 1703, 1704, 12, 1706, - 12, 1613, 2440, 14, 418, 1488, 1707, 1727, 2440, 1728, + 1507, 1508, 456, 12544, 457, 12544, 460, 12544, 6169, 6190, + 6211, 6232, 6253, 6274, 6295, 6316, 6337, 6358, 6379, 6400, + 6421, 6442, 6463, 6484, 6505, 6526, 6547, 6568, 6589, 461, + -32768, 1504, 1509, 1700, 68, 1488, 1703, 1704, 68, 1706, + 68, 1613, 2440, 14, 236, 1488, 1707, 1727, 2440, 1728, 2440, 1729, 2440, 1730, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 39, 1731, 39, 1732,-32768, - -17, 1539,-32768,-32768, -14,-32768, -1, 1541, 6612, 14, - 1543, 1544,-32768,-32768, 2983,-32768, 2983,-32768, 2983,-32768, - 12063, 12086, 12109, 6633, 6654, 6675, 6696, 6717, 6738, 6759, - 6780, 6801, 6822, 6843, 6864, 6885, 6906, 6927, 6948, 6969, - 6990,-32768,-32768, 478,-32768,-32768, 1740, 1741, 1742, 1743, - 2440, 2440, 1583, 418, 1488,-32768,-32768,-32768, 2440, 2440, + -17, 1539,-32768,-32768, -14,-32768, -1, 1541, 6610, 14, + 1543, 1544,-32768,-32768, 12544,-32768, 12544,-32768, 12544,-32768, + 12061, 12084, 12107, 6631, 6652, 6673, 6694, 6715, 6736, 6757, + 6778, 6799, 6820, 6841, 6862, 6883, 6904, 6925, 6946, 6967, + 6988,-32768,-32768, 464,-32768,-32768, 1740, 1741, 1742, 1743, + 2440, 2440, 1583, 236, 1488,-32768,-32768,-32768, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 39, 1746,-32768,-32768, - -32768,-32768, 7011, 3458, 1584, 1554, 1557, 1558, 1559, 1560, - 7032, 7053, 7074, 7095, 7116, 7137, 7158, 7179, 7200, 7221, - 7242, 7263, 7284, 7305, 7326, 7347, 7368, 7389,-32768,-32768, - 2440, 1749,-32768, 1488, 418, 2440, 2440, 2440, 2440, 2440, + -32768,-32768, 7009, 3429, 1584, 1554, 1557, 1558, 1559, 1560, + 7030, 7051, 7072, 7093, 7114, 7135, 7156, 7177, 7198, 7219, + 7240, 7261, 7282, 7303, 7324, 7345, 7366, 7387,-32768,-32768, + 2440, 1749,-32768, 1488, 236, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, - 2440, 2440, 2440, 2440, 2440, 2440, 3481,-32768, 1562, 1567, - 483, 2983, 486, 2983, 487, 2983, 7410, 7431, 7452, 7473, - 7494, 7515, 7536, 7557, 7578, 7599, 7620, 7641, 7662, 7683, - 7704, 7725, 7746, 7767, 1752, 1488, 1759, 2440, 1760, 2440, + 2440, 2440, 2440, 2440, 2440, 2440, 3452,-32768, 1562, 1567, + 465, 12544, 478, 12544, 483, 12544, 7408, 7429, 7450, 7471, + 7492, 7513, 7534, 7555, 7576, 7597, 7618, 7639, 7660, 7681, + 7702, 7723, 7744, 7765, 1752, 1488, 1759, 2440, 1760, 2440, 1762, 2440, 1763, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, - 2440,-32768, 1570,-32768, 2983,-32768, 2983,-32768, 2983,-32768, - 12132, 12155, 12178, 7788, 7809, 7830, 7851, 7872, 7893, 7914, - 7935, 7956, 7977, 7998, 8019, 8040, 8061, 8082, 1488,-32768, + 2440,-32768, 1570,-32768, 12544,-32768, 12544,-32768, 12544,-32768, + 12130, 12153, 12176, 7786, 7807, 7828, 7849, 7870, 7891, 7912, + 7933, 7954, 7975, 7996, 8017, 8038, 8059, 8080, 1488,-32768, -32768,-32768, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 1571, 1592, 1598, - 1608, 8103, 8124, 8145, 8166, 8187, 8208, 8229, 8250, 8271, - 8292, 8313, 8334, 8355, 8376, 8397, 1488, 2440, 2440, 2440, + 1608, 8101, 8122, 8143, 8164, 8185, 8206, 8227, 8248, 8269, + 8290, 8311, 8332, 8353, 8374, 8395, 1488, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, - 2440, 2440, 2440, 2440, 2440, 1610, 490, 2983, 494, 2983, - 497, 2983, 8418, 8439, 8460, 8481, 8502, 8523, 8544, 8565, - 8586, 8607, 8628, 8649, 8670, 8691, 8712, 418, 2440, 1805, + 2440, 2440, 2440, 2440, 2440, 1610, 486, 12544, 487, 12544, + 490, 12544, 8416, 8437, 8458, 8479, 8500, 8521, 8542, 8563, + 8584, 8605, 8626, 8647, 8668, 8689, 8710, 236, 2440, 1805, 2440, 1807, 2440, 1809, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 1621, - 2983,-32768, 2983,-32768, 2983,-32768, 12201, 12224, 12247, 12270, - 12293, 12316, 8733, 8754, 8775, 8796, 8817, 8838, 8859, 8880, - 8901, 1810,-32768,-32768,-32768,-32768,-32768,-32768, 2440, 2440, + 12544,-32768, 12544,-32768, 12544,-32768, 12199, 12222, 12245, 12268, + 12291, 12314, 8731, 8752, 8773, 8794, 8815, 8836, 8857, 8878, + 8899, 1810,-32768,-32768,-32768,-32768,-32768,-32768, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440,-32768, 1619, 1626, - 1628, 1662, 1663, 1664, 8922, 8943, 8964, 8985, 9006, 9027, - 9048, 9069, 9090, 2440, 2440, 2440, 2440, 2440, 2440, 2440, - 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 498, 2983, - 501, 2983, 502, 2983, 507, 2983, 511, 2983, 512, 2983, - 9111, 9132, 9153, 9174, 9195, 9216, 9237, 9258, 9279, 2440, + 1628, 1662, 1663, 1664, 8920, 8941, 8962, 8983, 9004, 9025, + 9046, 9067, 9088, 2440, 2440, 2440, 2440, 2440, 2440, 2440, + 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 494, 12544, + 497, 12544, 498, 12544, 501, 12544, 502, 12544, 507, 12544, + 9109, 9130, 9151, 9172, 9193, 9214, 9235, 9256, 9277, 2440, 1812, 2440, 1813, 2440, 1815, 2440, 1816, 2440, 1817, 2440, 1819, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, - 2983,-32768, 2983,-32768, 2983,-32768, 2983,-32768, 2983,-32768, - 2983,-32768, 9300, 9321, 9342, 9363, 9384, 9405, 12339, 12362, - 12385, 2440, 2440, 2440, 2440, 2440, 2440,-32768,-32768,-32768, - 9426, 9447, 9468, 9489, 9510, 9531, 1665, 1666, 1668, 2440, - 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 9552, 9573, - 9594, 9615, 9636, 9657, 515, 2983, 516, 2983, 519, 2983, + 12544,-32768, 12544,-32768, 12544,-32768, 12544,-32768, 12544,-32768, + 12544,-32768, 9298, 9319, 9340, 9361, 9382, 9403, 12337, 12360, + 12383, 2440, 2440, 2440, 2440, 2440, 2440,-32768,-32768,-32768, + 9424, 9445, 9466, 9487, 9508, 9529, 1665, 1666, 1668, 2440, + 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 9550, 9571, + 9592, 9613, 9634, 9655, 511, 12544, 512, 12544, 515, 12544, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 1847, 2440, 1864, - 2440, 1865, 9678, 9699, 9720, 12408, 12431, 12454, 2983,-32768, - 2983,-32768, 2983,-32768, 2440, 2440, 2440,-32768,-32768,-32768, - 9741, 9762, 9783, 1671, 1672, 1673, 2440, 2440, 2440, 2440, - 2440, 2440, 9804, 9825, 9846, 522, 2983, 523, 2983, 526, - 2983, 2440, 2440, 2440, 2440, 1869, 2440, 1870, 2440, 1872, - 9867, 9888, 9909, 2983,-32768, 2983,-32768, 2983,-32768, 2440, - 2440, 2440, 9930, 9951, 9972, 2440, 2440, 2440, 9993, 10014, - 10035, 2440, 2440, 2440, 12477, 12500, 12523,-32768,-32768,-32768, - 1693, 1694, 1695, 2440, 2440, 2440, 527, 2983, 530, 2983, - 531, 2983, 2440, 1891, 2440, 1892, 2440, 1893, 2983,-32768, - 2983,-32768, 2983,-32768, 1900, 1901,-32768 + 2440, 1865, 9676, 9697, 9718, 12406, 12429, 12452, 12544,-32768, + 12544,-32768, 12544,-32768, 2440, 2440, 2440,-32768,-32768,-32768, + 9739, 9760, 9781, 1671, 1672, 1673, 2440, 2440, 2440, 2440, + 2440, 2440, 9802, 9823, 9844, 516, 12544, 519, 12544, 522, + 12544, 2440, 2440, 2440, 2440, 1869, 2440, 1870, 2440, 1872, + 9865, 9886, 9907, 12544,-32768, 12544,-32768, 12544,-32768, 2440, + 2440, 2440, 9928, 9949, 9970, 2440, 2440, 2440, 9991, 10012, + 10033, 2440, 2440, 2440, 12475, 12498, 12521,-32768,-32768,-32768, + 1693, 1694, 1695, 2440, 2440, 2440, 523, 12544, 526, 12544, + 527, 12544, 2440, 1891, 2440, 1892, 2440, 1893, 12544,-32768, + 12544,-32768, 12544,-32768, 1900, 1901,-32768 }; static const short yypgoto[] = @@ -1462,93 +1462,93 @@ static const short yypgoto[] = -32768, -290, -22,-32768, 1896, 1897, -351, -161, 1898,-32768, -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, -32768,-32768,-32768, -1214, -1318,-32768,-32768, -1023, -23,-32768, - 218,-32768, -89,-32768, -1148, 845, 1511, -289, -318, -706, + 218,-32768, -89,-32768, -1163, 845, 1511, -289, -318, -706, 948,-32768, -266 }; -#define YYLAST 12719 +#define YYLAST 12738 static const short yytable[] = { 138, 137, 236, 534, 471, 475, 181, 178, 865, 192, - 508, 195, 241, 713, 190, 146, 10, 81, 360, 464, + 508, 195, 241, 713, 190, 10, 1275, 81, 360, 464, 465, 466, 364, 1346, 1346, 148, 146, 96, 1347, 1347, - 1425, 1275, 474, 1346, 1425, 295, 1346, 1425, 1347, 471, - 1346, 1347, 856, 1016, 463, 1347, 369, 8, 1346, 1346, - 9, 203, 1346, 1347, 1347, 1200, 1352, 1347, 1355, 462, - 463, 351, 352, 84, 1209, 1346, 351, 352, 351, 352, - 1347, 1216, 495, 121, 122, 123, 496, 1047, 1346, 1048, - 351, 352, 1049, 1347, 1050, 353, 1017, 85, 1015, 121, - 122, 123, 167, 168, 131, 132, 1256, 354, 351, 352, - 351, 352, 810, 169, 86, 288, 289, 290, 594, 170, - 291, 294, 595, 298, 1051, 87, 1052, 601, 182, 143, - 318, 319, 320, 88, 322, 758, 324, 325, 89, 332, - 96, 310, 311, 312, 313, 314, 296, 297, 1367, 370, - 243, 315, 244, 857, 858, 147, 349, 350, 11, 12, - 13, 14, 15, 16, 17, 18, 147, 1010, 90, 1424, + 1425, 295, 474, 1346, 1425, 856, 1346, 1425, 1347, 471, + 1346, 1347, 369, 1016, 463, 1347, 462, 463, 1346, 1346, + 146, 203, 1346, 1347, 1347, 1200, 1352, 1347, 1355, 175, + 351, 352, 176, 177, 1209, 1346, 351, 352, 351, 352, + 1347, 1216, 1073, 121, 122, 123, 121, 122, 123, 351, + 352, 143, 1047, 1061, 1048, 353, 1017, 758, 1015, 1062, + 8, 167, 168, 351, 352, 1049, 1256, 1050, 351, 352, + 351, 352, 169, 351, 352, 288, 289, 290, 170, 525, + 291, 294, 186, 298, 1051, 187, 1052, 354, 182, 535, + 318, 319, 320, 1367, 322, 84, 324, 325, 9, 332, + 96, 85, 296, 297, 1346, 370, 857, 858, 161, 1347, + 86, 162, 163, 243, 164, 244, 349, 350, 11, 12, + 13, 14, 15, 16, 17, 18, 147, 1010, 87, 1424, 1428, 760, 759, 351, 352, 367, 368, 191, 371, 1431, - 373, 380, 1633, 376, 377, 1073, 1637, 699, 718, 1004, - 1061, 700, 91, 707, 1639, 1726, 1062, 92, 1728, 730, - 124, 125, 126, 127, 142, 124, 125, 126, 127, 82, - 148, 1729, 196, 183, 179, 141, 193, 471, 709, 242, - 714, 131, 132, 558, 143, 416, 131, 132, 471, 706, + 373, 380, 1633, 376, 377, 1082, 1637, 495, 718, 1004, + 147, 496, 88, 707, 1639, 1726, 131, 132, 1728, 730, + 124, 125, 126, 127, 810, 124, 125, 126, 127, 82, + 89, 1729, 196, 183, 179, 90, 193, 471, 709, 242, + 714, 131, 132, 558, 91, 416, 131, 132, 471, 706, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 171, 173, 1368, 1425, 351, 352, 1372, 1425, - 470, 144, 1425, 476, 351, 352, 545, 546, 480, 481, + 470, 92, 1425, 476, 351, 352, 545, 546, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, - 492, 493, 494, 124, 125, 126, 127, 869, 500, 145, - 502, 704, 351, 352, 289, 470, 1138, 149, 351, 352, - 512, 513, 514, 515, 1082, 517, 518, 519, 520, 521, - 522, 523, 1187, 161, 525, 1583, 162, 163, 1587, 164, - 1590, 131, 132, 536, 537, 538, 539, 351, 352, 547, - 131, 132, 124, 125, 126, 127, 238, 554, 239, 351, - 352, 351, 352, 535, 175, 1001, 562, 176, 177, 704, - 1032, 1033, 1425, 131, 132, 899, 1425, 1267, 1425, 303, - 304, 305, 150, 306, 307, 308, 309, 310, 311, 312, - 313, 314, 850, 151, 346, 1276, 348, 315, 186, 1277, - 152, 187, 355, 351, 352, 600, 304, 305, 153, 306, - 307, 308, 309, 310, 311, 312, 313, 314, 160, 1269, - 878, 471, 245, 315, 246, 854, 1499, 1500, 1501, 1502, - 1680, 351, 352, 1506, 1684, 154, 1686, 351, 352, 351, - 352, 351, 352, 157, 158, 851, 159, 1271, 155, 471, - 907, 908, 909, 1421, 156, 1427, 289, 1430, 165, 131, - 132, 708, 710, 166, 180, 505, 889, 239, 174, 418, + 492, 493, 494, 124, 125, 126, 127, 141, 500, 594, + 502, 131, 132, 595, 289, 470, 1138, 238, 142, 239, + 512, 513, 514, 515, 143, 517, 518, 519, 520, 521, + 522, 523, 1187, 351, 352, 1583, 148, 699, 1587, 151, + 1590, 700, 144, 536, 537, 538, 539, 351, 352, 547, + 601, 145, 124, 125, 126, 127, 245, 554, 246, 351, + 352, 351, 352, 899, 131, 132, 562, 949, 950, 951, + 952, 953, 1425, 131, 132, 1267, 1425, 1269, 1425, 303, + 304, 305, 149, 306, 307, 308, 309, 310, 311, 312, + 313, 314, 850, 150, 346, 869, 348, 315, 697, 704, + 698, 152, 355, 351, 352, 600, 304, 305, 153, 306, + 307, 308, 309, 310, 311, 312, 313, 314, 1001, 1271, + 878, 471, 704, 315, 160, 854, 1499, 1500, 1501, 1502, + 1680, 351, 352, 1506, 1684, 165, 1686, 351, 352, 351, + 352, 43, 44, 45, 46, 851, 48, 1421, 154, 471, + 907, 908, 909, 1427, 155, 1430, 289, 131, 132, 156, + 1276, 708, 710, 505, 1277, 239, 889, 1032, 1033, 418, 306, 307, 308, 309, 310, 311, 312, 313, 314, 471, - 471, 471, 184, 470, 315, 312, 313, 314, 247, 249, - 248, 250, 416, 315, 470, 185, 732, 733, 301, 302, + 471, 471, 166, 470, 315, 310, 311, 312, 313, 314, + 157, 158, 416, 159, 470, 315, 732, 733, 301, 302, 303, 304, 305, 739, 306, 307, 308, 309, 310, 311, - 312, 313, 314, 749, 750, 890, 1041, 1042, 315, 131, - 132, 704, 753, 705, 188, 729, 1188, 239, 189, 43, - 44, 45, 46, 761, 48, 197, 1596, 1597, 199, 251, - 1600, 252, 200, 253, 771, 254, 773, 774, 949, 950, - 951, 952, 953, 255, 257, 256, 258, 1334, 259, 261, - 260, 262, 263, 265, 264, 266, 267, 269, 268, 270, - 198, 271, 1025, 272, 202, 1003, 1005, 201, 234, 528, - 529, 273, 275, 274, 276, 237, 277, 811, 278, 279, - 281, 280, 282, 283, 285, 284, 93, 94, 697, 286, - 698, 471, 97, 98, 99, 100, 101, 102, 103, 104, + 312, 313, 314, 749, 750, 890, 1041, 1042, 315, 312, + 313, 314, 753, 131, 132, 180, 1188, 315, 174, 729, + 247, 239, 248, 761, 184, 188, 1596, 1597, 189, 249, + 1600, 250, 197, 251, 771, 252, 773, 774, 253, 255, + 254, 256, 257, 259, 258, 260, 261, 1334, 262, 263, + 265, 264, 266, 267, 269, 268, 270, 271, 273, 272, + 274, 275, 1025, 276, 185, 1003, 1005, 198, 199, 528, + 529, 277, 279, 278, 280, 200, 281, 811, 282, 283, + 704, 284, 705, 704, 201, 731, 93, 94, 704, 202, + 881, 471, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, - 115, 116, 117, 118, 119, 120, 704, 704, 731, 881, - 1012, 1690, 1013, 287, 301, 302, 303, 304, 305, 299, - 306, 307, 308, 309, 310, 311, 312, 313, 314, 704, - 704, 1024, 1053, 704, 315, 1054, 704, 704, 1055, 1143, - 922, 1277, 316, 1278, 840, 841, 1635, 1648, 1636, 1649, - 317, 1650, 1652, 1651, 1653, 1675, 321, 1676, 842, 843, - 844, 845, 846, 847, 848, 323, 509, 470, 1756, 334, - 1757, 853, 333, 1847, 859, 1848, 1849, 1851, 1850, 1852, - 1978, 335, 1979, 868, 1980, 1164, 1981, 1982, 2089, 1983, - 2090, 2091, 2093, 2092, 2094, 470, 416, 2095, 336, 2096, - 1765, 2097, 2099, 2098, 2100, 2176, 2178, 2177, 2179, 2180, - 962, 2181, 2224, 2226, 2225, 2227, 2228, 2272, 2229, 2273, - 2274, 2276, 2275, 2277, 338, 470, 470, 470, 1131, 339, - 912, 913, 340, 748, 916, 341, 300, 342, 343, 345, - 344, 375, 356, 363, 378, 927, 928, 357, 358, 359, - 362, 374, 379, 372, 381, 411, 382, 128, 129, 383, + 115, 116, 117, 118, 119, 120, 1012, 704, 1013, 1024, + 704, 1690, 1053, 234, 301, 302, 303, 304, 305, 237, + 306, 307, 308, 309, 310, 311, 312, 313, 314, 285, + 704, 704, 1054, 1055, 315, 704, 1277, 1143, 1278, 1635, + 922, 1636, 299, 286, 840, 841, 1648, 1650, 1649, 1651, + 1652, 1675, 1653, 1676, 1756, 1847, 1757, 1848, 842, 843, + 844, 845, 846, 847, 848, 287, 509, 470, 1849, 316, + 1850, 853, 317, 1851, 859, 1852, 1978, 1980, 1979, 1981, + 1982, 321, 1983, 868, 2089, 1164, 2090, 2091, 2093, 2092, + 2094, 2095, 2097, 2096, 2098, 470, 416, 2099, 323, 2100, + 1765, 2176, 2178, 2177, 2179, 2180, 2224, 2181, 2225, 2226, + 962, 2227, 2228, 2272, 2229, 2273, 2274, 2276, 2275, 2277, + 333, 334, 335, 336, 338, 470, 470, 470, 1131, 340, + 912, 913, 339, 748, 916, 341, 300, 342, 343, 344, + 345, 363, 356, 375, 372, 927, 928, 357, 358, 359, + 362, 374, 378, 379, 381, 382, 411, 128, 129, 383, 384, 1819, 385, 130, 386, 387, 1159, 388, 133, 389, 390, 292, 391, 392, 293, 393, 394, 479, 395, 396, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, @@ -1556,45 +1556,45 @@ static const short yytable[] = 985, 986, 987, 988, 989, 990, 301, 302, 303, 304, 305, 397, 306, 307, 308, 309, 310, 311, 312, 313, 314, 398, 399, 400, 1006, 401, 315, 414, 923, 402, - 403, 1011, 301, 302, 303, 304, 305, 404, 306, 307, - 308, 309, 310, 311, 312, 313, 314, 470, 405, 1026, - 406, 1027, 315, 417, 407, 408, 409, 410, 468, 315, - 478, 510, 516, 413, 415, 477, 1043, 1044, 1045, 524, - 549, 550, 553, 556, 563, 559, 564, 565, 566, 567, + 417, 1011, 301, 302, 303, 304, 305, 403, 306, 307, + 308, 309, 310, 311, 312, 313, 314, 470, 404, 1026, + 405, 1027, 315, 468, 406, 407, 408, 409, 478, 410, + 315, 510, 516, 549, 524, 413, 1043, 1044, 1045, 415, + 477, 550, 553, 556, 559, 563, 564, 565, 566, 567, 568, 569, 570, 1069, 571, 572, 573, 1065, 1066, 1067, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 1338, 301, 302, 303, 304, 305, 587, 306, 307, 308, 309, 310, 311, 312, 313, 314, 588, 589, 590, 591, 592, 315, 597, 593, 870, 862, 596, - 598, 1101, 701, 711, 712, 702, 719, 717, 751, 720, - 721, 723, 725, 726, 1999, 301, 302, 303, 304, 305, - 734, 306, 307, 308, 309, 310, 311, 312, 313, 314, - 747, 752, 903, 904, 905, 315, 763, 560, 764, 765, - 766, 767, 1132, 301, 302, 303, 304, 305, 769, 306, + 598, 1101, 701, 702, 711, 712, 717, 747, 767, 719, + 720, 721, 723, 725, 1999, 301, 302, 303, 304, 305, + 726, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 734, 751, 903, 904, 905, 315, 752, 560, 763, 765, + 766, 764, 1132, 301, 302, 303, 304, 305, 769, 306, 307, 308, 309, 310, 311, 312, 313, 314, 929, 770, 776, 777, 778, 315, 779, 467, 780, 938, 1148, 1149, 1150, 1222, 781, 782, 783, 784, 785, 786, 787, 1158, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, - 798, 799, 800, 1177, 1178, 801, 802, 1191, 803, 804, - 805, 806, 807, 808, 809, 1190, 813, 814, 1193, 815, - 816, 817, 883, 818, 839, 819, 849, 820, 1203, 852, - 860, 821, 822, 823, 824, 1210, 1211, 1212, 855, 861, + 798, 799, 800, 1177, 1178, 801, 807, 1191, 802, 803, + 804, 805, 806, 808, 809, 1190, 813, 814, 1193, 815, + 816, 839, 883, 817, 818, 819, 849, 820, 1203, 852, + 860, 855, 821, 822, 823, 1210, 1211, 1212, 824, 861, 825, 826, 1217, 827, 828, 829, 1221, 863, 867, 898, 1223, 1224, 1225, 1226, 1227, 1228, 1229, 1230, 1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238, 1239, 1240, 1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 301, 302, 303, 304, 305, 830, 306, 307, 308, 309, 310, 311, 312, 313, 314, 1258, 873, 831, 875, 885, 315, 886, 832, 887, - 888, 833, 891, 834, 892, 893, 894, 895, 896, 1265, - 897, 906, 835, 301, 302, 303, 304, 305, 864, 306, - 307, 308, 309, 310, 311, 312, 313, 314, 836, 1284, + 888, 833, 834, 891, 835, 892, 893, 894, 895, 1265, + 896, 897, 836, 301, 302, 303, 304, 305, 864, 306, + 307, 308, 309, 310, 311, 312, 313, 314, 884, 1284, 93, 94, 1281, 315, 1282, 837, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, - 93, 94, 838, 884, 911, 919, 97, 98, 99, 100, + 93, 94, 838, 917, 906, 911, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, - 301, 302, 303, 304, 305, 917, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 919, 306, 307, 308, 309, 310, 311, 312, 313, 314, 1139, 1337, 924, 926, 925, 315, 930, 931, 932, 1344, 933, 1350, 934, 1353, 937, 1356, 1357, 939, 940, 943, 944, 945, 1361, 946, 947, @@ -1604,30 +1604,30 @@ static const short yytable[] = 1394, 1395, 1396, 1397, 1398, 1399, 1400, 1401, 1402, 1403, 1404, 1405, 1406, 1407, 1408, 1409, 1410, 1411, 1412, 1413, 1046, 1058, 1059, 1630, 1064, 1068, 1418, 1102, 288, 289, - 1419, 1070, 1075, 1133, 1074, 1134, 1136, 1183, 1140, 1141, - 1077, 1145, 1076, 1438, 1079, 1146, 1078, 1080, 1084, 1081, - 1083, 128, 129, 1085, 1086, 1087, 1088, 130, 1089, 1090, + 1419, 1070, 1133, 1075, 1074, 1076, 1134, 1136, 1077, 1140, + 1141, 1145, 1079, 1438, 1146, 1078, 1084, 1080, 1081, 1083, + 1085, 128, 129, 1086, 1147, 1087, 1088, 130, 1089, 1090, 1091, 1092, 133, 1093, 1094, 727, 1095, 1098, 728, 1096, - 1097, 1147, 1099, 1100, 1129, 1142, 1151, 1152, 1153, 1154, - 1155, 128, 129, 1156, 1157, 1166, 1169, 130, 1172, 1174, - 1175, 1176, 133, 1179, 1192, 879, 1195, 1196, 880, 1197, + 1097, 1151, 1099, 1100, 1129, 1142, 1152, 1153, 1154, 1155, + 1156, 128, 129, 1157, 1166, 1169, 1172, 130, 1174, 1175, + 1176, 1192, 133, 1179, 1183, 879, 1195, 1196, 880, 1197, 1198, 1199, 1201, 1202, 1204, 1205, 1253, 1206, 1482, 1207, 1208, 1214, 1215, 1218, 1487, 1219, 1498, 1491, 1255, 1721, - 1220, 1724, 1249, 1250, 1257, 1251, 1254, 1263, 1264, 1280, - 910, 1266, 1268, 1270, 1285, 1272, 1279, 1287, 1290, 1288, - 1294, 1514, 1515, 1516, 1517, 1518, 1519, 1520, 1521, 1522, + 1220, 1724, 1249, 1250, 1257, 1251, 1254, 1263, 1264, 1268, + 910, 1266, 1285, 1270, 1272, 1279, 1335, 1280, 1287, 1288, + 1290, 1514, 1515, 1516, 1517, 1518, 1519, 1520, 1521, 1522, 1523, 1524, 1525, 1526, 1527, 1528, 1529, 1530, 1531, 1532, - 1533, 1534, 1335, 1536, 1289, 1358, 1365, 1366, 1295, 1369, - 1291, 1293, 1387, 1299, 1300, 1371, 1548, 1373, 301, 302, - 303, 304, 305, 1303, 306, 307, 308, 309, 310, 311, - 312, 313, 314, 1301, 1304, 1345, 1306, 1351, 315, 1354, - 1788, 93, 326, 1333, 1162, 1374, 1163, 97, 98, 99, + 1533, 1534, 1358, 1536, 1289, 1365, 1366, 1369, 1294, 1295, + 1291, 1293, 1371, 1373, 1300, 1374, 1548, 1375, 301, 302, + 303, 304, 305, 1299, 306, 307, 308, 309, 310, 311, + 312, 313, 314, 1301, 1303, 1345, 1304, 1351, 315, 1354, + 1788, 93, 326, 1306, 1162, 1333, 1163, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, - 120, 1375, 1376, 1377, 1379, 1381, 1382, 1384, 1385, 1414, - 1415, 1423, 1603, 1605, 1607, 1608, 1609, 1610, 1611, 1612, + 120, 1376, 1377, 1379, 1381, 1382, 1384, 1385, 1414, 1387, + 1415, 1417, 1603, 1605, 1607, 1608, 1609, 1610, 1611, 1612, 1613, 1614, 1615, 1616, 1617, 1618, 1619, 1620, 1621, 1622, - 1623, 1624, 1625, 1626, 1627, 1628, 1417, 1422, 93, 506, + 1623, 1624, 1625, 1626, 1627, 1628, 1422, 1423, 93, 506, 348, 1437, 1443, 1643, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 301, 302, @@ -1638,7 +1638,7 @@ static const short yytable[] = 1505, 1700, 1701, 1702, 1703, 1704, 1705, 1706, 1707, 1708, 1709, 1710, 1711, 1712, 1713, 1714, 1715, 1716, 1717, 1718, 1719, 1720, 1507, 1508, 1509, 1510, 1537, 1732, 1582, 1539, - 1541, 1584, 330, 1542, 1544, 1546, 1547, 1549, 337, 1550, + 1541, 1547, 330, 1584, 1542, 1544, 1546, 1549, 337, 1550, 1551, 1552, 128, 327, 1555, 1588, 1553, 1554, 130, 1556, 1252, 1557, 1579, 133, 1581, 1591, 1594, 1598, 1599, 328, 1595, 361, 1601, 1632, 1634, 1638, 1640, 365, 366, 1641, @@ -1741,1034 +1741,1036 @@ static const short yytable[] = 120, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 301, 302, 303, 304, 305, 315, 306, 307, 308, 309, 310, 311, 312, 313, - 314, 0, 0, 0, 0, 0, 315, 0, 0, 301, - 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, - 311, 312, 313, 314, 0, 0, 0, 128, 469, 315, - 0, 0, 0, 130, 0, 1339, 0, 1340, 133, 301, - 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, - 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 0, 0, 0, 473, 540, 27, 28, 541, 542, 31, - 32, 33, 0, 34, 0, 36, 37, 38, 0, 40, - 41, 301, 302, 303, 304, 305, 0, 306, 307, 308, - 309, 310, 311, 312, 313, 314, 53, 0, 1359, 0, - 1360, 315, 0, 0, 1364, 0, 0, 0, 0, 740, - -10, 1, 0, -10, -53, 0, 0, 0, 0, 0, - 1380, 0, 128, 129, 54, 55, 56, 0, 130, 0, + 314, 0, 0, 0, 0, 0, 315, 0, 0, 0, + 540, 27, 28, 541, 542, 31, 32, 33, 0, 34, + 0, 36, 37, 38, 0, 40, 41, 128, 469, 0, + 0, 0, 0, 130, 0, 0, 0, 0, 133, 0, + 0, 0, 53, 0, 0, 0, 540, 27, 28, 541, + 542, 31, 32, 33, 0, 34, 0, 36, 37, 38, + 0, 40, 41, 0, 0, 0, 0, 0, 0, 0, + 54, 55, 56, 301, 302, 303, 304, 305, 53, 306, + 307, 308, 309, 310, 311, 312, 313, 314, 0, 66, + 0, 0, 0, 315, 0, 0, 0, 0, 1359, 1339, + 1360, 1340, 0, 0, 1364, 0, 54, 55, 56, -10, + 1, 0, -10, -53, 0, 0, 0, 0, 0, 0, + 1380, 0, 128, 129, 0, 66, 0, 0, 130, 0, 0, 0, 0, 133, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -53, 0, 0, 0, -53, -53, -53, - -53, -53, -53, -53, -53, -53, 0, -53, -53, -53, - -53, -53, -53, -53, -53, 0, 0, 0, -53, -53, + 0, 0, -53, 0, 0, 0, -53, -53, -53, -53, -53, -53, -53, -53, -53, 0, -53, -53, -53, -53, - -53, 301, 302, 303, 304, 305, 66, 306, 307, 308, - 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 0, 467, 0, 0, 0, 526, -53, -53, - -53, 0, 0, 0, 0, -53, 0, -53, 0, -53, - -53, -53, -53, -53, -53, -53, 0, 0, 543, 0, + -53, -53, -53, -53, 0, 0, 0, -53, -53, -53, + -53, -53, -53, -53, 543, -53, -53, -53, -53, -53, + 540, 27, 28, 541, 542, 31, 32, 33, 0, 34, + 0, 36, 37, 38, 0, 40, 41, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -53, -53, -53, + 548, 0, 53, 0, -53, 0, -53, 0, -53, -53, + -53, -53, -53, -53, -53, 0, -53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1478, 0, 0, - 0, 0, 0, 0, 1483, -10, -10, -10, -10, -10, - -10, -10, -10, 0, 0, 1495, 1496, 0, 0, 0, + 54, 55, 56, 0, 1483, -10, -10, -10, -10, -10, + -10, -10, -10, 0, 0, 1495, 1496, 0, 0, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -53, 2, 3, 0, 4, 540, 27, 28, 541, 542, - 31, 32, 33, 0, 34, 0, 36, 37, 38, 0, - 40, 41, 0, 0, 0, 0, 0, 0, 0, 1538, - 0, 0, 0, 0, 0, 0, 0, 53, 540, 27, - 28, 541, 542, 31, 32, 33, 0, 34, 0, 36, - 37, 38, 0, 40, 41, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 54, 55, 56, 0, 0, - 53, 540, 27, 28, 541, 542, 31, 32, 33, 0, - 34, 0, 36, 37, 38, 0, 40, 41, 0, 0, - 0, 0, 1586, 0, 0, 0, 0, 1593, 54, 55, - 56, 0, 0, 53, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, - 0, 0, 0, 0, 0, 0, 0, 66, 0, 0, - 0, 54, 55, 56, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, - 0, 25, 26, 27, 28, 29, 30, 31, 32, 33, - 66, 34, 35, 36, 37, 38, 39, 40, 41, 548, - 0, 0, 42, 43, 44, 45, 46, 47, 48, 0, - 49, 50, 51, 52, 53, 0, 1681, 0, 0, 0, - 0, 0, 0, 66, 0, 0, 1691, 301, 302, 303, - 304, 305, 772, 306, 307, 308, 309, 310, 311, 312, - 313, 314, 54, 55, 56, 0, 0, 315, 0, 57, - 0, 58, 0, 59, 60, 61, 62, 63, 64, 65, + 2, 3, 0, 4, 301, 302, 303, 304, 305, 0, + 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, + 0, 0, 0, 0, 315, 0, 0, 0, 473, 1538, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, - 622, 623, 624, 625, 626, 627, 301, 302, 303, 304, - 305, 204, 306, 307, 308, 309, 310, 311, 312, 313, - 314, 0, 0, 0, 66, 0, 315, 0, 0, 0, - 0, 0, 0, 0, 741, 1766, 602, 603, 604, 605, - 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, - 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, - 626, 627, 301, 302, 303, 304, 305, 0, 306, 307, - 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 0, 0, 0, 0, 205, 206, 207, - 902, 0, 0, 0, 1818, 208, 209, 210, 211, 212, - 213, 214, 215, 216, 217, 0, 0, 0, 0, 0, - 628, 0, 0, 218, 219, 220, 221, 222, 223, 224, - 225, 226, 227, 0, 228, 229, 230, 231, 232, 233, - 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, - 310, 311, 312, 313, 314, 0, 1872, 0, 0, 0, - 315, 0, 0, 0, 0, 0, 0, 0, 1160, 0, - 0, 301, 302, 303, 304, 305, 964, 306, 307, 308, - 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 0, 0, 301, 302, 303, 304, 305, 1362, - 306, 307, 308, 309, 310, 311, 312, 313, 314, 1917, - 0, 0, 0, 0, 315, 0, 0, 301, 302, 303, - 304, 305, 1363, 306, 307, 308, 309, 310, 311, 312, - 313, 314, 0, 0, 0, 0, 0, 315, 0, 0, - 0, 0, 0, 0, 0, 1420, 0, 1955, 301, 302, + 622, 623, 624, 625, 626, 627, 0, 0, 204, 301, + 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, + 311, 312, 313, 314, 772, 0, 0, 0, 0, 315, + 0, 0, 0, 0, 0, 0, 0, 740, 0, 0, + 0, 0, 1586, 0, 0, 0, 0, 1593, 602, 603, + 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, + 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, + 624, 625, 626, 627, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 205, 206, 207, 0, 0, + 0, 0, 0, 208, 209, 210, 211, 212, 213, 214, + 215, 216, 217, 0, 23, 0, 0, 0, 0, 0, + 628, 218, 219, 220, 221, 222, 223, 224, 225, 226, + 227, 0, 228, 229, 230, 231, 232, 233, 0, 0, + 0, 0, 0, 24, 0, 0, 1681, 25, 26, 27, + 28, 29, 30, 31, 32, 33, 1691, 34, 35, 36, + 37, 38, 39, 40, 41, 0, 0, 0, 42, 43, + 44, 45, 46, 47, 48, 0, 49, 50, 51, 52, + 53, 0, 0, 301, 302, 303, 304, 305, 964, 306, + 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, + 0, 0, 0, 315, 0, 0, 0, 0, 54, 55, + 56, 741, 0, 0, 0, 57, 0, 58, 0, 59, + 60, 61, 62, 63, 64, 65, 0, 66, 540, 27, + 28, 541, 542, 31, 32, 33, 0, 34, 0, 36, + 37, 38, 0, 40, 41, 1766, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 301, 302, 303, 304, 305, + 53, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 0, 0, 0, 0, 0, 315, 0, 0, 0, 0, + 0, 0, 0, 902, 0, 0, 0, 0, 54, 55, + 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1818, 0, 0, 66, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 0, - 0, 301, 302, 303, 304, 305, 1426, 306, 307, 308, + 0, 301, 302, 303, 304, 305, 1160, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 0, 0, 301, 302, 303, 304, 305, 1429, + 0, 315, 0, 0, 0, 0, 1872, 0, 0, 1362, + 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, + 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, + 315, 0, 0, 301, 302, 303, 304, 305, 1363, 306, + 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, + 0, 0, 0, 315, 0, 0, 0, 0, 0, 1917, + 0, 1420, 301, 302, 303, 304, 305, 0, 306, 307, + 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, + 0, 0, 315, 0, 0, 0, 0, 0, 0, 0, + 1426, 0, 301, 302, 303, 304, 305, 1955, 306, 307, + 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, + 0, 0, 315, 0, 0, 301, 302, 303, 304, 305, + 1429, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 0, 0, 0, 0, 0, 315, 0, 0, 301, 302, + 303, 304, 305, 1432, 306, 307, 308, 309, 310, 311, + 312, 313, 314, 0, 0, 0, 0, 0, 315, 0, + 0, 301, 302, 303, 304, 305, 1433, 306, 307, 308, + 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, + 0, 315, 0, 0, 301, 302, 303, 304, 305, 1479, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 0, 0, 301, 302, 303, - 304, 305, 1432, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 1540, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 0, 0, - 301, 302, 303, 304, 305, 1433, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 1543, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 0, 0, 301, 302, 303, 304, 305, 1479, 306, + 315, 0, 0, 301, 302, 303, 304, 305, 1545, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 0, 0, 301, 302, 303, 304, - 305, 1540, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 1791, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 0, 0, 301, - 302, 303, 304, 305, 1543, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 1844, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 0, 0, 301, 302, 303, 304, 305, 1545, 306, 307, - 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 0, 0, 301, 302, 303, 304, 305, - 1791, 306, 307, 308, 309, 310, 311, 312, 313, 314, - 0, 0, 0, 0, 0, 315, 0, 0, 301, 302, - 303, 304, 305, 1844, 306, 307, 308, 309, 310, 311, + 0, 467, 0, 0, 0, 526, 301, 302, 303, 304, + 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, + 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, + 304, 305, 526, 306, 307, 308, 309, 310, 311, 312, + 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, + 303, 304, 305, 527, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 526, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 557, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 527, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 677, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 301, 302, 303, 304, 305, 557, 306, 307, 308, + 315, 301, 302, 303, 304, 305, 678, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 301, 302, 303, 304, 305, 677, 306, 307, + 0, 315, 301, 302, 303, 304, 305, 691, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 301, 302, 303, 304, 305, 678, 306, + 0, 0, 315, 301, 302, 303, 304, 305, 692, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 301, 302, 303, 304, 305, 691, + 0, 0, 0, 315, 301, 302, 303, 304, 305, 693, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, 305, - 692, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 694, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, - 305, 693, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 695, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, - 304, 305, 694, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 696, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, - 303, 304, 305, 695, 306, 307, 308, 309, 310, 311, + 303, 304, 305, 754, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 696, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 755, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 754, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 756, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 301, 302, 303, 304, 305, 755, 306, 307, 308, + 315, 301, 302, 303, 304, 305, 900, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 301, 302, 303, 304, 305, 756, 306, 307, + 0, 315, 301, 302, 303, 304, 305, 901, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 301, 302, 303, 304, 305, 900, 306, + 0, 0, 315, 301, 302, 303, 304, 305, 920, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 301, 302, 303, 304, 305, 901, + 0, 0, 0, 315, 301, 302, 303, 304, 305, 1056, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, 305, - 920, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 1057, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, - 305, 1056, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 1071, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, - 304, 305, 1057, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 1072, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, - 303, 304, 305, 1071, 306, 307, 308, 309, 310, 311, + 303, 304, 305, 1103, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 1072, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 1104, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 1103, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 1105, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 301, 302, 303, 304, 305, 1104, 306, 307, 308, + 315, 301, 302, 303, 304, 305, 1106, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 301, 302, 303, 304, 305, 1105, 306, 307, + 0, 315, 301, 302, 303, 304, 305, 1107, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 301, 302, 303, 304, 305, 1106, 306, + 0, 0, 315, 301, 302, 303, 304, 305, 1108, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 301, 302, 303, 304, 305, 1107, + 0, 0, 0, 315, 301, 302, 303, 304, 305, 1109, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, 305, - 1108, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 1110, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, - 305, 1109, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 1111, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, - 304, 305, 1110, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 1112, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, - 303, 304, 305, 1111, 306, 307, 308, 309, 310, 311, + 303, 304, 305, 1113, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 1112, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 1114, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 1113, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 1115, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 301, 302, 303, 304, 305, 1114, 306, 307, 308, + 315, 301, 302, 303, 304, 305, 1116, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 301, 302, 303, 304, 305, 1115, 306, 307, + 0, 315, 301, 302, 303, 304, 305, 1117, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 301, 302, 303, 304, 305, 1116, 306, + 0, 0, 315, 301, 302, 303, 304, 305, 1118, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 301, 302, 303, 304, 305, 1117, + 0, 0, 0, 315, 301, 302, 303, 304, 305, 1119, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, 305, - 1118, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 1120, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, - 305, 1119, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 1121, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, - 304, 305, 1120, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 1122, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, - 303, 304, 305, 1121, 306, 307, 308, 309, 310, 311, + 303, 304, 305, 1123, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 1122, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 1124, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 1123, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 1125, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 301, 302, 303, 304, 305, 1124, 306, 307, 308, + 315, 301, 302, 303, 304, 305, 1126, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 301, 302, 303, 304, 305, 1125, 306, 307, + 0, 315, 301, 302, 303, 304, 305, 1127, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 301, 302, 303, 304, 305, 1126, 306, + 0, 0, 315, 301, 302, 303, 304, 305, 1128, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 301, 302, 303, 304, 305, 1127, + 0, 0, 0, 315, 301, 302, 303, 304, 305, 1144, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, 305, - 1128, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 1259, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, - 305, 1144, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 1273, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, - 304, 305, 1259, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 1274, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, - 303, 304, 305, 1273, 306, 307, 308, 309, 310, 311, + 303, 304, 305, 1283, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 1274, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 1286, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 1283, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 1297, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 301, 302, 303, 304, 305, 1286, 306, 307, 308, + 315, 301, 302, 303, 304, 305, 1302, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 301, 302, 303, 304, 305, 1297, 306, 307, + 0, 315, 301, 302, 303, 304, 305, 1305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 301, 302, 303, 304, 305, 1302, 306, + 0, 0, 315, 301, 302, 303, 304, 305, 1307, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 301, 302, 303, 304, 305, 1305, + 0, 0, 0, 315, 301, 302, 303, 304, 305, 1308, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, 305, - 1307, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 1309, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, - 305, 1308, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 1310, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, - 304, 305, 1309, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 1311, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, - 303, 304, 305, 1310, 306, 307, 308, 309, 310, 311, + 303, 304, 305, 1312, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 1311, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 1313, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 1312, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 1314, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 301, 302, 303, 304, 305, 1313, 306, 307, 308, + 315, 301, 302, 303, 304, 305, 1315, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 301, 302, 303, 304, 305, 1314, 306, 307, + 0, 315, 301, 302, 303, 304, 305, 1316, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 301, 302, 303, 304, 305, 1315, 306, + 0, 0, 315, 301, 302, 303, 304, 305, 1317, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 301, 302, 303, 304, 305, 1316, + 0, 0, 0, 315, 301, 302, 303, 304, 305, 1318, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, 305, - 1317, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 1319, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, - 305, 1318, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 1320, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, - 304, 305, 1319, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 1321, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, - 303, 304, 305, 1320, 306, 307, 308, 309, 310, 311, + 303, 304, 305, 1322, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 1321, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 1323, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 1322, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 1324, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 301, 302, 303, 304, 305, 1323, 306, 307, 308, + 315, 301, 302, 303, 304, 305, 1325, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 301, 302, 303, 304, 305, 1324, 306, 307, + 0, 315, 301, 302, 303, 304, 305, 1326, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 301, 302, 303, 304, 305, 1325, 306, + 0, 0, 315, 301, 302, 303, 304, 305, 1327, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 301, 302, 303, 304, 305, 1326, + 0, 0, 0, 315, 301, 302, 303, 304, 305, 1328, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, 305, - 1327, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 1329, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, - 305, 1328, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 1330, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, - 304, 305, 1329, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 1331, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, - 303, 304, 305, 1330, 306, 307, 308, 309, 310, 311, + 303, 304, 305, 1332, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 1331, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 1336, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 1332, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 1442, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 301, 302, 303, 304, 305, 1336, 306, 307, 308, + 315, 301, 302, 303, 304, 305, 1454, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 301, 302, 303, 304, 305, 1442, 306, 307, + 0, 315, 301, 302, 303, 304, 305, 1455, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 301, 302, 303, 304, 305, 1454, 306, + 0, 0, 315, 301, 302, 303, 304, 305, 1456, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 301, 302, 303, 304, 305, 1455, + 0, 0, 0, 315, 301, 302, 303, 304, 305, 1457, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, 305, - 1456, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 1458, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, - 305, 1457, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 1459, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, - 304, 305, 1458, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 1460, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, - 303, 304, 305, 1459, 306, 307, 308, 309, 310, 311, + 303, 304, 305, 1461, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 1460, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 1462, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 1461, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 1463, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 301, 302, 303, 304, 305, 1462, 306, 307, 308, + 315, 301, 302, 303, 304, 305, 1464, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 301, 302, 303, 304, 305, 1463, 306, 307, + 0, 315, 301, 302, 303, 304, 305, 1465, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 301, 302, 303, 304, 305, 1464, 306, + 0, 0, 315, 301, 302, 303, 304, 305, 1466, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 301, 302, 303, 304, 305, 1465, + 0, 0, 0, 315, 301, 302, 303, 304, 305, 1467, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, 305, - 1466, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 1468, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, - 305, 1467, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 1469, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, - 304, 305, 1468, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 1470, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, - 303, 304, 305, 1469, 306, 307, 308, 309, 310, 311, + 303, 304, 305, 1471, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 1470, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 1472, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 1471, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 1473, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 301, 302, 303, 304, 305, 1472, 306, 307, 308, + 315, 301, 302, 303, 304, 305, 1474, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 301, 302, 303, 304, 305, 1473, 306, 307, + 0, 315, 301, 302, 303, 304, 305, 1476, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 301, 302, 303, 304, 305, 1474, 306, + 0, 0, 315, 301, 302, 303, 304, 305, 1558, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 301, 302, 303, 304, 305, 1476, + 0, 0, 0, 315, 301, 302, 303, 304, 305, 1559, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, 305, - 1558, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 1560, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, - 305, 1559, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 1561, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, - 304, 305, 1560, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 1562, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, - 303, 304, 305, 1561, 306, 307, 308, 309, 310, 311, + 303, 304, 305, 1563, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 1562, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 1564, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 1563, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 1565, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 301, 302, 303, 304, 305, 1564, 306, 307, 308, + 315, 301, 302, 303, 304, 305, 1566, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 301, 302, 303, 304, 305, 1565, 306, 307, + 0, 315, 301, 302, 303, 304, 305, 1567, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 301, 302, 303, 304, 305, 1566, 306, + 0, 0, 315, 301, 302, 303, 304, 305, 1568, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 301, 302, 303, 304, 305, 1567, + 0, 0, 0, 315, 301, 302, 303, 304, 305, 1569, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, 305, - 1568, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 1570, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, - 305, 1569, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 1571, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, - 304, 305, 1570, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 1572, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, - 303, 304, 305, 1571, 306, 307, 308, 309, 310, 311, + 303, 304, 305, 1573, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 1572, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 1574, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 1573, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 1575, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 301, 302, 303, 304, 305, 1574, 306, 307, 308, + 315, 301, 302, 303, 304, 305, 1576, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 301, 302, 303, 304, 305, 1575, 306, 307, + 0, 315, 301, 302, 303, 304, 305, 1577, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 301, 302, 303, 304, 305, 1576, 306, + 0, 0, 315, 301, 302, 303, 304, 305, 1578, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 301, 302, 303, 304, 305, 1577, + 0, 0, 0, 315, 301, 302, 303, 304, 305, 1654, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, 305, - 1578, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 1655, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, - 305, 1654, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 1656, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, - 304, 305, 1655, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 1657, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, - 303, 304, 305, 1656, 306, 307, 308, 309, 310, 311, + 303, 304, 305, 1658, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 1657, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 1659, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 1658, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 1660, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 301, 302, 303, 304, 305, 1659, 306, 307, 308, + 315, 301, 302, 303, 304, 305, 1661, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 301, 302, 303, 304, 305, 1660, 306, 307, + 0, 315, 301, 302, 303, 304, 305, 1662, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 301, 302, 303, 304, 305, 1661, 306, + 0, 0, 315, 301, 302, 303, 304, 305, 1663, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 301, 302, 303, 304, 305, 1662, + 0, 0, 0, 315, 301, 302, 303, 304, 305, 1664, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, 305, - 1663, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 1665, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, - 305, 1664, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 1666, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, - 304, 305, 1665, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 1667, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, - 303, 304, 305, 1666, 306, 307, 308, 309, 310, 311, + 303, 304, 305, 1668, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 1667, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 1669, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 1668, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 1670, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 301, 302, 303, 304, 305, 1669, 306, 307, 308, + 315, 301, 302, 303, 304, 305, 1671, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 301, 302, 303, 304, 305, 1670, 306, 307, + 0, 315, 301, 302, 303, 304, 305, 1672, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 301, 302, 303, 304, 305, 1671, 306, + 0, 0, 315, 301, 302, 303, 304, 305, 1673, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 301, 302, 303, 304, 305, 1672, + 0, 0, 0, 315, 301, 302, 303, 304, 305, 1674, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, 305, - 1673, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 1731, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, - 305, 1674, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 1738, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, - 304, 305, 1731, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 1739, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, - 303, 304, 305, 1738, 306, 307, 308, 309, 310, 311, + 303, 304, 305, 1740, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 1739, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 1741, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 1740, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 1742, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 301, 302, 303, 304, 305, 1741, 306, 307, 308, + 315, 301, 302, 303, 304, 305, 1743, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 301, 302, 303, 304, 305, 1742, 306, 307, + 0, 315, 301, 302, 303, 304, 305, 1744, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 301, 302, 303, 304, 305, 1743, 306, + 0, 0, 315, 301, 302, 303, 304, 305, 1745, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 301, 302, 303, 304, 305, 1744, + 0, 0, 0, 315, 301, 302, 303, 304, 305, 1746, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, 305, - 1745, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 1747, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, - 305, 1746, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 1748, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, - 304, 305, 1747, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 1749, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, - 303, 304, 305, 1748, 306, 307, 308, 309, 310, 311, + 303, 304, 305, 1750, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 1749, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 1751, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 1750, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 1752, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 301, 302, 303, 304, 305, 1751, 306, 307, 308, + 315, 301, 302, 303, 304, 305, 1753, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 301, 302, 303, 304, 305, 1752, 306, 307, + 0, 315, 301, 302, 303, 304, 305, 1754, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 301, 302, 303, 304, 305, 1753, 306, + 0, 0, 315, 301, 302, 303, 304, 305, 1755, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 301, 302, 303, 304, 305, 1754, + 0, 0, 0, 315, 301, 302, 303, 304, 305, 1790, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, 305, - 1755, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 1798, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, - 305, 1790, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 1799, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, - 304, 305, 1798, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 1800, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, - 303, 304, 305, 1799, 306, 307, 308, 309, 310, 311, + 303, 304, 305, 1801, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 1800, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 1802, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 1801, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 1803, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 301, 302, 303, 304, 305, 1802, 306, 307, 308, + 315, 301, 302, 303, 304, 305, 1804, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 301, 302, 303, 304, 305, 1803, 306, 307, + 0, 315, 301, 302, 303, 304, 305, 1805, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 301, 302, 303, 304, 305, 1804, 306, + 0, 0, 315, 301, 302, 303, 304, 305, 1806, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 301, 302, 303, 304, 305, 1805, + 0, 0, 0, 315, 301, 302, 303, 304, 305, 1807, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, 305, - 1806, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 1808, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, - 305, 1807, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 1809, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, - 304, 305, 1808, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 1810, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, - 303, 304, 305, 1809, 306, 307, 308, 309, 310, 311, + 303, 304, 305, 1811, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 1810, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 1812, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 1811, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 1813, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 301, 302, 303, 304, 305, 1812, 306, 307, 308, + 315, 301, 302, 303, 304, 305, 1814, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 301, 302, 303, 304, 305, 1813, 306, 307, + 0, 315, 301, 302, 303, 304, 305, 1815, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 301, 302, 303, 304, 305, 1814, 306, + 0, 0, 315, 301, 302, 303, 304, 305, 1853, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 301, 302, 303, 304, 305, 1815, + 0, 0, 0, 315, 301, 302, 303, 304, 305, 1854, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, 305, - 1853, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 1855, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, - 305, 1854, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 1856, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, - 304, 305, 1855, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 1857, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, - 303, 304, 305, 1856, 306, 307, 308, 309, 310, 311, + 303, 304, 305, 1858, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 1857, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 1859, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 1858, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 1860, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 301, 302, 303, 304, 305, 1859, 306, 307, 308, + 315, 301, 302, 303, 304, 305, 1861, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 301, 302, 303, 304, 305, 1860, 306, 307, + 0, 315, 301, 302, 303, 304, 305, 1862, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 301, 302, 303, 304, 305, 1861, 306, + 0, 0, 315, 301, 302, 303, 304, 305, 1863, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 301, 302, 303, 304, 305, 1862, + 0, 0, 0, 315, 301, 302, 303, 304, 305, 1864, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, 305, - 1863, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 1865, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, - 305, 1864, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 1866, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, - 304, 305, 1865, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 1867, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, - 303, 304, 305, 1866, 306, 307, 308, 309, 310, 311, + 303, 304, 305, 1868, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 1867, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 1869, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 1868, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 1870, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 301, 302, 303, 304, 305, 1869, 306, 307, 308, + 315, 301, 302, 303, 304, 305, 1902, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 301, 302, 303, 304, 305, 1870, 306, 307, + 0, 315, 301, 302, 303, 304, 305, 1903, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 301, 302, 303, 304, 305, 1902, 306, + 0, 0, 315, 301, 302, 303, 304, 305, 1904, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 301, 302, 303, 304, 305, 1903, + 0, 0, 0, 315, 301, 302, 303, 304, 305, 1905, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, 305, - 1904, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 1906, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, - 305, 1905, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 1907, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, - 304, 305, 1906, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 1908, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, - 303, 304, 305, 1907, 306, 307, 308, 309, 310, 311, + 303, 304, 305, 1909, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 1908, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 1910, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 1909, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 1911, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 301, 302, 303, 304, 305, 1910, 306, 307, 308, + 315, 301, 302, 303, 304, 305, 1912, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 301, 302, 303, 304, 305, 1911, 306, 307, + 0, 315, 301, 302, 303, 304, 305, 1913, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 301, 302, 303, 304, 305, 1912, 306, + 0, 0, 315, 301, 302, 303, 304, 305, 1914, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 301, 302, 303, 304, 305, 1913, + 0, 0, 0, 315, 301, 302, 303, 304, 305, 1915, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, 305, - 1914, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 1916, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, - 305, 1915, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 1940, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, - 304, 305, 1916, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 1941, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, - 303, 304, 305, 1940, 306, 307, 308, 309, 310, 311, + 303, 304, 305, 1942, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 1941, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 1943, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 1942, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 1944, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 301, 302, 303, 304, 305, 1943, 306, 307, 308, + 315, 301, 302, 303, 304, 305, 1945, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 301, 302, 303, 304, 305, 1944, 306, 307, + 0, 315, 301, 302, 303, 304, 305, 1946, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 301, 302, 303, 304, 305, 1945, 306, + 0, 0, 315, 301, 302, 303, 304, 305, 1947, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 301, 302, 303, 304, 305, 1946, + 0, 0, 0, 315, 301, 302, 303, 304, 305, 1948, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, 305, - 1947, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 1949, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, - 305, 1948, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 1950, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, - 304, 305, 1949, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 1951, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, - 303, 304, 305, 1950, 306, 307, 308, 309, 310, 311, + 303, 304, 305, 1952, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 1951, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 1953, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 1952, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 1954, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 301, 302, 303, 304, 305, 1953, 306, 307, 308, + 315, 301, 302, 303, 304, 305, 1984, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 301, 302, 303, 304, 305, 1954, 306, 307, + 0, 315, 301, 302, 303, 304, 305, 1985, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 301, 302, 303, 304, 305, 1984, 306, + 0, 0, 315, 301, 302, 303, 304, 305, 1986, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 301, 302, 303, 304, 305, 1985, + 0, 0, 0, 315, 301, 302, 303, 304, 305, 1987, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, 305, - 1986, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 1988, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, - 305, 1987, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 1989, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, - 304, 305, 1988, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 1990, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, - 303, 304, 305, 1989, 306, 307, 308, 309, 310, 311, + 303, 304, 305, 1991, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 1990, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 1992, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 1991, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 1993, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 301, 302, 303, 304, 305, 1992, 306, 307, 308, + 315, 301, 302, 303, 304, 305, 1994, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 301, 302, 303, 304, 305, 1993, 306, 307, + 0, 315, 301, 302, 303, 304, 305, 1995, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 301, 302, 303, 304, 305, 1994, 306, + 0, 0, 315, 301, 302, 303, 304, 305, 1996, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 301, 302, 303, 304, 305, 1995, + 0, 0, 0, 315, 301, 302, 303, 304, 305, 1997, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, 305, - 1996, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 1998, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, - 305, 1997, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 2028, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, - 304, 305, 1998, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 2029, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, - 303, 304, 305, 2028, 306, 307, 308, 309, 310, 311, + 303, 304, 305, 2030, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 2029, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 2031, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 2030, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 2032, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 301, 302, 303, 304, 305, 2031, 306, 307, 308, + 315, 301, 302, 303, 304, 305, 2033, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 301, 302, 303, 304, 305, 2032, 306, 307, + 0, 315, 301, 302, 303, 304, 305, 2034, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 301, 302, 303, 304, 305, 2033, 306, + 0, 0, 315, 301, 302, 303, 304, 305, 2035, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 301, 302, 303, 304, 305, 2034, + 0, 0, 0, 315, 301, 302, 303, 304, 305, 2036, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, 305, - 2035, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 2059, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, - 305, 2036, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 2060, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, - 304, 305, 2059, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 2061, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, - 303, 304, 305, 2060, 306, 307, 308, 309, 310, 311, + 303, 304, 305, 2062, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 2061, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 2063, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 2062, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 2064, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 301, 302, 303, 304, 305, 2063, 306, 307, 308, + 315, 301, 302, 303, 304, 305, 2065, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 301, 302, 303, 304, 305, 2064, 306, 307, + 0, 315, 301, 302, 303, 304, 305, 2066, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 301, 302, 303, 304, 305, 2065, 306, + 0, 0, 315, 301, 302, 303, 304, 305, 2067, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 301, 302, 303, 304, 305, 2066, + 0, 0, 0, 315, 301, 302, 303, 304, 305, 2101, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, 305, - 2067, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 2102, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, - 305, 2101, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 2103, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, - 304, 305, 2102, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 2104, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, - 303, 304, 305, 2103, 306, 307, 308, 309, 310, 311, + 303, 304, 305, 2105, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 2104, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 2106, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 2105, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 2107, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 301, 302, 303, 304, 305, 2106, 306, 307, 308, + 315, 301, 302, 303, 304, 305, 2108, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 301, 302, 303, 304, 305, 2107, 306, 307, + 0, 315, 301, 302, 303, 304, 305, 2109, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 301, 302, 303, 304, 305, 2108, 306, + 0, 0, 315, 301, 302, 303, 304, 305, 2131, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 301, 302, 303, 304, 305, 2109, + 0, 0, 0, 315, 301, 302, 303, 304, 305, 2132, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, 305, - 2131, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 2133, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, - 305, 2132, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 2134, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, - 304, 305, 2133, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 2135, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, - 303, 304, 305, 2134, 306, 307, 308, 309, 310, 311, + 303, 304, 305, 2136, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 2135, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 2149, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 2136, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 2150, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 301, 302, 303, 304, 305, 2149, 306, 307, 308, + 315, 301, 302, 303, 304, 305, 2151, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 301, 302, 303, 304, 305, 2150, 306, 307, + 0, 315, 301, 302, 303, 304, 305, 2152, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 301, 302, 303, 304, 305, 2151, 306, + 0, 0, 315, 301, 302, 303, 304, 305, 2153, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 301, 302, 303, 304, 305, 2152, + 0, 0, 0, 315, 301, 302, 303, 304, 305, 2154, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, 305, - 2153, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 2170, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, - 305, 2154, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 2171, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, - 304, 305, 2170, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 2172, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, - 303, 304, 305, 2171, 306, 307, 308, 309, 310, 311, + 303, 304, 305, 2173, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 2172, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 2174, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 2173, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 2175, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 301, 302, 303, 304, 305, 2174, 306, 307, 308, + 315, 301, 302, 303, 304, 305, 2194, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 301, 302, 303, 304, 305, 2175, 306, 307, + 0, 315, 301, 302, 303, 304, 305, 2195, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 301, 302, 303, 304, 305, 2194, 306, + 0, 0, 315, 301, 302, 303, 304, 305, 2196, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 301, 302, 303, 304, 305, 2195, + 0, 0, 0, 315, 301, 302, 303, 304, 305, 2206, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, 305, - 2196, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 2207, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, - 305, 2206, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 2208, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, - 304, 305, 2207, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 2221, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, - 303, 304, 305, 2208, 306, 307, 308, 309, 310, 311, + 303, 304, 305, 2222, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 2221, 306, 307, 308, 309, 310, + 302, 303, 304, 305, 2223, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 2222, 306, 307, 308, 309, + 301, 302, 303, 304, 305, 2239, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 301, 302, 303, 304, 305, 2223, 306, 307, 308, + 315, 301, 302, 303, 304, 305, 2240, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 301, 302, 303, 304, 305, 2239, 306, 307, + 0, 315, 301, 302, 303, 304, 305, 2241, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 301, 302, 303, 304, 305, 2240, 306, + 0, 0, 315, 301, 302, 303, 304, 305, 2245, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 301, 302, 303, 304, 305, 2241, + 0, 0, 0, 315, 301, 302, 303, 304, 305, 2246, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, 305, - 2245, 306, 307, 308, 309, 310, 311, 312, 313, 314, + 2247, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, 304, - 305, 2246, 306, 307, 308, 309, 310, 311, 312, 313, + 305, 2251, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, 303, - 304, 305, 2247, 306, 307, 308, 309, 310, 311, 312, + 304, 305, 2252, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, 302, - 303, 304, 305, 2251, 306, 307, 308, 309, 310, 311, - 312, 313, 314, 0, 0, 0, 0, 0, 315, 301, - 302, 303, 304, 305, 2252, 306, 307, 308, 309, 310, - 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 301, 302, 303, 304, 305, 2253, 306, 307, 308, 309, - 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 0, 0, 0, 599, 301, 302, 303, 304, 305, - 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, - 0, 0, 0, 0, 0, 315, 0, 0, 0, 656, - 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, - 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 0, 0, 0, 658, 301, 302, 303, 304, 305, - 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, - 0, 0, 0, 0, 0, 315, 0, 0, 0, 660, - 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, - 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 0, 0, 0, 662, 301, 302, 303, 304, 305, - 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, - 0, 0, 0, 0, 0, 315, 0, 0, 0, 664, - 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, - 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 0, 0, 0, 666, 301, 302, 303, 304, 305, - 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, - 0, 0, 0, 0, 0, 315, 0, 0, 0, 668, - 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, - 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 0, 0, 0, 670, 301, 302, 303, 304, 305, - 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, - 0, 0, 0, 0, 0, 315, 0, 0, 0, 672, - 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, - 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 0, 0, 0, 674, 301, 302, 303, 304, 305, - 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, - 0, 0, 0, 0, 0, 315, 0, 0, 0, 676, - 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, - 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 0, 0, 0, 680, 301, 302, 303, 304, 305, - 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, - 0, 0, 0, 0, 0, 315, 0, 0, 0, 682, - 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, - 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 0, 0, 0, 684, 301, 302, 303, 304, 305, - 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, - 0, 0, 0, 0, 0, 315, 0, 0, 0, 686, - 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, - 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 0, 0, 0, 688, 301, 302, 303, 304, 305, - 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, - 0, 0, 0, 0, 0, 315, 0, 0, 0, 690, - 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, - 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 0, 0, 0, 757, 301, 302, 303, 304, 305, - 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, - 0, 0, 0, 0, 0, 315, 0, 0, 0, 762, - 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, - 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 0, 0, 0, 992, 301, 302, 303, 304, 305, - 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, - 0, 0, 0, 0, 0, 315, 0, 0, 0, 994, - 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, - 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 0, 0, 0, 996, 301, 302, 303, 304, 305, - 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, - 0, 0, 0, 0, 0, 315, 0, 0, 0, 998, - 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, - 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 0, 0, 0, 999, 301, 302, 303, 304, 305, - 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, - 0, 0, 0, 0, 0, 315, 0, 0, 0, 1137, + 303, 304, 305, 2253, 306, 307, 308, 309, 310, 311, + 312, 313, 314, 0, 0, 0, 0, 0, 315, 0, + 0, 0, 599, 301, 302, 303, 304, 305, 0, 306, + 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, + 0, 0, 0, 315, 0, 0, 0, 656, 301, 302, + 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, + 312, 313, 314, 0, 0, 0, 0, 0, 315, 0, + 0, 0, 658, 301, 302, 303, 304, 305, 0, 306, + 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, + 0, 0, 0, 315, 0, 0, 0, 660, 301, 302, + 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, + 312, 313, 314, 0, 0, 0, 0, 0, 315, 0, + 0, 0, 662, 301, 302, 303, 304, 305, 0, 306, + 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, + 0, 0, 0, 315, 0, 0, 0, 664, 301, 302, + 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, + 312, 313, 314, 0, 0, 0, 0, 0, 315, 0, + 0, 0, 666, 301, 302, 303, 304, 305, 0, 306, + 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, + 0, 0, 0, 315, 0, 0, 0, 668, 301, 302, + 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, + 312, 313, 314, 0, 0, 0, 0, 0, 315, 0, + 0, 0, 670, 301, 302, 303, 304, 305, 0, 306, + 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, + 0, 0, 0, 315, 0, 0, 0, 672, 301, 302, + 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, + 312, 313, 314, 0, 0, 0, 0, 0, 315, 0, + 0, 0, 674, 301, 302, 303, 304, 305, 0, 306, + 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, + 0, 0, 0, 315, 0, 0, 0, 676, 301, 302, + 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, + 312, 313, 314, 0, 0, 0, 0, 0, 315, 0, + 0, 0, 680, 301, 302, 303, 304, 305, 0, 306, + 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, + 0, 0, 0, 315, 0, 0, 0, 682, 301, 302, + 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, + 312, 313, 314, 0, 0, 0, 0, 0, 315, 0, + 0, 0, 684, 301, 302, 303, 304, 305, 0, 306, + 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, + 0, 0, 0, 315, 0, 0, 0, 686, 301, 302, + 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, + 312, 313, 314, 0, 0, 0, 0, 0, 315, 0, + 0, 0, 688, 301, 302, 303, 304, 305, 0, 306, + 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, + 0, 0, 0, 315, 0, 0, 0, 690, 301, 302, + 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, + 312, 313, 314, 0, 0, 0, 0, 0, 315, 0, + 0, 0, 757, 301, 302, 303, 304, 305, 0, 306, + 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, + 0, 0, 0, 315, 0, 0, 0, 762, 301, 302, + 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, + 312, 313, 314, 0, 0, 0, 0, 0, 315, 0, + 0, 0, 992, 301, 302, 303, 304, 305, 0, 306, + 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, + 0, 0, 0, 315, 0, 0, 0, 994, 301, 302, + 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, + 312, 313, 314, 0, 0, 0, 0, 0, 315, 0, + 0, 0, 996, 301, 302, 303, 304, 305, 0, 306, + 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, + 0, 0, 0, 315, 0, 0, 0, 998, 301, 302, + 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, + 312, 313, 314, 0, 0, 0, 0, 0, 315, 0, + 0, 0, 999, 301, 302, 303, 304, 305, 0, 306, + 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, + 0, 0, 0, 315, 0, 0, 0, 1137, 301, 302, + 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, + 312, 313, 314, 0, 0, 0, 0, 0, 315, 0, + 497, 301, 302, 303, 304, 305, 0, 306, 307, 308, + 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, + 0, 315, 0, 498, 301, 302, 303, 304, 305, 0, + 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, + 0, 0, 0, 0, 315, 0, 499, 301, 302, 303, + 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, + 313, 314, 0, 0, 0, 0, 0, 315, 0, 501, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 0, 497, 301, 302, 303, 304, 305, 0, 306, + 315, 0, 503, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 0, 498, 301, 302, 303, 304, + 0, 0, 0, 315, 0, 504, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, - 314, 0, 0, 0, 0, 0, 315, 0, 499, 301, + 314, 0, 0, 0, 0, 0, 315, 0, 511, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 0, 501, 301, 302, 303, 304, 305, 0, 306, 307, + 0, 551, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 0, 503, 301, 302, 303, 304, 305, + 0, 0, 315, 0, 552, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, - 0, 0, 0, 0, 0, 315, 0, 504, 301, 302, + 0, 0, 0, 0, 0, 315, 0, 555, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 0, - 511, 301, 302, 303, 304, 305, 0, 306, 307, 308, + 561, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 0, 551, 301, 302, 303, 304, 305, 0, + 0, 315, 0, 655, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, - 0, 0, 0, 0, 315, 0, 552, 301, 302, 303, + 0, 0, 0, 0, 315, 0, 657, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, - 313, 314, 0, 0, 0, 0, 0, 315, 0, 555, + 313, 314, 0, 0, 0, 0, 0, 315, 0, 659, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 0, 561, 301, 302, 303, 304, 305, 0, 306, + 315, 0, 661, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 0, 655, 301, 302, 303, 304, + 0, 0, 0, 315, 0, 663, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, - 314, 0, 0, 0, 0, 0, 315, 0, 657, 301, + 314, 0, 0, 0, 0, 0, 315, 0, 665, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 0, 659, 301, 302, 303, 304, 305, 0, 306, 307, + 0, 667, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 0, 661, 301, 302, 303, 304, 305, + 0, 0, 315, 0, 669, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, - 0, 0, 0, 0, 0, 315, 0, 663, 301, 302, + 0, 0, 0, 0, 0, 315, 0, 671, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 0, - 665, 301, 302, 303, 304, 305, 0, 306, 307, 308, + 673, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 0, 667, 301, 302, 303, 304, 305, 0, + 0, 315, 0, 675, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, - 0, 0, 0, 0, 315, 0, 669, 301, 302, 303, + 0, 0, 0, 0, 315, 0, 679, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, - 313, 314, 0, 0, 0, 0, 0, 315, 0, 671, + 313, 314, 0, 0, 0, 0, 0, 315, 0, 681, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 0, 673, 301, 302, 303, 304, 305, 0, 306, + 315, 0, 683, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 0, 675, 301, 302, 303, 304, + 0, 0, 0, 315, 0, 685, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, - 314, 0, 0, 0, 0, 0, 315, 0, 679, 301, + 314, 0, 0, 0, 0, 0, 315, 0, 687, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 0, 681, 301, 302, 303, 304, 305, 0, 306, 307, + 0, 689, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 0, 683, 301, 302, 303, 304, 305, + 0, 0, 315, 0, 722, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, - 0, 0, 0, 0, 0, 315, 0, 685, 301, 302, + 0, 0, 0, 0, 0, 315, 0, 724, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 0, - 687, 301, 302, 303, 304, 305, 0, 306, 307, 308, + 736, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 0, 689, 301, 302, 303, 304, 305, 0, + 0, 315, 0, 737, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, - 0, 0, 0, 0, 315, 0, 722, 301, 302, 303, + 0, 0, 0, 0, 315, 0, 738, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, - 313, 314, 0, 0, 0, 0, 0, 315, 0, 724, + 313, 314, 0, 0, 0, 0, 0, 315, 0, 742, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 0, 736, 301, 302, 303, 304, 305, 0, 306, + 315, 0, 743, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 0, 737, 301, 302, 303, 304, + 0, 0, 0, 315, 0, 744, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, - 314, 0, 0, 0, 0, 0, 315, 0, 738, 301, + 314, 0, 0, 0, 0, 0, 315, 0, 745, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 0, 742, 301, 302, 303, 304, 305, 0, 306, 307, + 0, 746, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 0, 743, 301, 302, 303, 304, 305, + 0, 0, 315, 0, 768, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, - 0, 0, 0, 0, 0, 315, 0, 744, 301, 302, + 0, 0, 0, 0, 0, 315, 0, 775, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 0, - 745, 301, 302, 303, 304, 305, 0, 306, 307, 308, + 991, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 0, 746, 301, 302, 303, 304, 305, 0, + 0, 315, 0, 993, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, - 0, 0, 0, 0, 315, 0, 768, 301, 302, 303, + 0, 0, 0, 0, 315, 0, 995, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, - 313, 314, 0, 0, 0, 0, 0, 315, 0, 775, + 313, 314, 0, 0, 0, 0, 0, 315, 0, 997, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 0, 991, 301, 302, 303, 304, 305, 0, 306, + 315, 0, 1060, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 0, 993, 301, 302, 303, 304, + 0, 0, 0, 315, 0, 1161, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, - 314, 0, 0, 0, 0, 0, 315, 0, 995, 301, + 314, 0, 0, 0, 0, 0, 315, 0, 1189, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 0, 997, 301, 302, 303, 304, 305, 0, 306, 307, + 0, 1292, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 0, 1060, 301, 302, 303, 304, 305, + 0, 0, 315, 0, 1296, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, - 0, 0, 0, 0, 0, 315, 0, 1161, 301, 302, + 0, 0, 0, 0, 0, 315, 0, 1298, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 0, - 1189, 301, 302, 303, 304, 305, 0, 306, 307, 308, + 1416, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 0, 1292, 301, 302, 303, 304, 305, 0, + 0, 315, 0, 1445, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, - 0, 0, 0, 0, 315, 0, 1296, 301, 302, 303, + 0, 0, 0, 0, 315, 0, 1447, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, - 313, 314, 0, 0, 0, 0, 0, 315, 0, 1298, + 313, 314, 0, 0, 0, 0, 0, 315, 0, 1449, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 0, 1416, 301, 302, 303, 304, 305, 0, 306, + 315, 0, 1451, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 0, 1445, 301, 302, 303, 304, + 0, 0, 0, 315, 0, 1452, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, - 314, 0, 0, 0, 0, 0, 315, 0, 1447, 301, + 314, 0, 0, 0, 0, 0, 315, 0, 1453, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 0, 1449, 301, 302, 303, 304, 305, 0, 306, 307, + 0, 1475, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 0, 1451, 301, 302, 303, 304, 305, + 0, 0, 315, 0, 1580, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, - 0, 0, 0, 0, 0, 315, 0, 1452, 301, 302, + 0, 0, 0, 0, 0, 315, 0, 1735, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 0, - 1453, 301, 302, 303, 304, 305, 0, 306, 307, 308, + 1736, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 0, 1475, 301, 302, 303, 304, 305, 0, + 0, 315, 0, 1737, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, - 0, 0, 0, 0, 315, 0, 1580, 301, 302, 303, + 0, 0, 0, 0, 315, 0, 1899, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, - 313, 314, 0, 0, 0, 0, 0, 315, 0, 1735, + 313, 314, 0, 0, 0, 0, 0, 315, 0, 1900, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 0, 1736, 301, 302, 303, 304, 305, 0, 306, + 315, 0, 1901, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 0, 1737, 301, 302, 303, 304, + 0, 0, 0, 315, 0, 2022, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, - 314, 0, 0, 0, 0, 0, 315, 0, 1899, 301, + 314, 0, 0, 0, 0, 0, 315, 0, 2023, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 0, 1900, 301, 302, 303, 304, 305, 0, 306, 307, + 0, 2024, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 0, 1901, 301, 302, 303, 304, 305, + 0, 0, 315, 0, 2025, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, - 0, 0, 0, 0, 0, 315, 0, 2022, 301, 302, + 0, 0, 0, 0, 0, 315, 0, 2026, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, 0, - 2023, 301, 302, 303, 304, 305, 0, 306, 307, 308, + 2027, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 0, 2024, 301, 302, 303, 304, 305, 0, + 0, 315, 0, 2137, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, - 0, 0, 0, 0, 315, 0, 2025, 301, 302, 303, + 0, 0, 0, 0, 315, 0, 2138, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, - 313, 314, 0, 0, 0, 0, 0, 315, 0, 2026, + 313, 314, 0, 0, 0, 0, 0, 315, 0, 2139, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, - 315, 0, 2027, 301, 302, 303, 304, 305, 0, 306, + 315, 0, 2197, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, - 0, 0, 0, 315, 0, 2137, 301, 302, 303, 304, + 0, 0, 0, 315, 0, 2198, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, - 314, 0, 0, 0, 0, 0, 315, 0, 2138, 301, + 314, 0, 0, 0, 0, 0, 315, 0, 2199, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, 0, 315, - 0, 2139, 301, 302, 303, 304, 305, 0, 306, 307, + 0, 2257, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, 0, 0, - 0, 0, 315, 0, 2197, 301, 302, 303, 304, 305, + 0, 0, 315, 0, 2258, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, 313, 314, - 0, 0, 0, 0, 0, 315, 0, 2198, 301, 302, + 0, 0, 0, 0, 0, 315, 0, 2259, 301, 302, 303, 304, 305, 0, 306, 307, 308, 309, 310, 311, - 312, 313, 314, 0, 0, 0, 0, 0, 315, 0, - 2199, 301, 302, 303, 304, 305, 0, 306, 307, 308, - 309, 310, 311, 312, 313, 314, 0, 0, 0, 0, - 0, 315, 0, 2257, 301, 302, 303, 304, 305, 0, - 306, 307, 308, 309, 310, 311, 312, 313, 314, 0, - 0, 0, 0, 0, 315, 0, 2258, 301, 302, 303, - 304, 305, 0, 306, 307, 308, 309, 310, 311, 312, - 313, 314, 0, 0, 0, 0, 0, 315, 0, 2259 + 312, 313, 314, 0, 0, 0, 0, 0, 315 }; static const short yycheck[] = { 23, 23, 91, 354, 293, 295, 4, 4, 714, 4, - 328, 4, 4, 4, 42, 65, 3, 3, 179, 285, + 328, 4, 4, 4, 42, 3, 1179, 3, 179, 285, 286, 287, 183, 66, 66, 65, 65, 7, 71, 71, - 1348, 1179, 7, 66, 1352, 4, 66, 1355, 71, 328, - 66, 71, 4, 6, 5, 71, 102, 6, 66, 66, - 165, 83, 66, 71, 71, 1078, 1270, 71, 1272, 4, - 5, 184, 185, 7, 1087, 66, 184, 185, 184, 185, - 71, 1094, 196, 34, 35, 36, 200, 200, 66, 202, - 184, 185, 200, 71, 202, 201, 49, 6, 6, 34, - 35, 36, 184, 185, 191, 192, 6, 201, 184, 185, - 184, 185, 199, 195, 6, 128, 129, 130, 196, 201, - 133, 134, 200, 136, 200, 6, 202, 201, 116, 195, - 143, 144, 145, 6, 147, 201, 149, 150, 6, 152, - 7, 184, 185, 186, 187, 188, 105, 106, 1286, 195, - 195, 194, 197, 105, 106, 195, 169, 170, 135, 136, - 137, 138, 139, 140, 141, 142, 195, 863, 195, 202, + 1348, 4, 7, 66, 1352, 4, 66, 1355, 71, 328, + 66, 71, 102, 6, 5, 71, 4, 5, 66, 66, + 65, 83, 66, 71, 71, 1078, 1270, 71, 1272, 38, + 184, 185, 41, 42, 1087, 66, 184, 185, 184, 185, + 71, 1094, 196, 34, 35, 36, 34, 35, 36, 184, + 185, 195, 200, 195, 202, 201, 49, 201, 6, 201, + 6, 184, 185, 184, 185, 200, 6, 202, 184, 185, + 184, 185, 195, 184, 185, 128, 129, 130, 201, 200, + 133, 134, 38, 136, 200, 41, 202, 201, 116, 200, + 143, 144, 145, 1286, 147, 7, 149, 150, 165, 152, + 7, 6, 105, 106, 66, 195, 105, 106, 38, 71, + 6, 41, 42, 195, 44, 197, 169, 170, 136, 137, + 138, 139, 140, 141, 142, 143, 195, 863, 6, 202, 202, 201, 201, 184, 185, 188, 189, 195, 191, 202, 193, 203, 202, 196, 197, 196, 202, 196, 496, 7, - 195, 200, 195, 473, 202, 202, 201, 195, 202, 507, - 170, 171, 172, 173, 6, 170, 171, 172, 173, 185, - 65, 202, 195, 201, 201, 195, 201, 496, 474, 201, + 195, 200, 6, 473, 202, 202, 191, 192, 202, 507, + 170, 171, 172, 173, 199, 170, 171, 172, 173, 185, + 6, 202, 195, 201, 201, 195, 201, 496, 474, 201, 201, 191, 192, 374, 195, 238, 191, 192, 507, 199, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, @@ -2777,54 +2779,54 @@ static const short yycheck[] = 283, 284, 44, 45, 1287, 1583, 184, 185, 1291, 1587, 293, 195, 1590, 295, 184, 185, 6, 7, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, - 313, 314, 315, 170, 171, 172, 173, 196, 321, 195, - 323, 200, 184, 185, 327, 328, 1012, 195, 184, 185, - 333, 334, 335, 336, 196, 338, 339, 340, 341, 342, - 343, 344, 8, 38, 200, 1539, 41, 42, 1542, 44, - 1544, 191, 192, 356, 357, 358, 359, 184, 185, 362, - 191, 192, 170, 171, 172, 173, 197, 370, 199, 184, - 185, 184, 185, 200, 38, 196, 379, 41, 42, 200, - 56, 57, 1680, 191, 192, 200, 1684, 200, 1686, 176, + 313, 314, 315, 170, 171, 172, 173, 195, 321, 196, + 323, 191, 192, 200, 327, 328, 1012, 197, 6, 199, + 333, 334, 335, 336, 195, 338, 339, 340, 341, 342, + 343, 344, 8, 184, 185, 1539, 65, 196, 1542, 46, + 1544, 200, 195, 356, 357, 358, 359, 184, 185, 362, + 201, 195, 170, 171, 172, 173, 195, 370, 197, 184, + 185, 184, 185, 200, 191, 192, 379, 121, 122, 123, + 124, 125, 1680, 191, 192, 200, 1684, 200, 1686, 176, 177, 178, 195, 180, 181, 182, 183, 184, 185, 186, - 187, 188, 700, 46, 166, 196, 168, 194, 38, 200, - 195, 41, 174, 184, 185, 417, 177, 178, 42, 180, - 181, 182, 183, 184, 185, 186, 187, 188, 44, 200, - 728, 700, 195, 194, 197, 704, 1439, 1440, 1441, 1442, - 1634, 184, 185, 1446, 1638, 42, 1640, 184, 185, 184, - 185, 184, 185, 41, 42, 701, 44, 200, 42, 728, - 758, 759, 760, 200, 42, 200, 469, 200, 195, 191, - 192, 473, 475, 201, 42, 197, 6, 199, 201, 241, + 187, 188, 700, 195, 166, 196, 168, 194, 197, 200, + 199, 195, 174, 184, 185, 417, 177, 178, 42, 180, + 181, 182, 183, 184, 185, 186, 187, 188, 196, 200, + 728, 700, 200, 194, 44, 704, 1439, 1440, 1441, 1442, + 1634, 184, 185, 1446, 1638, 195, 1640, 184, 185, 184, + 185, 59, 60, 61, 62, 701, 64, 200, 42, 728, + 758, 759, 760, 200, 42, 200, 469, 191, 192, 42, + 196, 473, 475, 197, 200, 199, 6, 56, 57, 241, 180, 181, 182, 183, 184, 185, 186, 187, 188, 758, - 759, 760, 6, 496, 194, 186, 187, 188, 195, 195, - 197, 197, 505, 194, 507, 6, 509, 510, 174, 175, + 759, 760, 201, 496, 194, 184, 185, 186, 187, 188, + 41, 42, 505, 44, 507, 194, 509, 510, 174, 175, 176, 177, 178, 516, 180, 181, 182, 183, 184, 185, - 186, 187, 188, 526, 527, 55, 6, 7, 194, 191, - 192, 200, 535, 202, 195, 197, 202, 199, 195, 59, - 60, 61, 62, 546, 64, 195, 1549, 1550, 4, 195, - 1553, 197, 4, 195, 557, 197, 559, 560, 120, 121, - 122, 123, 124, 195, 195, 197, 197, 1253, 195, 195, - 197, 197, 195, 195, 197, 197, 195, 195, 197, 197, - 6, 195, 880, 197, 3, 855, 856, 42, 195, 351, - 352, 195, 195, 197, 197, 5, 195, 599, 197, 195, - 195, 197, 197, 195, 195, 197, 3, 4, 197, 195, - 199, 880, 9, 10, 11, 12, 13, 14, 15, 16, + 186, 187, 188, 526, 527, 55, 6, 7, 194, 186, + 187, 188, 535, 191, 192, 42, 202, 194, 201, 197, + 195, 199, 197, 546, 6, 195, 1549, 1550, 195, 195, + 1553, 197, 195, 195, 557, 197, 559, 560, 195, 195, + 197, 197, 195, 195, 197, 197, 195, 1253, 197, 195, + 195, 197, 197, 195, 195, 197, 197, 195, 195, 197, + 197, 195, 880, 197, 6, 855, 856, 6, 4, 351, + 352, 195, 195, 197, 197, 4, 195, 599, 197, 195, + 200, 197, 202, 200, 42, 202, 3, 4, 200, 3, + 202, 880, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 200, 200, 202, 202, - 200, 1644, 202, 195, 174, 175, 176, 177, 178, 6, - 180, 181, 182, 183, 184, 185, 186, 187, 188, 200, - 200, 202, 202, 200, 194, 202, 200, 200, 202, 202, - 8, 200, 6, 202, 677, 678, 200, 200, 202, 202, - 5, 200, 200, 202, 202, 200, 195, 202, 691, 692, - 693, 694, 695, 696, 697, 195, 8, 700, 200, 195, - 202, 704, 201, 200, 707, 202, 200, 200, 202, 202, + 200, 1644, 202, 195, 174, 175, 176, 177, 178, 5, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 195, + 200, 200, 202, 202, 194, 200, 200, 202, 202, 200, + 8, 202, 6, 195, 677, 678, 200, 200, 202, 202, + 200, 200, 202, 202, 200, 200, 202, 202, 691, 692, + 693, 694, 695, 696, 697, 195, 8, 700, 200, 6, + 202, 704, 5, 200, 707, 202, 200, 200, 202, 202, 200, 195, 202, 716, 200, 1046, 202, 200, 200, 202, 202, 200, 200, 202, 202, 728, 729, 200, 195, 202, 1733, 200, 200, 202, 202, 200, 200, 202, 202, 200, 809, 202, 200, 200, 202, 202, 200, 200, 202, 202, - 200, 200, 202, 202, 201, 758, 759, 760, 1004, 201, - 763, 764, 195, 525, 767, 195, 6, 195, 195, 4, - 195, 108, 201, 6, 6, 778, 779, 201, 201, 197, - 197, 201, 195, 199, 195, 5, 195, 184, 185, 195, + 201, 195, 195, 195, 201, 758, 759, 760, 1004, 195, + 763, 764, 201, 525, 767, 195, 6, 195, 195, 195, + 4, 6, 201, 108, 199, 778, 779, 201, 201, 197, + 197, 201, 6, 195, 195, 195, 5, 184, 185, 195, 195, 1794, 195, 190, 195, 195, 1042, 195, 195, 195, 195, 198, 195, 195, 201, 195, 195, 6, 195, 195, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, @@ -2832,45 +2834,45 @@ static const short yycheck[] = 833, 834, 835, 836, 837, 838, 174, 175, 176, 177, 178, 195, 180, 181, 182, 183, 184, 185, 186, 187, 188, 195, 195, 195, 856, 195, 194, 196, 196, 195, - 195, 864, 174, 175, 176, 177, 178, 195, 180, 181, + 4, 864, 174, 175, 176, 177, 178, 195, 180, 181, 182, 183, 184, 185, 186, 187, 188, 880, 195, 882, - 195, 884, 194, 4, 195, 195, 195, 195, 7, 194, - 7, 7, 7, 200, 200, 199, 899, 900, 901, 196, - 7, 7, 103, 105, 166, 201, 5, 5, 5, 5, + 195, 884, 194, 7, 195, 195, 195, 195, 7, 195, + 194, 7, 7, 7, 196, 200, 899, 900, 901, 200, + 199, 7, 103, 105, 201, 166, 5, 5, 5, 5, 5, 5, 5, 925, 5, 5, 5, 920, 921, 922, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, - 5, 5, 5, 1264, 174, 175, 176, 177, 178, 153, + 5, 5, 5, 1264, 174, 175, 176, 177, 178, 154, 180, 181, 182, 183, 184, 185, 186, 187, 188, 5, 5, 5, 5, 3, 194, 6, 5, 719, 6, 5, - 5, 963, 200, 6, 4, 196, 7, 6, 202, 7, + 5, 963, 200, 196, 6, 4, 6, 199, 195, 7, 7, 7, 7, 7, 1977, 174, 175, 176, 177, 178, 7, 180, 181, 182, 183, 184, 185, 186, 187, 188, - 199, 202, 754, 755, 756, 194, 201, 8, 201, 7, - 7, 195, 1005, 174, 175, 176, 177, 178, 7, 180, + 7, 202, 754, 755, 756, 194, 202, 8, 201, 7, + 7, 201, 1005, 174, 175, 176, 177, 178, 7, 180, 181, 182, 183, 184, 185, 186, 187, 188, 780, 199, 167, 200, 200, 194, 200, 196, 200, 789, 1031, 1032, 1033, 1100, 200, 200, 200, 200, 200, 200, 200, 1042, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, - 200, 200, 200, 1056, 1057, 200, 200, 1069, 200, 200, - 200, 200, 5, 196, 200, 1068, 195, 195, 1071, 195, - 195, 195, 6, 195, 6, 195, 4, 195, 1081, 6, - 6, 195, 195, 195, 195, 1088, 1089, 1090, 198, 6, + 200, 200, 200, 1056, 1057, 200, 5, 1069, 200, 200, + 200, 200, 200, 196, 200, 1068, 195, 195, 1071, 195, + 195, 6, 6, 195, 195, 195, 4, 195, 1081, 6, + 6, 198, 195, 195, 195, 1088, 1089, 1090, 195, 6, 195, 195, 1095, 195, 195, 195, 1099, 7, 6, 4, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 174, 175, 176, 177, 178, 195, 180, 181, 182, 183, 184, 185, 186, 187, 188, 1144, 7, 195, 7, 7, 194, 7, 195, 7, - 7, 195, 7, 195, 7, 7, 7, 7, 7, 1162, - 7, 6, 195, 174, 175, 176, 177, 178, 197, 180, - 181, 182, 183, 184, 185, 186, 187, 188, 195, 1191, + 7, 195, 195, 7, 195, 7, 7, 7, 7, 1162, + 7, 7, 195, 174, 175, 176, 177, 178, 197, 180, + 181, 182, 183, 184, 185, 186, 187, 188, 201, 1191, 3, 4, 1185, 194, 1187, 195, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, - 3, 4, 195, 201, 6, 4, 9, 10, 11, 12, + 3, 4, 195, 7, 6, 6, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, - 174, 175, 176, 177, 178, 7, 180, 181, 182, 183, + 174, 175, 176, 177, 178, 4, 180, 181, 182, 183, 184, 185, 186, 187, 188, 1017, 1259, 7, 3, 163, 194, 3, 3, 186, 1267, 3, 1269, 3, 1271, 3, 1273, 1274, 3, 3, 3, 3, 3, 1280, 3, 3, @@ -2880,30 +2882,30 @@ static const short yycheck[] = 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 201, 6, 6, 1579, 104, 201, 1339, 6, 1341, 1342, - 1343, 200, 196, 6, 200, 4, 6, 104, 6, 6, - 196, 6, 200, 1365, 196, 6, 200, 200, 196, 200, - 200, 184, 185, 196, 200, 200, 200, 190, 200, 200, + 1343, 200, 6, 196, 200, 200, 4, 6, 196, 6, + 6, 6, 196, 1365, 6, 200, 196, 200, 200, 200, + 196, 184, 185, 200, 6, 200, 200, 190, 200, 200, 200, 196, 195, 200, 200, 198, 200, 196, 201, 200, 200, 6, 200, 200, 199, 198, 6, 6, 6, 6, 6, 184, 185, 6, 6, 6, 6, 190, 6, 6, - 6, 6, 195, 7, 3, 198, 6, 3, 201, 6, + 6, 3, 195, 7, 104, 198, 6, 3, 201, 6, 186, 6, 6, 3, 6, 3, 7, 6, 1421, 6, 3, 6, 3, 3, 1427, 3, 1438, 1430, 199, 1675, - 6, 1677, 4, 6, 198, 6, 6, 6, 201, 101, - 6, 202, 201, 201, 196, 201, 201, 200, 196, 200, + 6, 1677, 4, 6, 198, 6, 6, 6, 201, 201, + 6, 202, 196, 201, 201, 201, 106, 101, 200, 200, 196, 1454, 1455, 1456, 1457, 1458, 1459, 1460, 1461, 1462, 1463, 1464, 1465, 1466, 1467, 1468, 1469, 1470, 1471, 1472, - 1473, 1474, 106, 1476, 200, 104, 163, 6, 196, 3, - 200, 200, 5, 200, 196, 6, 1498, 6, 174, 175, + 1473, 1474, 104, 1476, 200, 163, 6, 3, 196, 196, + 200, 200, 6, 6, 196, 3, 1498, 6, 174, 175, 176, 177, 178, 200, 180, 181, 182, 183, 184, 185, - 186, 187, 188, 196, 196, 1267, 200, 1269, 194, 1271, - 1756, 3, 4, 196, 200, 3, 202, 9, 10, 11, + 186, 187, 188, 196, 200, 1267, 196, 1269, 194, 1271, + 1756, 3, 4, 200, 200, 196, 202, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, - 32, 6, 6, 6, 6, 6, 6, 3, 6, 6, - 5, 201, 1555, 1556, 1557, 1558, 1559, 1560, 1561, 1562, + 32, 6, 6, 6, 6, 6, 3, 6, 6, 5, + 5, 202, 1555, 1556, 1557, 1558, 1559, 1560, 1561, 1562, 1563, 1564, 1565, 1566, 1567, 1568, 1569, 1570, 1571, 1572, - 1573, 1574, 1575, 1576, 1577, 1578, 202, 6, 3, 4, + 1573, 1574, 1575, 1576, 1577, 1578, 6, 201, 3, 4, 1342, 202, 196, 1595, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 174, 175, @@ -2914,7 +2916,7 @@ static const short yycheck[] = 6, 1654, 1655, 1656, 1657, 1658, 1659, 1660, 1661, 1662, 1663, 1664, 1665, 1666, 1667, 1668, 1669, 1670, 1671, 1672, 1673, 1674, 6, 6, 6, 5, 5, 1689, 6, 201, - 200, 6, 151, 201, 201, 200, 202, 200, 157, 200, + 200, 202, 151, 6, 201, 201, 200, 200, 157, 200, 196, 196, 184, 185, 201, 6, 200, 200, 190, 201, 6, 201, 201, 195, 200, 6, 101, 6, 6, 201, 163, 180, 5, 5, 201, 201, 201, 186, 187, 202, @@ -3017,83 +3019,87 @@ static const short yycheck[] = 32, 174, 175, 176, 177, 178, -1, 180, 181, 182, 183, 184, 185, 186, 187, 188, 174, 175, 176, 177, 178, 194, 180, 181, 182, 183, 184, 185, 186, 187, - 188, -1, -1, -1, -1, -1, 194, -1, -1, 174, - 175, 176, 177, 178, -1, 180, 181, 182, 183, 184, - 185, 186, 187, 188, -1, -1, -1, 184, 185, 194, - -1, -1, -1, 190, -1, 200, -1, 202, 195, 174, - 175, 176, 177, 178, -1, 180, 181, 182, 183, 184, - 185, 186, 187, 188, -1, -1, -1, -1, -1, 194, - -1, -1, -1, 198, 38, 39, 40, 41, 42, 43, - 44, 45, -1, 47, -1, 49, 50, 51, -1, 53, - 54, 174, 175, 176, 177, 178, -1, 180, 181, 182, - 183, 184, 185, 186, 187, 188, 70, -1, 1277, -1, - 1279, 194, -1, -1, 1283, -1, -1, -1, -1, 202, - 0, 1, -1, 3, 4, -1, -1, -1, -1, -1, - 1299, -1, 184, 185, 98, 99, 100, -1, 190, -1, + 188, -1, -1, -1, -1, -1, 194, -1, -1, -1, + 38, 39, 40, 41, 42, 43, 44, 45, -1, 47, + -1, 49, 50, 51, -1, 53, 54, 184, 185, -1, + -1, -1, -1, 190, -1, -1, -1, -1, 195, -1, + -1, -1, 70, -1, -1, -1, 38, 39, 40, 41, + 42, 43, 44, 45, -1, 47, -1, 49, 50, 51, + -1, 53, 54, -1, -1, -1, -1, -1, -1, -1, + 98, 99, 100, 174, 175, 176, 177, 178, 70, 180, + 181, 182, 183, 184, 185, 186, 187, 188, -1, 117, + -1, -1, -1, 194, -1, -1, -1, -1, 1277, 200, + 1279, 202, -1, -1, 1283, -1, 98, 99, 100, 0, + 1, -1, 3, 4, -1, -1, -1, -1, -1, -1, + 1299, -1, 184, 185, -1, 117, -1, -1, 190, -1, -1, -1, -1, 195, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 33, -1, -1, -1, 37, 38, 39, - 40, 41, 42, 43, 44, 45, -1, 47, 48, 49, - 50, 51, 52, 53, 54, -1, -1, -1, 58, 59, - 60, 61, 62, 63, 64, -1, 66, 67, 68, 69, - 70, 174, 175, 176, 177, 178, 160, 180, 181, 182, - 183, 184, 185, 186, 187, 188, -1, -1, -1, -1, - -1, 194, -1, 196, -1, -1, -1, 200, 98, 99, - 100, -1, -1, -1, -1, 105, -1, 107, -1, 109, - 110, 111, 112, 113, 114, 115, -1, -1, 202, -1, + -1, -1, 33, -1, -1, -1, 37, 38, 39, 40, + 41, 42, 43, 44, 45, -1, 47, 48, 49, 50, + 51, 52, 53, 54, -1, -1, -1, 58, 59, 60, + 61, 62, 63, 64, 202, 66, 67, 68, 69, 70, + 38, 39, 40, 41, 42, 43, 44, 45, -1, 47, + -1, 49, 50, 51, -1, 53, 54, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 98, 99, 100, + 202, -1, 70, -1, 105, -1, 107, -1, 109, 110, + 111, 112, 113, 114, 115, -1, 117, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1416, -1, -1, - -1, -1, -1, -1, 1423, 135, 136, 137, 138, 139, - 140, 141, 142, -1, -1, 1434, 1435, -1, -1, -1, + 98, 99, 100, -1, 1423, 136, 137, 138, 139, 140, + 141, 142, 143, -1, -1, 1434, 1435, -1, -1, 117, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 160, 161, 162, -1, 164, 38, 39, 40, 41, 42, - 43, 44, 45, -1, 47, -1, 49, 50, 51, -1, - 53, 54, -1, -1, -1, -1, -1, -1, -1, 1478, - -1, -1, -1, -1, -1, -1, -1, 70, 38, 39, - 40, 41, 42, 43, 44, 45, -1, 47, -1, 49, - 50, 51, -1, 53, 54, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 98, 99, 100, -1, -1, - 70, 38, 39, 40, 41, 42, 43, 44, 45, -1, - 47, -1, 49, 50, 51, -1, 53, 54, -1, -1, - -1, -1, 1541, -1, -1, -1, -1, 1546, 98, 99, - 100, -1, -1, 70, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 4, -1, - -1, -1, -1, -1, -1, -1, -1, 160, -1, -1, - -1, 98, 99, 100, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 33, -1, -1, - -1, 37, 38, 39, 40, 41, 42, 43, 44, 45, - 160, 47, 48, 49, 50, 51, 52, 53, 54, 202, - -1, -1, 58, 59, 60, 61, 62, 63, 64, -1, - 66, 67, 68, 69, 70, -1, 1635, -1, -1, -1, - -1, -1, -1, 160, -1, -1, 1645, 174, 175, 176, - 177, 178, 202, 180, 181, 182, 183, 184, 185, 186, - 187, 188, 98, 99, 100, -1, -1, 194, -1, 105, - -1, 107, -1, 109, 110, 111, 112, 113, 114, 115, + 161, 162, -1, 164, 174, 175, 176, 177, 178, -1, + 180, 181, 182, 183, 184, 185, 186, 187, 188, -1, + -1, -1, -1, -1, 194, -1, -1, -1, 198, 1478, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, - 92, 93, 94, 95, 96, 97, 174, 175, 176, 177, - 178, 41, 180, 181, 182, 183, 184, 185, 186, 187, - 188, -1, -1, -1, 160, -1, 194, -1, -1, -1, - -1, -1, -1, -1, 202, 1734, 72, 73, 74, 75, - 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, - 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, - 96, 97, 174, 175, 176, 177, 178, -1, 180, 181, - 182, 183, 184, 185, 186, 187, 188, -1, -1, -1, - -1, -1, 194, -1, -1, -1, -1, 117, 118, 119, - 202, -1, -1, -1, 1793, 125, 126, 127, 128, 129, - 130, 131, 132, 133, 134, -1, -1, -1, -1, -1, - 202, -1, -1, 143, 144, 145, 146, 147, 148, 149, - 150, 151, 152, -1, 154, 155, 156, 157, 158, 159, - 174, 175, 176, 177, 178, -1, 180, 181, 182, 183, - 184, 185, 186, 187, 188, -1, 1845, -1, -1, -1, - 194, -1, -1, -1, -1, -1, -1, -1, 202, -1, + 92, 93, 94, 95, 96, 97, -1, -1, 41, 174, + 175, 176, 177, 178, -1, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 202, -1, -1, -1, -1, 194, + -1, -1, -1, -1, -1, -1, -1, 202, -1, -1, + -1, -1, 1541, -1, -1, -1, -1, 1546, 72, 73, + 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, + 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, + 94, 95, 96, 97, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 118, 119, 120, -1, -1, + -1, -1, -1, 126, 127, 128, 129, 130, 131, 132, + 133, 134, 135, -1, 4, -1, -1, -1, -1, -1, + 202, 144, 145, 146, 147, 148, 149, 150, 151, 152, + 153, -1, 155, 156, 157, 158, 159, 160, -1, -1, + -1, -1, -1, 33, -1, -1, 1635, 37, 38, 39, + 40, 41, 42, 43, 44, 45, 1645, 47, 48, 49, + 50, 51, 52, 53, 54, -1, -1, -1, 58, 59, + 60, 61, 62, 63, 64, -1, 66, 67, 68, 69, + 70, -1, -1, 174, 175, 176, 177, 178, 202, 180, + 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, + -1, -1, -1, 194, -1, -1, -1, -1, 98, 99, + 100, 202, -1, -1, -1, 105, -1, 107, -1, 109, + 110, 111, 112, 113, 114, 115, -1, 117, 38, 39, + 40, 41, 42, 43, 44, 45, -1, 47, -1, 49, + 50, 51, -1, 53, 54, 1734, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 174, 175, 176, 177, 178, + 70, 180, 181, 182, 183, 184, 185, 186, 187, 188, + -1, -1, -1, -1, -1, 194, -1, -1, -1, -1, + -1, -1, -1, 202, -1, -1, -1, -1, 98, 99, + 100, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 1793, -1, -1, 117, 174, 175, + 176, 177, 178, -1, 180, 181, 182, 183, 184, 185, + 186, 187, 188, -1, -1, -1, -1, -1, 194, -1, -1, 174, 175, 176, 177, 178, 202, 180, 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, -1, -1, - -1, 194, -1, -1, 174, 175, 176, 177, 178, 202, - 180, 181, 182, 183, 184, 185, 186, 187, 188, 1898, - -1, -1, -1, -1, 194, -1, -1, 174, 175, 176, - 177, 178, 202, 180, 181, 182, 183, 184, 185, 186, - 187, 188, -1, -1, -1, -1, -1, 194, -1, -1, - -1, -1, -1, -1, -1, 202, -1, 1936, 174, 175, - 176, 177, 178, -1, 180, 181, 182, 183, 184, 185, + -1, 194, -1, -1, -1, -1, 1845, -1, -1, 202, + 174, 175, 176, 177, 178, -1, 180, 181, 182, 183, + 184, 185, 186, 187, 188, -1, -1, -1, -1, -1, + 194, -1, -1, 174, 175, 176, 177, 178, 202, 180, + 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, + -1, -1, -1, 194, -1, -1, -1, -1, -1, 1898, + -1, 202, 174, 175, 176, 177, 178, -1, 180, 181, + 182, 183, 184, 185, 186, 187, 188, -1, -1, -1, + -1, -1, 194, -1, -1, -1, -1, -1, -1, -1, + 202, -1, 174, 175, 176, 177, 178, 1936, 180, 181, + 182, 183, 184, 185, 186, 187, 188, -1, -1, -1, + -1, -1, 194, -1, -1, 174, 175, 176, 177, 178, + 202, 180, 181, 182, 183, 184, 185, 186, 187, 188, + -1, -1, -1, -1, -1, 194, -1, -1, 174, 175, + 176, 177, 178, 202, 180, 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, -1, -1, -1, 194, -1, -1, 174, 175, 176, 177, 178, 202, 180, 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, -1, -1, @@ -3111,12 +3117,12 @@ static const short yycheck[] = 188, -1, -1, -1, -1, -1, 194, -1, -1, 174, 175, 176, 177, 178, 202, 180, 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, -1, -1, -1, 194, - -1, -1, 174, 175, 176, 177, 178, 202, 180, 181, - 182, 183, 184, 185, 186, 187, 188, -1, -1, -1, - -1, -1, 194, -1, -1, 174, 175, 176, 177, 178, - 202, 180, 181, 182, 183, 184, 185, 186, 187, 188, - -1, -1, -1, -1, -1, 194, -1, -1, 174, 175, - 176, 177, 178, 202, 180, 181, 182, 183, 184, 185, + -1, 196, -1, -1, -1, 200, 174, 175, 176, 177, + 178, -1, 180, 181, 182, 183, 184, 185, 186, 187, + 188, -1, -1, -1, -1, -1, 194, 174, 175, 176, + 177, 178, 200, 180, 181, 182, 183, 184, 185, 186, + 187, 188, -1, -1, -1, -1, -1, 194, 174, 175, + 176, 177, 178, 200, 180, 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, -1, -1, -1, 194, 174, 175, 176, 177, 178, 200, 180, 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, -1, -1, -1, 194, @@ -3768,74 +3774,79 @@ static const short yycheck[] = 177, 178, 200, 180, 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, -1, -1, -1, 194, 174, 175, 176, 177, 178, 200, 180, 181, 182, 183, 184, 185, - 186, 187, 188, -1, -1, -1, -1, -1, 194, 174, - 175, 176, 177, 178, 200, 180, 181, 182, 183, 184, - 185, 186, 187, 188, -1, -1, -1, -1, -1, 194, - 174, 175, 176, 177, 178, 200, 180, 181, 182, 183, - 184, 185, 186, 187, 188, -1, -1, -1, -1, -1, - 194, -1, -1, -1, 198, 174, 175, 176, 177, 178, - -1, 180, 181, 182, 183, 184, 185, 186, 187, 188, - -1, -1, -1, -1, -1, 194, -1, -1, -1, 198, - 174, 175, 176, 177, 178, -1, 180, 181, 182, 183, - 184, 185, 186, 187, 188, -1, -1, -1, -1, -1, - 194, -1, -1, -1, 198, 174, 175, 176, 177, 178, - -1, 180, 181, 182, 183, 184, 185, 186, 187, 188, - -1, -1, -1, -1, -1, 194, -1, -1, -1, 198, - 174, 175, 176, 177, 178, -1, 180, 181, 182, 183, - 184, 185, 186, 187, 188, -1, -1, -1, -1, -1, - 194, -1, -1, -1, 198, 174, 175, 176, 177, 178, - -1, 180, 181, 182, 183, 184, 185, 186, 187, 188, - -1, -1, -1, -1, -1, 194, -1, -1, -1, 198, - 174, 175, 176, 177, 178, -1, 180, 181, 182, 183, - 184, 185, 186, 187, 188, -1, -1, -1, -1, -1, - 194, -1, -1, -1, 198, 174, 175, 176, 177, 178, - -1, 180, 181, 182, 183, 184, 185, 186, 187, 188, - -1, -1, -1, -1, -1, 194, -1, -1, -1, 198, - 174, 175, 176, 177, 178, -1, 180, 181, 182, 183, - 184, 185, 186, 187, 188, -1, -1, -1, -1, -1, - 194, -1, -1, -1, 198, 174, 175, 176, 177, 178, - -1, 180, 181, 182, 183, 184, 185, 186, 187, 188, - -1, -1, -1, -1, -1, 194, -1, -1, -1, 198, - 174, 175, 176, 177, 178, -1, 180, 181, 182, 183, - 184, 185, 186, 187, 188, -1, -1, -1, -1, -1, - 194, -1, -1, -1, 198, 174, 175, 176, 177, 178, - -1, 180, 181, 182, 183, 184, 185, 186, 187, 188, - -1, -1, -1, -1, -1, 194, -1, -1, -1, 198, - 174, 175, 176, 177, 178, -1, 180, 181, 182, 183, - 184, 185, 186, 187, 188, -1, -1, -1, -1, -1, - 194, -1, -1, -1, 198, 174, 175, 176, 177, 178, - -1, 180, 181, 182, 183, 184, 185, 186, 187, 188, - -1, -1, -1, -1, -1, 194, -1, -1, -1, 198, - 174, 175, 176, 177, 178, -1, 180, 181, 182, 183, - 184, 185, 186, 187, 188, -1, -1, -1, -1, -1, - 194, -1, -1, -1, 198, 174, 175, 176, 177, 178, - -1, 180, 181, 182, 183, 184, 185, 186, 187, 188, - -1, -1, -1, -1, -1, 194, -1, -1, -1, 198, - 174, 175, 176, 177, 178, -1, 180, 181, 182, 183, - 184, 185, 186, 187, 188, -1, -1, -1, -1, -1, - 194, -1, -1, -1, 198, 174, 175, 176, 177, 178, - -1, 180, 181, 182, 183, 184, 185, 186, 187, 188, - -1, -1, -1, -1, -1, 194, -1, -1, -1, 198, - 174, 175, 176, 177, 178, -1, 180, 181, 182, 183, - 184, 185, 186, 187, 188, -1, -1, -1, -1, -1, - 194, -1, -1, -1, 198, 174, 175, 176, 177, 178, - -1, 180, 181, 182, 183, 184, 185, 186, 187, 188, - -1, -1, -1, -1, -1, 194, -1, -1, -1, 198, - 174, 175, 176, 177, 178, -1, 180, 181, 182, 183, - 184, 185, 186, 187, 188, -1, -1, -1, -1, -1, - 194, -1, -1, -1, 198, 174, 175, 176, 177, 178, - -1, 180, 181, 182, 183, 184, 185, 186, 187, 188, - -1, -1, -1, -1, -1, 194, -1, -1, -1, 198, - 174, 175, 176, 177, 178, -1, 180, 181, 182, 183, - 184, 185, 186, 187, 188, -1, -1, -1, -1, -1, - 194, -1, -1, -1, 198, 174, 175, 176, 177, 178, - -1, 180, 181, 182, 183, 184, 185, 186, 187, 188, - -1, -1, -1, -1, -1, 194, -1, -1, -1, 198, - 174, 175, 176, 177, 178, -1, 180, 181, 182, 183, - 184, 185, 186, 187, 188, -1, -1, -1, -1, -1, - 194, -1, -1, -1, 198, 174, 175, 176, 177, 178, - -1, 180, 181, 182, 183, 184, 185, 186, 187, 188, - -1, -1, -1, -1, -1, 194, -1, -1, -1, 198, + 186, 187, 188, -1, -1, -1, -1, -1, 194, -1, + -1, -1, 198, 174, 175, 176, 177, 178, -1, 180, + 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, + -1, -1, -1, 194, -1, -1, -1, 198, 174, 175, + 176, 177, 178, -1, 180, 181, 182, 183, 184, 185, + 186, 187, 188, -1, -1, -1, -1, -1, 194, -1, + -1, -1, 198, 174, 175, 176, 177, 178, -1, 180, + 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, + -1, -1, -1, 194, -1, -1, -1, 198, 174, 175, + 176, 177, 178, -1, 180, 181, 182, 183, 184, 185, + 186, 187, 188, -1, -1, -1, -1, -1, 194, -1, + -1, -1, 198, 174, 175, 176, 177, 178, -1, 180, + 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, + -1, -1, -1, 194, -1, -1, -1, 198, 174, 175, + 176, 177, 178, -1, 180, 181, 182, 183, 184, 185, + 186, 187, 188, -1, -1, -1, -1, -1, 194, -1, + -1, -1, 198, 174, 175, 176, 177, 178, -1, 180, + 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, + -1, -1, -1, 194, -1, -1, -1, 198, 174, 175, + 176, 177, 178, -1, 180, 181, 182, 183, 184, 185, + 186, 187, 188, -1, -1, -1, -1, -1, 194, -1, + -1, -1, 198, 174, 175, 176, 177, 178, -1, 180, + 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, + -1, -1, -1, 194, -1, -1, -1, 198, 174, 175, + 176, 177, 178, -1, 180, 181, 182, 183, 184, 185, + 186, 187, 188, -1, -1, -1, -1, -1, 194, -1, + -1, -1, 198, 174, 175, 176, 177, 178, -1, 180, + 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, + -1, -1, -1, 194, -1, -1, -1, 198, 174, 175, + 176, 177, 178, -1, 180, 181, 182, 183, 184, 185, + 186, 187, 188, -1, -1, -1, -1, -1, 194, -1, + -1, -1, 198, 174, 175, 176, 177, 178, -1, 180, + 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, + -1, -1, -1, 194, -1, -1, -1, 198, 174, 175, + 176, 177, 178, -1, 180, 181, 182, 183, 184, 185, + 186, 187, 188, -1, -1, -1, -1, -1, 194, -1, + -1, -1, 198, 174, 175, 176, 177, 178, -1, 180, + 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, + -1, -1, -1, 194, -1, -1, -1, 198, 174, 175, + 176, 177, 178, -1, 180, 181, 182, 183, 184, 185, + 186, 187, 188, -1, -1, -1, -1, -1, 194, -1, + -1, -1, 198, 174, 175, 176, 177, 178, -1, 180, + 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, + -1, -1, -1, 194, -1, -1, -1, 198, 174, 175, + 176, 177, 178, -1, 180, 181, 182, 183, 184, 185, + 186, 187, 188, -1, -1, -1, -1, -1, 194, -1, + -1, -1, 198, 174, 175, 176, 177, 178, -1, 180, + 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, + -1, -1, -1, 194, -1, -1, -1, 198, 174, 175, + 176, 177, 178, -1, 180, 181, 182, 183, 184, 185, + 186, 187, 188, -1, -1, -1, -1, -1, 194, -1, + -1, -1, 198, 174, 175, 176, 177, 178, -1, 180, + 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, + -1, -1, -1, 194, -1, -1, -1, 198, 174, 175, + 176, 177, 178, -1, 180, 181, 182, 183, 184, 185, + 186, 187, 188, -1, -1, -1, -1, -1, 194, -1, + -1, -1, 198, 174, 175, 176, 177, 178, -1, 180, + 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, + -1, -1, -1, 194, -1, -1, -1, 198, 174, 175, + 176, 177, 178, -1, 180, 181, 182, 183, 184, 185, + 186, 187, 188, -1, -1, -1, -1, -1, 194, -1, + -1, -1, 198, 174, 175, 176, 177, 178, -1, 180, + 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, + -1, -1, -1, 194, -1, -1, -1, 198, 174, 175, + 176, 177, 178, -1, 180, 181, 182, 183, 184, 185, + 186, 187, 188, -1, -1, -1, -1, -1, 194, -1, + 196, 174, 175, 176, 177, 178, -1, 180, 181, 182, + 183, 184, 185, 186, 187, 188, -1, -1, -1, -1, + -1, 194, -1, 196, 174, 175, 176, 177, 178, -1, + 180, 181, 182, 183, 184, 185, 186, 187, 188, -1, + -1, -1, -1, -1, 194, -1, 196, 174, 175, 176, + 177, 178, -1, 180, 181, 182, 183, 184, 185, 186, + 187, 188, -1, -1, -1, -1, -1, 194, -1, 196, 174, 175, 176, 177, 178, -1, 180, 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, -1, -1, -1, 194, -1, 196, 174, 175, 176, 177, 178, -1, 180, @@ -4012,14 +4023,7 @@ static const short yycheck[] = -1, 180, 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, -1, -1, -1, 194, -1, 196, 174, 175, 176, 177, 178, -1, 180, 181, 182, 183, 184, 185, - 186, 187, 188, -1, -1, -1, -1, -1, 194, -1, - 196, 174, 175, 176, 177, 178, -1, 180, 181, 182, - 183, 184, 185, 186, 187, 188, -1, -1, -1, -1, - -1, 194, -1, 196, 174, 175, 176, 177, 178, -1, - 180, 181, 182, 183, 184, 185, 186, 187, 188, -1, - -1, -1, -1, -1, 194, -1, 196, 174, 175, 176, - 177, 178, -1, 180, 181, 182, 183, 184, 185, 186, - 187, 188, -1, -1, -1, -1, -1, 194, -1, 196 + 186, 187, 188, -1, -1, -1, -1, -1, 194 }; /* -*-C-*- Note some compilers choke on comments on `#line' lines. */ #line 3 "/usr/share/bison/bison.simple" diff --git a/Parser/Gmsh.tab.hpp b/Parser/Gmsh.tab.hpp index e7f6267167e5f1ab625eaf73d8464e74dce56af8..195fb7185b05affb6143c41982252d430d6f57e6 100644 --- a/Parser/Gmsh.tab.hpp +++ b/Parser/Gmsh.tab.hpp @@ -128,50 +128,50 @@ typedef union { # define tCall 368 # define tFunction 369 # define tMesh 370 -# define tB_SPLINE_SURFACE_WITH_KNOTS 371 -# define tB_SPLINE_CURVE_WITH_KNOTS 372 -# define tCARTESIAN_POINT 373 -# define tTRUE 374 -# define tFALSE 375 -# define tUNSPECIFIED 376 -# define tU 377 -# define tV 378 -# define tEDGE_CURVE 379 -# define tVERTEX_POINT 380 -# define tORIENTED_EDGE 381 -# define tPLANE 382 -# define tFACE_OUTER_BOUND 383 -# define tEDGE_LOOP 384 -# define tADVANCED_FACE 385 -# define tVECTOR 386 -# define tDIRECTION 387 -# define tAXIS2_PLACEMENT_3D 388 -# define tISO 389 -# define tENDISO 390 -# define tENDSEC 391 -# define tDATA 392 -# define tHEADER 393 -# define tFILE_DESCRIPTION 394 -# define tFILE_SCHEMA 395 -# define tFILE_NAME 396 -# define tMANIFOLD_SOLID_BREP 397 -# define tCLOSED_SHELL 398 -# define tADVANCED_BREP_SHAPE_REPRESENTATION 399 -# define tFACE_BOUND 400 -# define tCYLINDRICAL_SURFACE 401 -# define tCONICAL_SURFACE 402 -# define tCIRCLE 403 -# define tTRIMMED_CURVE 404 -# define tGEOMETRIC_SET 405 -# define tCOMPOSITE_CURVE_SEGMENT 406 -# define tCONTINUOUS 407 -# define tCOMPOSITE_CURVE 408 -# define tTOROIDAL_SURFACE 409 -# define tPRODUCT_DEFINITION 410 -# define tPRODUCT_DEFINITION_SHAPE 411 -# define tSHAPE_DEFINITION_REPRESENTATION 412 -# define tELLIPSE 413 -# define tTrimmed 414 +# define tTrimmed 371 +# define tB_SPLINE_SURFACE_WITH_KNOTS 372 +# define tB_SPLINE_CURVE_WITH_KNOTS 373 +# define tCARTESIAN_POINT 374 +# define tTRUE 375 +# define tFALSE 376 +# define tUNSPECIFIED 377 +# define tU 378 +# define tV 379 +# define tEDGE_CURVE 380 +# define tVERTEX_POINT 381 +# define tORIENTED_EDGE 382 +# define tPLANE 383 +# define tFACE_OUTER_BOUND 384 +# define tEDGE_LOOP 385 +# define tADVANCED_FACE 386 +# define tVECTOR 387 +# define tDIRECTION 388 +# define tAXIS2_PLACEMENT_3D 389 +# define tISO 390 +# define tENDISO 391 +# define tENDSEC 392 +# define tDATA 393 +# define tHEADER 394 +# define tFILE_DESCRIPTION 395 +# define tFILE_SCHEMA 396 +# define tFILE_NAME 397 +# define tMANIFOLD_SOLID_BREP 398 +# define tCLOSED_SHELL 399 +# define tADVANCED_BREP_SHAPE_REPRESENTATION 400 +# define tFACE_BOUND 401 +# define tCYLINDRICAL_SURFACE 402 +# define tCONICAL_SURFACE 403 +# define tCIRCLE 404 +# define tTRIMMED_CURVE 405 +# define tGEOMETRIC_SET 406 +# define tCOMPOSITE_CURVE_SEGMENT 407 +# define tCONTINUOUS 408 +# define tCOMPOSITE_CURVE 409 +# define tTOROIDAL_SURFACE 410 +# define tPRODUCT_DEFINITION 411 +# define tPRODUCT_DEFINITION_SHAPE 412 +# define tSHAPE_DEFINITION_REPRESENTATION 413 +# define tELLIPSE 414 # define tSolid 415 # define tEndSolid 416 # define tVertex 417 diff --git a/Parser/Gmsh.y b/Parser/Gmsh.y index ae70eb1a1e275fced804ae8dd3430d82b90bfc0d..db9782cc75d42c1c485844ee54355c7fa195efa2 100644 --- a/Parser/Gmsh.y +++ b/Parser/Gmsh.y @@ -1,6 +1,6 @@ %{ -// $Id: Gmsh.y,v 1.136 2003-04-10 13:12:37 remacle Exp $ +// $Id: Gmsh.y,v 1.137 2003-04-14 17:13:15 geuzaine Exp $ // // Copyright (C) 1997-2003 C. Geuzaine, J.-F. Remacle // @@ -117,7 +117,7 @@ int PrintListOfDouble (char *format, List_T *list, char *buffer); %token tText2D tText3D %token tBSpline tBezier tNurbs tOrder tWith tBounds tKnots %token tColor tColorTable tFor tIn tEndFor tIf tEndIf tExit -%token tReturn tCall tFunction tMesh +%token tReturn tCall tFunction tMesh tTrimmed %token tB_SPLINE_SURFACE_WITH_KNOTS %token tB_SPLINE_CURVE_WITH_KNOTS @@ -129,7 +129,7 @@ int PrintListOfDouble (char *format, List_T *list, char *buffer); %token tFACE_BOUND tCYLINDRICAL_SURFACE tCONICAL_SURFACE tCIRCLE tTRIMMED_CURVE %token tGEOMETRIC_SET tCOMPOSITE_CURVE_SEGMENT tCOMPOSITE_CURVE_SEGMENT tCONTINUOUS %token tCOMPOSITE_CURVE tTOROIDAL_SURFACE tPRODUCT_DEFINITION tPRODUCT_DEFINITION_SHAPE -%token tSHAPE_DEFINITION_REPRESENTATION tELLIPSE tTrimmed +%token tSHAPE_DEFINITION_REPRESENTATION tELLIPSE %token tSolid tEndSolid tVertex tFacet tNormal tOuter tLoopSTL tEndLoop tEndFacet diff --git a/Parser/Gmsh.yy.cpp b/Parser/Gmsh.yy.cpp index ffcce2aceb0dcf6eed3e70acdfcece2746b87ed7..e28ad656e34f99d218764751d6f0be8d8d38fda3 100644 --- a/Parser/Gmsh.yy.cpp +++ b/Parser/Gmsh.yy.cpp @@ -2,7 +2,7 @@ /* A lexical scanner generated by flex */ /* Scanner skeleton version: - * $Header: /cvsroot/gmsh/Parser/Gmsh.yy.cpp,v 1.154 2003-04-10 13:12:37 remacle Exp $ + * $Header: /cvsroot/gmsh/Parser/Gmsh.yy.cpp,v 1.155 2003-04-14 17:13:16 geuzaine Exp $ */ #define FLEX_SCANNER @@ -300,96 +300,96 @@ static yyconst short int yy_accept[1041] = 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, - 203, 203, 203, 203, 203, 203, 73, 72, 203, 203, + 203, 203, 203, 203, 203, 203, 72, 71, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, - 203, 203, 203, 203, 203, 89, 203, 203, 203, 203, + 203, 203, 203, 203, 203, 88, 203, 203, 203, 203, + 203, 203, 203, 134, 137, 122, 119, 128, 131, 125, + 140, 203, 203, 203, 203, 203, 203, 143, 144, 136, + 139, 124, 203, 121, 130, 203, 133, 127, 142, 203, 203, 203, 203, 135, 138, 123, 120, 129, 132, 126, - 141, 203, 203, 203, 203, 203, 203, 144, 145, 137, - 140, 125, 203, 122, 131, 203, 134, 128, 143, 203, - 203, 203, 203, 136, 139, 124, 121, 130, 133, 127, - 142, 203, 203, 203, 203, 203, 203, 203, 203, 203, + 141, 203, 203, 203, 203, 203, 203, 203, 203, 203, - 203, 20, 26, 0, 0, 18, 0, 151, 152, 153, - 154, 200, 0, 0, 202, 203, 203, 203, 203, 203, + 203, 20, 26, 0, 0, 18, 0, 150, 151, 152, + 153, 200, 0, 0, 202, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 44, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 57, 203, 203, 203, - 203, 203, 203, 69, 203, 203, 203, 203, 203, 203, - 203, 203, 203, 203, 203, 79, 203, 203, 203, 203, + 203, 203, 203, 68, 203, 203, 203, 203, 203, 203, + 203, 203, 203, 203, 203, 78, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, - 103, 203, 203, 203, 203, 203, 203, 203, 203, 115, + 102, 203, 203, 203, 203, 203, 203, 203, 203, 114, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 0, 0, 0, 201, 0, 0, 200, 203, 203, 203, 203, 29, 203, 203, 203, 31, 33, 203, 203, 203, 203, 203, 39, 203, 203, 203, 203, 203, 203, 52, 203, 42, 203, 203, 203, 203, 203, 43, 168, 203, 203, 203, 56, 203, 203, - 203, 0, 203, 203, 203, 203, 65, 203, 203, 203, - 66, 203, 68, 203, 203, 203, 203, 0, 203, 203, - 162, 203, 203, 77, 203, 78, 203, 203, 203, 203, + 203, 0, 203, 203, 203, 203, 64, 203, 203, 203, + 65, 203, 67, 203, 203, 203, 203, 0, 203, 203, + 162, 203, 203, 76, 203, 77, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, - 203, 203, 203, 100, 203, 203, 203, 203, 203, 104, - 203, 203, 102, 203, 203, 203, 203, 203, 203, 114, - 203, 203, 203, 203, 203, 203, 203, 119, 203, 203, + 203, 203, 203, 99, 203, 203, 203, 203, 203, 103, + 203, 203, 101, 203, 203, 203, 203, 203, 203, 113, + 203, 203, 203, 203, 203, 203, 203, 118, 203, 203, 203, 203, 193, 9, 8, 203, 10, 11, 203, 203, 203, 203, 0, 0, 0, 200, 203, 203, 203, 203, 203, 203, 203, 35, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 49, 203, 203, 203, 203, 203, 203, 203, 0, 203, 203, - 203, 64, 203, 203, 203, 67, 203, 203, 203, 71, + 203, 63, 203, 203, 203, 66, 203, 203, 203, 70, - 0, 203, 75, 203, 203, 80, 203, 203, 203, 203, - 203, 86, 203, 87, 166, 203, 203, 203, 90, 203, - 91, 92, 203, 203, 203, 203, 203, 99, 203, 203, + 0, 203, 74, 203, 203, 79, 203, 203, 203, 203, + 203, 85, 203, 86, 166, 203, 203, 203, 89, 203, + 90, 91, 203, 203, 203, 203, 203, 98, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, - 117, 203, 203, 203, 203, 203, 203, 190, 203, 203, + 116, 203, 203, 203, 203, 203, 203, 190, 203, 203, 192, 197, 203, 0, 0, 203, 203, 203, 203, 30, 32, 34, 203, 203, 203, 38, 41, 203, 181, 203, 203, 203, 203, 203, 203, 46, 203, 203, 203, 203, 53, 54, 203, 203, 203, 203, 0, 174, 203, 203, - 63, 203, 203, 203, 203, 203, 203, 203, 203, 167, + 62, 203, 203, 203, 203, 203, 203, 203, 203, 167, - 0, 203, 81, 76, 203, 203, 203, 83, 82, 203, - 203, 203, 203, 96, 95, 203, 203, 101, 98, 203, - 105, 203, 109, 203, 203, 203, 203, 203, 203, 203, - 203, 203, 163, 203, 118, 203, 203, 203, 7, 191, + 0, 203, 80, 75, 203, 203, 203, 82, 81, 203, + 203, 203, 203, 95, 94, 203, 203, 100, 97, 203, + 104, 203, 108, 203, 203, 203, 203, 203, 203, 203, + 203, 203, 163, 203, 117, 203, 203, 203, 7, 191, 189, 0, 0, 203, 203, 203, 203, 36, 203, 40, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, - 48, 203, 203, 203, 203, 62, 0, 59, 203, 203, + 48, 203, 203, 203, 203, 157, 0, 59, 203, 203, 60, 203, 203, 203, 203, 203, 203, 203, 0, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, - 108, 203, 106, 203, 203, 203, 203, 203, 203, 116, + 107, 203, 105, 203, 203, 203, 203, 203, 203, 115, 203, 203, 194, 203, 0, 0, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 0, 58, 61, 203, 203, - 203, 203, 203, 70, 203, 0, 203, 203, 84, 85, - 203, 203, 203, 88, 203, 203, 203, 203, 107, 203, + 203, 203, 203, 69, 203, 0, 203, 203, 83, 84, + 203, 203, 203, 87, 203, 203, 203, 203, 106, 203, 203, 203, 203, 203, 203, 195, 196, 0, 0, 203, 203, 203, 203, 37, 203, 203, 203, 203, 203, 203, - 203, 203, 47, 203, 164, 55, 203, 157, 0, 203, - 203, 203, 170, 203, 203, 0, 74, 203, 203, 203, - 203, 203, 97, 203, 110, 203, 203, 203, 113, 203, + 203, 203, 47, 203, 164, 55, 203, 156, 0, 203, + 203, 203, 170, 203, 203, 0, 73, 203, 203, 203, + 203, 203, 96, 203, 109, 203, 203, 203, 112, 203, 203, 0, 0, 203, 203, 203, 203, 203, 203, 203, - 203, 203, 203, 203, 203, 51, 203, 50, 156, 0, - 160, 203, 203, 203, 203, 0, 203, 203, 203, 94, + 203, 203, 203, 203, 203, 51, 203, 50, 155, 0, + 160, 203, 203, 203, 203, 0, 203, 203, 203, 93, 203, 203, 203, 203, 203, 203, 203, 0, 0, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 0, 203, 203, 169, 203, 0, 203, 203, - 203, 93, 203, 203, 203, 112, 203, 203, 150, 0, - 150, 203, 203, 203, 203, 203, 203, 203, 175, 203, + 203, 92, 203, 203, 203, 111, 203, 203, 149, 0, + 149, 203, 203, 203, 203, 203, 203, 203, 175, 203, 203, 203, 203, 0, 203, 203, 203, 172, 203, 203, - 203, 203, 203, 203, 203, 158, 149, 203, 161, 149, + 203, 203, 203, 203, 203, 158, 148, 203, 161, 148, 203, 203, 203, 203, 203, 203, 203, 203, 0, 203, - 203, 183, 203, 155, 203, 203, 203, 182, 111, 203, + 203, 183, 203, 154, 203, 203, 203, 182, 110, 203, 203, 203, 203, 203, 203, 203, 203, 45, 0, 203, - 203, 203, 203, 203, 203, 203, 203, 203, 203, 146, + 203, 203, 203, 203, 203, 203, 203, 203, 203, 145, 185, 179, 203, 0, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 173, 159, 171, 203, 203, 203, 180, 203, 203, 203, 203, 203, 203, 203, @@ -398,8 +398,8 @@ static yyconst short int yy_accept[1041] = 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, - 184, 203, 203, 203, 203, 203, 187, 203, 203, 148, - 203, 203, 203, 203, 203, 203, 147, 203, 203, 203, + 184, 203, 203, 203, 203, 203, 187, 203, 203, 147, + 203, 203, 203, 203, 203, 203, 146, 203, 203, 203, 203, 203, 203, 203, 203, 188, 203, 203, 176, 0 } ; @@ -1012,7 +1012,7 @@ char *yytext; #define INITIAL 0 #line 2 "Gmsh.l" -// $Id: Gmsh.yy.cpp,v 1.154 2003-04-10 13:12:37 remacle Exp $ +// $Id: Gmsh.yy.cpp,v 1.155 2003-04-14 17:13:16 geuzaine Exp $ // // Copyright (C) 1997-2003 C. Geuzaine, J.-F. Remacle // @@ -1314,7 +1314,7 @@ do_action: /* This label is used only to access EOF actions. */ case 1: YY_RULE_SETUP #line 84 "Gmsh.l" -/* none */ ; +/* none */; YY_BREAK case 2: YY_RULE_SETUP @@ -1374,22 +1374,22 @@ return tAFFECT; case 13: YY_RULE_SETUP #line 96 "Gmsh.l" -return tAFFECTPLUS ; +return tAFFECTPLUS; YY_BREAK case 14: YY_RULE_SETUP #line 97 "Gmsh.l" -return tAFFECTMINUS ; +return tAFFECTMINUS; YY_BREAK case 15: YY_RULE_SETUP #line 98 "Gmsh.l" -return tAFFECTTIMES ; +return tAFFECTTIMES; YY_BREAK case 16: YY_RULE_SETUP #line 99 "Gmsh.l" -return tAFFECTDIVIDE ; +return tAFFECTDIVIDE; YY_BREAK case 17: YY_RULE_SETUP @@ -1404,62 +1404,62 @@ return tDOTS; case 19: YY_RULE_SETUP #line 102 "Gmsh.l" -return tCROSSPRODUCT ; +return tCROSSPRODUCT; YY_BREAK case 20: YY_RULE_SETUP #line 103 "Gmsh.l" -return tOR ; +return tOR; YY_BREAK case 21: YY_RULE_SETUP #line 104 "Gmsh.l" -return tAND ; +return tAND; YY_BREAK case 22: YY_RULE_SETUP #line 105 "Gmsh.l" -return tPLUSPLUS ; +return tPLUSPLUS; YY_BREAK case 23: YY_RULE_SETUP #line 106 "Gmsh.l" -return tMINUSMINUS ; +return tMINUSMINUS; YY_BREAK case 24: YY_RULE_SETUP #line 107 "Gmsh.l" -return tEQUAL ; +return tEQUAL; YY_BREAK case 25: YY_RULE_SETUP #line 108 "Gmsh.l" -return tNOTEQUAL ; +return tNOTEQUAL; YY_BREAK case 26: YY_RULE_SETUP #line 109 "Gmsh.l" -return tAPPROXEQUAL ; +return tAPPROXEQUAL; YY_BREAK case 27: YY_RULE_SETUP #line 110 "Gmsh.l" -return tLESSOREQUAL ; +return tLESSOREQUAL; YY_BREAK case 28: YY_RULE_SETUP #line 111 "Gmsh.l" -return tGREATEROREQUAL ; +return tGREATEROREQUAL; YY_BREAK case 29: YY_RULE_SETUP #line 113 "Gmsh.l" -return tAcos ; +return tAcos; YY_BREAK case 30: YY_RULE_SETUP #line 114 "Gmsh.l" -return tAcos ; +return tAcos; YY_BREAK case 31: YY_RULE_SETUP @@ -1474,22 +1474,22 @@ return tAsin; case 33: YY_RULE_SETUP #line 117 "Gmsh.l" -return tAtan ; +return tAtan; YY_BREAK case 34: YY_RULE_SETUP #line 118 "Gmsh.l" -return tAtan ; +return tAtan; YY_BREAK case 35: YY_RULE_SETUP #line 119 "Gmsh.l" -return tAtan2 ; +return tAtan2; YY_BREAK case 36: YY_RULE_SETUP #line 120 "Gmsh.l" -return tAtan2 ; +return tAtan2; YY_BREAK case 37: YY_RULE_SETUP @@ -1519,17 +1519,17 @@ return tBounds; case 42: YY_RULE_SETUP #line 128 "Gmsh.l" -return tCeil ; +return tCeil; YY_BREAK case 43: YY_RULE_SETUP #line 129 "Gmsh.l" -return tCosh ; +return tCosh; YY_BREAK case 44: YY_RULE_SETUP #line 130 "Gmsh.l" -return tCos ; +return tCos; YY_BREAK case 45: YY_RULE_SETUP @@ -1594,7 +1594,7 @@ return tDraw; case 57: YY_RULE_SETUP #line 145 "Gmsh.l" -return tExp ; +return tExp; YY_BREAK case 58: YY_RULE_SETUP @@ -1619,152 +1619,152 @@ return tElliptic; case 62: YY_RULE_SETUP #line 150 "Gmsh.l" -return tELLIPSE; +return tEndFor; YY_BREAK case 63: YY_RULE_SETUP #line 151 "Gmsh.l" -return tEndFor; +return tEndIf; YY_BREAK case 64: YY_RULE_SETUP #line 152 "Gmsh.l" -return tEndIf; +return tExit; YY_BREAK case 65: YY_RULE_SETUP -#line 153 "Gmsh.l" -return tExit; +#line 154 "Gmsh.l" +return tFabs; YY_BREAK case 66: YY_RULE_SETUP #line 155 "Gmsh.l" -return tFabs ; +return tFloor; YY_BREAK case 67: YY_RULE_SETUP #line 156 "Gmsh.l" -return tFloor ; +return tFmod; YY_BREAK case 68: YY_RULE_SETUP #line 157 "Gmsh.l" -return tFmod ; +return tFor; YY_BREAK case 69: YY_RULE_SETUP #line 158 "Gmsh.l" -return tFor; +return tFunction; YY_BREAK case 70: YY_RULE_SETUP -#line 159 "Gmsh.l" -return tFunction; +#line 160 "Gmsh.l" +return tHypot; YY_BREAK case 71: YY_RULE_SETUP -#line 161 "Gmsh.l" -return tHypot ; +#line 162 "Gmsh.l" +return tIn; YY_BREAK case 72: YY_RULE_SETUP #line 163 "Gmsh.l" -return tIn; +return tIf; YY_BREAK case 73: YY_RULE_SETUP #line 164 "Gmsh.l" -return tIf; +return tIntersect; YY_BREAK case 74: YY_RULE_SETUP -#line 165 "Gmsh.l" -return tIntersect; +#line 166 "Gmsh.l" +return tKnots; YY_BREAK case 75: YY_RULE_SETUP -#line 167 "Gmsh.l" -return tKnots; +#line 168 "Gmsh.l" +return tLength; YY_BREAK case 76: YY_RULE_SETUP #line 169 "Gmsh.l" -return tLength; +return tLine; YY_BREAK case 77: YY_RULE_SETUP #line 170 "Gmsh.l" -return tLine; +return tLoop; YY_BREAK case 78: YY_RULE_SETUP #line 171 "Gmsh.l" -return tLoop; +return tLog; YY_BREAK case 79: YY_RULE_SETUP #line 172 "Gmsh.l" -return tLog ; +return tLog10; YY_BREAK case 80: YY_RULE_SETUP #line 173 "Gmsh.l" -return tLog10 ; +return tLayers; YY_BREAK case 81: YY_RULE_SETUP -#line 174 "Gmsh.l" -return tLayers; +#line 175 "Gmsh.l" +return tModulo; YY_BREAK case 82: YY_RULE_SETUP #line 176 "Gmsh.l" -return tModulo ; +return tMesh; YY_BREAK case 83: YY_RULE_SETUP #line 177 "Gmsh.l" -return tMesh; +return tMPI_Rank; YY_BREAK case 84: YY_RULE_SETUP #line 178 "Gmsh.l" -return tMPI_Rank; +return tMPI_Size; YY_BREAK case 85: YY_RULE_SETUP -#line 179 "Gmsh.l" -return tMPI_Size; +#line 180 "Gmsh.l" +return tNurbs; YY_BREAK case 86: YY_RULE_SETUP -#line 181 "Gmsh.l" -return tNurbs; +#line 182 "Gmsh.l" +return tOrder; YY_BREAK case 87: YY_RULE_SETUP -#line 183 "Gmsh.l" -return tOrder; +#line 184 "Gmsh.l" +return tPhysical; YY_BREAK case 88: YY_RULE_SETUP #line 185 "Gmsh.l" -return tPhysical; +return tPi; YY_BREAK case 89: YY_RULE_SETUP #line 186 "Gmsh.l" -return tPi; +return tPlane; YY_BREAK case 90: YY_RULE_SETUP #line 187 "Gmsh.l" -return tPlane; +return tPoint; YY_BREAK case 91: YY_RULE_SETUP #line 188 "Gmsh.l" -return tPoint; +return tProgression; YY_BREAK case 92: YY_RULE_SETUP @@ -1774,327 +1774,327 @@ return tProgression; case 93: YY_RULE_SETUP #line 190 "Gmsh.l" -return tProgression; +return tParametric; YY_BREAK case 94: YY_RULE_SETUP #line 191 "Gmsh.l" -return tParametric; +return tPrintf; YY_BREAK case 95: YY_RULE_SETUP #line 192 "Gmsh.l" -return tPrintf; +return tPlugin; YY_BREAK case 96: YY_RULE_SETUP -#line 193 "Gmsh.l" -return tPlugin; +#line 194 "Gmsh.l" +return tRecombine; YY_BREAK case 97: YY_RULE_SETUP #line 195 "Gmsh.l" -return tRecombine; +return tRotate; YY_BREAK case 98: YY_RULE_SETUP #line 196 "Gmsh.l" -return tRotate; +return tRuled; YY_BREAK case 99: YY_RULE_SETUP #line 197 "Gmsh.l" -return tRuled; +return tRand; YY_BREAK case 100: YY_RULE_SETUP #line 198 "Gmsh.l" -return tRand; +return tReturn; YY_BREAK case 101: YY_RULE_SETUP -#line 199 "Gmsh.l" -return tReturn; +#line 200 "Gmsh.l" +return tSqrt; YY_BREAK case 102: YY_RULE_SETUP #line 201 "Gmsh.l" -return tSqrt ; +return tSin; YY_BREAK case 103: YY_RULE_SETUP #line 202 "Gmsh.l" -return tSin ; +return tSinh; YY_BREAK case 104: YY_RULE_SETUP #line 203 "Gmsh.l" -return tSinh ; +return tSpline; YY_BREAK case 105: YY_RULE_SETUP #line 204 "Gmsh.l" -return tSpline; +return tSurface; YY_BREAK case 106: YY_RULE_SETUP #line 205 "Gmsh.l" -return tSurface; +return tSymmetry; YY_BREAK case 107: YY_RULE_SETUP #line 206 "Gmsh.l" -return tSymmetry; +return tSprintf; YY_BREAK case 108: YY_RULE_SETUP #line 207 "Gmsh.l" -return tSprintf ; +return tStrCat; YY_BREAK case 109: YY_RULE_SETUP #line 208 "Gmsh.l" -return tStrCat ; +return tStrPrefix; YY_BREAK case 110: YY_RULE_SETUP -#line 209 "Gmsh.l" -return tStrPrefix ; +#line 210 "Gmsh.l" +return tTriangulation; YY_BREAK case 111: YY_RULE_SETUP #line 211 "Gmsh.l" -return tTriangulation; +return tTransfinite; YY_BREAK case 112: YY_RULE_SETUP #line 212 "Gmsh.l" -return tTransfinite; +return tTranslate; YY_BREAK case 113: YY_RULE_SETUP #line 213 "Gmsh.l" -return tTranslate; +return tTanh; YY_BREAK case 114: YY_RULE_SETUP #line 214 "Gmsh.l" -return tTanh ; +return tTan; YY_BREAK case 115: YY_RULE_SETUP #line 215 "Gmsh.l" -return tTan; +return tTrimmed; YY_BREAK case 116: YY_RULE_SETUP -#line 216 "Gmsh.l" -return tTrimmed; +#line 217 "Gmsh.l" +return tUsing; YY_BREAK case 117: YY_RULE_SETUP -#line 218 "Gmsh.l" -return tUsing; +#line 219 "Gmsh.l" +return tVolume; YY_BREAK case 118: YY_RULE_SETUP -#line 220 "Gmsh.l" -return tVolume; +#line 221 "Gmsh.l" +return tWith; YY_BREAK case 119: YY_RULE_SETUP -#line 222 "Gmsh.l" -return tWith; +#line 223 "Gmsh.l" +return tScalarPoint; YY_BREAK case 120: YY_RULE_SETUP #line 224 "Gmsh.l" -return tScalarPoint; +return tVectorPoint; YY_BREAK case 121: YY_RULE_SETUP #line 225 "Gmsh.l" -return tVectorPoint; +return tTensorPoint; YY_BREAK case 122: YY_RULE_SETUP #line 226 "Gmsh.l" -return tTensorPoint; +return tScalarLine; YY_BREAK case 123: YY_RULE_SETUP #line 227 "Gmsh.l" -return tScalarLine; +return tVectorLine; YY_BREAK case 124: YY_RULE_SETUP #line 228 "Gmsh.l" -return tVectorLine; +return tTensorLine; YY_BREAK case 125: YY_RULE_SETUP #line 229 "Gmsh.l" -return tTensorLine; +return tScalarTriangle; YY_BREAK case 126: YY_RULE_SETUP #line 230 "Gmsh.l" -return tScalarTriangle; +return tVectorTriangle; YY_BREAK case 127: YY_RULE_SETUP #line 231 "Gmsh.l" -return tVectorTriangle; +return tTensorTriangle; YY_BREAK case 128: YY_RULE_SETUP #line 232 "Gmsh.l" -return tTensorTriangle; +return tScalarQuadrangle; YY_BREAK case 129: YY_RULE_SETUP #line 233 "Gmsh.l" -return tScalarQuadrangle; +return tVectorQuadrangle; YY_BREAK case 130: YY_RULE_SETUP #line 234 "Gmsh.l" -return tVectorQuadrangle; +return tTensorQuadrangle; YY_BREAK case 131: YY_RULE_SETUP #line 235 "Gmsh.l" -return tTensorQuadrangle; +return tScalarTetrahedron; YY_BREAK case 132: YY_RULE_SETUP #line 236 "Gmsh.l" -return tScalarTetrahedron; +return tVectorTetrahedron; YY_BREAK case 133: YY_RULE_SETUP #line 237 "Gmsh.l" -return tVectorTetrahedron; +return tTensorTetrahedron; YY_BREAK case 134: YY_RULE_SETUP #line 238 "Gmsh.l" -return tTensorTetrahedron; +return tScalarHexahedron; YY_BREAK case 135: YY_RULE_SETUP #line 239 "Gmsh.l" -return tScalarHexahedron; +return tVectorHexahedron; YY_BREAK case 136: YY_RULE_SETUP #line 240 "Gmsh.l" -return tVectorHexahedron; +return tTensorHexahedron; YY_BREAK case 137: YY_RULE_SETUP #line 241 "Gmsh.l" -return tTensorHexahedron; +return tScalarPrism; YY_BREAK case 138: YY_RULE_SETUP #line 242 "Gmsh.l" -return tScalarPrism; +return tVectorPrism; YY_BREAK case 139: YY_RULE_SETUP #line 243 "Gmsh.l" -return tVectorPrism; +return tTensorPrism; YY_BREAK case 140: YY_RULE_SETUP #line 244 "Gmsh.l" -return tTensorPrism; +return tScalarPyramid; YY_BREAK case 141: YY_RULE_SETUP #line 245 "Gmsh.l" -return tScalarPyramid; +return tVectorPyramid; YY_BREAK case 142: YY_RULE_SETUP #line 246 "Gmsh.l" -return tVectorPyramid; +return tTensorPyramid; YY_BREAK case 143: YY_RULE_SETUP #line 247 "Gmsh.l" -return tTensorPyramid; +return tText2D; YY_BREAK case 144: YY_RULE_SETUP #line 248 "Gmsh.l" -return tText2D; +return tText3D; YY_BREAK case 145: YY_RULE_SETUP -#line 249 "Gmsh.l" -return tText3D; +#line 251 "Gmsh.l" +return tCARTESIAN_POINT; YY_BREAK case 146: YY_RULE_SETUP #line 252 "Gmsh.l" -return tCARTESIAN_POINT; +return tB_SPLINE_SURFACE_WITH_KNOTS; YY_BREAK case 147: YY_RULE_SETUP #line 253 "Gmsh.l" -return tB_SPLINE_SURFACE_WITH_KNOTS; +return tB_SPLINE_CURVE_WITH_KNOTS; YY_BREAK case 148: YY_RULE_SETUP #line 254 "Gmsh.l" -return tB_SPLINE_CURVE_WITH_KNOTS; +return tUNSPECIFIED; YY_BREAK case 149: YY_RULE_SETUP #line 255 "Gmsh.l" -return tUNSPECIFIED; +return tCONTINUOUS; YY_BREAK case 150: YY_RULE_SETUP #line 256 "Gmsh.l" -return tCONTINUOUS; +return tFALSE; YY_BREAK case 151: YY_RULE_SETUP #line 257 "Gmsh.l" -return tFALSE; +return tTRUE; YY_BREAK case 152: YY_RULE_SETUP #line 258 "Gmsh.l" -return tTRUE; +return tU; YY_BREAK case 153: YY_RULE_SETUP #line 259 "Gmsh.l" -return tU; +return tV; YY_BREAK case 154: YY_RULE_SETUP #line 260 "Gmsh.l" -return tV; +return tORIENTED_EDGE; YY_BREAK case 155: YY_RULE_SETUP #line 261 "Gmsh.l" -return tORIENTED_EDGE; +return tEDGE_CURVE; YY_BREAK case 156: YY_RULE_SETUP #line 262 "Gmsh.l" -return tEDGE_CURVE; +return tEDGE_LOOP; YY_BREAK case 157: YY_RULE_SETUP #line 263 "Gmsh.l" -return tEDGE_LOOP; +return tELLIPSE; YY_BREAK case 158: YY_RULE_SETUP @@ -3221,7 +3221,7 @@ void skipcomments(void) { while (1) { while ((c=yyinput()) != '*'){ if(c == EOF){ - Msg(GERROR, "End of file in commented region") ; + Msg(GERROR, "End of file in commented region"); return; } } @@ -3249,7 +3249,7 @@ char *strsave(char *ptr){ } void skipline(void){ - while (yyinput() != '\n') ; + while (yyinput() != '\n'); } void skip_until(char *skip, char *until){ @@ -3257,12 +3257,12 @@ void skip_until(char *skip, char *until){ int l, l_skip, l_until; char chars[256]; - nb_skip = 0 ; + nb_skip = 0; if(skip) l_skip = strlen(skip); else - l_skip = 0 ; + l_skip = 0; l_until = strlen(until); @@ -3270,15 +3270,15 @@ void skip_until(char *skip, char *until){ while (1){ chars[0] = yyinput(); if(chars[0] == (char)EOF){ - Msg(GERROR, "Unexpected end of file") ; + Msg(GERROR, "Unexpected end of file"); return; } if(chars[0] == until[0]) break; if(skip && chars[0] == skip[0]) break; } - l = MAX(l_skip,l_until) ; - for(i=1 ; i<l ; i++){ + l = MAX(l_skip,l_until); + for(i=1; i<l; i++){ chars[i] = yyinput(); if(chars[i] == (char)EOF){ l = i; diff --git a/doc/texinfo/gmsh.texi b/doc/texinfo/gmsh.texi index bac27e311974a4c8be3e7a055edd9cbfda2b1911..2a594ca5126714d76b04f8bc40e79088e65a776b 100644 --- a/doc/texinfo/gmsh.texi +++ b/doc/texinfo/gmsh.texi @@ -1,5 +1,5 @@ \input texinfo.tex @c -*-texinfo-*- -@c $Id: gmsh.texi,v 1.9 2003-04-11 23:36:18 geuzaine Exp $ +@c $Id: gmsh.texi,v 1.10 2003-04-14 17:13:17 geuzaine Exp $ @c @c Copyright (C) 1997-2003 C. Geuzaine, J.-F. Remacle @c @@ -165,8 +165,8 @@ the @cite{Gmsh Reference Manual}, for Gmsh @value{GMSH-VERSION}. Introduction -* What Gmsh is good at...:: -* ... and what Gmsh sucks at:: +* What Gmsh is pretty good at...:: +* ... and what it is not so good at:: * Syntactic rules:: Overview @@ -268,73 +268,119 @@ developments and download information, are always available on @unnumbered Introduction @cindex Introduction -@cindex Reading, guidelines +@cindex Overview Gmsh is an automatic three-dimensional finite element mesh generator, primarily Delaunay, with built-in pre- and post-processing facilities. Its primal design goal is to provide a simple meshing tool for academic test -cases with parametric input and up to date visualization capabilities. - -One of the strengths of Gmsh is its ability to respect a characteristic -length field for the generation of adapted meshes on lines, surfaces and +cases with parametric input and up to date visualization capabilities. One +of the strengths of Gmsh is its ability to respect a characteristic length +field for the generation of adapted meshes on lines, surfaces and volumes. These adapted meshes can be mixed with simple structured -(transfinite, elliptic, etc.) meshes in order to augment the flexibility. - +(transfinite, extruded, etc.) meshes in order to augment the flexibility. All geometrical, mesh, solver and post-processing instructions are -prescribed in a language analyzed by Lex and Yacc. The code itself is -written in C++, while the graphics are rendered with OpenGL and the user -interface is based on the FLTK widget set. @xref{Programming comments}, for -some development comments. +prescribed either interactively using the graphical user interface or in +ASCII data files using Gmsh's own scripting language. @menu -* What Gmsh is good at...:: -* ... and what Gmsh sucks at:: +* What Gmsh is pretty good at...:: +* ... and what it is not so good at:: * Syntactic rules:: @end menu @c ------------------------------------------------------------------------- -@c What Gmsh is good at +@c What Gmsh is pretty good at @c ------------------------------------------------------------------------- -@node What Gmsh is good at..., ... and what Gmsh sucks at, Introduction, Introduction -@section What Gmsh is good at... - -Gmsh should be pretty good at - +@node What Gmsh is pretty good at..., ... and what it is not so good at, Introduction, Introduction +@section What Gmsh is pretty good at... +@itemize @bullet +@item +Describe quickly simple and/or ``repetitive'' geometries. Models are +constructed by defining successively points, curves, surfaces and volumes +(@pxref{Geometry}). Loops and includes can be used to perform repetitive +tasks (@pxref{Loops and tests}, @pxref{General commands}). +@item +Parameterize these geometries: the model is described in Gmsh's own +language, where all commands and command arguments can depend on previous +calculations. +@item +Generate 1D, 2D and 3D simplicial (i.e. using line segments, triangles and +tetrahedra) finite element meshes. The 1D and 2D algorithms should have +pretty good performance in most cases. The 3D algorithm is still more +experimental. +@item +Specify target element sizes: Gmsh provides several mechanisms to control +the size of the elements in the final (interpolation from geometrical point +characteristic lengths, explicit background mesh, attractors). +@item +Create simple extruded geometries and meshes. +@item +Interact with your solver: Gmsh provides C/C++ and perl interfaces, and +others can be easily added (@pxref{Solver}). +@item +Visualize computational results in a great variety of ways. Gmsh can +display scalar, vector and tensor data sets in many different ways. +@item +Perform various operations on the post-processing views using plugins +(@pxref{Post-processing}). +@item +Exports plots in many different formats (vector PostScript or encapsulated +PostScript, LaTeX, PNG, JPEG, GIF, etc.). +@item +Generate complex animations. +@item +Run on low end machines and/or machines without graphic systems: Gmsh can be +compiled with or without the graphical user interface; graphical versions +can be used either interactively or without graphicak output, directly from +the command-line. +@item +Configure your preferred options for all subsequent operations: Gmsh has a +large number of configurations options that can be set interactively, +scattered inside command files (and changed on the fly in scripts), set in +per-user configuration files, or specified on the command-line +(@pxref{Options}). +@end itemize @c ------------------------------------------------------------------------- -@c ... and what Gmsh sucks at +@c ... and what it is not so good at @c ------------------------------------------------------------------------- -@node ... and what Gmsh sucks at, Syntactic rules, What Gmsh is good at..., Introduction -@section ... and what Gmsh sucks at - -Gmsh is not an primarily a structured mesh generator. You can transfinite, -extruded - -Related to the previous point: there is no automatic quadrilateral or -hexahedral meshing algorithm implemented. If you want quads, you have to use -transfinite or extruded meshes (see XXX) or recombine unstructured -triangular meshes. For hexahedra, your only choice is transfinite or -extruded meshes. +@node ... and what it is not so good at, Syntactic rules, What Gmsh is pretty good at..., Introduction +@section ... and what it is not so good at +@itemize @bullet +@item +The bottom-up approach for describing geometries can become tedious for +complex structures. +@item +There is no support for NURBS and only very limited support for trimmed +surfaces. +@item +Gmsh is not primarily a structured mesh generator: no automatic +quadrilateral or hexahedral meshing algorithm is provided. If you want +quadrangles, you have to use transfinite or extruded meshes (@pxref{Mesh}) +or recombine unstructured triangular meshes. For hexahedra, your only choice +is transfinite or extruded meshes. +@item Gmsh is not a multibloc generator: all meshes produced by Gmsh are -conforming in the sense of finite element meshes -(see XXX) - -Gmsh was designed for solving academic/verification test-cases, not -industrial-size problems. - very large problems: (> million elements) both -for geometry, mesh and post-processing. Gmsh is NOT optimized for -speed. Your mileage may vary, of course, depending of what you consider a -``large'' problem... - +conforming in the sense of finite element meshes (@pxref{Mesh}) +@item +There is not support for curved mesh elements as of this writing (Gmsh +1.44). +@item +Gmsh is designed for solving academic test-cases, not industrial-size +problems. You may find that Gmsh is too slow for large problems (with +thousands of geometric primitives; or millions of mesh/post-processing +elements). +@end itemize @c ------------------------------------------------------------------------- @c Syntactic Rules Used in this Document @c ------------------------------------------------------------------------- -@node Syntactic rules, , ... and what Gmsh sucks at, Introduction +@node Syntactic rules, , ... and what it is not so good at, Introduction @section Syntactic rules used in this document @cindex Syntax, rules @@ -349,8 +395,7 @@ speed. Your mileage may vary, of course, depending of what you consider a Here are the rules we tried to follow when writing this user's guide. Note that metasyntactic variable definitions stay valid throughout all the manual -(and not only in the sections where the definitions -appear). +(and not only in the sections where the definitions appear). @enumerate @item @@ -368,9 +413,6 @@ Multiple choices are separated by @code{|}. @item Three dots (@dots{}) indicate a possible repetition of the preceding rule. @item -For conciseness, the notation @code{@var{rule} <, @var{rule} > @dots{}} -is replaced by @code{@var{rule} <,@dots{}>}. -@item The @var{etc} symbol replaces nonlisted rules. @end enumerate @@ -386,18 +428,12 @@ The @var{etc} symbol replaces nonlisted rules. Gmsh is structured around four modules: geometry, mesh, solver and post-processing. The specification of any input to these modules is done either interactively, or in text data files (interactive specifications -generate language bits in the input file, and XXXlatin vice versa). The -accessibility of most features in the ASCII text file makes it possible to -automate all treatments (loops, tests and external access methods permit -advanced scripting capabilities). The internal kernel of Gmsh reflects this +generate language bits in the input file, and vice versa). The accessibility +of most features in the ASCII text file makes it possible to automate all +treatments (loops, tests and external access methods permit advanced +scripting capabilities). The internal kernel of Gmsh reflects this structure: it is built around a geometry, mesh, solver and post-processing -database. It is interesting to notice that the data can be provided to these -databases either in the native format or thanks to dynamically loadable -modules (plug-ins). This is most interesting to convert CAD data from other -description languages (e.g. DXF or STEP), to launch external applications -from inside Gmsh (e.g. GetDP or other solvers) or to apply complex -user-defined treatments to geometry, mesh or post-processing data. A brief -description of the four modules is given hereafter. +module. A brief description of these four modules is given hereafter. @menu * Geometry:: @@ -430,17 +466,16 @@ of all geometrical entities. @node Mesh, Solver, Geometry, Overview @section Mesh: finite element mesh generation -A finite element mesh is a tessellation of a given subset of -R<sup>3</sup> by elementary geometrical elements of various shapes (in -this case lines, triangles, quadrangles, tetrahedra, prisms, hexahedra -and pyramids), arranged in such a way that if two of them intersect, -they do so along a face, an edge or a node, and never otherwise. All -the finite element meshes produced by Gmsh as unstructured, even if -they were generated in a structured way. This implies that the -elementary geometrical elements are defined only by an ordered list of -their vertices (which allows the orientation of all their lower order -geometrical entities) but no predefined relation is assumed between -any two elementary elements. +A finite element mesh is a tessellation of a given subset of R3 by +elementary geometrical elements of various shapes (in this case lines, +triangles, quadrangles, tetrahedra, prisms, hexahedra and pyramids), +arranged in such a way that if two of them intersect, they do so along a +face, an edge or a node, and never otherwise. All the finite element meshes +produced by Gmsh as unstructured, even if they were generated in a +structured way. This implies that the elementary geometrical elements are +defined only by an ordered list of their vertices (which allows the +orientation of all their lower order geometrical entities) but no predefined +relation is assumed between any two elementary elements. The mesh generation is performed in the same order as the geometry creation: curves are discretized first; the mesh of the curves is then @@ -458,23 +493,24 @@ as additional constraints for the unstructured parts. The implemented Delaunay algorithm is subdivided in the following five steps for surface/volume discretization: -1. trivial meshing of a box including the convex polygon/polyhedron -defined by the boundary nodes resulting from the discretization of the -curves/surfaces; - -2. creation of the initial mesh by insertion of all the nodes on the +@enumerate +@item +trivial meshing of a box including the convex polygon/polyhedron defined by +the boundary nodes resulting from the discretization of the curves/surfaces; +@item +creation of the initial mesh by insertion of all the nodes on the curves/surfaces thanks to the Bowyer algorithm; - -3. boundary restoration to force all the edges/faces of the -curves/surfaces to be present in the initial mesh; - -4. suppression of all the unwanted triangles/tetrahedra (in -particular those containing the nodes of the initial box); - -5. insertion of new nodes by the Bowyer algorithm until the -characteristic size of each simplex is lower or equal to the -characteristic length field evaluated at the center of its -circumscribed circle/sphere. +@item +boundary restoration to force all the edges/faces of the curves/surfaces to +be present in the initial mesh; +@item +suppression of all the unwanted triangles/tetrahedra (in particular those +containing the nodes of the initial box); +@item +insertion of new nodes by the Bowyer algorithm until the characteristic size +of each simplex is lower or equal to the characteristic length field +evaluated at the center of its circumscribed circle/sphere. +@end enumerate @c ------------------------------------------------------------------------- @c Solver: external solver interface @@ -483,14 +519,12 @@ circumscribed circle/sphere. @node Solver, Post-processing, Mesh, Overview @section Solver: external solver interface -External solvers can be interfaced with Gmsh through a socket -mechanism, which permits to easily launch computations either locally -or on remote computers, and to collect and exploit the simulation -results within Gmsh. The default solver interfaced with Gmsh is <a -href="/getdp/">GetDP</a>. Check the <a href="#mysolver">solver -examples</a> to see how to define your own solver (be sure to also -read the answer to the question 6.1 in the <a -HREF="/gmsh/doc/FAQ">FAQ</a>). +External solvers can be interfaced with Gmsh through Unix sockets, which +permits to easily launch computations either locally or on remote computers, +and to collect and exploit the simulation results within Gmsh. The default +solver interfaced with Gmsh is GetDP +(@uref{http://www.geuz.org/getdp/}). @xref{Solver}, to see how to define +your own solver. @c ------------------------------------------------------------------------- @c Post-processing: scalar and vector field visualization @@ -499,17 +533,17 @@ HREF="/gmsh/doc/FAQ">FAQ</a>). @node Post-processing, , Solver, Overview @section Post-processing: scalar and vector field visualization -Multiple post-processing scalar or vector maps can be loaded and -manipulated (globally or individually) along with the geometry and the -mesh. Scalar fields are represented by iso-value curves/surfaces or -color maps and vector fields by three-dimensional arrows or -displacement maps. Post-processing functions include arbitrary section -computation, offset, elevation, boundary extraction, color map and -range modification, animation, <a href="/gl2ps/">vector graphic -output</a>, etc. All post-processing options can be accessed either -interactively or through the input ASCII text files. Scripting permits -to automate all the post-processing operations (e.g. for the creation -of complex animations). +Multiple post-processing scalar or vector maps can be loaded and manipulated +(globally or individually) along with the geometry and the mesh. Scalar +fields are represented by iso-value curves/surfaces or color maps and vector +fields by three-dimensional arrows or displacement maps. Post-processing +functions include arbitrary section computation, offset, elevation, boundary +extraction, color map and range modification, animation, vector graphic +output, etc. All post-processing options can be accessed either +interactively or through the input ASCII text files. Scripting permits to +automate all the post-processing operations (e.g. for the creation of +complex animations). User-defined operations can also be performed on +post-proessing views through to dynamically loadable modules (plug-ins). @c ========================================================================= @c General tools @@ -835,14 +869,13 @@ i.e.@: @code{^} has the highest evaluation priority). Parentheses @c ------------------------------------------------------------------------- -@c Functions +@c Built-in functions @c ------------------------------------------------------------------------- -@node Functions, General commands, Operators, General tools -@section Functions +@node Built-in functions, General commands, Operators, General tools +@section Built-in functions -@cindex Function, definition -@cindex Built-in functions +@cindex Functions, built-in @vindex @var{function-id} @@ -967,37 +1000,61 @@ Hyperbolic tangent of @var{expression}. @end ftable @c ------------------------------------------------------------------------- -@c General commands +@c User-defined functions @c ------------------------------------------------------------------------- -@node General commands, Option database, Functions, General tools -@section General commands +@node User-defined functions, General commands, Operators, General tools +@section User-defined Functions + +@cindex Function, user-defined @ftable @code @item Call @code{"@var{expression-char}"} -@item EndFor +@item Function -@item EndIf +@item Return -@item Exit +@end ftable + +@c ------------------------------------------------------------------------- +@c Loops and tests +@c ------------------------------------------------------------------------- + +@node Loops and tests, General commands, Operators, General tools +@section Loops and tests + +@ftable @code @item For -@item Function +@item EndFor + +@item EndIf @item If +@end ftable + +@c ------------------------------------------------------------------------- +@c General commands +@c ------------------------------------------------------------------------- + +@node General commands, Option database, Functions, General tools +@section General commands + +@ftable @code + +@item Exit + @item MPI_Rank @item MPI_Size @item Printf -@item Return - @item Sprintf @item StrCat @@ -1060,13 +1117,6 @@ same line is ignored. XXX verify this @code{#include @var{expression-char}} @end example -unused keywords: -Bounds -Complex -Ellipse -Extrude -ELLIPSE - @c ------------------------------------------------------------------------- @c Option database @c ------------------------------------------------------------------------- @@ -1103,12 +1153,14 @@ XXX @item Delete @item Dilate @item Duplicata -@item Ellipsis +@item Ellipsis +(synonym: Ellipse) @item Intersect @item Knots @item Line @item Loop -@item Nurbs +@item Nurbs Surface +@item Nurbs Surface With Bounds @item Order @item Physical @item Plane @@ -1121,7 +1173,8 @@ XXX @item Triangulation @item Translate @item Trimmed -@item Volume +@item Volume +(synonym: Complex Volume) @end ftable @c ========================================================================= @@ -1138,6 +1191,7 @@ XXX @item Bump @item Characteristic @item Elliptic +@item Extrude @item Length @item Layers @item Meshes @@ -1403,9 +1457,21 @@ dans Gmsh... @cindex @code{yacc} @cindex @code{bison} -The analysis of the syntax is performed by Lex and Yacc, the software being -written in C++ (but most of it was initially written in C, which results in -some hybrid code...). +The analysis of the syntax is performed by Lex and Yacc. + +The code itself is in C++ (but most of it was initially written in C, which +results in some hybrid code...). + +All graphics are rendered using OpenGL. + +The user interface is based on the FLTK widget set. + + +@uref{http://www.opengl.org} +@uref{http://www.mesa3d.org} +@uref{http://www.fltk.org} +@uref{http://www.cygwin.com} + @c ========================================================================= @c Bugs, versions and contributors