Index: configure =================================================================== --- configure (revision 1) +++ configure (revision 114) @@ -11086,7 +11086,7 @@ if test "${with_nicklen+set}" = set; then withval=$with_nicklen; NICKLEN="$withval" else - NICKLEN="9" + NICKLEN="30" fi @@ -11103,7 +11103,7 @@ fi else - TOPICLEN=160 + TOPICLEN=390 fi Index: include/s_user.h =================================================================== --- include/s_user.h (revision 1) +++ include/s_user.h (revision 114) @@ -40,7 +40,7 @@ extern unsigned int user_modes[]; extern void assemble_umode_buffer(void); -extern void set_user_mode(struct Client *, struct Client *, int, char **); +extern void set_user_mode(struct Client *, struct Client *, int, char **, int); extern void send_umode(struct Client *, struct Client *, unsigned int, unsigned int, char *); extern void send_umode_out(struct Client *, struct Client *, unsigned int); Index: include/defaults.h =================================================================== --- include/defaults.h (revision 1) +++ include/defaults.h (revision 114) @@ -105,8 +105,9 @@ #define TS_WARN_DELTA_DEFAULT 30 /* default for ts_warn_delta */ /* ServerInfo default values */ -#define NETWORK_NAME_DEFAULT "EFnet" /* default for network_name */ -#define NETWORK_DESC_DEFAULT "Eris Free Network" /* default for network_desc */ +#define NETWORK_NAME_DEFAULT "NoNetwork" /* default for network_name */ +#define NETWORK_DESC_DEFAULT "Default network" /* default for network_desc */ +#define HELP_CHANNEL_DEFAULT "#irchelp" /* default for help_channel */ /* General defaults */ #define MAXIMUM_LINKS_DEFAULT 0 /* default for maximum_links */ Index: include/s_conf.h =================================================================== --- include/s_conf.h (revision 1) +++ include/s_conf.h (revision 114) @@ -62,7 +62,8 @@ GLINE_TYPE, CRESV_TYPE, NRESV_TYPE, - GDENY_TYPE + GDENY_TYPE, + WEBIRC_TYPE } ConfType; struct split_nuh_item @@ -196,6 +197,7 @@ #define CONF_ULINE 0x00002000 #define CONF_EXEMPTDLINE 0x00004000 #define CONF_GLINE 0x00008000 +#define CONF_WEBIRC 0x00010000 #define CONF_SERVER_MASK CONF_SERVER #define CONF_CLIENT_MASK (CONF_CLIENT | CONF_OPERATOR | CONF_SERVER_MASK) @@ -306,10 +308,11 @@ #define SHARED_TRESV 0x0080 #define SHARED_UNRESV 0x0100 #define SHARED_LOCOPS 0x0200 +#define SHARED_USERMODE 0x0400 #define SHARED_ALL (SHARED_KLINE | SHARED_TKLINE | SHARED_UNKLINE | \ SHARED_XLINE | SHARED_TXLINE | SHARED_UNXLINE | \ SHARED_RESV | SHARED_TRESV | SHARED_UNRESV |\ - SHARED_LOCOPS) + SHARED_LOCOPS | SHARED_USERMODE) /* gline acl entry actions */ #define GDENY_BLOCK 0x1 @@ -434,6 +437,8 @@ char *description; char *network_name; char *network_desc; + char *services_name; + char *help_channel; #ifdef HAVE_LIBCRYPTO char *rsa_private_key_file; RSA *rsa_private_key; Index: include/channel_mode.h =================================================================== --- include/channel_mode.h (revision 1) +++ include/channel_mode.h (revision 114) @@ -28,7 +28,7 @@ #include "ircd_defs.h" /* buffer sizes */ -#define MODEBUFLEN 200 +#define MODEBUFLEN 200 /* Maximum mode changes allowed per client, per server is different */ #define MAXMODEPARAMS 4 @@ -55,6 +55,11 @@ #define MODE_TOPICLIMIT 0x0008 #define MODE_INVITEONLY 0x0010 #define MODE_NOPRIVMSGS 0x0020 +#define MODE_REGONLY 0x0040 /* only identified users may join */ +#define MODE_REGMOD 0x0080 /* only identified users may speak */ +#define MODE_REGISTERED 0x0100 /* registered with services */ +#define MODE_COLORLESS 0x0200 /* no colors, bold, or italics */ +#define MODE_OPERONLY 0x0400 /* only opers may join/msg */ /* cache flags for silence on ban */ #define CHFL_BAN_CHECKED 0x0080 @@ -75,6 +80,7 @@ /* knock is forbidden, halfops can't kick/deop other halfops. * +pi means paranoid and will generate notices on each invite */ #define PrivateChannel(x) (((x)->mode.mode & MODE_PRIVATE)) +#define RegisteredChannel(x) (((x)->mode.mode & MODE_REGISTERED)) struct ChModeChange { Index: include/client.h =================================================================== --- include/client.h (revision 1) +++ include/client.h (revision 114) @@ -173,7 +173,7 @@ dlink_list on_allow_list; /* clients that have =me= on their allow list*/ dlink_list channel; /* chain of channel pointer blocks */ - + struct LocalUser *localClient; }; @@ -292,9 +292,15 @@ #define IsServer(x) ((x)->status == STAT_SERVER) #define IsClient(x) ((x)->status == STAT_CLIENT) +#define IsServicesAdmin(x) ((x)->umodes & UMODE_SVCSADMIN) #define IsOper(x) ((x)->umodes & UMODE_OPER) #define IsAdmin(x) ((x)->umodes & UMODE_ADMIN) +#define IsService(x) \ + ((ServerInfo.services_name != NULL && \ + ((IsServer(x) && strcmp(x->name, ServerInfo.services_name) == 0) || \ + (IsClient(x) && strcmp(x->servptr->name, ServerInfo.services_name) == 0)))) + #define SetConnecting(x) {(x)->status = STAT_CONNECTING; \ (x)->handler = UNREGISTERED_HANDLER; } @@ -346,7 +352,7 @@ #define FLAGS_CRYPTOUT 0x00000200 /* outgoing data must be encrypted */ #define FLAGS_WAITAUTH 0x00000400 /* waiting for CRYPTLINK AUTH command */ #define FLAGS_SERVLINK 0x00000800 /* servlink has servlink process */ -#define FLAGS_MARK 0x00001000 /* marked client */ +#define FLAGS_MARK 0x00001000 /* marked client */ #define FLAGS_CANFLOOD 0x00002000 /* client has the ability to flood */ #define FLAGS_EXEMPTGLINE 0x00004000 /* client can't be G-lined */ #define FLAGS_EXEMPTKLINE 0x00008000 /* client is exempt from kline */ @@ -367,7 +373,6 @@ #define FLAGS_PINGWARNING 0x40000000 /* unreplied ping warning already sent */ #define FLAGS_FINISHED_AUTH 0x80000000 /* Client has been released from auth */ - /* umodes, settable flags */ #define UMODE_SERVNOTICE 0x00000001 /* server notices such as kill */ #define UMODE_CCONN 0x00000002 /* Client Connections */ @@ -388,15 +393,18 @@ #define UMODE_LOCOPS 0x00010000 /* show locops */ #define UMODE_DEAF 0x00020000 /* don't receive channel messages */ #define UMODE_CCONN_FULL 0x00040000 /* add unused fields to connection monitoring */ +#define UMODE_REGNICK 0x00080000 /* registered and identified with services */ +#define UMODE_REGONLY 0x00100000 /* only identified users can speak to me */ /* user information flags, only settable by remote mode or local oper */ +#define UMODE_SVCSADMIN 0x20000000 /* Services administrator */ #define UMODE_OPER 0x40000000 /* Operator */ -#define UMODE_ADMIN 0x80000000 /* Admin on server */ +#define UMODE_ADMIN 0x80000000 /* Admin on server */ #define UMODE_ALL UMODE_SERVNOTICE #define SEND_UMODES (UMODE_INVISIBLE | UMODE_OPER | UMODE_WALLOP | \ - UMODE_ADMIN) + UMODE_ADMIN | UMODE_REGNICK | UMODE_REGONLY | UMODE_SVCSADMIN) /* oper priv flags */ @@ -409,12 +417,13 @@ #define OPER_FLAG_X 0x00000040 /* oper can xline */ #define OPER_FLAG_DIE 0x00000080 /* oper can die */ #define OPER_FLAG_REHASH 0x00000100 /* oper can rehash */ -#define OPER_FLAG_ADMIN 0x00000200 /* oper can set umode +a */ +#define OPER_FLAG_ADMIN 0x00000200 /* oper can set umode +A */ #define OPER_FLAG_HIDDEN_ADMIN 0x00000400 /* admin is hidden */ #define OPER_FLAG_OPERWALL 0x00000800 /* */ #define OPER_FLAG_OPER_SPY 0x00001000 /* */ #define OPER_FLAG_REMOTEBAN 0x00002000 /* */ #define OPER_FLAG_HIDDEN_OPER 0x00004000 /* */ +#define OPER_FLAG_SNOOP 0x00008000 /* oper can see on +i users, +s channels */ #define SetOFlag(x, y) ((x)->localClient->operflags |= (y)) @@ -452,12 +461,18 @@ #define SetOper(x) {(x)->umodes |= UMODE_OPER; \ if (!IsServer((x))) (x)->handler = OPER_HANDLER;} -#define ClearOper(x) {(x)->umodes &= ~(UMODE_OPER|UMODE_ADMIN); \ +#define ClearOper(x) {(x)->umodes &= ~(UMODE_OPER|UMODE_ADMIN|UMODE_SVCSADMIN); \ if (!IsOper((x)) && !IsServer((x))) \ (x)->handler = CLIENT_HANDLER; } #define IsPrivileged(x) (IsOper(x) || IsServer(x)) +#define SetRegNick(x) ((x)->umodes |= UMODE_REGNICK) +#define ClearRegNick(x) ((x)->umodes &= ~UMODE_REGNICK) + +#define SetServicesAdmin(x) ((x)->umodes |= UMODE_SVCSADMIN) +#define ClearServicesAdmin(x) ((x)->umodes &= ~UMODE_SVCSADMIN) + /* umode flags */ #define IsInvisible(x) ((x)->umodes & UMODE_INVISIBLE) #define SendWallops(x) ((x)->umodes & UMODE_WALLOP) @@ -466,6 +481,8 @@ #define IsSoftCallerId(x) ((x)->umodes & UMODE_SOFTCALLERID) #define IsDeaf(x) ((x)->umodes & UMODE_DEAF) #define IsFull(x) ((x)->umodes & UMODE_CCONN_FULL) +#define IsRegNick(x) ((x)->umodes & UMODE_REGNICK) +#define IsSetRegisteredOnly(x) ((x)->umodes & UMODE_REGONLY) #define SetSendQExceeded(x) ((x)->flags |= FLAGS_SENDQEX) #define IsSendQExceeded(x) ((x)->flags & FLAGS_SENDQEX) @@ -546,6 +563,7 @@ #define IsOperWall(x) (MyConnect(x) ? (x)->localClient->operflags & OPER_FLAG_OPERWALL : 0) #define IsOperRemoteBan(x) (MyConnect(x) ? (x)->localClient->operflags & OPER_FLAG_REMOTEBAN : 0) #define IsOperHidden(x) (MyConnect(x) ? (x)->localClient->operflags & OPER_FLAG_HIDDEN_OPER : 0) +#define IsOperSnoop(x) (MyConnect(x) ? (x)->localClient->operflags & OPER_FLAG_SNOOP : 0) /* * definitions for get_client_name Index: include/serno.h =================================================================== --- include/serno.h (revision 1) +++ include/serno.h (revision 114) @@ -1 +1 @@ -#define SERIALNUM "SVN" +#define SERIALNUM "terra" Index: include/s_serv.h =================================================================== --- include/s_serv.h (revision 1) +++ include/s_serv.h (revision 114) @@ -64,12 +64,12 @@ #define CAP_ZIP 0x00000800 /* Can do ZIPlinks */ #define CAP_ENC 0x00001000 /* Can do ENCrypted links */ #define CAP_KNOCK 0x00002000 /* supports KNOCK */ -#define CAP_TB 0x00004000 /* supports TB */ -#define CAP_UNKLN 0x00008000 /* Can do UNKLINE message */ -#define CAP_CLUSTER 0x00010000 /* supports server clustering */ -#define CAP_ENCAP 0x00020000 /* supports ENCAP message */ -#define CAP_HOPS 0x00040000 /* supports HALFOPS */ -#define CAP_TBURST 0x00080000 /* supports TBURST */ +#define CAP_TB 0x00004000 /* supports TB */ +#define CAP_UNKLN 0x00008000 /* Can do UNKLINE message */ +#define CAP_CLUSTER 0x00010000 /* supports server clustering */ +#define CAP_ENCAP 0x00020000 /* supports ENCAP message */ +#define CAP_HOPS 0x00040000 /* supports HALFOPS */ +#define CAP_TBURST 0x00080000 /* supports TBURST */ #ifdef HAVE_LIBZ #define CAP_ZIP_SUPPORTED CAP_ZIP Index: include/numeric.h =================================================================== --- include/numeric.h (revision 1) +++ include/numeric.h (revision 114) @@ -122,6 +122,8 @@ #define RPL_STATSDLINE 225 #define RPL_STATSALINE 226 +#define RPL_STATSWLINE 227 + /* RPL_RULES 232 unreal */ /* RPL_STATSIAUTH 239 IRCnet extension */ @@ -201,11 +203,11 @@ #define RPL_TEXT 304 #define RPL_UNAWAY 305 #define RPL_NOWAWAY 306 -#define RPL_USERIP 307 /* Undernet extension */ -/* RPL_WHOISREGNICK 307 Numeric List: Dalnet */ +/*#define RPL_USERIP 307 Undernet extension */ +#define RPL_WHOISREGNICK 307 +#define RPL_WHOISREGONLY 308 /* RPL_SUSERHOST 307 austnet */ /* RPL_NOTIFYACTION 308 aircd */ -#define RPL_WHOISADMIN 308 /* Numeric List: Dalnet */ /* RPL_RULESSTART 308 unreal */ /* RPL_NICKTRACE 309 aircd */ /* RPL_WHOISSADMIN 309 Numeric List: Dalnet */ @@ -220,6 +222,7 @@ #define RPL_WHOISOPERATOR 313 #define RPL_WHOWASUSER 314 + /* rpl_endofwho below (315) */ #define RPL_ENDOFWHOWAS 369 @@ -234,6 +237,10 @@ #define RPL_LIST 322 #define RPL_LISTEND 323 #define RPL_CHANNELMODEIS 324 + +#define RPL_WHOISADMIN 325 /* Numeric List: Dalnet */ +#define RPL_WHOISSVCSADMIN 326 + /* RPL_CHANNELPASSIS 325 IRCnet extension */ /* RPL_UNIQOPIS 325 IRCnet extension */ /* RPL_NOCHANPASS 326 IRCnet extension */ @@ -316,6 +323,7 @@ #define ERR_TOOMANYCHANNELS 405 #define ERR_WASNOSUCHNICK 406 #define ERR_TOOMANYTARGETS 407 +#define ERR_NOCOLORSONCHAN 408 #define ERR_NOORIGIN 409 #define ERR_INVALIDCAPCMD 410 @@ -376,6 +384,8 @@ #define ERR_INVITEONLYCHAN 473 #define ERR_BANNEDFROMCHAN 474 #define ERR_BADCHANNELKEY 475 +#define ERR_NOJOINCAPTURED 476 +#define ERR_NEEDREGGEDNICK 477 /* ERR_MODELESS 477 ircu numeric -db */ #define ERR_BANLISTFULL 478 /* I stole the numeric from ircu -db */ #define ERR_BADCHANNAME 479 @@ -407,6 +417,7 @@ #define ERR_USERNOTONSERV 504 +#define ERR_SERVICESONLY 505 /* #define ERR_LAST_ERR_MSG 505 * moved to 999 */ @@ -484,6 +495,12 @@ #define RPL_NOTESTLINE 726 #define RPL_ISCAPTURED 727 #define RPL_ISUNCAPTURED 728 +#define RPL_YOURECAPTURED 729 +#define RPL_YOUREUNCAPTURED 730 +#define ERR_CANNOTSENDCAPTURED 731 +#define ERR_YOURECAPTURED 732 +#define RPL_LOCALCAPTURECOUNT 733 +#define RPL_LOCALUNCAPTURECOUNT 734 #define ERR_LAST_ERR_MSG 999 Index: include/ircd_defs.h =================================================================== --- include/ircd_defs.h (revision 1) +++ include/ircd_defs.h (revision 114) @@ -47,8 +47,8 @@ #define LOCAL_CHANNELLEN 50 #define CHANNELLEN 200 #define REASONLEN 120 -#define KICKLEN 160 -#define AWAYLEN 160 +#define KICKLEN 390 +#define AWAYLEN 390 /* 23+1 for \0 */ #define KEYLEN 24 Index: include/patchlevel.h =================================================================== --- include/patchlevel.h (revision 1) +++ include/patchlevel.h (revision 114) @@ -23,5 +23,5 @@ */ #ifndef PATCHLEVEL -#define PATCHLEVEL "hybrid-7.2.3" +#define PATCHLEVEL "esphyb-1.0.0" #endif Index: src/channel.c =================================================================== --- src/channel.c (revision 1) +++ src/channel.c (revision 114) @@ -658,7 +658,7 @@ * \param source_p pointer to client attempting to join * \param chptr pointer to channel * \param key key sent by client attempting to join if present - * \return ERR_BANNEDFROMCHAN, ERR_INVITEONLYCHAN, ERR_CHANNELISFULL + * \return ERR_BANNEDFROMCHAN, ERR_INVITEONLYCHAN, ERR_CHANNELISFULL, ERR_NEEDREGGEDNICK * or 0 if allowed to join. */ int @@ -667,6 +667,9 @@ if (is_banned(chptr, source_p)) return ERR_BANNEDFROMCHAN; + if (IsCaptured(source_p) && irccmp(chptr->chname, ServerInfo.help_channel) != 0) + return ERR_NOJOINCAPTURED; + if (chptr->mode.mode & MODE_INVITEONLY) if (!dlinkFind(&source_p->localClient->invited, chptr)) if (!ConfigChannel.use_invex || !find_bmask(source_p, &chptr->invexlist)) @@ -679,6 +682,13 @@ chptr->mode.limit) return ERR_CHANNELISFULL; + if (chptr->mode.mode & MODE_OPERONLY && !IsOper(source_p)) + return ERR_INVITEONLYCHAN; /* a little white lie to maintain compat */ + + if (chptr->mode.mode & MODE_REGONLY && !IsRegNick(source_p) && + !IsOper(source_p) && !IsService(source_p)) + return ERR_NEEDREGGEDNICK; + return 0; } @@ -716,9 +726,12 @@ int can_send(struct Channel *chptr, struct Client *source_p, struct Membership *ms) { - if (IsServer(source_p)) + if (IsServer(source_p) || IsService(source_p)) return CAN_SEND_OPV; + if (IsCaptured(source_p) && irccmp(chptr->chname, ServerInfo.help_channel) != 0) + return CAN_SEND_NO; + if (MyClient(source_p) && !IsExemptResv(source_p)) if (!(IsOper(source_p) && ConfigFileEntry.oper_pass_resv)) if (!hash_find_resv(chptr->chname) == ConfigChannel.restrict_channels) @@ -750,6 +763,13 @@ else if (chptr->mode.mode & MODE_NOPRIVMSGS) return CAN_SEND_NO; + if ((chptr->mode.mode & MODE_OPERONLY) && !IsOper(source_p)) + return CAN_SEND_NO; + + if (chptr->mode.mode & (MODE_REGMOD | MODE_REGONLY) && + (!IsRegNick(source_p) && !IsOper(source_p))) + return CAN_SEND_NO; + if (chptr->mode.mode & MODE_MODERATED) return CAN_SEND_NO; Index: src/y.tab.c =================================================================== --- src/y.tab.c (revision 1) +++ src/y.tab.c (revision 114) @@ -209,681 +209,700 @@ #define IRCD_AUTH 329 #define NEED_IDENT 330 #define HAVENT_READ_CONF 331 -#define HIDDEN 332 -#define HIDDEN_ADMIN 333 -#define HIDDEN_NAME 334 -#define HIDDEN_OPER 335 -#define HIDE_SERVER_IPS 336 -#define HIDE_SERVERS 337 -#define HIDE_SPOOF_IPS 338 -#define HOST 339 -#define HUB 340 -#define HUB_MASK 341 -#define IDLETIME 342 -#define IGNORE_BOGUS_TS 343 -#define INVISIBLE_ON_CONNECT 344 -#define IP 345 -#define KILL 346 -#define KILL_CHASE_TIME_LIMIT 347 -#define KLINE 348 -#define KLINE_EXEMPT 349 -#define KLINE_REASON 350 -#define KLINE_WITH_REASON 351 -#define KNOCK_DELAY 352 -#define KNOCK_DELAY_CHANNEL 353 -#define LAZYLINK 354 -#define LEAF_MASK 355 -#define LINKS_DELAY 356 -#define LISTEN 357 -#define T_LOG 358 -#define LOGGING 359 -#define LOG_LEVEL 360 -#define MAX_ACCEPT 361 -#define MAX_BANS 362 -#define MAX_CHANS_PER_USER 363 -#define MAX_GLOBAL 364 -#define MAX_IDENT 365 -#define MAX_LOCAL 366 -#define MAX_NICK_CHANGES 367 -#define MAX_NICK_TIME 368 -#define MAX_NUMBER 369 -#define MAX_TARGETS 370 -#define MESSAGE_LOCALE 371 -#define MIN_NONWILDCARD 372 -#define MIN_NONWILDCARD_SIMPLE 373 -#define MODULE 374 -#define MODULES 375 -#define NAME 376 -#define NEED_PASSWORD 377 -#define NETWORK_DESC 378 -#define NETWORK_NAME 379 -#define NICK 380 -#define NICK_CHANGES 381 -#define NO_CREATE_ON_SPLIT 382 -#define NO_JOIN_ON_SPLIT 383 -#define NO_OPER_FLOOD 384 -#define NO_TILDE 385 -#define NOT 386 -#define NUMBER 387 -#define NUMBER_PER_IDENT 388 -#define NUMBER_PER_CIDR 389 -#define NUMBER_PER_IP 390 -#define NUMBER_PER_IP_GLOBAL 391 -#define OPERATOR 392 -#define OPERS_BYPASS_CALLERID 393 -#define OPER_LOG 394 -#define OPER_ONLY_UMODES 395 -#define OPER_PASS_RESV 396 -#define OPER_SPY_T 397 -#define OPER_UMODES 398 -#define JOIN_FLOOD_COUNT 399 -#define JOIN_FLOOD_TIME 400 -#define PACE_WAIT 401 -#define PACE_WAIT_SIMPLE 402 -#define PASSWORD 403 -#define PATH 404 -#define PING_COOKIE 405 -#define PING_TIME 406 -#define PING_WARNING 407 -#define PORT 408 -#define QSTRING 409 -#define QUIET_ON_BAN 410 -#define REASON 411 -#define REDIRPORT 412 -#define REDIRSERV 413 -#define REGEX_T 414 -#define REHASH 415 -#define TREJECT_HOLD_TIME 416 -#define REMOTE 417 -#define REMOTEBAN 418 -#define RESTRICT_CHANNELS 419 -#define RESTRICTED 420 -#define RSA_PRIVATE_KEY_FILE 421 -#define RSA_PUBLIC_KEY_FILE 422 -#define SSL_CERTIFICATE_FILE 423 -#define RESV 424 -#define RESV_EXEMPT 425 -#define SECONDS 426 -#define MINUTES 427 -#define HOURS 428 -#define DAYS 429 -#define WEEKS 430 -#define SENDQ 431 -#define SEND_PASSWORD 432 -#define SERVERHIDE 433 -#define SERVERINFO 434 -#define SERVLINK_PATH 435 -#define IRCD_SID 436 -#define TKLINE_EXPIRE_NOTICES 437 -#define T_SHARED 438 -#define T_CLUSTER 439 -#define TYPE 440 -#define SHORT_MOTD 441 -#define SILENT 442 -#define SPOOF 443 -#define SPOOF_NOTICE 444 -#define STATS_E_DISABLED 445 -#define STATS_I_OPER_ONLY 446 -#define STATS_K_OPER_ONLY 447 -#define STATS_O_OPER_ONLY 448 -#define STATS_P_OPER_ONLY 449 -#define TBOOL 450 -#define TMASKED 451 -#define T_REJECT 452 -#define TS_MAX_DELTA 453 -#define TS_WARN_DELTA 454 -#define TWODOTS 455 -#define T_ALL 456 -#define T_BOTS 457 -#define T_SOFTCALLERID 458 -#define T_CALLERID 459 -#define T_CCONN 460 -#define T_CCONN_FULL 461 -#define T_CLIENT_FLOOD 462 -#define T_DEAF 463 -#define T_DEBUG 464 -#define T_DRONE 465 -#define T_EXTERNAL 466 -#define T_FULL 467 -#define T_INVISIBLE 468 -#define T_IPV4 469 -#define T_IPV6 470 -#define T_LOCOPS 471 -#define T_LOGPATH 472 -#define T_L_CRIT 473 -#define T_L_DEBUG 474 -#define T_L_ERROR 475 -#define T_L_INFO 476 -#define T_L_NOTICE 477 -#define T_L_TRACE 478 -#define T_L_WARN 479 -#define T_MAX_CLIENTS 480 -#define T_NCHANGE 481 -#define T_OPERWALL 482 -#define T_REJ 483 -#define T_SERVNOTICE 484 -#define T_SKILL 485 -#define T_SPY 486 -#define T_SSL 487 -#define T_UMODES 488 -#define T_UNAUTH 489 -#define T_UNRESV 490 -#define T_UNXLINE 491 -#define T_WALLOP 492 -#define THROTTLE_TIME 493 -#define TOPICBURST 494 -#define TRUE_NO_OPER_FLOOD 495 -#define TKLINE 496 -#define TXLINE 497 -#define TRESV 498 -#define UNKLINE 499 -#define USER 500 -#define USE_EGD 501 -#define USE_EXCEPT 502 -#define USE_INVEX 503 -#define USE_KNOCK 504 -#define USE_LOGGING 505 -#define USE_WHOIS_ACTUALLY 506 -#define VHOST 507 -#define VHOST6 508 -#define XLINE 509 -#define WARN 510 -#define WARN_NO_NLINE 511 +#define HELP_CHANNEL 332 +#define HIDDEN 333 +#define HIDDEN_ADMIN 334 +#define HIDDEN_NAME 335 +#define HIDDEN_OPER 336 +#define HIDE_SERVER_IPS 337 +#define HIDE_SERVERS 338 +#define HIDE_SPOOF_IPS 339 +#define HOST 340 +#define HUB 341 +#define HUB_MASK 342 +#define IDLETIME 343 +#define IGNORE_BOGUS_TS 344 +#define INVISIBLE_ON_CONNECT 345 +#define IP 346 +#define KILL 347 +#define KILL_CHASE_TIME_LIMIT 348 +#define KLINE 349 +#define KLINE_EXEMPT 350 +#define KLINE_REASON 351 +#define KLINE_WITH_REASON 352 +#define KNOCK_DELAY 353 +#define KNOCK_DELAY_CHANNEL 354 +#define LAZYLINK 355 +#define LEAF_MASK 356 +#define LINKS_DELAY 357 +#define LISTEN 358 +#define T_LOG 359 +#define LOGGING 360 +#define LOG_LEVEL 361 +#define MAX_ACCEPT 362 +#define MAX_BANS 363 +#define MAX_CHANS_PER_USER 364 +#define MAX_GLOBAL 365 +#define MAX_IDENT 366 +#define MAX_LOCAL 367 +#define MAX_NICK_CHANGES 368 +#define MAX_NICK_TIME 369 +#define MAX_NUMBER 370 +#define MAX_TARGETS 371 +#define MESSAGE_LOCALE 372 +#define MIN_NONWILDCARD 373 +#define MIN_NONWILDCARD_SIMPLE 374 +#define MODULE 375 +#define MODULES 376 +#define NAME 377 +#define NEED_PASSWORD 378 +#define NETWORK_DESC 379 +#define NETWORK_NAME 380 +#define NICK 381 +#define NICK_CHANGES 382 +#define NO_CREATE_ON_SPLIT 383 +#define NO_JOIN_ON_SPLIT 384 +#define NO_OPER_FLOOD 385 +#define NO_TILDE 386 +#define NOT 387 +#define NUMBER 388 +#define NUMBER_PER_IDENT 389 +#define NUMBER_PER_CIDR 390 +#define NUMBER_PER_IP 391 +#define NUMBER_PER_IP_GLOBAL 392 +#define OPERATOR 393 +#define OPERS_BYPASS_CALLERID 394 +#define OPER_LOG 395 +#define OPER_ONLY_UMODES 396 +#define OPER_PASS_RESV 397 +#define OPER_SPY_T 398 +#define OPER_UMODES 399 +#define JOIN_FLOOD_COUNT 400 +#define JOIN_FLOOD_TIME 401 +#define PACE_WAIT 402 +#define PACE_WAIT_SIMPLE 403 +#define PASSWORD 404 +#define PATH 405 +#define PING_COOKIE 406 +#define PING_TIME 407 +#define PING_WARNING 408 +#define PORT 409 +#define QSTRING 410 +#define QUIET_ON_BAN 411 +#define REASON 412 +#define REDIRPORT 413 +#define REDIRSERV 414 +#define REGEX_T 415 +#define REHASH 416 +#define TREJECT_HOLD_TIME 417 +#define REMOTE 418 +#define REMOTEBAN 419 +#define RESTRICT_CHANNELS 420 +#define RESTRICTED 421 +#define RSA_PRIVATE_KEY_FILE 422 +#define RSA_PUBLIC_KEY_FILE 423 +#define SSL_CERTIFICATE_FILE 424 +#define RESV 425 +#define RESV_EXEMPT 426 +#define SECONDS 427 +#define MINUTES 428 +#define HOURS 429 +#define DAYS 430 +#define WEEKS 431 +#define SENDQ 432 +#define SEND_PASSWORD 433 +#define SERVERHIDE 434 +#define SERVERINFO 435 +#define SERVLINK_PATH 436 +#define SERVICES_NAME 437 +#define IRCD_SID 438 +#define TKLINE_EXPIRE_NOTICES 439 +#define T_SHARED 440 +#define T_CLUSTER 441 +#define T_SNOOP 442 +#define TYPE 443 +#define SHORT_MOTD 444 +#define SILENT 445 +#define SPOOF 446 +#define SPOOF_NOTICE 447 +#define STATS_E_DISABLED 448 +#define STATS_I_OPER_ONLY 449 +#define STATS_K_OPER_ONLY 450 +#define STATS_O_OPER_ONLY 451 +#define STATS_P_OPER_ONLY 452 +#define TBOOL 453 +#define TMASKED 454 +#define T_REJECT 455 +#define TS_MAX_DELTA 456 +#define TS_WARN_DELTA 457 +#define TWODOTS 458 +#define T_ALL 459 +#define T_BOTS 460 +#define T_SOFTCALLERID 461 +#define T_CALLERID 462 +#define T_CCONN 463 +#define T_CCONN_FULL 464 +#define T_CLIENT_FLOOD 465 +#define T_DEAF 466 +#define T_DEBUG 467 +#define T_DRONE 468 +#define T_EXTERNAL 469 +#define T_FULL 470 +#define T_INVISIBLE 471 +#define T_IPV4 472 +#define T_IPV6 473 +#define T_LOCOPS 474 +#define T_LOGPATH 475 +#define T_L_CRIT 476 +#define T_L_DEBUG 477 +#define T_L_ERROR 478 +#define T_L_INFO 479 +#define T_L_NOTICE 480 +#define T_L_TRACE 481 +#define T_L_WARN 482 +#define T_MAX_CLIENTS 483 +#define T_NCHANGE 484 +#define T_OPERWALL 485 +#define T_REJ 486 +#define T_SERVNOTICE 487 +#define T_SKILL 488 +#define T_SPY 489 +#define T_SSL 490 +#define T_UMODES 491 +#define T_UNAUTH 492 +#define T_UNRESV 493 +#define T_UNXLINE 494 +#define T_WALLOP 495 +#define THROTTLE_TIME 496 +#define TOPICBURST 497 +#define TRUE_NO_OPER_FLOOD 498 +#define TKLINE 499 +#define TXLINE 500 +#define TRESV 501 +#define UNKLINE 502 +#define USER 503 +#define T_USERMODE 504 +#define USE_EGD 505 +#define USE_EXCEPT 506 +#define USE_INVEX 507 +#define USE_KNOCK 508 +#define USE_LOGGING 509 +#define USE_WHOIS_ACTUALLY 510 +#define VHOST 511 +#define VHOST6 512 +#define XLINE 513 +#define WARN 514 +#define WARN_NO_NLINE 515 +#define WEBIRC 516 const short yylhs[] = { -1, 0, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, - 5, 5, 5, 5, 2, 2, 1, 1, 1, 1, - 1, 1, 4, 4, 3, 3, 3, 3, 25, 26, - 26, 27, 27, 27, 28, 29, 13, 30, 30, 31, - 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, - 31, 42, 39, 32, 41, 35, 36, 37, 33, 40, - 38, 34, 6, 43, 43, 44, 44, 44, 44, 45, - 47, 46, 7, 48, 48, 49, 49, 49, 49, 49, - 49, 49, 49, 49, 49, 49, 49, 49, 50, 51, - 54, 61, 55, 59, 56, 57, 60, 58, 52, 52, - 52, 52, 52, 52, 52, 53, 63, 8, 62, 62, - 64, 64, 66, 66, 66, 66, 66, 66, 66, 66, - 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, - 66, 66, 66, 66, 66, 67, 65, 68, 69, 86, - 87, 73, 89, 72, 90, 90, 91, 91, 91, 91, - 91, 91, 91, 91, 91, 91, 91, 91, 91, 91, - 91, 91, 91, 91, 91, 74, 75, 81, 76, 77, - 78, 79, 80, 82, 83, 84, 70, 71, 85, 92, - 88, 93, 93, 96, 94, 97, 94, 95, 95, 95, + 5, 5, 5, 5, 5, 2, 2, 1, 1, 1, + 1, 1, 1, 4, 4, 3, 3, 3, 3, 25, + 27, 27, 28, 28, 28, 29, 30, 13, 31, 31, + 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, + 32, 32, 32, 32, 45, 42, 33, 44, 36, 37, + 38, 39, 40, 34, 43, 41, 35, 6, 46, 46, + 47, 47, 47, 47, 48, 50, 49, 7, 51, 51, + 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, + 52, 52, 52, 53, 54, 57, 64, 58, 62, 59, + 60, 63, 61, 55, 55, 55, 55, 55, 55, 55, + 56, 66, 8, 65, 65, 67, 67, 69, 69, 69, + 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, + 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, + 69, 70, 68, 71, 72, 90, 91, 76, 93, 75, + 94, 94, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, - 95, 95, 95, 99, 10, 98, 98, 100, 100, 102, - 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, - 102, 102, 102, 103, 101, 106, 107, 109, 110, 111, - 112, 113, 114, 115, 104, 105, 108, 116, 11, 119, - 118, 120, 120, 121, 121, 117, 117, 122, 122, 122, - 122, 122, 127, 123, 126, 126, 128, 128, 124, 125, - 129, 12, 130, 130, 131, 131, 131, 131, 131, 131, - 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, - 131, 132, 133, 142, 134, 147, 148, 135, 149, 149, - 152, 150, 153, 150, 151, 151, 151, 151, 151, 151, - 151, 151, 151, 151, 136, 137, 138, 145, 139, 140, - 141, 143, 144, 146, 154, 15, 155, 155, 156, 156, - 156, 156, 157, 158, 159, 160, 16, 161, 161, 162, - 162, 162, 162, 163, 164, 166, 165, 167, 167, 168, - 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, - 169, 17, 170, 170, 171, 171, 171, 172, 174, 173, - 175, 175, 176, 176, 176, 176, 176, 176, 176, 176, - 176, 176, 176, 178, 18, 177, 177, 179, 179, 181, - 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, - 181, 181, 181, 181, 181, 181, 181, 181, 181, 182, - 180, 183, 184, 185, 186, 188, 187, 187, 189, 201, - 190, 202, 202, 205, 203, 206, 203, 204, 204, 204, - 204, 204, 204, 198, 195, 197, 196, 194, 200, 191, - 192, 193, 199, 207, 19, 210, 209, 211, 211, 212, - 208, 208, 213, 213, 213, 213, 214, 215, 216, 20, - 217, 217, 218, 218, 218, 219, 220, 21, 221, 221, - 222, 222, 223, 224, 24, 227, 226, 228, 228, 229, - 225, 225, 230, 230, 230, 230, 231, 232, 22, 233, - 233, 234, 234, 234, 234, 234, 234, 234, 234, 234, - 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, - 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, - 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, - 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, - 234, 234, 234, 234, 234, 234, 234, 285, 286, 283, - 287, 288, 284, 245, 235, 236, 274, 237, 238, 239, - 240, 241, 242, 243, 244, 279, 246, 247, 248, 249, - 289, 251, 256, 252, 252, 254, 254, 253, 268, 269, - 255, 257, 258, 259, 260, 262, 261, 250, 264, 273, - 275, 276, 265, 266, 281, 282, 278, 290, 267, 291, - 291, 292, 292, 292, 292, 292, 292, 292, 292, 292, - 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, - 293, 263, 294, 294, 295, 295, 295, 295, 295, 295, - 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, - 295, 295, 295, 271, 272, 270, 277, 280, 296, 23, - 297, 297, 298, 298, 298, 298, 298, 298, 298, 299, - 300, 305, 301, 306, 306, 307, 307, 302, 303, 308, - 304, 309, 309, 310, 310, 9, 311, 311, 312, 312, - 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, - 312, 312, 312, 312, 312, 312, 312, 330, 325, 313, - 314, 315, 316, 318, 319, 320, 321, 317, 322, 323, - 324, 326, 327, 328, 329, 14, 331, 331, 332, 332, - 332, 332, 332, 332, 332, 332, 333, 334, 338, 335, - 337, 336, 339, + 95, 77, 78, 84, 79, 80, 81, 82, 83, 85, + 86, 87, 73, 74, 88, 89, 96, 92, 97, 97, + 100, 98, 101, 98, 99, 99, 99, 99, 99, 99, + 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, + 99, 102, 26, 103, 103, 104, 104, 104, 105, 106, + 108, 10, 107, 107, 109, 109, 111, 111, 111, 111, + 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, + 112, 110, 115, 116, 118, 119, 120, 121, 122, 123, + 124, 113, 114, 117, 125, 11, 128, 127, 129, 129, + 130, 130, 126, 126, 131, 131, 131, 131, 131, 136, + 132, 135, 135, 137, 137, 133, 134, 138, 12, 139, + 139, 140, 140, 140, 140, 140, 140, 140, 140, 140, + 140, 140, 140, 140, 140, 140, 140, 140, 141, 142, + 151, 143, 156, 157, 144, 158, 158, 161, 159, 162, + 159, 160, 160, 160, 160, 160, 160, 160, 160, 160, + 160, 145, 146, 147, 154, 148, 149, 150, 152, 153, + 155, 163, 15, 164, 164, 165, 165, 165, 165, 166, + 167, 168, 169, 16, 170, 170, 171, 171, 171, 171, + 172, 173, 175, 174, 176, 176, 177, 177, 177, 177, + 177, 177, 177, 177, 177, 177, 177, 177, 178, 17, + 179, 179, 180, 180, 180, 181, 183, 182, 184, 184, + 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, + 185, 187, 18, 186, 186, 188, 188, 190, 190, 190, + 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, + 190, 190, 190, 190, 190, 190, 190, 191, 189, 192, + 193, 194, 195, 197, 196, 196, 198, 210, 199, 211, + 211, 214, 212, 215, 212, 213, 213, 213, 213, 213, + 213, 207, 204, 206, 205, 203, 209, 200, 201, 202, + 208, 216, 19, 219, 218, 220, 220, 221, 217, 217, + 222, 222, 222, 222, 223, 224, 225, 20, 226, 226, + 227, 227, 227, 228, 229, 21, 230, 230, 231, 231, + 232, 233, 24, 236, 235, 237, 237, 238, 234, 234, + 239, 239, 239, 239, 240, 241, 22, 242, 242, 243, + 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, + 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, + 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, + 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, + 243, 243, 243, 243, 243, 243, 243, 243, 243, 243, + 243, 243, 243, 243, 243, 294, 295, 292, 296, 297, + 293, 254, 244, 245, 283, 246, 247, 248, 249, 250, + 251, 252, 253, 288, 255, 256, 257, 258, 298, 260, + 265, 261, 261, 263, 263, 262, 277, 278, 264, 266, + 267, 268, 269, 271, 270, 259, 273, 282, 284, 285, + 274, 275, 290, 291, 287, 299, 276, 300, 300, 301, + 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, + 301, 301, 301, 301, 301, 301, 301, 301, 302, 272, + 303, 303, 304, 304, 304, 304, 304, 304, 304, 304, + 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, + 304, 280, 281, 279, 286, 289, 305, 23, 306, 306, + 307, 307, 307, 307, 307, 307, 307, 308, 309, 314, + 310, 315, 315, 316, 316, 311, 312, 317, 313, 318, + 318, 319, 319, 9, 320, 320, 321, 321, 321, 321, + 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, + 321, 321, 321, 321, 321, 339, 334, 322, 323, 324, + 325, 327, 328, 329, 330, 326, 331, 332, 333, 335, + 336, 337, 338, 14, 340, 340, 341, 341, 341, 341, + 341, 341, 341, 341, 342, 343, 347, 344, 346, 345, + 348, }; const short yylen[] = { 2, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 2, 2, 0, 1, 2, 3, 3, 3, - 3, 3, 0, 1, 2, 3, 3, 3, 5, 2, - 1, 1, 1, 2, 4, 4, 5, 2, 1, 1, + 1, 1, 1, 2, 2, 0, 1, 2, 3, 3, + 3, 3, 3, 0, 1, 2, 3, 3, 3, 5, + 2, 1, 1, 1, 2, 4, 4, 5, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 2, 4, 4, 4, 4, 4, 4, 4, 4, 4, - 4, 4, 5, 2, 1, 1, 1, 1, 2, 4, - 4, 4, 5, 2, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 2, 4, 4, + 1, 1, 1, 2, 4, 4, 4, 4, 4, 4, + 4, 4, 4, 4, 4, 4, 4, 5, 2, 1, + 1, 1, 1, 2, 4, 4, 4, 5, 2, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, - 4, 4, 4, 4, 4, 4, 0, 7, 0, 1, - 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 4, 0, 7, 0, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 2, 4, 1, 4, 4, 4, - 4, 4, 0, 5, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, - 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, - 5, 3, 1, 0, 3, 0, 2, 1, 1, 1, + 2, 4, 1, 4, 4, 4, 4, 4, 0, 5, + 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 0, 7, 0, 1, 2, 1, 1, + 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, + 4, 4, 4, 4, 4, 4, 0, 5, 3, 1, + 0, 3, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 2, 4, 1, 4, 4, 4, 4, 4, - 4, 4, 4, 4, 4, 4, 4, 0, 6, 0, - 5, 3, 1, 1, 1, 2, 1, 1, 1, 1, - 1, 2, 0, 5, 3, 1, 1, 3, 4, 4, - 0, 6, 2, 1, 1, 1, 1, 1, 1, 1, + 1, 0, 6, 2, 1, 1, 1, 2, 4, 4, + 0, 7, 0, 1, 2, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, + 4, 1, 4, 4, 4, 4, 4, 4, 4, 4, + 4, 4, 4, 4, 0, 6, 0, 5, 3, 1, + 1, 1, 2, 1, 1, 1, 1, 1, 2, 0, + 5, 3, 1, 1, 3, 4, 4, 0, 6, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 2, 4, 4, 4, 4, 4, 0, 5, 3, 1, - 0, 3, 0, 2, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, - 4, 4, 4, 4, 0, 6, 2, 1, 1, 1, - 1, 2, 4, 4, 4, 0, 6, 2, 1, 1, - 1, 1, 2, 4, 4, 0, 5, 3, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 2, 4, 4, + 4, 4, 4, 0, 5, 3, 1, 0, 3, 0, + 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, + 4, 0, 6, 2, 1, 1, 1, 1, 2, 4, + 4, 4, 0, 6, 2, 1, 1, 1, 1, 2, + 4, 4, 0, 5, 3, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 0, 6, + 2, 1, 1, 1, 2, 4, 0, 5, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 0, 6, 2, 1, 1, 1, 2, 4, 0, 5, - 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 0, 7, 0, 1, 2, 1, 1, + 1, 0, 7, 0, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, - 1, 4, 4, 4, 4, 4, 4, 4, 4, 0, - 5, 3, 1, 0, 3, 0, 2, 1, 1, 1, - 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, - 4, 4, 4, 0, 6, 0, 5, 3, 1, 1, - 2, 1, 1, 1, 1, 1, 4, 4, 0, 6, - 2, 1, 1, 1, 1, 4, 4, 5, 2, 1, - 1, 1, 4, 0, 6, 0, 5, 3, 1, 1, - 2, 1, 1, 1, 1, 1, 4, 4, 5, 2, + 1, 1, 1, 1, 1, 1, 2, 4, 1, 4, + 4, 4, 4, 4, 4, 4, 4, 0, 5, 3, + 1, 0, 3, 0, 2, 1, 1, 1, 1, 1, + 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, + 4, 0, 6, 0, 5, 3, 1, 1, 2, 1, + 1, 1, 1, 1, 4, 4, 0, 6, 2, 1, + 1, 1, 1, 4, 4, 5, 2, 1, 1, 1, + 4, 0, 6, 0, 5, 3, 1, 1, 2, 1, + 1, 1, 1, 1, 4, 4, 5, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, + 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, - 4, 4, 4, 4, 4, 4, 4, 0, 5, 3, + 4, 4, 4, 4, 4, 0, 5, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 0, 5, + 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 0, 5, 3, 1, 1, 1, 1, 1, 1, 1, + 1, 4, 4, 4, 4, 4, 0, 6, 2, 1, + 1, 1, 1, 1, 1, 1, 1, 4, 4, 0, + 5, 3, 1, 1, 1, 4, 4, 0, 5, 3, + 1, 1, 1, 5, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 4, 4, 4, 4, 4, 0, 6, - 2, 1, 1, 1, 1, 1, 1, 1, 1, 4, - 4, 0, 5, 3, 1, 1, 1, 4, 4, 0, - 5, 3, 1, 1, 1, 5, 2, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, + 1, 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, - 4, 4, 4, 4, 4, 5, 2, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, - 4, 4, 4, + 4, 4, 4, 5, 2, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 4, 4, 4, 4, 4, 4, + 4, }; const short yydefred[] = { 1, - 0, 0, 0, 0, 214, 384, 459, 0, 474, 0, - 649, 271, 444, 248, 0, 0, 117, 325, 0, 0, - 336, 361, 2, 3, 4, 5, 6, 7, 8, 9, - 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, - 20, 21, 22, 23, 24, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 231, 402, 477, 0, 492, 0, + 667, 288, 462, 265, 0, 0, 122, 342, 0, 0, + 353, 379, 222, 2, 3, 4, 5, 6, 7, 8, + 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, + 19, 20, 21, 22, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 75, 76, 77, 78, 697, 0, 0, 0, 0, 0, + 0, 0, 0, 80, 81, 82, 83, 715, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 678, 679, 680, 681, 682, 683, - 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, - 694, 695, 696, 235, 0, 217, 411, 0, 387, 0, - 472, 0, 0, 470, 471, 0, 547, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 696, 697, 698, + 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, + 709, 710, 711, 712, 713, 714, 252, 0, 234, 429, + 0, 405, 0, 490, 0, 0, 488, 489, 0, 565, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 621, - 0, 598, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 491, 492, 493, 494, 495, 496, 497, - 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, - 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, - 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, - 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, - 538, 539, 540, 541, 542, 543, 544, 545, 546, 0, + 0, 0, 639, 0, 616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 85, 86, 87, - 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, - 0, 0, 0, 0, 41, 42, 43, 147, 0, 120, - 0, 726, 0, 0, 0, 0, 0, 0, 0, 0, - 718, 719, 720, 721, 722, 723, 724, 725, 0, 0, + 0, 0, 0, 0, 0, 0, 509, 510, 511, 512, + 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, + 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, + 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, + 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, + 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, + 563, 564, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 49, 50, 51, 52, 53, 54, 55, 56, 57, - 58, 59, 60, 0, 0, 79, 0, 0, 0, 0, - 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, + 100, 101, 102, 0, 0, 0, 0, 42, 43, 44, + 153, 0, 125, 0, 744, 0, 0, 0, 0, 0, + 0, 0, 0, 736, 737, 738, 739, 740, 741, 742, + 743, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 50, 51, 52, 53, + 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, + 0, 0, 0, 84, 0, 0, 0, 0, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 677, 0, 0, 465, 0, 0, 0, 462, 463, 464, - 0, 0, 469, 486, 0, 0, 476, 0, 485, 482, - 483, 484, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 695, 0, + 0, 483, 0, 0, 0, 480, 481, 482, 0, 0, + 487, 504, 0, 0, 494, 0, 503, 500, 501, 502, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 490, 659, - 670, 0, 0, 662, 0, 0, 0, 652, 653, 654, - 655, 656, 657, 658, 0, 0, 0, 0, 0, 297, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 274, 275, 276, 277, 278, 279, 280, 281, - 282, 283, 284, 285, 286, 287, 288, 289, 290, 456, - 0, 446, 0, 0, 455, 452, 453, 454, 0, 250, - 0, 0, 0, 0, 259, 257, 258, 260, 261, 98, + 0, 0, 0, 0, 0, 0, 508, 677, 688, 0, + 0, 680, 0, 0, 0, 670, 671, 672, 673, 674, + 675, 676, 0, 0, 0, 0, 0, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 84, 44, 0, 0, 0, 40, 0, - 0, 0, 0, 0, 0, 328, 329, 330, 331, 0, - 0, 0, 0, 0, 0, 0, 0, 717, 61, 0, + 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, + 301, 302, 303, 304, 305, 306, 307, 474, 0, 464, + 0, 0, 473, 470, 471, 472, 0, 267, 0, 0, + 0, 0, 276, 274, 275, 277, 278, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 48, 0, 0, 346, 0, 0, 339, 340, 341, - 342, 0, 0, 369, 0, 364, 365, 366, 0, 0, - 0, 73, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 89, 45, 0, 0, 0, 41, 0, 0, 0, + 0, 0, 0, 345, 346, 347, 348, 0, 0, 0, + 0, 0, 0, 0, 0, 735, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 676, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 219, 220, 221, - 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, - 232, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 420, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 389, 390, 391, 392, 393, 394, 395, 396, - 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, - 407, 408, 0, 0, 0, 461, 0, 468, 0, 0, - 0, 0, 481, 0, 0, 0, 0, 0, 0, 0, + 0, 49, 0, 0, 363, 0, 0, 356, 357, 358, + 359, 0, 0, 387, 0, 382, 383, 384, 0, 0, + 0, 0, 225, 226, 227, 0, 0, 0, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 694, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 236, 237, 238, 239, 240, 241, + 242, 243, 244, 245, 246, 247, 248, 249, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 438, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 407, + 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, + 418, 419, 420, 421, 422, 423, 424, 425, 426, 0, + 0, 0, 479, 0, 486, 0, 0, 0, 0, 499, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 489, 0, 0, 0, 0, 0, 0, 0, 651, - 291, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 273, 0, - 0, 0, 0, 451, 262, 0, 0, 0, 0, 0, - 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, - 0, 0, 39, 0, 0, 0, 0, 0, 190, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 153, 0, 0, 0, 0, 122, 123, 124, - 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, - 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, - 332, 0, 0, 0, 0, 327, 0, 0, 0, 0, - 0, 0, 0, 716, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 47, 343, 0, 0, 0, - 0, 338, 367, 0, 0, 0, 363, 82, 81, 80, - 713, 710, 709, 698, 700, 0, 0, 0, 0, 0, - 26, 27, 704, 705, 708, 706, 711, 712, 714, 715, - 707, 699, 701, 702, 703, 233, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 218, 409, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 507, 0, + 0, 0, 0, 0, 0, 0, 669, 308, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 388, 0, 0, 460, 473, 0, 0, 0, - 475, 559, 563, 550, 579, 592, 591, 646, 596, 557, - 648, 588, 594, 558, 548, 549, 566, 555, 587, 556, - 569, 554, 568, 567, 562, 561, 560, 589, 586, 644, - 645, 583, 580, 625, 641, 642, 626, 627, 628, 629, - 636, 630, 639, 643, 632, 637, 633, 638, 631, 635, - 634, 640, 0, 624, 585, 602, 618, 619, 603, 604, - 605, 606, 613, 607, 616, 620, 609, 614, 610, 615, - 608, 612, 611, 617, 0, 601, 578, 581, 595, 552, - 590, 553, 582, 571, 576, 577, 574, 575, 572, 573, - 565, 564, 0, 0, 0, 34, 35, 647, 597, 584, - 593, 551, 570, 0, 0, 0, 0, 0, 0, 650, + 0, 0, 0, 0, 0, 290, 0, 0, 0, 0, + 469, 279, 0, 0, 0, 0, 0, 273, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 272, 0, 0, 0, - 445, 0, 0, 0, 0, 0, 266, 249, 102, 108, - 106, 105, 107, 103, 104, 101, 109, 115, 110, 114, - 112, 113, 111, 100, 99, 116, 45, 46, 145, 0, + 0, 0, 0, 0, 0, 0, 88, 0, 0, 40, + 0, 0, 0, 0, 0, 197, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 159, 0, 0, 0, 0, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, + 142, 143, 144, 145, 146, 147, 148, 149, 150, 349, + 0, 0, 0, 0, 344, 0, 0, 0, 0, 0, + 0, 0, 734, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 48, 360, 0, 0, + 0, 0, 355, 385, 0, 0, 0, 381, 228, 0, + 0, 0, 224, 87, 86, 85, 731, 728, 727, 716, + 718, 0, 0, 0, 0, 0, 27, 28, 722, 723, + 726, 724, 729, 730, 732, 733, 725, 717, 719, 720, + 721, 250, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 235, 427, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 121, 0, 0, 0, 326, 732, 727, 731, - 729, 733, 728, 730, 66, 72, 64, 68, 67, 63, - 62, 65, 71, 69, 70, 0, 0, 0, 337, 0, - 0, 362, 28, 29, 30, 31, 32, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 406, 0, + 0, 478, 491, 0, 0, 0, 493, 577, 581, 568, + 597, 610, 609, 664, 614, 575, 666, 606, 612, 576, + 566, 567, 584, 573, 605, 574, 587, 572, 586, 585, + 580, 579, 578, 607, 604, 662, 663, 601, 598, 643, + 659, 660, 644, 645, 646, 647, 654, 648, 657, 661, + 650, 655, 651, 656, 649, 653, 652, 658, 0, 642, + 603, 620, 636, 637, 621, 622, 623, 624, 631, 625, + 634, 638, 627, 632, 628, 633, 626, 630, 629, 635, + 0, 619, 596, 599, 613, 570, 608, 571, 600, 589, + 594, 595, 592, 593, 590, 591, 583, 582, 0, 0, + 0, 35, 36, 665, 615, 602, 611, 569, 588, 0, + 0, 0, 0, 0, 0, 668, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 215, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 289, 0, 0, 0, 463, 0, 0, 0, + 0, 0, 283, 266, 107, 113, 111, 110, 112, 108, + 109, 106, 114, 120, 115, 119, 117, 118, 116, 105, + 104, 121, 46, 47, 151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 385, 466, 467, 487, 488, 480, 0, 479, 622, - 0, 599, 0, 36, 37, 38, 675, 674, 0, 673, - 661, 660, 667, 666, 0, 665, 669, 668, 318, 295, - 296, 317, 301, 0, 300, 0, 320, 316, 315, 324, - 319, 293, 323, 322, 321, 294, 292, 458, 450, 0, - 449, 457, 255, 254, 0, 253, 270, 269, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 126, + 0, 0, 0, 343, 750, 745, 749, 747, 751, 746, + 748, 69, 73, 77, 67, 71, 70, 66, 65, 72, + 68, 76, 74, 75, 0, 0, 0, 354, 0, 0, + 380, 0, 0, 223, 29, 30, 31, 32, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 232, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 118, 334, 335, 333, 344, 350, 356, - 360, 359, 358, 355, 351, 354, 357, 352, 353, 0, - 349, 345, 368, 373, 379, 383, 382, 381, 378, 374, - 377, 380, 375, 376, 0, 372, 245, 246, 239, 241, - 243, 242, 240, 234, 247, 238, 236, 237, 244, 415, - 417, 418, 438, 443, 442, 437, 436, 435, 419, 424, - 0, 423, 0, 412, 440, 441, 410, 416, 434, 414, - 439, 413, 477, 0, 623, 600, 671, 0, 663, 0, - 0, 298, 0, 309, 310, 306, 312, 308, 307, 314, - 311, 313, 305, 304, 447, 0, 251, 0, 268, 265, - 264, 186, 152, 184, 150, 194, 0, 193, 0, 182, - 176, 187, 188, 179, 146, 183, 149, 185, 177, 178, - 151, 189, 157, 173, 174, 158, 159, 160, 161, 168, - 162, 171, 175, 164, 169, 165, 170, 163, 167, 166, - 172, 0, 156, 181, 148, 180, 347, 0, 370, 0, - 0, 421, 0, 431, 432, 429, 430, 428, 433, 427, - 478, 672, 664, 302, 299, 448, 252, 0, 191, 0, - 206, 204, 213, 203, 198, 207, 211, 200, 208, 210, - 205, 199, 212, 209, 201, 202, 197, 154, 0, 348, - 371, 425, 422, 195, 192, 155, + 0, 0, 0, 403, 484, 485, 505, 506, 498, 0, + 497, 640, 0, 617, 0, 37, 38, 39, 693, 692, + 0, 691, 679, 678, 685, 684, 0, 683, 687, 686, + 335, 312, 313, 334, 318, 0, 317, 0, 337, 333, + 332, 341, 336, 310, 340, 339, 338, 311, 309, 476, + 468, 0, 467, 475, 272, 271, 0, 270, 287, 286, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 123, 351, 352, 350, + 361, 367, 373, 378, 376, 375, 372, 368, 371, 374, + 369, 377, 370, 0, 366, 362, 386, 391, 397, 401, + 400, 399, 396, 392, 395, 398, 393, 394, 0, 390, + 229, 230, 262, 263, 256, 258, 260, 259, 257, 251, + 264, 255, 253, 254, 261, 433, 435, 436, 456, 461, + 460, 455, 454, 453, 437, 442, 0, 441, 0, 430, + 458, 459, 428, 434, 452, 432, 457, 431, 495, 0, + 641, 618, 689, 0, 681, 0, 0, 315, 0, 326, + 327, 323, 329, 325, 324, 331, 328, 330, 322, 321, + 465, 0, 268, 0, 285, 282, 281, 192, 158, 190, + 156, 201, 0, 200, 0, 188, 182, 193, 194, 185, + 152, 189, 155, 191, 183, 184, 157, 196, 195, 163, + 179, 180, 164, 165, 166, 167, 174, 168, 177, 181, + 170, 175, 171, 176, 169, 173, 172, 178, 0, 162, + 187, 154, 186, 364, 0, 388, 0, 0, 439, 0, + 449, 450, 447, 448, 446, 451, 445, 496, 690, 682, + 319, 316, 466, 269, 0, 198, 0, 213, 211, 220, + 210, 205, 214, 218, 207, 215, 217, 212, 206, 219, + 221, 216, 208, 209, 204, 160, 0, 365, 389, 443, + 440, 202, 199, 161, }; const short yydgoto[] = { 1, - 891, 892, 1046, 1047, 23, 24, 25, 26, 27, 28, - 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, - 39, 40, 41, 42, 43, 274, 275, 276, 277, 311, - 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, - 322, 323, 70, 71, 72, 73, 74, 257, 258, 259, + 917, 918, 1072, 1073, 24, 25, 26, 27, 28, 29, + 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, + 40, 41, 42, 43, 44, 45, 277, 278, 279, 280, + 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, + 326, 327, 328, 329, 330, 73, 74, 75, 76, 77, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, - 270, 279, 60, 817, 280, 818, 819, 820, 821, 822, - 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, - 833, 834, 835, 836, 837, 838, 839, 840, 1128, 1422, - 1423, 1114, 1387, 1388, 1467, 1448, 1389, 115, 48, 607, - 116, 608, 609, 610, 611, 612, 613, 614, 615, 616, - 617, 618, 619, 620, 621, 57, 494, 495, 766, 1255, - 1256, 496, 497, 498, 499, 1086, 1261, 1087, 55, 462, - 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, - 473, 474, 475, 476, 477, 478, 479, 746, 1234, 1235, - 1374, 1361, 1236, 61, 525, 526, 527, 528, 529, 64, - 557, 558, 559, 560, 561, 869, 1300, 1301, 65, 565, - 566, 567, 568, 875, 1315, 1316, 118, 49, 642, 119, - 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, - 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, - 932, 1341, 1342, 1440, 1431, 1343, 56, 484, 485, 761, - 1250, 1251, 486, 487, 488, 50, 357, 358, 359, 360, - 123, 124, 125, 52, 368, 369, 671, 1208, 1209, 370, - 371, 372, 183, 184, 185, 186, 187, 188, 189, 190, - 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, - 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, - 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, - 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, - 231, 232, 233, 234, 235, 236, 237, 238, 239, 407, - 1025, 1026, 405, 1003, 1004, 54, 437, 438, 439, 440, - 441, 442, 443, 444, 736, 1225, 1226, 733, 1219, 1220, - 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, - 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, - 290, 291, 292, 293, 294, 295, 296, 297, 298, + 270, 271, 272, 273, 282, 62, 835, 283, 836, 837, + 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, + 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, + 858, 859, 1155, 1459, 1460, 1140, 1423, 1424, 1505, 1485, + 1425, 68, 582, 583, 584, 585, 118, 50, 624, 119, + 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, + 635, 636, 637, 638, 59, 502, 503, 783, 1287, 1288, + 504, 505, 506, 507, 1112, 1293, 1113, 57, 470, 471, + 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, + 482, 483, 484, 485, 486, 487, 763, 1266, 1267, 1410, + 1397, 1268, 63, 533, 534, 535, 536, 537, 66, 567, + 568, 569, 570, 571, 890, 1334, 1335, 67, 575, 576, + 577, 578, 896, 1349, 1350, 121, 51, 659, 122, 660, + 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, + 671, 672, 673, 674, 675, 676, 677, 678, 679, 958, + 1377, 1378, 1477, 1468, 1379, 58, 492, 493, 778, 1282, + 1283, 494, 495, 496, 52, 365, 366, 367, 368, 126, + 127, 128, 54, 376, 377, 688, 1240, 1241, 378, 379, + 380, 186, 187, 188, 189, 190, 191, 192, 193, 194, + 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, + 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, + 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, + 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, + 235, 236, 237, 238, 239, 240, 241, 242, 415, 1051, + 1052, 413, 1029, 1030, 56, 445, 446, 447, 448, 449, + 450, 451, 452, 753, 1257, 1258, 750, 1251, 1252, 97, + 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, + 108, 109, 110, 111, 112, 113, 114, 115, 116, 293, + 294, 295, 296, 297, 298, 299, 300, 301, }; const short yysindex[] = { 0, - 792, -38, -67, -64, 0, 0, 0, -59, 0, -47, - 0, 0, 0, 0, -29, -27, 0, 0, -24, -11, + 320, -40, -95, -77, 0, 0, 0, -74, 0, -69, + 0, 0, 0, 0, -66, -60, 0, 0, -55, -53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, -223, 643, -387, -291, 2, - -229, 9, 376, 19, 23, 29, 31, 374, -218, -282, - 35, 309, 440, 39, 40, 74, 78, 84, 100, -90, - 0, 0, 0, 0, 0, 109, 112, 113, 120, 122, - 123, 126, 128, 131, 133, 134, 136, 142, 149, 150, - 152, 154, 156, 164, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -247, 720, -386, + -314, -22, -222, -2, 425, 8, 10, 15, 25, -205, + -236, -287, 39, 234, 121, 59, 68, 70, 100, 117, + 140, 142, -119, 0, 0, 0, 0, 0, 149, 150, + 157, 159, 163, 167, 177, 180, 183, 184, 187, 199, + 204, 210, 236, 239, 242, 244, 111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 95, 0, 0, 96, 0, -231, - 0, 162, -119, 0, 0, -233, 0, 166, 170, 173, - 176, 177, 179, 181, 182, 183, 197, 200, 217, 224, - 226, 227, 231, 234, 235, 236, 237, 239, 240, 245, - 246, 248, 253, 255, 256, 267, 269, 277, 281, 0, - 282, 0, 283, 286, 287, 296, 297, 298, 299, 300, - 301, 303, 306, 307, 308, 311, 313, 314, 315, 319, - 320, 322, -122, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 188, 0, 0, + 189, 0, -231, 0, 245, -103, 0, 0, -216, 0, + 252, 257, 258, 259, 264, 270, 280, 281, 285, 286, + 287, 289, 292, 293, 294, 296, 297, 298, 300, 301, + 302, 303, 304, 308, 310, 311, 312, 318, 324, 328, + 334, 335, 0, 337, 0, 340, 342, 352, 353, 355, + 356, 364, 367, 368, 369, 370, 380, 381, 382, 383, + 384, 388, 391, 396, 400, -122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, -248, - 714, -244, -236, 188, 324, 327, 330, 331, 334, 335, - 337, 339, 340, 341, 342, 344, -48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 347, 346, 351, -120, 0, 0, 0, 0, 247, 0, - -242, 0, 352, 353, 356, 360, 364, 365, 367, 186, - 0, 0, 0, 0, 0, 0, 0, 0, 349, 368, - 369, 372, 375, 379, 380, 382, 383, 384, 387, 390, - -58, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -247, -226, 0, 28, 45, 46, 397, - 0, -15, 72, 75, 11, 13, 77, 77, 80, 81, - 15, 20, 85, 77, 24, 25, 30, 32, 36, 414, - 0, 796, 585, 0, 417, 418, -121, 0, 0, 0, - 82, 428, 0, 0, 427, 431, 0, -74, 0, 0, - 0, 0, 43, 77, 44, 77, 118, 98, 121, 59, - 61, 62, 137, 104, 86, 138, 141, 143, 87, 77, - 89, 91, 144, 125, 93, 145, 157, 77, 158, 139, - 167, 168, 101, 103, 468, 106, 497, 77, 77, 110, - 77, 159, 111, 116, 117, -406, -327, 129, 132, 77, - 77, 184, 77, 140, 148, 151, 153, 514, 0, 0, - 0, 530, 531, 0, 532, 533, -68, 0, 0, 0, - 0, 0, 0, 0, 540, 539, 541, 544, 545, 0, - 546, 547, 550, 551, 553, 554, 556, 557, 559, 560, - 564, 210, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -241, 715, -246, 51, 404, 405, 406, 407, + 412, 415, 416, 418, 419, 420, 421, 422, 424, -25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 567, 0, 568, -107, 0, 0, 0, 0, 572, 0, - 573, 574, 575, -109, 0, 0, 0, 0, 0, 0, - 238, 241, 243, 250, 251, 252, 261, 262, -123, 263, - 270, 190, 589, 0, 0, 271, 272, 596, 0, 499, - 597, 583, 603, 615, -108, 0, 0, 0, 0, 207, - 228, 232, 275, 244, 249, 77, 634, 0, 0, 288, - 254, 289, 291, 292, 302, 304, 312, 318, 316, 321, - 636, 0, 647, 648, 0, 651, -101, 0, 0, 0, - 0, 649, 654, 0, -99, 0, 0, 0, 657, 658, - 663, 0, 665, 669, 670, 673, 674, -338, 676, 677, - 679, 681, 682, 683, 686, 691, 692, 693, 694, 695, - 697, 0, 698, 678, 700, 701, 702, 703, 704, 705, - 706, 709, 712, 715, 721, 722, 220, 0, 0, 0, + 0, 0, 0, 428, 427, 430, -109, 0, 0, 0, + 0, 317, 0, -226, 0, 435, 436, 441, 442, 443, + 444, 448, 213, 0, 0, 0, 0, 0, 0, 0, + 0, 451, 452, 454, 455, 457, 458, 459, 460, 463, + 464, 465, 466, 467, 469, -56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 716, 723, 724, 725, 726, 727, 728, 729, 732, - 733, 0, 734, 735, 736, 737, 738, 739, 740, 741, - 743, 130, 0, 0, 0, 0, 0, 0, 0, 0, + -209, -227, -224, 0, 79, 123, 124, 479, 0, 96, + 164, 166, 102, 103, 169, 169, 174, 176, 112, 113, + 185, 169, 115, 131, 133, 134, 135, 524, 0, 170, + 646, 0, 528, 532, -114, 0, 0, 0, 191, 535, + 0, 0, 534, 536, 0, -104, 0, 0, 0, 0, + 154, 169, 155, 169, 221, 201, 224, 160, 161, 162, + 228, 211, 172, 232, 240, 241, 181, 169, 190, 192, + 247, 220, 193, 248, 249, 169, 250, 238, 256, 262, + 198, 202, 591, 203, 604, 169, 169, 217, 169, 261, + 219, 222, 223, -418, -280, 226, 229, 169, 169, 278, + 169, 230, 237, 251, 253, 609, 0, 0, 0, 613, + 616, 0, 628, 631, -44, 0, 0, 0, 0, 0, + 0, 0, 614, 633, 634, 636, 639, 0, 642, 644, + 647, 649, 654, 655, 656, 658, 659, 660, 664, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 350, 396, 747, 0, 748, 0, 400, 401, - 751, 755, 0, 756, 767, 769, 772, 774, 776, 777, - 778, 780, 781, 784, 785, 789, 791, 793, 795, 797, - 798, 799, 800, 801, 803, 808, 809, 813, 814, 815, - 819, 822, 824, 825, 826, 775, 829, 811, 831, 832, - 833, 836, 837, 838, 842, 844, 845, 846, 848, 849, - 850, 852, 853, 854, -228, 859, 860, 864, 866, 869, - 871, 0, 790, 77, 405, 873, 526, 527, 879, 0, - 0, 456, 534, 491, 494, 885, 500, 501, 502, 503, - 506, 548, 562, 555, 558, 509, 563, 901, 0, 569, - 902, 570, 906, 0, 0, 905, 571, 577, 581, 912, - 0, 914, 918, 923, 924, 925, 931, 933, 938, 941, - 942, 943, 945, 954, 955, 956, 957, 961, 962, 0, - 965, 968, 0, 969, 970, 971, 972, 974, 0, 975, - 978, 979, 980, 984, 985, 986, 988, 989, 993, 994, - 999, 1000, 0, 1003, 1006, 1008, 1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 666, 0, + 667, -111, 0, 0, 0, 0, 626, 0, 669, 670, + 672, -107, 0, 0, 0, 0, 0, 0, 325, 326, + 327, 329, 330, 331, 332, 333, 182, 336, 338, 291, + 675, 0, 0, 339, 343, 679, 0, 559, 691, 697, + 698, 701, -113, 0, 0, 0, 0, 313, 314, 319, + 361, 321, 322, 169, 719, 0, 0, 372, 375, 347, + 376, 378, 385, 392, 393, 394, 398, 401, 399, 402, + 721, 0, 731, 718, 0, 730, -99, 0, 0, 0, + 0, 733, 740, 0, -98, 0, 0, 0, 747, 750, + 752, -121, 0, 0, 0, 755, 757, 758, 0, 761, + 764, 766, 770, 771, -8, 773, 774, 775, 776, 778, + 779, 781, 782, 784, 785, 786, 787, 788, 0, 789, + 791, 792, 793, 794, 795, 796, 797, 798, 799, 801, + 804, 809, 810, 215, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 790, 811, + 818, 823, 824, 825, 827, 828, 830, 831, 0, 833, + 835, 836, 837, 838, 839, 840, 843, 844, 130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 456, + 497, 850, 0, 852, 0, 502, 503, 853, 856, 0, + 858, 859, 860, 861, 863, 865, 870, 873, 874, 875, + 878, 879, 880, 883, 884, 885, 887, 888, 889, 890, + 892, 894, 897, 898, 900, 903, 905, 906, 907, 908, + 909, 910, 722, 911, 769, 913, 915, 920, 921, 922, + 924, 925, 926, 931, 932, 933, 934, 935, 937, 938, + 939, -204, 940, 941, 944, 945, 946, 948, 0, 949, + 169, 558, 951, 603, 605, 958, 0, 0, 565, 611, + 572, 574, 967, 576, 577, 578, 579, 580, 625, 648, + 629, 637, 581, 638, 982, 0, 641, 985, 643, 990, + 0, 0, 991, 650, 653, 668, 995, 0, 998, 999, + 1000, 1005, 1008, 1009, 1011, 1016, 1017, 1018, 1019, 1021, + 1022, 1023, 1026, 1028, 1029, 1030, 0, 1031, 1032, 0, + 1033, 1034, 1035, 1036, 1037, 0, 1038, 1039, 1046, 1047, + 1049, 1054, 1056, 1057, 1061, 1062, 1063, 1066, 1069, 1071, + 0, 1072, 1073, 1074, -67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 621, 661, 662, 1018, 0, 1019, 1024, 1025, 1026, - 1027, 1028, 1029, 0, 1030, 1031, 1035, 1036, 1037, 1038, - 1043, 1045, 1051, 1054, 1056, 0, 0, 707, 1057, 711, - 1063, 0, 0, 719, 1064, 1070, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 77, 77, 77, 77, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 744, 745, 77, 746, - 749, 750, 752, 754, 757, 761, 77, 77, 184, 1071, - 0, 0, 759, -339, 684, 760, 762, 685, 720, 730, - 764, 1080, 765, 766, 768, 770, 779, 773, 782, 731, - 783, 1083, 0, 1084, 1093, 0, 0, 1094, 1095, 219, + 684, 728, 729, 1082, 0, 1083, 1085, 1086, 1087, 1088, + 1089, 1090, 0, 1091, 1093, 1094, 1095, 1096, 1097, 1099, + 1100, 1101, 1104, 1105, 1106, 1107, 0, 0, 759, 1111, + 763, 1108, 0, 0, 765, 1113, 1109, 0, 0, 777, + 802, 1121, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 169, 169, 169, 169, 169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 806, 807, 169, 812, 813, 814, 815, 803, + 816, 817, 169, 169, 278, 1122, 0, 0, 832, -285, + 744, 834, 841, 745, 746, 762, 842, 1155, 849, 867, + 868, 871, 846, 872, 876, 767, 877, 1160, 0, 1162, + 1163, 0, 0, 1164, 1165, 822, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, -21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 184, 184, 184, 0, 0, 0, 0, 0, - 0, 0, 0, -250, 1096, 1097, -246, 1100, 1105, 0, - 1117, 1119, 1124, 1128, 802, 1130, 1131, 1134, 1135, 1136, - 1137, 1138, 1139, 1140, 1141, 1142, 0, 1145, 794, 1146, - 0, -296, 1147, 1148, 758, 1165, 0, 0, 0, 0, + -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 278, 278, + 278, 0, 0, 0, 0, 0, 0, 0, 0, -260, + 1166, 1182, -257, 1186, 1187, 0, 1188, 1189, 1190, 1191, + 886, 1201, 1203, 1204, 1211, 1221, 1224, 1225, 1226, 1229, + 1236, 1237, 0, 1239, 891, 1240, 0, -320, 1242, 1243, + 845, 1260, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 771, - 806, 787, 804, 1149, 805, 812, 816, 823, 830, 810, - 834, 820, 835, 839, 840, 841, 851, 1150, 862, 843, - 867, 1153, 0, 1158, 1159, 1161, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 854, 895, 855, 857, 1248, + 862, 864, 866, 869, 881, 901, 882, 902, 893, 896, + 899, 904, 912, 914, 1252, 916, 917, 918, 1257, 0, + 1259, 1261, 1262, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 1163, 79, 1164, 0, 1169, - 610, 0, 0, 0, 0, 0, 0, 1181, 1185, 1186, - 1188, 1189, 1190, 1192, 1194, 1204, 1206, 1217, 1222, 1224, - 0, 1227, 1228, 1229, 1232, 1239, 1240, 1243, 1250, 1257, - 1260, 934, 1262, 1263, 1264, 1265, 1266, 1267, 1268, 1275, - 1276, 0, 0, 0, 0, 0, 0, 4, 0, 0, - 775, 0, 811, 0, 0, 0, 0, 0, 10, 0, - 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, - 0, 0, 0, 21, 0, 172, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, - 0, 0, 0, 0, 26, 0, 0, 0, 950, 581, - 1279, 1281, 1282, 1283, 1284, 958, 1286, 1287, 1288, 1289, - 1290, 1291, 1292, 1293, 1294, 1295, 1296, 1297, 1298, 847, - 1299, 1300, 1301, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, + 0, 0, 0, 0, 1264, 612, 1265, 0, 1266, 677, + 0, 1267, 1269, 0, 0, 0, 0, 0, 0, 1270, + 1271, 1272, 1273, 1274, 1277, 1278, 1279, 1280, 1281, 1282, + 1283, 1284, 0, 1285, 1286, 1288, 1289, 1291, 1292, 1294, + 1295, 1296, 1297, 970, 1299, 1300, 1301, 1302, 1303, 1304, + 1305, 1307, 1309, 0, 0, 0, 0, 0, 0, 1, + 0, 0, 722, 0, 769, 0, 0, 0, 0, 0, + 23, 0, 0, 0, 0, 0, 31, 0, 0, 0, + 0, 0, 0, 0, 0, 33, 0, -232, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, + 0, 35, 0, 0, 0, 0, 36, 0, 0, 0, + 984, 668, 1311, 1314, 1315, 1316, 1317, 992, 1318, 1319, + 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, + 1331, 1332, 805, 1333, 1334, 1335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 51, 0, -253, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 219, 0, 0, 0, -250, 0, -246, - 172, 0, 802, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 794, 0, -296, 0, 0, - 0, 0, 0, 0, 0, 0, 54, 0, 594, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 45, 0, -233, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 822, + 0, 0, 0, -260, 0, -257, -232, 0, 886, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 891, 0, -320, 0, 0, 0, 0, 0, 0, + 0, 0, 55, 0, 365, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 56, 0, 0, 0, 0, 0, 79, 0, 610, - -253, 0, 934, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 594, 0, 958, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 847, 0, - 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 61, 0, + 0, 0, 0, 0, 612, 0, 677, -233, 0, 970, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 365, 0, 992, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 805, 0, 0, 0, + 0, 0, 0, 0, }; const short yyrindex[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 1101, 1238, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 1241, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1275, + 1276, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1287, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -935,8 +954,8 @@ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 1303, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -950,8 +969,8 @@ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1304, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1337, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -966,9 +985,9 @@ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 1303, 1303, 1303, 1303, 1303, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1336, 1336, 1336, 1336, 1336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -982,12 +1001,13 @@ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 1304, 1304, 1304, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 680, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1337, 1337, + 1337, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 58, 1306, 0, 0, 0, 0, + 379, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 73, 1338, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -997,15 +1017,15 @@ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -235, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -188, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 641, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 624, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1014,347 +1034,360 @@ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 680, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 379, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -235, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 641, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, -188, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 624, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, }; const short yygindex[] = { 0, - -337, -782, -420, -923, 0, 0, 0, 0, 0, 0, + -345, -787, -428, -863, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 1092, 0, 0, 0, - 1058, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 1302, 0, 0, 0, 0, 1110, 0, + 0, 0, 0, 0, 0, 0, 0, 1123, 0, 0, + 0, 1092, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1339, 0, 0, 0, + 0, 1141, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 567, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 561, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -102, 0, 0, -84, -81, 0, + 0, 0, 0, 829, 0, 0, 0, 0, 0, 0, + 783, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, + 919, 0, 0, 0, 0, 0, 114, 0, 0, 943, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -98, 0, 0, -82, -78, 0, 0, 0, 0, 0, - 0, 786, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 16, 17, + 0, 0, 0, 0, 923, 0, 0, 0, 0, 0, + 851, 0, 0, 0, 0, 0, -49, 0, 0, 847, + 0, 0, 0, 0, -50, 0, 0, 0, 0, 760, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -5, 880, 0, 0, 0, 0, 0, 115, 0, 0, - 915, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, - 18, 0, 0, 0, 0, 856, 0, 0, 0, 0, - 0, 827, 0, 0, 0, 0, 0, -52, 0, 0, - 817, 0, 0, 0, 0, -45, 0, 0, 0, 0, - 753, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -50, -44, 0, 0, 0, 0, 0, 0, - 0, 12, 907, 0, 0, 0, 0, 1032, 0, 0, - 0, 1269, 0, 0, 0, 0, 0, 0, 42, 1022, - 0, 0, 0, 1203, 0, 0, 0, 0, 0, 0, + 0, -47, -48, 0, 0, 0, 0, 0, 0, 0, + 12, 936, 0, 0, 0, 0, 1060, 0, 0, 0, + 1306, 0, 0, 0, 0, 0, 0, 37, 1050, 0, + 0, 0, 1244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 185, 0, 0, 189, 0, 0, 960, 0, 0, - 0, 0, 0, 0, 0, 0, 41, 0, 0, 47, - 0, 1305, 0, 0, 0, 0, 0, 0, 0, 0, + 186, 0, 0, 194, 0, 0, 988, 0, 0, 0, + 0, 0, 0, 0, 0, 38, 0, 0, 41, 0, + 1341, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1104, 0, 0, 0, 0, 0, 0, 0, + 1136, 0, 0, 0, 0, 0, 0, 0, }; -#define YYTABLESIZE 1405 -const short yytable[] = { 579, - 580, 726, 428, 665, 518, 362, 586, 430, 553, 431, - 1434, 480, 1435, 521, 1217, 770, 845, 763, 1223, 489, - 44, 114, 364, 871, 354, 876, 121, 1436, 426, 562, - 426, 1437, 66, 522, 330, 1253, 675, 271, 677, 1043, - 1044, 1045, 1211, 717, 718, 426, 1213, 1354, 578, 426, - 672, 432, 691, 1358, 433, 46, 739, 1210, 47, 1360, - 699, 1212, 1353, 51, 1363, 1376, 551, 67, 1357, 1378, - 709, 710, 490, 712, 1359, 53, 513, 1428, 68, 1362, - 1375, 1430, 723, 724, 1377, 727, 45, 886, 887, 888, - 889, 890, 1427, 58, 1433, 59, 1429, 1450, 62, 1469, - 1438, 267, 491, 1163, 1164, 1165, 1166, 1167, 492, 1432, - 434, 63, 1449, 355, 1468, 122, 267, 117, 426, 1214, - 1215, 1216, 719, 720, 120, 1132, 278, 435, 554, 1183, - 1184, 126, 326, 127, 354, 271, 121, 523, 327, 128, - 129, 240, 365, 130, 328, 241, 489, 521, 480, 563, - 131, 242, 69, 243, 553, 272, 562, 281, 725, 132, - 329, 324, 325, 133, 134, 66, 481, 522, 524, 332, - 135, 493, 333, 334, 136, 137, 138, 366, 139, 356, - 335, 364, 336, 337, 140, 273, 338, 430, 339, 431, - 1254, 340, 555, 341, 342, 482, 343, 299, 853, 490, - 67, 1218, 344, 141, 142, 1224, 367, 244, 143, 345, - 346, 68, 347, 564, 348, 144, 349, 352, 353, 145, - 146, 147, 361, 355, 148, 122, 373, 149, 150, 491, - 374, 432, 300, 375, 433, 492, 376, 377, 151, 378, - 1439, 379, 380, 381, 152, 153, 500, 154, 155, 156, - 157, 436, 556, 272, 942, 483, 794, 382, 426, 795, - 383, 158, 245, 246, 247, 248, 249, 250, 251, 252, - 159, 523, 160, 161, 554, 162, 563, 384, 163, 164, - 796, 301, 165, 273, 385, 69, 386, 387, 350, 356, - 434, 388, 797, 166, 389, 390, 391, 392, 493, 393, - 394, 365, 524, 481, 798, 395, 396, 435, 397, 799, - 537, 253, 167, 398, 168, 399, 400, 302, 169, 303, - 304, 800, 170, 171, 172, 173, 174, 401, 801, 402, - 175, 176, 482, 802, 758, 803, 366, 403, 555, 177, - 564, 404, 406, 408, 920, 254, 409, 410, 804, 780, - 781, 782, 783, 784, 785, 786, 411, 412, 413, 414, - 415, 416, 305, 417, 306, 367, 418, 419, 420, 520, - 178, 421, 179, 422, 423, 424, 805, 307, 180, 425, - 426, 806, 427, 181, 501, 622, 623, 502, 182, 624, - 503, 504, 483, 625, 505, 506, 1055, 507, 556, 508, - 509, 510, 511, 807, 512, 515, 516, 539, 626, 627, - 628, 517, 530, 531, 629, 808, 532, 809, 810, 75, - 533, 308, 811, 255, 534, 535, 1289, 536, 540, 541, - 76, 436, 542, 630, 573, 543, 569, 631, 632, 544, - 545, 282, 546, 547, 548, 1364, 1365, 549, 309, 310, - 550, 77, 78, 570, 571, 572, 256, 79, 574, 80, - 576, 575, 577, 578, 583, 445, 581, 582, 633, 584, - 634, 585, 592, 587, 588, 593, 1366, 663, 664, 589, - 283, 590, 812, 446, 635, 591, 668, 669, 813, 447, - 667, 670, 674, 676, 1367, 284, 594, 595, 1180, 814, - 815, 1368, 1290, 596, 678, 636, 679, 680, 681, 816, - 682, 683, 685, 448, 449, 81, 82, 285, 450, 286, - 1369, 287, 288, 684, 687, 83, 84, 688, 706, 689, - 694, 697, 451, 695, 1291, 686, 690, 637, 692, 452, - 693, 289, 696, 698, 700, 85, 86, 701, 1370, 1292, - 704, 638, 705, 702, 703, 707, 1371, 708, 453, 711, - 714, 639, 87, 88, 282, 715, 716, 713, 1293, 1294, - 725, 1170, 732, 89, 1295, 1296, 1297, 1298, 721, 1178, - 1179, 722, 90, 597, 598, 599, 454, 1299, 600, 728, - 734, 735, 737, 738, 455, 601, 1372, 729, 741, 742, - 730, 743, 731, 283, 744, 745, 747, 748, 602, 603, - 749, 750, 456, 751, 752, 1373, 753, 754, 284, 755, - 756, 457, 458, 640, 757, 604, 605, 760, 762, 244, - 765, 127, 1207, 767, 768, 769, 641, 128, 129, 789, - 285, 130, 286, 842, 287, 288, 772, 790, 131, 773, - 606, 774, 459, 460, 793, 841, 847, 132, 775, 776, - 777, 133, 134, 843, 289, 91, 92, 93, 135, 778, - 779, 787, 136, 137, 138, 844, 139, 848, 788, 791, - 792, 849, 140, 850, 245, 246, 247, 248, 249, 250, - 251, 252, 854, 851, 866, 299, 855, 857, 852, 858, - 859, 141, 142, 856, 863, 867, 143, 873, 868, 461, - 860, 870, 861, 144, 874, 878, 879, 145, 146, 147, - 862, 880, 148, 881, 864, 149, 150, 882, 883, 865, - 300, 884, 885, 253, 893, 894, 151, 895, 907, 896, - 897, 898, 152, 153, 899, 154, 155, 156, 157, 900, - 901, 902, 903, 904, 794, 905, 906, 795, 944, 158, - 908, 909, 910, 911, 912, 913, 914, 254, 159, 915, - 160, 161, 916, 162, 922, 917, 163, 164, 796, 301, - 165, 918, 919, 923, 924, 925, 926, 927, 928, 929, - 797, 166, 930, 931, 933, 934, 935, 936, 937, 938, - 939, 940, 798, 941, 945, 946, 947, 799, 948, 949, - 167, 950, 168, 951, 952, 302, 169, 303, 304, 800, - 170, 171, 172, 173, 174, 953, 801, 954, 175, 176, - 955, 802, 956, 803, 957, 958, 959, 177, 960, 961, - 622, 623, 962, 963, 624, 255, 804, 964, 625, 965, - 1054, 966, 1451, 967, 1056, 968, 969, 970, 971, 972, - 305, 973, 306, 626, 627, 628, 974, 975, 178, 629, - 179, 976, 977, 978, 805, 307, 180, 979, 256, 806, - 980, 181, 981, 982, 983, 1452, 182, 1005, 630, 1027, - 1028, 1029, 631, 632, 1030, 1031, 1032, 1453, 75, 196, - 1033, 807, 1034, 1035, 1036, 1061, 1037, 1038, 1039, 76, - 1040, 1041, 1042, 808, 1454, 809, 810, 1048, 1049, 308, - 811, 1455, 1050, 633, 1051, 634, 1456, 1052, 1457, 1053, - 77, 78, 196, 1057, 1058, 1059, 79, 1060, 80, 635, - 1063, 1458, 1062, 1064, 196, 1065, 309, 310, 1072, 1066, - 1067, 1068, 1069, 303, 303, 1070, 1071, 1304, 1075, 1077, - 636, 196, 1079, 1073, 1081, 1082, 1074, 1085, 196, 445, - 1088, 1076, 1089, 196, 1459, 196, 1090, 1078, 1080, 1083, - 812, 1091, 1092, 1093, 303, 1084, 813, 446, 196, 1094, - 1460, 1095, 637, 447, 81, 82, 1096, 814, 815, 1097, - 1098, 1099, 303, 1100, 83, 84, 638, 816, 1461, 303, - 1462, 1463, 1101, 1102, 1103, 1104, 639, 448, 449, 1105, - 1106, 196, 450, 1107, 85, 86, 1108, 1109, 303, 1134, - 1110, 1111, 1112, 1305, 1113, 1115, 451, 196, 1116, 1117, - 1118, 87, 88, 452, 1119, 1120, 1121, 2, 1122, 1123, - 3, 593, 89, 1124, 1125, 196, 303, 196, 196, 1126, - 1127, 90, 453, 1129, 303, 1306, 1130, 4, 1131, 1135, - 1136, 5, 594, 595, 6, 1464, 1137, 1138, 640, 596, - 1307, 7, 1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146, - 454, 641, 1465, 1147, 1148, 1149, 1150, 8, 455, 1308, - 1309, 1151, 1466, 1152, 303, 1310, 1311, 1312, 1313, 1153, - 9, 10, 1154, 11, 1155, 1156, 456, 1157, 1314, 1158, - 12, 1159, 196, 303, 1161, 457, 458, 1160, 1162, 1181, - 1168, 1169, 1171, 1185, 1188, 1172, 1173, 13, 1174, 196, - 1192, 1202, 1203, 1176, 91, 92, 93, 1177, 14, 196, - 15, 1204, 1205, 1206, 1221, 1222, 459, 460, 1227, 597, - 598, 599, 1175, 1228, 600, 1197, 16, 1182, 1186, 1189, - 1187, 601, 1191, 1193, 1194, 1229, 1195, 1230, 1196, 1190, - 1200, 1198, 1231, 17, 602, 603, 1232, 1233, 1237, 1238, - 1199, 1201, 1239, 1240, 1241, 1242, 1243, 1244, 1245, 1246, - 1247, 604, 605, 1248, 1252, 1257, 1258, 1249, 1260, 1266, - 1280, 1284, 1259, 461, 1263, 18, 1285, 1286, 1272, 1287, - 1262, 1288, 1302, 216, 19, 20, 606, 1303, 1274, 21, - 22, 984, 985, 986, 987, 988, 1264, 989, 990, 1317, - 991, 992, 993, 1318, 1319, 994, 1320, 1321, 1322, 1278, - 1323, 1282, 1324, 1265, 1267, 995, 996, 997, 998, 999, - 1000, 1268, 1325, 1001, 1326, 1269, 1002, 1006, 1007, 1008, - 1009, 1010, 1270, 1011, 1012, 1327, 1013, 1014, 1015, 1271, - 1328, 1016, 1329, 1273, 1275, 1330, 1331, 1332, 1276, 1277, - 1333, 1017, 1018, 1019, 1020, 1021, 1022, 1334, 1335, 1023, - 1279, 1336, 1024, 1403, 1404, 1405, 1406, 1407, 1337, 1408, - 1409, 1281, 1410, 1411, 1412, 1338, 1283, 1413, 1339, 1340, - 1344, 1345, 1346, 1347, 1348, 1349, 1350, 1414, 1415, 1416, - 1417, 1418, 1419, 1351, 1352, 1420, 1379, 1381, 1421, 1382, - 1383, 1384, 1385, 1386, 1390, 1391, 1392, 1393, 1394, 1395, - 1396, 1397, 1398, 1399, 1400, 1401, 1402, 1424, 1425, 1426, - 386, 25, 33, 119, 263, 519, 514, 1475, 552, 1474, - 1476, 331, 1447, 771, 1380, 1470, 759, 1133, 1444, 1445, - 846, 877, 1473, 872, 1471, 429, 1472, 1446, 666, 673, - 764, 363, 921, 538, 943, 1441, 740, 1356, 351, 1355, - 1443, 0, 0, 0, 1442, +#define YYTABLESIZE 1456 +const short yytable[] = { 596, + 597, 743, 436, 902, 1249, 338, 603, 1255, 69, 488, + 682, 864, 1285, 780, 438, 526, 439, 787, 46, 274, + 689, 370, 1243, 117, 362, 892, 897, 48, 572, 529, + 1471, 579, 1472, 124, 734, 735, 692, 1242, 694, 372, + 1245, 1400, 1401, 70, 1390, 49, 563, 1473, 53, 530, + 247, 1474, 708, 55, 71, 1244, 60, 1159, 440, 1389, + 716, 441, 61, 1069, 1070, 1071, 1394, 64, 561, 65, + 726, 727, 1402, 729, 1396, 444, 1399, 444, 1412, 1414, + 756, 1393, 740, 741, 47, 744, 1465, 1467, 1470, 1395, + 1403, 1398, 444, 1411, 1413, 120, 444, 1404, 1487, 521, + 123, 1464, 1466, 1469, 1507, 248, 249, 250, 251, 252, + 253, 254, 255, 1486, 363, 580, 284, 1405, 442, 1506, + 129, 1475, 281, 125, 1195, 1196, 1197, 1198, 1199, 72, + 243, 284, 244, 130, 579, 443, 69, 245, 275, 131, + 132, 362, 529, 133, 488, 1406, 274, 246, 497, 573, + 134, 372, 124, 1407, 531, 256, 563, 572, 334, 135, + 373, 284, 530, 136, 137, 489, 444, 564, 276, 1286, + 138, 70, 736, 737, 139, 140, 141, 335, 142, 581, + 364, 331, 71, 742, 143, 532, 1215, 1216, 811, 257, + 332, 812, 333, 1408, 1250, 374, 490, 1256, 872, 302, + 336, 498, 337, 144, 145, 1246, 1247, 1248, 146, 340, + 341, 438, 813, 439, 1409, 574, 147, 342, 580, 343, + 148, 149, 150, 344, 814, 151, 375, 345, 152, 153, + 247, 363, 499, 565, 303, 358, 815, 346, 500, 154, + 347, 816, 125, 348, 349, 155, 156, 350, 157, 158, + 159, 160, 775, 817, 968, 440, 491, 72, 441, 351, + 818, 444, 161, 1476, 352, 275, 819, 531, 820, 258, + 353, 162, 373, 163, 164, 304, 165, 564, 573, 166, + 167, 821, 581, 168, 305, 248, 249, 250, 251, 252, + 253, 254, 255, 566, 169, 276, 354, 364, 532, 355, + 489, 501, 356, 259, 357, 369, 497, 374, 444, 822, + 360, 361, 381, 170, 823, 442, 171, 382, 383, 384, + 306, 172, 307, 308, 385, 173, 174, 175, 176, 177, + 386, 490, 443, 178, 179, 256, 824, 545, 375, 946, + 387, 388, 180, 565, 574, 389, 390, 391, 825, 392, + 826, 827, 393, 394, 395, 828, 396, 397, 398, 498, + 399, 400, 401, 402, 403, 309, 78, 310, 404, 257, + 405, 406, 407, 181, 829, 182, 302, 79, 408, 595, + 311, 312, 183, 453, 409, 639, 640, 184, 410, 641, + 499, 491, 185, 642, 411, 412, 500, 414, 80, 81, + 416, 454, 417, 566, 82, 1081, 83, 455, 643, 644, + 645, 303, 418, 419, 646, 420, 421, 830, 912, 913, + 914, 915, 916, 831, 422, 610, 313, 423, 424, 425, + 426, 456, 457, 647, 832, 833, 458, 648, 649, 528, + 427, 428, 429, 430, 431, 834, 611, 612, 432, 258, + 459, 433, 304, 613, 314, 315, 434, 460, 444, 501, + 435, 305, 508, 84, 85, 509, 510, 511, 285, 650, + 610, 651, 512, 86, 87, 513, 514, 461, 515, 516, + 517, 518, 519, 259, 520, 652, 523, 524, 586, 285, + 525, 611, 612, 88, 89, 538, 539, 306, 613, 307, + 308, 540, 541, 542, 543, 462, 653, 286, 544, 547, + 90, 91, 548, 463, 549, 550, 1212, 551, 552, 553, + 554, 92, 287, 555, 556, 557, 558, 559, 286, 560, + 93, 464, 587, 588, 614, 615, 616, 589, 654, 617, + 465, 466, 309, 287, 310, 288, 618, 289, 590, 290, + 291, 591, 655, 592, 593, 594, 595, 311, 312, 619, + 620, 598, 656, 599, 600, 601, 288, 604, 289, 292, + 290, 291, 602, 467, 468, 2, 621, 622, 3, 614, + 615, 616, 609, 605, 617, 606, 607, 608, 680, 1202, + 292, 618, 681, 685, 686, 4, 687, 1210, 1211, 5, + 684, 623, 6, 313, 619, 620, 691, 693, 695, 7, + 696, 697, 698, 699, 700, 701, 94, 95, 96, 704, + 702, 621, 622, 1488, 703, 8, 657, 705, 706, 712, + 469, 314, 315, 707, 711, 714, 715, 717, 9, 10, + 658, 11, 709, 719, 710, 713, 623, 718, 12, 720, + 721, 723, 320, 320, 722, 724, 1489, 797, 798, 799, + 800, 801, 802, 803, 725, 742, 13, 749, 1490, 728, + 730, 731, 758, 751, 732, 733, 752, 14, 738, 15, + 130, 739, 745, 320, 782, 1491, 131, 132, 754, 746, + 133, 755, 1492, 759, 760, 16, 761, 134, 1493, 762, + 1494, 320, 764, 747, 765, 748, 135, 766, 320, 767, + 136, 137, 17, 1495, 768, 769, 770, 138, 771, 772, + 773, 139, 140, 141, 774, 142, 777, 779, 320, 784, + 785, 143, 786, 807, 789, 790, 791, 810, 792, 793, + 794, 795, 796, 806, 18, 804, 1496, 805, 808, 860, + 144, 145, 809, 19, 20, 146, 320, 861, 862, 21, + 22, 863, 1497, 147, 320, 866, 867, 148, 149, 150, + 869, 868, 151, 870, 871, 152, 153, 873, 889, 887, + 1498, 874, 1499, 1500, 875, 877, 154, 878, 884, 888, + 891, 894, 155, 156, 879, 157, 158, 159, 160, 876, + 895, 880, 881, 882, 320, 899, 1501, 883, 885, 161, + 900, 886, 901, 904, 811, 905, 906, 812, 162, 907, + 163, 164, 908, 165, 909, 320, 166, 167, 910, 911, + 168, 919, 920, 921, 922, 23, 923, 924, 813, 925, + 926, 169, 927, 928, 929, 930, 931, 932, 948, 1502, + 814, 933, 934, 935, 936, 937, 938, 939, 940, 941, + 170, 942, 815, 171, 943, 970, 1503, 816, 172, 944, + 945, 949, 173, 174, 175, 176, 177, 1504, 950, 817, + 178, 179, 203, 951, 952, 953, 818, 954, 955, 180, + 956, 957, 819, 959, 820, 960, 961, 962, 963, 964, + 965, 639, 640, 966, 967, 641, 971, 821, 972, 642, + 973, 974, 975, 976, 977, 203, 978, 979, 980, 981, + 181, 982, 182, 983, 643, 644, 645, 203, 984, 183, + 646, 985, 986, 987, 184, 822, 988, 989, 990, 185, + 823, 991, 992, 993, 203, 994, 995, 996, 997, 647, + 998, 203, 999, 648, 649, 1000, 1001, 203, 1002, 203, + 1322, 1003, 824, 1004, 1005, 1006, 1007, 1008, 1009, 1031, + 453, 1053, 203, 1054, 825, 78, 826, 827, 1055, 1056, + 1057, 828, 1058, 1059, 1060, 650, 79, 651, 454, 1061, + 1062, 1063, 1064, 1065, 455, 1066, 1067, 1068, 1074, 1075, + 829, 652, 1076, 1077, 1078, 203, 1079, 80, 81, 1080, + 1082, 1083, 1084, 82, 1085, 83, 1086, 1087, 456, 457, + 1088, 203, 653, 458, 1089, 1338, 1090, 1091, 1092, 1093, + 1094, 1095, 1096, 1101, 1097, 1098, 1323, 459, 1099, 203, + 1103, 203, 203, 830, 460, 1105, 1100, 1102, 1107, 831, + 1104, 1108, 1106, 1114, 654, 1111, 1115, 1116, 1117, 1109, + 832, 833, 1110, 1118, 461, 203, 1119, 1120, 655, 1121, + 1324, 834, 84, 85, 1122, 1123, 1124, 1125, 656, 1126, + 1127, 1128, 86, 87, 1129, 1325, 1130, 1131, 1132, 1133, + 1134, 1135, 462, 1161, 1136, 1137, 1138, 1139, 1141, 1142, + 463, 1339, 88, 89, 1326, 1327, 1143, 1144, 203, 1145, + 1328, 1329, 1330, 1331, 1146, 1332, 1147, 1148, 464, 90, + 91, 1149, 1150, 1151, 1333, 203, 1152, 465, 466, 1153, + 92, 1154, 1156, 1157, 1158, 1340, 203, 1162, 1163, 93, + 1164, 1165, 657, 1166, 1167, 1168, 1169, 1170, 1171, 1172, + 1341, 1173, 1174, 1175, 1176, 1177, 658, 1178, 1179, 1180, + 467, 468, 1181, 1182, 1183, 1184, 1188, 1191, 1185, 1342, + 1343, 1186, 1187, 1190, 1189, 1344, 1345, 1346, 1347, 1194, + 1213, 1010, 1011, 1012, 1013, 1014, 1192, 1015, 1016, 1348, + 1017, 1018, 1019, 1200, 1201, 1020, 1217, 1220, 1221, 1203, + 1204, 1205, 1206, 1208, 1209, 1021, 1022, 1023, 1024, 1025, + 1026, 1193, 1207, 1027, 1222, 1224, 1028, 469, 1234, 1232, + 1235, 1236, 1237, 1238, 1253, 94, 95, 96, 1032, 1033, + 1034, 1035, 1036, 1229, 1037, 1038, 1239, 1039, 1040, 1041, + 1254, 1214, 1042, 1218, 1259, 1260, 1261, 1262, 1263, 1264, + 1219, 1223, 1043, 1044, 1045, 1046, 1047, 1048, 1225, 1269, + 1049, 1270, 1271, 1050, 1440, 1441, 1442, 1443, 1444, 1272, + 1445, 1446, 1265, 1447, 1448, 1449, 1226, 1227, 1450, 1273, + 1228, 1230, 1274, 1275, 1276, 1231, 1233, 1277, 1451, 1452, + 1453, 1454, 1455, 1456, 1278, 1279, 1457, 1280, 1284, 1458, + 1289, 1290, 1291, 1292, 1295, 1281, 1294, 1296, 1298, 1297, + 1304, 1306, 1313, 1310, 1299, 1317, 1300, 1318, 1301, 1319, + 1320, 1302, 1321, 1336, 1337, 1351, 1315, 1352, 1353, 1354, + 1355, 1356, 1357, 1303, 1305, 1358, 1359, 1360, 1361, 1362, + 1363, 1364, 1365, 1366, 1367, 1307, 1368, 1369, 1308, 1370, + 1371, 1309, 1372, 1373, 1374, 1375, 1376, 1380, 1381, 1382, + 1383, 1384, 1385, 1386, 1311, 1387, 1312, 1388, 1314, 1417, + 1316, 1415, 1418, 1419, 1420, 1421, 1426, 1427, 1422, 1428, + 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1437, 1438, + 1439, 1461, 1462, 1463, 26, 34, 280, 233, 404, 527, + 522, 1160, 1513, 1512, 1514, 1416, 947, 562, 1484, 124, + 903, 339, 776, 1481, 1482, 1508, 1509, 893, 969, 1510, + 788, 898, 1511, 1483, 683, 690, 1478, 781, 546, 437, + 1392, 371, 757, 1480, 1479, 0, 1391, 359, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 865, }; -const short yycheck[] = { 337, - 338, 422, 125, 125, 125, 125, 344, 256, 256, 258, - 264, 256, 266, 256, 265, 125, 125, 125, 265, 256, - 59, 409, 256, 125, 256, 125, 256, 281, 264, 256, - 266, 285, 256, 276, 125, 332, 374, 256, 376, 268, - 269, 270, 44, 450, 451, 281, 44, 44, 387, 285, - 125, 300, 390, 44, 303, 123, 125, 59, 123, 44, - 398, 59, 59, 123, 44, 44, 125, 291, 59, 44, - 408, 409, 309, 411, 59, 123, 125, 44, 302, 59, - 59, 44, 420, 421, 59, 423, 125, 426, 427, 428, - 429, 430, 59, 123, 44, 123, 59, 44, 123, 44, - 354, 44, 339, 886, 887, 888, 889, 890, 345, 59, - 359, 123, 59, 345, 59, 345, 59, 409, 354, 1043, - 1044, 1045, 450, 451, 123, 125, 409, 376, 376, 469, - 470, 123, 59, 256, 256, 256, 256, 380, 61, 262, - 263, 123, 376, 266, 61, 123, 256, 256, 256, 376, - 273, 123, 376, 123, 256, 374, 256, 123, 387, 282, - 61, 123, 123, 286, 287, 256, 411, 276, 411, 61, - 293, 408, 61, 61, 297, 298, 299, 411, 301, 411, - 61, 256, 61, 61, 307, 404, 61, 256, 61, 258, - 487, 61, 440, 61, 61, 440, 61, 256, 536, 309, - 291, 452, 61, 326, 327, 452, 440, 256, 331, 61, - 61, 302, 61, 440, 61, 338, 61, 123, 123, 342, - 343, 344, 61, 345, 347, 345, 61, 350, 351, 339, - 61, 300, 291, 61, 303, 345, 61, 61, 361, 61, - 494, 61, 61, 61, 367, 368, 59, 370, 371, 372, - 373, 500, 500, 374, 125, 500, 256, 61, 494, 259, - 61, 384, 311, 312, 313, 314, 315, 316, 317, 318, - 393, 380, 395, 396, 376, 398, 376, 61, 401, 402, - 280, 340, 405, 404, 61, 376, 61, 61, 125, 411, - 359, 61, 292, 416, 61, 61, 61, 61, 408, 61, - 61, 376, 411, 411, 304, 61, 61, 376, 61, 309, - 125, 360, 435, 61, 437, 61, 61, 376, 441, 378, - 379, 321, 445, 446, 447, 448, 449, 61, 328, 61, - 453, 454, 440, 333, 125, 335, 411, 61, 440, 462, - 440, 61, 61, 61, 125, 394, 61, 61, 348, 473, - 474, 475, 476, 477, 478, 479, 61, 61, 61, 61, - 61, 61, 421, 61, 423, 440, 61, 61, 61, 123, - 493, 61, 495, 61, 61, 61, 376, 436, 501, 61, - 61, 381, 61, 506, 61, 256, 257, 61, 511, 260, - 61, 61, 500, 264, 61, 61, 734, 61, 500, 61, - 61, 61, 61, 403, 61, 59, 61, 59, 279, 280, - 281, 61, 61, 61, 285, 415, 61, 417, 418, 256, - 61, 480, 422, 472, 61, 61, 348, 61, 61, 61, - 267, 500, 61, 304, 450, 61, 409, 308, 309, 61, - 61, 256, 61, 61, 61, 274, 275, 61, 507, 508, - 61, 288, 289, 409, 409, 59, 505, 294, 387, 296, - 450, 387, 450, 387, 450, 256, 387, 387, 339, 450, - 341, 387, 59, 450, 450, 256, 305, 61, 61, 450, - 295, 450, 482, 274, 355, 450, 59, 61, 488, 280, - 409, 61, 450, 450, 323, 310, 277, 278, 919, 499, - 500, 330, 424, 284, 387, 376, 409, 387, 450, 509, - 450, 450, 409, 304, 305, 352, 353, 332, 309, 334, - 349, 336, 337, 387, 387, 362, 363, 387, 61, 387, - 387, 387, 323, 409, 456, 450, 450, 408, 450, 330, - 450, 356, 450, 387, 387, 382, 383, 409, 377, 471, - 450, 422, 450, 387, 387, 450, 385, 61, 349, 450, - 450, 432, 399, 400, 256, 450, 450, 409, 490, 491, - 387, 909, 59, 410, 496, 497, 498, 499, 450, 917, - 918, 450, 419, 364, 365, 366, 377, 509, 369, 450, - 61, 61, 61, 61, 385, 376, 425, 450, 59, 61, - 450, 61, 450, 295, 61, 61, 61, 61, 389, 390, - 61, 61, 403, 61, 61, 444, 61, 61, 310, 61, - 61, 412, 413, 494, 61, 406, 407, 61, 61, 256, - 59, 256, 414, 61, 61, 61, 507, 262, 263, 450, - 332, 266, 334, 61, 336, 337, 409, 59, 273, 409, - 431, 409, 443, 444, 59, 59, 450, 282, 409, 409, - 409, 286, 287, 61, 356, 502, 503, 504, 293, 409, - 409, 409, 297, 298, 299, 61, 301, 450, 409, 409, - 409, 450, 307, 409, 311, 312, 313, 314, 315, 316, - 317, 318, 59, 450, 59, 256, 409, 409, 450, 409, - 409, 326, 327, 450, 387, 59, 331, 59, 61, 500, - 409, 61, 409, 338, 61, 59, 59, 342, 343, 344, - 409, 59, 347, 59, 409, 350, 351, 59, 59, 409, - 291, 59, 59, 360, 59, 59, 361, 59, 61, 59, - 59, 59, 367, 368, 59, 370, 371, 372, 373, 59, - 59, 59, 59, 59, 256, 59, 59, 259, 409, 384, - 61, 61, 61, 61, 61, 61, 61, 394, 393, 61, - 395, 396, 61, 398, 59, 61, 401, 402, 280, 340, - 405, 61, 61, 61, 61, 61, 61, 61, 61, 61, - 292, 416, 61, 61, 61, 61, 61, 61, 61, 61, - 61, 61, 304, 61, 409, 59, 59, 309, 409, 409, - 435, 61, 437, 59, 59, 376, 441, 378, 379, 321, - 445, 446, 447, 448, 449, 59, 328, 59, 453, 454, - 59, 333, 59, 335, 59, 59, 59, 462, 59, 59, - 256, 257, 59, 59, 260, 472, 348, 59, 264, 59, - 61, 59, 259, 59, 450, 59, 59, 59, 59, 59, - 421, 59, 423, 279, 280, 281, 59, 59, 493, 285, - 495, 59, 59, 59, 376, 436, 501, 59, 505, 381, - 59, 506, 59, 59, 59, 292, 511, 59, 304, 59, - 59, 59, 308, 309, 59, 59, 59, 304, 256, 259, - 59, 403, 59, 59, 59, 450, 59, 59, 59, 267, - 59, 59, 59, 415, 321, 417, 418, 59, 59, 480, - 422, 328, 59, 339, 59, 341, 333, 59, 335, 59, - 288, 289, 292, 61, 409, 409, 294, 59, 296, 355, - 450, 348, 409, 450, 304, 61, 507, 508, 387, 450, - 450, 450, 450, 274, 275, 450, 409, 348, 450, 59, - 376, 321, 61, 409, 59, 61, 409, 387, 328, 256, - 59, 409, 59, 333, 381, 335, 59, 409, 409, 409, - 482, 59, 59, 59, 305, 409, 488, 274, 348, 59, - 397, 59, 408, 280, 352, 353, 59, 499, 500, 59, - 59, 59, 323, 59, 362, 363, 422, 509, 415, 330, - 417, 418, 59, 59, 59, 59, 432, 304, 305, 59, - 59, 381, 309, 59, 382, 383, 59, 59, 349, 409, - 61, 61, 61, 424, 61, 61, 323, 397, 61, 61, - 61, 399, 400, 330, 61, 61, 61, 256, 61, 61, - 259, 256, 410, 61, 61, 415, 377, 417, 418, 61, - 61, 419, 349, 61, 385, 456, 61, 276, 61, 409, - 409, 280, 277, 278, 283, 482, 59, 59, 494, 284, - 471, 290, 59, 59, 59, 59, 59, 59, 59, 59, - 377, 507, 499, 59, 59, 59, 59, 306, 385, 490, - 491, 59, 509, 59, 425, 496, 497, 498, 499, 59, - 319, 320, 59, 322, 59, 409, 403, 61, 509, 409, - 329, 59, 482, 444, 61, 412, 413, 409, 59, 59, - 387, 387, 387, 450, 450, 387, 387, 346, 387, 499, - 61, 59, 59, 387, 502, 503, 504, 387, 357, 509, - 359, 59, 59, 59, 59, 59, 443, 444, 59, 364, - 365, 366, 409, 59, 369, 387, 375, 409, 409, 450, - 409, 376, 409, 409, 409, 59, 409, 59, 409, 450, - 450, 409, 59, 392, 389, 390, 59, 386, 59, 59, - 409, 409, 59, 59, 59, 59, 59, 59, 59, 59, - 59, 406, 407, 59, 59, 59, 59, 414, 44, 61, - 61, 59, 455, 500, 409, 424, 59, 59, 409, 59, - 450, 59, 59, 123, 433, 434, 431, 59, 409, 438, - 439, 457, 458, 459, 460, 461, 450, 463, 464, 59, - 466, 467, 468, 59, 59, 471, 59, 59, 59, 409, - 59, 409, 59, 450, 450, 481, 482, 483, 484, 485, - 486, 450, 59, 489, 59, 450, 492, 457, 458, 459, - 460, 461, 450, 463, 464, 59, 466, 467, 468, 450, - 59, 471, 59, 450, 450, 59, 59, 59, 450, 450, - 59, 481, 482, 483, 484, 485, 486, 59, 59, 489, - 450, 59, 492, 457, 458, 459, 460, 461, 59, 463, - 464, 450, 466, 467, 468, 59, 450, 471, 59, 386, - 59, 59, 59, 59, 59, 59, 59, 481, 482, 483, - 484, 485, 486, 59, 59, 489, 387, 59, 492, 59, - 59, 59, 59, 386, 59, 59, 59, 59, 59, 59, +const short yycheck[] = { 345, + 346, 430, 125, 125, 265, 125, 352, 265, 256, 256, + 125, 125, 333, 125, 256, 125, 258, 125, 59, 256, + 125, 125, 44, 410, 256, 125, 125, 123, 256, 256, + 264, 256, 266, 256, 453, 454, 382, 59, 384, 256, + 44, 274, 275, 291, 44, 123, 256, 281, 123, 276, + 256, 285, 398, 123, 302, 59, 123, 125, 300, 59, + 406, 303, 123, 268, 269, 270, 44, 123, 125, 123, + 416, 417, 305, 419, 44, 264, 44, 266, 44, 44, + 125, 59, 428, 429, 125, 431, 44, 44, 44, 59, + 323, 59, 281, 59, 59, 410, 285, 330, 44, 125, + 123, 59, 59, 59, 44, 311, 312, 313, 314, 315, + 316, 317, 318, 59, 346, 340, 44, 350, 360, 59, + 123, 355, 410, 346, 912, 913, 914, 915, 916, 377, + 123, 59, 123, 256, 256, 377, 256, 123, 375, 262, + 263, 256, 256, 266, 256, 378, 256, 123, 256, 377, + 273, 256, 256, 386, 381, 361, 256, 256, 59, 282, + 377, 123, 276, 286, 287, 412, 355, 377, 405, 490, + 293, 291, 453, 454, 297, 298, 299, 61, 301, 404, + 412, 123, 302, 388, 307, 412, 472, 473, 256, 395, + 123, 259, 123, 426, 455, 412, 443, 455, 544, 256, + 61, 309, 61, 326, 327, 1069, 1070, 1071, 331, 61, + 61, 256, 280, 258, 447, 443, 339, 61, 340, 61, + 343, 344, 345, 61, 292, 348, 443, 61, 351, 352, + 256, 346, 340, 443, 291, 125, 304, 61, 346, 362, + 61, 309, 346, 61, 61, 368, 369, 61, 371, 372, + 373, 374, 125, 321, 125, 300, 503, 377, 303, 61, + 328, 503, 385, 497, 61, 375, 334, 381, 336, 475, + 61, 394, 377, 396, 397, 332, 399, 377, 377, 402, + 403, 349, 404, 406, 341, 311, 312, 313, 314, 315, + 316, 317, 318, 503, 417, 405, 61, 412, 412, 61, + 412, 409, 61, 509, 61, 61, 256, 412, 497, 377, + 123, 123, 61, 436, 382, 360, 439, 61, 61, 61, + 377, 444, 379, 380, 61, 448, 449, 450, 451, 452, + 61, 443, 377, 456, 457, 361, 404, 125, 443, 125, + 61, 61, 465, 443, 443, 61, 61, 61, 416, 61, + 418, 419, 61, 61, 61, 423, 61, 61, 61, 309, + 61, 61, 61, 61, 61, 422, 256, 424, 61, 395, + 61, 61, 61, 496, 442, 498, 256, 267, 61, 388, + 437, 438, 505, 256, 61, 256, 257, 510, 61, 260, + 340, 503, 515, 264, 61, 61, 346, 61, 288, 289, + 61, 274, 61, 503, 294, 751, 296, 280, 279, 280, + 281, 291, 61, 61, 285, 61, 61, 485, 427, 428, + 429, 430, 431, 491, 61, 256, 483, 61, 61, 61, + 61, 304, 305, 304, 502, 503, 309, 308, 309, 123, + 61, 61, 61, 61, 61, 513, 277, 278, 61, 475, + 323, 61, 332, 284, 511, 512, 61, 330, 503, 409, + 61, 341, 59, 353, 354, 61, 61, 61, 256, 340, + 256, 342, 61, 363, 364, 61, 61, 350, 61, 61, + 61, 61, 61, 509, 61, 356, 59, 61, 410, 256, + 61, 277, 278, 383, 384, 61, 61, 377, 284, 379, + 380, 61, 61, 61, 61, 378, 377, 295, 61, 59, + 400, 401, 61, 386, 61, 61, 945, 61, 61, 61, + 61, 411, 310, 61, 61, 61, 61, 61, 295, 61, + 420, 404, 410, 410, 365, 366, 367, 59, 409, 370, + 413, 414, 422, 310, 424, 333, 377, 335, 453, 337, + 338, 388, 423, 388, 453, 453, 388, 437, 438, 390, + 391, 388, 433, 388, 453, 453, 333, 453, 335, 357, + 337, 338, 388, 446, 447, 256, 407, 408, 259, 365, + 366, 367, 59, 453, 370, 453, 453, 453, 61, 935, + 357, 377, 61, 59, 61, 276, 61, 943, 944, 280, + 410, 432, 283, 483, 390, 391, 453, 453, 388, 290, + 410, 388, 453, 453, 453, 388, 506, 507, 508, 388, + 410, 407, 408, 259, 453, 306, 497, 388, 388, 410, + 503, 511, 512, 453, 388, 388, 388, 388, 319, 320, + 511, 322, 453, 388, 453, 453, 432, 410, 329, 388, + 453, 61, 274, 275, 453, 453, 292, 476, 477, 478, + 479, 480, 481, 482, 61, 388, 347, 59, 304, 453, + 410, 453, 59, 61, 453, 453, 61, 358, 453, 360, + 256, 453, 453, 305, 59, 321, 262, 263, 61, 453, + 266, 61, 328, 61, 61, 376, 61, 273, 334, 61, + 336, 323, 61, 453, 61, 453, 282, 61, 330, 61, + 286, 287, 393, 349, 61, 61, 61, 293, 61, 61, + 61, 297, 298, 299, 61, 301, 61, 61, 350, 61, + 61, 307, 61, 59, 410, 410, 410, 59, 410, 410, + 410, 410, 410, 453, 425, 410, 382, 410, 410, 59, + 326, 327, 410, 434, 435, 331, 378, 61, 61, 440, + 441, 61, 398, 339, 386, 453, 453, 343, 344, 345, + 410, 453, 348, 453, 453, 351, 352, 59, 61, 59, + 416, 410, 418, 419, 410, 410, 362, 410, 388, 59, + 61, 59, 368, 369, 410, 371, 372, 373, 374, 453, + 61, 410, 410, 410, 426, 59, 442, 410, 410, 385, + 61, 410, 61, 59, 256, 59, 59, 259, 394, 59, + 396, 397, 59, 399, 59, 447, 402, 403, 59, 59, + 406, 59, 59, 59, 59, 516, 59, 59, 280, 59, + 59, 417, 59, 59, 59, 59, 59, 59, 59, 485, + 292, 61, 61, 61, 61, 61, 61, 61, 61, 61, + 436, 61, 304, 439, 61, 410, 502, 309, 444, 61, + 61, 61, 448, 449, 450, 451, 452, 513, 61, 321, + 456, 457, 259, 61, 61, 61, 328, 61, 61, 465, + 61, 61, 334, 61, 336, 61, 61, 61, 61, 61, + 61, 256, 257, 61, 61, 260, 410, 349, 59, 264, + 59, 410, 410, 61, 59, 292, 59, 59, 59, 59, + 496, 59, 498, 59, 279, 280, 281, 304, 59, 505, + 285, 59, 59, 59, 510, 377, 59, 59, 59, 515, + 382, 59, 59, 59, 321, 59, 59, 59, 59, 304, + 59, 328, 59, 308, 309, 59, 59, 334, 59, 336, + 349, 59, 404, 59, 59, 59, 59, 59, 59, 59, + 256, 59, 349, 59, 416, 256, 418, 419, 59, 59, + 59, 423, 59, 59, 59, 340, 267, 342, 274, 59, + 59, 59, 59, 59, 280, 59, 59, 59, 59, 59, + 442, 356, 59, 59, 59, 382, 59, 288, 289, 61, + 453, 61, 410, 294, 410, 296, 59, 453, 304, 305, + 410, 398, 377, 309, 453, 349, 453, 61, 453, 453, + 453, 453, 453, 453, 410, 388, 425, 323, 410, 416, + 59, 418, 419, 485, 330, 61, 410, 410, 59, 491, + 410, 61, 410, 59, 409, 388, 59, 59, 59, 410, + 502, 503, 410, 59, 350, 442, 59, 59, 423, 59, + 459, 513, 353, 354, 59, 59, 59, 59, 433, 59, + 59, 59, 363, 364, 59, 474, 59, 59, 59, 59, + 59, 59, 378, 410, 61, 61, 61, 61, 61, 61, + 386, 425, 383, 384, 493, 494, 61, 61, 485, 61, + 499, 500, 501, 502, 61, 504, 61, 61, 404, 400, + 401, 61, 61, 61, 513, 502, 61, 413, 414, 61, + 411, 61, 61, 61, 61, 459, 513, 410, 410, 420, + 59, 59, 497, 59, 59, 59, 59, 59, 59, 59, + 474, 59, 59, 59, 59, 59, 511, 59, 59, 59, + 446, 447, 59, 59, 59, 59, 59, 59, 410, 493, + 494, 61, 410, 61, 410, 499, 500, 501, 502, 59, + 59, 460, 461, 462, 463, 464, 410, 466, 467, 513, + 469, 470, 471, 388, 388, 474, 453, 453, 453, 388, + 388, 388, 388, 388, 388, 484, 485, 486, 487, 488, + 489, 410, 410, 492, 453, 61, 495, 503, 59, 453, + 59, 59, 59, 59, 59, 506, 507, 508, 460, 461, + 462, 463, 464, 388, 466, 467, 415, 469, 470, 471, + 59, 410, 474, 410, 59, 59, 59, 59, 59, 59, + 410, 410, 484, 485, 486, 487, 488, 489, 410, 59, + 492, 59, 59, 495, 460, 461, 462, 463, 464, 59, + 466, 467, 387, 469, 470, 471, 410, 410, 474, 59, + 410, 410, 59, 59, 59, 410, 410, 59, 484, 485, + 486, 487, 488, 489, 59, 59, 492, 59, 59, 495, + 59, 59, 458, 44, 410, 415, 453, 453, 61, 453, + 410, 410, 61, 410, 453, 59, 453, 59, 453, 59, + 59, 453, 59, 59, 59, 59, 410, 59, 59, 59, + 59, 59, 59, 453, 453, 59, 59, 59, 59, 59, + 59, 59, 59, 59, 59, 453, 59, 59, 453, 59, + 59, 453, 59, 59, 59, 59, 387, 59, 59, 59, + 59, 59, 59, 59, 453, 59, 453, 59, 453, 59, + 453, 388, 59, 59, 59, 59, 59, 59, 387, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, - 123, 59, 59, 123, 59, 274, 257, 1450, 311, 1448, - 1469, 70, 1378, 494, 1260, 1428, 462, 817, 1361, 1363, - 525, 565, 1433, 557, 1430, 183, 1431, 1376, 357, 368, - 484, 123, 607, 290, 642, 1354, 437, 1213, 94, 1211, - 1360, -1, -1, -1, 1358, + 59, 59, 59, 59, 59, 59, 59, 123, 123, 277, + 260, 835, 1487, 1485, 1507, 1292, 624, 316, 1414, 123, + 582, 73, 470, 1397, 1399, 1465, 1467, 567, 659, 1468, + 502, 575, 1470, 1412, 365, 376, 1390, 492, 293, 186, + 1245, 126, 445, 1396, 1394, -1, 1243, 97, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 533, }; #define YYFINAL 1 #ifndef YYDEBUG #define YYDEBUG 0 #endif -#define YYMAXTOKEN 511 +#define YYMAXTOKEN 516 #if YYDEBUG const char * const yyname[] = { "end-of-file",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, @@ -1379,27 +1412,28 @@ "FIOERRLOG","FOPERLOG","FOPERSPYLOG","FUSERLOG","GECOS","GENERAL","GLINE", "GLINES","GLINE_EXEMPT","GLINE_LOG","GLINE_TIME","GLINE_MIN_CIDR", "GLINE_MIN_CIDR6","GLOBAL_KILL","IRCD_AUTH","NEED_IDENT","HAVENT_READ_CONF", -"HIDDEN","HIDDEN_ADMIN","HIDDEN_NAME","HIDDEN_OPER","HIDE_SERVER_IPS", -"HIDE_SERVERS","HIDE_SPOOF_IPS","HOST","HUB","HUB_MASK","IDLETIME", -"IGNORE_BOGUS_TS","INVISIBLE_ON_CONNECT","IP","KILL","KILL_CHASE_TIME_LIMIT", -"KLINE","KLINE_EXEMPT","KLINE_REASON","KLINE_WITH_REASON","KNOCK_DELAY", -"KNOCK_DELAY_CHANNEL","LAZYLINK","LEAF_MASK","LINKS_DELAY","LISTEN","T_LOG", -"LOGGING","LOG_LEVEL","MAX_ACCEPT","MAX_BANS","MAX_CHANS_PER_USER","MAX_GLOBAL", -"MAX_IDENT","MAX_LOCAL","MAX_NICK_CHANGES","MAX_NICK_TIME","MAX_NUMBER", -"MAX_TARGETS","MESSAGE_LOCALE","MIN_NONWILDCARD","MIN_NONWILDCARD_SIMPLE", -"MODULE","MODULES","NAME","NEED_PASSWORD","NETWORK_DESC","NETWORK_NAME","NICK", -"NICK_CHANGES","NO_CREATE_ON_SPLIT","NO_JOIN_ON_SPLIT","NO_OPER_FLOOD", -"NO_TILDE","NOT","NUMBER","NUMBER_PER_IDENT","NUMBER_PER_CIDR","NUMBER_PER_IP", -"NUMBER_PER_IP_GLOBAL","OPERATOR","OPERS_BYPASS_CALLERID","OPER_LOG", -"OPER_ONLY_UMODES","OPER_PASS_RESV","OPER_SPY_T","OPER_UMODES", -"JOIN_FLOOD_COUNT","JOIN_FLOOD_TIME","PACE_WAIT","PACE_WAIT_SIMPLE","PASSWORD", -"PATH","PING_COOKIE","PING_TIME","PING_WARNING","PORT","QSTRING","QUIET_ON_BAN", -"REASON","REDIRPORT","REDIRSERV","REGEX_T","REHASH","TREJECT_HOLD_TIME", -"REMOTE","REMOTEBAN","RESTRICT_CHANNELS","RESTRICTED","RSA_PRIVATE_KEY_FILE", -"RSA_PUBLIC_KEY_FILE","SSL_CERTIFICATE_FILE","RESV","RESV_EXEMPT","SECONDS", -"MINUTES","HOURS","DAYS","WEEKS","SENDQ","SEND_PASSWORD","SERVERHIDE", -"SERVERINFO","SERVLINK_PATH","IRCD_SID","TKLINE_EXPIRE_NOTICES","T_SHARED", -"T_CLUSTER","TYPE","SHORT_MOTD","SILENT","SPOOF","SPOOF_NOTICE", +"HELP_CHANNEL","HIDDEN","HIDDEN_ADMIN","HIDDEN_NAME","HIDDEN_OPER", +"HIDE_SERVER_IPS","HIDE_SERVERS","HIDE_SPOOF_IPS","HOST","HUB","HUB_MASK", +"IDLETIME","IGNORE_BOGUS_TS","INVISIBLE_ON_CONNECT","IP","KILL", +"KILL_CHASE_TIME_LIMIT","KLINE","KLINE_EXEMPT","KLINE_REASON", +"KLINE_WITH_REASON","KNOCK_DELAY","KNOCK_DELAY_CHANNEL","LAZYLINK","LEAF_MASK", +"LINKS_DELAY","LISTEN","T_LOG","LOGGING","LOG_LEVEL","MAX_ACCEPT","MAX_BANS", +"MAX_CHANS_PER_USER","MAX_GLOBAL","MAX_IDENT","MAX_LOCAL","MAX_NICK_CHANGES", +"MAX_NICK_TIME","MAX_NUMBER","MAX_TARGETS","MESSAGE_LOCALE","MIN_NONWILDCARD", +"MIN_NONWILDCARD_SIMPLE","MODULE","MODULES","NAME","NEED_PASSWORD", +"NETWORK_DESC","NETWORK_NAME","NICK","NICK_CHANGES","NO_CREATE_ON_SPLIT", +"NO_JOIN_ON_SPLIT","NO_OPER_FLOOD","NO_TILDE","NOT","NUMBER","NUMBER_PER_IDENT", +"NUMBER_PER_CIDR","NUMBER_PER_IP","NUMBER_PER_IP_GLOBAL","OPERATOR", +"OPERS_BYPASS_CALLERID","OPER_LOG","OPER_ONLY_UMODES","OPER_PASS_RESV", +"OPER_SPY_T","OPER_UMODES","JOIN_FLOOD_COUNT","JOIN_FLOOD_TIME","PACE_WAIT", +"PACE_WAIT_SIMPLE","PASSWORD","PATH","PING_COOKIE","PING_TIME","PING_WARNING", +"PORT","QSTRING","QUIET_ON_BAN","REASON","REDIRPORT","REDIRSERV","REGEX_T", +"REHASH","TREJECT_HOLD_TIME","REMOTE","REMOTEBAN","RESTRICT_CHANNELS", +"RESTRICTED","RSA_PRIVATE_KEY_FILE","RSA_PUBLIC_KEY_FILE", +"SSL_CERTIFICATE_FILE","RESV","RESV_EXEMPT","SECONDS","MINUTES","HOURS","DAYS", +"WEEKS","SENDQ","SEND_PASSWORD","SERVERHIDE","SERVERINFO","SERVLINK_PATH", +"SERVICES_NAME","IRCD_SID","TKLINE_EXPIRE_NOTICES","T_SHARED","T_CLUSTER", +"T_SNOOP","TYPE","SHORT_MOTD","SILENT","SPOOF","SPOOF_NOTICE", "STATS_E_DISABLED","STATS_I_OPER_ONLY","STATS_K_OPER_ONLY","STATS_O_OPER_ONLY", "STATS_P_OPER_ONLY","TBOOL","TMASKED","T_REJECT","TS_MAX_DELTA","TS_WARN_DELTA", "TWODOTS","T_ALL","T_BOTS","T_SOFTCALLERID","T_CALLERID","T_CCONN", @@ -1409,8 +1443,9 @@ "T_MAX_CLIENTS","T_NCHANGE","T_OPERWALL","T_REJ","T_SERVNOTICE","T_SKILL", "T_SPY","T_SSL","T_UMODES","T_UNAUTH","T_UNRESV","T_UNXLINE","T_WALLOP", "THROTTLE_TIME","TOPICBURST","TRUE_NO_OPER_FLOOD","TKLINE","TXLINE","TRESV", -"UNKLINE","USER","USE_EGD","USE_EXCEPT","USE_INVEX","USE_KNOCK","USE_LOGGING", -"USE_WHOIS_ACTUALLY","VHOST","VHOST6","XLINE","WARN","WARN_NO_NLINE", +"UNKLINE","USER","T_USERMODE","USE_EGD","USE_EXCEPT","USE_INVEX","USE_KNOCK", +"USE_LOGGING","USE_WHOIS_ACTUALLY","VHOST","VHOST6","XLINE","WARN", +"WARN_NO_NLINE","W