From 5b184f8c5b084bd12a361780d66be9b3e290215b Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Mon, 8 Jul 2019 22:23:38 +0000 Subject: separate patterns for handling \def and \newcommand git-svn-id: svn://tug.org/texlive/trunk@51585 c570f23f-e606-0410-a88d-b1316a301751 --- Build/source/utils/lacheck/ChangeLog | 9 + Build/source/utils/lacheck/Makefile.am | 12 +- Build/source/utils/lacheck/Makefile.in | 7 +- Build/source/utils/lacheck/lacheck.c | 3238 +++++++++++++++--------------- Build/source/utils/lacheck/lacheck.l | 44 +- Build/source/utils/lacheck/test-def.test | 14 + Build/source/utils/lacheck/test-def.tex | 47 + Build/source/utils/lacheck/test-def.xout | 0 8 files changed, 1767 insertions(+), 1604 deletions(-) create mode 100644 Build/source/utils/lacheck/test-def.test create mode 100644 Build/source/utils/lacheck/test-def.tex create mode 100644 Build/source/utils/lacheck/test-def.xout (limited to 'Build') diff --git a/Build/source/utils/lacheck/ChangeLog b/Build/source/utils/lacheck/ChangeLog index fca13bd8d9b..8a88ae74048 100644 --- a/Build/source/utils/lacheck/ChangeLog +++ b/Build/source/utils/lacheck/ChangeLog @@ -1,3 +1,12 @@ +2019-07-08 Karl Berry + + * lacheck.l: separate patterns for handling \def and \newcommand. + Report from Zayd Hammoudeh, + https://tug.org/pipermail/tex-live/2019-January/043083.html. + * test-def.test, + * test-def.tex: new test. + * Makefile.am (TESTS, EXTRA_DIST, CLEANFILES): run/clean the test. + 2018-09-09 Karl Berry * lacheck.test: LC_ALL=LANGUAGE=C. diff --git a/Build/source/utils/lacheck/Makefile.am b/Build/source/utils/lacheck/Makefile.am index 8d0075bef45..5f0bbe99237 100644 --- a/Build/source/utils/lacheck/Makefile.am +++ b/Build/source/utils/lacheck/Makefile.am @@ -1,8 +1,10 @@ +## $Id$ ## Makefile.am for the TeX Live subdirectory utils/lacheck/ ## -## Copyright (C) 2009-2015 Peter Breitenlohner +## Copyright 2015-2019 Karl Berry +## Copyright 2009-2015 Peter Breitenlohner ## You may freely use, modify and/or distribute this file. -## + AM_CFLAGS = $(WARNING_CFLAGS) bin_PROGRAMS = lacheck @@ -13,11 +15,11 @@ lacheck_SOURCES = lacheck.l nodist_man1_MANS = lacheck.1 ## Test -TESTS = lacheck.test +TESTS = lacheck.test test-def.test dist_check_SCRIPTS = $(TESTS) lacheck.log: lacheck$(EXEEXT) -EXTRA_DIST = test.old test.tex -CLEANFILES = test.out +EXTRA_DIST = test.old test.tex test-def.tex test-def.xout +CLEANFILES = test.out test-def.out ## Not used EXTRA_DIST += lacheck.hlp make_vms.com diff --git a/Build/source/utils/lacheck/Makefile.in b/Build/source/utils/lacheck/Makefile.in index 867a9e3234d..ec6f6ff382b 100644 --- a/Build/source/utils/lacheck/Makefile.in +++ b/Build/source/utils/lacheck/Makefile.in @@ -498,10 +498,11 @@ top_srcdir = @top_srcdir@ AM_CFLAGS = $(WARNING_CFLAGS) lacheck_SOURCES = lacheck.l nodist_man1_MANS = lacheck.1 -TESTS = lacheck.test +TESTS = lacheck.test test-def.test dist_check_SCRIPTS = $(TESTS) -EXTRA_DIST = test.old test.tex lacheck.hlp make_vms.com -CLEANFILES = test.out +EXTRA_DIST = test.old test.tex test-def.tex test-def.xout lacheck.hlp \ + make_vms.com +CLEANFILES = test.out test-def.out all: config.h $(MAKE) $(AM_MAKEFLAGS) all-am diff --git a/Build/source/utils/lacheck/lacheck.c b/Build/source/utils/lacheck/lacheck.c index 6ec513d9cdc..b1544e6ff0c 100644 --- a/Build/source/utils/lacheck/lacheck.c +++ b/Build/source/utils/lacheck/lacheck.c @@ -1,5 +1,5 @@ -#line 3 "lacheck.c" +#line 3 "../../../utils/lacheck/lacheck.c" #define YY_INT_ALIGNED short int @@ -7,8 +7,8 @@ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 -#define YY_FLEX_MINOR_VERSION 5 -#define YY_FLEX_SUBMINOR_VERSION 39 +#define YY_FLEX_MINOR_VERSION 6 +#define YY_FLEX_SUBMINOR_VERSION 0 #if YY_FLEX_SUBMINOR_VERSION > 0 #define FLEX_BETA #endif @@ -141,7 +141,15 @@ typedef unsigned int flex_uint32_t; /* Size of default input buffer. */ #ifndef YY_BUF_SIZE +#ifdef __ia64__ +/* On IA-64, the buffer size is 16k, not 8k. + * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case. + * Ditto for the __ia64__ case accordingly. + */ +#define YY_BUF_SIZE 32768 +#else #define YY_BUF_SIZE 16384 +#endif /* __ia64__ */ #endif /* The state buf must be large enough to hold one state per character in the main buffer. @@ -344,11 +352,17 @@ extern int yylineno; int yylineno = 1; extern char *yytext; +#ifdef yytext_ptr +#undef yytext_ptr +#endif #define yytext_ptr yytext static yy_state_type yy_get_previous_state (void ); static yy_state_type yy_try_NUL_trans (yy_state_type current_state ); static int yy_get_next_buffer (void ); +#if defined(__GNUC__) && __GNUC__ >= 3 +__attribute__((__noreturn__)) +#endif static void yy_fatal_error (yyconst char msg[] ); /* Done after the current pattern has been matched and before the @@ -361,8 +375,8 @@ static void yy_fatal_error (yyconst char msg[] ); *yy_cp = '\0'; \ (yy_c_buf_p) = yy_cp; -#define YY_NUM_RULES 88 -#define YY_END_OF_BUFFER 89 +#define YY_NUM_RULES 89 +#define YY_END_OF_BUFFER 90 /* This struct is not used in this scanner, but its presence is necessary. */ struct yy_trans_info @@ -370,50 +384,50 @@ struct yy_trans_info flex_int32_t yy_verify; flex_int32_t yy_nxt; }; -static yyconst flex_int16_t yy_acclist[361] = +static yyconst flex_int16_t yy_acclist[355] = { 0, - 89, 87, 88, 87, 88, 4, 88, 87, 88, 43, - 87, 88, 81, 87, 88, 87, 88, 87, 88, 87, - 88, 87, 88, 87, 88, 9, 87, 88, 10, 87, - 88, 87, 88, 87, 88, 87, 88, 87, 88, 87, - 88, 87, 88, 49, 88, 88, 49, 88, 59, 88, - 59, 88, 52, 88, 51, 52, 88, 53, 88, 52, - 88, 85, 88, 85, 88, 88, 83, 88, 82, 88, - 83, 88, 56, 88, 55, 88, 56, 88, 31, 88, - 4, 88, 31, 88, 31, 88, 29, 31, 88, 30, - 31, 88, 41, 88, 40, 41, 88, 41, 88, 35, - - 88, 35, 88, 35, 88, 33, 35, 88, 34, 35, - 88, 27, 88, 25, 27, 88, 4, 25, 88, 13, - 27, 88, 27, 88, 13, 27, 88, 24, 27, 88, - 24, 27, 88, 13, 27, 88, 27, 88, 13, 27, - 88, 9, 27, 88, 11, 27, 88, 26, 27, 88, - 12, 27, 88, 12, 27, 88, 27, 88, 27, 88, - 12, 27, 88, 27, 88, 12, 27, 88, 10, 27, - 88, 80, 63, 42, 44, 3, 79, 7, 2, 36, - 37, 17, 38, 1, 39, 5, 6,16445, 8, 63, - 79,16445, 49, 1, 49, 59, 1, 59, 1, 85, - - 1, 85, 80, 13, 13, 13, 79, 13, 18, 13, - 12, 12, 12, 16, 12, 78,16444, 3, 66, 68, - 16446,16445, 77, 77, 77, 14, 68,16446,16445, 78, - 16444, 13,16446, 12,16446,16460,16460, 15,16444, 3, - 3,16460,16460, 77, 77, 73, 73, 77, 22, 22, - 77, 19, 19, 77, 8253, 25,16444, 23, 67, 67, - 8268, 67, 67, 8252, 67, 3, 67, 8268, 8254, 28, - 28, 77, 28, 58, 57, 8, 63, 67, 67, 67, - 67, 71, 3, 3, 67, 28, 77, 28, 77, 74, - 74, 74, 77, 74, 74, 54, 54, 54, 77, 54, - - 67, 67, 67, 70, 3, 67, 3, 48, 47, 9, - 10, 84, 74, 75, 75, 75, 77, 75, 75, 67, - 29, 30, 33, 34, 9, 11, 10, 3, 64, 75, - 3, 69, 65, 65, 65, 3, 65, 46, 46, 77, - 86, 77, 86, 65, 72, 3, 65, 65, 65, 3, - 45, 45, 77, 3, 20, 20, 77, 21, 50, 32 + 90, 88, 89, 88, 89, 4, 89, 88, 89, 44, + 88, 89, 82, 88, 89, 88, 89, 88, 89, 88, + 89, 88, 89, 88, 89, 9, 88, 89, 10, 88, + 89, 88, 89, 88, 89, 88, 89, 88, 89, 88, + 89, 88, 89, 50, 89, 89, 50, 89, 60, 89, + 60, 89, 53, 89, 52, 53, 89, 54, 89, 53, + 89, 86, 89, 86, 89, 89, 84, 89, 83, 89, + 84, 89, 57, 89, 56, 89, 57, 89, 32, 89, + 4, 89, 32, 89, 32, 89, 30, 32, 89, 31, + 32, 89, 42, 89, 41, 42, 89, 42, 89, 36, + + 89, 36, 89, 36, 89, 34, 36, 89, 35, 36, + 89, 27, 89, 25, 27, 89, 4, 25, 89, 13, + 27, 89, 27, 89, 13, 27, 89, 24, 27, 89, + 24, 27, 89, 13, 27, 89, 27, 89, 13, 27, + 89, 9, 27, 89, 11, 27, 89, 26, 27, 89, + 12, 27, 89, 12, 27, 89, 27, 89, 27, 89, + 12, 27, 89, 27, 89, 12, 27, 89, 10, 27, + 89, 81, 64, 43, 45, 3, 80, 7, 2, 37, + 38, 17, 39, 1, 40, 5, 6,16446, 8, 64, + 80,16446, 50, 1, 50, 60, 1, 60, 1, 86, + + 1, 86, 81, 13, 13, 13, 80, 13, 18, 13, + 12, 12, 12, 16, 12, 79,16445, 3, 67, 69, + 16447,16446, 78, 78, 78, 14, 69,16447,16446, 79, + 16445, 13,16447, 12,16447,16461,16461, 15,16445, 3, + 3,16461,16461, 78, 78, 74, 74, 78, 22, 22, + 78, 19, 19, 78, 8254, 25,16445, 23, 68, 68, + 8269, 68, 68, 8253, 68, 3, 68, 8269, 8255, 59, + 58, 8, 64, 68, 68, 68, 68, 72, 3, 3, + 68, 75, 75, 75, 78, 75, 75, 55, 55, 55, + 78, 55, 68, 68, 68, 71, 3, 68, 3, 49, + + 48, 9, 28, 10, 85, 75, 76, 76, 76, 78, + 76, 76, 68, 30, 31, 34, 35, 9, 11, 10, + 3, 65, 76, 3, 70, 66, 66, 66, 3, 66, + 47, 47, 78, 87, 78, 87, 29, 66, 73, 3, + 66, 66, 66, 3, 46, 46, 78, 3, 20, 20, + 78, 21, 51, 33 } ; -static yyconst flex_int16_t yy_accept[954] = +static yyconst flex_int16_t yy_accept[968] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, @@ -431,98 +445,99 @@ static yyconst flex_int16_t yy_accept[954] = 177, 177, 177, 177, 177, 177, 177, 177, 178, 178, 179, 180, 181, 182, 183, 183, 183, 184, 185, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, - 186, 186, 186, 186, 186, 186, 187, 188, 189, 189, - 190, 191, 191, 191, 191, 191, 191, 191, 191, 191, - 192, 192, 193, 193, 194, 196, 197, 199, 200, 200, - 201, 203, 203, 203, 203, 203, 204, 204, 204, 204, - 204, 205, 206, 208, 209, 210, 210, 210, 210, 210, - - 210, 210, 210, 211, 212, 213, 214, 215, 215, 215, - 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, 218, 218, 218, 218, - 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, - 219, 219, 219, 219, 219, 220, 220, 220, 220, 221, - 222, 223, 224, 225, 226, 226, 226, 226, 226, 226, + 186, 186, 186, 186, 186, 186, 186, 187, 188, 189, + 189, 190, 191, 191, 191, 191, 191, 191, 191, 191, + 191, 192, 192, 193, 193, 194, 196, 197, 199, 200, + 200, 201, 203, 203, 203, 203, 203, 204, 204, 204, + 204, 204, 205, 206, 208, 209, 210, 210, 210, 210, + + 210, 210, 210, 210, 211, 212, 213, 214, 215, 215, + 215, 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, 218, 218, 218, + 218, 219, 219, 219, 219, 219, 219, 219, 219, 219, + 219, 219, 219, 219, 219, 219, 220, 220, 220, 220, + 221, 222, 223, 224, 225, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, - 226, 227, 228, 229, 230, 230, 230, 230, 230, 230, - 230, 230, 230, 230, 230, 231, 231, 231, 231, 232, - 234, 234, 234, 234, 234, 234, 234, 234, 234, 236, - 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, - 236, 237, 238, 238, 238, 238, 238, 239, 239, 239, - 239, 239, 239, 239, 239, 240, 240, 240, 240, 240, - 240, 240, 240, 241, 241, 241, 241, 242, 242, 242, - 242, 242, 243, 244, 244, 244, 244, 244, 244, 244, - 244, 244, 244, 244, 244, 244, 244, 244, 245, 246, - - 246, 246, 246, 246, 246, 246, 246, 246, 246, 246, - 247, 249, 249, 249, 249, 249, 249, 249, 249, 249, - 250, 252, 252, 252, 252, 252, 252, 252, 252, 253, - 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, - 255, 255, 255, 255, 255, 256, 256, 256, 256, 256, + 226, 226, 226, 227, 228, 229, 230, 230, 230, 230, + 230, 230, 230, 230, 230, 230, 230, 231, 231, 231, + 231, 232, 234, 234, 234, 234, 234, 234, 234, 234, + 234, 236, 236, 236, 236, 236, 236, 236, 236, 236, + 236, 236, 236, 237, 238, 238, 238, 238, 238, 239, + 239, 239, 239, 239, 239, 239, 239, 240, 240, 240, + 240, 240, 240, 240, 240, 241, 241, 241, 241, 242, + 242, 242, 242, 242, 243, 244, 244, 244, 244, 244, + 244, 244, 244, 244, 244, 244, 244, 244, 244, 244, + + 245, 246, 246, 246, 246, 246, 246, 246, 246, 246, + 246, 246, 247, 249, 249, 249, 249, 249, 249, 249, + 249, 249, 250, 252, 252, 252, 252, 252, 252, 252, + 253, 255, 255, 255, 255, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 255, 255, 255, 256, 256, + 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, - 256, 256, 256, 256, 256, 256, 256, 256, 256, 257, - 258, 258, 258, 258, 258, 259, 259, 259, 259, 259, - 259, 259, 259, 259, 259, 260, 260, 260, 261, 261, - 261, 261, 262, 262, 262, 262, 262, 262, 262, 262, - - 262, 262, 262, 262, 263, 264, 264, 264, 264, 264, - 264, 265, 265, 265, 265, 265, 265, 266, 266, 267, - 267, 268, 268, 268, 268, 269, 269, 269, 269, 269, + 256, 256, 257, 258, 258, 258, 258, 258, 259, 259, + 259, 259, 259, 259, 259, 259, 259, 259, 260, 260, + 260, 261, 261, 261, 261, 262, 262, 262, 262, 262, + + 262, 262, 262, 262, 262, 262, 262, 263, 264, 264, + 264, 264, 264, 264, 265, 265, 265, 265, 265, 265, + 266, 266, 267, 267, 268, 268, 268, 268, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, + 269, 269, 269, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, - 270, 270, 270, 271, 273, 274, 274, 274, 274, 274, - 274, 275, 275, 275, 275, 276, 276, 276, 276, 276, - 276, 276, 276, 276, 276, 276, 276, 276, 276, 276, - 276, 276, 276, 276, 277, 278, 278, 278, 278, 278, - 278, 278, 278, 279, 280, 280, 280, 280, 280, 280, + 270, 270, 270, 271, 271, 271, 271, 272, 272, 272, + 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, + 272, 272, 272, 272, 272, 272, 272, 273, 274, 274, + 274, 274, 274, 274, 274, 274, 275, 276, 276, 276, - 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, - 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, - 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, - 281, 281, 282, 282, 283, 283, 283, 283, 283, 284, - 285, 285, 285, 286, 286, 286, 286, 286, 286, 286, - 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, - 286, 286, 286, 286, 288, 290, 290, 290, 290, 290, - 290, 290, 290, 290, 290, 290, 290, 291, 292, 292, - 294, 295, 296, 296, 296, 296, 296, 296, 296, 296, - 297, 298, 300, 301, 301, 301, 301, 301, 301, 301, - - 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, - 302, 302, 302, 302, 302, 302, 302, 303, 303, 303, - 303, 303, 303, 303, 304, 304, 304, 305, 306, 306, - 307, 308, 308, 308, 308, 308, 308, 308, 308, 308, - 308, 308, 309, 309, 309, 310, 311, 311, 311, 311, - 311, 311, 311, 311, 312, 312, 312, 312, 312, 313, - 313, 314, 314, 314, 314, 314, 315, 316, 316, 318, - 319, 320, 320, 320, 320, 321, 321, 321, 322, 323, - 324, 325, 326, 327, 327, 328, 328, 328, 328, 328, - 328, 328, 328, 329, 329, 329, 329, 329, 329, 330, - - 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, - 330, 330, 330, 330, 330, 331, 331, 331, 331, 331, - 331, 331, 331, 331, 331, 331, 331, 331, 331, 332, - 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, - 332, 332, 332, 332, 333, 333, 333, 333, 333, 333, - 333, 333, 333, 334, 334, 334, 335, 335, 335, 335, - 335, 336, 336, 337, 337, 338, 338, 338, 338, 338, - 338, 338, 338, 338, 338, 338, 338, 339, 341, 342, - 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, - 344, 345, 345, 345, 346, 347, 347, 347, 348, 348, - - 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, - 348, 348, 348, 348, 348, 349, 349, 349, 349, 349, - 350, 351, 351, 351, 351, 351, 351, 351, 352, 354, - 354, 354, 354, 354, 354, 354, 354, 355, 355, 355, - 355, 356, 358, 358, 359, 359, 360, 360, 360, 360, - 360, 361, 361 + 276, 276, 276, 276, 276, 276, 276, 276, 276, 276, + 276, 276, 276, 276, 276, 276, 276, 276, 276, 276, + 276, 276, 276, 277, 277, 277, 277, 277, 277, 277, + 277, 277, 277, 277, 277, 278, 278, 279, 279, 279, + 279, 279, 280, 281, 281, 281, 282, 282, 282, 282, + 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, + 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, + 282, 282, 282, 282, 282, 282, 282, 282, 282, 283, + 284, 284, 286, 287, 288, 288, 288, 288, 288, 288, + 288, 288, 288, 288, 289, 290, 292, 293, 293, 293, + + 293, 293, 293, 293, 294, 294, 294, 294, 294, 294, + 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, + 294, 295, 295, 295, 295, 295, 295, 295, 296, 296, + 296, 297, 298, 298, 299, 300, 300, 300, 300, 300, + 300, 300, 300, 300, 300, 300, 301, 301, 301, 302, + 303, 303, 303, 303, 303, 303, 304, 304, 304, 305, + 305, 305, 305, 305, 306, 306, 307, 307, 307, 307, + 307, 307, 308, 309, 309, 311, 312, 313, 313, 313, + 313, 314, 314, 314, 315, 316, 317, 318, 319, 320, + 320, 321, 321, 321, 321, 321, 321, 321, 321, 322, + + 322, 322, 322, 322, 322, 323, 323, 323, 323, 323, + 323, 323, 323, 323, 323, 323, 323, 323, 323, 323, + 323, 323, 324, 324, 324, 324, 324, 324, 324, 324, + 324, 324, 324, 324, 324, 324, 325, 325, 325, 325, + 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, + 325, 326, 326, 326, 326, 326, 326, 326, 326, 326, + 326, 326, 326, 327, 327, 327, 328, 328, 328, 328, + 328, 329, 329, 330, 330, 331, 331, 331, 331, 331, + 331, 331, 331, 331, 331, 331, 331, 332, 334, 335, + 337, 337, 337, 337, 337, 337, 338, 338, 338, 338, + + 338, 338, 338, 338, 339, 339, 339, 340, 341, 341, + 341, 342, 342, 342, 342, 342, 342, 342, 342, 342, + 342, 342, 342, 342, 342, 342, 342, 342, 342, 343, + 343, 343, 343, 343, 344, 345, 345, 345, 345, 345, + 345, 345, 346, 348, 348, 348, 348, 348, 348, 348, + 348, 349, 349, 349, 349, 350, 352, 352, 353, 353, + 354, 354, 354, 354, 354, 355, 355 } ; -static yyconst flex_int32_t yy_ec[256] = +static yyconst YY_CHAR yy_ec[256] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, @@ -554,7 +569,7 @@ static yyconst flex_int32_t yy_ec[256] = 1, 1, 1, 1, 1 } ; -static yyconst flex_int32_t yy_meta[57] = +static yyconst YY_CHAR yy_meta[57] = { 0, 1, 2, 3, 2, 4, 1, 5, 6, 7, 8, 8, 1, 1, 9, 1, 10, 1, 8, 8, 8, @@ -564,245 +579,249 @@ static yyconst flex_int32_t yy_meta[57] = 16, 17, 18, 19, 20, 21 } ; -static yyconst flex_int16_t yy_base[1045] = +static yyconst flex_uint16_t yy_base[1062] = { 0, 0, 56, 110, 111, 112, 113, 115, 117, 118, 119, - 5108, 5107, 120, 121, 122, 123, 124, 126, 134, 136, - 150, 159, 212, 0, 268, 0, 5131, 155, 323, 179, + 5100, 5099, 120, 121, 122, 123, 124, 126, 134, 136, + 150, 159, 212, 0, 268, 0, 5123, 155, 323, 179, 179, 180, 171, 378, 181, 361, 410, 373, 187, 184, - 462, 405, 465, 478, 515, 360, 0, 5134, 5105, 0, - 5104, 5134, 5134, 5134, 167, 0, 5103, 5102, 5134, 5134, - 5101, 5134, 5134, 5100, 5134, 5134, 5121, 470, 5134, 5134, - 5134, 5134, 5098, 5134, 5119, 475, 5134, 5134, 315, 570, + 462, 405, 465, 478, 515, 360, 0, 5126, 5097, 0, + 5096, 5126, 5126, 5126, 167, 0, 5091, 5077, 5126, 5126, + 5069, 5126, 5126, 5066, 5126, 5126, 5070, 470, 5126, 5126, + 5126, 5126, 5045, 5126, 5015, 475, 5126, 5126, 315, 570, 624, 388, 472, 397, 322, 569, 675, 714, 758, 507, 324, 585, 463, 583, 589, 593, 809, 373, 860, 385, 618, 612, 660, 667, 657, 0, 914, 688, 701, 940, - 968, 5105, 5134, 704, 719, 5134, 571, 5134, 5113, 5134, - 712, 1012, 784, 745, 779, 5086, 817, 5134, 596, 5134, - 5134, 5134, 5134, 5134, 5072, 5069, 5134, 814, 5134, 462, - 474, 853, 545, 860, 384, 688, 109, 491, 369, 645, - 711, 134, 570, 401, 719, 5134, 5134, 801, 891, 5065, - 5062, 987, 865, 901, 1018, 5001, 414, 1035, 796, 1043, - 897, 1067, 838, 0, 0, 0, 0, 5134, 4956, 0, - 0, 4934, 4931, 4900, 4879, 5134, 0, 4883, 619, 729, - 766, 1114, 782, 823, 5134, 4840, 596, 4762, 4774, 4703, - - 462, 4684, 837, 801, 1115, 913, 5134, 597, 4671, 939, - 1059, 1130, 1010, 4649, 4621, 4594, 4587, 4535, 4487, 4485, - 4447, 0, 1139, 4455, 4448, 1169, 1150, 1196, 1209, 1249, - 4414, 4393, 4346, 128, 559, 990, 1304, 4323, 1230, 1311, - 1189, 1314, 536, 170, 468, 509, 382, 694, 390, 565, - 786, 0, 1143, 1335, 5134, 1326, 1241, 4290, 5134, 1003, - 1062, 4298, 4297, 4296, 624, 467, 677, 753, 452, 696, - 714, 803, 1102, 1372, 632, 808, 1128, 313, 813, 1428, - 734, 914, 880, 784, 909, 1194, 1484, 178, 749, 601, - 855, 1145, 926, 976, 989, 996, 1104, 1051, 1238, 1299, - - 980, 1300, 0, 0, 1016, 0, 4299, 1539, 1564, 1532, - 5134, 1571, 1580, 1590, 1596, 1599, 1623, 4298, 4282, 4268, - 4267, 4266, 4265, 4305, 4297, 1070, 1308, 1540, 1673, 1606, - 4261, 4256, 0, 0, 4270, 4254, 4265, 4243, 1678, 4242, - 0, 4220, 1066, 0, 4229, 1685, 1698, 1333, 1702, 4191, - 1269, 1634, 4183, 4167, 4190, 0, 5134, 1727, 1717, 0, - 1736, 1743, 1781, 1345, 1751, 4148, 4139, 4141, 1761, 1806, - 4122, 1796, 1211, 4150, 1192, 1814, 1822, 1776, 1824, 1846, - 906, 1768, 1771, 1204, 1077, 0, 4113, 4147, 1682, 0, - 1850, 4118, 87, 4072, 4045, 1853, 1711, 4044, 4039, 558, - - 1234, 1129, 844, 1288, 1164, 1310, 1313, 1105, 1300, 5134, - 4038, 1547, 1329, 1908, 1523, 1522, 1179, 1242, 1139, 5134, - 4037, 1963, 1536, 1584, 1589, 1597, 867, 1032, 5134, 4035, - 1528, 1601, 1694, 1669, 1608, 1661, 1719, 1195, 1592, 1662, - 1727, 1225, 1367, 1856, 5134, 1864, 1856, 4053, 4050, 4024, - 4048, 1878, 0, 1881, 1966, 2015, 1882, 1979, 2040, 1986, - 2047, 2050, 4034, 1809, 4006, 4005, 4004, 4003, 2094, 1888, - 2058, 2076, 4002, 4001, 5134, 4010, 4001, 4010, 4010, 3996, - 3997, 0, 3986, 3950, 5134, 1879, 3913, 3912, 1973, 3883, - 2004, 5134, 3887, 3882, 2084, 3917, 2104, 1951, 0, 1681, - - 3916, 2119, 3901, 2010, 2022, 3868, 0, 3883, 2126, 2133, - 5134, 2151, 3878, 3907, 1799, 3905, 3904, 2056, 1978, 1748, - 1874, 2136, 2004, 2143, 3903, 963, 1797, 3902, 2161, 0, - 1963, 3901, 3842, 3840, 3842, 3837, 3829, 2164, 2148, 5134, - 2158, 1745, 1810, 1823, 1998, 1695, 2176, 1847, 1875, 2219, - 1769, 1938, 2254, 2284, 0, 2035, 2049, 1979, 2069, 2334, - 5134, 3871, 1797, 2052, 5134, 2096, 2063, 2109, 1824, 2072, - 2386, 2148, 2091, 2054, 2151, 2152, 2092, 2150, 2153, 2160, - 2442, 1957, 2204, 3864, 3863, 3840, 2337, 0, 2172, 3866, - 2344, 3854, 2347, 2353, 2497, 2500, 2507, 2510, 2307, 3819, - - 3819, 3818, 3817, 3812, 2525, 2534, 2541, 3811, 3810, 3813, - 3818, 3813, 2545, 3776, 3790, 3814, 2595, 3802, 3808, 3802, - 3758, 3751, 3769, 2598, 3764, 3748, 3787, 2605, 2614, 3775, - 3783, 3782, 3743, 5134, 3748, 2623, 0, 3776, 2630, 3764, - 2180, 3773, 3770, 2154, 2504, 2181, 2345, 3769, 2639, 3725, - 3721, 3727, 3730, 3716, 2517, 2169, 2654, 2321, 2343, 2182, - 2341, 3729, 2344, 0, 0, 2349, 3724, 2353, 2504, 3750, - 2512, 2517, 2351, 2526, 2647, 2166, 5134, 2699, 0, 3727, - 3726, 2657, 2484, 1852, 2519, 2509, 2524, 2750, 2664, 5134, - 3732, 3721, 3720, 3705, 3732, 2669, 2676, 3717, 3722, 3721, - - 2805, 3690, 3676, 3672, 3669, 3662, 2689, 3647, 3641, 3617, - 3624, 2808, 3605, 3604, 2545, 3639, 3638, 2700, 3591, 3590, - 3584, 2813, 3619, 3618, 2816, 3574, 5134, 2628, 3612, 3611, - 2823, 2560, 2341, 1719, 2824, 3335, 3347, 3333, 2832, 2582, - 2848, 5134, 3374, 2593, 5134, 3354, 2597, 2346, 2659, 2588, - 2618, 2673, 2687, 3353, 2623, 2665, 2188, 2688, 5134, 2899, - 0, 2676, 2818, 2801, 2820, 5134, 2946, 0, 3352, 3351, - 2861, 3327, 2868, 3368, 3367, 2871, 3325, 5134, 5134, 5134, - 5134, 5134, 5134, 3323, 5134, 3322, 2688, 2879, 3321, 3320, - 2906, 3318, 2836, 2888, 2672, 2840, 3318, 2913, 5134, 2904, - - 3359, 2641, 2831, 2693, 2845, 2837, 2873, 2865, 2996, 3308, - 3357, 2189, 2900, 2689, 0, 3316, 2933, 3328, 3258, 3257, - 3276, 3003, 2913, 3250, 3237, 3167, 2885, 3010, 3017, 2945, - 2276, 1870, 2932, 0, 3030, 3166, 2169, 3160, 2908, 3055, - 3111, 2903, 3134, 5134, 0, 2921, 2930, 2543, 3182, 3153, - 3024, 3023, 5134, 3002, 3033, 3032, 3166, 2994, 2942, 0, - 2891, 3168, 3015, 2953, 2957, 3170, 1323, 2998, 0, 3007, - 2855, 2772, 2684, 2638, 2584, 2846, 5134, 2590, 5134, 2542, - 2941, 3008, 3000, 2993, 0, 2471, 2473, 2402, 2370, 2277, - 2275, 2107, 2099, 5134, 2024, 3172, 1971, 1969, 2819, 2030, - - 1839, 3175, 1714, 1598, 1589, 1529, 3200, 3235, 3158, 3022, - 1523, 1525, 1334, 1308, 1228, 3256, 1128, 1112, 1046, 999, - 3259, 2278, 3262, 3258, 895, 817, 687, 5134, 679, 3162, - 3294, 615, 0, 0, 3260, 485, 3261, 2894, 428, 3248, - 5134, 308, 155, 5134, 2920, 5134, 3329, 0, 75, 0, - 0, 5134, 3381, 3402, 3423, 3444, 3465, 3486, 3507, 3528, - 3549, 3570, 3591, 3604, 3624, 3645, 3666, 3687, 3707, 3725, - 3743, 3761, 3779, 3799, 3820, 3840, 3262, 3264, 3860, 3881, - 3896, 3908, 3929, 3950, 3971, 3992, 4013, 3275, 4033, 4042, - 4063, 4084, 4105, 4126, 4135, 4156, 4177, 4198, 4219, 4240, - - 4261, 4281, 4301, 4322, 4343, 4364, 4385, 3340, 4406, 4427, - 4448, 4469, 4490, 4511, 4532, 4553, 4574, 4595, 4616, 4637, - 4658, 4679, 4700, 4721, 3342, 4742, 4763, 4784, 4805, 4826, - 4847, 4868, 4889, 4910, 4931, 4952, 4973, 4994, 5015, 5036, - 5057, 5078, 3176, 5099 + 968, 4996, 5126, 704, 719, 5126, 571, 5126, 4973, 5126, + 712, 1012, 784, 745, 779, 4931, 817, 5126, 596, 5126, + 5126, 5126, 5126, 5126, 4922, 4891, 5126, 814, 5126, 462, + 474, 853, 545, 860, 384, 467, 109, 491, 369, 645, + 711, 558, 614, 570, 134, 697, 5126, 5126, 801, 891, + 4863, 4842, 987, 865, 901, 1018, 4815, 412, 1035, 759, + 1043, 792, 1067, 838, 0, 0, 0, 0, 5126, 4725, + 0, 0, 4726, 4669, 4640, 4637, 5126, 0, 4631, 619, + 766, 727, 1114, 731, 685, 5126, 4585, 391, 4552, 4549, + + 4507, 462, 4503, 823, 787, 1115, 837, 5126, 597, 4472, + 895, 1059, 1130, 1010, 4431, 4421, 4384, 4377, 4346, 4327, + 4307, 4279, 0, 1139, 4287, 4255, 1169, 1150, 1196, 1209, + 1249, 4241, 4240, 4213, 128, 693, 934, 1304, 4209, 1230, + 1311, 1189, 1314, 536, 170, 468, 509, 382, 434, 627, + 565, 841, 0, 1143, 1335, 5126, 1326, 1241, 4220, 5126, + 990, 1003, 4228, 4227, 4226, 729, 743, 855, 877, 651, + 774, 813, 788, 884, 1372, 785, 1128, 900, 313, 1104, + 1428, 780, 1037, 925, 864, 1138, 1484, 178, 931, 1033, + 1105, 1185, 981, 803, 977, 976, 1051, 1014, 1162, 891, + + 1062, 1233, 600, 1248, 0, 0, 1050, 0, 4230, 1539, + 1564, 1335, 5126, 1549, 1580, 1589, 1595, 1598, 1622, 4230, + 4214, 4199, 4198, 4193, 4192, 4232, 4221, 1101, 1308, 1621, + 1555, 1605, 4180, 4179, 0, 0, 4172, 4136, 4131, 4107, + 1677, 4104, 0, 4086, 1310, 0, 4113, 1684, 1691, 1350, + 1697, 4078, 1271, 1542, 4075, 4047, 4087, 0, 5126, 1721, + 1731, 0, 1741, 1748, 1775, 1698, 1755, 4047, 4054, 4058, + 1761, 1800, 4013, 1703, 1745, 4021, 1162, 1807, 1810, 1791, + 1803, 1834, 1216, 1559, 1837, 1542, 1142, 0, 3964, 3995, + 1695, 0, 1840, 3966, 87, 3960, 3952, 1843, 1681, 3971, + + 3968, 1103, 1173, 1013, 1188, 576, 1194, 1288, 1099, 1205, + 1220, 5126, 3967, 1591, 1294, 1854, 1331, 930, 1335, 1325, + 1279, 5126, 3966, 1859, 1526, 1582, 1219, 1052, 1528, 5126, + 3965, 1563, 1593, 1838, 1319, 1607, 1599, 1732, 1719, 1699, + 1705, 1652, 1716, 689, 1653, 1869, 1880, 5126, 1883, 1874, + 3982, 3981, 3955, 3979, 1897, 0, 1900, 1913, 1938, 1914, + 1963, 1970, 1973, 1981, 1997, 3965, 1905, 3938, 3937, 3936, + 3935, 2024, 1933, 2005, 2012, 3934, 3933, 5126, 3942, 3913, + 3860, 3835, 3821, 3822, 0, 3830, 3856, 5126, 1760, 3843, + 3842, 1945, 3810, 1917, 5126, 3815, 3810, 2048, 3845, 2055, + + 1847, 0, 1754, 3844, 2040, 3831, 2064, 2070, 3798, 0, + 3813, 2078, 2088, 5126, 2096, 3809, 3838, 1845, 3818, 3813, + 2009, 1898, 1546, 1817, 2103, 1827, 2106, 3812, 1874, 1793, + 3811, 2114, 0, 1989, 3809, 3769, 3770, 3772, 3767, 3760, + 2121, 2110, 5126, 2125, 1832, 1902, 1939, 1804, 1852, 2134, + 980, 1856, 2180, 1910, 1812, 2138, 0, 1937, 1946, 1280, + 1974, 2235, 5126, 3802, 1874, 2014, 5126, 2053, 2040, 1936, + 1972, 2287, 1982, 2061, 1668, 2019, 2048, 2079, 2098, 2066, + 2097, 2113, 2104, 2343, 2109, 2151, 3796, 3795, 3772, 2238, + 0, 1980, 3798, 2245, 3782, 2248, 2254, 2398, 2401, 2408, + + 2411, 2416, 3747, 3747, 3742, 3736, 3735, 2426, 2435, 2442, + 3713, 3708, 3715, 3725, 3716, 2447, 3695, 3713, 3732, 2497, + 3720, 3730, 3725, 3681, 3679, 3695, 2500, 3690, 3678, 3714, + 2507, 2516, 3702, 3712, 3710, 3669, 5126, 3677, 2525, 0, + 3705, 2532, 3691, 2143, 3701, 3696, 2000, 2405, 2144, 2152, + 3695, 2541, 3651, 3645, 3650, 3654, 3640, 2535, 2055, 2557, + 2222, 2139, 2142, 2238, 3650, 2147, 3628, 2140, 3648, 2232, + 2223, 3671, 2240, 2405, 2144, 2245, 2549, 2395, 5126, 2602, + 0, 3650, 3646, 2560, 2385, 2410, 2247, 2418, 2419, 2250, + 2253, 2653, 2572, 5126, 3650, 3639, 3637, 3624, 3649, 2579, + + 2603, 3635, 3639, 3624, 2708, 3589, 3563, 3557, 3542, 3537, + 2711, 3536, 3535, 3521, 3528, 2718, 3517, 3520, 2441, 3555, + 3550, 2721, 3507, 3511, 3278, 2724, 3313, 3312, 2748, 3272, + 5126, 2446, 3310, 3309, 2751, 470, 1999, 2503, 2722, 3266, + 3278, 3264, 2762, 2485, 2766, 5126, 3304, 2129, 5126, 3284, + 2494, 2145, 2420, 2499, 2545, 5126, 2548, 2556, 3283, 2525, + 2551, 2249, 2564, 5126, 2817, 0, 2433, 2516, 2547, 2413, + 2567, 5126, 2864, 0, 3282, 3281, 2776, 3257, 2786, 3297, + 3296, 2789, 3254, 5126, 5126, 5126, 5126, 5126, 5126, 3252, + 5126, 3251, 2506, 2758, 3250, 3249, 2801, 3247, 2594, 2813, + + 2736, 2741, 3247, 2829, 5126, 2820, 3288, 2571, 2562, 2581, + 2590, 2578, 2695, 2594, 2914, 3237, 3286, 2256, 2723, 2736, + 2921, 0, 3245, 2843, 3258, 3251, 3250, 3270, 2853, 2844, + 3250, 3246, 3186, 2615, 2926, 2933, 2936, 2795, 2793, 2866, + 0, 2929, 3184, 2739, 3176, 2788, 2973, 3029, 2696, 3157, + 5126, 0, 2716, 2831, 2778, 3084, 3151, 3110, 3131, 3105, + 3104, 3102, 5126, 2851, 3114, 3113, 3087, 3080, 3088, 0, + 3098, 2945, 3085, 2838, 2874, 3092, 2804, 2935, 0, 2915, + 2968, 2927, 2926, 2853, 2844, 2800, 5126, 2861, 5126, 2790, + 2848, 2777, 3070, 3075, 2696, 5126, 0, 0, 2688, 2579, + + 2577, 2601, 2552, 2471, 2386, 2303, 5126, 2271, 2946, 2129, + 2094, 2846, 2469, 2035, 3100, 1880, 1802, 1758, 1728, 3136, + 3076, 2773, 2853, 1679, 1661, 1602, 1590, 1566, 1364, 3191, + 1330, 1199, 1212, 1174, 3194, 2887, 3097, 3106, 912, 923, + 752, 5126, 744, 2940, 3219, 614, 0, 0, 3097, 485, + 3098, 3273, 348, 3085, 5126, 308, 155, 5126, 3255, 5126, + 3256, 0, 75, 0, 0, 5126, 3318, 3339, 3360, 3381, + 3402, 3423, 3444, 3465, 3486, 3507, 3528, 3541, 3561, 3582, + 3603, 3624, 3644, 3662, 3680, 3698, 3716, 3736, 3757, 3777, + 3188, 3193, 3797, 3818, 3833, 3845, 3866, 3887, 3908, 3929, + + 3950, 3195, 3970, 3979, 4000, 4021, 4042, 4063, 4072, 4093, + 4114, 4135, 4156, 4177, 4198, 4218, 4238, 4259, 4280, 4301, + 4322, 3201, 4343, 4364, 4385, 4406, 4427, 4448, 4469, 4490, + 4511, 4532, 4553, 4574, 4595, 4616, 4637, 4658, 4679, 3267, + 4700, 4721, 4742, 4763, 4784, 4805, 4826, 4847, 4868, 4889, + 4910, 4931, 4952, 4973, 4994, 5015, 5036, 5057, 5078, 2951, + 5099 } ; -static yyconst flex_int16_t yy_def[1045] = +static yyconst flex_int16_t yy_def[1062] = { 0, - 952, 952, 953, 953, 954, 954, 955, 955, 956, 956, - 957, 957, 958, 958, 959, 959, 960, 960, 961, 961, - 962, 962, 952, 23, 952, 25, 952, 952, 952, 29, - 952, 952, 963, 952, 952, 964, 952, 964, 952, 952, - 952, 965, 965, 965, 952, 45, 966, 952, 966, 967, - 967, 952, 952, 952, 952, 968, 968, 952, 952, 952, - 952, 952, 952, 952, 952, 952, 963, 952, 952, 952, - 952, 952, 952, 952, 963, 952, 952, 952, 952, 969, - 969, 970, 963, 970, 952, 952, 971, 952, 971, 952, - 952, 952, 972, 972, 952, 952, 973, 88, 973, 952, - - 952, 952, 952, 952, 974, 975, 976, 974, 974, 952, - 952, 110, 952, 952, 952, 952, 111, 952, 963, 952, - 963, 963, 952, 952, 117, 952, 964, 952, 127, 952, - 952, 952, 952, 952, 977, 978, 952, 952, 952, 978, - 978, 978, 978, 978, 978, 978, 978, 978, 978, 978, - 978, 978, 978, 978, 978, 952, 952, 979, 127, 952, - 952, 952, 952, 965, 965, 117, 117, 965, 45, 965, - 45, 952, 45, 966, 966, 967, 967, 952, 952, 968, - 968, 952, 952, 952, 952, 952, 980, 981, 982, 982, - 970, 89, 970, 89, 952, 952, 952, 952, 952, 952, - - 952, 952, 89, 972, 99, 99, 952, 952, 952, 99, - 952, 983, 952, 952, 952, 952, 952, 952, 952, 952, - 952, 984, 952, 952, 952, 976, 952, 985, 952, 952, - 110, 110, 952, 952, 952, 230, 952, 952, 963, 952, - 986, 963, 963, 963, 963, 963, 963, 963, 963, 963, - 952, 987, 952, 952, 952, 952, 952, 952, 952, 952, - 952, 988, 977, 988, 978, 978, 978, 978, 978, 978, - 978, 978, 978, 952, 978, 978, 978, 978, 978, 952, - 978, 978, 978, 978, 978, 978, 952, 978, 978, 978, - 978, 978, 978, 978, 978, 978, 978, 978, 989, 989, - - 990, 990, 991, 992, 952, 993, 952, 952, 994, 952, - 952, 965, 965, 965, 989, 989, 952, 317, 952, 952, - 952, 952, 952, 952, 981, 995, 982, 982, 995, 970, - 952, 952, 996, 997, 952, 952, 952, 952, 972, 952, - 998, 952, 952, 999, 952, 983, 983, 952, 952, 952, - 952, 952, 952, 952, 952, 1000, 952, 230, 952, 1001, - 983, 1002, 985, 952, 1002, 952, 952, 952, 1003, 1003, - 952, 963, 952, 1004, 963, 1005, 983, 1005, 963, 963, - 963, 963, 963, 963, 963, 1006, 952, 952, 952, 1007, - 952, 952, 952, 952, 952, 952, 952, 1008, 1008, 978, - - 978, 978, 978, 978, 978, 978, 978, 978, 978, 952, - 1008, 978, 978, 952, 978, 978, 978, 978, 978, 952, - 1008, 978, 978, 978, 978, 978, 978, 978, 952, 1008, - 978, 978, 978, 978, 978, 978, 978, 978, 978, 978, - 978, 978, 989, 989, 952, 989, 990, 952, 952, 952, - 952, 952, 1009, 983, 965, 994, 952, 952, 952, 989, - 989, 989, 317, 952, 952, 952, 952, 952, 995, 952, - 1003, 1003, 952, 952, 952, 952, 952, 952, 952, 952, - 952, 1010, 952, 952, 952, 983, 1011, 952, 983, 952, - 952, 952, 952, 952, 952, 952, 952, 952, 1012, 952, - - 952, 983, 1013, 1002, 1002, 952, 1014, 952, 1003, 1003, - 952, 1003, 952, 1015, 963, 963, 963, 1005, 983, 1016, - 963, 1005, 963, 963, 963, 963, 963, 952, 952, 1017, - 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, - 952, 978, 978, 978, 978, 978, 978, 978, 978, 952, - 978, 978, 414, 414, 414, 978, 978, 978, 978, 952, - 952, 1018, 978, 978, 952, 978, 978, 978, 978, 978, - 952, 978, 978, 978, 978, 978, 978, 978, 978, 978, - 952, 978, 989, 952, 952, 952, 952, 1019, 952, 952, - 983, 1020, 965, 965, 952, 952, 952, 989, 952, 952, - - 952, 952, 952, 952, 1003, 1003, 1003, 952, 952, 952, - 952, 952, 581, 952, 952, 952, 952, 1021, 952, 952, - 952, 952, 952, 952, 952, 952, 952, 952, 952, 1022, - 952, 952, 952, 952, 952, 1003, 1023, 963, 952, 952, - 1024, 963, 963, 963, 963, 963, 952, 952, 952, 952, - 952, 952, 952, 952, 952, 978, 978, 978, 978, 978, - 978, 550, 978, 554, 554, 978, 550, 978, 978, 1018, - 978, 978, 978, 978, 978, 978, 952, 571, 678, 1025, - 978, 678, 978, 978, 978, 978, 978, 952, 978, 952, - 613, 1025, 978, 952, 952, 952, 952, 1026, 952, 952, - - 952, 952, 952, 952, 952, 952, 1003, 952, 952, 952, - 952, 952, 952, 952, 952, 952, 952, 983, 952, 952, - 952, 952, 952, 952, 983, 952, 952, 952, 963, 963, - 983, 963, 963, 963, 952, 952, 952, 952, 952, 978, - 952, 952, 1027, 978, 952, 978, 978, 978, 978, 978, - 978, 978, 978, 978, 978, 978, 978, 978, 952, 1028, - 1029, 978, 978, 978, 978, 952, 688, 767, 1025, 978, - 767, 952, 952, 952, 952, 983, 952, 952, 952, 952, - 952, 952, 952, 952, 952, 952, 983, 1030, 952, 952, - 983, 952, 983, 1031, 963, 963, 952, 952, 952, 952, - - 1027, 978, 978, 978, 978, 978, 978, 978, 1028, 1032, - 952, 978, 978, 978, 1033, 952, 983, 952, 952, 952, - 952, 1030, 952, 952, 952, 952, 963, 1031, 1030, 963, - 963, 963, 952, 1034, 952, 952, 952, 952, 978, 952, - 952, 978, 1032, 952, 678, 978, 978, 978, 952, 952, - 952, 952, 952, 1030, 1035, 952, 1030, 952, 952, 1036, - 963, 1031, 1030, 1037, 963, 1031, 963, 963, 1038, 952, - 952, 952, 952, 952, 952, 978, 952, 1025, 952, 1025, - 978, 978, 978, 978, 767, 952, 952, 952, 1039, 952, - 952, 952, 952, 952, 952, 1040, 963, 963, 963, 963, - - 952, 952, 952, 952, 952, 952, 952, 978, 978, 978, - 952, 952, 952, 952, 952, 1030, 952, 952, 963, 963, - 1030, 963, 963, 952, 952, 952, 952, 952, 1025, 978, - 952, 952, 1041, 1042, 1030, 952, 1030, 963, 952, 978, - 952, 1025, 952, 952, 978, 952, 978, 1043, 1043, 1044, - 1044, 0, 952, 952, 952, 952, 952, 952, 952, 952, - 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, - 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, - 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, - 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, - - 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, - 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, - 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, - 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, - 952, 952, 952, 952 + 966, 966, 967, 967, 968, 968, 969, 969, 970, 970, + 971, 971, 972, 972, 973, 973, 974, 974, 975, 975, + 976, 976, 966, 23, 966, 25, 966, 966, 966, 29, + 966, 966, 977, 966, 966, 978, 966, 978, 966, 966, + 966, 979, 979, 979, 966, 45, 980, 966, 980, 981, + 981, 966, 966, 966, 966, 982, 982, 966, 966, 966, + 966, 966, 966, 966, 966, 966, 977, 966, 966, 966, + 966, 966, 966, 966, 977, 966, 966, 966, 966, 983, + 983, 984, 977, 984, 966, 966, 985, 966, 985, 966, + 966, 966, 986, 986, 966, 966, 987, 88, 987, 966, + + 966, 966, 966, 966, 988, 989, 990, 988, 988, 966, + 966, 110, 966, 966, 966, 966, 111, 966, 977, 966, + 977, 977, 966, 966, 117, 966, 978, 966, 127, 966, + 966, 966, 966, 966, 991, 992, 966, 966, 966, 992, + 992, 992, 992, 992, 992, 992, 992, 992, 992, 992, + 992, 992, 992, 992, 992, 992, 966, 966, 993, 127, + 966, 966, 966, 966, 979, 979, 117, 117, 979, 45, + 979, 45, 966, 45, 980, 980, 981, 981, 966, 966, + 982, 982, 966, 966, 966, 966, 966, 994, 995, 996, + 996, 984, 89, 984, 89, 966, 966, 966, 966, 966, + + 966, 966, 966, 89, 986, 99, 99, 966, 966, 966, + 99, 966, 997, 966, 966, 966, 966, 966, 966, 966, + 966, 966, 998, 966, 966, 966, 990, 966, 999, 966, + 966, 110, 110, 966, 966, 966, 231, 966, 966, 977, + 966, 1000, 977, 977, 977, 977, 977, 977, 977, 977, + 977, 966, 1001, 966, 966, 966, 966, 966, 966, 966, + 966, 966, 1002, 991, 1002, 992, 992, 992, 992, 992, + 992, 992, 992, 992, 966, 992, 992, 992, 992, 992, + 966, 992, 992, 992, 992, 992, 966, 992, 992, 992, + 992, 992, 992, 992, 992, 992, 992, 992, 992, 992, + + 1003, 1003, 1004, 1004, 1005, 1006, 966, 1007, 966, 966, + 1008, 966, 966, 979, 979, 979, 1003, 1003, 966, 319, + 966, 966, 966, 966, 966, 966, 995, 1009, 996, 996, + 1009, 984, 966, 966, 1010, 1011, 966, 966, 966, 966, + 986, 966, 1012, 966, 966, 1013, 966, 997, 997, 966, + 966, 966, 966, 966, 966, 966, 966, 1014, 966, 231, + 966, 1015, 997, 1016, 999, 966, 1016, 966, 966, 966, + 1017, 1017, 966, 977, 966, 1018, 977, 1019, 997, 1019, + 977, 977, 977, 977, 977, 977, 977, 1020, 966, 966, + 966, 1021, 966, 966, 966, 966, 966, 966, 966, 1022, + + 1022, 992, 992, 992, 992, 992, 992, 992, 992, 992, + 992, 966, 1022, 992, 992, 992, 992, 992, 992, 992, + 992, 966, 1022, 992, 992, 992, 992, 992, 992, 966, + 1022, 992, 992, 992, 992, 992, 992, 992, 992, 992, + 992, 992, 992, 992, 992, 1003, 1003, 966, 1003, 1004, + 966, 966, 966, 966, 966, 1023, 997, 979, 1008, 966, + 966, 966, 1003, 1003, 1003, 319, 966, 966, 966, 966, + 966, 1009, 966, 1017, 1017, 966, 966, 966, 966, 966, + 966, 966, 966, 966, 1024, 966, 966, 966, 997, 1025, + 966, 997, 966, 966, 966, 966, 966, 966, 966, 966, + + 966, 1026, 966, 966, 997, 1027, 1016, 1016, 966, 1028, + 966, 1017, 1017, 966, 1017, 966, 1029, 977, 977, 977, + 1019, 997, 1030, 977, 1019, 977, 977, 977, 977, 977, + 966, 966, 1031, 966, 966, 966, 966, 966, 966, 966, + 966, 966, 966, 966, 992, 992, 992, 992, 992, 992, + 992, 992, 966, 992, 992, 966, 1032, 992, 992, 992, + 992, 966, 966, 1033, 992, 992, 966, 992, 992, 992, + 992, 966, 992, 992, 992, 992, 992, 992, 992, 992, + 992, 992, 992, 966, 992, 1003, 966, 966, 966, 966, + 1034, 966, 966, 997, 1035, 979, 979, 966, 966, 966, + + 1003, 966, 966, 966, 966, 966, 966, 1017, 1017, 1017, + 966, 966, 966, 966, 966, 584, 966, 966, 966, 966, + 1036, 966, 966, 966, 966, 966, 966, 966, 966, 966, + 966, 966, 1037, 966, 966, 966, 966, 966, 1017, 1038, + 977, 966, 966, 1039, 977, 977, 977, 977, 977, 966, + 966, 966, 966, 966, 966, 966, 966, 966, 992, 992, + 992, 992, 992, 992, 553, 992, 1032, 992, 553, 992, + 992, 1033, 992, 992, 992, 992, 992, 992, 966, 572, + 680, 1040, 992, 680, 992, 992, 992, 992, 992, 992, + 992, 966, 992, 966, 616, 1040, 992, 966, 966, 966, + + 966, 1041, 966, 966, 966, 966, 966, 966, 966, 966, + 1017, 966, 966, 966, 966, 966, 966, 966, 966, 966, + 966, 997, 966, 966, 966, 966, 966, 966, 997, 966, + 966, 966, 977, 977, 997, 977, 977, 977, 966, 966, + 966, 966, 966, 992, 966, 966, 1042, 992, 966, 992, + 992, 992, 992, 992, 992, 966, 992, 992, 992, 992, + 992, 992, 992, 966, 1043, 1044, 992, 992, 992, 992, + 992, 966, 692, 773, 1040, 992, 773, 966, 966, 966, + 966, 997, 966, 966, 966, 966, 966, 966, 966, 966, + 966, 966, 997, 1045, 966, 966, 997, 966, 997, 1046, + + 977, 977, 966, 966, 966, 966, 1042, 992, 992, 992, + 992, 992, 992, 992, 1043, 1047, 966, 992, 992, 992, + 992, 1048, 966, 997, 966, 966, 966, 966, 1045, 966, + 966, 966, 966, 977, 1046, 1045, 977, 977, 977, 966, + 1049, 966, 966, 966, 966, 992, 966, 966, 992, 1047, + 966, 680, 992, 992, 992, 966, 1050, 966, 966, 966, + 966, 966, 966, 1045, 1051, 966, 1045, 966, 966, 1052, + 977, 1046, 1045, 1053, 977, 1046, 977, 977, 1054, 966, + 966, 966, 966, 966, 966, 992, 966, 1040, 966, 1040, + 992, 992, 992, 992, 1050, 966, 1055, 773, 966, 966, + + 966, 1056, 966, 966, 966, 966, 966, 966, 1057, 977, + 977, 977, 977, 966, 966, 966, 966, 966, 966, 966, + 992, 992, 992, 1055, 966, 966, 966, 966, 966, 1045, + 966, 966, 977, 977, 1045, 977, 977, 966, 966, 966, + 966, 966, 1040, 992, 966, 966, 1058, 1059, 1045, 966, + 1045, 977, 966, 992, 966, 1040, 966, 966, 992, 966, + 992, 1060, 1060, 1061, 1061, 0, 966, 966, 966, 966, + 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, + 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, + 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, + + 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, + 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, + 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, + 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, + 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, + 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, + 966 } ; -static yyconst flex_int16_t yy_nxt[5191] = +static yyconst flex_uint16_t yy_nxt[5183] = { 0, 28, 29, 30, 29, 31, 28, 32, 33, 28, 28, 28, 28, 34, 28, 34, 35, 28, 28, 28, 28, @@ -817,16 +836,16 @@ static yyconst flex_int16_t yy_nxt[5191] = 46, 46, 46, 46, 46, 46, 46, 39, 40, 41, 45, 46, 48, 48, 48, 48, 53, 54, 53, 54, - 48, 48, 60, 60, 63, 63, 66, 950, 66, 534, - 264, 67, 535, 67, 49, 49, 51, 51, 72, 55, + 48, 48, 60, 60, 63, 63, 66, 964, 66, 537, + 265, 67, 538, 67, 49, 49, 51, 51, 72, 55, 72, 55, 57, 57, 61, 61, 64, 64, 68, 72, - 68, 72, 66, 285, 72, 264, 72, 75, 73, 367, - 73, 66, 48, 48, 48, 48, 75, 351, 101, 294, + 68, 72, 66, 285, 72, 265, 72, 75, 73, 369, + 73, 66, 48, 48, 48, 48, 75, 353, 101, 298, 48, 48, 120, 120, 76, 69, 70, 69, 70, 102, - 114, 115, 114, 76, 121, 116, 118, 116, 160, 160, - 160, 178, 101, 101, 101, 122, 126, 101, 179, 264, + 114, 115, 114, 76, 121, 116, 118, 116, 161, 161, + 161, 179, 101, 101, 101, 122, 126, 101, 180, 265, - 101, 77, 78, 117, 102, 117, 431, 946, 102, 382, + 101, 77, 78, 117, 102, 117, 432, 960, 102, 384, 77, 78, 79, 80, 81, 80, 82, 79, 79, 83, 84, 84, 84, 79, 79, 85, 79, 86, 79, 84, 84, 84, 82, 79, 87, 79, 88, 79, 84, 89, @@ -839,544 +858,544 @@ static yyconst flex_int16_t yy_nxt[5191] = 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 90, - 100, 92, 97, 99, 103, 104, 103, 105, 101, 398, - 106, 107, 108, 108, 264, 101, 109, 101, 105, 102, - 108, 108, 108, 105, 418, 110, 102, 111, 102, 108, + 100, 92, 97, 99, 103, 104, 103, 105, 101, 400, + 106, 107, 108, 108, 265, 101, 109, 101, 105, 102, + 108, 108, 108, 105, 420, 110, 102, 111, 102, 108, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, - 112, 112, 112, 112, 101, 172, 113, 110, 112, 123, - 123, 123, 173, 127, 120, 102, 101, 128, 158, 207, - 264, 101, 120, 124, 116, 159, 288, 102, 101, 128, - - 289, 101, 125, 952, 208, 264, 163, 163, 163, 102, - 101, 116, 117, 209, 173, 127, 130, 131, 165, 132, - 133, 102, 264, 385, 952, 283, 134, 159, 383, 166, - 311, 135, 136, 137, 138, 139, 296, 140, 141, 142, + 112, 112, 112, 112, 101, 173, 113, 110, 112, 123, + 123, 123, 174, 127, 120, 102, 101, 128, 159, 208, + 265, 101, 805, 124, 116, 160, 288, 102, 101, 128, + + 289, 101, 125, 966, 209, 265, 164, 164, 164, 102, + 101, 116, 117, 210, 174, 127, 130, 131, 166, 132, + 133, 102, 966, 387, 334, 284, 134, 160, 313, 167, + 335, 135, 136, 137, 138, 139, 120, 140, 141, 142, 143, 144, 145, 146, 147, 148, 136, 136, 149, 136, - 150, 151, 136, 152, 153, 154, 136, 155, 136, 146, - 136, 156, 157, 161, 161, 161, 163, 163, 163, 116, - 120, 952, 799, 264, 120, 101, 101, 131, 165, 163, - 163, 163, 131, 264, 116, 121, 162, 117, 264, 167, - 265, 165, 266, 168, 178, 264, 122, 404, 182, 178, - - 334, 183, 166, 184, 337, 267, 185, 268, 160, 160, - 160, 120, 264, 383, 401, 113, 163, 163, 163, 164, - 101, 156, 157, 164, 164, 164, 156, 157, 165, 351, - 164, 286, 164, 164, 164, 164, 287, 169, 120, 167, - 384, 170, 171, 171, 171, 171, 171, 171, 171, 171, - 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, - 171, 171, 171, 171, 171, 171, 264, 120, 382, 169, - 171, 103, 104, 103, 186, 116, 276, 187, 188, 264, - 277, 116, 101, 101, 126, 186, 161, 161, 161, 952, - 186, 264, 189, 117, 111, 116, 101, 352, 101, 116, - - 952, 368, 101, 952, 126, 542, 101, 102, 287, 162, - 382, 261, 295, 117, 219, 220, 952, 117, 159, 211, - 211, 211, 264, 113, 189, 114, 115, 114, 186, 332, - 340, 187, 188, 212, 326, 333, 341, 101, 113, 186, - 214, 327, 213, 215, 186, 264, 189, 216, 111, 433, - 159, 217, 218, 264, 943, 219, 220, 221, 223, 223, - 223, 103, 104, 103, 186, 400, 264, 222, 114, 115, - 114, 186, 413, 327, 222, 186, 290, 113, 189, 191, - 186, 224, 186, 191, 191, 191, 291, 186, 101, 223, - 223, 223, 191, 191, 191, 191, 120, 192, 264, 102, - - 398, 193, 227, 227, 227, 114, 115, 114, 186, 264, - 402, 222, 224, 239, 240, 239, 228, 264, 278, 186, - 237, 237, 237, 186, 186, 229, 222, 241, 284, 192, - 195, 799, 264, 382, 186, 264, 242, 405, 138, 186, - 264, 406, 196, 238, 329, 197, 254, 254, 254, 198, - 297, 327, 199, 292, 200, 264, 293, 255, 201, 255, - 124, 202, 191, 298, 422, 423, 191, 191, 191, 256, - 264, 101, 952, 158, 264, 191, 191, 191, 191, 952, - 203, 432, 102, 327, 193, 251, 251, 251, 952, 952, - 952, 252, 257, 386, 257, 952, 403, 257, 257, 124, - - 313, 124, 299, 300, 299, 264, 952, 952, 253, 164, - 387, 313, 203, 204, 952, 423, 313, 258, 204, 204, - 307, 260, 101, 301, 264, 952, 204, 204, 204, 264, - 952, 205, 260, 102, 264, 128, 952, 260, 261, 127, - 414, 952, 214, 128, 407, 215, 415, 952, 939, 216, - 952, 164, 952, 217, 218, 301, 419, 219, 220, 221, - 173, 952, 307, 205, 204, 264, 163, 163, 163, 204, - 204, 127, 306, 101, 264, 158, 264, 204, 204, 204, - 269, 264, 210, 270, 102, 545, 128, 271, 264, 307, - 278, 272, 173, 279, 273, 952, 274, 275, 434, 280, - - 281, 264, 163, 163, 163, 568, 952, 952, 120, 282, - 164, 952, 314, 159, 210, 223, 223, 223, 108, 173, - 425, 307, 107, 108, 108, 307, 952, 108, 261, 108, - 264, 108, 108, 108, 108, 264, 523, 952, 224, 799, - 108, 223, 223, 223, 108, 159, 426, 264, 108, 108, - 108, 173, 952, 108, 952, 230, 424, 108, 108, 108, - 108, 437, 231, 952, 224, 120, 108, 232, 232, 232, - 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, - 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, - 232, 369, 370, 369, 231, 232, 214, 264, 645, 215, - - 233, 937, 301, 216, 396, 397, 396, 217, 218, 438, - 264, 234, 235, 221, 120, 214, 439, 264, 215, 308, - 308, 308, 216, 349, 952, 349, 217, 218, 349, 349, - 219, 305, 221, 309, 301, 440, 163, 163, 163, 350, - 243, 952, 310, 244, 163, 163, 163, 245, 937, 952, - 312, 246, 247, 264, 352, 248, 249, 250, 450, 307, - 343, 343, 343, 299, 300, 299, 344, 307, 315, 316, - 315, 164, 264, 482, 212, 164, 164, 164, 569, 120, - 164, 212, 164, 213, 164, 164, 164, 164, 442, 317, - 483, 307, 189, 164, 318, 318, 318, 318, 318, 318, - - 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, - 318, 318, 318, 318, 318, 318, 318, 318, 330, 339, - 527, 317, 318, 264, 189, 264, 264, 952, 952, 260, - 260, 346, 346, 346, 330, 260, 192, 205, 952, 952, - 223, 223, 223, 351, 408, 347, 356, 441, 409, 264, - 264, 359, 359, 359, 348, 550, 257, 360, 257, 936, - 264, 257, 257, 224, 544, 212, 264, 416, 192, 205, - 223, 223, 223, 108, 229, 417, 435, 108, 108, 108, - 559, 258, 108, 436, 108, 264, 108, 108, 108, 108, - 376, 377, 376, 224, 120, 108, 345, 361, 361, 361, - - 264, 345, 345, 345, 378, 517, 120, 345, 345, 547, - 345, 363, 345, 379, 558, 264, 264, 345, 482, 345, - 364, 345, 349, 427, 349, 357, 212, 349, 349, 578, - 935, 372, 373, 372, 526, 483, 428, 374, 350, 443, - 444, 443, 251, 251, 251, 241, 264, 345, 345, 345, - 223, 223, 223, 108, 242, 264, 124, 108, 108, 108, - 582, 543, 108, 264, 108, 253, 108, 108, 108, 108, - 491, 110, 491, 224, 414, 108, 112, 112, 112, 112, + 150, 151, 152, 153, 154, 155, 136, 156, 136, 146, + 136, 157, 158, 162, 162, 162, 164, 164, 164, 116, + 120, 966, 120, 384, 120, 101, 101, 131, 166, 164, + 164, 164, 131, 265, 116, 121, 163, 117, 265, 168, + 266, 166, 267, 169, 179, 265, 122, 279, 183, 179, + + 336, 184, 167, 185, 339, 268, 186, 269, 161, 161, + 161, 120, 265, 385, 800, 113, 164, 164, 164, 165, + 101, 157, 158, 165, 165, 165, 157, 158, 166, 353, + 165, 286, 165, 165, 165, 165, 287, 170, 120, 168, + 386, 171, 172, 172, 172, 172, 172, 172, 172, 172, + 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, + 172, 172, 172, 172, 172, 172, 265, 120, 384, 170, + 172, 103, 104, 103, 187, 116, 277, 188, 189, 265, + 278, 116, 101, 101, 126, 187, 162, 162, 162, 966, + 187, 265, 190, 117, 111, 116, 101, 265, 101, 116, + + 966, 294, 101, 966, 126, 549, 101, 102, 287, 163, + 384, 262, 297, 117, 220, 221, 966, 117, 160, 212, + 212, 212, 303, 113, 190, 114, 115, 114, 187, 120, + 342, 188, 189, 213, 328, 265, 343, 101, 113, 187, + 215, 329, 214, 216, 187, 295, 190, 217, 111, 296, + 160, 218, 219, 957, 303, 220, 221, 222, 224, 224, + 224, 103, 104, 103, 187, 385, 265, 223, 114, 115, + 114, 187, 265, 329, 223, 187, 290, 113, 190, 192, + 187, 225, 187, 192, 192, 192, 291, 187, 101, 224, + 224, 224, 192, 192, 192, 192, 406, 193, 966, 102, + + 262, 194, 228, 228, 228, 114, 115, 114, 187, 966, + 265, 223, 225, 240, 241, 240, 229, 584, 265, 187, + 238, 238, 238, 187, 187, 230, 223, 242, 299, 193, + 196, 354, 265, 966, 187, 370, 243, 966, 138, 187, + 966, 300, 197, 239, 966, 198, 255, 255, 255, 199, + 265, 966, 200, 292, 201, 966, 293, 256, 202, 256, + 124, 203, 192, 315, 265, 400, 192, 192, 192, 257, + 402, 101, 165, 159, 315, 192, 192, 192, 192, 315, + 204, 331, 102, 309, 194, 252, 252, 252, 329, 966, + 403, 253, 258, 966, 258, 265, 805, 258, 258, 124, + + 966, 265, 301, 302, 301, 165, 265, 316, 254, 265, + 424, 966, 204, 205, 174, 407, 309, 259, 205, 205, + 329, 261, 101, 303, 265, 415, 205, 205, 205, 409, + 966, 206, 261, 102, 265, 128, 966, 261, 966, 127, + 408, 966, 215, 128, 439, 216, 174, 966, 388, 217, + 966, 165, 262, 218, 219, 303, 124, 220, 221, 222, + 174, 966, 309, 206, 205, 389, 164, 164, 164, 205, + 205, 127, 308, 101, 265, 159, 265, 205, 205, 205, + 270, 265, 211, 271, 102, 265, 128, 272, 404, 309, + 279, 273, 174, 280, 274, 966, 275, 276, 265, 281, + + 282, 427, 164, 164, 164, 265, 966, 966, 966, 283, + 966, 966, 265, 160, 211, 224, 224, 224, 108, 966, + 405, 265, 107, 108, 108, 309, 410, 108, 445, 108, + 411, 108, 108, 108, 108, 371, 372, 371, 225, 418, + 108, 224, 224, 224, 108, 160, 265, 419, 108, 108, + 108, 265, 265, 108, 953, 231, 805, 108, 108, 108, + 108, 559, 232, 433, 225, 426, 108, 233, 233, 233, + 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, + 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, + 233, 398, 399, 398, 232, 233, 215, 265, 265, 216, + + 234, 265, 265, 217, 301, 302, 301, 218, 219, 441, + 663, 235, 236, 222, 120, 215, 438, 440, 216, 310, + 310, 310, 217, 351, 966, 351, 218, 219, 351, 351, + 220, 307, 222, 311, 265, 265, 164, 164, 164, 352, + 244, 966, 312, 245, 164, 164, 164, 246, 547, 966, + 314, 247, 248, 443, 265, 249, 250, 251, 265, 309, + 345, 345, 345, 446, 447, 446, 346, 309, 317, 318, + 317, 165, 265, 265, 213, 165, 165, 165, 442, 425, + 165, 434, 165, 214, 165, 165, 165, 165, 354, 319, + 569, 309, 453, 165, 320, 320, 320, 320, 320, 320, + + 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, + 320, 320, 320, 320, 320, 320, 320, 320, 332, 341, + 265, 319, 320, 190, 265, 265, 265, 966, 966, 261, + 261, 348, 348, 348, 332, 261, 193, 206, 966, 966, + 224, 224, 224, 552, 120, 349, 358, 421, 435, 265, + 545, 361, 361, 361, 350, 190, 258, 362, 258, 265, + 416, 258, 258, 225, 120, 213, 417, 428, 193, 206, + 224, 224, 224, 108, 230, 520, 951, 108, 108, 108, + 429, 259, 108, 265, 108, 530, 108, 108, 108, 108, + 378, 379, 378, 225, 265, 108, 347, 363, 363, 363, + + 546, 347, 347, 347, 380, 444, 265, 347, 347, 265, + 347, 365, 347, 381, 951, 265, 436, 347, 120, 347, + 366, 347, 351, 437, 351, 359, 265, 351, 351, 548, + 353, 374, 375, 374, 449, 302, 449, 376, 352, 550, + 265, 265, 252, 252, 252, 242, 526, 347, 347, 347, + 224, 224, 224, 108, 243, 553, 124, 108, 108, 108, + 554, 553, 108, 159, 108, 254, 108, 108, 108, 108, + 303, 110, 494, 225, 494, 108, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, - 446, 300, 446, 110, 112, 237, 237, 237, 186, 264, - 935, 222, 343, 343, 343, 158, 120, 546, 344, 186, - 492, 264, 301, 952, 186, 120, 212, 380, 238, 380, - 327, 264, 380, 380, 264, 213, 389, 389, 389, 391, - 551, 391, 390, 381, 391, 391, 489, 255, 489, 255, - 264, 489, 489, 548, 301, 392, 552, 549, 489, 256, - 489, 357, 327, 489, 489, 934, 899, 393, 443, 444, - 443, 394, 410, 410, 410, 410, 410, 410, 410, 410, - 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, - 410, 410, 410, 411, 136, 410, 410, 410, 410, 136, - - 136, 412, 136, 136, 136, 136, 136, 136, 136, 136, + 265, 265, 303, 110, 112, 238, 238, 238, 187, 265, + 670, 223, 345, 345, 345, 265, 120, 485, 346, 187, + 561, 555, 495, 966, 187, 213, 213, 382, 239, 382, + 329, 551, 382, 382, 486, 214, 391, 391, 391, 393, + 265, 393, 392, 383, 393, 393, 265, 256, 351, 256, + 351, 313, 265, 351, 351, 394, 265, 416, 575, 257, + 558, 950, 329, 492, 352, 492, 949, 395, 492, 492, + 560, 396, 412, 412, 412, 412, 412, 412, 412, 412, + 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, + 412, 412, 412, 413, 136, 412, 412, 412, 412, 136, + + 136, 414, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, - 136, 136, 136, 410, 410, 410, 410, 410, 420, 420, - 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, - 420, 420, 420, 420, 420, 420, 420, 420, 420, 421, - 136, 420, 420, 420, 420, 136, 136, 136, 136, 136, + 136, 136, 136, 412, 412, 412, 412, 412, 422, 422, + 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, + 422, 422, 422, 422, 422, 422, 422, 422, 422, 423, + 136, 422, 422, 422, 422, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, - 136, 136, 136, 136, 136, 136, 136, 136, 136, 420, - 420, 420, 420, 420, 429, 429, 429, 429, 429, 429, - 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 422, + 422, 422, 422, 422, 430, 430, 430, 430, 430, 430, + 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, - 429, 429, 429, 429, 429, 430, 136, 429, 429, 429, - 429, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 430, 430, 430, 430, 430, 431, 136, 430, 430, 430, + 430, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, - 136, 136, 136, 136, 136, 429, 429, 429, 429, 429, - 452, 452, 452, 264, 264, 349, 453, 349, 311, 264, - 349, 349, 556, 557, 212, 470, 933, 264, 932, 570, - 927, 350, 327, 310, 345, 454, 454, 454, 264, 345, - 345, 345, 163, 163, 163, 345, 345, 952, 345, 456, - 345, 458, 459, 458, 566, 345, 952, 345, 457, 345, - 550, 315, 316, 315, 327, 307, 952, 460, 461, 460, - - 462, 316, 462, 306, 307, 264, 306, 396, 397, 396, - 264, 567, 952, 264, 307, 345, 345, 345, 264, 952, - 307, 579, 264, 307, 163, 163, 163, 164, 926, 264, - 952, 164, 164, 164, 550, 491, 164, 491, 164, 550, - 164, 164, 164, 164, 925, 317, 571, 307, 575, 164, - 463, 463, 463, 463, 463, 463, 463, 463, 463, 463, - 463, 463, 463, 463, 463, 463, 463, 463, 463, 463, - 463, 463, 463, 463, 471, 472, 471, 317, 463, 396, - 397, 396, 264, 264, 952, 492, 486, 486, 486, 530, - 264, 952, 487, 580, 255, 189, 255, 357, 488, 346, - - 346, 346, 952, 343, 343, 343, 531, 576, 574, 348, - 350, 488, 541, 347, 541, 264, 264, 212, 223, 223, - 223, 120, 348, 572, 499, 573, 213, 189, 497, 497, - 497, 105, 212, 540, 106, 107, 659, 502, 502, 502, - 264, 500, 105, 503, 223, 223, 223, 105, 264, 488, - 120, 498, 369, 370, 369, 581, 504, 796, 577, 799, - 364, 643, 509, 510, 509, 540, 264, 224, 356, 524, - 120, 524, 524, 120, 524, 224, 550, 376, 377, 376, - 113, 345, 361, 361, 361, 224, 345, 345, 345, 521, - 264, 378, 345, 345, 505, 345, 363, 345, 120, 120, - - 379, 120, 345, 514, 345, 364, 345, 512, 370, 512, - 599, 241, 599, 356, 662, 518, 519, 518, 264, 525, - 515, 520, 525, 486, 486, 486, 120, 521, 381, 487, - 224, 264, 345, 345, 345, 488, 646, 522, 379, 522, - 671, 924, 522, 522, 264, 264, 348, 372, 373, 372, - 656, 389, 389, 389, 538, 539, 538, 583, 300, 583, - 600, 241, 255, 657, 255, 583, 444, 583, 264, 675, - 242, 261, 120, 264, 256, 540, 120, 660, 301, 163, - 163, 163, 591, 591, 591, 588, 618, 517, 592, 471, - 472, 471, 488, 212, 488, 489, 264, 489, 311, 763, - - 489, 489, 589, 952, 868, 457, 661, 540, 553, 553, - 301, 553, 553, 553, 553, 553, 553, 553, 553, 553, - 553, 553, 553, 553, 553, 553, 553, 553, 553, 554, - 555, 553, 553, 553, 553, 555, 555, 555, 555, 555, - 555, 555, 555, 555, 555, 555, 555, 555, 555, 555, - 555, 555, 555, 555, 555, 555, 555, 555, 555, 264, - 553, 553, 553, 553, 560, 561, 560, 163, 163, 163, - 562, 921, 952, 921, 486, 486, 486, 663, 264, 593, - 595, 596, 595, 233, 264, 618, 306, 460, 461, 460, - 307, 488, 392, 306, 625, 626, 563, 348, 564, 550, - - 264, 540, 952, 307, 393, 491, 120, 491, 394, 668, - 307, 223, 223, 223, 565, 345, 454, 454, 454, 264, - 345, 345, 345, 223, 223, 223, 345, 345, 594, 345, - 456, 345, 120, 540, 224, 504, 345, 853, 345, 457, - 345, 597, 163, 597, 658, 644, 224, 306, 598, 316, - 598, 598, 461, 598, 306, 492, 264, 306, 640, 605, - 606, 605, 540, 641, 307, 952, 345, 345, 345, 521, - 264, 307, 923, 264, 307, 264, 666, 607, 472, 607, - 119, 685, 952, 952, 264, 497, 497, 497, 186, 667, - 264, 222, 672, 264, 540, 497, 497, 497, 186, 186, - - 952, 187, 188, 673, 186, 497, 497, 497, 186, 186, - 676, 222, 264, 264, 186, 669, 189, 264, 498, 186, - 629, 629, 629, 687, 186, 572, 630, 509, 510, 509, - 264, 684, 488, 356, 636, 370, 636, 518, 519, 518, - 356, 918, 917, 224, 524, 120, 524, 113, 189, 655, - 224, 655, 636, 510, 636, 674, 120, 224, 356, 541, - 379, 541, 251, 251, 251, 538, 539, 538, 252, 264, - 540, 264, 264, 264, 264, 224, 124, 123, 123, 123, - 540, 264, 120, 120, 689, 253, 540, 264, 311, 683, - 264, 124, 686, 730, 525, 688, 547, 264, 740, 732, - - 253, 350, 540, 264, 547, 583, 444, 583, 734, 264, - 264, 873, 540, 748, 874, 808, 846, 760, 540, 410, - 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, - 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, - 411, 136, 410, 410, 410, 410, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 430, 430, 430, 430, 430, + 455, 455, 455, 494, 120, 494, 456, 265, 120, 265, + 164, 164, 164, 568, 213, 966, 474, 475, 474, 646, + 527, 120, 527, 312, 347, 457, 457, 457, 949, 347, + 347, 347, 529, 309, 570, 347, 347, 190, 347, 459, + 347, 461, 462, 461, 265, 347, 966, 347, 460, 347, + 317, 318, 317, 495, 571, 966, 463, 464, 463, 465, + + 318, 465, 308, 265, 309, 308, 398, 399, 398, 190, + 528, 966, 265, 309, 265, 347, 347, 347, 966, 309, + 265, 948, 309, 164, 164, 164, 165, 553, 265, 966, + 165, 165, 165, 947, 553, 165, 473, 165, 572, 165, + 165, 165, 165, 329, 319, 577, 309, 576, 165, 466, + 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, + 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, + 466, 466, 466, 265, 265, 329, 319, 466, 398, 399, + 398, 582, 544, 966, 544, 489, 489, 489, 585, 265, + 966, 490, 348, 348, 348, 687, 946, 491, 345, 345, + + 345, 966, 533, 543, 491, 120, 349, 256, 350, 256, + 517, 492, 213, 492, 359, 350, 492, 492, 242, 534, + 265, 214, 500, 500, 500, 105, 265, 518, 106, 107, + 580, 857, 224, 224, 224, 543, 105, 265, 502, 581, + 265, 105, 505, 505, 505, 501, 213, 583, 506, 224, + 224, 224, 485, 265, 491, 503, 371, 372, 371, 941, + 213, 507, 512, 513, 512, 366, 579, 621, 358, 486, + 359, 578, 225, 491, 113, 347, 363, 363, 363, 225, + 347, 347, 347, 352, 966, 225, 347, 347, 508, 347, + 365, 347, 378, 379, 378, 120, 347, 940, 347, 366, + + 347, 515, 372, 515, 524, 120, 380, 358, 521, 522, + 521, 489, 489, 489, 523, 381, 525, 490, 525, 120, + 524, 525, 525, 491, 225, 265, 347, 347, 347, 120, + 520, 381, 649, 265, 350, 374, 375, 374, 527, 120, + 527, 391, 391, 391, 541, 542, 541, 120, 939, 242, + 661, 666, 256, 265, 256, 556, 556, 556, 243, 265, + 562, 563, 562, 553, 257, 543, 564, 573, 647, 574, + 446, 447, 446, 265, 383, 265, 120, 265, 557, 234, + 265, 586, 302, 586, 586, 447, 586, 664, 528, 262, + 628, 629, 565, 662, 566, 265, 303, 543, 164, 164, + + 164, 594, 594, 594, 591, 621, 602, 595, 602, 648, + 567, 491, 213, 491, 164, 164, 164, 673, 494, 966, + 494, 592, 966, 265, 460, 805, 596, 492, 303, 492, + 313, 265, 492, 492, 474, 475, 474, 309, 347, 457, + 457, 457, 659, 347, 347, 347, 489, 489, 489, 347, + 347, 597, 347, 459, 347, 665, 603, 265, 265, 347, + 265, 347, 460, 347, 598, 599, 598, 265, 495, 350, + 308, 600, 164, 600, 463, 464, 463, 308, 668, 660, + 308, 677, 601, 318, 601, 543, 669, 309, 308, 347, + 347, 347, 543, 265, 309, 265, 313, 309, 601, 464, + + 601, 120, 120, 265, 308, 309, 608, 609, 608, 352, + 678, 643, 966, 610, 475, 610, 644, 543, 394, 966, + 671, 309, 524, 685, 543, 500, 500, 500, 187, 966, + 395, 188, 189, 119, 396, 265, 966, 938, 801, 187, + 265, 632, 632, 632, 187, 736, 190, 633, 501, 500, + 500, 500, 187, 491, 674, 223, 500, 500, 500, 187, + 688, 265, 223, 187, 225, 224, 224, 224, 187, 265, + 187, 224, 224, 224, 265, 187, 265, 113, 190, 512, + 513, 512, 265, 507, 744, 358, 676, 265, 225, 639, + 372, 639, 550, 675, 225, 358, 935, 639, 513, 639, + + 265, 686, 225, 358, 521, 522, 521, 527, 120, 527, + 689, 658, 225, 658, 691, 252, 252, 252, 265, 265, + 225, 253, 541, 542, 541, 265, 544, 381, 544, 124, + 265, 935, 543, 690, 265, 123, 123, 123, 254, 556, + 556, 556, 692, 543, 693, 120, 120, 543, 550, 124, + 265, 553, 586, 447, 586, 265, 734, 528, 254, 388, + 265, 265, 557, 265, 543, 265, 265, 124, 265, 751, + 757, 738, 808, 752, 762, 543, 389, 553, 553, 543, + 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, + 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, + + 412, 413, 136, 412, 412, 412, 412, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, - 410, 410, 410, 410, 410, 553, 553, 916, 120, 916, - 120, 553, 553, 553, 553, 553, 553, 553, 553, 553, - 553, 553, 553, 553, 553, 553, 553, 553, 553, 553, + 136, 412, 412, 412, 412, 412, 562, 563, 562, 164, + 164, 164, 564, 265, 265, 308, 701, 701, 701, 164, + 164, 164, 702, 265, 966, 164, 164, 164, 491, 265, + 966, 265, 309, 553, 750, 759, 265, 596, 265, 309, + 265, 265, 309, 753, 265, 763, 814, 265, 309, 754, + 771, 760, 573, 853, 863, 769, 567, 679, 680, 681, + 680, 679, 679, 679, 679, 679, 679, 679, 679, 679, + + 679, 679, 679, 679, 679, 679, 679, 679, 682, 683, + 679, 684, 679, 679, 683, 683, 683, 683, 683, 683, + 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, + 683, 683, 683, 683, 683, 683, 683, 683, 679, 679, + 679, 679, 679, 694, 694, 932, 694, 694, 694, 694, + 694, 694, 694, 694, 695, 694, 694, 694, 694, 694, + 694, 694, 694, 694, 696, 697, 694, 694, 694, 694, + 697, 697, 697, 697, 697, 697, 697, 697, 697, 697, + 697, 697, 697, 697, 697, 697, 697, 697, 697, 697, + 697, 697, 697, 697, 694, 694, 694, 694, 694, 598, + + 599, 598, 705, 164, 705, 308, 265, 120, 308, 600, + 164, 600, 601, 464, 601, 308, 265, 602, 308, 602, + 543, 931, 309, 543, 767, 309, 265, 608, 609, 608, + 543, 265, 309, 966, 265, 309, 711, 475, 711, 265, + 265, 265, 966, 711, 609, 711, 765, 761, 485, 966, + 966, 737, 543, 485, 265, 543, 213, 768, 553, 966, + 553, 213, 543, 550, 770, 486, 966, 603, 694, 694, + 486, 120, 818, 930, 694, 694, 694, 694, 694, 694, + 694, 694, 694, 694, 694, 694, 694, 694, 694, 694, + 694, 694, 694, 694, 694, 694, 694, 694, 345, 345, + + 345, 224, 224, 224, 346, 120, 265, 358, 361, 361, + 361, 937, 213, 621, 362, 265, 553, 224, 224, 224, + 265, 214, 213, 358, 225, 553, 639, 513, 639, 488, + 966, 230, 358, 345, 345, 345, 658, 265, 658, 346, + 225, 802, 391, 391, 391, 809, 265, 213, 392, 225, + 764, 819, 764, 256, 930, 256, 214, 543, 745, 746, + 745, 679, 966, 679, 747, 257, 265, 679, 265, 265, + 265, 812, 265, 162, 162, 162, 810, 265, 265, 553, + 455, 455, 455, 265, 679, 265, 456, 811, 265, 543, + 748, 820, 265, 265, 213, 677, 778, 813, 821, 265, + + 764, 621, 265, 312, 164, 164, 164, 553, 749, 766, + 308, 265, 846, 553, 929, 265, 488, 120, 966, 927, + 847, 926, 553, 679, 679, 113, 849, 309, 871, 679, + 679, 679, 679, 679, 679, 679, 679, 679, 679, 679, + 679, 679, 679, 679, 679, 679, 679, 679, 679, 679, + 679, 679, 679, 772, 773, 774, 773, 772, 772, 772, + 772, 772, 772, 772, 772, 772, 772, 772, 772, 772, + 772, 772, 772, 772, 775, 776, 772, 777, 772, 772, + 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, + 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, + + 776, 776, 776, 776, 772, 772, 772, 772, 772, 705, + 164, 705, 711, 609, 711, 308, 265, 265, 966, 162, + 162, 162, 489, 489, 489, 224, 224, 224, 490, 533, + 543, 502, 309, 925, 256, 966, 256, 265, 120, 213, + 848, 891, 778, 120, 265, 350, 534, 896, 503, 505, + 505, 505, 489, 489, 489, 506, 892, 265, 490, 829, + 829, 829, 543, 804, 804, 804, 854, 745, 746, 745, + 855, 113, 366, 747, 805, 350, 805, 772, 966, 772, + 838, 883, 830, 772, 884, 839, 806, 164, 164, 164, + 594, 594, 594, 591, 265, 120, 595, 120, 265, 265, + + 772, 213, 632, 632, 632, 894, 120, 821, 633, 265, + 592, 400, 944, 460, 835, 836, 835, 749, 816, 816, + 816, 265, 816, 816, 816, 225, 877, 878, 816, 816, + 840, 840, 840, 842, 886, 842, 841, 837, 842, 842, + 120, 805, 920, 805, 701, 701, 701, 912, 120, 843, + 702, 911, 265, 806, 864, 864, 864, 867, 902, 867, + 865, 844, 867, 867, 866, 845, 866, 309, 816, 265, + 816, 822, 893, 879, 265, 966, 120, 830, 805, 921, + 805, 936, 400, 919, 945, 772, 772, 871, 918, 120, + 880, 772, 772, 772, 772, 772, 772, 772, 772, 772, + + 772, 772, 772, 772, 772, 772, 772, 772, 772, 772, + 772, 772, 772, 772, 772, 816, 816, 816, 952, 816, + 816, 816, 856, 856, 856, 816, 816, 872, 873, 872, + 840, 840, 840, 874, 864, 864, 864, 120, 120, 875, + 865, 805, 265, 805, 843, 857, 866, 908, 120, 876, + 837, 876, 909, 806, 876, 876, 844, 830, 875, 934, + 845, 265, 913, 963, 917, 816, 963, 816, 916, 119, + 915, 954, 858, 887, 887, 887, 887, 887, 887, 887, + 887, 887, 887, 887, 887, 887, 887, 887, 887, 887, + 887, 887, 887, 887, 888, 136, 887, 887, 887, 887, - 553, 553, 553, 553, 553, 664, 665, 867, 599, 938, - 599, 665, 665, 665, 665, 665, 665, 665, 665, 665, - 665, 665, 665, 665, 665, 665, 665, 665, 665, 665, - 665, 665, 665, 665, 665, 560, 561, 560, 163, 163, - 163, 562, 264, 120, 306, 697, 697, 697, 163, 163, - 163, 698, 386, 952, 163, 163, 163, 488, 600, 952, - 124, 307, 264, 746, 264, 264, 593, 264, 307, 387, - 264, 307, 264, 747, 264, 550, 749, 307, 550, 752, - 795, 757, 750, 915, 550, 565, 677, 678, 679, 678, - 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, - - 677, 677, 677, 677, 677, 677, 677, 680, 681, 677, - 682, 677, 677, 681, 681, 681, 681, 681, 681, 681, - 681, 681, 681, 681, 681, 681, 681, 681, 681, 681, - 681, 681, 681, 681, 681, 681, 681, 677, 677, 677, - 677, 677, 690, 690, 913, 690, 690, 690, 690, 690, - 690, 690, 690, 691, 690, 690, 690, 690, 690, 690, - 690, 690, 690, 692, 693, 690, 690, 690, 690, 693, - 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, - 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, - 693, 693, 693, 690, 690, 690, 690, 690, 595, 596, - - 595, 701, 163, 701, 306, 264, 120, 306, 597, 163, - 597, 598, 461, 598, 306, 912, 911, 306, 655, 540, - 655, 307, 540, 762, 307, 264, 605, 606, 605, 540, - 264, 307, 952, 264, 307, 707, 472, 707, 264, 540, - 264, 952, 707, 606, 707, 264, 754, 264, 952, 952, - 733, 540, 482, 755, 540, 765, 758, 764, 952, 756, - 212, 540, 120, 398, 264, 952, 690, 690, 547, 483, - 884, 540, 690, 690, 690, 690, 690, 690, 690, 690, - 690, 690, 690, 690, 690, 690, 690, 690, 690, 690, - 690, 690, 690, 690, 690, 690, 343, 343, 343, 223, - - 223, 223, 344, 264, 794, 356, 359, 359, 359, 264, - 212, 398, 360, 550, 264, 223, 223, 223, 264, 213, - 212, 356, 224, 906, 636, 510, 636, 485, 550, 229, - 356, 343, 343, 343, 803, 482, 802, 344, 224, 264, - 389, 389, 389, 212, 264, 212, 390, 224, 759, 804, - 759, 255, 483, 255, 213, 741, 742, 741, 677, 952, - 677, 743, 264, 256, 677, 161, 161, 161, 264, 806, - 452, 452, 452, 905, 120, 264, 453, 163, 163, 163, - 264, 677, 839, 306, 212, 264, 264, 744, 772, 485, - 707, 606, 707, 310, 264, 618, 952, 264, 759, 550, - - 307, 486, 486, 486, 550, 745, 761, 487, 264, 264, - 264, 807, 952, 952, 264, 812, 831, 113, 805, 675, - 677, 677, 904, 848, 348, 550, 677, 677, 677, 677, - 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, - 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, - 766, 767, 768, 767, 766, 766, 766, 766, 766, 766, - 766, 766, 766, 766, 766, 766, 766, 766, 766, 766, - 766, 769, 770, 766, 771, 766, 766, 770, 770, 770, - 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, - 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, - - 770, 766, 766, 766, 766, 766, 701, 163, 701, 161, - 161, 161, 306, 903, 223, 223, 223, 502, 502, 502, - 499, 120, 264, 503, 486, 486, 486, 540, 212, 307, - 487, 530, 772, 798, 798, 798, 255, 500, 255, 264, - 364, 264, 120, 618, 799, 814, 799, 348, 531, 741, - 742, 741, 264, 813, 922, 743, 800, 902, 264, 540, - 952, 113, 766, 952, 766, 550, 264, 264, 766, 163, - 163, 163, 591, 591, 591, 588, 550, 550, 592, 840, - 822, 822, 822, 212, 832, 766, 264, 120, 907, 828, - 829, 828, 589, 120, 264, 457, 120, 842, 861, 745, - - 810, 810, 810, 823, 810, 810, 810, 629, 629, 629, - 810, 810, 830, 630, 833, 833, 833, 835, 841, 835, - 834, 264, 835, 835, 264, 799, 857, 799, 857, 264, - 224, 857, 857, 836, 697, 697, 697, 800, 382, 869, - 698, 264, 264, 847, 799, 837, 799, 120, 881, 838, - 810, 264, 810, 815, 876, 120, 870, 307, 866, 120, - 866, 882, 264, 866, 866, 947, 898, 766, 766, 893, - 861, 883, 908, 766, 766, 766, 766, 766, 766, 766, - 766, 766, 766, 766, 766, 766, 766, 766, 766, 766, - 766, 766, 766, 766, 766, 766, 766, 810, 810, 810, - - 120, 810, 810, 810, 854, 854, 854, 810, 810, 889, - 855, 862, 863, 862, 264, 856, 856, 864, 854, 854, - 854, 264, 889, 865, 855, 900, 952, 823, 856, 264, - 856, 833, 833, 833, 830, 910, 836, 892, 414, 952, - 909, 823, 799, 264, 799, 853, 891, 810, 837, 810, - 888, 887, 838, 931, 800, 877, 877, 877, 877, 877, - 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, - 877, 877, 877, 877, 877, 877, 878, 136, 877, 877, - 877, 877, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, - - 136, 136, 136, 136, 136, 136, 877, 877, 877, 877, - 877, 879, 879, 879, 879, 879, 879, 879, 879, 879, - 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, - 879, 879, 880, 136, 879, 879, 879, 879, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 887, 887, 887, 887, 887, 889, + 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, + 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, + 890, 136, 889, 889, 889, 889, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, - 136, 136, 879, 879, 879, 879, 879, 854, 854, 854, - 895, 862, 863, 862, 120, 896, 833, 833, 833, 264, - 886, 865, 834, 264, 885, 920, 844, 799, 949, 799, - 823, 949, 119, 940, 830, 875, 872, 930, 860, 800, - - 928, 928, 928, 928, 928, 928, 928, 928, 928, 928, - 928, 928, 928, 928, 928, 928, 928, 928, 928, 928, - 928, 929, 136, 928, 928, 928, 928, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 889, 889, 889, 889, 889, 856, 856, 856, 864, 864, + 864, 265, 902, 872, 873, 872, 265, 265, 866, 120, + + 120, 840, 840, 840, 902, 902, 265, 841, 857, 966, + 922, 830, 805, 879, 805, 906, 837, 923, 805, 553, + 805, 966, 966, 905, 806, 959, 863, 904, 384, 901, + 880, 900, 899, 898, 897, 858, 942, 942, 942, 942, + 942, 942, 942, 942, 942, 942, 942, 942, 942, 942, + 942, 942, 942, 942, 942, 942, 942, 943, 136, 942, + 942, 942, 942, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, - 136, 928, 928, 928, 928, 928, 264, 854, 854, 854, - 854, 854, 854, 855, 120, 869, 855, 889, 889, 264, - 799, 859, 799, 263, 263, 136, 136, 263, 550, 136, - 823, 858, 870, 823, 952, 952, 399, 399, 945, 853, - 399, 852, 851, 382, 941, 941, 941, 941, 941, 941, - - 941, 941, 941, 941, 941, 941, 941, 941, 941, 941, - 941, 941, 941, 941, 941, 942, 136, 941, 941, 941, - 941, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 942, 942, 942, + 942, 942, 864, 864, 864, 864, 864, 864, 865, 264, + + 264, 865, 896, 264, 136, 136, 401, 401, 136, 851, + 401, 885, 401, 401, 882, 830, 401, 870, 830, 955, + 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, + 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, + 956, 136, 955, 955, 955, 955, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, - 136, 136, 136, 136, 136, 941, 941, 941, 941, 941, - 264, 399, 399, 399, 399, 399, 850, 399, 450, 845, - 844, 742, 255, 826, 825, 824, 820, 819, 818, 817, - 817, 816, 264, 398, 264, 264, 742, 255, 797, 255, - 948, 47, 47, 47, 47, 47, 47, 47, 47, 47, - 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, + 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 955, 955, 955, 955, 955, 120, 265, 265, 401, 401, + 869, 868, 401, 863, 862, 861, 860, 453, 852, 851, + 746, 256, 833, 832, 831, 827, 826, 825, 824, 824, - 47, 47, 50, 50, 50, 50, 50, 50, 50, 50, + 961, 823, 265, 400, 265, 265, 746, 962, 256, 803, + 256, 799, 799, 798, 797, 797, 796, 384, 47, 47, + 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, + 47, 47, 47, 47, 47, 47, 47, 47, 47, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 50, 50, 50, 52, 52, 52, 52, 52, 52, 52, + 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, + 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, - 52, 52, 52, 52, 56, 56, 56, 56, 56, 56, + 52, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, - 56, 56, 56, 56, 56, 48, 48, 48, 48, 48, + + 56, 56, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, - 48, 48, 48, 48, 48, 48, 59, 59, 59, 59, + 48, 48, 48, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, - - 59, 59, 59, 59, 59, 59, 59, 62, 62, 62, + 59, 59, 59, 59, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 65, 65, + 62, 62, 62, 62, 62, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, - 65, 65, 65, 65, 65, 65, 65, 65, 65, 71, + 65, 65, 65, 65, 65, 65, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, - 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, - 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, - 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, - 74, 119, 119, 119, 119, 119, 119, 119, 119, 119, + 71, 71, 71, 71, 71, 71, 71, 74, 74, 74, + 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, + 74, 74, 74, 74, 74, 74, 74, 74, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, - 119, 119, 129, 793, 793, 792, 129, 129, 129, 129, - 791, 791, 790, 129, 129, 164, 164, 164, 164, 789, - 164, 164, 164, 164, 164, 788, 164, 164, 164, 164, - 787, 787, 786, 164, 164, 174, 174, 785, 174, 174, - 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, - 174, 174, 784, 174, 174, 174, 176, 176, 760, 176, - 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, - 176, 176, 176, 783, 176, 176, 176, 180, 180, 782, - 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, - - 180, 180, 180, 180, 781, 180, 180, 180, 190, 190, - 190, 780, 190, 190, 779, 190, 190, 190, 778, 190, - 190, 777, 190, 776, 776, 190, 190, 190, 191, 191, - 775, 191, 191, 191, 773, 191, 113, 191, 191, 191, - 191, 264, 398, 690, 191, 191, 194, 264, 398, 194, - 194, 194, 561, 194, 753, 194, 194, 194, 194, 751, - 739, 738, 194, 194, 204, 204, 737, 736, 204, 204, - 255, 735, 731, 204, 204, 731, 204, 485, 728, 113, - 204, 204, 206, 726, 725, 725, 206, 206, 724, 722, - 368, 206, 206, 206, 206, 367, 721, 720, 206, 206, - - 108, 108, 108, 719, 718, 108, 108, 108, 108, 108, - 718, 108, 108, 108, 108, 717, 715, 714, 108, 108, - 225, 225, 713, 225, 225, 225, 225, 225, 225, 225, - 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, - 225, 226, 226, 226, 712, 711, 226, 226, 226, 226, - 226, 710, 226, 226, 226, 226, 709, 708, 706, 226, - 226, 302, 302, 705, 704, 703, 702, 700, 696, 694, - 304, 303, 302, 561, 654, 302, 653, 652, 651, 302, - 302, 324, 324, 650, 324, 324, 324, 324, 324, 324, - 324, 324, 324, 324, 324, 324, 324, 324, 324, 324, - - 324, 324, 325, 649, 647, 120, 120, 639, 325, 120, - 637, 325, 635, 633, 632, 325, 325, 328, 628, 624, - 328, 623, 622, 328, 621, 485, 620, 328, 328, 345, - 345, 345, 345, 345, 345, 345, 345, 345, 345, 345, - 345, 345, 345, 345, 345, 345, 345, 345, 345, 345, - 355, 355, 617, 355, 355, 355, 355, 355, 355, 355, - 355, 355, 355, 355, 355, 355, 355, 355, 355, 355, - 355, 362, 362, 362, 362, 362, 362, 362, 362, 362, - 362, 362, 362, 362, 362, 362, 362, 362, 362, 362, - 362, 362, 375, 375, 375, 375, 375, 375, 375, 375, - - 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, - 375, 375, 375, 388, 388, 350, 388, 388, 388, 388, - 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, - 388, 388, 388, 388, 445, 445, 615, 614, 613, 612, - 611, 610, 609, 608, 604, 603, 602, 601, 445, 314, - 587, 586, 585, 445, 447, 584, 398, 447, 398, 398, - 398, 447, 447, 448, 448, 398, 448, 448, 448, 448, - 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, - 448, 448, 448, 448, 449, 449, 537, 449, 449, 449, - 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, - - 449, 449, 449, 449, 449, 451, 451, 536, 451, 451, + 119, 119, 119, 119, 119, 119, 119, 119, 119, 129, + 795, 794, 793, 129, 129, 129, 129, 793, 792, 791, + 129, 129, 165, 165, 165, 165, 790, 165, 165, 165, + 165, 165, 765, 165, 165, 165, 165, 789, 788, 787, + 165, 165, 175, 175, 786, 175, 175, 175, 175, 175, + 175, 175, 175, 175, 175, 175, 175, 175, 175, 785, + + 175, 175, 175, 177, 177, 784, 177, 177, 177, 177, + 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, + 783, 177, 177, 177, 181, 181, 782, 181, 181, 181, + 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, + 181, 782, 181, 181, 181, 191, 191, 191, 781, 191, + 191, 779, 191, 191, 191, 113, 191, 191, 265, 191, + 400, 694, 191, 191, 191, 192, 192, 265, 192, 192, + 192, 400, 192, 563, 192, 192, 192, 192, 758, 756, + 755, 192, 192, 195, 743, 742, 195, 195, 195, 741, + 195, 740, 195, 195, 195, 195, 256, 739, 735, 195, + + 195, 205, 205, 735, 488, 205, 205, 732, 113, 730, + 205, 205, 729, 205, 729, 728, 726, 205, 205, 207, + 370, 369, 725, 207, 207, 724, 723, 722, 207, 207, + 207, 207, 722, 721, 719, 207, 207, 108, 108, 108, + 718, 717, 108, 108, 108, 108, 108, 716, 108, 108, + 108, 108, 715, 714, 713, 108, 108, 226, 226, 712, + 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, + 226, 226, 226, 226, 226, 226, 226, 226, 227, 227, + 227, 710, 709, 227, 227, 227, 227, 227, 708, 227, + 227, 227, 227, 707, 706, 704, 227, 227, 304, 304, + + 700, 698, 306, 305, 563, 657, 656, 655, 654, 304, + 653, 652, 304, 650, 120, 120, 304, 304, 326, 326, + 642, 326, 326, 326, 326, 326, 326, 326, 326, 326, + 326, 326, 326, 326, 326, 326, 326, 326, 326, 327, + 120, 640, 638, 636, 635, 327, 631, 627, 327, 626, + 625, 624, 327, 327, 330, 488, 623, 330, 620, 352, + 330, 618, 617, 616, 330, 330, 347, 347, 347, 347, + 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, + 347, 347, 347, 347, 347, 347, 347, 357, 357, 615, + 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, + + 357, 357, 357, 357, 357, 357, 357, 357, 364, 364, + 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, + 364, 364, 364, 364, 364, 364, 364, 364, 364, 377, + 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, + 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, + 390, 390, 614, 390, 390, 390, 390, 390, 390, 390, + 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, + 390, 448, 448, 613, 612, 611, 607, 606, 605, 604, + 316, 590, 589, 588, 587, 448, 400, 400, 400, 400, + 448, 450, 400, 540, 450, 539, 536, 532, 450, 450, + + 451, 451, 259, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, - 451, 451, 451, 451, 451, 451, 455, 455, 455, 455, - 455, 455, 455, 455, 455, 455, 455, 455, 455, 455, - 455, 455, 455, 455, 455, 455, 455, 190, 533, 529, - 190, 258, 120, 513, 190, 190, 475, 475, 475, 475, - 475, 475, 475, 475, 475, 475, 475, 475, 508, 475, - 475, 507, 475, 475, 475, 475, 475, 429, 429, 429, - 429, 429, 429, 429, 429, 429, 429, 429, 429, 506, - 429, 429, 495, 429, 429, 429, 429, 429, 420, 420, - - 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, - 494, 420, 420, 493, 420, 420, 420, 420, 420, 484, - 484, 490, 484, 484, 484, 484, 484, 484, 484, 484, - 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, - 496, 496, 485, 496, 496, 496, 496, 496, 496, 496, - 496, 496, 496, 496, 496, 496, 496, 496, 496, 496, - 496, 501, 501, 481, 501, 501, 501, 501, 501, 501, - 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, - 501, 501, 108, 108, 108, 480, 479, 108, 108, 108, - 108, 108, 478, 108, 108, 108, 108, 477, 476, 474, - - 108, 108, 511, 511, 473, 952, 511, 469, 468, 467, - 466, 465, 464, 172, 511, 311, 511, 398, 262, 398, - 395, 511, 516, 516, 516, 516, 516, 516, 516, 516, - 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, - 516, 516, 516, 375, 375, 375, 375, 375, 375, 375, - 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, - 375, 375, 375, 375, 528, 528, 371, 528, 528, 528, - 528, 528, 528, 528, 528, 528, 528, 528, 528, 528, - 528, 528, 528, 528, 528, 532, 532, 366, 532, 532, - 532, 532, 532, 532, 532, 532, 532, 532, 532, 532, - - 532, 532, 532, 532, 532, 532, 590, 590, 365, 590, - 590, 590, 590, 590, 590, 590, 590, 590, 590, 590, - 590, 590, 590, 590, 590, 590, 590, 616, 616, 108, - 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, - 616, 616, 616, 616, 616, 616, 616, 616, 619, 619, - 358, 619, 619, 619, 619, 619, 619, 619, 619, 619, - 619, 619, 619, 619, 619, 619, 619, 619, 619, 627, - 627, 357, 627, 627, 627, 627, 627, 627, 627, 627, - 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, - 631, 631, 351, 631, 631, 631, 631, 631, 631, 631, - - 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, - 631, 634, 634, 634, 634, 634, 634, 634, 634, 634, - 634, 634, 634, 352, 634, 634, 351, 634, 634, 634, - 634, 634, 638, 638, 638, 638, 638, 638, 638, 638, - 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, - 638, 638, 638, 642, 642, 642, 642, 642, 642, 642, - 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, - 642, 642, 642, 642, 648, 648, 354, 648, 648, 648, - 648, 648, 648, 648, 648, 648, 648, 648, 648, 648, - 648, 648, 648, 648, 648, 670, 670, 670, 670, 670, - - 670, 670, 670, 670, 670, 670, 670, 670, 670, 670, - 670, 670, 670, 670, 670, 670, 695, 695, 353, 695, - 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, - 695, 695, 695, 695, 695, 695, 695, 699, 699, 352, + 451, 452, 452, 120, 452, 452, 452, 452, 452, 452, + 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, + 452, 452, 454, 454, 516, 454, 454, 454, 454, 454, + 454, 454, 454, 454, 454, 454, 454, 454, 454, 454, + 454, 454, 454, 458, 458, 458, 458, 458, 458, 458, + 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, + 458, 458, 458, 458, 191, 511, 510, 191, 509, 498, + 497, 191, 191, 478, 478, 478, 478, 478, 478, 478, + + 478, 478, 478, 478, 478, 496, 478, 478, 493, 478, + 478, 478, 478, 478, 430, 430, 430, 430, 430, 430, + 430, 430, 430, 430, 430, 430, 488, 430, 430, 484, + 430, 430, 430, 430, 430, 422, 422, 422, 422, 422, + 422, 422, 422, 422, 422, 422, 422, 483, 422, 422, + 482, 422, 422, 422, 422, 422, 487, 487, 481, 487, + 487, 487, 487, 487, 487, 487, 487, 487, 487, 487, + 487, 487, 487, 487, 487, 487, 487, 499, 499, 480, + 499, 499, 499, 499, 499, 499, 499, 499, 499, 499, + 499, 499, 499, 499, 499, 499, 499, 499, 504, 504, + + 479, 504, 504, 504, 504, 504, 504, 504, 504, 504, + 504, 504, 504, 504, 504, 504, 504, 504, 504, 108, + 108, 108, 477, 476, 108, 108, 108, 108, 108, 966, + 108, 108, 108, 108, 472, 471, 470, 108, 108, 514, + 514, 469, 468, 514, 467, 173, 313, 400, 263, 400, + 397, 514, 373, 514, 368, 367, 108, 360, 514, 519, + 519, 519, 519, 519, 519, 519, 519, 519, 519, 519, + 519, 519, 519, 519, 519, 519, 519, 519, 519, 519, + 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, + 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, + + 377, 531, 531, 359, 531, 531, 531, 531, 531, 531, + 531, 531, 531, 531, 531, 531, 531, 531, 531, 531, + 531, 531, 535, 535, 353, 535, 535, 535, 535, 535, + 535, 535, 535, 535, 535, 535, 535, 535, 535, 535, + 535, 535, 535, 593, 593, 354, 593, 593, 593, 593, + 593, 593, 593, 593, 593, 593, 593, 593, 593, 593, + 593, 593, 593, 593, 619, 619, 353, 619, 619, 619, + 619, 619, 619, 619, 619, 619, 619, 619, 619, 619, + 619, 619, 619, 619, 619, 622, 622, 356, 622, 622, + 622, 622, 622, 622, 622, 622, 622, 622, 622, 622, + + 622, 622, 622, 622, 622, 622, 630, 630, 355, 630, + 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, + 630, 630, 630, 630, 630, 630, 630, 634, 634, 354, + 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, + 634, 634, 634, 634, 634, 634, 634, 634, 637, 637, + 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, + 353, 637, 637, 353, 637, 637, 637, 637, 637, 641, + 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, + 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, + 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, + + 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, + 645, 651, 651, 344, 651, 651, 651, 651, 651, 651, + 651, 651, 651, 651, 651, 651, 651, 651, 651, 651, + 651, 651, 667, 667, 340, 667, 667, 667, 667, 667, + 667, 667, 667, 667, 667, 667, 667, 667, 338, 667, + 667, 667, 667, 672, 672, 672, 672, 672, 672, 672, + 672, 672, 672, 672, 672, 672, 672, 672, 672, 672, + 672, 672, 672, 672, 699, 699, 337, 699, 699, 699, 699, 699, 699, 699, 699, 699, 699, 699, 699, 699, - 699, 699, 699, 699, 699, 699, 699, 699, 716, 716, - 351, 716, 716, 716, 716, 716, 716, 716, 716, 716, - 716, 716, 716, 716, 716, 716, 716, 716, 716, 723, - 723, 351, 723, 723, 723, 723, 723, 723, 723, 723, - 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, + 699, 699, 699, 699, 699, 703, 703, 336, 703, 703, + 703, 703, 703, 703, 703, 703, 703, 703, 703, 703, + 703, 703, 703, 703, 703, 703, 720, 720, 333, 720, + 720, 720, 720, 720, 720, 720, 720, 720, 720, 720, + 720, 720, 720, 720, 720, 720, 720, 727, 727, 189, 727, 727, 727, 727, 727, 727, 727, 727, 727, 727, - 727, 727, 342, 727, 727, 338, 727, 727, 727, 727, - 727, 729, 729, 729, 729, 729, 729, 729, 729, 729, - 729, 729, 729, 729, 729, 729, 729, 729, 729, 729, - 729, 729, 774, 774, 336, 774, 774, 774, 774, 774, - 774, 774, 774, 774, 774, 774, 774, 774, 774, 774, - 774, 774, 774, 801, 801, 801, 801, 801, 801, 801, - 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, - 801, 801, 801, 801, 809, 809, 809, 809, 809, 809, - 809, 809, 809, 809, 809, 809, 809, 809, 809, 809, - - 809, 335, 809, 809, 809, 811, 811, 334, 811, 811, - 811, 811, 811, 811, 811, 811, 811, 811, 811, 811, - 811, 811, 811, 811, 811, 811, 821, 821, 821, 821, - 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, - 821, 821, 821, 821, 821, 821, 821, 827, 827, 827, - 827, 827, 827, 827, 827, 827, 827, 827, 827, 827, - 827, 827, 827, 827, 827, 827, 827, 827, 843, 843, - 843, 843, 843, 331, 843, 843, 843, 843, 843, 843, - 843, 843, 843, 843, 843, 843, 843, 843, 843, 849, - 849, 188, 849, 849, 849, 849, 849, 849, 849, 849, - - 849, 849, 849, 849, 849, 849, 849, 849, 849, 849, - 871, 871, 323, 871, 871, 871, 871, 871, 871, 871, - 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, - 871, 890, 890, 322, 890, 890, 890, 890, 890, 890, - 890, 890, 890, 890, 890, 890, 890, 890, 890, 890, - 890, 890, 894, 894, 894, 894, 894, 894, 894, 894, - 894, 894, 894, 894, 321, 894, 894, 320, 894, 894, - 894, 894, 894, 897, 897, 897, 897, 897, 897, 897, - 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, - 897, 897, 897, 897, 901, 901, 319, 901, 901, 901, - - 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, - 901, 901, 901, 901, 901, 914, 914, 311, 914, 914, + 727, 727, 727, 727, 727, 727, 727, 727, 731, 731, + 731, 731, 731, 731, 731, 731, 731, 731, 731, 731, + 325, 731, 731, 324, 731, 731, 731, 731, 731, 733, + 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, + 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, + + 780, 780, 323, 780, 780, 780, 780, 780, 780, 780, + 780, 780, 780, 780, 780, 780, 780, 780, 780, 780, + 780, 807, 807, 807, 807, 807, 807, 807, 807, 807, + 807, 807, 807, 807, 807, 807, 807, 807, 807, 807, + 807, 807, 815, 815, 815, 815, 815, 815, 815, 815, + 815, 815, 815, 815, 815, 815, 815, 815, 815, 322, + 815, 815, 815, 817, 817, 321, 817, 817, 817, 817, + 817, 817, 817, 817, 817, 817, 817, 817, 817, 817, + 817, 817, 817, 817, 828, 828, 828, 828, 828, 828, + 828, 828, 828, 828, 828, 828, 828, 828, 828, 828, + + 828, 828, 828, 828, 828, 834, 834, 834, 834, 834, + 834, 834, 834, 834, 834, 834, 834, 834, 834, 834, + 834, 834, 834, 834, 834, 834, 850, 850, 850, 850, + 850, 313, 850, 850, 850, 850, 850, 850, 850, 850, + 850, 850, 850, 850, 850, 850, 850, 859, 859, 306, + 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, + 859, 859, 859, 859, 859, 859, 859, 859, 881, 881, + 305, 881, 881, 881, 881, 881, 881, 881, 881, 881, + 881, 881, 881, 881, 881, 881, 881, 881, 881, 895, + 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, + + 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, + 903, 903, 265, 903, 903, 903, 903, 903, 903, 903, + 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, + 903, 907, 907, 907, 907, 907, 907, 907, 907, 907, + 907, 907, 907, 263, 907, 907, 260, 907, 907, 907, + 907, 907, 910, 910, 910, 910, 910, 910, 910, 910, + 910, 910, 910, 910, 910, 910, 910, 910, 910, 910, + 910, 910, 910, 914, 914, 120, 914, 914, 914, 914, 914, 914, 914, 914, 914, 914, 914, 914, 914, 914, - 914, 914, 914, 914, 914, 914, 919, 919, 919, 919, - 919, 919, 919, 919, 919, 919, 919, 919, 919, 919, - 919, 919, 919, 919, 919, 919, 919, 944, 944, 944, - 944, 944, 944, 944, 944, 944, 944, 944, 944, 304, - 944, 944, 303, 944, 944, 944, 944, 944, 941, 941, - 941, 941, 941, 941, 941, 941, 941, 941, 941, 941, - 264, 941, 941, 262, 941, 941, 941, 941, 941, 951, - - 951, 259, 951, 951, 951, 951, 951, 951, 951, 951, - 951, 951, 951, 951, 951, 120, 951, 951, 951, 951, - 236, 120, 178, 120, 178, 178, 178, 181, 177, 175, - 952, 58, 58, 27, 952, 952, 952, 952, 952, 952, - 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, - 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, - 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, - 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, - 952, 952, 952, 952, 952, 952, 952, 952, 952, 952 + 914, 914, 914, 914, 924, 924, 924, 924, 924, 924, + + 924, 924, 924, 924, 924, 924, 924, 924, 924, 924, + 924, 237, 924, 924, 924, 928, 928, 120, 928, 928, + 928, 928, 928, 928, 928, 928, 928, 928, 928, 928, + 928, 928, 928, 928, 928, 928, 933, 933, 933, 933, + 933, 933, 933, 933, 933, 933, 933, 933, 933, 933, + 933, 933, 933, 933, 933, 933, 933, 958, 958, 958, + 958, 958, 958, 958, 958, 958, 958, 958, 958, 179, + 958, 958, 120, 958, 958, 958, 958, 958, 955, 955, + 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, + 179, 955, 955, 179, 955, 955, 955, 955, 955, 965, + + 965, 179, 965, 965, 965, 965, 965, 965, 965, 965, + 965, 965, 965, 965, 965, 182, 965, 965, 965, 965, + 178, 176, 966, 58, 58, 27, 966, 966, 966, 966, + 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, + 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, + 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, + 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, + 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, + 966, 966 } ; -static yyconst flex_int16_t yy_chk[5191] = +static yyconst flex_int16_t yy_chk[5183] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, @@ -1391,16 +1410,16 @@ static yyconst flex_int16_t yy_chk[5191] = 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 4, 5, 6, 7, 7, 8, 8, - 9, 10, 13, 14, 15, 16, 17, 949, 18, 393, - 147, 17, 393, 18, 3, 4, 5, 6, 19, 7, + 9, 10, 13, 14, 15, 16, 17, 963, 18, 395, + 147, 17, 395, 18, 3, 4, 5, 6, 19, 7, 20, 8, 9, 10, 13, 14, 15, 16, 17, 19, - 18, 20, 21, 147, 19, 152, 20, 21, 19, 234, - 20, 22, 3, 4, 5, 6, 22, 234, 28, 152, - 9, 10, 244, 33, 21, 17, 17, 18, 18, 28, + 18, 20, 21, 147, 19, 155, 20, 21, 19, 235, + 20, 22, 3, 4, 5, 6, 22, 235, 28, 155, + 9, 10, 245, 33, 21, 17, 17, 18, 18, 28, 30, 30, 30, 22, 33, 31, 32, 35, 39, 39, 39, 55, 31, 32, 35, 33, 35, 40, 55, 288, - 39, 21, 21, 31, 32, 35, 288, 943, 40, 244, + 39, 21, 21, 31, 32, 35, 288, 957, 40, 245, 22, 22, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, @@ -1413,541 +1432,541 @@ static yyconst flex_int16_t yy_chk[5191] = 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, - 25, 25, 25, 25, 29, 29, 29, 29, 79, 942, - 29, 29, 29, 29, 278, 85, 29, 91, 29, 79, - 29, 29, 29, 29, 278, 29, 85, 29, 91, 29, + 25, 25, 25, 25, 29, 29, 29, 29, 79, 956, + 29, 29, 29, 29, 279, 85, 29, 91, 29, 79, + 29, 29, 29, 29, 279, 29, 85, 29, 91, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 36, 46, 29, 29, 29, 34, - 34, 34, 46, 36, 247, 36, 38, 36, 38, 98, - 149, 34, 249, 34, 82, 38, 149, 38, 100, 38, + 34, 34, 46, 36, 248, 36, 38, 36, 38, 98, + 149, 34, 953, 34, 82, 38, 149, 38, 100, 38, 149, 82, 34, 84, 98, 145, 42, 42, 42, 100, 84, 42, 82, 98, 46, 36, 37, 37, 42, 37, - 37, 84, 154, 247, 167, 145, 37, 38, 249, 42, - 167, 37, 37, 37, 37, 37, 154, 37, 37, 37, + 37, 84, 168, 248, 198, 145, 37, 38, 168, 42, + 198, 37, 37, 37, 37, 37, 249, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 41, 41, 41, 43, 43, 43, 93, - 245, 43, 939, 269, 83, 41, 93, 68, 43, 44, - 44, 44, 76, 140, 44, 83, 41, 93, 266, 43, - 140, 44, 140, 44, 68, 141, 83, 269, 68, 76, - - 201, 68, 44, 76, 201, 141, 76, 141, 90, 90, - 90, 246, 148, 245, 266, 41, 45, 45, 45, 45, - 90, 68, 68, 45, 45, 45, 76, 76, 45, 936, - 45, 148, 45, 45, 45, 45, 148, 45, 243, 45, - 246, 45, 45, 45, 45, 45, 45, 45, 45, 45, + 246, 43, 736, 249, 83, 41, 93, 68, 43, 44, + 44, 44, 76, 140, 44, 83, 41, 93, 146, 43, + 140, 44, 140, 44, 68, 141, 83, 146, 68, 76, + + 202, 68, 44, 76, 202, 141, 76, 141, 90, 90, + 90, 247, 148, 246, 736, 41, 45, 45, 45, 45, + 90, 68, 68, 45, 45, 45, 76, 76, 45, 950, + 45, 148, 45, 45, 45, 45, 148, 45, 244, 45, + 247, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, - 45, 45, 45, 45, 45, 45, 143, 250, 243, 45, - 45, 80, 80, 80, 80, 86, 143, 80, 80, 400, + 45, 45, 45, 45, 45, 45, 143, 251, 244, 45, + 45, 80, 80, 80, 80, 86, 143, 80, 80, 152, 143, 117, 86, 80, 86, 80, 92, 92, 92, 94, - 80, 153, 80, 86, 80, 95, 94, 235, 92, 96, - - 129, 235, 95, 117, 95, 400, 96, 94, 153, 92, - 250, 129, 153, 95, 117, 117, 129, 96, 129, 101, - 101, 101, 290, 80, 80, 81, 81, 81, 81, 197, - 208, 81, 81, 101, 189, 197, 208, 81, 92, 81, - 102, 189, 101, 102, 81, 265, 81, 102, 81, 290, - 129, 102, 102, 275, 932, 102, 102, 102, 105, 105, - 105, 103, 103, 103, 103, 265, 150, 103, 104, 104, - 104, 104, 275, 189, 104, 103, 150, 81, 81, 87, + 80, 154, 80, 86, 80, 95, 94, 406, 92, 96, + + 129, 152, 95, 117, 95, 406, 96, 94, 154, 92, + 251, 129, 154, 95, 117, 117, 129, 96, 129, 101, + 101, 101, 303, 80, 80, 81, 81, 81, 81, 250, + 209, 81, 81, 101, 190, 153, 209, 81, 92, 81, + 102, 190, 101, 102, 81, 153, 81, 102, 81, 153, + 129, 102, 102, 946, 303, 102, 102, 102, 105, 105, + 105, 103, 103, 103, 103, 250, 150, 103, 104, 104, + 104, 104, 270, 190, 104, 103, 150, 81, 81, 87, 103, 105, 104, 87, 87, 87, 150, 104, 87, 108, - 108, 108, 87, 87, 87, 87, 248, 87, 267, 87, - - 929, 87, 109, 109, 109, 114, 114, 114, 114, 146, - 267, 114, 108, 121, 121, 121, 109, 270, 146, 114, - 115, 115, 115, 115, 114, 109, 115, 121, 146, 87, - 88, 927, 151, 248, 115, 271, 121, 270, 88, 115, - 155, 271, 88, 115, 190, 88, 124, 124, 124, 88, - 155, 190, 88, 151, 88, 281, 151, 124, 88, 124, - 124, 88, 89, 155, 281, 281, 89, 89, 89, 124, - 289, 89, 191, 89, 268, 89, 89, 89, 89, 191, - 89, 289, 89, 190, 89, 123, 123, 123, 193, 125, - 191, 123, 125, 251, 125, 193, 268, 125, 125, 123, - - 169, 251, 158, 158, 158, 284, 193, 204, 123, 169, - 251, 169, 89, 97, 204, 284, 169, 125, 97, 97, - 169, 127, 97, 158, 272, 204, 97, 97, 97, 276, - 127, 97, 127, 97, 279, 97, 194, 127, 194, 127, - 276, 127, 138, 127, 272, 138, 276, 194, 926, 138, - 203, 173, 203, 138, 138, 158, 279, 138, 138, 138, - 173, 203, 173, 97, 99, 403, 163, 163, 163, 99, - 99, 127, 163, 99, 142, 99, 291, 99, 99, 99, - 142, 144, 99, 142, 99, 403, 99, 142, 427, 163, - 144, 142, 173, 144, 142, 159, 142, 142, 291, 144, - - 144, 283, 164, 164, 164, 427, 159, 164, 381, 144, - 171, 159, 171, 159, 99, 107, 107, 107, 107, 171, - 283, 171, 107, 107, 107, 164, 206, 107, 206, 107, - 285, 107, 107, 107, 107, 282, 381, 206, 107, 925, - 107, 110, 110, 110, 110, 159, 285, 293, 110, 110, - 110, 171, 210, 110, 210, 110, 282, 110, 110, 110, - 110, 293, 110, 210, 110, 526, 110, 110, 110, 110, + 108, 108, 87, 87, 87, 87, 270, 87, 195, 87, + + 195, 87, 109, 109, 109, 114, 114, 114, 114, 195, + 444, 114, 108, 121, 121, 121, 109, 444, 156, 114, + 115, 115, 115, 115, 114, 109, 115, 121, 156, 87, + 88, 236, 151, 192, 115, 236, 121, 194, 88, 115, + 192, 156, 88, 115, 194, 88, 124, 124, 124, 88, + 266, 192, 88, 151, 88, 194, 151, 124, 88, 124, + 124, 88, 89, 170, 267, 943, 89, 89, 89, 124, + 266, 89, 170, 89, 170, 89, 89, 89, 89, 170, + 89, 191, 89, 170, 89, 123, 123, 123, 191, 125, + 267, 123, 125, 205, 125, 271, 941, 125, 125, 123, + + 205, 282, 159, 159, 159, 172, 276, 172, 123, 273, + 282, 205, 89, 97, 172, 271, 172, 125, 97, 97, + 191, 127, 97, 159, 294, 276, 97, 97, 97, 273, + 127, 97, 127, 97, 272, 97, 204, 127, 204, 127, + 272, 127, 138, 127, 294, 138, 172, 204, 252, 138, + 207, 174, 207, 138, 138, 159, 252, 138, 138, 138, + 174, 207, 174, 97, 99, 252, 164, 164, 164, 99, + 99, 127, 164, 99, 142, 99, 268, 99, 99, 99, + 142, 144, 99, 142, 99, 285, 99, 142, 268, 164, + 144, 142, 174, 144, 142, 160, 142, 142, 269, 144, + + 144, 285, 165, 165, 165, 274, 160, 165, 211, 144, + 211, 160, 300, 160, 99, 107, 107, 107, 107, 211, + 269, 278, 107, 107, 107, 165, 274, 107, 300, 107, + 274, 107, 107, 107, 107, 237, 237, 237, 107, 278, + 107, 110, 110, 110, 110, 160, 284, 278, 110, 110, + 110, 418, 289, 110, 940, 110, 939, 110, 110, 110, + 110, 418, 110, 289, 110, 284, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, - 110, 236, 236, 236, 110, 110, 111, 294, 526, 111, - - 111, 920, 301, 111, 260, 260, 260, 111, 111, 294, - 295, 111, 111, 111, 122, 162, 295, 296, 162, 165, - 165, 165, 162, 213, 165, 213, 162, 162, 213, 213, - 162, 162, 162, 165, 301, 296, 168, 168, 168, 213, - 122, 168, 165, 122, 170, 170, 170, 122, 919, 170, - 168, 122, 122, 428, 305, 122, 122, 122, 305, 168, - 211, 211, 211, 261, 261, 261, 211, 170, 172, 172, - 172, 172, 298, 343, 211, 172, 172, 172, 428, 385, - 172, 343, 172, 211, 172, 172, 172, 172, 298, 172, - 343, 172, 326, 172, 172, 172, 172, 172, 172, 172, - - 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, - 172, 172, 172, 172, 172, 172, 172, 172, 192, 205, - 385, 172, 172, 273, 326, 297, 408, 192, 205, 192, - 205, 212, 212, 212, 192, 205, 192, 205, 192, 205, - 223, 223, 223, 918, 273, 212, 223, 297, 273, 277, - 402, 227, 227, 227, 212, 408, 253, 227, 253, 917, - 419, 253, 253, 223, 402, 227, 292, 277, 192, 205, - 226, 226, 226, 226, 227, 277, 292, 226, 226, 226, - 419, 253, 226, 292, 226, 405, 226, 226, 226, 226, - 241, 241, 241, 226, 375, 226, 228, 228, 228, 228, - - 417, 228, 228, 228, 241, 375, 384, 228, 228, 405, - 228, 228, 228, 241, 417, 286, 438, 228, 373, 228, - 228, 228, 229, 286, 229, 229, 373, 229, 229, 438, - 915, 239, 239, 239, 384, 373, 286, 239, 229, 299, - 299, 299, 257, 257, 257, 239, 442, 228, 228, 228, - 230, 230, 230, 230, 239, 401, 257, 230, 230, 230, - 442, 401, 230, 418, 230, 257, 230, 230, 230, 230, - 351, 230, 351, 230, 418, 230, 230, 230, 230, 230, - 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, - 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, - - 300, 300, 300, 230, 230, 237, 237, 237, 237, 404, - 914, 237, 240, 240, 240, 302, 242, 404, 240, 237, - 351, 409, 302, 327, 237, 867, 240, 242, 237, 242, - 327, 406, 242, 242, 407, 240, 254, 254, 254, 256, - 409, 256, 254, 242, 256, 256, 348, 254, 348, 254, - 413, 348, 348, 406, 302, 256, 413, 407, 364, 254, - 364, 364, 327, 364, 364, 913, 867, 256, 443, 443, - 443, 256, 274, 274, 274, 274, 274, 274, 274, 274, - 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, - 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, - - 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, - 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, - 274, 274, 274, 274, 274, 274, 274, 274, 280, 280, - 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, - 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, - 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, - 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, - 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, - 280, 280, 280, 280, 287, 287, 287, 287, 287, 287, + 110, 261, 261, 261, 110, 110, 111, 296, 295, 111, + + 111, 551, 293, 111, 262, 262, 262, 111, 111, 296, + 551, 111, 111, 111, 122, 163, 293, 295, 163, 166, + 166, 166, 163, 214, 166, 214, 163, 163, 214, 214, + 163, 163, 163, 166, 404, 298, 169, 169, 169, 214, + 122, 169, 166, 122, 171, 171, 171, 122, 404, 171, + 169, 122, 122, 298, 290, 122, 122, 122, 283, 169, + 212, 212, 212, 301, 301, 301, 212, 171, 173, 173, + 173, 173, 297, 428, 212, 173, 173, 173, 297, 283, + 173, 290, 173, 212, 173, 173, 173, 173, 307, 173, + 428, 173, 307, 173, 173, 173, 173, 173, 173, 173, + + 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, + 173, 173, 173, 173, 173, 173, 173, 173, 193, 206, + 409, 173, 173, 328, 402, 280, 291, 193, 206, 193, + 206, 213, 213, 213, 193, 206, 193, 206, 193, 206, + 224, 224, 224, 409, 387, 213, 224, 280, 291, 277, + 402, 228, 228, 228, 213, 328, 254, 228, 254, 286, + 277, 254, 254, 224, 377, 228, 277, 286, 193, 206, + 227, 227, 227, 227, 228, 377, 934, 227, 227, 227, + 286, 254, 227, 299, 227, 387, 227, 227, 227, 227, + 242, 242, 242, 227, 403, 227, 229, 229, 229, 229, + + 403, 229, 229, 229, 242, 299, 292, 229, 229, 405, + 229, 229, 229, 242, 933, 407, 292, 229, 383, 229, + 229, 229, 230, 292, 230, 230, 410, 230, 230, 405, + 932, 240, 240, 240, 302, 302, 302, 240, 230, 407, + 427, 411, 258, 258, 258, 240, 383, 229, 229, 229, + 231, 231, 231, 231, 240, 410, 258, 231, 231, 231, + 411, 427, 231, 304, 231, 258, 231, 231, 231, 231, + 304, 231, 353, 231, 353, 231, 231, 231, 231, 231, + 231, 231, 231, 231, 231, 231, 231, 231, 231, 231, + 231, 231, 231, 231, 231, 231, 231, 231, 231, 231, + + 421, 560, 304, 231, 231, 238, 238, 238, 238, 408, + 560, 238, 241, 241, 241, 415, 243, 345, 241, 238, + 421, 415, 353, 329, 238, 345, 241, 243, 238, 243, + 329, 408, 243, 243, 345, 241, 255, 255, 255, 257, + 435, 257, 255, 243, 257, 257, 420, 255, 312, 255, + 312, 312, 417, 312, 312, 257, 419, 420, 435, 255, + 417, 931, 329, 350, 312, 350, 929, 257, 350, 350, + 419, 257, 275, 275, 275, 275, 275, 275, 275, 275, + 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, + 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, + + 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, + 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, + 275, 275, 275, 275, 275, 275, 275, 275, 281, 281, + 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, + 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, + 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, + 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, + 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, + 281, 281, 281, 281, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, - 308, 308, 308, 416, 415, 310, 308, 310, 310, 431, - 310, 310, 415, 416, 308, 328, 912, 423, 911, 431, - 906, 310, 328, 308, 309, 309, 309, 309, 412, 309, - 309, 309, 312, 312, 312, 309, 309, 312, 309, 309, - 309, 313, 313, 313, 423, 309, 313, 309, 309, 309, - 412, 314, 314, 314, 328, 312, 314, 315, 315, 315, - - 316, 316, 316, 315, 313, 424, 316, 330, 330, 330, - 425, 424, 330, 439, 314, 309, 309, 309, 426, 330, - 315, 439, 432, 316, 317, 317, 317, 317, 905, 435, - 330, 317, 317, 317, 425, 352, 317, 352, 317, 426, - 317, 317, 317, 317, 904, 317, 432, 317, 435, 317, - 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, - 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, - 317, 317, 317, 317, 329, 329, 329, 317, 317, 339, - 339, 339, 436, 440, 339, 352, 346, 346, 346, 389, - 434, 339, 346, 440, 389, 329, 389, 500, 346, 347, - - 347, 347, 339, 349, 349, 349, 389, 436, 434, 346, - 500, 347, 397, 347, 397, 433, 546, 349, 359, 359, - 359, 734, 347, 433, 359, 433, 349, 329, 358, 358, - 358, 358, 359, 397, 358, 358, 546, 361, 361, 361, - 437, 359, 358, 361, 362, 362, 362, 358, 441, 361, - 520, 358, 365, 365, 365, 441, 362, 734, 437, 903, - 361, 520, 369, 369, 369, 397, 542, 362, 369, 382, - 382, 382, 383, 383, 383, 365, 542, 378, 378, 378, - 358, 363, 363, 363, 363, 369, 363, 363, 363, 378, - 551, 378, 363, 363, 363, 363, 363, 363, 372, 527, - - 378, 515, 363, 372, 363, 363, 363, 370, 370, 370, - 464, 372, 464, 370, 551, 376, 376, 376, 563, 382, - 372, 376, 383, 377, 377, 377, 379, 376, 515, 377, - 370, 543, 363, 363, 363, 377, 527, 379, 376, 379, - 563, 901, 379, 379, 544, 569, 377, 380, 380, 380, - 543, 391, 391, 391, 396, 396, 396, 444, 444, 444, - 464, 380, 391, 544, 391, 446, 446, 446, 548, 569, - 380, 447, 832, 684, 391, 396, 521, 548, 447, 452, - 452, 452, 454, 454, 454, 452, 486, 521, 454, 470, - 470, 470, 486, 452, 454, 457, 549, 457, 457, 684, - - 457, 457, 452, 486, 832, 454, 549, 396, 414, 414, - 447, 414, 414, 414, 414, 414, 414, 414, 414, 414, - 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, - 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, - 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, - 414, 414, 414, 414, 414, 414, 414, 414, 414, 552, - 414, 414, 414, 414, 422, 422, 422, 455, 455, 455, - 422, 898, 455, 897, 489, 489, 489, 552, 582, 455, - 458, 458, 458, 498, 422, 519, 458, 460, 460, 460, - 455, 519, 531, 460, 498, 498, 422, 489, 422, 582, - - 558, 458, 519, 458, 531, 491, 523, 491, 531, 558, - 460, 504, 504, 504, 422, 456, 456, 456, 456, 545, - 456, 456, 456, 505, 505, 505, 456, 456, 456, 456, - 456, 456, 900, 458, 504, 505, 456, 895, 456, 456, - 456, 459, 459, 459, 545, 523, 505, 459, 461, 461, - 461, 462, 462, 462, 461, 491, 556, 462, 518, 471, - 471, 471, 459, 518, 459, 471, 456, 456, 456, 518, - 557, 461, 900, 564, 462, 574, 556, 472, 472, 472, - 518, 574, 471, 472, 567, 495, 495, 495, 495, 557, - 559, 495, 564, 570, 459, 469, 469, 469, 469, 495, - - 472, 469, 469, 567, 495, 497, 497, 497, 497, 469, - 570, 497, 573, 577, 469, 559, 469, 566, 469, 497, - 502, 502, 502, 577, 497, 566, 502, 509, 509, 509, - 568, 573, 502, 509, 510, 510, 510, 522, 522, 522, - 510, 893, 892, 502, 524, 524, 524, 469, 469, 539, - 509, 539, 512, 512, 512, 568, 644, 510, 512, 541, - 522, 541, 529, 529, 529, 538, 538, 538, 529, 572, - 539, 578, 575, 576, 579, 512, 529, 547, 547, 547, - 541, 580, 641, 646, 579, 529, 538, 676, 589, 572, - 656, 547, 575, 641, 524, 578, 576, 547, 656, 644, - - 547, 589, 539, 660, 580, 583, 583, 583, 646, 757, - 812, 837, 541, 660, 837, 757, 812, 676, 538, 550, - 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, - 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, - 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, - 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, - 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, - 550, 550, 550, 550, 550, 553, 553, 891, 831, 890, - 922, 553, 553, 553, 553, 553, 553, 553, 553, 553, + 310, 310, 310, 354, 386, 354, 310, 425, 523, 429, + 314, 314, 314, 425, 310, 314, 331, 331, 331, 523, + 384, 384, 384, 310, 311, 311, 311, 311, 928, 311, + 311, 311, 386, 314, 429, 311, 311, 331, 311, 311, + 311, 315, 315, 315, 432, 311, 315, 311, 311, 311, + 316, 316, 316, 354, 432, 316, 317, 317, 317, 318, + + 318, 318, 317, 426, 315, 318, 332, 332, 332, 331, + 384, 332, 414, 316, 433, 311, 311, 311, 332, 317, + 437, 927, 318, 319, 319, 319, 319, 426, 436, 332, + 319, 319, 319, 926, 414, 319, 330, 319, 433, 319, + 319, 319, 319, 330, 319, 437, 319, 436, 319, 319, + 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, + 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, + 319, 319, 319, 442, 445, 330, 319, 319, 341, 341, + 341, 442, 399, 341, 399, 348, 348, 348, 445, 575, + 341, 348, 349, 349, 349, 575, 925, 348, 351, 351, + + 351, 341, 391, 399, 349, 374, 349, 391, 348, 391, + 374, 366, 351, 366, 366, 349, 366, 366, 374, 391, + 440, 351, 360, 360, 360, 360, 441, 374, 360, 360, + 440, 924, 361, 361, 361, 399, 360, 443, 361, 441, + 439, 360, 363, 363, 363, 360, 361, 443, 363, 364, + 364, 364, 375, 438, 363, 361, 367, 367, 367, 919, + 375, 364, 371, 371, 371, 363, 439, 489, 371, 375, + 503, 438, 364, 489, 360, 365, 365, 365, 365, 367, + 365, 365, 365, 503, 489, 371, 365, 365, 365, 365, + 365, 365, 380, 380, 380, 530, 365, 918, 365, 365, + + 365, 372, 372, 372, 380, 381, 380, 372, 378, 378, + 378, 379, 379, 379, 378, 380, 381, 379, 381, 524, + 378, 381, 381, 379, 372, 548, 365, 365, 365, 526, + 524, 378, 530, 555, 379, 382, 382, 382, 385, 385, + 385, 393, 393, 393, 398, 398, 398, 518, 917, 382, + 548, 555, 393, 545, 393, 416, 416, 416, 382, 434, + 424, 424, 424, 545, 393, 398, 424, 434, 526, 434, + 446, 446, 446, 549, 518, 416, 529, 552, 416, 501, + 424, 447, 447, 447, 449, 449, 449, 552, 385, 450, + 501, 501, 424, 549, 424, 565, 450, 398, 455, 455, + + 455, 457, 457, 457, 455, 522, 467, 457, 467, 529, + 424, 522, 455, 457, 458, 458, 458, 565, 494, 458, + 494, 455, 522, 546, 457, 916, 458, 460, 450, 460, + 460, 554, 460, 460, 473, 473, 473, 458, 459, 459, + 459, 459, 546, 459, 459, 459, 492, 492, 492, 459, + 459, 459, 459, 459, 459, 554, 467, 570, 558, 459, + 547, 459, 459, 459, 461, 461, 461, 559, 494, 492, + 461, 462, 462, 462, 463, 463, 463, 462, 558, 547, + 463, 570, 464, 464, 464, 461, 559, 461, 464, 459, + 459, 459, 462, 571, 462, 561, 592, 463, 465, 465, + + 465, 737, 647, 573, 465, 464, 474, 474, 474, 592, + 571, 521, 474, 475, 475, 475, 521, 461, 534, 475, + 561, 465, 521, 573, 462, 472, 472, 472, 472, 474, + 534, 472, 472, 521, 534, 566, 475, 914, 737, 472, + 576, 505, 505, 505, 472, 647, 472, 505, 472, 498, + 498, 498, 498, 505, 566, 498, 500, 500, 500, 500, + 576, 569, 500, 498, 505, 507, 507, 507, 498, 577, + 500, 508, 508, 508, 568, 500, 659, 472, 472, 512, + 512, 512, 574, 508, 659, 512, 569, 580, 507, 513, + 513, 513, 577, 568, 508, 513, 911, 515, 515, 515, + + 578, 574, 512, 515, 525, 525, 525, 527, 527, 527, + 578, 542, 513, 542, 580, 532, 532, 532, 581, 579, + 515, 532, 541, 541, 541, 583, 544, 525, 544, 532, + 585, 910, 542, 579, 582, 550, 550, 550, 532, 556, + 556, 556, 581, 541, 582, 644, 649, 544, 583, 550, + 748, 585, 586, 586, 586, 550, 644, 527, 550, 650, + 662, 668, 556, 663, 542, 675, 752, 650, 666, 662, + 668, 649, 748, 663, 675, 541, 650, 752, 666, 544, + 553, 553, 553, 553, 553, 553, 553, 553, 553, 553, 553, 553, 553, 553, 553, 553, 553, 553, 553, 553, - 553, 553, 553, 553, 553, 554, 554, 831, 599, 922, - 599, 554, 554, 554, 554, 554, 554, 554, 554, 554, - 554, 554, 554, 554, 554, 554, 554, 554, 554, 554, - 554, 554, 554, 554, 554, 560, 560, 560, 587, 587, - 587, 560, 658, 733, 587, 591, 591, 591, 593, 593, - 593, 591, 647, 593, 594, 594, 594, 591, 599, 594, - 647, 587, 661, 658, 659, 663, 594, 748, 591, 647, - 666, 593, 673, 659, 668, 663, 661, 594, 748, 666, - 733, 673, 661, 889, 668, 560, 571, 571, 571, 571, - 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, - - 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, - 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, - 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, - 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, - 571, 571, 581, 581, 888, 581, 581, 581, 581, 581, - 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, - 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, - 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, - 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, - 581, 581, 581, 581, 581, 581, 581, 581, 595, 595, - - 595, 596, 596, 596, 595, 683, 645, 596, 597, 597, - 597, 598, 598, 598, 597, 887, 886, 598, 655, 595, - 655, 595, 596, 683, 596, 669, 605, 605, 605, 597, - 686, 597, 605, 671, 598, 606, 606, 606, 672, 655, - 685, 606, 607, 607, 607, 687, 669, 674, 607, 605, - 645, 595, 715, 671, 596, 686, 674, 685, 606, 672, - 715, 597, 732, 880, 848, 607, 613, 613, 687, 715, - 848, 655, 613, 613, 613, 613, 613, 613, 613, 613, - 613, 613, 613, 613, 613, 613, 613, 613, 613, 613, - 613, 613, 613, 613, 613, 613, 617, 617, 617, 624, - - 624, 624, 617, 740, 732, 624, 628, 628, 628, 750, - 617, 878, 628, 740, 744, 629, 629, 629, 747, 617, - 628, 629, 624, 875, 636, 636, 636, 629, 747, 628, - 636, 639, 639, 639, 750, 728, 744, 639, 629, 751, - 649, 649, 649, 728, 755, 639, 649, 636, 675, 751, - 675, 649, 728, 649, 639, 657, 657, 657, 682, 682, - 682, 657, 802, 649, 682, 689, 689, 689, 675, 755, - 696, 696, 696, 874, 795, 657, 696, 697, 697, 697, - 749, 682, 802, 697, 696, 689, 756, 657, 689, 697, - 707, 707, 707, 696, 752, 787, 707, 762, 675, 749, - - 697, 718, 718, 718, 752, 657, 678, 718, 753, 758, - 814, 756, 787, 707, 804, 762, 795, 689, 753, 758, - 678, 678, 873, 814, 718, 804, 678, 678, 678, 678, - 678, 678, 678, 678, 678, 678, 678, 678, 678, 678, - 678, 678, 678, 678, 678, 678, 678, 678, 678, 678, - 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, - 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, - 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, - 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, - 688, 688, 688, 688, 688, 688, 688, 688, 688, 688, - - 688, 688, 688, 688, 688, 688, 701, 701, 701, 712, - 712, 712, 701, 872, 722, 722, 722, 725, 725, 725, - 722, 899, 764, 725, 731, 731, 731, 701, 722, 701, - 731, 735, 712, 739, 739, 739, 735, 722, 735, 763, - 725, 765, 796, 793, 739, 764, 739, 731, 735, 741, - 741, 741, 803, 763, 899, 741, 739, 871, 806, 701, - 793, 712, 771, 771, 771, 765, 805, 876, 771, 773, - 773, 773, 776, 776, 776, 773, 803, 805, 776, 806, - 788, 788, 788, 773, 796, 771, 808, 827, 876, 794, - 794, 794, 773, 861, 807, 776, 938, 808, 827, 741, - - 760, 760, 760, 788, 760, 760, 760, 791, 791, 791, - 760, 760, 794, 791, 798, 798, 798, 800, 807, 800, - 798, 813, 800, 800, 842, 798, 823, 798, 823, 839, - 791, 823, 823, 800, 817, 817, 817, 798, 938, 833, - 817, 945, 846, 813, 833, 800, 833, 830, 842, 800, - 760, 847, 760, 767, 839, 864, 833, 817, 830, 865, - 830, 846, 881, 830, 830, 945, 864, 767, 767, 859, - 865, 847, 881, 767, 767, 767, 767, 767, 767, 767, - 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, - 767, 767, 767, 767, 767, 767, 767, 809, 809, 809, - - 868, 809, 809, 809, 822, 822, 822, 809, 809, 854, - 822, 828, 828, 828, 884, 854, 822, 828, 829, 829, - 829, 883, 863, 828, 829, 868, 854, 822, 863, 882, - 829, 835, 835, 835, 828, 884, 870, 858, 882, 863, - 883, 829, 835, 910, 835, 856, 855, 809, 870, 809, - 852, 851, 870, 910, 835, 840, 840, 840, 840, 840, - 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, - 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, - 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, - 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, - - 840, 840, 840, 840, 840, 840, 840, 840, 840, 840, - 840, 841, 841, 841, 841, 841, 841, 841, 841, 841, - 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, - 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, - 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, - 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, - 841, 841, 841, 841, 841, 841, 841, 857, 857, 857, - 862, 866, 866, 866, 896, 862, 902, 902, 902, 909, - 850, 862, 902, 930, 849, 896, 843, 902, 1043, 902, - 857, 1043, 862, 930, 866, 838, 836, 909, 826, 902, - - 907, 907, 907, 907, 907, 907, 907, 907, 907, 907, - 907, 907, 907, 907, 907, 907, 907, 907, 907, 907, - 907, 907, 907, 907, 907, 907, 907, 907, 907, 907, - 907, 907, 907, 907, 907, 907, 907, 907, 907, 907, - 907, 907, 907, 907, 907, 907, 907, 907, 907, 907, - 907, 907, 907, 907, 907, 907, 908, 916, 916, 916, - 921, 921, 921, 916, 923, 924, 921, 935, 937, 940, - 924, 825, 924, 977, 977, 978, 978, 977, 908, 978, - 916, 824, 924, 921, 935, 937, 988, 988, 940, 821, - 988, 820, 819, 923, 931, 931, 931, 931, 931, 931, - - 931, 931, 931, 931, 931, 931, 931, 931, 931, 931, - 931, 931, 931, 931, 931, 931, 931, 931, 931, 931, - 931, 931, 931, 931, 931, 931, 931, 931, 931, 931, - 931, 931, 931, 931, 931, 931, 931, 931, 931, 931, - 931, 931, 931, 931, 931, 931, 931, 931, 931, 931, - 947, 1008, 1008, 1025, 1025, 1008, 818, 1025, 816, 811, - 810, 801, 797, 792, 790, 789, 786, 784, 777, 775, - 774, 772, 770, 769, 754, 746, 743, 738, 737, 736, - 947, 953, 953, 953, 953, 953, 953, 953, 953, 953, - 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, - - 953, 953, 954, 954, 954, 954, 954, 954, 954, 954, - 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, - 954, 954, 954, 955, 955, 955, 955, 955, 955, 955, - 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, - 955, 955, 955, 955, 956, 956, 956, 956, 956, 956, - 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, - 956, 956, 956, 956, 956, 957, 957, 957, 957, 957, - 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, - 957, 957, 957, 957, 957, 957, 958, 958, 958, 958, - 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, - - 958, 958, 958, 958, 958, 958, 958, 959, 959, 959, - 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, - 959, 959, 959, 959, 959, 959, 959, 959, 960, 960, - 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, - 960, 960, 960, 960, 960, 960, 960, 960, 960, 961, - 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, - 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, - 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, - 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, - 962, 963, 963, 963, 963, 963, 963, 963, 963, 963, - - 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, - 963, 963, 964, 730, 729, 726, 964, 964, 964, 964, - 724, 723, 721, 964, 964, 965, 965, 965, 965, 720, - 965, 965, 965, 965, 965, 719, 965, 965, 965, 965, - 717, 716, 714, 965, 965, 966, 966, 713, 966, 966, - 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, - 966, 966, 711, 966, 966, 966, 967, 967, 710, 967, + 553, 553, 553, 553, 553, 553, 553, 553, 553, 553, + 553, 553, 553, 553, 553, 553, 553, 553, 553, 553, + 553, 553, 553, 553, 553, 553, 553, 553, 553, 553, + 553, 553, 553, 553, 553, 553, 562, 562, 562, 590, + 590, 590, 562, 661, 671, 590, 594, 594, 594, 596, + 596, 596, 594, 670, 596, 597, 597, 597, 594, 664, + 597, 673, 590, 670, 661, 671, 676, 597, 687, 594, + 762, 690, 596, 664, 691, 676, 762, 818, 597, 664, + 690, 673, 691, 818, 908, 687, 562, 572, 572, 572, + 572, 572, 572, 572, 572, 572, 572, 572, 572, 572, + + 572, 572, 572, 572, 572, 572, 572, 572, 572, 572, + 572, 572, 572, 572, 572, 572, 572, 572, 572, 572, + 572, 572, 572, 572, 572, 572, 572, 572, 572, 572, + 572, 572, 572, 572, 572, 572, 572, 572, 572, 572, + 572, 572, 572, 584, 584, 906, 584, 584, 584, 584, + 584, 584, 584, 584, 584, 584, 584, 584, 584, 584, + 584, 584, 584, 584, 584, 584, 584, 584, 584, 584, + 584, 584, 584, 584, 584, 584, 584, 584, 584, 584, + 584, 584, 584, 584, 584, 584, 584, 584, 584, 584, + 584, 584, 584, 584, 584, 584, 584, 584, 584, 598, + + 598, 598, 599, 599, 599, 598, 685, 648, 599, 600, + 600, 600, 601, 601, 601, 600, 678, 602, 601, 602, + 598, 905, 598, 599, 685, 599, 674, 608, 608, 608, + 600, 686, 600, 608, 770, 601, 609, 609, 609, 688, + 689, 753, 609, 610, 610, 610, 678, 674, 719, 610, + 608, 648, 598, 732, 767, 599, 719, 686, 770, 609, + 753, 732, 600, 689, 688, 719, 610, 602, 616, 616, + 732, 913, 767, 904, 616, 616, 616, 616, 616, 616, + 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, + 616, 616, 616, 616, 616, 616, 616, 616, 620, 620, + + 620, 627, 627, 627, 620, 738, 744, 627, 631, 631, + 631, 913, 620, 793, 631, 751, 744, 632, 632, 632, + 754, 620, 631, 632, 627, 751, 639, 639, 639, 632, + 793, 631, 639, 642, 642, 642, 658, 768, 658, 642, + 632, 738, 652, 652, 652, 754, 760, 642, 652, 639, + 677, 768, 677, 652, 903, 652, 642, 658, 660, 660, + 660, 684, 684, 684, 660, 652, 755, 684, 769, 757, + 677, 760, 761, 693, 693, 693, 755, 758, 660, 757, + 700, 700, 700, 809, 684, 763, 700, 758, 771, 658, + 660, 769, 808, 693, 700, 763, 693, 761, 771, 812, + + 677, 799, 810, 700, 701, 701, 701, 809, 660, 680, + 701, 811, 808, 810, 902, 814, 701, 834, 799, 901, + 812, 900, 811, 680, 680, 693, 814, 701, 834, 680, + 680, 680, 680, 680, 680, 680, 680, 680, 680, 680, + 680, 680, 680, 680, 680, 680, 680, 680, 680, 680, + 680, 680, 680, 692, 692, 692, 692, 692, 692, 692, + 692, 692, 692, 692, 692, 692, 692, 692, 692, 692, + 692, 692, 692, 692, 692, 692, 692, 692, 692, 692, + 692, 692, 692, 692, 692, 692, 692, 692, 692, 692, + 692, 692, 692, 692, 692, 692, 692, 692, 692, 692, + + 692, 692, 692, 692, 692, 692, 692, 692, 692, 705, + 705, 705, 711, 711, 711, 705, 813, 849, 711, 716, + 716, 716, 722, 722, 722, 726, 726, 726, 722, 739, + 705, 726, 705, 899, 739, 711, 739, 853, 801, 726, + 813, 849, 716, 802, 819, 722, 739, 895, 726, 729, + 729, 729, 735, 735, 735, 729, 853, 820, 735, 794, + 794, 794, 705, 743, 743, 743, 819, 745, 745, 745, + 820, 716, 729, 745, 743, 735, 743, 777, 777, 777, + 801, 844, 794, 777, 844, 802, 743, 779, 779, 779, + 782, 782, 782, 779, 922, 839, 782, 838, 892, 855, + + 777, 779, 797, 797, 797, 855, 877, 892, 797, 846, + 779, 890, 922, 782, 800, 800, 800, 745, 765, 765, + 765, 886, 765, 765, 765, 797, 838, 839, 765, 765, + 804, 804, 804, 806, 846, 806, 804, 800, 806, 806, + 874, 804, 886, 804, 824, 824, 824, 877, 912, 806, + 824, 874, 854, 804, 829, 829, 829, 830, 864, 830, + 829, 806, 830, 830, 864, 806, 829, 824, 765, 891, + 765, 773, 854, 840, 923, 864, 875, 829, 840, 891, + 840, 912, 888, 885, 923, 773, 773, 875, 884, 936, + 840, 773, 773, 773, 773, 773, 773, 773, 773, 773, + + 773, 773, 773, 773, 773, 773, 773, 773, 773, 773, + 773, 773, 773, 773, 773, 815, 815, 815, 936, 815, + 815, 815, 821, 821, 821, 815, 815, 835, 835, 835, + 842, 842, 842, 835, 836, 836, 836, 878, 837, 835, + 836, 842, 821, 842, 880, 821, 836, 872, 909, 837, + 835, 837, 872, 842, 837, 837, 880, 836, 872, 909, + 880, 944, 878, 1060, 883, 815, 1060, 815, 882, 872, + 881, 944, 821, 847, 847, 847, 847, 847, 847, 847, + 847, 847, 847, 847, 847, 847, 847, 847, 847, 847, + 847, 847, 847, 847, 847, 847, 847, 847, 847, 847, + + 847, 847, 847, 847, 847, 847, 847, 847, 847, 847, + 847, 847, 847, 847, 847, 847, 847, 847, 847, 847, + 847, 847, 847, 847, 847, 847, 847, 847, 847, 848, + 848, 848, 848, 848, 848, 848, 848, 848, 848, 848, + 848, 848, 848, 848, 848, 848, 848, 848, 848, 848, + 848, 848, 848, 848, 848, 848, 848, 848, 848, 848, + 848, 848, 848, 848, 848, 848, 848, 848, 848, 848, + 848, 848, 848, 848, 848, 848, 848, 848, 848, 848, + 848, 848, 848, 848, 848, 856, 856, 856, 867, 867, + 867, 893, 873, 876, 876, 876, 894, 921, 873, 937, + + 871, 915, 915, 915, 949, 951, 954, 915, 856, 873, + 893, 867, 915, 938, 915, 869, 876, 894, 938, 921, + 938, 949, 951, 868, 915, 954, 866, 865, 937, 862, + 938, 861, 860, 859, 858, 856, 920, 920, 920, 920, + 920, 920, 920, 920, 920, 920, 920, 920, 920, 920, + 920, 920, 920, 920, 920, 920, 920, 920, 920, 920, + 920, 920, 920, 920, 920, 920, 920, 920, 920, 920, + 920, 920, 920, 920, 920, 920, 920, 920, 920, 920, + 920, 920, 920, 920, 920, 920, 920, 920, 920, 920, + 920, 920, 930, 930, 930, 935, 935, 935, 930, 991, + + 991, 935, 857, 991, 992, 992, 1002, 1002, 992, 850, + 1002, 845, 1022, 1022, 843, 930, 1022, 833, 935, 945, + 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, + 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, + 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, + 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, + 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, + 945, 945, 945, 945, 945, 952, 959, 961, 1040, 1040, + 832, 831, 1040, 828, 827, 826, 825, 823, 817, 816, + 807, 803, 798, 796, 795, 792, 790, 783, 781, 780, + + 959, 778, 776, 775, 759, 750, 747, 961, 742, 741, + 740, 734, 733, 730, 728, 727, 725, 952, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, - 967, 967, 967, 709, 967, 967, 967, 968, 968, 708, + 967, 967, 967, 967, 967, 967, 967, 967, 967, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, - - 968, 968, 968, 968, 706, 968, 968, 968, 969, 969, - 969, 705, 969, 969, 704, 969, 969, 969, 703, 969, - 969, 702, 969, 700, 699, 969, 969, 969, 970, 970, - 698, 970, 970, 970, 695, 970, 694, 970, 970, 970, - 970, 693, 692, 691, 970, 970, 971, 681, 680, 971, - 971, 971, 670, 971, 667, 971, 971, 971, 971, 662, - 654, 653, 971, 971, 972, 972, 652, 651, 972, 972, - 650, 648, 643, 972, 972, 642, 972, 640, 638, 635, - 972, 972, 973, 633, 632, 631, 973, 973, 630, 627, - 626, 973, 973, 973, 973, 625, 623, 622, 973, 973, - - 974, 974, 974, 621, 620, 974, 974, 974, 974, 974, - 619, 974, 974, 974, 974, 618, 616, 615, 974, 974, - 975, 975, 614, 975, 975, 975, 975, 975, 975, 975, + 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, + 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, + 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, + 969, 970, 970, 970, 970, 970, 970, 970, 970, 970, + 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, + + 970, 970, 971, 971, 971, 971, 971, 971, 971, 971, + 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, + 971, 971, 971, 972, 972, 972, 972, 972, 972, 972, + 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, + 972, 972, 972, 972, 973, 973, 973, 973, 973, 973, + 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, + 973, 973, 973, 973, 973, 974, 974, 974, 974, 974, + 974, 974, 974, 974, 974, 974, 974, 974, 974, 974, + 974, 974, 974, 974, 974, 974, 975, 975, 975, 975, 975, 975, 975, 975, 975, 975, 975, 975, 975, 975, - 975, 976, 976, 976, 612, 611, 976, 976, 976, 976, - 976, 610, 976, 976, 976, 976, 609, 608, 604, 976, - 976, 979, 979, 603, 602, 601, 600, 592, 590, 586, - 585, 584, 979, 562, 537, 979, 536, 535, 534, 979, - 979, 980, 980, 533, 980, 980, 980, 980, 980, 980, - 980, 980, 980, 980, 980, 980, 980, 980, 980, 980, - - 980, 980, 981, 532, 528, 525, 517, 516, 981, 514, - 513, 981, 508, 506, 503, 981, 981, 982, 501, 496, - 982, 494, 493, 982, 490, 488, 487, 982, 982, 983, - 983, 983, 983, 983, 983, 983, 983, 983, 983, 983, - 983, 983, 983, 983, 983, 983, 983, 983, 983, 983, - 984, 984, 484, 984, 984, 984, 984, 984, 984, 984, - 984, 984, 984, 984, 984, 984, 984, 984, 984, 984, - 984, 985, 985, 985, 985, 985, 985, 985, 985, 985, - 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, - 985, 985, 986, 986, 986, 986, 986, 986, 986, 986, - - 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, - 986, 986, 986, 987, 987, 483, 987, 987, 987, 987, - 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, - 987, 987, 987, 987, 989, 989, 481, 480, 479, 478, - 477, 476, 474, 473, 468, 467, 466, 465, 989, 463, - 451, 450, 449, 989, 990, 448, 430, 990, 421, 411, - 399, 990, 990, 991, 991, 398, 991, 991, 991, 991, - 991, 991, 991, 991, 991, 991, 991, 991, 991, 991, - 991, 991, 991, 991, 992, 992, 395, 992, 992, 992, - 992, 992, 992, 992, 992, 992, 992, 992, 992, 992, - - 992, 992, 992, 992, 992, 993, 993, 394, 993, 993, - 993, 993, 993, 993, 993, 993, 993, 993, 993, 993, - 993, 993, 993, 993, 993, 993, 994, 994, 994, 994, - 994, 994, 994, 994, 994, 994, 994, 994, 994, 994, - 994, 994, 994, 994, 994, 994, 994, 995, 392, 388, - 995, 387, 374, 371, 995, 995, 996, 996, 996, 996, - 996, 996, 996, 996, 996, 996, 996, 996, 368, 996, - 996, 367, 996, 996, 996, 996, 996, 997, 997, 997, - 997, 997, 997, 997, 997, 997, 997, 997, 997, 366, - 997, 997, 355, 997, 997, 997, 997, 997, 998, 998, + 975, 975, 975, 975, 975, 975, 975, 976, 976, 976, + 976, 976, 976, 976, 976, 976, 976, 976, 976, 976, + 976, 976, 976, 976, 976, 976, 976, 976, 977, 977, + 977, 977, 977, 977, 977, 977, 977, 977, 977, 977, + 977, 977, 977, 977, 977, 977, 977, 977, 977, 978, + 724, 723, 721, 978, 978, 978, 978, 720, 718, 717, + 978, 978, 979, 979, 979, 979, 715, 979, 979, 979, + 979, 979, 714, 979, 979, 979, 979, 713, 712, 710, + 979, 979, 980, 980, 709, 980, 980, 980, 980, 980, + 980, 980, 980, 980, 980, 980, 980, 980, 980, 708, + + 980, 980, 980, 981, 981, 707, 981, 981, 981, 981, + 981, 981, 981, 981, 981, 981, 981, 981, 981, 981, + 706, 981, 981, 981, 982, 982, 704, 982, 982, 982, + 982, 982, 982, 982, 982, 982, 982, 982, 982, 982, + 982, 703, 982, 982, 982, 983, 983, 983, 702, 983, + 983, 699, 983, 983, 983, 698, 983, 983, 697, 983, + 696, 695, 983, 983, 983, 984, 984, 683, 984, 984, + 984, 682, 984, 672, 984, 984, 984, 984, 669, 667, + 665, 984, 984, 985, 657, 656, 985, 985, 985, 655, + 985, 654, 985, 985, 985, 985, 653, 651, 646, 985, + + 985, 986, 986, 645, 643, 986, 986, 641, 638, 636, + 986, 986, 635, 986, 634, 633, 630, 986, 986, 987, + 629, 628, 626, 987, 987, 625, 624, 623, 987, 987, + 987, 987, 622, 621, 619, 987, 987, 988, 988, 988, + 618, 617, 988, 988, 988, 988, 988, 615, 988, 988, + 988, 988, 614, 613, 612, 988, 988, 989, 989, 611, + 989, 989, 989, 989, 989, 989, 989, 989, 989, 989, + 989, 989, 989, 989, 989, 989, 989, 989, 990, 990, + 990, 607, 606, 990, 990, 990, 990, 990, 605, 990, + 990, 990, 990, 604, 603, 595, 990, 990, 993, 993, + + 593, 589, 588, 587, 564, 540, 539, 538, 537, 993, + 536, 535, 993, 531, 528, 520, 993, 993, 994, 994, + 519, 994, 994, 994, 994, 994, 994, 994, 994, 994, + 994, 994, 994, 994, 994, 994, 994, 994, 994, 995, + 517, 516, 511, 509, 506, 995, 504, 499, 995, 497, + 496, 493, 995, 995, 996, 491, 490, 996, 487, 486, + 996, 484, 483, 482, 996, 996, 997, 997, 997, 997, + 997, 997, 997, 997, 997, 997, 997, 997, 997, 997, + 997, 997, 997, 997, 997, 997, 997, 998, 998, 481, 998, 998, 998, 998, 998, 998, 998, 998, 998, 998, - 354, 998, 998, 353, 998, 998, 998, 998, 998, 999, - 999, 350, 999, 999, 999, 999, 999, 999, 999, 999, + + 998, 998, 998, 998, 998, 998, 998, 998, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, - 1000, 1000, 345, 1000, 1000, 1000, 1000, 1000, 1000, 1000, + 999, 999, 999, 999, 999, 999, 999, 999, 999, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, - 1000, 1001, 1001, 342, 1001, 1001, 1001, 1001, 1001, 1001, + 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, + 1001, 1001, 480, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, - 1001, 1001, 1002, 1002, 1002, 340, 338, 1002, 1002, 1002, - 1002, 1002, 337, 1002, 1002, 1002, 1002, 336, 335, 332, - - 1002, 1002, 1003, 1003, 331, 325, 1003, 324, 323, 322, - 321, 320, 319, 318, 1003, 307, 1003, 264, 263, 262, - 258, 1003, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 1004, - 1004, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 1004, 1004, - 1004, 1004, 1004, 1005, 1005, 1005, 1005, 1005, 1005, 1005, + 1001, 1003, 1003, 479, 477, 476, 471, 470, 469, 468, + 466, 454, 453, 452, 451, 1003, 431, 423, 413, 401, + 1003, 1004, 400, 397, 1004, 396, 394, 390, 1004, 1004, + + 1005, 1005, 389, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, - 1005, 1005, 1005, 1005, 1006, 1006, 238, 1006, 1006, 1006, + 1005, 1006, 1006, 376, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, - 1006, 1006, 1006, 1006, 1006, 1007, 1007, 233, 1007, 1007, + 1006, 1006, 1007, 1007, 373, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, - - 1007, 1007, 1007, 1007, 1007, 1007, 1009, 1009, 232, 1009, - 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, - 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1010, 1010, 231, - 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, - 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1011, 1011, - 225, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, - 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1012, - 1012, 224, 1012, 1012, 1012, 1012, 1012, 1012, 1012, 1012, - 1012, 1012, 1012, 1012, 1012, 1012, 1012, 1012, 1012, 1012, - 1013, 1013, 221, 1013, 1013, 1013, 1013, 1013, 1013, 1013, - + 1007, 1007, 1007, 1008, 1008, 1008, 1008, 1008, 1008, 1008, + 1008, 1008, 1008, 1008, 1008, 1008, 1008, 1008, 1008, 1008, + 1008, 1008, 1008, 1008, 1009, 370, 369, 1009, 368, 357, + 356, 1009, 1009, 1010, 1010, 1010, 1010, 1010, 1010, 1010, + + 1010, 1010, 1010, 1010, 1010, 355, 1010, 1010, 352, 1010, + 1010, 1010, 1010, 1010, 1011, 1011, 1011, 1011, 1011, 1011, + 1011, 1011, 1011, 1011, 1011, 1011, 347, 1011, 1011, 344, + 1011, 1011, 1011, 1011, 1011, 1012, 1012, 1012, 1012, 1012, + 1012, 1012, 1012, 1012, 1012, 1012, 1012, 342, 1012, 1012, + 340, 1012, 1012, 1012, 1012, 1012, 1013, 1013, 339, 1013, 1013, 1013, 1013, 1013, 1013, 1013, 1013, 1013, 1013, 1013, - 1013, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, - 1014, 1014, 1014, 220, 1014, 1014, 219, 1014, 1014, 1014, - 1014, 1014, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, - 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, - 1015, 1015, 1015, 1016, 1016, 1016, 1016, 1016, 1016, 1016, - 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, - 1016, 1016, 1016, 1016, 1017, 1017, 218, 1017, 1017, 1017, - 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, - 1017, 1017, 1017, 1017, 1017, 1018, 1018, 1018, 1018, 1018, - + 1013, 1013, 1013, 1013, 1013, 1013, 1013, 1014, 1014, 338, + 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, + 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1015, 1015, + + 337, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, + 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1016, + 1016, 1016, 334, 333, 1016, 1016, 1016, 1016, 1016, 327, + 1016, 1016, 1016, 1016, 326, 325, 324, 1016, 1016, 1017, + 1017, 323, 322, 1017, 321, 320, 309, 265, 264, 263, + 259, 1017, 239, 1017, 234, 233, 232, 226, 1017, 1018, + 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, - 1018, 1018, 1018, 1018, 1018, 1018, 1019, 1019, 217, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, - 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1020, 1020, 216, - 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, - 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1021, 1021, - 215, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, - 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1022, - 1022, 214, 1022, 1022, 1022, 1022, 1022, 1022, 1022, 1022, - 1022, 1022, 1022, 1022, 1022, 1022, 1022, 1022, 1022, 1022, + 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, + 1019, 1020, 1020, 225, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, + 1020, 1020, 1021, 1021, 222, 1021, 1021, 1021, 1021, 1021, + 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, + 1021, 1021, 1021, 1023, 1023, 221, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, - 1023, 1023, 209, 1023, 1023, 202, 1023, 1023, 1023, 1023, - 1023, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, + 1023, 1023, 1023, 1023, 1024, 1024, 220, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, - 1024, 1024, 1026, 1026, 200, 1026, 1026, 1026, 1026, 1026, + 1024, 1024, 1024, 1024, 1024, 1025, 1025, 219, 1025, 1025, + 1025, 1025, 1025, 1025, 1025, 1025, 1025, 1025, 1025, 1025, + + 1025, 1025, 1025, 1025, 1025, 1025, 1026, 1026, 218, 1026, 1026, 1026, 1026, 1026, 1026, 1026, 1026, 1026, 1026, 1026, - 1026, 1026, 1026, 1027, 1027, 1027, 1027, 1027, 1027, 1027, + 1026, 1026, 1026, 1026, 1026, 1026, 1026, 1027, 1027, 217, 1027, 1027, 1027, 1027, 1027, 1027, 1027, 1027, 1027, 1027, - 1027, 1027, 1027, 1027, 1028, 1028, 1028, 1028, 1028, 1028, + 1027, 1027, 1027, 1027, 1027, 1027, 1027, 1027, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, - - 1028, 199, 1028, 1028, 1028, 1029, 1029, 198, 1029, 1029, + 216, 1028, 1028, 215, 1028, 1028, 1028, 1028, 1028, 1029, + 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, - 1029, 1029, 1029, 1029, 1029, 1029, 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030, - 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1031, 1031, 1031, - 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, - 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1032, 1032, - 1032, 1032, 1032, 196, 1032, 1032, 1032, 1032, 1032, 1032, - 1032, 1032, 1032, 1032, 1032, 1032, 1032, 1032, 1032, 1033, - 1033, 188, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, + 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030, + 1030, 1031, 1031, 210, 1031, 1031, 1031, 1031, 1031, 1031, + 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, + 1031, 1031, 1032, 1032, 203, 1032, 1032, 1032, 1032, 1032, + 1032, 1032, 1032, 1032, 1032, 1032, 1032, 1032, 201, 1032, + 1032, 1032, 1032, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, - 1034, 1034, 185, 1034, 1034, 1034, 1034, 1034, 1034, 1034, + 1033, 1033, 1033, 1033, 1034, 1034, 200, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034, - 1034, 1035, 1035, 184, 1035, 1035, 1035, 1035, 1035, 1035, + 1034, 1034, 1034, 1034, 1034, 1035, 1035, 199, 1035, 1035, + 1035, 1035, 1035, 1035, 1035, 1035, 1035, 1035, 1035, 1035, - 1035, 1035, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, - 1036, 1036, 1036, 1036, 183, 1036, 1036, 182, 1036, 1036, - 1036, 1036, 1036, 1037, 1037, 1037, 1037, 1037, 1037, 1037, + 1035, 1035, 1035, 1035, 1035, 1035, 1036, 1036, 197, 1036, + 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, + 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1037, 1037, 189, 1037, 1037, 1037, 1037, 1037, 1037, 1037, 1037, 1037, 1037, - 1037, 1037, 1037, 1037, 1038, 1038, 179, 1038, 1038, 1038, - + 1037, 1037, 1037, 1037, 1037, 1037, 1037, 1037, 1038, 1038, 1038, 1038, 1038, 1038, 1038, 1038, 1038, 1038, 1038, 1038, - 1038, 1038, 1038, 1038, 1038, 1039, 1039, 166, 1039, 1039, + 186, 1038, 1038, 185, 1038, 1038, 1038, 1038, 1038, 1039, + 1039, 1039, 1039, 1039, 1039, 1039, 1039, 1039, 1039, 1039, 1039, 1039, 1039, 1039, 1039, 1039, 1039, 1039, 1039, 1039, - 1039, 1039, 1039, 1039, 1039, 1039, 1040, 1040, 1040, 1040, - 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, - 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1041, 1041, 1041, - 1041, 1041, 1041, 1041, 1041, 1041, 1041, 1041, 1041, 161, - 1041, 1041, 160, 1041, 1041, 1041, 1041, 1041, 1042, 1042, + + 1041, 1041, 184, 1041, 1041, 1041, 1041, 1041, 1041, 1041, + 1041, 1041, 1041, 1041, 1041, 1041, 1041, 1041, 1041, 1041, + 1041, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042, - 136, 1042, 1042, 135, 1042, 1042, 1042, 1042, 1042, 1044, - - 1044, 126, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, - 1044, 1044, 1044, 1044, 1044, 119, 1044, 1044, 1044, 1044, - 112, 75, 73, 67, 64, 61, 58, 57, 51, 49, - 27, 12, 11, 952, 952, 952, 952, 952, 952, 952, - 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, - 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, - 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, - 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, - 952, 952, 952, 952, 952, 952, 952, 952, 952, 952 + 1042, 1042, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, + 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 183, + 1043, 1043, 1043, 1044, 1044, 180, 1044, 1044, 1044, 1044, + 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, + 1044, 1044, 1044, 1044, 1045, 1045, 1045, 1045, 1045, 1045, + 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, + + 1045, 1045, 1045, 1045, 1045, 1046, 1046, 1046, 1046, 1046, + 1046, 1046, 1046, 1046, 1046, 1046, 1046, 1046, 1046, 1046, + 1046, 1046, 1046, 1046, 1046, 1046, 1047, 1047, 1047, 1047, + 1047, 167, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, + 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1048, 1048, 162, + 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, + 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1049, 1049, + 161, 1049, 1049, 1049, 1049, 1049, 1049, 1049, 1049, 1049, + 1049, 1049, 1049, 1049, 1049, 1049, 1049, 1049, 1049, 1050, + 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050, + + 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050, + 1051, 1051, 136, 1051, 1051, 1051, 1051, 1051, 1051, 1051, + 1051, 1051, 1051, 1051, 1051, 1051, 1051, 1051, 1051, 1051, + 1051, 1052, 1052, 1052, 1052, 1052, 1052, 1052, 1052, 1052, + 1052, 1052, 1052, 135, 1052, 1052, 126, 1052, 1052, 1052, + 1052, 1052, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, + 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, + 1053, 1053, 1053, 1054, 1054, 119, 1054, 1054, 1054, 1054, + 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, + 1054, 1054, 1054, 1054, 1055, 1055, 1055, 1055, 1055, 1055, + + 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, + 1055, 112, 1055, 1055, 1055, 1056, 1056, 75, 1056, 1056, + 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, + 1056, 1056, 1056, 1056, 1056, 1056, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1058, 1058, 1058, + 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 73, + 1058, 1058, 67, 1058, 1058, 1058, 1058, 1058, 1059, 1059, + 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, + 64, 1059, 1059, 61, 1059, 1059, 1059, 1059, 1059, 1061, + + 1061, 58, 1061, 1061, 1061, 1061, 1061, 1061, 1061, 1061, + 1061, 1061, 1061, 1061, 1061, 57, 1061, 1061, 1061, 1061, + 51, 49, 27, 12, 11, 966, 966, 966, 966, 966, + 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, + 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, + 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, + 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, + 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, + 966, 966 } ; extern int yy_flex_debug; @@ -1976,13 +1995,14 @@ goto find_rule; \ #define YY_MORE_ADJ 0 #define YY_RESTORE_YY_MORE_OFFSET char *yytext; -#line 1 "lacheck.l" -/* -*- Mode: C -*- +#line 1 "../../../utils/lacheck/lacheck.l" +/* $Id$ * * lacheck.lex - A consistency checker checker for LaTeX documents * * Copyright (C) 1991, 1992 Kresten Krab Thorup. * Copyright (C) 1993 --- 1998 Per Abrahamsen. + * Copyright (C) 2019 Karl Berry. * * 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 @@ -1995,16 +2015,19 @@ char *yytext; * 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., 675 Mass Ave, Cambridge, MA 02139, USA. + * along with this program. If not, see . * * Please send bugs, suggestions, and queries to auc-tex_mgr@sunsite.auc.dk. * - * $Revision: 1.26 $ + * original Revision: 1.26 $ * Author : Kresten Krab Thorup * Created On : Sun May 26 18:11:58 1991 * * HISTORY + * 08-Jul-2019 Karl Berry + * Separate patterns for \def vs. \newcommand. Report from Zayd Hammoudeh, + * https://tug.org/pipermail/tex-live/2019-January/043083.html. + * Update version number, contact info. * 07-Mar-1998 Per Abrahamsen * Added return to yywrap. Patch by Fabrice POPINEAU * . @@ -2091,7 +2114,7 @@ char *yytext; * 26-May-1991 Kresten Krab Thorup * Initial distribution version. */ -#line 119 "lacheck.l" +#line 123 "../../../utils/lacheck/lacheck.l" #include #include @@ -2164,7 +2187,7 @@ int def_count = 0; -#line 2168 "lacheck.c" +#line 2191 "../../../utils/lacheck/lacheck.c" #define INITIAL 0 #define B_ENVIRONMENT 1 @@ -2209,11 +2232,11 @@ void yyset_extra (YY_EXTRA_TYPE user_defined ); FILE *yyget_in (void ); -void yyset_in (FILE * in_str ); +void yyset_in (FILE * _in_str ); FILE *yyget_out (void ); -void yyset_out (FILE * out_str ); +void yyset_out (FILE * _out_str ); yy_size_t yyget_leng (void ); @@ -2221,7 +2244,7 @@ char *yyget_text (void ); int yyget_lineno (void ); -void yyset_lineno (int line_number ); +void yyset_lineno (int _line_number ); /* Macros after this point can all be overridden by user definitions in * section 1. @@ -2235,8 +2258,12 @@ extern int yywrap (void ); #endif #endif +#ifndef YY_NO_UNPUT + static void yyunput (int c,char *buf_ptr ); +#endif + #ifndef yytext_ptr static void yy_flex_strncpy (char *,yyconst char *,int ); #endif @@ -2257,7 +2284,12 @@ static int input (void ); /* Amount of stuff to slurp up with each read. */ #ifndef YY_READ_BUF_SIZE +#ifdef __ia64__ +/* On IA-64, the buffer size is 16k, not 8k */ +#define YY_READ_BUF_SIZE 16384 +#else #define YY_READ_BUF_SIZE 8192 +#endif /* __ia64__ */ #endif /* Copy whatever the last rule matched to the standard output. */ @@ -2344,7 +2376,7 @@ extern int yylex (void); /* Code executed at the end of each rule. */ #ifndef YY_BREAK -#define YY_BREAK break; +#define YY_BREAK /*LINTED*/break; #endif #define YY_RULE_SETUP \ @@ -2357,9 +2389,9 @@ extern int yylex (void); */ YY_DECL { - register yy_state_type yy_current_state; - register char *yy_cp, *yy_bp; - register int yy_act; + yy_state_type yy_current_state; + char *yy_cp, *yy_bp; + int yy_act; if ( !(yy_init) ) { @@ -2394,12 +2426,12 @@ YY_DECL } { -#line 234 "lacheck.l" +#line 238 "../../../utils/lacheck/lacheck.l" -#line 2401 "lacheck.c" +#line 2433 "../../../utils/lacheck/lacheck.c" - while ( 1 ) /* loops until end-of-file is reached */ + while ( /*CONSTCOND*/1 ) /* loops until end-of-file is reached */ { yy_cp = (yy_c_buf_p); @@ -2420,18 +2452,18 @@ YY_DECL yy_match: do { - register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)] ; + YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)] ; while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 953 ) + if ( yy_current_state >= 967 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; *(yy_state_ptr)++ = yy_current_state; ++yy_cp; } - while ( yy_current_state != 952 ); + while ( yy_current_state != 966 ); yy_find_action: yy_current_state = *--(yy_state_ptr); @@ -2480,45 +2512,45 @@ do_action: /* This label is used only to access EOF actions. */ { /* beginning of action switch */ case 1: YY_RULE_SETUP -#line 236 "lacheck.l" +#line 240 "../../../utils/lacheck/lacheck.l" { ; } YY_BREAK case 2: YY_RULE_SETUP -#line 238 "lacheck.l" +#line 242 "../../../utils/lacheck/lacheck.l" { ; } YY_BREAK case 3: /* rule 3 can match eol */ YY_RULE_SETUP -#line 240 "lacheck.l" +#line 244 "../../../utils/lacheck/lacheck.l" { line_count++; } YY_BREAK case 4: /* rule 4 can match eol */ YY_RULE_SETUP -#line 242 "lacheck.l" +#line 246 "../../../utils/lacheck/lacheck.l" { line_count++; } YY_BREAK case 5: YY_RULE_SETUP -#line 244 "lacheck.l" +#line 248 "../../../utils/lacheck/lacheck.l" { ; } YY_BREAK case 6: YY_RULE_SETUP -#line 246 "lacheck.l" +#line 250 "../../../utils/lacheck/lacheck.l" { ; } YY_BREAK case 7: YY_RULE_SETUP -#line 248 "lacheck.l" +#line 252 "../../../utils/lacheck/lacheck.l" { ; } YY_BREAK case 8: /* rule 8 can match eol */ YY_RULE_SETUP -#line 250 "lacheck.l" +#line 254 "../../../utils/lacheck/lacheck.l" { if (CG_TYPE != 4 && CG_TYPE != 5) { if (!(CG_TYPE == 2 && strstr(CG_NAME, "array"))) { @@ -2533,12 +2565,12 @@ YY_RULE_SETUP YY_BREAK case 9: YY_RULE_SETUP -#line 262 "lacheck.l" +#line 266 "../../../utils/lacheck/lacheck.l" { push( "{", 0, line_count);} YY_BREAK case 10: YY_RULE_SETUP -#line 264 "lacheck.l" +#line 268 "../../../utils/lacheck/lacheck.l" { { int italic = CG_ITALIC; @@ -2551,12 +2583,12 @@ YY_RULE_SETUP YY_BREAK case 11: YY_RULE_SETUP -#line 274 "lacheck.l" +#line 278 "../../../utils/lacheck/lacheck.l" { g_checkend(0); } YY_BREAK case 12: YY_RULE_SETUP -#line 276 "lacheck.l" +#line 280 "../../../utils/lacheck/lacheck.l" { { if (!CG_ITALIC) @@ -2570,7 +2602,7 @@ YY_RULE_SETUP YY_BREAK case 13: YY_RULE_SETUP -#line 287 "lacheck.l" +#line 291 "../../../utils/lacheck/lacheck.l" { { if (CG_ITALIC) @@ -2589,7 +2621,7 @@ YY_LINENO_REWIND_TO(yy_cp - 2); (yy_c_buf_p) = yy_cp -= 2; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP -#line 298 "lacheck.l" +#line 302 "../../../utils/lacheck/lacheck.l" { { linecount(); @@ -2608,7 +2640,7 @@ YY_LINENO_REWIND_TO(yy_cp - 2); (yy_c_buf_p) = yy_cp -= 2; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP -#line 309 "lacheck.l" +#line 313 "../../../utils/lacheck/lacheck.l" { { linecount(); @@ -2622,17 +2654,17 @@ YY_RULE_SETUP YY_BREAK case 16: YY_RULE_SETUP -#line 320 "lacheck.l" +#line 324 "../../../utils/lacheck/lacheck.l" { BEGIN(INITIAL); } YY_BREAK case 17: YY_RULE_SETUP -#line 322 "lacheck.l" +#line 326 "../../../utils/lacheck/lacheck.l" { BEGIN(ICOR); } YY_BREAK case 18: YY_RULE_SETUP -#line 324 "lacheck.l" +#line 328 "../../../utils/lacheck/lacheck.l" { { printf("\"%s\", line %d: double \\/ found \"%s\"\n", @@ -2648,7 +2680,7 @@ YY_LINENO_REWIND_TO(yy_cp - 1); (yy_c_buf_p) = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP -#line 332 "lacheck.l" +#line 336 "../../../utils/lacheck/lacheck.l" { CG_ITALIC = 1; } YY_BREAK case 20: @@ -2658,7 +2690,7 @@ YY_LINENO_REWIND_TO(yy_bp + 12); (yy_c_buf_p) = yy_cp = yy_bp + 12; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP -#line 334 "lacheck.l" +#line 338 "../../../utils/lacheck/lacheck.l" { { if(CG_ITALIC) @@ -2675,7 +2707,7 @@ YY_LINENO_REWIND_TO(yy_bp + 12); (yy_c_buf_p) = yy_cp = yy_bp + 12; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP -#line 343 "lacheck.l" +#line 347 "../../../utils/lacheck/lacheck.l" { CG_ITALIC = 0; } YY_BREAK case 22: @@ -2685,7 +2717,7 @@ YY_LINENO_REWIND_TO(yy_bp + 3); (yy_c_buf_p) = yy_cp = yy_bp + 3; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP -#line 345 "lacheck.l" +#line 349 "../../../utils/lacheck/lacheck.l" { { if(CG_ITALIC) @@ -2702,12 +2734,12 @@ YY_LINENO_REWIND_TO(yy_bp + 3); (yy_c_buf_p) = yy_cp = yy_bp + 3; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP -#line 354 "lacheck.l" +#line 358 "../../../utils/lacheck/lacheck.l" { CG_ITALIC = !CG_ITALIC; } YY_BREAK case 24: YY_RULE_SETUP -#line 356 "lacheck.l" +#line 360 "../../../utils/lacheck/lacheck.l" { { printf("\"%s\", line %d: do not use \\/ before \"%s\"\n", @@ -2719,70 +2751,93 @@ YY_RULE_SETUP case 25: /* rule 25 can match eol */ YY_RULE_SETUP -#line 364 "lacheck.l" +#line 368 "../../../utils/lacheck/lacheck.l" { ; } YY_BREAK case 26: YY_RULE_SETUP -#line 366 "lacheck.l" +#line 370 "../../../utils/lacheck/lacheck.l" { ; } YY_BREAK case 27: YY_RULE_SETUP -#line 368 "lacheck.l" +#line 372 "../../../utils/lacheck/lacheck.l" { { unput(yytext[0]); BEGIN(INITIAL); }} YY_BREAK +/* \def can be followed by whitespace, then the \ to start the control + sequence, then more or less anything up to the { starting the + replacement text, which we assume is on the same line. (All this + could be changed in TeX, with catcodes etc., but we can't try to + handle that.) */ case 28: +/* rule 28 can match eol */ YY_RULE_SETUP -#line 374 "lacheck.l" +#line 383 "../../../utils/lacheck/lacheck.l" BEGIN(DEF); YY_BREAK +/* \newcommand{\foo}{...} or \newcommand\foo{...} + (or \renewcommand or \providecommand). + To allow for arbitrary control sequence names, we match + the braced name as anything not containing a }. + To handle optional argument specifications, we assume the { is on + the same line as the csname. + We don't do anything with the definitions; the only purpose is to + count braces. */ case 29: +/* rule 29 can match eol */ YY_RULE_SETUP -#line 376 "lacheck.l" -{ ++def_count; } +#line 393 "../../../utils/lacheck/lacheck.l" +BEGIN(DEF); YY_BREAK +/* Pre-2019 rule was (see test-def.tex): + "\\"[exg]?(def|newcommand)[^\n\{]+ BEGIN(DEF); + */ case 30: YY_RULE_SETUP -#line 378 "lacheck.l" +#line 399 "../../../utils/lacheck/lacheck.l" +{ ++def_count; } + YY_BREAK +case 31: +YY_RULE_SETUP +#line 401 "../../../utils/lacheck/lacheck.l" { --def_count; if(def_count == 0) BEGIN(INITIAL); } YY_BREAK -case 31: +case 32: YY_RULE_SETUP -#line 382 "lacheck.l" +#line 405 "../../../utils/lacheck/lacheck.l" { ; } YY_BREAK -case 32: +case 33: YY_RULE_SETUP -#line 384 "lacheck.l" +#line 407 "../../../utils/lacheck/lacheck.l" BEGIN(ENV_DEF); YY_BREAK -case 33: +case 34: YY_RULE_SETUP -#line 386 "lacheck.l" +#line 409 "../../../utils/lacheck/lacheck.l" { ++def_count; } YY_BREAK -case 34: +case 35: YY_RULE_SETUP -#line 388 "lacheck.l" +#line 411 "../../../utils/lacheck/lacheck.l" { --def_count; if(def_count == 0) BEGIN(DEF); } YY_BREAK -case 35: +case 36: YY_RULE_SETUP -#line 392 "lacheck.l" +#line 415 "../../../utils/lacheck/lacheck.l" { ; } YY_BREAK -case 36: +case 37: YY_RULE_SETUP -#line 394 "lacheck.l" +#line 417 "../../../utils/lacheck/lacheck.l" { if(CG_TYPE == 4 || CG_TYPE == 5) print_bad_match(yytext,4); @@ -2791,14 +2846,14 @@ YY_RULE_SETUP push( yytext, 4, line_count); }} YY_BREAK -case 37: +case 38: YY_RULE_SETUP -#line 402 "lacheck.l" +#line 425 "../../../utils/lacheck/lacheck.l" { g_checkend(4); } YY_BREAK -case 38: +case 39: YY_RULE_SETUP -#line 404 "lacheck.l" +#line 427 "../../../utils/lacheck/lacheck.l" { if(CG_TYPE == 4 || CG_TYPE == 5) print_bad_match(yytext,5); @@ -2807,14 +2862,14 @@ YY_RULE_SETUP push( yytext, 5, line_count); }} YY_BREAK -case 39: +case 40: YY_RULE_SETUP -#line 413 "lacheck.l" +#line 436 "../../../utils/lacheck/lacheck.l" { g_checkend(5); BEGIN(AFTER_DISPLAY);} YY_BREAK -case 40: +case 41: YY_RULE_SETUP -#line 415 "lacheck.l" +#line 438 "../../../utils/lacheck/lacheck.l" { printf( "\"%s\", line %d: punctuation mark \"%s\" should be placed before end of displaymath\n", @@ -2823,18 +2878,18 @@ YY_RULE_SETUP BEGIN(INITIAL); } YY_BREAK -case 41: -/* rule 41 can match eol */ +case 42: +/* rule 42 can match eol */ YY_RULE_SETUP -#line 423 "lacheck.l" +#line 446 "../../../utils/lacheck/lacheck.l" { unput(yytext[0]); BEGIN(INITIAL); } YY_BREAK -case 42: +case 43: *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ (yy_c_buf_p) = yy_cp = yy_bp + 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP -#line 425 "lacheck.l" +#line 448 "../../../utils/lacheck/lacheck.l" { if (CG_TYPE == 4) { printf( "\"%s\", line %d: punctuation mark \"%s\" should be placed after end of math mode\n", @@ -2843,9 +2898,9 @@ YY_RULE_SETUP BEGIN(INITIAL); }} YY_BREAK -case 43: +case 44: YY_RULE_SETUP -#line 433 "lacheck.l" +#line 456 "../../../utils/lacheck/lacheck.l" { if(CG_TYPE == 5) @@ -2861,9 +2916,9 @@ YY_RULE_SETUP push( yytext, 4, line_count); }} YY_BREAK -case 44: +case 45: YY_RULE_SETUP -#line 449 "lacheck.l" +#line 472 "../../../utils/lacheck/lacheck.l" { if(CG_TYPE == 4) @@ -2880,45 +2935,45 @@ YY_RULE_SETUP push( yytext, 5, line_count); }} YY_BREAK -case 45: -/* rule 45 can match eol */ +case 46: +/* rule 46 can match eol */ *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ YY_LINENO_REWIND_TO(yy_bp + 11); (yy_c_buf_p) = yy_cp = yy_bp + 11; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP -#line 465 "lacheck.l" +#line 488 "../../../utils/lacheck/lacheck.l" { { push("\\begingroup", 1, line_count); }} YY_BREAK -case 46: -/* rule 46 can match eol */ +case 47: +/* rule 47 can match eol */ *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ YY_LINENO_REWIND_TO(yy_bp + 9); (yy_c_buf_p) = yy_cp = yy_bp + 9; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP -#line 471 "lacheck.l" +#line 494 "../../../utils/lacheck/lacheck.l" { { g_checkend(1); }} YY_BREAK -case 47: +case 48: YY_RULE_SETUP -#line 477 "lacheck.l" +#line 500 "../../../utils/lacheck/lacheck.l" { BEGIN(B_ENVIRONMENT); } YY_BREAK -case 48: -/* rule 48 can match eol */ +case 49: +/* rule 49 can match eol */ *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ YY_LINENO_REWIND_TO(yy_cp - 1); (yy_c_buf_p) = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP -#line 479 "lacheck.l" +#line 502 "../../../utils/lacheck/lacheck.l" { { @@ -2927,9 +2982,9 @@ YY_RULE_SETUP ++warn_count; }} YY_BREAK -case 49: +case 50: YY_RULE_SETUP -#line 487 "lacheck.l" +#line 510 "../../../utils/lacheck/lacheck.l" { { if (strcmp( yytext, "verbatim" ) == 0 ) @@ -2954,70 +3009,70 @@ YY_RULE_SETUP } }} YY_BREAK -case 50: +case 51: YY_RULE_SETUP -#line 511 "lacheck.l" +#line 534 "../../../utils/lacheck/lacheck.l" { BEGIN(INITIAL); } YY_BREAK -case 51: +case 52: YY_RULE_SETUP -#line 513 "lacheck.l" +#line 536 "../../../utils/lacheck/lacheck.l" { printf("\"%s\", line %d: TAB character in verbatim environment\n", file_name, line_count) ; ++warn_count; } YY_BREAK -case 52: +case 53: YY_RULE_SETUP -#line 519 "lacheck.l" +#line 542 "../../../utils/lacheck/lacheck.l" { ; } YY_BREAK -case 53: -/* rule 53 can match eol */ +case 54: +/* rule 54 can match eol */ YY_RULE_SETUP -#line 521 "lacheck.l" +#line 544 "../../../utils/lacheck/lacheck.l" { ++line_count; } YY_BREAK -case 54: +case 55: YY_RULE_SETUP -#line 524 "lacheck.l" +#line 547 "../../../utils/lacheck/lacheck.l" { verb_char = yytext[yyleng-1]; BEGIN(VERB); } YY_BREAK -case 55: -/* rule 55 can match eol */ +case 56: +/* rule 56 can match eol */ YY_RULE_SETUP -#line 529 "lacheck.l" +#line 552 "../../../utils/lacheck/lacheck.l" { printf("\"%s\", line %d: \\verb should not contain end of line characters\n", file_name, line_count) ; ++line_count; } YY_BREAK -case 56: +case 57: YY_RULE_SETUP -#line 535 "lacheck.l" +#line 558 "../../../utils/lacheck/lacheck.l" { if ( *yytext == verb_char ) BEGIN(INITIAL); } YY_BREAK -case 57: +case 58: YY_RULE_SETUP -#line 541 "lacheck.l" +#line 564 "../../../utils/lacheck/lacheck.l" { BEGIN(E_ENVIRONMENT); } YY_BREAK -case 58: -/* rule 58 can match eol */ +case 59: +/* rule 59 can match eol */ *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ YY_LINENO_REWIND_TO(yy_cp - 1); (yy_c_buf_p) = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP -#line 543 "lacheck.l" +#line 566 "../../../utils/lacheck/lacheck.l" { { printf("\"%s\", line %d: {argument} missing for \\end\n", @@ -3025,9 +3080,9 @@ YY_RULE_SETUP ++warn_count; }} YY_BREAK -case 59: +case 60: YY_RULE_SETUP -#line 551 "lacheck.l" +#line 574 "../../../utils/lacheck/lacheck.l" { { e_checkend(2, yytext); @@ -3036,10 +3091,10 @@ YY_RULE_SETUP BEGIN(INITIAL); }} YY_BREAK -case 60: -/* rule 60 can match eol */ +case 61: +/* rule 61 can match eol */ YY_RULE_SETUP -#line 560 "lacheck.l" +#line 583 "../../../utils/lacheck/lacheck.l" { { linecount(); @@ -3049,10 +3104,10 @@ YY_RULE_SETUP BEGIN(INITIAL); }} YY_BREAK -case 61: -/* rule 61 can match eol */ +case 62: +/* rule 62 can match eol */ YY_RULE_SETUP -#line 569 "lacheck.l" +#line 592 "../../../utils/lacheck/lacheck.l" { { printf( "\"%s\", line %d: missing `\\ ' after \"%s\"\n", @@ -3061,10 +3116,10 @@ YY_RULE_SETUP BEGIN(INITIAL); }} YY_BREAK -case 62: -/* rule 62 can match eol */ +case 63: +/* rule 63 can match eol */ YY_RULE_SETUP -#line 577 "lacheck.l" +#line 600 "../../../utils/lacheck/lacheck.l" { { linecount(); @@ -3074,10 +3129,10 @@ YY_RULE_SETUP BEGIN(INITIAL); }} YY_BREAK -case 63: -/* rule 63 can match eol */ +case 64: +/* rule 64 can match eol */ YY_RULE_SETUP -#line 586 "lacheck.l" +#line 609 "../../../utils/lacheck/lacheck.l" { printf("\"%s\", line %d: double space at \"%s\"\n", @@ -3087,10 +3142,10 @@ YY_RULE_SETUP BEGIN(INITIAL); } YY_BREAK -case 64: -/* rule 64 can match eol */ +case 65: +/* rule 65 can match eol */ YY_RULE_SETUP -#line 595 "lacheck.l" +#line 618 "../../../utils/lacheck/lacheck.l" { printf("\"%s\", line %d: \\ldots should be \\cdots in \"%s\"\n", file_name, line_count, yytext); @@ -3098,10 +3153,10 @@ YY_RULE_SETUP linecount(); } YY_BREAK -case 65: -/* rule 65 can match eol */ +case 66: +/* rule 66 can match eol */ YY_RULE_SETUP -#line 602 "lacheck.l" +#line 625 "../../../utils/lacheck/lacheck.l" { printf("\"%s\", line %d: \\cdots should be \\ldots in \"%s\"\n", file_name, line_count, yytext); @@ -3110,10 +3165,10 @@ YY_RULE_SETUP BEGIN(INITIAL); } YY_BREAK -case 66: -/* rule 66 can match eol */ +case 67: +/* rule 67 can match eol */ YY_RULE_SETUP -#line 610 "lacheck.l" +#line 633 "../../../utils/lacheck/lacheck.l" { printf("\"%s\", line %d: Dots should be \\cdots in \"%s\"\n", file_name, line_count, yytext); @@ -3121,10 +3176,10 @@ YY_RULE_SETUP linecount(); } YY_BREAK -case 67: -/* rule 67 can match eol */ +case 68: +/* rule 68 can match eol */ YY_RULE_SETUP -#line 617 "lacheck.l" +#line 640 "../../../utils/lacheck/lacheck.l" { printf("\"%s\", line %d: Dots should be \\ldots in \"%s\"\n", file_name, line_count, yytext); @@ -3133,9 +3188,9 @@ YY_RULE_SETUP BEGIN(INITIAL); } YY_BREAK -case 68: +case 69: YY_RULE_SETUP -#line 626 "lacheck.l" +#line 649 "../../../utils/lacheck/lacheck.l" { printf("\"%s\", line %d: Dots should be ellipsis \"%s\"\n", file_name, line_count, yytext); @@ -3143,37 +3198,37 @@ YY_RULE_SETUP BEGIN(INITIAL); } YY_BREAK -case 69: -/* rule 69 can match eol */ +case 70: +/* rule 70 can match eol */ YY_RULE_SETUP -#line 633 "lacheck.l" +#line 656 "../../../utils/lacheck/lacheck.l" { linecount(); printf("\"%s\", line %d: bad character in label \"%s\", see C.10.2\n", file_name, line_count, yytext); } YY_BREAK -case 70: -/* rule 70 can match eol */ +case 71: +/* rule 71 can match eol */ *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ YY_LINENO_REWIND_TO(yy_cp - 1); (yy_c_buf_p) = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP -#line 639 "lacheck.l" +#line 662 "../../../utils/lacheck/lacheck.l" { linecount(); BEGIN(INITIAL); } YY_BREAK -case 71: -/* rule 71 can match eol */ +case 72: +/* rule 72 can match eol */ *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ YY_LINENO_REWIND_TO(yy_cp - 1); (yy_c_buf_p) = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP -#line 644 "lacheck.l" +#line 667 "../../../utils/lacheck/lacheck.l" { linecount(); printf("\"%s\", line %d: perhaps you should insert a `~' before \"%s\"\n", @@ -3181,14 +3236,14 @@ YY_RULE_SETUP BEGIN(INITIAL); } YY_BREAK -case 72: -/* rule 72 can match eol */ +case 73: +/* rule 73 can match eol */ *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ YY_LINENO_REWIND_TO(yy_cp - 1); (yy_c_buf_p) = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP -#line 651 "lacheck.l" +#line 674 "../../../utils/lacheck/lacheck.l" { linecount(); printf("\"%s\", line %d: whitespace before footnote in \"%s\"\n", @@ -3196,14 +3251,14 @@ YY_RULE_SETUP BEGIN(INITIAL); } YY_BREAK -case 73: -/* rule 73 can match eol */ +case 74: +/* rule 74 can match eol */ *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ YY_LINENO_REWIND_TO(yy_cp - 1); (yy_c_buf_p) = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP -#line 659 "lacheck.l" +#line 682 "../../../utils/lacheck/lacheck.l" { { printf("\"%s\", line %d: Don't use \"%s\" in LaTeX documents\n", @@ -3211,22 +3266,22 @@ YY_RULE_SETUP ++warn_count ; }} YY_BREAK -case 74: -/* rule 74 can match eol */ -YY_RULE_SETUP -#line 666 "lacheck.l" -{ linecount() ;} - YY_BREAK case 75: /* rule 75 can match eol */ YY_RULE_SETUP -#line 667 "lacheck.l" -{ linecount(); } +#line 689 "../../../utils/lacheck/lacheck.l" +{ linecount() ;} YY_BREAK case 76: /* rule 76 can match eol */ YY_RULE_SETUP -#line 669 "lacheck.l" +#line 690 "../../../utils/lacheck/lacheck.l" +{ linecount(); } + YY_BREAK +case 77: +/* rule 77 can match eol */ +YY_RULE_SETUP +#line 692 "../../../utils/lacheck/lacheck.l" { { linecount(); @@ -3237,9 +3292,9 @@ YY_RULE_SETUP BEGIN(INITIAL); }} YY_BREAK -case 77: +case 78: YY_RULE_SETUP -#line 679 "lacheck.l" +#line 702 "../../../utils/lacheck/lacheck.l" { { printf("\"%s\", line %d: Do not use @ in LaTeX macro names. \"%s\"\n", @@ -3247,10 +3302,10 @@ YY_RULE_SETUP ++warn_count; }} YY_BREAK -case 78: -/* rule 78 can match eol */ +case 79: +/* rule 79 can match eol */ YY_RULE_SETUP -#line 686 "lacheck.l" +#line 709 "../../../utils/lacheck/lacheck.l" { { linecount(); @@ -3260,9 +3315,9 @@ YY_RULE_SETUP BEGIN(INITIAL); }} YY_BREAK -case 79: +case 80: YY_RULE_SETUP -#line 695 "lacheck.l" +#line 718 "../../../utils/lacheck/lacheck.l" { { printf("\"%s\", line %d: Use ' to end quotation, not ` \"%s\"\n", @@ -3271,10 +3326,10 @@ YY_RULE_SETUP BEGIN(INITIAL); }} YY_BREAK -case 80: -/* rule 80 can match eol */ +case 81: +/* rule 81 can match eol */ YY_RULE_SETUP -#line 704 "lacheck.l" +#line 727 "../../../utils/lacheck/lacheck.l" { { printf("\"%s\", line %d: Whitespace before punctation mark in \"%s\"\n", @@ -3284,30 +3339,30 @@ YY_RULE_SETUP BEGIN(INITIAL); }} YY_BREAK -case 81: +case 82: YY_RULE_SETUP -#line 713 "lacheck.l" +#line 736 "../../../utils/lacheck/lacheck.l" { BEGIN(COMMENT); } YY_BREAK -case 82: -/* rule 82 can match eol */ +case 83: +/* rule 83 can match eol */ YY_RULE_SETUP -#line 715 "lacheck.l" +#line 738 "../../../utils/lacheck/lacheck.l" { BEGIN(INITIAL); ++line_count; } YY_BREAK -case 83: +case 84: YY_RULE_SETUP -#line 717 "lacheck.l" +#line 740 "../../../utils/lacheck/lacheck.l" { ; } YY_BREAK -case 84: +case 85: YY_RULE_SETUP -#line 720 "lacheck.l" +#line 743 "../../../utils/lacheck/lacheck.l" { BEGIN(INCLUDE); } YY_BREAK -case 85: +case 86: YY_RULE_SETUP -#line 722 "lacheck.l" +#line 745 "../../../utils/lacheck/lacheck.l" { { if ( strstr(yytext,".sty") == NULL ) @@ -3326,13 +3381,13 @@ YY_RULE_SETUP BEGIN(INITIAL); }} YY_BREAK -case 86: -/* rule 86 can match eol */ +case 87: +/* rule 87 can match eol */ *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ YY_LINENO_REWIND_TO(yy_bp + 9); (yy_c_buf_p) = yy_cp = yy_bp + 9; YY_DO_BEFORE_ACTION; /* set up yytext again */ -#line 741 "lacheck.l" +#line 764 "../../../utils/lacheck/lacheck.l" YY_RULE_SETUP case YY_STATE_EOF(INITIAL): YY_RULE_SETUP @@ -3359,7 +3414,7 @@ YY_RULE_SETUP case YY_STATE_EOF(ICOR): YY_RULE_SETUP case YY_STATE_EOF(GETICOR): -#line 741 "lacheck.l" +#line 764 "../../../utils/lacheck/lacheck.l" { if (--istackp < 0) yyterminate(); @@ -3378,17 +3433,17 @@ case YY_STATE_EOF(GETICOR): } YY_BREAK -case 87: +case 88: YY_RULE_SETUP -#line 760 "lacheck.l" +#line 783 "../../../utils/lacheck/lacheck.l" { ; } YY_BREAK -case 88: +case 89: YY_RULE_SETUP -#line 761 "lacheck.l" +#line 784 "../../../utils/lacheck/lacheck.l" ECHO; YY_BREAK -#line 3392 "lacheck.c" +#line 3447 "../../../utils/lacheck/lacheck.c" case YY_END_OF_BUFFER: { @@ -3529,9 +3584,9 @@ ECHO; */ static int yy_get_next_buffer (void) { - register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; - register char *source = (yytext_ptr); - register int number_to_move, i; + char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; + char *source = (yytext_ptr); + yy_size_t number_to_move, i; int ret_val; if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] ) @@ -3560,7 +3615,7 @@ static int yy_get_next_buffer (void) /* Try to read more data. */ /* First move last chars to start of buffer. */ - number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1; + number_to_move = (yy_size_t) ((yy_c_buf_p) - (yytext_ptr)) - 1; for ( i = 0; i < number_to_move; ++i ) *(dest++) = *(source++); @@ -3634,8 +3689,8 @@ static int yy_get_next_buffer (void) static yy_state_type yy_get_previous_state (void) { - register yy_state_type yy_current_state; - register char *yy_cp; + yy_state_type yy_current_state; + char *yy_cp; yy_current_state = (yy_start); yy_current_state += YY_AT_BOL(); @@ -3645,11 +3700,11 @@ static int yy_get_next_buffer (void) for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp ) { - register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); + YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 953 ) + if ( yy_current_state >= 967 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; @@ -3666,26 +3721,28 @@ static int yy_get_next_buffer (void) */ static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state ) { - register int yy_is_jam; + int yy_is_jam; - register YY_CHAR yy_c = 1; + YY_CHAR yy_c = 1; while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 953 ) + if ( yy_current_state >= 967 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; - yy_is_jam = (yy_current_state == 952); + yy_is_jam = (yy_current_state == 966); if ( ! yy_is_jam ) *(yy_state_ptr)++ = yy_current_state; return yy_is_jam ? 0 : yy_current_state; } - static void yyunput (int c, register char * yy_bp ) +#ifndef YY_NO_UNPUT + + static void yyunput (int c, char * yy_bp ) { - register char *yy_cp; + char *yy_cp; yy_cp = (yy_c_buf_p); @@ -3695,10 +3752,10 @@ static int yy_get_next_buffer (void) if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 ) { /* need to shift things up to make room */ /* +2 for EOB chars. */ - register yy_size_t number_to_move = (yy_n_chars) + 2; - register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[ + yy_size_t number_to_move = (yy_n_chars) + 2; + char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[ YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2]; - register char *source = + char *source = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]; while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) @@ -3720,6 +3777,8 @@ static int yy_get_next_buffer (void) (yy_c_buf_p) = yy_cp; } +#endif + #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput (void) @@ -3871,7 +3930,7 @@ static void yy_load_buffer_state (void) if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); - b->yy_buf_size = size; + b->yy_buf_size = (yy_size_t)size; /* yy_ch_buf has to be 2 characters longer than the size given because * we need to put in 2 end-of-buffer characters. @@ -4026,7 +4085,7 @@ static void yyensure_buffer_stack (void) * scanner will even need a stack. We use 2 instead of 1 to avoid an * immediate realloc on the next call. */ - num_to_alloc = 1; + num_to_alloc = 1; // After all that talk, this was set to 1 anyways... (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc (num_to_alloc * sizeof(struct yy_buffer_state*) ); @@ -4043,7 +4102,7 @@ static void yyensure_buffer_stack (void) if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){ /* Increase the buffer to prepare for a possible push. */ - int grow_size = 8 /* arbitrary grow size */; + yy_size_t grow_size = 8 /* arbitrary grow size */; num_to_alloc = (yy_buffer_stack_max) + grow_size; (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc @@ -4151,7 +4210,7 @@ YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, yy_size_t _yybytes_len static void yy_fatal_error (yyconst char* msg ) { - (void) fprintf( stderr, "%s\n", msg ); + (void) fprintf( stderr, "%s\n", msg ); exit( YY_EXIT_FAILURE ); } @@ -4217,29 +4276,29 @@ char *yyget_text (void) } /** Set the current line number. - * @param line_number + * @param _line_number line number * */ -void yyset_lineno (int line_number ) +void yyset_lineno (int _line_number ) { - yylineno = line_number; + yylineno = _line_number; } /** Set the input stream. This does not discard the current * input buffer. - * @param in_str A readable stream. + * @param _in_str A readable stream. * * @see yy_switch_to_buffer */ -void yyset_in (FILE * in_str ) +void yyset_in (FILE * _in_str ) { - yyin = in_str ; + yyin = _in_str ; } -void yyset_out (FILE * out_str ) +void yyset_out (FILE * _out_str ) { - yyout = out_str ; + yyout = _out_str ; } int yyget_debug (void) @@ -4247,9 +4306,9 @@ int yyget_debug (void) return yy_flex_debug; } -void yyset_debug (int bdebug ) +void yyset_debug (int _bdebug ) { - yy_flex_debug = bdebug ; + yy_flex_debug = _bdebug ; } static int yy_init_globals (void) @@ -4317,7 +4376,8 @@ int yylex_destroy (void) #ifndef yytext_ptr static void yy_flex_strncpy (char* s1, yyconst char * s2, int n ) { - register int i; + + int i; for ( i = 0; i < n; ++i ) s1[i] = s2[i]; } @@ -4326,7 +4386,7 @@ static void yy_flex_strncpy (char* s1, yyconst char * s2, int n ) #ifdef YY_NEED_STRLEN static int yy_flex_strlen (yyconst char * s ) { - register int n; + int n; for ( n = 0; s[n]; ++n ) ; @@ -4336,11 +4396,12 @@ static int yy_flex_strlen (yyconst char * s ) void *yyalloc (yy_size_t size ) { - return (void *) malloc( size ); + return (void *) malloc( size ); } void *yyrealloc (void * ptr, yy_size_t size ) { + /* The cast to (char *) in the following accommodates both * implementations that use char* generic pointers, and those * that use void* generic pointers. It works with the latter @@ -4353,12 +4414,12 @@ void *yyrealloc (void * ptr, yy_size_t size ) void yyfree (void * ptr ) { - free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ + free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ } #define YYTABLES_NAME "yytables" -#line 761 "lacheck.l" +#line 784 "../../../utils/lacheck/lacheck.l" int main(int argc, char *argv[]) @@ -4396,9 +4457,13 @@ int main(int argc, char *argv[]) f_checkend(file_name); } else - fprintf(stderr, - "%s: Could not open : %s\n",PROGNAME, argv[1]); + { + fprintf(stderr, "%s: Could not open ",PROGNAME); + perror(argv[1]); + exit(1); + } } + /* printf("%s checked.\n", argv[1]); */ } else { @@ -4694,4 +4759,3 @@ void linecount(void) line_count++; } - diff --git a/Build/source/utils/lacheck/lacheck.l b/Build/source/utils/lacheck/lacheck.l index bc6f9fca9eb..fc9f0f7e8ca 100644 --- a/Build/source/utils/lacheck/lacheck.l +++ b/Build/source/utils/lacheck/lacheck.l @@ -1,9 +1,10 @@ -/* -*- Mode: C -*- +/* $Id$ * * lacheck.lex - A consistency checker checker for LaTeX documents * * Copyright (C) 1991, 1992 Kresten Krab Thorup. * Copyright (C) 1993 --- 1998 Per Abrahamsen. + * Copyright (C) 2019 Karl Berry. * * 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 @@ -16,16 +17,19 @@ * 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., 675 Mass Ave, Cambridge, MA 02139, USA. + * along with this program. If not, see . * * Please send bugs, suggestions, and queries to auc-tex_mgr@sunsite.auc.dk. * - * $Revision: 1.26 $ + * original Revision: 1.26 $ * Author : Kresten Krab Thorup * Created On : Sun May 26 18:11:58 1991 * * HISTORY + * 08-Jul-2019 Karl Berry + * Separate patterns for \def vs. \newcommand. Report from Zayd Hammoudeh, + * https://tug.org/pipermail/tex-live/2019-January/043083.html. + * Update version number, contact info. * 07-Mar-1998 Per Abrahamsen * Added return to yywrap. Patch by Fabrice POPINEAU * . @@ -371,7 +375,26 @@ symbol ("$"("\\"{atoz}+|.)"$"|"\\#"|"\\$"|"\\%"|"\\ref") BEGIN(INITIAL); }} -"\\"[exg]?(def|newcommand)[^\n\{]+ BEGIN(DEF); + /* \def can be followed by whitespace, then the \ to start the control + sequence, then more or less anything up to the { starting the + replacement text, which we assume is on the same line. (All this + could be changed in TeX, with catcodes etc., but we can't try to + handle that.) */ +"\\"[exg]?def[ \t\n]*"\\"[^\n{]+\{ BEGIN(DEF); + + /* \newcommand{\foo}{...} or \newcommand\foo{...} + (or \renewcommand or \providecommand). + To allow for arbitrary control sequence names, we match + the braced name as anything not containing a }. + To handle optional argument specifications, we assume the { is on + the same line as the csname. + We don't do anything with the definitions; the only purpose is to + count braces. */ +"\\"(provide|(re)?newcommand)[ \t\n]*(\{\\[^}]+\}|\\)[^{]*\{ BEGIN(DEF); + + /* Pre-2019 rule was (see test-def.tex): + "\\"[exg]?(def|newcommand)[^\n\{]+ BEGIN(DEF); + */ {b_group} { ++def_count; } @@ -794,15 +817,19 @@ int main(int argc, char *argv[]) f_checkend(file_name); } else - fprintf(stderr, - "%s: Could not open : %s\n",PROGNAME, argv[1]); + { + fprintf(stderr, "%s: Could not open ",PROGNAME); + perror(argv[1]); + exit(1); + } } + /* printf("%s checked.\n", argv[1]); */ } else { printf("\n* %s *\n\n",PROGNAME); printf("\t...a consistency checker for LaTeX documents.\n"); - printf("$Id: lacheck.lex,v 1.26 1998/03/07 07:46:45 abraham Exp $\n\n"); + printf("$Id$\n\n"); printf("Usage:\n\tlacheck filename[.tex] \n\n\n"); @@ -1091,4 +1118,3 @@ void linecount(void) if(yytext[i] == '\n') line_count++; } - diff --git a/Build/source/utils/lacheck/test-def.test b/Build/source/utils/lacheck/test-def.test new file mode 100644 index 00000000000..a6554519c80 --- /dev/null +++ b/Build/source/utils/lacheck/test-def.test @@ -0,0 +1,14 @@ +#! /bin/sh -vx +# $Id$ +# Copyright 2019 Karl Berry +# You may freely use, modify and/or distribute this file. + +LC_ALL=C; export LC_ALL; LANGUAGE=C; export LANGUAGE + +testname=test-def +input=$testname.tex +./lacheck $srcdir/$input \ +| sed -e "s!$srcdir/$input!./$input!g" >$testname.out || exit 1 + +diff $srcdir/$testname.xout $testname.out || exit 1 + diff --git a/Build/source/utils/lacheck/test-def.tex b/Build/source/utils/lacheck/test-def.tex new file mode 100644 index 00000000000..4b83a25ad7c --- /dev/null +++ b/Build/source/utils/lacheck/test-def.tex @@ -0,0 +1,47 @@ +% $Id$ +% This file is public domain. + +\documentclass{report} +\newcommand{\defaultleftmargin}{0.25in} +\setlength{\oddsidemargin}{\defaultleftmargin} +\providecommand{\defaultmargin}{0.25in}\def\defx{\defy} +\begin{document} +\end{document} + +% BTW, to remake in the build directory even though maintainer mode is +% enabled (where $xu is the texk/utils source directory): +% cd Work/utils/lacheck && make am__skiplex= all \ +% && ./lacheck $xu/lacheck/test-def.tex # or make check, etc. + +% [https://tug.org/pipermail/tex-live/2019-January/043083.html] +% +% Date: Thu, 24 Jan 2019 19:11:18 -0800 +% From: Zayd Hammoudeh +% To: +% Subject: [tex-live] Possible lacheck Bug Report +% +% [...] +% +% In the simple LaTeX file: +% \documentclass{report} +% +% \newcommand{\defaultleftmargin}{0.25in} +% +% \begin{document} +% \end{document} +% +% I get the following errors with lacheck: +% "hw01.tex", line 5: <- unmatched "end of file hw01.tex" +% "hw01.tex", line 2: -> unmatched "{" +% +% This is reported by Vim's syntastic running lacheck ver. $Id: +% lacheck.lex,v 1.26 1998/03/07 07:46:45 abraham Exp $ on MacOS High +% Sierra. The issue only seems to arise when \newcommand is followed by +% {\def*} (where * is zero or more other characters). Removal of the curly +% brackets around \def* or any term other than def causes the issue to go away. +% +% [...] +% +% Edit: The issue appears to not be limited to newcommand. I get the same +% error for the line: +% \setlength{\oddsidemargin}{\defaultleftmargin} diff --git a/Build/source/utils/lacheck/test-def.xout b/Build/source/utils/lacheck/test-def.xout new file mode 100644 index 00000000000..e69de29bb2d -- cgit v1.2.3