Newer
Older
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA. */
/* As a special exception, you may create a larger work that contains
part or all of the Bison parser skeleton and distribute that work
under terms of your choice, so long as that work isn't itself a
parser generator using the skeleton or a modified version thereof
as a parser skeleton. Alternatively, if you modify or redistribute
the parser skeleton itself, you may (at your option) remove this
special exception, which will cause the skeleton and the resulting
Bison output files to be licensed under the GNU General Public
License without this special exception.
This special exception was added by the Free Software Foundation in
version 2.2 of Bison. */
/* C LALR(1) parser skeleton written by Richard Stallman, by
simplifying the original so-called "semantic" parser. */
/* All symbols defined below should begin with yy or YY, to avoid
infringing on user name space. This should be done even for local
variables, as they might otherwise be expanded by user macros.
There are some unavoidable exceptions within include files to
define necessary library symbols; they are noted "INFRINGES ON
USER NAME SPACE" below. */
/* Identify Bison output. */
#define YYBISON 1
/* Bison version. */
#define YYBISON_VERSION "2.3"
/* Skeleton name. */
#define YYSKELETON_NAME "yacc.c"
/* Pure parsers. */
#define YYPURE 0
/* Using locations. */
#define YYLSP_NEEDED 0
/* Substitute the variable and function names. */
#define yyparse gmsh_yyparse
#define yylex gmsh_yylex
#define yyerror gmsh_yyerror
#define yylval gmsh_yylval
#define yychar gmsh_yychar
#define yydebug gmsh_yydebug
#define yynerrs gmsh_yynerrs
69
70
71
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/* Tokens. */
#ifndef YYTOKENTYPE
# define YYTOKENTYPE
/* Put the tokens into the symbol table, so that GDB and other debuggers
know about them. */
enum yytokentype {
tDOUBLE = 258,
tSTRING = 259,
tBIGSTR = 260,
tEND = 261,
tAFFECT = 262,
tDOTS = 263,
tPi = 264,
tMPI_Rank = 265,
tMPI_Size = 266,
tEuclidian = 267,
tCoordinates = 268,
tExp = 269,
tLog = 270,
tLog10 = 271,
tSqrt = 272,
tSin = 273,
tAsin = 274,
tCos = 275,
tAcos = 276,
tTan = 277,
tRand = 278,
tAtan = 279,
tAtan2 = 280,
tSinh = 281,
tCosh = 282,
tTanh = 283,
tFabs = 284,
tFloor = 285,
tCeil = 286,
tFmod = 287,
tModulo = 288,
tHypot = 289,
tPrintf = 290,
tSprintf = 291,
tStrCat = 292,
tStrPrefix = 293,
tStrRelative = 294,
tBoundingBox = 295,
tDraw = 296,
tToday = 297,
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
tDistanceFunction = 300,
tPoint = 301,
tCircle = 302,
tEllipse = 303,
tLine = 304,
tSphere = 305,
tPolarSphere = 306,
tSurface = 307,
tSpline = 308,
tVolume = 309,
tCharacteristic = 310,
tLength = 311,
tParametric = 312,
tElliptic = 313,
tPlane = 314,
tRuled = 315,
tTransfinite = 316,
tComplex = 317,
tPhysical = 318,
tCompound = 319,
tUsing = 320,
tPlugin = 321,
tDegenerated = 322,
tOCCShape = 323,
tRotate = 324,
tTranslate = 325,
tSymmetry = 326,
tDilate = 327,
tExtrude = 328,
tLevelset = 329,
tLoop = 330,
tRecombine = 331,
tSmoother = 332,
tSplit = 333,
tDelete = 334,
tCoherence = 335,
tIntersect = 336,
tLayers = 337,
tHole = 338,
tAlias = 339,
tAliasWithOptions = 340,
tText2D = 341,
tText3D = 342,
tInterpolationScheme = 343,
tTime = 344,
tCombine = 345,
tBSpline = 346,
tBezier = 347,
tNurbs = 348,
tNurbsOrder = 349,
tNurbsKnots = 350,
tColor = 351,
tColorTable = 352,
tFor = 353,
tIn = 354,
tEndFor = 355,
tIf = 356,
tEndIf = 357,
tExit = 358,
tField = 359,
tReturn = 360,
tCall = 361,
tFunction = 362,
tShow = 363,
tHide = 364,
tGetValue = 365,
tGMSH_MAJOR_VERSION = 366,
tGMSH_MINOR_VERSION = 367,
tGMSH_PATCH_VERSION = 368,
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
};
#endif
/* Tokens. */
#define tDOUBLE 258
#define tSTRING 259
#define tBIGSTR 260
#define tEND 261
#define tAFFECT 262
#define tDOTS 263
#define tPi 264
#define tMPI_Rank 265
#define tMPI_Size 266
#define tEuclidian 267
#define tCoordinates 268
#define tExp 269
#define tLog 270
#define tLog10 271
#define tSqrt 272
#define tSin 273
#define tAsin 274
#define tCos 275
#define tAcos 276
#define tTan 277
#define tRand 278
#define tAtan 279
#define tAtan2 280
#define tSinh 281
#define tCosh 282
#define tTanh 283
#define tFabs 284
#define tFloor 285
#define tCeil 286
#define tFmod 287
#define tModulo 288
#define tHypot 289
#define tPrintf 290
#define tSprintf 291
#define tStrCat 292
#define tStrPrefix 293
#define tStrRelative 294
#define tBoundingBox 295
#define tDraw 296
#define tToday 297
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
#define tDistanceFunction 300
#define tPoint 301
#define tCircle 302
#define tEllipse 303
#define tLine 304
#define tSphere 305
#define tPolarSphere 306
#define tSurface 307
#define tSpline 308
#define tVolume 309
#define tCharacteristic 310
#define tLength 311
#define tParametric 312
#define tElliptic 313
#define tPlane 314
#define tRuled 315
#define tTransfinite 316
#define tComplex 317
#define tPhysical 318
#define tCompound 319
#define tUsing 320
#define tPlugin 321
#define tDegenerated 322
#define tOCCShape 323
#define tRotate 324
#define tTranslate 325
#define tSymmetry 326
#define tDilate 327
#define tExtrude 328
#define tLevelset 329
#define tLoop 330
#define tRecombine 331
#define tSmoother 332
#define tSplit 333
#define tDelete 334
#define tCoherence 335
#define tIntersect 336
#define tLayers 337
#define tHole 338
#define tAlias 339
#define tAliasWithOptions 340
#define tText2D 341
#define tText3D 342
#define tInterpolationScheme 343
#define tTime 344
#define tCombine 345
#define tBSpline 346
#define tBezier 347
#define tNurbs 348
#define tNurbsOrder 349
#define tNurbsKnots 350
#define tColor 351
#define tColorTable 352
#define tFor 353
#define tIn 354
#define tEndFor 355
#define tIf 356
#define tEndIf 357
#define tExit 358
#define tField 359
#define tReturn 360
#define tCall 361
#define tFunction 362
#define tShow 363
#define tHide 364
#define tGetValue 365
#define tGMSH_MAJOR_VERSION 366
#define tGMSH_MINOR_VERSION 367
#define tGMSH_PATCH_VERSION 368
#define tHomRank 369
#define tHomGen 370
#define tHomCut 371
#define tAFFECTDIVIDE 372
#define tAFFECTTIMES 373
#define tAFFECTMINUS 374
#define tAFFECTPLUS 375
#define tOR 376
#define tAND 377
#define tNOTEQUAL 378
#define tEQUAL 379
#define tGREATEROREQUAL 380
#define tLESSOREQUAL 381
#define UNARYPREC 382
#define tMINUSMINUS 383
#define tPLUSPLUS 384
#line 1 "Gmsh.y"
// Gmsh - Copyright (C) 1997-2009 C. Geuzaine, J.-F. Remacle
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to <gmsh@geuz.org>.
#include <stdarg.h>
#include "GmshConfig.h"

Christophe Geuzaine
committed
#include "GmshMessage.h"
#include "MallocUtils.h"
#include "ListUtils.h"
#include "TreeUtils.h"
#include "Numeric.h"
#include "Context.h"
#include "Geo.h"
#include "Colors.h"
#include "Field.h"
#include "BackgroundMesh.h"

Christophe Geuzaine
committed
#include "PView.h"
#include "PViewDataList.h"
#include "PluginManager.h"
#endif
#if defined(HAVE_OPENGL)
// Global parser variables
std::string gmsh_yyname;
int gmsh_yyerrorstate = 0;
int gmsh_yyviewindex = 0;
std::map<std::string, std::vector<double> > gmsh_yysymbols;
// Static parser variables (accessible only in this file)
static std::map<std::string, std::string > gmsh_yystringsymbols;
static PViewDataList *ViewData;
#endif

Christophe Geuzaine
committed
static std::vector<double> *ViewValueList = 0;
static ExtrudeParams extr;

Christophe Geuzaine
committed
static int curPhysDim = 0;
#define MAX_RECUR_LOOPS 100
static int ImbricatedLoop = 0;
static fpos_t yyposImbricatedLoopsTab[MAX_RECUR_LOOPS];
static int yylinenoImbricatedLoopsTab[MAX_RECUR_LOOPS];
static double LoopControlVariablesTab[MAX_RECUR_LOOPS][3];

Christophe Geuzaine
committed
static const char *LoopControlVariablesNameTab[MAX_RECUR_LOOPS];
void yymsg(int level, const char *fmt, ...);
void skip_until(const char *skip, const char *until);
fullMatrix<double> ListOfListOfDouble2Matrix(List_T *list);
/* Enabling traces. */
#ifndef YYDEBUG
# define YYDEBUG 0
#endif
/* Enabling verbose error messages. */
#ifdef YYERROR_VERBOSE
# undef YYERROR_VERBOSE
# define YYERROR_VERBOSE 1
#else
# define YYERROR_VERBOSE 0
#endif
/* Enabling the token table. */
#ifndef YYTOKEN_TABLE
# define YYTOKEN_TABLE 0
#endif
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
typedef union YYSTYPE
/* Line 193 of yacc.c. */
#line 456 "Gmsh.tab.cpp"
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
# define YYSTYPE_IS_DECLARED 1
# define YYSTYPE_IS_TRIVIAL 1
#endif
/* Copy the second part of user declarations. */
/* Line 216 of yacc.c. */
#ifdef YYTYPE_UINT8
typedef YYTYPE_UINT8 yytype_uint8;
#else
typedef unsigned char yytype_uint8;
#ifdef YYTYPE_INT8
typedef YYTYPE_INT8 yytype_int8;
#elif (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
typedef signed char yytype_int8;
#else
typedef short int yytype_int8;
#endif
#ifdef YYTYPE_UINT16
typedef YYTYPE_UINT16 yytype_uint16;
#else
typedef unsigned short int yytype_uint16;
#endif
#ifdef YYTYPE_INT16
typedef YYTYPE_INT16 yytype_int16;
#else
typedef short int yytype_int16;
#endif
#ifndef YYSIZE_T
# ifdef __SIZE_TYPE__
# define YYSIZE_T __SIZE_TYPE__
# elif defined size_t
# define YYSIZE_T size_t
# elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
# define YYSIZE_T size_t
# else
# define YYSIZE_T unsigned int
# endif
#endif
# if defined YYENABLE_NLS && YYENABLE_NLS
# if ENABLE_NLS
# include <libintl.h> /* INFRINGES ON USER NAME SPACE */
# define YY_(msgid) dgettext ("bison-runtime", msgid)
# endif
# endif
# ifndef YY_
# define YY_(msgid) msgid
# endif
#endif
/* Suppress unused-variable warnings by "using" E. */
#if ! defined lint || defined __GNUC__
# define YYUSE(e) ((void) (e))
#else
# define YYUSE(e) /* empty */
/* Identity function, used to suppress warnings about constant conditions. */
#ifndef lint
# define YYID(n) (n)
#else
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static int
YYID (int i)
#else
static int
YYID (i)
int i;
#endif
{
return i;
}
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
#if ! defined yyoverflow || YYERROR_VERBOSE
/* The parser invokes alloca or malloc; define the necessary symbols. */
# ifdef YYSTACK_USE_ALLOCA
# if YYSTACK_USE_ALLOCA
# ifdef __GNUC__
# define YYSTACK_ALLOC __builtin_alloca
# elif defined __BUILTIN_VA_ARG_INCR
# include <alloca.h> /* INFRINGES ON USER NAME SPACE */
# elif defined _AIX
# define YYSTACK_ALLOC __alloca
# elif defined _MSC_VER
# include <malloc.h> /* INFRINGES ON USER NAME SPACE */
# define alloca _alloca
# else
# define YYSTACK_ALLOC alloca
# if ! defined _ALLOCA_H && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
# ifndef _STDLIB_H
# define _STDLIB_H 1
# endif
# endif
# endif
# endif
# endif
# ifdef YYSTACK_ALLOC
/* Pacify GCC's `empty if-body' warning. */
# define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0))
# ifndef YYSTACK_ALLOC_MAXIMUM
/* The OS might guarantee only one guard page at the bottom of the stack,
and a page size can be as small as 4096 bytes. So we cannot safely
invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
to allow for a few compiler-allocated temporary stack slots. */
# define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
# endif
# else
# define YYSTACK_ALLOC YYMALLOC
# define YYSTACK_FREE YYFREE
# ifndef YYSTACK_ALLOC_MAXIMUM
# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
# endif
# if (defined __cplusplus && ! defined _STDLIB_H \
&& ! ((defined YYMALLOC || defined malloc) \
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
# ifndef _STDLIB_H
# define _STDLIB_H 1
# endif
# endif
# ifndef YYMALLOC
# define YYMALLOC malloc
# if ! defined malloc && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
# endif
# endif
# ifndef YYFREE
# define YYFREE free
# if ! defined free && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
void free (void *); /* INFRINGES ON USER NAME SPACE */
# endif
# endif
# endif
#endif /* ! defined yyoverflow || YYERROR_VERBOSE */
#if (! defined yyoverflow \
&& (! defined __cplusplus \
/* A type that is properly aligned for any stack member. */
union yyalloc
{
yytype_int16 yyss;
YYSTYPE yyvs;
};
/* The size of the maximum gap between one aligned stack and the next. */
# define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
/* The size of an array large to enough to hold all stacks, each with
N elements. */
# define YYSTACK_BYTES(N) \
((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \
+ YYSTACK_GAP_MAXIMUM)
/* Copy COUNT objects from FROM to TO. The source and destination do
not overlap. */
# ifndef YYCOPY
# if defined __GNUC__ && 1 < __GNUC__
# define YYCOPY(To, From, Count) \
__builtin_memcpy (To, From, (Count) * sizeof (*(From)))
# else
# define YYCOPY(To, From, Count) \
do \
{ \
YYSIZE_T yyi; \
for (yyi = 0; yyi < (Count); yyi++) \
(To)[yyi] = (From)[yyi]; \
} \
while (YYID (0))
# endif
# endif
/* Relocate STACK from its old location to the new one. The
local variables YYSIZE and YYSTACKSIZE give the old and new number of
elements in the stack, and YYPTR gives the new location of the
stack. Advance YYPTR to a properly aligned location for the next
stack. */
# define YYSTACK_RELOCATE(Stack) \
do \
{ \
YYSIZE_T yynewbytes; \
YYCOPY (&yyptr->Stack, Stack, yysize); \
Stack = &yyptr->Stack; \
yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
yyptr += yynewbytes / sizeof (*yyptr); \
} \
/* YYFINAL -- State number of the termination state. */
#define YYFINAL 5
/* YYLAST -- Last index in YYTABLE. */
/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
#define YYUNDEFTOK 2
((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
/* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */
static const yytype_uint8 yytranslate[] =
{
0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 135, 2, 145, 2, 134, 2, 2,
140, 141, 132, 130, 146, 131, 144, 133, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 1, 2, 3, 4,
5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
55, 56, 57, 58, 59, 60, 61, 62, 63, 64,
65, 66, 67, 68, 69, 70, 71, 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, 98, 99, 100, 101, 102, 103, 104,
105, 106, 107, 108, 109, 110, 111, 112, 113, 114,
115, 116, 117, 118, 119, 120, 122, 123, 124, 125,
128, 129, 136, 137, 138
#if YYDEBUG
/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
YYRHS. */
static const yytype_uint16 yyprhs[] =
{
0, 0, 3, 5, 8, 9, 12, 14, 16, 18,
20, 22, 24, 26, 28, 30, 32, 34, 36, 38,
40, 42, 44, 46, 49, 55, 63, 71, 81, 88,
95, 102, 103, 106, 109, 112, 115, 118, 120, 124,
126, 130, 131, 132, 143, 145, 149, 150, 164, 166,
170, 171, 187, 196, 211, 212, 219, 221, 223, 225,
227, 229, 231, 233, 238, 246, 256, 263, 270, 274,
281, 286, 293, 303, 310, 320, 326, 335, 344, 356,
363, 373, 379, 387, 397, 407, 419, 429, 439, 441,
443, 444, 450, 451, 454, 462, 463, 473, 480, 488,
493, 501, 510, 519, 527, 535, 547, 556, 557, 567,
576, 586, 590, 595, 606, 614, 622, 631, 632, 642,
651, 664, 673, 682, 691, 699, 709, 710, 720, 726,
738, 744, 754, 759, 769, 779, 781, 783, 784, 787,
794, 801, 808, 815, 824, 839, 856, 869, 878, 887,
894, 909, 914, 921, 928, 932, 937, 943, 947, 951,
956, 961, 965, 973, 981, 985, 993, 997, 1000, 1003,
1006, 1022, 1025, 1028, 1035, 1044, 1053, 1064, 1066, 1069,
1071, 1075, 1080, 1082, 1088, 1100, 1114, 1115, 1123, 1124,
1138, 1139, 1155, 1156, 1163, 1172, 1181, 1190, 1203, 1216,
1229, 1244, 1259, 1274, 1275, 1288, 1289, 1302, 1303, 1316,
1317, 1334, 1335, 1352, 1353, 1370, 1371, 1390, 1391, 1410,
1411, 1430, 1432, 1435, 1441, 1449, 1459, 1462, 1472, 1473,
1477, 1478, 1480, 1481, 1484, 1485, 1488, 1496, 1503, 1512,
1518, 1524, 1531, 1542, 1553, 1564, 1575, 1578, 1582, 1590,
1602, 1614, 1616, 1620, 1623, 1626, 1629, 1633, 1637, 1641,
1645, 1649, 1653, 1657, 1661, 1665, 1669, 1673, 1677, 1681,
1685, 1691, 1696, 1701, 1706, 1711, 1716, 1721, 1726, 1731,
1736, 1741, 1748, 1753, 1758, 1763, 1768, 1773, 1778, 1785,
1792, 1799, 1804, 1809, 1814, 1819, 1824, 1829, 1834, 1839,
1844, 1849, 1854, 1861, 1866, 1871, 1876, 1881, 1886, 1891,
1898, 1905, 1912, 1917, 1919, 1921, 1923, 1925, 1927, 1929,
1931, 1933, 1939, 1944, 1949, 1952, 1958, 1962, 1969, 1974,
1982, 1989, 1991, 1994, 1997, 2001, 2005, 2017, 2027, 2035,
2043, 2045, 2049, 2051, 2053, 2056, 2060, 2065, 2071, 2073,
2075, 2078, 2082, 2086, 2092, 2097, 2099, 2101, 2105, 2112,
2114, 2116, 2120, 2124, 2134, 2142, 2144, 2150, 2154, 2161,
2163, 2167, 2169, 2171, 2175, 2182, 2184, 2186, 2193, 2198,
2203, 2208
/* YYRHS -- A `-1'-separated list of the rules' RHS. */
static const yytype_int16 yyrhs[] =
{
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
151, 0, -1, 152, -1, 1, 6, -1, -1, 152,
153, -1, 156, -1, 155, -1, 174, -1, 178, -1,
183, -1, 187, -1, 188, -1, 189, -1, 192, -1,
212, -1, 213, -1, 214, -1, 191, -1, 190, -1,
186, -1, 215, -1, 127, -1, 127, 127, -1, 35,
140, 5, 141, 6, -1, 35, 140, 5, 141, 154,
228, 6, -1, 35, 140, 5, 146, 224, 141, 6,
-1, 35, 140, 5, 146, 224, 141, 154, 228, 6,
-1, 4, 5, 147, 157, 148, 6, -1, 84, 4,
142, 216, 143, 6, -1, 85, 4, 142, 216, 143,
6, -1, -1, 157, 160, -1, 157, 164, -1, 157,
167, -1, 157, 169, -1, 157, 170, -1, 216, -1,
158, 146, 216, -1, 216, -1, 159, 146, 216, -1,
-1, -1, 4, 161, 140, 158, 141, 162, 147, 159,
148, 6, -1, 228, -1, 163, 146, 228, -1, -1,
86, 140, 216, 146, 216, 146, 216, 141, 165, 147,
163, 148, 6, -1, 228, -1, 166, 146, 228, -1,
-1, 87, 140, 216, 146, 216, 146, 216, 146, 216,
141, 168, 147, 166, 148, 6, -1, 88, 147, 220,
148, 147, 220, 148, 6, -1, 88, 147, 220, 148,
147, 220, 148, 147, 220, 148, 147, 220, 148, 6,
-1, -1, 89, 171, 147, 159, 148, 6, -1, 7,
-1, 120, -1, 119, -1, 118, -1, 117, -1, 138,
-1, 137, -1, 4, 172, 216, 6, -1, 4, 142,
216, 143, 172, 216, 6, -1, 4, 142, 147, 224,
148, 143, 172, 221, 6, -1, 4, 142, 143, 7,
221, 6, -1, 4, 142, 143, 120, 221, 6, -1,
4, 173, 6, -1, 4, 142, 216, 143, 173, 6,
-1, 4, 7, 229, 6, -1, 4, 144, 4, 7,
229, 6, -1, 4, 142, 216, 143, 144, 4, 7,
229, 6, -1, 4, 144, 4, 172, 216, 6, -1,
4, 142, 216, 143, 144, 4, 172, 216, 6, -1,
4, 144, 4, 173, 6, -1, 4, 142, 216, 143,
144, 4, 173, 6, -1, 4, 144, 96, 144, 4,
7, 225, 6, -1, 4, 142, 216, 143, 144, 96,
144, 4, 7, 225, 6, -1, 4, 144, 97, 7,
226, 6, -1, 4, 142, 216, 143, 144, 97, 7,
226, 6, -1, 4, 104, 7, 216, 6, -1, 104,
142, 216, 143, 7, 4, 6, -1, 104, 142, 216,
143, 144, 4, 7, 216, 6, -1, 104, 142, 216,
143, 144, 4, 7, 229, 6, -1, 104, 142, 216,
143, 144, 4, 7, 147, 224, 148, 6, -1, 66,
140, 4, 141, 144, 4, 7, 216, 6, -1, 66,
140, 4, 141, 144, 4, 7, 229, 6, -1, 216,
-1, 229, -1, -1, 99, 50, 147, 216, 148, -1,
-1, 59, 218, -1, 46, 140, 216, 141, 7, 218,
6, -1, -1, 63, 46, 179, 140, 175, 141, 7,
221, 6, -1, 55, 56, 221, 7, 216, 6, -1,
49, 140, 216, 141, 7, 221, 6, -1, 67, 49,
221, 6, -1, 53, 140, 216, 141, 7, 221, 6,
-1, 47, 140, 216, 141, 7, 221, 177, 6, -1,
48, 140, 216, 141, 7, 221, 177, 6, -1, 91,
140, 216, 141, 7, 221, 6, -1, 92, 140, 216,
141, 7, 221, 6, -1, 93, 140, 216, 141, 7,
221, 95, 221, 94, 216, 6, -1, 49, 75, 140,
216, 141, 7, 221, 6, -1, -1, 63, 49, 180,
140, 175, 141, 7, 221, 6, -1, 59, 52, 140,
216, 141, 7, 221, 6, -1, 60, 52, 140, 216,
141, 7, 221, 176, 6, -1, 12, 13, 6, -1,
13, 52, 216, 6, -1, 57, 52, 140, 216, 141,
7, 5, 5, 5, 6, -1, 50, 140, 216, 141,
7, 221, 6, -1, 51, 140, 216, 141, 7, 221,
6, -1, 52, 75, 140, 216, 141, 7, 221, 6,
-1, -1, 63, 52, 181, 140, 175, 141, 7, 221,
6, -1, 64, 54, 140, 216, 141, 7, 221, 6,
-1, 64, 52, 140, 216, 141, 7, 221, 4, 147,
220, 148, 6, -1, 64, 52, 140, 216, 141, 7,
221, 6, -1, 64, 49, 140, 216, 141, 7, 221,
6, -1, 62, 54, 140, 216, 141, 7, 221, 6,
-1, 54, 140, 216, 141, 7, 221, 6, -1, 68,
140, 5, 146, 221, 146, 5, 141, 6, -1, -1,
63, 54, 182, 140, 175, 141, 7, 221, 6, -1,
70, 218, 147, 184, 148, -1, 69, 147, 218, 146,
218, 146, 216, 148, 147, 184, 148, -1, 71, 218,
147, 184, 148, -1, 72, 147, 218, 146, 216, 148,
147, 184, 148, -1, 4, 147, 184, 148, -1, 81,
49, 147, 224, 148, 52, 147, 216, 148, -1, 78,
49, 140, 216, 141, 147, 224, 148, 6, -1, 185,
-1, 183, -1, -1, 185, 178, -1, 185, 46, 147,
224, 148, 6, -1, 185, 49, 147, 224, 148, 6,
-1, 185, 52, 147, 224, 148, 6, -1, 185, 54,
147, 224, 148, 6, -1, 74, 59, 140, 216, 141,
7, 221, 6, -1, 74, 59, 140, 216, 141, 7,
147, 218, 146, 218, 146, 224, 148, 6, -1, 74,
59, 140, 216, 141, 7, 147, 218, 146, 218, 146,
218, 146, 224, 148, 6, -1, 74, 50, 140, 216,
141, 7, 147, 218, 146, 224, 148, 6, -1, 74,
4, 140, 216, 141, 7, 221, 6, -1, 74, 4,
140, 216, 141, 7, 5, 6, -1, 74, 4, 147,
216, 148, 6, -1, 74, 4, 140, 216, 141, 7,
147, 218, 146, 218, 146, 224, 148, 6, -1, 79,
147, 185, 148, -1, 79, 104, 142, 216, 143, 6,
-1, 79, 4, 142, 216, 143, 6, -1, 79, 4,
6, -1, 79, 4, 4, 6, -1, 96, 225, 147,
185, 148, -1, 108, 5, 6, -1, 109, 5, 6,
-1, 108, 147, 185, 148, -1, 109, 147, 185, 148,
-1, 4, 229, 6, -1, 4, 4, 142, 216, 143,
228, 6, -1, 4, 4, 4, 142, 216, 143, 6,
-1, 4, 216, 6, -1, 66, 140, 4, 141, 144,
4, 6, -1, 90, 4, 6, -1, 103, 6, -1,
43, 6, -1, 40, 6, -1, 40, 147, 216, 146,
216, 146, 216, 146, 216, 146, 216, 146, 216, 148,
6, -1, 41, 6, -1, 44, 6, -1, 98, 140,
216, 8, 216, 141, -1, 98, 140, 216, 8, 216,
8, 216, 141, -1, 98, 4, 99, 147, 216, 8,
216, 148, -1, 98, 4, 99, 147, 216, 8, 216,
8, 216, 148, -1, 100, -1, 107, 4, -1, 105,
-1, 106, 4, 6, -1, 101, 140, 216, 141, -1,
102, -1, 73, 218, 147, 185, 148, -1, 73, 147,
218, 146, 218, 146, 216, 148, 147, 185, 148, -1,
73, 147, 218, 146, 218, 146, 218, 146, 216, 148,
147, 185, 148, -1, -1, 73, 218, 147, 185, 193,
206, 148, -1, -1, 73, 147, 218, 146, 218, 146,
216, 148, 147, 185, 194, 206, 148, -1, -1, 73,
147, 218, 146, 218, 146, 218, 146, 216, 148, 147,
185, 195, 206, 148, -1, -1, 73, 147, 185, 196,
206, 148, -1, 73, 46, 147, 216, 146, 218, 148,
6, -1, 73, 49, 147, 216, 146, 218, 148, 6,
-1, 73, 52, 147, 216, 146, 218, 148, 6, -1,
73, 46, 147, 216, 146, 218, 146, 218, 146, 216,
148, 6, -1, 73, 49, 147, 216, 146, 218, 146,
218, 146, 216, 148, 6, -1, 73, 52, 147, 216,
146, 218, 146, 218, 146, 216, 148, 6, -1, 73,
46, 147, 216, 146, 218, 146, 218, 146, 218, 146,
216, 148, 6, -1, 73, 49, 147, 216, 146, 218,
146, 218, 146, 218, 146, 216, 148, 6, -1, 73,
52, 147, 216, 146, 218, 146, 218, 146, 218, 146,
216, 148, 6, -1, -1, 73, 46, 147, 216, 146,
218, 148, 197, 147, 206, 148, 6, -1, -1, 73,
49, 147, 216, 146, 218, 148, 198, 147, 206, 148,
6, -1, -1, 73, 52, 147, 216, 146, 218, 148,
199, 147, 206, 148, 6, -1, -1, 73, 46, 147,
216, 146, 218, 146, 218, 146, 216, 148, 200, 147,
206, 148, 6, -1, -1, 73, 49, 147, 216, 146,
218, 146, 218, 146, 216, 148, 201, 147, 206, 148,
6, -1, -1, 73, 52, 147, 216, 146, 218, 146,
218, 146, 216, 148, 202, 147, 206, 148, 6, -1,
-1, 73, 46, 147, 216, 146, 218, 146, 218, 146,
218, 146, 216, 148, 203, 147, 206, 148, 6, -1,
-1, 73, 49, 147, 216, 146, 218, 146, 218, 146,
218, 146, 216, 148, 204, 147, 206, 148, 6, -1,
-1, 73, 52, 147, 216, 146, 218, 146, 218, 146,
218, 146, 216, 148, 205, 147, 206, 148, 6, -1,
207, -1, 206, 207, -1, 82, 147, 216, 148, 6,
-1, 82, 147, 221, 146, 221, 148, 6, -1, 82,
147, 221, 146, 221, 146, 221, 148, 6, -1, 76,
6, -1, 83, 140, 216, 141, 7, 221, 65, 216,
6, -1, -1, 65, 4, 216, -1, -1, 4, -1,
-1, 7, 221, -1, -1, 7, 216, -1, 61, 49,
222, 7, 216, 208, 6, -1, 61, 52, 222, 210,
209, 6, -1, 58, 52, 147, 216, 148, 7, 221,
6, -1, 61, 54, 222, 210, 6, -1, 76, 52,
222, 211, 6, -1, 77, 52, 221, 7, 216, 6,
-1, 46, 147, 224, 148, 99, 52, 147, 216, 148,
6, -1, 49, 147, 224, 148, 99, 52, 147, 216,
148, 6, -1, 49, 147, 224, 148, 99, 54, 147,
216, 148, 6, -1, 52, 147, 224, 148, 99, 54,
147, 216, 148, 6, -1, 80, 6, -1, 80, 4,
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
6, -1, 114, 147, 221, 146, 221, 148, 6, -1,
115, 140, 228, 141, 7, 147, 221, 146, 221, 148,
6, -1, 116, 140, 228, 141, 7, 147, 221, 146,
221, 148, 6, -1, 217, -1, 140, 216, 141, -1,
131, 216, -1, 130, 216, -1, 135, 216, -1, 216,
131, 216, -1, 216, 130, 216, -1, 216, 132, 216,
-1, 216, 133, 216, -1, 216, 134, 216, -1, 216,
139, 216, -1, 216, 126, 216, -1, 216, 127, 216,
-1, 216, 129, 216, -1, 216, 128, 216, -1, 216,
125, 216, -1, 216, 124, 216, -1, 216, 123, 216,
-1, 216, 122, 216, -1, 216, 121, 216, 8, 216,
-1, 14, 140, 216, 141, -1, 15, 140, 216, 141,
-1, 16, 140, 216, 141, -1, 17, 140, 216, 141,
-1, 18, 140, 216, 141, -1, 19, 140, 216, 141,
-1, 20, 140, 216, 141, -1, 21, 140, 216, 141,
-1, 22, 140, 216, 141, -1, 24, 140, 216, 141,
-1, 25, 140, 216, 146, 216, 141, -1, 26, 140,
216, 141, -1, 27, 140, 216, 141, -1, 28, 140,
216, 141, -1, 29, 140, 216, 141, -1, 30, 140,
216, 141, -1, 31, 140, 216, 141, -1, 32, 140,
216, 146, 216, 141, -1, 33, 140, 216, 146, 216,
141, -1, 34, 140, 216, 146, 216, 141, -1, 23,
140, 216, 141, -1, 14, 142, 216, 143, -1, 15,
142, 216, 143, -1, 16, 142, 216, 143, -1, 17,
142, 216, 143, -1, 18, 142, 216, 143, -1, 19,
142, 216, 143, -1, 20, 142, 216, 143, -1, 21,
142, 216, 143, -1, 22, 142, 216, 143, -1, 24,
142, 216, 143, -1, 25, 142, 216, 146, 216, 143,
-1, 26, 142, 216, 143, -1, 27, 142, 216, 143,
-1, 28, 142, 216, 143, -1, 29, 142, 216, 143,
-1, 30, 142, 216, 143, -1, 31, 142, 216, 143,
-1, 32, 142, 216, 146, 216, 143, -1, 33, 142,
216, 146, 216, 143, -1, 34, 142, 216, 146, 216,
143, -1, 23, 142, 216, 143, -1, 3, -1, 9,
-1, 10, -1, 11, -1, 111, -1, 112, -1, 113,
-1, 4, -1, 4, 149, 147, 216, 148, -1, 4,
142, 216, 143, -1, 145, 4, 142, 143, -1, 4,
173, -1, 4, 142, 216, 143, 173, -1, 4, 144,
4, -1, 4, 142, 216, 143, 144, 4, -1, 4,
144, 4, 173, -1, 4, 142, 216, 143, 144, 4,
173, -1, 110, 140, 5, 146, 216, 141, -1, 219,
-1, 131, 218, -1, 130, 218, -1, 218, 131, 218,
-1, 218, 130, 218, -1, 147, 216, 146, 216, 146,
216, 146, 216, 146, 216, 148, -1, 147, 216, 146,
216, 146, 216, 146, 216, 148, -1, 147, 216, 146,
216, 146, 216, 148, -1, 140, 216, 146, 216, 146,
216, 141, -1, 221, -1, 220, 146, 221, -1, 216,
-1, 223, -1, 147, 148, -1, 147, 224, 148, -1,
131, 147, 224, 148, -1, 216, 132, 147, 224, 148,
-1, 221, -1, 5, -1, 131, 223, -1, 216, 132,
223, -1, 216, 8, 216, -1, 216, 8, 216, 8,
216, -1, 46, 147, 216, 148, -1, 183, -1, 192,
-1, 4, 142, 143, -1, 4, 142, 147, 224, 148,
143, -1, 216, -1, 223, -1, 224, 146, 216, -1,
224, 146, 223, -1, 147, 216, 146, 216, 146, 216,
146, 216, 148, -1, 147, 216, 146, 216, 146, 216,
148, -1, 4, -1, 4, 144, 96, 144, 4, -1,
147, 227, 148, -1, 4, 142, 216, 143, 144, 97,
-1, 225, -1, 227, 146, 225, -1, 229, -1, 4,
-1, 4, 144, 4, -1, 4, 142, 216, 143, 144,
4, -1, 5, -1, 42, -1, 37, 140, 228, 146,
228, 141, -1, 38, 140, 228, 141, -1, 39, 140,
228, 141, -1, 36, 140, 228, 141, -1, 36, 140,
228, 146, 224, 141, -1
/* YYRLINE[YYN] -- source line where rule number YYN was defined. */
static const yytype_uint16 yyrline[] =
{
0, 155, 155, 156, 161, 163, 167, 168, 169, 170,
171, 172, 173, 174, 175, 176, 177, 178, 179, 180,
181, 182, 186, 190, 197, 202, 216, 229, 257, 271,
282, 297, 302, 303, 304, 305, 306, 310, 312, 317,
319, 325, 429, 324, 447, 454, 465, 464, 482, 489,
500, 499, 516, 533, 556, 555, 569, 570, 571, 572,
573, 577, 578, 585, 607, 634, 674, 684, 692, 700,
712, 721, 727, 736, 754, 772, 781, 793, 798, 806,
826, 849, 858, 866, 888, 911, 939, 951, 968, 972,
983, 986, 999, 1002, 1012, 1036, 1035, 1055, 1077, 1095,
1117, 1135, 1165, 1195, 1213, 1231, 1257, 1275, 1274, 1297,
1315, 1354, 1360, 1366, 1373, 1398, 1423, 1440, 1439, 1459,
1476, 1504, 1521, 1541, 1559, 1577, 1592, 1591, 1617, 1622,
1627, 1632, 1637, 1657, 1663, 1674, 1675, 1680, 1683, 1687,
1710, 1733, 1756, 1784, 1805, 1826, 1848, 1868, 1980, 1999,
2013, 2122, 2131, 2137, 2152, 2176, 2193, 2207, 2213, 2219,
2228, 2242, 2282, 2299, 2314, 2333, 2345, 2369, 2373, 2380,

Christophe Geuzaine
committed
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
2386, 2391, 2397, 2407, 2424, 2441, 2460, 2479, 2509, 2517,
2523, 2530, 2534, 2543, 2551, 2559, 2568, 2567, 2580, 2579,
2592, 2591, 2604, 2603, 2616, 2623, 2630, 2637, 2644, 2651,
2658, 2665, 2672, 2680, 2679, 2691, 2690, 2702, 2701, 2713,
2712, 2724, 2723, 2735, 2734, 2746, 2745, 2757, 2756, 2768,
2767, 2782, 2785, 2791, 2800, 2820, 2843, 2847, 2871, 2874,
2890, 2893, 2906, 2909, 2915, 2918, 2925, 2981, 3051, 3056,
3123, 3166, 3192, 3215, 3238, 3241, 3250, 3254, 3271, 3304,
3338, 3376, 3377, 3378, 3379, 3380, 3381, 3382, 3383, 3384,
3391, 3392, 3393, 3394, 3395, 3396, 3397, 3398, 3399, 3400,
3401, 3402, 3403, 3404, 3405, 3406, 3407, 3408, 3409, 3410,
3411, 3412, 3413, 3414, 3415, 3416, 3417, 3418, 3419, 3420,
3421, 3422, 3424, 3425, 3426, 3427, 3428, 3429, 3430, 3431,
3432, 3433, 3434, 3435, 3436, 3437, 3438, 3439, 3440, 3441,
3442, 3443, 3444, 3453, 3454, 3455, 3456, 3457, 3458, 3459,
3463, 3476, 3488, 3503, 3513, 3523, 3541, 3546, 3551, 3561,
3571, 3579, 3583, 3587, 3591, 3595, 3602, 3606, 3610, 3614,
3621, 3626, 3633, 3638, 3642, 3647, 3651, 3659, 3670, 3674,
3686, 3694, 3702, 3709, 3720, 3740, 3750, 3760, 3770, 3790,
3795, 3799, 3803, 3815, 3819, 3831, 3838, 3848, 3852, 3867,
3872, 3879, 3883, 3896, 3904, 3915, 3919, 3927, 3935, 3949,
3963, 3967
#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
First, the terminals, then, starting at YYNTOKENS, nonterminals. */
static const char *const yytname[] =
{
"$end", "error", "$undefined", "tDOUBLE", "tSTRING", "tBIGSTR", "tEND",
"tAFFECT", "tDOTS", "tPi", "tMPI_Rank", "tMPI_Size", "tEuclidian",
"tCoordinates", "tExp", "tLog", "tLog10", "tSqrt", "tSin", "tAsin",
"tCos", "tAcos", "tTan", "tRand", "tAtan", "tAtan2", "tSinh", "tCosh",
"tTanh", "tFabs", "tFloor", "tCeil", "tFmod", "tModulo", "tHypot",
"tPrintf", "tSprintf", "tStrCat", "tStrPrefix", "tStrRelative",
"tBoundingBox", "tDraw", "tToday", "tSyncModel", "tCreateTopology",
"tDistanceFunction", "tPoint", "tCircle", "tEllipse", "tLine", "tSphere",
"tPolarSphere", "tSurface", "tSpline", "tVolume", "tCharacteristic",
"tLength", "tParametric", "tElliptic", "tPlane", "tRuled",
"tTransfinite", "tComplex", "tPhysical", "tCompound", "tUsing",
"tPlugin", "tDegenerated", "tOCCShape", "tRotate", "tTranslate",
"tSymmetry", "tDilate", "tExtrude", "tLevelset", "tLoop", "tRecombine",
"tSmoother", "tSplit", "tDelete", "tCoherence", "tIntersect", "tLayers",
"tHole", "tAlias", "tAliasWithOptions", "tText2D", "tText3D",
"tInterpolationScheme", "tTime", "tCombine", "tBSpline", "tBezier",
"tNurbs", "tNurbsOrder", "tNurbsKnots", "tColor", "tColorTable", "tFor",
"tIn", "tEndFor", "tIf", "tEndIf", "tExit", "tField", "tReturn", "tCall",
"tFunction", "tShow", "tHide", "tGetValue", "tGMSH_MAJOR_VERSION",
"tGMSH_MINOR_VERSION", "tGMSH_PATCH_VERSION", "tHomRank", "tHomGen",
"tHomCut", "tAFFECTDIVIDE", "tAFFECTTIMES", "tAFFECTMINUS",
"tAFFECTPLUS", "'?'", "tOR", "tAND", "tNOTEQUAL", "tEQUAL", "'<'", "'>'",
"tGREATEROREQUAL", "tLESSOREQUAL", "'+'", "'-'", "'*'", "'/'", "'%'",
"'!'", "UNARYPREC", "tMINUSMINUS", "tPLUSPLUS", "'^'", "'('", "')'",
"'['", "']'", "'.'", "'#'", "','", "'{'", "'}'", "'~'", "$accept", "All",
"GeoFormatItems", "GeoFormatItem", "SendToFile", "Printf", "View",
"Views", "ElementCoords", "ElementValues", "Element", "@1", "@2",
"Text2DValues", "Text2D", "@3", "Text3DValues", "Text3D", "@4",
"InterpolationMatrix", "Time", "@5", "NumericAffectation",
"NumericIncrement", "Affectation", "PhysicalId", "InSphereCenter",
"CircleOptions", "Shape", "@6", "@7", "@8", "@9", "Transform",
"MultipleShape", "ListOfShapes", "LevelSet", "Delete", "Colorify",
"Visibility", "Command", "Loop", "Extrude", "@10", "@11", "@12", "@13",
"@14", "@15", "@16", "@17", "@18", "@19", "@20", "@21", "@22",
"ExtrudeParameters", "ExtrudeParameter", "TransfiniteType",
"TransfiniteArrangement", "TransfiniteCorners", "RecombineAngle",
"Transfinite", "Embedding", "Coherence", "Homology", "FExpr",
"FExpr_Single", "VExpr", "VExpr_Single", "RecursiveListOfListOfDouble",
"ListOfDouble", "ListOfDoubleOrAll", "FExpr_Multi",
"RecursiveListOfDouble", "ColorExpr", "ListOfColor",
"RecursiveListOfColor", "StringExprVar", "StringExpr", 0
# ifdef YYPRINT
/* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
token YYLEX-NUM. */
static const yytype_uint16 yytoknum[] =
{
0, 256, 257, 258, 259, 260, 261, 262, 263, 264,
265, 266, 267, 268, 269, 270, 271, 272, 273, 274,
275, 276, 277, 278, 279, 280, 281, 282, 283, 284,
285, 286, 287, 288, 289, 290, 291, 292, 293, 294,
295, 296, 297, 298, 299, 300, 301, 302, 303, 304,
305, 306, 307, 308, 309, 310, 311, 312, 313, 314,
315, 316, 317, 318, 319, 320, 321, 322, 323, 324,
325, 326, 327, 328, 329, 330, 331, 332, 333, 334,
335, 336, 337, 338, 339, 340, 341, 342, 343, 344,
345, 346, 347, 348, 349, 350, 351, 352, 353, 354,
355, 356, 357, 358, 359, 360, 361, 362, 363, 364,
365, 366, 367, 368, 369, 370, 371, 372, 373, 374,
375, 63, 376, 377, 378, 379, 60, 62, 380, 381,
43, 45, 42, 47, 37, 33, 382, 383, 384, 94,
40, 41, 91, 93, 46, 35, 44, 123, 125, 126
};
# endif
/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
static const yytype_uint8 yyr1[] =
{
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
0, 150, 151, 151, 152, 152, 153, 153, 153, 153,
153, 153, 153, 153, 153, 153, 153, 153, 153, 153,
153, 153, 154, 154, 155, 155, 155, 155, 156, 156,
156, 157, 157, 157, 157, 157, 157, 158, 158, 159,
159, 161, 162, 160, 163, 163, 165, 164, 166, 166,
168, 167, 169, 169, 171, 170, 172, 172, 172, 172,
172, 173, 173, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 175, 175,
176, 176, 177, 177, 178, 179, 178, 178, 178, 178,
178, 178, 178, 178, 178, 178, 178, 180, 178, 178,
178, 178, 178, 178, 178, 178, 178, 181, 178, 178,
178, 178, 178, 178, 178, 178, 182, 178, 183, 183,
183, 183, 183, 183, 183, 184, 184, 185, 185, 185,
185, 185, 185, 186, 186, 186, 186, 186, 186, 186,
186, 187, 187, 187, 187, 187, 188, 189, 189, 189,
189, 190, 190, 190, 190, 190, 190, 190, 190, 190,
190, 190, 190, 191, 191, 191, 191, 191, 191, 191,
191, 191, 191, 192, 192, 192, 193, 192, 194, 192,
195, 192, 196, 192, 192, 192, 192, 192, 192, 192,
192, 192, 192, 197, 192, 198, 192, 199, 192, 200,
192, 201, 192, 202, 192, 203, 192, 204, 192, 205,
192, 206, 206, 207, 207, 207, 207, 207, 208, 208,
209, 209, 210, 210, 211, 211, 212, 212, 212, 212,
212, 212, 213, 213, 213, 213, 214, 214, 215, 215,
215, 216, 216, 216, 216, 216, 216, 216, 216, 216,
216, 216, 216, 216, 216, 216, 216, 216, 216, 216,
216, 216, 216, 216, 216, 216, 216, 216, 216, 216,
216, 216, 216, 216, 216, 216, 216, 216, 216, 216,
216, 216, 216, 216, 216, 216, 216, 216, 216, 216,
216, 216, 216, 216, 216, 216, 216, 216, 216, 216,
216, 216, 216, 217, 217, 217, 217, 217, 217, 217,
217, 217, 217, 217, 217, 217, 217, 217, 217, 217,
217, 218, 218, 218, 218, 218, 219, 219, 219, 219,
220, 220, 221, 221, 221, 221, 221, 221, 222, 222,
223, 223, 223, 223, 223, 223, 223, 223, 223, 224,
224, 224, 224, 225, 225, 225, 225, 226, 226, 227,
227, 228, 228, 228, 228, 229, 229, 229, 229, 229,
229, 229
/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
static const yytype_uint8 yyr2[] =
{
0, 2, 1, 2, 0, 2, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1, 1, 1, 2, 5, 7, 7, 9, 6, 6,
6, 0, 2, 2, 2, 2, 2, 1, 3, 1,
3, 0, 0, 10, 1, 3, 0, 13, 1, 3,
0, 15, 8, 14, 0, 6, 1, 1, 1, 1,
1, 1, 1, 4, 7, 9, 6, 6, 3, 6,
4, 6, 9, 6, 9, 5, 8, 8, 11, 6,
9, 5, 7, 9, 9, 11, 9, 9, 1, 1,
0, 5, 0, 2, 7, 0, 9, 6, 7, 4,
7, 8, 8, 7, 7, 11, 8, 0, 9, 8,
9, 3, 4, 10, 7, 7, 8, 0, 9, 8,
12, 8, 8, 8, 7, 9, 0, 9, 5, 11,
5, 9, 4, 9, 9, 1, 1, 0, 2, 6,
6, 6, 6, 8, 14, 16, 12, 8, 8, 6,
14, 4, 6, 6, 3, 4, 5, 3, 3, 4,
4, 3, 7, 7, 3, 7, 3, 2, 2, 2,
15, 2, 2, 6, 8, 8, 10, 1, 2, 1,
3, 4, 1, 5, 11, 13, 0, 7, 0, 13,
0, 15, 0, 6, 8, 8, 8, 12, 12, 12,
14, 14, 14, 0, 12, 0, 12, 0, 12, 0,
16, 0, 16, 0, 16, 0, 18, 0, 18, 0,
18, 1, 2, 5, 7, 9, 2, 9, 0, 3,
0, 1, 0, 2, 0, 2, 7, 6, 8, 5,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
5, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 6, 4, 4, 4, 4, 4, 4, 6, 6,
6, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 6, 4, 4, 4, 4, 4, 4, 6,
6, 6, 4, 1, 1, 1, 1, 1, 1, 1,
1, 5, 4, 4, 2, 5, 3, 6, 4, 7,
6, 1, 2, 2, 3, 3, 11, 9, 7, 7,
1, 3, 1, 1, 2, 3, 4, 5, 1, 1,
2, 3, 3, 5, 4, 1, 1, 3, 6, 1,
1, 3, 3, 9, 7, 1, 5, 3, 6, 1,
3, 1, 1, 3, 6, 1, 1, 6, 4, 4,
4, 6
/* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state
STATE-NUM when YYTABLE doesn't specify something else to do. Zero
means the default is an error. */
static const yytype_uint16 yydefact[] =
{
0, 0, 0, 2, 3, 1, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 177, 0, 182, 0, 0,
179, 0, 0, 0, 0, 0, 0, 0, 5, 7,
6, 8, 9, 10, 20, 11, 12, 13, 19, 18,
14, 15, 16, 17, 21, 313, 320, 375, 56, 314,
315, 316, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 376, 0, 0,
317, 318, 319, 60, 59, 58, 57, 0, 0, 0,
62, 61, 0, 0, 0, 0, 137, 0, 0, 0,
251, 0, 0, 0, 0, 169, 0, 171, 168, 172,
0, 0, 95, 107, 117, 126, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 331, 0,
0, 0, 0, 0, 137, 0, 0, 0, 0, 0,
0, 0, 0, 0, 137, 0, 246, 0, 0, 0,
0, 0, 0, 0, 365, 0, 0, 0, 0, 0,
167, 0, 0, 178, 0, 137, 0, 137, 0, 0,
0, 0, 0, 0, 0, 324, 31, 375, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 320, 254, 253,
255, 0, 0, 0, 0, 0, 0, 0, 0, 0,
136, 0, 135, 0, 68, 164, 0, 0, 0, 0,
0, 161, 111, 0, 0, 0, 0, 320, 0, 0,
355, 356, 359, 360, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 342, 0,
343, 0, 0, 0, 0, 349, 348, 0, 232, 232,
0, 0, 333, 332, 0, 0, 0, 0, 137, 137,
0, 0, 0, 0, 0, 0, 0, 192, 0, 137,
0, 0, 0, 0, 234, 0, 0, 0, 154, 0,
0, 0, 247, 0, 0, 0, 166, 0, 0, 0,
0, 0, 137, 0, 0, 0, 0, 180, 157, 0,
158, 0, 0, 372, 0, 371, 0, 0, 0, 326,
0, 0, 70, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 252, 0, 0, 0, 0, 56, 0, 0,
0, 0, 0, 132, 0, 0, 0, 0, 138, 63,
0, 269, 268, 267, 266, 262, 263, 265, 264, 257,
256, 258, 259, 260, 261, 112, 0, 0, 0, 0,
0, 0, 253, 350, 0, 0, 0, 0, 0, 0,
230, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 99, 0, 0, 0, 0, 335, 334, 0, 0,
0, 0, 0, 0, 0, 0, 0, 186, 0, 0,
0, 0, 0, 0, 0, 0, 155, 0, 0, 151,
0, 322, 328, 0, 41, 0, 0, 0, 54, 0,
32, 33, 34, 35, 36, 271, 292, 272, 293, 273,
294, 274, 295, 275, 296, 276, 297, 277, 298, 278,
299, 279, 300, 291, 312, 280, 301, 0, 0, 282,
303, 283, 304, 284, 305, 285, 306, 286, 307, 287,
308, 0, 0, 0, 0, 0, 0, 380, 0, 0,
378, 379, 81, 0, 0, 0, 0, 0, 56, 0,
0, 0, 0, 0, 75, 0, 0, 0, 0, 323,
0, 0, 0, 0, 0, 24, 22, 0, 0, 0,
0, 357, 0, 0, 352, 258, 351, 361, 362, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 345, 0, 0, 0, 0, 0, 0, 228,
233, 231, 0, 239, 0, 0, 88, 89, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 128,
130, 0, 0, 0, 0, 0, 0, 0, 0, 221,
0, 183, 0, 0, 0, 0, 0, 235, 240, 0,
0, 156, 0, 0, 0, 0, 0, 0, 373, 0,
0, 0, 0, 325, 0, 321, 0, 0, 0, 0,
0, 28, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 322, 66, 67, 0, 0, 0, 0,
0, 69, 71, 73, 0, 0, 369, 0, 79, 0,
0, 0, 0, 270, 23, 0, 0, 0, 0, 0,
354, 0, 0, 92, 92, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 346, 0, 97, 0, 0,
0, 0, 0, 0, 237, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 226, 0, 0, 193, 222, 0, 0, 0,
149, 0, 0, 241, 0, 153, 152, 0, 29, 30,
0, 0, 0, 366, 0, 0, 0, 173, 0, 0,
0, 0, 0, 0, 163, 327, 162, 0, 0, 0,
0, 340, 0, 281, 302, 288, 309, 289, 310, 290,
311, 381, 377, 330, 0, 56, 0, 0, 0, 0,
64, 0, 0, 0, 367, 0, 0, 0, 0, 25,
26, 0, 0, 94, 0, 353, 0, 0, 0, 0,
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
347, 0, 0, 0, 90, 0, 236, 0, 0, 0,
0, 0, 0, 0, 0, 165, 0, 0, 0, 0,
0, 137, 0, 203, 0, 205, 0, 207, 342, 0,
0, 0, 0, 187, 0, 0, 0, 0, 0, 0,
0, 0, 103, 104, 0, 0, 0, 0, 82, 0,
248, 0, 0, 0, 329, 0, 37, 0, 0, 0,
0, 0, 39, 0, 0, 0, 76, 0, 0, 77,
0, 370, 139, 140, 141, 142, 0, 0, 358, 0,
93, 101, 102, 106, 0, 0, 116, 0, 0, 238,
109, 0, 0, 229, 123, 0, 0, 0, 0, 122,
0, 121, 119, 0, 0, 0, 0, 339, 0, 338,
0, 0, 194, 0, 0, 195, 0, 0, 196, 0,
0, 0, 0, 0, 0, 148, 0, 0, 147, 0,
0, 143, 0, 0, 0, 0, 364, 0, 175, 174,
0, 0, 0, 374, 0, 0, 42, 0, 0, 0,
341, 0, 0, 0, 65, 72, 74, 0, 80, 0,
27, 0, 0, 0, 0, 0, 0, 0, 110, 96,
108, 118, 127, 0, 86, 87, 125, 137, 0, 131,
0, 0, 0, 0, 0, 0, 223, 0, 0, 137,
0, 0, 0, 0, 134, 133, 0, 0, 0, 0,
83, 84, 0, 0, 0, 38, 0, 0, 0, 40,
55, 0, 368, 0, 242, 243, 244, 245, 113, 0,
0, 0, 0, 337, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 188, 0, 0, 0,
0, 0, 363, 176, 0, 0, 0, 0, 0, 0,
0, 78, 0, 0, 0, 129, 0, 209, 0, 0,
211, 0, 0, 213, 0, 0, 0, 224, 0, 184,
0, 137, 0, 0, 0, 105, 85, 249, 250, 0,
46, 0, 52, 0, 0, 91, 120, 336, 197, 0,
0, 204, 198, 0, 0, 206, 199, 0, 0, 208,
0, 0, 0, 190, 0, 146, 0, 0, 0, 0,
0, 0, 0, 0, 215, 0, 217, 0, 219, 225,
227, 189, 185, 0, 0, 0, 0, 43, 0, 50,
0, 0, 0, 200, 0, 0, 201, 0, 0, 202,
0, 0, 150, 0, 144, 0, 44, 0, 0, 170,
0, 0, 0, 0, 0, 0, 191, 0, 0, 0,
0, 0, 210, 0, 212, 0, 214, 0, 145, 45,
47, 0, 48, 0, 0, 0, 0, 0, 0, 53,
216, 218, 220, 49, 51
/* YYDEFGOTO[NTERM-NUM]. */
static const yytype_int16 yydefgoto[] =
{
-1, 2, 3, 68, 697, 69, 70, 431, 1025, 1031,
620, 796, 1174, 1315, 621, 1279, 1341, 622, 1317, 623,
624, 800, 137, 235, 71, 735, 1062, 958, 498, 361,
362, 363, 364, 330, 301, 302, 74, 75, 76, 77,
78, 79, 331, 762, 1240, 1293, 575, 1083, 1086, 1089,
1259, 1263, 1267, 1304, 1307, 1310, 758, 759, 863, 732,
550, 583, 81, 82, 83, 84, 348, 140, 373, 188,
920, 921, 357, 350, 541, 216, 688, 827, 424, 425
/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
STATE-NUM. */
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
3206, 4, 24, 3288, -1101, -1101, 1626, 15, -5, -78,
29, 83, 87, 104, -96, -12, 28, -46, 38, 57,
-35, 89, 137, 86, 234, 263, 266, 278, 55, 241,
508, 226, 202, 303, 222, -73, 347, 347, 227, 286,
131, 340, 348, 387, 1, 292, 410, 426, 458, 468,
336, 344, 352, 14, 33, -1101, 359, -1101, 474, 364,
-1101, 509, 513, 20, 25, 380, 395, 400, -1101, -1101,
-1101, -1101, -1101, -1101, -1101, -1101, -1101, -1101, -1101, -1101,
-1101, -1101, -1101, -1101, -1101, -1101, 22, 408, 329, -1101,
-1101, -1101, 213, 356, 381, 382, 386, 392, 427, 435,
439, 446, 450, 503, 512, 526, 549, 550, 553, 596,
599, 603, 618, 423, 459, 471, 486, -1101, 559, 491,
-1101, -1101, -1101, -1101, -1101, -1101, -1101, 3043, 3043, 3043,
-1101, -1101, 3043, 2588, 19, 611, 212, 3043, 577, 1317,
-1101, 628, 633, 3043, 641, -1101, 3043, -1101, -1101, -1101,
3043, 2970, 3043, 3043, 536, 3043, 2970, 3043, 3043, 543,
2970, 3043, 3043, 1959, 558, 552, 576, 586, 1681, 1681,
1681, 590, -1101, -1101, -1101, -1101, 602, 606, 607, 763,
1959, 758, 347, 347, 347, 3043, 3043, -52, -1101, 61,
347, 584, 621, 624, 2831, 64, 80, 656, 669, 1681,
1959, 670, 27, 648, -1101, 809, -1101, 674, 680, 686,
826, 3043, 3043, 3043, 692, 3043, 690, 766, 3043, 3043,
-1101, 3043, 842, -1101, 870, -1101, 873, -1101, 1959, 466,
466, 741, 3043, 880, 762, -1101, -1101, -1101, 908, 3043,
3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043,
3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043,
3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043,
3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043,
3043, 466, 466, 466, 466, 3043, 921, 480, 789, 789,
789, 5418, 5, 2970, 4682, 320, 785, 924, 790, 786,
-1101, 787, 3362, 1446, -1101, -1101, 3043, 3043, 3043, 3043,
3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043,
3043, -1101, -1101, 1548, -61, 3980, 5439, 676, 791, 2970,
-1101, -1101, 1675, -1101, 274, 5460, 5481, 3043, 5502, 281,
5523, 5544, 3043, 639, 5565, 5586, 2098, 1480, 2615, 927,
-1101, 3043, 3043, 3043, 3043, -1101, -1101, 932, 933, 933,
3043, 802, 803, 804, 805, 3043, 3043, 3043, 800, 940,
806, 68, -1101, -1101, 4006, 4032, 347, 347, 212, 212,
198, 3043, 3043, 3043, 2831, 2831, 3043, 3362, 242, -1101,
3043, 3043, 3043, 3043, 941, 942, 3043, 947, -1101, 3043,
3043, 702, -1101, 2970, 3043, 3043, -1101, 5607, 5628, 5649,
851, 4058, -1101, 807, 2648, 5670, 4705, -1101, -1101, 983,
-1101, 1142, 812, 644, 814, -1101, 819, 3043, 4728, 311,
3043, 10, -1101, 5691, 4751, 5712, 4774, 5733, 4797, 5754,
4820, 5775, 4843, 5796, 4866, 5817, 4889, 5838, 4912, 5859,
4935, 5880, 4958, 5901, 4981, 4084, 4110, 5922, 5004, 5943,
5027, 5964, 5050, 5985, 5073, 6006, 5096, 6027, 5119, 4136,
4162, 4188, 4214, 4240, 4266, -38, 816, 822, 824, 1749,
821, 3043, -1101, 1959, 1959, 678, 84, 329, 3043, 962,
966, 18, 828, -1101, 177, -34, -33, 211, -1101, -1101,
2745, 650, 673, 713, 713, 539, 539, 539, 539, -67,
-67, 789, 789, 789, 789, -1101, 7, 2970, 3043, 968,
2793, 3043, 789, -1101, 3043, 2970, 2970, 874, 971, 972,
6048, 979, 890, 984, 985, 6069, 891, 990, 991, 2970,
-1101, 681, 2237, 3043, 6090, 2896, 6111, 6132, 3043, 1959,
996, 995, 6153, 3103, 3103, 3103, 3103, 6174, 6195, 6216,
859, -1101, 1959, 347, 3043, 3043, -1101, -1101, 856, 858,
3043, 4292, 4318, 4344, 3954, 209, 347, 1856, 6237, 3069,
6258, 6279, 3043, 1002, 3043, 6300, -1101, 5142, 5165, -1101,
703, 5188, 5211, 1003, 1004, 1005, 865, 3043, 1995, 3043,
3043, -1101, 31, -1101, -1101, 1959, 3043, 1011, 1009, 1010,
5234, 45, -1101, 3338, -1101, 878, 879, 876, -1101, 1014,
-1101, -1101, -1101, -1101, -1101, -1101, -1101, -1101, -1101, -1101,
-1101, -1101, -1101, -1101, -1101, -1101, -1101, -1101, -1101, -1101,
-1101, -1101, -1101, -1101, -1101, -1101, -1101, 3043, 3043, -1101,
-1101, -1101, -1101, -1101, -1101, -1101, -1101, -1101, -1101, -1101,
-1101, 3043, 3043, 3043, 3043, 3043, 3043, -1101, 2970, 466,
-1101, -1101, -1101, 3043, 5257, 1018, 1019, 896, -1101, 88,
3043, 1020, 1038, 1888, -1101, 1042, 910, 14, 1047, -1101,
2970, 2970, 2970, 2970, 3043, -1101, 928, 466, -3, 4370,
347, -1101, 2970, 3366, 2787, 789, -1101, 1675, -1101, 1006,
1959, 1959, 1049, 1959, 801, 1959, 1959, 1050, 1000, 1959,
1959, 708, -1101, 2970, 2027, 1052, 1053, 1055, 1056, 1656,
-1101, -1101, 1058, -1101, 1059, 926, 2768, -1101, 930, 936,
937, 1061, 1062, 1066, 1076, 919, 322, 4396, 4422, -1101,
-1101, 3394, 347, 347, 347, 1075, 935, 943, -37, -1101,
370, -1101, 209, 1077, 1079, 1080, 1082, 2768, -1101, 2166,
939, 1085, 1086, 1041, 1088, 1089, 1959, 1959, 1959, 1092,
4448, -1101, 2824, 1179, 1093, 1094, 955, 5280, -1101, 958,
959, 1101, 1104, -1101, 1103, -1101, 970, 3043, 3043, 1959,
967, -1101, 6321, 5303, 6342, 5326, 6363, 5349, 6384, 5372,
153, 982, 6405, 49, -1101, -1101, 0, 326, 976, 1117,
2305, -1101, -1101, -1101, 14, 3043, -1101, 711, -1101, 712,
715, 716, 720, 2768, -1101, 1119, 9, 3043, 2, 726,
-1101, 3043, 980, 1067, 1067, 1959, 1122, 986, 988, 1123,
1130, 1959, 992, 1131, 1132, -1101, 727, -1101, 1135, 1959,
1959, 1959, 1138, 1139, -1101, 1959, 1140, 1144, 1145, 1146,
1959, 1959, 1959, 448, 1152, 3043, 3043, 3043, 1015, -60,
191, 335, -1101, 1959, 3043, -1101, -1101, 2831, -24, 1820,
-1101, 1016, 2376, -1101, 2970, -1101, -1101, 1017, -1101, -1101,
1143, 1159, 1063, -1101, 3043, 3043, 3043, -1101, 1160, 1161,
1163, 1023, 1959, 1959, -1101, 311, -1101, 3043, 4474, 4500,
734, -1101, 3043, -1101, -1101, -1101, -1101, -1101, -1101, -1101,
-1101, -1101, -1101, -1101, 1959, 329, 3043, 1166, 1169, 18,
-1101, 1168, 5395, 14, -1101, 1170, 1175, 1176, 1178, -1101,
-1101, 466, 4526, -1101, 1032, 2768, 3043, 347, 1192, 1194,
1197, -1101, 3043, 3043, -1101, -1101, 1201, 3043, -1101, -1101,
-1101, 1203, 1207, 1208, 1116, 3043, -1101, 1210, 1959, 1959,
1959, 1959, 1211, 883, 1212, -1101, 3103, 1078, 3422, 6426,
2963, 212, 347, 1214, 347, 1215, 347, 1217, 280, 1081,
6447, 3450, 379, -1101, 1220, 1324, 1223, 347, 1324, 1224,
744, 3043, -1101, -1101, 1959, 3036, 579, 6468, -1101, 2654,
-1101, 1227, 1091, 1095, -1101, 277, 2768, 3043, 3043, 1959,
1096, 745, 2768, 1233, 1234, 2337, -1101, 1235, 1238, -1101,
1102, -1101, -1101, -1101, -1101, -1101, 1243, 3043, -1101, 3478,
473, -1101, -1101, -1101, 3506, 3534, -1101, 3562, 1245, -1101,
-1101, 1202, 1248, 2768, -1101, 1249, 1250, 1251, 1252, -1101,
1112, -1101, -1101, 2369, 1254, 1258, 1118, -1101, 3043, -1101,
1120, 415, -1101, 1124, 422, -1101, 1128, 443, -1101, 1129,
1260, 1959, 1244, 1133, 3043, -1101, 2515, 475, -1101, 482,
505, -1101, 1263, 3590, 1183, 3043, -1101, 3043, -1101, -1101,
2970, 2444, 1264, -1101, 1959, 1959, -1101, 3043, 4552, 4578,
-1101, 1959, 3043, 1272, -1101, -1101, -1101, 14, -1101, 1182,
-1101, 4604, 1275, 1276, 1277, 1278, 1280, 1141, -1101, -1101,
-1101, -1101, -1101, 1959, -1101, -1101, -1101, 212, 3310, -1101,
2831, 209, 2831, 209, 2831, 209, -1101, 748, 1959, -1101,
3618, 347, 2970, 347, -1101, -1101, 3043, 3646, 3674, 749,
-1101, -1101, 1147, 1149, 1151, 2768, 3043, 3043, 755, 2768,
-1101, 1281, -1101, 3043, -1101, -1101, -1101, -1101, -1101, 3043,
756, 1171, 3043, -1101, 3702, 518, -19, 3730, 551, -7,
3758, 589, 141, 1959, 1286, 1228, 2134, 1174, 591, 759,
594, 2508, -1101, -1101, 1310, 1311, 1316, 3043, 6489, 4630,
30, -1101, 4656, 3786, 1318, -1101, 3814, 1319, 3043, 1320,
1323, 3043, 1325, 1326, 3043, 1331, 1213, -1101, 3043, -1101,
209, -1101, 2970, 1353, 2515, -1101, -1101, -1101, -1101, 760,
-1101, 3043, -1101, 1959, 3043, -1101, -1101, -1101, -1101, 1216,
3842, -1101, -1101, 1218, 3870, -1101, -1101, 1219, 3898, -1101,
1354, 2583, 149, 2273, 764, -1101, 598, 767, 1356, 1221,
6510, 771, 3926, 209, 1358, 209, 1361, 209, 1363, -1101,
-1101, -1101, -1101, 209, 1365, 2970, 1366, -1101, 466, -1101,
1226, 1368, 243, -1101, 1229, 267, -1101, 1230, 287, -1101,
1231, 313, -1101, 772, -1101, 775, -1101, 1232, 1959, -1101,
1369, 209, 1378, 209, 1379, 209, -1101, 1380, 466, 1382,
466, 776, -1101, 349, -1101, 391, -1101, 403, -1101, -1101,
-1101, 779, -1101, 1383, 1384, 1385, 1386, 466, 1392, -1101,
-1101, -1101, -1101, -1101, -1101
/* YYPGOTO[NTERM-NUM]. */
static const yytype_int16 yypgoto[] =
{
-1101, -1101, -1101, -1101, 494, -1101, -1101, -1101, -1101, 182,
-1101, -1101, -1101, -1101, -1101, -1101, -1101, -1101, -1101, -1101,
-1101, -1101, -286, 21, -1101, -66, -1101, 556, 1400, -1101,
-1101, -1101, -1101, 3, -375, -193, -1101, -1101, -1101, -1101,
-1101, -1101, 1401, -1101, -1101, -1101, -1101, -1101, -1101, -1101,
-1101, -1101, -1101, -1101, -1101, -1101, -660, -658, -1101, -1101,
1048, -1101, -1101, -1101, -1101, -1101, -6, -1101, -20, -1101,
-1100, 402, -109, 291, -83, -667, 467, -1101, -228, 42
/* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
positive, shift that token. If negative, reduce the rule which
number is the opposite. If zero, do what YYDEFACT says.
If YYTABLE_NINF, syntax error. */
#define YYTABLE_NINF -5
static const yytype_int16 yytable[] =
{
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
139, 387, 426, 568, 569, 202, 73, 678, 953, 488,
4, 401, 483, 695, 614, 950, 187, 189, 214, 195,
826, 1178, 686, 295, 5, 224, 231, 138, 142, 154,
226, 397, 419, 398, 421, 145, 1252, 217, 784, 755,
159, 154, 159, 1190, 150, 756, 757, 143, 141, 423,
237, 151, 755, 475, 476, 477, 478, 755, 756, 757,
358, 359, 144, 756, 757, 317, 318, 319, 334, 755,
376, 377, 320, 339, 182, 756, 757, 343, 376, 377,
516, 113, 114, 115, 116, 517, 992, 117, 993, 147,
394, 678, 817, 148, 155, 378, 615, 616, 617, 618,
886, 156, 888, 667, 168, 203, 155, 169, 668, 170,
149, 885, 160, 691, 692, 296, 297, 123, 124, 125,
126, 288, 289, 290, 1003, 484, 291, 294, 152, 1229,
238, 303, 376, 377, 696, 196, 696, 323, 836, 300,
325, 1232, 163, 526, 326, 332, 335, 336, 204, 338,
332, 340, 341, 1281, 332, 344, 345, 941, 619, 130,
131, 215, 371, 372, 232, 687, 233, 225, 153, 399,
380, 234, 227, 218, 388, 785, 146, 1253, 157, 374,
375, 197, 130, 131, 818, 819, 130, 131, 375, 792,
198, 376, 377, 792, 376, 377, 577, 158, 376, 377,
680, 123, 124, 125, 126, 407, 408, 409, 379, 411,
485, 389, 414, 415, 563, 416, 299, 755, 1331, 598,
390, 130, 131, 756, 757, 755, 428, 391, 679, 161,
886, 756, 757, 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, 462, 463, 464, 465, 466, 467, 468, 469,
470, 471, 472, 473, 474, 176, 1041, 162, 177, 479,
178, 35, 36, 37, 38, 755, 164, 332, 524, 1235,
43, 756, 757, 46, 931, 171, 205, 1291, 206, 526,
500, 501, 502, 503, 504, 505, 506, 507, 508, 509,
510, 511, 512, 513, 514, 165, 489, 150, 166, 755,
590, 376, 377, 522, 690, 756, 757, 487, 376, 377,
167, 530, 191, 935, 237, 192, 535, 994, 193, 995,
522, 332, 179, 755, 570, 544, 545, 546, 547, 756,
757, 162, 180, 239, 552, 240, 566, 567, 693, 557,
558, 559, 181, 755, 372, 113, 114, 115, 116, 756,
757, 117, 376, 377, 190, 571, 572, 573, 288, 289,
574, 300, 300, 794, 578, 579, 580, 581, 576, 755,
585, 1320, 199, 587, 588, 756, 757, 332, 591, 592,
200, 306, 307, 308, 309, 310, 311, 312, 313, 314,
315, 316, 542, 318, 319, 1322, 183, 184, 1116, 320,
526, 610, 527, 1117, 613, 755, 185, 526, 1090, 532,
208, 756, 757, 194, 698, 1324, 201, 123, 124, 125,
126, 811, 333, 123, 124, 125, 126, 333, 130, 131,
612, 333, 376, 377, 985, 986, 721, 130, 131, 207,
1181, 1326, 209, 130, 131, 376, 377, 755, 875, 835,
423, 237, 210, 756, 757, 674, 211, 183, 184, 755,
220, 996, 683, 997, 212, 756, 757, 185, 738, 739,
740, 1196, 213, 1199, 186, 1202, 241, 1344, 242, 219,
376, 377, 113, 114, 115, 116, 221, 681, 117, 376,
377, 332, 699, 222, 674, 703, 887, 223, 704, 705,
707, 243, 245, 244, 246, 1094, 247, 228, 248, 682,
934, 936, 249, 332, 250, 229, 705, 724, 886, 1345,
230, 886, 729, 746, 886, 376, 377, 736, 736, 736,
736, 1346, 376, 377, 172, 236, 760, 173, 747, 748,
174, 1150, 175, 281, 751, 349, 285, 251, 1152, 252,
356, 356, 356, 376, 377, 253, 767, 254, 769, 255,
1272, 256, 369, 304, 333, 810, 257, 1107, 258, 1154,
259, 780, 260, 782, 783, 737, 737, 737, 737, 282,
787, 356, 395, 376, 377, 376, 377, 829, 830, 831,
832, 283, 376, 377, 886, 298, 1080, 130, 131, 839,
523, 1161, 481, 1302, 233, 1305, 284, 1308, 1162, 234,
422, 286, 793, 1311, 321, 376, 377, 523, 333, 322,
856, 802, 803, 261, 886, 262, 324, 886, 376, 377,
886, 1163, 263, 886, 264, 804, 805, 806, 807, 808,
809, 1333, 332, 1335, 1228, 1337, 265, 812, 266, 315,
316, 317, 318, 319, 820, 886, 337, 886, 320, 886,
838, 376, 377, 342, 332, 332, 332, 332, 833, 267,
269, 268, 270, 271, 333, 272, 332, 1231, 351, 352,
306, 307, 308, 309, 310, 311, 312, 313, 314, 315,
316, 317, 318, 319, 7, 8, 353, 332, 320, 376,
377, 376, 377, 1046, 376, 377, 354, 1108, 376, 377,
360, 381, 879, 880, 881, 1234, 273, 1242, 274, 275,
1244, 276, 365, 277, 1295, 278, 366, 367, 494, 15,
16, 495, 18, 19, 496, 21, 497, 23, 279, 24,
280, 26, 27, 370, 29, 30, 31, 368, 382, 33,
34, 383, 1191, 308, 309, 310, 311, 312, 313, 314,
315, 316, 317, 318, 319, 526, 606, 536, 607, 320,
400, 918, 919, 50, 51, 52, 392, 309, 310, 311,
312, 313, 314, 315, 316, 317, 318, 319, 333, 393,
396, 1010, 320, 130, 131, 402, 706, 708, 520, 942,
233, 403, 404, 136, 526, 234, 677, 526, 405, 722,
333, 952, 406, 706, 793, 955, 410, 412, 937, 311,
312, 313, 314, 315, 316, 317, 318, 319, 417, 526,
589, 773, 320, 847, 526, 848, 855, 943, 526, 944,
945, 526, 526, 946, 947, 413, 526, 1002, 948, 988,
989, 990, 526, 526, 954, 970, 418, 998, 1000, 420,
1029, 1001, 1030, 427, 429, 675, 676, 1070, 332, 1071,
526, 1122, 1102, 1123, 1203, 526, 1204, 1214, 1015, 1016,
1017, 1029, 1029, 1220, 1224, 526, 1122, 1243, 1278, 430,
526, 1026, 1294, 526, 432, 1296, 1032, 1029, 526, 1300,
1327, 1328, 1029, 1329, 1343, 1347, 480, 1348, 320, 490,
1035, 491, 492, 136, 543, 493, 1024, 1050, 521, 548,
549, 560, 553, 554, 555, 556, 561, 596, 582, 584,
1049, 730, 562, 586, 599, 608, 1054, 1055, 605, 333,
609, 1057, 669, 670, 745, 671, 1206, 673, 684, 1063,
685, 689, 1081, 709, 1084, 700, 1087, 1034, 710, 711,
1073, 333, 333, 333, 333, 1097, 713, 1099, 1100, 714,
718, 715, 716, 333, 300, 7, 8, 719, 720, 332,
731, 733, 332, 744, 749, 1103, 750, 786, 768, 779,
776, 777, 778, 1111, 333, 788, 789, 790, 797, 798,
801, 1118, 1119, 799, 814, 815, 821, 1169, 1074, 494,
15, 16, 495, 18, 19, 496, 21, 497, 23, 816,
24, 1131, 26, 27, 822, 29, 30, 31, 1273, 824,
33, 34, 825, 828, 852, 834, 845, 851, 842, 858,
859, 1112, 860, 861, 864, 874, 865, 866, 870, 871,
1316, 867, 1148, 872, 50, 51, 52, 868, 869, 1209,
873, 882, 883, 884, 889, 890, 894, 891, 1160, 892,
522, 895, 896, 897, 898, 899, 903, 908, 909, 1167,
1339, 1168, 1342, 910, 332, 912, 913, 914, 915, 916,
917, 1175, 843, 844, 922, 846, 1179, 849, 850, 1353,
938, 853, 854, 932, 939, 949, 957, 956, 961, 964,
1195, 603, 1198, 962, 1201, 963, 965, 968, 969, 967,
971, 1208, 975, 1210, 1194, 976, 1197, 978, 1200, 1012,
300, 979, 980, 981, 7, 8, 332, 987, 1014, 1274,
1211, 1277, 991, 1007, 1011, 1013, 1018, 1021, 1019, 1020,
1218, 1219, 1036, 1037, 1039, 1048, 1042, 1222, 900, 901,
902, 1043, 1044, 1223, 1045, 333, 1226, 906, 494, 15,
16, 495, 18, 19, 496, 21, 497, 23, 1051, 24,
1052, 26, 27, 1053, 29, 30, 31, 1056, 1058, 33,
34, 1032, 1313, 1059, 1060, 1061, 1064, 1069, 1072, 1075,
1082, 1085, 1260, 1088, 1276, 1264, 1095, 1091, 1268, 1098,
1101, 1113, 1271, 50, 51, 52, 332, 1114, 332, 1124,
1125, 1115, 1127, 1121, 1128, 1280, 1129, 960, 1282, 1130,
1136, 1158, 1137, 966, 1138, 1139, 1140, 1141, 1142, 1143,
1145, 972, 973, 974, 1146, 1147, 1156, 977, 1149, 1164,
1171, 1151, 982, 983, 984, 1153, 1155, 1166, 1180, 1182,
1159, 1184, 1185, 1186, 1187, 999, 1188, 1221, 1189, 332,
604, 1006, 1237, 1238, 1009, 1215, 333, 1216, 1217, 333,
306, 307, 308, 309, 310, 311, 312, 313, 314, 315,
316, 317, 318, 319, 1022, 1023, 1246, 1247, 320, 1225,
907, 1241, 1248, 305, 1256, 1258, 1261, 85, 327, 1262,
951, 1265, 1266, 89, 90, 91, 1033, 1269, 92, 93,
104, 105, 106, 107, 108, 109, 110, 111, 112, 1275,
1289, 1270, 1297, 1283, 1303, 1285, 1287, 1306, 1298, 1309,
328, 1312, 1314, 1318, 1319, 1332, 1321, 1323, 1325, 1330,
1065, 1066, 1067, 1068, 1334, 1336, 1338, 523, 1340, 1349,
1350, 1351, 1352, 35, 36, 37, 38, 39, 1354, 1249,
959, 333, 43, 72, 80, 46, 1038, 551, 0, 0,
0, 0, 0, 0, 0, 0, 1104, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
0, 1120, 0, 0, 119, 120, 121, 122, 306, 307,
308, 309, 310, 311, 312, 313, 314, 315, 316, 317,
318, 319, 499, 333, 384, 1096, 320, 0, 0, 129,
0, 0, 0, 0, 386, 0, 0, 0, 0, 135,
0, 186, 540, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 85, 327, 0, 0, 0, 0, 89,
90, 91, 0, 1157, 92, 93, 94, 95, 96, 97,
98, 99, 100, 101, 102, 103, 104, 105, 106, 107,
108, 109, 110, 111, 112, 0, 1172, 1173, 0, 0,
0, 0, 0, 0, 0, 0, 328, 0, 0, 0,
0, 0, 0, 333, 0, 333, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 35,
36, 37, 38, 39, 515, 0, 0, 0, 43, 0,
1205, 46, 0, 0, 0, 0, 0, 306, 307, 308,
309, 310, 311, 312, 313, 314, 315, 316, 317, 318,
319, 0, 0, 0, 0, 320, 333, 0, 0, 0,
119, 120, 121, 122, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 1236, 0, 0, 0, 0,
127, 329, 0, 0, 0, 129, 0, 0, 0, 0,
132, 0, 0, 0, 0, 135, 0, 0, 540, 85,
86, 87, 0, 88, 0, 89, 90, 91, 0, 0,
92, 93, 94, 95, 96, 97, 98, 99, 100, 101,
102, 103, 104, 105, 106, 107, 108, 109, 110, 111,
112, 0, 113, 114, 115, 116, 0, 0, 117, 306,
307, 308, 309, 310, 311, 312, 313, 314, 315, 316,
317, 318, 319, 524, 85, 327, 355, 320, 0, 0,
89, 90, 91, 0, 0, 92, 93, 94, 95, 96,
97, 98, 99, 100, 101, 102, 103, 104, 105, 106,
107, 108, 109, 110, 111, 112, 0, 0, 0, 0,
0, 862, 0, 0, 0, 0, 0, 328, 0, 0,
118, 0, 0, 0, 0, 0, 119, 120, 121, 122,
0, 0, 0, 123, 124, 125, 126, 0, 0, 0,
35, 36, 37, 38, 39, 672, 127, 128, 0, 43,
0, 129, 46, 130, 131, 0, 132, 0, 133, 0,
134, 135, 0, 136, 0, 0, 0, 306, 307, 308,
309, 310, 311, 312, 313, 314, 315, 316, 317, 318,
319, 119, 120, 121, 122, 320, 306, 307, 308, 309,
310, 311, 312, 313, 314, 315, 316, 525, 318, 319,
0, 127, 346, 0, 320, 0, 129, 0, 0, 0,
0, 132, 0, 85, 327, 1004, 135, 0, 347, 89,
98, 99, 100, 101, 102, 103, 104, 105, 106, 107,
0, 0, 0, 0, 0, 0, 328, 0, 7, 8,
306, 307, 308, 309, 310, 311, 312, 313, 314, 315,
316, 317, 318, 319, 0, 0, 0, 0, 320, 35,
36, 37, 38, 39, 823, 0, 0, 0, 43, 0,
0, 46, 494, 15, 16, 495, 18, 19, 496, 21,
497, 23, 0, 24, 0, 26, 27, 0, 29, 30,
31, 0, 0, 33, 34, 0, 0, 0, 0, 0,
119, 120, 121, 122, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 50, 51, 52,
127, 346, 0, 0, 0, 129, 0, 0, 0, 0,
132, 0, 85, 327, 0, 135, 0, 1005, 89, 90,
99, 100, 101, 102, 103, 104, 105, 106, 107, 108,
0, 0, 0, 0, 761, 328, 0, 7, 8, 306,
307, 308, 309, 310, 311, 312, 313, 314, 315, 316,
317, 318, 319, 0, 0, 0, 0, 320, 35, 36,
37, 38, 39, 857, 0, 0, 0, 43, 0, 0,
46, 494, 15, 16, 495, 18, 19, 496, 21, 497,
23, 0, 24, 0, 26, 27, 0, 29, 30, 31,
0, 0, 33, 34, 0, 0, 0, 0, 0, 119,
120, 121, 122, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 50, 51, 52, 127,
346, 0, 0, 0, 129, 0, 0, 0, 0, 132,
0, 85, 327, 0, 135, 0, 347, 89, 90, 91,
0, 0, 92, 93, 94, 95, 96, 97, 98, 99,
100, 101, 102, 103, 104, 105, 106, 107, 108, 109,
110, 111, 112, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 781, 328, 0, 7, 8, 306, 307,
308, 309, 310, 311, 312, 313, 314, 315, 316, 317,
318, 319, 0, 0, 0, 0, 320, 35, 36, 37,
38, 39, 893, 0, 0, 0, 43, 0, 0, 46,
494, 15, 16, 495, 18, 19, 496, 21, 497, 23,
0, 24, 0, 26, 27, 0, 29, 30, 31, 0,
0, 33, 34, 0, 0, 0, 0, 0, 119, 120,
121, 122, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 50, 51, 52, 127, 329,
0, 0, 0, 129, 0, 0, 0, 0, 132, 0,
85, 327, 0, 135, 0, 539, 89, 90, 91, 0,
0, 92, 93, 94, 95, 96, 97, 98, 99, 100,
101, 102, 103, 104, 105, 106, 107, 108, 109, 110,
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
111, 112, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 1239, 328, 0, 7, 8, 306, 307, 308,
309, 310, 311, 312, 313, 314, 315, 316, 317, 318,
319, 0, 0, 0, 0, 320, 35, 36, 37, 38,
39, 940, 0, 0, 0, 43, 0, 0, 46, 494,
15, 16, 495, 18, 19, 496, 21, 497, 23, 0,
24, 0, 26, 27, 0, 29, 30, 31, 0, 0,
33, 34, 0, 1126, 0, 0, 0, 119, 120, 121,
122, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 50, 51, 52, 127, 329, 0,
0, 0, 129, 0, 0, 1144, 0, 132, 0, 85,
327, 0, 135, 0, 723, 89, 90, 91, 0, 0,
92, 93, 94, 95, 96, 97, 98, 99, 100, 101,
102, 103, 104, 105, 106, 107, 108, 109, 110, 111,
112, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 1292, 328, 0, 0, 0, 306, 307, 308, 309,
310, 311, 312, 313, 314, 315, 316, 317, 318, 319,
0, 0, 0, 0, 320, 35, 36, 37, 38, 39,
1170, 0, 0, 0, 43, 0, 0, 46, 306, 307,
308, 309, 310, 311, 312, 313, 314, 315, 316, 317,
318, 319, 0, 0, 0, 0, 320, 0, 0, 0,
0, 0, 0, 0, 0, 0, 119, 120, 121, 122,
306, 307, 308, 309, 310, 311, 312, 313, 314, 315,
316, 317, 318, 319, 0, 0, 127, 346, 320, 0,
0, 129, 0, 0, 1245, 0, 132, 0, 85, 327,
0, 135, 0, 1008, 89, 90, 91, 0, 0, 92,
93, 94, 95, 96, 97, 98, 99, 100, 101, 102,
103, 104, 105, 106, 107, 108, 109, 110, 111, 112,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 328, 0, 0, 0, 306, 307, 308, 309, 310,
311, 312, 313, 314, 315, 316, 317, 318, 319, 0,
0, 0, 0, 320, 35, 36, 37, 38, 39, 1290,
0, 85, 287, 43, 0, 0, 46, 89, 90, 91,
0, 0, 92, 93, 94, 95, 96, 97, 98, 99,
100, 101, 102, 103, 104, 105, 106, 107, 108, 109,
110, 111, 112, 524, 0, 119, 120, 121, 122, 306,
307, 308, 309, 310, 311, 312, 313, 314, 315, 316,
317, 318, 319, 0, 0, 384, 1096, 320, 0, 0,
129, 0, 0, 0, 0, 386, 600, 85, 287, 237,
135, 0, 186, 89, 90, 91, 0, 0, 92, 93,
94, 95, 96, 97, 98, 99, 100, 101, 102, 103,
104, 105, 106, 107, 108, 109, 110, 111, 112, 0,
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
113, 114, 115, 116, 0, 0, 117, 0, 119, 120,
121, 122, 0, 0, 306, 307, 308, 309, 310, 311,
312, 313, 314, 315, 316, 317, 318, 319, 127, 128,
0, 0, 320, 129, 0, 0, 0, 0, 132, 0,
0, 292, 0, 135, 0, 293, 306, 307, 308, 309,
310, 311, 312, 313, 314, 315, 316, 542, 318, 319,
0, 0, 0, 694, 320, 0, 0, 0, 0, 0,
0, 0, 0, 0, 119, 120, 121, 122, 0, 306,
307, 308, 309, 310, 311, 312, 313, 314, 315, 316,
317, 318, 319, 0, 127, 128, 0, 320, 0, 129,
0, 0, 0, 0, 132, 841, 85, 287, 0, 135,
0, 1110, 89, 90, 91, 0, 0, 92, 93, 94,
95, 96, 97, 98, 99, 100, 101, 102, 103, 104,
105, 106, 107, 108, 109, 110, 111, 112, 0, 0,
0, 0, 905, 0, 85, 287, 0, 0, 0, 0,
89, 90, 91, 0, 0, 92, 93, 94, 95, 96,
97, 98, 99, 100, 101, 102, 103, 104, 105, 106,
107, 108, 109, 110, 111, 112, 306, 307, 308, 309,
310, 311, 312, 313, 314, 315, 316, 317, 318, 319,
0, 0, 0, 0, 320, 0, 0, 0, 0, 306,
307, 308, 309, 310, 311, 312, 313, 314, 315, 316,
317, 318, 319, 119, 120, 121, 122, 320, 306, 307,
308, 309, 310, 311, 312, 313, 314, 315, 316, 317,
318, 319, 0, 127, 128, 0, 320, 0, 129, 0,
0, 0, 0, 132, 0, 0, 701, 0, 135, 0,
702, 119, 120, 121, 122, 306, 307, 308, 309, 310,
311, 312, 313, 314, 315, 316, 317, 318, 319, 0,
0, 384, 385, 320, 0, 0, 129, 0, 0, 0,
0, 386, 0, 85, 327, 0, 135, 0, 186, 89,
90, 91, 0, 0, 92, 93, 94, 95, 96, 97,
98, 99, 100, 101, 102, 103, 104, 105, 106, 107,
108, 109, 110, 111, 112, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 328, 306, 307, 308,
309, 310, 311, 312, 313, 314, 315, 316, 317, 318,
319, 0, 0, 0, 0, 320, 0, 0, 0, 35,
36, 37, 38, 39, 726, 0, 85, 287, 43, 0,
0, 46, 89, 90, 91, 0, 0, 92, 93, 94,
95, 96, 97, 98, 99, 100, 101, 102, 103, 104,
105, 106, 107, 108, 109, 110, 111, 112, 0, 0,
119, 120, 121, 122, 306, 307, 308, 309, 310, 311,
312, 313, 314, 315, 316, 317, 318, 319, 0, 0,
127, 329, 320, 0, 0, 129, 85, 287, 237, 1078,
132, 1079, 89, 90, 91, 135, 0, 92, 93, 94,
95, 96, 97, 98, 99, 100, 101, 102, 103, 104,
105, 106, 107, 108, 109, 110, 111, 112, 0, 113,
114, 115, 116, 0, 0, 117, 0, 0, 0, 0,
0, 0, 0, 119, 120, 121, 122, 306, 307, 308,
309, 310, 311, 312, 313, 314, 315, 316, 317, 318,
319, 0, 0, 127, 128, 320, 0, 0, 129, 0,
0, 0, 1105, 132, 1106, 0, 0, 0, 135, 0,
306, 307, 308, 309, 310, 311, 312, 313, 314, 315,
316, 317, 318, 319, 0, 0, -4, 1, 320, 0,
-4, 0, 0, 119, 120, 121, 122, 764, -4, -4,
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
0, 0, 0, 127, 128, 0, 0, 0, 129, 0,
0, -4, 0, 132, 0, 0, -4, -4, 135, -4,
-4, 0, -4, -4, -4, -4, -4, -4, -4, -4,
-4, -4, 0, -4, -4, -4, -4, -4, -4, -4,
-4, 0, -4, -4, -4, -4, -4, -4, -4, -4,
-4, 0, -4, -4, -4, -4, -4, -4, 0, 0,
-4, -4, 6, 0, 0, 0, -4, -4, -4, -4,
7, 8, -4, 0, -4, 0, -4, -4, -4, -4,
-4, -4, -4, -4, -4, -4, 0, 0, 0, 0,
-4, -4, -4, 9, 0, 0, 0, 0, 10, 11,
0, 12, 13, 0, 14, 15, 16, 17, 18, 19,
20, 21, 22, 23, 0, 24, 25, 26, 27, 28,
29, 30, 31, 0, 32, 33, 34, 35, 36, 37,
38, 39, 40, 0, 41, 42, 43, 44, 45, 46,
0, 0, 47, 48, 7, 8, 0, 0, 49, 50,
51, 52, 0, 0, 53, 0, 54, 0, 55, 56,
57, 58, 59, 60, 61, 62, 63, 64, 0, 0,
0, 0, 65, 66, 67, 0, 0, 0, 494, 15,
16, 495, 18, 19, 496, 21, 497, 23, 0, 24,
0, 26, 27, 0, 29, 30, 31, 0, 0, 33,
34, 306, 307, 308, 309, 310, 311, 312, 313, 314,
315, 316, 317, 318, 319, 0, 0, 0, 0, 320,
0, 0, 0, 50, 51, 52, 1192, 0, 1193, 306,
307, 308, 309, 310, 311, 312, 313, 314, 315, 316,
317, 318, 319, 0, 0, 0, 0, 320, 0, 0,
0, 0, 0, 0, 0, 0, 795, 306, 307, 308,
309, 310, 311, 312, 313, 314, 315, 316, 317, 318,
319, 0, 0, 0, 0, 320, 0, 0, 0, 0,
0, 0, 0, 0, 840, 306, 307, 308, 309, 310,
311, 312, 313, 314, 315, 316, 317, 318, 319, 0,
0, 0, 0, 320, 0, 0, 0, 0, 0, 0,
0, 0, 878, 306, 307, 308, 309, 310, 311, 312,
313, 314, 315, 316, 317, 318, 319, 0, 0, 0,
0, 320, 0, 0, 0, 0, 0, 0, 0, 0,
1076, 306, 307, 308, 309, 310, 311, 312, 313, 314,
315, 316, 317, 318, 319, 0, 0, 0, 0, 320,
0, 0, 0, 0, 0, 0, 0, 0, 1093, 306,
307, 308, 309, 310, 311, 312, 313, 314, 315, 316,
317, 318, 319, 0, 0, 0, 0, 320, 0, 0,
0, 0, 0, 0, 0, 0, 1132, 306, 307, 308,
309, 310, 311, 312, 313, 314, 315, 316, 317, 318,
319, 0, 0, 0, 0, 320, 0, 0, 0, 0,
0, 0, 0, 0, 1133, 306, 307, 308, 309, 310,
311, 312, 313, 314, 315, 316, 317, 318, 319, 0,
0, 0, 0, 320, 0, 0, 0, 0, 0, 0,
0, 0, 1134, 306, 307, 308, 309, 310, 311, 312,
313, 314, 315, 316, 317, 318, 319, 0, 0, 0,
0, 320, 0, 0, 0, 0, 0, 0, 0, 0,
1135, 306, 307, 308, 309, 310, 311, 312, 313, 314,
315, 316, 317, 318, 319, 0, 0, 0, 0, 320,
0, 0, 0, 0, 0, 0, 0, 0, 1165, 306,
307, 308, 309, 310, 311, 312, 313, 314, 315, 316,
317, 318, 319, 0, 0, 0, 0, 320, 0, 0,
0, 0, 0, 0, 0, 0, 1207, 306, 307, 308,
309, 310, 311, 312, 313, 314, 315, 316, 317, 318,
319, 0, 0, 0, 0, 320, 0, 0, 0, 0,
0, 0, 0, 0, 1212, 306, 307, 308, 309, 310,
311, 312, 313, 314, 315, 316, 317, 318, 319, 0,
0, 0, 0, 320, 0, 0, 0, 0, 0, 0,
0, 0, 1213, 306, 307, 308, 309, 310, 311, 312,
313, 314, 315, 316, 317, 318, 319, 0, 0, 0,
0, 320, 0, 0, 0, 0, 0, 0, 0, 0,
1227, 306, 307, 308, 309, 310, 311, 312, 313, 314,
315, 316, 317, 318, 319, 0, 0, 0, 0, 320,
0, 0, 0, 0, 0, 0, 0, 0, 1230, 306,
307, 308, 309, 310, 311, 312, 313, 314, 315, 316,
317, 318, 319, 0, 0, 0, 0, 320, 0, 0,
0, 0, 0, 0, 0, 0, 1233, 306, 307, 308,
309, 310, 311, 312, 313, 314, 315, 316, 317, 318,
319, 0, 0, 0, 0, 320, 0, 0, 0, 0,
0, 0, 0, 0, 1255, 306, 307, 308, 309, 310,
311, 312, 313, 314, 315, 316, 317, 318, 319, 0,
0, 0, 0, 320, 0, 0, 0, 0, 0, 0,
0, 0, 1257, 306, 307, 308, 309, 310, 311, 312,
313, 314, 315, 316, 317, 318, 319, 0, 0, 0,
0, 320, 0, 0, 0, 0, 0, 0, 0, 0,
1284, 306, 307, 308, 309, 310, 311, 312, 313, 314,
315, 316, 317, 318, 319, 0, 0, 0, 0, 320,
0, 0, 0, 0, 0, 0, 0, 0, 1286, 306,
307, 308, 309, 310, 311, 312, 313, 314, 315, 316,
317, 318, 319, 0, 0, 0, 0, 320, 0, 0,
0, 0, 0, 0, 0, 0, 1288, 306, 307, 308,
309, 310, 311, 312, 313, 314, 315, 316, 317, 318,
319, 0, 0, 0, 0, 320, 0, 0, 0, 0,
0, 0, 0, 0, 1301, 306, 307, 308, 309, 310,
311, 312, 313, 314, 315, 316, 317, 318, 319, 0,
0, 0, 0, 320, 0, 482, 0, 0, 0, 0,
564, 306, 307, 308, 309, 310, 311, 312, 313, 314,
315, 316, 317, 318, 319, 0, 0, 0, 0, 320,
0, 0, 0, 0, 0, 0, 518, 306, 307, 308,
309, 310, 311, 312, 313, 314, 315, 316, 317, 318,
319, 0, 0, 0, 0, 320, 0, 0, 0, 0,
0, 0, 564, 306, 307, 308, 309, 310, 311, 312,
313, 314, 315, 316, 317, 318, 319, 0, 0, 0,
0, 320, 0, 0, 0, 0, 0, 0, 565, 306,
307, 308, 309, 310, 311, 312, 313, 314, 315, 316,
317, 318, 319, 0, 0, 0, 0, 320, 0, 0,
0, 0, 0, 0, 597, 306, 307, 308, 309, 310,
311, 312, 313, 314, 315, 316, 317, 318, 319, 0,
0, 0, 0, 320, 0, 0, 0, 0, 0, 0,
647, 306, 307, 308, 309, 310, 311, 312, 313, 314,
315, 316, 317, 318, 319, 0, 0, 0, 0, 320,
0, 0, 0, 0, 0, 0, 648, 306, 307, 308,
309, 310, 311, 312, 313, 314, 315, 316, 317, 318,
319, 0, 0, 0, 0, 320, 0, 0, 0, 0,
0, 0, 661, 306, 307, 308, 309, 310, 311, 312,
313, 314, 315, 316, 317, 318, 319, 0, 0, 0,
0, 320, 0, 0, 0, 0, 0, 0, 662, 306,
307, 308, 309, 310, 311, 312, 313, 314, 315, 316,
317, 318, 319, 0, 0, 0, 0, 320, 0, 0,
0, 0, 0, 0, 663, 306, 307, 308, 309, 310,
311, 312, 313, 314, 315, 316, 317, 318, 319, 0,
0, 0, 0, 320, 0, 0, 0, 0, 0, 0,
664, 306, 307, 308, 309, 310, 311, 312, 313, 314,
315, 316, 317, 318, 319, 0, 0, 0, 0, 320,
0, 0, 0, 0, 0, 0, 665, 306, 307, 308,
309, 310, 311, 312, 313, 314, 315, 316, 317, 318,
319, 0, 0, 0, 0, 320, 0, 0, 0, 0,
0, 0, 666, 306, 307, 308, 309, 310, 311, 312,
313, 314, 315, 316, 317, 318, 319, 0, 0, 0,
0, 320, 0, 0, 0, 0, 0, 0, 752, 306,
307, 308, 309, 310, 311, 312, 313, 314, 315, 316,
317, 318, 319, 0, 0, 0, 0, 320, 0, 0,
0, 0, 0, 0, 753, 306, 307, 308, 309, 310,
311, 312, 313, 314, 315, 316, 317, 318, 319, 0,
0, 0, 0, 320, 0, 0, 0, 0, 0, 0,
754, 306, 307, 308, 309, 310, 311, 312, 313, 314,
315, 316, 317, 318, 319, 0, 0, 0, 0, 320,
0, 0, 0, 0, 0, 0, 837, 306, 307, 308,
309, 310, 311, 312, 313, 314, 315, 316, 317, 318,
319, 0, 0, 0, 0, 320, 0, 0, 0, 0,
0, 0, 876, 306, 307, 308, 309, 310, 311, 312,
313, 314, 315, 316, 317, 318, 319, 0, 0, 0,
0, 320, 0, 0, 0, 0, 0, 0, 877, 306,
307, 308, 309, 310, 311, 312, 313, 314, 315, 316,
317, 318, 319, 0, 0, 0, 0, 320, 0, 0,
0, 0, 0, 0, 904, 306, 307, 308, 309, 310,
311, 312, 313, 314, 315, 316, 317, 318, 319, 0,
0, 0, 0, 320, 0, 0, 0, 0, 0, 0,
1027, 306, 307, 308, 309, 310, 311, 312, 313, 314,
315, 316, 317, 318, 319, 0, 0, 0, 0, 320,
0, 0, 0, 0, 0, 0, 1028, 306, 307, 308,
309, 310, 311, 312, 313, 314, 315, 316, 317, 318,
319, 0, 0, 0, 0, 320, 0, 0, 0, 0,
0, 0, 1047, 306, 307, 308, 309, 310, 311, 312,
313, 314, 315, 316, 317, 318, 319, 0, 0, 0,
0, 320, 0, 0, 0, 0, 0, 0, 1176, 306,
307, 308, 309, 310, 311, 312, 313, 314, 315, 316,
317, 318, 319, 0, 0, 0, 0, 320, 0, 0,
0, 0, 0, 0, 1177, 306, 307, 308, 309, 310,
311, 312, 313, 314, 315, 316, 317, 318, 319, 0,
0, 0, 0, 320, 0, 0, 0, 0, 0, 0,
1183, 306, 307, 308, 309, 310, 311, 312, 313, 314,
315, 316, 317, 318, 319, 0, 0, 0, 0, 320,
0, 0, 0, 0, 0, 0, 1251, 306, 307, 308,
309, 310, 311, 312, 313, 314, 315, 316, 317, 318,
319, 0, 0, 0, 0, 320, 0, 0, 0, 0,
0, 0, 1254, 306, 307, 308, 309, 310, 311, 312,
313, 314, 315, 316, 317, 318, 319, 0, 0, 0,
0, 320, 0, 0, 0, 486, 306, 307, 308, 309,
310, 311, 312, 313, 314, 315, 316, 317, 318, 319,
0, 0, 0, 0, 320, 0, 0, 0, 602, 306,
307, 308, 309, 310, 311, 312, 313, 314, 315, 316,
317, 318, 319, 0, 0, 0, 0, 320, 0, 0,
0, 611, 306, 307, 308, 309, 310, 311, 312, 313,
314, 315, 316, 317, 318, 319, 0, 0, 0, 0,
320, 0, 0, 0, 626, 306, 307, 308, 309, 310,
311, 312, 313, 314, 315, 316, 317, 318, 319, 0,
0, 0, 0, 320, 0, 0, 0, 628, 306, 307,
308, 309, 310, 311, 312, 313, 314, 315, 316, 317,
318, 319, 0, 0, 0, 0, 320, 0, 0, 0,
630, 306, 307, 308, 309, 310, 311, 312, 313, 314,
315, 316, 317, 318, 319, 0, 0, 0, 0, 320,
0, 0, 0, 632, 306, 307, 308, 309, 310, 311,
312, 313, 314, 315, 316, 317, 318, 319, 0, 0,
0, 0, 320, 0, 0, 0, 634, 306, 307, 308,
309, 310, 311, 312, 313, 314, 315, 316, 317, 318,
319, 0, 0, 0, 0, 320, 0, 0, 0, 636,
306, 307, 308, 309, 310, 311, 312, 313, 314, 315,
316, 317, 318, 319, 0, 0, 0, 0, 320, 0,
0, 0, 638, 306, 307, 308, 309, 310, 311, 312,
313, 314, 315, 316, 317, 318, 319, 0, 0, 0,
0, 320, 0, 0, 0, 640, 306, 307, 308, 309,
310, 311, 312, 313, 314, 315, 316, 317, 318, 319,
0, 0, 0, 0, 320, 0, 0, 0, 642, 306,
307, 308, 309, 310, 311, 312, 313, 314, 315, 316,
317, 318, 319, 0, 0, 0, 0, 320, 0, 0,
0, 644, 306, 307, 308, 309, 310, 311, 312, 313,
314, 315, 316, 317, 318, 319, 0, 0, 0, 0,
320, 0, 0, 0, 646, 306, 307, 308, 309, 310,
311, 312, 313, 314, 315, 316, 317, 318, 319, 0,
0, 0, 0, 320, 0, 0, 0, 650, 306, 307,
308, 309, 310, 311, 312, 313, 314, 315, 316, 317,
318, 319, 0, 0, 0, 0, 320, 0, 0, 0,
652, 306, 307, 308, 309, 310, 311, 312, 313, 314,
315, 316, 317, 318, 319, 0, 0, 0, 0, 320,
0, 0, 0, 654, 306, 307, 308, 309, 310, 311,
312, 313, 314, 315, 316, 317, 318, 319, 0, 0,
0, 0, 320, 0, 0, 0, 656, 306, 307, 308,
309, 310, 311, 312, 313, 314, 315, 316, 317, 318,
319, 0, 0, 0, 0, 320, 0, 0, 0, 658,
306, 307, 308, 309, 310, 311, 312, 313, 314, 315,
316, 317, 318, 319, 0, 0, 0, 0, 320, 0,
0, 0, 660, 306, 307, 308, 309, 310, 311, 312,
313, 314, 315, 316, 317, 318, 319, 0, 0, 0,
0, 320, 0, 0, 0, 771, 306, 307, 308, 309,
310, 311, 312, 313, 314, 315, 316, 317, 318, 319,
0, 0, 0, 0, 320, 0, 0, 0, 772, 306,
307, 308, 309, 310, 311, 312, 313, 314, 315, 316,
317, 318, 319, 0, 0, 0, 0, 320, 0, 0,
0, 774, 306, 307, 308, 309, 310, 311, 312, 313,
314, 315, 316, 317, 318, 319, 0, 0, 0, 0,
320, 0, 0, 0, 775, 306, 307, 308, 309, 310,
311, 312, 313, 314, 315, 316, 317, 318, 319, 0,
0, 0, 0, 320, 0, 0, 0, 791, 306, 307,
308, 309, 310, 311, 312, 313, 314, 315, 316, 317,
318, 319, 0, 0, 0, 0, 320, 0, 0, 0,
813, 306, 307, 308, 309, 310, 311, 312, 313, 314,
315, 316, 317, 318, 319, 0, 0, 0, 0, 320,
0, 0, 0, 911, 306, 307, 308, 309, 310, 311,
312, 313, 314, 315, 316, 317, 318, 319, 0, 0,
0, 0, 320, 0, 0, 0, 924, 306, 307, 308,
309, 310, 311, 312, 313, 314, 315, 316, 317, 318,
319, 0, 0, 0, 0, 320, 0, 0, 0, 926,
306, 307, 308, 309, 310, 311, 312, 313, 314, 315,
316, 317, 318, 319, 0, 0, 0, 0, 320, 0,
0, 0, 928, 306, 307, 308, 309, 310, 311, 312,
313, 314, 315, 316, 317, 318, 319, 0, 0, 0,
0, 320, 0, 0, 0, 930, 306, 307, 308, 309,
310, 311, 312, 313, 314, 315, 316, 317, 318, 319,
0, 0, 0, 0, 320, 0, 0, 0, 1040, 306,
307, 308, 309, 310, 311, 312, 313, 314, 315, 316,
317, 318, 319, 0, 0, 0, 0, 320, 0, 482,
306, 307, 308, 309, 310, 311, 312, 313, 314, 315,
316, 317, 318, 319, 0, 0, 0, 0, 320, 0,
519, 306, 307, 308, 309, 310, 311, 312, 313, 314,
315, 316, 317, 318, 319, 0, 0, 0, 0, 320,
0, 528, 306, 307, 308, 309, 310, 311, 312, 313,
314, 315, 316, 317, 318, 319, 0, 0, 0, 0,
320, 0, 529, 306, 307, 308, 309, 310, 311, 312,
313, 314, 315, 316, 317, 318, 319, 0, 0, 0,
0, 320, 0, 531, 306, 307, 308, 309, 310, 311,
312, 313, 314, 315, 316, 317, 318, 319, 0, 0,
0, 0, 320, 0, 533, 306, 307, 308, 309, 310,
311, 312, 313, 314, 315, 316, 317, 318, 319, 0,
0, 0, 0, 320, 0, 534, 306, 307, 308, 309,
310, 311, 312, 313, 314, 315, 316, 317, 318, 319,
0, 0, 0, 0, 320, 0, 537, 306, 307, 308,
309, 310, 311, 312, 313, 314, 315, 316, 317, 318,
319, 0, 0, 0, 0, 320, 0, 538, 306, 307,
308, 309, 310, 311, 312, 313, 314, 315, 316, 317,
318, 319, 0, 0, 0, 0, 320, 0, 593, 306,
307, 308, 309, 310, 311, 312, 313, 314, 315, 316,
317, 318, 319, 0, 0, 0, 0, 320, 0, 594,
306, 307, 308, 309, 310, 311, 312, 313, 314, 315,
316, 317, 318, 319, 0, 0, 0, 0, 320, 0,
595, 306, 307, 308, 309, 310, 311, 312, 313, 314,
315, 316, 317, 318, 319, 0, 0, 0, 0, 320,
0, 601, 306, 307, 308, 309, 310, 311, 312, 313,
314, 315, 316, 317, 318, 319, 0, 0, 0, 0,
320, 0, 625, 306, 307, 308, 309, 310, 311, 312,
313, 314, 315, 316, 317, 318, 319, 0, 0, 0,
0, 320, 0, 627, 306, 307, 308, 309, 310, 311,
312, 313, 314, 315, 316, 317, 318, 319, 0, 0,
0, 0, 320, 0, 629, 306, 307, 308, 309, 310,
311, 312, 313, 314, 315, 316, 317, 318, 319, 0,
0, 0, 0, 320, 0, 631, 306, 307, 308, 309,
310, 311, 312, 313, 314, 315, 316, 317, 318, 319,
0, 0, 0, 0, 320, 0, 633, 306, 307, 308,
309, 310, 311, 312, 313, 314, 315, 316, 317, 318,
319, 0, 0, 0, 0, 320, 0, 635, 306, 307,
308, 309, 310, 311, 312, 313, 314, 315, 316, 317,
318, 319, 0, 0, 0, 0, 320, 0, 637, 306,
307, 308, 309, 310, 311, 312, 313, 314, 315, 316,
317, 318, 319, 0, 0, 0, 0, 320, 0, 639,
306, 307, 308, 309, 310, 311, 312, 313, 314, 315,
316, 317, 318, 319, 0, 0, 0, 0, 320, 0,
641, 306, 307, 308, 309, 310, 311, 312, 313, 314,
315, 316, 317, 318, 319, 0, 0, 0, 0, 320,
0, 643, 306, 307, 308, 309, 310, 311, 312, 313,
314, 315, 316, 317, 318, 319, 0, 0, 0, 0,
320, 0, 645, 306, 307, 308, 309, 310, 311, 312,
313, 314, 315, 316, 317, 318, 319, 0, 0, 0,
0, 320, 0, 649, 306, 307, 308, 309, 310, 311,
312, 313, 314, 315, 316, 317, 318, 319, 0, 0,
0, 0, 320, 0, 651, 306, 307, 308, 309, 310,
311, 312, 313, 314, 315, 316, 317, 318, 319, 0,
0, 0, 0, 320, 0, 653, 306, 307, 308, 309,
310, 311, 312, 313, 314, 315, 316, 317, 318, 319,
0, 0, 0, 0, 320, 0, 655, 306, 307, 308,
309, 310, 311, 312, 313, 314, 315, 316, 317, 318,
319, 0, 0, 0, 0, 320, 0, 657, 306, 307,
308, 309, 310, 311, 312, 313, 314, 315, 316, 317,
318, 319, 0, 0, 0, 0, 320, 0, 659, 306,
307, 308, 309, 310, 311, 312, 313, 314, 315, 316,
317, 318, 319, 0, 0, 0, 0, 320, 0, 712,
306, 307, 308, 309, 310, 311, 312, 313, 314, 315,
316, 317, 318, 319, 0, 0, 0, 0, 320, 0,
717, 306, 307, 308, 309, 310, 311, 312, 313, 314,
315, 316, 317, 318, 319, 0, 0, 0, 0, 320,
0, 725, 306, 307, 308, 309, 310, 311, 312, 313,
314, 315, 316, 317, 318, 319, 0, 0, 0, 0,
320, 0, 727, 306, 307, 308, 309, 310, 311, 312,
313, 314, 315, 316, 317, 318, 319, 0, 0, 0,
0, 320, 0, 728, 306, 307, 308, 309, 310, 311,
312, 313, 314, 315, 316, 317, 318, 319, 0, 0,
0, 0, 320, 0, 734, 306, 307, 308, 309, 310,
311, 312, 313, 314, 315, 316, 317, 318, 319, 0,
0, 0, 0, 320, 0, 741, 306, 307, 308, 309,
310, 311, 312, 313, 314, 315, 316, 317, 318, 319,
0, 0, 0, 0, 320, 0, 742, 306, 307, 308,
309, 310, 311, 312, 313, 314, 315, 316, 317, 318,
319, 0, 0, 0, 0, 320, 0, 743, 306, 307,
308, 309, 310, 311, 312, 313, 314, 315, 316, 317,
318, 319, 0, 0, 0, 0, 320, 0, 763, 306,
307, 308, 309, 310, 311, 312, 313, 314, 315, 316,
317, 318, 319, 0, 0, 0, 0, 320, 0, 765,
306, 307, 308, 309, 310, 311, 312, 313, 314, 315,
316, 317, 318, 319, 0, 0, 0, 0, 320, 0,
766, 306, 307, 308, 309, 310, 311, 312, 313, 314,
315, 316, 317, 318, 319, 0, 0, 0, 0, 320,
0, 770, 306, 307, 308, 309, 310, 311, 312, 313,
314, 315, 316, 317, 318, 319, 0, 0, 0, 0,
320, 0, 923, 306, 307, 308, 309, 310, 311, 312,
313, 314, 315, 316, 317, 318, 319, 0, 0, 0,
0, 320, 0, 925, 306, 307, 308, 309, 310, 311,
312, 313, 314, 315, 316, 317, 318, 319, 0, 0,
0, 0, 320, 0, 927, 306, 307, 308, 309, 310,
311, 312, 313, 314, 315, 316, 317, 318, 319, 0,
0, 0, 0, 320, 0, 929, 306, 307, 308, 309,
310, 311, 312, 313, 314, 315, 316, 317, 318, 319,
0, 0, 0, 0, 320, 0, 933, 306, 307, 308,
309, 310, 311, 312, 313, 314, 315, 316, 317, 318,
319, 0, 0, 0, 0, 320, 0, 1077, 306, 307,
308, 309, 310, 311, 312, 313, 314, 315, 316, 317,
318, 319, 0, 0, 0, 0, 320, 0, 1092, 306,
307, 308, 309, 310, 311, 312, 313, 314, 315, 316,
317, 318, 319, 0, 0, 0, 0, 320, 0, 1109,
306, 307, 308, 309, 310, 311, 312, 313, 314, 315,
316, 317, 318, 319, 0, 0, 0, 0, 320, 0,
1250, 306, 307, 308, 309, 310, 311, 312, 313, 314,
315, 316, 317, 318, 319, 0, 0, 0, 0, 320,
0, 1299
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
6, 194, 230, 378, 379, 4, 3, 7, 6, 295,
6, 204, 7, 6, 4, 6, 36, 37, 4, 39,
687, 1121, 4, 4, 0, 5, 4, 6, 13, 75,
5, 4, 225, 6, 227, 6, 6, 4, 7, 76,
75, 75, 75, 1143, 140, 82, 83, 52, 6, 4,
5, 147, 76, 281, 282, 283, 284, 76, 82, 83,
169, 170, 140, 82, 83, 132, 133, 134, 151, 76,
130, 131, 139, 156, 147, 82, 83, 160, 130, 131,
141, 36, 37, 38, 39, 146, 146, 42, 148, 6,
199, 7, 4, 6, 140, 147, 86, 87, 88, 89,
758, 147, 762, 141, 49, 104, 140, 52, 146, 54,
6, 148, 147, 147, 147, 96, 97, 117, 118, 119,
120, 127, 128, 129, 148, 120, 132, 133, 140, 148,
88, 137, 130, 131, 127, 4, 127, 143, 141, 136,
146, 148, 56, 146, 150, 151, 152, 153, 147, 155,
156, 157, 158, 1253, 160, 161, 162, 824, 148, 137,
138, 147, 182, 183, 142, 147, 144, 147, 140, 142,
190, 149, 147, 140, 194, 144, 147, 147, 140, 185,
186, 50, 137, 138, 96, 97, 137, 138, 194, 144,
59, 130, 131, 144, 130, 131, 389, 140, 130, 131,
486, 117, 118, 119, 120, 211, 212, 213, 147, 215,
293, 147, 218, 219, 146, 221, 4, 76, 1318, 412,
140, 137, 138, 82, 83, 76, 232, 147, 144, 140,
888, 82, 83, 239, 240, 241, 242, 243, 244, 245,
246, 247, 248, 249, 250, 251, 252, 253, 254, 255,
256, 257, 258, 259, 260, 261, 262, 263, 264, 265,
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
276, 277, 278, 279, 280, 49, 943, 140, 52, 285,
54, 69, 70, 71, 72, 76, 52, 293, 8, 148,
78, 82, 83, 81, 141, 54, 4, 148, 6, 146,
306, 307, 308, 309, 310, 311, 312, 313, 314, 315,
316, 317, 318, 319, 320, 52, 295, 140, 52, 76,
403, 130, 131, 329, 147, 82, 83, 7, 130, 131,
52, 337, 46, 7, 5, 49, 342, 146, 52, 148,
346, 347, 140, 76, 146, 351, 352, 353, 354, 82,
83, 140, 49, 140, 360, 142, 376, 377, 147, 365,
366, 367, 140, 76, 384, 36, 37, 38, 39, 82,
83, 42, 130, 131, 147, 381, 382, 383, 384, 385,
386, 378, 379, 611, 390, 391, 392, 393, 146, 76,
396, 148, 52, 399, 400, 82, 83, 403, 404, 405,
52, 121, 122, 123, 124, 125, 126, 127, 128, 129,
130, 131, 132, 133, 134, 148, 130, 131, 141, 139,
146, 427, 148, 146, 430, 76, 140, 146, 148, 148,
4, 82, 83, 147, 517, 148, 49, 117, 118, 119,
120, 669, 151, 117, 118, 119, 120, 156, 137, 138,
429, 160, 130, 131, 6, 7, 539, 137, 138, 49,
1127, 148, 4, 137, 138, 130, 131, 76, 146, 697,
4, 5, 4, 82, 83, 481, 140, 130, 131, 76,
6, 146, 488, 148, 140, 82, 83, 140, 554, 555,
556, 1151, 140, 1153, 147, 1155, 140, 148, 142, 140,
130, 131, 36, 37, 38, 39, 142, 486, 42, 130,
131, 517, 518, 4, 520, 521, 146, 4, 524, 525,
526, 140, 140, 142, 142, 146, 140, 147, 142, 487,
816, 817, 140, 539, 142, 140, 542, 543, 1196, 148,
140, 1199, 548, 563, 1202, 130, 131, 553, 554, 555,
556, 148, 130, 131, 46, 147, 576, 49, 564, 565,
52, 146, 54, 140, 570, 163, 7, 140, 146, 142,
168, 169, 170, 130, 131, 140, 582, 142, 584, 140,
1240, 142, 180, 6, 293, 668, 140, 8, 142, 146,
140, 597, 142, 599, 600, 553, 554, 555, 556, 140,
606, 199, 200, 130, 131, 130, 131, 690, 691, 692,
693, 140, 130, 131, 1272, 4, 991, 137, 138, 702,
329, 146, 142, 1283, 144, 1285, 140, 1287, 146, 149,
228, 140, 611, 1293, 6, 130, 131, 346, 347, 6,
723, 647, 648, 140, 1302, 142, 5, 1305, 130, 131,
1308, 146, 140, 1311, 142, 661, 662, 663, 664, 665,
666, 1321, 668, 1323, 146, 1325, 140, 673, 142, 130,
131, 132, 133, 134, 680, 1333, 140, 1335, 139, 1337,
700, 130, 131, 140, 690, 691, 692, 693, 694, 140,
140, 142, 142, 140, 403, 142, 702, 146, 140, 147,
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
131, 132, 133, 134, 12, 13, 140, 723, 139, 130,
131, 130, 131, 951, 130, 131, 140, 148, 130, 131,
140, 147, 752, 753, 754, 146, 140, 146, 142, 140,
146, 142, 140, 140, 146, 142, 140, 140, 46, 47,
48, 49, 50, 51, 52, 53, 54, 55, 140, 57,
142, 59, 60, 5, 62, 63, 64, 4, 147, 67,
68, 147, 1147, 123, 124, 125, 126, 127, 128, 129,
130, 131, 132, 133, 134, 146, 142, 148, 144, 139,
142, 797, 798, 91, 92, 93, 140, 124, 125, 126,
127, 128, 129, 130, 131, 132, 133, 134, 517, 140,
140, 894, 139, 137, 138, 6, 525, 526, 142, 825,
144, 147, 142, 147, 146, 149, 148, 146, 142, 148,
539, 837, 6, 542, 813, 841, 144, 147, 817, 126,
127, 128, 129, 130, 131, 132, 133, 134, 6, 146,
148, 148, 139, 52, 146, 54, 148, 146, 146, 148,
148, 146, 146, 148, 148, 99, 146, 887, 148, 875,
876, 877, 146, 146, 148, 148, 6, 883, 884, 6,
146, 887, 148, 142, 4, 483, 484, 4, 894, 6,
146, 146, 148, 148, 146, 146, 148, 148, 904, 905,
906, 146, 146, 148, 148, 146, 146, 148, 148, 147,
146, 917, 148, 146, 6, 148, 922, 146, 146, 148,
148, 146, 146, 148, 148, 146, 5, 148, 139, 144,
936, 7, 142, 147, 7, 148, 915, 957, 147, 7,
7, 141, 140, 140, 140, 140, 6, 96, 7, 7,
956, 549, 146, 6, 147, 141, 962, 963, 146, 668,
141, 967, 146, 141, 562, 141, 1159, 146, 6, 975,
4, 143, 992, 99, 994, 7, 996, 935, 7, 7,
986, 690, 691, 692, 693, 1005, 7, 1007, 1008, 99,
99, 7, 7, 702, 991, 12, 13, 7, 7, 1005,
4, 6, 1008, 144, 148, 1011, 148, 605, 6, 144,
7, 7, 7, 1019, 723, 4, 7, 7, 140, 140,
6, 1027, 1028, 147, 6, 6, 6, 1110, 986, 46,
47, 48, 49, 50, 51, 52, 53, 54, 55, 143,
57, 1047, 59, 60, 6, 62, 63, 64, 1241, 7,
67, 68, 142, 6, 54, 127, 7, 7, 52, 7,
7, 1019, 7, 7, 6, 146, 7, 141, 7, 7,
1298, 141, 1078, 7, 91, 92, 93, 141, 141, 1162,
4, 6, 147, 140, 7, 6, 147, 7, 1094, 7,
1096, 6, 6, 52, 6, 6, 4, 4, 4, 1105,
1328, 1107, 1330, 148, 1110, 147, 147, 6, 4, 6,
140, 1117, 710, 711, 147, 713, 1122, 715, 716, 1347,
144, 719, 720, 141, 7, 6, 59, 147, 6, 6,
1150, 148, 1152, 147, 1154, 147, 6, 6, 6, 147,
5, 1161, 4, 1163, 1150, 6, 1152, 7, 1154, 6,
1147, 7, 7, 7, 12, 13, 1162, 5, 95, 1242,
1166, 1244, 147, 147, 147, 6, 6, 144, 7, 6,
1176, 1177, 6, 4, 6, 143, 6, 1183, 776, 777,
778, 6, 6, 1189, 6, 894, 1192, 8, 46, 47,
48, 49, 50, 51, 52, 53, 54, 55, 6, 57,
6, 59, 60, 6, 62, 63, 64, 6, 5, 67,
68, 1217, 1295, 6, 6, 99, 6, 6, 6, 141,
6, 6, 1228, 6, 1244, 1231, 6, 146, 1234, 6,
6, 4, 1238, 91, 92, 93, 1242, 146, 1244, 6,
6, 146, 7, 147, 6, 1251, 144, 845, 1254, 6,
5, 7, 50, 851, 6, 6, 6, 6, 6, 147,
6, 859, 860, 861, 6, 147, 6, 865, 148, 6,
6, 147, 870, 871, 872, 147, 147, 94, 6, 97,
147, 6, 6, 6, 6, 883, 6, 6, 147, 1295,
148, 889, 6, 65, 892, 148, 1005, 148, 147, 1008,
121, 122, 123, 124, 125, 126, 127, 128, 129, 130,
131, 132, 133, 134, 912, 913, 6, 6, 139, 148,
141, 147, 6, 6, 6, 6, 6, 3, 4, 6,
836, 6, 6, 9, 10, 11, 934, 6, 14, 15,
26, 27, 28, 29, 30, 31, 32, 33, 34, 6,
6, 148, 6, 147, 6, 147, 147, 6, 147, 6,
46, 6, 6, 147, 6, 6, 147, 147, 147, 147,
978, 979, 980, 981, 6, 6, 6, 1096, 6, 6,
6, 6, 6, 69, 70, 71, 72, 73, 6, 1217,
844, 1110, 78, 3, 3, 81, 939, 359, -1, -1,
-1, -1, -1, -1, -1, -1, 1014, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
-1, 1029, -1, -1, 110, 111, 112, 113, 121, 122,
123, 124, 125, 126, 127, 128, 129, 130, 131, 132,
133, 134, 6, 1162, 130, 131, 139, -1, -1, 135,
-1, -1, -1, -1, 140, -1, -1, -1, -1, 145,
-1, 147, 148, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 3, 4, -1, -1, -1, -1, 9,
10, 11, -1, 1091, 14, 15, 16, 17, 18, 19,
20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
30, 31, 32, 33, 34, -1, 1114, 1115, -1, -1,
-1, -1, -1, -1, -1, -1, 46, -1, -1, -1,
-1, -1, -1, 1242, -1, 1244, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 69,
70, 71, 72, 73, 6, -1, -1, -1, 78, -1,
1158, 81, -1, -1, -1, -1, -1, 121, 122, 123,
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
134, -1, -1, -1, -1, 139, 1295, -1, -1, -1,
110, 111, 112, 113, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 1203, -1, -1, -1, -1,
130, 131, -1, -1, -1, 135, -1, -1, -1, -1,
140, -1, -1, -1, -1, 145, -1, -1, 148, 3,
4, 5, -1, 7, -1, 9, 10, 11, -1, -1,
14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
24, 25, 26, 27, 28, 29, 30, 31, 32, 33,
34, -1, 36, 37, 38, 39, -1, -1, 42, 121,
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
132, 133, 134, 8, 3, 4, 5, 139, -1, -1,
9, 10, 11, -1, -1, 14, 15, 16, 17, 18,
19, 20, 21, 22, 23, 24, 25, 26, 27, 28,
29, 30, 31, 32, 33, 34, -1, -1, -1, -1,
-1, 65, -1, -1, -1, -1, -1, 46, -1, -1,
104, -1, -1, -1, -1, -1, 110, 111, 112, 113,
-1, -1, -1, 117, 118, 119, 120, -1, -1, -1,
69, 70, 71, 72, 73, 6, 130, 131, -1, 78,
-1, 135, 81, 137, 138, -1, 140, -1, 142, -1,
144, 145, -1, 147, -1, -1, -1, 121, 122, 123,
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
134, 110, 111, 112, 113, 139, 121, 122, 123, 124,
125, 126, 127, 128, 129, 130, 131, 132, 133, 134,
-1, 130, 131, -1, 139, -1, 135, -1, -1, -1,
-1, 140, -1, 3, 4, 5, 145, -1, 147, 9,
10, 11, -1, -1, 14, 15, 16, 17, 18, 19,
20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
30, 31, 32, 33, 34, -1, -1, -1, -1, -1,
121, 122, 123, 124, 125, 126, 127, 128, 129, 130,
131, 132, 133, 134, -1, -1, -1, -1, 139, 69,
70, 71, 72, 73, 6, -1, -1, -1, 78, -1,
-1, 81, 46, 47, 48, 49, 50, 51, 52, 53,
54, 55, -1, 57, -1, 59, 60, -1, 62, 63,
64, -1, -1, 67, 68, -1, -1, -1, -1, -1,
110, 111, 112, 113, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 91, 92, 93,
130, 131, -1, -1, -1, 135, -1, -1, -1, -1,
140, -1, 3, 4, -1, 145, -1, 147, 9, 10,
11, -1, -1, 14, 15, 16, 17, 18, 19, 20,
21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
31, 32, 33, 34, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 148, 46, -1, 12, 13, 121,
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
132, 133, 134, -1, -1, -1, -1, 139, 69, 70,
71, 72, 73, 6, -1, -1, -1, 78, -1, -1,
81, 46, 47, 48, 49, 50, 51, 52, 53, 54,
55, -1, 57, -1, 59, 60, -1, 62, 63, 64,
-1, -1, 67, 68, -1, -1, -1, -1, -1, 110,
111, 112, 113, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 91, 92, 93, 130,
131, -1, -1, -1, 135, -1, -1, -1, -1, 140,
-1, 3, 4, -1, 145, -1, 147, 9, 10, 11,
-1, -1, 14, 15, 16, 17, 18, 19, 20, 21,
22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
32, 33, 34, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 148, 46, -1, 12, 13, 121, 122,
123, 124, 125, 126, 127, 128, 129, 130, 131, 132,
133, 134, -1, -1, -1, -1, 139, 69, 70, 71,
72, 73, 6, -1, -1, -1, 78, -1, -1, 81,
46, 47, 48, 49, 50, 51, 52, 53, 54, 55,
-1, 57, -1, 59, 60, -1, 62, 63, 64, -1,
-1, 67, 68, -1, -1, -1, -1, -1, 110, 111,
112, 113, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 91, 92, 93, 130, 131,
-1, -1, -1, 135, -1, -1, -1, -1, 140, -1,
3, 4, -1, 145, -1, 147, 9, 10, 11, -1,
-1, 14, 15, 16, 17, 18, 19, 20, 21, 22,
23, 24, 25, 26, 27, 28, 29, 30, 31, 32,
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
33, 34, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 148, 46, -1, 12, 13, 121, 122, 123,
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
134, -1, -1, -1, -1, 139, 69, 70, 71, 72,
73, 6, -1, -1, -1, 78, -1, -1, 81, 46,
47, 48, 49, 50, 51, 52, 53, 54, 55, -1,
57, -1, 59, 60, -1, 62, 63, 64, -1, -1,
67, 68, -1, 6, -1, -1, -1, 110, 111, 112,
113, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 91, 92, 93, 130, 131, -1,
-1, -1, 135, -1, -1, 6, -1, 140, -1, 3,
4, -1, 145, -1, 147, 9, 10, 11, -1, -1,
14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
24, 25, 26, 27, 28, 29, 30, 31, 32, 33,
34, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 148, 46, -1, -1, -1, 121, 122, 123, 124,
125, 126, 127, 128, 129, 130, 131, 132, 133, 134,
-1, -1, -1, -1, 139, 69, 70, 71, 72, 73,
6, -1, -1, -1, 78, -1, -1, 81, 121, 122,
123, 124, 125, 126, 127, 128, 129, 130, 131, 132,
133, 134, -1, -1, -1, -1, 139, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 110, 111, 112, 113,
121, 122, 123, 124, 125, 126, 127, 128, 129, 130,
131, 132, 133, 134, -1, -1, 130, 131, 139, -1,
-1, 135, -1, -1, 6, -1, 140, -1, 3, 4,
-1, 145, -1, 147, 9, 10, 11, -1, -1, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 46, -1, -1, -1, 121, 122, 123, 124, 125,
126, 127, 128, 129, 130, 131, 132, 133, 134, -1,
-1, -1, -1, 139, 69, 70, 71, 72, 73, 6,
-1, 3, 4, 78, -1, -1, 81, 9, 10, 11,
-1, -1, 14, 15, 16, 17, 18, 19, 20, 21,
22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
32, 33, 34, 8, -1, 110, 111, 112, 113, 121,
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
132, 133, 134, -1, -1, 130, 131, 139, -1, -1,
145, -1, 147, 9, 10, 11, -1, -1, 14, 15,
16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
26, 27, 28, 29, 30, 31, 32, 33, 34, -1,
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
36, 37, 38, 39, -1, -1, 42, -1, 110, 111,
112, 113, -1, -1, 121, 122, 123, 124, 125, 126,
127, 128, 129, 130, 131, 132, 133, 134, 130, 131,
-1, -1, 139, 135, -1, -1, -1, -1, 140, -1,
-1, 143, -1, 145, -1, 147, 121, 122, 123, 124,
125, 126, 127, 128, 129, 130, 131, 132, 133, 134,
-1, -1, -1, 8, 139, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 110, 111, 112, 113, -1, 121,
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
132, 133, 134, -1, 130, 131, -1, 139, -1, 135,
-1, -1, -1, -1, 140, 8, 3, 4, -1, 145,
-1, 147, 9, 10, 11, -1, -1, 14, 15, 16,
17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
27, 28, 29, 30, 31, 32, 33, 34, -1, -1,
-1, -1, 8, -1, 3, 4, -1, -1, -1, -1,
9, 10, 11, -1, -1, 14, 15, 16, 17, 18,
19, 20, 21, 22, 23, 24, 25, 26, 27, 28,
29, 30, 31, 32, 33, 34, 121, 122, 123, 124,
125, 126, 127, 128, 129, 130, 131, 132, 133, 134,
-1, -1, -1, -1, 139, -1, -1, -1, -1, 121,
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
132, 133, 134, 110, 111, 112, 113, 139, 121, 122,
133, 134, -1, 130, 131, -1, 139, -1, 135, -1,
-1, -1, -1, 140, -1, -1, 143, -1, 145, -1,
147, 110, 111, 112, 113, 121, 122, 123, 124, 125,
126, 127, 128, 129, 130, 131, 132, 133, 134, -1,
-1, 130, 131, 139, -1, -1, 135, -1, -1, -1,
-1, 140, -1, 3, 4, -1, 145, -1, 147, 9,
10, 11, -1, -1, 14, 15, 16, 17, 18, 19,
20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
30, 31, 32, 33, 34, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 46, 121, 122, 123,
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
134, -1, -1, -1, -1, 139, -1, -1, -1, 69,
70, 71, 72, 73, 148, -1, 3, 4, 78, -1,
-1, 81, 9, 10, 11, -1, -1, 14, 15, 16,
17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
27, 28, 29, 30, 31, 32, 33, 34, -1, -1,
110, 111, 112, 113, 121, 122, 123, 124, 125, 126,
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
130, 131, 139, -1, -1, 135, 3, 4, 5, 146,
140, 148, 9, 10, 11, 145, -1, 14, 15, 16,
17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
27, 28, 29, 30, 31, 32, 33, 34, -1, 36,
37, 38, 39, -1, -1, 42, -1, -1, -1, -1,
-1, -1, -1, 110, 111, 112, 113, 121, 122, 123,
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
134, -1, -1, 130, 131, 139, -1, -1, 135, -1,
-1, -1, 146, 140, 148, -1, -1, -1, 145, -1,
121, 122, 123, 124, 125, 126, 127, 128, 129, 130,
131, 132, 133, 134, -1, -1, 0, 1, 139, -1,
4, -1, -1, 110, 111, 112, 113, 148, 12, 13,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 130, 131, -1, -1, -1, 135, -1,
-1, 35, -1, 140, -1, -1, 40, 41, 145, 43,
44, -1, 46, 47, 48, 49, 50, 51, 52, 53,
54, 55, -1, 57, 58, 59, 60, 61, 62, 63,
64, -1, 66, 67, 68, 69, 70, 71, 72, 73,
74, -1, 76, 77, 78, 79, 80, 81, -1, -1,
84, 85, 4, -1, -1, -1, 90, 91, 92, 93,
12, 13, 96, -1, 98, -1, 100, 101, 102, 103,
104, 105, 106, 107, 108, 109, -1, -1, -1, -1,
114, 115, 116, 35, -1, -1, -1, -1, 40, 41,
-1, 43, 44, -1, 46, 47, 48, 49, 50, 51,
52, 53, 54, 55, -1, 57, 58, 59, 60, 61,
62, 63, 64, -1, 66, 67, 68, 69, 70, 71,
72, 73, 74, -1, 76, 77, 78, 79, 80, 81,
-1, -1, 84, 85, 12, 13, -1, -1, 90, 91,
92, 93, -1, -1, 96, -1, 98, -1, 100, 101,
102, 103, 104, 105, 106, 107, 108, 109, -1, -1,
-1, -1, 114, 115, 116, -1, -1, -1, 46, 47,
-1, 59, 60, -1, 62, 63, 64, -1, -1, 67,
68, 121, 122, 123, 124, 125, 126, 127, 128, 129,
130, 131, 132, 133, 134, -1, -1, -1, -1, 139,
-1, -1, -1, 91, 92, 93, 146, -1, 148, 121,
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
132, 133, 134, -1, -1, -1, -1, 139, -1, -1,
-1, -1, -1, -1, -1, -1, 148, 121, 122, 123,
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
134, -1, -1, -1, -1, 139, -1, -1, -1, -1,
-1, -1, -1, -1, 148, 121, 122, 123, 124, 125,
126, 127, 128, 129, 130, 131, 132, 133, 134, -1,
-1, -1, -1, 139, -1, -1, -1, -1, -1, -1,
-1, -1, 148, 121, 122, 123, 124, 125, 126, 127,
128, 129, 130, 131, 132, 133, 134, -1, -1, -1,
-1, 139, -1, -1, -1, -1, -1, -1, -1, -1,
148, 121, 122, 123, 124, 125, 126, 127, 128, 129,
130, 131, 132, 133, 134, -1, -1, -1, -1, 139,
-1, -1, -1, -1, -1, -1, -1, -1, 148, 121,
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
132, 133, 134, -1, -1, -1, -1, 139, -1, -1,
-1, -1, -1, -1, -1, -1, 148, 121, 122, 123,
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
134, -1, -1, -1, -1, 139, -1, -1, -1, -1,
-1, -1, -1, -1, 148, 121, 122, 123, 124, 125,
126, 127, 128, 129, 130, 131, 132, 133, 134, -1,
-1, -1, -1, 139, -1, -1, -1, -1, -1, -1,
-1, -1, 148, 121, 122, 123, 124, 125, 126, 127,
128, 129, 130, 131, 132, 133, 134, -1, -1, -1,
-1, 139, -1, -1, -1, -1, -1, -1, -1, -1,
148, 121, 122, 123, 124, 125, 126, 127, 128, 129,
130, 131, 132, 133, 134, -1, -1, -1, -1, 139,
-1, -1, -1, -1, -1, -1, -1, -1, 148, 121,
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
132, 133, 134, -1, -1, -1, -1, 139, -1, -1,
-1, -1, -1, -1, -1, -1, 148, 121, 122, 123,
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
134, -1, -1, -1, -1, 139, -1, -1, -1, -1,
-1, -1, -1, -1, 148, 121, 122, 123, 124, 125,
126, 127, 128, 129, 130, 131, 132, 133, 134, -1,
-1, -1, -1, 139, -1, -1, -1, -1, -1, -1,
-1, -1, 148, 121, 122, 123, 124, 125, 126, 127,
128, 129, 130, 131, 132, 133, 134, -1, -1, -1,
-1, 139, -1, -1, -1, -1, -1, -1, -1, -1,
148, 121, 122, 123, 124, 125, 126, 127, 128, 129,
130, 131, 132, 133, 134, -1, -1, -1, -1, 139,
-1, -1, -1, -1, -1, -1, -1, -1, 148, 121,
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
132, 133, 134, -1, -1, -1, -1, 139, -1, -1,
-1, -1, -1, -1, -1, -1, 148, 121, 122, 123,
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
134, -1, -1, -1, -1, 139, -1, -1, -1, -1,
-1, -1, -1, -1, 148, 121, 122, 123, 124, 125,
126, 127, 128, 129, 130, 131, 132, 133, 134, -1,
-1, -1, -1, 139, -1, -1, -1, -1, -1, -1,
-1, -1, 148, 121, 122, 123, 124, 125, 126, 127,
128, 129, 130, 131, 132, 133, 134, -1, -1, -1,
-1, 139, -1, -1, -1, -1, -1, -1, -1, -1,
148, 121, 122, 123, 124, 125, 126, 127, 128, 129,
130, 131, 132, 133, 134, -1, -1, -1, -1, 139,
-1, -1, -1, -1, -1, -1, -1, -1, 148, 121,
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
132, 133, 134, -1, -1, -1, -1, 139, -1, -1,
-1, -1, -1, -1, -1, -1, 148, 121, 122, 123,
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
134, -1, -1, -1, -1, 139, -1, -1, -1, -1,
-1, -1, -1, -1, 148, 121, 122, 123, 124, 125,
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
146, 121, 122, 123, 124, 125, 126, 127, 128, 129,
130, 131, 132, 133, 134, -1, -1, -1, -1, 139,
-1, -1, -1, -1, -1, -1, 146, 121, 122, 123,
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
134, -1, -1, -1, -1, 139, -1, -1, -1, -1,
-1, -1, 146, 121, 122, 123, 124, 125, 126, 127,
128, 129, 130, 131, 132, 133, 134, -1, -1, -1,
-1, 139, -1, -1, -1, -1, -1, -1, 146, 121,
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
132, 133, 134, -1, -1, -1, -1, 139, -1, -1,
-1, -1, -1, -1, 146, 121, 122, 123, 124, 125,
126, 127, 128, 129, 130, 131, 132, 133, 134, -1,
-1, -1, -1, 139, -1, -1, -1, -1, -1, -1,
146, 121, 122, 123, 124, 125, 126, 127, 128, 129,
130, 131, 132, 133, 134, -1, -1, -1, -1, 139,
-1, -1, -1, -1, -1, -1, 146, 121, 122, 123,
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
134, -1, -1, -1, -1, 139, -1, -1, -1, -1,
-1, -1, 146, 121, 122, 123, 124, 125, 126, 127,
128, 129, 130, 131, 132, 133, 134, -1, -1, -1,
-1, 139, -1, -1, -1, -1, -1, -1, 146, 121,
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
132, 133, 134, -1, -1, -1, -1, 139, -1, -1,
-1, -1, -1, -1, 146, 121, 122, 123, 124, 125,
126, 127, 128, 129, 130, 131, 132, 133, 134, -1,
-1, -1, -1, 139, -1, -1, -1, -1, -1, -1,
146, 121, 122, 123, 124, 125, 126, 127, 128, 129,
130, 131, 132, 133, 134, -1, -1, -1, -1, 139,
-1, -1, -1, -1, -1, -1, 146, 121, 122, 123,
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
134, -1, -1, -1, -1, 139, -1, -1, -1, -1,
-1, -1, 146, 121, 122, 123, 124, 125, 126, 127,
128, 129, 130, 131, 132, 133, 134, -1, -1, -1,
-1, 139, -1, -1, -1, -1, -1, -1, 146, 121,
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
132, 133, 134, -1, -1, -1, -1, 139, -1, -1,
-1, -1, -1, -1, 146, 121, 122, 123, 124, 125,
126, 127, 128, 129, 130, 131, 132, 133, 134, -1,
-1, -1, -1, 139, -1, -1, -1, -1, -1, -1,
146, 121, 122, 123, 124, 125, 126, 127, 128, 129,
130, 131, 132, 133, 134, -1, -1, -1, -1, 139,
-1, -1, -1, -1, -1, -1, 146, 121, 122, 123,
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
134, -1, -1, -1, -1, 139, -1, -1, -1, -1,
-1, -1, 146, 121, 122, 123, 124, 125, 126, 127,
128, 129, 130, 131, 132, 133, 134, -1, -1, -1,
-1, 139, -1, -1, -1, -1, -1, -1, 146, 121,
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
132, 133, 134, -1, -1, -1, -1, 139, -1, -1,
-1, -1, -1, -1, 146, 121, 122, 123, 124, 125,
126, 127, 128, 129, 130, 131, 132, 133, 134, -1,
-1, -1, -1, 139, -1, -1, -1, -1, -1, -1,
146, 121, 122, 123, 124, 125, 126, 127, 128, 129,
130, 131, 132, 133, 134, -1, -1, -1, -1, 139,
-1, -1, -1, -1, -1, -1, 146, 121, 122, 123,
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
134, -1, -1, -1, -1, 139, -1, -1, -1, -1,
-1, -1, 146, 121, 122, 123, 124, 125, 126, 127,
128, 129, 130, 131, 132, 133, 134, -1, -1, -1,
-1, 139, -1, -1, -1, -1, -1, -1, 146, 121,
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
132, 133, 134, -1, -1, -1, -1, 139, -1, -1,
-1, -1, -1, -1, 146, 121, 122, 123, 124, 125,
126, 127, 128, 129, 130, 131, 132, 133, 134, -1,
-1, -1, -1, 139, -1, -1, -1, -1, -1, -1,
146, 121, 122, 123, 124, 125, 126, 127, 128, 129,
130, 131, 132, 133, 134, -1, -1, -1, -1, 139,
-1, -1, -1, -1, -1, -1, 146, 121, 122, 123,
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
134, -1, -1, -1, -1, 139, -1, -1, -1, -1,
-1, -1, 146, 121, 122, 123, 124, 125, 126, 127,
128, 129, 130, 131, 132, 133, 134, -1, -1, -1,
-1, 139, -1, -1, -1, 143, 121, 122, 123, 124,
125, 126, 127, 128, 129, 130, 131, 132, 133, 134,
-1, -1, -1, -1, 139, -1, -1, -1, 143, 121,
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
132, 133, 134, -1, -1, -1, -1, 139, -1, -1,
-1, 143, 121, 122, 123, 124, 125, 126, 127, 128,
129, 130, 131, 132, 133, 134, -1, -1, -1, -1,
139, -1, -1, -1, 143, 121, 122, 123, 124, 125,
126, 127, 128, 129, 130, 131, 132, 133, 134, -1,
-1, -1, -1, 139, -1, -1, -1, 143, 121, 122,
123, 124, 125, 126, 127, 128, 129, 130, 131, 132,
133, 134, -1, -1, -1, -1, 139, -1, -1, -1,
143, 121, 122, 123, 124, 125, 126, 127, 128, 129,
130, 131, 132, 133, 134, -1, -1, -1, -1, 139,
-1, -1, -1, 143, 121, 122, 123, 124, 125, 126,
127, 128, 129, 130, 131, 132, 133, 134, -1, -1,
-1, -1, 139, -1, -1, -1, 143, 121, 122, 123,
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
134, -1, -1, -1, -1, 139, -1, -1, -1, 143,
121, 122, 123, 124, 125, 126, 127, 128, 129, 130,
131, 132, 133, 134, -1, -1, -1, -1, 139, -1,
-1, -1, 143, 121, 122, 123, 124, 125, 126, 127,
128, 129, 130, 131, 132, 133, 134, -1, -1, -1,
-1, 139, -1, -1, -1, 143, 121, 122, 123, 124,
125, 126, 127, 128, 129, 130, 131, 132, 133, 134,
-1, -1, -1, -1, 139, -1, -1, -1, 143, 121,
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
132, 133, 134, -1, -1, -1, -1, 139, -1, -1,
-1, 143, 121, 122, 123, 124, 125, 126, 127, 128,
129, 130, 131, 132, 133, 134, -1, -1, -1, -1,
139, -1, -1, -1, 143, 121, 122, 123, 124, 125,
126, 127, 128, 129, 130, 131, 132, 133, 134, -1,
-1, -1, -1, 139, -1, -1, -1, 143, 121, 122,
123, 124, 125, 126, 127, 128, 129, 130, 131, 132,
133, 134, -1, -1, -1, -1, 139, -1, -1, -1,
143, 121, 122, 123, 124, 125, 126, 127, 128, 129,
130, 131, 132, 133, 134, -1, -1, -1, -1, 139,
-1, -1, -1, 143, 121, 122, 123, 124, 125, 126,
127, 128, 129, 130, 131, 132, 133, 134, -1, -1,
-1, -1, 139, -1, -1, -1, 143, 121, 122, 123,
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
134, -1, -1, -1, -1, 139, -1, -1, -1, 143,
121, 122, 123, 124, 125, 126, 127, 128, 129, 130,
131, 132, 133, 134, -1, -1, -1, -1, 139, -1,
-1, -1, 143, 121, 122, 123, 124, 125, 126, 127,
128, 129, 130, 131, 132, 133, 134, -1, -1, -1,
-1, 139, -1, -1, -1, 143, 121, 122, 123, 124,
125, 126, 127, 128, 129, 130, 131, 132, 133, 134,
-1, -1, -1, -1, 139, -1, -1, -1, 143, 121,
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
132, 133, 134, -1, -1, -1, -1, 139, -1, -1,
-1, 143, 121, 122, 123, 124, 125, 126, 127, 128,
129, 130, 131, 132, 133, 134, -1, -1, -1, -1,
139, -1, -1, -1, 143, 121, 122, 123, 124, 125,
126, 127, 128, 129, 130, 131, 132, 133, 134, -1,
-1, -1, -1, 139, -1, -1, -1, 143, 121, 122,
123, 124, 125, 126, 127, 128, 129, 130, 131, 132,
133, 134, -1, -1, -1, -1, 139, -1, -1, -1,
143, 121, 122, 123, 124, 125, 126, 127, 128, 129,
130, 131, 132, 133, 134, -1, -1, -1, -1, 139,
-1, -1, -1, 143, 121, 122, 123, 124, 125, 126,
127, 128, 129, 130, 131, 132, 133, 134, -1, -1,
-1, -1, 139, -1, -1, -1, 143, 121, 122, 123,
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
134, -1, -1, -1, -1, 139, -1, -1, -1, 143,
121, 122, 123, 124, 125, 126, 127, 128, 129, 130,
131, 132, 133, 134, -1, -1, -1, -1, 139, -1,
-1, -1, 143, 121, 122, 123, 124, 125, 126, 127,
128, 129, 130, 131, 132, 133, 134, -1, -1, -1,
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
121, 122, 123, 124, 125, 126, 127, 128, 129, 130,
131, 132, 133, 134, -1, -1, -1, -1, 139, -1,
141, 121, 122, 123, 124, 125, 126, 127, 128, 129,
130, 131, 132, 133, 134, -1, -1, -1, -1, 139,
-1, 141, 121, 122, 123, 124, 125, 126, 127, 128,
129, 130, 131, 132, 133, 134, -1, -1, -1, -1,
139, -1, 141, 121, 122, 123, 124, 125, 126, 127,
128, 129, 130, 131, 132, 133, 134, -1, -1, -1,
-1, 139, -1, 141, 121, 122, 123, 124, 125, 126,
127, 128, 129, 130, 131, 132, 133, 134, -1, -1,
-1, -1, 139, -1, 141, 121, 122, 123, 124, 125,
126, 127, 128, 129, 130, 131, 132, 133, 134, -1,
-1, -1, -1, 139, -1, 141, 121, 122, 123, 124,
125, 126, 127, 128, 129, 130, 131, 132, 133, 134,
-1, -1, -1, -1, 139, -1, 141, 121, 122, 123,
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
134, -1, -1, -1, -1, 139, -1, 141, 121, 122,
123, 124, 125, 126, 127, 128, 129, 130, 131, 132,
133, 134, -1, -1, -1, -1, 139, -1, 141, 121,
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
121, 122, 123, 124, 125, 126, 127, 128, 129, 130,
131, 132, 133, 134, -1, -1, -1, -1, 139, -1,
141, 121, 122, 123, 124, 125, 126, 127, 128, 129,
130, 131, 132, 133, 134, -1, -1, -1, -1, 139,
-1, 141, 121, 122, 123, 124, 125, 126, 127, 128,
129, 130, 131, 132, 133, 134, -1, -1, -1, -1,
139, -1, 141, 121, 122, 123, 124, 125, 126, 127,
128, 129, 130, 131, 132, 133, 134, -1, -1, -1,
-1, 139, -1, 141, 121, 122, 123, 124, 125, 126,
127, 128, 129, 130, 131, 132, 133, 134, -1, -1,
-1, -1, 139, -1, 141, 121, 122, 123, 124, 125,
126, 127, 128, 129, 130, 131, 132, 133, 134, -1,
-1, -1, -1, 139, -1, 141, 121, 122, 123, 124,
125, 126, 127, 128, 129, 130, 131, 132, 133, 134,
-1, -1, -1, -1, 139, -1, 141, 121, 122, 123,
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
134, -1, -1, -1, -1, 139, -1, 141, 121, 122,
123, 124, 125, 126, 127, 128, 129, 130, 131, 132,
133, 134, -1, -1, -1, -1, 139, -1, 141, 121,
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
121, 122, 123, 124, 125, 126, 127, 128, 129, 130,
131, 132, 133, 134, -1, -1, -1, -1, 139, -1,
141, 121, 122, 123, 124, 125, 126, 127, 128, 129,
130, 131, 132, 133, 134, -1, -1, -1, -1, 139,
-1, 141, 121, 122, 123, 124, 125, 126, 127, 128,
129, 130, 131, 132, 133, 134, -1, -1, -1, -1,
139, -1, 141, 121, 122, 123, 124, 125, 126, 127,
128, 129, 130, 131, 132, 133, 134, -1, -1, -1,
-1, 139, -1, 141, 121, 122, 123, 124, 125, 126,
127, 128, 129, 130, 131, 132, 133, 134, -1, -1,
-1, -1, 139, -1, 141, 121, 122, 123, 124, 125,
126, 127, 128, 129, 130, 131, 132, 133, 134, -1,
-1, -1, -1, 139, -1, 141, 121, 122, 123, 124,
125, 126, 127, 128, 129, 130, 131, 132, 133, 134,
-1, -1, -1, -1, 139, -1, 141, 121, 122, 123,
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
134, -1, -1, -1, -1, 139, -1, 141, 121, 122,
123, 124, 125, 126, 127, 128, 129, 130, 131, 132,
133, 134, -1, -1, -1, -1, 139, -1, 141, 121,
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
121, 122, 123, 124, 125, 126, 127, 128, 129, 130,
131, 132, 133, 134, -1, -1, -1, -1, 139, -1,
141, 121, 122, 123, 124, 125, 126, 127, 128, 129,
130, 131, 132, 133, 134, -1, -1, -1, -1, 139,
-1, 141, 121, 122, 123, 124, 125, 126, 127, 128,
129, 130, 131, 132, 133, 134, -1, -1, -1, -1,
139, -1, 141, 121, 122, 123, 124, 125, 126, 127,
128, 129, 130, 131, 132, 133, 134, -1, -1, -1,
-1, 139, -1, 141, 121, 122, 123, 124, 125, 126,
127, 128, 129, 130, 131, 132, 133, 134, -1, -1,
-1, -1, 139, -1, 141, 121, 122, 123, 124, 125,
126, 127, 128, 129, 130, 131, 132, 133, 134, -1,
-1, -1, -1, 139, -1, 141, 121, 122, 123, 124,
125, 126, 127, 128, 129, 130, 131, 132, 133, 134,
-1, -1, -1, -1, 139, -1, 141, 121, 122, 123,
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
134, -1, -1, -1, -1, 139, -1, 141, 121, 122,
123, 124, 125, 126, 127, 128, 129, 130, 131, 132,
133, 134, -1, -1, -1, -1, 139, -1, 141, 121,
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
132, 133, 134, -1, -1, -1, -1, 139, -1, 141,
121, 122, 123, 124, 125, 126, 127, 128, 129, 130,
131, 132, 133, 134, -1, -1, -1, -1, 139, -1,
141, 121, 122, 123, 124, 125, 126, 127, 128, 129,
130, 131, 132, 133, 134, -1, -1, -1, -1, 139,
-1, 141, 121, 122, 123, 124, 125, 126, 127, 128,
129, 130, 131, 132, 133, 134, -1, -1, -1, -1,
139, -1, 141, 121, 122, 123, 124, 125, 126, 127,
128, 129, 130, 131, 132, 133, 134, -1, -1, -1,
-1, 139, -1, 141, 121, 122, 123, 124, 125, 126,
127, 128, 129, 130, 131, 132, 133, 134, -1, -1,
-1, -1, 139, -1, 141, 121, 122, 123, 124, 125,
126, 127, 128, 129, 130, 131, 132, 133, 134, -1,
-1, -1, -1, 139, -1, 141, 121, 122, 123, 124,
125, 126, 127, 128, 129, 130, 131, 132, 133, 134,
-1, -1, -1, -1, 139, -1, 141, 121, 122, 123,
124, 125, 126, 127, 128, 129, 130, 131, 132, 133,
134, -1, -1, -1, -1, 139, -1, 141, 121, 122,
123, 124, 125, 126, 127, 128, 129, 130, 131, 132,
133, 134, -1, -1, -1, -1, 139, -1, 141, 121,
122, 123, 124, 125, 126, 127, 128, 129, 130, 131,
132, 133, 134, -1, -1, -1, -1, 139, -1, 141,
121, 122, 123, 124, 125, 126, 127, 128, 129, 130,
131, 132, 133, 134, -1, -1, -1, -1, 139, -1,
141, 121, 122, 123, 124, 125, 126, 127, 128, 129,
130, 131, 132, 133, 134, -1, -1, -1, -1, 139,
-1, 141
/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
symbol of state STATE-NUM. */
static const yytype_uint8 yystos[] =
{
40, 41, 43, 44, 46, 47, 48, 49, 50, 51,
52, 53, 54, 55, 57, 58, 59, 60, 61, 62,
63, 64, 66, 67, 68, 69, 70, 71, 72, 73,
74, 76, 77, 78, 79, 80, 81, 84, 85, 90,
91, 92, 93, 96, 98, 100, 101, 102, 103, 104,
105, 106, 107, 108, 109, 114, 115, 116, 153, 155,
156, 174, 178, 183, 186, 187, 188, 189, 190, 191,
192, 212, 213, 214, 215, 3, 4, 5, 7, 9,
10, 11, 14, 15, 16, 17, 18, 19, 20, 21,
22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
32, 33, 34, 36, 37, 38, 39, 42, 104, 110,
111, 112, 113, 117, 118, 119, 120, 130, 131, 135,
137, 138, 140, 142, 144, 145, 147, 172, 173, 216,
217, 229, 13, 52, 140, 6, 147, 6, 6, 6,
140, 147, 140, 140, 75, 140, 147, 140, 140, 75,
147, 140, 140, 56, 52, 52, 52, 52, 49, 52,
54, 54, 46, 49, 52, 54, 49, 52, 54, 140,
49, 140, 147, 130, 131, 140, 147, 218, 219, 218,
147, 46, 49, 52, 147, 218, 4, 50, 59, 52,
52, 49, 4, 104, 147, 4, 6, 49, 4, 4,
4, 140, 140, 140, 4, 147, 225, 4, 140, 140,
6, 142, 4, 4, 5, 147, 5, 147, 147, 140,
140, 4, 142, 144, 149, 173, 147, 5, 229, 140,
142, 140, 142, 140, 142, 140, 142, 140, 142, 140,
142, 140, 142, 140, 142, 140, 142, 140, 142, 140,
142, 140, 142, 140, 142, 140, 142, 140, 142, 140,
142, 140, 142, 140, 142, 140, 142, 140, 142, 140,
142, 140, 140, 140, 140, 7, 140, 4, 216, 216,
216, 216, 143, 147, 216, 4, 96, 97, 4, 4,
183, 184, 185, 216, 6, 6, 121, 122, 123, 124,
125, 126, 127, 128, 129, 130, 131, 132, 133, 134,
139, 6, 6, 216, 5, 216, 216, 4, 46, 131,
183, 192, 216, 223, 224, 216, 216, 140, 216, 224,
216, 216, 140, 224, 216, 216, 131, 147, 216, 221,
223, 140, 147, 140, 140, 5, 221, 222, 222, 222,
140, 179, 180, 181, 182, 140, 140, 140, 4, 221,
5, 218, 218, 218, 216, 216, 130, 131, 147, 147,
218, 147, 147, 147, 130, 131, 140, 185, 218, 147,
140, 147, 140, 140, 222, 221, 140, 4, 6, 142,
142, 185, 6, 147, 142, 142, 6, 216, 216, 216,
144, 216, 147, 99, 216, 216, 216, 6, 6, 185,
6, 185, 221, 4, 228, 229, 228, 142, 216, 4,
147, 157, 6, 216, 216, 216, 216, 216, 216, 216,
216, 216, 216, 216, 216, 216, 216, 216, 216, 216,
216, 216, 216, 216, 216, 216, 216, 216, 216, 216,
216, 216, 216, 216, 216, 216, 216, 216, 216, 216,
216, 216, 216, 216, 216, 228, 228, 228, 228, 216,
5, 142, 141, 7, 120, 224, 143, 7, 172, 173,
144, 7, 142, 148, 46, 49, 52, 54, 178, 6,
216, 216, 216, 216, 216, 6, 141, 146, 146, 141,
142, 147, 216, 223, 8, 132, 146, 148, 141, 141,
216, 141, 148, 141, 141, 216, 148, 141, 141, 147,
148, 224, 132, 7, 216, 216, 216, 216, 7, 7,
210, 210, 216, 140, 140, 140, 140, 216, 216, 216,
141, 6, 146, 146, 146, 146, 218, 218, 184, 184,
146, 216, 216, 216, 216, 196, 146, 185, 216, 216,
216, 216, 7, 211, 7, 216, 6, 216, 216, 148,
224, 216, 216, 141, 141, 141, 96, 146, 185, 147,
216, 143, 173, 216, 4, 86, 87, 88, 89, 148,
160, 164, 167, 169, 170, 141, 143, 141, 143, 141,
143, 141, 143, 141, 143, 141, 143, 141, 143, 141,
143, 141, 143, 141, 143, 141, 143, 146, 146, 141,
143, 141, 143, 141, 143, 141, 143, 141, 143, 141,
143, 146, 146, 146, 146, 146, 146, 141, 146, 146,
141, 141, 6, 146, 216, 221, 221, 148, 7, 144,
172, 173, 229, 216, 6, 4, 4, 147, 226, 143,
147, 147, 147, 147, 8, 6, 127, 154, 224, 216,
7, 143, 147, 216, 216, 216, 223, 216, 223, 99,
7, 7, 141, 7, 99, 7, 7, 141, 99, 7,
7, 224, 148, 147, 216, 141, 148, 141, 141, 216,
221, 4, 209, 6, 141, 175, 216, 229, 175, 175,
175, 141, 141, 141, 144, 221, 218, 216, 216, 148,
148, 216, 146, 146, 146, 76, 82, 83, 206, 207,
218, 148, 193, 141, 148, 141, 141, 216, 6, 216,
141, 143, 143, 148, 143, 143, 7, 7, 7, 144,
216, 148, 216, 216, 7, 144, 221, 216, 4, 7,
7, 143, 144, 173, 228, 148, 161, 140, 140, 147,
171, 6, 216, 216, 216, 216, 216, 216, 216, 216,
224, 228, 216, 143, 6, 6, 143, 4, 96, 97,
216, 6, 6, 6, 7, 142, 225, 227, 6, 224,
224, 224, 224, 216, 127, 228, 141, 146, 218, 224,
148, 8, 52, 221, 221, 7, 221, 52, 54, 221,
221, 7, 54, 221, 221, 148, 224, 6, 7, 7,
7, 7, 65, 208, 6, 7, 141, 141, 141, 141,
7, 7, 7, 4, 146, 146, 146, 146, 148, 218,
218, 218, 6, 147, 140, 148, 207, 146, 206, 7,
6, 7, 7, 6, 147, 6, 6, 52, 6, 6,
221, 221, 221, 4, 146, 8, 8, 141, 4, 4,
148, 143, 147, 147, 6, 4, 6, 140, 216, 216,
220, 221, 147, 141, 143, 141, 143, 141, 143, 141,
143, 141, 141, 141, 172, 7, 172, 173, 144, 7,
6, 225, 216, 146, 148, 148, 148, 148, 148, 6,
6, 154, 216, 6, 148, 216, 147, 59, 177, 177,
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
148, 5, 221, 221, 221, 4, 6, 221, 7, 7,
7, 7, 221, 221, 221, 6, 7, 5, 216, 216,
216, 147, 146, 148, 146, 148, 146, 148, 216, 221,
216, 216, 218, 148, 5, 147, 221, 147, 147, 221,
224, 147, 6, 6, 95, 216, 216, 216, 6, 7,
6, 144, 221, 221, 173, 158, 216, 146, 146, 146,
148, 159, 216, 221, 229, 216, 6, 4, 226, 6,
143, 225, 6, 6, 6, 6, 228, 146, 143, 216,
218, 6, 6, 6, 216, 216, 6, 216, 5, 6,
6, 99, 176, 216, 6, 221, 221, 221, 221, 6,
4, 6, 6, 216, 229, 141, 148, 141, 146, 148,
184, 218, 6, 197, 218, 6, 198, 218, 6, 199,
148, 146, 141, 148, 146, 6, 131, 218, 6, 218,
218, 6, 148, 216, 221, 146, 148, 8, 148, 141,
147, 216, 229, 4, 146, 146, 141, 146, 216, 216,
221, 147, 146, 148, 6, 6, 6, 7, 6, 144,
6, 216, 148, 148, 148, 148, 5, 50, 6, 6,
6, 6, 6, 147, 6, 6, 6, 147, 216, 148,
146, 147, 146, 147, 146, 147, 6, 221, 7, 147,
216, 146, 146, 146, 6, 148, 94, 216, 216, 224,
6, 6, 221, 221, 162, 216, 146, 146, 220, 216,
6, 225, 97, 146, 6, 6, 6, 6, 6, 147,
220, 184, 146, 148, 216, 218, 206, 216, 218, 206,
216, 218, 206, 146, 148, 221, 185, 148, 218, 224,
218, 216, 148, 148, 148, 148, 148, 147, 216, 216,
148, 6, 216, 216, 148, 148, 216, 148, 146, 148,
148, 146, 148, 148, 146, 148, 221, 6, 65, 148,
194, 147, 146, 148, 146, 6, 6, 6, 6, 159,
141, 146, 6, 147, 146, 148, 6, 148, 6, 200,
216, 6, 6, 201, 216, 6, 6, 202, 216, 6,
148, 216, 206, 185, 224, 6, 218, 224, 148, 165,
216, 220, 216, 147, 148, 147, 148, 147, 148, 6,
6, 148, 148, 195, 148, 146, 148, 6, 147, 141,
148, 148, 206, 6, 203, 206, 6, 204, 206, 6,
205, 206, 6, 224, 6, 163, 228, 168, 147, 6,
148, 147, 148, 147, 148, 147, 148, 148, 146, 148,
147, 220, 6, 206, 6, 206, 6, 206, 6, 228,
6, 166, 228, 148, 148, 148, 148, 146, 148, 6,
6, 6, 6, 228, 6
#define yyerrok (yyerrstatus = 0)
#define yyclearin (yychar = YYEMPTY)
#define YYEMPTY (-2)
#define YYEOF 0
#define YYACCEPT goto yyacceptlab
#define YYABORT goto yyabortlab
#define YYERROR goto yyerrorlab
/* Like YYERROR except do call yyerror. This remains here temporarily
to ease the transition to the new meaning of YYERROR, for GCC.
Once GCC version 2 has supplanted version 1, this can go. */
#define YYRECOVERING() (!!yyerrstatus)
#define YYBACKUP(Token, Value) \
do \
if (yychar == YYEMPTY && yylen == 1) \
{ \
yychar = (Token); \
yylval = (Value); \
yytoken = YYTRANSLATE (yychar); \
YYPOPSTACK (1); \
goto yybackup; \
} \
else \
{ \
/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
If N is 0, then set CURRENT to the empty location which ends
the previous symbol: RHS[0] (always defined). */
#define YYRHSLOC(Rhs, K) ((Rhs)[K])
#ifndef YYLLOC_DEFAULT
{ \
(Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
(Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
(Current).last_line = YYRHSLOC (Rhs, N).last_line; \
(Current).last_column = YYRHSLOC (Rhs, N).last_column; \
} \
else \
{ \
(Current).first_line = (Current).last_line = \
YYRHSLOC (Rhs, 0).last_line; \
(Current).first_column = (Current).last_column = \
YYRHSLOC (Rhs, 0).last_column; \
} \
/* YY_LOCATION_PRINT -- Print the location on the stream.
This macro was not mandated originally: define only if we know
we won't break user code: when these are the locations we know. */
#ifndef YY_LOCATION_PRINT
# if defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL
# define YY_LOCATION_PRINT(File, Loc) \
fprintf (File, "%d.%d-%d.%d", \
(Loc).first_line, (Loc).first_column, \
(Loc).last_line, (Loc).last_column)
# else
# define YY_LOCATION_PRINT(File, Loc) ((void) 0)
# endif
#endif
/* YYLEX -- calling `yylex' with the right arguments. */
/* Enable debugging if requested. */
#if YYDEBUG
# ifndef YYFPRINTF
# include <stdio.h> /* INFRINGES ON USER NAME SPACE */
# define YYFPRINTF fprintf
# endif
# define YYDPRINTF(Args) \
do { \
if (yydebug) \
YYFPRINTF Args; \
# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
do { \
if (yydebug) \
{ \
YYFPRINTF (stderr, "%s ", Title); \
yy_symbol_print (stderr, \
Type, Value); \
YYFPRINTF (stderr, "\n"); \
} \
} while (YYID (0))
/*--------------------------------.
| Print this symbol on YYOUTPUT. |
`--------------------------------*/
/*ARGSUSED*/
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static void
yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
#else
static void
yy_symbol_value_print (yyoutput, yytype, yyvaluep)
FILE *yyoutput;
int yytype;
YYSTYPE const * const yyvaluep;
{
if (!yyvaluep)
return;
# ifdef YYPRINT
if (yytype < YYNTOKENS)
YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
# else
YYUSE (yyoutput);
# endif
switch (yytype)
{
default:
}
}
/*--------------------------------.
| Print this symbol on YYOUTPUT. |
`--------------------------------*/
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static void
yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
#else
static void
yy_symbol_print (yyoutput, yytype, yyvaluep)
FILE *yyoutput;
int yytype;
YYSTYPE const * const yyvaluep;
#endif
{
if (yytype < YYNTOKENS)
YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
else
YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
yy_symbol_value_print (yyoutput, yytype, yyvaluep);
YYFPRINTF (yyoutput, ")");
}
/*------------------------------------------------------------------.
| yy_stack_print -- Print the state stack from its BOTTOM up to its |
| TOP (included). |
`------------------------------------------------------------------*/
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static void
yy_stack_print (yytype_int16 *bottom, yytype_int16 *top)
#else
static void
yy_stack_print (bottom, top)
yytype_int16 *bottom;
yytype_int16 *top;
{
YYFPRINTF (stderr, "Stack now");
for (; bottom <= top; ++bottom)
YYFPRINTF (stderr, " %d", *bottom);
YYFPRINTF (stderr, "\n");
}
# define YY_STACK_PRINT(Bottom, Top) \
do { \
if (yydebug) \
yy_stack_print ((Bottom), (Top)); \
/*------------------------------------------------.
| Report that the YYRULE is going to be reduced. |
`------------------------------------------------*/
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static void
yy_reduce_print (YYSTYPE *yyvsp, int yyrule)
#else
static void
yy_reduce_print (yyvsp, yyrule)
YYSTYPE *yyvsp;
int yyrule;
{
int yynrhs = yyr2[yyrule];
int yyi;
unsigned long int yylno = yyrline[yyrule];
YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
/* The symbols being reduced. */
for (yyi = 0; yyi < yynrhs; yyi++)
{
fprintf (stderr, " $%d = ", yyi + 1);
yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi],
/* Nonzero means print parse trace. It is left uninitialized so that
multiple parsers can coexist. */
int yydebug;
#else /* !YYDEBUG */
# define YYDPRINTF(Args)
# define YY_SYMBOL_PRINT(Title, Type, Value, Location)
# define YY_STACK_PRINT(Bottom, Top)
# define YY_REDUCE_PRINT(Rule)
#endif /* !YYDEBUG */
/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
if the built-in stack extension method is used).
Do not make this value too large; the results are undefined if
YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
evaluated with infinite-precision integer arithmetic. */
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
#if YYERROR_VERBOSE
# ifndef yystrlen
# if defined __GLIBC__ && defined _STRING_H
# define yystrlen strlen
# else
/* Return the length of YYSTR. */
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static YYSIZE_T
yystrlen (const char *yystr)
#else
static YYSIZE_T
yystrlen (yystr)
const char *yystr;
#endif
{
YYSIZE_T yylen;
for (yylen = 0; yystr[yylen]; yylen++)
continue;
return yylen;
}
# endif
# endif
# ifndef yystpcpy
# if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
# define yystpcpy stpcpy
# else
/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
YYDEST. */
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static char *
yystpcpy (char *yydest, const char *yysrc)
#else
static char *
yystpcpy (yydest, yysrc)
char *yydest;
const char *yysrc;
#endif
while ((*yyd++ = *yys++) != '\0')
continue;
return yyd - 1;
# endif
# endif
# ifndef yytnamerr
/* Copy to YYRES the contents of YYSTR after stripping away unnecessary
quotes and backslashes, so that it's suitable for yyerror. The
heuristic is that double-quoting is unnecessary unless the string
contains an apostrophe, a comma, or backslash (other than
backslash-backslash). YYSTR is taken from yytname. If YYRES is
null, do not copy; instead, return the length of what the result
would have been. */
static YYSIZE_T
yytnamerr (char *yyres, const char *yystr)
{
if (*yystr == '"')
{
YYSIZE_T yyn = 0;
char const *yyp = yystr;
for (;;)
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
switch (*++yyp)
{
case '\'':
case ',':
goto do_not_strip_quotes;
case '\\':
if (*++yyp != '\\')
goto do_not_strip_quotes;
/* Fall through. */
default:
if (yyres)
yyres[yyn] = *yyp;
yyn++;
break;
case '"':
if (yyres)
yyres[yyn] = '\0';
return yyn;
}
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
# endif
/* Copy into YYRESULT an error message about the unexpected token
YYCHAR while in state YYSTATE. Return the number of bytes copied,
including the terminating null byte. If YYRESULT is null, do not
copy anything; just return the number of bytes that would be
copied. As a special case, return 0 if an ordinary "syntax error"
message will do. Return YYSIZE_MAXIMUM if overflow occurs during
size calculation. */
static YYSIZE_T
yysyntax_error (char *yyresult, int yystate, int yychar)
{
int yyn = yypact[yystate];
if (! (YYPACT_NINF < yyn && yyn <= YYLAST))
return 0;
else
{
int yytype = YYTRANSLATE (yychar);
YYSIZE_T yysize0 = yytnamerr (0, yytname[yytype]);
YYSIZE_T yysize = yysize0;
YYSIZE_T yysize1;
int yysize_overflow = 0;
enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
int yyx;
# if 0
/* This is so xgettext sees the translatable formats that are
YY_("syntax error, unexpected %s");
YY_("syntax error, unexpected %s, expecting %s");
YY_("syntax error, unexpected %s, expecting %s or %s");
YY_("syntax error, unexpected %s, expecting %s or %s or %s");
YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s");
# endif
char *yyfmt;
char const *yyf;
static char const yyunexpected[] = "syntax error, unexpected %s";
static char const yyexpecting[] = ", expecting %s";
static char const yyor[] = " or %s";
char yyformat[sizeof yyunexpected
+ sizeof yyexpecting - 1
+ ((YYERROR_VERBOSE_ARGS_MAXIMUM - 2)
* (sizeof yyor - 1))];
char const *yyprefix = yyexpecting;
/* Start YYX at -YYN if negative to avoid negative indexes in
int yyxbegin = yyn < 0 ? -yyn : 0;
/* Stay within bounds of both yycheck and yytname. */
int yychecklim = YYLAST - yyn + 1;
int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
int yycount = 1;
yyarg[0] = yytname[yytype];
yyfmt = yystpcpy (yyformat, yyunexpected);
for (yyx = yyxbegin; yyx < yyxend; ++yyx)
if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR)
{
if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
{
yycount = 1;
yysize = yysize0;
yyformat[sizeof yyunexpected - 1] = '\0';
break;
}
yyarg[yycount++] = yytname[yyx];
yysize1 = yysize + yytnamerr (0, yytname[yyx]);
yysize_overflow |= (yysize1 < yysize);
yysize = yysize1;
yyfmt = yystpcpy (yyfmt, yyprefix);
yyprefix = yyor;
}
yyf = YY_(yyformat);
yysize1 = yysize + yystrlen (yyf);
yysize_overflow |= (yysize1 < yysize);
yysize = yysize1;
if (yysize_overflow)
{
/* Avoid sprintf, as that infringes on the user's name space.
Don't have undefined behavior even if the translation
produced a string with the wrong number of "%s"s. */
char *yyp = yyresult;
int yyi = 0;
while ((*yyp = *yyf) != '\0')
{
if (*yyp == '%' && yyf[1] == 's' && yyi < yycount)
{
yyp += yytnamerr (yyp, yyarg[yyi++]);
yyf += 2;
}
else
{
yyp++;
yyf++;
}
}
}
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
return yysize;
}
}
#endif /* YYERROR_VERBOSE */
/*-----------------------------------------------.
| Release the memory associated to this symbol. |
`-----------------------------------------------*/
/*ARGSUSED*/
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static void
yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep)
#else
static void
yydestruct (yymsg, yytype, yyvaluep)
const char *yymsg;
int yytype;
YYSTYPE *yyvaluep;
{
YYUSE (yyvaluep);
if (!yymsg)
yymsg = "Deleting";
YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
switch (yytype)
{
default:

Christophe Geuzaine
committed
#ifdef YYPARSE_PARAM
#if defined __STDC__ || defined __cplusplus
int yyparse (void *YYPARSE_PARAM);
#else /* ! YYPARSE_PARAM */
#if defined __STDC__ || defined __cplusplus
int yyparse (void);
#else
int yyparse ();
/* The semantic value of the look-ahead symbol. */
YYSTYPE yylval;
/* Number of syntax errors so far. */
int yynerrs;
/*----------.
| yyparse. |
`----------*/
#ifdef YYPARSE_PARAM
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
int
yyparse (void *YYPARSE_PARAM)
#else /* ! YYPARSE_PARAM */
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
int
yyparse (void)
#else
int
yyparse ()
#endif
{
int yystate;
int yyn;
int yyresult;
/* Number of tokens to shift before error messages enabled. */
int yyerrstatus;
/* Look-ahead token as an internal (translated) token number. */
int yytoken = 0;
#if YYERROR_VERBOSE
/* Buffer for error messages, and its allocated size. */
char yymsgbuf[128];
char *yymsg = yymsgbuf;
YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
/* Three stacks and their tools:
`yyss': related to states,
`yyvs': related to semantic values,
`yyls': related to locations.
Refer to the stacks thru separate pointers, to allow yyoverflow
to reallocate them elsewhere. */
/* The state stack. */
yytype_int16 yyssa[YYINITDEPTH];
yytype_int16 *yyss = yyssa;
yytype_int16 *yyssp;
/* The semantic value stack. */
YYSTYPE yyvsa[YYINITDEPTH];
YYSTYPE *yyvs = yyvsa;
YYSTYPE *yyvsp;
#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N))
YYSIZE_T yystacksize = YYINITDEPTH;
/* The variables used to return semantic value and location from the
action routines. */
YYSTYPE yyval;
/* The number of symbols on the RHS of the reduced rule.
Keep to zero when no symbol should be popped. */
int yylen = 0;
YYDPRINTF ((stderr, "Starting parse\n"));
yystate = 0;
yyerrstatus = 0;
yynerrs = 0;
/* Initialize stack pointers.
Waste one element of value and location stack
so that they stay on the same level as the state stack.
The wasted elements are never initialized. */
yyvsp = yyvs;
/*------------------------------------------------------------.
| yynewstate -- Push a new state, which is found in yystate. |
`------------------------------------------------------------*/
yynewstate:
/* In all cases, when you get here, the value and location stacks
have just been pushed. So pushing a state here evens the stacks. */
yyssp++;
/* Get the current used size of the three stacks, in elements. */
#ifdef yyoverflow
/* Give user a chance to reallocate the stack. Use copies of
these so that the &'s don't force the real ones into
memory. */
YYSTYPE *yyvs1 = yyvs;
yytype_int16 *yyss1 = yyss;
/* Each stack pointer address is followed by the size of the
data in use in that stack, in bytes. This used to be a
conditional around just the two extra args, but that might
be undefined if yyoverflow is a macro. */
yyoverflow (YY_("memory exhausted"),
&yyss1, yysize * sizeof (*yyssp),
&yyvs1, yysize * sizeof (*yyvsp),
#else /* no yyoverflow */
/* Extend the stack our own way. */
yystacksize *= 2;
yytype_int16 *yyss1 = yyss;
union yyalloc *yyptr =
(union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
if (! yyptr)
goto yyexhaustedlab;
YYSTACK_RELOCATE (yyss);
YYSTACK_RELOCATE (yyvs);
#endif /* no yyoverflow */
}
goto yybackup;
/*-----------.
| yybackup. |
`-----------*/
yybackup:
/* Do appropriate processing given the current state. Read a
look-ahead token if we need one and don't already have one. */
/* First try to decide what to do without reference to look-ahead token. */
yyn = yypact[yystate];
goto yydefault;
/* Not known => get a look-ahead token if don't already have one. */
/* YYCHAR is either YYEMPTY or YYEOF or a valid look-ahead symbol. */
if (yychar == YYEMPTY)
{
yychar = YYLEX;
}
{
yychar = yytoken = YYEOF;
YYDPRINTF ((stderr, "Now at end of input.\n"));
}
else
{
yytoken = YYTRANSLATE (yychar);
YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
}
/* If the proper action on seeing token YYTOKEN is to reduce or to
detect an error, take that action. */
yyn += yytoken;
if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
goto yydefault;
yyn = yytable[yyn];
{
yyn = -yyn;
goto yyreduce;
}
if (yyn == YYFINAL)
YYACCEPT;
/* Count tokens shifted since error; after three, turn off error
status. */
if (yyerrstatus)
yyerrstatus--;
/* Shift the look-ahead token. */
YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
if (yychar != YYEOF)
yychar = YYEMPTY;
*++yyvsp = yylval;
/*-----------------------------------------------------------.
| yydefault -- do the default action for the current state. |
`-----------------------------------------------------------*/
yydefault:
yyn = yydefact[yystate];
if (yyn == 0)
goto yyerrlab;
/*-----------------------------.
| yyreduce -- Do a reduction. |
`-----------------------------*/
yyreduce:
yylen = yyr2[yyn];
/* If YYLEN is nonzero, implement the default value of the action:
`$$ = $1'.
Otherwise, the following line sets YYVAL to garbage.
This behavior is undocumented and Bison
users should not rely upon it. Assigning to YYVAL
unconditionally makes the parser a bit smaller, and it avoids a
GCC warning that YYVAL may be used uninitialized. */
yyval = yyvsp[1-yylen];
{ List_Delete((yyvsp[(1) - (1)].l)); return 1; ;}
break;
case 11:
{ List_Delete((yyvsp[(1) - (1)].l)); return 1; ;}
break;
case 15:
{ return 1; ;}
break;
case 21:
(yyval.c) = (char*)"w";
(yyval.c) = (char*)"a";
Msg::Direct((yyvsp[(3) - (5)].c));
std::string tmp = FixRelativePath(gmsh_yyname, (yyvsp[(6) - (7)].c));
FILE *fp = fopen(tmp.c_str(), (yyvsp[(5) - (7)].c));
Free((yyvsp[(3) - (7)].c));
Free((yyvsp[(6) - (7)].c));
;}
break;
int i = PrintListOfDouble((yyvsp[(3) - (7)].c), (yyvsp[(5) - (7)].l), tmpstring);
yymsg(0, "%d extra argument%s in Printf", i, (i > 1) ? "s" : "");
Free((yyvsp[(3) - (7)].c));
List_Delete((yyvsp[(5) - (7)].l));
;}
break;
int i = PrintListOfDouble((yyvsp[(3) - (9)].c), (yyvsp[(5) - (9)].l), tmpstring);
yymsg(0, "%d extra argument%s in Printf", i, (i > 1) ? "s" : "");
std::string tmp = FixRelativePath(gmsh_yyname, (yyvsp[(8) - (9)].c));
FILE *fp = fopen(tmp.c_str(), (yyvsp[(7) - (9)].c));
}
else{
fprintf(fp, "%s\n", tmpstring);
fclose(fp);
}
Free((yyvsp[(3) - (9)].c));
Free((yyvsp[(8) - (9)].c));
List_Delete((yyvsp[(5) - (9)].l));
;}
break;
if(!strcmp((yyvsp[(1) - (6)].c), "View") && ViewData->finalize()){
ViewData->setName((yyvsp[(2) - (6)].c));
ViewData->setFileName(gmsh_yyname);
ViewData->setFileIndex(gmsh_yyviewindex++);
new PView(ViewData);

Christophe Geuzaine
committed
#endif
Free((yyvsp[(1) - (6)].c)); Free((yyvsp[(2) - (6)].c));
;}
break;
int index = (int)(yyvsp[(4) - (6)].d);
if(index >= 0 && index < (int)PView::list.size())
new PView(PView::list[index], false);

Christophe Geuzaine
committed
#endif
int index = (int)(yyvsp[(4) - (6)].d);
if(index >= 0 && index < (int)PView::list.size())
new PView(PView::list[index], true);

Christophe Geuzaine
committed
#endif

Christophe Geuzaine
committed
ViewData = new PViewDataList();

Christophe Geuzaine
committed
#endif
{ ViewCoord.push_back((yyvsp[(1) - (1)].d)); ;}
{ ViewCoord.push_back((yyvsp[(3) - (3)].d)); ;}
{ if(ViewValueList) ViewValueList->push_back((yyvsp[(1) - (1)].d)); ;}
{ if(ViewValueList) ViewValueList->push_back((yyvsp[(3) - (3)].d)); ;}
break;

Christophe Geuzaine
committed
if(!strncmp((yyvsp[(1) - (1)].c), "SP", 2)){

Christophe Geuzaine
committed
else if(!strncmp((yyvsp[(1) - (1)].c), "VP", 2)){

Christophe Geuzaine
committed
else if(!strncmp((yyvsp[(1) - (1)].c), "TP", 2)){

Christophe Geuzaine
committed
else if(!strncmp((yyvsp[(1) - (1)].c), "SL", 2)){

Jean-François Remacle
committed
if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_LIN);

Christophe Geuzaine
committed
else if(!strncmp((yyvsp[(1) - (1)].c), "VL", 2)){

Jean-François Remacle
committed
if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_LIN);

Christophe Geuzaine
committed
else if(!strncmp((yyvsp[(1) - (1)].c), "TL", 2)){

Jean-François Remacle
committed
if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_LIN);

Christophe Geuzaine
committed
else if(!strncmp((yyvsp[(1) - (1)].c), "ST", 2)){

Jean-François Remacle
committed
if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_TRI);

Christophe Geuzaine
committed
else if(!strncmp((yyvsp[(1) - (1)].c), "VT", 2)){

Jean-François Remacle
committed
if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_TRI);

Christophe Geuzaine
committed
else if(!strncmp((yyvsp[(1) - (1)].c), "TT", 2)){

Jean-François Remacle
committed
if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_TRI);

Christophe Geuzaine
committed
else if(!strncmp((yyvsp[(1) - (1)].c), "SQ", 2)){

Jean-François Remacle
committed
if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_QUA);

Christophe Geuzaine
committed
else if(!strncmp((yyvsp[(1) - (1)].c), "VQ", 2)){

Jean-François Remacle
committed
if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_QUA);

Christophe Geuzaine
committed
else if(!strncmp((yyvsp[(1) - (1)].c), "TQ", 2)){

Jean-François Remacle
committed
if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_QUA);

Christophe Geuzaine
committed
else if(!strncmp((yyvsp[(1) - (1)].c), "SS", 2)){

Jean-François Remacle
committed
if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_TET);

Christophe Geuzaine
committed
else if(!strncmp((yyvsp[(1) - (1)].c), "VS", 2)){

Jean-François Remacle
committed
if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_TET);

Christophe Geuzaine
committed
else if(!strncmp((yyvsp[(1) - (1)].c), "TS", 2)){

Jean-François Remacle
committed
if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_TET);

Christophe Geuzaine
committed
else if(!strncmp((yyvsp[(1) - (1)].c), "SH", 2)){

Jean-François Remacle
committed
if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_HEX);

Christophe Geuzaine
committed
else if(!strncmp((yyvsp[(1) - (1)].c), "VH", 2)){

Jean-François Remacle
committed
if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_HEX);

Christophe Geuzaine
committed
else if(!strncmp((yyvsp[(1) - (1)].c), "TH", 2)){

Jean-François Remacle
committed
if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_HEX);

Christophe Geuzaine
committed
else if(!strncmp((yyvsp[(1) - (1)].c), "SI", 2)){

Jean-François Remacle
committed
if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_PRI);

Christophe Geuzaine
committed
else if(!strncmp((yyvsp[(1) - (1)].c), "VI", 2)){

Jean-François Remacle
committed
if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_PRI);

Christophe Geuzaine
committed
else if(!strncmp((yyvsp[(1) - (1)].c), "TI", 2)){

Jean-François Remacle
committed
if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_PRI);

Christophe Geuzaine
committed
else if(!strncmp((yyvsp[(1) - (1)].c), "SY", 2)){

Jean-François Remacle
committed
if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_PYR);

Christophe Geuzaine
committed
else if(!strncmp((yyvsp[(1) - (1)].c), "VY", 2)){

Jean-François Remacle
committed
if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_PYR);

Christophe Geuzaine
committed
else if(!strncmp((yyvsp[(1) - (1)].c), "TY", 2)){

Jean-François Remacle
committed
if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_PYR);
yymsg(0, "Unknown element type '%s'", (yyvsp[(1) - (1)].c));
ViewValueList = 0; ViewNumList = 0;

Christophe Geuzaine
committed
#endif
for(int i = 0; i < 3; i++)
for(unsigned int j = 0; j < ViewCoord.size() / 3; j++)
ViewValueList->push_back(ViewCoord[3 * j + i]);

Christophe Geuzaine
committed
#endif

Christophe Geuzaine
committed
#endif
Loading
Loading full blame...