file
stringlengths 18
26
| data
stringlengths 2
1.05M
|
---|---|
the_stack_data/124703.c | /*------------------------------------------------------------------------*/
/* Copyright (C) 2014-2014, Armin Biere, Johannes Kepler University, Linz */
/*------------------------------------------------------------------------*/
#include <stdio.h>
#include <assert.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
void die (const char * fmt, ...) {
va_list ap;
fputs ("*** cheskol: ", stderr);
va_start (ap, fmt);
vfprintf (stderr, fmt, ap);
va_end (ap);
fputc ('\n', stderr);
exit (1);
}
static const char * name;
void perr (const char * fmt, ...) {
va_list ap;
fprintf (stderr, "*** parse error in '%s': ", name);
va_start (ap, fmt);
vfprintf (stderr, fmt, ap);
va_end (ap);
fputc ('\n', stderr);
exit (1);
}
void msg (const char * fmt, ...) {
va_list ap;
fputs ("c [cheskol] ", stdout);
va_start (ap, fmt);
vprintf (fmt, ap);
va_end (ap);
fputc ('\n', stdout);
fflush (stdout);
}
static int V, C;
static int M, I, L, O, A, MAX;
static int *Q;
typedef struct AIG {
unsigned isinput : 1, isand : 1, isconstant : 1;
union { int lhs, lit; };
int rhs0, rhs1, uql;
} AIG;
static AIG * aig;
static int * skol;
static int * cnf, szcnf, ncnf;
#define NEW(P,N) \
do { \
size_t B = (N) * sizeof *(P); \
(P) = malloc (B); memset ((P), 0, (B)); \
} while (0)
static long steps;
static int uql (int lit) {
int idx, res, l, r;
AIG * a;
steps++;
assert (0 <= lit), assert (lit <= MAX);
if (lit <= 1) return 1;
a = aig + (idx = lit/2);
assert (!a->isconstant);
if (a->isinput) {
assert (idx <= V);
res = Q[idx];
assert (res < 0);
res = -res;
assert (res > 1);
return res;
}
assert (a->isand);
if ((res = a->uql)) return res;
l = uql (a->rhs0);
r = uql (a->rhs1);
res = l < r ? r : l;
assert (res > 0);
a->uql = res;
return res;
}
static int clslit (int i) {
assert (0 <= i), assert (i < C);
return V + i + 1;
}
static int truelit () { return V + C + 1; }
static int aiglit (int i) {
int res;
assert (0 <= i), assert (i <= MAX);
if (i == 1) return truelit ();
else if (!i) return -truelit ();
res = truelit () + i/2;
if (i & 1) res = -res;
return res;
}
static int W, E;
static FILE * dfile;
static void unit (int lit) {
assert (lit), fprintf (dfile, "%d 0\n", lit), W++;
}
static void binary (int a, int b) {
assert (a && b), fprintf (dfile, "%d %d 0\n", a, b), W++;
}
static void ternary (int a, int b, int c) {
assert (a), assert (b), assert (c);
fprintf (dfile, "%d %d %d 0\n", a, b, c);
W++;
}
int main (int argc, char ** argv) {
int ch, i, j, k, q, s, lit, e, a, u;
int lhs, rhs0, rhs1, idx;
FILE * qfile, * afile;
AIG * and;
if (argc > 1 && !strcmp (argv[1], "-h")) {
printf ("usage: cheskol [-h] <qdimacs> <aag> [ <dimacs> ]\n");
exit (0);
}
if (argc < 3 || argc > 4)
die ("invalid number of %d command line options (try '-h')", argc - 1);
if (!(qfile = fopen ((name = argv[1]), "r")))
die ("failed to open QDIMACS file '%s' for reading", name);
if (fscanf (qfile, "p cnf %d %d", &V, &C) != 2 || V < 0 || C < 0)
perr ("invalid QDIMACS header");
msg ("found QDIMACS header 'p cnf %d %d' in '%s'", V, C, name);
NEW (Q, V + 1);
s = q = 1;
for (;;) {
ch = getc (qfile);
if (ch == ' ' || ch == '\n') continue;
if (ch == 'a') s++, q = -1;
else if (ch == 'e') s++, q = 1;
else if (ch != EOF) { ungetc (ch, qfile); break; }
else if (C) perr ("unexpected EOF after header (all clauses missing)");
else break;
for (;;) {
if (fscanf (qfile, "%d", &lit) != 1) perr ("failed to read literal");
if (!lit) break;
if (lit < 0) perr ("negative quantified literal", lit);
if (lit > V) perr ("literal too large", lit);
if (Q[lit]) perr ("literal %d quantified twice", lit);
Q[lit] = q * s;
}
}
e = a = u = 0;
for (i = 1; i <= V; i++) {
if (Q[i] < 0) a++;
else if (Q[i] > 0) e++;
else u++;
}
msg ("found %d existential, %d universal, %d unquantified", e, a, u);
i = 0;
while (fscanf (qfile, " %d ", &lit) == 1) {
if (ncnf == szcnf) {
szcnf = szcnf ? 2*szcnf : 1;
cnf = realloc (cnf, szcnf * sizeof *cnf);
}
cnf[ncnf++] = lit;
if (!lit) i++;
}
if ((ch = getc (qfile)) != EOF) perr ("expected EOF after last literal");
if (ncnf && cnf[ncnf]) perr ("terminating clause missing");
if (i < C) perr ("not enough clauses");
if (i > C) perr ("too many clauses");
assert (C <= ncnf);
msg ("parsed %d literals in %d clauses", ncnf - C, C);
fclose (qfile);
if (!(afile = fopen ((name = argv[2]), "r")))
die ("failed to open AAG file '%s' for reading", name);
if (fscanf (afile, "aag %d %d %d %d %d", &M,&I,&L,&O,&A) != 5 ||
M < 0 || I < 0 || L || O < 0 || A < 0)
perr ("invalid AAG header");
msg ("found AAG header 'aag %d %d %d %d %d' in '%s'", M,I,L,O,A, name);
if (a != I) perr ("num inputs %d does not match num universals %d", I, u);
if (e != O) perr ("num outputs %d does not match num existentials %d", O, e);
NEW (aig, M + 1);
aig[0].isconstant = 1;
MAX = 2*M + 1;
for (i = 0; i < I; i++) {
int idx;
if (fscanf (afile, "%d", &lit) != 1 || (lit&1) || lit <= 1 || lit > MAX)
perr ("invalid input literal %d", lit);
if (aig[idx = lit/2].isinput)
perr ("input literal %d specified twice", lit);
if ((idx = lit/2) > V) die ("input literal %d too large for QBF", lit);
if (!Q[idx]) die ("input literal %d unquantified", lit);
if (Q[idx] > 0) die ("skolem literal %d existentially quantified", lit);
aig[idx].isinput = 1;
aig[idx].lit = lit;
}
msg ("parsed %d inputs", I);
NEW (skol, O);
for (i = 0; i < O; i++) {
if (fscanf (afile, "%d", &lit) != 1 || lit < 0 || lit > MAX)
perr ("invalid literal %d used as output %d", lit, i);
if ((lit & 1)) die ("odd skolem literal %d", lit);
if (lit < 2) die ("constant skolem literal %d", lit);
if ((idx = lit/2) > V) die ("skolem literal %d too large for QBF", lit);
if (!Q[idx]) die ("skolem literal %d unquantified", lit);
if (Q[idx] < 0) die ("skolem literal %d universally quantified", lit);
skol[i] = lit;
}
msg ("parsed %d outputs", O);
for (i = 0; i < A; i++) {
if (fscanf (afile, "%d %d %d", &lhs, &rhs0, &rhs1) != 3)
perr ("failed to parse AND number %d", i);
if (lhs <= 1 || lhs > MAX) perr ("invalid LHS %d in AND %d", lhs, i);
if (rhs0 < 0 || rhs0 > MAX) perr ("invalid RHS %d in AND %d", rhs0, i);
if (rhs1 < 0 || rhs1 > MAX) perr ("invalid RHS %d in AND %d", rhs1, i);
and = aig + (idx = lhs/2);
if (and->isinput) perr ("LHS %d of AND %d used as input", lhs, i);
if (and->isand) perr ("LHS %d of AND %d used as LHS before", lhs, i);
and->lhs = lhs, and->rhs0 = rhs0, and->rhs1 = rhs1;
and->isand = 1;
}
msg ("parsed %d AND gates", A);
fclose (afile);
for (i = 0; i < O; i++) {
int il, sl;
idx = (lit = skol[i])/2;
il = abs (Q[idx]);
sl = uql (lit);
if (sl <= il) continue;
die ("failed dependency check for existential QBF variable %d", idx);
}
msg ("sucessfully checked %d skolem functions in %ld steps", O, steps);
if (argc == 4) {
if (!(dfile = fopen ((name = argv[3]), "w")))
die ("failed to open DIMACS file '%s' for writing", name);
} else dfile = stdout;
E = (ncnf - C) // binary clauses = number of literals
+ 1 // connecting clauses with additional clause lits
+ 1 // AIG unit clause
+ 3*A // Tseitin clauses for each AND gate
+ 2*I // connect universals with inputs
+ 2*O // connect existentials with skolem functions
;
fprintf (dfile, "p cnf %d %d\n", aiglit (2*M), E);
i = j = 0;
for (j = 0; j < ncnf; j = k + 1) {
for (k = j; cnf[k]; k++)
;
while (k > j)
binary (-clslit (i), -cnf[--k]);
for (k = j; cnf[k]; k++)
;
i++;
}
assert (i == C);
for (i = 0; i < C; i++) fprintf (dfile, "%d ", clslit (i));
fprintf (dfile, "0\n"), W++;
unit (truelit ());
for (i = 1; i <= M; i++) {
and = aig + i;
if (and->isinput) assert (and->lit == 2*i);
else if (and->isand) {
assert (and->lhs == 2*i);
binary (-aiglit (and->lhs), aiglit (and->rhs0));
binary (-aiglit (and->lhs), aiglit (and->rhs1));
ternary (aiglit (and->lhs), -aiglit (and->rhs0), -aiglit (and->rhs1));
}
}
for (i = 1; i <= M; i++) {
and = aig + i;
if (!and->isinput) continue;
lit = and->lit;
assert (!(lit & 1));
lhs = lit/2;
assert (0 < lhs), assert (lhs <= V);
assert (Q[lhs] < 0);
binary (-lhs, aiglit (lit));
binary (lhs, -aiglit (lit));
}
for (i = 0; i < O; i++) {
lit = skol[i];
assert (!(lit & 1));
lhs = lit/2;
assert (0 < lhs), assert (lhs <= V);
assert (Q[lhs] > 0);
binary (-lhs, aiglit (lit));
binary (lhs, -aiglit (lit));
}
if (argc == 4) {
fclose (dfile);
msg ("finished writing %d clauses to '%s'", W, name);
} else msg ("finished writing %d clauses to '<stdout>'", W);
assert (W == E);
free (aig);
free (skol);
free (Q);
free (cnf);
return 0;
}
|
the_stack_data/107953901.c | #include <stdio.h>
#include <math.h>
int main(int argc, const char *argv[]) {
FILE *file = fopen(argv[1], "r");
char line[50];
int n=0, x=0;
/*
* The goal here is for every set of numbers "n,x" to output the largest
* multiple of 'x' greater than 'n'.
*/
while (fgets(line, 50, file)) {
sscanf(line, "%d,%d", &n, &x);
if ( n || x ) { // the calculation is done here
int mult = (int)ceil((double)n/(double)x); // typecasting fun :/
printf("%d\n", mult*x);
} else { // if they are both zero we'll just throw an error.
printf("Read input failed.\n");
return 1;
}
}
return 0;
}
|
the_stack_data/103045.c | //1183 - Acima da Diagonal Principal
#include <stdio.h>
int main(){
double vetor[12][12], num, resultado = 0;
int col, lin, i;
char op;
//operação
scanf("%c", &op); //op
//prenchimento do vetor
for(lin = 0; lin < 12; lin++){
for(col = 0; col < 12; col++){
scanf("%lf", &num);
vetor[lin][col] = num;
}
}
//acima da diagonal principal
i = 1;
for(lin = 0; lin < 12; lin++){
for(col = i; col < 12; col ++){
resultado += vetor[lin][col];
}
i++;
}
//op
switch(op){
case 'S':
printf("%.1lf\n", resultado);
break;
case 'M':
printf("%.1lf\n", resultado/66);
break;
}
return 0;
}
|
the_stack_data/162642703.c | /* Seção Crítica em um sistema bancário múltiplas podem realizar operações de débito e crédito */
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <time.h>
#include <sys/wait.h>
#include <sys/types.h>
#include <pthread.h>
#include <stdbool.h>
#include <stdatomic.h>
#include <semaphore.h>
#define QTD_THREADS 10
float saldoCliente = 0;
pthread_mutex_t mutexSaldo;
void* operacao(void* p){
long valor_op = (long)p;
pthread_mutex_lock(&mutexSaldo);
saldoCliente += valor_op;
pthread_mutex_unlock(&mutexSaldo);
}
int main(void){
pthread_t threads[10];
return(0);
} |
the_stack_data/73575623.c |
#define _GNU_SOURCE
#include <sys/mount.h>
#include <stdio.h>
int prepare_mount_namespace(void)
{
if (mount(NULL, "/", NULL, MS_PRIVATE, 0) == -1) {
perror("remount /:");
return -1;
}
if (mount(NULL, "/proc", NULL, MS_PRIVATE, 0) == -1) {
perror("remount /:");
return -1;
}
if (mount("proc", "/proc", "proc", 0, 0) == -1) {
perror("remount /:");
return -1;
}
return 0;
}
|
the_stack_data/82978.c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <spawn.h>
int main(int argc, const char *argv[]) {
const int BUF_SIZE = 0x1000;
const char* message = "Hello world!";
int ret;
if (argc != 2) {
printf("usage: ./client <ipaddress>\n");
return 0;
}
int sockfd = socket(AF_INET, SOCK_STREAM, 0);
if (sockfd < 0) {
printf("create socket error: %s(errno: %d)\n", strerror(errno), errno);
return -1;
}
struct sockaddr_in servaddr;
memset(&servaddr, 0, sizeof(servaddr));
servaddr.sin_family = AF_INET;
servaddr.sin_port = htons(6666);
ret = inet_pton(AF_INET, argv[1], &servaddr.sin_addr);
if (ret <= 0) {
printf("inet_pton error for %s\n", argv[1]);
return -1;
}
ret = connect(sockfd, (struct sockaddr *) &servaddr, sizeof(servaddr));
if (ret < 0) {
printf("connect error: %s(errno: %d)\n", strerror(errno), errno);
return -1;
}
printf("send msg to server: %s\n", message);
ret = send(sockfd, message, strlen(message), 0);
if (ret < 0) {
printf("send msg error: %s(errno: %d)\n", strerror(errno), errno);
return -1;
}
close(sockfd);
return 0;
} |
the_stack_data/232955365.c | #include <ncurses.h>
int main(int argc, char *argv[])
{
initscr();
WINDOW *win = newwin(10, 20, 1, 1);
box(win, '*', '*');
mvwaddch(win, 3, 3, 'H');
mvwaddstr(win, 4, 3, "Hello, world!");
touchwin(win);
wrefresh(win);
getchar();
endwin();
return 0;
}
|
the_stack_data/90762195.c | /* Teensyduino Core Library
* http://www.pjrc.com/teensy/
* Copyright (c) 2017 PJRC.COM, LLC.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* 1. The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* 2. If the Software is incorporated into a build system that allows
* selection among a list of target devices, then similar target
* devices manufactured by PJRC.COM must be included in the list of
* target devices and selectable in the same manner.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#if F_CPU >= 20000000
#define USB_DESC_LIST_DEFINE
#include "usb_desc.h"
#ifdef NUM_ENDPOINTS
#include "usb_names.h"
#include "kinetis.h"
#include "avr_functions.h"
// USB Descriptors are binary data which the USB host reads to
// automatically detect a USB device's capabilities. The format
// and meaning of every field is documented in numerous USB
// standards. When working with USB descriptors, despite the
// complexity of the standards and poor writing quality in many
// of those documents, remember descriptors are nothing more
// than constant binary data that tells the USB host what the
// device can do. Computers will load drivers based on this data.
// Those drivers then communicate on the endpoints specified by
// the descriptors.
// To configure a new combination of interfaces or make minor
// changes to existing configuration (eg, change the name or ID
// numbers), usually you would edit "usb_desc.h". This file
// is meant to be configured by the header, so generally it is
// only edited to add completely new USB interfaces or features.
// **************************************************************
// USB Device
// **************************************************************
#define LSB(n) ((n) & 255)
#define MSB(n) (((n) >> 8) & 255)
// USB Device Descriptor. The USB host reads this first, to learn
// what type of device is connected.
static uint8_t device_descriptor[] = {
18, // bLength
1, // bDescriptorType
0x10, 0x01, // bcdUSB
#ifdef DEVICE_CLASS
DEVICE_CLASS, // bDeviceClass
#else
0,
#endif
#ifdef DEVICE_SUBCLASS
DEVICE_SUBCLASS, // bDeviceSubClass
#else
0,
#endif
#ifdef DEVICE_PROTOCOL
DEVICE_PROTOCOL, // bDeviceProtocol
#else
0,
#endif
EP0_SIZE, // bMaxPacketSize0
LSB(VENDOR_ID), MSB(VENDOR_ID), // idVendor
LSB(PRODUCT_ID), MSB(PRODUCT_ID), // idProduct
#ifdef BCD_DEVICE
LSB(BCD_DEVICE), MSB(BCD_DEVICE), // bcdDevice
#else
// For USB types that don't explicitly define BCD_DEVICE,
// use the minor version number to help teensy_ports
// identify which Teensy model is used.
#if defined(__MKL26Z64__)
0x73, 0x02,
#elif defined(__MK20DX128__)
0x74, 0x02,
#elif defined(__MK20DX256__)
0x75, 0x02,
#elif defined(__MK64FX512__)
0x76, 0x02,
#elif defined(__MK66FX1M0__)
0x77, 0x02,
#else
0x00, 0x02,
#endif
#endif
1, // iManufacturer
2, // iProduct
3, // iSerialNumber
1 // bNumConfigurations
};
// These descriptors must NOT be "const", because the USB DMA
// has trouble accessing flash memory with enough bandwidth
// while the processor is executing from flash.
// **************************************************************
// HID Report Descriptors
// **************************************************************
// Each HID interface needs a special report descriptor that tells
// the meaning and format of the data.
#ifdef KEYBOARD_INTERFACE
// Keyboard Protocol 1, HID 1.11 spec, Appendix B, page 59-60
static uint8_t keyboard_report_desc[] = {
0x05, 0x01, // Usage Page (Generic Desktop),
0x09, 0x06, // Usage (Keyboard),
0xA1, 0x01, // Collection (Application),
0x75, 0x01, // Report Size (1),
0x95, 0x08, // Report Count (8),
0x05, 0x07, // Usage Page (Key Codes),
0x19, 0xE0, // Usage Minimum (224),
0x29, 0xE7, // Usage Maximum (231),
0x15, 0x00, // Logical Minimum (0),
0x25, 0x01, // Logical Maximum (1),
0x81, 0x02, // Input (Data, Variable, Absolute), ;Modifier keys
0x95, 0x01, // Report Count (1),
0x75, 0x08, // Report Size (8),
0x81, 0x03, // Input (Constant), ;Reserved byte
0x95, 0x05, // Report Count (5),
0x75, 0x01, // Report Size (1),
0x05, 0x08, // Usage Page (LEDs),
0x19, 0x01, // Usage Minimum (1),
0x29, 0x05, // Usage Maximum (5),
0x91, 0x02, // Output (Data, Variable, Absolute), ;LED report
0x95, 0x01, // Report Count (1),
0x75, 0x03, // Report Size (3),
0x91, 0x03, // Output (Constant), ;LED report padding
0x95, 0x06, // Report Count (6),
0x75, 0x08, // Report Size (8),
0x15, 0x00, // Logical Minimum (0),
0x25, 0x7F, // Logical Maximum(104),
0x05, 0x07, // Usage Page (Key Codes),
0x19, 0x00, // Usage Minimum (0),
0x29, 0x7F, // Usage Maximum (104),
0x81, 0x00, // Input (Data, Array), ;Normal keys
0xC0 // End Collection
};
#endif
#ifdef KEYMEDIA_INTERFACE
static uint8_t keymedia_report_desc[] = {
0x05, 0x0C, // Usage Page (Consumer)
0x09, 0x01, // Usage (Consumer Controls)
0xA1, 0x01, // Collection (Application)
0x75, 0x0A, // Report Size (10)
0x95, 0x04, // Report Count (4)
0x19, 0x00, // Usage Minimum (0)
0x2A, 0x9C, 0x02, // Usage Maximum (0x29C)
0x15, 0x00, // Logical Minimum (0)
0x26, 0x9C, 0x02, // Logical Maximum (0x29C)
0x81, 0x00, // Input (Data, Array)
0x05, 0x01, // Usage Page (Generic Desktop)
0x75, 0x08, // Report Size (8)
0x95, 0x03, // Report Count (3)
0x19, 0x00, // Usage Minimum (0)
0x29, 0xB7, // Usage Maximum (0xB7)
0x15, 0x00, // Logical Minimum (0)
0x26, 0xB7, 0x00, // Logical Maximum (0xB7)
0x81, 0x00, // Input (Data, Array)
0xC0 // End Collection
};
#endif
#ifdef MOUSE_INTERFACE
// Mouse Protocol 1, HID 1.11 spec, Appendix B, page 59-60, with wheel extension
static uint8_t mouse_report_desc[] = {
0x05, 0x01, // Usage Page (Generic Desktop)
0x09, 0x02, // Usage (Mouse)
0xA1, 0x01, // Collection (Application)
0x85, 0x01, // REPORT_ID (1)
0x05, 0x09, // Usage Page (Button)
0x19, 0x01, // Usage Minimum (Button #1)
0x29, 0x08, // Usage Maximum (Button #8)
0x15, 0x00, // Logical Minimum (0)
0x25, 0x01, // Logical Maximum (1)
0x95, 0x08, // Report Count (8)
0x75, 0x01, // Report Size (1)
0x81, 0x02, // Input (Data, Variable, Absolute)
0x05, 0x01, // Usage Page (Generic Desktop)
0x09, 0x30, // Usage (X)
0x09, 0x31, // Usage (Y)
0x09, 0x38, // Usage (Wheel)
0x15, 0x81, // Logical Minimum (-127)
0x25, 0x7F, // Logical Maximum (127)
0x75, 0x08, // Report Size (8),
0x95, 0x03, // Report Count (3),
0x81, 0x06, // Input (Data, Variable, Relative)
0x05, 0x0C, // Usage Page (Consumer)
0x0A, 0x38, 0x02, // Usage (AC Pan)
0x15, 0x81, // Logical Minimum (-127)
0x25, 0x7F, // Logical Maximum (127)
0x75, 0x08, // Report Size (8),
0x95, 0x01, // Report Count (1),
0x81, 0x06, // Input (Data, Variable, Relative)
0xC0, // End Collection
0x05, 0x01, // Usage Page (Generic Desktop)
0x09, 0x02, // Usage (Mouse)
0xA1, 0x01, // Collection (Application)
0x85, 0x02, // REPORT_ID (2)
0x05, 0x01, // Usage Page (Generic Desktop)
0x09, 0x30, // Usage (X)
0x09, 0x31, // Usage (Y)
0x15, 0x00, // Logical Minimum (0)
0x26, 0xFF, 0x7F, // Logical Maximum (32767)
0x75, 0x10, // Report Size (16),
0x95, 0x02, // Report Count (2),
0x81, 0x02, // Input (Data, Variable, Absolute)
0xC0 // End Collection
};
#endif
#ifdef JOYSTICK_INTERFACE
#if JOYSTICK_SIZE == 12
static uint8_t joystick_report_desc[] = {
0x05, 0x01, // Usage Page (Generic Desktop)
0x09, 0x04, // Usage (Joystick)
0xA1, 0x01, // Collection (Application)
0x15, 0x00, // Logical Minimum (0)
0x25, 0x01, // Logical Maximum (1)
0x75, 0x01, // Report Size (1)
0x95, 0x20, // Report Count (32)
0x05, 0x09, // Usage Page (Button)
0x19, 0x01, // Usage Minimum (Button #1)
0x29, 0x20, // Usage Maximum (Button #32)
0x81, 0x02, // Input (variable,absolute)
0x15, 0x00, // Logical Minimum (0)
0x25, 0x07, // Logical Maximum (7)
0x35, 0x00, // Physical Minimum (0)
0x46, 0x3B, 0x01, // Physical Maximum (315)
0x75, 0x04, // Report Size (4)
0x95, 0x01, // Report Count (1)
0x65, 0x14, // Unit (20)
0x05, 0x01, // Usage Page (Generic Desktop)
0x09, 0x39, // Usage (Hat switch)
0x81, 0x42, // Input (variable,absolute,null_state)
0x05, 0x01, // Usage Page (Generic Desktop)
0x09, 0x01, // Usage (Pointer)
0xA1, 0x00, // Collection ()
0x15, 0x00, // Logical Minimum (0)
0x26, 0xFF, 0x03, // Logical Maximum (1023)
0x75, 0x0A, // Report Size (10)
0x95, 0x04, // Report Count (4)
0x09, 0x30, // Usage (X)
0x09, 0x31, // Usage (Y)
0x09, 0x32, // Usage (Z)
0x09, 0x35, // Usage (Rz)
0x81, 0x02, // Input (variable,absolute)
0xC0, // End Collection
0x15, 0x00, // Logical Minimum (0)
0x26, 0xFF, 0x03, // Logical Maximum (1023)
0x75, 0x0A, // Report Size (10)
0x95, 0x02, // Report Count (2)
0x09, 0x36, // Usage (Slider)
0x09, 0x36, // Usage (Slider)
0x81, 0x02, // Input (variable,absolute)
0xC0 // End Collection
};
#elif JOYSTICK_SIZE == 64
// extreme joystick (to use this, edit JOYSTICK_SIZE to 64 in usb_desc.h)
// 128 buttons 16
// 6 axes 12
// 17 sliders 34
// 4 pov 2
static uint8_t joystick_report_desc[] = {
0x05, 0x01, // Usage Page (Generic Desktop)
0x09, 0x04, // Usage (Joystick)
0xA1, 0x01, // Collection (Application)
0x15, 0x00, // Logical Minimum (0)
0x25, 0x01, // Logical Maximum (1)
0x75, 0x01, // Report Size (1)
0x95, 0x80, // Report Count (128)
0x05, 0x09, // Usage Page (Button)
0x19, 0x01, // Usage Minimum (Button #1)
0x29, 0x80, // Usage Maximum (Button #128)
0x81, 0x02, // Input (variable,absolute)
0x05, 0x01, // Usage Page (Generic Desktop)
0x09, 0x01, // Usage (Pointer)
0xA1, 0x00, // Collection ()
0x15, 0x00, // Logical Minimum (0)
0x27, 0xFF, 0xFF, 0, 0, // Logical Maximum (65535)
0x75, 0x10, // Report Size (16)
0x95, 23, // Report Count (23)
0x09, 0x30, // Usage (X)
0x09, 0x31, // Usage (Y)
0x09, 0x32, // Usage (Z)
0x09, 0x33, // Usage (Rx)
0x09, 0x34, // Usage (Ry)
0x09, 0x35, // Usage (Rz)
0x09, 0x36, // Usage (Slider)
0x09, 0x36, // Usage (Slider)
0x09, 0x36, // Usage (Slider)
0x09, 0x36, // Usage (Slider)
0x09, 0x36, // Usage (Slider)
0x09, 0x36, // Usage (Slider)
0x09, 0x36, // Usage (Slider)
0x09, 0x36, // Usage (Slider)
0x09, 0x36, // Usage (Slider)
0x09, 0x36, // Usage (Slider)
0x09, 0x36, // Usage (Slider)
0x09, 0x36, // Usage (Slider)
0x09, 0x36, // Usage (Slider)
0x09, 0x36, // Usage (Slider)
0x09, 0x36, // Usage (Slider)
0x09, 0x36, // Usage (Slider)
0x09, 0x36, // Usage (Slider)
0x81, 0x02, // Input (variable,absolute)
0xC0, // End Collection
0x15, 0x00, // Logical Minimum (0)
0x25, 0x07, // Logical Maximum (7)
0x35, 0x00, // Physical Minimum (0)
0x46, 0x3B, 0x01, // Physical Maximum (315)
0x75, 0x04, // Report Size (4)
0x95, 0x04, // Report Count (4)
0x65, 0x14, // Unit (20)
0x05, 0x01, // Usage Page (Generic Desktop)
0x09, 0x39, // Usage (Hat switch)
0x09, 0x39, // Usage (Hat switch)
0x09, 0x39, // Usage (Hat switch)
0x09, 0x39, // Usage (Hat switch)
0x81, 0x42, // Input (variable,absolute,null_state)
0xC0 // End Collection
};
#endif // JOYSTICK_SIZE
#endif // JOYSTICK_INTERFACE
#ifdef MULTITOUCH_INTERFACE
// https://forum.pjrc.com/threads/32331-USB-HID-Touchscreen-support-needed
// https://msdn.microsoft.com/en-us/library/windows/hardware/jj151563%28v=vs.85%29.aspx
// https://msdn.microsoft.com/en-us/library/windows/hardware/jj151565%28v=vs.85%29.aspx
// https://msdn.microsoft.com/en-us/library/windows/hardware/ff553734%28v=vs.85%29.aspx
// https://msdn.microsoft.com/en-us/library/windows/hardware/jj151564%28v=vs.85%29.aspx
// download.microsoft.com/download/a/d/f/adf1347d-08dc-41a4-9084-623b1194d4b2/digitizerdrvs_touch.docx
static uint8_t multitouch_report_desc[] = {
0x05, 0x0D, // Usage Page (Digitizer)
0x09, 0x04, // Usage (Touch Screen)
0xa1, 0x01, // Collection (Application)
0x09, 0x22, // Usage (Finger)
0xA1, 0x02, // Collection (Logical)
0x09, 0x42, // Usage (Tip Switch)
0x15, 0x00, // Logical Minimum (0)
0x25, 0x01, // Logical Maximum (1)
0x75, 0x01, // Report Size (1)
0x95, 0x01, // Report Count (1)
0x81, 0x02, // Input (variable,absolute)
0x09, 0x51, // Usage (Contact Identifier)
0x25, 0x7F, // Logical Maximum (127)
0x75, 0x07, // Report Size (7)
0x95, 0x01, // Report Count (1)
0x81, 0x02, // Input (variable,absolute)
0x09, 0x30, // Usage (Pressure)
0x26, 0xFF, 0x00, // Logical Maximum (255)
0x75, 0x08, // Report Size (8)
0x95, 0x01, // Report Count (1)
0x81, 0x02, // Input (variable,absolute)
0x05, 0x01, // Usage Page (Generic Desktop)
0x09, 0x30, // Usage (X)
0x09, 0x31, // Usage (Y)
0x26, 0xFF, 0x7F, // Logical Maximum (32767)
0x65, 0x00, // Unit (None) <-- probably needs real units?
0x75, 0x10, // Report Size (16)
0x95, 0x02, // Report Count (2)
0x81, 0x02, // Input (variable,absolute)
0xC0, // End Collection
0x05, 0x0D, // Usage Page (Digitizer)
0x27, 0xFF, 0xFF, 0, 0, // Logical Maximum (65535)
0x75, 0x10, // Report Size (16)
0x95, 0x01, // Report Count (1)
0x09, 0x56, // Usage (Scan Time)
0x81, 0x02, // Input (variable,absolute)
0x09, 0x54, // USAGE (Contact count)
0x25, 0x7f, // LOGICAL_MAXIMUM (127)
0x95, 0x01, // REPORT_COUNT (1)
0x75, 0x08, // REPORT_SIZE (8)
0x81, 0x02, // INPUT (Data,Var,Abs)
0x05, 0x0D, // Usage Page (Digitizers)
0x09, 0x55, // Usage (Contact Count Maximum)
0x25, MULTITOUCH_FINGERS, // Logical Maximum (10)
0x75, 0x08, // Report Size (8)
0x95, 0x01, // Report Count (1)
0xB1, 0x02, // Feature (variable,absolute)
0xC0 // End Collection
};
#endif
#ifdef SEREMU_INTERFACE
static uint8_t seremu_report_desc[] = {
0x06, 0xC9, 0xFF, // Usage Page 0xFFC9 (vendor defined)
0x09, 0x04, // Usage 0x04
0xA1, 0x5C, // Collection 0x5C
0x75, 0x08, // report size = 8 bits (global)
0x15, 0x00, // logical minimum = 0 (global)
0x26, 0xFF, 0x00, // logical maximum = 255 (global)
0x95, SEREMU_TX_SIZE, // report count (global)
0x09, 0x75, // usage (local)
0x81, 0x02, // Input
0x95, SEREMU_RX_SIZE, // report count (global)
0x09, 0x76, // usage (local)
0x91, 0x02, // Output
0x95, 0x04, // report count (global)
0x09, 0x76, // usage (local)
0xB1, 0x02, // Feature
0xC0 // end collection
};
#endif
#ifdef RAWHID_INTERFACE
static uint8_t rawhid_report_desc[] = {
0x06, LSB(RAWHID_USAGE_PAGE), MSB(RAWHID_USAGE_PAGE),
0x0A, LSB(RAWHID_USAGE), MSB(RAWHID_USAGE),
0xA1, 0x01, // Collection 0x01
0x75, 0x08, // report size = 8 bits
0x15, 0x00, // logical minimum = 0
0x26, 0xFF, 0x00, // logical maximum = 255
0x95, RAWHID_TX_SIZE, // report count
0x09, 0x01, // usage
0x81, 0x02, // Input (array)
0x95, RAWHID_RX_SIZE, // report count
0x09, 0x02, // usage
0x91, 0x02, // Output (array)
0xC0 // end collection
};
#endif
#ifdef FLIGHTSIM_INTERFACE
static uint8_t flightsim_report_desc[] = {
0x06, 0x1C, 0xFF, // Usage page = 0xFF1C
0x0A, 0x39, 0xA7, // Usage = 0xA739
0xA1, 0x01, // Collection 0x01
0x75, 0x08, // report size = 8 bits
0x15, 0x00, // logical minimum = 0
0x26, 0xFF, 0x00, // logical maximum = 255
0x95, FLIGHTSIM_TX_SIZE, // report count
0x09, 0x01, // usage
0x81, 0x02, // Input (array)
0x95, FLIGHTSIM_RX_SIZE, // report count
0x09, 0x02, // usage
0x91, 0x02, // Output (array)
0xC0 // end collection
};
#endif
// **************************************************************
// USB Descriptor Sizes
// **************************************************************
// pre-compute the size and position of everything in the config descriptor
//
#define CONFIG_HEADER_DESCRIPTOR_SIZE 9
#define CDC_IAD_DESCRIPTOR_POS CONFIG_HEADER_DESCRIPTOR_SIZE
#ifdef CDC_IAD_DESCRIPTOR
#define CDC_IAD_DESCRIPTOR_SIZE 8
#else
#define CDC_IAD_DESCRIPTOR_SIZE 0
#endif
#define CDC_DATA_INTERFACE_DESC_POS CDC_IAD_DESCRIPTOR_POS+CDC_IAD_DESCRIPTOR_SIZE
#ifdef CDC_DATA_INTERFACE
#define CDC_DATA_INTERFACE_DESC_SIZE 9+5+5+4+5+7+9+7+7
#else
#define CDC_DATA_INTERFACE_DESC_SIZE 0
#endif
#define CDC2_DATA_INTERFACE_DESC_POS CDC_DATA_INTERFACE_DESC_POS+CDC_DATA_INTERFACE_DESC_SIZE
#ifdef CDC2_DATA_INTERFACE
#define CDC2_DATA_INTERFACE_DESC_SIZE 8 + 9+5+5+4+5+7+9+7+7
#else
#define CDC2_DATA_INTERFACE_DESC_SIZE 0
#endif
#define CDC3_DATA_INTERFACE_DESC_POS CDC2_DATA_INTERFACE_DESC_POS+CDC2_DATA_INTERFACE_DESC_SIZE
#ifdef CDC3_DATA_INTERFACE
#define CDC3_DATA_INTERFACE_DESC_SIZE 8 + 9+5+5+4+5+7+9+7+7
#else
#define CDC3_DATA_INTERFACE_DESC_SIZE 0
#endif
#define MIDI_INTERFACE_DESC_POS CDC3_DATA_INTERFACE_DESC_POS+CDC3_DATA_INTERFACE_DESC_SIZE
#ifdef MIDI_INTERFACE
#if !defined(MIDI_NUM_CABLES) || MIDI_NUM_CABLES < 1 || MIDI_NUM_CABLES > 16
#error "MIDI_NUM_CABLES must be defined between 1 to 16"
#endif
#define MIDI_INTERFACE_DESC_SIZE 9+7+((6+6+9+9)*MIDI_NUM_CABLES)+(9+4+MIDI_NUM_CABLES)*2
#else
#define MIDI_INTERFACE_DESC_SIZE 0
#endif
#define KEYBOARD_INTERFACE_DESC_POS MIDI_INTERFACE_DESC_POS+MIDI_INTERFACE_DESC_SIZE
#ifdef KEYBOARD_INTERFACE
#define KEYBOARD_INTERFACE_DESC_SIZE 9+9+7
#define KEYBOARD_HID_DESC_OFFSET KEYBOARD_INTERFACE_DESC_POS+9
#else
#define KEYBOARD_INTERFACE_DESC_SIZE 0
#endif
#define MOUSE_INTERFACE_DESC_POS KEYBOARD_INTERFACE_DESC_POS+KEYBOARD_INTERFACE_DESC_SIZE
#ifdef MOUSE_INTERFACE
#define MOUSE_INTERFACE_DESC_SIZE 9+9+7
#define MOUSE_HID_DESC_OFFSET MOUSE_INTERFACE_DESC_POS+9
#else
#define MOUSE_INTERFACE_DESC_SIZE 0
#endif
#define RAWHID_INTERFACE_DESC_POS MOUSE_INTERFACE_DESC_POS+MOUSE_INTERFACE_DESC_SIZE
#ifdef RAWHID_INTERFACE
#define RAWHID_INTERFACE_DESC_SIZE 9+9+7+7
#define RAWHID_HID_DESC_OFFSET RAWHID_INTERFACE_DESC_POS+9
#else
#define RAWHID_INTERFACE_DESC_SIZE 0
#endif
#define FLIGHTSIM_INTERFACE_DESC_POS RAWHID_INTERFACE_DESC_POS+RAWHID_INTERFACE_DESC_SIZE
#ifdef FLIGHTSIM_INTERFACE
#define FLIGHTSIM_INTERFACE_DESC_SIZE 9+9+7+7
#define FLIGHTSIM_HID_DESC_OFFSET FLIGHTSIM_INTERFACE_DESC_POS+9
#else
#define FLIGHTSIM_INTERFACE_DESC_SIZE 0
#endif
#define SEREMU_INTERFACE_DESC_POS FLIGHTSIM_INTERFACE_DESC_POS+FLIGHTSIM_INTERFACE_DESC_SIZE
#ifdef SEREMU_INTERFACE
#define SEREMU_INTERFACE_DESC_SIZE 9+9+7+7
#define SEREMU_HID_DESC_OFFSET SEREMU_INTERFACE_DESC_POS+9
#else
#define SEREMU_INTERFACE_DESC_SIZE 0
#endif
#define JOYSTICK_INTERFACE_DESC_POS SEREMU_INTERFACE_DESC_POS+SEREMU_INTERFACE_DESC_SIZE
#ifdef JOYSTICK_INTERFACE
#define JOYSTICK_INTERFACE_DESC_SIZE 9+9+7
#define JOYSTICK_HID_DESC_OFFSET JOYSTICK_INTERFACE_DESC_POS+9
#else
#define JOYSTICK_INTERFACE_DESC_SIZE 0
#endif
#define MTP_INTERFACE_DESC_POS JOYSTICK_INTERFACE_DESC_POS+JOYSTICK_INTERFACE_DESC_SIZE
#ifdef MTP_INTERFACE
#define MTP_INTERFACE_DESC_SIZE 9+7+7+7
#else
#define MTP_INTERFACE_DESC_SIZE 0
#endif
#define KEYMEDIA_INTERFACE_DESC_POS MTP_INTERFACE_DESC_POS+MTP_INTERFACE_DESC_SIZE
#ifdef KEYMEDIA_INTERFACE
#define KEYMEDIA_INTERFACE_DESC_SIZE 9+9+7
#define KEYMEDIA_HID_DESC_OFFSET KEYMEDIA_INTERFACE_DESC_POS+9
#else
#define KEYMEDIA_INTERFACE_DESC_SIZE 0
#endif
#define AUDIO_INTERFACE_DESC_POS KEYMEDIA_INTERFACE_DESC_POS+KEYMEDIA_INTERFACE_DESC_SIZE
#ifdef AUDIO_INTERFACE
#define AUDIO_INTERFACE_DESC_SIZE 8 + 9+10+12+9+12+10+9 + 9+9+7+11+9+7 + 9+9+7+11+9+7+9
#else
#define AUDIO_INTERFACE_DESC_SIZE 0
#endif
#define MULTITOUCH_INTERFACE_DESC_POS AUDIO_INTERFACE_DESC_POS+AUDIO_INTERFACE_DESC_SIZE
#ifdef MULTITOUCH_INTERFACE
#define MULTITOUCH_INTERFACE_DESC_SIZE 9+9+7
#define MULTITOUCH_HID_DESC_OFFSET MULTITOUCH_INTERFACE_DESC_POS+9
#else
#define MULTITOUCH_INTERFACE_DESC_SIZE 0
#endif
// XInput defines its own descriptor size
#ifndef CONFIG_DESC_SIZE
#define CONFIG_DESC_SIZE MULTITOUCH_INTERFACE_DESC_POS+MULTITOUCH_INTERFACE_DESC_SIZE
#endif
// **************************************************************
// USB Configuration
// **************************************************************
// USB Configuration Descriptor. This huge descriptor tells all
// of the devices capabilities.
static uint8_t config_descriptor[CONFIG_DESC_SIZE] = {
// configuration descriptor, USB spec 9.6.3, page 264-266, Table 9-10
9, // bLength;
2, // bDescriptorType;
LSB(CONFIG_DESC_SIZE), // wTotalLength
MSB(CONFIG_DESC_SIZE),
NUM_INTERFACE, // bNumInterfaces
1, // bConfigurationValue
0, // iConfiguration
#ifdef DEVICE_ATTRIBUTES
DEVICE_ATTRIBUTES, // bmAttributes (XInput)
#else
0xC0, // bmAttributes
#endif
#ifdef DEVICE_POWER
DEVICE_POWER, // bMaxPower (XInput)
#else
50, // bMaxPower
#endif
#ifdef CDC_IAD_DESCRIPTOR
// interface association descriptor, USB ECN, Table 9-Z
8, // bLength
11, // bDescriptorType
CDC_STATUS_INTERFACE, // bFirstInterface
2, // bInterfaceCount
0x02, // bFunctionClass
0x02, // bFunctionSubClass
0x01, // bFunctionProtocol
0, // iFunction
#endif
#ifdef CDC_DATA_INTERFACE
// interface descriptor, USB spec 9.6.5, page 267-269, Table 9-12
9, // bLength
4, // bDescriptorType
CDC_STATUS_INTERFACE, // bInterfaceNumber
0, // bAlternateSetting
1, // bNumEndpoints
0x02, // bInterfaceClass
0x02, // bInterfaceSubClass
0x01, // bInterfaceProtocol
0, // iInterface
// CDC Header Functional Descriptor, CDC Spec 5.2.3.1, Table 26
5, // bFunctionLength
0x24, // bDescriptorType
0x00, // bDescriptorSubtype
0x10, 0x01, // bcdCDC
// Call Management Functional Descriptor, CDC Spec 5.2.3.2, Table 27
5, // bFunctionLength
0x24, // bDescriptorType
0x01, // bDescriptorSubtype
0x01, // bmCapabilities
1, // bDataInterface
// Abstract Control Management Functional Descriptor, CDC Spec 5.2.3.3, Table 28
4, // bFunctionLength
0x24, // bDescriptorType
0x02, // bDescriptorSubtype
0x06, // bmCapabilities
// Union Functional Descriptor, CDC Spec 5.2.3.8, Table 33
5, // bFunctionLength
0x24, // bDescriptorType
0x06, // bDescriptorSubtype
CDC_STATUS_INTERFACE, // bMasterInterface
CDC_DATA_INTERFACE, // bSlaveInterface0
// endpoint descriptor, USB spec 9.6.6, page 269-271, Table 9-13
7, // bLength
5, // bDescriptorType
CDC_ACM_ENDPOINT | 0x80, // bEndpointAddress
0x03, // bmAttributes (0x03=intr)
CDC_ACM_SIZE, 0, // wMaxPacketSize
64, // bInterval
// interface descriptor, USB spec 9.6.5, page 267-269, Table 9-12
9, // bLength
4, // bDescriptorType
CDC_DATA_INTERFACE, // bInterfaceNumber
0, // bAlternateSetting
2, // bNumEndpoints
0x0A, // bInterfaceClass
0x00, // bInterfaceSubClass
0x00, // bInterfaceProtocol
0, // iInterface
// endpoint descriptor, USB spec 9.6.6, page 269-271, Table 9-13
7, // bLength
5, // bDescriptorType
CDC_RX_ENDPOINT, // bEndpointAddress
0x02, // bmAttributes (0x02=bulk)
CDC_RX_SIZE, 0, // wMaxPacketSize
0, // bInterval
// endpoint descriptor, USB spec 9.6.6, page 269-271, Table 9-13
7, // bLength
5, // bDescriptorType
CDC_TX_ENDPOINT | 0x80, // bEndpointAddress
0x02, // bmAttributes (0x02=bulk)
CDC_TX_SIZE, 0, // wMaxPacketSize
0, // bInterval
#endif // CDC_DATA_INTERFACE
#ifdef CDC2_DATA_INTERFACE
// interface association descriptor, USB ECN, Table 9-Z
8, // bLength
11, // bDescriptorType
CDC2_STATUS_INTERFACE, // bFirstInterface
2, // bInterfaceCount
0x02, // bFunctionClass
0x02, // bFunctionSubClass
0x01, // bFunctionProtocol
0, // iFunction
// interface descriptor, USB spec 9.6.5, page 267-269, Table 9-12
9, // bLength
4, // bDescriptorType
CDC2_STATUS_INTERFACE, // bInterfaceNumber
0, // bAlternateSetting
1, // bNumEndpoints
0x02, // bInterfaceClass
0x02, // bInterfaceSubClass
0x01, // bInterfaceProtocol
0, // iInterface
// CDC Header Functional Descriptor, CDC Spec 5.2.3.1, Table 26
5, // bFunctionLength
0x24, // bDescriptorType
0x00, // bDescriptorSubtype
0x10, 0x01, // bcdCDC
// Call Management Functional Descriptor, CDC Spec 5.2.3.2, Table 27
5, // bFunctionLength
0x24, // bDescriptorType
0x01, // bDescriptorSubtype
0x01, // bmCapabilities
1, // bDataInterface
// Abstract Control Management Functional Descriptor, CDC Spec 5.2.3.3, Table 28
4, // bFunctionLength
0x24, // bDescriptorType
0x02, // bDescriptorSubtype
0x06, // bmCapabilities
// Union Functional Descriptor, CDC Spec 5.2.3.8, Table 33
5, // bFunctionLength
0x24, // bDescriptorType
0x06, // bDescriptorSubtype
CDC2_STATUS_INTERFACE, // bMasterInterface
CDC2_DATA_INTERFACE, // bSlaveInterface0
// endpoint descriptor, USB spec 9.6.6, page 269-271, Table 9-13
7, // bLength
5, // bDescriptorType
CDC2_ACM_ENDPOINT | 0x80, // bEndpointAddress
0x03, // bmAttributes (0x03=intr)
CDC2_ACM_SIZE, 0, // wMaxPacketSize
64, // bInterval
// interface descriptor, USB spec 9.6.5, page 267-269, Table 9-12
9, // bLength
4, // bDescriptorType
CDC2_DATA_INTERFACE, // bInterfaceNumber
0, // bAlternateSetting
2, // bNumEndpoints
0x0A, // bInterfaceClass
0x00, // bInterfaceSubClass
0x00, // bInterfaceProtocol
0, // iInterface
// endpoint descriptor, USB spec 9.6.6, page 269-271, Table 9-13
7, // bLength
5, // bDescriptorType
CDC2_RX_ENDPOINT, // bEndpointAddress
0x02, // bmAttributes (0x02=bulk)
CDC2_RX_SIZE, 0, // wMaxPacketSize
0, // bInterval
// endpoint descriptor, USB spec 9.6.6, page 269-271, Table 9-13
7, // bLength
5, // bDescriptorType
CDC2_TX_ENDPOINT | 0x80, // bEndpointAddress
0x02, // bmAttributes (0x02=bulk)
CDC2_TX_SIZE, 0, // wMaxPacketSize
0, // bInterval
#endif // CDC2_DATA_INTERFACE
#ifdef CDC3_DATA_INTERFACE
// interface association descriptor, USB ECN, Table 9-Z
8, // bLength
11, // bDescriptorType
CDC3_STATUS_INTERFACE, // bFirstInterface
2, // bInterfaceCount
0x02, // bFunctionClass
0x02, // bFunctionSubClass
0x01, // bFunctionProtocol
0, // iFunction
// interface descriptor, USB spec 9.6.5, page 267-269, Table 9-12
9, // bLength
4, // bDescriptorType
CDC3_STATUS_INTERFACE, // bInterfaceNumber
0, // bAlternateSetting
1, // bNumEndpoints
0x02, // bInterfaceClass
0x02, // bInterfaceSubClass
0x01, // bInterfaceProtocol
0, // iInterface
// CDC Header Functional Descriptor, CDC Spec 5.2.3.1, Table 26
5, // bFunctionLength
0x24, // bDescriptorType
0x00, // bDescriptorSubtype
0x10, 0x01, // bcdCDC
// Call Management Functional Descriptor, CDC Spec 5.2.3.2, Table 27
5, // bFunctionLength
0x24, // bDescriptorType
0x01, // bDescriptorSubtype
0x01, // bmCapabilities
1, // bDataInterface
// Abstract Control Management Functional Descriptor, CDC Spec 5.2.3.3, Table 28
4, // bFunctionLength
0x24, // bDescriptorType
0x02, // bDescriptorSubtype
0x06, // bmCapabilities
// Union Functional Descriptor, CDC Spec 5.2.3.8, Table 33
5, // bFunctionLength
0x24, // bDescriptorType
0x06, // bDescriptorSubtype
CDC3_STATUS_INTERFACE, // bMasterInterface
CDC3_DATA_INTERFACE, // bSlaveInterface0
// endpoint descriptor, USB spec 9.6.6, page 269-271, Table 9-13
7, // bLength
5, // bDescriptorType
CDC3_ACM_ENDPOINT | 0x80, // bEndpointAddress
0x03, // bmAttributes (0x03=intr)
CDC3_ACM_SIZE, 0, // wMaxPacketSize
64, // bInterval
// interface descriptor, USB spec 9.6.5, page 267-269, Table 9-12
9, // bLength
4, // bDescriptorType
CDC3_DATA_INTERFACE, // bInterfaceNumber
0, // bAlternateSetting
2, // bNumEndpoints
0x0A, // bInterfaceClass
0x00, // bInterfaceSubClass
0x00, // bInterfaceProtocol
0, // iInterface
// endpoint descriptor, USB spec 9.6.6, page 269-271, Table 9-13
7, // bLength
5, // bDescriptorType
CDC3_RX_ENDPOINT, // bEndpointAddress
0x02, // bmAttributes (0x02=bulk)
CDC3_RX_SIZE, 0, // wMaxPacketSize
0, // bInterval
// endpoint descriptor, USB spec 9.6.6, page 269-271, Table 9-13
7, // bLength
5, // bDescriptorType
CDC3_TX_ENDPOINT | 0x80, // bEndpointAddress
0x02, // bmAttributes (0x02=bulk)
CDC3_TX_SIZE, 0, // wMaxPacketSize
0, // bInterval
#endif // CDC3_DATA_INTERFACE
#ifdef MIDI_INTERFACE
// Standard MS Interface Descriptor,
9, // bLength
4, // bDescriptorType
MIDI_INTERFACE, // bInterfaceNumber
0, // bAlternateSetting
2, // bNumEndpoints
0x01, // bInterfaceClass (0x01 = Audio)
0x03, // bInterfaceSubClass (0x03 = MIDI)
0x00, // bInterfaceProtocol (unused for MIDI)
0, // iInterface
// MIDI MS Interface Header, USB MIDI 6.1.2.1, page 21, Table 6-2
7, // bLength
0x24, // bDescriptorType = CS_INTERFACE
0x01, // bDescriptorSubtype = MS_HEADER
0x00, 0x01, // bcdMSC = revision 01.00
LSB(7+(6+6+9+9)*MIDI_NUM_CABLES), // wTotalLength
MSB(7+(6+6+9+9)*MIDI_NUM_CABLES),
// MIDI IN Jack Descriptor, B.4.3, Table B-7 (embedded), page 40
6, // bLength
0x24, // bDescriptorType = CS_INTERFACE
0x02, // bDescriptorSubtype = MIDI_IN_JACK
0x01, // bJackType = EMBEDDED
1, // bJackID, ID = 1
0x05, // iJack
// MIDI IN Jack Descriptor, B.4.3, Table B-8 (external), page 40
6, // bLength
0x24, // bDescriptorType = CS_INTERFACE
0x02, // bDescriptorSubtype = MIDI_IN_JACK
0x02, // bJackType = EXTERNAL
2, // bJackID, ID = 2
0x05, // iJack
// MIDI OUT Jack Descriptor, B.4.4, Table B-9, page 41
9,
0x24, // bDescriptorType = CS_INTERFACE
0x03, // bDescriptorSubtype = MIDI_OUT_JACK
0x01, // bJackType = EMBEDDED
3, // bJackID, ID = 3
1, // bNrInputPins = 1 pin
2, // BaSourceID(1) = 2
1, // BaSourcePin(1) = first pin
0x05, // iJack
// MIDI OUT Jack Descriptor, B.4.4, Table B-10, page 41
9,
0x24, // bDescriptorType = CS_INTERFACE
0x03, // bDescriptorSubtype = MIDI_OUT_JACK
0x02, // bJackType = EXTERNAL
4, // bJackID, ID = 4
1, // bNrInputPins = 1 pin
1, // BaSourceID(1) = 1
1, // BaSourcePin(1) = first pin
0x05, // iJack
#if MIDI_NUM_CABLES >= 2
#define MIDI_INTERFACE_JACK_PAIR(a, b, c, d, e) \
6, 0x24, 0x02, 0x01, (a), (e), \
6, 0x24, 0x02, 0x02, (b), (e), \
9, 0x24, 0x03, 0x01, (c), 1, (b), 1, (e), \
9, 0x24, 0x03, 0x02, (d), 1, (a), 1, (e),
MIDI_INTERFACE_JACK_PAIR(5, 6, 7, 8, 0x06)
#endif
#if MIDI_NUM_CABLES >= 3
MIDI_INTERFACE_JACK_PAIR(9, 10, 11, 12, 0x07)
#endif
#if MIDI_NUM_CABLES >= 4
MIDI_INTERFACE_JACK_PAIR(13, 14, 15, 16, 0x08)
#endif
#if MIDI_NUM_CABLES >= 5
MIDI_INTERFACE_JACK_PAIR(17, 18, 19, 20, 0x09)
#endif
#if MIDI_NUM_CABLES >= 6
MIDI_INTERFACE_JACK_PAIR(21, 22, 23, 24, 0x0A)
#endif
#if MIDI_NUM_CABLES >= 7
MIDI_INTERFACE_JACK_PAIR(25, 26, 27, 28, 0x0B)
#endif
#if MIDI_NUM_CABLES >= 8
MIDI_INTERFACE_JACK_PAIR(29, 30, 31, 32, 0x0C)
#endif
#if MIDI_NUM_CABLES >= 9
MIDI_INTERFACE_JACK_PAIR(33, 34, 35, 36, 0x0D)
#endif
#if MIDI_NUM_CABLES >= 10
MIDI_INTERFACE_JACK_PAIR(37, 38, 39, 40, 0x0E)
#endif
#if MIDI_NUM_CABLES >= 11
MIDI_INTERFACE_JACK_PAIR(41, 42, 43, 44, 0x0F)
#endif
#if MIDI_NUM_CABLES >= 12
MIDI_INTERFACE_JACK_PAIR(45, 46, 47, 48, 0x10)
#endif
#if MIDI_NUM_CABLES >= 13
MIDI_INTERFACE_JACK_PAIR(49, 50, 51, 52, 0x11)
#endif
#if MIDI_NUM_CABLES >= 14
MIDI_INTERFACE_JACK_PAIR(53, 54, 55, 56, 0x12)
#endif
#if MIDI_NUM_CABLES >= 15
MIDI_INTERFACE_JACK_PAIR(57, 58, 59, 60, 0x13)
#endif
#if MIDI_NUM_CABLES >= 16
MIDI_INTERFACE_JACK_PAIR(61, 62, 63, 64, 0x14)
#endif
// Standard Bulk OUT Endpoint Descriptor, B.5.1, Table B-11, pae 42
9, // bLength
5, // bDescriptorType = ENDPOINT
MIDI_RX_ENDPOINT, // bEndpointAddress
0x02, // bmAttributes (0x02=bulk)
MIDI_RX_SIZE, 0, // wMaxPacketSize
0, // bInterval
0, // bRefresh
0, // bSynchAddress
// Class-specific MS Bulk OUT Endpoint Descriptor, B.5.2, Table B-12, page 42
4+MIDI_NUM_CABLES, // bLength
0x25, // bDescriptorSubtype = CS_ENDPOINT
0x01, // bJackType = MS_GENERAL
MIDI_NUM_CABLES, // bNumEmbMIDIJack = number of jacks
1, // BaAssocJackID(1) = jack ID #1
#if MIDI_NUM_CABLES >= 2
5,
#endif
#if MIDI_NUM_CABLES >= 3
9,
#endif
#if MIDI_NUM_CABLES >= 4
13,
#endif
#if MIDI_NUM_CABLES >= 5
17,
#endif
#if MIDI_NUM_CABLES >= 6
21,
#endif
#if MIDI_NUM_CABLES >= 7
25,
#endif
#if MIDI_NUM_CABLES >= 8
29,
#endif
#if MIDI_NUM_CABLES >= 9
33,
#endif
#if MIDI_NUM_CABLES >= 10
37,
#endif
#if MIDI_NUM_CABLES >= 11
41,
#endif
#if MIDI_NUM_CABLES >= 12
45,
#endif
#if MIDI_NUM_CABLES >= 13
49,
#endif
#if MIDI_NUM_CABLES >= 14
53,
#endif
#if MIDI_NUM_CABLES >= 15
57,
#endif
#if MIDI_NUM_CABLES >= 16
61,
#endif
// Standard Bulk IN Endpoint Descriptor, B.5.1, Table B-11, pae 42
9, // bLength
5, // bDescriptorType = ENDPOINT
MIDI_TX_ENDPOINT | 0x80, // bEndpointAddress
0x02, // bmAttributes (0x02=bulk)
MIDI_TX_SIZE, 0, // wMaxPacketSize
0, // bInterval
0, // bRefresh
0, // bSynchAddress
// Class-specific MS Bulk IN Endpoint Descriptor, B.5.2, Table B-12, page 42
4+MIDI_NUM_CABLES, // bLength
0x25, // bDescriptorSubtype = CS_ENDPOINT
0x01, // bJackType = MS_GENERAL
MIDI_NUM_CABLES, // bNumEmbMIDIJack = number of jacks
3, // BaAssocJackID(1) = jack ID #3
#if MIDI_NUM_CABLES >= 2
7,
#endif
#if MIDI_NUM_CABLES >= 3
11,
#endif
#if MIDI_NUM_CABLES >= 4
15,
#endif
#if MIDI_NUM_CABLES >= 5
19,
#endif
#if MIDI_NUM_CABLES >= 6
23,
#endif
#if MIDI_NUM_CABLES >= 7
27,
#endif
#if MIDI_NUM_CABLES >= 8
31,
#endif
#if MIDI_NUM_CABLES >= 9
35,
#endif
#if MIDI_NUM_CABLES >= 10
39,
#endif
#if MIDI_NUM_CABLES >= 11
43,
#endif
#if MIDI_NUM_CABLES >= 12
47,
#endif
#if MIDI_NUM_CABLES >= 13
51,
#endif
#if MIDI_NUM_CABLES >= 14
55,
#endif
#if MIDI_NUM_CABLES >= 15
59,
#endif
#if MIDI_NUM_CABLES >= 16
63,
#endif
#endif // MIDI_INTERFACE
#ifdef KEYBOARD_INTERFACE
// interface descriptor, USB spec 9.6.5, page 267-269, Table 9-12
9, // bLength
4, // bDescriptorType
KEYBOARD_INTERFACE, // bInterfaceNumber
0, // bAlternateSetting
1, // bNumEndpoints
0x03, // bInterfaceClass (0x03 = HID)
0x01, // bInterfaceSubClass (0x01 = Boot)
0x01, // bInterfaceProtocol (0x01 = Keyboard)
0, // iInterface
// HID interface descriptor, HID 1.11 spec, section 6.2.1
9, // bLength
0x21, // bDescriptorType
0x11, 0x01, // bcdHID
0, // bCountryCode
1, // bNumDescriptors
0x22, // bDescriptorType
LSB(sizeof(keyboard_report_desc)), // wDescriptorLength
MSB(sizeof(keyboard_report_desc)),
// endpoint descriptor, USB spec 9.6.6, page 269-271, Table 9-13
7, // bLength
5, // bDescriptorType
KEYBOARD_ENDPOINT | 0x80, // bEndpointAddress
0x03, // bmAttributes (0x03=intr)
KEYBOARD_SIZE, 0, // wMaxPacketSize
KEYBOARD_INTERVAL, // bInterval
#endif // KEYBOARD_INTERFACE
#ifdef MOUSE_INTERFACE
// interface descriptor, USB spec 9.6.5, page 267-269, Table 9-12
9, // bLength
4, // bDescriptorType
MOUSE_INTERFACE, // bInterfaceNumber
0, // bAlternateSetting
1, // bNumEndpoints
0x03, // bInterfaceClass (0x03 = HID)
0x00, // bInterfaceSubClass (0x01 = Boot)
0x00, // bInterfaceProtocol (0x02 = Mouse)
0, // iInterface
// HID interface descriptor, HID 1.11 spec, section 6.2.1
9, // bLength
0x21, // bDescriptorType
0x11, 0x01, // bcdHID
0, // bCountryCode
1, // bNumDescriptors
0x22, // bDescriptorType
LSB(sizeof(mouse_report_desc)), // wDescriptorLength
MSB(sizeof(mouse_report_desc)),
// endpoint descriptor, USB spec 9.6.6, page 269-271, Table 9-13
7, // bLength
5, // bDescriptorType
MOUSE_ENDPOINT | 0x80, // bEndpointAddress
0x03, // bmAttributes (0x03=intr)
MOUSE_SIZE, 0, // wMaxPacketSize
MOUSE_INTERVAL, // bInterval
#endif // MOUSE_INTERFACE
#ifdef RAWHID_INTERFACE
// interface descriptor, USB spec 9.6.5, page 267-269, Table 9-12
9, // bLength
4, // bDescriptorType
RAWHID_INTERFACE, // bInterfaceNumber
0, // bAlternateSetting
2, // bNumEndpoints
0x03, // bInterfaceClass (0x03 = HID)
0x00, // bInterfaceSubClass
0x00, // bInterfaceProtocol
0, // iInterface
// HID interface descriptor, HID 1.11 spec, section 6.2.1
9, // bLength
0x21, // bDescriptorType
0x11, 0x01, // bcdHID
0, // bCountryCode
1, // bNumDescriptors
0x22, // bDescriptorType
LSB(sizeof(rawhid_report_desc)), // wDescriptorLength
MSB(sizeof(rawhid_report_desc)),
// endpoint descriptor, USB spec 9.6.6, page 269-271, Table 9-13
7, // bLength
5, // bDescriptorType
RAWHID_TX_ENDPOINT | 0x80, // bEndpointAddress
0x03, // bmAttributes (0x03=intr)
RAWHID_TX_SIZE, 0, // wMaxPacketSize
RAWHID_TX_INTERVAL, // bInterval
// endpoint descriptor, USB spec 9.6.6, page 269-271, Table 9-13
7, // bLength
5, // bDescriptorType
RAWHID_RX_ENDPOINT, // bEndpointAddress
0x03, // bmAttributes (0x03=intr)
RAWHID_RX_SIZE, 0, // wMaxPacketSize
RAWHID_RX_INTERVAL, // bInterval
#endif // RAWHID_INTERFACE
#ifdef FLIGHTSIM_INTERFACE
// interface descriptor, USB spec 9.6.5, page 267-269, Table 9-12
9, // bLength
4, // bDescriptorType
FLIGHTSIM_INTERFACE, // bInterfaceNumber
0, // bAlternateSetting
2, // bNumEndpoints
0x03, // bInterfaceClass (0x03 = HID)
0x00, // bInterfaceSubClass
0x00, // bInterfaceProtocol
0, // iInterface
// HID interface descriptor, HID 1.11 spec, section 6.2.1
9, // bLength
0x21, // bDescriptorType
0x11, 0x01, // bcdHID
0, // bCountryCode
1, // bNumDescriptors
0x22, // bDescriptorType
LSB(sizeof(flightsim_report_desc)), // wDescriptorLength
MSB(sizeof(flightsim_report_desc)),
// endpoint descriptor, USB spec 9.6.6, page 269-271, Table 9-13
7, // bLength
5, // bDescriptorType
FLIGHTSIM_TX_ENDPOINT | 0x80, // bEndpointAddress
0x03, // bmAttributes (0x03=intr)
FLIGHTSIM_TX_SIZE, 0, // wMaxPacketSize
FLIGHTSIM_TX_INTERVAL, // bInterval
// endpoint descriptor, USB spec 9.6.6, page 269-271, Table 9-13
7, // bLength
5, // bDescriptorType
FLIGHTSIM_RX_ENDPOINT, // bEndpointAddress
0x03, // bmAttributes (0x03=intr)
FLIGHTSIM_RX_SIZE, 0, // wMaxPacketSize
FLIGHTSIM_RX_INTERVAL, // bInterval
#endif // FLIGHTSIM_INTERFACE
#ifdef SEREMU_INTERFACE
// interface descriptor, USB spec 9.6.5, page 267-269, Table 9-12
9, // bLength
4, // bDescriptorType
SEREMU_INTERFACE, // bInterfaceNumber
0, // bAlternateSetting
2, // bNumEndpoints
0x03, // bInterfaceClass (0x03 = HID)
0x00, // bInterfaceSubClass
0x00, // bInterfaceProtocol
0, // iInterface
// HID interface descriptor, HID 1.11 spec, section 6.2.1
9, // bLength
0x21, // bDescriptorType
0x11, 0x01, // bcdHID
0, // bCountryCode
1, // bNumDescriptors
0x22, // bDescriptorType
LSB(sizeof(seremu_report_desc)), // wDescriptorLength
MSB(sizeof(seremu_report_desc)),
// endpoint descriptor, USB spec 9.6.6, page 269-271, Table 9-13
7, // bLength
5, // bDescriptorType
SEREMU_TX_ENDPOINT | 0x80, // bEndpointAddress
0x03, // bmAttributes (0x03=intr)
SEREMU_TX_SIZE, 0, // wMaxPacketSize
SEREMU_TX_INTERVAL, // bInterval
// endpoint descriptor, USB spec 9.6.6, page 269-271, Table 9-13
7, // bLength
5, // bDescriptorType
SEREMU_RX_ENDPOINT, // bEndpointAddress
0x03, // bmAttributes (0x03=intr)
SEREMU_RX_SIZE, 0, // wMaxPacketSize
SEREMU_RX_INTERVAL, // bInterval
#endif // SEREMU_INTERFACE
#ifdef JOYSTICK_INTERFACE
// interface descriptor, USB spec 9.6.5, page 267-269, Table 9-12
9, // bLength
4, // bDescriptorType
JOYSTICK_INTERFACE, // bInterfaceNumber
0, // bAlternateSetting
1, // bNumEndpoints
0x03, // bInterfaceClass (0x03 = HID)
0x00, // bInterfaceSubClass
0x00, // bInterfaceProtocol
0, // iInterface
// HID interface descriptor, HID 1.11 spec, section 6.2.1
9, // bLength
0x21, // bDescriptorType
0x11, 0x01, // bcdHID
0, // bCountryCode
1, // bNumDescriptors
0x22, // bDescriptorType
LSB(sizeof(joystick_report_desc)), // wDescriptorLength
MSB(sizeof(joystick_report_desc)),
// endpoint descriptor, USB spec 9.6.6, page 269-271, Table 9-13
7, // bLength
5, // bDescriptorType
JOYSTICK_ENDPOINT | 0x80, // bEndpointAddress
0x03, // bmAttributes (0x03=intr)
JOYSTICK_SIZE, 0, // wMaxPacketSize
JOYSTICK_INTERVAL, // bInterval
#endif // JOYSTICK_INTERFACE
#ifdef MTP_INTERFACE
// interface descriptor, USB spec 9.6.5, page 267-269, Table 9-12
9, // bLength
4, // bDescriptorType
MTP_INTERFACE, // bInterfaceNumber
0, // bAlternateSetting
3, // bNumEndpoints
0x06, // bInterfaceClass (0x06 = still image)
0x01, // bInterfaceSubClass
0x01, // bInterfaceProtocol
0, // iInterface
// endpoint descriptor, USB spec 9.6.6, page 269-271, Table 9-13
7, // bLength
5, // bDescriptorType
MTP_TX_ENDPOINT | 0x80, // bEndpointAddress
0x02, // bmAttributes (0x02=bulk)
MTP_TX_SIZE, 0, // wMaxPacketSize
0, // bInterval
// endpoint descriptor, USB spec 9.6.6, page 269-271, Table 9-13
7, // bLength
5, // bDescriptorType
MTP_RX_ENDPOINT, // bEndpointAddress
0x02, // bmAttributes (0x02=bulk)
MTP_RX_SIZE, 0, // wMaxPacketSize
0, // bInterval
// endpoint descriptor, USB spec 9.6.6, page 269-271, Table 9-13
7, // bLength
5, // bDescriptorType
MTP_EVENT_ENDPOINT | 0x80, // bEndpointAddress
0x03, // bmAttributes (0x03=intr)
MTP_EVENT_SIZE, 0, // wMaxPacketSize
MTP_EVENT_INTERVAL, // bInterval
#endif // MTP_INTERFACE
#ifdef KEYMEDIA_INTERFACE
// interface descriptor, USB spec 9.6.5, page 267-269, Table 9-12
9, // bLength
4, // bDescriptorType
KEYMEDIA_INTERFACE, // bInterfaceNumber
0, // bAlternateSetting
1, // bNumEndpoints
0x03, // bInterfaceClass (0x03 = HID)
0x00, // bInterfaceSubClass
0x00, // bInterfaceProtocol
0, // iInterface
// HID interface descriptor, HID 1.11 spec, section 6.2.1
9, // bLength
0x21, // bDescriptorType
0x11, 0x01, // bcdHID
0, // bCountryCode
1, // bNumDescriptors
0x22, // bDescriptorType
LSB(sizeof(keymedia_report_desc)), // wDescriptorLength
MSB(sizeof(keymedia_report_desc)),
// endpoint descriptor, USB spec 9.6.6, page 269-271, Table 9-13
7, // bLength
5, // bDescriptorType
KEYMEDIA_ENDPOINT | 0x80, // bEndpointAddress
0x03, // bmAttributes (0x03=intr)
KEYMEDIA_SIZE, 0, // wMaxPacketSize
KEYMEDIA_INTERVAL, // bInterval
#endif // KEYMEDIA_INTERFACE
#ifdef AUDIO_INTERFACE
// interface association descriptor, USB ECN, Table 9-Z
8, // bLength
11, // bDescriptorType
AUDIO_INTERFACE, // bFirstInterface
3, // bInterfaceCount
0x01, // bFunctionClass
0x01, // bFunctionSubClass
0x00, // bFunctionProtocol
0, // iFunction
// Standard AudioControl (AC) Interface Descriptor
// USB DCD for Audio Devices 1.0, Table 4-1, page 36
9, // bLength
4, // bDescriptorType, 4 = INTERFACE
AUDIO_INTERFACE, // bInterfaceNumber
0, // bAlternateSetting
0, // bNumEndpoints
1, // bInterfaceClass, 1 = AUDIO
1, // bInterfaceSubclass, 1 = AUDIO_CONTROL
0, // bInterfaceProtocol
0, // iInterface
// Class-specific AC Interface Header Descriptor
// USB DCD for Audio Devices 1.0, Table 4-2, page 37-38
10, // bLength
0x24, // bDescriptorType, 0x24 = CS_INTERFACE
0x01, // bDescriptorSubtype, 1 = HEADER
0x00, 0x01, // bcdADC (version 1.0)
LSB(62), MSB(62), // wTotalLength
2, // bInCollection
AUDIO_INTERFACE+1, // baInterfaceNr(1) - Transmit to PC
AUDIO_INTERFACE+2, // baInterfaceNr(2) - Receive from PC
// Input Terminal Descriptor
// USB DCD for Audio Devices 1.0, Table 4-3, page 39
12, // bLength
0x24, // bDescriptorType, 0x24 = CS_INTERFACE
0x02, // bDescriptorSubType, 2 = INPUT_TERMINAL
1, // bTerminalID
//0x01, 0x02, // wTerminalType, 0x0201 = MICROPHONE
//0x03, 0x06, // wTerminalType, 0x0603 = Line Connector
0x02, 0x06, // wTerminalType, 0x0602 = Digital Audio
0, // bAssocTerminal, 0 = unidirectional
2, // bNrChannels
0x03, 0x00, // wChannelConfig, 0x0003 = Left & Right Front
0, // iChannelNames
0, // iTerminal
// Output Terminal Descriptor
// USB DCD for Audio Devices 1.0, Table 4-4, page 40
9, // bLength
0x24, // bDescriptorType, 0x24 = CS_INTERFACE
3, // bDescriptorSubtype, 3 = OUTPUT_TERMINAL
2, // bTerminalID
0x01, 0x01, // wTerminalType, 0x0101 = USB_STREAMING
0, // bAssocTerminal, 0 = unidirectional
1, // bCSourceID, connected to input terminal, ID=1
0, // iTerminal
// Input Terminal Descriptor
// USB DCD for Audio Devices 1.0, Table 4-3, page 39
12, // bLength
0x24, // bDescriptorType, 0x24 = CS_INTERFACE
2, // bDescriptorSubType, 2 = INPUT_TERMINAL
3, // bTerminalID
0x01, 0x01, // wTerminalType, 0x0101 = USB_STREAMING
0, // bAssocTerminal, 0 = unidirectional
2, // bNrChannels
0x03, 0x00, // wChannelConfig, 0x0003 = Left & Right Front
0, // iChannelNames
0, // iTerminal
// Volume feature descriptor
10, // bLength
0x24, // bDescriptorType = CS_INTERFACE
0x06, // bDescriptorSubType = FEATURE_UNIT
0x31, // bUnitID
0x03, // bSourceID (Input Terminal)
0x01, // bControlSize (each channel is 1 byte, 3 channels)
0x01, // bmaControls(0) Master: Mute
0x02, // bmaControls(1) Left: Volume
0x02, // bmaControls(2) Right: Volume
0x00, // iFeature
// Output Terminal Descriptor
// USB DCD for Audio Devices 1.0, Table 4-4, page 40
9, // bLength
0x24, // bDescriptorType, 0x24 = CS_INTERFACE
3, // bDescriptorSubtype, 3 = OUTPUT_TERMINAL
4, // bTerminalID
//0x02, 0x03, // wTerminalType, 0x0302 = Headphones
0x02, 0x06, // wTerminalType, 0x0602 = Digital Audio
0, // bAssocTerminal, 0 = unidirectional
0x31, // bCSourceID, connected to feature, ID=31
0, // iTerminal
// Standard AS Interface Descriptor
// USB DCD for Audio Devices 1.0, Section 4.5.1, Table 4-18, page 59
// Alternate 0: default setting, disabled zero bandwidth
9, // bLenght
4, // bDescriptorType = INTERFACE
AUDIO_INTERFACE+1, // bInterfaceNumber
0, // bAlternateSetting
0, // bNumEndpoints
1, // bInterfaceClass, 1 = AUDIO
2, // bInterfaceSubclass, 2 = AUDIO_STREAMING
0, // bInterfaceProtocol
0, // iInterface
// Alternate 1: streaming data
9, // bLenght
4, // bDescriptorType = INTERFACE
AUDIO_INTERFACE+1, // bInterfaceNumber
1, // bAlternateSetting
1, // bNumEndpoints
1, // bInterfaceClass, 1 = AUDIO
2, // bInterfaceSubclass, 2 = AUDIO_STREAMING
0, // bInterfaceProtocol
0, // iInterface
// Class-Specific AS Interface Descriptor
// USB DCD for Audio Devices 1.0, Section 4.5.2, Table 4-19, page 60
7, // bLength
0x24, // bDescriptorType = CS_INTERFACE
1, // bDescriptorSubtype, 1 = AS_GENERAL
2, // bTerminalLink: Terminal ID = 2
3, // bDelay (approx 3ms delay, audio lib updates)
0x01, 0x00, // wFormatTag, 0x0001 = PCM
// Type I Format Descriptor
// USB DCD for Audio Data Formats 1.0, Section 2.2.5, Table 2-1, page 10
11, // bLength
0x24, // bDescriptorType = CS_INTERFACE
2, // bDescriptorSubtype = FORMAT_TYPE
1, // bFormatType = FORMAT_TYPE_I
2, // bNrChannels = 2
2, // bSubFrameSize = 2 byte
16, // bBitResolution = 16 bits
1, // bSamFreqType = 1 frequency
LSB(44100), MSB(44100), 0, // tSamFreq
// Standard AS Isochronous Audio Data Endpoint Descriptor
// USB DCD for Audio Devices 1.0, Section 4.6.1.1, Table 4-20, page 61-62
9, // bLength
5, // bDescriptorType, 5 = ENDPOINT_DESCRIPTOR
AUDIO_TX_ENDPOINT | 0x80, // bEndpointAddress
0x09, // bmAttributes = isochronous, adaptive
LSB(AUDIO_TX_SIZE), MSB(AUDIO_TX_SIZE), // wMaxPacketSize
1, // bInterval, 1 = every frame
0, // bRefresh
0, // bSynchAddress
// Class-Specific AS Isochronous Audio Data Endpoint Descriptor
// USB DCD for Audio Devices 1.0, Section 4.6.1.2, Table 4-21, page 62-63
7, // bLength
0x25, // bDescriptorType, 0x25 = CS_ENDPOINT
1, // bDescriptorSubtype, 1 = EP_GENERAL
0x00, // bmAttributes
0, // bLockDelayUnits, 1 = ms
0x00, 0x00, // wLockDelay
// Standard AS Interface Descriptor
// USB DCD for Audio Devices 1.0, Section 4.5.1, Table 4-18, page 59
// Alternate 0: default setting, disabled zero bandwidth
9, // bLenght
4, // bDescriptorType = INTERFACE
AUDIO_INTERFACE+2, // bInterfaceNumber
0, // bAlternateSetting
0, // bNumEndpoints
1, // bInterfaceClass, 1 = AUDIO
2, // bInterfaceSubclass, 2 = AUDIO_STREAMING
0, // bInterfaceProtocol
0, // iInterface
// Alternate 1: streaming data
9, // bLenght
4, // bDescriptorType = INTERFACE
AUDIO_INTERFACE+2, // bInterfaceNumber
1, // bAlternateSetting
2, // bNumEndpoints
1, // bInterfaceClass, 1 = AUDIO
2, // bInterfaceSubclass, 2 = AUDIO_STREAMING
0, // bInterfaceProtocol
0, // iInterface
// Class-Specific AS Interface Descriptor
// USB DCD for Audio Devices 1.0, Section 4.5.2, Table 4-19, page 60
7, // bLength
0x24, // bDescriptorType = CS_INTERFACE
1, // bDescriptorSubtype, 1 = AS_GENERAL
3, // bTerminalLink: Terminal ID = 3
3, // bDelay (approx 3ms delay, audio lib updates)
0x01, 0x00, // wFormatTag, 0x0001 = PCM
// Type I Format Descriptor
// USB DCD for Audio Data Formats 1.0, Section 2.2.5, Table 2-1, page 10
11, // bLength
0x24, // bDescriptorType = CS_INTERFACE
2, // bDescriptorSubtype = FORMAT_TYPE
1, // bFormatType = FORMAT_TYPE_I
2, // bNrChannels = 2
2, // bSubFrameSize = 2 byte
16, // bBitResolution = 16 bits
1, // bSamFreqType = 1 frequency
LSB(44100), MSB(44100), 0, // tSamFreq
// Standard AS Isochronous Audio Data Endpoint Descriptor
// USB DCD for Audio Devices 1.0, Section 4.6.1.1, Table 4-20, page 61-62
9, // bLength
5, // bDescriptorType, 5 = ENDPOINT_DESCRIPTOR
AUDIO_RX_ENDPOINT, // bEndpointAddress
0x05, // bmAttributes = isochronous, asynchronous
LSB(AUDIO_RX_SIZE), MSB(AUDIO_RX_SIZE), // wMaxPacketSize
1, // bInterval, 1 = every frame
0, // bRefresh
AUDIO_SYNC_ENDPOINT | 0x80, // bSynchAddress
// Class-Specific AS Isochronous Audio Data Endpoint Descriptor
// USB DCD for Audio Devices 1.0, Section 4.6.1.2, Table 4-21, page 62-63
7, // bLength
0x25, // bDescriptorType, 0x25 = CS_ENDPOINT
1, // bDescriptorSubtype, 1 = EP_GENERAL
0x00, // bmAttributes
0, // bLockDelayUnits, 1 = ms
0x00, 0x00, // wLockDelay
// Standard AS Isochronous Audio Synch Endpoint Descriptor
// USB DCD for Audio Devices 1.0, Section 4.6.2.1, Table 4-22, page 63-64
9, // bLength
5, // bDescriptorType, 5 = ENDPOINT_DESCRIPTOR
AUDIO_SYNC_ENDPOINT | 0x80, // bEndpointAddress
0x11, // bmAttributes = isochronous, feedback
3, 0, // wMaxPacketSize, 3 bytes
1, // bInterval, 1 = every frame
5, // bRefresh, 5 = 32ms
0, // bSynchAddress
#endif
#ifdef MULTITOUCH_INTERFACE
// interface descriptor, USB spec 9.6.5, page 267-269, Table 9-12
9, // bLength
4, // bDescriptorType
MULTITOUCH_INTERFACE, // bInterfaceNumber
0, // bAlternateSetting
1, // bNumEndpoints
0x03, // bInterfaceClass (0x03 = HID)
0x00, // bInterfaceSubClass
0x00, // bInterfaceProtocol
0, // iInterface
// HID interface descriptor, HID 1.11 spec, section 6.2.1
9, // bLength
0x21, // bDescriptorType
0x11, 0x01, // bcdHID
0, // bCountryCode
1, // bNumDescriptors
0x22, // bDescriptorType
LSB(sizeof(multitouch_report_desc)), // wDescriptorLength
MSB(sizeof(multitouch_report_desc)),
// endpoint descriptor, USB spec 9.6.6, page 269-271, Table 9-13
7, // bLength
5, // bDescriptorType
MULTITOUCH_ENDPOINT | 0x80, // bEndpointAddress
0x03, // bmAttributes (0x03=intr)
MULTITOUCH_SIZE, 0, // wMaxPacketSize
1, // bInterval
#endif // KEYMEDIA_INTERFACE
#ifdef XINPUT_INTERFACE
// Interface 0
9, // bLength (length of interface descriptor 9 bytes)
4, // bDescriptorType (4 is interface)
0, // bInterfaceNumber (This is interface 0)
0, // bAlternateSetting (used to select alternate setting. notused)
2, // bNumEndpoints (this interface has 2 endpoints)
0xFF, // bInterfaceClass (Vendor Defined is 255)
0x5D, // bInterfaceSubClass
0x01, // bInterfaceProtocol
0, // iInterface (Index of string descriptor for describing this notused)
// Some sort of common descriptor? I pulled this from Message Analyzer dumps of an actual controller
17,33,0,1,1,37,129,20,0,0,0,0,19,2,8,0,0,
// Endpoint 1 IN
7, // bLength (length of ep1in in descriptor 7 bytes)
5, // bDescriptorType (5 is endpoint)
0x81, // bEndpointAddress (0x81 is IN1)
0x03, // bmAttributes (0x03 is interrupt no synch, usage type data)
0x20, 0x00, // wMaxPacketSize (0x0020 is 1x32 bytes)
4, // bInterval (polling interval in frames 4 frames)
// Endpoint 2 OUT
7, // bLength (length of ep2out in descriptor 7 bytes)
5, // bDescriptorType (5 is endpoint)
0x02, // bEndpointAddress (0x02 is OUT2)
0x03, // bmAttributes (0x03 is interrupt no synch, usage type data)
0x20, 0x00, // wMaxPacketSize (0x0020 is 1x32 bytes)
8, // bInterval (polling interval in frames 8 frames)
// Interface 1
9, // bLength (length of interface descriptor 9 bytes)
4, // bDescriptorType (4 is interface)
1, // bInterfaceNumber (This is interface 1)
0, // bAlternateSetting (used to select alternate setting. notused)
4, // bNumEndpoints (this interface has 4 endpoints)
0xFF, // bInterfaceClass (Vendor Defined is 255)
0x5D, // bInterfaceSubClass (93)
0x03, // bInterfaceProtocol (3)
0, // iInterface (Index of string descriptor for describing this notused)
// A different common descriptor? I pulled this from Message Analyzer dumps of an actual controller
27,33,0,1,1,1,131,64,1,4,32,22,133,0,0,0,0,0,0,22,5,0,0,0,0,0,0,
// Endpoint 3 IN
7, // bLength (length of ep3in descriptor 7 bytes)
5, // bDescriptorType (5 is endpoint)
0x83, // bEndpointAddress (0x83 is IN3)
0x03, // bmAttributes (0x03 is interrupt no synch, usage type data)
0x20, 0x00, // wMaxPacketSize (0x0020 is 1x32 bytes)
2, // bInterval (polling interval in frames 2 frames)
// Endpoint 4 OUT
7, // bLength (length of ep4out descriptor 7 bytes)
5, // bDescriptorType (5 is endpoint)
0x04, // bEndpointAddress (0x04 is OUT4)
0x03, // bmAttributes (0x03 is interrupt no synch, usage type data)
0x20, 0x00, // wMaxPacketSize (0x0020 is 1x32 bytes)
4, // bInterval (polling interval in frames 4 frames)
// Endpoint 5 IN
7, // bLength (length of ep5in descriptor 7 bytes)
5, // bDescriptorType (5 is endpoint)
0x85, // bEndpointAddress (0x85 is IN5)
0x03, // bmAttributes (0x03 is interrupt no synch, usage type data)
0x20, 0x00, // wMaxPacketSize (0x0020 is 1x32 bytes)
64, // bInterval (polling interval in frames 64 frames)
// Endpoint 5 OUT (shares endpoint number with previous)
7, // bLength (length of ep5out descriptor 7 bytes)
5, // bDescriptorType (5 is endpoint)
0x05, // bEndpointAddress (0x05 is OUT5)
0x03, // bmAttributes (0x03 is interrupt no synch, usage type data)
0x20, 0x00, // wMaxPacketSize (0x0020 is 1x32 bytes)
16, // bInterval (polling interval in frames 16 frames)
// Interface 2
9, // bLength (length of interface descriptor 9 bytes)
4, // bDescriptorType (4 is interface)
2, // bInterfaceNumber (This is interface 2)
0, // bAlternateSetting (used to select alternate setting. notused)
1, // bNumEndpoints (this interface has 4 endpoints)
0xFF, // bInterfaceClass (Vendor Defined is 255)
0x5D, // bInterfaceSubClass (93)
0x02, // bInterfaceProtocol (3)
0, // iInterface (Index of string descriptor for describing this notused)
// Common Descriptor. Seems that these come after every interface description?
9,33,0,1,1,34,134,7,0,
// Endpoint 6 IN
7, // bLength (length of ep6in descriptor 7 bytes)
5, // bDescriptorType (5 is endpoint)
0x86, // bEndpointAddress (0x86 is IN6)
0x03, // bmAttributes (0x03 is interrupt no synch, usage type data)
0x20, 0x00, // wMaxPacketSize (0x0020 is 1x32 bytes)
16, // bInterval (polling interval in frames 64 frames)+
// Interface 3
// This is the interface on which all the security handshaking takes place
// We don't use this but it could be used for man-in-the-middle stuff
9, // bLength (length of interface descriptor 9 bytes)
4, // bDescriptorType (4 is interface)
3, // bInterfaceNumber (This is interface 3)
0, // bAlternateSetting (used to select alternate setting. notused)
0, // bNumEndpoints (this interface has 0 endpoints ???)
0xFF, // bInterfaceClass (Vendor Defined is 255)
0xFD, // bInterfaceSubClass (253)
0x13, // bInterfaceProtocol (19)
4, // iInterface (Computer never asks for this, but an x360 would. so include one day?)
// Another interface another Common Descriptor
6,65,0,1,1,3
#endif // XINPUT_INTERFACE
};
// **************************************************************
// String Descriptors
// **************************************************************
// The descriptors above can provide human readable strings,
// referenced by index numbers. These descriptors are the
// actual string data
/* defined in usb_names.h
struct usb_string_descriptor_struct {
uint8_t bLength;
uint8_t bDescriptorType;
uint16_t wString[];
};
*/
extern struct usb_string_descriptor_struct usb_string_manufacturer_name
__attribute__ ((weak, alias("usb_string_manufacturer_name_default")));
extern struct usb_string_descriptor_struct usb_string_product_name
__attribute__ ((weak, alias("usb_string_product_name_default")));
extern struct usb_string_descriptor_struct usb_string_serial_number
__attribute__ ((weak, alias("usb_string_serial_number_default")));
#ifdef MIDI_INTERFACE
extern struct usb_string_descriptor_struct usb_string_midi_port1
__attribute__ ((weak, alias("usb_string_midi_port1_default")));
#if MIDI_NUM_CABLES >= 2
extern struct usb_string_descriptor_struct usb_string_midi_port2
__attribute__ ((weak, alias("usb_string_midi_port2_default")));
#endif
#if MIDI_NUM_CABLES >= 3
extern struct usb_string_descriptor_struct usb_string_midi_port3
__attribute__ ((weak, alias("usb_string_midi_port3_default")));
#endif
#if MIDI_NUM_CABLES >= 4
extern struct usb_string_descriptor_struct usb_string_midi_port4
__attribute__ ((weak, alias("usb_string_midi_port4_default")));
#endif
#if MIDI_NUM_CABLES >= 5
extern struct usb_string_descriptor_struct usb_string_midi_port5
__attribute__ ((weak, alias("usb_string_midi_port5_default")));
#endif
#if MIDI_NUM_CABLES >= 6
extern struct usb_string_descriptor_struct usb_string_midi_port6
__attribute__ ((weak, alias("usb_string_midi_port6_default")));
#endif
#if MIDI_NUM_CABLES >= 7
extern struct usb_string_descriptor_struct usb_string_midi_port7
__attribute__ ((weak, alias("usb_string_midi_port7_default")));
#endif
#if MIDI_NUM_CABLES >= 8
extern struct usb_string_descriptor_struct usb_string_midi_port8
__attribute__ ((weak, alias("usb_string_midi_port8_default")));
#endif
#if MIDI_NUM_CABLES >= 9
extern struct usb_string_descriptor_struct usb_string_midi_port9
__attribute__ ((weak, alias("usb_string_midi_port9_default")));
#endif
#if MIDI_NUM_CABLES >= 10
extern struct usb_string_descriptor_struct usb_string_midi_port10
__attribute__ ((weak, alias("usb_string_midi_port10_default")));
#endif
#if MIDI_NUM_CABLES >= 11
extern struct usb_string_descriptor_struct usb_string_midi_port11
__attribute__ ((weak, alias("usb_string_midi_port11_default")));
#endif
#if MIDI_NUM_CABLES >= 12
extern struct usb_string_descriptor_struct usb_string_midi_port12
__attribute__ ((weak, alias("usb_string_midi_port12_default")));
#endif
#if MIDI_NUM_CABLES >= 13
extern struct usb_string_descriptor_struct usb_string_midi_port13
__attribute__ ((weak, alias("usb_string_midi_port13_default")));
#endif
#if MIDI_NUM_CABLES >= 14
extern struct usb_string_descriptor_struct usb_string_midi_port14
__attribute__ ((weak, alias("usb_string_midi_port14_default")));
#endif
#if MIDI_NUM_CABLES >= 15
extern struct usb_string_descriptor_struct usb_string_midi_port15
__attribute__ ((weak, alias("usb_string_midi_port15_default")));
#endif
#if MIDI_NUM_CABLES >= 16
extern struct usb_string_descriptor_struct usb_string_midi_port16
__attribute__ ((weak, alias("usb_string_midi_port16_default")));
#endif
#endif
struct usb_string_descriptor_struct string0 = {
4,
3,
{0x0409}
};
struct usb_string_descriptor_struct usb_string_manufacturer_name_default = {
2 + MANUFACTURER_NAME_LEN * 2,
3,
MANUFACTURER_NAME
};
struct usb_string_descriptor_struct usb_string_product_name_default = {
2 + PRODUCT_NAME_LEN * 2,
3,
PRODUCT_NAME
};
struct usb_string_descriptor_struct usb_string_serial_number_default = {
12,
3,
{0,0,0,0,0,0,0,0,0,0}
};
struct usb_string_descriptor_struct usb_string_xinput_security_descriptor = {
2 + 88 * 2,
3,
{
'X', 'b', 'o', 'x', ' ', 'S', 'e', 'c', 'u', 'r', 'i', 't', 'y', ' ', 'M', 'e',
't', 'h', 'o', 'd', ' ', '3', ',', ' ', 'V', 'e', 'r', 's', 'i', 'o', 'n', ' ',
'1', '.', '0', '0', ',', ' ', 0xA9, ' ', '2', '0', '0', '5', ' ', 'M', 'i', 'c',
'r', 'o', 's', 'o', 'f', 't', ' ', 'C', 'o', 'r', 'p', 'o', 'r', 'a', 't', 'i',
'o', 'n', '.', ' ', 'A', 'l', 'l', ' ', 'r', 'i', 'g', 'h', 't', 's', ' ', 'r',
'e', 's', 'e', 'r', 'v', 'e', 'd', '.'
}
};
#ifdef MIDI_INTERFACE
struct usb_string_descriptor_struct usb_string_midi_port1_default = {
14,
3,
{'P','o','r','t',' ','1'}
};
#if MIDI_NUM_CABLES >= 2
struct usb_string_descriptor_struct usb_string_midi_port2_default = {
14,
3,
{'P','o','r','t',' ','2'}
};
#endif
#if MIDI_NUM_CABLES >= 3
struct usb_string_descriptor_struct usb_string_midi_port3_default = {
14,
3,
{'P','o','r','t',' ','3'}
};
#endif
#if MIDI_NUM_CABLES >= 4
struct usb_string_descriptor_struct usb_string_midi_port4_default = {
14,
3,
{'P','o','r','t',' ','4'}
};
#endif
#if MIDI_NUM_CABLES >= 5
struct usb_string_descriptor_struct usb_string_midi_port5_default = {
14,
3,
{'P','o','r','t',' ','5'}
};
#endif
#if MIDI_NUM_CABLES >= 6
struct usb_string_descriptor_struct usb_string_midi_port6_default = {
14,
3,
{'P','o','r','t',' ','6'}
};
#endif
#if MIDI_NUM_CABLES >= 7
struct usb_string_descriptor_struct usb_string_midi_port7_default = {
14,
3,
{'P','o','r','t',' ','7'}
};
#endif
#if MIDI_NUM_CABLES >= 8
struct usb_string_descriptor_struct usb_string_midi_port8_default = {
14,
3,
{'P','o','r','t',' ','8'}
};
#endif
#if MIDI_NUM_CABLES >= 9
struct usb_string_descriptor_struct usb_string_midi_port9_default = {
14,
3,
{'P','o','r','t',' ','9'}
};
#endif
#if MIDI_NUM_CABLES >= 10
struct usb_string_descriptor_struct usb_string_midi_port10_default = {
16,
3,
{'P','o','r','t',' ','1','0'}
};
#endif
#if MIDI_NUM_CABLES >= 11
struct usb_string_descriptor_struct usb_string_midi_port11_default = {
16,
3,
{'P','o','r','t',' ','1','1'}
};
#endif
#if MIDI_NUM_CABLES >= 12
struct usb_string_descriptor_struct usb_string_midi_port12_default = {
16,
3,
{'P','o','r','t',' ','1','2'}
};
#endif
#if MIDI_NUM_CABLES >= 13
struct usb_string_descriptor_struct usb_string_midi_port13_default = {
16,
3,
{'P','o','r','t',' ','1','3'}
};
#endif
#if MIDI_NUM_CABLES >= 14
struct usb_string_descriptor_struct usb_string_midi_port14_default = {
16,
3,
{'P','o','r','t',' ','1','4'}
};
#endif
#if MIDI_NUM_CABLES >= 15
struct usb_string_descriptor_struct usb_string_midi_port15_default = {
16,
3,
{'P','o','r','t',' ','1','5'}
};
#endif
#if MIDI_NUM_CABLES >= 16
struct usb_string_descriptor_struct usb_string_midi_port16_default = {
16,
3,
{'P','o','r','t',' ','1','6'}
};
#endif
#endif
#ifdef MTP_INTERFACE
struct usb_string_descriptor_struct usb_string_mtp = {
2 + 3 * 2,
3,
{'M','T','P'}
};
#endif
void usb_init_serialnumber(void)
{
char buf[11];
uint32_t i, num;
__disable_irq();
#if defined(HAS_KINETIS_FLASH_FTFA) || defined(HAS_KINETIS_FLASH_FTFL)
FTFL_FSTAT = FTFL_FSTAT_RDCOLERR | FTFL_FSTAT_ACCERR | FTFL_FSTAT_FPVIOL;
FTFL_FCCOB0 = 0x41;
FTFL_FCCOB1 = 15;
FTFL_FSTAT = FTFL_FSTAT_CCIF;
while (!(FTFL_FSTAT & FTFL_FSTAT_CCIF)) ; // wait
num = *(uint32_t *)&FTFL_FCCOB7;
#elif defined(HAS_KINETIS_FLASH_FTFE)
kinetis_hsrun_disable();
FTFL_FSTAT = FTFL_FSTAT_RDCOLERR | FTFL_FSTAT_ACCERR | FTFL_FSTAT_FPVIOL;
*(uint32_t *)&FTFL_FCCOB3 = 0x41070000;
FTFL_FSTAT = FTFL_FSTAT_CCIF;
while (!(FTFL_FSTAT & FTFL_FSTAT_CCIF)) ; // wait
num = *(uint32_t *)&FTFL_FCCOBB;
kinetis_hsrun_enable();
#endif
__enable_irq();
// add extra zero to work around OS-X CDC-ACM driver bug
if (num < 10000000) num = num * 10;
ultoa(num, buf, 10);
for (i=0; i<10; i++) {
char c = buf[i];
if (!c) break;
usb_string_serial_number_default.wString[i] = c;
}
usb_string_serial_number_default.bLength = i * 2 + 2;
}
// **************************************************************
// Descriptors List
// **************************************************************
// This table provides access to all the descriptor data above.
const usb_descriptor_list_t usb_descriptor_list[] = {
//wValue, wIndex, address, length
{0x0100, 0x0000, device_descriptor, sizeof(device_descriptor)},
{0x0200, 0x0000, config_descriptor, sizeof(config_descriptor)},
#ifdef SEREMU_INTERFACE
{0x2200, SEREMU_INTERFACE, seremu_report_desc, sizeof(seremu_report_desc)},
{0x2100, SEREMU_INTERFACE, config_descriptor+SEREMU_HID_DESC_OFFSET, 9},
#endif
#ifdef KEYBOARD_INTERFACE
{0x2200, KEYBOARD_INTERFACE, keyboard_report_desc, sizeof(keyboard_report_desc)},
{0x2100, KEYBOARD_INTERFACE, config_descriptor+KEYBOARD_HID_DESC_OFFSET, 9},
#endif
#ifdef MOUSE_INTERFACE
{0x2200, MOUSE_INTERFACE, mouse_report_desc, sizeof(mouse_report_desc)},
{0x2100, MOUSE_INTERFACE, config_descriptor+MOUSE_HID_DESC_OFFSET, 9},
#endif
#ifdef JOYSTICK_INTERFACE
{0x2200, JOYSTICK_INTERFACE, joystick_report_desc, sizeof(joystick_report_desc)},
{0x2100, JOYSTICK_INTERFACE, config_descriptor+JOYSTICK_HID_DESC_OFFSET, 9},
#endif
#ifdef RAWHID_INTERFACE
{0x2200, RAWHID_INTERFACE, rawhid_report_desc, sizeof(rawhid_report_desc)},
{0x2100, RAWHID_INTERFACE, config_descriptor+RAWHID_HID_DESC_OFFSET, 9},
#endif
#ifdef FLIGHTSIM_INTERFACE
{0x2200, FLIGHTSIM_INTERFACE, flightsim_report_desc, sizeof(flightsim_report_desc)},
{0x2100, FLIGHTSIM_INTERFACE, config_descriptor+FLIGHTSIM_HID_DESC_OFFSET, 9},
#endif
#ifdef KEYMEDIA_INTERFACE
{0x2200, KEYMEDIA_INTERFACE, keymedia_report_desc, sizeof(keymedia_report_desc)},
{0x2100, KEYMEDIA_INTERFACE, config_descriptor+KEYMEDIA_HID_DESC_OFFSET, 9},
#endif
#ifdef MULTITOUCH_INTERFACE
{0x2200, MULTITOUCH_INTERFACE, multitouch_report_desc, sizeof(multitouch_report_desc)},
{0x2100, MULTITOUCH_INTERFACE, config_descriptor+MULTITOUCH_HID_DESC_OFFSET, 9},
#endif
#ifdef MTP_INTERFACE
{0x0304, 0x0409, (const uint8_t *)&usb_string_mtp, 0},
#endif
#ifdef MIDI_INTERFACE
{0x0305, 0x0409, (const uint8_t *)&usb_string_midi_port1, 0},
#if MIDI_NUM_CABLES >= 2
{0x0306, 0x0409, (const uint8_t *)&usb_string_midi_port2, 0},
#endif
#if MIDI_NUM_CABLES >= 3
{0x0307, 0x0409, (const uint8_t *)&usb_string_midi_port3, 0},
#endif
#if MIDI_NUM_CABLES >= 4
{0x0308, 0x0409, (const uint8_t *)&usb_string_midi_port4, 0},
#endif
#if MIDI_NUM_CABLES >= 5
{0x0309, 0x0409, (const uint8_t *)&usb_string_midi_port5, 0},
#endif
#if MIDI_NUM_CABLES >= 6
{0x030A, 0x0409, (const uint8_t *)&usb_string_midi_port6, 0},
#endif
#if MIDI_NUM_CABLES >= 7
{0x030B, 0x0409, (const uint8_t *)&usb_string_midi_port7, 0},
#endif
#if MIDI_NUM_CABLES >= 8
{0x030C, 0x0409, (const uint8_t *)&usb_string_midi_port8, 0},
#endif
#if MIDI_NUM_CABLES >= 9
{0x030D, 0x0409, (const uint8_t *)&usb_string_midi_port9, 0},
#endif
#if MIDI_NUM_CABLES >= 10
{0x030E, 0x0409, (const uint8_t *)&usb_string_midi_port10, 0},
#endif
#if MIDI_NUM_CABLES >= 11
{0x030F, 0x0409, (const uint8_t *)&usb_string_midi_port11, 0},
#endif
#if MIDI_NUM_CABLES >= 12
{0x0310, 0x0409, (const uint8_t *)&usb_string_midi_port12, 0},
#endif
#if MIDI_NUM_CABLES >= 13
{0x0311, 0x0409, (const uint8_t *)&usb_string_midi_port13, 0},
#endif
#if MIDI_NUM_CABLES >= 14
{0x0312, 0x0409, (const uint8_t *)&usb_string_midi_port14, 0},
#endif
#if MIDI_NUM_CABLES >= 15
{0x0313, 0x0409, (const uint8_t *)&usb_string_midi_port15, 0},
#endif
#if MIDI_NUM_CABLES >= 16
{0x0314, 0x0409, (const uint8_t *)&usb_string_midi_port16, 0},
#endif
#endif
{0x0300, 0x0000, (const uint8_t *)&string0, 0},
{0x0301, 0x0409, (const uint8_t *)&usb_string_manufacturer_name, 0},
{0x0302, 0x0409, (const uint8_t *)&usb_string_product_name, 0},
{0x0303, 0x0409, (const uint8_t *)&usb_string_serial_number, 0},
#ifdef XINPUT_INTERFACE
{0x0304, 0x0409, (const uint8_t *)&usb_string_xinput_security_descriptor, 0},
#endif
{0, 0, NULL, 0}
};
// **************************************************************
// Endpoint Configuration
// **************************************************************
#if 0
// 0x00 = not used
// 0x19 = Recieve only
// 0x15 = Transmit only
// 0x1D = Transmit & Recieve
//
const uint8_t usb_endpoint_config_table[NUM_ENDPOINTS] =
{
0x00, 0x15, 0x19, 0x15, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
};
#endif
const uint8_t usb_endpoint_config_table[NUM_ENDPOINTS] =
{
#if (defined(ENDPOINT1_CONFIG) && NUM_ENDPOINTS >= 1)
ENDPOINT1_CONFIG,
#elif (NUM_ENDPOINTS >= 1)
ENDPOINT_UNUSED,
#endif
#if (defined(ENDPOINT2_CONFIG) && NUM_ENDPOINTS >= 2)
ENDPOINT2_CONFIG,
#elif (NUM_ENDPOINTS >= 2)
ENDPOINT_UNUSED,
#endif
#if (defined(ENDPOINT3_CONFIG) && NUM_ENDPOINTS >= 3)
ENDPOINT3_CONFIG,
#elif (NUM_ENDPOINTS >= 3)
ENDPOINT_UNUSED,
#endif
#if (defined(ENDPOINT4_CONFIG) && NUM_ENDPOINTS >= 4)
ENDPOINT4_CONFIG,
#elif (NUM_ENDPOINTS >= 4)
ENDPOINT_UNUSED,
#endif
#if (defined(ENDPOINT5_CONFIG) && NUM_ENDPOINTS >= 5)
ENDPOINT5_CONFIG,
#elif (NUM_ENDPOINTS >= 5)
ENDPOINT_UNUSED,
#endif
#if (defined(ENDPOINT6_CONFIG) && NUM_ENDPOINTS >= 6)
ENDPOINT6_CONFIG,
#elif (NUM_ENDPOINTS >= 6)
ENDPOINT_UNUSED,
#endif
#if (defined(ENDPOINT7_CONFIG) && NUM_ENDPOINTS >= 7)
ENDPOINT7_CONFIG,
#elif (NUM_ENDPOINTS >= 7)
ENDPOINT_UNUSED,
#endif
#if (defined(ENDPOINT8_CONFIG) && NUM_ENDPOINTS >= 8)
ENDPOINT8_CONFIG,
#elif (NUM_ENDPOINTS >= 8)
ENDPOINT_UNUSED,
#endif
#if (defined(ENDPOINT9_CONFIG) && NUM_ENDPOINTS >= 9)
ENDPOINT9_CONFIG,
#elif (NUM_ENDPOINTS >= 9)
ENDPOINT_UNUSED,
#endif
#if (defined(ENDPOINT10_CONFIG) && NUM_ENDPOINTS >= 10)
ENDPOINT10_CONFIG,
#elif (NUM_ENDPOINTS >= 10)
ENDPOINT_UNUSED,
#endif
#if (defined(ENDPOINT11_CONFIG) && NUM_ENDPOINTS >= 11)
ENDPOINT11_CONFIG,
#elif (NUM_ENDPOINTS >= 11)
ENDPOINT_UNUSED,
#endif
#if (defined(ENDPOINT12_CONFIG) && NUM_ENDPOINTS >= 12)
ENDPOINT12_CONFIG,
#elif (NUM_ENDPOINTS >= 12)
ENDPOINT_UNUSED,
#endif
#if (defined(ENDPOINT13_CONFIG) && NUM_ENDPOINTS >= 13)
ENDPOINT13_CONFIG,
#elif (NUM_ENDPOINTS >= 13)
ENDPOINT_UNUSED,
#endif
#if (defined(ENDPOINT14_CONFIG) && NUM_ENDPOINTS >= 14)
ENDPOINT14_CONFIG,
#elif (NUM_ENDPOINTS >= 14)
ENDPOINT_UNUSED,
#endif
#if (defined(ENDPOINT15_CONFIG) && NUM_ENDPOINTS >= 15)
ENDPOINT15_CONFIG,
#elif (NUM_ENDPOINTS >= 15)
ENDPOINT_UNUSED,
#endif
};
#endif // NUM_ENDPOINTS
#endif // F_CPU >= 20 MHz
|
the_stack_data/92326761.c | // Created by Sergey Litvinov on 31.01.2021
// Copyright 2021 ETH Zurich
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "err.h"
#include "memory.h"
#define USED(x) \
if (x) \
; \
else { \
}
enum { SIZE = 999 };
int stl_read(
FILE* f, int* status, int* pnt, int** ptri, int* pnv, double** pver) {
enum { Stl, FacetStart, OuterStart, FacetEnd, OuterEnd, Vertex, End };
char line[SIZE];
char* s;
double* ver;
double x;
double y;
double z;
int i;
int j;
int nt;
int nv;
int state;
int* tri;
int v;
int cap;
int iver;
state = Stl;
v = 0;
cap = 10;
if ((ver = malloc(cap * sizeof *ver)) == NULL) {
fprintf(stderr, "%s:%d: malloc failed\n", __FILE__, __LINE__);
goto err;
}
for (;;) {
if ((s = fgets(line, SIZE, f)) == NULL) break;
while (isspace(*s))
s++; /* leading spaces */
for (i = 0; s[i] != '\0'; i++)
if (s[i] == '\n' || s[i] == '#') {
s[i] = '\0';
break;
}
for (i = j = 0; s[i] != '\0'; i++) /* trailing spaces */
if (!isspace(s[i])) j = i;
s[j + 1] = '\0';
if (s[0] == '\0') /* empty line */
continue;
switch (state) {
case Stl:
if (strncmp(s, "solid", 5)) goto not_stl;
state = FacetStart;
break;
case FacetStart:
if (!strncmp(s, "endsolid", 8))
state = End;
else if (!strncmp(s, "facet normal", 12))
state = OuterStart;
else {
fprintf(
stderr,
"%s:%d: expecting 'facet normal' or 'endsolid', got '%s'\n",
__FILE__, __LINE__, s);
goto err;
}
break;
case OuterStart:
if (strncmp(s, "outer loop", SIZE)) {
fprintf(
stderr, "%s:%d: expecting 'outer loop', got '%s'\n", __FILE__,
__LINE__, s);
goto err;
}
iver = 0;
state = Vertex;
break;
case Vertex:
if (strncmp(s, "vertex", 6)) {
fprintf(
stderr, "%s:%d: expecting 'vertex', got '%s'\n", __FILE__,
__LINE__, s);
goto err;
}
if (sscanf(s, "vertex %lf %lf %lf", &x, &y, &z) != 3) {
fprintf(
stderr, "%s:%d: expcting vertices got '%s'\n", __FILE__, __LINE__,
s);
goto err;
}
if (v + 2 >= cap) {
cap *= 2;
if ((ver = realloc(ver, cap * sizeof *ver)) == NULL) {
fprintf(stderr, "%s:%d: realloc failed\n", __FILE__, __LINE__);
goto err;
}
}
ver[v++] = x;
ver[v++] = y;
ver[v++] = z;
iver++;
if (iver == 3) state = OuterEnd;
break;
case OuterEnd:
if (strncmp(s, "endloop", SIZE)) {
fprintf(
stderr, "%s:%d: expecting 'endloop', got '%s'\n", __FILE__,
__LINE__, s);
goto err;
}
state = FacetEnd;
break;
case FacetEnd:
if (strncmp(s, "endfacet", SIZE)) {
fprintf(
stderr, "%s:%d: expecting 'endfacet', got '%s'\n", __FILE__,
__LINE__, s);
goto err;
}
state = FacetStart;
break;
case End:
fprintf(stderr, "%s:%d: extra line '%s'\n", __FILE__, __LINE__, s);
goto err;
break;
}
}
if (state != End) {
fprintf(stderr, "%s:%d: stl file is not complite\n", __FILE__, __LINE__);
goto err;
}
nv = v / 3;
nt = nv / 3;
if ((tri = malloc(3 * nt * sizeof *tri)) == NULL) {
fprintf(stderr, "%s:%d: malloc failed\n", __FILE__, __LINE__);
goto err;
}
for (i = 0; i < nv; i++)
tri[i] = i;
*pnv = nv;
*pnt = nt;
*ptri = tri;
*pver = ver;
*status = 0;
return 0;
err:
return 1;
not_stl:
*status = 1;
return 0;
}
int stl_write(int nt, const int* tri, int nv, const double* ver, FILE* f) {
int i;
int j;
int k;
int t;
USED(nv);
if (fprintf(f, "solid stl\n") < 0) {
fprintf(stderr, "%s:%d: fail to write\n", __FILE__, __LINE__);
goto err;
}
for (t = 0; t < nt; t++) {
i = tri[3 * t];
j = tri[3 * t + 1];
k = tri[3 * t + 2];
fprintf(f, " facet normal 0 0 1\n");
fprintf(f, " outer loop\n");
fprintf(
f, " vertex %.16e %.16e %.16e\n", ver[3 * i], ver[3 * i + 1],
ver[3 * i + 2]);
fprintf(
f, " vertex %.16e %.16e %.16e\n", ver[3 * j], ver[3 * j + 1],
ver[3 * j + 2]);
fprintf(
f, " vertex %.16e %.16e %.16e\n", ver[3 * k], ver[3 * k + 1],
ver[3 * k + 2]);
fprintf(f, " endloop\n");
fprintf(f, " endfacet\n");
}
fprintf(f, "endsolid stl\n");
return 0;
err:
return 1;
}
|
the_stack_data/154830231.c | /***********************************************************************
*
* Copyright: Daniel Measurement and Control, Inc.
* 9753 Pine Lake Drive
* Houston, TX 77055
*
* Created by: Vipin Malik and Gail Murray
* Released under GPL by permission of Daniel Industries.
*
* This software is licensed under the GPL version 2. Plese see the file
* COPYING for details on the license.
*
* NO WARRANTY: Absolutely no claims of warranty or fitness of purpose
* are made in this software. Please use at your own risk.
*
* Filename: JitterTest.c
*
* Description: Program to be used to measure wake jitter.
* See README file for more info.
*
*
* Revision History:
* $Id: JitterTest.c,v 1.13 2005/11/07 11:15:20 gleixner Exp $
* $Log: JitterTest.c,v $
* Revision 1.13 2005/11/07 11:15:20 gleixner
* [MTD / JFFS2] Clean up trailing white spaces
*
* Revision 1.12 2001/08/10 19:23:11 vipin
* Ready to be released under GPL! Added proper headers etc.
*
* Revision 1.11 2001/07/09 15:35:50 vipin
* Couple of new features:1. The program runs by default as a "regular"
* (SCHED_OTHER) task by default, unless the -p n cmd line parameter is
* specified. It then runs as SCHED_RR at that priority.
* 2. Added ability to send SIGSTOP/SIGCONT to a specified PID. This
* would presumably be the PID of the JFFS2 GC task. SIGSTOP is sent
* before writing to the fs, and a SIGCONT after the write is done.
* 3. The "pad" data now written to the file on the "fs under test" is
* random, not sequential as previously.
*
* Revision 1.10 2001/06/27 19:14:24 vipin
* Now console file to log at can be specified from cmd line. This can enable
* you to run two instances of the program- one logging to the /dev/console
* and another to a regular file (if you want the data) or /dev/null if you don't.
*
* Revision 1.9 2001/06/25 20:21:31 vipin
* This is the latest version, NOT the one last checked in!
*
* Revision 1.7 2001/06/18 22:36:19 vipin
* Fix minor typo that excluded '\n' from msg on console.
*
* Revision 1.6 2001/06/18 21:17:50 vipin
* Added option to specify the amount of data written to outfile each period.
* The regular info is written, but is then padded to the requested size.
* This will enable testing of different sized writes to JFFS fs.
*
* Revision 1.5 2001/06/08 19:36:23 vipin
* All write() are now checked for return err code.
*
* Revision 1.4 2001/06/06 23:10:31 vipin
* Added README file.
* In JitterTest.c: Changed operation of periodic timer to one shot. The timer is now
* reset when the task wakes. This way every "jitter" is from the last time and
* jitters from previous times are not accumulated and screw aroud with our display.
*
* All jitter is now +ve. (as it should be). Also added a "read file" functionality
* to test for jitter in task if we have to read from JFFS fs.
* The program now also prints data to console- where it can be logged, interspersed with
* other "interesting" printk's from the kernel and drivers (flash sector erases etc.)
*
* Revision 1.3 2001/03/01 19:20:39 gmurray
* Add priority scheduling. Shortened name of default output file.
* Changed default interrupt period. Output delta time and jitter
* instead of time of day.
*
* Revision 1.2 2001/02/28 16:20:19 vipin
* Added version control Id and log fields.
*
***********************************************************************/
/*************************** Included Files ***************************/
#include <stdio.h> /* fopen, printf, fprintf, fclose */
#include <string.h> /* strcpy, strcmp */
#include <stdlib.h> /* exit, atol, atoi */
#include <sys/time.h> /* setitimer, settimeofday, gettimeofday */
#include <signal.h> /* signal */
#include <sched.h> /* sched_setscheduler, sched_get_priority_min,*/
/* sched_get_priority_max */
#include <unistd.h> /* gettimeofday, sleep */
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/mman.h>
/**************************** Enumerations ****************************/
enum timerActions
{
ONESHOT,
AUTORESETTING
};
/****************************** Constants *****************************/
/* Exit error codes */
#define EXIT_FILE_OPEN_ERR (1) /* error opening output file*/
#define EXIT_REG_SIGALRM_ERR (2) /* error registering SIGALRM*/
#define EXIT_REG_SIGINT_ERR (3) /* error registering SIGINT */
#define EXIT_INV_INT_PERIOD (4) /* error invalid int. period*/
#define EXIT_MIN_PRIORITY_ERR (5) /* error, minimum priority */
#define EXIT_MAX_PRIORITY_ERR (6) /* error, maximum priority */
#define EXIT_INV_SCHED_PRIORITY (7) /* error, invalid priority */
#define EXIT_SET_SCHEDULER_ERR (8) /* error, set scheduler */
#define EXIT_PREV_TIME_OF_DAY_ERR (9) /* error, init. prev. */
/* time of day */
#define MAX_FILE_NAME_LEN (32) /* maximum file name length */
#define STRINGS_EQUAL ((int) 0) /* strcmp value if equal */
#define MIN_INT_PERIOD_MILLISEC ( 5L) /* minimum interrupt period */
#define MAX_INT_PERIOD_MILLISEC (5000L) /* maximum interrupt period */
#define DEF_INT_PERIOD_MILLISEC ( 10L) /* default interrupt period */
#define READ_FILE_MESSAGE "This is a junk file. Must contain at least 1 byte though!\n"
/* The user can specify that the program pad out the write file to
a given number of bytes. But a minimum number needs to be written. This
will contain the jitter info.
*/
#define MIN_WRITE_BYTES 30
#define DEFAULT_WRITE_BYTES 30
#define MAX_WRITE_BYTES 4096
/* used for gen a printable ascii random # between spc and '~' */
#define MIN_ASCII 32 /* <SPACE> can be char*/
#define MAX_ASCII 126.0 /* needs to be float. See man rand() */
/*----------------------------------------------------------------------
* It appears that the preprocessor can't handle multi-line #if
* statements. Thus, the check on the default is divided into two
* #if statements.
*---------------------------------------------------------------------*/
#if (DEF_INT_PERIOD_MILLISEC < MIN_INT_PERIOD_MILLISEC)
#error *** Invalid default interrupt period. ***
#endif
#if (DEF_INT_PERIOD_MILLISEC > MAX_INT_PERIOD_MILLISEC)
#error *** Invalid default interrupt period. ***
#endif
#define TRUE 1 /* Boolean true value */
#define FALSE 0
/* Time conversion constants. */
#define MILLISEC_PER_SEC (1000L) /* milliseconds per second */
#define MICROSEC_PER_MILLISEC (1000L) /* microsecs per millisec */
#define MICROSEC_PER_SEC (1000000L) /* microsecs per second */
#define PRIORITY_POLICY ((int) SCHED_RR) /* If specified iwth "-p" */
/************************** Module Variables **************************/
/* version identifier (value supplied by CVS)*/
static const char Version[] = "$Id: JitterTest.c,v 1.13 2005/11/07 11:15:20 gleixner Exp $";
static char OutFileName[MAX_FILE_NAME_LEN+1]; /* output file name */
static char LogFile[MAX_FILE_NAME_LEN+1] = "/dev/console"; /* default */
static char ReadFile[MAX_FILE_NAME_LEN+1]; /* This file is read. Should
contain at least 1 byte */
static int WriteBytes = DEFAULT_WRITE_BYTES; /* pad out file to these many bytes. */
static int Fd1; /* fd where the above buffer if o/p */
static int Cfd; /* fd to console (or file specified) */
static int Fd2; /* fd for the ReadFile */
static int DoRead = FALSE; /* should we attempt to ReadFile?*/
static long InterruptPeriodMilliSec; /* interrupt period, millisec */
static int MinPriority; /* minimum scheduler priority */
static int MaxPriority; /* maximum scheduler priority */
static int RequestedPriority; /* requested priority */
static struct itimerval ITimer; /* interrupt timer structure */
static struct timeval PrevTimeVal; /* previous time structure */
static struct timeval CurrTimeVal; /* current time structure */
static long LastMaxDiff = 0; /* keeps track of worst jitter encountered */
static int GrabKProfile = FALSE; /* To help determine system bottle necks
this parameter can be set. This causes
the /proc/profile file to be read and
stored in unique filenames in current
dir, and indication to be o/p on the
/dev/console also.
*/
static long ProfileTriggerMSecs = 15000l; /* Jitter time in seconds that triggers
a snapshot of the profile to be taken
*/
static int SignalGCTask = FALSE; /* should be signal SIGSTOP/SIGCONT to gc task?*/
static int GCTaskPID;
static int RunAsRTTask = FALSE; /* default action unless priority is
specified on cmd line */
/********************* Local Function Prototypes **********************/
void HandleCmdLineArgs(int argc, char *argv[]);
void SetFileName(char * pFileName);
void SetInterruptPeriod(char * pASCIIInterruptPeriodMilliSec);
void SetSchedulerPriority(char * pASCIISchedulerPriority);
void PrintVersionInfo(void);
void PrintHelpInfo(void);
int Write(int fd, void *buf, size_t bytes, int lineNo);
void InitITimer(struct itimerval * pITimer, int action);
/* For catching timer interrupts (SIGALRM). */
void AlarmHandler(int sigNum);
/* For catching Ctrl+C SIGINT. */
void SignalHandler(int sigNum);
/***********************************************************************
* main function
* return: exit code
***********************************************************************/
int main(
int argc,
char *argv[])
{
struct sched_param schedParam;
int mypri;
char tmpBuf[200];
strcpy(OutFileName,"jitter.dat");
InterruptPeriodMilliSec = MIN_INT_PERIOD_MILLISEC;
/* Get the minimum and maximum priorities. */
MinPriority = sched_get_priority_min(PRIORITY_POLICY);
MaxPriority = sched_get_priority_max(PRIORITY_POLICY);
if (MinPriority == -1) {
printf("\n*** Unable to get minimum priority. ***\n");
exit(EXIT_MIN_PRIORITY_ERR);
}
if (MaxPriority == -1) {
printf("\n*** Unable to get maximum priority. ***\n");
exit(EXIT_MAX_PRIORITY_ERR);
}
/* Set requested priority to minimum value as default. */
RequestedPriority = MinPriority;
HandleCmdLineArgs(argc, argv);
if(mlockall(MCL_CURRENT|MCL_FUTURE) < 0){
printf("Could not lock task into memory. Bye\n");
perror("Error");
}
if(RunAsRTTask){
/* Set the priority. */
schedParam.sched_priority = RequestedPriority;
if (sched_setscheduler(
0,
PRIORITY_POLICY,
&schedParam) != (int) 0) {
printf("Exiting: Unsuccessful sched_setscheduler.\n");
close(Fd1);
exit(EXIT_SET_SCHEDULER_ERR);
}
/* Double check as I have some doubts that it's really
running at realtime priority! */
if((mypri = sched_getscheduler(0)) != RequestedPriority)
{
printf("Not running with request priority %i. running with priority %i instead!\n",
RequestedPriority, mypri);
}else
{
printf("Running with %i priority. Good!\n", mypri);
}
}
/*------------------------- Initializations --------------------------*/
if((Fd1 = open(OutFileName, O_RDWR|O_CREAT|O_SYNC)) <= 0)
{
perror("Cannot open outfile for write:");
exit(1);
}
/* If a request is made to read from a specified file, then create that
file and fill with junk data so that there is something there to read.
*/
if(DoRead)
{
if((Fd2 = open(ReadFile, O_RDWR|O_CREAT|O_SYNC|O_TRUNC)) <= 0)
{
perror("cannot open read file:");
exit(1);
}else
{
/* Don't really care how much we write here */
if(write(Fd2, READ_FILE_MESSAGE, strlen(READ_FILE_MESSAGE)) < 0)
{
perror("Problems writing to readfile:");
exit(1);
}
lseek(Fd2, 0, SEEK_SET); /* position back to byte #0 */
}
}
/* Also log output to console. This way we can capture it
on a serial console to a log file.
*/
if((Cfd = open(LogFile, O_WRONLY|O_SYNC)) <= 0)
{
perror("cannot open o/p logfile:");
exit(1);
}
/* Set-up handler for periodic interrupt. */
if (signal(SIGALRM, &AlarmHandler) == SIG_ERR) {
printf("Couldn't register signal handler for SIGALRM.\n");
sprintf(tmpBuf,
"Couldn't register signal handler for SIGALRM.\n");
Write(Fd1, tmpBuf, strlen(tmpBuf), __LINE__);
close(Fd1);
exit(EXIT_REG_SIGALRM_ERR);
}
/* Set-up handler for Ctrl+C to exit the program. */
if (signal(SIGINT, &SignalHandler) == SIG_ERR) {
printf("Couldn't register signal handler for SIGINT.\n");
sprintf(tmpBuf,
"Couldn't register signal handler for SIGINT.\n");
Write(Fd1, tmpBuf, strlen(tmpBuf), __LINE__);
close(Fd1);
exit(EXIT_REG_SIGINT_ERR);
}
printf("Press Ctrl+C to exit the program.\n");
printf("Output File: %s\n", OutFileName);
printf("Scheduler priority: %d\n", RequestedPriority);
sprintf(tmpBuf, "\nScheduler priority: %d\n",
RequestedPriority);
Write(Fd1, tmpBuf, strlen(tmpBuf), __LINE__);
Write(Cfd, tmpBuf, strlen(tmpBuf), __LINE__);
printf("Interrupt period: %ld milliseconds\n",
InterruptPeriodMilliSec);
sprintf(tmpBuf, "Interrupt period: %ld milliseconds\n",
InterruptPeriodMilliSec);
Write(Fd1, tmpBuf, strlen(tmpBuf), __LINE__);
Write(Cfd, tmpBuf, strlen(tmpBuf), __LINE__);
fflush(0);
/* Initialize the periodic timer. */
InitITimer(&ITimer, ONESHOT);
/* Initialize "previous" time. */
if (gettimeofday(&PrevTimeVal, NULL) != (int) 0) {
printf("Exiting - ");
printf("Unable to initialize previous time of day.\n");
sprintf(tmpBuf, "Exiting - ");
Write(Fd1, tmpBuf, strlen(tmpBuf), __LINE__);
sprintf(tmpBuf,
"Unable to initialize previous time of day.\n");
Write(Fd1, tmpBuf, strlen(tmpBuf), __LINE__);
}
/* Start the periodic timer. */
setitimer(ITIMER_REAL, &ITimer, NULL);
while(TRUE) { /* Intentional infinite loop. */
/* Sleep for one second. */
sleep((unsigned int) 1);
}
/* Just in case. File should be closed in SignalHandler. */
close(Fd1);
close(Cfd);
return 0;
}
/***********************************************************************
* SignalHandler
* This is a handler for the SIGINT signal. It is assumed that the
* SIGINT is due to the user pressing Ctrl+C to halt the program.
* output: N/A
***********************************************************************/
void SignalHandler(
int sigNum)
{
char tmpBuf[200];
/* Note sigNum not used. */
printf("Ctrl+C detected. Worst Jitter time was:%fms.\nJitterTest exiting.\n",
(float)LastMaxDiff/1000.0);
sprintf(tmpBuf,
"\nCtrl+C detected. Worst Jitter time was:%fms\nJitterTest exiting.\n",
(float)LastMaxDiff/1000.0);
Write(Fd1, tmpBuf, strlen(tmpBuf), __LINE__);
Write(Cfd, tmpBuf, strlen(tmpBuf), __LINE__);
close(Fd1);
close(Cfd);
exit(0);
}
/*
A snapshot of the /proc/profile needs to be taken.
This is stored as a new file every time, and the
stats reset by doing a (any) write to the /proc/profile
file.
*/
void doGrabKProfile(int jitterusec, char *fileName)
{
int fdSnapshot;
int fdProfile;
int readBytes;
char readBuf[4096];
if((fdSnapshot = open(fileName, O_WRONLY | O_CREAT)) <= 0)
{
fprintf(stderr, "Could not open file %s.\n", fileName);
perror("Error:");
return;
}
if((fdProfile = open("/proc/profile", O_RDWR)) <= 0)
{
fprintf(stderr, "Could not open file /proc/profile. Make sure you booted with profile=2\n");
close(fdSnapshot);
return;
}
while((readBytes = read(fdProfile, readBuf, sizeof(readBuf))) > 0)
{
write(fdSnapshot, readBuf, readBytes);
}
close(fdSnapshot);
if(write(fdProfile, readBuf, 1) != 1)
{
perror("Could Not clear profile by writing to /proc/profile:");
}
close(fdProfile);
}/* end doGrabKProfile()*/
/*
Call this routine to clear the kernel profiling buffer /proc/profile
*/
void clearProfileBuf(void){
int fdProfile;
char readBuf[10];
if((fdProfile = open("/proc/profile", O_RDWR)) <= 0)
{
fprintf(stderr, "Could not open file /proc/profile. Make sure you booted with profile=2\n");
return;
}
if(write(fdProfile, readBuf, 1) != 1)
{
perror("Could Not clear profile by writing to /proc/profile:");
}
close(fdProfile);
}/* end clearProfileBuf() */
/***********************************************************************
* AlarmHandler
* This is a handler for the SIGALRM signal (due to the periodic
* timer interrupt). It prints the time (seconds) to
* the output file.
* output: N/A
***********************************************************************/
void AlarmHandler(
int sigNum) /* signal number (not used) */
{
long timeDiffusec; /* diff time in micro seconds */
long intervalusec;
char tmpBuf[MAX_WRITE_BYTES];
int cntr;
char padChar;
static int profileFileNo = 0;
char profileFileName[150];
static int seedStarter = 0; /* carries over rand info to next time
where time() will be the same as this time
if invoked < 1sec apart.
*/
if (gettimeofday(&CurrTimeVal, NULL) == (int) 0) {
/*----------------------------------------------------------------
* Compute the elapsed time between the current and previous
* time of day values and store the result.
*
* Print the elapsed time to the output file.
*---------------------------------------------------------------*/
timeDiffusec = (long)(((((long long)CurrTimeVal.tv_sec) * 1000000L) + CurrTimeVal.tv_usec) -
(((long long)PrevTimeVal.tv_sec * 1000000L) + PrevTimeVal.tv_usec));
sprintf(tmpBuf," %f ms ", (float)timeDiffusec/1000.0);
intervalusec = InterruptPeriodMilliSec * 1000L;
timeDiffusec = timeDiffusec - intervalusec;
sprintf(&tmpBuf[strlen(tmpBuf)]," %f ms", (float)timeDiffusec/1000.0);
/* should we send a SIGSTOP/SIGCONT to the specified PID? */
if(SignalGCTask){
if(kill(GCTaskPID, SIGSTOP) < 0){
perror("error:");
}
}
/* Store some historical #'s */
if(abs(timeDiffusec) > LastMaxDiff)
{
LastMaxDiff = abs(timeDiffusec);
sprintf(&tmpBuf[strlen(tmpBuf)],"!");
if((GrabKProfile == TRUE) && (ProfileTriggerMSecs < (abs(timeDiffusec)/1000)))
{
sprintf(profileFileName, "JitterTest.profilesnap-%i", profileFileNo);
/* go and grab the kernel performance profile. */
doGrabKProfile(timeDiffusec, profileFileName);
profileFileNo++; /* unique name next time */
/* Say so on the console so that a marker gets put in the console log */
sprintf(&tmpBuf[strlen(tmpBuf)],"<Profile saved in file:%s>",
profileFileName);
}
}
sprintf(&tmpBuf[strlen(tmpBuf)],"\n"); /* CR for the data going out of the console */
Write(Cfd, tmpBuf, strlen(tmpBuf), __LINE__);
/* The "-1" below takes out the '\n' at the end that we appended for the msg printed on
the console.*/
sprintf(&tmpBuf[strlen(tmpBuf)-1]," PadBytes:");
/* Now pad the output file if requested by user. */
if(WriteBytes > MIN_WRITE_BYTES)
{
/* start from a new place every time */
srand(time(NULL) + seedStarter);
/* already written MIN_WRITE_BYTES by now */
for(cntr = strlen(tmpBuf); cntr < WriteBytes - 1 ; cntr++) /* "-1" adj for '\n' at end */
{
/* don't accept any # < 'SPACE' */
padChar = (char)(MIN_ASCII+(int)((MAX_ASCII-(float)MIN_ASCII)*rand()/(RAND_MAX+1.0)));
/*
padChar = (cntr % (126-33)) + 33;
*/
tmpBuf[cntr] = padChar;
}
seedStarter = tmpBuf[cntr-1]; /* save for next time */
tmpBuf[cntr] = '\n'; /* CR for the data going into the outfile. */
tmpBuf[cntr+1] = '\0'; /* NULL terminate the string */
}
/* write out the entire line to the output file. */
Write(Fd1, tmpBuf, strlen(tmpBuf), __LINE__);
/* Read a byte from the specified file */
if(DoRead)
{
read(Fd2, tmpBuf, 1);
lseek(Fd2, 0, SEEK_SET); /* back to start */
}
/* Start the periodic timer again. */
setitimer(ITIMER_REAL, &ITimer, NULL);
/* Update previous time with current time. */
PrevTimeVal.tv_sec = CurrTimeVal.tv_sec;
PrevTimeVal.tv_usec = CurrTimeVal.tv_usec;
}
else {
sprintf(tmpBuf, "gettimeofday error \n");
Write(Fd1, tmpBuf, strlen(tmpBuf), __LINE__);
printf("gettimeofday error \n");
}
/* now clear the profiling buffer */
if(GrabKProfile == TRUE){
clearProfileBuf();
}
/* should we send a SIGSTOP/SIGCONT to the specified PID? */
if(SignalGCTask){
if(kill(GCTaskPID, SIGCONT) < 0){
perror("error:");
}
}
return;
}
/***********************************************************************
* InitITimer
* This function initializes the 'struct itimerval' structure whose
* address is passed to interrupt every InterruptPeriodMilliSec.
* output: N/A
***********************************************************************/
void InitITimer(
struct itimerval * pITimer, /* pointer to interrupt timer struct*/
int action) /* ONESHOT or autosetting? */
{
long seconds; /* seconds portion of int. period */
long microSeconds; /* microsec. portion of int. period */
/*--------------------------------------------------------------------
* Divide the desired interrupt period into its seconds and
* microseconds components.
*-------------------------------------------------------------------*/
if (InterruptPeriodMilliSec < MILLISEC_PER_SEC) {
seconds = 0L;
microSeconds = InterruptPeriodMilliSec * MICROSEC_PER_MILLISEC;
}
else {
seconds = InterruptPeriodMilliSec / MILLISEC_PER_SEC;
microSeconds =
(InterruptPeriodMilliSec - (seconds * MILLISEC_PER_SEC)) *
MICROSEC_PER_MILLISEC;
}
/* Initialize the interrupt period structure. */
pITimer->it_value.tv_sec = seconds;
pITimer->it_value.tv_usec = microSeconds;
if(action == ONESHOT)
{
/* This will (should) prevent the timer from restarting itself */
pITimer->it_interval.tv_sec = 0;
pITimer->it_interval.tv_usec = 0;
}else
{
pITimer->it_interval.tv_sec = seconds;
pITimer->it_interval.tv_usec = microSeconds;
}
return;
}
/***********************************************************************
* HandleCmdLineArgs
* This function handles the command line arguments.
* output: stack size
***********************************************************************/
void HandleCmdLineArgs(
int argc, /* number of command-line arguments */
char *argv[]) /* ptrs to command-line arguments */
{
int argNum; /* argument number */
if (argc > (int) 1) {
for (argNum = (int) 1; argNum < argc; argNum++) {
/* The command line contains an argument. */
if ((strcmp(argv[argNum],"--version") == STRINGS_EQUAL) ||
(strcmp(argv[argNum],"-v") == STRINGS_EQUAL)) {
/* Print version information and exit. */
PrintVersionInfo();
exit(0);
}
else if ((strcmp(argv[argNum],"--help") == STRINGS_EQUAL) ||
(strcmp(argv[argNum],"-h") == STRINGS_EQUAL) ||
(strcmp(argv[argNum],"-?") == STRINGS_EQUAL)) {
/* Print help information and exit. */
PrintHelpInfo();
exit(0);
}
else if ((strcmp(argv[argNum],"--file") == STRINGS_EQUAL) ||
(strcmp(argv[argNum],"-f") == STRINGS_EQUAL)) {
/* Set the name of the output file. */
++argNum;
if (argNum < argc) {
SetFileName(argv[argNum]);
}
else {
printf("*** Output file name not specified. ***\n");
printf("Default output file name will be used.\n");
}
}
else if ((strcmp(argv[argNum],"--time") == STRINGS_EQUAL) ||
(strcmp(argv[argNum],"-t") == STRINGS_EQUAL)) {
/* Set the interrupt period. */
++argNum;
if (argNum < argc) {
SetInterruptPeriod(argv[argNum]);
}
else {
printf("*** Interrupt period not specified. ***\n");
printf("Default interrupt period will be used.\n");
}
}
else if ((strcmp(argv[argNum],"--priority") ==
STRINGS_EQUAL) ||
(strcmp(argv[argNum],"-p") == STRINGS_EQUAL)) {
/* Set the scheduler priority. */
++argNum;
if (argNum < argc) {
SetSchedulerPriority(argv[argNum]);
}
else {
printf("*** Scheduler priority not specified. ***\n");
printf("Default scheduler priority will be used.\n");
}
}
else if ((strcmp(argv[argNum],"--readfile") ==
STRINGS_EQUAL) ||
(strcmp(argv[argNum],"-r") == STRINGS_EQUAL)) {
/* Set the file to read*/
++argNum;
strncpy(ReadFile, argv[argNum], sizeof(ReadFile));
DoRead = TRUE;
}
else if ((strcmp(argv[argNum],"--write_bytes") ==
STRINGS_EQUAL) ||
(strcmp(argv[argNum],"-w") == STRINGS_EQUAL)) {
/* Set the file to read*/
++argNum;
WriteBytes = atoi(argv[argNum]);
if(WriteBytes < MIN_WRITE_BYTES)
{
printf("Writing less than %i bytes is not allowed. Bye.\n",
MIN_WRITE_BYTES);
exit(0);
}
}
else if ((strcmp(argv[argNum],"--consolefile") ==
STRINGS_EQUAL) ||
(strcmp(argv[argNum],"-c") == STRINGS_EQUAL)) {
/* Set the file to log console log on. */
++argNum;
strncpy(LogFile, argv[argNum], sizeof(LogFile));
}
else if ((strcmp(argv[argNum],"--grab_kprofile") ==
STRINGS_EQUAL))
{
/* We will read the /proc/profile file on configurable timeout */
GrabKProfile = TRUE;
++argNum;
/* If the jittter is > this #, then the profile is grabbed. */
ProfileTriggerMSecs = (long) atoi(argv[argNum]);
if(ProfileTriggerMSecs <= 0){
printf("Illegal value for profile trigger threshold.\n");
exit(0);
}
}
else if ((strcmp(argv[argNum],"--siggc") ==
STRINGS_EQUAL))
{
/* We will SIGSTOP/SIGCONT the specified pid */
SignalGCTask = TRUE;
++argNum;
GCTaskPID = atoi(argv[argNum]);
if(ProfileTriggerMSecs <= 0){
printf("Illegal value for JFFS(2) GC task pid.\n");
exit(0);
}
}
else {
/* Unknown argument. Print help information and exit. */
printf("Invalid option %s\n", argv[argNum]);
printf("Try 'JitterTest --help' for more information.\n");
exit(0);
}
}
}
return;
}
/***********************************************************************
* SetFileName
* This function sets the output file name.
* output: N/A
***********************************************************************/
void SetFileName(
char * pFileName) /* ptr to desired output file name */
{
size_t fileNameLen; /* file name length (bytes) */
/* Check file name length. */
fileNameLen = strlen(pFileName);
if (fileNameLen > (size_t) MAX_FILE_NAME_LEN) {
printf("File name %s exceeds maximum length %d.\n",
pFileName, MAX_FILE_NAME_LEN);
exit(0);
}
/* File name length is OK so save the file name. */
strcpy(OutFileName, pFileName);
return;
}
/***********************************************************************
* SetInterruptPeriod
* This function sets the interrupt period.
* output: N/A
***********************************************************************/
void SetInterruptPeriod(
char * /* ptr to desired interrupt period */
pASCIIInterruptPeriodMilliSec)
{
long period; /* interrupt period */
period = atol(pASCIIInterruptPeriodMilliSec);
if ((period < MIN_INT_PERIOD_MILLISEC) ||
(period > MAX_INT_PERIOD_MILLISEC)) {
printf("Invalid interrupt period: %ld ms.\n", period);
exit(EXIT_INV_INT_PERIOD);
}
else {
InterruptPeriodMilliSec = period;
}
return;
}
/***********************************************************************
* SetSchedulerPriority
* This function sets the desired scheduler priority.
* output: N/A
***********************************************************************/
void SetSchedulerPriority(
char * pASCIISchedulerPriority) /* ptr to desired scheduler priority*/
{
int priority; /* desired scheduler priority value */
priority = atoi(pASCIISchedulerPriority);
if ((priority < MinPriority) ||
(priority > MaxPriority)) {
printf("Scheduler priority %d outside of range [%d, %d]\n",
priority, MinPriority, MaxPriority);
exit(EXIT_INV_SCHED_PRIORITY);
}
else {
RequestedPriority = priority;
RunAsRTTask = TRUE; /* We shall run as a POSIX real time task */
}
return;
}
/***********************************************************************
* PrintVersionInfo
* This function prints version information.
* output: N/A
***********************************************************************/
void PrintVersionInfo(void)
{
printf("JitterTest version %s\n", Version);
printf("Copyright (c) 2001, Daniel Industries, Inc.\n");
return;
}
/***********************************************************************
* PrintHelpInfo
* This function prints help information.
* output: N/A
***********************************************************************/
void PrintHelpInfo(void)
{
printf("Usage: JitterTest [options]\n");
printf(" *** Requires root privileges. ***\n");
printf("Option:\n");
printf(" [-h, --help, -?] Print this message and exit.\n");
printf(" [-v, --version] ");
printf( "Print the version number of JitterTest and exit.\n");
printf(" [-f FILE, --file FILE] Set output file name to FILE. Typically you would put this on the fs under test\n");
printf(" [-c FILE, --consolefile] Set device or file to write the console log to.\n\tTypically you would set this to /dev/console and save it on another computer.\n");
printf(" [-w BYTES, --write_bytes BYTES Write BYTES to FILE each period.\n");
printf(" [-r FILE, --readfile FILE] Also read 1 byte every cycle from FILE. FILE will be created and filled with data.\n");
printf(" [-t <n>, --time <n>] ");
printf( "Set interrupt period to <n> milliseconds.\n");
printf(" ");
printf( "Range: [%ld, %ld] milliseconds.\n",
MIN_INT_PERIOD_MILLISEC, MAX_INT_PERIOD_MILLISEC);
printf(" [-p <n>, --priority <n>] ");
printf( "Set scheduler priority to <n>.\n");
printf(" ");
printf( "Range: [%d, %d] (higher number = higher priority)\n",
MinPriority, MaxPriority);
printf(" [--grab_kprofile <THRESHOLD in ms>] Read the /proc/profile if jitter is > THRESHOLD and store in file.\n");
printf(" [--siggc <PID>] Before writing to fs send SIGSTOP to PID. After write send SIGCONT\n");
return;
}
/* A common write that checks for write errors and exits. Pass it __LINE__ for lineNo */
int Write(int fd, void *buf, size_t bytes, int lineNo)
{
int err;
err = write(fd, buf, bytes);
if(err < bytes)
{
printf("Write Error at line %i! Wanted to write %i bytes, but wrote only %i bytes.\n",
lineNo, bytes, err);
perror("Write did not complete. Error. Bye:"); /* show error from errno. */
exit(1);
}
return err;
}/* end Write*/
|
the_stack_data/234516987.c | typedef struct {
int w;
float x;
double y;
long long z;
} S1Ty;
typedef struct {
S1Ty A, B;
} S2Ty;
void printS1(S1Ty *V) {
printf("%d, %f, %f, %lld\n", V->w, V->x, V->y, V->z);
}
int main() {
S2Ty E;
E.A.w = 1;
E.A.x = 123.42f;
E.A.y = 19.0;
E.A.z = 123455678902ll;
E.B.w = 2;
E.B.x = 23.42f;
E.B.y = 29.0;
E.B.z = 23455678902ll;
printS1(&E.A);
printS1(&E.B);
return 0;
}
|
the_stack_data/115766383.c | /* { dg-do compile } */
/* { dg-options "-mavx512f" } */
void foo ()
{
register int zmm_var asm ("zmm6") __attribute__((unused));
__asm__ __volatile__("vpxord %%zmm0, %%zmm0, %%zmm7\n" : : : "zmm7" );
}
|
the_stack_data/93887165.c | /*
* arch/alpha/lib/checksum.c
*
* This file contains network checksum routines that are better done
* in an architecture-specific manner due to speed..
* Comments in other versions indicate that the algorithms are from RFC1071
*
* accellerated versions (and 21264 assembly versions ) contributed by
* Rick Gorton <[email protected]>
*/
#include <linux/module.h>
#include <linux/string.h>
#include <asm/byteorder.h>
static inline unsigned short from64to16(unsigned long x)
{
/* Using extract instructions is a bit more efficient
than the original shift/bitmask version. */
union {
unsigned long ul;
unsigned int ui[2];
unsigned short us[4];
} in_v, tmp_v, out_v;
in_v.ul = x;
tmp_v.ul = (unsigned long) in_v.ui[0] + (unsigned long) in_v.ui[1];
/* Since the bits of tmp_v.sh[3] are going to always be zero,
we don't have to bother to add that in. */
out_v.ul = (unsigned long) tmp_v.us[0] + (unsigned long) tmp_v.us[1]
+ (unsigned long) tmp_v.us[2];
/* Similarly, out_v.us[2] is always zero for the final add. */
return out_v.us[0] + out_v.us[1];
}
/*
* computes the checksum of the TCP/UDP pseudo-header
* returns a 16-bit checksum, already complemented.
*/
unsigned short int csum_tcpudp_magic(unsigned long saddr,
unsigned long daddr,
unsigned short len,
unsigned short proto,
unsigned int sum)
{
return ~from64to16(saddr + daddr + sum +
((unsigned long) ntohs(len) << 16) +
((unsigned long) proto << 8));
}
unsigned int csum_tcpudp_nofold(unsigned long saddr,
unsigned long daddr,
unsigned short len,
unsigned short proto,
unsigned int sum)
{
unsigned long result;
result = (saddr + daddr + sum +
((unsigned long) ntohs(len) << 16) +
((unsigned long) proto << 8));
/* Fold down to 32-bits so we don't lose in the typedef-less
network stack. */
/* 64 to 33 */
result = (result & 0xffffffff) + (result >> 32);
/* 33 to 32 */
result = (result & 0xffffffff) + (result >> 32);
return result;
}
/*
* Do a 64-bit checksum on an arbitrary memory area..
*
* This isn't a great routine, but it's not _horrible_ either. The
* inner loop could be unrolled a bit further, and there are better
* ways to do the carry, but this is reasonable.
*/
static inline unsigned long do_csum(const unsigned char * buff, int len)
{
int odd, count;
unsigned long result = 0;
if (len <= 0)
goto out;
odd = 1 & (unsigned long) buff;
if (odd) {
result = *buff << 8;
len--;
buff++;
}
count = len >> 1; /* nr of 16-bit words.. */
if (count) {
if (2 & (unsigned long) buff) {
result += *(unsigned short *) buff;
count--;
len -= 2;
buff += 2;
}
count >>= 1; /* nr of 32-bit words.. */
if (count) {
if (4 & (unsigned long) buff) {
result += *(unsigned int *) buff;
count--;
len -= 4;
buff += 4;
}
count >>= 1; /* nr of 64-bit words.. */
if (count) {
unsigned long carry = 0;
do {
unsigned long w = *(unsigned long *) buff;
count--;
buff += 8;
result += carry;
result += w;
carry = (w > result);
} while (count);
result += carry;
result = (result & 0xffffffff) + (result >> 32);
}
if (len & 4) {
result += *(unsigned int *) buff;
buff += 4;
}
}
if (len & 2) {
result += *(unsigned short *) buff;
buff += 2;
}
}
if (len & 1)
result += *buff;
result = from64to16(result);
if (odd)
result = ((result >> 8) & 0xff) | ((result & 0xff) << 8);
out:
return result;
}
/*
* This is a version of ip_compute_csum() optimized for IP headers,
* which always checksum on 4 octet boundaries.
*/
unsigned short ip_fast_csum(unsigned char * iph, unsigned int ihl)
{
return ~do_csum(iph,ihl*4);
}
/*
* computes the checksum of a memory block at buff, length len,
* and adds in "sum" (32-bit)
*
* returns a 32-bit number suitable for feeding into itself
* or csum_tcpudp_magic
*
* this function must be called with even lengths, except
* for the last fragment, which may be odd
*
* it's best to have buff aligned on a 32-bit boundary
*/
unsigned int csum_partial(const unsigned char * buff, int len, unsigned int sum)
{
unsigned long result = do_csum(buff, len);
/* add in old sum, and carry.. */
result += sum;
/* 32+c bits -> 32 bits */
result = (result & 0xffffffff) + (result >> 32);
return result;
}
EXPORT_SYMBOL(csum_partial);
/*
* this routine is used for miscellaneous IP-like checksums, mainly
* in icmp.c
*/
unsigned short ip_compute_csum(unsigned char * buff, int len)
{
return ~from64to16(do_csum(buff,len));
}
|
the_stack_data/187643084.c | extern void __VERIFIER_error() __attribute__ ((__noreturn__));
void __VERIFIER_assert(int expression) { if (!expression) { ERROR: /* assert not proved */
__VERIFIER_error(); }; return; }
int __global_lock;
void __VERIFIER_atomic_begin() { /* reachable */
/* reachable */
/* reachable */
/* reachable */
/* reachable */
/* reachable */
/* reachable */
__VERIFIER_assume(__global_lock==0); __global_lock=1; return; }
void __VERIFIER_atomic_end() { __VERIFIER_assume(__global_lock==1); __global_lock=0; return; }
#include "assert.h"
#include "pthread.h"
#ifndef TRUE
#define TRUE (_Bool)1
#endif
#ifndef FALSE
#define FALSE (_Bool)0
#endif
#ifndef NULL
#define NULL ((void*)0)
#endif
#ifndef FENCE
#define FENCE(x) ((void)0)
#endif
#ifndef IEEE_FLOAT_EQUAL
#define IEEE_FLOAT_EQUAL(x,y) (x==y)
#endif
#ifndef IEEE_FLOAT_NOTEQUAL
#define IEEE_FLOAT_NOTEQUAL(x,y) (x!=y)
#endif
void * P0(void *arg);
void * P1(void *arg);
void * P2(void *arg);
void fence();
void isync();
void lwfence();
int __unbuffered_cnt;
int __unbuffered_cnt = 0;
int __unbuffered_p0_EAX;
int __unbuffered_p0_EAX = 0;
_Bool __unbuffered_p0_EAX$flush_delayed;
int __unbuffered_p0_EAX$mem_tmp;
_Bool __unbuffered_p0_EAX$r_buff0_thd0;
_Bool __unbuffered_p0_EAX$r_buff0_thd1;
_Bool __unbuffered_p0_EAX$r_buff0_thd2;
_Bool __unbuffered_p0_EAX$r_buff0_thd3;
_Bool __unbuffered_p0_EAX$r_buff1_thd0;
_Bool __unbuffered_p0_EAX$r_buff1_thd1;
_Bool __unbuffered_p0_EAX$r_buff1_thd2;
_Bool __unbuffered_p0_EAX$r_buff1_thd3;
_Bool __unbuffered_p0_EAX$read_delayed;
int *__unbuffered_p0_EAX$read_delayed_var;
int __unbuffered_p0_EAX$w_buff0;
_Bool __unbuffered_p0_EAX$w_buff0_used;
int __unbuffered_p0_EAX$w_buff1;
_Bool __unbuffered_p0_EAX$w_buff1_used;
int __unbuffered_p0_EBX;
int __unbuffered_p0_EBX = 0;
int __unbuffered_p2_EAX;
int __unbuffered_p2_EAX = 0;
_Bool main$tmp_guard0;
_Bool main$tmp_guard1;
int x;
int x = 0;
int y;
int y = 0;
_Bool y$flush_delayed;
int y$mem_tmp;
_Bool y$r_buff0_thd0;
_Bool y$r_buff0_thd1;
_Bool y$r_buff0_thd2;
_Bool y$r_buff0_thd3;
_Bool y$r_buff1_thd0;
_Bool y$r_buff1_thd1;
_Bool y$r_buff1_thd2;
_Bool y$r_buff1_thd3;
_Bool y$read_delayed;
int *y$read_delayed_var;
int y$w_buff0;
_Bool y$w_buff0_used;
int y$w_buff1;
_Bool y$w_buff1_used;
_Bool weak$$choice0;
_Bool weak$$choice1;
_Bool weak$$choice2;
void * P0(void *arg)
{
__VERIFIER_atomic_begin();
weak$$choice0 = nondet_0();
weak$$choice2 = nondet_0();
y$flush_delayed = weak$$choice2;
y$mem_tmp = y;
y = !y$w_buff0_used || !y$r_buff0_thd1 && !y$w_buff1_used || !y$r_buff0_thd1 && !y$r_buff1_thd1 ? y : (y$w_buff0_used && y$r_buff0_thd1 ? y$w_buff0 : y$w_buff1);
y$w_buff0 = weak$$choice2 ? y$w_buff0 : (!y$w_buff0_used || !y$r_buff0_thd1 && !y$w_buff1_used || !y$r_buff0_thd1 && !y$r_buff1_thd1 ? y$w_buff0 : (y$w_buff0_used && y$r_buff0_thd1 ? y$w_buff0 : y$w_buff0));
y$w_buff1 = weak$$choice2 ? y$w_buff1 : (!y$w_buff0_used || !y$r_buff0_thd1 && !y$w_buff1_used || !y$r_buff0_thd1 && !y$r_buff1_thd1 ? y$w_buff1 : (y$w_buff0_used && y$r_buff0_thd1 ? y$w_buff1 : y$w_buff1));
y$w_buff0_used = weak$$choice2 ? y$w_buff0_used : (!y$w_buff0_used || !y$r_buff0_thd1 && !y$w_buff1_used || !y$r_buff0_thd1 && !y$r_buff1_thd1 ? y$w_buff0_used : (y$w_buff0_used && y$r_buff0_thd1 ? FALSE : y$w_buff0_used));
y$w_buff1_used = weak$$choice2 ? y$w_buff1_used : (!y$w_buff0_used || !y$r_buff0_thd1 && !y$w_buff1_used || !y$r_buff0_thd1 && !y$r_buff1_thd1 ? y$w_buff1_used : (y$w_buff0_used && y$r_buff0_thd1 ? FALSE : FALSE));
y$r_buff0_thd1 = weak$$choice2 ? y$r_buff0_thd1 : (!y$w_buff0_used || !y$r_buff0_thd1 && !y$w_buff1_used || !y$r_buff0_thd1 && !y$r_buff1_thd1 ? y$r_buff0_thd1 : (y$w_buff0_used && y$r_buff0_thd1 ? FALSE : y$r_buff0_thd1));
y$r_buff1_thd1 = weak$$choice2 ? y$r_buff1_thd1 : (!y$w_buff0_used || !y$r_buff0_thd1 && !y$w_buff1_used || !y$r_buff0_thd1 && !y$r_buff1_thd1 ? y$r_buff1_thd1 : (y$w_buff0_used && y$r_buff0_thd1 ? FALSE : FALSE));
__unbuffered_p0_EAX$read_delayed = TRUE;
__unbuffered_p0_EAX$read_delayed_var = &y;
__unbuffered_p0_EAX = y;
y = y$flush_delayed ? y$mem_tmp : y;
y$flush_delayed = FALSE;
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
__unbuffered_p0_EBX = x;
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
__unbuffered_cnt = __unbuffered_cnt + 1;
__VERIFIER_atomic_end();
return nondet_1();
}
void * P1(void *arg)
{
__VERIFIER_atomic_begin();
x = 1;
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
y = 1;
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
y = y$w_buff0_used && y$r_buff0_thd2 ? y$w_buff0 : (y$w_buff1_used && y$r_buff1_thd2 ? y$w_buff1 : y);
y$w_buff0_used = y$w_buff0_used && y$r_buff0_thd2 ? FALSE : y$w_buff0_used;
y$w_buff1_used = y$w_buff0_used && y$r_buff0_thd2 || y$w_buff1_used && y$r_buff1_thd2 ? FALSE : y$w_buff1_used;
y$r_buff0_thd2 = y$w_buff0_used && y$r_buff0_thd2 ? FALSE : y$r_buff0_thd2;
y$r_buff1_thd2 = y$w_buff0_used && y$r_buff0_thd2 || y$w_buff1_used && y$r_buff1_thd2 ? FALSE : y$r_buff1_thd2;
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
__unbuffered_cnt = __unbuffered_cnt + 1;
__VERIFIER_atomic_end();
return nondet_1();
}
void * P2(void *arg)
{
__VERIFIER_atomic_begin();
weak$$choice0 = nondet_0();
weak$$choice2 = nondet_0();
y$flush_delayed = weak$$choice2;
y$mem_tmp = y;
y = !y$w_buff0_used || !y$r_buff0_thd3 && !y$w_buff1_used || !y$r_buff0_thd3 && !y$r_buff1_thd3 ? y : (y$w_buff0_used && y$r_buff0_thd3 ? y$w_buff0 : y$w_buff1);
y$w_buff0 = weak$$choice2 ? y$w_buff0 : (!y$w_buff0_used || !y$r_buff0_thd3 && !y$w_buff1_used || !y$r_buff0_thd3 && !y$r_buff1_thd3 ? y$w_buff0 : (y$w_buff0_used && y$r_buff0_thd3 ? y$w_buff0 : y$w_buff0));
y$w_buff1 = weak$$choice2 ? y$w_buff1 : (!y$w_buff0_used || !y$r_buff0_thd3 && !y$w_buff1_used || !y$r_buff0_thd3 && !y$r_buff1_thd3 ? y$w_buff1 : (y$w_buff0_used && y$r_buff0_thd3 ? y$w_buff1 : y$w_buff1));
y$w_buff0_used = weak$$choice2 ? y$w_buff0_used : (!y$w_buff0_used || !y$r_buff0_thd3 && !y$w_buff1_used || !y$r_buff0_thd3 && !y$r_buff1_thd3 ? y$w_buff0_used : (y$w_buff0_used && y$r_buff0_thd3 ? FALSE : y$w_buff0_used));
y$w_buff1_used = weak$$choice2 ? y$w_buff1_used : (!y$w_buff0_used || !y$r_buff0_thd3 && !y$w_buff1_used || !y$r_buff0_thd3 && !y$r_buff1_thd3 ? y$w_buff1_used : (y$w_buff0_used && y$r_buff0_thd3 ? FALSE : FALSE));
y$r_buff0_thd3 = weak$$choice2 ? y$r_buff0_thd3 : (!y$w_buff0_used || !y$r_buff0_thd3 && !y$w_buff1_used || !y$r_buff0_thd3 && !y$r_buff1_thd3 ? y$r_buff0_thd3 : (y$w_buff0_used && y$r_buff0_thd3 ? FALSE : y$r_buff0_thd3));
y$r_buff1_thd3 = weak$$choice2 ? y$r_buff1_thd3 : (!y$w_buff0_used || !y$r_buff0_thd3 && !y$w_buff1_used || !y$r_buff0_thd3 && !y$r_buff1_thd3 ? y$r_buff1_thd3 : (y$w_buff0_used && y$r_buff0_thd3 ? FALSE : FALSE));
__unbuffered_p2_EAX = y;
y = y$flush_delayed ? y$mem_tmp : y;
y$flush_delayed = FALSE;
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
y = 2;
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
y = y$w_buff0_used && y$r_buff0_thd3 ? y$w_buff0 : (y$w_buff1_used && y$r_buff1_thd3 ? y$w_buff1 : y);
y$w_buff0_used = y$w_buff0_used && y$r_buff0_thd3 ? FALSE : y$w_buff0_used;
y$w_buff1_used = y$w_buff0_used && y$r_buff0_thd3 || y$w_buff1_used && y$r_buff1_thd3 ? FALSE : y$w_buff1_used;
y$r_buff0_thd3 = y$w_buff0_used && y$r_buff0_thd3 ? FALSE : y$r_buff0_thd3;
y$r_buff1_thd3 = y$w_buff0_used && y$r_buff0_thd3 || y$w_buff1_used && y$r_buff1_thd3 ? FALSE : y$r_buff1_thd3;
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
__unbuffered_cnt = __unbuffered_cnt + 1;
__VERIFIER_atomic_end();
return nondet_1();
}
void fence()
{
}
void isync()
{
}
void lwfence()
{
}
int main()
{
pthread_create(NULL, NULL, P0, NULL);
pthread_create(NULL, NULL, P1, NULL);
pthread_create(NULL, NULL, P2, NULL);
__VERIFIER_atomic_begin();
main$tmp_guard0 = __unbuffered_cnt == 3;
__VERIFIER_atomic_end();
__VERIFIER_assume(main$tmp_guard0);
__VERIFIER_atomic_begin();
y = y$w_buff0_used && y$r_buff0_thd0 ? y$w_buff0 : (y$w_buff1_used && y$r_buff1_thd0 ? y$w_buff1 : y);
y$w_buff0_used = y$w_buff0_used && y$r_buff0_thd0 ? FALSE : y$w_buff0_used;
y$w_buff1_used = y$w_buff0_used && y$r_buff0_thd0 || y$w_buff1_used && y$r_buff1_thd0 ? FALSE : y$w_buff1_used;
y$r_buff0_thd0 = y$w_buff0_used && y$r_buff0_thd0 ? FALSE : y$r_buff0_thd0;
y$r_buff1_thd0 = y$w_buff0_used && y$r_buff0_thd0 || y$w_buff1_used && y$r_buff1_thd0 ? FALSE : y$r_buff1_thd0;
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
/* Program was expected to be safe for X86, model checker should have said NO.
This likely is a bug in the tool chain. */
weak$$choice0 = nondet_0();
/* Program was expected to be safe for X86, model checker should have said NO.
This likely is a bug in the tool chain. */
weak$$choice2 = nondet_0();
/* Program was expected to be safe for X86, model checker should have said NO.
This likely is a bug in the tool chain. */
y$flush_delayed = weak$$choice2;
/* Program was expected to be safe for X86, model checker should have said NO.
This likely is a bug in the tool chain. */
y$mem_tmp = y;
/* Program was expected to be safe for X86, model checker should have said NO.
This likely is a bug in the tool chain. */
y = !y$w_buff0_used || !y$r_buff0_thd0 && !y$w_buff1_used || !y$r_buff0_thd0 && !y$r_buff1_thd0 ? y : (y$w_buff0_used && y$r_buff0_thd0 ? y$w_buff0 : y$w_buff1);
/* Program was expected to be safe for X86, model checker should have said NO.
This likely is a bug in the tool chain. */
y$w_buff0 = weak$$choice2 ? y$w_buff0 : (!y$w_buff0_used || !y$r_buff0_thd0 && !y$w_buff1_used || !y$r_buff0_thd0 && !y$r_buff1_thd0 ? y$w_buff0 : (y$w_buff0_used && y$r_buff0_thd0 ? y$w_buff0 : y$w_buff0));
/* Program was expected to be safe for X86, model checker should have said NO.
This likely is a bug in the tool chain. */
y$w_buff1 = weak$$choice2 ? y$w_buff1 : (!y$w_buff0_used || !y$r_buff0_thd0 && !y$w_buff1_used || !y$r_buff0_thd0 && !y$r_buff1_thd0 ? y$w_buff1 : (y$w_buff0_used && y$r_buff0_thd0 ? y$w_buff1 : y$w_buff1));
/* Program was expected to be safe for X86, model checker should have said NO.
This likely is a bug in the tool chain. */
y$w_buff0_used = weak$$choice2 ? y$w_buff0_used : (!y$w_buff0_used || !y$r_buff0_thd0 && !y$w_buff1_used || !y$r_buff0_thd0 && !y$r_buff1_thd0 ? y$w_buff0_used : (y$w_buff0_used && y$r_buff0_thd0 ? FALSE : y$w_buff0_used));
/* Program was expected to be safe for X86, model checker should have said NO.
This likely is a bug in the tool chain. */
y$w_buff1_used = weak$$choice2 ? y$w_buff1_used : (!y$w_buff0_used || !y$r_buff0_thd0 && !y$w_buff1_used || !y$r_buff0_thd0 && !y$r_buff1_thd0 ? y$w_buff1_used : (y$w_buff0_used && y$r_buff0_thd0 ? FALSE : FALSE));
/* Program was expected to be safe for X86, model checker should have said NO.
This likely is a bug in the tool chain. */
y$r_buff0_thd0 = weak$$choice2 ? y$r_buff0_thd0 : (!y$w_buff0_used || !y$r_buff0_thd0 && !y$w_buff1_used || !y$r_buff0_thd0 && !y$r_buff1_thd0 ? y$r_buff0_thd0 : (y$w_buff0_used && y$r_buff0_thd0 ? FALSE : y$r_buff0_thd0));
/* Program was expected to be safe for X86, model checker should have said NO.
This likely is a bug in the tool chain. */
y$r_buff1_thd0 = weak$$choice2 ? y$r_buff1_thd0 : (!y$w_buff0_used || !y$r_buff0_thd0 && !y$w_buff1_used || !y$r_buff0_thd0 && !y$r_buff1_thd0 ? y$r_buff1_thd0 : (y$w_buff0_used && y$r_buff0_thd0 ? FALSE : FALSE));
/* Program was expected to be safe for X86, model checker should have said NO.
This likely is a bug in the tool chain. */
weak$$choice1 = nondet_0();
/* Program was expected to be safe for X86, model checker should have said NO.
This likely is a bug in the tool chain. */
__unbuffered_p0_EAX = __unbuffered_p0_EAX$read_delayed ? (weak$$choice1 ? *__unbuffered_p0_EAX$read_delayed_var : __unbuffered_p0_EAX) : __unbuffered_p0_EAX;
/* Program was expected to be safe for X86, model checker should have said NO.
This likely is a bug in the tool chain. */
main$tmp_guard1 = !(y == 2 && __unbuffered_p0_EAX == 2 && __unbuffered_p0_EBX == 0 && __unbuffered_p2_EAX == 1);
/* Program was expected to be safe for X86, model checker should have said NO.
This likely is a bug in the tool chain. */
y = y$flush_delayed ? y$mem_tmp : y;
/* Program was expected to be safe for X86, model checker should have said NO.
This likely is a bug in the tool chain. */
y$flush_delayed = FALSE;
__VERIFIER_atomic_end();
/* Program was expected to be safe for X86, model checker should have said NO.
This likely is a bug in the tool chain. */
__VERIFIER_assert(main$tmp_guard1);
/* reachable */
return 0;
}
|
the_stack_data/126703146.c | /*Exercise 3 - Repetition
Write a C program to calculate the sum of the numbers from 1 to n.
Where n is a keyboard input.
e.g.
n -> 100
sum = 1+2+3+....+ 99+100 = 5050
n -> 1-
sum = 1+2+3+...+10 = 55 */
#include <stdio.h>
int main() {
int no,count=1,sum=0;
printf("Enter a number : ");
scanf("%d", &no);
while(count <= no)
{
sum=sum +count;
count=count+1;
}
printf("Sum is:%d",sum);
return 0;
}
|
the_stack_data/122014429.c | /*-
* Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code was contributed to The NetBSD Foundation by Klaus Klein.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the NetBSD
* Foundation, Inc. and its contributors.
* 4. Neither the name of The NetBSD Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifdef __WIN32
#ifndef JSI_AMALGAMATION
#include "../src/jsiInt.h"
#include "compat.h"
#endif
#define TM_YEAR_BASE 1900
#include "ctype.h"
#include "string.h"
#include "time.h"
#include "stdio.h"
/*
* We do not implement alternate representations. However, we always
* check whether a given modifier is allowed for a certain conversion.
*/
#define ALT_E 0x01
#define ALT_O 0x02
#define LEGAL_ALT(x) { if (alt_format & ~(x)) return (0); }
static int conv_num(const char **, int *, int, int);
static const char *day[7] = {
"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday",
"Friday", "Saturday"
};
static const char *abday[7] = {
"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
};
static const char *mon[12] = {
"January", "February", "March", "April", "May", "June", "July",
"August", "September", "October", "November", "December"
};
static const char *abmon[12] = {
"Jan", "Feb", "Mar", "Apr", "May", "Jun",
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
};
static const char *am_pm[2] = {
"AM", "PM"
};
char *
strptime(const char *buf, const char *fmt, struct tm *tm)
{
char c;
const char *bp;
size_t len = 0;
int alt_format, i, split_year = 0;
bp = buf;
while ((c = *fmt) != '\0') {
/* Clear `alternate' modifier prior to new conversion. */
alt_format = 0;
/* Eat up white-space. */
if (isspace(c)) {
while (isspace(*bp))
bp++;
fmt++;
continue;
}
if ((c = *fmt++) != '%')
goto literal;
again:switch (c = *fmt++) {
case '%': /* "%%" is converted to "%". */
literal:
if (c != *bp++)
return (0);
break;
/*
* * "Alternative" modifiers. Just set the appropriate flag
* * and start over again.
* */
case 'E': /* "%E?" alternative conversion modifier. */
LEGAL_ALT(0);
alt_format |= ALT_E;
goto again;
case 'O': /* "%O?" alternative conversion modifier. */
LEGAL_ALT(0);
alt_format |= ALT_O;
goto again;
/*
* * "Complex" conversion rules, implemented through recursion.
* */
case 'c': /* Date and time, using the locale's format. */
LEGAL_ALT(ALT_E);
if (!(bp = strptime(bp, "%x %X", tm)))
return (0);
break;
case 'D': /* The date as "%m/%d/%y". */
LEGAL_ALT(0);
if (!(bp = strptime(bp, "%m/%d/%y", tm)))
return (0);
break;
case 'R': /* The time as "%H:%M". */
LEGAL_ALT(0);
if (!(bp = strptime(bp, "%H:%M", tm)))
return (0);
break;
case 'r': /* The time in 12-hour clock representation. */
LEGAL_ALT(0);
if (!(bp = strptime(bp, "%I:%M:%S %p", tm)))
return (0);
break;
case 'T': /* The time as "%H:%M:%S". */
LEGAL_ALT(0);
if (!(bp = strptime(bp, "%H:%M:%S", tm)))
return (0);
break;
case 'X': /* The time, using the locale's format. */
LEGAL_ALT(ALT_E);
if (!(bp = strptime(bp, "%H:%M:%S", tm)))
return (0);
break;
case 'x': /* The date, using the locale's format. */
LEGAL_ALT(ALT_E);
if (!(bp = strptime(bp, "%m/%d/%y", tm)))
return (0);
break;
/*
* * "Elementary" conversion rules.
* */
case 'A': /* The day of week, using the locale's form. */
case 'a':
LEGAL_ALT(0);
for (i = 0; i < 7; i++) {
/* Full name. */
len = strlen(day[i]);
if (strncasecmp(day[i], bp, len) == 0)
break;
/* Abbreviated name. */
len = strlen(abday[i]);
if (strncasecmp(abday[i], bp, len) == 0)
break;
}
/* Nothing matched. */
if (i == 7)
return (0);
tm->tm_wday = i;
bp += len;
break;
case 'B': /* The month, using the locale's form. */
case 'b':
case 'h':
LEGAL_ALT(0);
for (i = 0; i < 12; i++) {
/* Full name. */
len = strlen(mon[i]);
if (strncasecmp(mon[i], bp, len) == 0)
break;
/* Abbreviated name. */
len = strlen(abmon[i]);
if (strncasecmp(abmon[i], bp, len) == 0)
break;
}
/* Nothing matched. */
if (i == 12)
return (0);
tm->tm_mon = i;
bp += len;
break;
case 'C': /* The century number. */
LEGAL_ALT(ALT_E);
if (!(conv_num(&bp, &i, 0, 99)))
return (0);
if (split_year) {
tm->tm_year = (tm->tm_year % 100) + (i * 100);
} else {
tm->tm_year = i * 100;
split_year = 1;
}
break;
case 'd': /* The day of month. */
case 'e':
LEGAL_ALT(ALT_O);
if (!(conv_num(&bp, &tm->tm_mday, 1, 31)))
return (0);
break;
case 'k': /* The hour (24-hour clock representation). */
LEGAL_ALT(0);
/* FALLTHROUGH */
case 'H':
LEGAL_ALT(ALT_O);
if (!(conv_num(&bp, &tm->tm_hour, 0, 23)))
return (0);
break;
case 'l': /* The hour (12-hour clock representation). */
LEGAL_ALT(0);
/* FALLTHROUGH */
case 'I':
LEGAL_ALT(ALT_O);
if (!(conv_num(&bp, &tm->tm_hour, 1, 12)))
return (0);
if (tm->tm_hour == 12)
tm->tm_hour = 0;
break;
case 'j': /* The day of year. */
LEGAL_ALT(0);
if (!(conv_num(&bp, &i, 1, 366)))
return (0);
tm->tm_yday = i - 1;
break;
case 'M': /* The minute. */
LEGAL_ALT(ALT_O);
if (!(conv_num(&bp, &tm->tm_min, 0, 59)))
return (0);
break;
case 'm': /* The month. */
LEGAL_ALT(ALT_O);
if (!(conv_num(&bp, &i, 1, 12)))
return (0);
tm->tm_mon = i - 1;
break;
case 'p': /* The locale's equivalent of AM/PM. */
LEGAL_ALT(0);
/* AM? */
if (strcasecmp(am_pm[0], bp) == 0) {
if (tm->tm_hour > 11)
return (0);
bp += strlen(am_pm[0]);
break;
}
/* PM? */
else if (strcasecmp(am_pm[1], bp) == 0) {
if (tm->tm_hour > 11)
return (0);
tm->tm_hour += 12;
bp += strlen(am_pm[1]);
break;
}
/* Nothing matched. */
return (0);
case 'S': /* The seconds. */
LEGAL_ALT(ALT_O);
if (!(conv_num(&bp, &tm->tm_sec, 0, 61)))
return (0);
break;
case 'U': /* The week of year, beginning on sunday. */
case 'W': /* The week of year, beginning on monday. */
LEGAL_ALT(ALT_O);
/*
* * XXX This is bogus, as we can not assume any valid
* * information present in the tm structure at this
* * point to calculate a real value, so just check the
* * range for now.
* */
if (!(conv_num(&bp, &i, 0, 53)))
return (0);
break;
case 'w': /* The day of week, beginning on sunday. */
LEGAL_ALT(ALT_O);
if (!(conv_num(&bp, &tm->tm_wday, 0, 6)))
return (0);
break;
case 'Y': /* The year. */
LEGAL_ALT(ALT_E);
if (!(conv_num(&bp, &i, 0, 9999)))
return (0);
tm->tm_year = i - TM_YEAR_BASE;
break;
case 'y': /* The year within 100 years of the epoch. */
LEGAL_ALT(ALT_E | ALT_O);
if (!(conv_num(&bp, &i, 0, 99)))
return (0);
if (split_year) {
tm->tm_year = ((tm->tm_year / 100) * 100) + i;
break;
}
split_year = 1;
if (i <= 68)
tm->tm_year = i + 2000 - TM_YEAR_BASE;
else
tm->tm_year = i + 1900 - TM_YEAR_BASE;
break;
/*
* * Miscellaneous conversions.
* */
case 'n': /* Any kind of white-space. */
case 't':
LEGAL_ALT(0);
while (isspace(*bp))
bp++;
break;
default: /* Unknown/unsupported conversion. */
return (0);
}
}
/* LINTED functional specification */
return ((char *) bp);
}
static int
conv_num(const char **buf, int *dest, int llim, int ulim)
{
int result = 0;
/* The limit also determines the number of valid digits. */
int rulim = ulim;
if (**buf < '0' || **buf > '9')
return (0);
do {
result *= 10;
result += *(*buf)++ - '0';
rulim /= 10;
} while ((result * 10 <= ulim) && rulim && **buf >= '0' && **buf <= '9');
if (result < llim || result > ulim)
return (0);
*dest = result;
return (1);
}
#endif
|
the_stack_data/58767.c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
void print_headings()
{
printf("%2s", "N");
printf(" %10s", "Length");
printf(" %-20s", "Entropy");
printf(" %-40s", "Word");
printf("\n");
}
double calculate_entropy(int ones, int zeros)
{
double result = 0;
int total = ones + zeros;
result -= (double) ones / total * log2((double) ones / total);
result -= (double) zeros / total * log2((double) zeros / total);
if (result != result) { // NAN
result = 0;
}
return result;
}
void print_entropy(char *word)
{
int ones = 0;
int zeros = 0;
int i;
for (i = 0; word[i]; i++) {
char c = word[i];
switch (c) {
case '0':
zeros++;
break;
case '1':
ones++;
break;
}
}
double entropy = calculate_entropy(ones, zeros);
printf(" %-20.18f", entropy);
}
void print_word(int n, char *word)
{
printf("%2d", n);
printf(" %10ld", strlen(word));
print_entropy(word);
if (n < 10) {
printf(" %-40s", word);
} else {
printf(" %-40s", "...");
}
printf("\n");
}
int main(int argc, char *argv[])
{
print_headings();
char *last_word = malloc(2);
strcpy(last_word, "1");
char *current_word = malloc(2);
strcpy(current_word, "0");
print_word(1, last_word);
int i;
for (i = 2; i <= 37; i++) {
print_word(i, current_word);
char *next_word = malloc(strlen(current_word) + strlen(last_word) + 1);
strcpy(next_word, current_word);
strcat(next_word, last_word);
free(last_word);
last_word = current_word;
current_word = next_word;
}
free(last_word);
free(current_word);
return 0;
}
|
the_stack_data/125141537.c |
// PROGRAM-NAME : Reverse of an Integer
// By Angel Mariya Johnson
// PROGRAM-CODE :
#include <stdio.h>
int main() {
int n, rev = 0, remainder;
printf("Enter an integer: ");
scanf("%d", &n);
while (n != 0) {
remainder = n % 10;
rev = rev * 10 + remainder;
n /= 10;
}
printf("Reversed number = %d", rev);
return 0;
}
|
the_stack_data/215769218.c | #include <stdio.h>
int main()
{
printf("Hello World!\n");
printf("C'est moi");
return 0;
}
|
the_stack_data/310084.c | /**
* C use process pipe communication example.
*
* License - MIT.
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#define MAX_BUF_LEN 128
/**
* Main function.
*/
int main(void)
{
int len = 0;
pid_t pid = -1;
int fd[2] = { 0 };
char read_buf[MAX_BUF_LEN + 1] = { 0 };
/**
* Create unnamed pipe.
*
* fd[0] is read pipe.
* fd[1] is write pipe.
*
* Note:
* 1. Half duplex communication.
* 2. Processes can communicate using unnamed pipes only if they are related.
*
* So, if you want need duplex communication, you need create two pipe.
*/
if (0 > pipe(fd)) {
printf("Error in pipe.\n");
goto out_pipe;
}
/* Create child process. */
pid = fork();
if (0 > pid) {
printf("Error in fork.\n");
goto out_fork;
}
/* Child process. */
else if (0 == pid) {
/* Receive message. */
close(fd[1]);
len = read(fd[0], read_buf, MAX_BUF_LEN);
close(fd[0]);
/* '\0' == 0, '0' == 48. */
read_buf[len] = 0;
printf("Child process receive: %s.\n", read_buf);
exit(0);
}
/* Parent process. */
else {
/* Send message. */
close(fd[0]);
printf("Parent process send: Hello.\n");
write(fd[1], "Hello", 5);
close(fd[1]);
}
return 0;
out_fork:
out_pipe:
return -1;
}
|
the_stack_data/243894253.c | //
// Created by NBao on 2021/01/25.
//
#include <stdio.h>
void swap(int *a, int *b) {
int temp;
temp = *b;
*b = *a;
*a = temp;
}
int Partition(int Array[], int begin, int end) {
int pivot = Array[end];
int i = begin;
for (int j = begin; j < end; j++) {
if (Array[j] <= pivot) {
swap(&Array[j], &Array[i++]);
}
}
swap(&Array[i], &Array[end]);
return i;
}
void Quicksort(int Array[], int begin, int end) {
if (begin < end) {
int pivotPos = Partition(Array, begin, end);
Quicksort(Array, begin, pivotPos - 1);
Quicksort(Array, pivotPos + 1, end);
}
}
int main() {
int list[] = {9, 4, 6, 8, 2, 5, 7, 1, 3};
char *s[2] = {"%d ", "%d\n"};
for (int i = 0; i < 9; i++) {
printf(s[i == 8], list[i]);
}
Quicksort(list, 0, 8);
for (int i = 0; i < 9; i++) {
printf(s[i == 8], list[i]);
}
return 0;
} |
the_stack_data/18887028.c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
int
erro(const char *str)
{
fprintf(stderr, "%s.\n", str);
return EXIT_FAILURE;
}
int
main(int argc, char **argv)
{
if (argc != 2)
return erro("A chamada correta contém exatamente um argumento com a palavra");
unsigned int tam = strlen(argv[1]);
char *palavra = malloc((tam+1) * sizeof(char));
if (!palavra)
return erro("malloc(): palavra");
memcpy(palavra, argv[1], tam);
double *probs = malloc((tam+1) * sizeof(double));
if (!probs)
return erro("malloc(): probs");
double *log_probs = malloc((tam+1) * sizeof(double));
if (!log_probs)
return erro("malloc(): log_probs");
unsigned int *ocorrencias = calloc(tam + 1, sizeof(int));
if (!ocorrencias)
return erro("calloc(): ocorrencias");
unsigned int i, j;
for (i=0; i<tam; i++)
for (j=0; j<tam; j++)
if (palavra[i] == palavra[j])
ocorrencias[i]++;
for (i=0; i<tam; i++) {
probs[i] = (double) ocorrencias[i] / tam;
log_probs[i] = (double) log(probs[i]) / log(2);
/*printf("%d: %d %1.3f %1.3f\n", i, ocorrencias[i], probs[i], log_probs[i]);*/
}
double entropia = 0;
for (i=0; i<tam; i++)
entropia -= probs[i] * log_probs[i];
printf("%2.5f\n", entropia);
return EXIT_SUCCESS;
}
|
the_stack_data/215768190.c | /*
* The following program reverses an array
*/
#include<stdio.h>
#include<string.h>
#include<assert.h>
/*
* This function reverses an integer array in linear time (O(n)).
*/
void reverse (int* array, int num)
{
int left;
int right;
int temp;
/*
* If the array pointer is NULL, then return from the function
*/
if (!array) {
return;
}
/*
* If the number of array elements is less than zero, then return
* from the function
*/
if (num < 0) {
return;
}
left = 0;
right = num -1;
/*
* Iterate while 'left' is less than 'right'
*/
while (left < right) {
/*
* Swap the array elements using a temporary variable.
*/
temp = array[left];
array[left] = array[right];
array[right] = temp;
/*
* Increment the 'left' and decrement the 'right'
* counter.
*/
++left;
--right;
}
}
int main()
{
/*
* Test case: 1
*/
int array_test_1[] = {};
int array_expect_1[] = {};
reverse(array_test_1, sizeof(array_test_1)/sizeof(int));
assert(memcmp(array_test_1, array_expect_1,
sizeof(array_test_1)) == 0);
/*
* Test case: 2
*/
int array_test_2[] = {1,4,5};
int array_expect_2[] = {5,4,1};
reverse(array_test_2, sizeof(array_test_2)/sizeof(int));
assert(memcmp(array_test_2, array_expect_2,
sizeof(array_test_2)) == 0);
/*
* Test case: 3
*/
int array_test_3[] = {1,4,5,9,2,4};
int array_expect_3[] = {4,2,9,5,4,1};
reverse(array_test_3, sizeof(array_test_3)/sizeof(int));
assert(memcmp(array_test_3, array_expect_3,
sizeof(array_test_3)) == 0);
/*
* Test case: 4
*/
int* array_test_4 = NULL;
int* array_expect_4 = NULL;
reverse(array_test_4, sizeof(array_test_4)/sizeof(int));
assert(memcmp(array_test_4, array_expect_4,
0) == 0);
/*
* Test case: 5
*/
int array_test_5[] = {1,4,5,9,2,4};
int array_expect_5[] = {1,4,5,9,2,4};
reverse(array_test_5, -6);
assert(memcmp(array_test_5, array_expect_5,
sizeof(array_test_5)) == 0);
/*
* Test case: 6
*/
int array_test_6[] = {1,4,5,9,2,4};
int array_expect_6[] = {1,4,5,9,2,4};
reverse(array_test_6, 0);
assert(memcmp(array_test_6, array_expect_6,
sizeof(array_test_6)) == 0);
return 0;
}
|
the_stack_data/138894.c | #define NULL ((void*)0)
typedef unsigned long size_t; // Customize by platform.
typedef long intptr_t; typedef unsigned long uintptr_t;
typedef long scalar_t__; // Either arithmetic or pointer type.
/* By default, we understand bool (as a convenience). */
typedef int bool;
#define false 0
#define true 1
/* Forward declarations */
typedef struct TYPE_14__ TYPE_7__ ;
typedef struct TYPE_13__ TYPE_6__ ;
typedef struct TYPE_12__ TYPE_5__ ;
typedef struct TYPE_11__ TYPE_4__ ;
typedef struct TYPE_10__ TYPE_3__ ;
typedef struct TYPE_9__ TYPE_2__ ;
typedef struct TYPE_8__ TYPE_1__ ;
/* Type definitions */
typedef void* time_t ;
struct TYPE_14__ {scalar_t__ period; int offset; scalar_t__ last; void* next; void* directory; int /*<<< orphan*/ filesize; } ;
struct TYPE_10__ {void* stylesheet; } ;
struct TYPE_8__ {int /*<<< orphan*/ ip; int /*<<< orphan*/ port; } ;
struct Output {int is_virgin_file; int format; TYPE_7__ rotate; int /*<<< orphan*/ * fp; int /*<<< orphan*/ * funcs; int /*<<< orphan*/ * src; void* filename; TYPE_3__ xml; int /*<<< orphan*/ is_append; int /*<<< orphan*/ is_show_host; int /*<<< orphan*/ is_show_closed; int /*<<< orphan*/ is_show_open; int /*<<< orphan*/ is_interactive; int /*<<< orphan*/ is_gmt; int /*<<< orphan*/ is_banner; TYPE_1__ redis; void* when_scan_started; struct Masscan const* masscan; } ;
struct TYPE_12__ {scalar_t__ timeout; int offset; scalar_t__* directory; int /*<<< orphan*/ filesize; } ;
struct TYPE_13__ {int format; TYPE_5__ rotate; scalar_t__* filename; scalar_t__* stylesheet; int /*<<< orphan*/ is_append; int /*<<< orphan*/ is_show_host; int /*<<< orphan*/ is_show_closed; int /*<<< orphan*/ is_show_open; int /*<<< orphan*/ is_interactive; } ;
struct TYPE_9__ {int /*<<< orphan*/ ip; int /*<<< orphan*/ port; } ;
struct Masscan {int nic_count; TYPE_6__ output; TYPE_4__* nic; int /*<<< orphan*/ is_gmt; int /*<<< orphan*/ is_banners; TYPE_2__ redis; } ;
struct TYPE_11__ {int /*<<< orphan*/ src; } ;
typedef int /*<<< orphan*/ FILE ;
/* Variables and functions */
struct Output* CALLOC (int,int) ;
scalar_t__ LONG_MAX ;
#define Output_Binary 137
#define Output_Certs 136
#define Output_Grepable 135
#define Output_JSON 134
#define Output_List 133
#define Output_NDJSON 132
#define Output_None 131
#define Output_Redis 130
#define Output_Unicornscan 129
#define Output_XML 128
int /*<<< orphan*/ binary_output ;
int /*<<< orphan*/ certs_output ;
void* duplicate_string (scalar_t__*) ;
int /*<<< orphan*/ exit (int) ;
int /*<<< orphan*/ grepable_output ;
void* indexed_filename (scalar_t__*,unsigned int) ;
int /*<<< orphan*/ json_output ;
int /*<<< orphan*/ ndjson_output ;
void* next_rotate_time (scalar_t__,scalar_t__,int) ;
int /*<<< orphan*/ null_output ;
int /*<<< orphan*/ * open_rotate (struct Output*,scalar_t__*) ;
int /*<<< orphan*/ perror (scalar_t__*) ;
int /*<<< orphan*/ redis_output ;
int /*<<< orphan*/ text_output ;
void* time (int /*<<< orphan*/ ) ;
int /*<<< orphan*/ unicornscan_output ;
int /*<<< orphan*/ xml_output ;
struct Output *
output_create(const struct Masscan *masscan, unsigned thread_index)
{
struct Output *out;
unsigned i;
/* allocate/initialize memory */
out = CALLOC(1, sizeof(*out));
out->masscan = masscan;
out->when_scan_started = time(0);
out->is_virgin_file = 1;
/*
* Copy the configuration information from the 'masscan' structure.
*/
out->rotate.period = masscan->output.rotate.timeout;
out->rotate.offset = masscan->output.rotate.offset;
out->rotate.filesize = masscan->output.rotate.filesize;
out->redis.port = masscan->redis.port;
out->redis.ip = masscan->redis.ip;
out->is_banner = masscan->is_banners;
out->is_gmt = masscan->is_gmt;
out->is_interactive = masscan->output.is_interactive;
out->is_show_open = masscan->output.is_show_open;
out->is_show_closed = masscan->output.is_show_closed;
out->is_show_host = masscan->output.is_show_host;
out->is_append = masscan->output.is_append;
out->xml.stylesheet = duplicate_string(masscan->output.stylesheet);
out->rotate.directory = duplicate_string(masscan->output.rotate.directory);
if (masscan->nic_count <= 1)
out->filename = duplicate_string(masscan->output.filename);
else
out->filename = indexed_filename(masscan->output.filename, thread_index);
for (i=0; i<8; i++) {
out->src[i] = masscan->nic[i].src;
}
/*
* Link the appropriate output module.
* TODO: support multiple output modules
*/
out->format = masscan->output.format;
switch (out->format) {
case Output_List:
out->funcs = &text_output;
break;
case Output_Unicornscan:
out->funcs = &unicornscan_output;
break;
case Output_XML:
out->funcs = &xml_output;
break;
case Output_JSON:
out->funcs = &json_output;
break;
case Output_NDJSON:
out->funcs = &ndjson_output;
break;
case Output_Certs:
out->funcs = &certs_output;
break;
case Output_Binary:
out->funcs = &binary_output;
break;
case Output_Grepable:
out->funcs = &grepable_output;
break;
case Output_Redis:
out->funcs = &redis_output;
break;
case Output_None:
out->funcs = &null_output;
break;
default:
out->funcs = &null_output;
break;
}
/*
* Open the desired output file. We do this now at the start of the scan
* so that we can immediately notify the user of an error, rather than
* waiting midway through a long scan and have it fail.
*/
if (masscan->output.filename[0] && out->funcs != &null_output) {
FILE *fp;
fp = open_rotate(out, masscan->output.filename);
if (fp == NULL) {
perror(masscan->output.filename);
exit(1);
}
out->fp = fp;
out->rotate.last = time(0);
}
/*
* Set the time of the next rotation. If we aren't rotating files, then
* this time will be set at "infinity" in the future.
* TODO: this code isn't Y2036 compliant.
*/
if (masscan->output.rotate.timeout == 0) {
/* TODO: how does one find the max time_t value??*/
out->rotate.next = (time_t)LONG_MAX;
} else {
if (out->rotate.offset > 1) {
out->rotate.next = next_rotate_time(
out->rotate.last-out->rotate.period,
out->rotate.period, out->rotate.offset);
} else {
out->rotate.next = next_rotate_time(
out->rotate.last,
out->rotate.period, out->rotate.offset);
}
}
return out;
} |
the_stack_data/218379.c | /* 1 */ typedef struct {
/* 2 */ char* data;
/* 3 */ int key;
/* 4 */
} item;
/* 5 */
/* 6 */ item array[] = {
/* 7 */ {"bill", 3},
/* 8 */ {"neil", 4},
/* 9 */ {"john", 2},
/* 10 */ {"rick", 5},
/* 11 */ {"alex", 1},
/* 12 */
};
/* 13 */
/* 14 */ sort(a, n)
/* 15 */ item* a;
/* 16 */ {
/* 17 */ int i = 0, j = 0;
/* 18 */ int s = 1;
/* 19 */
/* 20 */ for (; i < n && s != 0; i++) {
/* 21 */ s = 0;
/* 22 */ for (j = 0; j < n; j++) {
/* 23 */ if (a[j].key > a[j + 1].key) {
/* 24 */ item t = a[j];
/* 25 */ a[j] = a[j + 1];
/* 26 */ a[j + 1] = t;
/* 27 */ s++;
/* 28 */
}
/* 29 */
}
/* 30 */ n--;
/* 31 */
}
/* 32 */
}
/* 33 */
/* 34 */ main()
/* 35 */ {
/* 36 */ int i;
/* 37 */ sort(array, 5);
/* 38 */ for (i = 0; i < 5; i++)
/* 39 */ printf("array[%d] = {%s, %d}\n",
/* 40 */ i, array[i].data, array[i].key);
/* 41 */
}
|
the_stack_data/137882.c | #include <stdio.h>
void print_array(int a[], int n)
{
int i;
for (i = 0; i < n; i++)
printf("a[%d] = %d\n", i, a[i]);
return;
}
void inc_array(int a[], int n)
{
int i;
printf("inc_array: a = %p\n", a);
for (i = 0; i < n; i++)
a[i]++;
return;
}
#define ASIZE 5
int main(void)
{
int i;
int array[5];
for (i = 0; i < 5; i++)
scanf("%d", &(array[i]));
printf("before inc_array\n");
print_array(array, 5);
inc_array(array, 5);
printf("after first inc_array\n");
print_array(array, 5);
inc_array(&(array[1]), 2);
printf("after second inc_array\n");
print_array(array, 5);
inc_array(&(array[2]), 2);
printf("after second inc_array\n");
print_array(array, 5);
return 0;
}
|
the_stack_data/215767186.c | #include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
int main(int argc, char *argv[])
{
int link_value, fd;
const char *path="linkfile";
struct stat orig_buf, new_buf;
if(argc!=2)
{
printf("Usage a <pathname>\n");
return 1;
}
printf("create newfile\n");
if((fd=creat(argv[1]), S_IRWXU | S_IRWXG | S_IRWXO)==-1)
{
printf("create file %s failed\n", argv[1]);
return 2;
}
printf("Get newfile status \n");
stat(argv[1], &orig_buf);
printf("orig_buf.st_nlink=%d \n", orig_buf.st_nlink);
printf("create link from %s to %s \n", argv[1],path);
if(link(argv[1],path));
{
printf("link call failed\n");
//return 3;
}
printf("link call successful \n");
stat(argv[1],&new_buf);
printf("new_buf.st_nlink=%d\n",new_buf.st_nlink);
return 0;
}
|
the_stack_data/90571.c | #include <stdio.h>
#include <math.h>
int main()
{
int i;
for (i = 1; i < 11; i++)
{
double p = pow(i, 2);
printf("%d^2 = %g\n", i, p);
}
return 0;
}
|
the_stack_data/176706087.c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stddef.h>
#include <math.h>
#include <float.h>
/*
* version 1.2.1 of grib headers w. ebisuzaki
* 1.2.2 added access to spectral reference value l. kornblueh
*/
#ifndef INT2
#define INT2(a,b) ((1-(int) ((unsigned) (a & 0x80) >> 6)) * (int) (((a & 0x7f) << 8) + b))
#endif
#define BDS_LEN(bds) (ec_large_grib ? len_ec_bds : ((int) ((bds[0]<<16)+(bds[1]<<8)+bds[2])) )
#define BDS_Flag(bds) (bds[3])
#define BDS_Grid(bds) ((bds[3] & 128) == 0)
#define BDS_Harmonic(bds) (bds[3] & 128)
#define BDS_Packing(bds) ((bds[3] & 64) != 0)
#define BDS_SimplePacking(bds) ((bds[3] & 64) == 0)
#define BDS_ComplexPacking(bds) ((bds[3] & 64) != 0)
#define BDS_OriginalType(bds) ((bds[3] & 32) != 0)
#define BDS_OriginalFloat(bds) ((bds[3] & 32) == 0)
#define BDS_OriginalInt(bds) ((bds[3] & 32) != 0)
#define BDS_MoreFlags(bds) ((bds[3] & 16) != 0)
#define BDS_UnusedBits(bds) ((int) (bds[3] & 15))
#define BDS_BinScale(bds) INT2(bds[4],bds[5])
#define BDS_RefValue(bds) (ibm2flt(bds+6))
#define BDS_NumBits(bds) ((int) bds[10])
#define BDS_Harmonic_RefValue(bds) (ibm2flt(bds+11))
#define BDS_DataStart(bds) ((int) (11 + BDS_MoreFlags(bds)*3))
/* breaks if BDS_NumBits(bds) == 0 */
/*
#define BDS_NValues(bds) (((BDS_LEN(bds) - BDS_DataStart(bds))*8 - \
BDS_UnusedBits(bds)) / BDS_NumBits(bds))
*/
/*
#define BDS_NValues(bds) ((BDS_NumBits(bds) == 0) ? 0 : \
(((BDS_LEN(bds) - BDS_DataStart(bds))*8 - \
BDS_UnusedBits(bds)) / BDS_NumBits(bds)))
*/
#define BDS_P1(bds) (bds[16] * 256 + bds[17])
#define BDS_P2(bds) (bds[18] * 256 + bds[19])
/* undefined value -- if bitmap */
#define UNDEFINED 9.999e20
/* version 1.2 of grib headers w. ebisuzaki */
#define BMS_LEN(bms) ((bms) == NULL ? 0 : (bms[0]<<16)+(bms[1]<<8)+bms[2])
#define BMS_UnusedBits(bms) ((bms) == NULL ? 0 : bms[3])
#define BMS_StdMap(bms) ((bms) == NULL ? 0 : ((bms[4]<<8) + bms[5]))
#define BMS_bitmap(bms) ((bms) == NULL ? NULL : (bms)+6)
#define BMS_nxny(bms) ((((bms) == NULL) || BMS_StdMap(bms)) \
? 0 : (BMS_LEN(bms)*8 - 48 - BMS_UnusedBits(bms)))
/* cnames_file.c */
/* search order for parameter names
*
* #define P_TABLE_FIRST
* look at external parameter table first
*
* otherwise use builtin NCEP-2 or ECMWF-160 first
*/
/* #define P_TABLE_FIRST */
/* search order for external parameter table
* 1) environment variable GRIBTAB
* 2) environment variable gribtab
* 3) the file 'gribtab' in current directory
*/
/* cnames.c */
/* then default values */
char *k5toa(unsigned char *pds);
char *k5_comments(unsigned char *pds);
int setup_user_table(int center, int subcenter, int ptable);
struct ParmTable {
/* char *name, *comment; */
char *name, *comment;
};
/* version 1.4.5 of grib headers w. ebisuzaki */
/* this version is incomplete */
/* 5/00 - dx/dy or di/dj controlled by bit 1 of resolution byte */
/* 8/00 - dx/dy or di/dj for polar and lambert not controlled by res. byte */
/* Added headers for the triangular grid of the gme model of DWD
Helmut P. Frank, 13.09.2001 */
/* Clean up of triangular grid properties access and added spectral information
Luis Kornblueh, 27.03.2002 */
/* 8/08 - dx/dy (polar,lambert) controlled by bit 1 of resolution byte */
/* 5/11 Paul Schou: fixed GDS_Lambert_LonSP(gds) */
/* 6/11 Jeffery S. Smith Albers equal area projection */
#ifndef INT3
#define INT3(a,b,c) ((1-(int) ((unsigned) (a & 0x80) >> 6)) * (int) (((a & 127) << 16)+(b<<8)+c))
#endif
#ifndef INT2
#define INT2(a,b) ((1-(int) ((unsigned) (a & 0x80) >> 6)) * (int) (((a & 127) << 8) + b))
#endif
#ifndef UINT4
#define UINT4(a,b,c,d) ((int) ((a << 24) + (b << 16) + (c << 8) + (d)))
#endif
#ifndef UINT3
#define UINT3(a,b,c) ((int) ((a << 16) + (b << 8) + (c)))
#endif
#ifndef UINT2
#define UINT2(a,b) ((int) ((a << 8) + (b)))
#endif
#define GDS_Len1(gds) (gds[0])
#define GDS_Len2(gds) (gds[1])
#define GDS_Len3(gds) (gds[2])
#define GDS_LEN(gds) ((int) ((gds[0]<<16)+(gds[1]<<8)+gds[2]))
#define GDS_NV(gds) (gds[3])
#define GDS_DataType(gds) (gds[5])
#define GDS_LatLon(gds) (gds[5] == 0)
#define GDS_Mercator(gds) (gds[5] == 1)
#define GDS_Gnomonic(gds) (gds[5] == 2)
#define GDS_Lambert(gds) (gds[5] == 3)
#define GDS_Gaussian(gds) (gds[5] == 4)
#define GDS_Polar(gds) (gds[5] == 5)
#define GDS_Albers(gds) (gds[5] == 8)
#define GDS_RotLL(gds) (gds[5] == 10)
#define GDS_Harmonic(gds) (gds[5] == 50)
#define GDS_Triangular(gds) (gds[5] == 192)
#define GDS_ssEgrid(gds) (gds[5] == 201) /* semi-staggered E grid */
#define GDS_fEgrid(gds) (gds[5] == 202) /* filled E grid */
#define GDS_ss2dEgrid(gds) (gds[5] == 203) /* semi-staggered E grid 2 d*/
#define GDS_ss2dBgrid(gds) (gds[5] == 205) /* semi-staggered B grid 2 d*/
#define GDS_has_dy(mode) ((mode) & 128)
#define GDS_LatLon_nx(gds) ((int) ((gds[6] << 8) + gds[7]))
#define GDS_LatLon_ny(gds) ((int) ((gds[8] << 8) + gds[9]))
#define GDS_LatLon_La1(gds) INT3(gds[10],gds[11],gds[12])
#define GDS_LatLon_Lo1(gds) INT3(gds[13],gds[14],gds[15])
#define GDS_LatLon_mode(gds) (gds[16])
#define GDS_LatLon_La2(gds) INT3(gds[17],gds[18],gds[19])
#define GDS_LatLon_Lo2(gds) INT3(gds[20],gds[21],gds[22])
#define GDS_LatLon_dx(gds) (gds[16] & 128 ? INT2(gds[23],gds[24]) : 0)
#define GDS_LatLon_dy(gds) (gds[16] & 128 ? INT2(gds[25],gds[26]) : 0)
#define GDS_Gaussian_nlat(gds) ((gds[25]<<8)+gds[26])
#define GDS_LatLon_scan(gds) (gds[27])
#define GDS_Polar_nx(gds) (gds[16] & 128 ? ((gds[6] << 8) + gds[7]) : 0)
#define GDS_Polar_ny(gds) (gds[16] & 128 ? ((gds[8] << 8) + gds[9]) : 0)
#define GDS_Polar_La1(gds) INT3(gds[10],gds[11],gds[12])
#define GDS_Polar_Lo1(gds) INT3(gds[13],gds[14],gds[15])
#define GDS_Polar_mode(gds) (gds[16])
#define GDS_Polar_Lov(gds) INT3(gds[17],gds[18],gds[19])
#define GDS_Polar_scan(gds) (gds[27])
#define GDS_Polar_Dx(gds) INT3(gds[20], gds[21], gds[22])
#define GDS_Polar_Dy(gds) INT3(gds[23], gds[24], gds[25])
#define GDS_Polar_pole(gds) ((gds[26] & 128) == 128)
#define GDS_Lambert_nx(gds) ((gds[6] << 8) + gds[7])
#define GDS_Lambert_ny(gds) ((gds[8] << 8) + gds[9])
#define GDS_Lambert_La1(gds) INT3(gds[10],gds[11],gds[12])
#define GDS_Lambert_Lo1(gds) INT3(gds[13],gds[14],gds[15])
#define GDS_Lambert_mode(gds) (gds[16])
#define GDS_Lambert_Lov(gds) INT3(gds[17],gds[18],gds[19])
#define GDS_Lambert_dx(gds) INT3(gds[20],gds[21],gds[22])
#define GDS_Lambert_dy(gds) INT3(gds[23],gds[24],gds[25])
#define GDS_Lambert_NP(gds) ((gds[26] & 128) == 0)
#define GDS_Lambert_scan(gds) (gds[27])
#define GDS_Lambert_Latin1(gds) INT3(gds[28],gds[29],gds[30])
#define GDS_Lambert_Latin2(gds) INT3(gds[31],gds[32],gds[33])
#define GDS_Lambert_LatSP(gds) INT3(gds[34],gds[35],gds[36])
/* bug found by Paul Schou 5/3/2011
#define GDS_Lambert_LonSP(gds) INT3(gds[37],gds[37],gds[37])
*/
#define GDS_Lambert_LonSP(gds) INT3(gds[37],gds[38],gds[39])
#define GDS_ssEgrid_n(gds) UINT2(gds[6],gds[7])
#define GDS_ssEgrid_n_dum(gds) UINT2(gds[8],gds[9])
#define GDS_ssEgrid_La1(gds) INT3(gds[10],gds[11],gds[12])
#define GDS_ssEgrid_Lo1(gds) INT3(gds[13],gds[14],gds[15])
#define GDS_ssEgrid_mode(gds) (gds[16])
#define GDS_ssEgrid_La2(gds) UINT3(gds[17],gds[18],gds[19])
#define GDS_ssEgrid_Lo2(gds) UINT3(gds[20],gds[21],gds[22])
#define GDS_ssEgrid_di(gds) (gds[16] & 128 ? INT2(gds[23],gds[24]) : 0)
#define GDS_ssEgrid_dj(gds) (gds[16] & 128 ? INT2(gds[25],gds[26]) : 0)
#define GDS_ssEgrid_scan(gds) (gds[27])
#define GDS_fEgrid_n(gds) UINT2(gds[6],gds[7])
#define GDS_fEgrid_n_dum(gds) UINT2(gds[8],gds[9])
#define GDS_fEgrid_La1(gds) INT3(gds[10],gds[11],gds[12])
#define GDS_fEgrid_Lo1(gds) INT3(gds[13],gds[14],gds[15])
#define GDS_fEgrid_mode(gds) (gds[16])
#define GDS_fEgrid_La2(gds) UINT3(gds[17],gds[18],gds[19])
#define GDS_fEgrid_Lo2(gds) UINT3(gds[20],gds[21],gds[22])
#define GDS_fEgrid_di(gds) (gds[16] & 128 ? INT2(gds[23],gds[24]) : 0)
#define GDS_fEgrid_dj(gds) (gds[16] & 128 ? INT2(gds[25],gds[26]) : 0)
#define GDS_fEgrid_scan(gds) (gds[27])
#define GDS_ss2dEgrid_nx(gds) UINT2(gds[6],gds[7])
#define GDS_ss2dEgrid_ny(gds) UINT2(gds[8],gds[9])
#define GDS_ss2dEgrid_La1(gds) INT3(gds[10],gds[11],gds[12])
#define GDS_ss2dEgrid_Lo1(gds) INT3(gds[13],gds[14],gds[15])
#define GDS_ss2dEgrid_mode(gds) (gds[16])
#define GDS_ss2dEgrid_La2(gds) INT3(gds[17],gds[18],gds[19])
#define GDS_ss2dEgrid_Lo2(gds) INT3(gds[20],gds[21],gds[22])
#define GDS_ss2dEgrid_di(gds) (gds[16] & 128 ? INT2(gds[23],gds[24]) : 0)
#define GDS_ss2dEgrid_dj(gds) (gds[16] & 128 ? INT2(gds[25],gds[26]) : 0)
#define GDS_ss2dEgrid_scan(gds) (gds[27])
#define GDS_ss2dBgrid_nx(gds) UINT2(gds[6],gds[7])
#define GDS_ss2dBgrid_ny(gds) UINT2(gds[8],gds[9])
#define GDS_ss2dBgrid_La1(gds) INT3(gds[10],gds[11],gds[12])
#define GDS_ss2dBgrid_Lo1(gds) INT3(gds[13],gds[14],gds[15])
#define GDS_ss2dBgrid_mode(gds) (gds[16])
#define GDS_ss2dBgrid_La2(gds) INT3(gds[17],gds[18],gds[19])
#define GDS_ss2dBgrid_Lo2(gds) INT3(gds[20],gds[21],gds[22])
#define GDS_ss2dBgrid_di(gds) (gds[16] & 128 ? INT2(gds[23],gds[24]) : 0)
#define GDS_ss2dBgrid_dj(gds) (gds[16] & 128 ? INT2(gds[25],gds[26]) : 0)
#define GDS_ss2dBgrid_scan(gds) (gds[27])
#define GDS_Merc_nx(gds) UINT2(gds[6],gds[7])
#define GDS_Merc_ny(gds) UINT2(gds[8],gds[9])
#define GDS_Merc_La1(gds) INT3(gds[10],gds[11],gds[12])
#define GDS_Merc_Lo1(gds) INT3(gds[13],gds[14],gds[15])
#define GDS_Merc_mode(gds) (gds[16])
#define GDS_Merc_La2(gds) INT3(gds[17],gds[18],gds[19])
#define GDS_Merc_Lo2(gds) INT3(gds[20],gds[21],gds[22])
#define GDS_Merc_Latin(gds) INT3(gds[23],gds[24],gds[25])
#define GDS_Merc_scan(gds) (gds[27])
#define GDS_Merc_dx(gds) (gds[16] & 128 ? INT3(gds[28],gds[29],gds[30]) : 0)
#define GDS_Merc_dy(gds) (gds[16] & 128 ? INT3(gds[31],gds[32],gds[33]) : 0)
/* rotated Lat-lon grid */
#define GDS_RotLL_nx(gds) UINT2(gds[6],gds[7])
#define GDS_RotLL_ny(gds) UINT2(gds[8],gds[9])
#define GDS_RotLL_La1(gds) INT3(gds[10],gds[11],gds[12])
#define GDS_RotLL_Lo1(gds) INT3(gds[13],gds[14],gds[15])
#define GDS_RotLL_mode(gds) (gds[16])
#define GDS_RotLL_La2(gds) INT3(gds[17],gds[18],gds[19])
#define GDS_RotLL_Lo2(gds) INT3(gds[20],gds[21],gds[22])
#define GDS_RotLL_dx(gds) (gds[16] & 128 ? INT2(gds[23],gds[24]) : 0)
#define GDS_RotLL_dy(gds) (gds[16] & 128 ? INT2(gds[25],gds[26]) : 0)
#define GDS_RotLL_scan(gds) (gds[27])
#define GDS_RotLL_LaSP(gds) INT3(gds[32],gds[33],gds[34])
#define GDS_RotLL_LoSP(gds) INT3(gds[35],gds[36],gds[37])
#define GDS_RotLL_RotAng(gds) ibm2flt(&(gds[38]))
/* Triangular grid of DWD */
#define GDS_Triangular_ni2(gds) INT2(gds[6],gds[7])
#define GDS_Triangular_ni3(gds) INT2(gds[8],gds[9])
#define GDS_Triangular_ni(gds) INT3(gds[13],gds[14],gds[15])
#define GDS_Triangular_nd(gds) INT3(gds[10],gds[11],gds[12])
/* Harmonics data */
#define GDS_Harmonic_nj(gds) ((int) ((gds[6] << 8) + gds[7]))
#define GDS_Harmonic_nk(gds) ((int) ((gds[8] << 8) + gds[9]))
#define GDS_Harmonic_nm(gds) ((int) ((gds[10] << 8) + gds[11]))
#define GDS_Harmonic_type(gds) (gds[12])
#define GDS_Harmonic_mode(gds) (gds[13])
/* index of NV and PV */
#define GDS_PV(gds) ((gds[3] == 0) ? -1 : (int) gds[4] - 1)
#define GDS_PL(gds) ((gds[4] == 255) ? -1 : (int) gds[3] * 4 + (int) gds[4] - 1)
enum Def_NCEP_Table {rean, opn, rean_nowarn, opn_nowarn};
unsigned char *seek_grib(FILE *file, unsigned long *pos, long *len_grib,
unsigned char *buffer, unsigned int buf_len);
int read_grib(FILE *file, long pos, long len_grib, unsigned char *buffer);
long echack(FILE *file, long pos, long len_grib);
double ibm2flt(unsigned char *ibm);
void BDS_unpack(float *flt, unsigned char *bds, unsigned char *bitmap,
int n_bits, int n, double ref, double scale);
int BDS_NValues(unsigned char *bds);
double int_power(double x, int y);
int flt2ieee(float x, unsigned char *ieee);
int wrtieee(float *array, int n, int header, FILE *output);
int wrtieee_header(unsigned int n, FILE *output);
void levels(int, int, int, int verbose);
void PDStimes(int time_range, int p1, int p2, int time_unit);
int missing_points(unsigned char *bitmap, int n);
void EC_ext(unsigned char *pds, char *prefix, char *suffix, int verbose);
int GDS_grid(unsigned char *gds, unsigned char *bds, int *nx, int *ny,
long int *nxny);
void GDS_prt_thin_lon(unsigned char *gds);
void GDS_winds(unsigned char *gds, int verbose);
int PDS_date(unsigned char *pds, int option, int verf_time);
int add_time(int *year, int *month, int *day, int *hour, int dtime, int unit);
int verf_time(unsigned char *pds, int *year, int *month, int *day, int *hour);
void print_pds(unsigned char *pds, int print_PDS, int print_PDS10, int verbose);
void print_gds(unsigned char *gds, int print_GDS, int print_GDS10, int verbose);
void ensemble(unsigned char *pds, int mode);
/* version 3.4 of grib headers w. ebisuzaki */
/* this version is incomplete */
/* add center DWD Helmut P. Frank */
/* 10/02 add center CPTEC */
/* 29/04/2005 add center CHM Luiz Claudio M. Fonseca*/
/* 11/2008 add center LAMI Davide Sacchetti */
#ifndef INT2
#define INT2(a,b) ((1-(int) ((unsigned) (a & 0x80) >> 6)) * (int) (((a & 0x7f) << 8) + b))
#endif
#ifndef UINT4
#define UINT4(a,b,c,d) ((int) ((a << 24) + (b << 16) + (c << 8) + (d)))
#endif
#ifndef UINT2
#define UINT2(a,b) ((int) ((a << 8) + (b)))
#endif
#define __LEN24(pds) ((pds) == NULL ? 0 : (int) ((pds[0]<<16)+(pds[1]<<8)+pds[2]))
#define PDS_Len1(pds) (pds[0])
#define PDS_Len2(pds) (pds[1])
#define PDS_Len3(pds) (pds[2])
#define PDS_LEN(pds) ((int) ((pds[0]<<16)+(pds[1]<<8)+pds[2]))
#define PDS_Vsn(pds) (pds[3])
#define PDS_Center(pds) (pds[4])
#define PDS_Model(pds) (pds[5])
#define PDS_Grid(pds) (pds[6])
#define PDS_HAS_GDS(pds) ((pds[7] & 128) != 0)
#define PDS_HAS_BMS(pds) ((pds[7] & 64) != 0)
#define PDS_PARAM(pds) (pds[8])
#define PDS_L_TYPE(pds) (pds[9])
#define PDS_LEVEL1(pds) (pds[10])
#define PDS_LEVEL2(pds) (pds[11])
#define PDS_KPDS5(pds) (pds[8])
#define PDS_KPDS6(pds) (pds[9])
#define PDS_KPDS7(pds) ((int) ((pds[10]<<8) + pds[11]))
/* this requires a 32-bit default integer machine */
#define PDS_Field(pds) ((pds[8]<<24)+(pds[9]<<16)+(pds[10]<<8)+pds[11])
#define PDS_Year(pds) (pds[12])
#define PDS_Month(pds) (pds[13])
#define PDS_Day(pds) (pds[14])
#define PDS_Hour(pds) (pds[15])
#define PDS_Minute(pds) (pds[16])
#define PDS_ForecastTimeUnit(pds) (pds[17])
#define PDS_P1(pds) (pds[18])
#define PDS_P2(pds) (pds[19])
#define PDS_TimeRange(pds) (pds[20])
#define PDS_NumAve(pds) ((int) ((pds[21]<<8)+pds[22]))
#define PDS_NumMissing(pds) (pds[23])
#define PDS_Century(pds) (pds[24])
#define PDS_Subcenter(pds) (pds[25])
#define PDS_DecimalScale(pds) INT2(pds[26],pds[27])
/* old #define PDS_Year4(pds) (pds[12] + 100*(pds[24] - (pds[12] != 0))) */
#define PDS_Year4(pds) (pds[12] + 100*(pds[24] - 1))
/* various centers */
#define NMC 7
#define ECMWF 98
#define DWD 78
#define CMC 54
#define CPTEC 46
#define CHM 146
#define LAMI 200
/* ECMWF Extensions */
#define PDS_EcLocalId(pds) (PDS_LEN(pds) >= 41 ? (pds[40]) : 0)
#define PDS_EcClass(pds) (PDS_LEN(pds) >= 42 ? (pds[41]) : 0)
#define PDS_EcType(pds) (PDS_LEN(pds) >= 43 ? (pds[42]) : 0)
#define PDS_EcStream(pds) (PDS_LEN(pds) >= 45 ? (INT2(pds[43], pds[44])) : 0)
#define PDS_EcENS(pds) (PDS_LEN(pds) >= 52 && pds[40] == 1 && \
pds[43] * 256 + pds[44] == 1035 && pds[50] != 0)
#define PDS_EcFcstNo(pds) (pds[49])
#define PDS_EcNoFcst(pds) (pds[50])
#define PDS_Ec16Version(pds) (pds + 45)
#define PDS_Ec16Number(pds) (PDS_EcLocalId(pds) == 16 ? UINT2(pds[49],pds[50]) : 0)
#define PDS_Ec16SysNum(pds) (PDS_EcLocalId(pds) == 16 ? UINT2(pds[51],pds[52]) : 0)
#define PDS_Ec16MethodNum(pds) (PDS_EcLocalId(pds) == 16 ? UINT2(pds[53],pds[54]) : 0)
#define PDS_Ec16VerfMon(pds) (PDS_EcLocalId(pds) == 16 ? UINT4(pds[55],pds[56],pds[57],pds[58]) : 0)
#define PDS_Ec16AvePeriod(pds) (PDS_EcLocalId(pds) == 16 ? pds[59] : 0)
#define PDS_Ec16FcstMon(pds) (PDS_EcLocalId(pds) == 16 ? UINT2(pds[60],pds[61]) : 0)
/* NCEP Extensions */
#define PDS_NcepENS(pds) (PDS_LEN(pds) >= 44 && pds[25] == 2 && pds[40] == 1)
#define PDS_NcepFcstType(pds) (pds[41])
#define PDS_NcepFcstNo(pds) (pds[42])
#define PDS_NcepFcstProd(pds) (pds[43])
/* time units */
#define MINUTE 0
#define HOUR 1
#define DAY 2
#define MONTH 3
#define YEAR 4
#define DECADE 5
#define NORMAL 6
#define CENTURY 7
#define HOURS3 10
#define HOURS6 11
#define HOURS12 12
#define MINUTES15 13
#define MINUTES30 14
#define SECOND 254
#define VERSION "v1.8.1.2a (6-11) Wesley Ebisuzaki\n\t\tDWD-tables 2,201-205 (11-28-2005) Helmut P. Frank\n\t\tspectral: Luis Kornblueh (MPI)"
#define CHECK_GRIB
/* #define DEBUG */
/*
* wgrib.c is placed into the public domain. While you could
* legally do anything you want with the code, telling the world
* that you wrote it would be uncool. Selling it would be really
* uncool. The code was originally written for NMC/NCAR Reanalysis
* and handles most GRIB files except for the ECMWF spectral files.
* (ECMWF's spectral->grid code are copyrighted and in FORTRAN.)
* The code, as usual, is not waranteed to be fit for any purpose
* what so ever. However, wgrib is operational NCEP code, so it
* better work for our files.
*/
/*
* wgrib.c extract/inventory grib records
*
* Wesley Ebisuzaki
*
* See Changes for update information
*
*/
/*
* MSEEK = I/O buffer size for seek_grib
*/
#define MSEEK 1024
#define BUFF_ALLOC0 40000
#ifndef min
#define min(a,b) ((a) < (b) ? (a) : (b))
#define max(a,b) ((a) < (b) ? (b) : (a))
#endif
#ifndef DEF_T62_NCEP_TABLE
#define DEF_T62_NCEP_TABLE rean
#endif
enum Def_NCEP_Table def_ncep_table = DEF_T62_NCEP_TABLE;
int minute = 0;
int ncep_ens = 0;
int cmc_eq_ncep = 0;
extern int ec_large_grib, len_ec_bds;
#ifndef GRIB_MAIN
#define GRIB_MAIN main
#endif
int GRIB_MAIN(int argc, char **argv) {
unsigned char *buffer;
float *array;
double temp, rmin, rmax;
int i, nx, ny, file_arg;
long int len_grib, nxny, buffer_size, n_dump, count = 1;
long unsigned pos = 0;
unsigned char *msg, *pds, *gds, *bms, *bds, *pointer;
FILE *input, *dump_file = NULL;
char line[2000];
enum {BINARY, TEXT, IEEE, GRIB, NONE} output_type = NONE;
enum {DUMP_ALL, DUMP_RECORD, DUMP_POSITION, DUMP_LIST, INVENTORY}
mode = INVENTORY;
enum {none, dwd, simple} header = simple;
long int dump = -1;
int verbose = 0, append = 0, v_time = 0, year_4 = 0, output_PDS_GDS = 0;
int print_GDS = 0, print_GDS10 = 0, print_PDS = 0, print_PDS10 = 0;
char *dump_file_name = "dump", open_parm[3];
int return_code = 0;
if (argc == 1) {
fprintf(stderr, "\nPortable Grib decoder for %s etc.\n",
(def_ncep_table == opn_nowarn || def_ncep_table == opn) ?
"NCEP Operations" : "NCEP/NCAR Reanalysis");
fprintf(stderr, " it slices, dices %s\n", VERSION);
fprintf(stderr, " usage: %s [grib file] [options]\n\n", argv[0]);
fprintf(stderr, "Inventory/diagnostic-output selections\n");
fprintf(stderr, " -s/-v short/verbose inventory\n");
fprintf(stderr, " -V diagnostic output (not inventory)\n");
fprintf(stderr, " (none) regular inventory\n");
fprintf(stderr, " Options\n");
fprintf(stderr, " -PDS/-PDS10 print PDS in hex/decimal\n");
fprintf(stderr, " -GDS/-GDS10 print GDS in hex/decimal\n");
fprintf(stderr, " -verf print forecast verification time\n");
fprintf(stderr, " -ncep_opn/-ncep_rean default T62 NCEP grib table\n");
fprintf(stderr, " -4yr print year using 4 digits\n");
fprintf(stderr, " -min print minutes\n");
fprintf(stderr, " -ncep_ens ensemble info encoded in ncep format\n");
fprintf(stderr, "Decoding GRIB selection\n");
fprintf(stderr, " -d [record number|all] decode record number\n");
fprintf(stderr, " -p [byte position] decode record at byte position\n");
fprintf(stderr, " -i decode controlled by stdin (inventory list)\n");
fprintf(stderr, " (none) no decoding\n");
fprintf(stderr, " Options\n");
fprintf(stderr, " -text/-ieee/-grib/-bin convert to text/ieee/grib/bin (default)\n");
fprintf(stderr, " -nh/-h output will have no headers/headers (default)\n");
fprintf(stderr, " -dwdgrib output dwd headers, grib (do not append)\n");
fprintf(stderr, " -H output will include PDS and GDS (-bin/-ieee only)\n");
fprintf(stderr, " -append append to output file\n");
fprintf(stderr, " -o [file] output file name, 'dump' is default\n");
fprintf(stderr, " Misc\n");
fprintf(stderr, " -cmc [file] use NCEP tables for CMC (dangerous)\n");
exit(8);
}
file_arg = 0;
for (i = 1; i < argc; i++) {
if (strcmp(argv[i],"-PDS") == 0) {
print_PDS = 1;
continue;
}
if (strcmp(argv[i],"-PDS10") == 0) {
print_PDS10 = 1;
continue;
}
if (strcmp(argv[i],"-GDS") == 0) {
print_GDS = 1;
continue;
}
if (strcmp(argv[i],"-GDS10") == 0) {
print_GDS10 = 1;
continue;
}
if (strcmp(argv[i],"-v") == 0) {
verbose = 1;
continue;
}
if (strcmp(argv[i],"-V") == 0) {
verbose = 2;
continue;
}
if (strcmp(argv[i],"-s") == 0) {
verbose = -1;
continue;
}
if (strcmp(argv[i],"-text") == 0) {
output_type = TEXT;
continue;
}
if (strcmp(argv[i],"-bin") == 0) {
output_type = BINARY;
continue;
}
if (strcmp(argv[i],"-ieee") == 0) {
output_type = IEEE;
continue;
}
if (strcmp(argv[i],"-grib") == 0) {
output_type = GRIB;
continue;
}
if (strcmp(argv[i],"-nh") == 0) {
header = none;
continue;
}
if (strcmp(argv[i],"-h") == 0) {
header = simple;
continue;
}
if (strcmp(argv[i],"-dwdgrib") == 0) {
header = dwd;
output_type = GRIB;
continue;
}
if (strcmp(argv[i],"-append") == 0) {
append = 1;
continue;
}
if (strcmp(argv[i],"-verf") == 0) {
v_time = 1;
continue;
}
if (strcmp(argv[i],"-cmc") == 0) {
cmc_eq_ncep = 1;
continue;
}
if (strcmp(argv[i],"-d") == 0) {
if (strcmp(argv[i+1],"all") == 0) {
mode = DUMP_ALL;
}
else {
dump = atol(argv[i+1]);
mode = DUMP_RECORD;
}
i++;
if (output_type == NONE) output_type = BINARY;
continue;
}
if (strcmp(argv[i],"-p") == 0) {
pos = atol(argv[i+1]);
i++;
dump = 1;
if (output_type == NONE) output_type = BINARY;
mode = DUMP_POSITION;
continue;
}
if (strcmp(argv[i],"-i") == 0) {
if (output_type == NONE) output_type = BINARY;
mode = DUMP_LIST;
continue;
}
if (strcmp(argv[i],"-H") == 0) {
output_PDS_GDS = 1;
continue;
}
if (strcmp(argv[i],"-NH") == 0) {
output_PDS_GDS = 0;
continue;
}
if (strcmp(argv[i],"-4yr") == 0) {
year_4 = 1;
continue;
}
if (strcmp(argv[i],"-ncep_opn") == 0) {
def_ncep_table = opn_nowarn;
continue;
}
if (strcmp(argv[i],"-ncep_rean") == 0) {
def_ncep_table = rean_nowarn;
continue;
}
if (strcmp(argv[i],"-o") == 0) {
dump_file_name = argv[i+1];
i++;
continue;
}
if (strcmp(argv[i],"--v") == 0) {
printf("wgrib: %s\n", VERSION);
exit(0);
}
if (strcmp(argv[i],"-min") == 0) {
minute = 1;
continue;
}
if (strcmp(argv[i],"-ncep_ens") == 0) {
ncep_ens = 1;
continue;
}
if (file_arg == 0) {
file_arg = i;
}
else {
fprintf(stderr,"argument: %s ????\n", argv[i]);
}
}
if (file_arg == 0) {
fprintf(stderr,"no GRIB file to process\n");
exit(8);
}
if ((input = fopen(argv[file_arg],"rb")) == NULL) {
fprintf(stderr,"could not open file: %s\n", argv[file_arg]);
exit(7);
}
if ((buffer = (unsigned char *) malloc(BUFF_ALLOC0)) == NULL) {
fprintf(stderr,"not enough memory\n");
}
buffer_size = BUFF_ALLOC0;
/* open output file */
if (mode != INVENTORY) {
open_parm[0] = append ? 'a' : 'w'; open_parm[1] = 'b'; open_parm[2] = '\0';
if (output_type == TEXT) open_parm[1] = '\0';
if ((dump_file = fopen(dump_file_name,open_parm)) == NULL) {
fprintf(stderr,"could not open dump file\n");
exit(8);
}
if (header == dwd && output_type == GRIB) wrtieee_header(0, dump_file);
}
/* skip dump - 1 records */
for (i = 1; i < dump; i++) {
msg = seek_grib(input, &pos, &len_grib, buffer, MSEEK);
if (msg == NULL) {
fprintf(stderr, "ran out of data or bad file\n");
exit(8);
}
pos += len_grib;
}
if (dump > 0) count += dump - 1;
n_dump = 0;
for (;;) {
if (n_dump == 1 && (mode == DUMP_RECORD || mode == DUMP_POSITION)) break;
if (mode == DUMP_LIST) {
if (fgets(line,sizeof(line), stdin) == NULL) break;
line[sizeof(line) - 1] = 0;
if (sscanf(line,"%ld:%lu:", &count, &pos) != 2) {
fprintf(stderr,"bad input from stdin\n");
fprintf(stderr," %s\n", line);
exit(8);
}
}
msg = seek_grib(input, &pos, &len_grib, buffer, MSEEK);
if (msg == NULL) {
if (mode == INVENTORY || mode == DUMP_ALL) break;
fprintf(stderr,"missing GRIB record(s)\n");
exit(8);
}
/* read all whole grib record */
if (len_grib + msg - buffer > buffer_size) {
buffer_size = len_grib + msg - buffer + 1000;
buffer = (unsigned char *) realloc((void *) buffer, buffer_size);
if (buffer == NULL) {
fprintf(stderr,"ran out of memory\n");
exit(8);
}
}
if (read_grib(input, pos, len_grib, buffer) == 0) {
fprintf(stderr,"error, could not read to end of record %ld\n",count);
exit(8);
}
/* parse grib message */
msg = buffer;
pds = (msg + 8);
pointer = pds + PDS_LEN(pds);
#ifdef DEBUG
printf("LEN_GRIB= 0x%x\n", len_grib);
printf("PDS_LEN= 0x%x: at 0x%x\n", PDS_LEN(pds),pds-msg);
#endif
if (PDS_HAS_GDS(pds)) {
gds = pointer;
pointer += GDS_LEN(gds);
#ifdef DEBUG
printf("GDS_LEN= 0x%x: at 0x%x\n", GDS_LEN(gds), gds-msg);
#endif
}
else {
gds = NULL;
}
#ifdef DEBUG
printf("Has BMS=%d\n", PDS_HAS_BMS(pds));
#endif
if (PDS_HAS_BMS(pds)) {
bms = pointer;
pointer += BMS_LEN(bms);
#ifdef DEBUG
printf("BMS_LEN= 0x%x: at 0x%x\n", BMS_LEN(bms),bms-msg);
#endif
}
else {
bms = NULL;
}
bds = pointer;
pointer += BDS_LEN(bds);
#ifdef DEBUG
printf("BDS_LEN= 0x%x\n", BDS_LEN(bds));
printf("END_LEN= 0x%x: at 0x%x\n", 4,pointer-msg);
#endif
if (pointer-msg+4 != len_grib) {
fprintf(stderr,"Len of grib message is inconsistent.\n");
}
/* end section - "7777" in ascii */
if (pointer[0] != 0x37 || pointer[1] != 0x37 ||
pointer[2] != 0x37 || pointer[3] != 0x37) {
fprintf(stderr,"\n\n missing end section\n");
fprintf(stderr, "%2x %2x %2x %2x\n", pointer[0], pointer[1],
pointer[2], pointer[3]);
#ifdef DEBUG
printf("ignoring missing end section\n");
#else
exit(8);
#endif
}
/* figure out size of array */
if (gds != NULL) {
GDS_grid(gds, bds, &nx, &ny, &nxny);
}
else if (bms != NULL) {
nxny = nx = BMS_nxny(bms);
ny = 1;
}
else {
if (BDS_NumBits(bds) == 0) {
nxny = nx = 1;
fprintf(stderr,"Missing GDS, constant record .. cannot "
"determine number of data points\n");
}
else {
nxny = nx = BDS_NValues(bds);
}
ny = 1;
}
#ifdef CHECK_GRIB
if (gds && ! GDS_Harmonic(gds)) {
/* this grib check only works for simple packing */
/* turn off if harmonic */
if (BDS_NumBits(bds) != 0) {
i = BDS_NValues(bds);
if (bms != NULL) {
i += missing_points(BMS_bitmap(bms),nxny);
}
if (i != nxny) {
fprintf(stderr,"grib header at record %ld: two values of nxny %ld %d\n",
count,nxny,i);
fprintf(stderr," LEN %d DataStart %d UnusedBits %d #Bits %d nxny %ld\n",
BDS_LEN(bds), BDS_DataStart(bds),BDS_UnusedBits(bds),
BDS_NumBits(bds), nxny);
return_code = 15;
nxny = nx = i;
ny = 1;
}
}
}
#endif
if (verbose <= 0) {
printf("%ld:%lu:d=", count, pos);
PDS_date(pds,year_4,v_time);
printf(":%s:", k5toa(pds));
if (verbose == 0) printf("kpds5=%d:kpds6=%d:kpds7=%d:TR=%d:P1=%d:P2=%d:TimeU=%d:",
PDS_PARAM(pds),PDS_KPDS6(pds),PDS_KPDS7(pds),
PDS_TimeRange(pds),PDS_P1(pds),PDS_P2(pds),
PDS_ForecastTimeUnit(pds));
levels(PDS_KPDS6(pds), PDS_KPDS7(pds),PDS_Center(pds),verbose); printf(":");
PDStimes(PDS_TimeRange(pds),PDS_P1(pds),PDS_P2(pds),
PDS_ForecastTimeUnit(pds));
if (PDS_Center(pds) == ECMWF) EC_ext(pds,"",":",verbose);
ensemble(pds, verbose);
printf("NAve=%d",PDS_NumAve(pds));
if (print_PDS || print_PDS10) print_pds(pds, print_PDS, print_PDS10, verbose);
if (gds && (print_GDS || print_GDS10)) print_gds(gds, print_GDS, print_GDS10, verbose);
printf("\n");
}
else if (verbose == 1) {
printf("%ld:%lu:D=", count, pos);
PDS_date(pds, 1, v_time);
printf(":%s:", k5toa(pds));
levels(PDS_KPDS6(pds), PDS_KPDS7(pds), PDS_Center(pds),verbose); printf(":");
printf("kpds=%d,%d,%d:",
PDS_PARAM(pds),PDS_KPDS6(pds),PDS_KPDS7(pds));
PDStimes(PDS_TimeRange(pds),PDS_P1(pds),PDS_P2(pds),
PDS_ForecastTimeUnit(pds));
if (PDS_Center(pds) == ECMWF) EC_ext(pds,"",":",verbose);
ensemble(pds, verbose);
GDS_winds(gds, verbose);
printf("\"%s", k5_comments(pds));
if (print_PDS || print_PDS10) print_pds(pds, print_PDS, print_PDS10, verbose);
if (gds && (print_GDS || print_GDS10)) print_gds(gds, print_GDS, print_GDS10, verbose);
printf("\n");
}
else if (verbose == 2) {
printf("rec %ld:%lu:date ", count, pos);
PDS_date(pds, 1, v_time);
printf(" %s kpds5=%d kpds6=%d kpds7=%d levels=(%d,%d) grid=%d ",
k5toa(pds), PDS_PARAM(pds), PDS_KPDS6(pds), PDS_KPDS7(pds),
PDS_LEVEL1(pds), PDS_LEVEL2(pds), PDS_Grid(pds));
levels(PDS_KPDS6(pds),PDS_KPDS7(pds),PDS_Center(pds),verbose);
printf(" ");
if (PDS_Center(pds) == ECMWF) EC_ext(pds,""," ",verbose);
ensemble(pds, verbose);
PDStimes(PDS_TimeRange(pds),PDS_P1(pds),PDS_P2(pds),
PDS_ForecastTimeUnit(pds));
if (bms != NULL)
printf(" bitmap: %d undef", missing_points(BMS_bitmap(bms),nxny));
printf("\n %s=%s\n", k5toa(pds), k5_comments(pds));
printf(" timerange %d P1 %d P2 %d TimeU %d nx %d ny %d GDS grid %d "
"num_in_ave %d missing %d\n",
PDS_TimeRange(pds),PDS_P1(pds),PDS_P2(pds),
PDS_ForecastTimeUnit(pds), nx, ny,
gds == NULL ? -1 : GDS_DataType(gds),
PDS_NumAve(pds), PDS_NumMissing(pds));
printf(" center %d subcenter %d process %d Table %d",
PDS_Center(pds),PDS_Subcenter(pds),PDS_Model(pds),
PDS_Vsn(pds));
GDS_winds(gds, verbose);
printf("\n");
if (gds && GDS_LatLon(gds) && nx != -1)
printf(" latlon: lat %f to %f by %f nxny %ld\n"
" long %f to %f by %f, (%d x %d) scan %d "
"mode %d bdsgrid %d\n",
0.001*GDS_LatLon_La1(gds), 0.001*GDS_LatLon_La2(gds),
0.001*GDS_LatLon_dy(gds), nxny, 0.001*GDS_LatLon_Lo1(gds),
0.001*GDS_LatLon_Lo2(gds), 0.001*GDS_LatLon_dx(gds),
nx, ny, GDS_LatLon_scan(gds), GDS_LatLon_mode(gds),
BDS_Grid(bds));
else if (gds && GDS_LatLon(gds) && nx == -1) {
printf(" thinned latlon: lat %f to %f by %f nxny %ld\n"
" long %f to %f, %ld grid pts (%d x %d) scan %d"
" mode %d bdsgrid %d\n",
0.001*GDS_LatLon_La1(gds), 0.001*GDS_LatLon_La2(gds),
0.001*GDS_LatLon_dy(gds), nxny, 0.001*GDS_LatLon_Lo1(gds),
0.001*GDS_LatLon_Lo2(gds),
nxny, nx, ny, GDS_LatLon_scan(gds), GDS_LatLon_mode(gds),
BDS_Grid(bds));
GDS_prt_thin_lon(gds);
}
else if (gds && GDS_Gaussian(gds) && nx != -1)
printf(" gaussian: lat %f to %f\n"
" long %f to %f by %f, (%d x %d) scan %d"
" mode %d bdsgrid %d\n",
0.001*GDS_LatLon_La1(gds), 0.001*GDS_LatLon_La2(gds),
0.001*GDS_LatLon_Lo1(gds), 0.001*GDS_LatLon_Lo2(gds),
0.001*GDS_LatLon_dx(gds),
nx, ny, GDS_LatLon_scan(gds), GDS_LatLon_mode(gds),
BDS_Grid(bds));
else if (gds && GDS_Gaussian(gds) && nx == -1) {
printf(" thinned gaussian: lat %f to %f\n"
" long %f to %f, %ld grid pts (%d x %d) scan %d"
" mode %d bdsgrid %d\n",
0.001*GDS_LatLon_La1(gds), 0.001*GDS_LatLon_La2(gds),
0.001*GDS_LatLon_Lo1(gds), 0.001*GDS_LatLon_Lo2(gds),
nxny, nx, ny, GDS_LatLon_scan(gds), GDS_LatLon_mode(gds),
BDS_Grid(bds));
GDS_prt_thin_lon(gds);
}
else if (gds && GDS_Polar(gds))
printf(" polar stereo: Lat1 %f Long1 %f Orient %f\n"
" %s pole (%d x %d) Dx %d Dy %d scan %d mode %d\n",
0.001*GDS_Polar_La1(gds),0.001*GDS_Polar_Lo1(gds),
0.001*GDS_Polar_Lov(gds),
GDS_Polar_pole(gds) == 0 ? "north" : "south", nx,ny,
GDS_Polar_Dx(gds),GDS_Polar_Dy(gds),
GDS_Polar_scan(gds), GDS_Polar_mode(gds));
else if (gds && GDS_Lambert(gds))
printf(" Lambert Conf: Lat1 %f Lon1 %f Lov %f\n"
" Latin1 %f Latin2 %f LatSP %f LonSP %f\n"
" %s (%d x %d) Dx %f Dy %f scan %d mode %d\n",
0.001*GDS_Lambert_La1(gds),0.001*GDS_Lambert_Lo1(gds),
0.001*GDS_Lambert_Lov(gds),
0.001*GDS_Lambert_Latin1(gds), 0.001*GDS_Lambert_Latin2(gds),
0.001*GDS_Lambert_LatSP(gds), 0.001*GDS_Lambert_LonSP(gds),
GDS_Lambert_NP(gds) ? "North Pole": "South Pole",
GDS_Lambert_nx(gds), GDS_Lambert_ny(gds),
0.001*GDS_Lambert_dx(gds), 0.001*GDS_Lambert_dy(gds),
GDS_Lambert_scan(gds), GDS_Lambert_mode(gds));
else if (gds && GDS_Albers(gds))
/* Albers equal area has same parameters as Lambert conformal */
printf(" Albers Equal-Area: Lat1 %f Lon1 %f Lov %f\n"
" Latin1 %f Latin2 %f LatSP %f LonSP %f\n"
" %s (%d x %d) Dx %f Dy %f scan %d mode %d\n",
0.001*GDS_Lambert_La1(gds),0.001*GDS_Lambert_Lo1(gds),
0.001*GDS_Lambert_Lov(gds),
0.001*GDS_Lambert_Latin1(gds), 0.001*GDS_Lambert_Latin2(gds),
0.001*GDS_Lambert_LatSP(gds), 0.001*GDS_Lambert_LonSP(gds),
GDS_Lambert_NP(gds) ? "North Pole": "South Pole",
GDS_Lambert_nx(gds), GDS_Lambert_ny(gds),
0.001*GDS_Lambert_dx(gds), 0.001*GDS_Lambert_dy(gds),
GDS_Lambert_scan(gds), GDS_Lambert_mode(gds));
else if (gds && GDS_Mercator(gds))
printf(" Mercator: lat %f to %f by %f km nxny %ld\n"
" long %f to %f by %f km, (%d x %d) scan %d"
" mode %d Latin %f bdsgrid %d\n",
0.001*GDS_Merc_La1(gds), 0.001*GDS_Merc_La2(gds),
0.001*GDS_Merc_dy(gds), nxny, 0.001*GDS_Merc_Lo1(gds),
0.001*GDS_Merc_Lo2(gds), 0.001*GDS_Merc_dx(gds),
nx, ny, GDS_Merc_scan(gds), GDS_Merc_mode(gds),
0.001*GDS_Merc_Latin(gds), BDS_Grid(bds));
else if (gds && GDS_ssEgrid(gds))
printf(" Semi-staggered Arakawa E-Grid: lat0 %f lon0 %f nxny %d\n"
" dLat %f dLon %f (%d x %d) scan %d mode %d\n",
0.001*GDS_ssEgrid_La1(gds), 0.001*GDS_ssEgrid_Lo1(gds),
GDS_ssEgrid_n(gds)*GDS_ssEgrid_n_dum(gds),
0.001*GDS_ssEgrid_dj(gds), 0.001*GDS_ssEgrid_di(gds),
GDS_ssEgrid_Lo2(gds), GDS_ssEgrid_La2(gds),
GDS_ssEgrid_scan(gds), GDS_ssEgrid_mode(gds));
else if (gds && GDS_ss2dEgrid(gds))
printf(" Semi-staggered Arakawa E-Grid (2D): lat0 %f lon0 %f nxny %d\n"
" dLat %f dLon %f (tlm0d %f tph0d %f) scan %d mode %d\n",
0.001*GDS_ss2dEgrid_La1(gds), 0.001*GDS_ss2dEgrid_Lo1(gds),
GDS_ss2dEgrid_nx(gds)*GDS_ss2dEgrid_ny(gds),
0.001*GDS_ss2dEgrid_dj(gds), 0.001*GDS_ss2dEgrid_di(gds),
0.001*GDS_ss2dEgrid_Lo2(gds), 0.001*GDS_ss2dEgrid_La2(gds),
GDS_ss2dEgrid_scan(gds), GDS_ss2dEgrid_mode(gds));
else if (gds && GDS_ss2dBgrid(gds))
printf(" Semi-staggered Arakawa B-Grid (2D): lat0 %f lon0 %f nxny %d\n"
" dLat %f dLon %f (tlm0d %f tph0d %f) scan %d mode %d\n",
0.001*GDS_ss2dBgrid_La1(gds), 0.001*GDS_ss2dBgrid_Lo1(gds),
GDS_ss2dBgrid_nx(gds)*GDS_ss2dBgrid_ny(gds),
0.001*GDS_ss2dBgrid_dj(gds), 0.001*GDS_ss2dBgrid_di(gds),
0.001*GDS_ss2dBgrid_Lo2(gds), 0.001*GDS_ss2dBgrid_La2(gds),
GDS_ss2dBgrid_scan(gds), GDS_ss2dBgrid_mode(gds));
else if (gds && GDS_fEgrid(gds))
printf(" filled Arakawa E-Grid: lat0 %f lon0 %f nxny %d\n"
" dLat %f dLon %f (%d x %d) scan %d mode %d\n",
0.001*GDS_fEgrid_La1(gds), 0.001*GDS_fEgrid_Lo1(gds),
GDS_fEgrid_n(gds)*GDS_fEgrid_n_dum(gds),
0.001*GDS_fEgrid_dj(gds), 0.001*GDS_fEgrid_di(gds),
GDS_fEgrid_Lo2(gds), GDS_fEgrid_La2(gds),
GDS_fEgrid_scan(gds), GDS_fEgrid_mode(gds));
else if (gds && GDS_RotLL(gds))
printf(" rotated LatLon grid lat %f to %f lon %f to %f\n"
" nxny %ld (%d x %d) dx %d dy %d scan %d mode %d\n"
" transform: south pole lat %f lon %f rot angle %f\n",
0.001*GDS_RotLL_La1(gds), 0.001*GDS_RotLL_La2(gds),
0.001*GDS_RotLL_Lo1(gds), 0.001*GDS_RotLL_Lo2(gds),
nxny, GDS_RotLL_nx(gds), GDS_RotLL_ny(gds),
GDS_RotLL_dx(gds), GDS_RotLL_dy(gds),
GDS_RotLL_scan(gds), GDS_RotLL_mode(gds),
0.001*GDS_RotLL_LaSP(gds), 0.001*GDS_RotLL_LoSP(gds),
GDS_RotLL_RotAng(gds) );
else if (gds && GDS_Gnomonic(gds))
printf(" Gnomonic grid\n");
else if (gds && GDS_Harmonic(gds))
printf(" Harmonic (spectral): pentagonal spectral truncation: nj %d nk %d nm %d\n",
GDS_Harmonic_nj(gds), GDS_Harmonic_nk(gds),
GDS_Harmonic_nm(gds));
if (gds && GDS_Harmonic_type(gds) == 1)
printf(" Associated Legendre polynomials\n");
else if (gds && GDS_Triangular(gds))
printf(" Triangular grid: nd %d ni %d (= 2^%d x 3^%d)\n",
GDS_Triangular_nd(gds), GDS_Triangular_ni(gds),
GDS_Triangular_ni2(gds), GDS_Triangular_ni3(gds) );
if (print_PDS || print_PDS10)
print_pds(pds, print_PDS, print_PDS10, verbose);
if (gds && (print_GDS || print_GDS10))
print_gds(gds, print_GDS, print_GDS10, verbose);
}
if (mode != INVENTORY && output_type == GRIB) {
if (header == dwd) wrtieee_header((int) len_grib, dump_file);
fwrite((void *) msg, sizeof(char), len_grib, dump_file);
if (header == dwd) wrtieee_header((int) len_grib, dump_file);
n_dump++;
}
if ((mode != INVENTORY && output_type != GRIB) || verbose > 1) {
/* decode numeric data */
if ((array = (float *) malloc(sizeof(float) * nxny)) == NULL) {
fprintf(stderr,"memory problems\n");
exit(8);
}
temp = int_power(10.0, - PDS_DecimalScale(pds));
BDS_unpack(array, bds, BMS_bitmap(bms), BDS_NumBits(bds), nxny,
temp*BDS_RefValue(bds),temp*int_power(2.0, BDS_BinScale(bds)));
if (verbose > 1) {
rmin = FLT_MAX;
rmax = -FLT_MAX;
for (i = 0; i < nxny; i++) {
if (fabs(array[i]-UNDEFINED) > 0.0001*UNDEFINED) {
rmin = min(rmin,array[i]);
rmax = max(rmax,array[i]);
}
}
printf(" min/max data %g %g num bits %d "
" BDS_Ref %g DecScale %d BinScale %d\n",
rmin, rmax, BDS_NumBits(bds), BDS_RefValue(bds),
PDS_DecimalScale(pds), BDS_BinScale(bds));
}
if (mode != INVENTORY && output_type != GRIB) {
/* dump code */
if (output_PDS_GDS == 1) {
/* insert code here */
if (output_type == BINARY || output_type == IEEE) {
/* write PDS */
i = PDS_LEN(pds) + 4;
if (header == simple && output_type == BINARY)
fwrite((void *) &i, sizeof(int), 1, dump_file);
if (header == simple && output_type == IEEE) wrtieee_header(i, dump_file);
fwrite((void *) "PDS ", 1, 4, dump_file);
fwrite((void *) pds, 1, i - 4, dump_file);
if (header == simple && output_type == BINARY)
fwrite((void *) &i, sizeof(int), 1, dump_file);
if (header == simple && output_type == IEEE) wrtieee_header(i, dump_file);
/* write GDS */
i = (gds) ? GDS_LEN(gds) + 4 : 4;
if (header == simple && output_type == BINARY)
fwrite((void *) &i, sizeof(int), 1, dump_file);
if (header == simple && output_type == IEEE) wrtieee_header(i, dump_file);
fwrite((void *) "GDS ", 1, 4, dump_file);
if (gds) fwrite((void *) gds, 1, i - 4, dump_file);
if (header == simple && output_type == BINARY)
fwrite((void *) &i, sizeof(int), 1, dump_file);
if (header == simple && output_type == IEEE) wrtieee_header(i, dump_file);
}
}
if (output_type == BINARY) {
i = nxny * sizeof(float);
if (header == simple) fwrite((void *) &i, sizeof(int), 1, dump_file);
fwrite((void *) array, sizeof(float), nxny, dump_file);
if (header == simple) fwrite((void *) &i, sizeof(int), 1, dump_file);
}
else if (output_type == IEEE) {
wrtieee(array, nxny, header, dump_file);
}
else if (output_type == TEXT) {
/* number of points in grid */
if (header == simple) {
if (nx <= 0 || ny <= 0 || nxny != nx*ny) {
fprintf(dump_file, "%ld %d\n", nxny, 1);
}
else {
fprintf(dump_file, "%d %d\n", nx, ny);
}
}
for (i = 0; i < nxny; i++) {
fprintf(dump_file,"%g\n", array[i]);
}
}
n_dump++;
}
free(array);
if (verbose > 0) printf("\n");
}
pos += len_grib;
count++;
}
if (mode != INVENTORY) {
if (header == dwd && output_type == GRIB) wrtieee_header(0, dump_file);
if (ferror(dump_file)) {
fprintf(stderr,"error writing %s\n",dump_file_name);
exit(8);
}
}
fclose(input);
return (return_code);
}
void print_pds(unsigned char *pds, int print_PDS, int print_PDS10, int verbose) {
int i, j;
j = PDS_LEN(pds);
if (verbose < 2) {
if (print_PDS && verbose < 2) {
printf(":PDS=");
for (i = 0; i < j; i++) {
printf("%2.2x", (int) pds[i]);
}
}
if (print_PDS10 && verbose < 2) {
printf(":PDS10=");
for (i = 0; i < j; i++) {
printf(" %d", (int) pds[i]);
}
}
}
else {
if (print_PDS) {
printf(" PDS(1..%d)=",j);
for (i = 0; i < j; i++) {
if (i % 20 == 0) printf("\n %4d:",i+1);
printf(" %3.2x", (int) pds[i]);
}
printf("\n");
}
if (print_PDS10) {
printf(" PDS10(1..%d)=",j);
for (i = 0; i < j; i++) {
if (i % 20 == 0) printf("\n %4d:",i+1);
printf(" %3d", (int) pds[i]);
}
printf("\n");
}
}
}
void print_gds(unsigned char *gds, int print_GDS, int print_GDS10, int verbose) {
int i, j;
j = GDS_LEN(gds);
if (verbose < 2) {
if (print_GDS && verbose < 2) {
printf(":GDS=");
for (i = 0; i < j; i++) {
printf("%2.2x", (int) gds[i]);
}
}
if (print_GDS10 && verbose < 2) {
printf(":GDS10=");
for (i = 0; i < j; i++) {
printf(" %d", (int) gds[i]);
}
}
}
else {
if (print_GDS) {
printf(" GDS(1..%d)=",j);
for (i = 0; i < j; i++) {
if (i % 20 == 0) printf("\n %4d:",i+1);
printf(" %3.2x", (int) gds[i]);
}
printf("\n");
}
if (print_GDS10) {
printf(" GDS10(1..%d)=",j);
for (i = 0; i < j; i++) {
if (i % 20 == 0) printf("\n %4d:",i+1);
printf(" %3d", (int) gds[i]);
}
printf("\n");
}
}
}
/*
* find next grib header
*
* file = what do you think?
* pos = initial position to start looking at ( = 0 for 1st call)
* returns with position of next grib header (units=bytes)
* len_grib = length of the grib record (bytes)
* buffer[buf_len] = buffer for reading/writing
*
* returns (char *) to start of GRIB header+PDS
* NULL if not found
*
* adapted from SKGB (Mark Iredell)
*
* v1.1 9/94 Wesley Ebisuzaki
* v1.2 3/96 Wesley Ebisuzaki handles short records at end of file
* v1.3 8/96 Wesley Ebisuzaki increase NTRY from 3 to 100 for the folks
* at Automation decided a 21 byte WMO bulletin header wasn't long
* enough and decided to go to an 8K header.
* v1.4 11/10/2001 D. Haalman, looks at entire file, does not try
* to read past EOF
* 3/8/2010 echack added by Brian Doty
* v1.5 5/2011 changes for ECMWF who have grib1+grib2 files, scan entire file
*/
#ifndef min
#define min(a,b) ((a) < (b) ? (a) : (b))
#endif
/* #define LEN_HEADER_PDS (28+42+100) */
#define LEN_HEADER_PDS (28+8)
int ec_large_grib = 0, len_ec_bds;
unsigned char *seek_grib(FILE *file, unsigned long *pos, long *len_grib,
unsigned char *buffer, unsigned int buf_len) {
int i, len;
long length_grib;
static int warn_grib2 = 0;
clearerr(file);
while ( !feof(file) ) {
if (fseek(file, *pos, SEEK_SET) == -1) break;
i = fread(buffer, sizeof (unsigned char), buf_len, file);
if (ferror(file)) break;
len = i - LEN_HEADER_PDS;
for (i = 0; i < len; i++) {
if (buffer[i] == 'G' && buffer[i+1] == 'R' && buffer[i+2] == 'I'
&& buffer[i+3] == 'B') {
/* grib edition 1 */
if (buffer[i+7] == 1) {
*pos = i + *pos;
*len_grib = length_grib = (buffer[i+4] << 16) + (buffer[i+5] << 8) +
buffer[i+6];
/* small records don't have ECMWF hack */
if ((length_grib & 0x800000) == 0) { ec_large_grib = 0; return (buffer + i); }
/* potential for ECMWF hack */
ec_large_grib = 1;
*len_grib = echack(file, *pos, length_grib);
return (buffer+i);
}
/* grib edition 2 */
else if (buffer[i+7] == 2) {
if (warn_grib2++ == 0) fprintf(stderr,"grib2 message ignored (use wgrib2)\n");
}
}
}
*pos = *pos + (buf_len - LEN_HEADER_PDS);
}
*len_grib = 0;
return (unsigned char *) NULL;
}
/* If the encoded grib record length is long enough, we may have an encoding
of an even longer record length using the ecmwf hack. To check for this
requires getting the length of the binary data section. To get this requires
getting the lengths of the various sections before the bds. To see if those
sections are there requires checking the flags in the pds. */
long echack(FILE *file, long pos, long len_grib) {
int gdsflg, bmsflg, center;
unsigned int pdslen, gdslen, bmslen, bdslen;
unsigned char buf[8];
long len;
len = len_grib;
/* Get pdslen */
if (fseek(file, pos+8, SEEK_SET) == -1) return 0;
if (fread(buf, sizeof (unsigned char), 8, file) != 8) return 0;
pdslen = __LEN24(buf);
center = buf[4];
/* know that NCEP and CMC do not use echack */
if (center == NMC || center == CMC) {
ec_large_grib = 0;
return len_grib;
}
gdsflg = buf[7] & 128;
bmsflg = buf[7] & 64;
gdslen=0;
if (gdsflg) {
if (fseek(file, pos+8+pdslen, SEEK_SET) == -1) return 0;
if (fread(buf, sizeof (unsigned char), 3, file) != 3) return 0;
gdslen = __LEN24(buf);
}
/* if there, get length of bms */
bmslen = 0;
if (bmsflg) {
if (fseek(file, pos+8+pdslen+gdslen, SEEK_SET) == -1) return 0;
if (fread(buf, sizeof (unsigned char), 3, file) != 3) return 0;
bmslen = __LEN24(buf);
}
/* get bds length */
if (fseek(file, pos+8+pdslen+gdslen+bmslen, SEEK_SET) == -1) return 0;
if (fread(buf, sizeof (unsigned char), 3, file) != 3) return 0;
bdslen = __LEN24(buf);
/* Now we can check if this record is hacked */
if (bdslen >= 120) {
/* normal record */
ec_large_grib = 0;
}
else {
/* ECMWF hack */
len_grib = (len & 0x7fffff) * 120 - bdslen + 4;
len_ec_bds = len_grib - (12 + pdslen + gdslen + bmslen);
ec_large_grib = 1;
}
return len_grib;
}
/* ibm2flt wesley ebisuzaki
*
* v1.1 .. faster
* v1.1 .. if mant == 0 -> quick return
*
*/
double ibm2flt(unsigned char *ibm) {
int positive, power;
unsigned int abspower;
long int mant;
double value, exp;
mant = (ibm[1] << 16) + (ibm[2] << 8) + ibm[3];
if (mant == 0) return 0.0;
positive = (ibm[0] & 0x80) == 0;
power = (int) (ibm[0] & 0x7f) - 64;
abspower = power > 0 ? power : -power;
/* calc exp */
exp = 16.0;
value = 1.0;
while (abspower) {
if (abspower & 1) {
value *= exp;
}
exp = exp * exp;
abspower >>= 1;
}
if (power < 0) value = 1.0 / value;
value = value * mant / 16777216.0;
if (positive == 0) value = -value;
return value;
}
/*
* read_grib.c
*
* reads grib message
*
* input: pos, byte position of grib message
* len_grib, length of grib message
* output: *buffer, grib message
*
* note: call seek_grib first
*
* v1.0 9/94 Wesley Ebisuzaki
*
*/
int read_grib(FILE *file, long pos, long len_grib, unsigned char *buffer) {
int i;
if (fseek(file, pos, SEEK_SET) == -1) {
return 0;
}
i = fread(buffer, sizeof (unsigned char), len_grib, file);
return (i == len_grib);
}
/*
* w. ebisuzaki
*
* return x**y
*
*
* input: double x
* int y
*/
double int_power(double x, int y) {
double value;
if (y < 0) {
y = -y;
x = 1.0 / x;
}
value = 1.0;
while (y) {
if (y & 1) {
value *= x;
}
x = x * x;
y >>= 1;
}
return value;
}
/* cnames.c Wesley Ebisuzaki
*
* returns strings with either variable name or comment field
* v1.4 4/98
* reanalysis can use process 180 and subcenter 0
*
* Add DWD tables 2, 201, 202, 203 Helmut P. Frank, DWD, FE13
* Thu Aug 23 09:28:34 GMT 2001
* add DWD tables 204, 205 H. Frank, 10-19-2005
* LAMI => DWD 11/2008 Davide Sacchetti
*/
extern const struct ParmTable parm_table_ncep_opn[256];
extern const struct ParmTable parm_table_ncep_reanal[256];
extern const struct ParmTable parm_table_nceptab_128[256];
extern const struct ParmTable parm_table_nceptab_129[256];
extern const struct ParmTable parm_table_nceptab_130[256];
extern const struct ParmTable parm_table_nceptab_131[256];
extern const struct ParmTable parm_table_nceptab_133[256];
extern const struct ParmTable parm_table_nceptab_140[256];
extern const struct ParmTable parm_table_nceptab_141[256];
extern const struct ParmTable parm_table_mdl_nceptab[256];
extern const struct ParmTable parm_table_ecmwf_128[256];
extern const struct ParmTable parm_table_ecmwf_129[256];
extern const struct ParmTable parm_table_ecmwf_130[256];
extern const struct ParmTable parm_table_ecmwf_131[256];
extern const struct ParmTable parm_table_ecmwf_132[256];
extern const struct ParmTable parm_table_ecmwf_133[256];
extern const struct ParmTable parm_table_ecmwf_140[256];
extern const struct ParmTable parm_table_ecmwf_150[256];
extern const struct ParmTable parm_table_ecmwf_151[256];
extern const struct ParmTable parm_table_ecmwf_160[256];
extern const struct ParmTable parm_table_ecmwf_162[256];
extern const struct ParmTable parm_table_ecmwf_170[256];
extern const struct ParmTable parm_table_ecmwf_171[256];
extern const struct ParmTable parm_table_ecmwf_172[256];
extern const struct ParmTable parm_table_ecmwf_173[256];
extern const struct ParmTable parm_table_ecmwf_174[256];
extern const struct ParmTable parm_table_ecmwf_180[256];
extern const struct ParmTable parm_table_ecmwf_190[256];
extern const struct ParmTable parm_table_ecmwf_200[256];
extern const struct ParmTable parm_table_ecmwf_210[256];
extern const struct ParmTable parm_table_ecmwf_211[256];
extern const struct ParmTable parm_table_ecmwf_228[256];
extern struct ParmTable parm_table_user[256];
extern const struct ParmTable parm_table_dwd_002[256];
extern const struct ParmTable parm_table_dwd_201[256];
extern const struct ParmTable parm_table_dwd_202[256];
extern const struct ParmTable parm_table_dwd_203[256];
extern const struct ParmTable parm_table_dwd_204[256];
extern const struct ParmTable parm_table_dwd_205[256];
extern const struct ParmTable parm_table_cptec_254[256];
extern enum Def_NCEP_Table def_ncep_table;
extern int cmc_eq_ncep;
/*
* returns pointer to the parameter table
*/
static const struct ParmTable *Parm_Table(unsigned char *pds) {
int i, center, subcenter, ptable, process;
static int missing_count = 0, reanal_opn_count = 0;
center = PDS_Center(pds);
subcenter = PDS_Subcenter(pds);
ptable = PDS_Vsn(pds);
/* CMC (54) tables look like NCEP tables */
if (center == CMC && cmc_eq_ncep) center = NMC;
#ifdef P_TABLE_FIRST
i = setup_user_table(center, subcenter, ptable);
if (i == 1) return &parm_table_user[0];
#endif
/* figure out if NCEP opn or reanalysis */
if (center == NMC && ptable <= 3) {
if (subcenter == 1) return &parm_table_ncep_reanal[0];
if (subcenter == 14) return &parm_table_mdl_nceptab[0];
process = PDS_Model(pds);
if (subcenter != 0 || (process != 80 && process != 180) ||
(ptable != 1 && ptable != 2))
return &parm_table_ncep_opn[0];
/* at this point could be either the opn or reanalysis table */
if (def_ncep_table == opn_nowarn) return &parm_table_ncep_opn[0];
if (def_ncep_table == rean_nowarn) return &parm_table_ncep_reanal[0];
if (reanal_opn_count++ == 0) {
fprintf(stderr, "Using NCEP %s table, see -ncep_opn, -ncep_rean options\n",
(def_ncep_table == opn) ? "opn" : "reanalysis");
}
return (def_ncep_table == opn) ? &parm_table_ncep_opn[0]
: &parm_table_ncep_reanal[0];
}
if (center == NMC) {
if (ptable == 128) return &parm_table_nceptab_128[0];
if (ptable == 129) return &parm_table_nceptab_129[0];
if (ptable == 130) return &parm_table_nceptab_130[0];
if (ptable == 131) return &parm_table_nceptab_131[0];
if (ptable == 132) return &parm_table_ncep_reanal[0];
if (ptable == 133) return &parm_table_nceptab_133[0];
if (ptable == 140) return &parm_table_nceptab_140[0];
if (ptable == 141) return &parm_table_nceptab_141[0];
}
if (center == ECMWF) {
if (ptable == 128) return &parm_table_ecmwf_128[0];
if (ptable == 129) return &parm_table_ecmwf_129[0];
if (ptable == 130) return &parm_table_ecmwf_130[0];
if (ptable == 131) return &parm_table_ecmwf_131[0];
if (ptable == 132) return &parm_table_ecmwf_132[0];
if (ptable == 133) return &parm_table_ecmwf_133[0];
if (ptable == 140) return &parm_table_ecmwf_140[0];
if (ptable == 150) return &parm_table_ecmwf_150[0];
if (ptable == 151) return &parm_table_ecmwf_151[0];
if (ptable == 160) return &parm_table_ecmwf_160[0];
if (ptable == 162) return &parm_table_ecmwf_162[0];
if (ptable == 170) return &parm_table_ecmwf_170[0];
if (ptable == 171) return &parm_table_ecmwf_171[0];
if (ptable == 172) return &parm_table_ecmwf_172[0];
if (ptable == 173) return &parm_table_ecmwf_173[0];
if (ptable == 174) return &parm_table_ecmwf_174[0];
if (ptable == 180) return &parm_table_ecmwf_180[0];
if (ptable == 190) return &parm_table_ecmwf_190[0];
if (ptable == 200) return &parm_table_ecmwf_200[0];
if (ptable == 210) return &parm_table_ecmwf_210[0];
if (ptable == 211) return &parm_table_ecmwf_211[0];
if (ptable == 228) return &parm_table_ecmwf_228[0];
}
/* if (center == DWD || center == CHM || center == LAMI) { */
if (center == DWD || center == CHM) {
if (ptable == 2) return &parm_table_dwd_002[0];
if (ptable == 201) return &parm_table_dwd_201[0];
if (ptable == 202) return &parm_table_dwd_202[0];
if (ptable == 203) return &parm_table_dwd_203[0];
if (ptable == 204) return &parm_table_dwd_204[0];
if (ptable == 205) return &parm_table_dwd_205[0];
}
if (center == CPTEC) {
if (ptable == 254) return &parm_table_cptec_254[0];
}
#ifndef P_TABLE_FIRST
i = setup_user_table(center, subcenter, ptable);
if (i == 1) return &parm_table_user[0];
#endif
if ((ptable > 3 || (PDS_PARAM(pds)) > 127) && missing_count++ == 0) {
fprintf(stderr,
"\nUndefined parameter table (center %d-%d table %d), using NCEP-opn\n",
center, subcenter, ptable);
}
return &parm_table_ncep_opn[0];
}
/*
* return name field of PDS_PARAM(pds)
*/
char *k5toa(unsigned char *pds) {
return (Parm_Table(pds) + PDS_PARAM(pds))->name;
}
/*
* return comment field of the PDS_PARAM(pds)
*/
char *k5_comments(unsigned char *pds) {
return (Parm_Table(pds) + PDS_PARAM(pds))->comment;
}
/* 1996 wesley ebisuzaki
*
* Unpack BDS section
*
* input: *bits, pointer to packed integer data
* *bitmap, pointer to bitmap (undefined data), NULL if none
* n_bits, number of bits per packed integer
* n, number of data points (includes undefined data)
* ref, scale: flt[] = ref + scale*packed_int
* output: *flt, pointer to output array
* undefined values filled with UNDEFINED
*
* note: code assumes an integer > 32 bits
*
* 7/98 v1.2.1 fix bug for bitmaps and nbit >= 25 found by Larry Brasfield
* 2/01 v1.2.2 changed jj from long int to double
* 3/02 v1.2.3 added unpacking extensions for spectral data
* Luis Kornblueh, MPIfM
* 7/06 v.1.2.4 fixed some bug complex packed data was not set to undefined
*/
static unsigned int mask[] = {0,1,3,7,15,31,63,127,255};
static unsigned int map_masks[8] = {128, 64, 32, 16, 8, 4, 2, 1};
static double shift[9] = {1.0, 2.0, 4.0, 8.0, 16.0, 32.0, 64.0, 128.0, 256.0};
void BDS_unpack(float *flt, unsigned char *bds, unsigned char *bitmap,
int n_bits, int n, double ref, double scale) {
unsigned char *bits;
int i, mask_idx, t_bits, c_bits, j_bits;
unsigned int j, map_mask, tbits, jmask, bbits;
double jj;
if (BDS_ComplexPacking(bds)) {
fprintf(stderr,"*** Cannot decode complex packed fields n=%d***\n", n);
exit(8);
for (i = 0; i < n; i++) {
*flt++ = UNDEFINED;
}
return;
}
if (BDS_Harmonic(bds)) {
bits = bds + 15;
/* fill in global mean */
*flt++ = BDS_Harmonic_RefValue(bds);
n -= 1;
}
else {
bits = bds + 11;
}
tbits = bbits = 0;
/* assume integer has 32+ bits */
if (n_bits <= 25) {
jmask = (1 << n_bits) - 1;
t_bits = 0;
if (bitmap) {
for (i = 0; i < n; i++) {
/* check bitmap */
mask_idx = i & 7;
if (mask_idx == 0) bbits = *bitmap++;
if ((bbits & map_masks[mask_idx]) == 0) {
*flt++ = UNDEFINED;
continue;
}
while (t_bits < n_bits) {
tbits = (tbits * 256) + *bits++;
t_bits += 8;
}
t_bits -= n_bits;
j = (tbits >> t_bits) & jmask;
*flt++ = ref + scale*j;
}
}
else {
for (i = 0; i < n; i++) {
if (n_bits - t_bits > 8) {
tbits = (tbits << 16) | (bits[0] << 8) | (bits[1]);
bits += 2;
t_bits += 16;
}
while (t_bits < n_bits) {
tbits = (tbits * 256) + *bits++;
t_bits += 8;
}
t_bits -= n_bits;
flt[i] = (tbits >> t_bits) & jmask;
}
/* at least this vectorizes :) */
for (i = 0; i < n; i++) {
flt[i] = ref + scale*flt[i];
}
}
}
else {
/* older unoptimized code, not often used */
c_bits = 8;
map_mask = 128;
while (n-- > 0) {
if (bitmap) {
j = (*bitmap & map_mask);
if ((map_mask >>= 1) == 0) {
map_mask = 128;
bitmap++;
}
if (j == 0) {
*flt++ = UNDEFINED;
continue;
}
}
jj = 0.0;
j_bits = n_bits;
while (c_bits <= j_bits) {
if (c_bits == 8) {
jj = jj * 256.0 + (double) (*bits++);
j_bits -= 8;
}
else {
jj = (jj * shift[c_bits]) + (double) (*bits & mask[c_bits]);
bits++;
j_bits -= c_bits;
c_bits = 8;
}
}
if (j_bits) {
c_bits -= j_bits;
jj = (jj * shift[j_bits]) + (double) ((*bits >> c_bits) & mask[j_bits]);
}
*flt++ = ref + scale*jj;
}
}
return;
}
/*
* convert a float to an ieee single precision number v1.1
* (big endian)
* Wesley Ebisuzaki
*
* bugs: doesn't handle subnormal numbers
* bugs: assumes length of integer >= 25 bits
*/
int flt2ieee(float x, unsigned char *ieee) {
int sign, exp;
unsigned int umant;
double mant;
if (x == 0.0) {
ieee[0] = ieee[1] = ieee[2] = ieee[3] = 0;
return 0;
}
/* sign bit */
if (x < 0.0) {
sign = 128;
x = -x;
}
else sign = 0;
mant = frexp((double) x, &exp);
/* 2^24 = 16777216 */
umant = mant * 16777216 + 0.5;
if (umant >= 16777216) {
umant = umant / 2;
exp++;
}
/* bit 24 should be a 1 .. not used in ieee format */
exp = exp - 1 + 127;
if (exp < 0) {
/* signed zero */
ieee[0] = sign;
ieee[1] = ieee[2] = ieee[3] = 0;
return 0;
}
if (exp > 255) {
/* signed infinity */
ieee[0] = sign + 127;
ieee[1] = 128;
ieee[2] = ieee[3] = 0;
return 0;
}
/* normal number */
ieee[0] = sign + (exp >> 1);
ieee[3] = umant & 255;
ieee[2] = (umant >> 8) & 255;
ieee[1] = ((exp & 1) << 7) + ((umant >> 16) & 127);
return 0;
}
/* wesley ebisuzaki v1.3
*
* write ieee file -- big endian format
*
* input float *array data to be written
* int n size of array
* int header 1 for f77 style header 0 for none
* (header is 4 byte header
* FILE *output output file
*
* v1.2 7/97 buffered, faster
* v1.3 2/99 fixed (typo) error in wrtieee_header found by
* Bob Farquhar
*/
#define BSIZ 1024*4
int wrtieee(float *array, int n, int header, FILE *output) {
unsigned long int l;
int i, nbuf;
unsigned char buff[BSIZ];
unsigned char h4[4];
nbuf = 0;
if (header) {
l = n * 4;
for (i = 0; i < 4; i++) {
h4[i] = l & 255;
l >>= 8;
}
buff[nbuf++] = h4[3];
buff[nbuf++] = h4[2];
buff[nbuf++] = h4[1];
buff[nbuf++] = h4[0];
}
for (i = 0; i < n; i++) {
if (nbuf >= BSIZ) {
fwrite(buff, 1, BSIZ, output);
nbuf = 0;
}
flt2ieee(array[i], buff + nbuf);
nbuf += 4;
}
if (header) {
if (nbuf == BSIZ) {
fwrite(buff, 1, BSIZ, output);
nbuf = 0;
}
buff[nbuf++] = h4[3];
buff[nbuf++] = h4[2];
buff[nbuf++] = h4[1];
buff[nbuf++] = h4[0];
}
if (nbuf) fwrite(buff, 1, nbuf, output);
return 0;
}
/* write a big-endian 4 byte integer .. f77 IEEE header */
int wrtieee_header(unsigned int n, FILE *output) {
unsigned h4[4];
h4[0] = n & 255;
h4[1] = (n >> 8) & 255;
h4[2] = (n >> 16) & 255;
h4[3] = (n >> 24) & 255;
putc(h4[3],output);
putc(h4[2],output);
putc(h4[1],output);
putc(h4[0],output);
return 0;
}
/* wesley ebisuzaki v1.0
*
* levels.c
*
* prints out a simple description of kpds6, kpds7
* (level/layer data)
* kpds6 = octet 10 of the PDS
* kpds7 = octet 11 and 12 of the PDS
* (kpds values are from NMC's grib routines)
* center = PDS_Center(pds) .. NMC, ECMWF, etc
*
* the description of the levels is
* (1) incomplete
* (2) include some NMC-only values (>= 200?)
*
* v1.1 wgrib v1.7.3.1 updated with new levels
* v1.2 added new level and new parameter
* v1.2.1 modified level 117 pv units
* v1.2.2 corrected level 141
* v1.2.3 fixed layer 206 (was 205)
* v1.2.4 layer 210: new wmo defn > NCEP version
* v1.2.5 updated table 3/2007 to on388
*/
void levels(int kpds6, int kpds7, int center, int verbose) {
int o11, o12;
/* octets 11 and 12 */
o11 = kpds7 / 256;
o12 = kpds7 % 256;
switch (kpds6) {
case 1: printf("sfc");
break;
case 2: printf("cld base");
break;
case 3: printf("cld top");
break;
case 4: printf("0C isotherm");
break;
case 5: printf("cond lev");
break;
case 6: printf("max wind lev");
break;
case 7: printf("tropopause");
break;
case 8: printf("nom. top");
break;
case 9: printf("sea bottom");
break;
case 200:
case 10: printf("atmos col");
break;
case 12:
case 212: printf("low cld bot");
break;
case 13:
case 213: printf("low cld top");
break;
case 14:
case 214: printf("low cld lay");
break;
case 20:
if (verbose == 2) printf("temp=%fK", kpds7/100.0);
else printf("T=%fK", kpds7/100.0);
break;
case 22:
case 222: printf("mid cld bot");
break;
case 23:
case 223: printf("mid cld top");
break;
case 24:
case 224: printf("mid cld lay");
break;
case 32:
case 232: printf("high cld bot");
break;
case 33:
case 233: printf("high cld top");
break;
case 34:
case 234: printf("high cld lay");
break;
case 201: printf("ocean column");
break;
case 204: printf("high trop freezing lvl");
break;
case 206: printf("grid-scale cld bot");
break;
case 207: printf("grid-scale cld top");
break;
case 209: printf("bndary-layer cld bot");
break;
case 210:
if (center == NMC) printf("bndary-layer cld top");
else printf("%.2f mb",kpds7*0.01);
break;
case 211: printf("bndary-layer cld layer");
break;
case 215: printf("cloud ceiling");
break;
case 216: printf("Cb base");
break;
case 217: printf("Cb top");
break;
case 220: printf("planetary boundary layer (from Richardson no.)");
break;
case 235: if (kpds7 % 10 == 0)
printf("%dC ocean isotherm level",kpds7/10);
else printf("%.1fC ocean isotherm level",kpds7/10.0);
break;
case 236: printf("%d-%dm ocean layer",o11*10,o12*10);
break;
case 237: printf("ocean mixed layer bot");
break;
case 238: printf("ocean isothermal layer bot");
break;
case 239: printf("sfc-26C ocean layer");
break;
case 240: printf("ocean mixed layer");
break;
case 241: printf("ordered sequence of data");
break;
case 242: printf("convect-cld bot");
break;
case 243: printf("convect-cld top");
break;
case 244: printf("convect-cld layer");
break;
case 245: printf("lowest level of wet bulb zero");
break;
case 246: printf("max e-pot-temp lvl");
break;
case 247: printf("equilibrium lvl");
break;
case 248: printf("shallow convect-cld bot");
break;
case 249: printf("shallow convect-cld top");
break;
case 251: printf("deep convect-cld bot");
break;
case 252: printf("deep convect-cld top");
break;
case 253: printf("lowest bottom level of supercooled liequid water layer");
break;
case 254: printf("highest top level of supercooled liquid water layer");
break;
case 100: printf("%d mb",kpds7);
break;
case 101: printf("%d-%d mb",o11*10,o12*10);
break;
case 102: printf("MSL");
break;
case 103: printf("%d m above MSL",kpds7);
break;
case 104: printf("%d-%d m above msl",o11*100,o12*100);
break;
case 105: printf("%d m above gnd",kpds7);
break;
case 106: printf("%d-%d m above gnd",o11*100,o12*100);
break;
case 107: printf("sigma=%.4f",kpds7/10000.0);
break;
case 108: printf("sigma %.2f-%.2f",o11/100.0,o12/100.0);
break;
case 109: printf("hybrid lev %d",kpds7);
break;
case 110: printf("hybrid %d-%d",o11,o12);
break;
case 111: printf("%d cm down",kpds7);
break;
case 112: printf("%d-%d cm down",o11,o12);
break;
case 113:
if (verbose == 2) printf("pot-temp=%dK",kpds7);
else printf("%dK",kpds7);
break;
case 114: printf("%d-%dK",475-o11,475-o12);
break;
case 115: printf("%d mb above gnd",kpds7);
break;
case 116: printf("%d-%d mb above gnd",o11,o12);
break;
case 117: printf("%d pv units",INT2(o11,o12)); /* units are suspect */
break;
case 119: printf("%.5f (ETA level)",kpds7/10000.0);
break;
case 120: printf("%.2f-%.2f (ETA levels)",o11/100.0,o12/100.0);
break;
case 121: printf("%d-%d mb",1100-o11,1100-o12);
break;
case 125: printf("%d cm above gnd",kpds7);
break;
case 126:
if (center == NMC) printf("%.2f mb",kpds7*0.01);
break;
case 128: printf("%.3f-%.3f (sigma)",1.1-o11/1000.0, 1.1-o12/1000.0);
break;
case 141: printf("%d-%d mb",o11*10,1100-o12);
break;
case 160: printf("%d m below sea level",kpds7);
break;
default:
break;
}
}
/*
* PDStimes.c v1.2 wesley ebisuzaki
*
* prints something readable for time code in grib file
*
* not all cases decoded
* for NCEP/NCAR Reanalysis
*
* v1.2.1 1/99 fixed forecast time unit table
* v1.2.2 10/01 add time_range = 11 (at DWD) Helmut P. Frank
* v1.2.3 10/05 add time units 13 = 15 min, 14 = 30 min, and
* time range 13 = nudging analysis, 14 = relabeled forecast
* (at DWD), Helmut P. Frank
*/
static char *units[] = {
"min", "hr", "d", "mon", "yr",
"decade", "normal", "century", "??", "??", " x3 hours", " x6 hours",
" x12 hours",
"x15 min", "x30 min", "??", "??", "??", "??", "??", "??", "??", "??",
"??", "??", "??", "??", "??", "??", "??", "??", "??", "??",
"??", "??", "??", "??", "??", "??", "??", "??", "??", "??",
"??", "??", "??", "??", "??", "??", "??", "??", "??", "??",
"??", "??", "??", "??", "??", "??", "??", "??", "??", "??",
"??", "??", "??", "??", "??", "??", "??", "??", "??", "??",
"??", "??", "??", "??", "??", "??", "??", "??", "??", "??",
"??", "??", "??", "??", "??", "??", "??", "??", "??", "??",
"??", "??", "??", "??", "??", "??", "??", "??", "??", "??",
"??", "??", "??", "??", "??", "??", "??", "??", "??", "??",
"??", "??", "??", "??", "??", "??", "??", "??", "??", "??",
"??", "??", "??", "??", "??", "??", "??", "??", "??", "??",
"??", "??", "??", "??", "??", "??", "??", "??", "??", "??",
"??", "??", "??", "??", "??", "??", "??", "??", "??", "??",
"??", "??", "??", "??", "??", "??", "??", "??", "??", "??",
"??", "??", "??", "??", "??", "??", "??", "??", "??", "??",
"??", "??", "??", "??", "??", "??", "??", "??", "??", "??",
"??", "??", "??", "??", "??", "??", "??", "??", "??", "??",
"??", "??", "??", "??", "??", "??", "??", "??", "??", "??",
"??", "??", "??", "??", "??", "??", "??", "??", "??", "??",
"??", "??", "??", "??", "??", "??", "??", "??", "??", "??",
"??", "??", "??", "??", "??", "??", "??", "??", "??", "??",
"??", "??", "??", "??", "??", "??", "??", "??", "??", "??",
"??", "??", "??", "??", "??", "??", "??", "??", "??", "??",
"??", " sec"};
void PDStimes(int time_range, int p1, int p2, int time_unit) {
char *unit;
enum {anal, fcst, unknown} type;
int fcst_len = 0;
if (time_unit >= 0 && time_unit <= sizeof(units)/sizeof(char *))
unit = units[time_unit];
else unit = "";
/* change x3/x6/x12 to hours */
if (time_unit == HOURS3) {
p1 *= 3; p2 *= 3;
time_unit = HOUR;
}
else if (time_unit == HOURS6) {
p1 *= 6; p2 *= 6;
time_unit = HOUR;
}
else if (time_unit == HOURS12) {
p1 *= 12; p2 *= 12;
time_unit = HOUR;
}
else if (time_unit == MINUTES30) {
p1 *= 30; p2 *= 30;
time_unit = MINUTE;
}
else if (time_unit == MINUTES15) {
p1 *= 15; p2 *= 15;
time_unit = MINUTE;
}
/* turn off 5/13/2010
if (time_unit == MINUTE && p1 % 60 == 0 && p2 % 60 == 0) {
p1 /= 60; p2 /= 60;
time_unit = HOUR;
}
*/
if (time_unit >= 0 && time_unit <= sizeof(units)/sizeof(char *))
unit = units[time_unit];
else unit = "";
/* figure out if analysis or forecast */
/* in GRIB, there is a difference between init and uninit analyses */
/* not case at NMC .. no longer run initialization */
/* ignore diff between init an uninit analyses */
switch (time_range) {
case 0:
case 1:
case 113:
case 114:
case 118:
if (p1 == 0) type = anal;
else {
type = fcst;
fcst_len = p1;
}
break;
case 10: /* way NMC uses it, should be unknown? */
type = fcst;
fcst_len = p1*256 + p2;
if (fcst_len == 0) type = anal;
break;
case 51:
type = unknown;
break;
case 123:
case 124:
type = anal;
break;
case 135:
type = anal;
break;
default: type = unknown;
break;
}
/* ----------------------------------------------- */
if (type == anal) printf("anl:");
else if (type == fcst) printf("%d%s fcst:",fcst_len,unit);
if (time_range == 123 || time_range == 124) {
if (p1 != 0) printf("start@%d%s:",p1,unit);
}
/* print time range */
switch (time_range) {
case 0:
case 1:
case 10:
break;
case 2: printf("valid %d-%d%s:",p1,p2,unit);
break;
case 3: printf("%d-%d%s ave:",p1,p2,unit);
break;
case 4: printf("%d-%d%s acc:",p1,p2,unit);
break;
case 5: printf("%d-%d%s diff:",p1,p2,unit);
break;
case 6: printf("-%d to -%d %s ave:", p1,p2,unit);
break;
case 7: printf("-%d to %d %s ave:", p1,p2,unit);
break;
case 11: if (p1 > 0) {
printf("init fcst %d%s:",p1,unit);
}
else {
printf("time?:");
}
break;
case 13: printf("nudge ana %d%s:",p1,unit);
break;
case 14: printf("rel. fcst %d%s:",p1,unit);
break;
case 51: if (p1 == 0) {
/* printf("clim %d%s:",p2,unit); */
printf("0-%d%s product:ave@1yr:",p2,unit);
}
else if (p1 == 1) {
/* printf("clim (diurnal) %d%s:",p2,unit); */
printf("0-%d%s product:same-hour,ave@1yr:",p2,unit);
}
else {
printf("clim? p1=%d? %d%s?:",p1,p2,unit);
}
break;
case 113:
case 123:
printf("ave@%d%s:",p2,unit);
break;
case 114:
case 124:
printf("acc@%d%s:",p2,unit);
break;
case 115:
printf("ave of fcst:%d to %d%s:",p1,p2,unit);
break;
case 116:
printf("acc of fcst:%d to %d%s:",p1,p2,unit);
break;
case 118:
printf("var@%d%s:",p2,unit);
break;
case 128:
printf("%d-%d%s fcst acc:ave@24hr:", p1, p2, unit);
break;
case 129:
printf("%d-%d%s fcst acc:ave@%d%s:", p1, p2, unit, p2-p1,unit);
break;
case 130:
printf("%d-%d%s fcst ave:ave@24hr:", p1, p2, unit);
break;
case 131:
printf("%d-%d%s fcst ave:ave@%d%s:", p1, p2, unit,p2-p1,unit);
break;
/* for CFS */
case 132:
printf("%d-%d%s anl:ave@1yr:", p1, p2, unit);
break;
case 133:
printf("%d-%d%s fcst:ave@1yr:", p1, p2, unit);
break;
case 134:
printf("%d-%d%s fcst-anl:rms@1yr:", p1, p2, unit);
break;
case 135:
printf("%d-%d%s fcst-fcst_mean:rms@1yr:", p1, p2, unit);
break;
case 136:
printf("%d-%d%s anl-anl_mean:rms@1yr:", p1, p2, unit);
break;
case 137:
printf("%d-%d%s fcst acc:ave@6hr:", p1, p2, unit);
break;
case 138:
printf("%d-%d%s fcst ave:ave@6hr:", p1, p2, unit);
break;
case 139:
printf("%d-%d%s fcst acc:ave@12hr:", p1, p2, unit);
break;
case 140:
printf("%d-%d%s fcst ave:ave@12hr:", p1, p2, unit);
break;
default: printf("time?:");
}
}
/*
* number of missing data points w. ebisuzaki
*
* v1.1: just faster my dear
* v1.2: just faster my dear
*
*/
static int bitsum[256] = {
8, 7, 7, 6, 7, 6, 6, 5, 7, 6, 6, 5, 6, 5, 5, 4,
7, 6, 6, 5, 6, 5, 5, 4, 6, 5, 5, 4, 5, 4, 4, 3,
7, 6, 6, 5, 6, 5, 5, 4, 6, 5, 5, 4, 5, 4, 4, 3,
6, 5, 5, 4, 5, 4, 4, 3, 5, 4, 4, 3, 4, 3, 3, 2,
7, 6, 6, 5, 6, 5, 5, 4, 6, 5, 5, 4, 5, 4, 4, 3,
6, 5, 5, 4, 5, 4, 4, 3, 5, 4, 4, 3, 4, 3, 3, 2,
6, 5, 5, 4, 5, 4, 4, 3, 5, 4, 4, 3, 4, 3, 3, 2,
5, 4, 4, 3, 4, 3, 3, 2, 4, 3, 3, 2, 3, 2, 2, 1,
7, 6, 6, 5, 6, 5, 5, 4, 6, 5, 5, 4, 5, 4, 4, 3,
6, 5, 5, 4, 5, 4, 4, 3, 5, 4, 4, 3, 4, 3, 3, 2,
6, 5, 5, 4, 5, 4, 4, 3, 5, 4, 4, 3, 4, 3, 3, 2,
5, 4, 4, 3, 4, 3, 3, 2, 4, 3, 3, 2, 3, 2, 2, 1,
6, 5, 5, 4, 5, 4, 4, 3, 5, 4, 4, 3, 4, 3, 3, 2,
5, 4, 4, 3, 4, 3, 3, 2, 4, 3, 3, 2, 3, 2, 2, 1,
5, 4, 4, 3, 4, 3, 3, 2, 4, 3, 3, 2, 3, 2, 2, 1,
4, 3, 3, 2, 3, 2, 2, 1, 3, 2, 2, 1, 2, 1, 1, 0};
int missing_points(unsigned char *bitmap, int n) {
int count;
unsigned int tmp;
if (bitmap == NULL) return 0;
count = 0;
while (n >= 8) {
tmp = *bitmap++;
n -= 8;
count += bitsum[tmp];
}
tmp = *bitmap | ((1 << (8 - n)) - 1);
count += bitsum[tmp];
return count;
}
/*
* parameter table for NCEP (operations)
* center = 7, subcenter != 2 parameter table = 1, 2, 3 etc
* note: see reanalysis parameter table for problems
* updated 3/2003
*/
const struct ParmTable parm_table_ncep_opn[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"PRES", "Pressure [Pa]"},
/* 2 */ {"PRMSL", "Pressure reduced to MSL [Pa]"},
/* 3 */ {"PTEND", "Pressure tendency [Pa/s]"},
/* 4 */ {"PVORT", "Pot. vorticity [km^2/kg/s]"},
/* 5 */ {"ICAHT", "ICAO Standard Atmosphere Reference Height [M]"},
/* 6 */ {"GP", "Geopotential [m^2/s^2]"},
/* 7 */ {"HGT", "Geopotential height [gpm]"},
/* 8 */ {"DIST", "Geometric height [m]"},
/* 9 */ {"HSTDV", "Std dev of height [m]"},
/* 10 */ {"TOZNE", "Total ozone [Dobson]"},
/* 11 */ {"TMP", "Temp. [K]"},
/* 12 */ {"VTMP", "Virtual temp. [K]"},
/* 13 */ {"POT", "Potential temp. [K]"},
/* 14 */ {"EPOT", "Pseudo-adiabatic pot. temp. [K]"},
/* 15 */ {"TMAX", "Max. temp. [K]"},
/* 16 */ {"TMIN", "Min. temp. [K]"},
/* 17 */ {"DPT", "Dew point temp. [K]"},
/* 18 */ {"DEPR", "Dew point depression [K]"},
/* 19 */ {"LAPR", "Lapse rate [K/m]"},
/* 20 */ {"VIS", "Visibility [m]"},
/* 21 */ {"RDSP1", "Radar spectra (1) [non-dim]"},
/* 22 */ {"RDSP2", "Radar spectra (2) [non-dim]"},
/* 23 */ {"RDSP3", "Radar spectra (3) [non-dim]"},
/* 24 */ {"PLI", "Parcel lifted index (to 500 hPa) [K]"},
/* 25 */ {"TMPA", "Temp. anomaly [K]"},
/* 26 */ {"PRESA", "Pressure anomaly [Pa]"},
/* 27 */ {"GPA", "Geopotential height anomaly [gpm]"},
/* 28 */ {"WVSP1", "Wave spectra (1) [non-dim]"},
/* 29 */ {"WVSP2", "Wave spectra (2) [non-dim]"},
/* 30 */ {"WVSP3", "Wave spectra (3) [non-dim]"},
/* 31 */ {"WDIR", "Wind direction [deg]"},
/* 32 */ {"WIND", "Wind speed [m/s]"},
/* 33 */ {"UGRD", "u wind [m/s]"},
/* 34 */ {"VGRD", "v wind [m/s]"},
/* 35 */ {"STRM", "Stream function [m^2/s]"},
/* 36 */ {"VPOT", "Velocity potential [m^2/s]"},
/* 37 */ {"MNTSF", "Montgomery stream function [m^2/s^2]"},
/* 38 */ {"SGCVV", "Sigma coord. vertical velocity [/s]"},
/* 39 */ {"VVEL", "Pressure vertical velocity [Pa/s]"},
/* 40 */ {"DZDT", "Geometric vertical velocity [m/s]"},
/* 41 */ {"ABSV", "Absolute vorticity [/s]"},
/* 42 */ {"ABSD", "Absolute divergence [/s]"},
/* 43 */ {"RELV", "Relative vorticity [/s]"},
/* 44 */ {"RELD", "Relative divergence [/s]"},
/* 45 */ {"VUCSH", "Vertical u shear [/s]"},
/* 46 */ {"VVCSH", "Vertical v shear [/s]"},
/* 47 */ {"DIRC", "Direction of current [deg]"},
/* 48 */ {"SPC", "Speed of current [m/s]"},
/* 49 */ {"UOGRD", "u of current [m/s]"},
/* 50 */ {"VOGRD", "v of current [m/s]"},
/* 51 */ {"SPFH", "Specific humidity [kg/kg]"},
/* 52 */ {"RH", "Relative humidity [%]"},
/* 53 */ {"MIXR", "Humidity mixing ratio [kg/kg]"},
/* 54 */ {"PWAT", "Precipitable water [kg/m^2]"},
/* 55 */ {"VAPP", "Vapor pressure [Pa]"},
/* 56 */ {"SATD", "Saturation deficit [Pa]"},
/* 57 */ {"EVP", "Evaporation [kg/m^2]"},
/* 58 */ {"CICE", "Cloud Ice [kg/m^2]"},
/* 59 */ {"PRATE", "Precipitation rate [kg/m^2/s]"},
/* 60 */ {"TSTM", "Thunderstorm probability [%]"},
/* 61 */ {"APCP", "Total precipitation [kg/m^2]"},
/* 62 */ {"NCPCP", "Large scale precipitation [kg/m^2]"},
/* 63 */ {"ACPCP", "Convective precipitation [kg/m^2]"},
/* 64 */ {"SRWEQ", "Snowfall rate water equiv. [kg/m^2/s]"},
/* 65 */ {"WEASD", "Accum. snow [kg/m^2]"},
/* 66 */ {"SNOD", "Snow depth [m]"},
/* 67 */ {"MIXHT", "Mixed layer depth [m]"},
/* 68 */ {"TTHDP", "Transient thermocline depth [m]"},
/* 69 */ {"MTHD", "Main thermocline depth [m]"},
/* 70 */ {"MTHA", "Main thermocline anomaly [m]"},
/* 71 */ {"TCDC", "Total cloud cover [%]"},
/* 72 */ {"CDCON", "Convective cloud cover [%]"},
/* 73 */ {"LCDC", "Low level cloud cover [%]"},
/* 74 */ {"MCDC", "Mid level cloud cover [%]"},
/* 75 */ {"HCDC", "High level cloud cover [%]"},
/* 76 */ {"CWAT", "Cloud water [kg/m^2]"},
/* 77 */ {"BLI", "Best lifted index (to 500 hPa) [K]"},
/* 78 */ {"SNOC", "Convective snow [kg/m^2]"},
/* 79 */ {"SNOL", "Large scale snow [kg/m^2]"},
/* 80 */ {"WTMP", "Water temp. [K]"},
/* 81 */ {"LAND", "Land cover (land=1;sea=0) [fraction]"},
/* 82 */ {"DSLM", "Deviation of sea level from mean [m]"},
/* 83 */ {"SFCR", "Surface roughness [m]"},
/* 84 */ {"ALBDO", "Albedo [%]"},
/* 85 */ {"TSOIL", "Soil temp. [K]"},
/* 86 */ {"SOILM", "Soil moisture content [kg/m^2]"},
/* 87 */ {"VEG", "Vegetation [%]"},
/* 88 */ {"SALTY", "Salinity [kg/kg]"},
/* 89 */ {"DEN", "Density [kg/m^3]"},
/* 90 */ {"WATR", "Water runoff [kg/m^2]"},
/* 91 */ {"ICEC", "Ice concentration (ice=1;no ice=0) [fraction]"},
/* 92 */ {"ICETK", "Ice thickness [m]"},
/* 93 */ {"DICED", "Direction of ice drift [deg]"},
/* 94 */ {"SICED", "Speed of ice drift [m/s]"},
/* 95 */ {"UICE", "u of ice drift [m/s]"},
/* 96 */ {"VICE", "v of ice drift [m/s]"},
/* 97 */ {"ICEG", "Ice growth rate [m/s]"},
/* 98 */ {"ICED", "Ice divergence [/s]"},
/* 99 */ {"SNOM", "Snow melt [kg/m^2]"},
/* 100 */ {"HTSGW", "Sig height of wind waves and swell [m]"},
/* 101 */ {"WVDIR", "Direction of wind waves [deg]"},
/* 102 */ {"WVHGT", "Sig height of wind waves [m]"},
/* 103 */ {"WVPER", "Mean period of wind waves [s]"},
/* 104 */ {"SWDIR", "Direction of swell waves [deg]"},
/* 105 */ {"SWELL", "Sig height of swell waves [m]"},
/* 106 */ {"SWPER", "Mean period of swell waves [s]"},
/* 107 */ {"DIRPW", "Primary wave direction [deg]"},
/* 108 */ {"PERPW", "Primary wave mean period [s]"},
/* 109 */ {"DIRSW", "Secondary wave direction [deg]"},
/* 110 */ {"PERSW", "Secondary wave mean period [s]"},
/* 111 */ {"NSWRS", "Net short wave (surface) [W/m^2]"},
/* 112 */ {"NLWRS", "Net long wave (surface) [W/m^2]"},
/* 113 */ {"NSWRT", "Net short wave (top) [W/m^2]"},
/* 114 */ {"NLWRT", "Net long wave (top) [W/m^2]"},
/* 115 */ {"LWAVR", "Long wave [W/m^2]"},
/* 116 */ {"SWAVR", "Short wave [W/m^2]"},
/* 117 */ {"GRAD", "Global radiation [W/m^2]"},
/* 118 */ {"BRTMP", "Brightness temperature [K]"},
/* 119 */ {"LWRAD", "Radiance with respect to wave no. [W/m/sr]"},
/* 120 */ {"SWRAD", "Radiance with respect ot wave len. [W/m^3/sr]"},
/* 121 */ {"LHTFL", "Latent heat flux [W/m^2]"},
/* 122 */ {"SHTFL", "Sensible heat flux [W/m^2]"},
/* 123 */ {"BLYDP", "Boundary layer dissipation [W/m^2]"},
/* 124 */ {"UFLX", "Zonal momentum flux [N/m^2]"},
/* 125 */ {"VFLX", "Meridional momentum flux [N/m^2]"},
/* 126 */ {"WMIXE", "Wind mixing energy [J]"},
/* 127 */ {"IMGD", "Image data []"},
/* 128 */ {"MSLSA", "Mean sea level pressure (Std Atm) [Pa]"},
/* 129 */ {"MSLMA", "Mean sea level pressure (MAPS) [Pa]"},
/* 130 */ {"MSLET", "Mean sea level pressure (ETA model) [Pa]"},
/* 131 */ {"LFTX", "Surface lifted index [K]"},
/* 132 */ {"4LFTX", "Best (4-layer) lifted index [K]"},
/* 133 */ {"KX", "K index [K]"},
/* 134 */ {"SX", "Sweat index [K]"},
/* 135 */ {"MCONV", "Horizontal moisture divergence [kg/kg/s]"},
/* 136 */ {"VWSH", "Vertical speed shear [1/s]"},
/* 137 */ {"TSLSA", "3-hr pressure tendency (Std Atmos Red) [Pa/s]"},
/* 138 */ {"BVF2", "Brunt-Vaisala frequency^2 [1/s^2]"},
/* 139 */ {"PVMW", "Potential vorticity (mass-weighted) [1/s/m]"},
/* 140 */ {"CRAIN", "Categorical rain [yes=1;no=0]"},
/* 141 */ {"CFRZR", "Categorical freezing rain [yes=1;no=0]"},
/* 142 */ {"CICEP", "Categorical ice pellets [yes=1;no=0]"},
/* 143 */ {"CSNOW", "Categorical snow [yes=1;no=0]"},
/* 144 */ {"SOILW", "Volumetric soil moisture [fraction]"},
/* 145 */ {"PEVPR", "Potential evaporation rate [W/m^2]"},
/* 146 */ {"CWORK", "Cloud work function [J/kg]"},
/* 147 */ {"U-GWD", "Zonal gravity wave stress [N/m^2]"},
/* 148 */ {"V-GWD", "Meridional gravity wave stress [N/m^2]"},
/* 149 */ {"PV", "Potential vorticity [m^2/s/kg]"},
/* 150 */ {"COVMZ", "Covariance between u and v [m^2/s^2]"},
/* 151 */ {"COVTZ", "Covariance between u and T [K*m/s]"},
/* 152 */ {"COVTM", "Covariance between v and T [K*m/s]"},
/* 153 */ {"CLWMR", "Cloud water [kg/kg]"},
/* 154 */ {"O3MR", "Ozone mixing ratio [kg/kg]"},
/* 155 */ {"GFLUX", "Ground heat flux [W/m^2]"},
/* 156 */ {"CIN", "Convective inhibition [J/kg]"},
/* 157 */ {"CAPE", "Convective Avail. Pot. Energy [J/kg]"},
/* 158 */ {"TKE", "Turbulent kinetic energy [J/kg]"},
/* 159 */ {"CONDP", "Lifted parcel condensation pressure [Pa]"},
/* 160 */ {"CSUSF", "Clear sky upward solar flux [W/m^2]"},
/* 161 */ {"CSDSF", "Clear sky downward solar flux [W/m^2]"},
/* 162 */ {"CSULF", "Clear sky upward long wave flux [W/m^2]"},
/* 163 */ {"CSDLF", "Clear sky downward long wave flux [W/m^2]"},
/* 164 */ {"CFNSF", "Cloud forcing net solar flux [W/m^2]"},
/* 165 */ {"CFNLF", "Cloud forcing net long wave flux [W/m^2]"},
/* 166 */ {"VBDSF", "Visible beam downward solar flux [W/m^2]"},
/* 167 */ {"VDDSF", "Visible diffuse downward solar flux [W/m^2]"},
/* 168 */ {"NBDSF", "Near IR beam downward solar flux [W/m^2]"},
/* 169 */ {"NDDSF", "Near IR diffuse downward solar flux [W/m^2]"},
/* 170 */ {"RWMR", "Rain water mixing ratio [kg/kg]"},
/* 171 */ {"SNMR", "Snow mixing ratio [kg/kg]"},
/* 172 */ {"MFLX", "Momentum flux [N/m^2]"},
/* 173 */ {"LMH", "Mass point model surface [non-dim]"},
/* 174 */ {"LMV", "Velocity point model surface [non-dim]"},
/* 175 */ {"MLYNO", "Model layer number (from bottom up) [non-dim]"},
/* 176 */ {"NLAT", "Latitude (-90 to +90) [deg]"},
/* 177 */ {"ELON", "East longitude (0-360) [deg]"},
/* 178 */ {"ICMR", "Ice mixing ratio [kg/kg]"},
/* 179 */ {"GRMR", "Graupel mixing ratio [kg/kg]"},
/* 180 */ {"GUST", "Surface wind gust [m/s]"},
/* 181 */ {"LPSX", "x-gradient of log pressure [1/m]"},
/* 182 */ {"LPSY", "y-gradient of log pressure [1/m]"},
/* 183 */ {"HGTX", "x-gradient of height [m/m]"},
/* 184 */ {"HGTY", "y-gradient of height [m/m]"},
/* 185 */ {"TURB", "Turbulence SIGMET/AIRMET [non-dim]"},
/* 186 */ {"ICNG", "Icing SIGMET/AIRMET [non-dim]"},
/* 187 */ {"LTNG", "Lightning [non-dim]"},
/* 188 */ {"DRIP", "Rate of water dropping from canopy to gnd [kg/m^2]"},
/* 189 */ {"VPTMP", "Virtual pot. temp. [K]"},
/* 190 */ {"HLCY", "Storm relative helicity [m^2/s^2]"},
/* 191 */ {"PROB", "Prob. from ensemble [non-dim]"},
/* 192 */ {"PROBN", "Prob. from ensemble norm. to clim. expect. [non-dim]"},
/* 193 */ {"POP", "Prob. of precipitation [%]"},
/* 194 */ {"CPOFP", "Prob. of frozen precipitation [%]"},
/* 195 */ {"CPOZP", "Prob. of freezing precipitation [%]"},
/* 196 */ {"USTM", "u-component of storm motion [m/s]"},
/* 197 */ {"VSTM", "v-component of storm motion [m/s]"},
/* 198 */ {"NCIP", "No. concen. ice particles []"},
/* 199 */ {"EVBS", "Direct evaporation from bare soil [W/m^2]"},
/* 200 */ {"EVCW", "Canopy water evaporation [W/m^2]"},
/* 201 */ {"ICWAT", "Ice-free water surface [%]"},
/* 202 */ {"CWDI", "Convective weather detection index []"},
/* 203 */ {"VAFTAD", "VAFTAD?? [??]"},
/* 204 */ {"DSWRF", "Downward short wave flux [W/m^2]"},
/* 205 */ {"DLWRF", "Downward long wave flux [W/m^2]"},
/* 206 */ {"UVI", "Ultraviolet index [W/m^2]"},
/* 207 */ {"MSTAV", "Moisture availability [%]"},
/* 208 */ {"SFEXC", "Exchange coefficient [(kg/m^3)(m/s)]"},
/* 209 */ {"MIXLY", "No. of mixed layers next to surface [integer]"},
/* 210 */ {"TRANS", "Transpiration [W/m^2]"},
/* 211 */ {"USWRF", "Upward short wave flux [W/m^2]"},
/* 212 */ {"ULWRF", "Upward long wave flux [W/m^2]"},
/* 213 */ {"CDLYR", "Non-convective cloud [%]"},
/* 214 */ {"CPRAT", "Convective precip. rate [kg/m^2/s]"},
/* 215 */ {"TTDIA", "Temp. tendency by all physics [K/s]"},
/* 216 */ {"TTRAD", "Temp. tendency by all radiation [K/s]"},
/* 217 */ {"TTPHY", "Temp. tendency by non-radiation physics [K/s]"},
/* 218 */ {"PREIX", "Precip index (0.0-1.00) [fraction]"},
/* 219 */ {"TSD1D", "Std. dev. of IR T over 1x1 deg area [K]"},
/* 220 */ {"NLGSP", "Natural log of surface pressure [ln(kPa)]"},
/* 221 */ {"HPBL", "Planetary boundary layer height [m]"},
/* 222 */ {"5WAVH", "5-wave geopotential height [gpm]"},
/* 223 */ {"CNWAT", "Plant canopy surface water [kg/m^2]"},
/* 224 */ {"SOTYP", "Soil type (Zobler) [0..9]"},
/* 225 */ {"VGTYP", "Vegetation type (as in SiB) [0..13]"},
/* 226 */ {"BMIXL", "Blackadar's mixing length scale [m]"},
/* 227 */ {"AMIXL", "Asymptotic mixing length scale [m]"},
/* 228 */ {"PEVAP", "Pot. evaporation [kg/m^2]"},
/* 229 */ {"SNOHF", "Snow phase-change heat flux [W/m^2]"},
/* 230 */ {"5WAVA", "5-wave geopot. height anomaly [gpm]"},
/* 231 */ {"MFLUX", "Convective cloud mass flux [Pa/s]"},
/* 232 */ {"DTRF", "Downward total radiation flux [W/m^2]"},
/* 233 */ {"UTRF", "Upward total radiation flux [W/m^2]"},
/* 234 */ {"BGRUN", "Baseflow-groundwater runoff [kg/m^2]"},
/* 235 */ {"SSRUN", "Storm surface runoff [kg/m^2]"},
/* 236 */ {"SIPD", "Supercooled large droplet (SLD) icing pot. diagn. []"},
/* 237 */ {"O3TOT", "Total ozone [kg/m^2]"},
/* 238 */ {"SNOWC", "Snow cover [%]"},
/* 239 */ {"SNOT", "Snow temp. [K]"},
/* 240 */ {"COVTW", "Covariance T and w [K*m/s]"},
/* 241 */ {"LRGHR", "Large scale condensation heating [K/s]"},
/* 242 */ {"CNVHR", "Deep convective heating [K/s]"},
/* 243 */ {"CNVMR", "Deep convective moistening [kg/kg/s]"},
/* 244 */ {"SHAHR", "Shallow convective heating [K/s]"},
/* 245 */ {"SHAMR", "Shallow convective moistening [kg/kg/s]"},
/* 246 */ {"VDFHR", "Vertical diffusion heating [K/s]"},
/* 247 */ {"VDFUA", "Vertical diffusion zonal accel [m/s^2]"},
/* 248 */ {"VDFVA", "Vertical diffusion meridional accel [m/s^2]"},
/* 249 */ {"VDFMR", "Vertical diffusion moistening [kg/kg/s]"},
/* 250 */ {"SWHR", "Solar radiative heating [K/s]"},
/* 251 */ {"LWHR", "Longwave radiative heating [K/s]"},
/* 252 */ {"CD", "Drag coefficient [non-dim]"},
/* 253 */ {"FRICV", "Friction velocity [m/s]"},
/* 254 */ {"RI", "Richardson number [non-dim]"},
/* 255 */ {"var255", "undefined"},
};
/*
* parameter table for the NCEP/NCAR Reanalysis Project
* center = 7, subcenter = 0/2, parameter table = 1/2
* in a SNAFU the operational and reanalysis tables diverged
* and both retained the same parameter table numbers (1,2)
*
* some of the Reanalysis files have subcenter=2 while others
* use subcenter=0 (subcenter field is not standard (7/97))
*
* Some ways to tell Reanalysis files from OPN files
* Reanalysis: always generated by process 80 - T62 28 level model
* Original subcenter=0 Reanalysis files had
* 2.5x2.5 (144x73) lat-long grid or 192x94 Gaussian grid (PDS grid=255?)
*/
const struct ParmTable parm_table_ncep_reanal[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"PRES", "Pressure [Pa]"},
/* 2 */ {"PRMSL", "Pressure reduced to MSL [Pa]"},
/* 3 */ {"PTEND", "Pressure tendency [Pa/s]"},
/* 4 */ {"var4", "undefined"},
/* 5 */ {"var5", "undefined"},
/* 6 */ {"GP", "Geopotential [m^2/s^2]"},
/* 7 */ {"HGT", "Geopotential height [gpm]"},
/* 8 */ {"DIST", "Geometric height [m]"},
/* 9 */ {"HSTDV", "Std dev of height [m]"},
/* 10 */ {"HVAR", "Variance of height [m^2]"},
/* 11 */ {"TMP", "Temp. [K]"},
/* 12 */ {"VTMP", "Virtual temp. [K]"},
/* 13 */ {"POT", "Potential temp. [K]"},
/* 14 */ {"EPOT", "Pseudo-adiabatic pot. temp. [K]"},
/* 15 */ {"TMAX", "Max. temp. [K]"},
/* 16 */ {"TMIN", "Min. temp. [K]"},
/* 17 */ {"DPT", "Dew point temp. [K]"},
/* 18 */ {"DEPR", "Dew point depression [K]"},
/* 19 */ {"LAPR", "Lapse rate [K/m]"},
/* 20 */ {"VISIB", "Visibility [m]"},
/* 21 */ {"RDSP1", "Radar spectra (1) [non-dim]"},
/* 22 */ {"RDSP2", "Radar spectra (2) [non-dim]"},
/* 23 */ {"RDSP3", "Radar spectra (3) [non-dim]"},
/* 24 */ {"var24", "undefined"},
/* 25 */ {"TMPA", "Temp. anomaly [K]"},
/* 26 */ {"PRESA", "Pressure anomaly [Pa]"},
/* 27 */ {"GPA", "Geopotential height anomaly [gpm]"},
/* 28 */ {"WVSP1", "Wave spectra (1) [non-dim]"},
/* 29 */ {"WVSP2", "Wave spectra (2) [non-dim]"},
/* 30 */ {"WVSP3", "Wave spectra (3) [non-dim]"},
/* 31 */ {"WDIR", "Wind direction [deg]"},
/* 32 */ {"WIND", "Wind speed [m/s]"},
/* 33 */ {"UGRD", "u wind [m/s]"},
/* 34 */ {"VGRD", "v wind [m/s]"},
/* 35 */ {"STRM", "Stream function [m^2/s]"},
/* 36 */ {"VPOT", "Velocity potential [m^2/s]"},
/* 37 */ {"MNTSF", "Montgomery stream function [m^2/s^2]"},
/* 38 */ {"SGCVV", "Sigma coord. vertical velocity [/s]"},
/* 39 */ {"VVEL", "Pressure vertical velocity [Pa/s]"},
/* 40 */ {"DZDT", "Geometric vertical velocity [m/s]"},
/* 41 */ {"ABSV", "Absolute vorticity [/s]"},
/* 42 */ {"ABSD", "Absolute divergence [/s]"},
/* 43 */ {"RELV", "Relative vorticity [/s]"},
/* 44 */ {"RELD", "Relative divergence [/s]"},
/* 45 */ {"VUCSH", "Vertical u shear [/s]"},
/* 46 */ {"VVCSH", "Vertical v shear [/s]"},
/* 47 */ {"DIRC", "Direction of current [deg]"},
/* 48 */ {"SPC", "Speed of current [m/s]"},
/* 49 */ {"UOGRD", "u of current [m/s]"},
/* 50 */ {"VOGRD", "v of current [m/s]"},
/* 51 */ {"SPFH", "Specific humidity [kg/kg]"},
/* 52 */ {"RH", "Relative humidity [%]"},
/* 53 */ {"MIXR", "Humidity mixing ratio [kg/kg]"},
/* 54 */ {"PWAT", "Precipitable water [kg/m^2]"},
/* 55 */ {"VAPP", "Vapor pressure [Pa]"},
/* 56 */ {"SATD", "Saturation deficit [Pa]"},
/* 57 */ {"EVP", "Evaporation [kg/m^2]"},
/* 58 */ {"CICE", "Cloud Ice [kg/kg]"},
/* 59 */ {"PRATE", "Precipitation rate [kg/m^2/s]"},
/* 60 */ {"TSTM", "Thunderstorm probability [%]"},
/* 61 */ {"APCP", "Total precipitation [kg/m^2]"},
/* 62 */ {"NCPCP", "Large scale precipitation [kg/m^2]"},
/* 63 */ {"ACPCP", "Convective precipitation [kg/m^2]"},
/* 64 */ {"SRWEQ", "Snowfall rate water equiv. [kg/m^2/s]"},
/* 65 */ {"WEASD", "Accum. snow [kg/m^2]"},
/* 66 */ {"SNOD", "Snow depth [m]"},
/* 67 */ {"MIXHT", "Mixed layer depth [m]"},
/* 68 */ {"TTHDP", "Transient thermocline depth [m]"},
/* 69 */ {"MTHD", "Main thermocline depth [m]"},
/* 70 */ {"MTHA", "Main thermocline anomaly [m]"},
/* 71 */ {"TCDC", "Total cloud cover [%]"},
/* 72 */ {"CDCON", "Convective cloud cover [%]"},
/* 73 */ {"LCDC", "Low level cloud cover [%]"},
/* 74 */ {"MCDC", "Mid level cloud cover [%]"},
/* 75 */ {"HCDC", "High level cloud cover [%]"},
/* 76 */ {"CWAT", "Cloud water [kg/m^2]"},
/* 77 */ {"var77", "undefined"},
/* 78 */ {"SNOC", "Convective snow [kg/m^2]"},
/* 79 */ {"SNOL", "Large scale snow [kg/m^2]"},
/* 80 */ {"WTMP", "Water temp. [K]"},
/* 81 */ {"LAND", "Land-sea mask [1=land; 0=sea]"},
/* 82 */ {"DSLM", "Deviation of sea level from mean [m]"},
/* 83 */ {"SFCR", "Surface roughness [m]"},
/* 84 */ {"ALBDO", "Albedo [%]"},
/* 85 */ {"TSOIL", "Soil temp. [K]"},
/* 86 */ {"SOILM", "Soil moisture content [kg/m^2]"},
/* 87 */ {"VEG", "Vegetation [%]"},
/* 88 */ {"SALTY", "Salinity [kg/kg]"},
/* 89 */ {"DEN", "Density [kg/m^3]"},
/* 90 */ {"RUNOF", "Runoff [kg/m^2]"},
/* 91 */ {"ICEC", "Ice concentration [ice=1;no ice=0]"},
/* 92 */ {"ICETK", "Ice thickness [m]"},
/* 93 */ {"DICED", "Direction of ice drift [deg]"},
/* 94 */ {"SICED", "Speed of ice drift [m/s]"},
/* 95 */ {"UICE", "u of ice drift [m/s]"},
/* 96 */ {"VICE", "v of ice drift [m/s]"},
/* 97 */ {"ICEG", "Ice growth rate [m/s]"},
/* 98 */ {"ICED", "Ice divergence [/s]"},
/* 99 */ {"SNOM", "Snow melt [kg/m^2]"},
/* 100 */ {"HTSGW", "Sig height of wind waves and swell [m]"},
/* 101 */ {"WVDIR", "Direction of wind waves [deg]"},
/* 102 */ {"WVHGT", "Sig height of wind waves [m]"},
/* 103 */ {"WVPER", "Mean period of wind waves [s]"},
/* 104 */ {"SWDIR", "Direction of swell waves [deg]"},
/* 105 */ {"SWELL", "Sig height of swell waves [m]"},
/* 106 */ {"SWPER", "Mean period of swell waves [s]"},
/* 107 */ {"DIRPW", "Primary wave direction [deg]"},
/* 108 */ {"PERPW", "Primary wave mean period [s]"},
/* 109 */ {"DIRSW", "Secondary wave direction [deg]"},
/* 110 */ {"PERSW", "Secondary wave mean period [s]"},
/* 111 */ {"NSWRS", "Net short wave (surface) [W/m^2]"},
/* 112 */ {"NLWRS", "Net long wave (surface) [W/m^2]"},
/* 113 */ {"NSWRT", "Net short wave (top) [W/m^2]"},
/* 114 */ {"NLWRT", "Net long wave (top) [W/m^2]"},
/* 115 */ {"LWAVR", "Long wave [W/m^2]"},
/* 116 */ {"SWAVR", "Short wave [W/m^2]"},
/* 117 */ {"GRAD", "Global radiation [W/m^2]"},
/* 118 */ {"var118", "undefined"},
/* 119 */ {"var119", "undefined"},
/* 120 */ {"var120", "undefined"},
/* 121 */ {"LHTFL", "Latent heat flux [W/m^2]"},
/* 122 */ {"SHTFL", "Sensible heat flux [W/m^2]"},
/* 123 */ {"BLYDP", "Boundary layer dissipation [W/m^2]"},
/* 124 */ {"UFLX", "Zonal momentum flux [N/m^2]"},
/* 125 */ {"VFLX", "Meridional momentum flux [N/m^2]"},
/* 126 */ {"WMIXE", "Wind mixing energy [J]"},
/* 127 */ {"IMGD", "Image data [integer]"},
/* 128 */ {"MSLSA", "Mean sea level pressure (Std Atm) [Pa]"},
/* 129 */ {"MSLMA", "Mean sea level pressure (MAPS) [Pa]"},
/* 130 */ {"MSLET", "Mean sea level pressure (ETA model) [Pa]"},
/* 131 */ {"LFTX", "Surface lifted index [K]"},
/* 132 */ {"4LFTX", "Best (4-layer) lifted index [K]"},
/* 133 */ {"KX", "K index [K]"},
/* 134 */ {"SX", "Sweat index [K]"},
/* 135 */ {"MCONV", "Horizontal moisture divergence [kg/kg/s]"},
/* 136 */ {"VSSH", "Vertical speed shear [1/s]"},
/* 137 */ {"TSLSA", "3-hr pressure tendency [Pa/s]"},
/* 138 */ {"BVF2", "Brunt-Vaisala frequency^2 [1/s^2]"},
/* 139 */ {"PVMW", "Potential vorticity (mass-weighted) [1/s/m]"},
/* 140 */ {"CRAIN", "Categorical rain [yes=1;no=0]"},
/* 141 */ {"CFRZR", "Categorical freezing rain [yes=1;no=0]"},
/* 142 */ {"CICEP", "Categorical ice pellets [yes=1;no=0]"},
/* 143 */ {"CSNOW", "Categorical snow [yes=1;no=0]"},
/* 144 */ {"SOILW", "Volumetric soil moisture [fraction]"},
/* 145 */ {"PEVPR", "Potential evaporation rate [W/m^2]"},
/* 146 */ {"CWORK", "Cloud work function [J/kg]"},
/* 147 */ {"U-GWD", "Zonal gravity wave stress [N/m^2]"},
/* 148 */ {"V-GWD", "Meridional gravity wave stress [N/m^2]"},
/* 149 */ {"PV___", "Potential vorticity [m^2/s/kg]"},
/* 150 */ {"var150", "undefined"},
/* 151 */ {"var151", "undefined"},
/* 152 */ {"var152", "undefined"},
/* 153 */ {"MFXDV", "Moisture flux divergence [gr/gr*m/s/m]"},
/* 154 */ {"var154", "undefined"},
/* 155 */ {"GFLUX", "Ground heat flux [W/m^2]"},
/* 156 */ {"CIN", "Convective inhibition [J/kg]"},
/* 157 */ {"CAPE", "Convective Avail. Pot. Energy [J/kg]"},
/* 158 */ {"TKE", "Turbulent kinetic energy [J/kg]"},
/* 159 */ {"CONDP", "Lifted parcel condensation pressure [Pa]"},
/* 160 */ {"CSUSF", "Clear sky upward solar flux [W/m^2]"},
/* 161 */ {"CSDSF", "Clear sky downward solar flux [W/m^2]"},
/* 162 */ {"CSULF", "Clear sky upward long wave flux [W/m^2]"},
/* 163 */ {"CSDLF", "Clear sky downward long wave flux [W/m^2]"},
/* 164 */ {"CFNSF", "Cloud forcing net solar flux [W/m^2]"},
/* 165 */ {"CFNLF", "Cloud forcing net long wave flux [W/m^2]"},
/* 166 */ {"VBDSF", "Visible beam downward solar flux [W/m^2]"},
/* 167 */ {"VDDSF", "Visible diffuse downward solar flux [W/m^2]"},
/* 168 */ {"NBDSF", "Near IR beam downward solar flux [W/m^2]"},
/* 169 */ {"NDDSF", "Near IR diffuse downward solar flux [W/m^2]"},
/* 170 */ {"USTR", "U wind stress [N/m^2]"},
/* 171 */ {"VSTR", "V wind stress [N/m^2]"},
/* 172 */ {"MFLX", "Momentum flux [N/m^2]"},
/* 173 */ {"LMH", "Mass point model surface [integer]"},
/* 174 */ {"LMV", "Velocity point model surface [integer]"},
/* 175 */ {"SGLYR", "Nearby model level [integer]"},
/* 176 */ {"NLAT", "Latitude [deg]"},
/* 177 */ {"ELON", "Longitude [deg]"},
/* 178 */ {"UMAS", "Mass weighted u [gm/m*K*s]"},
/* 179 */ {"VMAS", "Mass weighted v [gm/m*K*s]"},
/* 180 */ {"XPRATE", "corrected precip [kg/m^2/s]"},
/* 181 */ {"LPSX", "x-gradient of log pressure [1/m]"},
/* 182 */ {"LPSY", "y-gradient of log pressure [1/m]"},
/* 183 */ {"HGTX", "x-gradient of height [m/m]"},
/* 184 */ {"HGTY", "y-gradient of height [m/m]"},
/* 185 */ {"STDZ", "Std dev of Geop. hgt. [m]"},
/* 186 */ {"STDU", "Std dev of zonal wind [m/s]"},
/* 187 */ {"STDV", "Std dev of meridional wind [m/s]"},
/* 188 */ {"STDQ", "Std dev of spec. hum. [gm/gm]"},
/* 189 */ {"STDT", "Std dev of temp. [K]"},
/* 190 */ {"CBUW", "Covar. u and omega [m/s*Pa/s]"},
/* 191 */ {"CBVW", "Covar. v and omega [m/s*Pa/s]"},
/* 192 */ {"CBUQ", "Covar. u and specific hum [m/s*gm/gm]"},
/* 193 */ {"CBVQ", "Covar. v and specific hum [m/s*gm/gm]"},
/* 194 */ {"CBTW", "Covar. T and omega [K*Pa/s]"},
/* 195 */ {"CBQW", "Covar. spec. hum and omega [gm/gm*Pa/s]"},
/* 196 */ {"CBMZW", "Covar. v and u [m^2/s^2]"},
/* 197 */ {"CBTZW", "Covar. u and T [K*m/s]"},
/* 198 */ {"CBTMW", "Covar. v and T [K*m/s]"},
/* 199 */ {"STDRH", "Std dev of Rel. Hum. [%]"},
/* 200 */ {"SDTZ", "Std dev of time tend of geop. hgt [m]"},
/* 201 */ {"ICWAT", "Ice-free water surface [%]"},
/* 202 */ {"SDTU", "Std dev of time tend of zonal wind [m/s]"},
/* 203 */ {"SDTV", "Std dev of time tend of merid wind [m/s]"},
/* 204 */ {"DSWRF", "Downward solar radiation flux [W/m^2]"},
/* 205 */ {"DLWRF", "Downward long wave flux [W/m^2]"},
/* 206 */ {"SDTQ", "Std dev of time tend of spec. hum [gm/gm]"},
/* 207 */ {"MSTAV", "Moisture availability [%]"},
/* 208 */ {"SFEXC", "Exchange coefficient [kg*m/m^3/s]"},
/* 209 */ {"MIXLY", "No. of mixed layers next to sfc [integer]"},
/* 210 */ {"SDTT", "Std dev of time tend of temp. [K]"},
/* 211 */ {"USWRF", "Upward solar radiation flux [W/m^2]"},
/* 212 */ {"ULWRF", "Upward long wave flux [W/m^2]"},
/* 213 */ {"CDLYR", "Non-convective cloud [%]"},
/* 214 */ {"CPRAT", "Convective precip. rate [kg/m^2/s]"},
/* 215 */ {"TTDIA", "Temp. tendency by all physics [K/s]"},
/* 216 */ {"TTRAD", "Temp. tendency by all radiation [K/s]"},
/* 217 */ {"TTPHY", "Temp. tendency by nonrad physics [K/s]"},
/* 218 */ {"PREIX", "Precipitation index [fraction]"},
/* 219 */ {"TSD1D", "Std dev of IR T over 1x1 deg area [K]"},
/* 220 */ {"NLSGP", "Natural log of surface pressure [ln(kPa)]"},
/* 221 */ {"SDTRH", "Std dev of time tend of rel hum [%]"},
/* 222 */ {"5WAVH", "5-wave geopotential height [gpm]"},
/* 223 */ {"CNWAT", "Plant canopy surface water [kg/m^2]"},
/* 224 */ {"PLTRS", "Max. stomato plant resistance [s/m]"},
/* 225 */ {"RHCLD", "RH-type cloud cover [%]"},
/* 226 */ {"BMIXL", "Blackadar's mixing length scale [m]"},
/* 227 */ {"AMIXL", "Asymptotic mixing length scale [m]"},
/* 228 */ {"PEVAP", "Pot. evaporation [kg/m^2]"},
/* 229 */ {"SNOHF", "Snow melt heat flux [W/m^2]"},
/* 230 */ {"SNOEV", "Snow sublimation heat flux [W/m^2]"},
/* 231 */ {"MFLUX", "Convective cloud mass flux [Pa/s]"},
/* 232 */ {"DTRF", "Downward total radiation flux [W/m^2]"},
/* 233 */ {"UTRF", "Upward total radiation flux [W/m^2]"},
/* 234 */ {"BGRUN", "Baseflow-groundwater runoff [kg/m^2]"},
/* 235 */ {"SSRUN", "Storm surface runoff [kg/m^2]"},
/* 236 */ {"var236", "undefined"},
/* 237 */ {"OZONE", "Total column ozone [Dobson]"},
/* 238 */ {"SNOWC", "Snow cover [%]"},
/* 239 */ {"SNOT", "Snow temp. [K]"},
/* 240 */ {"GLCR", "Permanent snow points [mask]"},
/* 241 */ {"LRGHR", "Large scale condensation heating [K/s]"},
/* 242 */ {"CNVHR", "Deep convective heating [K/s]"},
/* 243 */ {"CNVMR", "Deep convective moistening [kg/kg/s]"},
/* 244 */ {"SHAHR", "Shallow convective heating [K/s]"},
/* 245 */ {"SHAMR", "Shallow convective moistening [kg/kg/s]"},
/* 246 */ {"VDFHR", "Vertical diffusion heating [K/s]"},
/* 247 */ {"VDFUA", "Vertical diffusion zonal accel [m/s^2]"},
/* 248 */ {"VDFVA", "Vertical diffusion meridional accel [m/s^2]"},
/* 249 */ {"VDFMR", "Vertical diffusion moistening [kg/kg/s]"},
/* 250 */ {"SWHR", "Solar radiative heating [K/s]"},
/* 251 */ {"LWHR", "Longwave radiative heating [K/s]"},
/* 252 */ {"CD", "Drag coefficient [non-dim]"},
/* 253 */ {"FRICV", "Friction velocity [m/s]"},
/* 254 */ {"RI", "Richardson number [non-dim]"},
/* 255 */ {"var255", "undefined"},
};
const struct ParmTable parm_table_nceptab_131[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"PRES", "Pressure [Pa]"},
/* 2 */ {"PRMSL", "Mean sea level pressure (Shuell method) [Pa]"},
/* 3 */ {"PTEND", "Pressure tendency [Pa/s]"},
/* 4 */ {"PVORT", "Pot. vorticity [km^2/kg/s]"},
/* 5 */ {"ICAHT", "ICAO Standard Atmosphere Reference Height [M]"},
/* 6 */ {"GP", "Geopotential [m^2/s^2]"},
/* 7 */ {"HGT", "Geopotential height [gpm]"},
/* 8 */ {"DIST", "Geometric height [m]"},
/* 9 */ {"HSTDV", "Std dev of height [m]"},
/* 10 */ {"TOZNE", "Total ozone [Dobson]"},
/* 11 */ {"TMP", "Temp. [K]"},
/* 12 */ {"VTMP", "Virtual temp. [K]"},
/* 13 */ {"POT", "Potential temp. [K]"},
/* 14 */ {"EPOT", "Pseudo-adiabatic pot. temp. [K]"},
/* 15 */ {"TMAX", "Max. temp. [K]"},
/* 16 */ {"TMIN", "Min. temp. [K]"},
/* 17 */ {"DPT", "Dew point temp. [K]"},
/* 18 */ {"DEPR", "Dew point depression [K]"},
/* 19 */ {"LAPR", "Lapse rate [K/m]"},
/* 20 */ {"VIS", "Visibility [m]"},
/* 21 */ {"RDSP1", "Radar spectra (1) [non-dim]"},
/* 22 */ {"RDSP2", "Radar spectra (2) [non-dim]"},
/* 23 */ {"RDSP3", "Radar spectra (3) [non-dim]"},
/* 24 */ {"PLI", "Parcel lifted index (to 500 hPa) [K]"},
/* 25 */ {"TMPA", "Temp. anomaly [K]"},
/* 26 */ {"PRESA", "Pressure anomaly [Pa]"},
/* 27 */ {"GPA", "Geopotential height anomaly [gpm]"},
/* 28 */ {"WVSP1", "Wave spectra (1) [non-dim]"},
/* 29 */ {"WVSP2", "Wave spectra (2) [non-dim]"},
/* 30 */ {"WVSP3", "Wave spectra (3) [non-dim]"},
/* 31 */ {"WDIR", "Wind direction [deg]"},
/* 32 */ {"WIND", "Wind speed [m/s]"},
/* 33 */ {"UGRD", "u wind [m/s]"},
/* 34 */ {"VGRD", "v wind [m/s]"},
/* 35 */ {"STRM", "Stream function [m^2/s]"},
/* 36 */ {"VPOT", "Velocity potential [m^2/s]"},
/* 37 */ {"MNTSF", "Montgomery stream function [m^2/s^2]"},
/* 38 */ {"SGCVV", "Sigma coord. vertical velocity [/s]"},
/* 39 */ {"VVEL", "Pressure vertical velocity [Pa/s]"},
/* 40 */ {"DZDT", "Geometric vertical velocity [m/s]"},
/* 41 */ {"ABSV", "Absolute vorticity [/s]"},
/* 42 */ {"ABSD", "Absolute divergence [/s]"},
/* 43 */ {"RELV", "Relative vorticity [/s]"},
/* 44 */ {"RELD", "Relative divergence [/s]"},
/* 45 */ {"VUCSH", "Vertical u shear [/s]"},
/* 46 */ {"VVCSH", "Vertical v shear [/s]"},
/* 47 */ {"DIRC", "Direction of current [deg]"},
/* 48 */ {"SPC", "Speed of current [m/s]"},
/* 49 */ {"UOGRD", "u of current [m/s]"},
/* 50 */ {"VOGRD", "v of current [m/s]"},
/* 51 */ {"SPFH", "Specific humidity [kg/kg]"},
/* 52 */ {"RH", "Relative humidity [%]"},
/* 53 */ {"MIXR", "Humidity mixing ratio [kg/kg]"},
/* 54 */ {"PWAT", "Precipitable water [kg/m^2]"},
/* 55 */ {"VAPP", "Vapor pressure [Pa]"},
/* 56 */ {"SATD", "Saturation deficit [Pa]"},
/* 57 */ {"EVP", "Evaporation [kg/m^2]"},
/* 58 */ {"CICE", "Cloud Ice [kg/m^2]"},
/* 59 */ {"PRATE", "Precipitation rate [kg/m^2/s]"},
/* 60 */ {"TSTM", "Thunderstorm probability [%]"},
/* 61 */ {"APCP", "Total precipitation [kg/m^2]"},
/* 62 */ {"NCPCP", "Large scale precipitation [kg/m^2]"},
/* 63 */ {"ACPCP", "Convective precipitation [kg/m^2]"},
/* 64 */ {"SRWEQ", "Snowfall rate water equiv. [kg/m^2/s]"},
/* 65 */ {"WEASD", "Accum. snow [kg/m^2]"},
/* 66 */ {"SNOD", "Snow depth [m]"},
/* 67 */ {"MIXHT", "Mixed layer depth [m]"},
/* 68 */ {"TTHDP", "Transient thermocline depth [m]"},
/* 69 */ {"MTHD", "Main thermocline depth [m]"},
/* 70 */ {"MTHA", "Main thermocline anomaly [m]"},
/* 71 */ {"TCDC", "Total cloud cover [%]"},
/* 72 */ {"CDCON", "Convective cloud cover [%]"},
/* 73 */ {"LCDC", "Low level cloud cover [%]"},
/* 74 */ {"MCDC", "Mid level cloud cover [%]"},
/* 75 */ {"HCDC", "High level cloud cover [%]"},
/* 76 */ {"CWAT", "Cloud water [kg/m^2]"},
/* 77 */ {"BLI", "Best lifted index (to 500 hPa) [K]"},
/* 78 */ {"SNOC", "Convective snow [kg/m^2]"},
/* 79 */ {"SNOL", "Large scale snow [kg/m^2]"},
/* 80 */ {"WTMP", "Water temp. [K]"},
/* 81 */ {"LAND", "Land cover (land=1;sea=0) [fraction]"},
/* 82 */ {"DSLM", "Deviation of sea level from mean [m]"},
/* 83 */ {"SFCR", "Surface roughness [m]"},
/* 84 */ {"ALBDO", "Albedo [%]"},
/* 85 */ {"TSOIL", "Soil temp. [K]"},
/* 86 */ {"SOILM", "Soil moisture content [kg/m^2]"},
/* 87 */ {"VEG", "Vegetation [%]"},
/* 88 */ {"SALTY", "Salinity [kg/kg]"},
/* 89 */ {"DEN", "Density [kg/m^3]"},
/* 90 */ {"WATR", "Water runoff [kg/m^2]"},
/* 91 */ {"ICEC", "Ice concentration (ice=1;no ice=0) [fraction]"},
/* 92 */ {"ICETK", "Ice thickness [m]"},
/* 93 */ {"DICED", "Direction of ice drift [deg]"},
/* 94 */ {"SICED", "Speed of ice drift [m/s]"},
/* 95 */ {"UICE", "u of ice drift [m/s]"},
/* 96 */ {"VICE", "v of ice drift [m/s]"},
/* 97 */ {"ICEG", "Ice growth rate [m/s]"},
/* 98 */ {"ICED", "Ice divergence [/s]"},
/* 99 */ {"SNOM", "Snow melt [kg/m^2]"},
/* 100 */ {"HTSGW", "Sig height of wind waves and swell [m]"},
/* 101 */ {"WVDIR", "Direction of wind waves [deg]"},
/* 102 */ {"WVHGT", "Sig height of wind waves [m]"},
/* 103 */ {"WVPER", "Mean period of wind waves [s]"},
/* 104 */ {"SWDIR", "Direction of swell waves [deg]"},
/* 105 */ {"SWELL", "Sig height of swell waves [m]"},
/* 106 */ {"SWPER", "Mean period of swell waves [s]"},
/* 107 */ {"DIRPW", "Primary wave direction [deg]"},
/* 108 */ {"PERPW", "Primary wave mean period [s]"},
/* 109 */ {"DIRSW", "Secondary wave direction [deg]"},
/* 110 */ {"PERSW", "Secondary wave mean period [s]"},
/* 111 */ {"NSWRS", "Net short wave (surface) [W/m^2]"},
/* 112 */ {"NLWRS", "Net long wave (surface) [W/m^2]"},
/* 113 */ {"NSWRT", "Net short wave (top) [W/m^2]"},
/* 114 */ {"NLWRT", "Net long wave (top) [W/m^2]"},
/* 115 */ {"LWAVR", "Long wave [W/m^2]"},
/* 116 */ {"SWAVR", "Short wave [W/m^2]"},
/* 117 */ {"GRAD", "Global radiation [W/m^2]"},
/* 118 */ {"BRTMP", "Brightness temperature [K]"},
/* 119 */ {"LWRAD", "Radiance with respect to wave no. [W/m/sr]"},
/* 120 */ {"SWRAD", "Radiance with respect ot wave len. [W/m^3/sr]"},
/* 121 */ {"LHTFL", "Latent heat flux [W/m^2]"},
/* 122 */ {"SHTFL", "Sensible heat flux [W/m^2]"},
/* 123 */ {"BLYDP", "Boundary layer dissipation [W/m^2]"},
/* 124 */ {"UFLX", "Zonal momentum flux [N/m^2]"},
/* 125 */ {"VFLX", "Meridional momentum flux [N/m^2]"},
/* 126 */ {"WMIXE", "Wind mixing energy [J]"},
/* 127 */ {"IMGD", "Image data []"},
/* 128 */ {"MSLSA", "Mean sea level pressure (Std Atm) [Pa]"},
/* 129 */ {"var129", "undefined"},
/* 130 */ {"MSLET", "Mean sea level pressure (Mesinger method) [Pa]"},
/* 131 */ {"LFTX", "Surface lifted index [K]"},
/* 132 */ {"4LFTX", "Best (4-layer) lifted index [K]"},
/* 133 */ {"var133", "undefined"},
/* 134 */ {"PRESN", "Pressure (nearest grid point) [Pa]"},
/* 135 */ {"MCONV", "Horizontal moisture divergence [kg/kg/s]"},
/* 136 */ {"VWSH", "Vertical speed shear [1/s]"},
/* 137 */ {"var137", "undefined"},
/* 138 */ {"var138", "undefined"},
/* 139 */ {"PVMW", "Potential vorticity (mass-weighted) [1/s/m]"},
/* 140 */ {"CRAIN", "Categorical rain [yes=1;no=0]"},
/* 141 */ {"CFRZR", "Categorical freezing rain [yes=1;no=0]"},
/* 142 */ {"CICEP", "Categorical ice pellets [yes=1;no=0]"},
/* 143 */ {"CSNOW", "Categorical snow [yes=1;no=0]"},
/* 144 */ {"SOILW", "Volumetric soil moisture (frozen + liquid) [fraction]"},
/* 145 */ {"PEVPR", "Potential evaporation rate [W/m^2]"},
/* 146 */ {"VEGT", "Vegetation canopy temperature [K]"},
/* 147 */ {"BARET", "Bare soil surface skin temperature [K]"},
/* 148 */ {"AVSFT", "Average surface skin temperature [K]"},
/* 149 */ {"RADT", "Effective radiative skin temperature [K]"},
/* 150 */ {"SSTOR", "Surface water storage [kg/m^2]"},
/* 151 */ {"LSOIL", "Liquid soil moisture content (non-frozen) [kg/m^2]"},
/* 152 */ {"EWATR", "Open water evaporation (standing water) [W/m^2]"},
/* 153 */ {"CLWMR", "Cloud water [kg/kg]"},
/* 154 */ {"var154", "undefined"},
/* 155 */ {"GFLUX", "Ground Heat Flux [W/m^2]"},
/* 156 */ {"CIN", "Convective inhibition [J/kg]"},
/* 157 */ {"CAPE", "Convective available potential energy [J/kg]"},
/* 158 */ {"TKE", "Turbulent Kinetic Energy [J/kg]"},
/* 159 */ {"MXSALB", "Maximum snow albedo [%]"},
/* 160 */ {"SOILL", "Liquid volumetric soil moisture (non-frozen) [fraction]"},
/* 161 */ {"ASNOW", "Frozen precipitation (e.g. snowfall) [kg/m^2]"},
/* 162 */ {"ARAIN", "Liquid precipitation (rainfall) [kg/m^2]"},
/* 163 */ {"GWREC", "Groundwater recharge [kg/m^2]"},
/* 164 */ {"QREC", "Flood plain recharge [kg/m^2]"},
/* 165 */ {"SNOWT", "Snow temperature, depth-avg [K]"},
/* 166 */ {"VBDSF", "Visible beam downward solar flux [W/m^2]"},
/* 167 */ {"VDDSF", "Visible diffuse downward solar flux [W/m^2]"},
/* 168 */ {"NBDSF", "Near IR beam downward solar flux [W/m^2]"},
/* 169 */ {"NDDSF", "Near IR diffuse downward solar flux [W/m^2]"},
/* 170 */ {"SNFALB", "Snow-free albedo [%]"},
/* 171 */ {"RLYRS", "Number of soil layers in root zone [non-dim]"},
/* 172 */ {"FLX", "Momentum flux N/m2 [M]"},
/* 173 */ {"LMH", "Mass point model surface [non-dim]"},
/* 174 */ {"LMV", "Velocity point model surface [non-dim]"},
/* 175 */ {"MLYNO", "Model layer number (from bottom up) [non-dim]"},
/* 176 */ {"NLAT", "Latitude (-90 to +90) [deg]"},
/* 177 */ {"ELON", "East longitude (0-360) [deg]"},
/* 178 */ {"ICMR", "Ice mixing ratio [kg/kg]"},
/* 179 */ {"ACOND", "Aerodynamic conductance [m/s]"},
/* 180 */ {"SNOAG", "Snow age [s]"},
/* 181 */ {"CCOND", "Canopy conductance [m/s]"},
/* 182 */ {"LAI", "Leaf area index (0-9) [non-dim]"},
/* 183 */ {"SFCRH", "Roughness length for heat [m]"},
/* 184 */ {"SALBD", "Snow albedo (over snow cover area only) [%]"},
/* 185 */ {"var185", "undefined"},
/* 186 */ {"var186", "undefined"},
/* 187 */ {"NDVI", "Normalized Difference Vegetation Index []"},
/* 188 */ {"DRIP", "Rate of water dropping from canopy to gnd [kg/m^2]"},
/* 189 */ {"LANDN", "Land cover (nearest neighbor) [sea=0,land=1]"},
/* 190 */ {"HLCY", "Storm relative helicity [m^2/s^2]"},
/* 191 */ {"NLATN", "Latitude (nearest neigbhbor) (-90 to +90) [deg]"},
/* 192 */ {"ELONN", "East longitude (nearest neigbhbor) (0-360) [deg]"},
/* 193 */ {"var193", "undefined"},
/* 194 */ {"CPOFP", "Prob. of frozen precipitation [%]"},
/* 195 */ {"var195", "undefined"},
/* 196 */ {"USTM", "u-component of storm motion [m/s]"},
/* 197 */ {"VSTM", "v-component of storm motion [m/s]"},
/* 198 */ {"SBSNO", "Sublimation (evaporation from snow) [W/m^2]"},
/* 199 */ {"EVBS", "Direct evaporation from bare soil [W/m^2]"},
/* 200 */ {"EVCW", "Canopy water evaporation [W/m^2]"},
/* 201 */ {"var201", "undefined"},
/* 202 */ {"APCPN", "Total precipitation (nearest grid point) [kg/m^2]"},
/* 203 */ {"RSMIN", "Minimal stomatal resistance [s/m]"},
/* 204 */ {"DSWRF", "Downward shortwave radiation flux [W/m^2]"},
/* 205 */ {"DLWRF", "Downward longwave radiation flux [W/m^2]"},
/* 206 */ {"ACPCPN", "Convective precipitation (nearest grid point) [kg/m^2]"},
/* 207 */ {"MSTAV", "Moisture availability [%]"},
/* 208 */ {"SFEXC", "Exchange coefficient [(kg/m^3)(m/s)]"},
/* 209 */ {"var209", "undefined"},
/* 210 */ {"TRANS", "Transpiration [W/m^2]"},
/* 211 */ {"USWRF", "Upward short wave radiation flux [W/m^2]"},
/* 212 */ {"ULWRF", "Upward long wave radiation flux [W/m^2]"},
/* 213 */ {"CDLYR", "Non-convective cloud [%]"},
/* 214 */ {"CPRAT", "Convective precip. rate [kg/m^2/s]"},
/* 215 */ {"var215", "undefined"},
/* 216 */ {"TTRAD", "Temp. tendency by all radiation [K/s]"},
/* 217 */ {"var217", "undefined"},
/* 218 */ {"HGTN", "Geopotential Height (nearest grid point) [gpm]"},
/* 219 */ {"WILT", "Wilting point [fraction]"},
/* 220 */ {"FLDCP", "Field Capacity [fraction]"},
/* 221 */ {"HPBL", "Planetary boundary layer height [m]"},
/* 222 */ {"SLTYP", "Surface slope type [Index]"},
/* 223 */ {"CNWAT", "Plant canopy surface water [kg/m^2]"},
/* 224 */ {"SOTYP", "Soil type [Index]"},
/* 225 */ {"VGTYP", "Vegetation type [Index]"},
/* 226 */ {"BMIXL", "Blackadars mixing length scale [m]"},
/* 227 */ {"AMIXL", "Asymptotic mixing length scale [m]"},
/* 228 */ {"PEVAP", "Potential evaporation [kg/m^2]"},
/* 229 */ {"SNOHF", "Snow phase-change heat flux [W/m^2]"},
/* 230 */ {"SMREF", "Transpiration stress-onset (soil moisture) [fraction]"},
/* 231 */ {"SMDRY", "Direct evaporation cease (soil moisture) [fraction]"},
/* 232 */ {"WVINC", "water vapor added by precip assimilation [kg/m^2]"},
/* 233 */ {"WCINC", "water condensate added by precip assimilaition [kg/m^2]"},
/* 234 */ {"BGRUN", "Subsurface runoff (baseflow) [kg/m^2]"},
/* 235 */ {"SSRUN", "Surface runoff (non-infiltrating) [kg/m^2]"},
/* 236 */ {"var236", "undefined"},
/* 237 */ {"WVCONV", "Water vapor flux convergence (vertical int) [kg/m^2]"},
/* 238 */ {"SNOWC", "Snow cover [%]"},
/* 239 */ {"SNOT", "Snow temperature [K]"},
/* 240 */ {"POROS", "Soil porosity [fraction]"},
/* 241 */ {"WCCONV", "Water condensate flux convergence (vertical int) [kg/m^2]"},
/* 242 */ {"WVUFLX", "Water vapor zonal transport (vertical int)[kg/m]"},
/* 243 */ {"WVVFLX", "Water vapor meridional transport (vertical int) [kg/m]"},
/* 244 */ {"WCUFLX", "Water condensate zonal transport (vertical int) [kg/m]"},
/* 245 */ {"WCVFLX", "Water condensate meridional transport (vertical int) [kg/m]"},
/* 246 */ {"RCS", "Solar parameter in canopy conductance [fraction]"},
/* 247 */ {"RCT", "Temperature parameter in canopy conductance [fraction]"},
/* 248 */ {"RCQ", "Humidity parameter in canopy conductance [fraction]"},
/* 249 */ {"RCSOL", "Soil moisture parameter in canopy conductance [fraction]"},
/* 250 */ {"SWHR", "Solar radiative heating [K/s]"},
/* 251 */ {"LWHR", "Longwave radiative heating [K/s]"},
/* 252 */ {"CD", "Surface drag coefficient [non-dim]"},
/* 253 */ {"FRICV", "Surface friction velocity [m/s]"},
/* 254 */ {"RI", "Richardson number [non-dim]"},
/* 255 */ {"var255", "undefined"},
};
const struct ParmTable parm_table_nceptab_130[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"PRES", "Pressure [Pa]"},
/* 2 */ {"PRMSL", "Pressure reduced to MSL [Pa]"},
/* 3 */ {"PTEND", "Pressure tendency [Pa/s]"},
/* 4 */ {"PVORT", "Pot. vorticity [km^2/kg/s]"},
/* 5 */ {"ICAHT", "ICAO Standard Atmosphere Reference Height [M]"},
/* 6 */ {"GP", "Geopotential [m^2/s^2]"},
/* 7 */ {"HGT", "Geopotential height [gpm]"},
/* 8 */ {"DIST", "Geometric height [m]"},
/* 9 */ {"HSTDV", "Std dev of height [m]"},
/* 10 */ {"TOZNE", "Total ozone [Dobson]"},
/* 11 */ {"TMP", "Temp. [K]"},
/* 12 */ {"VTMP", "Virtual temp. [K]"},
/* 13 */ {"POT", "Potential temp. [K]"},
/* 14 */ {"EPOT", "Pseudo-adiabatic pot. temp. [K]"},
/* 15 */ {"TMAX", "Max. temp. [K]"},
/* 16 */ {"TMIN", "Min. temp. [K]"},
/* 17 */ {"DPT", "Dew point temp. [K]"},
/* 18 */ {"DEPR", "Dew point depression [K]"},
/* 19 */ {"LAPR", "Lapse rate [K/m]"},
/* 20 */ {"VIS", "Visibility [m]"},
/* 21 */ {"RDSP1", "Radar spectra (1) [non-dim]"},
/* 22 */ {"RDSP2", "Radar spectra (2) [non-dim]"},
/* 23 */ {"RDSP3", "Radar spectra (3) [non-dim]"},
/* 24 */ {"PLI", "Parcel lifted index (to 500 hPa) [K]"},
/* 25 */ {"TMPA", "Temp. anomaly [K]"},
/* 26 */ {"PRESA", "Pressure anomaly [Pa]"},
/* 27 */ {"GPA", "Geopotential height anomaly [gpm]"},
/* 28 */ {"WVSP1", "Wave spectra (1) [non-dim]"},
/* 29 */ {"WVSP2", "Wave spectra (2) [non-dim]"},
/* 30 */ {"WVSP3", "Wave spectra (3) [non-dim]"},
/* 31 */ {"WDIR", "Wind direction [deg]"},
/* 32 */ {"WIND", "Wind speed [m/s]"},
/* 33 */ {"UGRD", "u wind [m/s]"},
/* 34 */ {"VGRD", "v wind [m/s]"},
/* 35 */ {"STRM", "Stream function [m^2/s]"},
/* 36 */ {"VPOT", "Velocity potential [m^2/s]"},
/* 37 */ {"MNTSF", "Montgomery stream function [m^2/s^2]"},
/* 38 */ {"SGCVV", "Sigma coord. vertical velocity [/s]"},
/* 39 */ {"VVEL", "Pressure vertical velocity [Pa/s]"},
/* 40 */ {"DZDT", "Geometric vertical velocity [m/s]"},
/* 41 */ {"ABSV", "Absolute vorticity [/s]"},
/* 42 */ {"ABSD", "Absolute divergence [/s]"},
/* 43 */ {"RELV", "Relative vorticity [/s]"},
/* 44 */ {"RELD", "Relative divergence [/s]"},
/* 45 */ {"VUCSH", "Vertical u shear [/s]"},
/* 46 */ {"VVCSH", "Vertical v shear [/s]"},
/* 47 */ {"DIRC", "Direction of current [deg]"},
/* 48 */ {"SPC", "Speed of current [m/s]"},
/* 49 */ {"UOGRD", "u of current [m/s]"},
/* 50 */ {"VOGRD", "v of current [m/s]"},
/* 51 */ {"SPFH", "Specific humidity [kg/kg]"},
/* 52 */ {"RH", "Relative humidity [%]"},
/* 53 */ {"MIXR", "Humidity mixing ratio [kg/kg]"},
/* 54 */ {"PWAT", "Precipitable water [kg/m^2]"},
/* 55 */ {"VAPP", "Vapor pressure [Pa]"},
/* 56 */ {"SATD", "Saturation deficit [Pa]"},
/* 57 */ {"EVP", "Evaporation [kg/m^2]"},
/* 58 */ {"CICE", "Cloud Ice [kg/m^2]"},
/* 59 */ {"PRATE", "Precipitation rate [kg/m^2/s]"},
/* 60 */ {"TSTM", "Thunderstorm probability [%]"},
/* 61 */ {"APCP", "Total precipitation [kg/m^2]"},
/* 62 */ {"NCPCP", "Large scale precipitation [kg/m^2]"},
/* 63 */ {"ACPCP", "Convective precipitation [kg/m^2]"},
/* 64 */ {"SRWEQ", "Snowfall rate water equiv. [kg/m^2/s]"},
/* 65 */ {"WEASD", "Accum. snow [kg/m^2]"},
/* 66 */ {"SNOD", "Snow depth [m]"},
/* 67 */ {"MIXHT", "Mixed layer depth [m]"},
/* 68 */ {"TTHDP", "Transient thermocline depth [m]"},
/* 69 */ {"MTHD", "Main thermocline depth [m]"},
/* 70 */ {"MTHA", "Main thermocline anomaly [m]"},
/* 71 */ {"TCDC", "Total cloud cover [%]"},
/* 72 */ {"CDCON", "Convective cloud cover [%]"},
/* 73 */ {"LCDC", "Low level cloud cover [%]"},
/* 74 */ {"MCDC", "Mid level cloud cover [%]"},
/* 75 */ {"HCDC", "High level cloud cover [%]"},
/* 76 */ {"CWAT", "Cloud water [kg/m^2]"},
/* 77 */ {"BLI", "Best lifted index (to 500 hPa) [K]"},
/* 78 */ {"SNOC", "Convective snow [kg/m^2]"},
/* 79 */ {"SNOL", "Large scale snow [kg/m^2]"},
/* 80 */ {"WTMP", "Water temp. [K]"},
/* 81 */ {"LAND", "Land cover (land=1;sea=0) [fraction]"},
/* 82 */ {"DSLM", "Deviation of sea level from mean [m]"},
/* 83 */ {"SFCR", "Surface roughness [m]"},
/* 84 */ {"ALBDO", "Albedo [%]"},
/* 85 */ {"TSOIL", "Soil temp. [K]"},
/* 86 */ {"SOILM", "Soil moisture content [kg/m^2]"},
/* 87 */ {"VEG", "Vegetation [%]"},
/* 88 */ {"SALTY", "Salinity [kg/kg]"},
/* 89 */ {"DEN", "Density [kg/m^3]"},
/* 90 */ {"WATR", "Water runoff [kg/m^2]"},
/* 91 */ {"ICEC", "Ice concentration (ice=1;no ice=0) [fraction]"},
/* 92 */ {"ICETK", "Ice thickness [m]"},
/* 93 */ {"DICED", "Direction of ice drift [deg]"},
/* 94 */ {"SICED", "Speed of ice drift [m/s]"},
/* 95 */ {"UICE", "u of ice drift [m/s]"},
/* 96 */ {"VICE", "v of ice drift [m/s]"},
/* 97 */ {"ICEG", "Ice growth rate [m/s]"},
/* 98 */ {"ICED", "Ice divergence [/s]"},
/* 99 */ {"SNOM", "Snow melt [kg/m^2]"},
/* 100 */ {"HTSGW", "Sig height of wind waves and swell [m]"},
/* 101 */ {"WVDIR", "Direction of wind waves [deg]"},
/* 102 */ {"WVHGT", "Sig height of wind waves [m]"},
/* 103 */ {"WVPER", "Mean period of wind waves [s]"},
/* 104 */ {"SWDIR", "Direction of swell waves [deg]"},
/* 105 */ {"SWELL", "Sig height of swell waves [m]"},
/* 106 */ {"SWPER", "Mean period of swell waves [s]"},
/* 107 */ {"DIRPW", "Primary wave direction [deg]"},
/* 108 */ {"PERPW", "Primary wave mean period [s]"},
/* 109 */ {"DIRSW", "Secondary wave direction [deg]"},
/* 110 */ {"PERSW", "Secondary wave mean period [s]"},
/* 111 */ {"NSWRS", "Net short wave (surface) [W/m^2]"},
/* 112 */ {"NLWRS", "Net long wave (surface) [W/m^2]"},
/* 113 */ {"NSWRT", "Net short wave (top) [W/m^2]"},
/* 114 */ {"NLWRT", "Net long wave (top) [W/m^2]"},
/* 115 */ {"LWAVR", "Long wave [W/m^2]"},
/* 116 */ {"SWAVR", "Short wave [W/m^2]"},
/* 117 */ {"GRAD", "Global radiation [W/m^2]"},
/* 118 */ {"BRTMP", "Brightness temperature [K]"},
/* 119 */ {"LWRAD", "Radiance with respect to wave no. [W/m/sr]"},
/* 120 */ {"SWRAD", "Radiance with respect ot wave len. [W/m^3/sr]"},
/* 121 */ {"LHTFL", "Latent heat flux [W/m^2]"},
/* 122 */ {"SHTFL", "Sensible heat flux [W/m^2]"},
/* 123 */ {"BLYDP", "Boundary layer dissipation [W/m^2]"},
/* 124 */ {"UFLX", "Zonal momentum flux [N/m^2]"},
/* 125 */ {"VFLX", "Meridional momentum flux [N/m^2]"},
/* 126 */ {"WMIXE", "Wind mixing energy [J]"},
/* 127 */ {"IMGD", "Image data []"},
/* 128 */ {"var128", "undefined"},
/* 129 */ {"var129", "undefined"},
/* 130 */ {"var130", "undefined"},
/* 131 */ {"var131", "undefined"},
/* 132 */ {"var132", "undefined"},
/* 133 */ {"var133", "undefined"},
/* 134 */ {"var134", "undefined"},
/* 135 */ {"var135", "undefined"},
/* 136 */ {"var136", "undefined"},
/* 137 */ {"var137", "undefined"},
/* 138 */ {"var138", "undefined"},
/* 139 */ {"var139", "undefined"},
/* 140 */ {"var140", "undefined"},
/* 141 */ {"var141", "undefined"},
/* 142 */ {"var142", "undefined"},
/* 143 */ {"var143", "undefined 143"},
/* 144 */ {"SOILW", "Volumetric soil moisture (frozen + liquid) [fraction]"},
/* 145 */ {"PEVPR", "Potential evaporation rate [W/m^2]"},
/* 146 */ {"VEGT", "Vegetation canopy temperature [K]"},
/* 147 */ {"BARET", "Bare soil surface skin temperature [K]"},
/* 148 */ {"AVSFT", "Average surface skin temperature [K]"},
/* 149 */ {"RADT", "Effective radiative skin temperature [K]"},
/* 150 */ {"SSTOR", "Surface water storage [Kg/m^2]"},
/* 151 */ {"LSOIL", "Liquid soil moisture content (non-frozen) [Kg/m^2]"},
/* 152 */ {"EWATR", "Open water evaporation (standing water) [W/m^2]"},
/* 153 */ {"var153", "undefined"},
/* 154 */ {"LSPA", "Land Surface Precipitation Accumulation [kg/m^2]"},
/* 155 */ {"GFLUX", "Ground Heat Flux [W/m^2]"},
/* 156 */ {"CIN", "Convective inhibition [J/Kg]"},
/* 157 */ {"CAPE", "Convective available potential energy [J/Kg]"},
/* 158 */ {"TKE", "Turbulent Kinetic Energy [J/Kg]"},
/* 159 */ {"MXSALB", "Maximum snow albedo [%]"},
/* 160 */ {"SOILL", "Liquid volumetric soil moisture (non-frozen) [fraction]"},
/* 161 */ {"ASNOW", "Frozen precipitation (e.g. snowfall) [Kg/m^2]"},
/* 162 */ {"ARAIN", "Liquid precipitation (rainfall) [Kg/m^2]"},
/* 163 */ {"GWREC", "Groundwater recharge [Kg/m^2]"},
/* 164 */ {"QREC", "Flood plain recharge [Kg/m^2]"},
/* 165 */ {"SNOWT", "Snow temperature, depth-avg [K]"},
/* 166 */ {"VBDSF", "Visible beam downward solar flux [W/m^2]"},
/* 167 */ {"VDDSF", "Visible diffuse downward solar flux [W/m^2]"},
/* 168 */ {"NBDSF", "Near IR beam downward solar flux [W/m^2]"},
/* 169 */ {"NDDSF", "Near IR diffuse downward solar flux [W/m^2]"},
/* 170 */ {"SNFALB", "Snow-free albedo [%]"},
/* 171 */ {"RLYRS", "Number of soil layers in root zone [non-dim]"},
/* 172 */ {"MFLX", "Momentum flux [N/m^2]"},
/* 173 */ {"var173", "undefined"},
/* 174 */ {"var174", "undefined"},
/* 175 */ {"var175", "undefined"},
/* 176 */ {"NLAT", "Latitude (-90 to +90) [deg]"},
/* 177 */ {"ELON", "East longitude (0-360) [deg]"},
/* 178 */ {"FLDCAP", "Field capacity [fraction]"},
/* 179 */ {"ACOND", "Aerodynamic conductance [m/s]"},
/* 180 */ {"SNOAG", "Snow age [s]"},
/* 181 */ {"CCOND", "Canopy conductance [m/s]"},
/* 182 */ {"LAI", "Leaf area index (0-9) [non-dim]"},
/* 183 */ {"SFCRH", "Roughness length for heat [m]"},
/* 184 */ {"SALBD", "Snow albedo (over snow cover area only) [%]"},
/* 185 */ {"var185", "undefined"},
/* 186 */ {"var186", "undefined"},
/* 187 */ {"NDVI", "Normalized Difference Vegetation Index []"},
/* 188 */ {"DRIP", "Canopy drip [Kg/m^2]"},
/* 189 */ {"VBSALB", "Visible, black sky albedo [%]"},
/* 190 */ {"VWSALB", "Visible, white sky albedo [%]"},
/* 191 */ {"NBSALB", "Near IR, black sky albedo [%]"},
/* 192 */ {"NWSALB", "Near IR, white sky albedo [%]"},
/* 193 */ {"FRZR", "Freezing rain [kg/m^2]"},
/* 194 */ {"FROZR", "Frozen rain [kg/m^2]"},
/* 195 */ {"TSNOW", "Total snow [kg/m^2]"},
/* 196 */ {"MTERH", "Model terrain height [m]"},
/* 197 */ {"var197", "undefined"},
/* 198 */ {"SBSNO", "Sublimation (evaporation from snow) [W/m^2]"},
/* 199 */ {"EVBS", "Direct evaporation from bare soil [W/m^2]"},
/* 200 */ {"EVCW", "Canopy water evaporation [W/m^2]"},
/* 201 */ {"var201", "undefined"},
/* 202 */ {"var202", "undefined"},
/* 203 */ {"RSMIN", "Minimal stomatal resistance [s/m]"},
/* 204 */ {"DSWRF", "Downward shortwave radiation flux [W/m^2]"},
/* 205 */ {"DLWRF", "Downward longwave radiation flux [W/m^2]"},
/* 206 */ {"var206", "undefined"},
/* 207 */ {"MSTAV", "Moisture availability [%]"},
/* 208 */ {"SFEXC", "Exchange coefficient [(Kg/m^3)(m/s)]"},
/* 209 */ {"var209", "undefined"},
/* 210 */ {"TRANS", "Transpiration [W/m^2]"},
/* 211 */ {"USWRF", "Upward short wave radiation flux [W/m^2]"},
/* 212 */ {"ULWRF", "Upward long wave radiation flux [W/m^2]"},
/* 213 */ {"var213", "undefined"},
/* 214 */ {"var214", "undefined"},
/* 215 */ {"var215", "undefined"},
/* 216 */ {"var216", "undefined"},
/* 217 */ {"var217", "undefined"},
/* 218 */ {"var218", "undefined"},
/* 219 */ {"WILT", "Wilting point [fraction]"},
/* 220 */ {"FLDCP", "Field Capacity [fraction]"},
/* 221 */ {"HPBL", "Planetary boundary layer height [m]"},
/* 222 */ {"SLTYP", "Surface slope type [Index]"},
/* 223 */ {"CNWAT", "Plant canopy surface water [Kg/m^2]"},
/* 224 */ {"SOTYP", "Soil type [Index]"},
/* 225 */ {"VGTYP", "Vegetation type [Index]"},
/* 226 */ {"BMIXL", "Blackadars mixing length scale [m]"},
/* 227 */ {"AMIXL", "Asymptotic mixing length scale [m]"},
/* 228 */ {"PEVAP", "Potential evaporation [Kg/m^2]"},
/* 229 */ {"SNOHF", "Snow phase-change heat flux [W/m^2]"},
/* 230 */ {"SMREF", "Transpiration stress-onset (soil moisture) [fraction]"},
/* 231 */ {"SMDRY", "Direct evaporation cease (soil moisture) [fraction]"},
/* 232 */ {"var232", "undefined"},
/* 233 */ {"var233", "undefined"},
/* 234 */ {"BGRUN", "Subsurface runoff (baseflow) [Kg/m^2]"},
/* 235 */ {"SSRUN", "Surface runoff (non-infiltrating) [Kg/m^2]"},
/* 236 */ {"var236", "undefined"},
/* 237 */ {"var237", "undefined"},
/* 238 */ {"SNOWC", "Snow cover [%]"},
/* 239 */ {"SNOT", "Snow temperature [K]"},
/* 240 */ {"POROS", "Soil porosity [fraction]"},
/* 241 */ {"SBT112", "Simulated brightness temp for GOES11, channel 2 [K]"},
/* 242 */ {"SBT113", "Simulated brightness temp for GOES11, channel 3 [K]"},
/* 243 */ {"SBT114", "Simulated brightness temp for GOES11, channel 4 [K]"},
/* 244 */ {"SBT115", "Simulated brightness temp for GOES11, channel 5 [K]"},
/* 245 */ {"var245", "undefined"},
/* 246 */ {"RCS", "Solar parameter in canopy conductance [fraction]"},
/* 247 */ {"RCT", "Temperature parameter in canopy conductance [fraction]"},
/* 248 */ {"RCQ", "Humidity parameter in canopy conductance [fraction]"},
/* 249 */ {"RCSOL", "Soil moisture parameter in canopy conductance [fraction]"},
/* 250 */ {"var250", "undefined"},
/* 251 */ {"var251", "undefined"},
/* 252 */ {"CD", "Surface drag coefficient [non-dim]"},
/* 253 */ {"FRICV", "Surface friction velocity [m/s]"},
/* 254 */ {"RI", "Richardson number [non-dim]"},
/* 255 */ {"var255", "undefined"},
};
const struct ParmTable parm_table_nceptab_133[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"PRES", "Pressure [Pa]"},
/* 2 */ {"PRMSL", "Pressure reduced to MSL [Pa]"},
/* 3 */ {"PTEND", "Pressure tendency [Pa/s]"},
/* 4 */ {"PVORT", "Pot. vorticity [km^2/kg/s]"},
/* 5 */ {"ICAHT", "ICAO Standard Atmosphere Reference Height [M]"},
/* 6 */ {"GP", "Geopotential [m^2/s^2]"},
/* 7 */ {"HGT", "Geopotential height [gpm]"},
/* 8 */ {"DIST", "Geometric height [m]"},
/* 9 */ {"HSTDV", "Std dev of height [m]"},
/* 10 */ {"TOZNE", "Total ozone [Dobson]"},
/* 11 */ {"TMP", "Temp. [K]"},
/* 12 */ {"VTMP", "Virtual temp. [K]"},
/* 13 */ {"POT", "Potential temp. [K]"},
/* 14 */ {"EPOT", "Pseudo-adiabatic pot. temp. [K]"},
/* 15 */ {"TMAX", "Max. temp. [K]"},
/* 16 */ {"TMIN", "Min. temp. [K]"},
/* 17 */ {"DPT", "Dew point temp. [K]"},
/* 18 */ {"DEPR", "Dew point depression [K]"},
/* 19 */ {"LAPR", "Lapse rate [K/m]"},
/* 20 */ {"VIS", "Visibility [m]"},
/* 21 */ {"RDSP1", "Radar spectra (1) [non-dim]"},
/* 22 */ {"RDSP2", "Radar spectra (2) [non-dim]"},
/* 23 */ {"RDSP3", "Radar spectra (3) [non-dim]"},
/* 24 */ {"PLI", "Parcel lifted index (to 500 hPa) [K]"},
/* 25 */ {"TMPA", "Temp. anomaly [K]"},
/* 26 */ {"PRESA", "Pressure anomaly [Pa]"},
/* 27 */ {"GPA", "Geopotential height anomaly [gpm]"},
/* 28 */ {"WVSP1", "Wave spectra (1) [non-dim]"},
/* 29 */ {"WVSP2", "Wave spectra (2) [non-dim]"},
/* 30 */ {"WVSP3", "Wave spectra (3) [non-dim]"},
/* 31 */ {"WDIR", "Wind direction [deg]"},
/* 32 */ {"WIND", "Wind speed [m/s]"},
/* 33 */ {"UGRD", "u wind [m/s]"},
/* 34 */ {"VGRD", "v wind [m/s]"},
/* 35 */ {"STRM", "Stream function [m^2/s]"},
/* 36 */ {"VPOT", "Velocity potential [m^2/s]"},
/* 37 */ {"MNTSF", "Montgomery stream function [m^2/s^2]"},
/* 38 */ {"SGCVV", "Sigma coord. vertical velocity [/s]"},
/* 39 */ {"VVEL", "Pressure vertical velocity [Pa/s]"},
/* 40 */ {"DZDT", "Geometric vertical velocity [m/s]"},
/* 41 */ {"ABSV", "Absolute vorticity [/s]"},
/* 42 */ {"ABSD", "Absolute divergence [/s]"},
/* 43 */ {"RELV", "Relative vorticity [/s]"},
/* 44 */ {"RELD", "Relative divergence [/s]"},
/* 45 */ {"VUCSH", "Vertical u shear [/s]"},
/* 46 */ {"VVCSH", "Vertical v shear [/s]"},
/* 47 */ {"DIRC", "Direction of current [deg]"},
/* 48 */ {"SPC", "Speed of current [m/s]"},
/* 49 */ {"UOGRD", "u of current [m/s]"},
/* 50 */ {"VOGRD", "v of current [m/s]"},
/* 51 */ {"SPFH", "Specific humidity [kg/kg]"},
/* 52 */ {"RH", "Relative humidity [%]"},
/* 53 */ {"MIXR", "Humidity mixing ratio [kg/kg]"},
/* 54 */ {"PWAT", "Precipitable water [kg/m^2]"},
/* 55 */ {"VAPP", "Vapor pressure [Pa]"},
/* 56 */ {"SATD", "Saturation deficit [Pa]"},
/* 57 */ {"EVP", "Evaporation [kg/m^2]"},
/* 58 */ {"CICE", "Cloud Ice [kg/m^2]"},
/* 59 */ {"PRATE", "Precipitation rate [kg/m^2/s]"},
/* 60 */ {"TSTM", "Thunderstorm probability [%]"},
/* 61 */ {"APCP", "Total precipitation [kg/m^2]"},
/* 62 */ {"NCPCP", "Large scale precipitation [kg/m^2]"},
/* 63 */ {"ACPCP", "Convective precipitation [kg/m^2]"},
/* 64 */ {"SRWEQ", "Snowfall rate water equiv. [kg/m^2/s]"},
/* 65 */ {"WEASD", "Accum. snow [kg/m^2]"},
/* 66 */ {"SNOD", "Snow depth [m]"},
/* 67 */ {"MIXHT", "Mixed layer depth [m]"},
/* 68 */ {"TTHDP", "Transient thermocline depth [m]"},
/* 69 */ {"MTHD", "Main thermocline depth [m]"},
/* 70 */ {"MTHA", "Main thermocline anomaly [m]"},
/* 71 */ {"TCDC", "Total cloud cover [%]"},
/* 72 */ {"CDCON", "Convective cloud cover [%]"},
/* 73 */ {"LCDC", "Low level cloud cover [%]"},
/* 74 */ {"MCDC", "Mid level cloud cover [%]"},
/* 75 */ {"HCDC", "High level cloud cover [%]"},
/* 76 */ {"CWAT", "Cloud water [kg/m^2]"},
/* 77 */ {"BLI", "Best lifted index (to 500 hPa) [K]"},
/* 78 */ {"SNOC", "Convective snow [kg/m^2]"},
/* 79 */ {"SNOL", "Large scale snow [kg/m^2]"},
/* 80 */ {"WTMP", "Water temp. [K]"},
/* 81 */ {"LAND", "Land-sea coverage (land=1;sea=0) [fraction]"},
/* 82 */ {"DSLM", "Deviation of sea level from mean [m]"},
/* 83 */ {"SFCR", "Surface roughness [m]"},
/* 84 */ {"ALBDO", "Albedo [%]"},
/* 85 */ {"TSOIL", "Soil temp. [K]"},
/* 86 */ {"SOILM", "Soil moisture content [kg/m^2]"},
/* 87 */ {"VEG", "Vegetation [%]"},
/* 88 */ {"SALTY", "Salinity [kg/kg]"},
/* 89 */ {"DEN", "Density [kg/m^3]"},
/* 90 */ {"WATR", "Water runoff [kg/m^2]"},
/* 91 */ {"ICEC", "Ice concentration (ice=1;no ice=0) [fraction]"},
/* 92 */ {"ICETK", "Ice thickness [m]"},
/* 93 */ {"DICED", "Direction of ice drift [deg]"},
/* 94 */ {"SICED", "Speed of ice drift [m/s]"},
/* 95 */ {"UICE", "u of ice drift [m/s]"},
/* 96 */ {"VICE", "v of ice drift [m/s]"},
/* 97 */ {"ICEG", "Ice growth rate [m/s]"},
/* 98 */ {"ICED", "Ice divergence [/s]"},
/* 99 */ {"SNOM", "Snow melt [kg/m^2]"},
/* 100 */ {"HTSGW", "Sig height of wind waves and swell [m]"},
/* 101 */ {"WVDIR", "Direction of wind waves [deg]"},
/* 102 */ {"WVHGT", "Sig height of wind waves [m]"},
/* 103 */ {"WVPER", "Mean period of wind waves [s]"},
/* 104 */ {"SWDIR", "Direction of swell waves [deg]"},
/* 105 */ {"SWELL", "Sig height of swell waves [m]"},
/* 106 */ {"SWPER", "Mean period of swell waves [s]"},
/* 107 */ {"DIRPW", "Primary wave direction [deg]"},
/* 108 */ {"PERPW", "Primary wave mean period [s]"},
/* 109 */ {"DIRSW", "Secondary wave direction [deg]"},
/* 110 */ {"PERSW", "Secondary wave mean period [s]"},
/* 111 */ {"NSWRS", "Net short wave (surface) [W/m^2]"},
/* 112 */ {"NLWRS", "Net long wave (surface) [W/m^2]"},
/* 113 */ {"NSWRT", "Net short wave (top) [W/m^2]"},
/* 114 */ {"NLWRT", "Net long wave (top) [W/m^2]"},
/* 115 */ {"LWAVR", "Long wave [W/m^2]"},
/* 116 */ {"SWAVR", "Short wave [W/m^2]"},
/* 117 */ {"GRAD", "Global radiation [W/m^2]"},
/* 118 */ {"BRTMP", "Brightness temperature [K]"},
/* 119 */ {"LWRAD", "Radiance with respect to wave no. [W/m/sr]"},
/* 120 */ {"SWRAD", "Radiance with respect ot wave len. [W/m^3/sr]"},
/* 121 */ {"LHTFL", "Latent heat flux [W/m^2]"},
/* 122 */ {"SHTFL", "Sensible heat flux [W/m^2]"},
/* 123 */ {"BLYDP", "Boundary layer dissipation [W/m^2]"},
/* 124 */ {"UFLX", "Zonal momentum flux [N/m^2]"},
/* 125 */ {"VFLX", "Meridional momentum flux [N/m^2]"},
/* 126 */ {"WMIXE", "Wind mixing energy [J]"},
/* 127 */ {"IMGD", "Image data []"},
/* 128 */ {"var128", "undefined"},
/* 129 */ {"var129", "undefined"},
/* 130 */ {"var130", "undefined"},
/* 131 */ {"var131", "undefined"},
/* 132 */ {"var132", "undefined"},
/* 133 */ {"var133", "undefined"},
/* 134 */ {"var134", "undefined"},
/* 135 */ {"var135", "undefined"},
/* 136 */ {"var136", "undefined"},
/* 137 */ {"var137", "undefined"},
/* 138 */ {"var138", "undefined"},
/* 139 */ {"POZT", "Ozone production from T term"},
/* 140 */ {"var140", "undefined"},
/* 141 */ {"var141", "undefined"},
/* 142 */ {"var142", "undefined"},
/* 143 */ {"var143", "undefined"},
/* 144 */ {"var144", "undefined"},
/* 145 */ {"var145", "undefined"},
/* 146 */ {"var146", "undefined"},
/* 147 */ {"var147", "undefined"},
/* 148 */ {"var148", "undefined"},
/* 149 */ {"var149", "undefined"},
/* 150 */ {"var150", "undefined"},
/* 151 */ {"var151", "undefined"},
/* 152 */ {"var152", "undefined"},
/* 153 */ {"var153", "undefined"},
/* 154 */ {"OMGALF", "omega divided by density"},
/* 155 */ {"var155", "undefined"},
/* 156 */ {"var156", "undefined"},
/* 157 */ {"var157", "undefined"},
/* 158 */ {"var158", "undefined"},
/* 159 */ {"var159", "undefined"},
/* 160 */ {"var160", "undefined"},
/* 161 */ {"var161", "undefined"},
/* 162 */ {"var162", "undefined"},
/* 163 */ {"var163", "undefined"},
/* 164 */ {"COVZZ", "Covariance between u and u"},
/* 165 */ {"COVMM", "Covariance between v and v"},
/* 166 */ {"COVQZ", "Covariance between q and u"},
/* 167 */ {"COVQM", "Covariance between q and v"},
/* 168 */ {"COVTVV", "Covariance between T and omega"},
/* 169 */ {"COVQVV", "Covariance between q and omega"},
/* 170 */ {"var170", "undefined"},
/* 171 */ {"var171", "undefined"},
/* 172 */ {"var172", "undefined"},
/* 173 */ {"LRGMR", "Large scale moistening rate"},
/* 174 */ {"VDFOZ", "Ozone vertical diffusion"},
/* 175 */ {"POZ", "Ozone production"},
/* 176 */ {"AMSRE9", "Sim brightness tmp for AMSRE on Aqua channel 9 [K]"},
/* 177 */ {"AMSRE10", "Sim brightness tmp for AMSRE on Aqua channel 10 [K]"},
/* 178 */ {"AMSRE11", "Sim brightness tmp for AMSRE on Aqua channel 11 [K]"},
/* 179 */ {"AMSRE12", "Sim brightness tmp for AMSRE on Aqua channel 12 [K]"},
/* 180 */ {"var180", "undefined"},
/* 181 */ {"GWDU", "Gravity wave drag u acceleration"},
/* 182 */ {"GWDV", "Gravity wave drag v acceleration"},
/* 183 */ {"CNVU", "Convective u momentum mixing acceleration"},
/* 184 */ {"CNVV", "Convective v momentum mixing acceleration"},
/* 185 */ {"AKHS", "Sfc exchange coeff for T and Q divided by delta z"},
/* 186 */ {"AKMS", "Sfc exchange coeff for U and V divided by delta z"},
/* 187 */ {"var187", "undefined"},
/* 188 */ {"TOZ", "Ozone tendency"},
/* 189 */ {"var189", "undefined"},
/* 190 */ {"var190", "undefined"},
/* 191 */ {"SUNSD", "Sunshine duration [s]"},
/* 192 */ {"MOSF", "Meridional overturning stream function [10^6m^3/s]"},
/* 193 */ {"EPSR", "Radiative emiissivity"},
/* 194 */ {"var194", "undefined"},
/* 195 */ {"QZ0", "q at top of viscous sublayer"},
/* 196 */ {"CNGWDU", "Convective gravity wave drag zonal acceleration"},
/* 197 */ {"CNGWDV", "Convective gravity wave drag meridional acceleration"},
/* 198 */ {"var198", "undefined"},
/* 199 */ {"var199", "undefined"},
/* 200 */ {"var200", "undefined"},
/* 201 */ {"THZ0", "Theta at top of viscous sublayer"},
/* 202 */ {"CNVUMF", "Convective updraft mass flux"},
/* 203 */ {"COVPSPS", "Covariance between psfc and psfc"},
/* 204 */ {"QMAX", "Maximum specific humidity at 2m"},
/* 205 */ {"QMIN", "Minimum specific humidity at 2m"},
/* 206 */ {"COVQQ", "Covariance between q and q"},
/* 207 */ {"var207", "undefined"},
/* 208 */ {"var208", "undefined"},
/* 209 */ {"CNVDMF", "Convective downdraft mass flux"},
/* 210 */ {"var210", "undefined"},
/* 211 */ {"var211", "undefined"},
/* 212 */ {"var212", "undefined"},
/* 213 */ {"var213", "undefined"},
/* 214 */ {"var214", "undefined"},
/* 215 */ {"var215", "undefined"},
/* 216 */ {"var216", "undefined"},
/* 217 */ {"var217", "undefined"},
/* 218 */ {"var218", "undefined"},
/* 219 */ {"CNVDEMF", "Convective detrainment mass flux"},
/* 220 */ {"COVVVVV", "Covariance between omega and omega"},
/* 221 */ {"var221", "undefined"},
/* 222 */ {"var222", "undefined"},
/* 223 */ {"var223", "undefined"},
/* 224 */ {"var224", "undefined"},
/* 225 */ {"var225", "undefined"},
/* 226 */ {"var226", "undefined"},
/* 227 */ {"var227", "undefined"},
/* 228 */ {"var228", "undefined"},
/* 229 */ {"var229", "undefined"},
/* 230 */ {"var230", "undefined"},
/* 231 */ {"var231", "undefined"},
/* 232 */ {"var232", "undefined"},
/* 233 */ {"var233", "undefined"},
/* 234 */ {"COVTT", "Covariance between T and T"},
/* 235 */ {"var235", "undefined"},
/* 236 */ {"WTEND", "Tendency of vertical velocity"},
/* 237 */ {"var237", "undefined"},
/* 238 */ {"var238", "undefined"},
/* 239 */ {"POZO", "Ozone production from col ozone term"},
/* 240 */ {"var240", "undefined"},
/* 241 */ {"var241", "undefined"},
/* 242 */ {"var242", "undefined"},
/* 243 */ {"var243", "undefined"},
/* 244 */ {"var244", "undefined"},
/* 245 */ {"var245", "undefined"},
/* 246 */ {"var246", "undefined"},
/* 247 */ {"var247", "undefined"},
/* 248 */ {"var248", "undefined"},
/* 249 */ {"var249", "undefined"},
/* 250 */ {"var250", "undefined"},
/* 251 */ {"var251", "undefined"},
/* 252 */ {"var252", "undefined"},
/* 253 */ {"var253", "undefined"},
/* 254 */ {"var254", "undefined"},
/* 255 */ {"var255", "undefined"},
};
const struct ParmTable parm_table_nceptab_128[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"PRES", "Pressure [Pa]"},
/* 2 */ {"PRMSL", "Pressure reduced to MSL [Pa]"},
/* 3 */ {"PTEND", "Pressure tendency [Pa/s]"},
/* 4 */ {"PVORT", "Pot. vorticity [km^2/kg/s]"},
/* 5 */ {"ICAHT", "ICAO Standard Atmosphere Reference Height [M]"},
/* 6 */ {"GP", "Geopotential [m^2/s^2]"},
/* 7 */ {"HGT", "Geopotential height [gpm]"},
/* 8 */ {"DIST", "Geometric height [m]"},
/* 9 */ {"HSTDV", "Std dev of height [m]"},
/* 10 */ {"TOZNE", "Total ozone [Dobson]"},
/* 11 */ {"TMP", "Temp. [K]"},
/* 12 */ {"VTMP", "Virtual temp. [K]"},
/* 13 */ {"POT", "Potential temp. [K]"},
/* 14 */ {"EPOT", "Pseudo-adiabatic pot. temp. [K]"},
/* 15 */ {"TMAX", "Max. temp. [K]"},
/* 16 */ {"TMIN", "Min. temp. [K]"},
/* 17 */ {"DPT", "Dew point temp. [K]"},
/* 18 */ {"DEPR", "Dew point depression [K]"},
/* 19 */ {"LAPR", "Lapse rate [K/m]"},
/* 20 */ {"VIS", "Visibility [m]"},
/* 21 */ {"RDSP1", "Radar spectra (1) [non-dim]"},
/* 22 */ {"RDSP2", "Radar spectra (2) [non-dim]"},
/* 23 */ {"RDSP3", "Radar spectra (3) [non-dim]"},
/* 24 */ {"PLI", "Parcel lifted index (to 500 hPa) [K]"},
/* 25 */ {"TMPA", "Temp. anomaly [K]"},
/* 26 */ {"PRESA", "Pressure anomaly [Pa]"},
/* 27 */ {"GPA", "Geopotential height anomaly [gpm]"},
/* 28 */ {"WVSP1", "Wave spectra (1) [non-dim]"},
/* 29 */ {"WVSP2", "Wave spectra (2) [non-dim]"},
/* 30 */ {"WVSP3", "Wave spectra (3) [non-dim]"},
/* 31 */ {"WDIR", "Wind direction [deg]"},
/* 32 */ {"WIND", "Wind speed [m/s]"},
/* 33 */ {"UGRD", "u wind [m/s]"},
/* 34 */ {"VGRD", "v wind [m/s]"},
/* 35 */ {"STRM", "Stream function [m^2/s]"},
/* 36 */ {"VPOT", "Velocity potential [m^2/s]"},
/* 37 */ {"MNTSF", "Montgomery stream function [m^2/s^2]"},
/* 38 */ {"SGCVV", "Sigma coord. vertical velocity [/s]"},
/* 39 */ {"VVEL", "Pressure vertical velocity [Pa/s]"},
/* 40 */ {"DZDT", "Geometric vertical velocity [m/s]"},
/* 41 */ {"ABSV", "Absolute vorticity [/s]"},
/* 42 */ {"ABSD", "Absolute divergence [/s]"},
/* 43 */ {"RELV", "Relative vorticity [/s]"},
/* 44 */ {"RELD", "Relative divergence [/s]"},
/* 45 */ {"VUCSH", "Vertical u shear [/s]"},
/* 46 */ {"VVCSH", "Vertical v shear [/s]"},
/* 47 */ {"DIRC", "Direction of current [deg]"},
/* 48 */ {"SPC", "Speed of current [m/s]"},
/* 49 */ {"UOGRD", "u of current [m/s]"},
/* 50 */ {"VOGRD", "v of current [m/s]"},
/* 51 */ {"SPFH", "Specific humidity [kg/kg]"},
/* 52 */ {"RH", "Relative humidity [%]"},
/* 53 */ {"MIXR", "Humidity mixing ratio [kg/kg]"},
/* 54 */ {"PWAT", "Precipitable water [kg/m^2]"},
/* 55 */ {"VAPP", "Vapor pressure [Pa]"},
/* 56 */ {"SATD", "Saturation deficit [Pa]"},
/* 57 */ {"EVP", "Evaporation [kg/m^2]"},
/* 58 */ {"CICE", "Cloud Ice [kg/m^2]"},
/* 59 */ {"PRATE", "Precipitation rate [kg/m^2/s]"},
/* 60 */ {"TSTM", "Thunderstorm probability [%]"},
/* 61 */ {"APCP", "Total precipitation [kg/m^2]"},
/* 62 */ {"NCPCP", "Large scale precipitation [kg/m^2]"},
/* 63 */ {"ACPCP", "Convective precipitation [kg/m^2]"},
/* 64 */ {"SRWEQ", "Snowfall rate water equiv. [kg/m^2/s]"},
/* 65 */ {"WEASD", "Accum. snow [kg/m^2]"},
/* 66 */ {"SNOD", "Snow depth [m]"},
/* 67 */ {"MIXHT", "Mixed layer depth [m]"},
/* 68 */ {"TTHDP", "Transient thermocline depth [m]"},
/* 69 */ {"MTHD", "Main thermocline depth [m]"},
/* 70 */ {"MTHA", "Main thermocline anomaly [m]"},
/* 71 */ {"TCDC", "Total cloud cover [%]"},
/* 72 */ {"CDCON", "Convective cloud cover [%]"},
/* 73 */ {"LCDC", "Low level cloud cover [%]"},
/* 74 */ {"MCDC", "Mid level cloud cover [%]"},
/* 75 */ {"HCDC", "High level cloud cover [%]"},
/* 76 */ {"CWAT", "Cloud water [kg/m^2]"},
/* 77 */ {"BLI", "Best lifted index (to 500 hPa) [K]"},
/* 78 */ {"SNOC", "Convective snow [kg/m^2]"},
/* 79 */ {"SNOL", "Large scale snow [kg/m^2]"},
/* 80 */ {"WTMP", "Water temp. [K]"},
/* 81 */ {"LAND", "Land cover (land=1;sea=0) [fraction]"},
/* 82 */ {"DSLM", "Deviation of sea level from mean [m]"},
/* 83 */ {"SFCR", "Surface roughness [m]"},
/* 84 */ {"ALBDO", "Albedo [%]"},
/* 85 */ {"TSOIL", "Soil temp. [K]"},
/* 86 */ {"SOILM", "Soil moisture content [kg/m^2]"},
/* 87 */ {"VEG", "Vegetation [%]"},
/* 88 */ {"SALTY", "Salinity [kg/kg]"},
/* 89 */ {"DEN", "Density [kg/m^3]"},
/* 90 */ {"WATR", "Water runoff [kg/m^2]"},
/* 91 */ {"ICEC", "Ice concentration (ice=1;no ice=0) [fraction]"},
/* 92 */ {"ICETK", "Ice thickness [m]"},
/* 93 */ {"DICED", "Direction of ice drift [deg]"},
/* 94 */ {"SICED", "Speed of ice drift [m/s]"},
/* 95 */ {"UICE", "u of ice drift [m/s]"},
/* 96 */ {"VICE", "v of ice drift [m/s]"},
/* 97 */ {"ICEG", "Ice growth rate [m/s]"},
/* 98 */ {"ICED", "Ice divergence [/s]"},
/* 99 */ {"SNOM", "Snow melt [kg/m^2]"},
/* 100 */ {"HTSGW", "Sig height of wind waves and swell [m]"},
/* 101 */ {"WVDIR", "Direction of wind waves [deg]"},
/* 102 */ {"WVHGT", "Sig height of wind waves [m]"},
/* 103 */ {"WVPER", "Mean period of wind waves [s]"},
/* 104 */ {"SWDIR", "Direction of swell waves [deg]"},
/* 105 */ {"SWELL", "Sig height of swell waves [m]"},
/* 106 */ {"SWPER", "Mean period of swell waves [s]"},
/* 107 */ {"DIRPW", "Primary wave direction [deg]"},
/* 108 */ {"PERPW", "Primary wave mean period [s]"},
/* 109 */ {"DIRSW", "Secondary wave direction [deg]"},
/* 110 */ {"PERSW", "Secondary wave mean period [s]"},
/* 111 */ {"NSWRS", "Net short wave (surface) [W/m^2]"},
/* 112 */ {"NLWRS", "Net long wave (surface) [W/m^2]"},
/* 113 */ {"NSWRT", "Net short wave (top) [W/m^2]"},
/* 114 */ {"NLWRT", "Net long wave (top) [W/m^2]"},
/* 115 */ {"LWAVR", "Long wave [W/m^2]"},
/* 116 */ {"SWAVR", "Short wave [W/m^2]"},
/* 117 */ {"GRAD", "Global radiation [W/m^2]"},
/* 118 */ {"BRTMP", "Brightness temperature [K]"},
/* 119 */ {"LWRAD", "Radiance with respect to wave no. [W/m/sr]"},
/* 120 */ {"SWRAD", "Radiance with respect ot wave len. [W/m^3/sr]"},
/* 121 */ {"LHTFL", "Latent heat flux [W/m^2]"},
/* 122 */ {"SHTFL", "Sensible heat flux [W/m^2]"},
/* 123 */ {"BLYDP", "Boundary layer dissipation [W/m^2]"},
/* 124 */ {"UFLX", "Zonal momentum flux [N/m^2]"},
/* 125 */ {"VFLX", "Meridional momentum flux [N/m^2]"},
/* 126 */ {"WMIXE", "Wind mixing energy [J]"},
/* 127 */ {"IMGD", "Image data []"},
/* 128 */ {"AVDEPTH", "Ocean depth - mean [m]"},
/* 129 */ {"DEPTH", "Ocean depth - instantaneous [m]"},
/* 130 */ {"ELEV", "Ocean surface elevation relative to geoid [m]"},
/* 131 */ {"MXEL24", "Max ocean surface elevation in last 24 hours [m]"},
/* 132 */ {"MNEL24", "Min ocean surface elevation in last 24 hours [m]"},
/* 133 */ {"var133", "undefined"},
/* 134 */ {"var134", "undefined"},
/* 135 */ {"O2", "Oxygen (O2 (aq)) []"},
/* 136 */ {"PO4", "PO4 [Mol/kg]"},
/* 137 */ {"NO3", "NO3 [Mol/kg]"},
/* 138 */ {"SiO4", "SiO4 [Mol/kg]"},
/* 139 */ {"CO2aq", "CO2 (aq) [Mol/kg]"},
/* 140 */ {"HCO3", "HCO3 - [Mol/kg]"},
/* 141 */ {"CO3", "CO3 -- [Mol/kg]"},
/* 142 */ {"TCO2", "TCO2 [Mol/kg]"},
/* 143 */ {"TALK", "TALK [Mol/kg]"},
/* 144 */ {"var144", "undefined"},
/* 145 */ {"var145", "undefined"},
/* 146 */ {"S11", "S11 - 1,1 component of ice stress tensor []"},
/* 147 */ {"S12", "S12 - 1,2 component of ice stress tensor []"},
/* 148 */ {"S22", "S22 - 2,2 component of ice stress tensor []"},
/* 149 */ {"INV1", "T1 - First invariant of stress tensor []"},
/* 150 */ {"INV2", "T2 - Second invariant of stress tensor []"},
/* 151 */ {"var151", "undefined"},
/* 152 */ {"var152", "undefined"},
/* 153 */ {"var153", "undefined"},
/* 154 */ {"var154", "undefined"},
/* 155 */ {"WVRGH", "Wave Roughness[ ]"},
/* 156 */ {"WVSTRS", "Wave Stresses []"},
/* 157 */ {"WHITE", "Whitecap coverage []"},
/* 158 */ {"SWDIRWID", "Swell direction width []"},
/* 159 */ {"SWFREWID", "Swell frequency width []"},
/* 160 */ {"WVAGE", "Wave age []"},
/* 161 */ {"PWVAGE", "Physical Wave age []"},
/* 162 */ {"var162", "undefined"},
/* 163 */ {"var163", "undefined"},
/* 164 */ {"var164", "undefined"},
/* 165 */ {"LTURB", "Master length scale (turbulence) [m]"},
/* 166 */ {"var166", "undefined"},
/* 167 */ {"var167", "undefined"},
/* 168 */ {"var168", "undefined"},
/* 169 */ {"var169", "undefined"},
/* 170 */ {"AIHFLX", "Net Air-Ice heat flux [W/m^2]"},
/* 171 */ {"AOHFLX", "Net Air-Ocean heat flux [W/m^2]"},
/* 172 */ {"IOHFLX", "Net Ice-Ocean heat flux [W/m^2]"},
/* 173 */ {"IOSFLX", "Net Ice-Ocean salt flux kg/s]"},
/* 174 */ {"var174", "undefined"},
/* 175 */ {"OMLT", "Ocean Mixed Layer Temperature [K]"},
/* 176 */ {"OMLS", "Ocean Mixed Layer Salinity [kg/kg]"},
/* 177 */ {"OMLPOTDEN", "Ocean Mixed Layer Potential density (Referenced to 2000m) [kg/m^3]"},
/* 178 */ {"OMLU", "U Velocity in mixed layer [m/s]"},
/* 179 */ {"OMLV", "V Velocity in mixed layer [m/s]"},
/* 180 */ {"ASHFL", "Assimilative Heat Flux [W/m^2]"},
/* 181 */ {"ASSFL", "Assimilative Salt Flux [mm/day]"},
/* 182 */ {"BOTLD", "Bottom Layer Depth [m]"},
/* 183 */ {"UBARO", "Barotropic U Velocity [m/s]"},
/* 184 */ {"VBARO", "Barotropic V Velocity [m/s]"},
/* 185 */ {"INTFD", "Interface Depth [m]"},
/* 186 */ {"WTMPC", "Temperature [C]"},
/* 187 */ {"SALIN", "Salinity [psu]"},
/* 188 */ {"EMNP", "Evaporation - Precipitation [cm/day]"},
/* 189 */ {"var189", "undefined"},
/* 190 */ {"KENG", "Kinetic Energy [J/kg]"},
/* 191 */ {"var191", "undefined"},
/* 192 */ {"LAYTH", "Layer Thickness[m]"},
/* 193 */ {"SSTT", "Surface Temperature Trend [K/day]"},
/* 194 */ {"SSST", "Surface Salinity Trend [psu/day]"},
/* 195 */ {"OVHD", "Ocean vertical heat diffusivity [m^2/s]"},
/* 196 */ {"OVSD", "Ocean vertical salt diffusivity [m^2/s]"},
/* 197 */ {"OVMD", "Ocean vertical momementum diffusivity [m^2/s]"},
/* 198 */ {"var198", "undefined"},
/* 199 */ {"var199", "undefined"},
/* 200 */ {"var200", "undefined"},
/* 201 */ {"var201", "undefined"},
/* 202 */ {"var202", "undefined"},
/* 203 */ {"var203", "undefined"},
/* 204 */ {"var204", "undefined"},
/* 205 */ {"var205", "undefined"},
/* 206 */ {"var206", "undefined"},
/* 207 */ {"var207", "undefined"},
/* 208 */ {"var208", "undefined"},
/* 209 */ {"var209", "undefined"},
/* 210 */ {"var210", "undefined"},
/* 211 */ {"var211", "undefined"},
/* 212 */ {"var212", "undefined"},
/* 213 */ {"var213", "undefined"},
/* 214 */ {"var214", "undefined"},
/* 215 */ {"var215", "undefined"},
/* 216 */ {"var216", "undefined"},
/* 217 */ {"var217", "undefined"},
/* 218 */ {"var218", "undefined"},
/* 219 */ {"var219", "undefined"},
/* 220 */ {"var220", "undefined"},
/* 221 */ {"var221", "undefined"},
/* 222 */ {"var222", "undefined"},
/* 223 */ {"var223", "undefined"},
/* 224 */ {"var224", "undefined"},
/* 225 */ {"var225", "undefined"},
/* 226 */ {"var226", "undefined"},
/* 227 */ {"var227", "undefined"},
/* 228 */ {"var228", "undefined"},
/* 229 */ {"var229", "undefined"},
/* 230 */ {"var230", "undefined"},
/* 231 */ {"var231", "undefined"},
/* 232 */ {"var232", "undefined"},
/* 233 */ {"var233", "undefined"},
/* 234 */ {"var234", "undefined"},
/* 235 */ {"var235", "undefined"},
/* 236 */ {"var236", "undefined"},
/* 237 */ {"var237", "undefined"},
/* 238 */ {"var238", "undefined"},
/* 239 */ {"var239", "undefined"},
/* 240 */ {"var240", "undefined"},
/* 241 */ {"var241", "undefined"},
/* 242 */ {"var242", "undefined"},
/* 243 */ {"var243", "undefined"},
/* 244 */ {"var244", "undefined"},
/* 245 */ {"var245", "undefined"},
/* 246 */ {"var246", "undefined"},
/* 247 */ {"var247", "undefined"},
/* 248 */ {"var248", "undefined"},
/* 249 */ {"var249", "undefined"},
/* 250 */ {"var250", "undefined"},
/* 251 */ {"var251", "undefined"},
/* 252 */ {"var252", "undefined"},
/* 253 */ {"var253", "undefined"},
/* 254 */ {"RERRVAR", "Relative Error Variance [pure number]"},
/* 255 */ {"var255", "undefined"},
};
const struct ParmTable parm_table_ecmwf_128[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"STRF", "Stream function [m**2 s**-1]"},
/* 2 */ {"VPOT", "Velocity potential [m**2 s**-1]"},
/* 3 */ {"PT", "Potential temperature [K]"},
/* 4 */ {"EQPT", "Equivalent potential temperature [K]"},
/* 5 */ {"SEPT", "Saturated equivalent potential temperature [K]"},
/* 6 */ {"SSFR", "Soil sand fraction [(0 - 1)]"},
/* 7 */ {"SCFR", "Soil clay fraction [(0 - 1)]"},
/* 8 */ {"SRO", "Surface runoff [m]"},
/* 9 */ {"SSRO", "Sub-surface runoff [m]"},
/* 10 */ {"WIND", "Wind speed [m s**-1]"},
/* 11 */ {"UDVW", "U component of divergent wind [m s**-1]"},
/* 12 */ {"VDVW", "V component of divergent wind [m s**-1]"},
/* 13 */ {"URTW", "U component of rotational wind [m s**-1]"},
/* 14 */ {"VRTW", "V component of rotational wind [m s**-1]"},
/* 15 */ {"ALUVP", "UV visible albedo for direct radiation [(0 - 1)]"},
/* 16 */ {"ALUVD", "UV visible albedo for diffuse radiation [(0 - 1)]"},
/* 17 */ {"ALNIP", "Near IR albedo for direct radiation [(0 - 1)]"},
/* 18 */ {"ALNID", "Near IR albedo for diffuse radiation [(0 - 1)]"},
/* 19 */ {"UVCS", "Clear sky surface UV [W m**-2 s]"},
/* 20 */ {"PARCS", "Clear sky surface PAR [W m**-2 s]"},
/* 21 */ {"UCTP", "Unbalanced component of temperature [K]"},
/* 22 */ {"UCLN", "Unbalanced component of logarithm of surface pressure []"},
/* 23 */ {"UCDV", "Unbalanced component of divergence [s**-1]"},
/* 24 */ {"var24", "Reserved for future unbalanced components []"},
/* 25 */ {"var25", "Reserved for future unbalanced components []"},
/* 26 */ {"CL", "Lake cover [(0 - 1)]"},
/* 27 */ {"CVL", "Low vegetation cover [(0 - 1)]"},
/* 28 */ {"CVH", "High vegetation cover [(0 - 1)]"},
/* 29 */ {"TVL", "Type of low vegetation []"},
/* 30 */ {"TVH", "Type of high vegetation []"},
/* 31 */ {"CI", "Sea-ice cover [(0 - 1)]"},
/* 32 */ {"ASN", "Snow albedo [(0 - 1)]"},
/* 33 */ {"RSN", "Snow density [kg m**-3]"},
/* 34 */ {"SSTK", "Sea surface temperature [K]"},
/* 35 */ {"ISTL1", "Ice surface temperature layer 1 [K]"},
/* 36 */ {"ISTL2", "Ice surface temperature layer 2 [K]"},
/* 37 */ {"ISTL3", "Ice surface temperature layer 3 [K]"},
/* 38 */ {"ISTL4", "Ice surface temperature layer 4 [K]"},
/* 39 */ {"SWVL1", "Volumetric soil water layer 1 [m**3 m**-3]"},
/* 40 */ {"SWVL2", "Volumetric soil water layer 2 [m**3 m**-3]"},
/* 41 */ {"SWVL3", "Volumetric soil water layer 3 [m**3 m**-3]"},
/* 42 */ {"SWVL4", "Volumetric soil water layer 4 [m**3 m**-3]"},
/* 43 */ {"SLT", "Soil type []"},
/* 44 */ {"ES", "Snow evaporation [m of water]"},
/* 45 */ {"SMLT", "Snowmelt [m of water]"},
/* 46 */ {"SDUR", "Solar duration [s]"},
/* 47 */ {"DSRP", "Direct solar radiation [w m**-2]"},
/* 48 */ {"MAGSS", "Magnitude of surface stress [N m**-2 s]"},
/* 49 */ {"10FG", "10 metre wind gust [m s**-1]"},
/* 50 */ {"LSPF", "Large-scale precipitation fraction [s]"},
/* 51 */ {"MX2T24", "Maximum temperature at 2 metres since last 24 hours [K]"},
/* 52 */ {"MN2T24", "Minimum temperature at 2 metres since last 24 hours [K]"},
/* 53 */ {"MONT", "Montgomery potential [m**2 s**-2]"},
/* 54 */ {"PRES", "Pressure [Pa]"},
/* 55 */ {"MEAN2T24", "Mean temperature at 2 metres since last 24 hours [K]"},
/* 56 */ {"MN2D24", "Mean 2 metre dewpoint temperature in past 24 hours [K]"},
/* 57 */ {"UVB", "Downward UV radiation at the surface [w m**-2 s]"},
/* 58 */ {"PAR", "Photosynthetically active radiation at the surface [w m**-2 s]"},
/* 59 */ {"CAPE", "Convective available potential energy [J kg**-1]"},
/* 60 */ {"PV", "Potential vorticity [K m**2 kg**-1 s**-1]"},
/* 61 */ {"var61", "undefined"},
/* 62 */ {"OBCT", "Observation count []"},
/* 63 */ {"var63", "Start time for skin temperature difference [s]"},
/* 64 */ {"var64", "Finish time for skin temperature difference [s]"},
/* 65 */ {"var65", "Skin temperature difference [K]"},
/* 66 */ {"var66", "Leaf area index, low vegetation [m**2 / m**2]"},
/* 67 */ {"var67", "Leaf area index, high vegetation [m**2 / m**2]"},
/* 68 */ {"var68", "Minimum stomatal resistance, low vegetation [s m**-1]"},
/* 69 */ {"var69", "Minimum stomatal resistance, high vegetation [s m**-1]"},
/* 70 */ {"var70", "Biome cover, low vegetation [(0 - 1)]"},
/* 71 */ {"var71", "Biome cover, high vegetation [(0 - 1)]"},
/* 72 */ {"ISSRD", "Instantaneous surface solar radiation downwards [w m**-2]"},
/* 73 */ {"ISTRD", "Instantaneous surface thermal radiation downwards [w m**-2]"},
/* 74 */ {"SDFOR", "Standard deviation of filtered subgrid orography [m]"},
/* 75 */ {"CRWC", "Cloud rain water content [kg kg**-1]"},
/* 76 */ {"CSWC", "Cloud snow water content [kg kg**-1]"},
/* 77 */ {"ETADOT", "Eta-coordinate vertical velocity [s**-1]"},
/* 78 */ {"TCLW", "Total column liquid water [kg m**-2]"},
/* 79 */ {"TCIW", "Total column ice water [kg m**-2]"},
/* 80 */ {"var80", "Experimental product []"},
/* 81 */ {"var81", "Experimental product []"},
/* 82 */ {"var82", "Experimental product []"},
/* 83 */ {"var83", "Experimental product []"},
/* 84 */ {"var84", "Experimental product []"},
/* 85 */ {"var85", "Experimental product []"},
/* 86 */ {"var86", "Experimental product []"},
/* 87 */ {"var87", "Experimental product []"},
/* 88 */ {"var88", "Experimental product []"},
/* 89 */ {"var89", "Experimental product []"},
/* 90 */ {"var90", "Experimental product []"},
/* 91 */ {"var91", "Experimental product []"},
/* 92 */ {"var92", "Experimental product []"},
/* 93 */ {"var93", "Experimental product []"},
/* 94 */ {"var94", "Experimental product []"},
/* 95 */ {"var95", "Experimental product []"},
/* 96 */ {"var96", "Experimental product []"},
/* 97 */ {"var97", "Experimental product []"},
/* 98 */ {"var98", "Experimental product []"},
/* 99 */ {"var99", "Experimental product []"},
/* 100 */ {"var100", "Experimental product []"},
/* 101 */ {"var101", "Experimental product []"},
/* 102 */ {"var102", "Experimental product []"},
/* 103 */ {"var103", "Experimental product []"},
/* 104 */ {"var104", "Experimental product []"},
/* 105 */ {"var105", "Experimental product []"},
/* 106 */ {"var106", "Experimental product []"},
/* 107 */ {"var107", "Experimental product []"},
/* 108 */ {"var108", "Experimental product []"},
/* 109 */ {"var109", "Experimental product []"},
/* 110 */ {"var110", "Experimental product []"},
/* 111 */ {"var111", "Experimental product []"},
/* 112 */ {"var112", "Experimental product []"},
/* 113 */ {"var113", "Experimental product []"},
/* 114 */ {"var114", "Experimental product []"},
/* 115 */ {"var115", "Experimental product []"},
/* 116 */ {"var116", "Experimental product []"},
/* 117 */ {"var117", "Experimental product []"},
/* 118 */ {"var118", "Experimental product []"},
/* 119 */ {"var119", "Experimental product []"},
/* 120 */ {"var120", "Experimental product []"},
/* 121 */ {"MX2T6", "Maximum temperature at 2 metres since last 6 hours [K]"},
/* 122 */ {"MN2T6", "Minimum temperature at 2 metres since last 6 hours [K]"},
/* 123 */ {"10FG6", "10 metre wind gust in the past 6 hours [m s**-1]"},
/* 124 */ {"EMIS", "Surface emissivity [dimensionless]"},
/* 125 */ {"var125", "Vertically integrated total energy [J m**-2]"},
/* 126 */ {"var126", "Generic parameter for sensitive area prediction [Various]"},
/* 127 */ {"AT", "Atmospheric tide []"},
/* 128 */ {"BV", "Budget values []"},
/* 129 */ {"Z", "Geopotential [m**2 s**-2]"},
/* 130 */ {"T", "Temperature [K]"},
/* 131 */ {"U", "U velocity [m s**-1]"},
/* 132 */ {"V", "V velocity [m s**-1]"},
/* 133 */ {"Q", "Specific humidity [kg kg**-1]"},
/* 134 */ {"SP", "Surface pressure [Pa]"},
/* 135 */ {"W", "Vertical velocity [Pa s**-1]"},
/* 136 */ {"TCW", "Total column water [kg m**-2]"},
/* 137 */ {"TCWV", "Total column water vapour [kg m**-2]"},
/* 138 */ {"VO", "Vorticity (relative) [s**-1]"},
/* 139 */ {"STL1", "Soil temperature level 1 [K]"},
/* 140 */ {"SWL1", "Soil wetness level 1 [m of water]"},
/* 141 */ {"SD", "Snow depth [m of water equivalent]"},
/* 142 */ {"LSP", "Stratiform precipitation (Large-scale precipitation) [m]"},
/* 143 */ {"CP", "Convective precipitation [m]"},
/* 144 */ {"SF", "Snowfall [m of water equivalent]"},
/* 145 */ {"BLD", "Boundary layer dissipation [W m**-2 s]"},
/* 146 */ {"SSHF", "Surface sensible heat flux [W m**-2 s]"},
/* 147 */ {"SLHF", "Surface latent heat flux [W m**-2 s]"},
/* 148 */ {"CHNK", "Charnock []"},
/* 149 */ {"SNR", "Surface net radiation [W m**-2 s]"},
/* 150 */ {"TNR", "Top net radiation []"},
/* 151 */ {"MSL", "Mean sea level pressure [Pa]"},
/* 152 */ {"LNSP", "Logarithm of surface pressure []"},
/* 153 */ {"SWHR", "Short-wave heating rate [K]"},
/* 154 */ {"LWHR", "Long-wave heating rate [K]"},
/* 155 */ {"D", "Divergence [s**-1]"},
/* 156 */ {"GH", "Height [gpm]"},
/* 157 */ {"R", "Relative humidity [%]"},
/* 158 */ {"TSP", "Tendency of surface pressure [Pa s**-1]"},
/* 159 */ {"BLH", "Boundary layer height [m]"},
/* 160 */ {"SDOR", "Standard deviation of orography []"},
/* 161 */ {"ISOR", "Anisotropy of sub-gridscale orography []"},
/* 162 */ {"ANOR", "Angle of sub-gridscale orography [rad]"},
/* 163 */ {"SLOR", "Slope of sub-gridscale orography []"},
/* 164 */ {"TCC", "Total cloud cover [(0 - 1)]"},
/* 165 */ {"10U", "10 metre U wind component [m s**-1]"},
/* 166 */ {"10V", "10 metre V wind component [m s**-1]"},
/* 167 */ {"2T", "2 metre temperature [K]"},
/* 168 */ {"2D", "2 metre dewpoint temperature [K]"},
/* 169 */ {"SSRD", "Surface solar radiation downwards [W m**-2 s]"},
/* 170 */ {"STL2", "Soil temperature level 2 [K]"},
/* 171 */ {"SWL2", "Soil wetness level 2 [m of water]"},
/* 172 */ {"LSM", "Land-sea mask [(0 - 1)]"},
/* 173 */ {"SR", "Surface roughness [m]"},
/* 174 */ {"AL", "Albedo [(0 - 1)]"},
/* 175 */ {"STRD", "Surface thermal radiation downwards [W m**-2 s]"},
/* 176 */ {"SSR", "Surface solar radiation [W m**-2 s]"},
/* 177 */ {"STR", "Surface thermal radiation [W m**-2 s]"},
/* 178 */ {"TSR", "Top solar radiation [W m**-2 s]"},
/* 179 */ {"TTR", "Top thermal radiation [W m**-2 s]"},
/* 180 */ {"EWSS", "East-West surface stress [N m**-2 s]"},
/* 181 */ {"NSSS", "North-South surface stress [N m**-2 s]"},
/* 182 */ {"E", "Evaporation [m of water]"},
/* 183 */ {"STL3", "Soil temperature level 3 [K]"},
/* 184 */ {"SWL3", "Soil wetness level 3 [m of water]"},
/* 185 */ {"CCC", "Convective cloud cover [(0 - 1)]"},
/* 186 */ {"LCC", "Low cloud cover [(0 - 1)]"},
/* 187 */ {"MCC", "Medium cloud cover [(0 - 1)]"},
/* 188 */ {"HCC", "High cloud cover [(0 - 1)]"},
/* 189 */ {"SUND", "Sunshine duration [s]"},
/* 190 */ {"EWOV", "East-West component of sub-gridscale orographic variance [m**2]"},
/* 191 */ {"NSOV", "North-South component of sub-gridscale orographic variance [m**2]"},
/* 192 */ {"NWOV", "North-West/South-East component of sub-gridscale orographic variance [m**2]"},
/* 193 */ {"NEOV", "North-East/South-West component of sub-gridscale orographic variance [m**2]"},
/* 194 */ {"BTMP", "Brightness temperature [K]"},
/* 195 */ {"LGWS", "Latitudinal component of gravity wave stress [N m**-2 s]"},
/* 196 */ {"MGWS", "Meridional component of gravity wave stress [N m**-2 s]"},
/* 197 */ {"GWD", "Gravity wave dissipation [W m**-2 s]"},
/* 198 */ {"SRC", "Skin reservoir content [m of water]"},
/* 199 */ {"VEG", "Vegetation fraction [(0 - 1)]"},
/* 200 */ {"VSO", "Variance of sub-gridscale orography [m**2]"},
/* 201 */ {"MX2T", "Maximum temperature at 2 metres since previous post-processing [K]"},
/* 202 */ {"MN2T", "Minimum temperature at 2 metres since previous post-processing [K]"},
/* 203 */ {"O3", "Ozone mass mixing ratio [kg kg**-1]"},
/* 204 */ {"PAW", "Precipitation analysis weights []"},
/* 205 */ {"RO", "Runoff [m]"},
/* 206 */ {"TCO3", "Total column ozone [kg m**-2]"},
/* 207 */ {"10SI", "10 metre wind speed [m s**-1]"},
/* 208 */ {"TSRC", "Top net solar radiation, clear sky [W m**-2 s]"},
/* 209 */ {"TTRC", "Top net thermal radiation, clear sky [W m**-2 s]"},
/* 210 */ {"SSRC", "Surface net solar radiation, clear sky [W m**-2 s]"},
/* 211 */ {"STRC", "Surface net thermal radiation, clear sky [W m**-2 s]"},
/* 212 */ {"TISR", "TOA incident solar radiation [W m**-2 s]"},
/* 213 */ {"VIMD", "Vertically integrated moisture divergence [kg m**-2]"},
/* 214 */ {"DHR", "Diabatic heating by radiation [K]"},
/* 215 */ {"DHVD", "Diabatic heating by vertical diffusion [K]"},
/* 216 */ {"DHCC", "Diabatic heating by cumulus convection [K]"},
/* 217 */ {"DHLC", "Diabatic heating large-scale condensation [K]"},
/* 218 */ {"VDZW", "Vertical diffusion of zonal wind [m s**-1]"},
/* 219 */ {"VDMW", "Vertical diffusion of meridional wind [m s**-1]"},
/* 220 */ {"EWGD", "East-West gravity wave drag tendency [m s**-1]"},
/* 221 */ {"NSGD", "North-South gravity wave drag tendency [m s**-1]"},
/* 222 */ {"CTZW", "Convective tendency of zonal wind [m s**-1]"},
/* 223 */ {"CTMW", "Convective tendency of meridional wind [m s**-1]"},
/* 224 */ {"VDH", "Vertical diffusion of humidity [kg kg**-1]"},
/* 225 */ {"HTCC", "Humidity tendency by cumulus convection [kg kg**-1]"},
/* 226 */ {"HTLC", "Humidity tendency by large-scale condensation [kg kg**-1]"},
/* 227 */ {"CRNH", "Change from removal of negative humidity [kg kg**-1]"},
/* 228 */ {"TP", "Total precipitation [m]"},
/* 229 */ {"IEWS", "Instantaneous X surface stress [N m**-2]"},
/* 230 */ {"INSS", "Instantaneous Y surface stress [N m**-2]"},
/* 231 */ {"ISHF", "Instantaneous surface heat flux [W m**-2]"},
/* 232 */ {"IE", "Instantaneous moisture flux [kg m**-2 s**-1]"},
/* 233 */ {"ASQ", "Apparent surface humidity [kg kg**-1]"},
/* 234 */ {"LSRH", "Logarithm of surface roughness length for heat []"},
/* 235 */ {"SKT", "Skin temperature [K]"},
/* 236 */ {"STL4", "Soil temperature level 4 [K]"},
/* 237 */ {"SWL4", "Soil wetness level 4 [m]"},
/* 238 */ {"TSN", "Temperature of snow layer [K]"},
/* 239 */ {"CSF", "Convective snowfall [m of water equivalent]"},
/* 240 */ {"LSF", "Large-scale snowfall [m of water equivalent]"},
/* 241 */ {"ACF", "Accumulated cloud fraction tendency [(-1 to 1)]"},
/* 242 */ {"ALW", "Accumulated liquid water tendency [(-1 to 1)]"},
/* 243 */ {"FAL", "Forecast albedo [(0 - 1)]"},
/* 244 */ {"FSR", "Forecast surface roughness [m]"},
/* 245 */ {"FLSR", "Forecast logarithm of surface roughness for heat []"},
/* 246 */ {"CLWC", "Cloud liquid water content [kg kg**-1]"},
/* 247 */ {"CIWC", "Cloud ice water content [kg kg**-1]"},
/* 248 */ {"CC", "Cloud cover [(0 - 1)]"},
/* 249 */ {"AIW", "Accumulated ice water tendency [(-1 to 1)]"},
/* 250 */ {"ICE", "Ice age [(0 - 1)]"},
/* 251 */ {"ATTE", "Adiabatic tendency of temperature [K]"},
/* 252 */ {"ATHE", "Adiabatic tendency of humidity [kg kg**-1]"},
/* 253 */ {"ATZE", "Adiabatic tendency of zonal wind [m s**-1]"},
/* 254 */ {"ATMW", "Adiabatic tendency of meridional wind [m s**-1]"},
/* 255 */ {"var255", "Indicates a missing value []"},
};
const struct ParmTable parm_table_ecmwf_129[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"STRF", "Stream function [m**2 s**-1]"},
/* 2 */ {"VPOT", "Velocity potential [m**2 s**-1]"},
/* 3 */ {"PT", "Potential temperature [K]"},
/* 4 */ {"EQPT", "Equivalent potential temperature [K]"},
/* 5 */ {"SEPT", "Saturated equivalent potential temperature [K]"},
/* 6 */ {"var6", "undefined"},
/* 7 */ {"var7", "undefined"},
/* 8 */ {"var8", "undefined"},
/* 9 */ {"var9", "undefined"},
/* 10 */ {"var10", "undefined"},
/* 11 */ {"UDVW", "U component of divergent wind [m s**-1]"},
/* 12 */ {"VDVW", "V component of divergent wind [m s**-1]"},
/* 13 */ {"URTW", "U component of rotational wind [m s**-1]"},
/* 14 */ {"VRTW", "V component of rotational wind [m s**-1]"},
/* 15 */ {"var15", "undefined"},
/* 16 */ {"var16", "undefined"},
/* 17 */ {"var17", "undefined"},
/* 18 */ {"var18", "undefined"},
/* 19 */ {"var19", "undefined"},
/* 20 */ {"var20", "undefined"},
/* 21 */ {"UCTP", "Unbalanced component of temperature [K]"},
/* 22 */ {"UCLN", "Unbalanced component of logarithm of surface pressure []"},
/* 23 */ {"UCDV", "Unbalanced component of divergence [s**-1]"},
/* 24 */ {"var24", "Reserved for future unbalanced components []"},
/* 25 */ {"var25", "Reserved for future unbalanced components []"},
/* 26 */ {"CL", "Lake cover [(0 - 1)]"},
/* 27 */ {"CVL", "Low vegetation cover [(0 - 1)]"},
/* 28 */ {"CVH", "High vegetation cover [(0 - 1)]"},
/* 29 */ {"TVL", "Type of low vegetation []"},
/* 30 */ {"TVH", "Type of high vegetation []"},
/* 31 */ {"CI", "Sea-ice cover [(0 - 1)]"},
/* 32 */ {"ASN", "Snow albedo [(0 - 1)]"},
/* 33 */ {"RSN", "Snow density [kg m**-3]"},
/* 34 */ {"SSTK", "Sea surface temperature [K]"},
/* 35 */ {"ISTL1", "Ice surface temperature layer 1 [K]"},
/* 36 */ {"ISTL2", "Ice surface temperature layer 2 [K]"},
/* 37 */ {"ISTL3", "Ice surface temperature layer 3 [K]"},
/* 38 */ {"ISTL4", "Ice surface temperature layer 4 [K]"},
/* 39 */ {"SWVL1", "Volumetric soil water layer 1 [m**3 m**-3]"},
/* 40 */ {"SWVL2", "Volumetric soil water layer 2 [m**3 m**-3]"},
/* 41 */ {"SWVL3", "Volumetric soil water layer 3 [m**3 m**-3]"},
/* 42 */ {"SWVL4", "Volumetric soil water layer 4 [m**3 m**-3]"},
/* 43 */ {"SLT", "Soil type []"},
/* 44 */ {"ES", "Snow evaporation [m of water]"},
/* 45 */ {"SMLT", "Snowmelt [m of water]"},
/* 46 */ {"SDUR", "Solar duration [s]"},
/* 47 */ {"DSRP", "Direct solar radiation [w m**-2]"},
/* 48 */ {"MAGSS", "Magnitude of surface stress [N m**-2 s]"},
/* 49 */ {"10FG", "10 metre wind gust [m s**-1]"},
/* 50 */ {"LSPF", "Large-scale precipitation fraction [s]"},
/* 51 */ {"MX2T24", "Maximum 2 metre temperature [K]"},
/* 52 */ {"MN2T24", "Minimum 2 metre temperature [K]"},
/* 53 */ {"MONT", "Montgomery potential [m**2 s**-2]"},
/* 54 */ {"PRES", "Pressure [Pa]"},
/* 55 */ {"MEAN2T24", "Mean 2 metre temperature in past 24 hours [K]"},
/* 56 */ {"MN2D24", "Mean 2 metre dewpoint temperature in past 24 hours [K]"},
/* 57 */ {"UVB", "Downward UV radiation at the surface [w m**-2 s]"},
/* 58 */ {"PAR", "Photosynthetically active radiation at the surface [w m**-2 s]"},
/* 59 */ {"CAPE", "Convective available potential energy [J kg**-1]"},
/* 60 */ {"PV", "Potential vorticity [K m**2 kg**-1 s**-1]"},
/* 61 */ {"TPO", "Total precipitation from observations [Millimetres*100 + number of stations]"},
/* 62 */ {"OBCT", "Observation count []"},
/* 63 */ {"var63", "Start time for skin temperature difference [s]"},
/* 64 */ {"var64", "Finish time for skin temperature difference [s]"},
/* 65 */ {"var65", "Skin temperature difference [K]"},
/* 66 */ {"var66", "Leaf area index, low vegetation [m**2 / m**2]"},
/* 67 */ {"var67", "Leaf area index, high vegetation [m**2 / m**2]"},
/* 68 */ {"var68", "Minimum stomatal resistance, low vegetation [s m**-1]"},
/* 69 */ {"var69", "Minimum stomatal resistance, high vegetation [s m**-1]"},
/* 70 */ {"var70", "Biome cover, low vegetation [(0 - 1)]"},
/* 71 */ {"var71", "Biome cover, high vegetation [(0 - 1)]"},
/* 72 */ {"var72", "undefined"},
/* 73 */ {"var73", "undefined"},
/* 74 */ {"var74", "undefined"},
/* 75 */ {"var75", "undefined"},
/* 76 */ {"var76", "undefined"},
/* 77 */ {"var77", "undefined"},
/* 78 */ {"var78", "Total column liquid water [kg m**-2]"},
/* 79 */ {"var79", "Total column ice water [kg m**-2]"},
/* 80 */ {"var80", "Experimental product []"},
/* 81 */ {"var81", "Experimental product []"},
/* 82 */ {"var82", "Experimental product []"},
/* 83 */ {"var83", "Experimental product []"},
/* 84 */ {"var84", "Experimental product []"},
/* 85 */ {"var85", "Experimental product []"},
/* 86 */ {"var86", "Experimental product []"},
/* 87 */ {"var87", "Experimental product []"},
/* 88 */ {"var88", "Experimental product []"},
/* 89 */ {"var89", "Experimental product []"},
/* 90 */ {"var90", "Experimental product []"},
/* 91 */ {"var91", "Experimental product []"},
/* 92 */ {"var92", "Experimental product []"},
/* 93 */ {"var93", "Experimental product []"},
/* 94 */ {"var94", "Experimental product []"},
/* 95 */ {"var95", "Experimental product []"},
/* 96 */ {"var96", "Experimental product []"},
/* 97 */ {"var97", "Experimental product []"},
/* 98 */ {"var98", "Experimental product []"},
/* 99 */ {"var99", "Experimental product []"},
/* 100 */ {"var100", "Experimental product []"},
/* 101 */ {"var101", "Experimental product []"},
/* 102 */ {"var102", "Experimental product []"},
/* 103 */ {"var103", "Experimental product []"},
/* 104 */ {"var104", "Experimental product []"},
/* 105 */ {"var105", "Experimental product []"},
/* 106 */ {"var106", "Experimental product []"},
/* 107 */ {"var107", "Experimental product []"},
/* 108 */ {"var108", "Experimental product []"},
/* 109 */ {"var109", "Experimental product []"},
/* 110 */ {"var110", "Experimental product []"},
/* 111 */ {"var111", "Experimental product []"},
/* 112 */ {"var112", "Experimental product []"},
/* 113 */ {"var113", "Experimental product []"},
/* 114 */ {"var114", "Experimental product []"},
/* 115 */ {"var115", "Experimental product []"},
/* 116 */ {"var116", "Experimental product []"},
/* 117 */ {"var117", "Experimental product []"},
/* 118 */ {"var118", "Experimental product []"},
/* 119 */ {"var119", "Experimental product []"},
/* 120 */ {"var120", "Experimental product []"},
/* 121 */ {"MX2T6", "Maximum temperature at 2 metres [K]"},
/* 122 */ {"MN2T6", "Minimum temperature at 2 metres [K]"},
/* 123 */ {"10FG6", "10 metre wind gust in the past 6 hours [m s**-1]"},
/* 124 */ {"var124", "undefined"},
/* 125 */ {"var125", "Vertically integrated total energy [J m**-2]"},
/* 126 */ {"var126", "Generic parameter for sensitive area prediction [Various]"},
/* 127 */ {"AT", "Atmospheric tide []"},
/* 128 */ {"BV", "Budget values []"},
/* 129 */ {"Z", "Geopotential [m**2 s**-2]"},
/* 130 */ {"T", "Temperature [K]"},
/* 131 */ {"U", "U velocity [m s**-1]"},
/* 132 */ {"V", "V velocity [m s**-1]"},
/* 133 */ {"Q", "Specific humidity [kg kg**-1]"},
/* 134 */ {"SP", "Surface pressure [Pa]"},
/* 135 */ {"W", "Vertical velocity [Pa s**-1]"},
/* 136 */ {"TCW", "Total column water [kg m**-2]"},
/* 137 */ {"TCWV", "Total column water vapour [kg m**-2]"},
/* 138 */ {"VO", "Vorticity (relative) [s**-1]"},
/* 139 */ {"STL1", "Soil temperature level 1 [K]"},
/* 140 */ {"SWL1", "Soil wetness level 1 [m of water]"},
/* 141 */ {"SD", "Snow depth [m of water equivalent]"},
/* 142 */ {"LSP", "Stratiform precipitation (Large-scale precipitation) [m]"},
/* 143 */ {"CP", "Convective precipitation [m]"},
/* 144 */ {"SF", "Snowfall (convective + stratiform) [m of water equivalent]"},
/* 145 */ {"BLD", "Boundary layer dissipation [W m**-2 s]"},
/* 146 */ {"SSHF", "Surface sensible heat flux [W m**-2 s]"},
/* 147 */ {"SLHF", "Surface latent heat flux [W m**-2 s]"},
/* 148 */ {"CHNK", "Charnock []"},
/* 149 */ {"SNR", "Surface net radiation [W m**-2 s]"},
/* 150 */ {"TNR", "Top net radiation []"},
/* 151 */ {"MSL", "Mean sea level pressure [Pa]"},
/* 152 */ {"LNSP", "Logarithm of surface pressure []"},
/* 153 */ {"SWHR", "Short-wave heating rate [K]"},
/* 154 */ {"LWHR", "Long-wave heating rate [K]"},
/* 155 */ {"D", "Divergence [s**-1]"},
/* 156 */ {"GH", "Height [m]"},
/* 157 */ {"R", "Relative humidity [%]"},
/* 158 */ {"TSP", "Tendency of surface pressure [Pa s**-1]"},
/* 159 */ {"BLH", "Boundary layer height [m]"},
/* 160 */ {"SDOR", "Standard deviation of orography []"},
/* 161 */ {"ISOR", "Anisotropy of sub-gridscale orography []"},
/* 162 */ {"ANOR", "Angle of sub-gridscale orography [rad]"},
/* 163 */ {"SLOR", "Slope of sub-gridscale orography []"},
/* 164 */ {"TCC", "Total cloud cover [(0 - 1)]"},
/* 165 */ {"10U", "10 metre U wind component [m s**-1]"},
/* 166 */ {"10V", "10 metre V wind component [m s**-1]"},
/* 167 */ {"2T", "2 metre temperature [K]"},
/* 168 */ {"2D", "2 metre dewpoint temperature [K]"},
/* 169 */ {"SSRD", "Surface solar radiation downwards [W m**-2 s]"},
/* 170 */ {"STL2", "Soil temperature level 2 [K]"},
/* 171 */ {"SWL2", "Soil wetness level 2 [m of water]"},
/* 172 */ {"LSM", "Land-sea mask [(0 - 1)]"},
/* 173 */ {"SR", "Surface roughness [m]"},
/* 174 */ {"AL", "Albedo [(0 - 1)]"},
/* 175 */ {"STRD", "Surface thermal radiation downwards [W m**-2 s]"},
/* 176 */ {"SSR", "Surface solar radiation [W m**-2 s]"},
/* 177 */ {"STR", "Surface thermal radiation [W m**-2 s]"},
/* 178 */ {"TSR", "Top solar radiation [W m**-2 s]"},
/* 179 */ {"TTR", "Top thermal radiation [W m**-2 s]"},
/* 180 */ {"EWSS", "East-West surface stress [N m**-2 s]"},
/* 181 */ {"NSSS", "North-South surface stress [N m**-2 s]"},
/* 182 */ {"E", "Evaporation [m of water]"},
/* 183 */ {"STL3", "Soil temperature level 3 [K]"},
/* 184 */ {"SWL3", "Soil wetness level 3 [m of water]"},
/* 185 */ {"CCC", "Convective cloud cover [(0 - 1)]"},
/* 186 */ {"LCC", "Low cloud cover [(0 - 1)]"},
/* 187 */ {"MCC", "Medium cloud cover [(0 - 1)]"},
/* 188 */ {"HCC", "High cloud cover [(0 - 1)]"},
/* 189 */ {"SUND", "Sunshine duration [s]"},
/* 190 */ {"EWOV", "East-West component of sub-gridscale orographic variance [m**2]"},
/* 191 */ {"NSOV", "North-South component of sub-gridscale orographic variance [m**2]"},
/* 192 */ {"NWOV", "North-West/South-East component of sub-gridscale orographic variance [m**2]"},
/* 193 */ {"NEOV", "North-East/South-West component of sub-gridscale orographic variance [m**2]"},
/* 194 */ {"BTMP", "Brightness temperature [K]"},
/* 195 */ {"LGWS", "Latitudinal component of gravity wave stress [N m**-2 s]"},
/* 196 */ {"MGWS", "Meridional component of gravity wave stress [N m**-2 s]"},
/* 197 */ {"GWD", "Gravity wave dissipation [W m**-2 s]"},
/* 198 */ {"SRC", "Skin reservoir content [m of water]"},
/* 199 */ {"VEG", "Vegetation fraction [(0 - 1)]"},
/* 200 */ {"VSO", "Variance of sub-gridscale orography [m**2]"},
/* 201 */ {"MX2T", "Maximum temperature at 2 metres since previous post-processing [K]"},
/* 202 */ {"MN2T", "Minimum temperature at 2 metres since previous post-processing [K]"},
/* 203 */ {"O3", "Ozone mass mixing ratio [kg kg**-1]"},
/* 204 */ {"PAW", "Precipitation analysis weights []"},
/* 205 */ {"RO", "Runoff [m]"},
/* 206 */ {"TCO3", "Total column ozone [kg m**-2]"},
/* 207 */ {"10SI", "10 metre wind speed [m s**-1]"},
/* 208 */ {"TSRC", "Top net solar radiation, clear sky [W m**-2 s]"},
/* 209 */ {"TTRC", "Top net thermal radiation, clear sky [W m**-2 s]"},
/* 210 */ {"SSRC", "Surface net solar radiation, clear sky [W m**-2 s]"},
/* 211 */ {"STRC", "Surface net thermal radiation, clear sky [W m**-2 s]"},
/* 212 */ {"TISR", "TOA incident solar radiation [W m**-2 s]"},
/* 213 */ {"var213", "undefined"},
/* 214 */ {"DHR", "Diabatic heating by radiation [K]"},
/* 215 */ {"DHVD", "Diabatic heating by vertical diffusion [K]"},
/* 216 */ {"DHCC", "Diabatic heating by cumulus convection [K]"},
/* 217 */ {"DHLC", "Diabatic heating large-scale condensation [K]"},
/* 218 */ {"VDZW", "Vertical diffusion of zonal wind [m s**-1]"},
/* 219 */ {"VDMW", "Vertical diffusion of meridional wind [m s**-1]"},
/* 220 */ {"EWGD", "East-West gravity wave drag tendency [m s**-1]"},
/* 221 */ {"NSGD", "North-South gravity wave drag tendency [m s**-1]"},
/* 222 */ {"CTZW", "Convective tendency of zonal wind [m s**-1]"},
/* 223 */ {"CTMW", "Convective tendency of meridional wind [m s**-1]"},
/* 224 */ {"VDH", "Vertical diffusion of humidity [kg kg**-1]"},
/* 225 */ {"HTCC", "Humidity tendency by cumulus convection [kg kg**-1]"},
/* 226 */ {"HTLC", "Humidity tendency by large-scale condensation [kg kg**-1]"},
/* 227 */ {"CRNH", "Change from removal of negative humidity [kg kg**-1]"},
/* 228 */ {"TP", "Total precipitation [m]"},
/* 229 */ {"IEWS", "Instantaneous X surface stress [N m**-2]"},
/* 230 */ {"INSS", "Instantaneous Y surface stress [N m**-2]"},
/* 231 */ {"ISHF", "Instantaneous surface heat flux [W m**-2]"},
/* 232 */ {"IE", "Instantaneous moisture flux [kg m**-2 s]"},
/* 233 */ {"ASQ", "Apparent surface humidity [kg kg**-1]"},
/* 234 */ {"LSRH", "Logarithm of surface roughness length for heat []"},
/* 235 */ {"SKT", "Skin temperature [K]"},
/* 236 */ {"STL4", "Soil temperature level 4 [K]"},
/* 237 */ {"SWL4", "Soil wetness level 4 [m]"},
/* 238 */ {"TSN", "Temperature of snow layer [K]"},
/* 239 */ {"CSF", "Convective snowfall [m of water equivalent]"},
/* 240 */ {"LSF", "Large-scale snowfall [m of water equivalent]"},
/* 241 */ {"ACF", "Accumulated cloud fraction tendency [(-1 to 1)]"},
/* 242 */ {"ALW", "Accumulated liquid water tendency [(-1 to 1)]"},
/* 243 */ {"FAL", "Forecast albedo [(0 - 1)]"},
/* 244 */ {"FSR", "Forecast surface roughness [m]"},
/* 245 */ {"FLSR", "Forecast logarithm of surface roughness for heat []"},
/* 246 */ {"CLWC", "Cloud liquid water content [kg kg**-1]"},
/* 247 */ {"CIWC", "Cloud ice water content [kg kg**-1]"},
/* 248 */ {"CC", "Cloud cover [(0 - 1)]"},
/* 249 */ {"AIW", "Accumulated ice water tendency [(-1 to 1)]"},
/* 250 */ {"ICE", "Ice age [(0 - 1)]"},
/* 251 */ {"ATTE", "Adiabatic tendency of temperature [K]"},
/* 252 */ {"ATHE", "Adiabatic tendency of humidity [kg kg**-1]"},
/* 253 */ {"ATZE", "Adiabatic tendency of zonal wind [m s**-1]"},
/* 254 */ {"ATMW", "Adiabatic tendency of meridional wind [m s**-1]"},
/* 255 */ {"var255", "Indicates a missing value []"},
};
const struct ParmTable parm_table_ecmwf_130[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"var1", "undefined"},
/* 2 */ {"var2", "undefined"},
/* 3 */ {"var3", "undefined"},
/* 4 */ {"var4", "undefined"},
/* 5 */ {"var5", "undefined"},
/* 6 */ {"var6", "undefined"},
/* 7 */ {"var7", "undefined"},
/* 8 */ {"var8", "undefined"},
/* 9 */ {"var9", "undefined"},
/* 10 */ {"var10", "undefined"},
/* 11 */ {"var11", "undefined"},
/* 12 */ {"var12", "undefined"},
/* 13 */ {"var13", "undefined"},
/* 14 */ {"var14", "undefined"},
/* 15 */ {"var15", "undefined"},
/* 16 */ {"var16", "undefined"},
/* 17 */ {"var17", "undefined"},
/* 18 */ {"var18", "undefined"},
/* 19 */ {"var19", "undefined"},
/* 20 */ {"var20", "undefined"},
/* 21 */ {"var21", "undefined"},
/* 22 */ {"var22", "undefined"},
/* 23 */ {"var23", "undefined"},
/* 24 */ {"var24", "undefined"},
/* 25 */ {"var25", "undefined"},
/* 26 */ {"var26", "undefined"},
/* 27 */ {"var27", "undefined"},
/* 28 */ {"var28", "undefined"},
/* 29 */ {"var29", "undefined"},
/* 30 */ {"var30", "undefined"},
/* 31 */ {"var31", "undefined"},
/* 32 */ {"var32", "undefined"},
/* 33 */ {"var33", "undefined"},
/* 34 */ {"var34", "undefined"},
/* 35 */ {"var35", "undefined"},
/* 36 */ {"var36", "undefined"},
/* 37 */ {"var37", "undefined"},
/* 38 */ {"var38", "undefined"},
/* 39 */ {"var39", "undefined"},
/* 40 */ {"var40", "undefined"},
/* 41 */ {"var41", "undefined"},
/* 42 */ {"var42", "undefined"},
/* 43 */ {"var43", "undefined"},
/* 44 */ {"var44", "undefined"},
/* 45 */ {"var45", "undefined"},
/* 46 */ {"var46", "undefined"},
/* 47 */ {"var47", "undefined"},
/* 48 */ {"var48", "undefined"},
/* 49 */ {"var49", "undefined"},
/* 50 */ {"var50", "undefined"},
/* 51 */ {"var51", "undefined"},
/* 52 */ {"var52", "undefined"},
/* 53 */ {"var53", "undefined"},
/* 54 */ {"var54", "undefined"},
/* 55 */ {"var55", "undefined"},
/* 56 */ {"var56", "undefined"},
/* 57 */ {"var57", "undefined"},
/* 58 */ {"var58", "undefined"},
/* 59 */ {"var59", "undefined"},
/* 60 */ {"var60", "undefined"},
/* 61 */ {"var61", "undefined"},
/* 62 */ {"var62", "undefined"},
/* 63 */ {"var63", "undefined"},
/* 64 */ {"var64", "undefined"},
/* 65 */ {"var65", "undefined"},
/* 66 */ {"var66", "undefined"},
/* 67 */ {"var67", "undefined"},
/* 68 */ {"var68", "undefined"},
/* 69 */ {"var69", "undefined"},
/* 70 */ {"var70", "undefined"},
/* 71 */ {"var71", "undefined"},
/* 72 */ {"var72", "undefined"},
/* 73 */ {"var73", "undefined"},
/* 74 */ {"var74", "undefined"},
/* 75 */ {"var75", "undefined"},
/* 76 */ {"var76", "undefined"},
/* 77 */ {"var77", "undefined"},
/* 78 */ {"var78", "undefined"},
/* 79 */ {"var79", "undefined"},
/* 80 */ {"var80", "undefined"},
/* 81 */ {"var81", "undefined"},
/* 82 */ {"var82", "undefined"},
/* 83 */ {"var83", "undefined"},
/* 84 */ {"var84", "undefined"},
/* 85 */ {"var85", "undefined"},
/* 86 */ {"var86", "undefined"},
/* 87 */ {"var87", "undefined"},
/* 88 */ {"var88", "undefined"},
/* 89 */ {"var89", "undefined"},
/* 90 */ {"var90", "undefined"},
/* 91 */ {"var91", "undefined"},
/* 92 */ {"var92", "undefined"},
/* 93 */ {"var93", "undefined"},
/* 94 */ {"var94", "undefined"},
/* 95 */ {"var95", "undefined"},
/* 96 */ {"var96", "undefined"},
/* 97 */ {"var97", "undefined"},
/* 98 */ {"var98", "undefined"},
/* 99 */ {"var99", "undefined"},
/* 100 */ {"var100", "undefined"},
/* 101 */ {"var101", "undefined"},
/* 102 */ {"var102", "undefined"},
/* 103 */ {"var103", "undefined"},
/* 104 */ {"var104", "undefined"},
/* 105 */ {"var105", "undefined"},
/* 106 */ {"var106", "undefined"},
/* 107 */ {"var107", "undefined"},
/* 108 */ {"var108", "undefined"},
/* 109 */ {"var109", "undefined"},
/* 110 */ {"var110", "undefined"},
/* 111 */ {"var111", "undefined"},
/* 112 */ {"var112", "undefined"},
/* 113 */ {"var113", "undefined"},
/* 114 */ {"var114", "undefined"},
/* 115 */ {"var115", "undefined"},
/* 116 */ {"var116", "undefined"},
/* 117 */ {"var117", "undefined"},
/* 118 */ {"var118", "undefined"},
/* 119 */ {"var119", "undefined"},
/* 120 */ {"var120", "undefined"},
/* 121 */ {"var121", "undefined"},
/* 122 */ {"var122", "undefined"},
/* 123 */ {"var123", "undefined"},
/* 124 */ {"var124", "undefined"},
/* 125 */ {"var125", "undefined"},
/* 126 */ {"var126", "undefined"},
/* 127 */ {"var127", "undefined"},
/* 128 */ {"var128", "undefined"},
/* 129 */ {"var129", "undefined"},
/* 130 */ {"var130", "undefined"},
/* 131 */ {"var131", "undefined"},
/* 132 */ {"var132", "undefined"},
/* 133 */ {"var133", "undefined"},
/* 134 */ {"var134", "undefined"},
/* 135 */ {"var135", "undefined"},
/* 136 */ {"var136", "undefined"},
/* 137 */ {"var137", "undefined"},
/* 138 */ {"var138", "undefined"},
/* 139 */ {"var139", "undefined"},
/* 140 */ {"var140", "undefined"},
/* 141 */ {"var141", "undefined"},
/* 142 */ {"var142", "undefined"},
/* 143 */ {"var143", "undefined"},
/* 144 */ {"var144", "undefined"},
/* 145 */ {"var145", "undefined"},
/* 146 */ {"var146", "undefined"},
/* 147 */ {"var147", "undefined"},
/* 148 */ {"var148", "undefined"},
/* 149 */ {"var149", "undefined"},
/* 150 */ {"var150", "undefined"},
/* 151 */ {"var151", "undefined"},
/* 152 */ {"var152", "undefined"},
/* 153 */ {"var153", "undefined"},
/* 154 */ {"var154", "undefined"},
/* 155 */ {"var155", "undefined"},
/* 156 */ {"var156", "undefined"},
/* 157 */ {"var157", "undefined"},
/* 158 */ {"var158", "undefined"},
/* 159 */ {"var159", "undefined"},
/* 160 */ {"var160", "undefined"},
/* 161 */ {"var161", "undefined"},
/* 162 */ {"var162", "undefined"},
/* 163 */ {"var163", "undefined"},
/* 164 */ {"var164", "undefined"},
/* 165 */ {"var165", "undefined"},
/* 166 */ {"var166", "undefined"},
/* 167 */ {"var167", "undefined"},
/* 168 */ {"var168", "undefined"},
/* 169 */ {"var169", "undefined"},
/* 170 */ {"var170", "undefined"},
/* 171 */ {"var171", "undefined"},
/* 172 */ {"var172", "undefined"},
/* 173 */ {"var173", "undefined"},
/* 174 */ {"var174", "undefined"},
/* 175 */ {"var175", "undefined"},
/* 176 */ {"var176", "undefined"},
/* 177 */ {"var177", "undefined"},
/* 178 */ {"var178", "undefined"},
/* 179 */ {"var179", "undefined"},
/* 180 */ {"var180", "undefined"},
/* 181 */ {"var181", "undefined"},
/* 182 */ {"var182", "undefined"},
/* 183 */ {"var183", "undefined"},
/* 184 */ {"var184", "undefined"},
/* 185 */ {"var185", "undefined"},
/* 186 */ {"var186", "undefined"},
/* 187 */ {"var187", "undefined"},
/* 188 */ {"var188", "undefined"},
/* 189 */ {"var189", "undefined"},
/* 190 */ {"var190", "undefined"},
/* 191 */ {"var191", "undefined"},
/* 192 */ {"var192", "undefined"},
/* 193 */ {"var193", "undefined"},
/* 194 */ {"var194", "undefined"},
/* 195 */ {"var195", "undefined"},
/* 196 */ {"var196", "undefined"},
/* 197 */ {"var197", "undefined"},
/* 198 */ {"var198", "undefined"},
/* 199 */ {"var199", "undefined"},
/* 200 */ {"var200", "undefined"},
/* 201 */ {"var201", "undefined"},
/* 202 */ {"var202", "undefined"},
/* 203 */ {"var203", "undefined"},
/* 204 */ {"var204", "undefined"},
/* 205 */ {"var205", "undefined"},
/* 206 */ {"var206", "undefined"},
/* 207 */ {"var207", "undefined"},
/* 208 */ {"TSRU", "Top solar radiation upward [W m**-2]"},
/* 209 */ {"TTRU", "Top thermal radiation upward [W m**-2]"},
/* 210 */ {"TSUC", "Top solar radiation upward, clear sky [W m**-2]"},
/* 211 */ {"TTUC", "Top thermal radiation upward, clear sky [W m**-2]"},
/* 212 */ {"CLW", "Cloud liquid water [kg kg**-1]"},
/* 213 */ {"CF", "Cloud fraction [(0 - 1)]"},
/* 214 */ {"DHR", "Diabatic heating by radiation [K s**-1]"},
/* 215 */ {"DHVD", "Diabatic heating by vertical diffusion [K s**-1]"},
/* 216 */ {"DHCC", "Diabatic heating by cumulus convection [K s**-1]"},
/* 217 */ {"DHLC", "Diabatic heating by large-scale condensation [K s**-1]"},
/* 218 */ {"VDZW", "Vertical diffusion of zonal wind [m**2 s**-3]"},
/* 219 */ {"VDMW", "Vertical diffusion of meridional wind [m**2 s**-3]"},
/* 220 */ {"EWGD", "East-West gravity wave drag [m**2 s**-3]"},
/* 221 */ {"NSGD", "North-South gravity wave drag [m**2 s**-3]"},
/* 222 */ {"CTZW", "Convective tendency of zonal wind [m**2 s**-3]"},
/* 223 */ {"CTMW", "Convective tendency of meridional wind [m**2 s**-3]"},
/* 224 */ {"VDH", "Vertical diffusion of humidity [kg kg**-1 s**-1]"},
/* 225 */ {"HTCC", "Humidity tendency by cumulus convection [kg kg**-1 s**-1]"},
/* 226 */ {"HTLC", "Humidity tendency by large-scale condensation [kg kg**-1 s**-1]"},
/* 227 */ {"CRNH", "Change from removal of negative humidity [kg kg**-1 s**-1]"},
/* 228 */ {"ATT", "Adiabatic tendency of temperature [K s**-1]"},
/* 229 */ {"ATH", "Adiabatic tendency of humidity [kg kg**-1 s**-1]"},
/* 230 */ {"ATZW", "Adiabatic tendency of zonal wind [m**2 s**-3]"},
/* 231 */ {"ATMWAX", "Adiabatic tendency of meridional wind [m**2 s**-3]"},
/* 232 */ {"MVV", "Mean vertical velocity [Pa s**-1]"},
/* 233 */ {"var233", "undefined"},
/* 234 */ {"var234", "undefined"},
/* 235 */ {"var235", "undefined"},
/* 236 */ {"var236", "undefined"},
/* 237 */ {"var237", "undefined"},
/* 238 */ {"var238", "undefined"},
/* 239 */ {"var239", "undefined"},
/* 240 */ {"var240", "undefined"},
/* 241 */ {"var241", "undefined"},
/* 242 */ {"var242", "undefined"},
/* 243 */ {"var243", "undefined"},
/* 244 */ {"var244", "undefined"},
/* 245 */ {"var245", "undefined"},
/* 246 */ {"var246", "undefined"},
/* 247 */ {"var247", "undefined"},
/* 248 */ {"var248", "undefined"},
/* 249 */ {"var249", "undefined"},
/* 250 */ {"var250", "undefined"},
/* 251 */ {"var251", "undefined"},
/* 252 */ {"var252", "undefined"},
/* 253 */ {"var253", "undefined"},
/* 254 */ {"var254", "undefined"},
/* 255 */ {"var255", "Indicates a missing value []"},
};
const struct ParmTable parm_table_ecmwf_131[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"2TAG2", "2m temperature anomaly of at least +2K [%]"},
/* 2 */ {"2TAG1", "2m temperature anomaly of at least +1K [%]"},
/* 3 */ {"2TAG0", "2m temperature anomaly of at least 0K [%]"},
/* 4 */ {"2TALM1", "2m temperature anomaly of at most -1K [%]"},
/* 5 */ {"2TALM2", "2m temperature anomaly of at most -2K [%]"},
/* 6 */ {"TPAG20", "Total precipitation anomaly of at least 20 mm [%]"},
/* 7 */ {"TPAG10", "Total precipitation anomaly of at least 10 mm [%]"},
/* 8 */ {"TPAG0", "Total precipitation anomaly of at least 0 mm [%]"},
/* 9 */ {"STAG0", "Surface temperature anomaly of at least 0K [%]"},
/* 10 */ {"MSLAG0", "Mean sea level pressure anomaly of at least 0 Pa [%]"},
/* 11 */ {"var11", "undefined"},
/* 12 */ {"var12", "undefined"},
/* 13 */ {"var13", "undefined"},
/* 14 */ {"var14", "undefined"},
/* 15 */ {"H0DIP", "Heigth of 0 degree isotherm probability [percentage]"},
/* 16 */ {"HSLP", "Heigth of snowfall limit probability [percentage]"},
/* 17 */ {"SAIP", "Showalter index probability [percentage]"},
/* 18 */ {"WHIP", "Whiting index probability [percentage]"},
/* 19 */ {"var19", "undefined"},
/* 20 */ {"TALM2K", "Temperature anomaly less than -2 K [%]"},
/* 21 */ {"TAG2K", "Temperature anomaly of at least +2 K [%]"},
/* 22 */ {"TALM8K", "Temperature anomaly less than -8 K [%]"},
/* 23 */ {"TALM4K", "Temperature anomaly less than -4 K [%]"},
/* 24 */ {"TAG4K", "Temperature anomaly greater than +4 K [%]"},
/* 25 */ {"TAG8K", "Temperature anomaly greater than +8 K [%]"},
/* 26 */ {"var26", "undefined"},
/* 27 */ {"var27", "undefined"},
/* 28 */ {"var28", "undefined"},
/* 29 */ {"var29", "undefined"},
/* 30 */ {"var30", "undefined"},
/* 31 */ {"var31", "undefined"},
/* 32 */ {"var32", "undefined"},
/* 33 */ {"var33", "undefined"},
/* 34 */ {"var34", "undefined"},
/* 35 */ {"var35", "undefined"},
/* 36 */ {"var36", "undefined"},
/* 37 */ {"var37", "undefined"},
/* 38 */ {"var38", "undefined"},
/* 39 */ {"var39", "undefined"},
/* 40 */ {"var40", "undefined"},
/* 41 */ {"var41", "undefined"},
/* 42 */ {"var42", "undefined"},
/* 43 */ {"var43", "undefined"},
/* 44 */ {"var44", "undefined"},
/* 45 */ {"var45", "undefined"},
/* 46 */ {"var46", "undefined"},
/* 47 */ {"var47", "undefined"},
/* 48 */ {"var48", "undefined"},
/* 49 */ {"10GP", "10 metre wind gust probability [percentage]"},
/* 50 */ {"var50", "undefined"},
/* 51 */ {"var51", "undefined"},
/* 52 */ {"var52", "undefined"},
/* 53 */ {"var53", "undefined"},
/* 54 */ {"var54", "undefined"},
/* 55 */ {"var55", "undefined"},
/* 56 */ {"var56", "undefined"},
/* 57 */ {"var57", "undefined"},
/* 58 */ {"var58", "undefined"},
/* 59 */ {"CAPEP", "Convective available potential energy probability [percentage]"},
/* 60 */ {"TPG1", "Total precipitation of at least 1 mm [%]"},
/* 61 */ {"TPG5", "Total precipitation of at least 5 mm [%]"},
/* 62 */ {"TPG10", "Total precipitation of at least 10 mm [%]"},
/* 63 */ {"TPG20", "Total precipitation of at least 20 mm [%]"},
/* 64 */ {"TPL01", "Total precipitation less than 0.1 mm [%]"},
/* 65 */ {"TPRL1", "Total precipitation rate less than 1 mm per day [%]"},
/* 66 */ {"TPRG3", "Total precipitation rate of at least 3 mm per day [%]"},
/* 67 */ {"TPRG5", "Total precipitation rate of at least 5 mm per day [%]"},
/* 68 */ {"10SPG10", "10 metre Wind speed of at least 10 metre per second [%]"},
/* 69 */ {"10SPG15", "10 metre Wind speed of at least 15 metre per second [%]"},
/* 70 */ {"10FGG15", "10 metre Wind gust of at least 15 metre per second [%]"},
/* 71 */ {"10FGG20", "10 metre Wind gust of at least 20 metre per second [%]"},
/* 72 */ {"10FGG25", "10 metre Wind gust of at least 25 metre per second [%]"},
/* 73 */ {"2TL273", "2 metre temperature less than 273.15 K [%]"},
/* 74 */ {"SWHG2", "Significant wave height of at least 2 m [%]"},
/* 75 */ {"SWHG4", "Significant wave height of at least 4 m [%]"},
/* 76 */ {"SWHG6", "Significant wave height of at least 6 m [%]"},
/* 77 */ {"SWHG8", "Significant wave height of at least 8 m [%]"},
/* 78 */ {"MWPG8", "Mean wave period of at least 8 s [%]"},
/* 79 */ {"MWPG10", "Mean wave period of at least 10 s [%]"},
/* 80 */ {"MWPG12", "Mean wave period of at least 12 s [%]"},
/* 81 */ {"MWPG15", "Mean wave period of at least 15 s [%]"},
/* 82 */ {"TPG40", "Total precipitation of at least 40 mm [%]"},
/* 83 */ {"TPG60", "Total precipitation of at least 60 mm [%]"},
/* 84 */ {"TPG80", "Total precipitation of at least 80 mm [%]"},
/* 85 */ {"TPG100", "Total precipitation of at least 100 mm [%]"},
/* 86 */ {"TPG150", "Total precipitation of at least 150 mm [%]"},
/* 87 */ {"TPG200", "Total precipitation of at least 200 mm [%]"},
/* 88 */ {"TPG300", "Total precipitation of at least 300 mm [%]"},
/* 89 */ {"var89", "undefined"},
/* 90 */ {"var90", "undefined"},
/* 91 */ {"var91", "undefined"},
/* 92 */ {"var92", "undefined"},
/* 93 */ {"var93", "undefined"},
/* 94 */ {"var94", "undefined"},
/* 95 */ {"var95", "undefined"},
/* 96 */ {"var96", "undefined"},
/* 97 */ {"var97", "undefined"},
/* 98 */ {"var98", "undefined"},
/* 99 */ {"var99", "undefined"},
/* 100 */ {"var100", "undefined"},
/* 101 */ {"var101", "undefined"},
/* 102 */ {"var102", "undefined"},
/* 103 */ {"var103", "undefined"},
/* 104 */ {"var104", "undefined"},
/* 105 */ {"var105", "undefined"},
/* 106 */ {"var106", "undefined"},
/* 107 */ {"var107", "undefined"},
/* 108 */ {"var108", "undefined"},
/* 109 */ {"var109", "undefined"},
/* 110 */ {"var110", "undefined"},
/* 111 */ {"var111", "undefined"},
/* 112 */ {"var112", "undefined"},
/* 113 */ {"var113", "undefined"},
/* 114 */ {"var114", "undefined"},
/* 115 */ {"var115", "undefined"},
/* 116 */ {"var116", "undefined"},
/* 117 */ {"var117", "undefined"},
/* 118 */ {"var118", "undefined"},
/* 119 */ {"var119", "undefined"},
/* 120 */ {"var120", "undefined"},
/* 121 */ {"var121", "undefined"},
/* 122 */ {"var122", "undefined"},
/* 123 */ {"var123", "undefined"},
/* 124 */ {"var124", "undefined"},
/* 125 */ {"var125", "undefined"},
/* 126 */ {"var126", "undefined"},
/* 127 */ {"var127", "undefined"},
/* 128 */ {"var128", "undefined"},
/* 129 */ {"ZP", "Geopotential probability [%]"},
/* 130 */ {"TAP", "Temperature anomaly probability [percentage]"},
/* 131 */ {"var131", "undefined"},
/* 132 */ {"var132", "undefined"},
/* 133 */ {"var133", "undefined"},
/* 134 */ {"var134", "undefined"},
/* 135 */ {"var135", "undefined"},
/* 136 */ {"var136", "undefined"},
/* 137 */ {"var137", "undefined"},
/* 138 */ {"var138", "undefined"},
/* 139 */ {"var139", "2 metre temperature probability [%]"},
/* 140 */ {"var140", "undefined"},
/* 141 */ {"var141", "undefined"},
/* 142 */ {"var142", "undefined"},
/* 143 */ {"var143", "undefined"},
/* 144 */ {"SFP", "Snowfall probability [percentage]"},
/* 145 */ {"var145", "undefined"},
/* 146 */ {"var146", "undefined"},
/* 147 */ {"var147", "undefined"},
/* 148 */ {"var148", "undefined"},
/* 149 */ {"var149", "undefined"},
/* 150 */ {"var150", "undefined"},
/* 151 */ {"var151", "Total precipitation probability [%]"},
/* 152 */ {"var152", "undefined"},
/* 153 */ {"var153", "undefined"},
/* 154 */ {"var154", "undefined"},
/* 155 */ {"var155", "undefined"},
/* 156 */ {"var156", "undefined"},
/* 157 */ {"var157", "undefined"},
/* 158 */ {"var158", "undefined"},
/* 159 */ {"var159", "undefined"},
/* 160 */ {"var160", "undefined"},
/* 161 */ {"var161", "undefined"},
/* 162 */ {"var162", "undefined"},
/* 163 */ {"var163", "undefined"},
/* 164 */ {"TCCP", "Total cloud cover probability [percentage]"},
/* 165 */ {"10SP", "10 metre speed probability [percentage]"},
/* 166 */ {"var166", "undefined"},
/* 167 */ {"2TP", "2 metre temperature probability [percentage]"},
/* 168 */ {"var168", "undefined"},
/* 169 */ {"var169", "undefined"},
/* 170 */ {"var170", "undefined"},
/* 171 */ {"var171", "undefined"},
/* 172 */ {"var172", "undefined"},
/* 173 */ {"var173", "undefined"},
/* 174 */ {"var174", "undefined"},
/* 175 */ {"var175", "undefined"},
/* 176 */ {"var176", "undefined"},
/* 177 */ {"var177", "undefined"},
/* 178 */ {"var178", "undefined"},
/* 179 */ {"var179", "undefined"},
/* 180 */ {"var180", "undefined"},
/* 181 */ {"var181", "undefined"},
/* 182 */ {"var182", "undefined"},
/* 183 */ {"var183", "undefined"},
/* 184 */ {"var184", "undefined"},
/* 185 */ {"var185", "undefined"},
/* 186 */ {"var186", "undefined"},
/* 187 */ {"var187", "undefined"},
/* 188 */ {"var188", "undefined"},
/* 189 */ {"var189", "undefined"},
/* 190 */ {"var190", "undefined"},
/* 191 */ {"var191", "undefined"},
/* 192 */ {"var192", "undefined"},
/* 193 */ {"var193", "undefined"},
/* 194 */ {"var194", "undefined"},
/* 195 */ {"var195", "undefined"},
/* 196 */ {"var196", "undefined"},
/* 197 */ {"var197", "undefined"},
/* 198 */ {"var198", "undefined"},
/* 199 */ {"var199", "undefined"},
/* 200 */ {"var200", "undefined"},
/* 201 */ {"MX2TP", "Maximum 2 metre temperature probability [percentage]"},
/* 202 */ {"MN2TP", "Minimum 2 metre temperature probability [percentage]"},
/* 203 */ {"var203", "undefined"},
/* 204 */ {"var204", "undefined"},
/* 205 */ {"var205", "undefined"},
/* 206 */ {"var206", "undefined"},
/* 207 */ {"var207", "undefined"},
/* 208 */ {"var208", "undefined"},
/* 209 */ {"var209", "undefined"},
/* 210 */ {"var210", "undefined"},
/* 211 */ {"var211", "undefined"},
/* 212 */ {"var212", "undefined"},
/* 213 */ {"var213", "undefined"},
/* 214 */ {"var214", "undefined"},
/* 215 */ {"var215", "undefined"},
/* 216 */ {"var216", "undefined"},
/* 217 */ {"var217", "undefined"},
/* 218 */ {"var218", "undefined"},
/* 219 */ {"var219", "undefined"},
/* 220 */ {"var220", "undefined"},
/* 221 */ {"var221", "undefined"},
/* 222 */ {"var222", "undefined"},
/* 223 */ {"var223", "undefined"},
/* 224 */ {"var224", "undefined"},
/* 225 */ {"var225", "undefined"},
/* 226 */ {"var226", "undefined"},
/* 227 */ {"var227", "undefined"},
/* 228 */ {"TPP", "Total precipitation probability [percentage]"},
/* 229 */ {"SWHP", "Significant wave height probability [percentage]"},
/* 230 */ {"var230", "undefined"},
/* 231 */ {"var231", "undefined"},
/* 232 */ {"MWPP", "Mean wave period probability [percentage]"},
/* 233 */ {"var233", "undefined"},
/* 234 */ {"var234", "undefined"},
/* 235 */ {"var235", "undefined"},
/* 236 */ {"var236", "undefined"},
/* 237 */ {"var237", "undefined"},
/* 238 */ {"var238", "undefined"},
/* 239 */ {"var239", "undefined"},
/* 240 */ {"var240", "undefined"},
/* 241 */ {"var241", "undefined"},
/* 242 */ {"var242", "undefined"},
/* 243 */ {"var243", "undefined"},
/* 244 */ {"var244", "undefined"},
/* 245 */ {"var245", "undefined"},
/* 246 */ {"var246", "undefined"},
/* 247 */ {"var247", "undefined"},
/* 248 */ {"var248", "undefined"},
/* 249 */ {"var249", "undefined"},
/* 250 */ {"var250", "undefined"},
/* 251 */ {"var251", "undefined"},
/* 252 */ {"var252", "undefined"},
/* 253 */ {"var253", "undefined"},
/* 254 */ {"var254", "undefined"},
/* 255 */ {"var255", "Indicates a missing value []"},
};
const struct ParmTable parm_table_ecmwf_132[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"var1", "undefined"},
/* 2 */ {"var2", "undefined"},
/* 3 */ {"var3", "undefined"},
/* 4 */ {"var4", "undefined"},
/* 5 */ {"var5", "undefined"},
/* 6 */ {"var6", "undefined"},
/* 7 */ {"var7", "undefined"},
/* 8 */ {"var8", "undefined"},
/* 9 */ {"var9", "undefined"},
/* 10 */ {"var10", "undefined"},
/* 11 */ {"var11", "undefined"},
/* 12 */ {"var12", "undefined"},
/* 13 */ {"var13", "undefined"},
/* 14 */ {"var14", "undefined"},
/* 15 */ {"var15", "undefined"},
/* 16 */ {"var16", "undefined"},
/* 17 */ {"var17", "undefined"},
/* 18 */ {"var18", "undefined"},
/* 19 */ {"var19", "undefined"},
/* 20 */ {"var20", "undefined"},
/* 21 */ {"var21", "undefined"},
/* 22 */ {"var22", "undefined"},
/* 23 */ {"var23", "undefined"},
/* 24 */ {"var24", "undefined"},
/* 25 */ {"var25", "undefined"},
/* 26 */ {"var26", "undefined"},
/* 27 */ {"var27", "undefined"},
/* 28 */ {"var28", "undefined"},
/* 29 */ {"var29", "undefined"},
/* 30 */ {"var30", "undefined"},
/* 31 */ {"var31", "undefined"},
/* 32 */ {"var32", "undefined"},
/* 33 */ {"var33", "undefined"},
/* 34 */ {"var34", "undefined"},
/* 35 */ {"var35", "undefined"},
/* 36 */ {"var36", "undefined"},
/* 37 */ {"var37", "undefined"},
/* 38 */ {"var38", "undefined"},
/* 39 */ {"var39", "undefined"},
/* 40 */ {"var40", "undefined"},
/* 41 */ {"var41", "undefined"},
/* 42 */ {"var42", "undefined"},
/* 43 */ {"var43", "undefined"},
/* 44 */ {"var44", "undefined"},
/* 45 */ {"var45", "undefined"},
/* 46 */ {"var46", "undefined"},
/* 47 */ {"var47", "undefined"},
/* 48 */ {"var48", "undefined"},
/* 49 */ {"10FGI", "10 metre wind gust index [(-1 to 1)]"},
/* 50 */ {"var50", "undefined"},
/* 51 */ {"var51", "undefined"},
/* 52 */ {"var52", "undefined"},
/* 53 */ {"var53", "undefined"},
/* 54 */ {"var54", "undefined"},
/* 55 */ {"var55", "undefined"},
/* 56 */ {"var56", "undefined"},
/* 57 */ {"var57", "undefined"},
/* 58 */ {"var58", "undefined"},
/* 59 */ {"var59", "undefined"},
/* 60 */ {"var60", "undefined"},
/* 61 */ {"var61", "undefined"},
/* 62 */ {"var62", "undefined"},
/* 63 */ {"var63", "undefined"},
/* 64 */ {"var64", "undefined"},
/* 65 */ {"var65", "undefined"},
/* 66 */ {"var66", "undefined"},
/* 67 */ {"var67", "undefined"},
/* 68 */ {"var68", "undefined"},
/* 69 */ {"var69", "undefined"},
/* 70 */ {"var70", "undefined"},
/* 71 */ {"var71", "undefined"},
/* 72 */ {"var72", "undefined"},
/* 73 */ {"var73", "undefined"},
/* 74 */ {"var74", "undefined"},
/* 75 */ {"var75", "undefined"},
/* 76 */ {"var76", "undefined"},
/* 77 */ {"var77", "undefined"},
/* 78 */ {"var78", "undefined"},
/* 79 */ {"var79", "undefined"},
/* 80 */ {"var80", "undefined"},
/* 81 */ {"var81", "undefined"},
/* 82 */ {"var82", "undefined"},
/* 83 */ {"var83", "undefined"},
/* 84 */ {"var84", "undefined"},
/* 85 */ {"var85", "undefined"},
/* 86 */ {"var86", "undefined"},
/* 87 */ {"var87", "undefined"},
/* 88 */ {"var88", "undefined"},
/* 89 */ {"var89", "undefined"},
/* 90 */ {"var90", "undefined"},
/* 91 */ {"var91", "undefined"},
/* 92 */ {"var92", "undefined"},
/* 93 */ {"var93", "undefined"},
/* 94 */ {"var94", "undefined"},
/* 95 */ {"var95", "undefined"},
/* 96 */ {"var96", "undefined"},
/* 97 */ {"var97", "undefined"},
/* 98 */ {"var98", "undefined"},
/* 99 */ {"var99", "undefined"},
/* 100 */ {"var100", "undefined"},
/* 101 */ {"var101", "undefined"},
/* 102 */ {"var102", "undefined"},
/* 103 */ {"var103", "undefined"},
/* 104 */ {"var104", "undefined"},
/* 105 */ {"var105", "undefined"},
/* 106 */ {"var106", "undefined"},
/* 107 */ {"var107", "undefined"},
/* 108 */ {"var108", "undefined"},
/* 109 */ {"var109", "undefined"},
/* 110 */ {"var110", "undefined"},
/* 111 */ {"var111", "undefined"},
/* 112 */ {"var112", "undefined"},
/* 113 */ {"var113", "undefined"},
/* 114 */ {"var114", "undefined"},
/* 115 */ {"var115", "undefined"},
/* 116 */ {"var116", "undefined"},
/* 117 */ {"var117", "undefined"},
/* 118 */ {"var118", "undefined"},
/* 119 */ {"var119", "undefined"},
/* 120 */ {"var120", "undefined"},
/* 121 */ {"var121", "undefined"},
/* 122 */ {"var122", "undefined"},
/* 123 */ {"var123", "undefined"},
/* 124 */ {"var124", "undefined"},
/* 125 */ {"var125", "undefined"},
/* 126 */ {"var126", "undefined"},
/* 127 */ {"var127", "undefined"},
/* 128 */ {"var128", "undefined"},
/* 129 */ {"var129", "undefined"},
/* 130 */ {"var130", "undefined"},
/* 131 */ {"var131", "undefined"},
/* 132 */ {"var132", "undefined"},
/* 133 */ {"var133", "undefined"},
/* 134 */ {"var134", "undefined"},
/* 135 */ {"var135", "undefined"},
/* 136 */ {"var136", "undefined"},
/* 137 */ {"var137", "undefined"},
/* 138 */ {"var138", "undefined"},
/* 139 */ {"var139", "undefined"},
/* 140 */ {"var140", "undefined"},
/* 141 */ {"var141", "undefined"},
/* 142 */ {"var142", "undefined"},
/* 143 */ {"var143", "undefined"},
/* 144 */ {"SFI", "Snowfall index [(-1 to 1)]"},
/* 145 */ {"var145", "undefined"},
/* 146 */ {"var146", "undefined"},
/* 147 */ {"var147", "undefined"},
/* 148 */ {"var148", "undefined"},
/* 149 */ {"var149", "undefined"},
/* 150 */ {"var150", "undefined"},
/* 151 */ {"var151", "undefined"},
/* 152 */ {"var152", "undefined"},
/* 153 */ {"var153", "undefined"},
/* 154 */ {"var154", "undefined"},
/* 155 */ {"var155", "undefined"},
/* 156 */ {"var156", "undefined"},
/* 157 */ {"var157", "undefined"},
/* 158 */ {"var158", "undefined"},
/* 159 */ {"var159", "undefined"},
/* 160 */ {"var160", "undefined"},
/* 161 */ {"var161", "undefined"},
/* 162 */ {"var162", "undefined"},
/* 163 */ {"var163", "undefined"},
/* 164 */ {"var164", "undefined"},
/* 165 */ {"10WSI", "10 metre speed index [(-1 to 1)]"},
/* 166 */ {"var166", "undefined"},
/* 167 */ {"2TI", "2 metre temperature index [(-1 to 1)]"},
/* 168 */ {"var168", "undefined"},
/* 169 */ {"var169", "undefined"},
/* 170 */ {"var170", "undefined"},
/* 171 */ {"var171", "undefined"},
/* 172 */ {"var172", "undefined"},
/* 173 */ {"var173", "undefined"},
/* 174 */ {"var174", "undefined"},
/* 175 */ {"var175", "undefined"},
/* 176 */ {"var176", "undefined"},
/* 177 */ {"var177", "undefined"},
/* 178 */ {"var178", "undefined"},
/* 179 */ {"var179", "undefined"},
/* 180 */ {"var180", "undefined"},
/* 181 */ {"var181", "undefined"},
/* 182 */ {"var182", "undefined"},
/* 183 */ {"var183", "undefined"},
/* 184 */ {"var184", "undefined"},
/* 185 */ {"var185", "undefined"},
/* 186 */ {"var186", "undefined"},
/* 187 */ {"var187", "undefined"},
/* 188 */ {"var188", "undefined"},
/* 189 */ {"var189", "undefined"},
/* 190 */ {"var190", "undefined"},
/* 191 */ {"var191", "undefined"},
/* 192 */ {"var192", "undefined"},
/* 193 */ {"var193", "undefined"},
/* 194 */ {"var194", "undefined"},
/* 195 */ {"var195", "undefined"},
/* 196 */ {"var196", "undefined"},
/* 197 */ {"var197", "undefined"},
/* 198 */ {"var198", "undefined"},
/* 199 */ {"var199", "undefined"},
/* 200 */ {"MAXSWHI", "Maximum of significant wave height index [(-1 to 1)]"},
/* 201 */ {"MX2TI", "Maximum temperature at 2 metres index [(-1 to 1)]"},
/* 202 */ {"MN2TI", "Minimum temperature at 2 metres index [(-1 to 1)]"},
/* 203 */ {"var203", "undefined"},
/* 204 */ {"var204", "undefined"},
/* 205 */ {"var205", "undefined"},
/* 206 */ {"var206", "undefined"},
/* 207 */ {"var207", "undefined"},
/* 208 */ {"var208", "undefined"},
/* 209 */ {"var209", "undefined"},
/* 210 */ {"var210", "undefined"},
/* 211 */ {"var211", "undefined"},
/* 212 */ {"var212", "undefined"},
/* 213 */ {"var213", "undefined"},
/* 214 */ {"var214", "undefined"},
/* 215 */ {"var215", "undefined"},
/* 216 */ {"var216", "undefined"},
/* 217 */ {"var217", "undefined"},
/* 218 */ {"var218", "undefined"},
/* 219 */ {"var219", "undefined"},
/* 220 */ {"var220", "undefined"},
/* 221 */ {"var221", "undefined"},
/* 222 */ {"var222", "undefined"},
/* 223 */ {"var223", "undefined"},
/* 224 */ {"var224", "undefined"},
/* 225 */ {"var225", "undefined"},
/* 226 */ {"var226", "undefined"},
/* 227 */ {"var227", "undefined"},
/* 228 */ {"TPI", "Total precipitation index [(-1 to 1)]"},
/* 229 */ {"var229", "undefined"},
/* 230 */ {"var230", "undefined"},
/* 231 */ {"var231", "undefined"},
/* 232 */ {"var232", "undefined"},
/* 233 */ {"var233", "undefined"},
/* 234 */ {"var234", "undefined"},
/* 235 */ {"var235", "undefined"},
/* 236 */ {"var236", "undefined"},
/* 237 */ {"var237", "undefined"},
/* 238 */ {"var238", "undefined"},
/* 239 */ {"var239", "undefined"},
/* 240 */ {"var240", "undefined"},
/* 241 */ {"var241", "undefined"},
/* 242 */ {"var242", "undefined"},
/* 243 */ {"var243", "undefined"},
/* 244 */ {"var244", "undefined"},
/* 245 */ {"var245", "undefined"},
/* 246 */ {"var246", "undefined"},
/* 247 */ {"var247", "undefined"},
/* 248 */ {"var248", "undefined"},
/* 249 */ {"var249", "undefined"},
/* 250 */ {"var250", "undefined"},
/* 251 */ {"var251", "undefined"},
/* 252 */ {"var252", "undefined"},
/* 253 */ {"var253", "undefined"},
/* 254 */ {"var254", "undefined"},
/* 255 */ {"var255", "Indicates a missing value []"},
};
const struct ParmTable parm_table_ecmwf_133[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"2TPLM10", "2m temperature probability less than -10 C [%]"},
/* 2 */ {"2TPLM5", "2m temperature probability less than -5 C [%]"},
/* 3 */ {"2TPL0", "2m temperature probability less than 0 C [%]"},
/* 4 */ {"2TPL5", "2m temperature probability less than 5 C [%]"},
/* 5 */ {"2TPL10", "2m temperature probability less than 10 C [%]"},
/* 6 */ {"2TPG25", "2m temperature probability greater than 25 C [%]"},
/* 7 */ {"2TPG30", "2m temperature probability greater than 30 C [%]"},
/* 8 */ {"2TPG35", "2m temperature probability greater than 35 C [%]"},
/* 9 */ {"2TPG40", "2m temperature probability greater than 40 C [%]"},
/* 10 */ {"2TPG45", "2m temperature probability greater than 45 C [%]"},
/* 11 */ {"MN2TPLM10", "Minimum 2 metre temperature probability less than -10 C [%]"},
/* 12 */ {"MN2TPLM5", "Minimum 2 metre temperature probability less than -5 C [%]"},
/* 13 */ {"MN2TPL0", "Minimum 2 metre temperature probability less than 0 C [%]"},
/* 14 */ {"MN2TPL5", "Minimum 2 metre temperature probability less than 5 C [%]"},
/* 15 */ {"MN2TPL10", "Minimum 2 metre temperature probability less than 10 C [%]"},
/* 16 */ {"MX2TPG25", "Maximum 2 metre temperature probability greater than 25 C [%]"},
/* 17 */ {"MX2TPG30", "Maximum 2 metre temperature probability greater than 30 C [%]"},
/* 18 */ {"MX2TPG35", "Maximum 2 metre temperature probability greater than 35 C [%]"},
/* 19 */ {"MX2TPG40", "Maximum 2 metre temperature probability greater than 40 C [%]"},
/* 20 */ {"MX2TPG45", "Maximum 2 metre temperature probability greater than 45 C [%]"},
/* 21 */ {"10SPG10", "10 metre wind speed probability of at least 10 m/s [%]"},
/* 22 */ {"10SPG15", "10 metre wind speed probability of at least 15 m/s [%]"},
/* 23 */ {"10SPG20", "10 metre wind speed probability of at least 20 m/s [%]"},
/* 24 */ {"10SPG35", "10 metre wind speed probability of at least 35 m/s [%]"},
/* 25 */ {"10SPG50", "10 metre wind speed probability of at least 50 m/s [%]"},
/* 26 */ {"10GPG20", "10 metre wind gust probability of at least 20 m/s [%]"},
/* 27 */ {"10GPG35", "10 metre wind gust probability of at least 35 m/s [%]"},
/* 28 */ {"10GPG50", "10 metre wind gust probability of at least 50 m/s [%]"},
/* 29 */ {"10GPG75", "10 metre wind gust probability of at least 75 m/s [%]"},
/* 30 */ {"10GPG100", "10 metre wind gust probability of at least 100 m/s [%]"},
/* 31 */ {"TPPG1", "Total precipitation probability of at least 1 mm [%]"},
/* 32 */ {"TPPG5", "Total precipitation probability of at least 5 mm [%]"},
/* 33 */ {"TPPG10", "Total precipitation probability of at least 10 mm [%]"},
/* 34 */ {"TPPG20", "Total precipitation probability of at least 20 mm [%]"},
/* 35 */ {"TPPG40", "Total precipitation probability of at least 40 mm [%]"},
/* 36 */ {"TPPG60", "Total precipitation probability of at least 60 mm [%]"},
/* 37 */ {"TPPG80", "Total precipitation probability of at least 80 mm [%]"},
/* 38 */ {"TPPG100", "Total precipitation probability of at least 100 mm [%]"},
/* 39 */ {"TPPG150", "Total precipitation probability of at least 150 mm [%]"},
/* 40 */ {"TPPG200", "Total precipitation probability of at least 200 mm [%]"},
/* 41 */ {"TPPG300", "Total precipitation probability of at least 300 mm [%]"},
/* 42 */ {"SFPG1", "Snowfall probability of at least 1 mm [%]"},
/* 43 */ {"SFPG5", "Snowfall probability of at least 5 mm [%]"},
/* 44 */ {"SFPG10", "Snowfall probability of at least 10 mm [%]"},
/* 45 */ {"SFPG20", "Snowfall probability of at least 20 mm [%]"},
/* 46 */ {"SFPG40", "Snowfall probability of at least 40 mm [%]"},
/* 47 */ {"SFPG60", "Snowfall probability of at least 60 mm [%]"},
/* 48 */ {"SFPG80", "Snowfall probability of at least 80 mm [%]"},
/* 49 */ {"SFPG100", "Snowfall probability of at least 100 mm [%]"},
/* 50 */ {"SFPG150", "Snowfall probability of at least 150 mm [%]"},
/* 51 */ {"SFPG200", "Snowfall probability of at least 200 mm [%]"},
/* 52 */ {"SFPG300", "Snowfall probability of at least 300 mm [%]"},
/* 53 */ {"TCCPG10", "Total Cloud Cover probability greater than 10% [%]"},
/* 54 */ {"TCCPG20", "Total Cloud Cover probability greater than 20% [%]"},
/* 55 */ {"TCCPG30", "Total Cloud Cover probability greater than 30% [%]"},
/* 56 */ {"TCCPG40", "Total Cloud Cover probability greater than 40% [%]"},
/* 57 */ {"TCCPG50", "Total Cloud Cover probability greater than 50% [%]"},
/* 58 */ {"TCCPG60", "Total Cloud Cover probability greater than 60% [%]"},
/* 59 */ {"TCCPG70", "Total Cloud Cover probability greater than 70% [%]"},
/* 60 */ {"TCCPG80", "Total Cloud Cover probability greater than 80% [%]"},
/* 61 */ {"TCCPG90", "Total Cloud Cover probability greater than 90% [%]"},
/* 62 */ {"TCCPG99", "Total Cloud Cover probability greater than 99% [%]"},
/* 63 */ {"HCCPG10", "High Cloud Cover probability greater than 10% [%]"},
/* 64 */ {"HCCPG20", "High Cloud Cover probability greater than 20% [%]"},
/* 65 */ {"HCCPG30", "High Cloud Cover probability greater than 30% [%]"},
/* 66 */ {"HCCPG40", "High Cloud Cover probability greater than 40% [%]"},
/* 67 */ {"HCCPG50", "High Cloud Cover probability greater than 50% [%]"},
/* 68 */ {"HCCPG60", "High Cloud Cover probability greater than 60% [%]"},
/* 69 */ {"HCCPG70", "High Cloud Cover probability greater than 70% [%]"},
/* 70 */ {"HCCPG80", "High Cloud Cover probability greater than 80% [%]"},
/* 71 */ {"HCCPG90", "High Cloud Cover probability greater than 90% [%]"},
/* 72 */ {"HCCPG99", "High Cloud Cover probability greater than 99% [%]"},
/* 73 */ {"MCCPG10", "Medium Cloud Cover probability greater than 10% [%]"},
/* 74 */ {"MCCPG20", "Medium Cloud Cover probability greater than 20% [%]"},
/* 75 */ {"MCCPG30", "Medium Cloud Cover probability greater than 30% [%]"},
/* 76 */ {"MCCPG40", "Medium Cloud Cover probability greater than 40% [%]"},
/* 77 */ {"MCCPG50", "Medium Cloud Cover probability greater than 50% [%]"},
/* 78 */ {"MCCPG60", "Medium Cloud Cover probability greater than 60% [%]"},
/* 79 */ {"MCCPG70", "Medium Cloud Cover probability greater than 70% [%]"},
/* 80 */ {"MCCPG80", "Medium Cloud Cover probability greater than 80% [%]"},
/* 81 */ {"MCCPG90", "Medium Cloud Cover probability greater than 90% [%]"},
/* 82 */ {"MCCPG99", "Medium Cloud Cover probability greater than 99% [%]"},
/* 83 */ {"LCCPG10", "Low Cloud Cover probability greater than 10% [%]"},
/* 84 */ {"LCCPG20", "Low Cloud Cover probability greater than 20% [%]"},
/* 85 */ {"LCCPG30", "Low Cloud Cover probability greater than 30% [%]"},
/* 86 */ {"LCCPG40", "Low Cloud Cover probability greater than 40% [%]"},
/* 87 */ {"LCCPG50", "Low Cloud Cover probability greater than 50% [%]"},
/* 88 */ {"LCCPG60", "Low Cloud Cover probability greater than 60% [%]"},
/* 89 */ {"LCCPG70", "Low Cloud Cover probability greater than 70% [%]"},
/* 90 */ {"LCCPG80", "Low Cloud Cover probability greater than 80% [%]"},
/* 91 */ {"LCCPG90", "Low Cloud Cover probability greater than 90% [%]"},
/* 92 */ {"LCCPG99", "Low Cloud Cover probability greater than 99% [%]"},
/* 93 */ {"var93", "undefined"},
/* 94 */ {"var94", "undefined"},
/* 95 */ {"var95", "undefined"},
/* 96 */ {"var96", "undefined"},
/* 97 */ {"var97", "undefined"},
/* 98 */ {"var98", "undefined"},
/* 99 */ {"var99", "undefined"},
/* 100 */ {"var100", "undefined"},
/* 101 */ {"var101", "undefined"},
/* 102 */ {"var102", "undefined"},
/* 103 */ {"var103", "undefined"},
/* 104 */ {"var104", "undefined"},
/* 105 */ {"var105", "undefined"},
/* 106 */ {"var106", "undefined"},
/* 107 */ {"var107", "undefined"},
/* 108 */ {"var108", "undefined"},
/* 109 */ {"var109", "undefined"},
/* 110 */ {"var110", "undefined"},
/* 111 */ {"var111", "undefined"},
/* 112 */ {"var112", "undefined"},
/* 113 */ {"var113", "undefined"},
/* 114 */ {"var114", "undefined"},
/* 115 */ {"var115", "undefined"},
/* 116 */ {"var116", "undefined"},
/* 117 */ {"var117", "undefined"},
/* 118 */ {"var118", "undefined"},
/* 119 */ {"var119", "undefined"},
/* 120 */ {"var120", "undefined"},
/* 121 */ {"var121", "undefined"},
/* 122 */ {"var122", "undefined"},
/* 123 */ {"var123", "undefined"},
/* 124 */ {"var124", "undefined"},
/* 125 */ {"var125", "undefined"},
/* 126 */ {"var126", "undefined"},
/* 127 */ {"var127", "undefined"},
/* 128 */ {"var128", "undefined"},
/* 129 */ {"var129", "undefined"},
/* 130 */ {"var130", "undefined"},
/* 131 */ {"var131", "undefined"},
/* 132 */ {"var132", "undefined"},
/* 133 */ {"var133", "undefined"},
/* 134 */ {"var134", "undefined"},
/* 135 */ {"var135", "undefined"},
/* 136 */ {"var136", "undefined"},
/* 137 */ {"var137", "undefined"},
/* 138 */ {"var138", "undefined"},
/* 139 */ {"var139", "undefined"},
/* 140 */ {"var140", "undefined"},
/* 141 */ {"var141", "undefined"},
/* 142 */ {"var142", "undefined"},
/* 143 */ {"var143", "undefined"},
/* 144 */ {"var144", "undefined"},
/* 145 */ {"var145", "undefined"},
/* 146 */ {"var146", "undefined"},
/* 147 */ {"var147", "undefined"},
/* 148 */ {"var148", "undefined"},
/* 149 */ {"var149", "undefined"},
/* 150 */ {"var150", "undefined"},
/* 151 */ {"var151", "undefined"},
/* 152 */ {"var152", "undefined"},
/* 153 */ {"var153", "undefined"},
/* 154 */ {"var154", "undefined"},
/* 155 */ {"var155", "undefined"},
/* 156 */ {"var156", "undefined"},
/* 157 */ {"var157", "undefined"},
/* 158 */ {"var158", "undefined"},
/* 159 */ {"var159", "undefined"},
/* 160 */ {"var160", "undefined"},
/* 161 */ {"var161", "undefined"},
/* 162 */ {"var162", "undefined"},
/* 163 */ {"var163", "undefined"},
/* 164 */ {"var164", "undefined"},
/* 165 */ {"var165", "undefined"},
/* 166 */ {"var166", "undefined"},
/* 167 */ {"var167", "undefined"},
/* 168 */ {"var168", "undefined"},
/* 169 */ {"var169", "undefined"},
/* 170 */ {"var170", "undefined"},
/* 171 */ {"var171", "undefined"},
/* 172 */ {"var172", "undefined"},
/* 173 */ {"var173", "undefined"},
/* 174 */ {"var174", "undefined"},
/* 175 */ {"var175", "undefined"},
/* 176 */ {"var176", "undefined"},
/* 177 */ {"var177", "undefined"},
/* 178 */ {"var178", "undefined"},
/* 179 */ {"var179", "undefined"},
/* 180 */ {"var180", "undefined"},
/* 181 */ {"var181", "undefined"},
/* 182 */ {"var182", "undefined"},
/* 183 */ {"var183", "undefined"},
/* 184 */ {"var184", "undefined"},
/* 185 */ {"var185", "undefined"},
/* 186 */ {"var186", "undefined"},
/* 187 */ {"var187", "undefined"},
/* 188 */ {"var188", "undefined"},
/* 189 */ {"var189", "undefined"},
/* 190 */ {"var190", "undefined"},
/* 191 */ {"var191", "undefined"},
/* 192 */ {"var192", "undefined"},
/* 193 */ {"var193", "undefined"},
/* 194 */ {"var194", "undefined"},
/* 195 */ {"var195", "undefined"},
/* 196 */ {"var196", "undefined"},
/* 197 */ {"var197", "undefined"},
/* 198 */ {"var198", "undefined"},
/* 199 */ {"var199", "undefined"},
/* 200 */ {"var200", "undefined"},
/* 201 */ {"var201", "undefined"},
/* 202 */ {"var202", "undefined"},
/* 203 */ {"var203", "undefined"},
/* 204 */ {"var204", "undefined"},
/* 205 */ {"var205", "undefined"},
/* 206 */ {"var206", "undefined"},
/* 207 */ {"var207", "undefined"},
/* 208 */ {"var208", "undefined"},
/* 209 */ {"var209", "undefined"},
/* 210 */ {"var210", "undefined"},
/* 211 */ {"var211", "undefined"},
/* 212 */ {"var212", "undefined"},
/* 213 */ {"var213", "undefined"},
/* 214 */ {"var214", "undefined"},
/* 215 */ {"var215", "undefined"},
/* 216 */ {"var216", "undefined"},
/* 217 */ {"var217", "undefined"},
/* 218 */ {"var218", "undefined"},
/* 219 */ {"var219", "undefined"},
/* 220 */ {"var220", "undefined"},
/* 221 */ {"var221", "undefined"},
/* 222 */ {"var222", "undefined"},
/* 223 */ {"var223", "undefined"},
/* 224 */ {"var224", "undefined"},
/* 225 */ {"var225", "undefined"},
/* 226 */ {"var226", "undefined"},
/* 227 */ {"var227", "undefined"},
/* 228 */ {"var228", "undefined"},
/* 229 */ {"var229", "undefined"},
/* 230 */ {"var230", "undefined"},
/* 231 */ {"var231", "undefined"},
/* 232 */ {"var232", "undefined"},
/* 233 */ {"var233", "undefined"},
/* 234 */ {"var234", "undefined"},
/* 235 */ {"var235", "undefined"},
/* 236 */ {"var236", "undefined"},
/* 237 */ {"var237", "undefined"},
/* 238 */ {"var238", "undefined"},
/* 239 */ {"var239", "undefined"},
/* 240 */ {"var240", "undefined"},
/* 241 */ {"var241", "undefined"},
/* 242 */ {"var242", "undefined"},
/* 243 */ {"var243", "undefined"},
/* 244 */ {"var244", "undefined"},
/* 245 */ {"var245", "undefined"},
/* 246 */ {"var246", "undefined"},
/* 247 */ {"var247", "undefined"},
/* 248 */ {"var248", "undefined"},
/* 249 */ {"var249", "undefined"},
/* 250 */ {"var250", "undefined"},
/* 251 */ {"var251", "undefined"},
/* 252 */ {"var252", "undefined"},
/* 253 */ {"var253", "undefined"},
/* 254 */ {"var254", "undefined"},
/* 255 */ {"var255", "undefined"},
};
const struct ParmTable parm_table_ecmwf_140[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"var1", "undefined"},
/* 2 */ {"var2", "undefined"},
/* 3 */ {"var3", "undefined"},
/* 4 */ {"var4", "undefined"},
/* 5 */ {"var5", "undefined"},
/* 6 */ {"var6", "undefined"},
/* 7 */ {"var7", "undefined"},
/* 8 */ {"var8", "undefined"},
/* 9 */ {"var9", "undefined"},
/* 10 */ {"var10", "undefined"},
/* 11 */ {"var11", "undefined"},
/* 12 */ {"var12", "undefined"},
/* 13 */ {"var13", "undefined"},
/* 14 */ {"var14", "undefined"},
/* 15 */ {"var15", "undefined"},
/* 16 */ {"var16", "undefined"},
/* 17 */ {"var17", "undefined"},
/* 18 */ {"var18", "undefined"},
/* 19 */ {"var19", "undefined"},
/* 20 */ {"var20", "undefined"},
/* 21 */ {"var21", "undefined"},
/* 22 */ {"var22", "undefined"},
/* 23 */ {"var23", "undefined"},
/* 24 */ {"var24", "undefined"},
/* 25 */ {"var25", "undefined"},
/* 26 */ {"var26", "undefined"},
/* 27 */ {"var27", "undefined"},
/* 28 */ {"var28", "undefined"},
/* 29 */ {"var29", "undefined"},
/* 30 */ {"var30", "undefined"},
/* 31 */ {"var31", "undefined"},
/* 32 */ {"var32", "undefined"},
/* 33 */ {"var33", "undefined"},
/* 34 */ {"var34", "undefined"},
/* 35 */ {"var35", "undefined"},
/* 36 */ {"var36", "undefined"},
/* 37 */ {"var37", "undefined"},
/* 38 */ {"var38", "undefined"},
/* 39 */ {"var39", "undefined"},
/* 40 */ {"var40", "undefined"},
/* 41 */ {"var41", "undefined"},
/* 42 */ {"var42", "undefined"},
/* 43 */ {"var43", "undefined"},
/* 44 */ {"var44", "undefined"},
/* 45 */ {"var45", "undefined"},
/* 46 */ {"var46", "undefined"},
/* 47 */ {"var47", "undefined"},
/* 48 */ {"var48", "undefined"},
/* 49 */ {"var49", "undefined"},
/* 50 */ {"var50", "undefined"},
/* 51 */ {"var51", "undefined"},
/* 52 */ {"var52", "undefined"},
/* 53 */ {"var53", "undefined"},
/* 54 */ {"var54", "undefined"},
/* 55 */ {"var55", "undefined"},
/* 56 */ {"var56", "undefined"},
/* 57 */ {"var57", "undefined"},
/* 58 */ {"var58", "undefined"},
/* 59 */ {"var59", "undefined"},
/* 60 */ {"var60", "undefined"},
/* 61 */ {"var61", "undefined"},
/* 62 */ {"var62", "undefined"},
/* 63 */ {"var63", "undefined"},
/* 64 */ {"var64", "undefined"},
/* 65 */ {"var65", "undefined"},
/* 66 */ {"var66", "undefined"},
/* 67 */ {"var67", "undefined"},
/* 68 */ {"var68", "undefined"},
/* 69 */ {"var69", "undefined"},
/* 70 */ {"var70", "undefined"},
/* 71 */ {"var71", "undefined"},
/* 72 */ {"var72", "undefined"},
/* 73 */ {"var73", "undefined"},
/* 74 */ {"var74", "undefined"},
/* 75 */ {"var75", "undefined"},
/* 76 */ {"var76", "undefined"},
/* 77 */ {"var77", "undefined"},
/* 78 */ {"var78", "undefined"},
/* 79 */ {"var79", "undefined"},
/* 80 */ {"var80", "undefined"},
/* 81 */ {"var81", "undefined"},
/* 82 */ {"var82", "undefined"},
/* 83 */ {"var83", "undefined"},
/* 84 */ {"var84", "undefined"},
/* 85 */ {"var85", "undefined"},
/* 86 */ {"var86", "undefined"},
/* 87 */ {"var87", "undefined"},
/* 88 */ {"var88", "undefined"},
/* 89 */ {"var89", "undefined"},
/* 90 */ {"var90", "undefined"},
/* 91 */ {"var91", "undefined"},
/* 92 */ {"var92", "undefined"},
/* 93 */ {"var93", "undefined"},
/* 94 */ {"var94", "undefined"},
/* 95 */ {"var95", "undefined"},
/* 96 */ {"var96", "undefined"},
/* 97 */ {"var97", "undefined"},
/* 98 */ {"var98", "undefined"},
/* 99 */ {"var99", "undefined"},
/* 100 */ {"var100", "undefined"},
/* 101 */ {"var101", "undefined"},
/* 102 */ {"var102", "undefined"},
/* 103 */ {"var103", "undefined"},
/* 104 */ {"var104", "undefined"},
/* 105 */ {"var105", "undefined"},
/* 106 */ {"var106", "undefined"},
/* 107 */ {"var107", "undefined"},
/* 108 */ {"var108", "undefined"},
/* 109 */ {"var109", "undefined"},
/* 110 */ {"var110", "undefined"},
/* 111 */ {"var111", "undefined"},
/* 112 */ {"var112", "undefined"},
/* 113 */ {"var113", "undefined"},
/* 114 */ {"var114", "undefined"},
/* 115 */ {"var115", "undefined"},
/* 116 */ {"var116", "undefined"},
/* 117 */ {"var117", "undefined"},
/* 118 */ {"var118", "undefined"},
/* 119 */ {"var119", "undefined"},
/* 120 */ {"var120", "undefined"},
/* 121 */ {"var121", "undefined"},
/* 122 */ {"var122", "undefined"},
/* 123 */ {"var123", "undefined"},
/* 124 */ {"var124", "undefined"},
/* 125 */ {"var125", "undefined"},
/* 126 */ {"var126", "undefined"},
/* 127 */ {"var127", "undefined"},
/* 128 */ {"var128", "undefined"},
/* 129 */ {"var129", "undefined"},
/* 130 */ {"var130", "undefined"},
/* 131 */ {"var131", "undefined"},
/* 132 */ {"var132", "undefined"},
/* 133 */ {"var133", "undefined"},
/* 134 */ {"var134", "undefined"},
/* 135 */ {"var135", "undefined"},
/* 136 */ {"var136", "undefined"},
/* 137 */ {"var137", "undefined"},
/* 138 */ {"var138", "undefined"},
/* 139 */ {"var139", "undefined"},
/* 140 */ {"var140", "undefined"},
/* 141 */ {"var141", "undefined"},
/* 142 */ {"var142", "undefined"},
/* 143 */ {"var143", "undefined"},
/* 144 */ {"var144", "undefined"},
/* 145 */ {"var145", "undefined"},
/* 146 */ {"var146", "undefined"},
/* 147 */ {"var147", "undefined"},
/* 148 */ {"var148", "undefined"},
/* 149 */ {"var149", "undefined"},
/* 150 */ {"var150", "undefined"},
/* 151 */ {"var151", "undefined"},
/* 152 */ {"var152", "undefined"},
/* 153 */ {"var153", "undefined"},
/* 154 */ {"var154", "undefined"},
/* 155 */ {"var155", "undefined"},
/* 156 */ {"var156", "undefined"},
/* 157 */ {"var157", "undefined"},
/* 158 */ {"var158", "undefined"},
/* 159 */ {"var159", "undefined"},
/* 160 */ {"var160", "undefined"},
/* 161 */ {"var161", "undefined"},
/* 162 */ {"var162", "undefined"},
/* 163 */ {"var163", "undefined"},
/* 164 */ {"var164", "undefined"},
/* 165 */ {"var165", "undefined"},
/* 166 */ {"var166", "undefined"},
/* 167 */ {"var167", "undefined"},
/* 168 */ {"var168", "undefined"},
/* 169 */ {"var169", "undefined"},
/* 170 */ {"var170", "undefined"},
/* 171 */ {"var171", "undefined"},
/* 172 */ {"var172", "undefined"},
/* 173 */ {"var173", "undefined"},
/* 174 */ {"var174", "undefined"},
/* 175 */ {"var175", "undefined"},
/* 176 */ {"var176", "undefined"},
/* 177 */ {"var177", "undefined"},
/* 178 */ {"var178", "undefined"},
/* 179 */ {"var179", "undefined"},
/* 180 */ {"var180", "undefined"},
/* 181 */ {"var181", "undefined"},
/* 182 */ {"var182", "undefined"},
/* 183 */ {"var183", "undefined"},
/* 184 */ {"var184", "undefined"},
/* 185 */ {"var185", "undefined"},
/* 186 */ {"var186", "undefined"},
/* 187 */ {"var187", "undefined"},
/* 188 */ {"var188", "undefined"},
/* 189 */ {"var189", "undefined"},
/* 190 */ {"var190", "undefined"},
/* 191 */ {"var191", "undefined"},
/* 192 */ {"var192", "undefined"},
/* 193 */ {"var193", "undefined"},
/* 194 */ {"var194", "undefined"},
/* 195 */ {"var195", "undefined"},
/* 196 */ {"var196", "undefined"},
/* 197 */ {"var197", "undefined"},
/* 198 */ {"var198", "undefined"},
/* 199 */ {"var199", "undefined"},
/* 200 */ {"MAXSWH", "Maximum of significant wave height [m]"},
/* 201 */ {"var201", "undefined"},
/* 202 */ {"var202", "undefined"},
/* 203 */ {"var203", "undefined"},
/* 204 */ {"var204", "undefined"},
/* 205 */ {"var205", "undefined"},
/* 206 */ {"var206", "undefined"},
/* 207 */ {"var207", "undefined"},
/* 208 */ {"var208", "undefined"},
/* 209 */ {"var209", "undefined"},
/* 210 */ {"var210", "undefined"},
/* 211 */ {"var211", "undefined"},
/* 212 */ {"var212", "undefined"},
/* 213 */ {"var213", "undefined"},
/* 214 */ {"var214", "undefined"},
/* 215 */ {"UST", "U-component stokes drift [m s**-1]"},
/* 216 */ {"VST", "V-component stokes drift [m s**-1]"},
/* 217 */ {"TMAX", "Period corresponding to maximum individual wave height [s]"},
/* 218 */ {"HMAX", "Maximum individual wave height [m]"},
/* 219 */ {"WMB", "Model bathymetry [m]"},
/* 220 */ {"MP1", "Mean wave period based on first moment [s]"},
/* 221 */ {"MP2", "Mean wave period based on second moment [s]"},
/* 222 */ {"WDW", "Wave spectral directional width []"},
/* 223 */ {"P1WW", "Mean wave period based on first moment for wind waves [s]"},
/* 224 */ {"P2WW", "Mean wave period based on second moment for wind waves [s]"},
/* 225 */ {"DWWW", "Wave spectral directional width for wind waves []"},
/* 226 */ {"P1PS", "Mean wave period based on first moment for swell [s]"},
/* 227 */ {"P2PS", "Mean wave period based on second moment for swell [s]"},
/* 228 */ {"DWPS", "Wave spectral directional width for swell []"},
/* 229 */ {"SWH", "Significant wave height [m]"},
/* 230 */ {"MWD", "Mean wave direction [degrees]"},
/* 231 */ {"PP1D", "Peak period of 1D spectra [s]"},
/* 232 */ {"MWP", "Mean wave period [s]"},
/* 233 */ {"CDWW", "Coefficient of drag with waves []"},
/* 234 */ {"SHWW", "Significant height of wind waves [m]"},
/* 235 */ {"MDWW", "Mean direction of wind waves [degrees]"},
/* 236 */ {"MPWW", "Mean period of wind waves [s]"},
/* 237 */ {"SHTS", "Significant height of total swell [m]"},
/* 238 */ {"MDTS", "Mean direction of total swell [degrees]"},
/* 239 */ {"MPTS", "Mean period of total swell [s]"},
/* 240 */ {"SDHS", "Standard deviation wave height [m]"},
/* 241 */ {"MU10", "Mean of 10 metre wind speed [m s**-1]"},
/* 242 */ {"MDWI", "Mean wind direction [degrees]"},
/* 243 */ {"SDU", "Standard deviation of 10 metre wind speed [m s**-1]"},
/* 244 */ {"MSQS", "Mean square slope of waves [dimensionless]"},
/* 245 */ {"WIND", "10 metre wind speed [m s**-1]"},
/* 246 */ {"AWH", "Altimeter wave height [m]"},
/* 247 */ {"ACWH", "Altimeter corrected wave height [m]"},
/* 248 */ {"ARRC", "Altimeter range relative correction []"},
/* 249 */ {"DWI", "10 metre wind direction [degrees]"},
/* 250 */ {"2DSP", "2D wave spectra (multiple) [m**2 s radian**-1]"},
/* 251 */ {"2DFD", "2D wave spectra (single) [m**2 s radian**-1]"},
/* 252 */ {"WSK", "Wave spectral kurtosis []"},
/* 253 */ {"BFI", "Benjamin-Feir index []"},
/* 254 */ {"WSP", "Wave spectral peakedness [s**-1]"},
/* 255 */ {"var255", "Indicates a missing value []"},
};
const struct ParmTable parm_table_ecmwf_150[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"var1", "undefined"},
/* 2 */ {"var2", "undefined"},
/* 3 */ {"var3", "undefined"},
/* 4 */ {"var4", "undefined"},
/* 5 */ {"var5", "undefined"},
/* 6 */ {"var6", "undefined"},
/* 7 */ {"var7", "undefined"},
/* 8 */ {"var8", "undefined"},
/* 9 */ {"var9", "undefined"},
/* 10 */ {"var10", "undefined"},
/* 11 */ {"var11", "undefined"},
/* 12 */ {"var12", "undefined"},
/* 13 */ {"var13", "undefined"},
/* 14 */ {"var14", "undefined"},
/* 15 */ {"var15", "undefined"},
/* 16 */ {"var16", "undefined"},
/* 17 */ {"var17", "undefined"},
/* 18 */ {"var18", "undefined"},
/* 19 */ {"var19", "undefined"},
/* 20 */ {"var20", "undefined"},
/* 21 */ {"var21", "undefined"},
/* 22 */ {"var22", "undefined"},
/* 23 */ {"var23", "undefined"},
/* 24 */ {"var24", "undefined"},
/* 25 */ {"var25", "undefined"},
/* 26 */ {"var26", "undefined"},
/* 27 */ {"var27", "undefined"},
/* 28 */ {"var28", "undefined"},
/* 29 */ {"var29", "undefined"},
/* 30 */ {"var30", "undefined"},
/* 31 */ {"var31", "undefined"},
/* 32 */ {"var32", "undefined"},
/* 33 */ {"var33", "undefined"},
/* 34 */ {"var34", "undefined"},
/* 35 */ {"var35", "undefined"},
/* 36 */ {"var36", "undefined"},
/* 37 */ {"var37", "undefined"},
/* 38 */ {"var38", "undefined"},
/* 39 */ {"var39", "undefined"},
/* 40 */ {"var40", "undefined"},
/* 41 */ {"var41", "undefined"},
/* 42 */ {"var42", "undefined"},
/* 43 */ {"var43", "undefined"},
/* 44 */ {"var44", "undefined"},
/* 45 */ {"var45", "undefined"},
/* 46 */ {"var46", "undefined"},
/* 47 */ {"var47", "undefined"},
/* 48 */ {"var48", "undefined"},
/* 49 */ {"var49", "undefined"},
/* 50 */ {"var50", "undefined"},
/* 51 */ {"var51", "undefined"},
/* 52 */ {"var52", "undefined"},
/* 53 */ {"var53", "undefined"},
/* 54 */ {"var54", "undefined"},
/* 55 */ {"var55", "undefined"},
/* 56 */ {"var56", "undefined"},
/* 57 */ {"var57", "undefined"},
/* 58 */ {"var58", "undefined"},
/* 59 */ {"var59", "undefined"},
/* 60 */ {"var60", "undefined"},
/* 61 */ {"var61", "undefined"},
/* 62 */ {"var62", "undefined"},
/* 63 */ {"var63", "undefined"},
/* 64 */ {"var64", "undefined"},
/* 65 */ {"var65", "undefined"},
/* 66 */ {"var66", "undefined"},
/* 67 */ {"var67", "undefined"},
/* 68 */ {"var68", "undefined"},
/* 69 */ {"var69", "undefined"},
/* 70 */ {"var70", "undefined"},
/* 71 */ {"var71", "undefined"},
/* 72 */ {"var72", "undefined"},
/* 73 */ {"var73", "undefined"},
/* 74 */ {"var74", "undefined"},
/* 75 */ {"var75", "undefined"},
/* 76 */ {"var76", "undefined"},
/* 77 */ {"var77", "undefined"},
/* 78 */ {"var78", "undefined"},
/* 79 */ {"var79", "undefined"},
/* 80 */ {"var80", "undefined"},
/* 81 */ {"var81", "undefined"},
/* 82 */ {"var82", "undefined"},
/* 83 */ {"var83", "undefined"},
/* 84 */ {"var84", "undefined"},
/* 85 */ {"var85", "undefined"},
/* 86 */ {"var86", "undefined"},
/* 87 */ {"var87", "undefined"},
/* 88 */ {"var88", "undefined"},
/* 89 */ {"var89", "undefined"},
/* 90 */ {"var90", "undefined"},
/* 91 */ {"var91", "undefined"},
/* 92 */ {"var92", "undefined"},
/* 93 */ {"var93", "undefined"},
/* 94 */ {"var94", "undefined"},
/* 95 */ {"var95", "undefined"},
/* 96 */ {"var96", "undefined"},
/* 97 */ {"var97", "undefined"},
/* 98 */ {"var98", "undefined"},
/* 99 */ {"var99", "undefined"},
/* 100 */ {"var100", "undefined"},
/* 101 */ {"var101", "undefined"},
/* 102 */ {"var102", "undefined"},
/* 103 */ {"var103", "undefined"},
/* 104 */ {"var104", "undefined"},
/* 105 */ {"var105", "undefined"},
/* 106 */ {"var106", "undefined"},
/* 107 */ {"var107", "undefined"},
/* 108 */ {"var108", "undefined"},
/* 109 */ {"var109", "undefined"},
/* 110 */ {"var110", "undefined"},
/* 111 */ {"var111", "undefined"},
/* 112 */ {"var112", "undefined"},
/* 113 */ {"var113", "undefined"},
/* 114 */ {"var114", "undefined"},
/* 115 */ {"var115", "undefined"},
/* 116 */ {"var116", "undefined"},
/* 117 */ {"var117", "undefined"},
/* 118 */ {"var118", "undefined"},
/* 119 */ {"var119", "undefined"},
/* 120 */ {"var120", "undefined"},
/* 121 */ {"var121", "undefined"},
/* 122 */ {"var122", "undefined"},
/* 123 */ {"var123", "undefined"},
/* 124 */ {"var124", "undefined"},
/* 125 */ {"var125", "undefined"},
/* 126 */ {"var126", "undefined"},
/* 127 */ {"var127", "undefined"},
/* 128 */ {"var128", "undefined"},
/* 129 */ {"var129", "Ocean potential temperature [deg C]"},
/* 130 */ {"var130", "Ocean salinity [psu]"},
/* 131 */ {"var131", "Ocean potential density [kg m**-3 -1000]"},
/* 132 */ {"var132", "undefined"},
/* 133 */ {"var133", "Ocean U velocity [m s**-1]"},
/* 134 */ {"var134", "Ocean V velocity [m s**-1]"},
/* 135 */ {"var135", "Ocean W velocity [m s**-1]"},
/* 136 */ {"var136", "undefined"},
/* 137 */ {"var137", "Richardson number []"},
/* 138 */ {"var138", "undefined"},
/* 139 */ {"var139", "U*V product [m s**-2]"},
/* 140 */ {"var140", "U*T product [m s**-1 deg C]"},
/* 141 */ {"var141", "V*T product [m s**-1 deg C]"},
/* 142 */ {"var142", "U*U product [m s**-2]"},
/* 143 */ {"var143", "V*V product [m s**-2]"},
/* 144 */ {"var144", "UV - U~V~ [m s**-2]"},
/* 145 */ {"var145", "UT - U~T~ [m s**-1 deg C]"},
/* 146 */ {"var146", "VT - V~T~ [m s**-1 deg C]"},
/* 147 */ {"var147", "UU - U~U~ [m s**-2]"},
/* 148 */ {"var148", "VV - V~V~ [m s**-2]"},
/* 149 */ {"var149", "undefined"},
/* 150 */ {"var150", "undefined"},
/* 151 */ {"var151", "undefined"},
/* 152 */ {"var152", "Sea level [m]"},
/* 153 */ {"var153", "Barotropic stream function []"},
/* 154 */ {"var154", "Mixed layer depth [m]"},
/* 155 */ {"var155", "Depth [m]"},
/* 156 */ {"var156", "undefined"},
/* 157 */ {"var157", "undefined"},
/* 158 */ {"var158", "undefined"},
/* 159 */ {"var159", "undefined"},
/* 160 */ {"var160", "undefined"},
/* 161 */ {"var161", "undefined"},
/* 162 */ {"var162", "undefined"},
/* 163 */ {"var163", "undefined"},
/* 164 */ {"var164", "undefined"},
/* 165 */ {"var165", "undefined"},
/* 166 */ {"var166", "undefined"},
/* 167 */ {"var167", "undefined"},
/* 168 */ {"var168", "U stress [Pa]"},
/* 169 */ {"var169", "V stress [Pa]"},
/* 170 */ {"var170", "Turbulent kinetic energy input []"},
/* 171 */ {"var171", "Net surface heat flux []"},
/* 172 */ {"var172", "Surface solar radiation []"},
/* 173 */ {"var173", "P-E []"},
/* 174 */ {"var174", "undefined"},
/* 175 */ {"var175", "undefined"},
/* 176 */ {"var176", "undefined"},
/* 177 */ {"var177", "undefined"},
/* 178 */ {"var178", "undefined"},
/* 179 */ {"var179", "undefined"},
/* 180 */ {"var180", "Diagnosed sea surface temperature error [deg C]"},
/* 181 */ {"var181", "Heat flux correction [W m**-2]"},
/* 182 */ {"var182", "Observed sea surface temperature [deg C]"},
/* 183 */ {"var183", "Observed heat flux [W m**-2]"},
/* 184 */ {"var184", "undefined"},
/* 185 */ {"var185", "undefined"},
/* 186 */ {"var186", "undefined"},
/* 187 */ {"var187", "undefined"},
/* 188 */ {"var188", "undefined"},
/* 189 */ {"var189", "undefined"},
/* 190 */ {"var190", "undefined"},
/* 191 */ {"var191", "undefined"},
/* 192 */ {"var192", "undefined"},
/* 193 */ {"var193", "undefined"},
/* 194 */ {"var194", "undefined"},
/* 195 */ {"var195", "undefined"},
/* 196 */ {"var196", "undefined"},
/* 197 */ {"var197", "undefined"},
/* 198 */ {"var198", "undefined"},
/* 199 */ {"var199", "undefined"},
/* 200 */ {"var200", "undefined"},
/* 201 */ {"var201", "undefined"},
/* 202 */ {"var202", "undefined"},
/* 203 */ {"var203", "undefined"},
/* 204 */ {"var204", "undefined"},
/* 205 */ {"var205", "undefined"},
/* 206 */ {"var206", "undefined"},
/* 207 */ {"var207", "undefined"},
/* 208 */ {"var208", "undefined"},
/* 209 */ {"var209", "undefined"},
/* 210 */ {"var210", "undefined"},
/* 211 */ {"var211", "undefined"},
/* 212 */ {"var212", "undefined"},
/* 213 */ {"var213", "undefined"},
/* 214 */ {"var214", "undefined"},
/* 215 */ {"var215", "undefined"},
/* 216 */ {"var216", "undefined"},
/* 217 */ {"var217", "undefined"},
/* 218 */ {"var218", "undefined"},
/* 219 */ {"var219", "undefined"},
/* 220 */ {"var220", "undefined"},
/* 221 */ {"var221", "undefined"},
/* 222 */ {"var222", "undefined"},
/* 223 */ {"var223", "undefined"},
/* 224 */ {"var224", "undefined"},
/* 225 */ {"var225", "undefined"},
/* 226 */ {"var226", "undefined"},
/* 227 */ {"var227", "undefined"},
/* 228 */ {"var228", "undefined"},
/* 229 */ {"var229", "undefined"},
/* 230 */ {"var230", "undefined"},
/* 231 */ {"var231", "undefined"},
/* 232 */ {"var232", "undefined"},
/* 233 */ {"var233", "undefined"},
/* 234 */ {"var234", "undefined"},
/* 235 */ {"var235", "undefined"},
/* 236 */ {"var236", "undefined"},
/* 237 */ {"var237", "undefined"},
/* 238 */ {"var238", "undefined"},
/* 239 */ {"var239", "undefined"},
/* 240 */ {"var240", "undefined"},
/* 241 */ {"var241", "undefined"},
/* 242 */ {"var242", "undefined"},
/* 243 */ {"var243", "undefined"},
/* 244 */ {"var244", "undefined"},
/* 245 */ {"var245", "undefined"},
/* 246 */ {"var246", "undefined"},
/* 247 */ {"var247", "undefined"},
/* 248 */ {"var248", "undefined"},
/* 249 */ {"var249", "undefined"},
/* 250 */ {"var250", "undefined"},
/* 251 */ {"var251", "undefined"},
/* 252 */ {"var252", "undefined"},
/* 253 */ {"var253", "undefined"},
/* 254 */ {"var254", "undefined"},
/* 255 */ {"var255", "Indicates a missing value []"},
};
const struct ParmTable parm_table_ecmwf_151[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"var1", "undefined"},
/* 2 */ {"var2", "undefined"},
/* 3 */ {"var3", "undefined"},
/* 4 */ {"var4", "undefined"},
/* 5 */ {"var5", "undefined"},
/* 6 */ {"var6", "undefined"},
/* 7 */ {"var7", "undefined"},
/* 8 */ {"var8", "undefined"},
/* 9 */ {"var9", "undefined"},
/* 10 */ {"var10", "undefined"},
/* 11 */ {"var11", "undefined"},
/* 12 */ {"var12", "undefined"},
/* 13 */ {"var13", "undefined"},
/* 14 */ {"var14", "undefined"},
/* 15 */ {"var15", "undefined"},
/* 16 */ {"var16", "undefined"},
/* 17 */ {"var17", "undefined"},
/* 18 */ {"var18", "undefined"},
/* 19 */ {"var19", "undefined"},
/* 20 */ {"var20", "undefined"},
/* 21 */ {"var21", "undefined"},
/* 22 */ {"var22", "undefined"},
/* 23 */ {"var23", "undefined"},
/* 24 */ {"var24", "undefined"},
/* 25 */ {"var25", "undefined"},
/* 26 */ {"var26", "undefined"},
/* 27 */ {"var27", "undefined"},
/* 28 */ {"var28", "undefined"},
/* 29 */ {"var29", "undefined"},
/* 30 */ {"var30", "undefined"},
/* 31 */ {"var31", "undefined"},
/* 32 */ {"var32", "undefined"},
/* 33 */ {"var33", "undefined"},
/* 34 */ {"var34", "undefined"},
/* 35 */ {"var35", "undefined"},
/* 36 */ {"var36", "undefined"},
/* 37 */ {"var37", "undefined"},
/* 38 */ {"var38", "undefined"},
/* 39 */ {"var39", "undefined"},
/* 40 */ {"var40", "undefined"},
/* 41 */ {"var41", "undefined"},
/* 42 */ {"var42", "undefined"},
/* 43 */ {"var43", "undefined"},
/* 44 */ {"var44", "undefined"},
/* 45 */ {"var45", "undefined"},
/* 46 */ {"var46", "undefined"},
/* 47 */ {"var47", "undefined"},
/* 48 */ {"var48", "undefined"},
/* 49 */ {"var49", "undefined"},
/* 50 */ {"var50", "undefined"},
/* 51 */ {"var51", "undefined"},
/* 52 */ {"var52", "undefined"},
/* 53 */ {"var53", "undefined"},
/* 54 */ {"var54", "undefined"},
/* 55 */ {"var55", "undefined"},
/* 56 */ {"var56", "undefined"},
/* 57 */ {"var57", "undefined"},
/* 58 */ {"var58", "undefined"},
/* 59 */ {"var59", "undefined"},
/* 60 */ {"var60", "undefined"},
/* 61 */ {"var61", "undefined"},
/* 62 */ {"var62", "undefined"},
/* 63 */ {"var63", "undefined"},
/* 64 */ {"var64", "undefined"},
/* 65 */ {"var65", "undefined"},
/* 66 */ {"var66", "undefined"},
/* 67 */ {"var67", "undefined"},
/* 68 */ {"var68", "undefined"},
/* 69 */ {"var69", "undefined"},
/* 70 */ {"var70", "undefined"},
/* 71 */ {"var71", "undefined"},
/* 72 */ {"var72", "undefined"},
/* 73 */ {"var73", "undefined"},
/* 74 */ {"var74", "undefined"},
/* 75 */ {"var75", "undefined"},
/* 76 */ {"var76", "undefined"},
/* 77 */ {"var77", "undefined"},
/* 78 */ {"var78", "undefined"},
/* 79 */ {"var79", "undefined"},
/* 80 */ {"var80", "undefined"},
/* 81 */ {"var81", "undefined"},
/* 82 */ {"var82", "undefined"},
/* 83 */ {"var83", "undefined"},
/* 84 */ {"var84", "undefined"},
/* 85 */ {"var85", "undefined"},
/* 86 */ {"var86", "undefined"},
/* 87 */ {"var87", "undefined"},
/* 88 */ {"var88", "undefined"},
/* 89 */ {"var89", "undefined"},
/* 90 */ {"var90", "undefined"},
/* 91 */ {"var91", "undefined"},
/* 92 */ {"var92", "undefined"},
/* 93 */ {"var93", "undefined"},
/* 94 */ {"var94", "undefined"},
/* 95 */ {"var95", "undefined"},
/* 96 */ {"var96", "undefined"},
/* 97 */ {"var97", "undefined"},
/* 98 */ {"var98", "undefined"},
/* 99 */ {"var99", "undefined"},
/* 100 */ {"var100", "undefined"},
/* 101 */ {"var101", "undefined"},
/* 102 */ {"var102", "undefined"},
/* 103 */ {"var103", "undefined"},
/* 104 */ {"var104", "undefined"},
/* 105 */ {"var105", "undefined"},
/* 106 */ {"var106", "undefined"},
/* 107 */ {"var107", "undefined"},
/* 108 */ {"var108", "undefined"},
/* 109 */ {"var109", "undefined"},
/* 110 */ {"var110", "undefined"},
/* 111 */ {"var111", "undefined"},
/* 112 */ {"var112", "undefined"},
/* 113 */ {"var113", "undefined"},
/* 114 */ {"var114", "undefined"},
/* 115 */ {"var115", "undefined"},
/* 116 */ {"var116", "undefined"},
/* 117 */ {"var117", "undefined"},
/* 118 */ {"var118", "undefined"},
/* 119 */ {"var119", "undefined"},
/* 120 */ {"var120", "undefined"},
/* 121 */ {"var121", "undefined"},
/* 122 */ {"var122", "undefined"},
/* 123 */ {"var123", "undefined"},
/* 124 */ {"var124", "undefined"},
/* 125 */ {"var125", "undefined"},
/* 126 */ {"var126", "undefined"},
/* 127 */ {"var127", "undefined"},
/* 128 */ {"var128", "In situ Temperature [deg C]"},
/* 129 */ {"OCPT", "Ocean potential temperature [deg C]"},
/* 130 */ {"S", "Salinity [psu]"},
/* 131 */ {"OCU", "Ocean current zonal component [m s**-1]"},
/* 132 */ {"OCV", "Ocean current meridional component [m s**-1]"},
/* 133 */ {"OCW", "Ocean current vertical component [m s**-1]"},
/* 134 */ {"MST", "Modulus of strain rate tensor [s**-1]"},
/* 135 */ {"VVS", "Vertical viscosity [m**2 s**-1]"},
/* 136 */ {"VDF", "Vertical diffusivity [m**2 s**-1]"},
/* 137 */ {"DEP", "Bottom level Depth [m]"},
/* 138 */ {"STH", "Sigma-theta [kg m**-3]"},
/* 139 */ {"RN", "Richardson number []"},
/* 140 */ {"UV", "UV product [m**2 s**-2]"},
/* 141 */ {"UT", "UT product [m s**-1 degC]"},
/* 142 */ {"VT", "VT product [m s**-1 deg C]"},
/* 143 */ {"UU", "UU product [m**2 s**-2]"},
/* 144 */ {"VV", "VV product [m**2 s**-2]"},
/* 145 */ {"SL", "Sea level [m]"},
/* 146 */ {"SL_1", "Sea level previous timestep [m]"},
/* 147 */ {"BSF", "Barotropic stream function [m**3 s**-1]"},
/* 148 */ {"MLD", "Mixed layer depth [m]"},
/* 149 */ {"BTP", "Bottom Pressure (equivalent height) [m]"},
/* 150 */ {"SH", "Steric height [m]"},
/* 151 */ {"CRL", "Curl of Wind Stress [N m**-3]"},
/* 152 */ {"var152", "Divergence of wind stress [Nm**-3]"},
/* 153 */ {"TAX", "U stress [N m**-2]"},
/* 154 */ {"TAY", "V stress [N m**-2]"},
/* 155 */ {"TKI", "Turbulent kinetic energy input [W m**-2]"},
/* 156 */ {"NSF", "Net surface heat flux [W m**-2]"},
/* 157 */ {"ASR", "Absorbed solar radiation [W m**-2]"},
/* 158 */ {"PME", "Precipitation - evaporation [m s**-1]"},
/* 159 */ {"SST", "Specified sea surface temperature [deg C]"},
/* 160 */ {"SHF", "Specified surface heat flux [W m**-2]"},
/* 161 */ {"DTE", "Diagnosed sea surface temperature error [deg C]"},
/* 162 */ {"HFC", "Heat flux correction [W m**-2]"},
/* 163 */ {"20D", "20 degrees isotherm depth [m]"},
/* 164 */ {"TAV300", "Average potential temperature in the upper 300m [degrees C]"},
/* 165 */ {"UBA1", "Vertically integrated zonal velocity (previous time step) [m**2 s**-1]"},
/* 166 */ {"VBA1", "Vertically Integrated meridional velocity (previous time step) [m**2 s**-1]"},
/* 167 */ {"ZTR", "Vertically integrated zonal volume transport [m**2 s**-1]"},
/* 168 */ {"MTR", "Vertically integrated meridional volume transport [m**2 s**-1]"},
/* 169 */ {"ZHT", "Vertically integrated zonal heat transport [J m**-1 s**-1]"},
/* 170 */ {"MHT", "Vertically integrated meridional heat transport [J m**-1 s**-1]"},
/* 171 */ {"UMAX", "U velocity maximum [m s**-1]"},
/* 172 */ {"DUMAX", "Depth of the velocity maximum [m]"},
/* 173 */ {"SMAX", "Salinity maximum [psu]"},
/* 174 */ {"DSMAX", "Depth of salinity maximum [m]"},
/* 175 */ {"SAV300", "Average salinity in the upper 300m [psu]"},
/* 176 */ {"LDP", "Layer Thickness at scalar points [m]"},
/* 177 */ {"LDU", "Layer Thickness at vector points [m]"},
/* 178 */ {"PTI", "Potential temperature increment [deg C]"},
/* 179 */ {"PTAE", "Potential temperature analysis error [deg C]"},
/* 180 */ {"BPT", "Background potential temperature [deg C]"},
/* 181 */ {"APT", "Analysed potential temperature [deg C]"},
/* 182 */ {"PTBE", "Potential temperature background error [deg C]"},
/* 183 */ {"AS", "Analysed salinity [psu]"},
/* 184 */ {"SALI", "Salinity increment [psu]"},
/* 185 */ {"EBT", "Estimated Bias in Temperature [deg C]"},
/* 186 */ {"EBS", "Estimated Bias in Salinity [psu]"},
/* 187 */ {"UVI", "Zonal Velocity increment (from balance operator) [m/s per time step]"},
/* 188 */ {"VVI", "Meridional Velocity increment (from balance operator) []"},
/* 189 */ {"var189", "undefined"},
/* 190 */ {"SUBI", "Salinity increment (from salinity data) [psu per time step]"},
/* 191 */ {"SALE", "Salinity analysis error [psu]"},
/* 192 */ {"BSAL", "Background Salinity [psu]"},
/* 193 */ {"var193", "Reserved []"},
/* 194 */ {"SALBE", "Salinity background error [psu]"},
/* 195 */ {"var195", "undefined"},
/* 196 */ {"var196", "undefined"},
/* 197 */ {"var197", "undefined"},
/* 198 */ {"var198", "undefined"},
/* 199 */ {"EBTA", "Estimated temperature bias from assimilation [deg C]"},
/* 200 */ {"EBSA", "Estimated salinity bias from assimilation [psu]"},
/* 201 */ {"LTI", "Temperature increment from relaxation term [deg C per time step]"},
/* 202 */ {"LSI", "Salinity increment from relaxation term []"},
/* 203 */ {"BZPGA", "Bias in the zonal pressure gradient (applied) [Pa**m-1]"},
/* 204 */ {"BMPGA", "Bias in the meridional pressure gradient (applied) [Pa**m-1]"},
/* 205 */ {"EBTL", "Estimated temperature bias from relaxation [deg C]"},
/* 206 */ {"EBSL", "Estimated salinity bias from relaxation [psu]"},
/* 207 */ {"FGBT", "First guess bias in temperature [deg C]"},
/* 208 */ {"FGBS", "First guess bias in salinity [psu]"},
/* 209 */ {"BPA", "Applied bias in pressure [Pa]"},
/* 210 */ {"FGBP", "FG bias in pressure [Pa]"},
/* 211 */ {"PTA", "Bias in temperature(applied) [deg C]"},
/* 212 */ {"PSA", "Bias in salinity (applied) [psu]"},
/* 213 */ {"var213", "undefined"},
/* 214 */ {"var214", "undefined"},
/* 215 */ {"var215", "undefined"},
/* 216 */ {"var216", "undefined"},
/* 217 */ {"var217", "undefined"},
/* 218 */ {"var218", "undefined"},
/* 219 */ {"var219", "undefined"},
/* 220 */ {"var220", "undefined"},
/* 221 */ {"var221", "undefined"},
/* 222 */ {"var222", "undefined"},
/* 223 */ {"var223", "undefined"},
/* 224 */ {"var224", "undefined"},
/* 225 */ {"var225", "undefined"},
/* 226 */ {"var226", "undefined"},
/* 227 */ {"var227", "undefined"},
/* 228 */ {"var228", "undefined"},
/* 229 */ {"var229", "undefined"},
/* 230 */ {"var230", "undefined"},
/* 231 */ {"var231", "undefined"},
/* 232 */ {"var232", "undefined"},
/* 233 */ {"var233", "undefined"},
/* 234 */ {"var234", "undefined"},
/* 235 */ {"var235", "undefined"},
/* 236 */ {"var236", "undefined"},
/* 237 */ {"var237", "undefined"},
/* 238 */ {"var238", "undefined"},
/* 239 */ {"var239", "undefined"},
/* 240 */ {"var240", "undefined"},
/* 241 */ {"var241", "undefined"},
/* 242 */ {"var242", "undefined"},
/* 243 */ {"var243", "undefined"},
/* 244 */ {"var244", "undefined"},
/* 245 */ {"var245", "undefined"},
/* 246 */ {"var246", "undefined"},
/* 247 */ {"var247", "undefined"},
/* 248 */ {"var248", "undefined"},
/* 249 */ {"var249", "undefined"},
/* 250 */ {"var250", "undefined"},
/* 251 */ {"var251", "undefined"},
/* 252 */ {"var252", "undefined"},
/* 253 */ {"var253", "undefined"},
/* 254 */ {"var254", "undefined"},
/* 255 */ {"var255", " []"},
};
const struct ParmTable parm_table_ecmwf_160[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"var1", "undefined"},
/* 2 */ {"var2", "undefined"},
/* 3 */ {"var3", "undefined"},
/* 4 */ {"var4", "undefined"},
/* 5 */ {"var5", "undefined"},
/* 6 */ {"var6", "undefined"},
/* 7 */ {"var7", "undefined"},
/* 8 */ {"var8", "undefined"},
/* 9 */ {"var9", "undefined"},
/* 10 */ {"var10", "undefined"},
/* 11 */ {"var11", "undefined"},
/* 12 */ {"var12", "undefined"},
/* 13 */ {"var13", "undefined"},
/* 14 */ {"var14", "undefined"},
/* 15 */ {"var15", "undefined"},
/* 16 */ {"var16", "undefined"},
/* 17 */ {"var17", "undefined"},
/* 18 */ {"var18", "undefined"},
/* 19 */ {"var19", "undefined"},
/* 20 */ {"var20", "undefined"},
/* 21 */ {"var21", "undefined"},
/* 22 */ {"var22", "undefined"},
/* 23 */ {"var23", "undefined"},
/* 24 */ {"var24", "undefined"},
/* 25 */ {"var25", "undefined"},
/* 26 */ {"var26", "undefined"},
/* 27 */ {"var27", "undefined"},
/* 28 */ {"var28", "undefined"},
/* 29 */ {"var29", "undefined"},
/* 30 */ {"var30", "undefined"},
/* 31 */ {"var31", "undefined"},
/* 32 */ {"var32", "undefined"},
/* 33 */ {"var33", "undefined"},
/* 34 */ {"var34", "undefined"},
/* 35 */ {"var35", "undefined"},
/* 36 */ {"var36", "undefined"},
/* 37 */ {"var37", "undefined"},
/* 38 */ {"var38", "undefined"},
/* 39 */ {"var39", "undefined"},
/* 40 */ {"var40", "undefined"},
/* 41 */ {"var41", "undefined"},
/* 42 */ {"var42", "undefined"},
/* 43 */ {"var43", "undefined"},
/* 44 */ {"var44", "undefined"},
/* 45 */ {"var45", "undefined"},
/* 46 */ {"var46", "undefined"},
/* 47 */ {"var47", "undefined"},
/* 48 */ {"var48", "undefined"},
/* 49 */ {"10FG", "10 metre wind gust during averaging time [m s**-1]"},
/* 50 */ {"var50", "undefined"},
/* 51 */ {"var51", "undefined"},
/* 52 */ {"var52", "undefined"},
/* 53 */ {"var53", "undefined"},
/* 54 */ {"var54", "undefined"},
/* 55 */ {"var55", "undefined"},
/* 56 */ {"var56", "undefined"},
/* 57 */ {"var57", "undefined"},
/* 58 */ {"var58", "undefined"},
/* 59 */ {"var59", "undefined"},
/* 60 */ {"var60", "undefined"},
/* 61 */ {"var61", "undefined"},
/* 62 */ {"var62", "undefined"},
/* 63 */ {"var63", "undefined"},
/* 64 */ {"var64", "undefined"},
/* 65 */ {"var65", "undefined"},
/* 66 */ {"var66", "undefined"},
/* 67 */ {"var67", "undefined"},
/* 68 */ {"var68", "undefined"},
/* 69 */ {"var69", "undefined"},
/* 70 */ {"var70", "undefined"},
/* 71 */ {"var71", "undefined"},
/* 72 */ {"var72", "undefined"},
/* 73 */ {"var73", "undefined"},
/* 74 */ {"var74", "undefined"},
/* 75 */ {"var75", "undefined"},
/* 76 */ {"var76", "undefined"},
/* 77 */ {"var77", "undefined"},
/* 78 */ {"var78", "undefined"},
/* 79 */ {"var79", "undefined"},
/* 80 */ {"var80", "undefined"},
/* 81 */ {"var81", "undefined"},
/* 82 */ {"var82", "undefined"},
/* 83 */ {"var83", "undefined"},
/* 84 */ {"var84", "undefined"},
/* 85 */ {"var85", "undefined"},
/* 86 */ {"var86", "undefined"},
/* 87 */ {"var87", "undefined"},
/* 88 */ {"var88", "undefined"},
/* 89 */ {"var89", "undefined"},
/* 90 */ {"var90", "undefined"},
/* 91 */ {"var91", "undefined"},
/* 92 */ {"var92", "undefined"},
/* 93 */ {"var93", "undefined"},
/* 94 */ {"var94", "undefined"},
/* 95 */ {"var95", "undefined"},
/* 96 */ {"var96", "undefined"},
/* 97 */ {"var97", "undefined"},
/* 98 */ {"var98", "undefined"},
/* 99 */ {"var99", "undefined"},
/* 100 */ {"var100", "undefined"},
/* 101 */ {"var101", "undefined"},
/* 102 */ {"var102", "undefined"},
/* 103 */ {"var103", "undefined"},
/* 104 */ {"var104", "undefined"},
/* 105 */ {"var105", "undefined"},
/* 106 */ {"var106", "undefined"},
/* 107 */ {"var107", "undefined"},
/* 108 */ {"var108", "undefined"},
/* 109 */ {"var109", "undefined"},
/* 110 */ {"var110", "undefined"},
/* 111 */ {"var111", "undefined"},
/* 112 */ {"var112", "undefined"},
/* 113 */ {"var113", "undefined"},
/* 114 */ {"var114", "undefined"},
/* 115 */ {"var115", "undefined"},
/* 116 */ {"var116", "undefined"},
/* 117 */ {"var117", "undefined"},
/* 118 */ {"var118", "undefined"},
/* 119 */ {"var119", "undefined"},
/* 120 */ {"var120", "undefined"},
/* 121 */ {"var121", "undefined"},
/* 122 */ {"var122", "undefined"},
/* 123 */ {"var123", "undefined"},
/* 124 */ {"var124", "undefined"},
/* 125 */ {"var125", "undefined"},
/* 126 */ {"var126", "undefined"},
/* 127 */ {"AT", "Atmospheric tide []"},
/* 128 */ {"BV", "Budget values []"},
/* 129 */ {"Z", "Geopotential [m**2 s**-2]"},
/* 130 */ {"T", "Temperature [K]"},
/* 131 */ {"U", "U velocity [m s**-1]"},
/* 132 */ {"V", "V velocity [m s**-1]"},
/* 133 */ {"Q", "Specific humidity [kg kg**-1]"},
/* 134 */ {"SP", "Surface pressure [Pa]"},
/* 135 */ {"W", "Vertical velocity [Pa s**-1]"},
/* 136 */ {"TCW", "Total column water [kg m**-2]"},
/* 137 */ {"PWC", "Precipitable water content [kg m**-2]"},
/* 138 */ {"VO", "Vorticity (relative) [s**-1]"},
/* 139 */ {"STL1", "Soil temperature level 1 [K]"},
/* 140 */ {"SWL1", "Soil wetness level 1 [m]"},
/* 141 */ {"SD", "Snow depth [m of water]"},
/* 142 */ {"LSP", "Large-scale precipitation [kg m**-2 s**-1]"},
/* 143 */ {"CP", "Convective precipitation [kg m**-2 s**-1]"},
/* 144 */ {"SF", "Snowfall [kg m**-2 s**-1]"},
/* 145 */ {"BLD", "Boundary layer dissipation [W m**-2]"},
/* 146 */ {"SSHF", "Surface sensible heat flux [W m**-2]"},
/* 147 */ {"SLHF", "Surface latent heat flux [W m**-2]"},
/* 148 */ {"var148", "undefined"},
/* 149 */ {"var149", "undefined"},
/* 150 */ {"var150", "undefined"},
/* 151 */ {"MSL", "Mean sea level pressure [Pa]"},
/* 152 */ {"LNSP", "Logarithm of surface pressure []"},
/* 153 */ {"var153", "undefined"},
/* 154 */ {"var154", "undefined"},
/* 155 */ {"D", "Divergence [s**-1]"},
/* 156 */ {"GH", "Height [m]"},
/* 157 */ {"R", "Relative humidity [(0 - 1)]"},
/* 158 */ {"TSP", "Tendency of surface pressure [Pa s**-1]"},
/* 159 */ {"var159", "undefined"},
/* 160 */ {"var160", "undefined"},
/* 161 */ {"var161", "undefined"},
/* 162 */ {"var162", "undefined"},
/* 163 */ {"var163", "undefined"},
/* 164 */ {"TCC", "Total cloud cover [(0 - 1)]"},
/* 165 */ {"10U", "10 metre U wind component [m s**-1]"},
/* 166 */ {"10V", "10 metre V wind component [m s**-1]"},
/* 167 */ {"2T", "2 metre temperature [K]"},
/* 168 */ {"2D", "2 metre dewpoint temperature [K]"},
/* 169 */ {"var169", "undefined"},
/* 170 */ {"STL2", "Soil temperature level 2 [K]"},
/* 171 */ {"SWL2", "Soil wetness level 2 [m]"},
/* 172 */ {"LSM", "Land-sea mask [(0 - 1)]"},
/* 173 */ {"SR", "Surface roughness [m]"},
/* 174 */ {"AL", "Albedo [(0 - 1)]"},
/* 175 */ {"var175", "undefined"},
/* 176 */ {"SSR", "Surface solar radiation [W m**-2]"},
/* 177 */ {"STR", "Surface thermal radiation [W m**-2]"},
/* 178 */ {"TSR", "Top solar radiation [W m**-2]"},
/* 179 */ {"TTR", "Top thermal radiation [W m**-2]"},
/* 180 */ {"EWSS", "East-West surface stress [N m**-2 s**-1]"},
/* 181 */ {"NSSS", "North-South surface stress [N m**-2 s**-1]"},
/* 182 */ {"E", "Evaporation [kg m**-2 s**-1]"},
/* 183 */ {"STL3", "Soil temperature level 3 [K]"},
/* 184 */ {"SWL3", "Soil wetness level 3 [m]"},
/* 185 */ {"CCC", "Convective cloud cover [(0 - 1)]"},
/* 186 */ {"LCC", "Low cloud cover [(0 - 1)]"},
/* 187 */ {"MCC", "Medium cloud cover [(0 - 1)]"},
/* 188 */ {"HCC", "High cloud cover [(0 - 1)]"},
/* 189 */ {"var189", "undefined"},
/* 190 */ {"EWOV", "East-West component of sub-gridscale orographic variance [m**2]"},
/* 191 */ {"NSOV", "North-South component of sub-gridscale orographic variance [m**2]"},
/* 192 */ {"NWOV", "North-West/South-East component of sub-gridscale orographic variance [m**2]"},
/* 193 */ {"NEOV", "North-East/South-West component of sub-gridscale orographic variance [m**2]"},
/* 194 */ {"var194", "undefined"},
/* 195 */ {"LGWS", "Latitudinal component of gravity wave stress [N m**-2 s]"},
/* 196 */ {"MGWS", "Meridional component of gravity wave stress [N m**-2 s]"},
/* 197 */ {"GWD", "Gravity wave dissipation [W m**-2 s]"},
/* 198 */ {"SRC", "Skin reservoir content [m of water]"},
/* 199 */ {"VEG", "Percentage of vegetation [%]"},
/* 200 */ {"VSO", "Variance of sub-gridscale orography [m**2]"},
/* 201 */ {"MX2T", "Maximum temperature at 2 metres during averaging time [K]"},
/* 202 */ {"MN2T", "Minimium temperature at 2 metres during averaging time [K]"},
/* 203 */ {"var203", "undefined"},
/* 204 */ {"PAW", "Precipitation analysis weights []"},
/* 205 */ {"RO", "Runoff [kg m**-2 s**-1]"},
/* 206 */ {"ZZ", "Standard deviation of geopotential [m**2 s**-2]"},
/* 207 */ {"TZ", "Covariance of temperature and geopotential [K m**2 s**-2]"},
/* 208 */ {"TT", "Standard deviation of temperature [K]"},
/* 209 */ {"QZ", "Covariance of specific humidity and geopotential [m**2 s**-2]"},
/* 210 */ {"QT", "Covariance of specific humidity and temperature [K]"},
/* 211 */ {"QQ", "Standard deviation of specific humidity [(0 - 1)]"},
/* 212 */ {"UZ", "Covariance of U component and geopotential [m**3 s**-3]"},
/* 213 */ {"UT", "Covariance of U component and temperature [K m s**-1]"},
/* 214 */ {"UQ", "Covariance of U component and specific humidity [m s**-1]"},
/* 215 */ {"UU", "Standard deviation of U velocity [m s**-1]"},
/* 216 */ {"VZ", "Covariance of V component and geopotential [m**3 s**-3]"},
/* 217 */ {"VT", "Covariance of V component and temperature [K m s**-1]"},
/* 218 */ {"VQ", "Covariance of V component and specific humidity [m s**-1]"},
/* 219 */ {"VU", "Covariance of V component and U component [m**2 s**-2]"},
/* 220 */ {"VV", "Standard deviation of V component [m s**-1]"},
/* 221 */ {"WZ", "Covariance of W component and geopotential [Pa m**2 s**-3]"},
/* 222 */ {"WT", "Covariance of W component and temperature [K Pa s**-1]"},
/* 223 */ {"WQ", "Covariance of W component and specific humidity [Pa s**-1]"},
/* 224 */ {"WU", "Covariance of W component and U component [Pa m s**-2]"},
/* 225 */ {"WV", "Covariance of W component and V component [Pa m s**-2]"},
/* 226 */ {"WW", "Standard deviation of vertical velocity [Pa s**-1]"},
/* 227 */ {"var227", "undefined"},
/* 228 */ {"TP", "Total precipitation [m]"},
/* 229 */ {"IEWS", "Instantaneous X surface stress [N m**-2]"},
/* 230 */ {"INSS", "Instantaneous Y surface stress [N m**-2]"},
/* 231 */ {"ISHF", "Instantaneous surface heat flux [W m**-2]"},
/* 232 */ {"IE", "Instantaneous moisture flux [kg m**-2 s**-1]"},
/* 233 */ {"ASQ", "Apparent surface humidity [kg kg**-1]"},
/* 234 */ {"LSRH", "Logarithm of surface roughness length for heat []"},
/* 235 */ {"SKT", "Skin temperature [K]"},
/* 236 */ {"STL4", "Soil temperature level 4 [K]"},
/* 237 */ {"SWL4", "Soil wetness level 4 [m]"},
/* 238 */ {"TSN", "Temperature of snow layer [K]"},
/* 239 */ {"CSF", "Convective snowfall [kg m**-2 s**-1]"},
/* 240 */ {"LSF", "Large-scale snowfall [kg m**-2 s**-1]"},
/* 241 */ {"CLWCER", "Cloud liquid water content [kg kg**-1]"},
/* 242 */ {"CC", "Cloud cover [(0 - 1)]"},
/* 243 */ {"FAL", "Forecast albedo []"},
/* 244 */ {"FSR", "Forecast surface roughness [m]"},
/* 245 */ {"FLSR", "Forecast logarithm of surface roughness for heat []"},
/* 246 */ {"10WS", "10 metre wind speed [m s**-1]"},
/* 247 */ {"MOFL", "Momentum flux [N m**-2]"},
/* 248 */ {"var248", "undefined"},
/* 249 */ {"var249", "Gravity wave dissipation flux [W m**-2]"},
/* 250 */ {"var250", "undefined"},
/* 251 */ {"var251", "undefined"},
/* 252 */ {"var252", "undefined"},
/* 253 */ {"var253", "undefined"},
/* 254 */ {"HSD", "Heaviside beta function [(0 - 1)]"},
/* 255 */ {"var255", "Indicates a missing value []"},
};
const struct ParmTable parm_table_ecmwf_162[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"var1", "undefined"},
/* 2 */ {"var2", "undefined"},
/* 3 */ {"var3", "undefined"},
/* 4 */ {"var4", "undefined"},
/* 5 */ {"var5", "undefined"},
/* 6 */ {"var6", "undefined"},
/* 7 */ {"var7", "undefined"},
/* 8 */ {"var8", "undefined"},
/* 9 */ {"var9", "undefined"},
/* 10 */ {"var10", "undefined"},
/* 11 */ {"var11", "undefined"},
/* 12 */ {"var12", "undefined"},
/* 13 */ {"var13", "undefined"},
/* 14 */ {"var14", "undefined"},
/* 15 */ {"var15", "undefined"},
/* 16 */ {"var16", "undefined"},
/* 17 */ {"var17", "undefined"},
/* 18 */ {"var18", "undefined"},
/* 19 */ {"var19", "undefined"},
/* 20 */ {"var20", "undefined"},
/* 21 */ {"var21", "undefined"},
/* 22 */ {"var22", "undefined"},
/* 23 */ {"var23", "undefined"},
/* 24 */ {"var24", "undefined"},
/* 25 */ {"var25", "undefined"},
/* 26 */ {"var26", "undefined"},
/* 27 */ {"var27", "undefined"},
/* 28 */ {"var28", "undefined"},
/* 29 */ {"var29", "undefined"},
/* 30 */ {"var30", "undefined"},
/* 31 */ {"var31", "undefined"},
/* 32 */ {"var32", "undefined"},
/* 33 */ {"var33", "undefined"},
/* 34 */ {"var34", "undefined"},
/* 35 */ {"var35", "undefined"},
/* 36 */ {"var36", "undefined"},
/* 37 */ {"var37", "undefined"},
/* 38 */ {"var38", "undefined"},
/* 39 */ {"var39", "undefined"},
/* 40 */ {"var40", "undefined"},
/* 41 */ {"var41", "undefined"},
/* 42 */ {"var42", "undefined"},
/* 43 */ {"var43", "undefined"},
/* 44 */ {"var44", "undefined"},
/* 45 */ {"var45", "undefined"},
/* 46 */ {"var46", "undefined"},
/* 47 */ {"var47", "undefined"},
/* 48 */ {"var48", "undefined"},
/* 49 */ {"var49", "undefined"},
/* 50 */ {"var50", "undefined"},
/* 51 */ {"var51", "Surface geopotential [m**2 s**-2]"},
/* 52 */ {"var52", "Surface pressure [Pa]"},
/* 53 */ {"var53", "Vertical integral of mass of atmosphere [kg m**-2]"},
/* 54 */ {"var54", "Vertical integral of temperature [K kg m**-2]"},
/* 55 */ {"var55", "Vertical integral of total column water vapour [kg m**-2]"},
/* 56 */ {"var56", "Vertical integral of total column liquid cloud water [kg m**-2]"},
/* 57 */ {"var57", "Vertical integral of total column frozen cloud water [kg m**-2]"},
/* 58 */ {"var58", "Vertical integral of total column ozone [kg m**-2]"},
/* 59 */ {"var59", "Vertical integral of kinetic energy [J m**-2]"},
/* 60 */ {"var60", "Vertical integral of thermal energy [J m**-2]"},
/* 61 */ {"var61", "Vertical integral of dry static energy [J m**-2]"},
/* 62 */ {"var62", "Vertical integral of moist static energy [J m**-2]"},
/* 63 */ {"var63", "Vertical integral of total energy [J m**-2]"},
/* 64 */ {"var64", "Vertical integral of energy conversion [W m**-2]"},
/* 65 */ {"var65", "Vertical integral of eastward mass flux [kg m**-1 s**-1]"},
/* 66 */ {"var66", "Vertical integral of northward mass flux [kg m**-1 s**-1]"},
/* 67 */ {"var67", "Vertical integral of eastward kinetic energy flux [W m**-2]"},
/* 68 */ {"var68", "Vertical integral of northward kinetic energy flux [W m**-2]"},
/* 69 */ {"var69", "Vertical integral of eastward heat flux [W m**-2]"},
/* 70 */ {"var70", "Vertical integral of northward heat flux [W m**-2]"},
/* 71 */ {"var71", "Vertical integral of eastward water vapour flux [kg m**-1 s**-1]"},
/* 72 */ {"var72", "Vertical integral of northward water vapour flux [kg m**-1 s**-1]"},
/* 73 */ {"var73", "Vertical integral of eastward geopotential flux [W m**-2]"},
/* 74 */ {"var74", "Vertical integral of northward geopotential flux [W m**-2]"},
/* 75 */ {"var75", "Vertical integral of eastward total energy flux [W m**-2]"},
/* 76 */ {"var76", "Vertical integral of northward total energy flux [W m**-2]"},
/* 77 */ {"var77", "Vertical integral of eastward ozone flux [kg m**-1 s**-1]"},
/* 78 */ {"var78", "Vertical integral of northward ozone flux [kg m**-1 s**-1]"},
/* 79 */ {"var79", "undefined"},
/* 80 */ {"var80", "undefined"},
/* 81 */ {"var81", "Vertical integral of divergence of mass flux [kg m**-2 s**-1]"},
/* 82 */ {"var82", "Vertical integral of divergence of kinetic energy flux [W m**-2]"},
/* 83 */ {"var83", "Vertical integral of divergence of thermal energy flux [W m**-2]"},
/* 84 */ {"var84", "Vertical integral of divergence of moisture flux [kg m**-2 s**-1]"},
/* 85 */ {"var85", "Vertical integral of divergence of geopotential flux [W m**-2]"},
/* 86 */ {"var86", "Vertical integral of divergence of total energy flux [W m**-2]"},
/* 87 */ {"var87", "Vertical integral of divergence of ozone flux [kg m**-2 s**-1]"},
/* 88 */ {"var88", "undefined"},
/* 89 */ {"var89", "undefined"},
/* 90 */ {"var90", "undefined"},
/* 91 */ {"var91", "undefined"},
/* 92 */ {"var92", "undefined"},
/* 93 */ {"var93", "undefined"},
/* 94 */ {"var94", "undefined"},
/* 95 */ {"var95", "undefined"},
/* 96 */ {"var96", "undefined"},
/* 97 */ {"var97", "undefined"},
/* 98 */ {"var98", "undefined"},
/* 99 */ {"var99", "undefined"},
/* 100 */ {"var100", "Tendency of short wave radiation [K]"},
/* 101 */ {"var101", "Tendency of long wave radiation [K]"},
/* 102 */ {"var102", "Tendency of clear sky short wave radiation [K]"},
/* 103 */ {"var103", "Tendency of clear sky long wave radiation [K]"},
/* 104 */ {"var104", "Updraught mass flux [kg m**-2]"},
/* 105 */ {"var105", "Downdraught mass flux [kg m**-2]"},
/* 106 */ {"var106", "Updraught detrainment rate [kg m**-3]"},
/* 107 */ {"var107", "Downdraught detrainment rate [kg m**-3]"},
/* 108 */ {"var108", "Total precipitation flux [kg m**-2]"},
/* 109 */ {"var109", "Turbulent diffusion coefficient for heat [m**2]"},
/* 110 */ {"var110", "Tendency of temperature due to physics [K]"},
/* 111 */ {"var111", "Tendency of specific humidity due to physics [kg kg**-1]"},
/* 112 */ {"var112", "Tendency of u component due to physics [m s**-1]"},
/* 113 */ {"var113", "Tendency of v component due to physics [m s**-1]"},
/* 114 */ {"var114", "undefined"},
/* 115 */ {"var115", "undefined"},
/* 116 */ {"var116", "undefined"},
/* 117 */ {"var117", "undefined"},
/* 118 */ {"var118", "undefined"},
/* 119 */ {"var119", "undefined"},
/* 120 */ {"var120", "undefined"},
/* 121 */ {"var121", "undefined"},
/* 122 */ {"var122", "undefined"},
/* 123 */ {"var123", "undefined"},
/* 124 */ {"var124", "undefined"},
/* 125 */ {"var125", "undefined"},
/* 126 */ {"var126", "undefined"},
/* 127 */ {"var127", "undefined"},
/* 128 */ {"var128", "undefined"},
/* 129 */ {"var129", "undefined"},
/* 130 */ {"var130", "undefined"},
/* 131 */ {"var131", "undefined"},
/* 132 */ {"var132", "undefined"},
/* 133 */ {"var133", "undefined"},
/* 134 */ {"var134", "undefined"},
/* 135 */ {"var135", "undefined"},
/* 136 */ {"var136", "undefined"},
/* 137 */ {"var137", "undefined"},
/* 138 */ {"var138", "undefined"},
/* 139 */ {"var139", "undefined"},
/* 140 */ {"var140", "undefined"},
/* 141 */ {"var141", "undefined"},
/* 142 */ {"var142", "undefined"},
/* 143 */ {"var143", "undefined"},
/* 144 */ {"var144", "undefined"},
/* 145 */ {"var145", "undefined"},
/* 146 */ {"var146", "undefined"},
/* 147 */ {"var147", "undefined"},
/* 148 */ {"var148", "undefined"},
/* 149 */ {"var149", "undefined"},
/* 150 */ {"var150", "undefined"},
/* 151 */ {"var151", "undefined"},
/* 152 */ {"var152", "undefined"},
/* 153 */ {"var153", "undefined"},
/* 154 */ {"var154", "undefined"},
/* 155 */ {"var155", "undefined"},
/* 156 */ {"var156", "undefined"},
/* 157 */ {"var157", "undefined"},
/* 158 */ {"var158", "undefined"},
/* 159 */ {"var159", "undefined"},
/* 160 */ {"var160", "undefined"},
/* 161 */ {"var161", "undefined"},
/* 162 */ {"var162", "undefined"},
/* 163 */ {"var163", "undefined"},
/* 164 */ {"var164", "undefined"},
/* 165 */ {"var165", "undefined"},
/* 166 */ {"var166", "undefined"},
/* 167 */ {"var167", "undefined"},
/* 168 */ {"var168", "undefined"},
/* 169 */ {"var169", "undefined"},
/* 170 */ {"var170", "undefined"},
/* 171 */ {"var171", "undefined"},
/* 172 */ {"var172", "undefined"},
/* 173 */ {"var173", "undefined"},
/* 174 */ {"var174", "undefined"},
/* 175 */ {"var175", "undefined"},
/* 176 */ {"var176", "undefined"},
/* 177 */ {"var177", "undefined"},
/* 178 */ {"var178", "undefined"},
/* 179 */ {"var179", "undefined"},
/* 180 */ {"var180", "undefined"},
/* 181 */ {"var181", "undefined"},
/* 182 */ {"var182", "undefined"},
/* 183 */ {"var183", "undefined"},
/* 184 */ {"var184", "undefined"},
/* 185 */ {"var185", "undefined"},
/* 186 */ {"var186", "undefined"},
/* 187 */ {"var187", "undefined"},
/* 188 */ {"var188", "undefined"},
/* 189 */ {"var189", "undefined"},
/* 190 */ {"var190", "undefined"},
/* 191 */ {"var191", "undefined"},
/* 192 */ {"var192", "undefined"},
/* 193 */ {"var193", "undefined"},
/* 194 */ {"var194", "undefined"},
/* 195 */ {"var195", "undefined"},
/* 196 */ {"var196", "undefined"},
/* 197 */ {"var197", "undefined"},
/* 198 */ {"var198", "undefined"},
/* 199 */ {"var199", "undefined"},
/* 200 */ {"var200", "undefined"},
/* 201 */ {"var201", "undefined"},
/* 202 */ {"var202", "undefined"},
/* 203 */ {"var203", "undefined"},
/* 204 */ {"var204", "undefined"},
/* 205 */ {"var205", "undefined"},
/* 206 */ {"var206", "Variance of geopotential [m**4 s**-4]"},
/* 207 */ {"var207", "Covariance of geopotential/temperature [m**2 K s**-2]"},
/* 208 */ {"var208", "Variance of temperature [K**2]"},
/* 209 */ {"var209", "Covariance of geopotential/specific humidity [m**2 s**-2]"},
/* 210 */ {"var210", "Covariance of temperature/specific humidity [K]"},
/* 211 */ {"var211", "Variance of specific humidity []"},
/* 212 */ {"var212", "Covariance of u component/geopotential [M**3 s**-3]"},
/* 213 */ {"var213", "Covariance of u component/temperature [m s**-1 K]"},
/* 214 */ {"var214", "Covariance of u component/specific humidity [m s**-1]"},
/* 215 */ {"var215", "Variance of u component [m**2 s**-2]"},
/* 216 */ {"var216", "Covariance of v component/geopotential [M**3 s**-3]"},
/* 217 */ {"var217", "Covariance of v component/temperaure [m s**-1 K]"},
/* 218 */ {"var218", "Covariance of v component/specific humidity [m s**-1]"},
/* 219 */ {"var219", "Covariance of v component/u component [m**2 s**-2]"},
/* 220 */ {"var220", "Variance of v component [m**2 s**-2]"},
/* 221 */ {"var221", "Covariance of omega/geopotential [m**2 Pa s**-3]"},
/* 222 */ {"var222", "Covariance of omega/temperature [Pa s**-1 K]"},
/* 223 */ {"var223", "Covariance of omega/specific humidity [Pa s**-1]"},
/* 224 */ {"var224", "Covariance of omega/u component [m Pa s**-2]"},
/* 225 */ {"var225", "Covariance of omega/v component [m Pa s**-2]"},
/* 226 */ {"var226", "Variance of omega [Pa**2 s**-2]"},
/* 227 */ {"var227", "Variance of surface pressure [Pa**2]"},
/* 228 */ {"var228", "undefined"},
/* 229 */ {"var229", "Variance of relative humidity [dimensionless]"},
/* 230 */ {"var230", "Covariance of u component/ozone [m s**-1]"},
/* 231 */ {"var231", "Covariance of v component/ozone [m s**-1]"},
/* 232 */ {"var232", "Covariance of omega/ozone [Pa s**-1]"},
/* 233 */ {"var233", "Variance of ozone [dimensionless]"},
/* 234 */ {"var234", "undefined"},
/* 235 */ {"var235", "undefined"},
/* 236 */ {"var236", "undefined"},
/* 237 */ {"var237", "undefined"},
/* 238 */ {"var238", "undefined"},
/* 239 */ {"var239", "undefined"},
/* 240 */ {"var240", "undefined"},
/* 241 */ {"var241", "undefined"},
/* 242 */ {"var242", "undefined"},
/* 243 */ {"var243", "undefined"},
/* 244 */ {"var244", "undefined"},
/* 245 */ {"var245", "undefined"},
/* 246 */ {"var246", "undefined"},
/* 247 */ {"var247", "undefined"},
/* 248 */ {"var248", "undefined"},
/* 249 */ {"var249", "undefined"},
/* 250 */ {"var250", "undefined"},
/* 251 */ {"var251", "undefined"},
/* 252 */ {"var252", "undefined"},
/* 253 */ {"var253", "undefined"},
/* 254 */ {"var254", "undefined"},
/* 255 */ {"var255", "Indicates a missing value []"},
};
const struct ParmTable parm_table_ecmwf_170[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"var1", "undefined"},
/* 2 */ {"var2", "undefined"},
/* 3 */ {"var3", "undefined"},
/* 4 */ {"var4", "undefined"},
/* 5 */ {"var5", "undefined"},
/* 6 */ {"var6", "undefined"},
/* 7 */ {"var7", "undefined"},
/* 8 */ {"var8", "undefined"},
/* 9 */ {"var9", "undefined"},
/* 10 */ {"var10", "undefined"},
/* 11 */ {"var11", "undefined"},
/* 12 */ {"var12", "undefined"},
/* 13 */ {"var13", "undefined"},
/* 14 */ {"var14", "undefined"},
/* 15 */ {"var15", "undefined"},
/* 16 */ {"var16", "undefined"},
/* 17 */ {"var17", "undefined"},
/* 18 */ {"var18", "undefined"},
/* 19 */ {"var19", "undefined"},
/* 20 */ {"var20", "undefined"},
/* 21 */ {"var21", "undefined"},
/* 22 */ {"var22", "undefined"},
/* 23 */ {"var23", "undefined"},
/* 24 */ {"var24", "undefined"},
/* 25 */ {"var25", "undefined"},
/* 26 */ {"var26", "undefined"},
/* 27 */ {"var27", "undefined"},
/* 28 */ {"var28", "undefined"},
/* 29 */ {"var29", "undefined"},
/* 30 */ {"var30", "undefined"},
/* 31 */ {"var31", "undefined"},
/* 32 */ {"var32", "undefined"},
/* 33 */ {"var33", "undefined"},
/* 34 */ {"var34", "undefined"},
/* 35 */ {"var35", "undefined"},
/* 36 */ {"var36", "undefined"},
/* 37 */ {"var37", "undefined"},
/* 38 */ {"var38", "undefined"},
/* 39 */ {"var39", "undefined"},
/* 40 */ {"var40", "undefined"},
/* 41 */ {"var41", "undefined"},
/* 42 */ {"var42", "undefined"},
/* 43 */ {"var43", "undefined"},
/* 44 */ {"var44", "undefined"},
/* 45 */ {"var45", "undefined"},
/* 46 */ {"var46", "undefined"},
/* 47 */ {"var47", "undefined"},
/* 48 */ {"var48", "undefined"},
/* 49 */ {"var49", "undefined"},
/* 50 */ {"var50", "undefined"},
/* 51 */ {"var51", "undefined"},
/* 52 */ {"var52", "undefined"},
/* 53 */ {"var53", "undefined"},
/* 54 */ {"var54", "undefined"},
/* 55 */ {"var55", "undefined"},
/* 56 */ {"var56", "undefined"},
/* 57 */ {"var57", "undefined"},
/* 58 */ {"var58", "undefined"},
/* 59 */ {"var59", "undefined"},
/* 60 */ {"var60", "undefined"},
/* 61 */ {"var61", "undefined"},
/* 62 */ {"var62", "undefined"},
/* 63 */ {"var63", "undefined"},
/* 64 */ {"var64", "undefined"},
/* 65 */ {"var65", "undefined"},
/* 66 */ {"var66", "undefined"},
/* 67 */ {"var67", "undefined"},
/* 68 */ {"var68", "undefined"},
/* 69 */ {"var69", "undefined"},
/* 70 */ {"var70", "undefined"},
/* 71 */ {"var71", "undefined"},
/* 72 */ {"var72", "undefined"},
/* 73 */ {"var73", "undefined"},
/* 74 */ {"var74", "undefined"},
/* 75 */ {"var75", "undefined"},
/* 76 */ {"var76", "undefined"},
/* 77 */ {"var77", "undefined"},
/* 78 */ {"var78", "undefined"},
/* 79 */ {"var79", "undefined"},
/* 80 */ {"var80", "undefined"},
/* 81 */ {"var81", "undefined"},
/* 82 */ {"var82", "undefined"},
/* 83 */ {"var83", "undefined"},
/* 84 */ {"var84", "undefined"},
/* 85 */ {"var85", "undefined"},
/* 86 */ {"var86", "undefined"},
/* 87 */ {"var87", "undefined"},
/* 88 */ {"var88", "undefined"},
/* 89 */ {"var89", "undefined"},
/* 90 */ {"var90", "undefined"},
/* 91 */ {"var91", "undefined"},
/* 92 */ {"var92", "undefined"},
/* 93 */ {"var93", "undefined"},
/* 94 */ {"var94", "undefined"},
/* 95 */ {"var95", "undefined"},
/* 96 */ {"var96", "undefined"},
/* 97 */ {"var97", "undefined"},
/* 98 */ {"var98", "undefined"},
/* 99 */ {"var99", "undefined"},
/* 100 */ {"var100", "undefined"},
/* 101 */ {"var101", "undefined"},
/* 102 */ {"var102", "undefined"},
/* 103 */ {"var103", "undefined"},
/* 104 */ {"var104", "undefined"},
/* 105 */ {"var105", "undefined"},
/* 106 */ {"var106", "undefined"},
/* 107 */ {"var107", "undefined"},
/* 108 */ {"var108", "undefined"},
/* 109 */ {"var109", "undefined"},
/* 110 */ {"var110", "undefined"},
/* 111 */ {"var111", "undefined"},
/* 112 */ {"var112", "undefined"},
/* 113 */ {"var113", "undefined"},
/* 114 */ {"var114", "undefined"},
/* 115 */ {"var115", "undefined"},
/* 116 */ {"var116", "undefined"},
/* 117 */ {"var117", "undefined"},
/* 118 */ {"var118", "undefined"},
/* 119 */ {"var119", "undefined"},
/* 120 */ {"var120", "undefined"},
/* 121 */ {"var121", "undefined"},
/* 122 */ {"var122", "undefined"},
/* 123 */ {"var123", "undefined"},
/* 124 */ {"var124", "undefined"},
/* 125 */ {"var125", "undefined"},
/* 126 */ {"var126", "undefined"},
/* 127 */ {"var127", "undefined"},
/* 128 */ {"var128", "undefined"},
/* 129 */ {"Z", "Geopotential [m**2 s**-2]"},
/* 130 */ {"T", "Temperature [K]"},
/* 131 */ {"U", "U velocity [m s**-1]"},
/* 132 */ {"V", "V velocity [m s**-1]"},
/* 133 */ {"var133", "undefined"},
/* 134 */ {"var134", "undefined"},
/* 135 */ {"var135", "undefined"},
/* 136 */ {"var136", "undefined"},
/* 137 */ {"var137", "undefined"},
/* 138 */ {"VO", "Vorticity (relative) [s**-1]"},
/* 139 */ {"var139", "undefined"},
/* 140 */ {"SWL1", "Soil wetness level 1 [m]"},
/* 141 */ {"SD", "Snow depth [m of water equivalent]"},
/* 142 */ {"var142", "undefined"},
/* 143 */ {"var143", "undefined"},
/* 144 */ {"var144", "undefined"},
/* 145 */ {"var145", "undefined"},
/* 146 */ {"var146", "undefined"},
/* 147 */ {"var147", "undefined"},
/* 148 */ {"var148", "undefined"},
/* 149 */ {"TSW", "Total soil moisture [m]"},
/* 150 */ {"var150", "undefined"},
/* 151 */ {"MSL", "Mean sea level pressure [Pa]"},
/* 152 */ {"var152", "undefined"},
/* 153 */ {"var153", "undefined"},
/* 154 */ {"var154", "undefined"},
/* 155 */ {"D", "Divergence [s**-1]"},
/* 156 */ {"var156", "undefined"},
/* 157 */ {"var157", "undefined"},
/* 158 */ {"var158", "undefined"},
/* 159 */ {"var159", "undefined"},
/* 160 */ {"var160", "undefined"},
/* 161 */ {"var161", "undefined"},
/* 162 */ {"var162", "undefined"},
/* 163 */ {"var163", "undefined"},
/* 164 */ {"var164", "undefined"},
/* 165 */ {"var165", "undefined"},
/* 166 */ {"var166", "undefined"},
/* 167 */ {"var167", "undefined"},
/* 168 */ {"var168", "undefined"},
/* 169 */ {"var169", "undefined"},
/* 170 */ {"var170", "undefined"},
/* 171 */ {"SWL2", "Soil wetness level 2 [m]"},
/* 172 */ {"var172", "undefined"},
/* 173 */ {"var173", "undefined"},
/* 174 */ {"var174", "undefined"},
/* 175 */ {"var175", "undefined"},
/* 176 */ {"var176", "undefined"},
/* 177 */ {"var177", "undefined"},
/* 178 */ {"var178", "undefined"},
/* 179 */ {"TTR", "Top thermal radiation [W m-2]"},
/* 180 */ {"var180", "undefined"},
/* 181 */ {"var181", "undefined"},
/* 182 */ {"var182", "undefined"},
/* 183 */ {"var183", "undefined"},
/* 184 */ {"SWL3", "Soil wetness level 3 [m]"},
/* 185 */ {"var185", "undefined"},
/* 186 */ {"var186", "undefined"},
/* 187 */ {"var187", "undefined"},
/* 188 */ {"var188", "undefined"},
/* 189 */ {"var189", "undefined"},
/* 190 */ {"var190", "undefined"},
/* 191 */ {"var191", "undefined"},
/* 192 */ {"var192", "undefined"},
/* 193 */ {"var193", "undefined"},
/* 194 */ {"var194", "undefined"},
/* 195 */ {"var195", "undefined"},
/* 196 */ {"var196", "undefined"},
/* 197 */ {"var197", "undefined"},
/* 198 */ {"var198", "undefined"},
/* 199 */ {"var199", "undefined"},
/* 200 */ {"var200", "undefined"},
/* 201 */ {"MX2T", "Maximum temperature at 2 metres [K]"},
/* 202 */ {"MN2T", "Minimum temperature at 2 metres [K]"},
/* 203 */ {"var203", "undefined"},
/* 204 */ {"var204", "undefined"},
/* 205 */ {"var205", "undefined"},
/* 206 */ {"var206", "undefined"},
/* 207 */ {"var207", "undefined"},
/* 208 */ {"var208", "undefined"},
/* 209 */ {"var209", "undefined"},
/* 210 */ {"var210", "undefined"},
/* 211 */ {"var211", "undefined"},
/* 212 */ {"var212", "undefined"},
/* 213 */ {"var213", "undefined"},
/* 214 */ {"var214", "undefined"},
/* 215 */ {"var215", "undefined"},
/* 216 */ {"var216", "undefined"},
/* 217 */ {"var217", "undefined"},
/* 218 */ {"var218", "undefined"},
/* 219 */ {"var219", "undefined"},
/* 220 */ {"var220", "undefined"},
/* 221 */ {"var221", "undefined"},
/* 222 */ {"var222", "undefined"},
/* 223 */ {"var223", "undefined"},
/* 224 */ {"var224", "undefined"},
/* 225 */ {"var225", "undefined"},
/* 226 */ {"var226", "undefined"},
/* 227 */ {"var227", "undefined"},
/* 228 */ {"TP", "Total precipitation [m]"},
/* 229 */ {"var229", "undefined"},
/* 230 */ {"var230", "undefined"},
/* 231 */ {"var231", "undefined"},
/* 232 */ {"var232", "undefined"},
/* 233 */ {"var233", "undefined"},
/* 234 */ {"var234", "undefined"},
/* 235 */ {"var235", "undefined"},
/* 236 */ {"var236", "undefined"},
/* 237 */ {"var237", "undefined"},
/* 238 */ {"var238", "undefined"},
/* 239 */ {"var239", "undefined"},
/* 240 */ {"var240", "undefined"},
/* 241 */ {"var241", "undefined"},
/* 242 */ {"var242", "undefined"},
/* 243 */ {"var243", "undefined"},
/* 244 */ {"var244", "undefined"},
/* 245 */ {"var245", "undefined"},
/* 246 */ {"var246", "undefined"},
/* 247 */ {"var247", "undefined"},
/* 248 */ {"var248", "undefined"},
/* 249 */ {"var249", "undefined"},
/* 250 */ {"var250", "undefined"},
/* 251 */ {"var251", "undefined"},
/* 252 */ {"var252", "undefined"},
/* 253 */ {"var253", "undefined"},
/* 254 */ {"var254", "undefined"},
/* 255 */ {"var255", "Indicates a missing value []"},
};
const struct ParmTable parm_table_ecmwf_171[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"STRFA", "Stream function anomaly [m**2 s**-1]"},
/* 2 */ {"VPOTA", "Velocity potential anomaly [m**2 s**-1]"},
/* 3 */ {"var3", "Potential temperature [K]"},
/* 4 */ {"var4", "Equivalent potential temperature [K]"},
/* 5 */ {"var5", "Saturated equivalent potential temperature [K]"},
/* 6 */ {"var6", "undefined"},
/* 7 */ {"var7", "undefined"},
/* 8 */ {"var8", "undefined"},
/* 9 */ {"var9", "undefined"},
/* 10 */ {"var10", "undefined"},
/* 11 */ {"var11", "U component of divergent wind [m s**-1]"},
/* 12 */ {"var12", "V component of divergent wind [m s**-1]"},
/* 13 */ {"var13", "U component of rotational wind [m s**-1]"},
/* 14 */ {"var14", "V component of rotational wind [m s**-1]"},
/* 15 */ {"var15", "undefined"},
/* 16 */ {"var16", "undefined"},
/* 17 */ {"var17", "undefined"},
/* 18 */ {"var18", "undefined"},
/* 19 */ {"var19", "undefined"},
/* 20 */ {"var20", "undefined"},
/* 21 */ {"var21", "Unbalanced component of temperature [K]"},
/* 22 */ {"var22", "Unbalanced component of logarithm of surface pressure []"},
/* 23 */ {"var23", "Unbalanced component of divergence [s**-1]"},
/* 24 */ {"var24", "undefined"},
/* 25 */ {"var25", "undefined"},
/* 26 */ {"var26", "Lake cover [(0 - 1)]"},
/* 27 */ {"var27", "Low vegetation cover [(0 - 1)]"},
/* 28 */ {"var28", "High vegetation cover [(0 - 1)]"},
/* 29 */ {"var29", "Type of low vegetation []"},
/* 30 */ {"var30", "Type of high vegetation []"},
/* 31 */ {"var31", "Sea-ice cover [(0 - 1)]"},
/* 32 */ {"var32", "Snow albedo [(0 - 1)]"},
/* 33 */ {"var33", "Snow density [kg m**-3]"},
/* 34 */ {"var34", "Sea surface temperature [K]"},
/* 35 */ {"var35", "Ice surface temperature layer 1 [K]"},
/* 36 */ {"var36", "Ice surface temperature layer 2 [K]"},
/* 37 */ {"var37", "Ice surface temperature layer 3 [K]"},
/* 38 */ {"var38", "Ice surface temperature layer 4 [K]"},
/* 39 */ {"var39", "Volumetric soil water layer 1 [m**3 m**-3]"},
/* 40 */ {"var40", "Volumetric soil water layer 2 [m**3 m**-3]"},
/* 41 */ {"var41", "Volumetric soil water layer 3 [m**3 m**-3]"},
/* 42 */ {"var42", "Volumetric soil water layer 4 [m**3 m**-3]"},
/* 43 */ {"var43", "Soil type []"},
/* 44 */ {"var44", "Snow evaporation [m of water]"},
/* 45 */ {"var45", "Snowmelt [m of water]"},
/* 46 */ {"var46", "Solar duration [s]"},
/* 47 */ {"var47", "Direct solar radiation [w m**-2]"},
/* 48 */ {"var48", "Magnitude of surface stress [N m**-2 s]"},
/* 49 */ {"var49", "10 metre wind gust [m s**-1]"},
/* 50 */ {"var50", "Large-scale precipitation fraction [s]"},
/* 51 */ {"var51", "Maximum 2 metre temperature [K]"},
/* 52 */ {"var52", "Minimum 2 metre temperature [K]"},
/* 53 */ {"var53", "Montgomery potential [m**2 s**-2]"},
/* 54 */ {"var54", "Pressure [Pa]"},
/* 55 */ {"var55", "Mean 2 metre temperature in past 24 hours [K]"},
/* 56 */ {"var56", "Mean 2 metre dewpoint temperature in past 24 hours [K]"},
/* 57 */ {"var57", "Downward UV radiation at the surface [w m**-2]"},
/* 58 */ {"var58", "Photosynthetically active radiation at the surface [w m**-2]"},
/* 59 */ {"var59", "Convective available potential energy [J kg**-1]"},
/* 60 */ {"var60", "Potential vorticity [K m**2 kg**-1 s**-1]"},
/* 61 */ {"var61", "Total precipitation from observations [Millimetres*100 + number of stations]"},
/* 62 */ {"var62", "Observation count []"},
/* 63 */ {"var63", "Start time for skin temperature difference [s]"},
/* 64 */ {"var64", "Finish time for skin temperature difference [s]"},
/* 65 */ {"var65", "Skin temperature difference [K]"},
/* 66 */ {"var66", "undefined"},
/* 67 */ {"var67", "undefined"},
/* 68 */ {"var68", "undefined"},
/* 69 */ {"var69", "undefined"},
/* 70 */ {"var70", "undefined"},
/* 71 */ {"var71", "undefined"},
/* 72 */ {"var72", "undefined"},
/* 73 */ {"var73", "undefined"},
/* 74 */ {"var74", "undefined"},
/* 75 */ {"var75", "undefined"},
/* 76 */ {"var76", "undefined"},
/* 77 */ {"var77", "undefined"},
/* 78 */ {"TCLWA", "Total column liquid water anomaly [kg m**-2]"},
/* 79 */ {"TCIWA", "Total column ice water anomaly [kg m**-2]"},
/* 80 */ {"var80", "undefined"},
/* 81 */ {"var81", "undefined"},
/* 82 */ {"var82", "undefined"},
/* 83 */ {"var83", "undefined"},
/* 84 */ {"var84", "undefined"},
/* 85 */ {"var85", "undefined"},
/* 86 */ {"var86", "undefined"},
/* 87 */ {"var87", "undefined"},
/* 88 */ {"var88", "undefined"},
/* 89 */ {"var89", "undefined"},
/* 90 */ {"var90", "undefined"},
/* 91 */ {"var91", "undefined"},
/* 92 */ {"var92", "undefined"},
/* 93 */ {"var93", "undefined"},
/* 94 */ {"var94", "undefined"},
/* 95 */ {"var95", "undefined"},
/* 96 */ {"var96", "undefined"},
/* 97 */ {"var97", "undefined"},
/* 98 */ {"var98", "undefined"},
/* 99 */ {"var99", "undefined"},
/* 100 */ {"var100", "undefined"},
/* 101 */ {"var101", "undefined"},
/* 102 */ {"var102", "undefined"},
/* 103 */ {"var103", "undefined"},
/* 104 */ {"var104", "undefined"},
/* 105 */ {"var105", "undefined"},
/* 106 */ {"var106", "undefined"},
/* 107 */ {"var107", "undefined"},
/* 108 */ {"var108", "undefined"},
/* 109 */ {"var109", "undefined"},
/* 110 */ {"var110", "undefined"},
/* 111 */ {"var111", "undefined"},
/* 112 */ {"var112", "undefined"},
/* 113 */ {"var113", "undefined"},
/* 114 */ {"var114", "undefined"},
/* 115 */ {"var115", "undefined"},
/* 116 */ {"var116", "undefined"},
/* 117 */ {"var117", "undefined"},
/* 118 */ {"var118", "undefined"},
/* 119 */ {"var119", "undefined"},
/* 120 */ {"var120", "undefined"},
/* 121 */ {"var121", "undefined"},
/* 122 */ {"var122", "undefined"},
/* 123 */ {"var123", "undefined"},
/* 124 */ {"var124", "undefined"},
/* 125 */ {"var125", "Vertically integrated total energy [J m**-2]"},
/* 126 */ {"var126", "Generic parameter for sensitive area prediction [Various]"},
/* 127 */ {"var127", "Atmospheric tide []"},
/* 128 */ {"var128", "Budget values []"},
/* 129 */ {"ZA", "Geopotential anomaly [m**2 s**-2]"},
/* 130 */ {"TA", "Temperature anomaly [K]"},
/* 131 */ {"UA", "U velocity anomaly [m s**-1]"},
/* 132 */ {"VA", "V velocity anomaly [m s**-1]"},
/* 133 */ {"var133", "Specific humidity [kg kg**-1]"},
/* 134 */ {"var134", "Surface pressure [Pa]"},
/* 135 */ {"var135", "Vertical velocity [Pa s**-1]"},
/* 136 */ {"TCWA", "Total column water [kg m**-2]"},
/* 137 */ {"TCWVA", "Total column water vapour [kg m**-2]"},
/* 138 */ {"var138", "Vorticity (relative) [s**-1]"},
/* 139 */ {"STAL1", "Soil temperature level 1 [K]"},
/* 140 */ {"var140", "Soil wetness level 1 [m of water]"},
/* 141 */ {"var141", "Snow depth [m of water equivalent]"},
/* 142 */ {"var142", "Stratiform precipitation (Large-scale precipitation) [m]"},
/* 143 */ {"var143", "Convective precipitation [m]"},
/* 144 */ {"var144", "Snowfall (convective + stratiform) [m of water equivalent]"},
/* 145 */ {"var145", "Boundary layer dissipation [W m**-2 s]"},
/* 146 */ {"var146", "Surface sensible heat flux [W m**-2 s]"},
/* 147 */ {"var147", "Surface latent heat flux [W m**-2 s]"},
/* 148 */ {"var148", "Charnock []"},
/* 149 */ {"var149", "Surface net radiation [W m**-2 s]"},
/* 150 */ {"var150", "Top net radiation []"},
/* 151 */ {"MSLA", "Mean sea level pressure anomaly [Pa]"},
/* 152 */ {"var152", "Logarithm of surface pressure []"},
/* 153 */ {"var153", "Short-wave heating rate [K]"},
/* 154 */ {"var154", "Long-wave heating rate [K]"},
/* 155 */ {"var155", "Divergence [s**-1]"},
/* 156 */ {"var156", "Height [m]"},
/* 157 */ {"var157", "Relative humidity [%]"},
/* 158 */ {"var158", "Tendency of surface pressure [Pa s**-1]"},
/* 159 */ {"var159", "Boundary layer height [m]"},
/* 160 */ {"var160", "Standard deviation of orography []"},
/* 161 */ {"var161", "Anisotropy of sub-gridscale orography []"},
/* 162 */ {"var162", "Angle of sub-gridscale orography [rad]"},
/* 163 */ {"var163", "Slope of sub-gridscale orography []"},
/* 164 */ {"TCCA", "Total cloud cover anomaly [(0 - 1)]"},
/* 165 */ {"10UA", "10 metre U wind component anomaly [m s**-1]"},
/* 166 */ {"10VA", "10 metre V wind component anomaly [m s**-1]"},
/* 167 */ {"2TA", "2 metre temperature anomaly [K]"},
/* 168 */ {"var168", "2 metre dewpoint temperature [K]"},
/* 169 */ {"var169", "Surface solar radiation downwards [W m**-2 s]"},
/* 170 */ {"var170", "Soil temperature level 2 [K]"},
/* 171 */ {"var171", "Soil wetness level 2 [m of water]"},
/* 172 */ {"var172", "Land-sea mask [(0 - 1)]"},
/* 173 */ {"var173", "Surface roughness [m]"},
/* 174 */ {"var174", "Albedo [(0 - 1)]"},
/* 175 */ {"var175", "Surface thermal radiation downwards [W m**-2 s]"},
/* 176 */ {"var176", "Surface solar radiation [W m**-2 s]"},
/* 177 */ {"var177", "Surface thermal radiation [W m**-2 s]"},
/* 178 */ {"var178", "Top solar radiation [W m**-2 s]"},
/* 179 */ {"var179", "Top thermal radiation [W m**-2 s]"},
/* 180 */ {"var180", "East-West surface stress [N m**-2 s]"},
/* 181 */ {"var181", "North-South surface stress [N m**-2 s]"},
/* 182 */ {"var182", "Evaporation [m of water]"},
/* 183 */ {"var183", "Soil temperature level 3 [K]"},
/* 184 */ {"var184", "Soil wetness level 3 [m of water]"},
/* 185 */ {"var185", "Convective cloud cover [(0 - 1)]"},
/* 186 */ {"var186", "Low cloud cover [(0 - 1)]"},
/* 187 */ {"var187", "Medium cloud cover [(0 - 1)]"},
/* 188 */ {"var188", "High cloud cover [(0 - 1)]"},
/* 189 */ {"SUNDA", "Sunshine duration anomaly [s]"},
/* 190 */ {"var190", "East-West component of sub-gridscale orographic variance [m**2]"},
/* 191 */ {"var191", "North-South component of sub-gridscale orographic variance [m**2]"},
/* 192 */ {"var192", "North-West/South-East component of sub-gridscale orographic variance [m**2]"},
/* 193 */ {"var193", "North-East/South-West component of sub-gridscale orographic variance [m**2]"},
/* 194 */ {"var194", "Brightness temperature [K]"},
/* 195 */ {"var195", "Latitudinal component of gravity wave stress [N m**-2 s]"},
/* 196 */ {"var196", "Meridional component of gravity wave stress [N m**-2 s]"},
/* 197 */ {"var197", "Gravity wave dissipation [W m**-2 s]"},
/* 198 */ {"var198", "Skin reservoir content [m of water]"},
/* 199 */ {"var199", "Vegetation fraction [(0 - 1)]"},
/* 200 */ {"var200", "Variance of sub-gridscale orography [m**2]"},
/* 201 */ {"MX2TA", "Maximum temperature at 2 metres anomaly [K]"},
/* 202 */ {"MN2TA", "Minimum temperature at 2 metres anomaly [K]"},
/* 203 */ {"var203", "Ozone mass mixing ratio [kg kg**-1]"},
/* 204 */ {"var204", "Precipitation analysis weights []"},
/* 205 */ {"var205", "Runoff [m]"},
/* 206 */ {"var206", "Total column ozone [kg m**-2]"},
/* 207 */ {"var207", "10 metre wind speed [m s**-1]"},
/* 208 */ {"var208", "Top net solar radiation, clear sky [W m**-2 s]"},
/* 209 */ {"var209", "Top net thermal radiation, clear sky [W m**-2 s]"},
/* 210 */ {"var210", "Surface net solar radiation, clear sky [W m**-2 s]"},
/* 211 */ {"var211", "Surface net thermal radiation, clear sky [W m**-2 s]"},
/* 212 */ {"var212", "Solar insolation [W m**-2]"},
/* 213 */ {"var213", "undefined"},
/* 214 */ {"var214", "Diabatic heating by radiation [K]"},
/* 215 */ {"var215", "Diabatic heating by vertical diffusion [K]"},
/* 216 */ {"var216", "Diabatic heating by cumulus convection [K]"},
/* 217 */ {"var217", "Diabatic heating by large-scale condensation [K]"},
/* 218 */ {"var218", "Vertical diffusion of zonal wind [m s**-1]"},
/* 219 */ {"var219", "Vertical diffusion of meridional wind [m s**-1]"},
/* 220 */ {"var220", "East-West gravity wave drag tendency [m s**-1]"},
/* 221 */ {"var221", "North-South gravity wave drag tendency [m s**-1]"},
/* 222 */ {"var222", "Convective tendency of zonal wind [m s**-1]"},
/* 223 */ {"var223", "Convective tendency of meridional wind [m s**-1]"},
/* 224 */ {"var224", "Vertical diffusion of humidity [kg kg**-1]"},
/* 225 */ {"var225", "Humidity tendency by cumulus convection [kg kg**-1]"},
/* 226 */ {"var226", "Humidity tendency by large-scale condensation [kg kg**-1]"},
/* 227 */ {"var227", "Change from removal of negative humidity [kg kg**-1]"},
/* 228 */ {"TPA", "Total precipitation anomaly [m]"},
/* 229 */ {"var229", "Instantaneous X surface stress [N m**-2]"},
/* 230 */ {"var230", "Instantaneous Y surface stress [N m**-2]"},
/* 231 */ {"var231", "Instantaneous surface heat flux [W m**-2]"},
/* 232 */ {"var232", "Instantaneous moisture flux [kg m**-2 s]"},
/* 233 */ {"var233", "Apparent surface humidity [kg kg**-1]"},
/* 234 */ {"var234", "Logarithm of surface roughness length for heat []"},
/* 235 */ {"var235", "Skin temperature [K]"},
/* 236 */ {"var236", "Soil temperature level 4 [K]"},
/* 237 */ {"var237", "Soil wetness level 4 [m]"},
/* 238 */ {"var238", "Temperature of snow layer [K]"},
/* 239 */ {"var239", "Convective snowfall [m of water equivalent]"},
/* 240 */ {"var240", "Large-scale snowfall [m of water equivalent]"},
/* 241 */ {"var241", "Accumulated cloud fraction tendency [(-1 to 1)]"},
/* 242 */ {"var242", "Accumulated liquid water tendency [(-1 to 1)]"},
/* 243 */ {"var243", "Forecast albedo [(0 - 1)]"},
/* 244 */ {"var244", "Forecast surface roughness [m]"},
/* 245 */ {"var245", "Forecast logarithm of surface roughness for heat []"},
/* 246 */ {"var246", "Cloud liquid water content [kg kg**-1]"},
/* 247 */ {"var247", "Cloud ice water content [kg kg**-1]"},
/* 248 */ {"var248", "Cloud cover [(0 - 1)]"},
/* 249 */ {"var249", "Accumulated ice water tendency [(-1 to 1)]"},
/* 250 */ {"var250", "Ice age [(0 - 1)]"},
/* 251 */ {"var251", "Adiabatic tendency of temperature [K]"},
/* 252 */ {"var252", "Adiabatic tendency of humidity [kg kg**-1]"},
/* 253 */ {"var253", "Adiabatic tendency of zonal wind [m s**-1]"},
/* 254 */ {"var254", "Adiabatic tendency of meridional wind [m s**-1]"},
/* 255 */ {"var255", "Indicates a missing value []"},
};
/* ectable 172 from Geert Jan van Oldenborgh */
const struct ParmTable parm_table_ecmwf_172[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"var1", "undefined"},
/* 2 */ {"var2", "undefined"},
/* 3 */ {"var3", "undefined"},
/* 4 */ {"var4", "undefined"},
/* 5 */ {"var5", "undefined"},
/* 6 */ {"var6", "undefined"},
/* 7 */ {"var7", "undefined"},
/* 8 */ {"var8", "undefined"},
/* 9 */ {"var9", "undefined"},
/* 10 */ {"var10", "undefined"},
/* 11 */ {"var11", "undefined"},
/* 12 */ {"var12", "undefined"},
/* 13 */ {"var13", "undefined"},
/* 14 */ {"var14", "undefined"},
/* 15 */ {"var15", "undefined"},
/* 16 */ {"var16", "undefined"},
/* 17 */ {"var17", "undefined"},
/* 18 */ {"var18", "undefined"},
/* 19 */ {"var19", "undefined"},
/* 20 */ {"var20", "undefined"},
/* 21 */ {"var21", "undefined"},
/* 22 */ {"var22", "undefined"},
/* 23 */ {"var23", "undefined"},
/* 24 */ {"var24", "undefined"},
/* 25 */ {"var25", "undefined"},
/* 26 */ {"var26", "undefined"},
/* 27 */ {"var27", "undefined"},
/* 28 */ {"var28", "undefined"},
/* 29 */ {"var29", "undefined"},
/* 30 */ {"var30", "undefined"},
/* 31 */ {"var31", "undefined"},
/* 32 */ {"var32", "undefined"},
/* 33 */ {"var33", "undefined"},
/* 34 */ {"var34", "undefined"},
/* 35 */ {"var35", "undefined"},
/* 36 */ {"var36", "undefined"},
/* 37 */ {"var37", "undefined"},
/* 38 */ {"var38", "undefined"},
/* 39 */ {"var39", "undefined"},
/* 40 */ {"var40", "undefined"},
/* 41 */ {"var41", "undefined"},
/* 42 */ {"var42", "undefined"},
/* 43 */ {"var43", "undefined"},
/* 44 */ {"SNOE", "Snow evaporation m of water s**-1"},
/* 45 */ {"SNOM", "Snow melt m of water s**-1"},
/* 46 */ {"var46", "undefined"},
/* 47 */ {"var47", "undefined"},
/* 48 */ {"MSS", "magnitude of surface stress N m**-2"},
/* 49 */ {"var49", "undefined"},
/* 50 */ {"", "Large-scale precipitation fraction -"},
/* 51 */ {"var51", "undefined"},
/* 52 */ {"var52", "undefined"},
/* 53 */ {"var53", "undefined"},
/* 54 */ {"var54", "undefined"},
/* 55 */ {"var55", "undefined"},
/* 56 */ {"var56", "undefined"},
/* 57 */ {"var57", "undefined"},
/* 58 */ {"var58", "undefined"},
/* 59 */ {"var59", "undefined"},
/* 60 */ {"var60", "undefined"},
/* 61 */ {"var61", "undefined"},
/* 62 */ {"var62", "undefined"},
/* 63 */ {"var63", "undefined"},
/* 64 */ {"var64", "undefined"},
/* 65 */ {"var65", "undefined"},
/* 66 */ {"var66", "undefined"},
/* 67 */ {"var67", "undefined"},
/* 68 */ {"var68", "undefined"},
/* 69 */ {"var69", "undefined"},
/* 70 */ {"var70", "undefined"},
/* 71 */ {"var71", "undefined"},
/* 72 */ {"var72", "undefined"},
/* 73 */ {"var73", "undefined"},
/* 74 */ {"var74", "undefined"},
/* 75 */ {"var75", "undefined"},
/* 76 */ {"var76", "undefined"},
/* 77 */ {"var77", "undefined"},
/* 78 */ {"var78", "undefined"},
/* 79 */ {"var79", "undefined"},
/* 80 */ {"var80", "undefined"},
/* 81 */ {"var81", "undefined"},
/* 82 */ {"var82", "undefined"},
/* 83 */ {"var83", "undefined"},
/* 84 */ {"var84", "undefined"},
/* 85 */ {"var85", "undefined"},
/* 86 */ {"var86", "undefined"},
/* 87 */ {"var87", "undefined"},
/* 88 */ {"var88", "undefined"},
/* 89 */ {"var89", "undefined"},
/* 90 */ {"var90", "undefined"},
/* 91 */ {"var91", "undefined"},
/* 92 */ {"var92", "undefined"},
/* 93 */ {"var93", "undefined"},
/* 94 */ {"var94", "undefined"},
/* 95 */ {"var95", "undefined"},
/* 96 */ {"var96", "undefined"},
/* 97 */ {"var97", "undefined"},
/* 98 */ {"var98", "undefined"},
/* 99 */ {"var99", "undefined"},
/* 100 */ {"var100", "undefined"},
/* 101 */ {"var101", "undefined"},
/* 102 */ {"var102", "undefined"},
/* 103 */ {"var103", "undefined"},
/* 104 */ {"var104", "undefined"},
/* 105 */ {"var105", "undefined"},
/* 106 */ {"var106", "undefined"},
/* 107 */ {"var107", "undefined"},
/* 108 */ {"var108", "undefined"},
/* 109 */ {"var109", "undefined"},
/* 110 */ {"var110", "undefined"},
/* 111 */ {"var111", "undefined"},
/* 112 */ {"var112", "undefined"},
/* 113 */ {"var113", "undefined"},
/* 114 */ {"var114", "undefined"},
/* 115 */ {"var115", "undefined"},
/* 116 */ {"var116", "undefined"},
/* 117 */ {"var117", "undefined"},
/* 118 */ {"var118", "undefined"},
/* 119 */ {"var119", "undefined"},
/* 120 */ {"var120", "undefined"},
/* 121 */ {"var121", "undefined"},
/* 122 */ {"var122", "undefined"},
/* 123 */ {"var123", "undefined"},
/* 124 */ {"var124", "undefined"},
/* 125 */ {"var125", "undefined"},
/* 126 */ {"var126", "undefined"},
/* 127 */ {"var127", "undefined"},
/* 128 */ {"var128", "undefined"},
/* 129 */ {"var129", "undefined"},
/* 130 */ {"var130", "undefined"},
/* 131 */ {"var131", "undefined"},
/* 132 */ {"var132", "undefined"},
/* 133 */ {"var133", "undefined"},
/* 134 */ {"var134", "undefined"},
/* 135 */ {"var135", "undefined"},
/* 136 */ {"var136", "undefined"},
/* 137 */ {"var137", "undefined"},
/* 138 */ {"var138", "undefined"},
/* 139 */ {"var139", "undefined"},
/* 140 */ {"var140", "undefined"},
/* 141 */ {"var141", "undefined"},
/* 142 */ {"LSP", "Large scale precipitation m s**-1"},
/* 143 */ {"CP", "Convective precipitation m s**-1"},
/* 144 */ {"SF", "Snowfall (convective + stratiform) m of water equivalent s**-1"},
/* 145 */ {"BLD", "Boundary layer dissipation W m**-2"},
/* 146 */ {"SSHF", "Surface sensible heat flux W m**-2"},
/* 147 */ {"SLHF", "Surface latent heat flux W m**-2"},
/* 148 */ {"SNR", "Surface net radiation W m**-2"},
/* 149 */ {"var149", "undefined"},
/* 150 */ {"var150", "undefined"},
/* 151 */ {"var151", "undefined"},
/* 152 */ {"var152", "undefined"},
/* 153 */ {"SWHR", "Short-wave heating rate K s**-1"},
/* 154 */ {"LWHR", "Long-wave heating rate K s**-1"},
/* 155 */ {"var155", "undefined"},
/* 156 */ {"var156", "undefined"},
/* 157 */ {"var157", "undefined"},
/* 158 */ {"var158", "undefined"},
/* 159 */ {"var159", "undefined"},
/* 160 */ {"var160", "undefined"},
/* 161 */ {"var161", "undefined"},
/* 162 */ {"var162", "undefined"},
/* 163 */ {"var163", "undefined"},
/* 164 */ {"var164", "undefined"},
/* 165 */ {"var165", "undefined"},
/* 166 */ {"var166", "undefined"},
/* 167 */ {"var167", "undefined"},
/* 168 */ {"var168", "undefined"},
/* 169 */ {"SSRD", "Surface solar radiation downwards W m**-2"},
/* 170 */ {"var170", "undefined"},
/* 171 */ {"var171", "undefined"},
/* 172 */ {"var172", "undefined"},
/* 173 */ {"var173", "undefined"},
/* 174 */ {"var174", "undefined"},
/* 175 */ {"STRD", "Surface thermal radiation downwards W m**-2"},
/* 176 */ {"SSR", "Surface solar radiation W m**-2"},
/* 177 */ {"STR", "Surface thermal radiation W m**-2"},
/* 178 */ {"TSR", "Top solar radiation W m**-2"},
/* 179 */ {"TTR", "Top thermal radiation W m-2"},
/* 180 */ {"EWSS", "East-West surface stress N m**-2"},
/* 181 */ {"NSSS", "North-South surface stress N m**-2"},
/* 182 */ {"E", "Evaporation m of water s**-1"},
/* 183 */ {"var183", "undefined"},
/* 184 */ {"var184", "undefined"},
/* 185 */ {"var185", "undefined"},
/* 186 */ {"var186", "undefined"},
/* 187 */ {"var187", "undefined"},
/* 188 */ {"var188", "undefined"},
/* 189 */ {"SUND", "Sunshine duration"},
/* 190 */ {"var190", "undefined"},
/* 191 */ {"var191", "undefined"},
/* 192 */ {"var192", "undefined"},
/* 193 */ {"var193", "undefined"},
/* 194 */ {"var194", "undefined"},
/* 195 */ {"LGWS", "Latitudinal component of gravity wave stress N m**-2"},
/* 196 */ {"MGWS", "Meridional component of gravity wave stress N m**-2"},
/* 197 */ {"GWD", "Gravity wave dissipation W m**-2"},
/* 198 */ {"var198", "undefined"},
/* 199 */ {"var199", "undefined"},
/* 200 */ {"var200", "undefined"},
/* 201 */ {"var201", "undefined"},
/* 202 */ {"var202", "undefined"},
/* 203 */ {"var203", "undefined"},
/* 204 */ {"var204", "undefined"},
/* 205 */ {"RO", "Runoff m s**-1"},
/* 206 */ {"var206", "undefined"},
/* 207 */ {"var207", "undefined"},
/* 208 */ {"TSRC", "Top net solar radiation, clear sky W m**-2"},
/* 209 */ {"TTRC", "Top net thermal radiation, clear sky W m**-2"},
/* 210 */ {"SSRC", "Surface net solar radiation, clear sky W m**-2"},
/* 211 */ {"STRC", "Surface net thermal radiation, clear sky W m**-2"},
/* 212 */ {"SI", "Solar insolation W m**-2"},
/* 213 */ {"var213", "undefined"},
/* 214 */ {"var214", "undefined"},
/* 215 */ {"var215", "undefined"},
/* 216 */ {"var216", "undefined"},
/* 217 */ {"var217", "undefined"},
/* 218 */ {"var218", "undefined"},
/* 219 */ {"var219", "undefined"},
/* 220 */ {"var220", "undefined"},
/* 221 */ {"var221", "undefined"},
/* 222 */ {"var222", "undefined"},
/* 223 */ {"var223", "undefined"},
/* 224 */ {"var224", "undefined"},
/* 225 */ {"var225", "undefined"},
/* 226 */ {"var226", "undefined"},
/* 227 */ {"var227", "undefined"},
/* 228 */ {"TP", "Total precipitation m s**-1"},
/* 229 */ {"var229", "undefined"},
/* 230 */ {"var230", "undefined"},
/* 231 */ {"var231", "undefined"},
/* 232 */ {"var232", "undefined"},
/* 233 */ {"var233", "undefined"},
/* 234 */ {"var234", "undefined"},
/* 235 */ {"var235", "undefined"},
/* 236 */ {"var236", "undefined"},
/* 237 */ {"var237", "undefined"},
/* 238 */ {"var238", "undefined"},
/* 239 */ {"CSF", "Convective snowfall m of water equivalent s**-1"},
/* 240 */ {"LSF", "Large-scale snowfall m of water equivalent s**-1"},
/* 241 */ {"var241", "undefined"},
/* 242 */ {"var242", "undefined"},
/* 243 */ {"var243", "undefined"},
/* 244 */ {"var244", "undefined"},
/* 245 */ {"var245", "undefined"},
/* 246 */ {"var246", "undefined"},
/* 247 */ {"var247", "undefined"},
/* 248 */ {"var248", "undefined"},
/* 249 */ {"var249", "undefined"},
/* 250 */ {"var250", "undefined"},
/* 251 */ {"var251", "undefined"},
/* 252 */ {"var252", "undefined"},
/* 253 */ {"var253", "undefined"},
/* 254 */ {"var254", "undefined"},
/* 255 */ {"var255", "undefined"},
};
const struct ParmTable parm_table_ecmwf_173[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"var1", "undefined"},
/* 2 */ {"var2", "undefined"},
/* 3 */ {"var3", "undefined"},
/* 4 */ {"var4", "undefined"},
/* 5 */ {"var5", "undefined"},
/* 6 */ {"var6", "undefined"},
/* 7 */ {"var7", "undefined"},
/* 8 */ {"var8", "undefined"},
/* 9 */ {"var9", "undefined"},
/* 10 */ {"var10", "undefined"},
/* 11 */ {"var11", "undefined"},
/* 12 */ {"var12", "undefined"},
/* 13 */ {"var13", "undefined"},
/* 14 */ {"var14", "undefined"},
/* 15 */ {"var15", "undefined"},
/* 16 */ {"var16", "undefined"},
/* 17 */ {"var17", "undefined"},
/* 18 */ {"var18", "undefined"},
/* 19 */ {"var19", "undefined"},
/* 20 */ {"var20", "undefined"},
/* 21 */ {"var21", "undefined"},
/* 22 */ {"var22", "undefined"},
/* 23 */ {"var23", "undefined"},
/* 24 */ {"var24", "undefined"},
/* 25 */ {"var25", "undefined"},
/* 26 */ {"var26", "undefined"},
/* 27 */ {"var27", "undefined"},
/* 28 */ {"var28", "undefined"},
/* 29 */ {"var29", "undefined"},
/* 30 */ {"var30", "undefined"},
/* 31 */ {"var31", "undefined"},
/* 32 */ {"var32", "undefined"},
/* 33 */ {"var33", "undefined"},
/* 34 */ {"var34", "undefined"},
/* 35 */ {"var35", "undefined"},
/* 36 */ {"var36", "undefined"},
/* 37 */ {"var37", "undefined"},
/* 38 */ {"var38", "undefined"},
/* 39 */ {"var39", "undefined"},
/* 40 */ {"var40", "undefined"},
/* 41 */ {"var41", "undefined"},
/* 42 */ {"var42", "undefined"},
/* 43 */ {"var43", "undefined"},
/* 44 */ {"var44", "Snow evaporation anomaly [m of water s**-1]"},
/* 45 */ {"var45", "Snowmelt anomaly [m of water s**-1]"},
/* 46 */ {"var46", "undefined"},
/* 47 */ {"var47", "undefined"},
/* 48 */ {"var48", "Magnitude of surface stress anomaly [N m**-2]"},
/* 49 */ {"var49", "undefined"},
/* 50 */ {"var50", "Large-scale precipitation fraction anomaly []"},
/* 51 */ {"var51", "undefined"},
/* 52 */ {"var52", "undefined"},
/* 53 */ {"var53", "undefined"},
/* 54 */ {"var54", "undefined"},
/* 55 */ {"var55", "undefined"},
/* 56 */ {"var56", "undefined"},
/* 57 */ {"var57", "undefined"},
/* 58 */ {"var58", "undefined"},
/* 59 */ {"var59", "undefined"},
/* 60 */ {"var60", "undefined"},
/* 61 */ {"var61", "undefined"},
/* 62 */ {"var62", "undefined"},
/* 63 */ {"var63", "undefined"},
/* 64 */ {"var64", "undefined"},
/* 65 */ {"var65", "undefined"},
/* 66 */ {"var66", "undefined"},
/* 67 */ {"var67", "undefined"},
/* 68 */ {"var68", "undefined"},
/* 69 */ {"var69", "undefined"},
/* 70 */ {"var70", "undefined"},
/* 71 */ {"var71", "undefined"},
/* 72 */ {"var72", "undefined"},
/* 73 */ {"var73", "undefined"},
/* 74 */ {"var74", "undefined"},
/* 75 */ {"var75", "undefined"},
/* 76 */ {"var76", "undefined"},
/* 77 */ {"var77", "undefined"},
/* 78 */ {"var78", "undefined"},
/* 79 */ {"var79", "undefined"},
/* 80 */ {"var80", "undefined"},
/* 81 */ {"var81", "undefined"},
/* 82 */ {"var82", "undefined"},
/* 83 */ {"var83", "undefined"},
/* 84 */ {"var84", "undefined"},
/* 85 */ {"var85", "undefined"},
/* 86 */ {"var86", "undefined"},
/* 87 */ {"var87", "undefined"},
/* 88 */ {"var88", "undefined"},
/* 89 */ {"var89", "undefined"},
/* 90 */ {"var90", "undefined"},
/* 91 */ {"var91", "undefined"},
/* 92 */ {"var92", "undefined"},
/* 93 */ {"var93", "undefined"},
/* 94 */ {"var94", "undefined"},
/* 95 */ {"var95", "undefined"},
/* 96 */ {"var96", "undefined"},
/* 97 */ {"var97", "undefined"},
/* 98 */ {"var98", "undefined"},
/* 99 */ {"var99", "undefined"},
/* 100 */ {"var100", "undefined"},
/* 101 */ {"var101", "undefined"},
/* 102 */ {"var102", "undefined"},
/* 103 */ {"var103", "undefined"},
/* 104 */ {"var104", "undefined"},
/* 105 */ {"var105", "undefined"},
/* 106 */ {"var106", "undefined"},
/* 107 */ {"var107", "undefined"},
/* 108 */ {"var108", "undefined"},
/* 109 */ {"var109", "undefined"},
/* 110 */ {"var110", "undefined"},
/* 111 */ {"var111", "undefined"},
/* 112 */ {"var112", "undefined"},
/* 113 */ {"var113", "undefined"},
/* 114 */ {"var114", "undefined"},
/* 115 */ {"var115", "undefined"},
/* 116 */ {"var116", "undefined"},
/* 117 */ {"var117", "undefined"},
/* 118 */ {"var118", "undefined"},
/* 119 */ {"var119", "undefined"},
/* 120 */ {"var120", "undefined"},
/* 121 */ {"var121", "undefined"},
/* 122 */ {"var122", "undefined"},
/* 123 */ {"var123", "undefined"},
/* 124 */ {"var124", "undefined"},
/* 125 */ {"var125", "undefined"},
/* 126 */ {"var126", "undefined"},
/* 127 */ {"var127", "undefined"},
/* 128 */ {"var128", "undefined"},
/* 129 */ {"var129", "undefined"},
/* 130 */ {"var130", "undefined"},
/* 131 */ {"var131", "undefined"},
/* 132 */ {"var132", "undefined"},
/* 133 */ {"var133", "undefined"},
/* 134 */ {"var134", "undefined"},
/* 135 */ {"var135", "undefined"},
/* 136 */ {"var136", "undefined"},
/* 137 */ {"var137", "undefined"},
/* 138 */ {"var138", "undefined"},
/* 139 */ {"var139", "undefined"},
/* 140 */ {"var140", "undefined"},
/* 141 */ {"var141", "undefined"},
/* 142 */ {"var142", "Stratiform precipitation (Large-scale precipitation) anomaly [m s**-1]"},
/* 143 */ {"var143", "Convective precipitation anomaly [m s**-1]"},
/* 144 */ {"SFARA", "Snowfall (convective + stratiform) anomalous rate of accumulation [m of water equivalent s**-1]"},
/* 145 */ {"var145", "Boundary layer dissipation anomaly [W m**-2]"},
/* 146 */ {"var146", "Surface sensible heat flux anomaly [W m**-2]"},
/* 147 */ {"var147", "Surface latent heat flux anomaly [W m**-2]"},
/* 148 */ {"var148", "undefined"},
/* 149 */ {"var149", "Surface net radiation anomaly [W m**-2]"},
/* 150 */ {"var150", "undefined"},
/* 151 */ {"var151", "undefined"},
/* 152 */ {"var152", "undefined"},
/* 153 */ {"var153", "Short-wave heating rate anomaly [K s**-1]"},
/* 154 */ {"var154", "Long-wave heating rate anomaly [K s**-1]"},
/* 155 */ {"var155", "undefined"},
/* 156 */ {"var156", "undefined"},
/* 157 */ {"var157", "undefined"},
/* 158 */ {"var158", "undefined"},
/* 159 */ {"var159", "undefined"},
/* 160 */ {"var160", "undefined"},
/* 161 */ {"var161", "undefined"},
/* 162 */ {"var162", "undefined"},
/* 163 */ {"var163", "undefined"},
/* 164 */ {"var164", "undefined"},
/* 165 */ {"var165", "undefined"},
/* 166 */ {"var166", "undefined"},
/* 167 */ {"var167", "undefined"},
/* 168 */ {"var168", "undefined"},
/* 169 */ {"var169", "Surface solar radiation downwards anomaly [W m**-2]"},
/* 170 */ {"var170", "undefined"},
/* 171 */ {"var171", "undefined"},
/* 172 */ {"var172", "undefined"},
/* 173 */ {"var173", "undefined"},
/* 174 */ {"var174", "undefined"},
/* 175 */ {"var175", "Surface thermal radiation downwards anomaly [W m**-2]"},
/* 176 */ {"var176", "Surface solar radiation anomaly [W m**-2]"},
/* 177 */ {"var177", "Surface thermal radiation anomaly [W m**-2]"},
/* 178 */ {"var178", "Top solar radiation anomaly [W m**-2]"},
/* 179 */ {"var179", "Top thermal radiation anomaly [W m**-2]"},
/* 180 */ {"var180", "East-West surface stress anomaly [N m**-2]"},
/* 181 */ {"var181", "North-South surface stress anomaly [N m**-2]"},
/* 182 */ {"var182", "Evaporation anomaly [m of water s**-1]"},
/* 183 */ {"var183", "undefined"},
/* 184 */ {"var184", "undefined"},
/* 185 */ {"var185", "undefined"},
/* 186 */ {"var186", "undefined"},
/* 187 */ {"var187", "undefined"},
/* 188 */ {"var188", "undefined"},
/* 189 */ {"SUNDARA", "Sunshine duration anomalous rate of accumulation [dimensionless]"},
/* 190 */ {"var190", "undefined"},
/* 191 */ {"var191", "undefined"},
/* 192 */ {"var192", "undefined"},
/* 193 */ {"var193", "undefined"},
/* 194 */ {"var194", "undefined"},
/* 195 */ {"var195", "Latitudinal component of gravity wave stress anomaly [N m**-2]"},
/* 196 */ {"var196", "Meridional component of gravity wave stress anomaly [N m**-2]"},
/* 197 */ {"var197", "Gravity wave dissipation anomaly [W m**-2]"},
/* 198 */ {"var198", "undefined"},
/* 199 */ {"var199", "undefined"},
/* 200 */ {"var200", "undefined"},
/* 201 */ {"var201", "undefined"},
/* 202 */ {"var202", "undefined"},
/* 203 */ {"var203", "undefined"},
/* 204 */ {"var204", "undefined"},
/* 205 */ {"var205", "Runoff anomaly [m s**-1]"},
/* 206 */ {"var206", "undefined"},
/* 207 */ {"var207", "undefined"},
/* 208 */ {"var208", "Top net solar radiation, clear sky anomaly [W m**-2]"},
/* 209 */ {"var209", "Top net thermal radiation, clear sky anomaly [W m**-2]"},
/* 210 */ {"var210", "Surface net solar radiation, clear sky anomaly [W m**-2]"},
/* 211 */ {"var211", "Surface net thermal radiation, clear sky anomaly [W m**-2]"},
/* 212 */ {"var212", "Solar insolation anomaly [W m**-2 s**-1]"},
/* 213 */ {"var213", "undefined"},
/* 214 */ {"var214", "undefined"},
/* 215 */ {"var215", "undefined"},
/* 216 */ {"var216", "undefined"},
/* 217 */ {"var217", "undefined"},
/* 218 */ {"var218", "undefined"},
/* 219 */ {"var219", "undefined"},
/* 220 */ {"var220", "undefined"},
/* 221 */ {"var221", "undefined"},
/* 222 */ {"var222", "undefined"},
/* 223 */ {"var223", "undefined"},
/* 224 */ {"var224", "undefined"},
/* 225 */ {"var225", "undefined"},
/* 226 */ {"var226", "undefined"},
/* 227 */ {"var227", "undefined"},
/* 228 */ {"TPARA", "Total precipitation anomalous rate of accumulation [m s**-1]"},
/* 229 */ {"var229", "undefined"},
/* 230 */ {"var230", "undefined"},
/* 231 */ {"var231", "undefined"},
/* 232 */ {"var232", "undefined"},
/* 233 */ {"var233", "undefined"},
/* 234 */ {"var234", "undefined"},
/* 235 */ {"var235", "undefined"},
/* 236 */ {"var236", "undefined"},
/* 237 */ {"var237", "undefined"},
/* 238 */ {"var238", "undefined"},
/* 239 */ {"var239", "Convective snowfall anomaly [m of water equivalent s**-1]"},
/* 240 */ {"var240", "Large-scale snowfall anomaly [m of water equivalent s**-1]"},
/* 241 */ {"var241", "undefined"},
/* 242 */ {"var242", "undefined"},
/* 243 */ {"var243", "undefined"},
/* 244 */ {"var244", "undefined"},
/* 245 */ {"var245", "undefined"},
/* 246 */ {"var246", "undefined"},
/* 247 */ {"var247", "undefined"},
/* 248 */ {"var248", "undefined"},
/* 249 */ {"var249", "undefined"},
/* 250 */ {"var250", "undefined"},
/* 251 */ {"var251", "undefined"},
/* 252 */ {"var252", "undefined"},
/* 253 */ {"var253", "undefined"},
/* 254 */ {"var254", "undefined"},
/* 255 */ {"var255", "Indicates a missing value []"},
};
const struct ParmTable parm_table_ecmwf_174[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"var1", "undefined"},
/* 2 */ {"var2", "undefined"},
/* 3 */ {"var3", "undefined"},
/* 4 */ {"var4", "undefined"},
/* 5 */ {"var5", "undefined"},
/* 6 */ {"var6", "Total soil moisture [m]"},
/* 7 */ {"var7", "undefined"},
/* 8 */ {"SRO", "Surface runoff [kg m**-2]"},
/* 9 */ {"SSRO", "Sub-surface runoff [kg m**-2]"},
/* 10 */ {"var10", "undefined"},
/* 11 */ {"var11", "undefined"},
/* 12 */ {"var12", "undefined"},
/* 13 */ {"var13", "undefined"},
/* 14 */ {"var14", "undefined"},
/* 15 */ {"var15", "undefined"},
/* 16 */ {"var16", "undefined"},
/* 17 */ {"var17", "undefined"},
/* 18 */ {"var18", "undefined"},
/* 19 */ {"var19", "undefined"},
/* 20 */ {"var20", "undefined"},
/* 21 */ {"var21", "undefined"},
/* 22 */ {"var22", "undefined"},
/* 23 */ {"var23", "undefined"},
/* 24 */ {"var24", "undefined"},
/* 25 */ {"var25", "undefined"},
/* 26 */ {"var26", "undefined"},
/* 27 */ {"var27", "undefined"},
/* 28 */ {"var28", "undefined"},
/* 29 */ {"var29", "undefined"},
/* 30 */ {"var30", "undefined"},
/* 31 */ {"var31", "Fraction of sea-ice in sea [(0 - 1)]"},
/* 32 */ {"var32", "undefined"},
/* 33 */ {"var33", "undefined"},
/* 34 */ {"var34", "Open-sea surface temperature [K]"},
/* 35 */ {"var35", "undefined"},
/* 36 */ {"var36", "undefined"},
/* 37 */ {"var37", "undefined"},
/* 38 */ {"var38", "undefined"},
/* 39 */ {"var39", "Volumetric soil water layer 1 [m**3 m**-3]"},
/* 40 */ {"var40", "Volumetric soil water layer 2 [m**3 m**-3]"},
/* 41 */ {"var41", "Volumetric soil water layer 3 [m**3 m**-3]"},
/* 42 */ {"var42", "Volumetric soil water layer 4 [m**3 m**-3]"},
/* 43 */ {"var43", "undefined"},
/* 44 */ {"var44", "undefined"},
/* 45 */ {"var45", "undefined"},
/* 46 */ {"var46", "undefined"},
/* 47 */ {"var47", "undefined"},
/* 48 */ {"var48", "undefined"},
/* 49 */ {"var49", "10 metre wind gust over last 24 hours [m s**-1]"},
/* 50 */ {"var50", "undefined"},
/* 51 */ {"var51", "undefined"},
/* 52 */ {"var52", "undefined"},
/* 53 */ {"var53", "undefined"},
/* 54 */ {"var54", "undefined"},
/* 55 */ {"var55", "1.5m temperature - mean over last 24 hours [K]"},
/* 56 */ {"var56", "undefined"},
/* 57 */ {"var57", "undefined"},
/* 58 */ {"var58", "undefined"},
/* 59 */ {"var59", "undefined"},
/* 60 */ {"var60", "undefined"},
/* 61 */ {"var61", "undefined"},
/* 62 */ {"var62", "undefined"},
/* 63 */ {"var63", "undefined"},
/* 64 */ {"var64", "undefined"},
/* 65 */ {"var65", "undefined"},
/* 66 */ {"var66", "undefined"},
/* 67 */ {"var67", "undefined"},
/* 68 */ {"var68", "undefined"},
/* 69 */ {"var69", "undefined"},
/* 70 */ {"var70", "undefined"},
/* 71 */ {"var71", "undefined"},
/* 72 */ {"var72", "undefined"},
/* 73 */ {"var73", "undefined"},
/* 74 */ {"var74", "undefined"},
/* 75 */ {"var75", "undefined"},
/* 76 */ {"var76", "undefined"},
/* 77 */ {"var77", "undefined"},
/* 78 */ {"var78", "undefined"},
/* 79 */ {"var79", "undefined"},
/* 80 */ {"var80", "undefined"},
/* 81 */ {"var81", "undefined"},
/* 82 */ {"var82", "undefined"},
/* 83 */ {"var83", "Net primary productivity [kg C m**-2 s**-1]"},
/* 84 */ {"var84", "undefined"},
/* 85 */ {"var85", "10m U wind over land [m s**-1]"},
/* 86 */ {"var86", "10m V wind over land [m s**-1]"},
/* 87 */ {"var87", "1.5m temperature over land [K]"},
/* 88 */ {"var88", "1.5m dewpoint temperature over land [K]"},
/* 89 */ {"var89", "Top incoming solar radiation [W m**-2 s]"},
/* 90 */ {"var90", "Top outgoing solar radiation [W m**-2 s]"},
/* 91 */ {"var91", "undefined"},
/* 92 */ {"var92", "undefined"},
/* 93 */ {"var93", "undefined"},
/* 94 */ {"var94", "Mean sea surface temperature [K]"},
/* 95 */ {"var95", "1.5m specific humidity [kg kg**-1]"},
/* 96 */ {"var96", "undefined"},
/* 97 */ {"var97", "undefined"},
/* 98 */ {"var98", "Sea-ice thickness [m]"},
/* 99 */ {"var99", "Liquid water potential temperature [K]"},
/* 100 */ {"var100", "undefined"},
/* 101 */ {"var101", "undefined"},
/* 102 */ {"var102", "undefined"},
/* 103 */ {"var103", "undefined"},
/* 104 */ {"var104", "undefined"},
/* 105 */ {"var105", "undefined"},
/* 106 */ {"var106", "undefined"},
/* 107 */ {"var107", "undefined"},
/* 108 */ {"var108", "undefined"},
/* 109 */ {"var109", "undefined"},
/* 110 */ {"var110", "Ocean ice concentration [(0 - 1)]"},
/* 111 */ {"var111", "Ocean mean ice depth [m]"},
/* 112 */ {"var112", "undefined"},
/* 113 */ {"var113", "undefined"},
/* 114 */ {"var114", "undefined"},
/* 115 */ {"var115", "undefined"},
/* 116 */ {"var116", "undefined"},
/* 117 */ {"var117", "undefined"},
/* 118 */ {"var118", "undefined"},
/* 119 */ {"var119", "undefined"},
/* 120 */ {"var120", "undefined"},
/* 121 */ {"var121", "undefined"},
/* 122 */ {"var122", "undefined"},
/* 123 */ {"var123", "undefined"},
/* 124 */ {"var124", "undefined"},
/* 125 */ {"var125", "undefined"},
/* 126 */ {"var126", "undefined"},
/* 127 */ {"var127", "undefined"},
/* 128 */ {"var128", "undefined"},
/* 129 */ {"var129", "undefined"},
/* 130 */ {"var130", "undefined"},
/* 131 */ {"var131", "undefined"},
/* 132 */ {"var132", "undefined"},
/* 133 */ {"var133", "undefined"},
/* 134 */ {"var134", "undefined"},
/* 135 */ {"var135", "undefined"},
/* 136 */ {"var136", "undefined"},
/* 137 */ {"var137", "undefined"},
/* 138 */ {"var138", "undefined"},
/* 139 */ {"var139", "Soil temperature layer 1 [K]"},
/* 140 */ {"var140", "undefined"},
/* 141 */ {"var141", "undefined"},
/* 142 */ {"var142", "undefined"},
/* 143 */ {"var143", "undefined"},
/* 144 */ {"var144", "undefined"},
/* 145 */ {"var145", "undefined"},
/* 146 */ {"var146", "undefined"},
/* 147 */ {"var147", "undefined"},
/* 148 */ {"var148", "undefined"},
/* 149 */ {"var149", "undefined"},
/* 150 */ {"var150", "undefined"},
/* 151 */ {"var151", "undefined"},
/* 152 */ {"var152", "undefined"},
/* 153 */ {"var153", "undefined"},
/* 154 */ {"var154", "undefined"},
/* 155 */ {"var155", "undefined"},
/* 156 */ {"var156", "undefined"},
/* 157 */ {"var157", "undefined"},
/* 158 */ {"var158", "undefined"},
/* 159 */ {"var159", "undefined"},
/* 160 */ {"var160", "undefined"},
/* 161 */ {"var161", "undefined"},
/* 162 */ {"var162", "undefined"},
/* 163 */ {"var163", "undefined"},
/* 164 */ {"var164", "Average potential temperature in upper 293.4m [degrees C]"},
/* 165 */ {"var165", "undefined"},
/* 166 */ {"var166", "undefined"},
/* 167 */ {"var167", "1.5m temperature [K]"},
/* 168 */ {"var168", "1.5m dewpoint temperature [K]"},
/* 169 */ {"var169", "undefined"},
/* 170 */ {"var170", "Soil temperature layer 2 [K]"},
/* 171 */ {"var171", "undefined"},
/* 172 */ {"var172", "Fractional land mask [(0 - 1)]"},
/* 173 */ {"var173", "undefined"},
/* 174 */ {"var174", "undefined"},
/* 175 */ {"var175", "Average salinity in upper 293.4m [psu]"},
/* 176 */ {"var176", "undefined"},
/* 177 */ {"var177", "undefined"},
/* 178 */ {"var178", "undefined"},
/* 179 */ {"var179", "undefined"},
/* 180 */ {"var180", "undefined"},
/* 181 */ {"var181", "undefined"},
/* 182 */ {"var182", "undefined"},
/* 183 */ {"var183", "Soil temperature layer 3 [K]"},
/* 184 */ {"var184", "undefined"},
/* 185 */ {"var185", "undefined"},
/* 186 */ {"var186", "undefined"},
/* 187 */ {"var187", "undefined"},
/* 188 */ {"var188", "undefined"},
/* 189 */ {"var189", "undefined"},
/* 190 */ {"var190", "undefined"},
/* 191 */ {"var191", "undefined"},
/* 192 */ {"var192", "undefined"},
/* 193 */ {"var193", "undefined"},
/* 194 */ {"var194", "undefined"},
/* 195 */ {"var195", "undefined"},
/* 196 */ {"var196", "undefined"},
/* 197 */ {"var197", "undefined"},
/* 198 */ {"var198", "undefined"},
/* 199 */ {"var199", "undefined"},
/* 200 */ {"var200", "undefined"},
/* 201 */ {"var201", "1.5m temperature - maximum over last 24 hours [K]"},
/* 202 */ {"var202", "1.5m temperature - minimum over last 24 hours [K]"},
/* 203 */ {"var203", "undefined"},
/* 204 */ {"var204", "undefined"},
/* 205 */ {"var205", "undefined"},
/* 206 */ {"var206", "undefined"},
/* 207 */ {"var207", "undefined"},
/* 208 */ {"var208", "undefined"},
/* 209 */ {"var209", "undefined"},
/* 210 */ {"var210", "undefined"},
/* 211 */ {"var211", "undefined"},
/* 212 */ {"var212", "undefined"},
/* 213 */ {"var213", "undefined"},
/* 214 */ {"var214", "undefined"},
/* 215 */ {"var215", "undefined"},
/* 216 */ {"var216", "undefined"},
/* 217 */ {"var217", "undefined"},
/* 218 */ {"var218", "undefined"},
/* 219 */ {"var219", "undefined"},
/* 220 */ {"var220", "undefined"},
/* 221 */ {"var221", "undefined"},
/* 222 */ {"var222", "undefined"},
/* 223 */ {"var223", "undefined"},
/* 224 */ {"var224", "undefined"},
/* 225 */ {"var225", "undefined"},
/* 226 */ {"var226", "undefined"},
/* 227 */ {"var227", "undefined"},
/* 228 */ {"var228", "undefined"},
/* 229 */ {"var229", "undefined"},
/* 230 */ {"var230", "undefined"},
/* 231 */ {"var231", "undefined"},
/* 232 */ {"var232", "undefined"},
/* 233 */ {"var233", "undefined"},
/* 234 */ {"var234", "undefined"},
/* 235 */ {"var235", "undefined"},
/* 236 */ {"var236", "Soil temperature layer 4 [K]"},
/* 237 */ {"var237", "undefined"},
/* 238 */ {"var238", "undefined"},
/* 239 */ {"var239", "undefined"},
/* 240 */ {"var240", "undefined"},
/* 241 */ {"var241", "undefined"},
/* 242 */ {"var242", "undefined"},
/* 243 */ {"var243", "undefined"},
/* 244 */ {"var244", "undefined"},
/* 245 */ {"var245", "undefined"},
/* 246 */ {"var246", "undefined"},
/* 247 */ {"var247", "undefined"},
/* 248 */ {"var248", "undefined"},
/* 249 */ {"var249", "undefined"},
/* 250 */ {"var250", "undefined"},
/* 251 */ {"var251", "undefined"},
/* 252 */ {"var252", "undefined"},
/* 253 */ {"var253", "undefined"},
/* 254 */ {"var254", "undefined"},
/* 255 */ {"var255", "Indicates a missing value []"},
};
const struct ParmTable parm_table_ecmwf_180[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"var1", "undefined"},
/* 2 */ {"var2", "undefined"},
/* 3 */ {"var3", "undefined"},
/* 4 */ {"var4", "undefined"},
/* 5 */ {"var5", "undefined"},
/* 6 */ {"var6", "undefined"},
/* 7 */ {"var7", "undefined"},
/* 8 */ {"var8", "undefined"},
/* 9 */ {"var9", "undefined"},
/* 10 */ {"var10", "undefined"},
/* 11 */ {"var11", "undefined"},
/* 12 */ {"var12", "undefined"},
/* 13 */ {"var13", "undefined"},
/* 14 */ {"var14", "undefined"},
/* 15 */ {"var15", "undefined"},
/* 16 */ {"var16", "undefined"},
/* 17 */ {"var17", "undefined"},
/* 18 */ {"var18", "undefined"},
/* 19 */ {"var19", "undefined"},
/* 20 */ {"var20", "undefined"},
/* 21 */ {"var21", "undefined"},
/* 22 */ {"var22", "undefined"},
/* 23 */ {"var23", "undefined"},
/* 24 */ {"var24", "undefined"},
/* 25 */ {"var25", "undefined"},
/* 26 */ {"var26", "undefined"},
/* 27 */ {"var27", "undefined"},
/* 28 */ {"var28", "undefined"},
/* 29 */ {"var29", "undefined"},
/* 30 */ {"var30", "undefined"},
/* 31 */ {"var31", "undefined"},
/* 32 */ {"var32", "undefined"},
/* 33 */ {"var33", "undefined"},
/* 34 */ {"var34", "undefined"},
/* 35 */ {"var35", "undefined"},
/* 36 */ {"var36", "undefined"},
/* 37 */ {"var37", "undefined"},
/* 38 */ {"var38", "undefined"},
/* 39 */ {"var39", "undefined"},
/* 40 */ {"var40", "undefined"},
/* 41 */ {"var41", "undefined"},
/* 42 */ {"var42", "undefined"},
/* 43 */ {"var43", "undefined"},
/* 44 */ {"var44", "undefined"},
/* 45 */ {"var45", "undefined"},
/* 46 */ {"var46", "undefined"},
/* 47 */ {"var47", "undefined"},
/* 48 */ {"var48", "undefined"},
/* 49 */ {"var49", "undefined"},
/* 50 */ {"var50", "undefined"},
/* 51 */ {"var51", "undefined"},
/* 52 */ {"var52", "undefined"},
/* 53 */ {"var53", "undefined"},
/* 54 */ {"var54", "undefined"},
/* 55 */ {"var55", "undefined"},
/* 56 */ {"var56", "undefined"},
/* 57 */ {"var57", "undefined"},
/* 58 */ {"var58", "undefined"},
/* 59 */ {"var59", "undefined"},
/* 60 */ {"var60", "undefined"},
/* 61 */ {"var61", "undefined"},
/* 62 */ {"var62", "undefined"},
/* 63 */ {"var63", "undefined"},
/* 64 */ {"var64", "undefined"},
/* 65 */ {"var65", "undefined"},
/* 66 */ {"var66", "undefined"},
/* 67 */ {"var67", "undefined"},
/* 68 */ {"var68", "undefined"},
/* 69 */ {"var69", "undefined"},
/* 70 */ {"var70", "undefined"},
/* 71 */ {"var71", "undefined"},
/* 72 */ {"var72", "undefined"},
/* 73 */ {"var73", "undefined"},
/* 74 */ {"var74", "undefined"},
/* 75 */ {"var75", "undefined"},
/* 76 */ {"var76", "undefined"},
/* 77 */ {"var77", "undefined"},
/* 78 */ {"var78", "undefined"},
/* 79 */ {"var79", "undefined"},
/* 80 */ {"var80", "undefined"},
/* 81 */ {"var81", "undefined"},
/* 82 */ {"var82", "undefined"},
/* 83 */ {"var83", "undefined"},
/* 84 */ {"var84", "undefined"},
/* 85 */ {"var85", "undefined"},
/* 86 */ {"var86", "undefined"},
/* 87 */ {"var87", "undefined"},
/* 88 */ {"var88", "undefined"},
/* 89 */ {"var89", "undefined"},
/* 90 */ {"var90", "undefined"},
/* 91 */ {"var91", "undefined"},
/* 92 */ {"var92", "undefined"},
/* 93 */ {"var93", "undefined"},
/* 94 */ {"var94", "undefined"},
/* 95 */ {"var95", "undefined"},
/* 96 */ {"var96", "undefined"},
/* 97 */ {"var97", "undefined"},
/* 98 */ {"var98", "undefined"},
/* 99 */ {"var99", "undefined"},
/* 100 */ {"var100", "undefined"},
/* 101 */ {"var101", "undefined"},
/* 102 */ {"var102", "undefined"},
/* 103 */ {"var103", "undefined"},
/* 104 */ {"var104", "undefined"},
/* 105 */ {"var105", "undefined"},
/* 106 */ {"var106", "undefined"},
/* 107 */ {"var107", "undefined"},
/* 108 */ {"var108", "undefined"},
/* 109 */ {"var109", "undefined"},
/* 110 */ {"var110", "undefined"},
/* 111 */ {"var111", "undefined"},
/* 112 */ {"var112", "undefined"},
/* 113 */ {"var113", "undefined"},
/* 114 */ {"var114", "undefined"},
/* 115 */ {"var115", "undefined"},
/* 116 */ {"var116", "undefined"},
/* 117 */ {"var117", "undefined"},
/* 118 */ {"var118", "undefined"},
/* 119 */ {"var119", "undefined"},
/* 120 */ {"var120", "undefined"},
/* 121 */ {"var121", "undefined"},
/* 122 */ {"var122", "undefined"},
/* 123 */ {"var123", "undefined"},
/* 124 */ {"var124", "undefined"},
/* 125 */ {"var125", "undefined"},
/* 126 */ {"var126", "undefined"},
/* 127 */ {"var127", "undefined"},
/* 128 */ {"var128", "undefined"},
/* 129 */ {"Z", "Geopotential [m**2 s**-2]"},
/* 130 */ {"T", "Temperature [K]"},
/* 131 */ {"U", "U velocity [m s**-1]"},
/* 132 */ {"V", "V velocity [m s**-1]"},
/* 133 */ {"Q", "Specific humidity [kg kg**-1]"},
/* 134 */ {"SP", "Surface pressure [Pa]"},
/* 135 */ {"var135", "undefined"},
/* 136 */ {"var136", "undefined"},
/* 137 */ {"TCWV", "Total column water vapour [kg m**-2]"},
/* 138 */ {"VO", "Vorticity (relative) [s**-1]"},
/* 139 */ {"var139", "undefined"},
/* 140 */ {"var140", "undefined"},
/* 141 */ {"SD", "Snow depth [m of water equivalent]"},
/* 142 */ {"LSP", "Large-scale precipitation [m]"},
/* 143 */ {"CP", "Convective precipitation [m]"},
/* 144 */ {"SF", "Snowfall [m of water equivalent]"},
/* 145 */ {"var145", "undefined"},
/* 146 */ {"SSHF", "Surface sensible heat flux [W m**-2 s]"},
/* 147 */ {"SLHF", "Surface latent heat flux [W m**-2 s]"},
/* 148 */ {"var148", "undefined"},
/* 149 */ {"TSW", "Total soil wetness [m]"},
/* 150 */ {"var150", "undefined"},
/* 151 */ {"MSL", "Mean sea level pressure [Pa]"},
/* 152 */ {"var152", "undefined"},
/* 153 */ {"var153", "undefined"},
/* 154 */ {"var154", "undefined"},
/* 155 */ {"D", "Divergence [s**-1]"},
/* 156 */ {"var156", "undefined"},
/* 157 */ {"var157", "undefined"},
/* 158 */ {"var158", "undefined"},
/* 159 */ {"var159", "undefined"},
/* 160 */ {"var160", "undefined"},
/* 161 */ {"var161", "undefined"},
/* 162 */ {"var162", "undefined"},
/* 163 */ {"var163", "undefined"},
/* 164 */ {"TCC", "Total cloud cover [(0 - 1)]"},
/* 165 */ {"10U", "10 metre U wind component [m s**-1]"},
/* 166 */ {"10V", "10 metre V wind component [m s**-1]"},
/* 167 */ {"2T", "2 metre temperature [K]"},
/* 168 */ {"2D", "2 metre dewpoint temperature [K]"},
/* 169 */ {"var169", "undefined"},
/* 170 */ {"var170", "undefined"},
/* 171 */ {"var171", "undefined"},
/* 172 */ {"LSM", "Land-sea mask [(0 - 1)]"},
/* 173 */ {"var173", "undefined"},
/* 174 */ {"var174", "undefined"},
/* 175 */ {"var175", "undefined"},
/* 176 */ {"SSR", "Surface solar radiation [J m**-2 s]"},
/* 177 */ {"STR", "Surface thermal radiation [J m**-2 s]"},
/* 178 */ {"TSR", "Top solar radiation [J m**-2 s]"},
/* 179 */ {"TTR", "Top thermal radiation [J m**-2 s]"},
/* 180 */ {"EWSS", "East-West surface stress [N m**-2 s]"},
/* 181 */ {"NSSS", "North-South surface stress [N m**-2 s]"},
/* 182 */ {"E", "Evaporation [m of water]"},
/* 183 */ {"var183", "undefined"},
/* 184 */ {"var184", "undefined"},
/* 185 */ {"var185", "undefined"},
/* 186 */ {"var186", "undefined"},
/* 187 */ {"var187", "undefined"},
/* 188 */ {"var188", "undefined"},
/* 189 */ {"var189", "undefined"},
/* 190 */ {"var190", "undefined"},
/* 191 */ {"var191", "undefined"},
/* 192 */ {"var192", "undefined"},
/* 193 */ {"var193", "undefined"},
/* 194 */ {"var194", "undefined"},
/* 195 */ {"var195", "undefined"},
/* 196 */ {"var196", "undefined"},
/* 197 */ {"var197", "undefined"},
/* 198 */ {"var198", "undefined"},
/* 199 */ {"var199", "undefined"},
/* 200 */ {"var200", "undefined"},
/* 201 */ {"var201", "undefined"},
/* 202 */ {"var202", "undefined"},
/* 203 */ {"var203", "undefined"},
/* 204 */ {"var204", "undefined"},
/* 205 */ {"RO", "Runoff [m]"},
/* 206 */ {"var206", "undefined"},
/* 207 */ {"var207", "undefined"},
/* 208 */ {"var208", "undefined"},
/* 209 */ {"var209", "undefined"},
/* 210 */ {"var210", "undefined"},
/* 211 */ {"var211", "undefined"},
/* 212 */ {"var212", "undefined"},
/* 213 */ {"var213", "undefined"},
/* 214 */ {"var214", "undefined"},
/* 215 */ {"var215", "undefined"},
/* 216 */ {"var216", "undefined"},
/* 217 */ {"var217", "undefined"},
/* 218 */ {"var218", "undefined"},
/* 219 */ {"var219", "undefined"},
/* 220 */ {"var220", "undefined"},
/* 221 */ {"var221", "undefined"},
/* 222 */ {"var222", "undefined"},
/* 223 */ {"var223", "undefined"},
/* 224 */ {"var224", "undefined"},
/* 225 */ {"var225", "undefined"},
/* 226 */ {"var226", "undefined"},
/* 227 */ {"var227", "undefined"},
/* 228 */ {"var228", "undefined"},
/* 229 */ {"var229", "undefined"},
/* 230 */ {"var230", "undefined"},
/* 231 */ {"var231", "undefined"},
/* 232 */ {"var232", "undefined"},
/* 233 */ {"var233", "undefined"},
/* 234 */ {"var234", "undefined"},
/* 235 */ {"var235", "undefined"},
/* 236 */ {"var236", "undefined"},
/* 237 */ {"var237", "undefined"},
/* 238 */ {"var238", "undefined"},
/* 239 */ {"var239", "undefined"},
/* 240 */ {"var240", "undefined"},
/* 241 */ {"var241", "undefined"},
/* 242 */ {"var242", "undefined"},
/* 243 */ {"var243", "undefined"},
/* 244 */ {"var244", "undefined"},
/* 245 */ {"var245", "undefined"},
/* 246 */ {"var246", "undefined"},
/* 247 */ {"var247", "undefined"},
/* 248 */ {"var248", "undefined"},
/* 249 */ {"var249", "undefined"},
/* 250 */ {"var250", "undefined"},
/* 251 */ {"var251", "undefined"},
/* 252 */ {"var252", "undefined"},
/* 253 */ {"var253", "undefined"},
/* 254 */ {"var254", "undefined"},
/* 255 */ {"var255", "Indicates a missing value []"},
};
const struct ParmTable parm_table_ecmwf_190[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"var1", "undefined"},
/* 2 */ {"var2", "undefined"},
/* 3 */ {"var3", "undefined"},
/* 4 */ {"var4", "undefined"},
/* 5 */ {"var5", "undefined"},
/* 6 */ {"var6", "undefined"},
/* 7 */ {"var7", "undefined"},
/* 8 */ {"var8", "undefined"},
/* 9 */ {"var9", "undefined"},
/* 10 */ {"var10", "undefined"},
/* 11 */ {"var11", "undefined"},
/* 12 */ {"var12", "undefined"},
/* 13 */ {"var13", "undefined"},
/* 14 */ {"var14", "undefined"},
/* 15 */ {"var15", "undefined"},
/* 16 */ {"var16", "undefined"},
/* 17 */ {"var17", "undefined"},
/* 18 */ {"var18", "undefined"},
/* 19 */ {"var19", "undefined"},
/* 20 */ {"var20", "undefined"},
/* 21 */ {"var21", "undefined"},
/* 22 */ {"var22", "undefined"},
/* 23 */ {"var23", "undefined"},
/* 24 */ {"var24", "undefined"},
/* 25 */ {"var25", "undefined"},
/* 26 */ {"var26", "undefined"},
/* 27 */ {"var27", "undefined"},
/* 28 */ {"var28", "undefined"},
/* 29 */ {"var29", "undefined"},
/* 30 */ {"var30", "undefined"},
/* 31 */ {"var31", "undefined"},
/* 32 */ {"var32", "undefined"},
/* 33 */ {"var33", "undefined"},
/* 34 */ {"var34", "undefined"},
/* 35 */ {"var35", "undefined"},
/* 36 */ {"var36", "undefined"},
/* 37 */ {"var37", "undefined"},
/* 38 */ {"var38", "undefined"},
/* 39 */ {"var39", "undefined"},
/* 40 */ {"var40", "undefined"},
/* 41 */ {"var41", "undefined"},
/* 42 */ {"var42", "undefined"},
/* 43 */ {"var43", "undefined"},
/* 44 */ {"var44", "undefined"},
/* 45 */ {"var45", "undefined"},
/* 46 */ {"var46", "undefined"},
/* 47 */ {"var47", "undefined"},
/* 48 */ {"var48", "undefined"},
/* 49 */ {"var49", "undefined"},
/* 50 */ {"var50", "undefined"},
/* 51 */ {"var51", "undefined"},
/* 52 */ {"var52", "undefined"},
/* 53 */ {"var53", "undefined"},
/* 54 */ {"var54", "undefined"},
/* 55 */ {"var55", "undefined"},
/* 56 */ {"var56", "undefined"},
/* 57 */ {"var57", "undefined"},
/* 58 */ {"var58", "undefined"},
/* 59 */ {"var59", "undefined"},
/* 60 */ {"var60", "undefined"},
/* 61 */ {"var61", "undefined"},
/* 62 */ {"var62", "undefined"},
/* 63 */ {"var63", "undefined"},
/* 64 */ {"var64", "undefined"},
/* 65 */ {"var65", "undefined"},
/* 66 */ {"var66", "undefined"},
/* 67 */ {"var67", "undefined"},
/* 68 */ {"var68", "undefined"},
/* 69 */ {"var69", "undefined"},
/* 70 */ {"var70", "undefined"},
/* 71 */ {"var71", "undefined"},
/* 72 */ {"var72", "undefined"},
/* 73 */ {"var73", "undefined"},
/* 74 */ {"var74", "undefined"},
/* 75 */ {"var75", "undefined"},
/* 76 */ {"var76", "undefined"},
/* 77 */ {"var77", "undefined"},
/* 78 */ {"var78", "undefined"},
/* 79 */ {"var79", "undefined"},
/* 80 */ {"var80", "undefined"},
/* 81 */ {"var81", "undefined"},
/* 82 */ {"var82", "undefined"},
/* 83 */ {"var83", "undefined"},
/* 84 */ {"var84", "undefined"},
/* 85 */ {"var85", "undefined"},
/* 86 */ {"var86", "undefined"},
/* 87 */ {"var87", "undefined"},
/* 88 */ {"var88", "undefined"},
/* 89 */ {"var89", "undefined"},
/* 90 */ {"var90", "undefined"},
/* 91 */ {"var91", "undefined"},
/* 92 */ {"var92", "undefined"},
/* 93 */ {"var93", "undefined"},
/* 94 */ {"var94", "undefined"},
/* 95 */ {"var95", "undefined"},
/* 96 */ {"var96", "undefined"},
/* 97 */ {"var97", "undefined"},
/* 98 */ {"var98", "undefined"},
/* 99 */ {"var99", "undefined"},
/* 100 */ {"var100", "undefined"},
/* 101 */ {"var101", "undefined"},
/* 102 */ {"var102", "undefined"},
/* 103 */ {"var103", "undefined"},
/* 104 */ {"var104", "undefined"},
/* 105 */ {"var105", "undefined"},
/* 106 */ {"var106", "undefined"},
/* 107 */ {"var107", "undefined"},
/* 108 */ {"var108", "undefined"},
/* 109 */ {"var109", "undefined"},
/* 110 */ {"var110", "undefined"},
/* 111 */ {"var111", "undefined"},
/* 112 */ {"var112", "undefined"},
/* 113 */ {"var113", "undefined"},
/* 114 */ {"var114", "undefined"},
/* 115 */ {"var115", "undefined"},
/* 116 */ {"var116", "undefined"},
/* 117 */ {"var117", "undefined"},
/* 118 */ {"var118", "undefined"},
/* 119 */ {"var119", "undefined"},
/* 120 */ {"var120", "undefined"},
/* 121 */ {"var121", "undefined"},
/* 122 */ {"var122", "undefined"},
/* 123 */ {"var123", "undefined"},
/* 124 */ {"var124", "undefined"},
/* 125 */ {"var125", "undefined"},
/* 126 */ {"var126", "undefined"},
/* 127 */ {"var127", "undefined"},
/* 128 */ {"var128", "undefined"},
/* 129 */ {"Z", "Geopotential [m**2 s**-2]"},
/* 130 */ {"T", "Temperature [K]"},
/* 131 */ {"U", "U velocity [m s**-1]"},
/* 132 */ {"V", "V velocity [m s**-1]"},
/* 133 */ {"Q", "Specific humidity [kg kg**-1]"},
/* 134 */ {"var134", "undefined"},
/* 135 */ {"var135", "undefined"},
/* 136 */ {"var136", "undefined"},
/* 137 */ {"var137", "undefined"},
/* 138 */ {"var138", "undefined"},
/* 139 */ {"STL1", "Soil temperature level 1 [K]"},
/* 140 */ {"var140", "undefined"},
/* 141 */ {"SD", "Snow depth [m of water]"},
/* 142 */ {"var142", "undefined"},
/* 143 */ {"var143", "undefined"},
/* 144 */ {"var144", "undefined"},
/* 145 */ {"var145", "undefined"},
/* 146 */ {"SSHF", "Surface sensible heat flux [W m**-2 s]"},
/* 147 */ {"SLHF", "Surface latent heat flux [W m**-2 s]"},
/* 148 */ {"var148", "undefined"},
/* 149 */ {"var149", "undefined"},
/* 150 */ {"var150", "undefined"},
/* 151 */ {"MSL", "Mean sea level pressure [Pa]"},
/* 152 */ {"var152", "undefined"},
/* 153 */ {"var153", "undefined"},
/* 154 */ {"var154", "undefined"},
/* 155 */ {"var155", "undefined"},
/* 156 */ {"var156", "undefined"},
/* 157 */ {"var157", "undefined"},
/* 158 */ {"var158", "undefined"},
/* 159 */ {"var159", "undefined"},
/* 160 */ {"var160", "undefined"},
/* 161 */ {"var161", "undefined"},
/* 162 */ {"var162", "undefined"},
/* 163 */ {"var163", "undefined"},
/* 164 */ {"TCC", "Total cloud cover [(0 - 1)]"},
/* 165 */ {"10U", "10 metre U wind component [m s**-1]"},
/* 166 */ {"10V", "10 metre V wind component [m s**-1]"},
/* 167 */ {"2T", "2 metre temperature [K]"},
/* 168 */ {"2D", "2 metre dewpoint temperature [K]"},
/* 169 */ {"SSRD", "Downward surface solar radiation [W m**-2 s (W m**-2 for monthly means)]"},
/* 170 */ {"CAP", "Field capacity [(0 - 1)]"},
/* 171 */ {"WILT", "Wilting point [(0 - 1)]"},
/* 172 */ {"LSM", "Land-sea mask [(0 - 1)]"},
/* 173 */ {"SR", "Roughness length [(0 - 1)]"},
/* 174 */ {"AL", "Albedo [(0 - 1)]"},
/* 175 */ {"STRD", "Downward surface long wave radiation [W m**-2 s (W m**-2 for monthly means)]"},
/* 176 */ {"SSR", "Surface net solar radiation [W m**-2 s (W m**-2 for monthly means)]"},
/* 177 */ {"STR", "Surface net long wave radiation [W m**-2 s (W m**-2 for monthly means)]"},
/* 178 */ {"TSR", "Top net solar radiation [W m**-2 s (W m**-2 for monthly means)]"},
/* 179 */ {"TTR", "Top net long wave radiation [W m**-2 s (W m**-2 for monthly means)]"},
/* 180 */ {"var180", "undefined"},
/* 181 */ {"var181", "undefined"},
/* 182 */ {"E", "Evaporation [m (m s**-1 for monthly means)]"},
/* 183 */ {"var183", "undefined"},
/* 184 */ {"var184", "undefined"},
/* 185 */ {"var185", "undefined"},
/* 186 */ {"var186", "undefined"},
/* 187 */ {"var187", "undefined"},
/* 188 */ {"var188", "undefined"},
/* 189 */ {"var189", "undefined"},
/* 190 */ {"var190", "undefined"},
/* 191 */ {"var191", "undefined"},
/* 192 */ {"var192", "undefined"},
/* 193 */ {"var193", "undefined"},
/* 194 */ {"var194", "undefined"},
/* 195 */ {"var195", "undefined"},
/* 196 */ {"var196", "undefined"},
/* 197 */ {"var197", "undefined"},
/* 198 */ {"var198", "undefined"},
/* 199 */ {"var199", "undefined"},
/* 200 */ {"var200", "undefined"},
/* 201 */ {"MX2T", "Maximum 2 metre temperature [K]"},
/* 202 */ {"MN2T", "Minimum 2 metre temperature [K]"},
/* 203 */ {"var203", "undefined"},
/* 204 */ {"var204", "undefined"},
/* 205 */ {"var205", "undefined"},
/* 206 */ {"var206", "undefined"},
/* 207 */ {"var207", "undefined"},
/* 208 */ {"var208", "undefined"},
/* 209 */ {"var209", "undefined"},
/* 210 */ {"var210", "undefined"},
/* 211 */ {"var211", "undefined"},
/* 212 */ {"var212", "undefined"},
/* 213 */ {"var213", "undefined"},
/* 214 */ {"var214", "undefined"},
/* 215 */ {"var215", "undefined"},
/* 216 */ {"var216", "undefined"},
/* 217 */ {"var217", "undefined"},
/* 218 */ {"var218", "undefined"},
/* 219 */ {"var219", "undefined"},
/* 220 */ {"var220", "undefined"},
/* 221 */ {"var221", "undefined"},
/* 222 */ {"var222", "undefined"},
/* 223 */ {"var223", "undefined"},
/* 224 */ {"var224", "undefined"},
/* 225 */ {"var225", "undefined"},
/* 226 */ {"var226", "undefined"},
/* 227 */ {"var227", "undefined"},
/* 228 */ {"TP", "Total precipitation [m (m s**-1 for monthly means)]"},
/* 229 */ {"TSM", "Total soil moisture [m**3 m**-3]"},
/* 230 */ {"var230", "undefined"},
/* 231 */ {"var231", "undefined"},
/* 232 */ {"var232", "undefined"},
/* 233 */ {"var233", "undefined"},
/* 234 */ {"var234", "undefined"},
/* 235 */ {"var235", "undefined"},
/* 236 */ {"var236", "undefined"},
/* 237 */ {"var237", "undefined"},
/* 238 */ {"var238", "undefined"},
/* 239 */ {"var239", "undefined"},
/* 240 */ {"var240", "undefined"},
/* 241 */ {"var241", "undefined"},
/* 242 */ {"var242", "undefined"},
/* 243 */ {"var243", "undefined"},
/* 244 */ {"var244", "undefined"},
/* 245 */ {"var245", "undefined"},
/* 246 */ {"var246", "undefined"},
/* 247 */ {"var247", "undefined"},
/* 248 */ {"var248", "undefined"},
/* 249 */ {"var249", "undefined"},
/* 250 */ {"var250", "undefined"},
/* 251 */ {"var251", "undefined"},
/* 252 */ {"var252", "undefined"},
/* 253 */ {"var253", "undefined"},
/* 254 */ {"var254", "undefined"},
/* 255 */ {"var255", " []"},
};
const struct ParmTable parm_table_ecmwf_200[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"STRF", "Stream function [m**2 s**-1]"},
/* 2 */ {"VPOT", "Velocity potential [m**2 s**-1]"},
/* 3 */ {"PT", "Potential temperature [K]"},
/* 4 */ {"EQPT", "Equivalent potential temperature [K]"},
/* 5 */ {"SEPT", "Saturated equivalent potential temperature [K]"},
/* 6 */ {"var6", "undefined"},
/* 7 */ {"var7", "undefined"},
/* 8 */ {"var8", "undefined"},
/* 9 */ {"var9", "undefined"},
/* 10 */ {"var10", "undefined"},
/* 11 */ {"UDVW", "U component of divergent wind [m s**-1]"},
/* 12 */ {"VDVW", "V component of divergent wind [m s**-1]"},
/* 13 */ {"URTW", "U component of rotational wind [m s**-1]"},
/* 14 */ {"VRTW", "V component of rotational wind [m s**-1]"},
/* 15 */ {"var15", "undefined"},
/* 16 */ {"var16", "undefined"},
/* 17 */ {"var17", "undefined"},
/* 18 */ {"var18", "undefined"},
/* 19 */ {"var19", "undefined"},
/* 20 */ {"var20", "undefined"},
/* 21 */ {"UCTP", "Unbalanced component of temperature [K]"},
/* 22 */ {"UCLN", "Unbalanced component of logarithm of surface pressure []"},
/* 23 */ {"UCDV", "Unbalanced component of divergence [s**-1]"},
/* 24 */ {"var24", "Reserved for future unbalanced components []"},
/* 25 */ {"var25", "Reserved for future unbalanced components []"},
/* 26 */ {"CL", "Lake cover [(0 - 1)]"},
/* 27 */ {"CVL", "Low vegetation cover [(0 - 1)]"},
/* 28 */ {"CVH", "High vegetation cover [(0 - 1)]"},
/* 29 */ {"TVL", "Type of low vegetation []"},
/* 30 */ {"TVH", "Type of high vegetation []"},
/* 31 */ {"CI", "Sea-ice cover [(0 - 1)]"},
/* 32 */ {"ASN", "Snow albedo [(0 - 1)]"},
/* 33 */ {"RSN", "Snow density [kg m**-3]"},
/* 34 */ {"SSTK", "Sea surface temperature [K]"},
/* 35 */ {"ISTL1", "Ice surface temperature layer 1 [K]"},
/* 36 */ {"ISTL2", "Ice surface temperature layer 2 [K]"},
/* 37 */ {"ISTL3", "Ice surface temperature layer 3 [K]"},
/* 38 */ {"ISTL4", "Ice surface temperature layer 4 [K]"},
/* 39 */ {"SWVL1", "Volumetric soil water layer 1 [m**3 m**-3]"},
/* 40 */ {"SWVL2", "Volumetric soil water layer 2 [m**3 m**-3]"},
/* 41 */ {"SWVL3", "Volumetric soil water layer 3 [m**3 m**-3]"},
/* 42 */ {"SWVL4", "Volumetric soil water layer 4 [m**3 m**-3]"},
/* 43 */ {"SLT", "Soil type []"},
/* 44 */ {"ES", "Snow evaporation [m of water]"},
/* 45 */ {"SMLT", "Snowmelt [m of water]"},
/* 46 */ {"SDUR", "Solar duration [s]"},
/* 47 */ {"DSRP", "Direct solar radiation [w m**-2]"},
/* 48 */ {"MAGSS", "Magnitude of surface stress [N m**-2 s]"},
/* 49 */ {"10FG", "10 metre wind gust [m s**-1]"},
/* 50 */ {"LSPF", "Large-scale precipitation fraction [s]"},
/* 51 */ {"MX2T24", "Maximum 2 metre temperature [K]"},
/* 52 */ {"MN2T24", "Minimum 2 metre temperature [K]"},
/* 53 */ {"MONT", "Montgomery potential [m**2 s**-2]"},
/* 54 */ {"PRES", "Pressure [Pa]"},
/* 55 */ {"MEAN2T24", "Mean 2 metre temperature in past 24 hours [K]"},
/* 56 */ {"MN2D24", "Mean 2 metre dewpoint temperature in past 24 hours [K]"},
/* 57 */ {"UVB", "Downward UV radiation at the surface [w m**-2 s]"},
/* 58 */ {"PAR", "Photosynthetically active radiation at the surface [w m**-2 s]"},
/* 59 */ {"CAPE", "Convective available potential energy [J kg**-1]"},
/* 60 */ {"PV", "Potential vorticity [K m**2 kg**-1 s**-1]"},
/* 61 */ {"TPO", "Total precipitation from observations [Millimetres*100 + number of stations]"},
/* 62 */ {"OBCT", "Observation count []"},
/* 63 */ {"var63", "Start time for skin temperature difference [s]"},
/* 64 */ {"var64", "Finish time for skin temperature difference [s]"},
/* 65 */ {"var65", "Skin temperature difference [K]"},
/* 66 */ {"var66", "Leaf area index, low vegetation [m**2 / m**2]"},
/* 67 */ {"var67", "Leaf area index, high vegetation [m**2 / m**2]"},
/* 68 */ {"var68", "Minimum stomatal resistance, low vegetation [s m**-1]"},
/* 69 */ {"var69", "Minimum stomatal resistance, high vegetation [s m**-1]"},
/* 70 */ {"var70", "Biome cover, low vegetation [(0 - 1)]"},
/* 71 */ {"var71", "Biome cover, high vegetation [(0 - 1)]"},
/* 72 */ {"var72", "undefined"},
/* 73 */ {"var73", "undefined"},
/* 74 */ {"var74", "undefined"},
/* 75 */ {"var75", "undefined"},
/* 76 */ {"var76", "undefined"},
/* 77 */ {"var77", "undefined"},
/* 78 */ {"var78", "Total column liquid water [kg m**-2]"},
/* 79 */ {"var79", "Total column ice water [kg m**-2]"},
/* 80 */ {"var80", "Experimental product []"},
/* 81 */ {"var81", "Experimental product []"},
/* 82 */ {"var82", "Experimental product []"},
/* 83 */ {"var83", "Experimental product []"},
/* 84 */ {"var84", "Experimental product []"},
/* 85 */ {"var85", "Experimental product []"},
/* 86 */ {"var86", "Experimental product []"},
/* 87 */ {"var87", "Experimental product []"},
/* 88 */ {"var88", "Experimental product []"},
/* 89 */ {"var89", "Experimental product []"},
/* 90 */ {"var90", "Experimental product []"},
/* 91 */ {"var91", "Experimental product []"},
/* 92 */ {"var92", "Experimental product []"},
/* 93 */ {"var93", "Experimental product []"},
/* 94 */ {"var94", "Experimental product []"},
/* 95 */ {"var95", "Experimental product []"},
/* 96 */ {"var96", "Experimental product []"},
/* 97 */ {"var97", "Experimental product []"},
/* 98 */ {"var98", "Experimental product []"},
/* 99 */ {"var99", "Experimental product []"},
/* 100 */ {"var100", "Experimental product []"},
/* 101 */ {"var101", "Experimental product []"},
/* 102 */ {"var102", "Experimental product []"},
/* 103 */ {"var103", "Experimental product []"},
/* 104 */ {"var104", "Experimental product []"},
/* 105 */ {"var105", "Experimental product []"},
/* 106 */ {"var106", "Experimental product []"},
/* 107 */ {"var107", "Experimental product []"},
/* 108 */ {"var108", "Experimental product []"},
/* 109 */ {"var109", "Experimental product []"},
/* 110 */ {"var110", "Experimental product []"},
/* 111 */ {"var111", "Experimental product []"},
/* 112 */ {"var112", "Experimental product []"},
/* 113 */ {"var113", "Experimental product []"},
/* 114 */ {"var114", "Experimental product []"},
/* 115 */ {"var115", "Experimental product []"},
/* 116 */ {"var116", "Experimental product []"},
/* 117 */ {"var117", "Experimental product []"},
/* 118 */ {"var118", "Experimental product []"},
/* 119 */ {"var119", "Experimental product []"},
/* 120 */ {"var120", "Experimental product []"},
/* 121 */ {"MX2T6", "Maximum temperature at 2 metres [K]"},
/* 122 */ {"MN2T6", "Minimum temperature at 2 metres [K]"},
/* 123 */ {"10FG6", "10 metre wind gust in the past 6 hours [m s**-1]"},
/* 124 */ {"var124", "undefined"},
/* 125 */ {"var125", "Vertically integrated total energy [J m**-2]"},
/* 126 */ {"var126", "Generic parameter for sensitive area prediction [Various]"},
/* 127 */ {"AT", "Atmospheric tide []"},
/* 128 */ {"BV", "Budget values []"},
/* 129 */ {"Z", "Geopotential [m**2 s**-2]"},
/* 130 */ {"T", "Temperature [K]"},
/* 131 */ {"U", "U velocity [m s**-1]"},
/* 132 */ {"V", "V velocity [m s**-1]"},
/* 133 */ {"Q", "Specific humidity [kg kg**-1]"},
/* 134 */ {"SP", "Surface pressure [Pa]"},
/* 135 */ {"W", "Vertical velocity [Pa s**-1]"},
/* 136 */ {"TCW", "Total column water [kg m**-2]"},
/* 137 */ {"TCWV", "Total column water vapour [kg m**-2]"},
/* 138 */ {"VO", "Vorticity (relative) [s**-1]"},
/* 139 */ {"STL1", "Soil temperature level 1 [K]"},
/* 140 */ {"SWL1", "Soil wetness level 1 [m of water]"},
/* 141 */ {"SD", "Snow depth [m of water equivalent]"},
/* 142 */ {"LSP", "Stratiform precipitation (Large-scale precipitation) [m]"},
/* 143 */ {"CP", "Convective precipitation [m]"},
/* 144 */ {"SF", "Snowfall (convective + stratiform) [m of water equivalent]"},
/* 145 */ {"BLD", "Boundary layer dissipation [W m**-2 s]"},
/* 146 */ {"SSHF", "Surface sensible heat flux [W m**-2 s]"},
/* 147 */ {"SLHF", "Surface latent heat flux [W m**-2 s]"},
/* 148 */ {"CHNK", "Charnock []"},
/* 149 */ {"SNR", "Surface net radiation [W m**-2 s]"},
/* 150 */ {"TNR", "Top net radiation []"},
/* 151 */ {"MSL", "Mean sea level pressure [Pa]"},
/* 152 */ {"LNSP", "Logarithm of surface pressure []"},
/* 153 */ {"SWHR", "Short-wave heating rate [K]"},
/* 154 */ {"LWHR", "Long-wave heating rate [K]"},
/* 155 */ {"D", "Divergence [s**-1]"},
/* 156 */ {"GH", "Height [m]"},
/* 157 */ {"R", "Relative humidity [%]"},
/* 158 */ {"TSP", "Tendency of surface pressure [Pa s**-1]"},
/* 159 */ {"BLH", "Boundary layer height [m]"},
/* 160 */ {"SDOR", "Standard deviation of orography []"},
/* 161 */ {"ISOR", "Anisotropy of sub-gridscale orography []"},
/* 162 */ {"ANOR", "Angle of sub-gridscale orography [rad]"},
/* 163 */ {"SLOR", "Slope of sub-gridscale orography []"},
/* 164 */ {"TCC", "Total cloud cover [(0 - 1)]"},
/* 165 */ {"10U", "10 metre U wind component [m s**-1]"},
/* 166 */ {"10V", "10 metre V wind component [m s**-1]"},
/* 167 */ {"2T", "2 metre temperature [K]"},
/* 168 */ {"2D", "2 metre dewpoint temperature [K]"},
/* 169 */ {"SSRD", "Surface solar radiation downwards [W m**-2 s]"},
/* 170 */ {"STL2", "Soil temperature level 2 [K]"},
/* 171 */ {"SWL2", "Soil wetness level 2 [m of water]"},
/* 172 */ {"LSM", "Land-sea mask [(0 - 1)]"},
/* 173 */ {"SR", "Surface roughness [m]"},
/* 174 */ {"AL", "Albedo [(0 - 1)]"},
/* 175 */ {"STRD", "Surface thermal radiation downwards [W m**-2 s]"},
/* 176 */ {"SSR", "Surface solar radiation [W m**-2 s]"},
/* 177 */ {"STR", "Surface thermal radiation [W m**-2 s]"},
/* 178 */ {"TSR", "Top solar radiation [W m**-2 s]"},
/* 179 */ {"TTR", "Top thermal radiation [W m**-2 s]"},
/* 180 */ {"EWSS", "East-West surface stress [N m**-2 s]"},
/* 181 */ {"NSSS", "North-South surface stress [N m**-2 s]"},
/* 182 */ {"E", "Evaporation [m of water]"},
/* 183 */ {"STL3", "Soil temperature level 3 [K]"},
/* 184 */ {"SWL3", "Soil wetness level 3 [m of water]"},
/* 185 */ {"CCC", "Convective cloud cover [(0 - 1)]"},
/* 186 */ {"LCC", "Low cloud cover [(0 - 1)]"},
/* 187 */ {"MCC", "Medium cloud cover [(0 - 1)]"},
/* 188 */ {"HCC", "High cloud cover [(0 - 1)]"},
/* 189 */ {"SUND", "Sunshine duration [s]"},
/* 190 */ {"EWOV", "East-West component of sub-gridscale orographic variance [m**2]"},
/* 191 */ {"NSOV", "North-South component of sub-gridscale orographic variance [m**2]"},
/* 192 */ {"NWOV", "North-West/South-East component of sub-gridscale orographic variance [m**2]"},
/* 193 */ {"NEOV", "North-East/South-West component of sub-gridscale orographic variance [m**2]"},
/* 194 */ {"BTMP", "Brightness temperature [K]"},
/* 195 */ {"LGWS", "Latitudinal component of gravity wave stress [N m**-2 s]"},
/* 196 */ {"MGWS", "Meridional component of gravity wave stress [N m**-2 s]"},
/* 197 */ {"GWD", "Gravity wave dissipation [W m**-2 s]"},
/* 198 */ {"SRC", "Skin reservoir content [m of water]"},
/* 199 */ {"VEG", "Vegetation fraction [(0 - 1)]"},
/* 200 */ {"VSO", "Variance of sub-gridscale orography [m**2]"},
/* 201 */ {"MX2T", "Maximum temperature at 2 metres since previous post-processing [K]"},
/* 202 */ {"MN2T", "Minimum temperature at 2 metres since previous post-processing [K]"},
/* 203 */ {"O3", "Ozone mass mixing ratio [kg kg**-1]"},
/* 204 */ {"PAW", "Precipitation analysis weights []"},
/* 205 */ {"RO", "Runoff [m]"},
/* 206 */ {"TCO3", "Total column ozone [kg m**-2]"},
/* 207 */ {"10SI", "10 metre wind speed [m s**-1]"},
/* 208 */ {"TSRC", "Top net solar radiation, clear sky [W m**-2 s]"},
/* 209 */ {"TTRC", "Top net thermal radiation, clear sky [W m**-2 s]"},
/* 210 */ {"SSRC", "Surface net solar radiation, clear sky [W m**-2 s]"},
/* 211 */ {"STRC", "Surface net thermal radiation, clear sky [W m**-2 s]"},
/* 212 */ {"TISR", "TOA incident solar radiation [W m**-2 s]"},
/* 213 */ {"var213", "undefined"},
/* 214 */ {"DHR", "Diabatic heating by radiation [K]"},
/* 215 */ {"DHVD", "Diabatic heating by vertical diffusion [K]"},
/* 216 */ {"DHCC", "Diabatic heating by cumulus convection [K]"},
/* 217 */ {"DHLC", "Diabatic heating large-scale condensation [K]"},
/* 218 */ {"VDZW", "Vertical diffusion of zonal wind [m s**-1]"},
/* 219 */ {"VDMW", "Vertical diffusion of meridional wind [m s**-1]"},
/* 220 */ {"EWGD", "East-West gravity wave drag tendency [m s**-1]"},
/* 221 */ {"NSGD", "North-South gravity wave drag tendency [m s**-1]"},
/* 222 */ {"CTZW", "Convective tendency of zonal wind [m s**-1]"},
/* 223 */ {"CTMW", "Convective tendency of meridional wind [m s**-1]"},
/* 224 */ {"VDH", "Vertical diffusion of humidity [kg kg**-1]"},
/* 225 */ {"HTCC", "Humidity tendency by cumulus convection [kg kg**-1]"},
/* 226 */ {"HTLC", "Humidity tendency by large-scale condensation [kg kg**-1]"},
/* 227 */ {"CRNH", "Change from removal of negative humidity [kg kg**-1]"},
/* 228 */ {"TP", "Total precipitation [m]"},
/* 229 */ {"IEWS", "Instantaneous X surface stress [N m**-2]"},
/* 230 */ {"INSS", "Instantaneous Y surface stress [N m**-2]"},
/* 231 */ {"ISHF", "Instantaneous surface heat flux [W m**-2]"},
/* 232 */ {"IE", "Instantaneous moisture flux [kg m**-2 s]"},
/* 233 */ {"ASQ", "Apparent surface humidity [kg kg**-1]"},
/* 234 */ {"LSRH", "Logarithm of surface roughness length for heat []"},
/* 235 */ {"SKT", "Skin temperature [K]"},
/* 236 */ {"STL4", "Soil temperature level 4 [K]"},
/* 237 */ {"SWL4", "Soil wetness level 4 [m]"},
/* 238 */ {"TSN", "Temperature of snow layer [K]"},
/* 239 */ {"CSF", "Convective snowfall [m of water equivalent]"},
/* 240 */ {"LSF", "Large-scale snowfall [m of water equivalent]"},
/* 241 */ {"ACF", "Accumulated cloud fraction tendency [(-1 to 1)]"},
/* 242 */ {"ALW", "Accumulated liquid water tendency [(-1 to 1)]"},
/* 243 */ {"FAL", "Forecast albedo [(0 - 1)]"},
/* 244 */ {"FSR", "Forecast surface roughness [m]"},
/* 245 */ {"FLSR", "Forecast logarithm of surface roughness for heat []"},
/* 246 */ {"CLWC", "Cloud liquid water content [kg kg**-1]"},
/* 247 */ {"CIWC", "Cloud ice water content [kg kg**-1]"},
/* 248 */ {"CC", "Cloud cover [(0 - 1)]"},
/* 249 */ {"AIW", "Accumulated ice water tendency [(-1 to 1)]"},
/* 250 */ {"ICE", "Ice age [(0 - 1)]"},
/* 251 */ {"ATTE", "Adiabatic tendency of temperature [K]"},
/* 252 */ {"ATHE", "Adiabatic tendency of humidity [kg kg**-1]"},
/* 253 */ {"ATZE", "Adiabatic tendency of zonal wind [m s**-1]"},
/* 254 */ {"ATMW", "Adiabatic tendency of meridional wind [m s**-1]"},
/* 255 */ {"var255", "Indicates a missing value []"},
};
const struct ParmTable parm_table_ecmwf_210[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"AERMR01", "Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio [kg kg**-1]"},
/* 2 */ {"AERMR02", "Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio [kg kg**-1]"},
/* 3 */ {"AERMR03", "Sea Salt Aerosol (5 - 20 um) Mixing Ratio [kg kg**-1]"},
/* 4 */ {"AERMR04", "Dust Aerosol (0.03 - 0.55 um) Mixing Ratio [kg kg**-1]"},
/* 5 */ {"AERMR05", "Dust Aerosol (0.55 - 0.9 um) Mixing Ratio [kg kg**-1]"},
/* 6 */ {"AERMR06", "Dust Aerosol (0.9 - 20 um) Mixing Ratio [kg kg**-1]"},
/* 7 */ {"AERMR07", "Hydrophobic Organic Matter Aerosol Mixing Ratio [kg kg**-1]"},
/* 8 */ {"AERMR08", "Hydrophilic Organic Matter Aerosol Mixing Ratio [kg kg**-1]"},
/* 9 */ {"AERMR09", "Hydrophobic Black Carbon Aerosol Mixing Ratio [kg kg**-1]"},
/* 10 */ {"AERMR10", "Hydrophilic Black Carbon Aerosol Mixing Ratio [kg kg**-1]"},
/* 11 */ {"AERMR11", "Sulphate Aerosol Mixing Ratio [kg kg**-1]"},
/* 12 */ {"AERMR12", "Aerosol type 12 mixing ratio [kg kg**-1]"},
/* 13 */ {"var13", "undefined"},
/* 14 */ {"var14", "undefined"},
/* 15 */ {"var15", "undefined"},
/* 16 */ {"AERGN01", "Aerosol type 1 source/gain accumulated [kg m**-2]"},
/* 17 */ {"AERGN02", "Aerosol type 2 source/gain accumulated [kg m**-2]"},
/* 18 */ {"AERGN03", "Aerosol type 3 source/gain accumulated [kg m**-2]"},
/* 19 */ {"AERGN04", "Aerosol type 4 source/gain accumulated [kg m**-2]"},
/* 20 */ {"AERGN05", "Aerosol type 5 source/gain accumulated [kg m**-2]"},
/* 21 */ {"AERGN06", "Aerosol type 6 source/gain accumulated [kg m**-2]"},
/* 22 */ {"AERGN07", "Aerosol type 7 source/gain accumulated [kg m**-2]"},
/* 23 */ {"AERGN08", "Aerosol type 8 source/gain accumulated [kg m**-2]"},
/* 24 */ {"AERGN09", "Aerosol type 9 source/gain accumulated [kg m**-2]"},
/* 25 */ {"AERGN10", "Aerosol type 10 source/gain accumulated [kg m**-2]"},
/* 26 */ {"AERGN11", "Aerosol type 11 source/gain accumulated [kg m**-2]"},
/* 27 */ {"AERGN12", "Aerosol type 12 source/gain accumulated [kg m**-2]"},
/* 28 */ {"var28", "undefined"},
/* 29 */ {"var29", "undefined"},
/* 30 */ {"var30", "undefined"},
/* 31 */ {"AERLS01", "Aerosol type 1 sink/loss accumulated [kg m**-2]"},
/* 32 */ {"AERLS02", "Aerosol type 2 sink/loss accumulated [kg m**-2]"},
/* 33 */ {"AERLS03", "Aerosol type 3 sink/loss accumulated [kg m**-2]"},
/* 34 */ {"AERLS04", "Aerosol type 4 sink/loss accumulated [kg m**-2]"},
/* 35 */ {"AERLS05", "Aerosol type 5 sink/loss accumulated [kg m**-2]"},
/* 36 */ {"AERLS06", "Aerosol type 6 sink/loss accumulated [kg m**-2]"},
/* 37 */ {"AERLS07", "Aerosol type 7 sink/loss accumulated [kg m**-2]"},
/* 38 */ {"AERLS08", "Aerosol type 8 sink/loss accumulated [kg m**-2]"},
/* 39 */ {"AERLS09", "Aerosol type 9 sink/loss accumulated [kg m**-2]"},
/* 40 */ {"AERLS10", "Aerosol type 10 sink/loss accumulated [kg m**-2]"},
/* 41 */ {"AERLS11", "Aerosol type 11 sink/loss accumulated [kg m**-2]"},
/* 42 */ {"AERLS12", "Aerosol type 12 sink/loss accumulated [kg m**-2]"},
/* 43 */ {"var43", "undefined"},
/* 44 */ {"var44", "undefined"},
/* 45 */ {"var45", "undefined"},
/* 46 */ {"AERPR", "Aerosol precursor mixing ratio [kg kg**-1]"},
/* 47 */ {"AERSM", "Aerosol small mode mixing ratio [kg kg**-1]"},
/* 48 */ {"AERLG", "Aerosol large mode mixing ratio [kg kg**-1]"},
/* 49 */ {"AODPR", "Aerosol precursor optical depth [dimensionless]"},
/* 50 */ {"AODSM", "Aerosol small mode optical depth [dimensionless]"},
/* 51 */ {"AODLG", "Aerosol large mode optical depth [dimensionless]"},
/* 52 */ {"AERDEP", "Dust emission potential [kg s**2 m**-5]"},
/* 53 */ {"AERLTS", "Lifting threshold speed [m s**-1]"},
/* 54 */ {"AERSCC", "Soil clay content [%]"},
/* 55 */ {"var55", "undefined"},
/* 56 */ {"var56", "undefined"},
/* 57 */ {"var57", "undefined"},
/* 58 */ {"var58", "undefined"},
/* 59 */ {"var59", "undefined"},
/* 60 */ {"var60", "undefined"},
/* 61 */ {"CO2", "Carbon Dioxide [kg kg**-1]"},
/* 62 */ {"CH4", "Methane [kg kg**-1]"},
/* 63 */ {"N2O", "Nitrous oxide [kg kg**-1]"},
/* 64 */ {"TCCO2", "Total column Carbon Dioxide [kg m**-2]"},
/* 65 */ {"TCCH4", "Total column Methane [kg m**-2]"},
/* 66 */ {"TCN2O", "Total column Nitrous oxide [kg m**-2]"},
/* 67 */ {"CO2OF", "Ocean flux of Carbon Dioxide [kg m**-2 s**-1]"},
/* 68 */ {"CO2NBF", "Natural biosphere flux of Carbon Dioxide [kg m**-2 s**-1]"},
/* 69 */ {"CO2APF", "Anthropogenic emissions of Carbon Dioxide [kg m**-2 s**-1]"},
/* 70 */ {"CH4F", "Methane Surface Fluxes [kg m**-2 s**-1]"},
/* 71 */ {"kCH4", "Methane loss rate due to radical hydroxyl (OH) [s**-1]"},
/* 72 */ {"var72", "undefined"},
/* 73 */ {"var73", "undefined"},
/* 74 */ {"var74", "undefined"},
/* 75 */ {"var75", "undefined"},
/* 76 */ {"var76", "undefined"},
/* 77 */ {"var77", "undefined"},
/* 78 */ {"var78", "undefined"},
/* 79 */ {"var79", "undefined"},
/* 80 */ {"CO2FIRE", "Wildfire flux of Carbon Dioxide [kg m**-2 s**-1]"},
/* 81 */ {"COFIRE", "Wildfire flux of Carbon Monoxide [kg m**-2 s**-1]"},
/* 82 */ {"CH4FIRE", "Wildfire flux of Methane [kg m**-2 s**-1]"},
/* 83 */ {"NMHCFIRE", "Wildfire flux of Non-Methane Hydro-Carbons [kg m**-2 s**-1]"},
/* 84 */ {"H2FIRE", "Wildfire flux of Hydrogen [kg m**-2 s**-1]"},
/* 85 */ {"NOXFIRE", "Wildfire flux of Nitrogen Oxides NOx [kg m**-2 s**-1]"},
/* 86 */ {"N2OFIRE", "Wildfire flux of Nitrous Oxide [kg m**-2 s**-1]"},
/* 87 */ {"PM2P5FIRE", "Wildfire flux of Particulate Matter PM2.5 [kg m**-2 s**-1]"},
/* 88 */ {"TPMFIRE", "Wildfire flux of Total Particulate Matter [kg m**-2 s**-1]"},
/* 89 */ {"TCFIRE", "Wildfire flux of Total Carbon in Aerosols [kg m**-2 s**-1]"},
/* 90 */ {"OCFIRE", "Wildfire flux of Organic Carbon [kg m**-2 s**-1]"},
/* 91 */ {"BCFIRE", "Wildfire flux of Black Carbon [kg m**-2 s**-1]"},
/* 92 */ {"CFIRE", "Wildfire overall flux of burnt Carbon [kg m**-2 s**-1]"},
/* 93 */ {"C4FFIRE", "Wildfire fraction of C4 plants [dimensionless]"},
/* 94 */ {"VEGFIRE", "Wildfire vegetation map index [dimensionless]"},
/* 95 */ {"CCFIRE", "Wildfire Combustion Completeness [dimensionless]"},
/* 96 */ {"FLFIRE", "Wildfire Fuel Load"},
/* 97 */ {"BFFIRE", "Wildfire fraction of area burnt [dimensionless]"},
/* 98 */ {"OAFIRE", "Wildfire observed area [m**2]"},
/* 99 */ {"FRPFIRE", "Wildfire radiative power [W m**-2]"},
/* 100 */ {"CRFIRE", "Wildfire combustion rate [kg m**-2 s**-1]"},
/* 101 */ {"var101", "undefined"},
/* 102 */ {"var102", "undefined"},
/* 103 */ {"var103", "undefined"},
/* 104 */ {"var104", "undefined"},
/* 105 */ {"var105", "undefined"},
/* 106 */ {"var106", "undefined"},
/* 107 */ {"var107", "undefined"},
/* 108 */ {"var108", "undefined"},
/* 109 */ {"var109", "undefined"},
/* 110 */ {"var110", "undefined"},
/* 111 */ {"var111", "undefined"},
/* 112 */ {"var112", "undefined"},
/* 113 */ {"var113", "undefined"},
/* 114 */ {"var114", "undefined"},
/* 115 */ {"var115", "undefined"},
/* 116 */ {"var116", "undefined"},
/* 117 */ {"var117", "undefined"},
/* 118 */ {"var118", "undefined"},
/* 119 */ {"var119", "undefined"},
/* 120 */ {"var120", "undefined"},
/* 121 */ {"NO2", "Nitrogen dioxide [kg kg**-1]"},
/* 122 */ {"SO2", "Sulphur dioxide [kg kg**-1]"},
/* 123 */ {"CO", "Carbon monoxide [kg kg**-1]"},
/* 124 */ {"HCHO", "Formaldehyde [kg kg**-1]"},
/* 125 */ {"TCNO2", "Total column Nitrogen dioxide [kg m**-2]"},
/* 126 */ {"TCSO2", "Total column Sulphur dioxide [kg m**-2]"},
/* 127 */ {"TCCO", "Total column Carbon monoxide [kg m**-2]"},
/* 128 */ {"TCHCHO", "Total column Formaldehyde [kg m**-2]"},
/* 129 */ {"NOX", "Nitrogen Oxides [kg kg**-1]"},
/* 130 */ {"TCNOX", "Total Column Nitrogen Oxides [kg m**-2]"},
/* 131 */ {"GRG1", "Reactive tracer 1 mass mixing ratio [kg kg**-1]"},
/* 132 */ {"TCGRG1", "Total column GRG tracer 1 [kg m**-2]"},
/* 133 */ {"GRG2", "Reactive tracer 2 mass mixing ratio [kg kg**-1]"},
/* 134 */ {"TCGRG2", "Total column GRG tracer 2 [kg m**-2]"},
/* 135 */ {"GRG3", "Reactive tracer 3 mass mixing ratio [kg kg**-1]"},
/* 136 */ {"TCGRG3", "Total column GRG tracer 3 [kg m**-2]"},
/* 137 */ {"GRG4", "Reactive tracer 4 mass mixing ratio [kg kg**-1]"},
/* 138 */ {"TCGRG4", "Total column GRG tracer 4 [kg m**-2]"},
/* 139 */ {"GRG5", "Reactive tracer 5 mass mixing ratio [kg kg**-1]"},
/* 140 */ {"TCGRG5", "Total column GRG tracer 5 [kg m**-2]"},
/* 141 */ {"GRG6", "Reactive tracer 6 mass mixing ratio [kg kg**-1]"},
/* 142 */ {"TCGRG6", "Total column GRG tracer 6 [kg m**-2]"},
/* 143 */ {"GRG7", "Reactive tracer 7 mass mixing ratio [kg kg**-1]"},
/* 144 */ {"TCGRG7", "Total column GRG tracer 7 [kg m**-2]"},
/* 145 */ {"GRG8", "Reactive tracer 8 mass mixing ratio [kg kg**-1]"},
/* 146 */ {"TCGRG8", "Total column GRG tracer 8 [kg m**-2]"},
/* 147 */ {"GRG9", "Reactive tracer 9 mass mixing ratio [kg kg**-1]"},
/* 148 */ {"TCGRG9", "Total column GRG tracer 9 [kg m**-2]"},
/* 149 */ {"GRG10", "Reactive tracer 10 mass mixing ratio [kg kg**-1]"},
/* 150 */ {"TCGRG10", "Total column GRG tracer 10 [kg m**-2]"},
/* 151 */ {"SFNOX", "Surface flux Nitrogen oxides [kg m**-2 s**-1]"},
/* 152 */ {"SFNO2", "Surface flux Nitrogen dioxide [kg m**-2 s**-1]"},
/* 153 */ {"SFSO2", "Surface flux Sulphur dioxide [kg m**-2 s**-1]"},
/* 154 */ {"SFCO2", "Surface flux Carbon monoxide [kg m**-2 s**-1]"},
/* 155 */ {"SFHCHO", "Surface flux Formaldehyde [kg m**-2 s**-1]"},
/* 156 */ {"SFGO3", "Surface flux GEMS Ozone [kg m**-2 s**-1]"},
/* 157 */ {"SFGR1", "Surface flux reactive tracer 1 [kg m**-2 s**-1]"},
/* 158 */ {"SFGR2", "Surface flux reactive tracer 2 [kg m**-2 s**-1]"},
/* 159 */ {"SFGR3", "Surface flux reactive tracer 3 [kg m**-2 s**-1]"},
/* 160 */ {"SFGR4", "Surface flux reactive tracer 4 [kg m**-2 s**-1]"},
/* 161 */ {"SFGR5", "Surface flux reactive tracer 5 [kg m**-2 s**-1]"},
/* 162 */ {"SFGR6", "Surface flux reactive tracer 6 [kg m**-2 s**-1]"},
/* 163 */ {"SFGR7", "Surface flux reactive tracer 7 [kg m**-2 s**-1]"},
/* 164 */ {"SFGR8", "Surface flux reactive tracer 8 [kg m**-2 s**-1]"},
/* 165 */ {"SFGR9", "Surface flux reactive tracer 9 [kg m**-2 s**-1]"},
/* 166 */ {"SFGR10", "Surface flux reactive tracer 10 [kg m**-2 s**-1]"},
/* 167 */ {"var167", "undefined"},
/* 168 */ {"var168", "undefined"},
/* 169 */ {"var169", "undefined"},
/* 170 */ {"var170", "undefined"},
/* 171 */ {"var171", "undefined"},
/* 172 */ {"var172", "undefined"},
/* 173 */ {"var173", "undefined"},
/* 174 */ {"var174", "undefined"},
/* 175 */ {"var175", "undefined"},
/* 176 */ {"var176", "undefined"},
/* 177 */ {"var177", "undefined"},
/* 178 */ {"var178", "undefined"},
/* 179 */ {"var179", "undefined"},
/* 180 */ {"var180", "undefined"},
/* 181 */ {"Ra", "Radon [kg kg**-1]"},
/* 182 */ {"SF6", "Sulphur Hexafluoride [kg kg**-1]"},
/* 183 */ {"TCRa", "Total column Radon [kg m**-2]"},
/* 184 */ {"TCSF6", "Total column Sulphur Hexafluoride [kg m**-2]"},
/* 185 */ {"SF6APF", "Anthropogenic Emissions of Sulphur Hexafluoride [kg m**-2 s**-1]"},
/* 186 */ {"var186", "undefined"},
/* 187 */ {"var187", "undefined"},
/* 188 */ {"var188", "undefined"},
/* 189 */ {"var189", "undefined"},
/* 190 */ {"var190", "undefined"},
/* 191 */ {"var191", "undefined"},
/* 192 */ {"var192", "undefined"},
/* 193 */ {"var193", "undefined"},
/* 194 */ {"var194", "undefined"},
/* 195 */ {"var195", "undefined"},
/* 196 */ {"var196", "undefined"},
/* 197 */ {"var197", "undefined"},
/* 198 */ {"var198", "undefined"},
/* 199 */ {"var199", "undefined"},
/* 200 */ {"var200", "undefined"},
/* 201 */ {"var201", "undefined"},
/* 202 */ {"var202", "undefined"},
/* 203 */ {"GO3", "GEMS Ozone [kg kg**-1]"},
/* 204 */ {"var204", "undefined"},
/* 205 */ {"var205", "undefined"},
/* 206 */ {"GTCO3", "GEMS Total column ozone [kg m**-2]"},
/* 207 */ {"AOD550", "Total Aerosol Optical Depth at 550nm [-]"},
/* 208 */ {"SSAOD550", "Sea Salt Aerosol Optical Depth at 550nm [-]"},
/* 209 */ {"DUAOD550", "Dust Aerosol Optical Depth at 550nm [-]"},
/* 210 */ {"OMAOD550", "Organic Matter Aerosol Optical Depth at 550nm [-]"},
/* 211 */ {"BCAOD550", "Black Carbon Aerosol Optical Depth at 550nm [-]"},
/* 212 */ {"SUAOD550", "Sulphate Aerosol Optical Depth at 550nm [-]"},
/* 213 */ {"AOD469", "Total Aerosol Optical Depth at 469nm [-]"},
/* 214 */ {"AOD670", "Total Aerosol Optical Depth at 670nm [-]"},
/* 215 */ {"AOD865", "Total Aerosol Optical Depth at 865nm [-]"},
/* 216 */ {"AOD1240", "Total Aerosol Optical Depth at 1240nm [-]"},
/* 217 */ {"var217", "undefined"},
/* 218 */ {"var218", "undefined"},
/* 219 */ {"var219", "undefined"},
/* 220 */ {"var220", "undefined"},
/* 221 */ {"var221", "undefined"},
/* 222 */ {"var222", "undefined"},
/* 223 */ {"var223", "undefined"},
/* 224 */ {"var224", "undefined"},
/* 225 */ {"var225", "undefined"},
/* 226 */ {"var226", "undefined"},
/* 227 */ {"var227", "undefined"},
/* 228 */ {"var228", "undefined"},
/* 229 */ {"var229", "undefined"},
/* 230 */ {"var230", "undefined"},
/* 231 */ {"var231", "undefined"},
/* 232 */ {"var232", "undefined"},
/* 233 */ {"var233", "undefined"},
/* 234 */ {"var234", "undefined"},
/* 235 */ {"var235", "undefined"},
/* 236 */ {"var236", "undefined"},
/* 237 */ {"var237", "undefined"},
/* 238 */ {"var238", "undefined"},
/* 239 */ {"var239", "undefined"},
/* 240 */ {"var240", "undefined"},
/* 241 */ {"var241", "undefined"},
/* 242 */ {"var242", "undefined"},
/* 243 */ {"var243", "undefined"},
/* 244 */ {"var244", "undefined"},
/* 245 */ {"var245", "undefined"},
/* 246 */ {"var246", "undefined"},
/* 247 */ {"var247", "undefined"},
/* 248 */ {"var248", "undefined"},
/* 249 */ {"var249", "undefined"},
/* 250 */ {"var250", "undefined"},
/* 251 */ {"var251", "undefined"},
/* 252 */ {"var252", "undefined"},
/* 253 */ {"var253", "undefined"},
/* 254 */ {"var254", "undefined"},
/* 255 */ {"var255", "undefined"},
};
const struct ParmTable parm_table_ecmwf_211[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"var1", "undefined"},
/* 2 */ {"var2", "undefined"},
/* 3 */ {"var3", "undefined"},
/* 4 */ {"var4", "undefined"},
/* 5 */ {"var5", "undefined"},
/* 6 */ {"var6", "undefined"},
/* 7 */ {"var7", "undefined"},
/* 8 */ {"var8", "undefined"},
/* 9 */ {"var9", "undefined"},
/* 10 */ {"var10", "undefined"},
/* 11 */ {"var11", "undefined"},
/* 12 */ {"var12", "undefined"},
/* 13 */ {"var13", "undefined"},
/* 14 */ {"var14", "undefined"},
/* 15 */ {"var15", "undefined"},
/* 16 */ {"var16", "undefined"},
/* 17 */ {"var17", "undefined"},
/* 18 */ {"var18", "undefined"},
/* 19 */ {"var19", "undefined"},
/* 20 */ {"var20", "undefined"},
/* 21 */ {"var21", "undefined"},
/* 22 */ {"var22", "undefined"},
/* 23 */ {"var23", "undefined"},
/* 24 */ {"var24", "undefined"},
/* 25 */ {"var25", "undefined"},
/* 26 */ {"var26", "undefined"},
/* 27 */ {"var27", "undefined"},
/* 28 */ {"var28", "undefined"},
/* 29 */ {"var29", "undefined"},
/* 30 */ {"var30", "undefined"},
/* 31 */ {"var31", "undefined"},
/* 32 */ {"var32", "undefined"},
/* 33 */ {"var33", "undefined"},
/* 34 */ {"var34", "undefined"},
/* 35 */ {"var35", "undefined"},
/* 36 */ {"var36", "undefined"},
/* 37 */ {"var37", "undefined"},
/* 38 */ {"var38", "undefined"},
/* 39 */ {"var39", "undefined"},
/* 40 */ {"var40", "undefined"},
/* 41 */ {"var41", "undefined"},
/* 42 */ {"var42", "undefined"},
/* 43 */ {"var43", "undefined"},
/* 44 */ {"var44", "undefined"},
/* 45 */ {"var45", "undefined"},
/* 46 */ {"AERPR", "Aerosol precursor mixing ratio [kg kg**-1]"},
/* 47 */ {"AERSM", "Aerosol small mode mixing ratio [kg kg**-1]"},
/* 48 */ {"AERLG", "Aerosol large mode mixing ratio [kg kg**-1]"},
/* 49 */ {"AODPR", "Aerosol precursor optical depth [dimensionless]"},
/* 50 */ {"AODSM", "Aerosol small mode optical depth [dimensionless]"},
/* 51 */ {"AODLG", "Aerosol large mode optical depth [dimensionless]"},
/* 52 */ {"var52", "undefined"},
/* 53 */ {"var53", "undefined"},
/* 54 */ {"var54", "undefined"},
/* 55 */ {"var55", "undefined"},
/* 56 */ {"var56", "undefined"},
/* 57 */ {"var57", "undefined"},
/* 58 */ {"var58", "undefined"},
/* 59 */ {"var59", "undefined"},
/* 60 */ {"var60", "undefined"},
/* 61 */ {"CO2", "Carbon Dioxide [kg kg**-1]"},
/* 62 */ {"CH4", "Methane [kg kg**-1]"},
/* 63 */ {"N2O", "Nitrous oxide [kg kg**-1]"},
/* 64 */ {"var64", "undefined"},
/* 65 */ {"var65", "undefined"},
/* 66 */ {"var66", "undefined"},
/* 67 */ {"var67", "undefined"},
/* 68 */ {"var68", "undefined"},
/* 69 */ {"var69", "undefined"},
/* 70 */ {"var70", "undefined"},
/* 71 */ {"var71", "undefined"},
/* 72 */ {"var72", "undefined"},
/* 73 */ {"var73", "undefined"},
/* 74 */ {"var74", "undefined"},
/* 75 */ {"var75", "undefined"},
/* 76 */ {"var76", "undefined"},
/* 77 */ {"var77", "undefined"},
/* 78 */ {"var78", "undefined"},
/* 79 */ {"var79", "undefined"},
/* 80 */ {"var80", "undefined"},
/* 81 */ {"var81", "undefined"},
/* 82 */ {"var82", "undefined"},
/* 83 */ {"var83", "undefined"},
/* 84 */ {"var84", "undefined"},
/* 85 */ {"var85", "undefined"},
/* 86 */ {"var86", "undefined"},
/* 87 */ {"var87", "undefined"},
/* 88 */ {"var88", "undefined"},
/* 89 */ {"var89", "undefined"},
/* 90 */ {"var90", "undefined"},
/* 91 */ {"var91", "undefined"},
/* 92 */ {"var92", "undefined"},
/* 93 */ {"var93", "undefined"},
/* 94 */ {"var94", "undefined"},
/* 95 */ {"var95", "undefined"},
/* 96 */ {"var96", "undefined"},
/* 97 */ {"var97", "undefined"},
/* 98 */ {"var98", "undefined"},
/* 99 */ {"var99", "undefined"},
/* 100 */ {"var100", "undefined"},
/* 101 */ {"var101", "undefined"},
/* 102 */ {"var102", "undefined"},
/* 103 */ {"var103", "undefined"},
/* 104 */ {"var104", "undefined"},
/* 105 */ {"var105", "undefined"},
/* 106 */ {"var106", "undefined"},
/* 107 */ {"var107", "undefined"},
/* 108 */ {"var108", "undefined"},
/* 109 */ {"var109", "undefined"},
/* 110 */ {"var110", "undefined"},
/* 111 */ {"var111", "undefined"},
/* 112 */ {"var112", "undefined"},
/* 113 */ {"var113", "undefined"},
/* 114 */ {"var114", "undefined"},
/* 115 */ {"var115", "undefined"},
/* 116 */ {"var116", "undefined"},
/* 117 */ {"var117", "undefined"},
/* 118 */ {"var118", "undefined"},
/* 119 */ {"var119", "undefined"},
/* 120 */ {"var120", "undefined"},
/* 121 */ {"NO2", "Nitrogen dioxide [kg kg**-1]"},
/* 122 */ {"SO2", "Sulphur dioxide [kg kg**-1]"},
/* 123 */ {"CO", "Carbon monoxide [kg kg**-1]"},
/* 124 */ {"HCHO", "Formaldehyde [kg kg**-1]"},
/* 125 */ {"var125", "undefined"},
/* 126 */ {"var126", "undefined"},
/* 127 */ {"var127", "undefined"},
/* 128 */ {"var128", "undefined"},
/* 129 */ {"var129", "undefined"},
/* 130 */ {"var130", "undefined"},
/* 131 */ {"var131", "undefined"},
/* 132 */ {"var132", "undefined"},
/* 133 */ {"var133", "undefined"},
/* 134 */ {"var134", "undefined"},
/* 135 */ {"var135", "undefined"},
/* 136 */ {"var136", "undefined"},
/* 137 */ {"var137", "undefined"},
/* 138 */ {"var138", "undefined"},
/* 139 */ {"var139", "undefined"},
/* 140 */ {"var140", "undefined"},
/* 141 */ {"var141", "undefined"},
/* 142 */ {"var142", "undefined"},
/* 143 */ {"var143", "undefined"},
/* 144 */ {"var144", "undefined"},
/* 145 */ {"var145", "undefined"},
/* 146 */ {"var146", "undefined"},
/* 147 */ {"var147", "undefined"},
/* 148 */ {"var148", "undefined"},
/* 149 */ {"var149", "undefined"},
/* 150 */ {"var150", "undefined"},
/* 151 */ {"var151", "undefined"},
/* 152 */ {"var152", "undefined"},
/* 153 */ {"var153", "undefined"},
/* 154 */ {"var154", "undefined"},
/* 155 */ {"var155", "undefined"},
/* 156 */ {"var156", "undefined"},
/* 157 */ {"var157", "undefined"},
/* 158 */ {"var158", "undefined"},
/* 159 */ {"var159", "undefined"},
/* 160 */ {"var160", "undefined"},
/* 161 */ {"var161", "undefined"},
/* 162 */ {"var162", "undefined"},
/* 163 */ {"var163", "undefined"},
/* 164 */ {"var164", "undefined"},
/* 165 */ {"var165", "undefined"},
/* 166 */ {"var166", "undefined"},
/* 167 */ {"var167", "undefined"},
/* 168 */ {"var168", "undefined"},
/* 169 */ {"var169", "undefined"},
/* 170 */ {"var170", "undefined"},
/* 171 */ {"var171", "undefined"},
/* 172 */ {"var172", "undefined"},
/* 173 */ {"var173", "undefined"},
/* 174 */ {"var174", "undefined"},
/* 175 */ {"var175", "undefined"},
/* 176 */ {"var176", "undefined"},
/* 177 */ {"var177", "undefined"},
/* 178 */ {"var178", "undefined"},
/* 179 */ {"var179", "undefined"},
/* 180 */ {"var180", "undefined"},
/* 181 */ {"var181", "undefined"},
/* 182 */ {"var182", "undefined"},
/* 183 */ {"var183", "undefined"},
/* 184 */ {"var184", "undefined"},
/* 185 */ {"var185", "undefined"},
/* 186 */ {"var186", "undefined"},
/* 187 */ {"var187", "undefined"},
/* 188 */ {"var188", "undefined"},
/* 189 */ {"var189", "undefined"},
/* 190 */ {"var190", "undefined"},
/* 191 */ {"var191", "undefined"},
/* 192 */ {"var192", "undefined"},
/* 193 */ {"var193", "undefined"},
/* 194 */ {"var194", "undefined"},
/* 195 */ {"var195", "undefined"},
/* 196 */ {"var196", "undefined"},
/* 197 */ {"var197", "undefined"},
/* 198 */ {"var198", "undefined"},
/* 199 */ {"var199", "undefined"},
/* 200 */ {"var200", "undefined"},
/* 201 */ {"var201", "undefined"},
/* 202 */ {"var202", "undefined"},
/* 203 */ {"GO3", "GEMS Ozone [kg kg**-1]"},
/* 204 */ {"var204", "undefined"},
/* 205 */ {"var205", "undefined"},
/* 206 */ {"var206", "undefined"},
/* 207 */ {"var207", "undefined"},
/* 208 */ {"var208", "undefined"},
/* 209 */ {"var209", "undefined"},
/* 210 */ {"var210", "undefined"},
/* 211 */ {"var211", "undefined"},
/* 212 */ {"var212", "undefined"},
/* 213 */ {"var213", "undefined"},
/* 214 */ {"var214", "undefined"},
/* 215 */ {"var215", "undefined"},
/* 216 */ {"var216", "undefined"},
/* 217 */ {"var217", "undefined"},
/* 218 */ {"var218", "undefined"},
/* 219 */ {"var219", "undefined"},
/* 220 */ {"var220", "undefined"},
/* 221 */ {"var221", "undefined"},
/* 222 */ {"var222", "undefined"},
/* 223 */ {"var223", "undefined"},
/* 224 */ {"var224", "undefined"},
/* 225 */ {"var225", "undefined"},
/* 226 */ {"var226", "undefined"},
/* 227 */ {"var227", "undefined"},
/* 228 */ {"var228", "undefined"},
/* 229 */ {"var229", "undefined"},
/* 230 */ {"var230", "undefined"},
/* 231 */ {"var231", "undefined"},
/* 232 */ {"var232", "undefined"},
/* 233 */ {"var233", "undefined"},
/* 234 */ {"var234", "undefined"},
/* 235 */ {"var235", "undefined"},
/* 236 */ {"var236", "undefined"},
/* 237 */ {"var237", "undefined"},
/* 238 */ {"var238", "undefined"},
/* 239 */ {"var239", "undefined"},
/* 240 */ {"var240", "undefined"},
/* 241 */ {"var241", "undefined"},
/* 242 */ {"var242", "undefined"},
/* 243 */ {"var243", "undefined"},
/* 244 */ {"var244", "undefined"},
/* 245 */ {"var245", "undefined"},
/* 246 */ {"var246", "undefined"},
/* 247 */ {"var247", "undefined"},
/* 248 */ {"var248", "undefined"},
/* 249 */ {"var249", "undefined"},
/* 250 */ {"var250", "undefined"},
/* 251 */ {"var251", "undefined"},
/* 252 */ {"var252", "undefined"},
/* 253 */ {"var253", "undefined"},
/* 254 */ {"var254", "undefined"},
/* 255 */ {"var255", "undefined"},
};
const struct ParmTable parm_table_ecmwf_228[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"CIN", "Convective inhibition [J kg**-1]"},
/* 2 */ {"OROG", "Orography [m]"},
/* 3 */ {"ZUST", "Friction velocity [m s**-1]"},
/* 4 */ {"MEAN2T", "Mean temperature at 2 metres [K]"},
/* 5 */ {"MEAN10WS", "Mean of 10 metre wind speed [m s**-1]"},
/* 6 */ {"MEANTCC", "Mean total cloud cover [(0 - 1)]"},
/* 7 */ {"DL", "Lake depth [m]"},
/* 8 */ {"LMLT", "Lake mix-layer temperature [K]"},
/* 9 */ {"LMLD", "Lake mix-layer depth [m]"},
/* 10 */ {"LBLT", "Lake bottom temperature [K]"},
/* 11 */ {"LTLT", "Lake total layer temperature [K]"},
/* 12 */ {"LSHF", "Lake shape factor [dimensionless]"},
/* 13 */ {"LICT", "Lake ice temperature [K]"},
/* 14 */ {"LICD", "Lake ice depth [m]"},
/* 15 */ {"DNDZN", "Minimum vertical gradient of refractivity inside trapping layer [m**-1]"},
/* 16 */ {"DNDZA", "Mean vertical gradient of refractivity inside trapping layer [m**-1]"},
/* 17 */ {"DCTB", "Duct base height [m]"},
/* 18 */ {"TPLB", "Trapping layer base height [m]"},
/* 19 */ {"TPLT", "Trapping layer top height [m]"},
/* 20 */ {"var20", "undefined"},
/* 21 */ {"var21", "undefined"},
/* 22 */ {"var22", "undefined"},
/* 23 */ {"var23", "undefined"},
/* 24 */ {"var24", "undefined"},
/* 25 */ {"var25", "undefined"},
/* 26 */ {"var26", "undefined"},
/* 27 */ {"var27", "undefined"},
/* 28 */ {"var28", "undefined"},
/* 29 */ {"var29", "undefined"},
/* 30 */ {"var30", "undefined"},
/* 31 */ {"var31", "undefined"},
/* 32 */ {"var32", "undefined"},
/* 33 */ {"var33", "undefined"},
/* 34 */ {"var34", "undefined"},
/* 35 */ {"var35", "undefined"},
/* 36 */ {"var36", "undefined"},
/* 37 */ {"var37", "undefined"},
/* 38 */ {"var38", "undefined"},
/* 39 */ {"SM", "Soil Moisture [kg m**-3]"},
/* 40 */ {"var40", "undefined"},
/* 41 */ {"var41", "undefined"},
/* 42 */ {"var42", "undefined"},
/* 43 */ {"var43", "undefined"},
/* 44 */ {"var44", "undefined"},
/* 45 */ {"var45", "undefined"},
/* 46 */ {"var46", "undefined"},
/* 47 */ {"var47", "undefined"},
/* 48 */ {"var48", "undefined"},
/* 49 */ {"var49", "undefined"},
/* 50 */ {"var50", "undefined"},
/* 51 */ {"var51", "undefined"},
/* 52 */ {"var52", "undefined"},
/* 53 */ {"var53", "undefined"},
/* 54 */ {"var54", "undefined"},
/* 55 */ {"var55", "undefined"},
/* 56 */ {"var56", "undefined"},
/* 57 */ {"var57", "undefined"},
/* 58 */ {"var58", "undefined"},
/* 59 */ {"var59", "undefined"},
/* 60 */ {"var60", "undefined"},
/* 61 */ {"var61", "undefined"},
/* 62 */ {"var62", "undefined"},
/* 63 */ {"var63", "undefined"},
/* 64 */ {"var64", "undefined"},
/* 65 */ {"var65", "undefined"},
/* 66 */ {"var66", "undefined"},
/* 67 */ {"var67", "undefined"},
/* 68 */ {"var68", "undefined"},
/* 69 */ {"var69", "undefined"},
/* 70 */ {"var70", "undefined"},
/* 71 */ {"var71", "undefined"},
/* 72 */ {"var72", "undefined"},
/* 73 */ {"var73", "undefined"},
/* 74 */ {"var74", "undefined"},
/* 75 */ {"var75", "undefined"},
/* 76 */ {"var76", "undefined"},
/* 77 */ {"var77", "undefined"},
/* 78 */ {"var78", "undefined"},
/* 79 */ {"var79", "undefined"},
/* 80 */ {"var80", "undefined"},
/* 81 */ {"var81", "undefined"},
/* 82 */ {"var82", "undefined"},
/* 83 */ {"var83", "undefined"},
/* 84 */ {"var84", "undefined"},
/* 85 */ {"var85", "undefined"},
/* 86 */ {"var86", "undefined"},
/* 87 */ {"var87", "undefined"},
/* 88 */ {"var88", "undefined"},
/* 89 */ {"var89", "undefined"},
/* 90 */ {"var90", "undefined"},
/* 91 */ {"var91", "undefined"},
/* 92 */ {"var92", "undefined"},
/* 93 */ {"var93", "undefined"},
/* 94 */ {"var94", "undefined"},
/* 95 */ {"var95", "undefined"},
/* 96 */ {"var96", "undefined"},
/* 97 */ {"var97", "undefined"},
/* 98 */ {"var98", "undefined"},
/* 99 */ {"var99", "undefined"},
/* 100 */ {"var100", "undefined"},
/* 101 */ {"var101", "undefined"},
/* 102 */ {"var102", "undefined"},
/* 103 */ {"var103", "undefined"},
/* 104 */ {"var104", "undefined"},
/* 105 */ {"var105", "undefined"},
/* 106 */ {"var106", "undefined"},
/* 107 */ {"var107", "undefined"},
/* 108 */ {"var108", "undefined"},
/* 109 */ {"var109", "undefined"},
/* 110 */ {"var110", "undefined"},
/* 111 */ {"var111", "undefined"},
/* 112 */ {"var112", "undefined"},
/* 113 */ {"var113", "undefined"},
/* 114 */ {"var114", "undefined"},
/* 115 */ {"var115", "undefined"},
/* 116 */ {"var116", "undefined"},
/* 117 */ {"var117", "undefined"},
/* 118 */ {"var118", "undefined"},
/* 119 */ {"var119", "undefined"},
/* 120 */ {"var120", "undefined"},
/* 121 */ {"var121", "undefined"},
/* 122 */ {"var122", "undefined"},
/* 123 */ {"var123", "undefined"},
/* 124 */ {"var124", "undefined"},
/* 125 */ {"var125", "undefined"},
/* 126 */ {"var126", "undefined"},
/* 127 */ {"var127", "undefined"},
/* 128 */ {"var128", "undefined"},
/* 129 */ {"var129", "undefined"},
/* 130 */ {"var130", "undefined"},
/* 131 */ {"U10N", "Neutral wind at 10 m x-component [m s**-1]"},
/* 132 */ {"V10N", "Neutral wind at 10 m y-component [m s**-1]"},
/* 133 */ {"var133", "undefined"},
/* 134 */ {"VTNOWD", "V-tendency from non-orographic wave drag [m s**-2]"},
/* 135 */ {"var135", "undefined"},
/* 136 */ {"UTNOWD", "U-tendency from non-orographic wave drag [m s**-2]"},
/* 137 */ {"var137", "undefined"},
/* 138 */ {"var138", "undefined"},
/* 139 */ {"ST", "Soil Temperature [K]"},
/* 140 */ {"var140", "undefined"},
/* 141 */ {"SD", "Snow Depth water equivalent [m]"},
/* 142 */ {"var142", "undefined"},
/* 143 */ {"var143", "undefined"},
/* 144 */ {"SF", "Snow Fall water equivalent [kg m**-2]"},
/* 145 */ {"var145", "undefined"},
/* 146 */ {"var146", "undefined"},
/* 147 */ {"var147", "undefined"},
/* 148 */ {"var148", "undefined"},
/* 149 */ {"var149", "undefined"},
/* 150 */ {"var150", "undefined"},
/* 151 */ {"var151", "undefined"},
/* 152 */ {"var152", "undefined"},
/* 153 */ {"var153", "undefined"},
/* 154 */ {"var154", "undefined"},
/* 155 */ {"var155", "undefined"},
/* 156 */ {"var156", "undefined"},
/* 157 */ {"var157", "undefined"},
/* 158 */ {"var158", "undefined"},
/* 159 */ {"var159", "undefined"},
/* 160 */ {"var160", "undefined"},
/* 161 */ {"var161", "undefined"},
/* 162 */ {"var162", "undefined"},
/* 163 */ {"var163", "undefined"},
/* 164 */ {"TCC", "Total Cloud Cover [%]"},
/* 165 */ {"var165", "undefined"},
/* 166 */ {"var166", "undefined"},
/* 167 */ {"var167", "undefined"},
/* 168 */ {"var168", "undefined"},
/* 169 */ {"var169", "undefined"},
/* 170 */ {"CAP", "Field capacity [kg m**-3]"},
/* 171 */ {"WILT", "Wilting point [kg m**-3]"},
/* 172 */ {"var172", "undefined"},
/* 173 */ {"var173", "undefined"},
/* 174 */ {"var174", "undefined"},
/* 175 */ {"var175", "undefined"},
/* 176 */ {"var176", "undefined"},
/* 177 */ {"var177", "undefined"},
/* 178 */ {"var178", "undefined"},
/* 179 */ {"var179", "undefined"},
/* 180 */ {"var180", "undefined"},
/* 181 */ {"var181", "undefined"},
/* 182 */ {"var182", "undefined"},
/* 183 */ {"var183", "undefined"},
/* 184 */ {"var184", "undefined"},
/* 185 */ {"var185", "undefined"},
/* 186 */ {"var186", "undefined"},
/* 187 */ {"var187", "undefined"},
/* 188 */ {"var188", "undefined"},
/* 189 */ {"var189", "undefined"},
/* 190 */ {"var190", "undefined"},
/* 191 */ {"var191", "undefined"},
/* 192 */ {"var192", "undefined"},
/* 193 */ {"var193", "undefined"},
/* 194 */ {"var194", "undefined"},
/* 195 */ {"var195", "undefined"},
/* 196 */ {"var196", "undefined"},
/* 197 */ {"var197", "undefined"},
/* 198 */ {"var198", "undefined"},
/* 199 */ {"var199", "undefined"},
/* 200 */ {"var200", "undefined"},
/* 201 */ {"var201", "undefined"},
/* 202 */ {"var202", "undefined"},
/* 203 */ {"var203", "undefined"},
/* 204 */ {"var204", "undefined"},
/* 205 */ {"var205", "undefined"},
/* 206 */ {"var206", "undefined"},
/* 207 */ {"var207", "undefined"},
/* 208 */ {"var208", "undefined"},
/* 209 */ {"var209", "undefined"},
/* 210 */ {"var210", "undefined"},
/* 211 */ {"var211", "undefined"},
/* 212 */ {"var212", "undefined"},
/* 213 */ {"var213", "undefined"},
/* 214 */ {"var214", "undefined"},
/* 215 */ {"var215", "undefined"},
/* 216 */ {"var216", "undefined"},
/* 217 */ {"var217", "undefined"},
/* 218 */ {"var218", "undefined"},
/* 219 */ {"var219", "undefined"},
/* 220 */ {"var220", "undefined"},
/* 221 */ {"var221", "undefined"},
/* 222 */ {"var222", "undefined"},
/* 223 */ {"var223", "undefined"},
/* 224 */ {"var224", "undefined"},
/* 225 */ {"var225", "undefined"},
/* 226 */ {"var226", "undefined"},
/* 227 */ {"var227", "undefined"},
/* 228 */ {"TP", "Total Precipitation [kg m**-2]"},
/* 229 */ {"var229", "undefined"},
/* 230 */ {"var230", "undefined"},
/* 231 */ {"var231", "undefined"},
/* 232 */ {"var232", "undefined"},
/* 233 */ {"var233", "undefined"},
/* 234 */ {"var234", "undefined"},
/* 235 */ {"var235", "undefined"},
/* 236 */ {"var236", "undefined"},
/* 237 */ {"var237", "undefined"},
/* 238 */ {"var238", "undefined"},
/* 239 */ {"var239", "undefined"},
/* 240 */ {"var240", "undefined"},
/* 241 */ {"var241", "undefined"},
/* 242 */ {"var242", "undefined"},
/* 243 */ {"var243", "undefined"},
/* 244 */ {"var244", "undefined"},
/* 245 */ {"var245", "undefined"},
/* 246 */ {"var246", "undefined"},
/* 247 */ {"var247", "undefined"},
/* 248 */ {"var248", "undefined"},
/* 249 */ {"var249", "undefined"},
/* 250 */ {"var250", "undefined"},
/* 251 */ {"var251", "undefined"},
/* 252 */ {"var252", "undefined"},
/* 253 */ {"var253", "undefined"},
/* 254 */ {"var254", "undefined"},
/* 255 */ {"var255", "undefined"},
};
const struct ParmTable parm_table_nceptab_129[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"PRES", "Pressure [Pa]"},
/* 2 */ {"PRMSL", "Pressure reduced to MSL [Pa]"},
/* 3 */ {"PTEND", "Pressure tendency [Pa/s]"},
/* 4 */ {"PVORT", "Pot. vorticity [km^2/kg/s]"},
/* 5 */ {"ICAHT", "ICAO Standard Atmosphere Reference Height [M]"},
/* 6 */ {"GP", "Geopotential [m^2/s^2]"},
/* 7 */ {"HGT", "Geopotential height [gpm]"},
/* 8 */ {"DIST", "Geometric height [m]"},
/* 9 */ {"HSTDV", "Std dev of height [m]"},
/* 10 */ {"TOZNE", "Total ozone [Dobson]"},
/* 11 */ {"TMP", "Temp. [K]"},
/* 12 */ {"VTMP", "Virtual temp. [K]"},
/* 13 */ {"POT", "Potential temp. [K]"},
/* 14 */ {"EPOT", "Pseudo-adiabatic pot. temp. [K]"},
/* 15 */ {"TMAX", "Max. temp. [K]"},
/* 16 */ {"TMIN", "Min. temp. [K]"},
/* 17 */ {"DPT", "Dew point temp. [K]"},
/* 18 */ {"DEPR", "Dew point depression [K]"},
/* 19 */ {"LAPR", "Lapse rate [K/m]"},
/* 20 */ {"VIS", "Visibility [m]"},
/* 21 */ {"RDSP1", "Radar spectra (1) [non-dim]"},
/* 22 */ {"RDSP2", "Radar spectra (2) [non-dim]"},
/* 23 */ {"RDSP3", "Radar spectra (3) [non-dim]"},
/* 24 */ {"PLI", "Parcel lifted index (to 500 hPa) [K]"},
/* 25 */ {"TMPA", "Temp. anomaly [K]"},
/* 26 */ {"PRESA", "Pressure anomaly [Pa]"},
/* 27 */ {"GPA", "Geopotential height anomaly [gpm]"},
/* 28 */ {"WVSP1", "Wave spectra (1) [non-dim]"},
/* 29 */ {"WVSP2", "Wave spectra (2) [non-dim]"},
/* 30 */ {"WVSP3", "Wave spectra (3) [non-dim]"},
/* 31 */ {"WDIR", "Wind direction [deg]"},
/* 32 */ {"WIND", "Wind speed [m/s]"},
/* 33 */ {"UGRD", "u wind [m/s]"},
/* 34 */ {"VGRD", "v wind [m/s]"},
/* 35 */ {"STRM", "Stream function [m^2/s]"},
/* 36 */ {"VPOT", "Velocity potential [m^2/s]"},
/* 37 */ {"MNTSF", "Montgomery stream function [m^2/s^2]"},
/* 38 */ {"SGCVV", "Sigma coord. vertical velocity [/s]"},
/* 39 */ {"VVEL", "Pressure vertical velocity [Pa/s]"},
/* 40 */ {"DZDT", "Geometric vertical velocity [m/s]"},
/* 41 */ {"ABSV", "Absolute vorticity [/s]"},
/* 42 */ {"ABSD", "Absolute divergence [/s]"},
/* 43 */ {"RELV", "Relative vorticity [/s]"},
/* 44 */ {"RELD", "Relative divergence [/s]"},
/* 45 */ {"VUCSH", "Vertical u shear [/s]"},
/* 46 */ {"VVCSH", "Vertical v shear [/s]"},
/* 47 */ {"DIRC", "Direction of current [deg]"},
/* 48 */ {"SPC", "Speed of current [m/s]"},
/* 49 */ {"UOGRD", "u of current [m/s]"},
/* 50 */ {"VOGRD", "v of current [m/s]"},
/* 51 */ {"SPFH", "Specific humidity [kg/kg]"},
/* 52 */ {"RH", "Relative humidity [%]"},
/* 53 */ {"MIXR", "Humidity mixing ratio [kg/kg]"},
/* 54 */ {"PWAT", "Precipitable water [kg/m^2]"},
/* 55 */ {"VAPP", "Vapor pressure [Pa]"},
/* 56 */ {"SATD", "Saturation deficit [Pa]"},
/* 57 */ {"EVP", "Evaporation [kg/m^2]"},
/* 58 */ {"CICE", "Cloud Ice [kg/m^2]"},
/* 59 */ {"PRATE", "Precipitation rate [kg/m^2/s]"},
/* 60 */ {"TSTM", "Thunderstorm probability [%]"},
/* 61 */ {"APCP", "Total precipitation [kg/m^2]"},
/* 62 */ {"NCPCP", "Large scale precipitation [kg/m^2]"},
/* 63 */ {"ACPCP", "Convective precipitation [kg/m^2]"},
/* 64 */ {"SRWEQ", "Snowfall rate water equiv. [kg/m^2/s]"},
/* 65 */ {"WEASD", "Accum. snow [kg/m^2]"},
/* 66 */ {"SNOD", "Snow depth [m]"},
/* 67 */ {"MIXHT", "Mixed layer depth [m]"},
/* 68 */ {"TTHDP", "Transient thermocline depth [m]"},
/* 69 */ {"MTHD", "Main thermocline depth [m]"},
/* 70 */ {"MTHA", "Main thermocline anomaly [m]"},
/* 71 */ {"TCDC", "Total cloud cover [%]"},
/* 72 */ {"CDCON", "Convective cloud cover [%]"},
/* 73 */ {"LCDC", "Low level cloud cover [%]"},
/* 74 */ {"MCDC", "Mid level cloud cover [%]"},
/* 75 */ {"HCDC", "High level cloud cover [%]"},
/* 76 */ {"CWAT", "Cloud water [kg/m^2]"},
/* 77 */ {"BLI", "Best lifted index (to 500 hPa) [K]"},
/* 78 */ {"SNOC", "Convective snow [kg/m^2]"},
/* 79 */ {"SNOL", "Large scale snow [kg/m^2]"},
/* 80 */ {"WTMP", "Water temp. [K]"},
/* 81 */ {"LAND", "Land cover (land=1;sea=0) [fraction]"},
/* 82 */ {"DSLM", "Deviation of sea level from mean [m]"},
/* 83 */ {"SFCR", "Surface roughness [m]"},
/* 84 */ {"ALBDO", "Albedo [%]"},
/* 85 */ {"TSOIL", "Soil temp. [K]"},
/* 86 */ {"SOILM", "Soil moisture content [kg/m^2]"},
/* 87 */ {"VEG", "Vegetation [%]"},
/* 88 */ {"SALTY", "Salinity [kg/kg]"},
/* 89 */ {"DEN", "Density [kg/m^3]"},
/* 90 */ {"WATR", "Water runoff [kg/m^2]"},
/* 91 */ {"ICEC", "Ice concentration (ice=1;no ice=0) [fraction]"},
/* 92 */ {"ICETK", "Ice thickness [m]"},
/* 93 */ {"DICED", "Direction of ice drift [deg]"},
/* 94 */ {"SICED", "Speed of ice drift [m/s]"},
/* 95 */ {"UICE", "u of ice drift [m/s]"},
/* 96 */ {"VICE", "v of ice drift [m/s]"},
/* 97 */ {"ICEG", "Ice growth rate [m/s]"},
/* 98 */ {"ICED", "Ice divergence [/s]"},
/* 99 */ {"SNOM", "Snow melt [kg/m^2]"},
/* 100 */ {"HTSGW", "Sig height of wind waves and swell [m]"},
/* 101 */ {"WVDIR", "Direction of wind waves [deg]"},
/* 102 */ {"WVHGT", "Sig height of wind waves [m]"},
/* 103 */ {"WVPER", "Mean period of wind waves [s]"},
/* 104 */ {"SWDIR", "Direction of swell waves [deg]"},
/* 105 */ {"SWELL", "Sig height of swell waves [m]"},
/* 106 */ {"SWPER", "Mean period of swell waves [s]"},
/* 107 */ {"DIRPW", "Primary wave direction [deg]"},
/* 108 */ {"PERPW", "Primary wave mean period [s]"},
/* 109 */ {"DIRSW", "Secondary wave direction [deg]"},
/* 110 */ {"PERSW", "Secondary wave mean period [s]"},
/* 111 */ {"NSWRS", "Net short wave (surface) [W/m^2]"},
/* 112 */ {"NLWRS", "Net long wave (surface) [W/m^2]"},
/* 113 */ {"NSWRT", "Net short wave (top) [W/m^2]"},
/* 114 */ {"NLWRT", "Net long wave (top) [W/m^2]"},
/* 115 */ {"LWAVR", "Long wave [W/m^2]"},
/* 116 */ {"SWAVR", "Short wave [W/m^2]"},
/* 117 */ {"GRAD", "Global radiation [W/m^2]"},
/* 118 */ {"BRTMP", "Brightness temperature [K]"},
/* 119 */ {"LWRAD", "Radiance with respect to wave no. [W/m/sr]"},
/* 120 */ {"SWRAD", "Radiance with respect ot wave len. [W/m^3/sr]"},
/* 121 */ {"LHTFL", "Latent heat flux [W/m^2]"},
/* 122 */ {"SHTFL", "Sensible heat flux [W/m^2]"},
/* 123 */ {"BLYDP", "Boundary layer dissipation [W/m^2]"},
/* 124 */ {"UFLX", "Zonal momentum flux [N/m^2]"},
/* 125 */ {"VFLX", "Meridional momentum flux [N/m^2]"},
/* 126 */ {"WMIXE", "Wind mixing energy [J]"},
/* 127 */ {"IMGD", "Image data []"},
/* 128 */ {"PAOT", "Probability anomaly of temp [%]"},
/* 129 */ {"PAOP", "Probability anomaly of precip [%]"},
/* 130 */ {"CWR", "Probability of wetting rain > 0.1 in [%]"},
/* 131 */ {"FRAIN", "Rain fraction of total liquid water []"},
/* 132 */ {"FICE", "Ice fraction of total condensate []"},
/* 133 */ {"FRIME", "Rime factor []"},
/* 134 */ {"CUEFI", "Convective cloud efficiency []"},
/* 135 */ {"TCOND", "Total condensate [kg/kg]"},
/* 136 */ {"TCOLW", "Total column cloud water [kg/m/m]"},
/* 137 */ {"TCOLI", "Total column cloud ice [kg/m/m]"},
/* 138 */ {"TCOLR", "Total column rain [kg/m/m]"},
/* 139 */ {"TCOLS", "Total column snow [kg/m/m]"},
/* 140 */ {"TCOLC", "Total column condensate [kg/m/m]"},
/* 141 */ {"PLPL", "Pressure of level from which parcel was lifted [Pa]"},
/* 142 */ {"HLPL", "Height of level from which parcel was lifted [m]"},
/* 143 */ {"CEMS", "Cloud Emissivity [fraction]"},
/* 144 */ {"COPD", "Cloud Optical Depth [non-dim]"},
/* 145 */ {"PSIZ", "Effective Particle size [microns]"},
/* 146 */ {"TCWAT", "Total Water Cloud [%]"},
/* 147 */ {"TCICE", "Total Ice Cloud [%]"},
/* 148 */ {"WDIF", "Wind Difference [m/s]"},
/* 149 */ {"WSTP", "Wave Steepness [non-dim]"},
/* 150 */ {"PTAN", "Probability of Temp. above normal [%]"},
/* 151 */ {"PTNN", "Probability of Temp. near normal [%]"},
/* 152 */ {"PTBN", "Probability of Temp. below normal [%]"},
/* 153 */ {"PPAN", "Probability of Precip. above normal [%]"},
/* 154 */ {"PPNN", "Probability of Precip. near normal [%]"},
/* 155 */ {"PPBN", "Probability of Precip. below normal [%]"},
/* 156 */ {"PMTC", "Particulate matter (coarse) [ug/m^3]"},
/* 157 */ {"PMTF", "Particulate matter (fine) [ug/m^3]"},
/* 158 */ {"AETMP", "Analysis Error of Temperature [K]"},
/* 159 */ {"AEDPT", "Analysis Error of Dew Point [K]"},
/* 160 */ {"AESPH", "Analysis Error of Specific Humidity [kg/kg] wne"},
/* 161 */ {"AEUWD", "Analysis Error of U-wind [m/s]"},
/* 162 */ {"AEVWD", "Analysis Error of V-wind [m/s]"},
/* 163 */ {"LPMTF", "Particulate matter (fine) [log10(ug/m^3)]"},
/* 164 */ {"LIPMF", "Integrated Column Particulate matter (fine) [log10(ug/m^2)] wne"},
/* 165 */ {"REFZR", "Derived radar reflectivity backscatter from rain [mm^6/m^3]"},
/* 166 */ {"REFZI", "Derived radar reflectivity backscatter from ice [mm^6/m^3]"},
/* 167 */ {"REFZC", "Derived radar reflectivity backscatter from parameterized convection [mm^6/m^3]"},
/* 168 */ {"TCLSW", "Integrated supercooled liquid water [kg/m^2]"},
/* 169 */ {"TCOLM", "Total Column Integrated Melting Ice [kg/m^2]"},
/* 170 */ {"ELRDI", "Ellrod Index [non-dim]"},
/* 171 */ {"TSEC", "Seconds prior to initial reference time [sec]"},
/* 172 */ {"TSECA", "Seconds after initial reference time [sec]"},
/* 173 */ {"NUM", "Number of samples/observations [non-dim]"},
/* 174 */ {"AEPRS", "Analysis Error of Pressure [Pa]"},
/* 175 */ {"ICSEV", "Icing Severity [non-dim]"},
/* 176 */ {"ICPRB", "Icing Probability [non-dim]"},
/* 177 */ {"LAVNI", "Low-level Aviation Interest [non-dim]"},
/* 178 */ {"HAVNI", "High-level Aviation Interest [non-dim]"},
/* 179 */ {"FLGHT", "Flight Category [non-dim]"},
/* 180 */ {"OZCON", "Ozone concentration [ppb]"},
/* 181 */ {"OZCAT", "Categorical ozone concentration [?]"},
/* 182 */ {"VEDH", "vertical heat eddy diffusivity [m^2/s]"},
/* 183 */ {"SIGV", "Sigma level value [non-dim]"},
/* 184 */ {"EWGT", "Ensemble Weight [non-dim]"},
/* 185 */ {"CICEL", "Confidence indicator - Ceiling [non-dim]"},
/* 186 */ {"CIVIS", "Confidence indicator - Visibility [non-dim]"},
/* 187 */ {"CIFLT", "Confidence indicator - Flight Category [non-dim]"},
/* 188 */ {"LAVV", "Latitude of V wind component of velocity [deg]"},
/* 189 */ {"LOVV", "Longitude of V wind component of velocity [deg]"},
/* 190 */ {"USCT", "Scatterometer est. U wind component [m/s]"},
/* 191 */ {"VSCT", "Scatterometer est. V wind component [m/s]"},
/* 192 */ {"LAUV", "Latitude of U wind component of velocity [deg]"},
/* 193 */ {"LOUV", "Longitude of U wind component of velocity [deg]"},
/* 194 */ {"TCHP", "Tropical Cyclone Heat Potential [J/m^2]"},
/* 195 */ {"DBSS", "Geometric Depth Below Sea Surface [m]"},
/* 196 */ {"ODHA", "Ocean Dynamic Heat Anomaly [dynamic m]"},
/* 197 */ {"OHC", "Ocean Heat Content [J/m^2]"},
/* 198 */ {"SSHG", "Sea Surface Height Relative to Geoid [m]"},
/* 199 */ {"SLTFL", "Salt flux [g/cm^2/s]"},
/* 200 */ {"DUVB", "UV-B Downward Solar Flux [W/m^2]"},
/* 201 */ {"CDUVB", "Clear Sky UV-B Downward Solar Flux [W/m^2]"},
/* 202 */ {"THFLX", "Total downward heat flux at surface [W/m^2]"},
/* 203 */ {"UVAR", "U velocity variance [m^2/s^2]"},
/* 204 */ {"VVAR", "V velocity variance [m^2/s^2]"},
/* 205 */ {"UVVCC", "UV Velocity Cross Correlation [m^2/s^2]"},
/* 206 */ {"MCLS", "Meteorological Correlation Length Scale [m]"},
/* 207 */ {"LAPP", "Latitude of pressure point [deg]"},
/* 208 */ {"LOPP", "Longitude of pressure point [deg]"},
/* 209 */ {"var209", "undefined"},
/* 210 */ {"REFO", "Observed radar reflectivity [dbZ]"},
/* 211 */ {"REFD", "Derived radar reflectivity [dbZ]"},
/* 212 */ {"REFC", "Maximum/Composite radar reflectivity [dbZ]"},
/* 213 */ {"SBT122", "Simulated Brightness Temperature for GOES12, Channel 2 [K]"},
/* 214 */ {"SBT123", "Simulated Brightness Temperature for GOES12, Channel 3 [K]"},
/* 215 */ {"SBT124", "Simulated Brightness Temperature for GOES12, Channel 4 [K]"},
/* 216 */ {"SBT125", "Simulated Brightness Temperature for GOES12, Channel 5 [K]"},
/* 217 */ {"MINRH", "Minimum Relative Humumidity [%]"},
/* 218 */ {"MAXRH", "Maximum Relative Humumidity [%]"},
/* 219 */ {"CEIL", "Ceiling [m]"},
/* 220 */ {"PBLREG", "Planetary boundary layer regime []"},
/* 221 */ {"SBC123", "Simulated brightness counts for GOES12, Channel 3 [byte]"},
/* 222 */ {"SBC124", "Simulated brightness counts for GOES12, Channel 4 [byte]"},
/* 223 */ {"RPRATE", "Rain precipitation rate [kg/m^2/s]"},
/* 224 */ {"SPRATE", "Snow precipitation rate [kg/m^2/s]"},
/* 225 */ {"FPRATE", "Freezing rain precipitation rate [kg/m^2/s]"},
/* 226 */ {"IPRATE", "Ice pellets precipitation rate [kg/m^2/s]"},
/* 227 */ {"UPHL", "Updraft Helicity [m^2/s^2]"},
/* 228 */ {"SURGE", "Storm Surge [m]"},
/* 229 */ {"ETSRG", "Extra-tropical storm Surge [m]"},
/* 230 */ {"RHPW", "Relative humidity with respect to precip water [%]"},
/* 231 */ {"OZMAX1", "Ozone daily max from 1-hour ave [ppbV]"},
/* 232 */ {"OZMAX8", "Ozone daily max from 8-hour ave [ppbV]"},
/* 233 */ {"PDMAX1", "PM 2.5 daily max from 1-hour ave [ug/m^3]"},
/* 234 */ {"PDMAX24", "PM 2.5 daily max from 24-hour ave [ug/m^3]"},
/* 235 */ {"MAXREF", "Hourly max of sim. reflect at 1km AGL [dbZ]"},
/* 236 */ {"MXUPHL", "Hourly max updraft helicity 2-5km AGL [m^2/s^2]"},
/* 237 */ {"MAXUVV", "Hourly max upward vert vel in lowest 400mb [m/s]"},
/* 238 */ {"MAXDVV", "Hourly max downward vert fel in lowest 400mb [m/s]"},
/* 239 */ {"MAXVIG", "Hourly max column graupel [kg/m^2]"},
/* 240 */ {"RETOP", "Radar echo top (18.3 dbZ) [m]"},
/* 241 */ {"VRATE", "Ventilation rate [m^2/s]"},
/* 242 */ {"TCSRG20", "20% tropical cyclone storm exceedance [m]"},
/* 243 */ {"TCSRG30", "30% tropical cyclone storm exceedance [m]"},
/* 244 */ {"TCSRG40", "40% tropical cyclone storm exceedance [m]"},
/* 245 */ {"TCSRG50", "50% tropical cyclone storm exceedance [m]"},
/* 246 */ {"TCSRG60", "60% tropical cyclone storm exceedance [m]"},
/* 247 */ {"TCSRG70", "70% tropical cyclone storm exceedance [m]"},
/* 248 */ {"TCSRG80", "80% tropical cyclone storm exceedance [m]"},
/* 249 */ {"TCSRG90", "90% tropical cyclone storm exceedance [m]"},
/* 250 */ {"HINDEX", "Haines index []"},
/* 251 */ {"DIFTEN", "Difference between 2 states in total energy norm [J/kg]"},
/* 252 */ {"PSPCP", "Pseudo-precipitation [kg/m^2]"},
/* 253 */ {"MAXUW", "U of hourly max 10m wind speed [m/s]"},
/* 254 */ {"MAXVW", "V of hourly max 10m wind speed [m/s]"},
/* 255 */ {"var255", "undefined"},
};
const struct ParmTable parm_table_nceptab_140[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"PRES", "Pressure [Pa]"},
/* 2 */ {"PRMSL", "Pressure reduced to MSL [Pa]"},
/* 3 */ {"PTEND", "Pressure tendency [Pa/s]"},
/* 4 */ {"PVORT", "Pot. vorticity [km^2/kg/s]"},
/* 5 */ {"ICAHT", "ICAO Standard Atmosphere Reference Height [M]"},
/* 6 */ {"GP", "Geopotential [m^2/s^2]"},
/* 7 */ {"HGT", "Geopotential height [gpm]"},
/* 8 */ {"DIST", "Geometric height [m]"},
/* 9 */ {"HSTDV", "Std dev of height [m]"},
/* 10 */ {"TOZNE", "Total ozone [Dobson]"},
/* 11 */ {"TMP", "Temp. [K]"},
/* 12 */ {"VTMP", "Virtual temp. [K]"},
/* 13 */ {"POT", "Potential temp. [K]"},
/* 14 */ {"EPOT", "Pseudo-adiabatic pot. temp. [K]"},
/* 15 */ {"TMAX", "Max. temp. [K]"},
/* 16 */ {"TMIN", "Min. temp. [K]"},
/* 17 */ {"DPT", "Dew point temp. [K]"},
/* 18 */ {"DEPR", "Dew point depression [K]"},
/* 19 */ {"LAPR", "Lapse rate [K/m]"},
/* 20 */ {"VIS", "Visibility [m]"},
/* 21 */ {"RDSP1", "Radar spectra (1) [non-dim]"},
/* 22 */ {"RDSP2", "Radar spectra (2) [non-dim]"},
/* 23 */ {"RDSP3", "Radar spectra (3) [non-dim]"},
/* 24 */ {"PLI", "Parcel lifted index (to 500 hPa) [K]"},
/* 25 */ {"TMPA", "Temp. anomaly [K]"},
/* 26 */ {"PRESA", "Pressure anomaly [Pa]"},
/* 27 */ {"GPA", "Geopotential height anomaly [gpm]"},
/* 28 */ {"WVSP1", "Wave spectra (1) [non-dim]"},
/* 29 */ {"WVSP2", "Wave spectra (2) [non-dim]"},
/* 30 */ {"WVSP3", "Wave spectra (3) [non-dim]"},
/* 31 */ {"WDIR", "Wind direction [deg]"},
/* 32 */ {"WIND", "Wind speed [m/s]"},
/* 33 */ {"UGRD", "u wind [m/s]"},
/* 34 */ {"VGRD", "v wind [m/s]"},
/* 35 */ {"STRM", "Stream function [m^2/s]"},
/* 36 */ {"VPOT", "Velocity potential [m^2/s]"},
/* 37 */ {"MNTSF", "Montgomery stream function [m^2/s^2]"},
/* 38 */ {"SGCVV", "Sigma coord. vertical velocity [/s]"},
/* 39 */ {"VVEL", "Pressure vertical velocity [Pa/s]"},
/* 40 */ {"DZDT", "Geometric vertical velocity [m/s]"},
/* 41 */ {"ABSV", "Absolute vorticity [/s]"},
/* 42 */ {"ABSD", "Absolute divergence [/s]"},
/* 43 */ {"RELV", "Relative vorticity [/s]"},
/* 44 */ {"RELD", "Relative divergence [/s]"},
/* 45 */ {"VUCSH", "Vertical u shear [/s]"},
/* 46 */ {"VVCSH", "Vertical v shear [/s]"},
/* 47 */ {"DIRC", "Direction of current [deg]"},
/* 48 */ {"SPC", "Speed of current [m/s]"},
/* 49 */ {"UOGRD", "u of current [m/s]"},
/* 50 */ {"VOGRD", "v of current [m/s]"},
/* 51 */ {"SPFH", "Specific humidity [kg/kg]"},
/* 52 */ {"RH", "Relative humidity [%]"},
/* 53 */ {"MIXR", "Humidity mixing ratio [kg/kg]"},
/* 54 */ {"PWAT", "Precipitable water [kg/m^2]"},
/* 55 */ {"VAPP", "Vapor pressure [Pa]"},
/* 56 */ {"SATD", "Saturation deficit [Pa]"},
/* 57 */ {"EVP", "Evaporation [kg/m^2]"},
/* 58 */ {"CICE", "Cloud Ice [kg/m^2]"},
/* 59 */ {"PRATE", "Precipitation rate [kg/m^2/s]"},
/* 60 */ {"TSTM", "Thunderstorm probability [%]"},
/* 61 */ {"APCP", "Total precipitation [kg/m^2]"},
/* 62 */ {"NCPCP", "Large scale precipitation [kg/m^2]"},
/* 63 */ {"ACPCP", "Convective precipitation [kg/m^2]"},
/* 64 */ {"SRWEQ", "Snowfall rate water equiv. [kg/m^2/s]"},
/* 65 */ {"WEASD", "Accum. snow [kg/m^2]"},
/* 66 */ {"SNOD", "Snow depth [m]"},
/* 67 */ {"MIXHT", "Mixed layer depth [m]"},
/* 68 */ {"TTHDP", "Transient thermocline depth [m]"},
/* 69 */ {"MTHD", "Main thermocline depth [m]"},
/* 70 */ {"MTHA", "Main thermocline anomaly [m]"},
/* 71 */ {"TCDC", "Total cloud cover [%]"},
/* 72 */ {"CDCON", "Convective cloud cover [%]"},
/* 73 */ {"LCDC", "Low level cloud cover [%]"},
/* 74 */ {"MCDC", "Mid level cloud cover [%]"},
/* 75 */ {"HCDC", "High level cloud cover [%]"},
/* 76 */ {"CWAT", "Cloud water [kg/m^2]"},
/* 77 */ {"BLI", "Best lifted index (to 500 hPa) [K]"},
/* 78 */ {"SNOC", "Convective snow [kg/m^2]"},
/* 79 */ {"SNOL", "Large scale snow [kg/m^2]"},
/* 80 */ {"WTMP", "Water temp. [K]"},
/* 81 */ {"LAND", "Land cover (land=1;sea=0) [fraction]"},
/* 82 */ {"DSLM", "Deviation of sea level from mean [m]"},
/* 83 */ {"SFCR", "Surface roughness [m]"},
/* 84 */ {"ALBDO", "Albedo [%]"},
/* 85 */ {"TSOIL", "Soil temp. [K]"},
/* 86 */ {"SOILM", "Soil moisture content [kg/m^2]"},
/* 87 */ {"VEG", "Vegetation [%]"},
/* 88 */ {"SALTY", "Salinity [kg/kg]"},
/* 89 */ {"DEN", "Density [kg/m^3]"},
/* 90 */ {"WATR", "Water runoff [kg/m^2]"},
/* 91 */ {"ICEC", "Ice concentration (ice=1;no ice=0) [fraction]"},
/* 92 */ {"ICETK", "Ice thickness [m]"},
/* 93 */ {"DICED", "Direction of ice drift [deg]"},
/* 94 */ {"SICED", "Speed of ice drift [m/s]"},
/* 95 */ {"UICE", "u of ice drift [m/s]"},
/* 96 */ {"VICE", "v of ice drift [m/s]"},
/* 97 */ {"ICEG", "Ice growth rate [m/s]"},
/* 98 */ {"ICED", "Ice divergence [/s]"},
/* 99 */ {"SNOM", "Snow melt [kg/m^2]"},
/* 100 */ {"HTSGW", "Sig height of wind waves and swell [m]"},
/* 101 */ {"WVDIR", "Direction of wind waves [deg]"},
/* 102 */ {"WVHGT", "Sig height of wind waves [m]"},
/* 103 */ {"WVPER", "Mean period of wind waves [s]"},
/* 104 */ {"SWDIR", "Direction of swell waves [deg]"},
/* 105 */ {"SWELL", "Sig height of swell waves [m]"},
/* 106 */ {"SWPER", "Mean period of swell waves [s]"},
/* 107 */ {"DIRPW", "Primary wave direction [deg]"},
/* 108 */ {"PERPW", "Primary wave mean period [s]"},
/* 109 */ {"DIRSW", "Secondary wave direction [deg]"},
/* 110 */ {"PERSW", "Secondary wave mean period [s]"},
/* 111 */ {"NSWRS", "Net short wave (surface) [W/m^2]"},
/* 112 */ {"NLWRS", "Net long wave (surface) [W/m^2]"},
/* 113 */ {"NSWRT", "Net short wave (top) [W/m^2]"},
/* 114 */ {"NLWRT", "Net long wave (top) [W/m^2]"},
/* 115 */ {"LWAVR", "Long wave [W/m^2]"},
/* 116 */ {"SWAVR", "Short wave [W/m^2]"},
/* 117 */ {"GRAD", "Global radiation [W/m^2]"},
/* 118 */ {"BRTMP", "Brightness temperature [K]"},
/* 119 */ {"LWRAD", "Radiance with respect to wave no. [W/m/sr]"},
/* 120 */ {"SWRAD", "Radiance with respect ot wave len. [W/m^3/sr]"},
/* 121 */ {"LHTFL", "Latent heat flux [W/m^2]"},
/* 122 */ {"SHTFL", "Sensible heat flux [W/m^2]"},
/* 123 */ {"BLYDP", "Boundary layer dissipation [W/m^2]"},
/* 124 */ {"UFLX", "Zonal momentum flux [N/m^2]"},
/* 125 */ {"VFLX", "Meridional momentum flux [N/m^2]"},
/* 126 */ {"WMIXE", "Wind mixing energy [J]"},
/* 127 */ {"IMGD", "Image data []"},
/* 128 */ {"var128", "undefined"},
/* 129 */ {"var129", "undefined"},
/* 130 */ {"var130", "undefined"},
/* 131 */ {"var131", "undefined"},
/* 132 */ {"var132", "undefined"},
/* 133 */ {"var133", "undefined"},
/* 134 */ {"var134", "undefined"},
/* 135 */ {"var135", "undefined"},
/* 136 */ {"var136", "undefined"},
/* 137 */ {"var137", "undefined"},
/* 138 */ {"var138", "undefined"},
/* 139 */ {"var139", "undefined"},
/* 140 */ {"var140", "undefined"},
/* 141 */ {"var141", "undefined"},
/* 142 */ {"var142", "undefined"},
/* 143 */ {"var143", "undefined"},
/* 144 */ {"var144", "undefined"},
/* 145 */ {"var145", "undefined"},
/* 146 */ {"var146", "undefined"},
/* 147 */ {"var147", "undefined"},
/* 148 */ {"var148", "undefined"},
/* 149 */ {"var149", "undefined"},
/* 150 */ {"var150", "undefined"},
/* 151 */ {"var151", "undefined"},
/* 152 */ {"var152", "undefined"},
/* 153 */ {"var153", "undefined"},
/* 154 */ {"var154", "undefined"},
/* 155 */ {"var155", "undefined"},
/* 156 */ {"var156", "undefined"},
/* 157 */ {"var157", "undefined"},
/* 158 */ {"var158", "undefined"},
/* 159 */ {"var159", "undefined"},
/* 160 */ {"var160", "undefined"},
/* 161 */ {"var161", "undefined"},
/* 162 */ {"var162", "undefined"},
/* 163 */ {"var163", "undefined"},
/* 164 */ {"var164", "undefined"},
/* 165 */ {"var165", "undefined"},
/* 166 */ {"var166", "undefined"},
/* 167 */ {"var167", "undefined"},
/* 168 */ {"MEIP", "Mean icing potential []"},
/* 169 */ {"MAIP", "Maximum icing potential []"},
/* 170 */ {"MECTP", "Mean in-cloud turbulence potential []"},
/* 171 */ {"MACTP", "Maximum in-cloud turbulence potential []"},
/* 172 */ {"MECAT", "Mean cloud air turbulence potential []"},
/* 173 */ {"MACAT", "Maximum cloud air turbulence potential []"},
/* 174 */ {"CBHE", "Cumulonimbus horizontal extent [%]"},
/* 175 */ {"PCBB", "Pressure at cumblonimbus base [Pa]"},
/* 176 */ {"PCBT", "Pressure at cumblonimbus top [Pa]"},
/* 177 */ {"PECBB", "Pressure at embedded cumblonimbus base [Pa]"},
/* 178 */ {"PECBT", "Pressure at embedded cumblonimbus top [Pa]"},
/* 179 */ {"HCBB", "ICAO height at cumblonimbus base [m]"},
/* 180 */ {"HCBT", "ICAO height at cumblonimbus top [m]"},
/* 181 */ {"HECBB", "ICAO height at embedded cumblonimbus base [m]"},
/* 182 */ {"HECBT", "ICAO height at embedded cumblonimbus top [m]"},
/* 183 */ {"var183", "undefined"},
/* 184 */ {"var184", "undefined"},
/* 185 */ {"var185", "undefined"},
/* 186 */ {"var186", "undefined"},
/* 187 */ {"var187", "undefined"},
/* 188 */ {"var188", "undefined"},
/* 189 */ {"var189", "undefined"},
/* 190 */ {"var190", "undefined"},
/* 191 */ {"var191", "undefined"},
/* 192 */ {"var192", "undefined"},
/* 193 */ {"var193", "undefined"},
/* 194 */ {"var194", "undefined"},
/* 195 */ {"var195", "undefined"},
/* 196 */ {"var196", "undefined"},
/* 197 */ {"var197", "undefined"},
/* 198 */ {"var198", "undefined"},
/* 199 */ {"var199", "undefined"},
/* 200 */ {"var200", "undefined"},
/* 201 */ {"var201", "undefined"},
/* 202 */ {"var202", "undefined"},
/* 203 */ {"var203", "undefined"},
/* 204 */ {"var204", "undefined"},
/* 205 */ {"var205", "undefined"},
/* 206 */ {"var206", "undefined"},
/* 207 */ {"var207", "undefined"},
/* 208 */ {"var208", "undefined"},
/* 209 */ {"var209", "undefined"},
/* 210 */ {"var210", "undefined"},
/* 211 */ {"var211", "undefined"},
/* 212 */ {"var212", "undefined"},
/* 213 */ {"var213", "undefined"},
/* 214 */ {"var214", "undefined"},
/* 215 */ {"var215", "undefined"},
/* 216 */ {"var216", "undefined"},
/* 217 */ {"var217", "undefined"},
/* 218 */ {"var218", "undefined"},
/* 219 */ {"var219", "undefined"},
/* 220 */ {"var220", "undefined"},
/* 221 */ {"var221", "undefined"},
/* 222 */ {"var222", "undefined"},
/* 223 */ {"var223", "undefined"},
/* 224 */ {"var224", "undefined"},
/* 225 */ {"var225", "undefined"},
/* 226 */ {"var226", "undefined"},
/* 227 */ {"var227", "undefined"},
/* 228 */ {"var228", "undefined"},
/* 229 */ {"var229", "undefined"},
/* 230 */ {"var230", "undefined"},
/* 231 */ {"var231", "undefined"},
/* 232 */ {"var232", "undefined"},
/* 233 */ {"var233", "undefined"},
/* 234 */ {"var234", "undefined"},
/* 235 */ {"var235", "undefined"},
/* 236 */ {"var236", "undefined"},
/* 237 */ {"var237", "undefined"},
/* 238 */ {"var238", "undefined"},
/* 239 */ {"var239", "undefined"},
/* 240 */ {"var240", "undefined"},
/* 241 */ {"var241", "undefined"},
/* 242 */ {"var242", "undefined"},
/* 243 */ {"var243", "undefined"},
/* 244 */ {"var244", "undefined"},
/* 245 */ {"var245", "undefined"},
/* 246 */ {"var246", "undefined"},
/* 247 */ {"var247", "undefined"},
/* 248 */ {"var248", "undefined"},
/* 249 */ {"var249", "undefined"},
/* 250 */ {"var250", "undefined"},
/* 251 */ {"var251", "undefined"},
/* 252 */ {"var252", "undefined"},
/* 253 */ {"var253", "undefined"},
/* 254 */ {"var254", "undefined"},
/* 255 */ {"var255", "undefined"},
};
const struct ParmTable parm_table_nceptab_141[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"PRES", "Pressure [Pa]"},
/* 2 */ {"PRMSL", "Pressure reduced to MSL [Pa]"},
/* 3 */ {"PTEND", "Pressure tendency [Pa/s]"},
/* 4 */ {"PVORT", "Pot. vorticity [km^2/kg/s]"},
/* 5 */ {"ICAHT", "ICAO Standard Atmosphere Reference Height [M]"},
/* 6 */ {"GP", "Geopotential [m^2/s^2]"},
/* 7 */ {"HGT", "Geopotential height [gpm]"},
/* 8 */ {"DIST", "Geometric height [m]"},
/* 9 */ {"HSTDV", "Std dev of height [m]"},
/* 10 */ {"TOZNE", "Total ozone [Dobson]"},
/* 11 */ {"TMP", "Temp. [K]"},
/* 12 */ {"VTMP", "Virtual temp. [K]"},
/* 13 */ {"POT", "Potential temp. [K]"},
/* 14 */ {"EPOT", "Pseudo-adiabatic pot. temp. [K]"},
/* 15 */ {"TMAX", "Max. temp. [K]"},
/* 16 */ {"TMIN", "Min. temp. [K]"},
/* 17 */ {"DPT", "Dew point temp. [K]"},
/* 18 */ {"DEPR", "Dew point depression [K]"},
/* 19 */ {"LAPR", "Lapse rate [K/m]"},
/* 20 */ {"VIS", "Visibility [m]"},
/* 21 */ {"RDSP1", "Radar spectra (1) [non-dim]"},
/* 22 */ {"RDSP2", "Radar spectra (2) [non-dim]"},
/* 23 */ {"RDSP3", "Radar spectra (3) [non-dim]"},
/* 24 */ {"PLI", "Parcel lifted index (to 500 hPa) [K]"},
/* 25 */ {"TMPA", "Temp. anomaly [K]"},
/* 26 */ {"PRESA", "Pressure anomaly [Pa]"},
/* 27 */ {"GPA", "Geopotential height anomaly [gpm]"},
/* 28 */ {"WVSP1", "Wave spectra (1) [non-dim]"},
/* 29 */ {"WVSP2", "Wave spectra (2) [non-dim]"},
/* 30 */ {"WVSP3", "Wave spectra (3) [non-dim]"},
/* 31 */ {"WDIR", "Wind direction [deg]"},
/* 32 */ {"WIND", "Wind speed [m/s]"},
/* 33 */ {"UGRD", "u wind [m/s]"},
/* 34 */ {"VGRD", "v wind [m/s]"},
/* 35 */ {"STRM", "Stream function [m^2/s]"},
/* 36 */ {"VPOT", "Velocity potential [m^2/s]"},
/* 37 */ {"MNTSF", "Montgomery stream function [m^2/s^2]"},
/* 38 */ {"SGCVV", "Sigma coord. vertical velocity [/s]"},
/* 39 */ {"VVEL", "Pressure vertical velocity [Pa/s]"},
/* 40 */ {"DZDT", "Geometric vertical velocity [m/s]"},
/* 41 */ {"ABSV", "Absolute vorticity [/s]"},
/* 42 */ {"ABSD", "Absolute divergence [/s]"},
/* 43 */ {"RELV", "Relative vorticity [/s]"},
/* 44 */ {"RELD", "Relative divergence [/s]"},
/* 45 */ {"VUCSH", "Vertical u shear [/s]"},
/* 46 */ {"VVCSH", "Vertical v shear [/s]"},
/* 47 */ {"DIRC", "Direction of current [deg]"},
/* 48 */ {"SPC", "Speed of current [m/s]"},
/* 49 */ {"UOGRD", "u of current [m/s]"},
/* 50 */ {"VOGRD", "v of current [m/s]"},
/* 51 */ {"SPFH", "Specific humidity [kg/kg]"},
/* 52 */ {"RH", "Relative humidity [%]"},
/* 53 */ {"MIXR", "Humidity mixing ratio [kg/kg]"},
/* 54 */ {"PWAT", "Precipitable water [kg/m^2]"},
/* 55 */ {"VAPP", "Vapor pressure [Pa]"},
/* 56 */ {"SATD", "Saturation deficit [Pa]"},
/* 57 */ {"EVP", "Evaporation [kg/m^2]"},
/* 58 */ {"CICE", "Cloud Ice [kg/m^2]"},
/* 59 */ {"PRATE", "Precipitation rate [kg/m^2/s]"},
/* 60 */ {"TSTM", "Thunderstorm probability [%]"},
/* 61 */ {"APCP", "Total precipitation [kg/m^2]"},
/* 62 */ {"NCPCP", "Large scale precipitation [kg/m^2]"},
/* 63 */ {"ACPCP", "Convective precipitation [kg/m^2]"},
/* 64 */ {"SRWEQ", "Snowfall rate water equiv. [kg/m^2/s]"},
/* 65 */ {"WEASD", "Accum. snow [kg/m^2]"},
/* 66 */ {"SNOD", "Snow depth [m]"},
/* 67 */ {"MIXHT", "Mixed layer depth [m]"},
/* 68 */ {"TTHDP", "Transient thermocline depth [m]"},
/* 69 */ {"MTHD", "Main thermocline depth [m]"},
/* 70 */ {"MTHA", "Main thermocline anomaly [m]"},
/* 71 */ {"TCDC", "Total cloud cover [%]"},
/* 72 */ {"CDCON", "Convective cloud cover [%]"},
/* 73 */ {"LCDC", "Low level cloud cover [%]"},
/* 74 */ {"MCDC", "Mid level cloud cover [%]"},
/* 75 */ {"HCDC", "High level cloud cover [%]"},
/* 76 */ {"CWAT", "Cloud water [kg/m^2]"},
/* 77 */ {"BLI", "Best lifted index (to 500 hPa) [K]"},
/* 78 */ {"SNOC", "Convective snow [kg/m^2]"},
/* 79 */ {"SNOL", "Large scale snow [kg/m^2]"},
/* 80 */ {"WTMP", "Water temp. [K]"},
/* 81 */ {"LAND", "Land cover (land=1;sea=0) [fraction]"},
/* 82 */ {"DSLM", "Deviation of sea level from mean [m]"},
/* 83 */ {"SFCR", "Surface roughness [m]"},
/* 84 */ {"ALBDO", "Albedo [%]"},
/* 85 */ {"TSOIL", "Soil temp. [K]"},
/* 86 */ {"SOILM", "Soil moisture content [kg/m^2]"},
/* 87 */ {"VEG", "Vegetation [%]"},
/* 88 */ {"SALTY", "Salinity [kg/kg]"},
/* 89 */ {"DEN", "Density [kg/m^3]"},
/* 90 */ {"WATR", "Water runoff [kg/m^2]"},
/* 91 */ {"ICEC", "Ice concentration (ice=1;no ice=0) [fraction]"},
/* 92 */ {"ICETK", "Ice thickness [m]"},
/* 93 */ {"DICED", "Direction of ice drift [deg]"},
/* 94 */ {"SICED", "Speed of ice drift [m/s]"},
/* 95 */ {"UICE", "u of ice drift [m/s]"},
/* 96 */ {"VICE", "v of ice drift [m/s]"},
/* 97 */ {"ICEG", "Ice growth rate [m/s]"},
/* 98 */ {"ICED", "Ice divergence [/s]"},
/* 99 */ {"SNOM", "Snow melt [kg/m^2]"},
/* 100 */ {"HTSGW", "Sig height of wind waves and swell [m]"},
/* 101 */ {"WVDIR", "Direction of wind waves [deg]"},
/* 102 */ {"WVHGT", "Sig height of wind waves [m]"},
/* 103 */ {"WVPER", "Mean period of wind waves [s]"},
/* 104 */ {"SWDIR", "Direction of swell waves [deg]"},
/* 105 */ {"SWELL", "Sig height of swell waves [m]"},
/* 106 */ {"SWPER", "Mean period of swell waves [s]"},
/* 107 */ {"DIRPW", "Primary wave direction [deg]"},
/* 108 */ {"PERPW", "Primary wave mean period [s]"},
/* 109 */ {"DIRSW", "Secondary wave direction [deg]"},
/* 110 */ {"PERSW", "Secondary wave mean period [s]"},
/* 111 */ {"NSWRS", "Net short wave (surface) [W/m^2]"},
/* 112 */ {"NLWRS", "Net long wave (surface) [W/m^2]"},
/* 113 */ {"NSWRT", "Net short wave (top) [W/m^2]"},
/* 114 */ {"NLWRT", "Net long wave (top) [W/m^2]"},
/* 115 */ {"LWAVR", "Long wave [W/m^2]"},
/* 116 */ {"SWAVR", "Short wave [W/m^2]"},
/* 117 */ {"GRAD", "Global radiation [W/m^2]"},
/* 118 */ {"BRTMP", "Brightness temperature [K]"},
/* 119 */ {"LWRAD", "Radiance with respect to wave no. [W/m/sr]"},
/* 120 */ {"SWRAD", "Radiance with respect ot wave len. [W/m^3/sr]"},
/* 121 */ {"LHTFL", "Latent heat flux [W/m^2]"},
/* 122 */ {"SHTFL", "Sensible heat flux [W/m^2]"},
/* 123 */ {"BLYDP", "Boundary layer dissipation [W/m^2]"},
/* 124 */ {"UFLX", "Zonal momentum flux [N/m^2]"},
/* 125 */ {"VFLX", "Meridional momentum flux [N/m^2]"},
/* 126 */ {"WMIXE", "Wind mixing energy [J]"},
/* 127 */ {"IMGD", "Image data []"},
/* 128 */ {"EXTNC", "Aerosol Extinction Coefficient [1/km]"},
/* 129 */ {"AOD", "Aerosol Optical Depth [-]"},
/* 130 */ {"ASFTR", "Aerosol Asymmetry Factor [-]"},
/* 131 */ {"SSALBD", "Aerosol Single Scatter Albedo [-]"},
/* 132 */ {"BSCTRS", "Aerosol Back Scattering [1/km/sr]"},
/* 133 */ {"var133", "undefined"},
/* 134 */ {"var134", "undefined"},
/* 135 */ {"var135", "undefined"},
/* 136 */ {"var136", "undefined"},
/* 137 */ {"var137", "undefined"},
/* 138 */ {"var138", "undefined"},
/* 139 */ {"var139", "undefined"},
/* 140 */ {"NOy", "Total Inorganic and Organic Nitrates [ppbV]"},
/* 141 */ {"NO", "Nitrogen Oxide [ppbV]"},
/* 142 */ {"NO2", "Nitrogen Dioxide [ppbV]"},
/* 143 */ {"N2O5", "Nitrogen Pentoxide [ppbV]"},
/* 144 */ {"HNO3", "Nitric Acid [ppbV]"},
/* 145 */ {"NO3", "Nitrogen Trioxide [ppbV]"},
/* 146 */ {"PNA", "Peroxynitric Acid [ppbV]"},
/* 147 */ {"HONO", "Nitrous Acid [ppbV]"},
/* 148 */ {"CO", "Carbon Monoxide [ppbV]"},
/* 149 */ {"NH3", "Ammonia [ppbV]"},
/* 150 */ {"HCL", "Hydrogen Chloride [ppbV]"},
/* 151 */ {"var151", "undefined"},
/* 152 */ {"var152", "undefined"},
/* 153 */ {"var153", "undefined"},
/* 154 */ {"var154", "undefined"},
/* 155 */ {"var155", "undefined"},
/* 156 */ {"var156", "undefined"},
/* 157 */ {"var157", "undefined"},
/* 158 */ {"var158", "undefined"},
/* 159 */ {"PAR", "Lumped Single-Bond Carbon Specie [ppbV]"},
/* 160 */ {"ETHE", "Ethene [ppbV]"},
/* 161 */ {"OLE", "Lumped Double-Bond Carbon Species Less Ethene [ppbV]"},
/* 162 */ {"TOL", "Toluene [ppbV]"},
/* 163 */ {"XYL", "Xylene [ppbV]"},
/* 164 */ {"ISOP", "Isoprene [ppbV]"},
/* 165 */ {"var165", "undefined"},
/* 166 */ {"FORM", "Formaldehyde [ppbV]"},
/* 167 */ {"ALD2", "Acetaldehyde & Higher Aldehydes [ppbV]"},
/* 168 */ {"MGLY", "Methyl Glyoxal [ppbV]"},
/* 169 */ {"CRES", "Cresol and Higher Molecular Weight Phenols [ppbV]"},
/* 170 */ {"var170", "undefined"},
/* 171 */ {"var171", "undefined"},
/* 172 */ {"PAN", "Peroxyacyl Nitrate [ppbV]"},
/* 173 */ {"NTR", "Lumped Gaseous Organic Nitrate [ppbV]"},
/* 174 */ {"var174", "undefined"},
/* 175 */ {"var175", "undefined"},
/* 176 */ {"var176", "undefined"},
/* 177 */ {"ROOH", "Esters [ppbV]"},
/* 178 */ {"ETHOH", "Ethanol [ppbV]"},
/* 179 */ {"METHOH", "Methanol [ppbV]"},
/* 180 */ {"var180", "undefined"},
/* 181 */ {"var181", "undefined"},
/* 182 */ {"var182", "undefined"},
/* 183 */ {"var183", "undefined"},
/* 184 */ {"var184", "undefined"},
/* 185 */ {"var185", "undefined"},
/* 186 */ {"H2O2", "Hydrogen Peroxide [ppbV]"},
/* 187 */ {"OH", "Hydroxyl Radical [ppbV]"},
/* 188 */ {"HO2", "Hydroperoxyl Radical [ppbV]"},
/* 189 */ {"var189", "undefined"},
/* 190 */ {"var190", "undefined"},
/* 191 */ {"var191", "undefined"},
/* 192 */ {"var192", "undefined"},
/* 193 */ {"var193", "undefined"},
/* 194 */ {"var194", "undefined"},
/* 195 */ {"var195", "undefined"},
/* 196 */ {"var196", "undefined"},
/* 197 */ {"var197", "undefined"},
/* 198 */ {"var198", "undefined"},
/* 199 */ {"var199", "undefined"},
/* 200 */ {"ASO4", "Sulfate (SO4) Particulates ≤ 2.5 μm Diameter [μg/m^3]"},
/* 201 */ {"ANH4", "Ammonia (NH4) Particulates ≤ 2.5 μm Diameter [μg/m^3]"},
/* 202 */ {"ANO3", "Nitrate (NO3) Particulates ≤ 2.5 μm Diameter [μg/m^3]"},
/* 203 */ {"AORGA", "Organic Particulates ≤ 2.5 μm Diameter [μg/m^3]"},
/* 204 */ {"AORGPA", "Primarily Organic Particulates ≤ 2.5 μm Diameter [μg/m^3]"},
/* 205 */ {"AORGB", "Biogenically Originated Particulates ≤ 2.5 μm Diameter [μg/m^3]"},
/* 206 */ {"AEC", "Elemental Carbon Particulates ≤ 2.5 μm Diameter [μg/m^3]"},
/* 207 */ {"A25", "Unspecified Anthropogenic Particulates ≤ 2.5 μm Diameter [μg/m^3]"},
/* 208 */ {"AH2O", "Water Particulates ≤ 2.5 μm Diameter [μg/m^3]"},
/* 209 */ {"ANA", "Sodium Particulates ≤ 2.5 μm Diameter [μg/m^3]"},
/* 210 */ {"ACL", "Chloride Particulates ≤ 2.5 μm Diameter [μg/m^3]"},
/* 211 */ {"var211", "undefined"},
/* 212 */ {"var212", "undefined"},
/* 213 */ {"var213", "undefined"},
/* 214 */ {"var214", "undefined"},
/* 215 */ {"var215", "undefined"},
/* 216 */ {"ASO4K", "Sulfate (SO4) Particulates between 2.5 and 10 μm Diameter [μg/m^3]"},
/* 217 */ {"ANAK", "Sodium (NA) Particulates between 2.5 and 10 μm Diameter [μg/m^3]"},
/* 218 */ {"ACLK", "Chloride (CL) Particulates between 2.5 and 10 μm Diameter [μg/m^3]"},
/* 219 */ {"ASEAS", "Sea Salt Originated Particulates between 2.5 and 10 μm Diameter [μg/m^3]"},
/* 220 */ {"ASOIL", "Crustal Material Orginated Particulates between 2.5 and 10 μm Diameter [μg/m^3]"},
/* 221 */ {"ACORS", "Particulates between 2.5 and 10 μm Diameter [μg/m^3]"},
/* 222 */ {"NUMATKN", "Number Concentration Particulates between 2.5 and 0.1 μm Diameter [number/m^3]"},
/* 223 */ {"NUMACC", "Number Concentration Particulates between 2.5 and 2.5 μm Diameter [number/m^3]"},
/* 224 */ {"NUMCOR", "Number Concentration Particulates between 2.5 and 10 μm Diameter [number/m^3]"},
/* 225 */ {"var225", "undefined"},
/* 226 */ {"var226", "undefined"},
/* 227 */ {"var227", "undefined"},
/* 228 */ {"SRFATKN", "Surface Area Contributed by Particulates ≤ 0.1 μm Diameter [m2/m^3]"},
/* 229 */ {"SRFACC", "Surface Area Contributed by Particulates between 0.1 and 2.5 μm Diameter [m2/m^3]"},
/* 230 */ {"var230", "undefined"},
/* 231 */ {"var231", "undefined"},
/* 232 */ {"SO2", "Sulfur Dioxide [ppbV]"},
/* 233 */ {"MSA", "Methanesulfonic Acid [Kg/Kg]"},
/* 234 */ {"TSO4", "Total Sulfate Particulates (Fine ands Coarse) [μg/m^3]"},
/* 235 */ {"DMS", "Dimethylsulfide [Kg/Kg]"},
/* 236 */ {"var236", "undefined"},
/* 237 */ {"var237", "undefined"},
/* 238 */ {"var238", "undefined"},
/* 239 */ {"var239", "undefined"},
/* 240 */ {"DU1", "Dust Particulates between 0.2 - 2.0 μm Diameter [Kg/Kg]"},
/* 241 */ {"DU2", "Dust Particulates between 2.0 - 3.6 μm Diameter [Kg/Kg]"},
/* 242 */ {"DU3", "Dust Particulates between 3.6 - 6.0 μm Diameter [Kg/Kg]"},
/* 243 */ {"DU4", "Dust Particulates between 6.0 - 12.0 μm Diameter [Kg/Kg]"},
/* 244 */ {"DU5", "Dust Particulates between 12.0 - 20.0 μm Diameter [Kg/Kg]"},
/* 245 */ {"SS1", "Sea Salt Particulates between 0.2 - 1.0 μm Diameter [Kg/Kg]"},
/* 246 */ {"SS2", "Sea Salt Particulates between 1.0 - 3.0 μm Diameter [Kg/Kg]"},
/* 247 */ {"SS3", "Sea Salt Particulates between 3.0 - 10.0 μm Diameter [Kg/Kg]"},
/* 248 */ {"SS4", "Sea Salt Particulates between 10.0 - 20.0 μm Diameter [Kg/Kg]"},
/* 249 */ {"OCDRY", "Hydrophobic Organic Carbon [Kg/Kg]"},
/* 250 */ {"OCWET", "Hydrophilic Organic Carbon [Kg/Kg]"},
/* 251 */ {"BCDRY", "Hydrophobic Black Carbon [Kg/Kg]"},
/* 252 */ {"BCWET", "Hydrophilic Black Carbon [Kg/Kg]"},
/* 253 */ {"var253", "undefined"},
/* 254 */ {"var254", "undefined"},
/* 255 */ {"var255", "undefined"},
};
const struct ParmTable parm_table_mdl_nceptab[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"PRES", "Pressure [Pa]"},
/* 2 */ {"PRMSL", "Pressure reduced to MSL [Pa]"},
/* 3 */ {"PTEND", "Pressure tendency [Pa/s]"},
/* 4 */ {"PVORT", "Pot. vorticity [km^2/kg/s]"},
/* 5 */ {"ICAHT", "ICAO Standard Atmosphere Reference Height [M]"},
/* 6 */ {"GP", "Geopotential [m^2/s^2]"},
/* 7 */ {"HGT", "Geopotential height [gpm]"},
/* 8 */ {"DIST", "Geometric height [m]"},
/* 9 */ {"HSTDV", "Std dev of height [m]"},
/* 10 */ {"TOZNE", "Total ozone [Dobson]"},
/* 11 */ {"TMP", "Temp. [K]"},
/* 12 */ {"VTMP", "Virtual temp. [K]"},
/* 13 */ {"POT", "Potential temp. [K]"},
/* 14 */ {"EPOT", "Pseudo-adiabatic pot. temp. [K]"},
/* 15 */ {"TMAX", "Max. temp. [K]"},
/* 16 */ {"TMIN", "Min. temp. [K]"},
/* 17 */ {"DPT", "Dew point temp. [K]"},
/* 18 */ {"DEPR", "Dew point depression [K]"},
/* 19 */ {"LAPR", "Lapse rate [K/m]"},
/* 20 */ {"VIS", "Visibility [m]"},
/* 21 */ {"RDSP1", "Radar spectra (1) [non-dim]"},
/* 22 */ {"RDSP2", "Radar spectra (2) [non-dim]"},
/* 23 */ {"RDSP3", "Radar spectra (3) [non-dim]"},
/* 24 */ {"PLI", "Parcel lifted index (to 500 hPa) [K]"},
/* 25 */ {"TMPA", "Temp. anomaly [K]"},
/* 26 */ {"PRESA", "Pressure anomaly [Pa]"},
/* 27 */ {"GPA", "Geopotential height anomaly [gpm]"},
/* 28 */ {"WVSP1", "Wave spectra (1) [non-dim]"},
/* 29 */ {"WVSP2", "Wave spectra (2) [non-dim]"},
/* 30 */ {"WVSP3", "Wave spectra (3) [non-dim]"},
/* 31 */ {"WDIR", "Wind direction [deg]"},
/* 32 */ {"WIND", "Wind speed [m/s]"},
/* 33 */ {"UGRD", "u wind [m/s]"},
/* 34 */ {"VGRD", "v wind [m/s]"},
/* 35 */ {"STRM", "Stream function [m^2/s]"},
/* 36 */ {"VPOT", "Velocity potential [m^2/s]"},
/* 37 */ {"MNTSF", "Montgomery stream function [m^2/s^2]"},
/* 38 */ {"SGCVV", "Sigma coord. vertical velocity [/s]"},
/* 39 */ {"VVEL", "Pressure vertical velocity [Pa/s]"},
/* 40 */ {"DZDT", "Geometric vertical velocity [m/s]"},
/* 41 */ {"ABSV", "Absolute vorticity [/s]"},
/* 42 */ {"ABSD", "Absolute divergence [/s]"},
/* 43 */ {"RELV", "Relative vorticity [/s]"},
/* 44 */ {"RELD", "Relative divergence [/s]"},
/* 45 */ {"VUCSH", "Vertical u shear [/s]"},
/* 46 */ {"VVCSH", "Vertical v shear [/s]"},
/* 47 */ {"DIRC", "Direction of current [deg]"},
/* 48 */ {"SPC", "Speed of current [m/s]"},
/* 49 */ {"UOGRD", "u of current [m/s]"},
/* 50 */ {"VOGRD", "v of current [m/s]"},
/* 51 */ {"SPFH", "Specific humidity [kg/kg]"},
/* 52 */ {"RH", "Relative humidity [%]"},
/* 53 */ {"MIXR", "Humidity mixing ratio [kg/kg]"},
/* 54 */ {"PWAT", "Precipitable water [kg/m^2]"},
/* 55 */ {"VAPP", "Vapor pressure [Pa]"},
/* 56 */ {"SATD", "Saturation deficit [Pa]"},
/* 57 */ {"EVP", "Evaporation [kg/m^2]"},
/* 58 */ {"CICE", "Cloud Ice [kg/m^2]"},
/* 59 */ {"PRATE", "Precipitation rate [kg/m^2/s]"},
/* 60 */ {"TSTM", "Thunderstorm probability [%]"},
/* 61 */ {"APCP", "Total precipitation [kg/m^2]"},
/* 62 */ {"NCPCP", "Large scale precipitation [kg/m^2]"},
/* 63 */ {"ACPCP", "Convective precipitation [kg/m^2]"},
/* 64 */ {"SRWEQ", "Snowfall rate water equiv. [kg/m^2/s]"},
/* 65 */ {"WEASD", "Accum. snow [kg/m^2]"},
/* 66 */ {"SNOD", "Snow depth [m]"},
/* 67 */ {"MIXHT", "Mixed layer depth [m]"},
/* 68 */ {"TTHDP", "Transient thermocline depth [m]"},
/* 69 */ {"MTHD", "Main thermocline depth [m]"},
/* 70 */ {"MTHA", "Main thermocline anomaly [m]"},
/* 71 */ {"TCDC", "Total cloud cover [%]"},
/* 72 */ {"CDCON", "Convective cloud cover [%]"},
/* 73 */ {"LCDC", "Low level cloud cover [%]"},
/* 74 */ {"MCDC", "Mid level cloud cover [%]"},
/* 75 */ {"HCDC", "High level cloud cover [%]"},
/* 76 */ {"CWAT", "Cloud water [kg/m^2]"},
/* 77 */ {"BLI", "Best lifted index (to 500 hPa) [K]"},
/* 78 */ {"SNOC", "Convective snow [kg/m^2]"},
/* 79 */ {"SNOL", "Large scale snow [kg/m^2]"},
/* 80 */ {"WTMP", "Water temp. [K]"},
/* 81 */ {"LAND", "Land cover (land=1;sea=0) [fraction]"},
/* 82 */ {"DSLM", "Deviation of sea level from mean [m]"},
/* 83 */ {"SFCR", "Surface roughness [m]"},
/* 84 */ {"ALBDO", "Albedo [%]"},
/* 85 */ {"TSOIL", "Soil temp. [K]"},
/* 86 */ {"SOILM", "Soil moisture content [kg/m^2]"},
/* 87 */ {"VEG", "Vegetation [%]"},
/* 88 */ {"SALTY", "Salinity [kg/kg]"},
/* 89 */ {"DEN", "Density [kg/m^3]"},
/* 90 */ {"WATR", "Water runoff [kg/m^2]"},
/* 91 */ {"ICEC", "Ice concentration (ice=1;no ice=0) [fraction]"},
/* 92 */ {"ICETK", "Ice thickness [m]"},
/* 93 */ {"DICED", "Direction of ice drift [deg]"},
/* 94 */ {"SICED", "Speed of ice drift [m/s]"},
/* 95 */ {"UICE", "u of ice drift [m/s]"},
/* 96 */ {"VICE", "v of ice drift [m/s]"},
/* 97 */ {"ICEG", "Ice growth rate [m/s]"},
/* 98 */ {"ICED", "Ice divergence [/s]"},
/* 99 */ {"SNOM", "Snow melt [kg/m^2]"},
/* 100 */ {"HTSGW", "Sig height of wind waves and swell [m]"},
/* 101 */ {"WVDIR", "Direction of wind waves [deg]"},
/* 102 */ {"WVHGT", "Sig height of wind waves [m]"},
/* 103 */ {"WVPER", "Mean period of wind waves [s]"},
/* 104 */ {"SWDIR", "Direction of swell waves [deg]"},
/* 105 */ {"SWELL", "Sig height of swell waves [m]"},
/* 106 */ {"SWPER", "Mean period of swell waves [s]"},
/* 107 */ {"DIRPW", "Primary wave direction [deg]"},
/* 108 */ {"PERPW", "Primary wave mean period [s]"},
/* 109 */ {"DIRSW", "Secondary wave direction [deg]"},
/* 110 */ {"PERSW", "Secondary wave mean period [s]"},
/* 111 */ {"NSWRS", "Net short wave (surface) [W/m^2]"},
/* 112 */ {"NLWRS", "Net long wave (surface) [W/m^2]"},
/* 113 */ {"NSWRT", "Net short wave (top) [W/m^2]"},
/* 114 */ {"NLWRT", "Net long wave (top) [W/m^2]"},
/* 115 */ {"LWAVR", "Long wave [W/m^2]"},
/* 116 */ {"SWAVR", "Short wave [W/m^2]"},
/* 117 */ {"GRAD", "Global radiation [W/m^2]"},
/* 118 */ {"BRTMP", "Brightness temperature [K]"},
/* 119 */ {"LWRAD", "Radiance with respect to wave no. [W/m/sr]"},
/* 120 */ {"SWRAD", "Radiance with respect ot wave len. [W/m^3/sr]"},
/* 121 */ {"LHTFL", "Latent heat flux [W/m^2]"},
/* 122 */ {"SHTFL", "Sensible heat flux [W/m^2]"},
/* 123 */ {"BLYDP", "Boundary layer dissipation [W/m^2]"},
/* 124 */ {"UFLX", "Zonal momentum flux [N/m^2]"},
/* 125 */ {"VFLX", "Meridional momentum flux [N/m^2]"},
/* 126 */ {"WMIXE", "Wind mixing energy [J]"},
/* 127 */ {"IMGD", "Image data []"},
/* 128 */ {"TMPF", "TEMPERATURE (Fahrenheit) [F]"},
/* 129 */ {"MAXK", "DAYTIME MAX TEMP (MAX) (Kelvin) [K]"},
/* 130 */ {"MAXF", "DAYTIME MAX TEMP (MAX) (deg F) [F]"},
/* 131 */ {"NMAXK", "NORMAL MAX TEMPERATURE (Kelvin) [K]"},
/* 132 */ {"NMAXF", "NORMAL MAX TEMPERATURE (deg F) [F]"},
/* 133 */ {"DMAXK", "DEPARTURE FROM NORMAL MAX (K) [K]"},
/* 134 */ {"DMAXF", "DEPARTURE FROM NORMAL MAX (deg F) [F]"},
/* 135 */ {"MINK", "NIGHTTIME MIN TEMP (MIN) (Kelvin) [K]"},
/* 136 */ {"MINF", "NIGHTTIME MIN TEMP (MIN) (deg F) [F]"},
/* 137 */ {"NMINK", "NORMAL MIN TEMPERATURE (Kelvin) [K]"},
/* 138 */ {"NMINF", "NORMAL NIGHTTIME MIN TEMP (deg F) [F]"},
/* 139 */ {"DMINK", "DEPARTURE FROM NORMAL MIN (K) [K]"},
/* 140 */ {"DMINF", "DEPARTURE FROM NORMAL MIN (deg F) [F]"},
/* 141 */ {"DWPF", "DEW POINT TEMPERATURE (deg F) [F]"},
/* 142 */ {"DPDF", "DEW POINT DEPRESSION (deg F) [F]"},
/* 143 */ {"HTINF", "HEAT INDEX (deg F) [F]"},
/* 144 */ {"WNCHF", "WIND CHILL (deg F) [F]"},
/* 145 */ {"var145", "undefined"},
/* 146 */ {"POP", "PROB OF 0.01 IN. OF PRECIP (PoP) [%]"},
/* 147 */ {"PQPF2", "PROB OF QPF >= 0.10 INCHES [%]"},
/* 148 */ {"PQPF3", "PROB OF QPF >= 0.25 INCHES [%]"},
/* 149 */ {"PQPF4", "PROB OF QPF >= 0.50 INCHES [%]"},
/* 150 */ {"PQPF5", "PROB OF QPF >= 1.00 INCHES [%]"},
/* 151 */ {"PQPF6", "PROB OF QPF >= 2.00 INCHES [%]"},
/* 152 */ {"PQPF7", "PROB OF QPF >= 3.00 INCHES FUTURE [%]"},
/* 153 */ {"BQPF", "BEST CATEGORY OF QPF [num]"},
/* 154 */ {"NPOP", "NML REL. FREQ. OF 0.01 IN OF PCP [%]"},
/* 155 */ {"DPOP", "DEPARTURE FROM NML OF 0.01 POP [%]"},
/* 156 */ {"PCPM", "EXPECTED VALUE OF PRECIPITATION [mm]"},
/* 157 */ {"PCPI", "EXPECTED VALUE OF PRECIPITATION [in]"},
/* 158 */ {"CPCPM", "CONDITIONAL EXPECTED PRECIP AMT [mm]"},
/* 159 */ {"CPCPI", "CONDITIONAL EXPECTED PRECIP AMT [in]"},
/* 160 */ {"PSNA1", "PROB OF SNOW AMOUNT >= 0.10 [%]"},
/* 161 */ {"PSNA2", "PROB OF SNOW AMOUNT >= 2 INCHES [%]"},
/* 162 */ {"PSNA3", "PROB OF SNOW AMOUNT >= 4 INCHES [%]"},
/* 163 */ {"PSNA4", "PROB OF SNOW AMOUNT >= 6 INCHES [%]"},
/* 164 */ {"PSNA5", "PROB OF SNOW AMOUNT >= 8 INCHES [%]"},
/* 165 */ {"BSNA", "BEST CATEGORY FOR SNOW AMOUNT [num]"},
/* 166 */ {"SNWM", "EXPECTED VALUE OF SNOW AMOUNT [mm]"},
/* 167 */ {"SNWI", "EXPECTED VALUE OF SNOW AMOUNT [in]"},
/* 168 */ {"MWSPK", "INFLATED MAX WIND SPEED (knots) [kts]"},
/* 169 */ {"IWSPM", "INFLATED WIND SPEED (meter/sec) [m/s]"},
/* 170 */ {"SKNT", "INFLATED WIND SPEED (knots) [kts]"},
/* 171 */ {"PWSP1", "PROB OF MAX WIND SPEED 0-12 kts [%]"},
/* 172 */ {"PWSP2", "PROB OF MAX WIND SPEED 13-21 kts [%]"},
/* 173 */ {"PWSP3", "PROB OF MAX WIND SPEED 22-31 kts [%]"},
/* 174 */ {"PWSP4", "PROB OF MAX WIND SPEED >=32 kts [%]"},
/* 175 */ {"WSPDC", "CATEGORICAL MAX WIND SPEED [num]"},
/* 176 */ {"XSPDM", "EXPECTED VALUE OF MAX WIND SPEED [m/s]"},
/* 177 */ {"XSPDK", "EXPECTED VALUE OF MAX WIND SPEED [kts]"},
/* 178 */ {"PWDRN", "PROB OF WIND DIRECTION NORTH [%]"},
/* 179 */ {"PWDRNE", "PROB OF WIND DIRECTION NORTHEAST [%]"},
/* 180 */ {"PWDRE", "PROB OF WIND DIRECTION EAST [%]"},
/* 181 */ {"PWDRSE", "PROB OF WIND DIRECTION SOUTHEAST [%]"},
/* 182 */ {"PWDRS", "PROB OF WIND DIRECTION SOUTH [%]"},
/* 183 */ {"PWDRSW", "PROB OF WIND DIRECTION SOUTHWEST [%]"},
/* 184 */ {"PWDRW", "PROB OF WIND DIRECTION WEST [%]"},
/* 185 */ {"PWDRNW", "PROB OF WIND DIRECTION NORTHWEST [%]"},
/* 186 */ {"WDIRC", "CATEGORICAL WIND DIRECTION [num]"},
/* 187 */ {"var187", "undefined"},
/* 188 */ {"PSKCL", "PROB OF TOTAL SKY"},
/* 189 */ {"PSKFW", "PROB OF TOTAL SKY"},
/* 190 */ {"PSKSC", "PROB OF TOTAL SKY"},
/* 191 */ {"PSKBK", "PROB OF TOTAL SKY"},
/* 192 */ {"PSKOV", "PROB OF TOTAL SKY"},
/* 193 */ {"SKYC", "CATEGORICAL TOTAL SKY COVER [num]"},
/* 194 */ {"MSKCL", "PROB MEAN SKY CVR"},
/* 195 */ {"MSKOV", "PROB MEAN SKY CVR"},
/* 196 */ {"MSKMC", "PROB MEAN SKY CVR"},
/* 197 */ {"MSKPC", "PROB MEAN SKY CVR"},
/* 198 */ {"MSKMO", "PROB MEAN SKY CVR"},
/* 199 */ {"MSKYC", "CATEGORICAL MEAN SKY COVER [num]"},
/* 200 */ {"PCIG1", "PROB OF CIG HGT < 200 FT [%]"},
/* 201 */ {"PCIG2", "PROB OF CIG HGT 200-400 FT [%]"},
/* 202 */ {"PCIG3", "PROB OF CIG HGT 500-900 FT [%]"},
/* 203 */ {"PCIG4", "PROB OF CIG HGT 1000-3000 FT [%]"},
/* 204 */ {"PCIG5", "PROB OF CIG HGT 3100-6500 FT [%]"},
/* 205 */ {"PCIG6", "PROB OF CIG HGT 6600-12000 FT [%]"},
/* 206 */ {"PCIG7", "PROB OF CIG HGT > 12000 FT [%]"},
/* 207 */ {"BCIG", "BEST CATEGORY OF CEILING HEIGHT [num]"},
/* 208 */ {"PVIS1", "PROB OF VIS <=1/4 MILE [%]"},
/* 209 */ {"PVIS2", "PROB OF VIS <=1/2 MILE [%]"},
/* 210 */ {"PVIS3", "PROB OF VIS <=7/8 MILE [%]"},
/* 211 */ {"PVIS4", "PROB OF VIS <=2 3/4 MILES [%]"},
/* 212 */ {"PVIS5", "PROB OF VIS <=5 MILES [%]"},
/* 213 */ {"PVIS6", "PROB OF VIS <=6 MILES [%]"},
/* 214 */ {"VISC", "CATEGORICAL VISIBILITY [num]"},
/* 215 */ {"POBVN", "PROB OF OBSTRUCTION TO VIS"},
/* 216 */ {"POBVH", "PROB OF OBSTRUCTION TO VIS"},
/* 217 */ {"POBVM", "PROB OF OBSTRUCTION TO VIS"},
/* 218 */ {"POBVF", "PROB OF OBSTRUCTION TO VIS"},
/* 219 */ {"POVBL", "PROB OF BLOWING OBVIS [%]"},
/* 220 */ {"OBVC", "BEST CATEGORY OF OBVIS [num]"},
/* 221 */ {"var221", "undefined"},
/* 222 */ {"NTSM", "NORMAL PROB OF THUNDERSTORMS [%]"},
/* 223 */ {"CSVR", "COND PROB OF SEVERE WEATHER [%]"},
/* 224 */ {"USVR", "UNCOND PROB OF SEVERE WX [%]"},
/* 225 */ {"NSVR", "NORMAL PROB OF SEVERE WX [%]"},
/* 226 */ {"UHAI", "UNCONDITIONAL PROB OF HAIL [%]"},
/* 227 */ {"UTOR", "UNCONDITIONAL PROB OF TORNADO [%]"},
/* 228 */ {"UTSW", "UNCOND PROB OF DAMAGING WIND [%]"},
/* 229 */ {"CFZI", "COND PROB FRZING PRECIP (INSTANT) [%]"},
/* 230 */ {"UFZI", "UNCND PROB FRZING PRECIP (INSTNT) [%]"},
/* 231 */ {"CZNI", "COND PROB FROZEN PRECIP (INSTANT) [%]"},
/* 232 */ {"UZNI", "UNCND PROB FROZEN PRECIP (INSTNT) [%]"},
/* 233 */ {"CLQI", "COND PROB LIQUID PRECIP (INSTANT) [%]"},
/* 234 */ {"ULQI", "UNCND PROB LIQUID PRECIP (INSTNT) [%]"},
/* 235 */ {"PTYPI", "CATEGORICAL PRECIP TYPE (INSTANT) [num]"},
/* 236 */ {"CPOZP", "COND PROB OF FRZING PRECIP [%]"},
/* 237 */ {"UPOZP", "UNCOND PROB OF FRZING PRECIP [%]"},
/* 238 */ {"CPOS", "COND PROB OF SNOW (CPoS) [%]"},
/* 239 */ {"UPOS", "UNCOND PROB OF SNOW (CPoS) [%]"},
/* 240 */ {"CPORS", "COND PROB OF RAIN/SNOW MIXED [%]"},
/* 241 */ {"UPORS", "UNCOND PROB OF RAIN/SNOW MIXED [%]"},
/* 242 */ {"CPORA", "COND PROB OF RAIN [%]"},
/* 243 */ {"var243", "undefined"},
/* 244 */ {"BPCPT", "BEST CATEGORY OF PRECIP TYPE [num]"},
/* 245 */ {"POPOH", "POPO PRECIP OCCURRING AT AN HOUR [%]"},
/* 246 */ {"POPOP", "POPO PRECIP DURING A PERIOD [%]"},
/* 247 */ {"CPDRZ", "COND PROB OF DRIZZLE [%]"},
/* 248 */ {"CPSTY", "COND PROB OF CONT (STEADY) PRECIP [%]"},
/* 249 */ {"CPSHW", "COND PROB OF SHOWERS [%]"},
/* 250 */ {"BPCHR", "BEST CAT PRECIP CHARACTERISTIC [num]"},
/* 251 */ {"SUNSH", "PERCENT OF POSSIBLE SUNSHINE [%]"},
/* 252 */ {"HRSUN", "HOURS OF SUNSHINE [hrs]"},
/* 253 */ {"SCQP", "SCAN 0-3H CATEGORICAL QPF [num]"},
/* 254 */ {"SCTS", "SCAN 0-3H C-G LIGHTNING PROB [%]"},
/* 255 */ {"var255", "undefined"},
};
/*
* EC_ext v1.0 wesley ebisuzaki
*
* prints something readable from the EC stream parameter
*
* prefix and suffix are only printed if EC_ext has text
*/
void EC_ext(unsigned char *pds, char *prefix, char *suffix, int verbose) {
int local_id, ec_type, ec_class, ec_stream;
char string[200];
if (PDS_Center(pds) != ECMWF) return;
local_id = PDS_EcLocalId(pds);
if (local_id == 0) return;
ec_class = PDS_EcClass(pds);
ec_type = PDS_EcType(pds);
ec_stream = PDS_EcStream(pds);
if (verbose == 2) printf("%sECext=%d%s", prefix, local_id, suffix);
if (verbose == 2) {
switch(ec_class) {
case 1: strcpy(string, "operations"); break;
case 2: strcpy(string, "research"); break;
case 3: strcpy(string, "ERA-15"); break;
case 4: strcpy(string, "Euro clim support network"); break;
case 5: strcpy(string, "ERA-40"); break;
case 6: strcpy(string, "DEMETER"); break;
case 7: strcpy(string, "PROVOST"); break;
case 8: strcpy(string, "ELDAS"); break;
default: sprintf(string, "%d", ec_class); break;
}
printf("%sclass=%s%s",prefix,string,suffix);
}
/*
10/03/2000: R.Rudsar : subroutine changed.
Tests for EcType and extra test for EcStream 1035
*/
/* if (verbose == 2) { */
switch(ec_type) {
case 1: strcpy(string, "first guess"); break;
case 2: strcpy(string, "analysis"); break;
case 3: strcpy(string, "init analysis"); break;
case 4: strcpy(string, "OI analysis"); break;
/* case 10: strcpy(string, "Control forecast"); break; */
case 10: sprintf(string, "Control forecast %d",PDS_EcFcstNo(pds));
break;
case 11:
if (ec_stream == 1035)
sprintf(string, "Perturbed forecast %d",
PDS_EcFcstNo(pds));
else
strcpy(string, "Perturbed forecasts"); break;
break;
case 14: strcpy(string, "Cluster means"); break;
case 15: strcpy(string, "Cluster std. dev."); break;
case 16: strcpy(string, "Forecast probability"); break;
case 17: strcpy(string, "Ensemble means"); break;
case 18: strcpy(string, "Ensemble std. dev."); break;
case 20: strcpy(string, "Climatology"); break;
case 21: strcpy(string, "Climatology simulation"); break;
case 80: strcpy(string, "Fcst seasonal mean"); break;
default: sprintf(string, "%d", ec_type); break;
}
printf("%stype=%s%s",prefix,string,suffix);
/* } */
if (verbose == 2) {
switch(ec_stream) {
case 1035: strcpy(string, "ensemble forecasts"); break;
case 1043: strcpy(string, "mon mean"); break;
case 1070: strcpy(string, "mon (co)var"); break;
case 1071: strcpy(string, "mon mean from daily"); break;
case 1090: strcpy(string, "EC ensemble fcsts"); break;
case 1091: strcpy(string, "EC seasonal fcst mon means"); break;
default: sprintf(string, "%d", ec_stream); break;
}
printf("%sstream=%s%s",prefix,string,suffix);
}
if (verbose == 2) {
printf("%sVersion=%c%c%c%c%s", prefix, *(PDS_Ec16Version(pds)), *(PDS_Ec16Version(pds)+1),
*(PDS_Ec16Version(pds)+2), *(PDS_Ec16Version(pds)+3), suffix);
if (local_id == 16) {
printf("%sSysVersion=%d%s", prefix, PDS_Ec16SysNum(pds), suffix);
printf("%sAvgPeriod=%d%s", prefix, PDS_Ec16AvePeriod(pds), suffix);
printf("%sFcstMon=%d%s", prefix, PDS_Ec16FcstMon(pds), suffix);
}
}
if (local_id == 16) {
printf("%sEnsem_mem=%d%s", prefix, PDS_Ec16Number(pds), suffix);
printf("%sVerfDate=%d%s", prefix, PDS_Ec16VerfMon(pds), suffix);
}
}
/*
* get grid size from GDS
*
* added calculation of nxny of spectral data and clean up of triangular
* grid nnxny calculation l. kornblueh
* 7/25/03 wind fix Dusan Jovic
* 9/17/03 fix scan mode
*/
extern int ec_large_grib, len_ec_bds;
int GDS_grid(unsigned char *gds, unsigned char *bds, int *nx, int *ny,
long int *nxny) {
int i, d, ix, iy, pl;
long int isum;
*nx = ix = GDS_LatLon_nx(gds);
*ny = iy = GDS_LatLon_ny(gds);
*nxny = ix * iy;
/* thin grid */
if (GDS_Gaussian(gds) || GDS_LatLon(gds)) {
if (ix == 65535) {
*nx = -1;
/* reduced grid */
isum = 0;
pl = GDS_PL(gds);
for (i = 0; i < iy; i++) {
isum += gds[pl+i*2]*256 + gds[pl+i*2+1];
}
*nxny = isum;
}
return 0;
}
if (GDS_Triangular(gds)) {
i = GDS_Triangular_ni(gds);
d = GDS_Triangular_nd(gds);
*nx = *nxny = d * (i + 1) * (i + 1);
*ny = 1;
return 0;
}
if (GDS_Harmonic(gds)) {
if (BDS_ComplexPacking(bds)) {
*nx = BDS_NValues(bds);
*ny = -1;
}
else {
/* this code assumes j, k, m are consistent with bds */
*nx = *nxny = (8*(BDS_LEN(bds)-15)-BDS_UnusedBits(bds))/
BDS_NumBits(bds)+1;
if ((8*(BDS_LEN(bds)-15)-BDS_UnusedBits(bds)) % BDS_NumBits(bds)) {
fprintf(stderr,"inconsistent harmonic BDS\n");
}
*ny = 1;
}
}
return 0;
}
#define NCOL 15
void GDS_prt_thin_lon(unsigned char *gds) {
int iy, i, col, pl;
iy = GDS_LatLon_ny(gds);
iy = (iy + 1) / 2;
iy = GDS_LatLon_ny(gds);
if ((pl = GDS_PL(gds)) == -1) {
fprintf(stderr,"\nprogram error: GDS_prt_thin\n");
return;
}
for (col = i = 0; i < iy; i++) {
if (col == 0) printf(" ");
printf("%5d", (gds[pl+i*2] << 8) + gds[pl+i*2+1]);
col++;
if (col == NCOL) {
col = 0;
printf("\n");
}
}
if (col != 0) printf("\n");
}
/*
* prints out wind rel to grid or earth
*/
static char *scan_mode[8] = {
"WE:NS",
"NS:WE",
"WE:SN",
"SN:WE",
"EW:NS",
"NS:EW",
"EW:SN",
"SN:EW" };
void GDS_winds(unsigned char *gds, int verbose) {
int scan = -1, mode = -1;
if (gds != NULL) {
if (GDS_LatLon(gds)) {
scan = GDS_LatLon_scan(gds);
mode = GDS_LatLon_mode(gds);
}
else if (GDS_Mercator(gds)) {
scan =GDS_Merc_scan(gds);
mode =GDS_Merc_mode(gds);
}
/* else if (GDS_Gnomonic(gds)) { */
else if (GDS_Lambert(gds)) {
scan = GDS_Lambert_scan(gds);
mode = GDS_Lambert_mode(gds);
}
else if (GDS_Gaussian(gds)) {
scan = GDS_LatLon_scan(gds);
mode = GDS_LatLon_mode(gds);
}
else if (GDS_Polar(gds)) {
scan = GDS_Polar_scan(gds);
mode = GDS_Polar_mode(gds);
}
else if (GDS_RotLL(gds)) {
scan = GDS_RotLL_scan(gds);
mode = GDS_RotLL_mode(gds);
}
/* else if (GDS_Triangular(gds)) { */
else if (GDS_ssEgrid(gds)) {
scan = GDS_ssEgrid_scan(gds);
mode = GDS_ssEgrid_mode(gds);
}
else if (GDS_fEgrid(gds)) {
scan = GDS_fEgrid_scan(gds);
mode = GDS_fEgrid_mode(gds);
}
else if (GDS_ss2dEgrid(gds)) {
scan = GDS_ss2dEgrid_scan(gds);
mode = GDS_ss2dEgrid_mode(gds);
}
else if (GDS_ss2dBgrid(gds)) {
scan = GDS_ss2dBgrid_scan(gds);
mode = GDS_ss2dBgrid_mode(gds);
}
}
if (verbose == 1) {
if (mode != -1) {
if (mode & 8) printf("winds in grid direction:");
else printf("winds are N/S:");
}
}
else if (verbose == 2) {
if (scan != -1) {
printf(" scan: %s", scan_mode[(scan >> 5) & 7]);
}
if (mode != -1) {
if (mode & 8) printf(" winds(grid) ");
else printf(" winds(N/S) ");
}
}
}
#define START -1
static int user_center = 0, user_subcenter = 0, user_ptable = 0;
static enum {filled, not_found, not_checked, no_file, init} status = init;
struct ParmTable parm_table_user[256];
/*
* sets up user parameter table
* v1.1 12/2005 w. ebisuzaki
* v1.2 3/2007 w. ebisuzaki add FAST_GRIBTAB option
*/
int setup_user_table(int center, int subcenter, int ptable) {
int i, j, c0, c1, c2;
static FILE *input;
static int file_open = 0;
char *filename, line[300];
if (status == init) {
for (i = 0; i < 256; i++) {
parm_table_user[i].name = parm_table_user[i].comment = NULL;
}
status = not_checked;
}
if (status == no_file) return 0;
if ((user_center == -1 || center == user_center) &&
(user_subcenter == -1 || subcenter == user_subcenter) &&
(user_ptable == -1 || ptable == user_ptable)) {
if (status == filled) return 1;
if (status == not_found) return 0;
}
/* open gribtab file if not open */
if (!file_open) {
#ifdef FAST_GRIBTAB
filename = getenv("GRIBTAB");
#else
filename = getenv("GRIBTAB");
if (filename == NULL) filename = getenv("gribtab");
if (filename == NULL) filename = "gribtab";
#endif
if (filename == NULL || (input = fopen(filename,"r")) == NULL) {
status = no_file;
return 0;
}
file_open = 1;
}
else {
rewind(input);
}
user_center = center;
user_subcenter = subcenter;
user_ptable = ptable;
/* scan for center & subcenter and ptable */
for (;;) {
if (fgets(line, 299, input) == NULL) {
status = not_found;
return 0;
}
if (atoi(line) != START) continue;
i = sscanf(line,"%d:%d:%d:%d", &j, ¢er, &subcenter, &ptable);
if (i != 4) {
fprintf(stderr,"illegal gribtab center/subcenter/ptable line: %s\n", line);
continue;
}
if ((center == -1 || center == user_center) &&
(subcenter == -1 || subcenter == user_subcenter) &&
(ptable == -1 || ptable == user_ptable)) break;
}
user_center = center;
user_subcenter = subcenter;
user_ptable = ptable;
/* free any used memory */
for (i = 0; i < 256; i++) {
if (parm_table_user[i].name != NULL) free(parm_table_user[i].name);
if (parm_table_user[i].comment != NULL) free(parm_table_user[i].comment);
parm_table_user[i].name = parm_table_user[i].comment = NULL;
}
/* read definitions */
for (;;) {
if (fgets(line, 299, input) == NULL) break;
if ((i = atoi(line)) == START) break;
line[299] = 0;
/* find the colons and end-of-line */
for (c0 = 0; line[c0] != ':' && line[c0] != 0; c0++) ;
/* skip blank lines */
if (line[c0] == 0) continue;
for (c1 = c0 + 1; line[c1] != ':' && line[c1] != 0; c1++) ;
c2 = strlen(line);
if (line[c2-1] == '\n') line[--c2] = '\0';
if (c2 <= c1) {
fprintf(stderr,"illegal gribtab line:%s\n", line);
continue;
}
line[c0] = 0;
line[c1] = 0;
parm_table_user[i].name = (char *) malloc(c1 - c0);
parm_table_user[i].comment = (char *) malloc(c2 - c1);
strcpy(parm_table_user[i].name, line+c0+1);
strcpy(parm_table_user[i].comment, line+c1+1);
}
/* now to fill in undefined blanks */
for (i = 0; i < 255; i++) {
if (parm_table_user[i].name == NULL) {
parm_table_user[i].name = (char *) malloc(7);
sprintf(parm_table_user[i].name, "var%d", i);
parm_table_user[i].comment = (char *) malloc(strlen("undefined")+1);
strcpy(parm_table_user[i].comment, "undefined");
}
}
status = filled;
return 1;
}
/*
* PDS_date.c v1.2 wesley ebisuzaki
*
* prints a string with a date code
*
* PDS_date(pds,option, v_time)
* options=0 .. 2 digit year
* options=1 .. 4 digit year
*
* v_time=0 .. initial time
* v_time=1 .. verification time
*
* assumption: P1 and P2 are unsigned integers (not clear from doc)
*
* v1.2 years that are multiple of 400 are leap years, not 500
* v1.2.1 make the change to the source code for v1.2
* v1.2.2 add 3/6/12 hour forecast time units
* v1.2.3 Jan 31 + 1 month => Feb 31 .. change to Feb 28/29
*/
static int msg_count = 0;
extern int minute;
int PDS_date(unsigned char *pds, int option, int v_time) {
int year, month, day, hour, min;
if (v_time == 0) {
year = PDS_Year4(pds);
month = PDS_Month(pds);
day = PDS_Day(pds);
hour = PDS_Hour(pds);
}
else {
if (verf_time(pds, &year, &month, &day, &hour) != 0) {
if (msg_count++ < 5) fprintf(stderr, "PDS_date: problem\n");
}
}
min = PDS_Minute(pds);
switch(option) {
case 0:
printf("%2.2d%2.2d%2.2d%2.2d", year % 100, month, day, hour);
if (minute) printf("-%2.2d", min);
break;
case 1:
printf("%4.4d%2.2d%2.2d%2.2d", year, month, day, hour);
if (minute) printf("-%2.2d", min);
break;
default:
fprintf(stderr,"missing code\n");
exit(8);
}
return 0;
}
#define FEB29 (31+29)
static int monthjday[13] = {
0,31,59,90,120,151,181,212,243,273,304,334,365};
static int leap(int year) {
if (year % 4 != 0) return 0;
if (year % 100 != 0) return 1;
return (year % 400 == 0);
}
int add_time(int *year, int *month, int *day, int *hour, int dtime, int unit) {
int y, m, d, h, jday, i, days_in_month;
y = *year;
m = *month;
d = *day;
h = *hour;
if (unit == YEAR) {
*year = y + dtime;
return 0;
}
if (unit == DECADE) {
*year = y + (10 * dtime);
return 0;
}
if (unit == CENTURY) {
*year = y + (100 * dtime);
return 0;
}
if (unit == NORMAL) {
*year = y + (30 * dtime);
return 0;
}
if (unit == MONTH) {
if (dtime < 0) {
i = (-dtime) / 12 + 1;
y -= i;
dtime += (i * 12);
}
dtime += (m - 1);
*year = y = y + (dtime / 12);
*month = m = 1 + (dtime % 12);
/* check if date code if valid */
days_in_month = monthjday[m] - monthjday[m-1];
if (m == 2 && leap(y)) {
days_in_month++;
}
if (days_in_month < d) *day = days_in_month;
return 0;
}
if (unit == SECOND) {
dtime /= 60;
unit = MINUTE;
}
if (unit == MINUTE) {
dtime /= 60;
unit = HOUR;
}
if (unit == HOURS3) {
dtime *= 3;
unit = HOUR;
}
else if (unit == HOURS6) {
dtime *= 6;
unit = HOUR;
}
else if (unit == HOURS12) {
dtime *= 12;
unit = HOUR;
}
if (unit == HOUR) {
dtime += h;
*hour = dtime % 24;
dtime = dtime / 24;
if (*hour < 0) {
*hour += 24;
dtime--;
}
unit = DAY;
}
/* this is the hard part */
if (unit == DAY) {
/* set m and day to Jan 0, and readjust dtime */
jday = d + monthjday[m-1];
if (leap(y) && m > 2) jday++;
dtime += jday;
while (dtime < 1) {
y--;
dtime += 365 + leap(y);
}
/* one year chunks */
while (dtime > 365 + leap(y)) {
dtime -= (365 + leap(y));
y++;
}
/* calculate the month and day */
if (leap(y) && dtime == FEB29) {
m = 2;
d = 29;
}
else {
if (leap(y) && dtime > FEB29) dtime--;
for (i = 11; monthjday[i] >= dtime; --i);
m = i + 1;
d = dtime - monthjday[i];
}
*year = y;
*month = m;
*day = d;
return 0;
}
fprintf(stderr,"add_time: undefined time unit %d\n", unit);
return 1;
}
/*
* verf_time:
*
* this routine returns the "verification" time
* should have behavior similar to gribmap
*
*/
int verf_time(unsigned char *pds, int *year, int *month, int *day, int *hour) {
int tr, dtime, unit;
*year = PDS_Year4(pds);
*month = PDS_Month(pds);
*day = PDS_Day(pds);
*hour = PDS_Hour(pds);
/* find time increment */
dtime = PDS_P1(pds);
tr = PDS_TimeRange(pds);
unit = PDS_ForecastTimeUnit(pds);
if (tr == 10) dtime = PDS_P1(pds) * 256 + PDS_P2(pds);
if (tr > 1 && tr < 6 ) dtime = PDS_P2(pds);
if (tr == 6 || tr == 7) dtime = - PDS_P1(pds);
if (dtime == 0) return 0;
return add_time(year, month, day, hour, dtime, unit);
}
/*
* ensemble.c v0.1 wesley ebisuzaki
*
* prints ensemble meta-data
*
* only for NCEP and ECMWF
*
* output format:
*
* ECMWF
* ens=n/N: n: 0=ctl, +/-ve
* N: total number of members
*
* NCEP
* ens=n/type: n: 0=ctl, +/-ve, CLUST, PROD/
* type: Mn, WtdMn, SDev, NSDev
*
* updated 8/06 w. ebisuzaki
*/
extern int ncep_ens;
void ensemble(unsigned char *pds, int mode) {
int pdslen;
unsigned char ctmp;
char char_end;
pdslen = PDS_LEN(pds);
char_end = mode == 2 ? ' ' : ':';
if ((PDS_Center(pds) == NMC || ncep_ens) && pdslen >= 45 && pds[40] == 1) {
/* control run */
if (pds[41] == 1) {
if (mode != 2) {
printf("ens%c0:%c", pds[42] == 1 ? '+' : '-', char_end);
}
else {
printf("%s-res_ens_control ", pds[42] == 1 ? "hi" : "low");
}
}
/* perturbation run */
else if (pds[41] == 2 || pds[41] == 3) {
if (mode != 2) {
printf("ens%c%d%c", pds[41] == 3 ? '+' : '-', pds[42],char_end);
}
else {
printf("ens_perturbation=%c%d ",pds[41] == 3 ? '+' : '-',
pds[42]);
}
}
/* cluster mean */
else if (pds[41] == 4) {
if (mode != 2) printf("cluster%c", char_end);
else printf("cluster(%d members) ",pds[60]);
}
/* ensemble mean */
else if (pds[41] == 5) {
if (mode != 2) printf("ensemble%c", char_end);
else printf("ensemble(%d members) ",pds[60]);
}
/* other case .. debug code */
else {
printf("ens %d/%d/%d/%d%c", pds[41],pds[42],pds[43],pds[44],char_end);
}
if (pdslen >= 44) {
if (pds[43] == 1 && pds[41] >= 4) printf("mean%c", char_end);
else if (pds[43] == 2) printf("weighted mean%c",char_end);
else if (pds[43] == 3) printf("no bias%c",char_end);
else if (pds[43] == 4) printf("weighted mean no bias%c",char_end);
else if (pds[43] == 5) printf("weight%c",char_end);
else if (pds[43] == 6) printf("climate percentile%c",char_end);
else if (pds[43] == 7) printf("daily climate mean%c",char_end);
else if (pds[43] == 8) printf("daily climate std dev%c",char_end);
else if (pds[43] == 11) printf("std dev%c",char_end);
else if (pds[43] == 12) printf("norm std dev%c",char_end);
else if (pds[43] == 21) printf("max val%c",char_end);
else if (pds[43] == 22) printf("min val%c",char_end);
}
/* NCEP probability limits */
if ((PDS_PARAM(pds) == 191 || PDS_PARAM(pds) == 192) && pdslen >= 47) {
ctmp = PDS_PARAM(pds);
PDS_PARAM(pds) = pds[45];
if (pds[46] == 1 && pdslen >= 51) {
printf("prob(%s<%f)%c", k5toa(pds), ibm2flt(pds+47),char_end);
}
else if (pds[46] == 2 && pdslen >= 54) {
printf("prob(%s>%f)%c", k5toa(pds), ibm2flt(pds+51), char_end);
}
else if (pds[46] == 3 && pdslen >= 54) {
printf("prob(%f<%s<%f)%c", ibm2flt(pds+47), k5toa(pds),
ibm2flt(pds+51), char_end);
}
PDS_PARAM(pds) = ctmp;
}
}
}
/*
* GRIB table 2 at DWD
* Helmut P. Frank, 30.08.2001
* updated 24.07.2003: PMSL, DD, FF, W, FR_ICE, H_ICE
* updated 28.11.2005: H_SNOW
*/
const struct ParmTable parm_table_dwd_002[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"PS", "pressure [Pa]"},
/* 2 */ {"PMSL", "pressure reduced to MSL [Pa]"},
/* 3 */ {"DPSDT", "pressure tendency [Pa/s]"},
/* 4 */ {"var4", "undefined"},
/* 5 */ {"var5", "undefined"},
/* 6 */ {"FI", "geopotential [(m**2)/(s**2)]"},
/* 7 */ {"geopot h", "geopotential height [gpm]"},
/* 8 */ {"HH", "geometrical height [m]"},
/* 9 */ {"dev of h", "standard deviation of height [m]"},
/* 10 */ {"TO3", "total ozone [Dobson Units]"},
/* 11 */ {"T", "temperature [K]"},
/* 12 */ {"virt.temp.", "virtual temperature [K]"},
/* 13 */ {"pot. temp.", "potential temperature [K]"},
/* 14 */ {"pseudo-pot", "pseudo-adiabatic potential temperature [K]"},
/* 15 */ {"TMAX", "maximum temperature [K]"},
/* 16 */ {"TMIN", "minimum temperature [K]"},
/* 17 */ {"TD", "dew-point temperature [K]"},
/* 18 */ {"dew-pnt de", "dew-point depression (or deficit) [K]"},
/* 19 */ {"lapse rate", "laps rate [K/m]"},
/* 20 */ {"visibility", "visibility [m]"},
/* 21 */ {"radar sp 1", "radar spectra (1) [non-dim]"},
/* 22 */ {"radar sp 2", "radar spectra (2) [non-dim]"},
/* 23 */ {"radar sp 3", "radar spectra (3) [non-dim]"},
/* 24 */ {"pli to 500", "parcel lifted index (to 500 hPa) [K]"},
/* 25 */ {"temp anom", "temperature anomaly [K]"},
/* 26 */ {"pres anom", "pressure anomaly [Pa]"},
/* 27 */ {"geop anom", "geopotential height anomaly [gpm]"},
/* 28 */ {"wave sp 1", "wave spaectra(1) [non-dim]"},
/* 29 */ {"wave sp 2", "wave spaectra(2) [non-dim]"},
/* 30 */ {"wave sp 3", "wave spaectra(3) [non-dim]"},
/* 31 */ {"DD", "wind direction [degree true]"},
/* 32 */ {"FF", "wind speed [m/s]"},
/* 33 */ {"U", "u-component (zonal) of wind [m/s]"},
/* 34 */ {"V", "v-component (merdional) of wind [m/s]"},
/* 35 */ {"stream fun", "stream function [(m**2)/s]"},
/* 36 */ {"vel potent", "velocity potential [(m**2)/s]"},
/* 37 */ {"M.stream f", "Montgomery stream function [(m**2)/(s**2)]"},
/* 38 */ {"sigma vert", "sigma co-ordinate vertical velocity [1/s]"},
/* 39 */ {"OMEGA", "vertical velocity [Pa/s]"},
/* 40 */ {"W", "vertical velocity [m/s]"},
/* 41 */ {"abs vortic", "absolute vorticity [1/s]"},
/* 42 */ {"abs diverg", "absolute divergence [1/s]"},
/* 43 */ {"rel vortic", "relative vorticity [1/s]"},
/* 44 */ {"rel diverg", "relative divergence [1/s]"},
/* 45 */ {"vert.u-shr", "vertical u-component shear [1/s]"},
/* 46 */ {"vert.v-shr", "vertical v-component shear [1/s]"},
/* 47 */ {"dir of cur", "direction of current [degree true]"},
/* 48 */ {"spd of cur", "speed of current [m/s]"},
/* 49 */ {"currcomp U", "u-component of current [m/s]"},
/* 50 */ {"currcomp V", "v-component of current [m/s]"},
/* 51 */ {"QV", "specific humidity [kg/kg]"},
/* 52 */ {"RELHUM", "relative humidity [%]"},
/* 53 */ {"hum mixrat", "humidity mixing ratio [kg/kg]"},
/* 54 */ {"TQV", "total precipitable water [kg/m**2]"},
/* 55 */ {"vapor pres", "vapor pressure [Pa]"},
/* 56 */ {"sat.defic.", "saturation deficit [Pa]"},
/* 57 */ {"AEVAP_S", "evaporation [kg/(m**2)]"},
/* 58 */ {"TQI", "total cloud ice content [kg/m**2]"},
/* 59 */ {"prec. rate", "precipitation rate [kg/((m**2)*s)]"},
/* 60 */ {"thunderst.", "thunderstorm probability [%]"},
/* 61 */ {"TOT_PREC", "total precipitation [kg/(m**2)]"},
/* 62 */ {"PREC_GSP", "large scale precipitation [kg/(m**2)]"},
/* 63 */ {"PREC_CON", "convective precipitation [kg/(m**2)]"},
/* 64 */ {"snowf.rate", "snowfall rate water equivalent [kg/((m**2)*s)]"},
/* 65 */ {"W_SNOW", "water equivalent of accumulated snow depth [kg/(m**2)]"},
/* 66 */ {"H_SNOW", "snow depth [m]"},
/* 67 */ {"mix lay de", "mixed layer depth [m]"},
/* 68 */ {"tr therm d", "transient thermocline depth [m]"},
/* 69 */ {"ma therm d", "main thermocline depth [m]"},
/* 70 */ {"m therm da", "main thermocline depth anomaly [m]"},
/* 71 */ {"CLCT", "total cloud cover [%]"},
/* 72 */ {"CLC_CON", "convective cloud cover [%]"},
/* 73 */ {"CLCL", "low cloud cover [%]"},
/* 74 */ {"CLCM", "medium cloud cover [%]"},
/* 75 */ {"CLCH", "high cloud cover [%]"},
/* 76 */ {"TQC", "total cloud water content [kg/m**2]"},
/* 77 */ {"bli to 500", "best lifted index (to 500 hPa) [K]"},
/* 78 */ {"SNOW_CON", "convective snow [kg/(m**2)]"},
/* 79 */ {"SNOW_GSP", "large scale snow [kg/(m**2)]"},
/* 80 */ {"water temp", "water temperature [K]"},
/* 81 */ {"FR_LAND", "land cover (1=land, 0=sea) [1]"},
/* 82 */ {"dev sea-le", "deviation of sea-level from mean [m]"},
/* 83 */ {"Z0", "surface roughness [m]"},
/* 84 */ {"ALB_RAD", "albedo [%]"},
/* 85 */ {"T_soil", "soil temperature [K]"},
/* 86 */ {"W_soil", "soil moisture content [kg/(m**2)]"},
/* 87 */ {"PLCOV", "vegetation (plant cover) [%]"},
/* 88 */ {"salinity", "salinity [kg/kg]"},
/* 89 */ {"density", "density [kg/(m**3)]"},
/* 90 */ {"RUNOFF", "water run-off [kg/(m**2)]"},
/* 91 */ {"FR_ICE", "ice cover (1=ice, 0=no ice) [1]"},
/* 92 */ {"H_ICE", "ice thickness [m]"},
/* 93 */ {"dir ice dr", "direction of ice drift [degree true]"},
/* 94 */ {"sp ice dr", "speed of ice drift [m/s]"},
/* 95 */ {"ice dr u", "u-component of ice drift [m/s]"},
/* 96 */ {"ice dr v", "v-component of ice drift [m/s]"},
/* 97 */ {"ice growth", "ice growth rate [m/s]"},
/* 98 */ {"ice diverg", "ice divergence [1/s]"},
/* 99 */ {"snow melt", "snow melt [kg/(m**2)]"},
/* 100 */ {"winwav/swe", "significant height of comb. wind waves and swell [m]"},
/* 101 */ {"dir of wav", "direction of wind waves [degree true]"},
/* 102 */ {"hei of wav", "significant height of wind waves [m]"},
/* 103 */ {"MP of wiwa", "mean period of wind waves [s]"},
/* 104 */ {"dir of swe", "direction of swell [degree true]"},
/* 105 */ {"hei of swe", "significant height of swell [m]"},
/* 106 */ {"MP of swel", "mean period of swell [s]"},
/* 107 */ {"pr wave di", "primary wave direction [degree true]"},
/* 108 */ {"pr wave pe", "primary wave period [s]"},
/* 109 */ {"se wave di", "secondary wave direction [degree true]"},
/* 110 */ {"se wave pe", "secondary wave period [s]"},
/* 111 */ {"ASOB_S", "net short-wave radiation (surface) [W/(m**2)]"},
/* 112 */ {"ATHB_S", "net long-wave radiation (surface) [W/(m**2)]"},
/* 113 */ {"ASOB_T", "net short-wave radiation (top of atmosphere) [W/(m**2)]"},
/* 114 */ {"ATHB_T", "net long-wave radiation (top of atmosphere) [W/(m**2)]"},
/* 115 */ {"l-w rad.", "long-wave radiation [W/(m**2)]"},
/* 116 */ {"s-w rad.", "short-wave radiation [W/(m**2)]"},
/* 117 */ {"global rad", "global radiation [W/(m**2)]"},
/* 118 */ {"var118", "undefined"},
/* 119 */ {"var119", "undefined"},
/* 120 */ {"var120", "undefined"},
/* 121 */ {"ALHFL_S", "latent heat flux [W/(m**2)]"},
/* 122 */ {"ASHFL_S", "sensible heat flux [W/(m**2)]"},
/* 123 */ {"bound l di", "boundary layer dissipation [W/(m**2)]"},
/* 124 */ {"AUMFL_S", "momentum flux, u component [N/(m**2)]"},
/* 125 */ {"AVMFL_S", "momentum flux, v component [N/(m**2)]"},
/* 126 */ {"wind mix e", "wind mixing energy [J]"},
/* 127 */ {"image data", "image data []"},
/* 128 */ {"var128", "undefined"},
/* 129 */ {"geopot h", "geopotential height (ECMF) [gpm]"},
/* 130 */ {"temperatur", "temperature (ECMF) [K]"},
/* 131 */ {"wind compU", "u-component of wind (ECMF) [m/s]"},
/* 132 */ {"wind compV", "v-component of wind (ECMF) [m/s]"},
/* 133 */ {"var133", "undefined"},
/* 134 */ {"var134", "undefined"},
/* 135 */ {"var135", "undefined"},
/* 136 */ {"var136", "undefined"},
/* 137 */ {"var137", "undefined"},
/* 138 */ {"var138", "undefined"},
/* 139 */ {"soil temp.", "soil temperature (ECMF) [K]"},
/* 140 */ {"var140", "undefined"},
/* 141 */ {"var141", "undefined"},
/* 142 */ {"ls precip.", "large scale precipitation (ECMF) [kg/(m**2)]"},
/* 143 */ {"conv prec.", "convective precipitation (ECMF) [kg/(m**2)]"},
/* 144 */ {"snowfall", "snowfall (ECMF) [m of water equivalent]"},
/* 145 */ {"var145", "undefined"},
/* 146 */ {"var146", "undefined"},
/* 147 */ {"var147", "undefined"},
/* 148 */ {"var148", "undefined"},
/* 149 */ {"var149", "undefined"},
/* 150 */ {"var150", "undefined"},
/* 151 */ {"pressure", "pressure reduced to MSL (ECMF) [Pa]"},
/* 152 */ {"var152", "undefined"},
/* 153 */ {"var153", "undefined"},
/* 154 */ {"var154", "undefined"},
/* 155 */ {"var155", "undefined"},
/* 156 */ {"geopot h", "geopotential height (ECMF) [gpm]"},
/* 157 */ {"rel. humid", "relative humidity (ECMF) [%]"},
/* 158 */ {"var158", "undefined"},
/* 159 */ {"var159", "undefined"},
/* 160 */ {"var160", "undefined"},
/* 161 */ {"var161", "undefined"},
/* 162 */ {"var162", "undefined"},
/* 163 */ {"var163", "undefined"},
/* 164 */ {"cloud cov.", "total cloud cover (ECMF) [%]"},
/* 165 */ {"10m-wind U", "u-component of 10m-wind (ECMF) [m/s]"},
/* 166 */ {"10m-wind V", "v-component of 10m-wind (ECMF) [m/s]"},
/* 167 */ {"2m temper", "2m temperature (ECMF) [K]"},
/* 168 */ {"2m due-p.", "2m due-point temperature (ECMF) [K]"},
/* 169 */ {"var169", "undefined"},
/* 170 */ {"var170", "undefined"},
/* 171 */ {"var171", "undefined"},
/* 172 */ {"var172", "undefined"},
/* 173 */ {"var173", "undefined"},
/* 174 */ {"var174", "undefined"},
/* 175 */ {"var175", "undefined"},
/* 176 */ {"var176", "undefined"},
/* 177 */ {"var177", "undefined"},
/* 178 */ {"var178", "undefined"},
/* 179 */ {"var179", "undefined"},
/* 180 */ {"var180", "undefined"},
/* 181 */ {"var181", "undefined"},
/* 182 */ {"var182", "undefined"},
/* 183 */ {"var183", "undefined"},
/* 184 */ {"var184", "undefined"},
/* 185 */ {"var185", "undefined"},
/* 186 */ {"var186", "undefined"},
/* 187 */ {"var187", "undefined"},
/* 188 */ {"var188", "undefined"},
/* 189 */ {"var189", "undefined"},
/* 190 */ {"var190", "undefined"},
/* 191 */ {"var191", "undefined"},
/* 192 */ {"var192", "undefined"},
/* 193 */ {"var193", "undefined"},
/* 194 */ {"var194", "undefined"},
/* 195 */ {"var195", "undefined"},
/* 196 */ {"var196", "undefined"},
/* 197 */ {"var197", "undefined"},
/* 198 */ {"var198", "undefined"},
/* 199 */ {"var199", "undefined"},
/* 200 */ {"var200", "undefined"},
/* 201 */ {"var201", "undefined"},
/* 202 */ {"var202", "undefined"},
/* 203 */ {"var203", "undefined"},
/* 204 */ {"var204", "undefined"},
/* 205 */ {"var205", "undefined"},
/* 206 */ {"var206", "undefined"},
/* 207 */ {"var207", "undefined"},
/* 208 */ {"var208", "undefined"},
/* 209 */ {"var209", "undefined"},
/* 210 */ {"var210", "undefined"},
/* 211 */ {"var211", "undefined"},
/* 212 */ {"var212", "undefined"},
/* 213 */ {"var213", "undefined"},
/* 214 */ {"var214", "undefined"},
/* 215 */ {"var215", "undefined"},
/* 216 */ {"var216", "undefined"},
/* 217 */ {"var217", "undefined"},
/* 218 */ {"var218", "undefined"},
/* 219 */ {"var219", "undefined"},
/* 220 */ {"var220", "undefined"},
/* 221 */ {"var221", "undefined"},
/* 222 */ {"var222", "undefined"},
/* 223 */ {"var223", "undefined"},
/* 224 */ {"var224", "undefined"},
/* 225 */ {"var225", "undefined"},
/* 226 */ {"var226", "undefined"},
/* 227 */ {"var227", "undefined"},
/* 228 */ {"total prec", "total precipitation (ECMF) [m]"},
/* 229 */ {"seaway 01", "seaway 01 (ECMF) []"},
/* 230 */ {"seaway 02", "seaway 02 (ECMF) []"},
/* 231 */ {"seaway 03", "seaway 03 (ECMF) []"},
/* 232 */ {"seaway 04", "seaway 04 (ECMF) []"},
/* 233 */ {"seaway 05", "seaway 05 (ECMF) []"},
/* 234 */ {"seaway 06", "seaway 06 (ECMF) []"},
/* 235 */ {"seaway 07", "seaway 07 (ECMF) []"},
/* 236 */ {"seaway 08", "seaway 08 (ECMF) []"},
/* 237 */ {"seaway 09", "seaway 09 (ECMF) []"},
/* 238 */ {"seaway 10", "seaway 10 (ECMF) []"},
/* 239 */ {"seaway 11", "seaway 11 (ECMF) []"},
/* 240 */ {"var240", "undefined"},
/* 241 */ {"var241", "undefined"},
/* 242 */ {"var242", "undefined"},
/* 243 */ {"var243", "undefined"},
/* 244 */ {"var244", "undefined"},
/* 245 */ {"var245", "undefined"},
/* 246 */ {"var246", "undefined"},
/* 247 */ {"var247", "undefined"},
/* 248 */ {"var248", "undefined"},
/* 249 */ {"var249", "undefined"},
/* 250 */ {"var250", "undefined"},
/* 251 */ {"var251", "undefined"},
/* 252 */ {"var252", "undefined"},
/* 253 */ {"var253", "undefined"},
/* 254 */ {"var254", "undefined"},
/* 255 */ {"var255", "undefined"},
};
/*
* GRIB table 201 at DWD
* Helmut P. Frank, 30.08.2001
* updated 24.07.2003: DQC_GSP, DQI_GSP, T_SO, W_SO, W_SO_ICE, T_ICE
* 19.10.2005: SOTR_RA, QRS_GSP, RHO_SNOW to table 201, and others
*/
const struct ParmTable parm_table_dwd_201[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"dw sw flux", "downward shortwave radiant flux density [W/m**2]"},
/* 2 */ {"uw sw flux", "upward shortwave radiant flux density [W/m**2]"},
/* 3 */ {"dw lw flux", "downward longwave radiant flux density [W/m**2]"},
/* 4 */ {"uw lw flux", "upward longwave radiant flux density [W/m**2]"},
/* 5 */ {"APAB_S", "downwd photosynthetic active radiant flux density [W/m**2]"},
/* 6 */ {"net s flux", "net shortwave flux [W/m**2]"},
/* 7 */ {"net l flux", "net longwave flux [W/m**2]"},
/* 8 */ {"net flux", "total net radiative flux density [W/m**2]"},
/* 9 */ {"dw sw clfr", "downw shortw radiant flux density, cloudfree part [W/m**2]"},
/* 10 */ {"uw sw cldy", "upw shortw radiant flux density, cloudy part [W/m**2]"},
/* 11 */ {"dw lw clfr", "downw longw radiant flux density, cloudfree part [W/m**2]"},
/* 12 */ {"uw lw cldy", "upw longw radiant flux density, cloudy part [W/m**2]"},
/* 13 */ {"SOHR_RAD", "shortwave radiative heating rate [K/s]"},
/* 14 */ {"THHR_RAD", "longwave radiative heating rate [K/s]"},
/* 15 */ {"rad heat", "total radiative heating rate [K/s]"},
/* 16 */ {"soilheat S", "soil heat flux, surface [W/m**2]"},
/* 17 */ {"soilheat L", "soil heat flux, bottom of layer [W/m**2]"},
/* 18 */ {"var18", "undefined"},
/* 19 */ {"var19", "undefined"},
/* 20 */ {"var20", "undefined"},
/* 21 */ {"var21", "undefined"},
/* 22 */ {"var22", "undefined"},
/* 23 */ {"var23", "undefined"},
/* 24 */ {"var24", "undefined"},
/* 25 */ {"var25", "undefined"},
/* 26 */ {"var26", "undefined"},
/* 27 */ {"var27", "undefined"},
/* 28 */ {"var28", "undefined"},
/* 29 */ {"CLC", "cloud cover, grid scale + convective [1]"},
/* 30 */ {"clc gr sc", "cloud cover, grid scale (0...1) [1]"},
/* 31 */ {"QC", "specific cloud water content, grid scale [kg/kg]"},
/* 32 */ {"clw gs vi", "cloud water content, grid scale, vert integrated [kg/m**2]"},
/* 33 */ {"QI", "specific cloud ice content, grid scale [kg/kg]"},
/* 34 */ {"cli gs vi", "cloud ice content, grid scale, vert integrated [kg/m**2]"},
/* 35 */ {"QR", "specific rainwater content, grid scale [kg/kg]"},
/* 36 */ {"QS", "specific snow content, grid scale [kg/kg]"},
/* 37 */ {"src gs vi", "specific rainwater content, gs, vert. integrated [kg/m**2]"},
/* 38 */ {"ssc gs vi", "specific snow content, gs, vert. integrated [kg/m**2]"},
/* 39 */ {"QG", "specific graupel content, grid scale [kg/kg]"},
/* 40 */ {"var40", "undefined"},
/* 41 */ {"TWATER", "vert. integral of humidity, cloud water (and ice) [kg/(m**2)]"},
/* 42 */ {"TDIV_HUM", "vert. integral of divergence of tot. water content [kg/(m**2)]"},
/* 43 */ {"var43", "undefined"},
/* 44 */ {"var44", "undefined"},
/* 45 */ {"var45", "undefined"},
/* 46 */ {"var46", "undefined"},
/* 47 */ {"var47", "undefined"},
/* 48 */ {"var48", "undefined"},
/* 49 */ {"var49", "undefined"},
/* 50 */ {"CH_CM_CL", "cloud covers CH_CM_CL (000...888) [1]"},
/* 51 */ {"cl cov. CH", "cloud cover CH (0..8) [1]"},
/* 52 */ {"cl cov. CM", "cloud cover CM (0..8) [1]"},
/* 53 */ {"cl cov. CL", "cloud cover CL (0..8) [1]"},
/* 54 */ {"cloud cov.", "total cloud cover (0..8) [1]"},
/* 55 */ {"fog", "fog (0..8) [1]"},
/* 56 */ {"fog", "fog [1]"},
/* 57 */ {"var57", "undefined"},
/* 58 */ {"var58", "undefined"},
/* 59 */ {"var59", "undefined"},
/* 60 */ {"clc con ci", "cloud cover, convective cirrus (0...1) [1]"},
/* 61 */ {"CLW_CON", "specific cloud water content, convective clouds [kg/kg]"},
/* 62 */ {"clw con vi", "cloud water content, conv clouds, vert integrated [kg/m**2]"},
/* 63 */ {"cli con", "specific cloud ice content, convective clouds [kg/kg]"},
/* 64 */ {"cli con vi", "cloud ice content, conv clouds, vert integrated [kg/m**2]"},
/* 65 */ {"mass fl co", "convective mass flux [kg/(s*m**2)]"},
/* 66 */ {"upd vel co", "updraft velocity, convection [m/s]"},
/* 67 */ {"entr p co", "entrainment parameter, convection [m**(-1)]"},
/* 68 */ {"HBAS_CON", "cloud base, convective clouds (above msl) [m]"},
/* 69 */ {"HTOP_CON", "cloud top, convective clouds (above msl) [m]"},
/* 70 */ {"con layers", "convective layers (00...77) (BKE) [1]"},
/* 71 */ {"KO-index", "KO-index [1]"},
/* 72 */ {"BAS_CON", "convection base index [1]"},
/* 73 */ {"TOP_CON", "convection top index [1]"},
/* 74 */ {"DT_CON", "convective temperature tendency [K/s]"},
/* 75 */ {"DQV_CON", "convective tendency of specific humidity [s**(-1)]"},
/* 76 */ {"H ten co", "convective tendency of total heat [J/(kg*s)]"},
/* 77 */ {"QDW ten co", "convective tendency of total water [s**(-1)]"},
/* 78 */ {"DU_CON", "convective momentum tendency (X-component) [m/s**2]"},
/* 79 */ {"DV_CON", "convective momentum tendency (Y-component) [m/s**2]"},
/* 80 */ {"vor ten co", "convective vorticity tendency [s**(-2)]"},
/* 81 */ {"div ten co", "convective divergence tendency [s**(-2)]"},
/* 82 */ {"HTOP_DC", "top of dry convection (above msl) [m]"},
/* 83 */ {"top ind dc", "dry convection top index [1]"},
/* 84 */ {"HZEROCL", "height of 0 degree Celsius isotherm above msl [m]"},
/* 85 */ {"SNOWLMT", "height of snowfall limit above msl [m]"},
/* 86 */ {"var86", "undefined"},
/* 87 */ {"var87", "undefined"},
/* 88 */ {"var88", "undefined"},
/* 89 */ {"var89", "undefined"},
/* 90 */ {"var90", "undefined"},
/* 91 */ {"var91", "undefined"},
/* 92 */ {"var92", "undefined"},
/* 93 */ {"var93", "undefined"},
/* 94 */ {"var94", "undefined"},
/* 95 */ {"var95", "undefined"},
/* 96 */ {"var96", "undefined"},
/* 97 */ {"var97", "undefined"},
/* 98 */ {"var98", "undefined"},
/* 99 */ {"QRS_GSP", "spec water cont of rain/snow needed for w loading [kg/kg]"},
/* 100 */ {"PRR_GSP", "surface precipitation rate, rain, grid scale [kg/(s*m**2)]"},
/* 101 */ {"PRS_GSP", "surface precipitation rate, snow, grid scale [kg/(s*m**2)]"},
/* 102 */ {"RAIN_GSP", "surface precipitation amount, rain, grid scale [kg/m**2]"},
/* 103 */ {"condens gs", "condensation rate, grid scale [kg/(kg*s)]"},
/* 104 */ {"autocon gs", "autoconversion rate, grid scale (C+C --> R) [kg/(kg*s)]"},
/* 105 */ {"accret gs", "accretion rate, grid scale (R+C --> R) [kg/(kg*s)]"},
/* 106 */ {"nucleat gs", "nucleation rate, grid scale (C+C --> S) [kg/(kg*s)]"},
/* 107 */ {"riming gs", "riming rate, grid scale (S+C --> S) [kg/(kg*s)]"},
/* 108 */ {"deposit gs", "deposition rate, grid scale (S+V <--> S) [kg/(kg*s)]"},
/* 109 */ {"melting gs", "melting rate, grid scale (S --> R) [kg/(kg*s)]"},
/* 110 */ {"evapor gs", "evaporation rate, grid scale (R+V <-- R) [kg/(kg*s)]"},
/* 111 */ {"PRR_CON", "surface precipitation rate, rain, convective [kg/(s*m**2)]"},
/* 112 */ {"PRS_CON", "surface precipitation rate, snow, convective [kg/(s*m**2)]"},
/* 113 */ {"RAIN_CON", "surface precipitation amount, rain, convective [kg/m**2]"},
/* 114 */ {"condens co", "condensation rate, convective [kg/(kg*s)]"},
/* 115 */ {"autocon co", "autoconversion rate, convective [kg/(kg*s)]"},
/* 116 */ {"accret co", "accretion rate, convective [kg/(kg*s)]"},
/* 117 */ {"nucleat co", "nucleation rate, convective [kg/(kg*s)]"},
/* 118 */ {"riming co", "riming rate, convective [kg/(kg*s)]"},
/* 119 */ {"sublim co", "sublimation rate, convective [kg/(kg*s)]"},
/* 120 */ {"melting co", "melting rate, convective [kg/(kg*s)]"},
/* 121 */ {"evapor co", "evaporation rate, convective [kg/(kg*s)]"},
/* 122 */ {"rain am", "rain amount, grid-scale plus convective [kg/m**2]"},
/* 123 */ {"snow am", "snow amount, grid-scale plus convective [kg/m**2]"},
/* 124 */ {"DT_GSP", "temperature tendency, grid-scale condensation [K/s]"},
/* 125 */ {"DQV_GSP", "tendency of specific humidity, grid-scale condens [s**(-1)]"},
/* 126 */ {"H ten gs", "tendency of total heat, grid-scale condensation [J/(kg*s)]"},
/* 127 */ {"DQC_GSP", "tendency of total water, grid-scale condensation [s**(-1)]"},
/* 128 */ {"snowfall", "snowfall (dimension"},
/* 129 */ {"FRESHSNW", "fresh snow factor [1]"},
/* 130 */ {"DQI_GSP", "tend of the sp cl ice cont due to gs precipitation [kg/(kg*s)]"},
/* 131 */ {"PRG_GSP", "surface precipitation rate, graupel, grid scale [kg/(s*m**2)]"},
/* 132 */ {"GRAU_GSP", "surface precipitation amount, graupel, grid scale [kg/(m**2)]"},
/* 133 */ {"RHO_SNOW", "snow density [kg/m**3"},
/* 134 */ {"var134", "undefined"},
/* 135 */ {"var135", "undefined"},
/* 136 */ {"var136", "undefined"},
/* 137 */ {"var137", "undefined"},
/* 138 */ {"var138", "undefined"},
/* 139 */ {"PP", "deviation of pressure from reference value [Pa]"},
/* 140 */ {"var140", "undefined"},
/* 141 */ {"var141", "undefined"},
/* 142 */ {"var142", "undefined"},
/* 143 */ {"var143", "undefined"},
/* 144 */ {"var144", "undefined"},
/* 145 */ {"var145", "undefined"},
/* 146 */ {"var146", "undefined"},
/* 147 */ {"var147", "undefined"},
/* 148 */ {"var148", "undefined"},
/* 149 */ {"KE", "kinetic energy ((u**2 + v**2) / 2) [(m**2/s**2)]"},
/* 150 */ {"hdi coeff", "coefficient of horizontal diffusion [m**2/s]"},
/* 151 */ {"dissp rate", "dissipation rate [W/(Pa*m**2)]"},
/* 152 */ {"TKE", "turbulent kinetic energy [(m/s)**2]"},
/* 153 */ {"TKVM", "coefficient of vertical diffusion, momentum [m**2/s]"},
/* 154 */ {"TKVH", "coefficient of vertical diffusion, heat [m**2/s]"},
/* 155 */ {"vdi coe cw", "coefficient of vertical diffusion, cloud water [m**2/s]"},
/* 156 */ {"vdi coe ci", "coefficient of vertical diffusion, cloud ice [m**2/s]"},
/* 157 */ {"vdi coe vp", "coefficient of vertical diffusion, water vapour [m**2/s]"},
/* 158 */ {"dis len m", "turbulent dissipation length for momentum [m]"},
/* 159 */ {"dis len h", "turbulent dissipation length for heat [m]"},
/* 160 */ {"var u mom", "variance of u-component of momentum [(m/s)**2]"},
/* 161 */ {"var v mom", "variance of v-component of momentum [(m/s)**2]"},
/* 162 */ {"var w mom", "variance of w-component of momentum [(m/s)**2]"},
/* 163 */ {"var temp", "variance of temperature [K**2]"},
/* 164 */ {"var cl wat", "variance of specific cloud water content [(kg/kg)**2]"},
/* 165 */ {"var cl ice", "variance of specific cloud ice content [(kg/kg)**2]"},
/* 166 */ {"var vap mr", "variance of water vapour mixing ratio [(kg/kg)**2]"},
/* 167 */ {"c wat flux", "turbulent vertical flux of spec cloud water [m/s]"},
/* 168 */ {"c ice flux", "turbulent vertical flux of spec cloud ice [m/s]"},
/* 169 */ {"w vap flux", "turbulent vertical flux of water vapour mix ratio [m/s]"},
/* 170 */ {"TCM", "drag coefficient CD [1]"},
/* 171 */ {"TCH", "transfer coefficient CH (sensible heat) [1]"},
/* 172 */ {"tr coef CQ", "transfer coefficient CQ (latent heat) [1]"},
/* 173 */ {"PBL-top h", "PBL-top h [m]"},
/* 174 */ {"T-jump h", "temperature jump at PBL-top [K]"},
/* 175 */ {"q-jump h", "specific humidity jump at PBL-top [kg/kg]"},
/* 176 */ {"entr at h", "entrainment at PBL-top [kg/(s*m**2)]"},
/* 177 */ {"mass fl h", "upward mass flux at PBL-top [kg/(s*m**2)]"},
/* 178 */ {"cl cov PBL", "cloud cover of PBL-clouds (0...1) [1]"},
/* 179 */ {"cl wat PBL", "specific cloud water content of PBL-clouds [kg/kg]"},
/* 180 */ {"cl top PBL", "cloud top of PBL-clouds [m]"},
/* 181 */ {"cl bas PBL", "cloud base of PBL-clouds [m]"},
/* 182 */ {"moun wav X", "vertical mountain wave momentum flux (X component) [kg/(m*s**2)]"},
/* 183 */ {"moun wav Y", "vertical mountain wave momentum flux (Y component) [kg/(m*s**2)]"},
/* 184 */ {"wave Ri", "wave Richardson number [1]"},
/* 185 */ {"wav div X", "mountain wave momentum flux divergence (X comp) [m/s**2]"},
/* 186 */ {"wav div Y", "mountain wave momentum flux divergence (Y comp) [m/s**2]"},
/* 187 */ {"VMAX_10M", "maximum wind velocity [m/s]"},
/* 188 */ {"wav dis vi", "mountain wave dissipation, vert integrated [W/m**2]"},
/* 189 */ {"wv en flux", "vertical wave energy flux [kg*m/s**4]"},
/* 190 */ {"var190", "undefined"},
/* 191 */ {"var191", "undefined"},
/* 192 */ {"var192", "undefined"},
/* 193 */ {"var193", "undefined"},
/* 194 */ {"var194", "undefined"},
/* 195 */ {"var195", "undefined"},
/* 196 */ {"var196", "undefined"},
/* 197 */ {"T_SO", "temperature of soil layers [K]"},
/* 198 */ {"W_SO", "water + ice content of soil layers [kg/(m**2)]"},
/* 199 */ {"W_SO_ICE", "ice content of soil layers [kg/(m**2)]"},
/* 200 */ {"W_I", "water content of interception store [kg/(m**2)]"},
/* 201 */ {"interc ice", "icebit for interception store [1]"},
/* 202 */ {"snow fract", "snow fraction [1]"},
/* 203 */ {"T_SNOW", "snow temperature [K]"},
/* 204 */ {"foliag tem", "foliage temperature [K]"},
/* 205 */ {"infiltrat", "infiltration [m/s]"},
/* 206 */ {"runoff", "runoff [m/s]"},
/* 207 */ {"soil evap", "bare soil evaporation [m/s]"},
/* 208 */ {"plant tran", "plant transpiration [m/s]"},
/* 209 */ {"inter evap", "interception store evaporation [m/s]"},
/* 210 */ {"water evap", "evaporation from water surfaces [m/s]"},
/* 211 */ {"aero resis", "aerodynamic resistance [s/m]"},
/* 212 */ {"plant res", "plant resistance [s/m]"},
/* 213 */ {"soil res", "soil resistance [s/m]"},
/* 214 */ {"total evap", "total evaporation (water, soil, plants) [m/s]"},
/* 215 */ {"T_ICE", "temperature of sea ice [K]"},
/* 216 */ {"var216", "undefined"},
/* 217 */ {"max wind m", "maximum wind velocity (modified) [m/s]"},
/* 218 */ {"var218", "undefined"},
/* 219 */ {"var219", "undefined"},
/* 220 */ {"var220", "undefined"},
/* 221 */ {"var221", "undefined"},
/* 222 */ {"var222", "undefined"},
/* 223 */ {"var223", "undefined"},
/* 224 */ {"var224", "undefined"},
/* 225 */ {"var225", "undefined"},
/* 226 */ {"var226", "undefined"},
/* 227 */ {"var227", "undefined"},
/* 228 */ {"var228", "undefined"},
/* 229 */ {"var229", "undefined"},
/* 230 */ {"XYZ", "S1 [1]"},
/* 231 */ {"RHS_SI", "S2 [1]"},
/* 232 */ {"DTTDIV", "S3 [1]"},
/* 233 */ {"SOTR_RAD", "effective transmissivity of solar rad. [1]"},
/* 234 */ {"GEN_TEN1", "averaged tendencies [x/s]"},
/* 235 */ {"GEN_TEN2", "averaged tendencies [x/s]"},
/* 236 */ {"S7", "S7 [1]"},
/* 237 */ {"S8", "S8 [1]"},
/* 238 */ {"S9", "S9 [1]"},
/* 239 */ {"S10", "S10 [1]"},
/* 240 */ {"MFLX_CON", "cloud base mass flux kg/(s*m**2)"},
/* 241 */ {"CAPE_CON", "convective available potential energy [J/kg]"},
/* 242 */ {"QCVG_CON", "moisture convergence for Kuo-type closure [1/s]"},
/* 243 */ {"TKE_CON", "convective turbulent energy [J/kg]"},
/* 244 */ {"MOS pTS fq", "MOS Gewitter-Wahrscheinlichkeit (frequent) [1]"},
/* 245 */ {"MOS TS cov", "MOS Gewitteranteil (occasional - frequent (1 - 2)) [1]"},
/* 246 */ {"S17", "S17 [1]"},
/* 247 */ {"S18", "S18 [1]"},
/* 248 */ {"S19", "S19 [1]"},
/* 249 */ {"S20", "S20 [1]"},
/* 250 */ {"MOS TSISO1", "MOS Wahrscheinlichkeit mindestens ein Blitz [1]"},
/* 251 */ {"MOS TSISO2", "MOS Wahrscheinlichkeit mindestens zehn Blitze [1]"},
/* 252 */ {"MOS TSISO3", "MOS Wahrscheinlichkeit mindestens hundert Blitze [1]"},
/* 253 */ {"MOS TS DEN", "MOS Vorhersage der Blitzanzahl [1]"},
/* 254 */ {"MOS TS OCC", "MOS Gewitter-Wahrscheinlichkeit (occasional) [1]"},
/* 255 */ {"MOS TS FRQ", "MOS Gewitter-Wahrscheinlichkeit (frequent) [1]"},
};
/*
* GRIB table 202 at DWD
* Helmut P. Frank, 30.08.2001
* updated 24.07.2003: UV_Ind_F_h, BasicUV_IF, UV_Ind_W_h, UV_IndmaxF,
* "gesamt O3", UV_IndmaxW, "h UV_IndMx"
* 19.10.2005: AER_SEA, AER_LAN, AER_URB, AER_DES, and others
* 2.11.2005: Use RLAT, RLON instead of PHI, RLA.
*/
const struct ParmTable parm_table_dwd_202[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"Seeg_peak", "jonswap parameter fm [s**(-1)]"},
/* 2 */ {"Seeg_alpha", "jonswap parameter alpha [1]"},
/* 3 */ {"Seeg_gamma", "jonswap parameter gamma [1]"},
/* 4 */ {"Seeg_dir", "Seegang direction [degree true]"},
/* 5 */ {"Seeg_energ", "Seegang energy densitiy [(m**2)*(s**2)]"},
/* 6 */ {"Seeg_icemk", "Seegang ice mask [1]"},
/* 7 */ {"peak p sw", "peak period of swell [s]"},
/* 8 */ {"peak p ww", "peak period of wind waves [s]"},
/* 9 */ {"var9", "undefined"},
/* 10 */ {"var10", "undefined"},
/* 11 */ {"var11", "undefined"},
/* 12 */ {"var12", "undefined"},
/* 13 */ {"var13", "undefined"},
/* 14 */ {"var14", "undefined"},
/* 15 */ {"var15", "undefined"},
/* 16 */ {"var16", "undefined"},
/* 17 */ {"var17", "undefined"},
/* 18 */ {"var18", "undefined"},
/* 19 */ {"var19", "undefined"},
/* 20 */ {"Var. Geop.", "Varianz Geopotential [(m/s)**4]"},
/* 21 */ {"Var. T", "Varianz Temperatur [K**2]"},
/* 22 */ {"Var. u", "Varianz Zonalwind [(m/s)**2]"},
/* 23 */ {"Var. v", "Varianz Meridionalwind [(m/s)**2]"},
/* 24 */ {"Var. q", "Varianz spezifische Feuchte [(kg/kg)**2]"},
/* 25 */ {"Mer. Imptr", "Meridionaler Impulstransport [(m/s)**2]"},
/* 26 */ {"Mer. TrEpt", "Meridionaler Transport potentieller Energie [(m/s)**3]"},
/* 27 */ {"Mer. TrsW", "Meridionaler Transport sensibler Waerme [K*(m/s)]"},
/* 28 */ {"Mer. TrlW", "Meridionaler Transport latenter Waerme [(kg/kg)*(m/s)]"},
/* 29 */ {"Ver. TrEpt", "Vertikaler Transport potentieller Energie [(m/s)**2*(Pa/s)]"},
/* 30 */ {"Ver. TrsW", "Vertikaler Transport sensibler Waerme [K*(Pa/s)]"},
/* 31 */ {"Ver.TrlW", "Vertikaler Transport latenter Waerme [(kg/kg)*(Pa/s)]"},
/* 32 */ {"var32", "undefined"},
/* 33 */ {"var33", "undefined"},
/* 34 */ {"var34", "undefined"},
/* 35 */ {"var35", "undefined"},
/* 36 */ {"var36", "undefined"},
/* 37 */ {"var37", "undefined"},
/* 38 */ {"var38", "undefined"},
/* 39 */ {"var39", "undefined"},
/* 40 */ {"VarAF Geop", "Varianz des Analyse-Fehlers Geopotential [(m/s)**4]"},
/* 41 */ {"VarAF u", "Varianz des Analyse-Fehlers Zonalwind [(m/s)**2]"},
/* 42 */ {"VarAF v", "Varianz des Analyse-Fehlers Meridionalwind [(m/s)**2]"},
/* 43 */ {"var43", "undefined"},
/* 44 */ {"DU_SSO", "undefined"},
/* 45 */ {"DV_SSO", "undefined"},
/* 46 */ {"SSO_STDH", "standard deviation of subgrid scale orogr. height [m]"},
/* 47 */ {"SSO_GAMMA", "anisotropy of topography [1]"},
/* 48 */ {"SSO_THETA", "angle betw. principal axis of orogr. and global E [1]"},
/* 49 */ {"SSO_SIGMA", "mean slope of subgrid scale orography [1]"},
/* 50 */ {"oro varian", "subgrid-scale variance of orography [m**2]"},
/* 51 */ {"E-W oro va", "E-W component of subgrid-scale variance of orogr [m**2]"},
/* 52 */ {"N-S oro va", "N-S component of subgrid-scale variance of orogr [m**2]"},
/* 53 */ {"NW-SE o va", "NW-SE component of subgrid-scale variance of orogr [m**2]"},
/* 54 */ {"NE-SW o va", "NE-SW component of subgrid-scale variance of orogr [m**2]"},
/* 55 */ {"inl w frac", "fraction of inland water [1]"},
/* 56 */ {"EMISS_RAD", "surface emissivity [1]"},
/* 57 */ {"SOILTYP", "soil texture [1]"},
/* 58 */ {"soil color", "soil color [1]"},
/* 59 */ {"soil drain", "soil drainage [1]"},
/* 60 */ {"ground wat", "ground water table [m]"},
/* 61 */ {"LAI", "leaf area index [1]"},
/* 62 */ {"ROOTDP", "root depth [m]"},
/* 63 */ {"root dens", "root density [1]"},
/* 64 */ {"HMO3", "height of maximum of ozone concentration [Pa]"},
/* 65 */ {"VIO3", "total vertically integrated ozone content [Pa]"},
/* 66 */ {"ld-sea msk", "land-sea mask [1]"},
/* 67 */ {"PLCOV_MX", "ground fraction covered by plants (vegetation p.) [1]"},
/* 68 */ {"PLCOV_MN", "ground fraction covered by plants (time of rest) [1]"},
/* 69 */ {"LAI_MX", "leaf area index (vegetation period) [1]"},
/* 70 */ {"LAI_MN", "leaf area index (time of rest) [1]"},
/* 71 */ {"Orographie", "Orographie + Land-Meer-Verteilung [m]"},
/* 72 */ {"r length m", "roughness length momentum [m]"},
/* 73 */ {"r length h", "roughness length heat [m]"},
/* 74 */ {"var smc", "variance of soil moisture content [kg**2/m**4]"},
/* 75 */ {"FOR_E", "ground fraction covered by evergreen forest [1]"},
/* 76 */ {"FOR_D", "ground fraction covered by deciduous forest [1]"},
/* 77 */ {"NDVI", "normalized differential vegetation index [1]"},
/* 78 */ {"NDVI_MAX", "annual max. of norm. differential vegetation index [1]"},
/* 79 */ {"NDVIRATIO", "proportion of act.value/max. norm.diff.veg.index [1]"},
/* 80 */ {"AER_SEA", "aerosol optical depth, type sea [1]"},
/* 81 */ {"AER_LAN", "aerosol optical depth, type land [1]"},
/* 82 */ {"AER_URB", "aerosol optical depth, type urban [1]"},
/* 83 */ {"AER_DES", "aerosol optical depth, type desert [1]"},
/* 84 */ {"var84", "undefined"},
/* 85 */ {"var85", "undefined"},
/* 86 */ {"var86", "undefined"},
/* 87 */ {"var87", "undefined"},
/* 88 */ {"var88", "undefined"},
/* 89 */ {"var89", "undefined"},
/* 90 */ {"var90", "undefined"},
/* 91 */ {"var91", "undefined"},
/* 92 */ {"var92", "undefined"},
/* 93 */ {"var93", "undefined"},
/* 94 */ {"var94", "undefined"},
/* 95 */ {"var95", "undefined"},
/* 96 */ {"var96", "undefined"},
/* 97 */ {"var97", "undefined"},
/* 98 */ {"var98", "undefined"},
/* 99 */ {"var99", "undefined"},
/* 100 */ {"var100", "undefined"},
/* 101 */ {"tidal tend", "tidal tendencies [(m/s)**2]"},
/* 102 */ {"diab heatg", "sum of diabatic heating terms [K/s]"},
/* 103 */ {"adiab heat", "total adiabatic heating [K/s]"},
/* 104 */ {"adv q tend", "advective tendency of specific humidity [s**(-1)]"},
/* 105 */ {"nadv q ten", "non-advective tendency of specific humidity [s**(-1)]"},
/* 106 */ {"adv m te X", "advective momentum tendency (X component) [m/s**2]"},
/* 107 */ {"adv m te Y", "advective momentum tendency (Y component) [m/s**2]"},
/* 108 */ {"nad m te X", "non-advective momentum tendency (X component) [m/s**2]"},
/* 109 */ {"nad m te Y", "non-advective momentum tendency (Y component) [m/s**2]"},
/* 110 */ {"torque", "sum of mountain and frictional torque [kg*(m/s)**2]"},
/* 111 */ {"budget val", "budget values [1]"},
/* 112 */ {"scale fact", "scale factor [1]"},
/* 113 */ {"FC", "Coriolis parameter [s**(-1)]"},
/* 114 */ {"RLAT", "latitude [degr N]"},
/* 115 */ {"RLON", "longitude [degr E]"},
/* 116 */ {"relax fact", "relaxation factor (lateral boundary, LAM) [1]"},
/* 117 */ {"climsstint", "climatic sea surface temp interpolated in time [degr C]"},
/* 118 */ {"pot vortic", "potential vorticity [K*m**2/(s*kg)]"},
/* 119 */ {"ln ps", "log surface pressure [1]"},
/* 120 */ {"var120", "undefined"},
/* 121 */ {"ZTD", "delay of the GPS signal through the atmosphere [m]"},
/* 122 */ {"ZWD", "delay of the GPS signal through a wet atmosphere [m]"},
/* 123 */ {"ZHD", "delay of the GPS signal through a dry atmosphere [m]"},
/* 124 */ {"var124", "undefined"},
/* 125 */ {"var125", "undefined"},
/* 126 */ {"var126", "undefined"},
/* 127 */ {"var127", "undefined"},
/* 128 */ {"var128", "undefined"},
/* 129 */ {"var129", "undefined"},
/* 130 */ {"var130", "undefined"},
/* 131 */ {"var131", "undefined"},
/* 132 */ {"var132", "undefined"},
/* 133 */ {"var133", "undefined"},
/* 134 */ {"var134", "undefined"},
/* 135 */ {"var135", "undefined"},
/* 136 */ {"var136", "undefined"},
/* 137 */ {"var137", "undefined"},
/* 138 */ {"var138", "undefined"},
/* 139 */ {"var139", "undefined"},
/* 140 */ {"var140", "undefined"},
/* 141 */ {"var141", "undefined"},
/* 142 */ {"var142", "undefined"},
/* 143 */ {"var143", "undefined"},
/* 144 */ {"var144", "undefined"},
/* 145 */ {"var145", "undefined"},
/* 146 */ {"var146", "undefined"},
/* 147 */ {"var147", "undefined"},
/* 148 */ {"var148", "undefined"},
/* 149 */ {"var149", "undefined"},
/* 150 */ {"SO2-conc", "SO2-concentration [10**(-6)*g/m**3]"},
/* 151 */ {"SO2-dryd", "SO2-dry deposition [10**(-3)*g/m**2]"},
/* 152 */ {"SO2-wetd", "SO2-wet deposition [10**(-3)*g/m**2]"},
/* 153 */ {"SO4-conc", "SO4-concentration [10**(-6)*g/m**3]"},
/* 154 */ {"SO4-dryd", "SO4-dry deposition [10**(-3)*g/m**2]"},
/* 155 */ {"SO4-wetd", "SO4-wet deposition [10**(-3)*g/m**2]"},
/* 156 */ {"NO-conc", "NO-concentration [10**(-6)*g/m**3]"},
/* 157 */ {"NO-dryd", "NO-dry deposition [10**(-3)*g/m**2]"},
/* 158 */ {"NO-wetd", "NO-wet deposition [10**(-3)*g/m**2]"},
/* 159 */ {"NO2-conc", "NO2-concentration [10**(-6)*g/m**3]"},
/* 160 */ {"NO2-dryd", "NO2-dry deposition [10**(-3)*g/m**2]"},
/* 161 */ {"NO2-wetd", "NO2-wet deposition [10**(-3)*g/m**2]"},
/* 162 */ {"NO3-conc", "NO3-concentration [10**(-6)*g/m**3]"},
/* 163 */ {"NO3-dryd", "NO3-dry deposition [10**(-3)*g/m**2]"},
/* 164 */ {"NO3-wetd", "NO3-wet deposition [10**(-3)*g/m**2]"},
/* 165 */ {"HNO3-conc", "HNO3-concentration [10**(-6)*g/m**3]"},
/* 166 */ {"HNO3-dryd", "HNO3-dry deposition [10**(-3)*g/m**2]"},
/* 167 */ {"HNO3-wetd", "HNO3-wet deposition [10**(-3)*g/m**2]"},
/* 168 */ {"NH3-conc", "NH3-concentration [10**(-6)*g/m**3]"},
/* 169 */ {"NH3-dryd", "NH3-dry deposition [10**(-3)*g/m**2]"},
/* 170 */ {"NH3-wetd", "NH3-wet deposition [10**(-3)*g/m**2]"},
/* 171 */ {"NH4-conc", "NH4-concentration [10**(-6)*g/m**3]"},
/* 172 */ {"NH4-dryd", "NH4-dry deposition [10**(-3)*g/m**2]"},
/* 173 */ {"NH4-wetd", "NH4-wet deposition [10**(-3)*g/m**2]"},
/* 174 */ {"O3-conc", "O3-concentration [10**(-6)*g/m**3]"},
/* 175 */ {"PAN-conc", "PAN-concentration [10**(-6)*g/m**3]"},
/* 176 */ {"PAN-dryd", "PAN-dry deposition [10**(-3)*g/m**2]"},
/* 177 */ {"OH-conc", "OH-concentration [10**(-6)*g/m**3]"},
/* 178 */ {"O3-dryd", "O3-dry deposition [10**(-3)*g/m**2]"},
/* 179 */ {"O3-wetd", "O3-wet deposition [10**(-3)*g/m**2]"},
/* 180 */ {"O3", "O3-mixing ratio [kg/kg]"},
/* 181 */ {"var181", "undefined"},
/* 182 */ {"var182", "undefined"},
/* 183 */ {"var183", "undefined"},
/* 184 */ {"var184", "undefined"},
/* 185 */ {"var185", "undefined"},
/* 186 */ {"var186", "undefined"},
/* 187 */ {"var187", "undefined"},
/* 188 */ {"var188", "undefined"},
/* 189 */ {"var189", "undefined"},
/* 190 */ {"var190", "undefined"},
/* 191 */ {"var191", "undefined"},
/* 192 */ {"var192", "undefined"},
/* 193 */ {"var193", "undefined"},
/* 194 */ {"var194", "undefined"},
/* 195 */ {"var195", "undefined"},
/* 196 */ {"var196", "undefined"},
/* 197 */ {"var197", "undefined"},
/* 198 */ {"var198", "undefined"},
/* 199 */ {"var199", "undefined"},
/* 200 */ {"I131-conc", "I131-concentration [Bq/m**3]"},
/* 201 */ {"I131-dryd", "I131-dry deposition [Bq/m**2]"},
/* 202 */ {"I131-wetd", "I131-wet deposition [Bq/m**2]"},
/* 203 */ {"Cs137-conc", "Cs137-concentration [Bq/m**3]"},
/* 204 */ {"Cs137-dryd", "Cs1370dry deposition [Bq/m**2]"},
/* 205 */ {"Cs137-wetd", "Cs137-wet deposition [Bq/m**2]"},
/* 206 */ {"Te132-conc", "Te132-concentration [Bq/m**3]"},
/* 207 */ {"Te132-dryd", "Te132-dry deposition [Bq/m**2]"},
/* 208 */ {"Te132-wetd", "Te132-wet deposition [Bq/m**2]"},
/* 209 */ {"Zr95-conc", "Zr95-concentration [Bq/m**3]"},
/* 210 */ {"Zr95-dryd", "Zr95-dry deposition [Bq/m**2]"},
/* 211 */ {"Zr95-wetd", "Zr95-wet deposition [Bq/m**2]"},
/* 212 */ {"var212", "undefined"},
/* 213 */ {"var213", "undefined"},
/* 214 */ {"var214", "undefined"},
/* 215 */ {"var215", "undefined"},
/* 216 */ {"var216", "undefined"},
/* 217 */ {"var217", "undefined"},
/* 218 */ {"var218", "undefined"},
/* 219 */ {"var219", "undefined"},
/* 220 */ {"var220", "undefined"},
/* 221 */ {"var221", "undefined"},
/* 222 */ {"var222", "undefined"},
/* 223 */ {"var223", "undefined"},
/* 224 */ {"var224", "undefined"},
/* 225 */ {"var225", "undefined"},
/* 226 */ {"var226", "undefined"},
/* 227 */ {"var227", "undefined"},
/* 228 */ {"var228", "undefined"},
/* 229 */ {"var229", "undefined"},
/* 230 */ {"var230", "undefined"},
/* 231 */ {"USTR_SSO", "Mom. flux, u component, due to SSO-effects [(N/(m**2)]"},
/* 232 */ {"VSTR_SSO", "Mom. flux, v component, due to SSO-effects [(N/(m**2)]"},
/* 233 */ {"VDIS_SSO", "Dissipation of kinetic energy due to SSO-effects [(W/(m**2)]"},
/* 234 */ {"var234", "undefined"},
/* 235 */ {"var235", "undefined"},
/* 236 */ {"var236", "undefined"},
/* 237 */ {"var237", "undefined"},
/* 238 */ {"var238", "undefined"},
/* 239 */ {"var239", "undefined"},
/* 240 */ {"UV_Ind_F_h", "UV_Index corr. for albedo+altitude,cloudless(F), h [1]"},
/* 241 */ {"BasicUV_IF", "Basic UV_Index m.s.l.,fixed albedo,cloudless(F), h [1]"},
/* 242 */ {"UV_Ind_W_h", "UV_Index corrected for albedo+altitude+clouds(W),h [1]"},
/* 243 */ {"UV_IndmaxF", "UV_Index cloudless (F), daily maximum [1]"},
/* 244 */ {"SB-Index", "Sonnenbrand-Index [(W*10**(-3))/m**2]"},
/* 245 */ {"SB-Index W", "Sonnenbrand-Index bei mittl. Bewoelkung (08z-12z) [(W*10**(-3))/m**2]"},
/* 246 */ {"Kan.UVB-WI", "Kanadischer UVB-Warnindex (bew|lkungsreduziert) [(W*10**(-3))/m**2]"},
/* 247 */ {"gesamt O3", "total column ozone (Gesamtozon) [Dobson Unit, DU]"},
/* 248 */ {"UV_IndmaxW", "UV_Index clouded (W), daily maximum [1]"},
/* 249 */ {"h UV_IndMx", "time of UV_Index maximum [h UTC]"},
/* 250 */ {"var250", "undefined"},
/* 251 */ {"var251", "undefined"},
/* 252 */ {"var252", "undefined"},
/* 253 */ {"var253", "undefined"},
/* 254 */ {"var254", "undefined"},
/* 255 */ {"var255", "undefined"},
};
/*
* GRIB table 203 at DWD
* Helmut P. Frank, 30.08.2001
* updated: 19.10.2005
*/
const struct ParmTable parm_table_dwd_203[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"pressure", "pressure [hPa]"},
/* 2 */ {"geopot h", "geopotential height [10 * gpm]"},
/* 3 */ {"var3", "undefined"},
/* 4 */ {"temperatur", "temperature [1*degree Celsius]"},
/* 5 */ {"dew-pnt te", "dew-point temperature [1*degree Celsius]"},
/* 6 */ {"windcompXY", "wind components X/Y (X*100000 + ((Y*10)+5000)) [m/s]"},
/* 7 */ {"geomet h", "geometrical height [kft]"},
/* 8 */ {"geomet h", "geometrical height [hft]"},
/* 9 */ {"wind di/sp", "wind direction and speed (dd*1000 + ff) [1*degree, 1*kt]"},
/* 10 */ {"3 h pr cha", "3 hour pressure change [Pa/(3*h)]"},
/* 11 */ {"Schnee-Mge", "Schneemenge [mm]"},
/* 12 */ {"var12", "undefined"},
/* 13 */ {"Bod-Wass-G", "Bodenwassergehalt [mm]"},
/* 14 */ {"var14", "undefined"},
/* 15 */ {"stab. ind.", "stability index [K]"},
/* 16 */ {"var16", "undefined"},
/* 17 */ {"var17", "undefined"},
/* 18 */ {"max wind", "maximum wind velocity [km/h]"},
/* 19 */ {"max wind", "maximum wind velocity [kt]"},
/* 20 */ {"wind di/sp", "wind direction and speed (dd*1000 + ff) [5*degrees, 1*(m/s)]"},
/* 21 */ {"wind di/sp", "wind direction and speed (dd*1000 + ff) [5*degrees, 1*kt]"},
/* 22 */ {"wave di/he", "direction and height of wind waves (dd*1000 + h) [1*degree, 1*cm]"},
/* 23 */ {"swe. di/he", "direction and height of swell (dd*1000 + h) [1*degree, 1*cm]"},
/* 24 */ {"wave m d/h", "mean direction and height of waves (dd*1000 + h) [1*degree, 1*cm]"},
/* 25 */ {"wind speed", "wind speed [kt]"},
/* 26 */ {"var26", "undefined"},
/* 27 */ {"wind compX", "wind component X-direction [kt]"},
/* 28 */ {"wind compY", "wind component Y-direction [kt]"},
/* 29 */ {"var29", "undefined"},
/* 30 */ {"var30", "undefined"},
/* 31 */ {"var31", "undefined"},
/* 32 */ {"var32", "undefined"},
/* 33 */ {"abs voradv", "absolute vorticity advection [1/(s**2)]"},
/* 34 */ {"var34", "undefined"},
/* 35 */ {"var35", "undefined"},
/* 36 */ {"var36", "undefined"},
/* 37 */ {"var37", "undefined"},
/* 38 */ {"var38", "undefined"},
/* 39 */ {"var39", "undefined"},
/* 40 */ {"var40", "undefined"},
/* 41 */ {"var41", "undefined"},
/* 42 */ {"vert. vel.", "vertical velocity [hPa/h]"},
/* 43 */ {"var43", "undefined"},
/* 44 */ {"var44", "undefined"},
/* 45 */ {"var45", "undefined"},
/* 46 */ {"var46", "undefined"},
/* 47 */ {"var47", "undefined"},
/* 48 */ {"var48", "undefined"},
/* 49 */ {"var49", "undefined"},
/* 50 */ {"var50", "undefined"},
/* 51 */ {"var51", "undefined"},
/* 52 */ {"var52", "undefined"},
/* 53 */ {"var53", "undefined"},
/* 54 */ {"var54", "undefined"},
/* 55 */ {"max. temp.", "maximum temperature [1*degree Celsius]"},
/* 56 */ {"min. temp.", "minimum temperature [1*degree Celsius]"},
/* 57 */ {"sul_prob", "probability to perceive sultriness [1]"},
/* 58 */ {"clo", "value of isolation of clothes [1]"},
/* 59 */ {"pmva", "predected mean vote (angepasst) [1]"},
/* 60 */ {"feeled t", "feeled temperature [1*degree Celsius]"},
/* 61 */ {"sea temper", "sea temperature [1*degree Celsius]"},
/* 62 */ {"var62", "undefined"},
/* 63 */ {"var63", "undefined"},
/* 64 */ {"var64", "undefined"},
/* 65 */ {"var65", "undefined"},
/* 66 */ {"var66", "undefined"},
/* 67 */ {"var67", "undefined"},
/* 68 */ {"var68", "undefined"},
/* 69 */ {"var69", "undefined"},
/* 70 */ {"var70", "undefined"},
/* 71 */ {"var71", "undefined"},
/* 72 */ {"var72", "undefined"},
/* 73 */ {"var73", "undefined"},
/* 74 */ {"var74", "undefined"},
/* 75 */ {"var75", "undefined"},
/* 76 */ {"var76", "undefined"},
/* 77 */ {"var77", "undefined"},
/* 78 */ {"var78", "undefined"},
/* 79 */ {"var79", "undefined"},
/* 80 */ {"var80", "undefined"},
/* 81 */ {"var81", "undefined"},
/* 82 */ {"var82", "undefined"},
/* 83 */ {"var83", "undefined"},
/* 84 */ {"var84", "undefined"},
/* 85 */ {"var85", "undefined"},
/* 86 */ {"Globalstr.", "Summe der Globalstrahlung ueber einen Zeitraum [kWh/m**2]"},
/* 87 */ {"Nied-GW-GE", "Niederschlagsart+Gewitter+Glatteis (T23-i) (0..99) [1]"},
/* 88 */ {"NiedGW-Art", "Niederschlagsart+Gewitter (T23-intern) (0..99) [1]"},
/* 89 */ {"NiedGE-Art", "Niederschlagsart+Glatteis (T23-intern) (0..99) [1]"},
/* 90 */ {"NiedBewArt", "Kombination Niederschl.-Bew.-Blautherm. (283..407) [1]"},
/* 91 */ {"Konv.U-Gr.", "Hoehe der Konvektionsuntergrenze ueber Grund [m]"},
/* 92 */ {"Nied.-Art", "Niederschlagsart -ww- (T23-intern) (0..99) [1]"},
/* 93 */ {"Konv.-Art", "Konvektionsart (0..4) [1]"},
/* 94 */ {"Konv.UG-nn", "Hoehe der Konvektionsuntergrenze ueber nn [m]"},
/* 95 */ {"var95", "undefined"},
/* 96 */ {"var96", "undefined"},
/* 97 */ {"var97", "undefined"},
/* 98 */ {"var98", "undefined"},
/* 99 */ {"WW", "Wetter (verschluesselt nach ww-Tabelle"},
/* 100 */ {"geostr Vor", "geostrophische Vorticity [1/s]"},
/* 101 */ {"Geo VorAdv", "geostrophische Vorticityadvektion [1/s**2]"},
/* 102 */ {"VerGraVoAd", "vert. Gradient der geostr. Vorticityadvektion [m/(kg*s)]"},
/* 103 */ {"Geo TemAdv", "geostrophische Schichtdickenadvektion [m**3/(kg*s)]"},
/* 104 */ {"Lap TemAdv", "Kruemmung der geostr. Schichtdickenadvektion [m/(kg*s)]"},
/* 105 */ {"Omega Forc", "Forcing rechte Seite Omegagleichung [m/(kg*s)]"},
/* 106 */ {"var106", "undefined"},
/* 107 */ {"Schichtd.A", "Schichtdicken-Advektion [m**3/(kg*s)]"},
/* 108 */ {"AdGeVoThWi", "Advektion von geostr. Vorticity mit dem therm Wind [m/(kg*s)]"},
/* 109 */ {"Wind-Div.", "Winddivergenz [1/s]"},
/* 110 */ {"Q", "Q-vector direction and speed (dd*1000 + fff*1E13) [5*deg,1E13*m**2/kg/s]"},
/* 111 */ {"Qx", "Q-Vektor X-Komponente [m**2/(kg*s)]"},
/* 112 */ {"Qy", "Q-Vektor Y-Komponente [m**2/(kg*s)]"},
/* 113 */ {"Div Q", "Divergenz Q [m/(kg*s)]"},
/* 114 */ {"FrontoGeQn", "Frontogenesefunktion, Q isother-senkrecht-Kompon. [m**2/(kg*s)]"},
/* 115 */ {"Qs (geo)", "Qs (geo),Komp. Q-Vektor parallel zu den Isothermen [m**2/(kg*s)]"},
/* 116 */ {"DivQn(geo)", "Divergenz Qn geostrophisch [m/(kg*s)]"},
/* 117 */ {"DivQs(geo)", "Divergenz Qs geostrophisch [m/(kg*s)]"},
/* 118 */ {"Fronto Gen", "Frontogenesefunktion [K**2/(m**2*s)]"},
/* 119 */ {"var119", "undefined"},
/* 120 */ {"var120", "undefined"},
/* 121 */ {"var121", "undefined"},
/* 122 */ {"var122", "undefined"},
/* 123 */ {"var123", "undefined"},
/* 124 */ {"FrontoGenP", "Frontogenese-Parameter [1]"},
/* 125 */ {"Qs-Vektor", "Qs, Komp. Q-Vektor parallel zu den Isothermen [m**2/(kg*s)]"},
/* 126 */ {"var126", "undefined"},
/* 127 */ {"Div Qs", "Divergenz Qs [m/(kg*s)]"},
/* 128 */ {"var128", "undefined"},
/* 129 */ {"var129", "undefined"},
/* 130 */ {"IPV", "Isentrope potentielle Vorticity [K*m**2/(s*kg)]"},
/* 131 */ {"Wind KompX", "Wind X-Komponente auf isentropen Flaechen [m/s]"},
/* 132 */ {"Wind KompY", "Wind Y-Komponente auf isentropen Flaechen [m/s]"},
/* 133 */ {"Druck-Ise.", "Druck einer isentropen Flaeche [hPa]"},
/* 134 */ {"var134", "undefined"},
/* 135 */ {"var135", "undefined"},
/* 136 */ {"var136", "undefined"},
/* 137 */ {"var137", "undefined"},
/* 138 */ {"var138", "undefined"},
/* 139 */ {"var139", "undefined"},
/* 140 */ {"KO-Index", "KO-Index [K]"},
/* 141 */ {"TT-Index", "Totals-Totals-Index [K]"},
/* 142 */ {"S-Index", "S-Index [K]"},
/* 143 */ {"Stein-Ind", "Steinbeck-Index [1]"},
/* 144 */ {"Baily-Ind", "Baily-Index [1]"},
/* 145 */ {"Microburst", "Microburst-Index [1]"},
/* 146 */ {"Cat-Index", "Clear Air Turbulence Index [1/s]"},
/* 147 */ {"var147", "undefined"},
/* 148 */ {"Lab-Energ", "Labilit{tsenergie [J/g]"},
/* 149 */ {"var149", "undefined"},
/* 150 */ {"Virt T", "Virtuelle Temperatur [K]"},
/* 151 */ {"Pseudo T", "Pseudo-Temperatur [K]"},
/* 152 */ {"Pseudo Pot", "Pseudopotentielle Temperatur [K]"},
/* 153 */ {"Aequi T", "Aequivalent-Temperatur [K]"},
/* 154 */ {"Aequi Pot", "Aequivalentpotentielle Temperatur [K]"},
/* 155 */ {"var155", "undefined"},
/* 156 */ {"var156", "undefined"},
/* 157 */ {"var157", "undefined"},
/* 158 */ {"var158", "undefined"},
/* 159 */ {"var159", "undefined"},
/* 160 */ {"Bas St Wol", "Untergrenze strat. Bew|lkung [hft]"},
/* 161 */ {"Bas St Wol", "Untergrenze strat. Bew|lkung [hPa]"},
/* 162 */ {"Bas Cu Wol", "Untergrenze cumul. Bew|lkung [hft]"},
/* 163 */ {"Bas Cu Wol", "Untergrenze cumul. Bew|lkung [hPa]"},
/* 164 */ {"Top St Wol", "Obergrenze strat. Bew|lkung [hft]"},
/* 165 */ {"Top St Wol", "Obergrenze strat. Bew|lkung [hPa]"},
/* 166 */ {"Top Cu Wol", "Obergrenze cumul. Bew|lkung [hft]"},
/* 167 */ {"Top Cu Wol", "Obergrenze cumul. Bew|lkung [hPa]"},
/* 168 */ {"var168", "undefined"},
/* 169 */ {"var169", "undefined"},
/* 170 */ {"Bas Tur Wo", "Untergrenze Wolkenturbulenz [hft]"},
/* 171 */ {"Bas Tur Wo", "Untergrenze Wolkenturbulenz [hPa]"},
/* 172 */ {"Top Tur Wo", "Obergrenze Wolkenturbulenz [hft]"},
/* 173 */ {"Top Tur Wo", "Obergrenze Wolkenturbulenz [hPa]"},
/* 174 */ {"Bas Eis Wo", "Untergrenze Vereisung in Wolken [hft]"},
/* 175 */ {"Bas Eis Wo", "Untergrenze Vereisung in Wolken [hPa]"},
/* 176 */ {"Top Eis Wo", "Obergrenze Vereisung in Wolken [hft]"},
/* 177 */ {"Top Eis Wo", "Obergrenze Vereisung in Wolken [hPa]"},
/* 178 */ {"Int Tur Wo", "Intensitaet der Turbulenz in Wolken (0..4) [1]"},
/* 179 */ {"Int Eis Wo", "Intensitaet der Vereisung (0..4) [1]"},
/* 180 */ {"var180", "undefined"},
/* 181 */ {"var181", "undefined"},
/* 182 */ {"var182", "undefined"},
/* 183 */ {"var183", "undefined"},
/* 184 */ {"var184", "undefined"},
/* 185 */ {"var185", "undefined"},
/* 186 */ {"var186", "undefined"},
/* 187 */ {"var187", "undefined"},
/* 188 */ {"var188", "undefined"},
/* 189 */ {"var189", "undefined"},
/* 190 */ {"Sichtweite", "Sichtweite [m]"},
/* 191 */ {"PIP_degree", "Prognostic Icing"},
/* 192 */ {"PIP_scenar", "Prog Icing"},
/* 193 */ {"DIP_degree", "Diagnostic Icing"},
/* 194 */ {"DIP_scenar", "Diag Icing"},
/* 195 */ {"IcingGuess", "Icing Regime 1.Guess(1=gen,2=conv,3=strat,4=freez) [1]"},
/* 196 */ {"IcingGrade", "Icing Grade (1=LGT,2=MOD,3=SEV) [1]"},
/* 197 */ {"IcingRegim", "Icing Regime(1=general,2=convect,3=strat,4=freez) [1]"},
/* 198 */ {"var198", "undefined"},
/* 199 */ {"var199", "undefined"},
/* 200 */ {"Gru Wetter", "Wetter - Grundzustand (ww"},
/* 201 */ {"Lok Wetter", "Wetter - 1. lokale Abweichung (ww"},
/* 202 */ {"Lok Wetter", "Wetter - 2. lokale Abweichung (ww"},
/* 203 */ {"CLDEPTH", "cloud depth (grey scale"},
/* 204 */ {"CLCT_MOD", "modified total cloud cover (0..1) [1]"},
/* 205 */ {"curr weath", "current weather (symbol number"},
/* 206 */ {"var206", "undefined"},
/* 207 */ {"var207", "undefined"},
/* 208 */ {"var208", "undefined"},
/* 209 */ {"var209", "undefined"},
/* 210 */ {"var210", "undefined"},
/* 211 */ {"Cu", "Cumulus (0..1) [1]"},
/* 212 */ {"Cb", "Cumulimbus (0..1) [1]"},
/* 213 */ {"Sc", "Stratocumulus (0..1) [1]"},
/* 214 */ {"Ac", "Altocumulus (0..1) [1]"},
/* 215 */ {"Ci", "Cirrus (0..1) [1]"},
/* 216 */ {"St", "Stratus (0..1) [1]"},
/* 217 */ {"As", "Altostratus (0..1) [1]"},
/* 218 */ {"var218", "undefined"},
/* 219 */ {"var219", "undefined"},
/* 220 */ {"var220", "undefined"},
/* 221 */ {"Bedeckung", "Bedeckung in Stufen [1]"},
/* 222 */ {"Konvektion", "Konvektion ja/nein [1]"},
/* 223 */ {"MN >90%", "Gesamtbedeckung > 90% ja/nein [1]"},
/* 224 */ {"RF700 >89%", "relative Feuchte 700 hPa >= 90% ja/nein [1]"},
/* 225 */ {"RR12 zentr", "Niederschlag 12 std. zentriert [mm]"},
/* 226 */ {"RR12 <=0.5", "Niederschlag 12 std. zentriert, Werte <= 0.5mm [mm]"},
/* 227 */ {"RR12 SA>60", "RR12 zentriert, Schneeanteil > 60% ja/nein [1]"},
/* 228 */ {"RR12 Kv>60", "RR12 zentriert, konvektiver Anteil > 60% ja/nein [1]"},
/* 229 */ {"SRR12ff", "Starkniederschlag in Stufen (12 std. Folgezeitr) [1]"},
/* 230 */ {"RRMAX/STD", "Maximaler Starkniederschlag / std [mm/h]"},
/* 231 */ {"RRMAX/MIN", "Maximaler Starkniederschlag / min [mm/min]"},
/* 232 */ {"SN12ff >15", "Schneefall (12std. Folgezeitraum) > 15 mm ja/nein [1]"},
/* 233 */ {"RRgefr12ff", "gefrierender Regen (12std. Folgezeitraum) ja/nein [1]"},
/* 234 */ {"FFboe", "Boeenstaerke in Stufen [1]"},
/* 235 */ {"Gewitter", "Gewitter in Stufen [1]"},
/* 236 */ {"Tx2m12h ze", "2m Maximumtemperatur 12h zentriert [Grad Celsius]"},
/* 237 */ {"Tn2m12h ze", "2m Minimumtemperatur 12h zentriert [Grad Celsius]"},
/* 238 */ {"var238", "undefined"},
/* 239 */ {"var239", "undefined"},
/* 240 */ {"var240", "undefined"},
/* 241 */ {"var241", "undefined"},
/* 242 */ {"var242", "undefined"},
/* 243 */ {"var243", "undefined"},
/* 244 */ {"var244", "undefined"},
/* 245 */ {"var245", "undefined"},
/* 246 */ {"var246", "undefined"},
/* 247 */ {"var247", "undefined"},
/* 248 */ {"var248", "undefined"},
/* 249 */ {"var249", "undefined"},
/* 250 */ {"var250", "undefined"},
/* 251 */ {"SCHWUELIND", "Schwuele-Index [1]"},
/* 252 */ {"SMOGSTUFEN", "Smog-Intensitaetsstufen [1]"},
/* 253 */ {"var253", "undefined"},
/* 254 */ {"SMOGHOEHE", "Obergrenze Smog ( Inversionshoehe ) [m]"},
/* 255 */ {"var255", "undefined"},
};
/*
* GRIB table 204 at DWD
* Helmut P. Frank, 27.10.2004
*/
const struct ParmTable parm_table_dwd_204[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"p RMS fg-a", "pressure RMS-error first guess - analysis [Pa]"},
/* 2 */ {"p RMS ia-a", "pressure RMS-error initialised analysis - analysis [Pa]"},
/* 3 */ {"u RMS fg-a", "u RMS-error first guess - analysis [m/s]"},
/* 4 */ {"u RMS ia-a", "u RMS-error initialised analysis - analysis [m/s]"},
/* 5 */ {"v RMS fg-a", "v RMS-error first guess - analysis [m/s]"},
/* 6 */ {"v RMS ia-a", "v RMS-error initialised analysis - analysis [m/s]"},
/* 7 */ {"fi E fg-a", "geopotential RMS-error first guess - analysis [(m**2)/(s**2)]"},
/* 8 */ {"fi E ia-a", "geopotential RMS-error init. analysis - analysis [(m**2)/(s**2)]"},
/* 9 */ {"rh E fg-a", "relative humidity RMS-error first guess - analysis [1]"},
/* 10 */ {"rh E ia-a", "rel. hum. RMS-error init. analysis - analysis [1]"},
/* 11 */ {"t RMS fg-a", "temperature RMS-error first guess - analysis [K]"},
/* 12 */ {"t RMS ia-a", "temperature RMS-error init. analysis - analysis [K]"},
/* 13 */ {"om E fg-a", "omega RMS-error first guess - analysis [m/s]"},
/* 14 */ {"om E ia-a", "omega RMS-error initialised analysis - analysis [m/s]"},
/* 15 */ {"E fg-a KE", "kinetic energy RMS-error first guess - analysis [(m**2)/(s**2)]"},
/* 16 */ {"E ig-a KE", "kinetic energy RMS-error init. analysis [(m**2)/(s**2)]"},
/* 17 */ {"var17", "undefined"},
/* 18 */ {"var18", "undefined"},
/* 19 */ {"var19", "undefined"},
/* 20 */ {"var20", "undefined"},
/* 21 */ {"var21", "undefined"},
/* 22 */ {"var22", "undefined"},
/* 23 */ {"var23", "undefined"},
/* 24 */ {"var24", "undefined"},
/* 25 */ {"var25", "undefined"},
/* 26 */ {"var26", "undefined"},
/* 27 */ {"var27", "undefined"},
/* 28 */ {"var28", "undefined"},
/* 29 */ {"var29", "undefined"},
/* 30 */ {"var30", "undefined"},
/* 31 */ {"var31", "undefined"},
/* 32 */ {"var32", "undefined"},
/* 33 */ {"var33", "undefined"},
/* 34 */ {"var34", "undefined"},
/* 35 */ {"var35", "undefined"},
/* 36 */ {"var36", "undefined"},
/* 37 */ {"var37", "undefined"},
/* 38 */ {"var38", "undefined"},
/* 39 */ {"var39", "undefined"},
/* 40 */ {"var40", "undefined"},
/* 41 */ {"var41", "undefined"},
/* 42 */ {"var42", "undefined"},
/* 43 */ {"var43", "undefined"},
/* 44 */ {"var44", "undefined"},
/* 45 */ {"var45", "undefined"},
/* 46 */ {"var46", "undefined"},
/* 47 */ {"var47", "undefined"},
/* 48 */ {"var48", "undefined"},
/* 49 */ {"var49", "undefined"},
/* 50 */ {"var50", "undefined"},
/* 51 */ {"var51", "undefined"},
/* 52 */ {"var52", "undefined"},
/* 53 */ {"var53", "undefined"},
/* 54 */ {"var54", "undefined"},
/* 55 */ {"var55", "undefined"},
/* 56 */ {"var56", "undefined"},
/* 57 */ {"var57", "undefined"},
/* 58 */ {"var58", "undefined"},
/* 59 */ {"var59", "undefined"},
/* 60 */ {"var60", "undefined"},
/* 61 */ {"var61", "undefined"},
/* 62 */ {"var62", "undefined"},
/* 63 */ {"var63", "undefined"},
/* 64 */ {"var64", "undefined"},
/* 65 */ {"var65", "undefined"},
/* 66 */ {"var66", "undefined"},
/* 67 */ {"var67", "undefined"},
/* 68 */ {"var68", "undefined"},
/* 69 */ {"var69", "undefined"},
/* 70 */ {"var70", "undefined"},
/* 71 */ {"var71", "undefined"},
/* 72 */ {"var72", "undefined"},
/* 73 */ {"var73", "undefined"},
/* 74 */ {"var74", "undefined"},
/* 75 */ {"var75", "undefined"},
/* 76 */ {"var76", "undefined"},
/* 77 */ {"var77", "undefined"},
/* 78 */ {"var78", "undefined"},
/* 79 */ {"var79", "undefined"},
/* 80 */ {"var80", "undefined"},
/* 81 */ {"var81", "undefined"},
/* 82 */ {"var82", "undefined"},
/* 83 */ {"var83", "undefined"},
/* 84 */ {"var84", "undefined"},
/* 85 */ {"var85", "undefined"},
/* 86 */ {"var86", "undefined"},
/* 87 */ {"var87", "undefined"},
/* 88 */ {"var88", "undefined"},
/* 89 */ {"var89", "undefined"},
/* 90 */ {"var90", "undefined"},
/* 91 */ {"var91", "undefined"},
/* 92 */ {"var92", "undefined"},
/* 93 */ {"var93", "undefined"},
/* 94 */ {"var94", "undefined"},
/* 95 */ {"var95", "undefined"},
/* 96 */ {"var96", "undefined"},
/* 97 */ {"var97", "undefined"},
/* 98 */ {"var98", "undefined"},
/* 99 */ {"var99", "undefined"},
/* 100 */ {"var100", "undefined"},
/* 101 */ {"var101", "undefined"},
/* 102 */ {"var102", "undefined"},
/* 103 */ {"var103", "undefined"},
/* 104 */ {"var104", "undefined"},
/* 105 */ {"var105", "undefined"},
/* 106 */ {"var106", "undefined"},
/* 107 */ {"var107", "undefined"},
/* 108 */ {"var108", "undefined"},
/* 109 */ {"var109", "undefined"},
/* 110 */ {"var110", "undefined"},
/* 111 */ {"var111", "undefined"},
/* 112 */ {"var112", "undefined"},
/* 113 */ {"var113", "undefined"},
/* 114 */ {"var114", "undefined"},
/* 115 */ {"var115", "undefined"},
/* 116 */ {"var116", "undefined"},
/* 117 */ {"var117", "undefined"},
/* 118 */ {"var118", "undefined"},
/* 119 */ {"var119", "undefined"},
/* 120 */ {"var120", "undefined"},
/* 121 */ {"var121", "undefined"},
/* 122 */ {"var122", "undefined"},
/* 123 */ {"var123", "undefined"},
/* 124 */ {"var124", "undefined"},
/* 125 */ {"var125", "undefined"},
/* 126 */ {"var126", "undefined"},
/* 127 */ {"var127", "undefined"},
/* 128 */ {"var128", "undefined"},
/* 129 */ {"var129", "undefined"},
/* 130 */ {"var130", "undefined"},
/* 131 */ {"RR20", "probability of total precipitation > 20mm [1]"},
/* 132 */ {"RR50", "probability of total precipitation > 50mm [1]"},
/* 133 */ {"RR100", "probability of total precipitation > 100mm [1]"},
/* 134 */ {"var134", "undefined"},
/* 135 */ {"var135", "undefined"},
/* 136 */ {"var136", "undefined"},
/* 137 */ {"var137", "undefined"},
/* 138 */ {"var138", "undefined"},
/* 139 */ {"var139", "undefined"},
/* 140 */ {"var140", "undefined"},
/* 141 */ {"FF10", "probability of maximum wind speed > 10m/s [1]"},
/* 142 */ {"FF15", "probability of maximum wind speed > 15m/s [1]"},
/* 143 */ {"FF20", "probability of maximum wind speed > 20m/s [1]"},
/* 144 */ {"var144", "undefined"},
/* 145 */ {"var145", "undefined"},
/* 146 */ {"var146", "undefined"},
/* 147 */ {"var147", "undefined"},
/* 148 */ {"var148", "undefined"},
/* 149 */ {"var149", "undefined"},
/* 150 */ {"var150", "undefined"},
/* 151 */ {"var151", "undefined"},
/* 152 */ {"var152", "undefined"},
/* 153 */ {"var153", "undefined"},
/* 154 */ {"var154", "undefined"},
/* 155 */ {"var155", "undefined"},
/* 156 */ {"var156", "undefined"},
/* 157 */ {"var157", "undefined"},
/* 158 */ {"var158", "undefined"},
/* 159 */ {"var159", "undefined"},
/* 160 */ {"var160", "undefined"},
/* 161 */ {"var161", "undefined"},
/* 162 */ {"var162", "undefined"},
/* 163 */ {"var163", "undefined"},
/* 164 */ {"var164", "undefined"},
/* 165 */ {"var165", "undefined"},
/* 166 */ {"var166", "undefined"},
/* 167 */ {"var167", "undefined"},
/* 168 */ {"var168", "undefined"},
/* 169 */ {"var169", "undefined"},
/* 170 */ {"var170", "undefined"},
/* 171 */ {"var171", "undefined"},
/* 172 */ {"var172", "undefined"},
/* 173 */ {"var173", "undefined"},
/* 174 */ {"var174", "undefined"},
/* 175 */ {"var175", "undefined"},
/* 176 */ {"var176", "undefined"},
/* 177 */ {"var177", "undefined"},
/* 178 */ {"var178", "undefined"},
/* 179 */ {"var179", "undefined"},
/* 180 */ {"var180", "undefined"},
/* 181 */ {"var181", "undefined"},
/* 182 */ {"var182", "undefined"},
/* 183 */ {"var183", "undefined"},
/* 184 */ {"var184", "undefined"},
/* 185 */ {"var185", "undefined"},
/* 186 */ {"var186", "undefined"},
/* 187 */ {"var187", "undefined"},
/* 188 */ {"var188", "undefined"},
/* 189 */ {"var189", "undefined"},
/* 190 */ {"var190", "undefined"},
/* 191 */ {"var191", "undefined"},
/* 192 */ {"var192", "undefined"},
/* 193 */ {"var193", "undefined"},
/* 194 */ {"var194", "undefined"},
/* 195 */ {"var195", "undefined"},
/* 196 */ {"var196", "undefined"},
/* 197 */ {"var197", "undefined"},
/* 198 */ {"var198", "undefined"},
/* 199 */ {"var199", "undefined"},
/* 200 */ {"var200", "undefined"},
/* 201 */ {"var201", "undefined"},
/* 202 */ {"var202", "undefined"},
/* 203 */ {"var203", "undefined"},
/* 204 */ {"var204", "undefined"},
/* 205 */ {"var205", "undefined"},
/* 206 */ {"var206", "undefined"},
/* 207 */ {"var207", "undefined"},
/* 208 */ {"var208", "undefined"},
/* 209 */ {"var209", "undefined"},
/* 210 */ {"var210", "undefined"},
/* 211 */ {"var211", "undefined"},
/* 212 */ {"var212", "undefined"},
/* 213 */ {"var213", "undefined"},
/* 214 */ {"var214", "undefined"},
/* 215 */ {"var215", "undefined"},
/* 216 */ {"var216", "undefined"},
/* 217 */ {"var217", "undefined"},
/* 218 */ {"var218", "undefined"},
/* 219 */ {"var219", "undefined"},
/* 220 */ {"var220", "undefined"},
/* 221 */ {"var221", "undefined"},
/* 222 */ {"var222", "undefined"},
/* 223 */ {"var223", "undefined"},
/* 224 */ {"var224", "undefined"},
/* 225 */ {"var225", "undefined"},
/* 226 */ {"var226", "undefined"},
/* 227 */ {"var227", "undefined"},
/* 228 */ {"var228", "undefined"},
/* 229 */ {"var229", "undefined"},
/* 230 */ {"var230", "undefined"},
/* 231 */ {"var231", "undefined"},
/* 232 */ {"var232", "undefined"},
/* 233 */ {"var233", "undefined"},
/* 234 */ {"var234", "undefined"},
/* 235 */ {"var235", "undefined"},
/* 236 */ {"var236", "undefined"},
/* 237 */ {"var237", "undefined"},
/* 238 */ {"var238", "undefined"},
/* 239 */ {"var239", "undefined"},
/* 240 */ {"var240", "undefined"},
/* 241 */ {"var241", "undefined"},
/* 242 */ {"var242", "undefined"},
/* 243 */ {"var243", "undefined"},
/* 244 */ {"var244", "undefined"},
/* 245 */ {"var245", "undefined"},
/* 246 */ {"var246", "undefined"},
/* 247 */ {"var247", "undefined"},
/* 248 */ {"var248", "undefined"},
/* 249 */ {"var249", "undefined"},
/* 250 */ {"var250", "undefined"},
/* 251 */ {"var251", "undefined"},
/* 252 */ {"var252", "undefined"},
/* 253 */ {"var253", "undefined"},
/* 254 */ {"var254", "undefined"},
/* 255 */ {"var255", "undefined"},
};
/*
* GRIB table 205 at DWD
* Helmut P. Frank, 27.10.2004
* updated 19.10.2005
*/
const struct ParmTable parm_table_dwd_205[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"SYNME5", "METEOSAT-5 mit Instrument MVIRI [1]"},
/* 2 */ {"SYNME6", "METEOSAT-6 mit Instrument MVIRI [1]"},
/* 3 */ {"SYNME7", "METEOSAT-7 mit Instrument MVIRI [1]"},
/* 4 */ {"SYNMSG", "MSG mit Instrument SEVIRI [1]"},
/* 5 */ {"var5", "undefined"},
/* 6 */ {"var6", "undefined"},
/* 7 */ {"var7", "undefined"},
/* 8 */ {"var8", "undefined"},
/* 9 */ {"var9", "undefined"},
/* 10 */ {"var10", "undefined"},
/* 11 */ {"var11", "undefined"},
/* 12 */ {"var12", "undefined"},
/* 13 */ {"var13", "undefined"},
/* 14 */ {"var14", "undefined"},
/* 15 */ {"var15", "undefined"},
/* 16 */ {"var16", "undefined"},
/* 17 */ {"var17", "undefined"},
/* 18 */ {"var18", "undefined"},
/* 19 */ {"var19", "undefined"},
/* 20 */ {"var20", "undefined"},
/* 21 */ {"var21", "undefined"},
/* 22 */ {"var22", "undefined"},
/* 23 */ {"var23", "undefined"},
/* 24 */ {"var24", "undefined"},
/* 25 */ {"var25", "undefined"},
/* 26 */ {"var26", "undefined"},
/* 27 */ {"var27", "undefined"},
/* 28 */ {"var28", "undefined"},
/* 29 */ {"var29", "undefined"},
/* 30 */ {"var30", "undefined"},
/* 31 */ {"var31", "undefined"},
/* 32 */ {"var32", "undefined"},
/* 33 */ {"var33", "undefined"},
/* 34 */ {"var34", "undefined"},
/* 35 */ {"var35", "undefined"},
/* 36 */ {"var36", "undefined"},
/* 37 */ {"var37", "undefined"},
/* 38 */ {"var38", "undefined"},
/* 39 */ {"var39", "undefined"},
/* 40 */ {"var40", "undefined"},
/* 41 */ {"var41", "undefined"},
/* 42 */ {"var42", "undefined"},
/* 43 */ {"var43", "undefined"},
/* 44 */ {"var44", "undefined"},
/* 45 */ {"var45", "undefined"},
/* 46 */ {"var46", "undefined"},
/* 47 */ {"var47", "undefined"},
/* 48 */ {"var48", "undefined"},
/* 49 */ {"var49", "undefined"},
/* 50 */ {"var50", "undefined"},
/* 51 */ {"var51", "undefined"},
/* 52 */ {"var52", "undefined"},
/* 53 */ {"var53", "undefined"},
/* 54 */ {"var54", "undefined"},
/* 55 */ {"var55", "undefined"},
/* 56 */ {"var56", "undefined"},
/* 57 */ {"var57", "undefined"},
/* 58 */ {"var58", "undefined"},
/* 59 */ {"var59", "undefined"},
/* 60 */ {"var60", "undefined"},
/* 61 */ {"var61", "undefined"},
/* 62 */ {"var62", "undefined"},
/* 63 */ {"var63", "undefined"},
/* 64 */ {"var64", "undefined"},
/* 65 */ {"var65", "undefined"},
/* 66 */ {"var66", "undefined"},
/* 67 */ {"var67", "undefined"},
/* 68 */ {"var68", "undefined"},
/* 69 */ {"var69", "undefined"},
/* 70 */ {"var70", "undefined"},
/* 71 */ {"var71", "undefined"},
/* 72 */ {"var72", "undefined"},
/* 73 */ {"var73", "undefined"},
/* 74 */ {"var74", "undefined"},
/* 75 */ {"var75", "undefined"},
/* 76 */ {"var76", "undefined"},
/* 77 */ {"var77", "undefined"},
/* 78 */ {"var78", "undefined"},
/* 79 */ {"var79", "undefined"},
/* 80 */ {"var80", "undefined"},
/* 81 */ {"var81", "undefined"},
/* 82 */ {"var82", "undefined"},
/* 83 */ {"var83", "undefined"},
/* 84 */ {"var84", "undefined"},
/* 85 */ {"var85", "undefined"},
/* 86 */ {"var86", "undefined"},
/* 87 */ {"var87", "undefined"},
/* 88 */ {"var88", "undefined"},
/* 89 */ {"var89", "undefined"},
/* 90 */ {"var90", "undefined"},
/* 91 */ {"var91", "undefined"},
/* 92 */ {"var92", "undefined"},
/* 93 */ {"var93", "undefined"},
/* 94 */ {"var94", "undefined"},
/* 95 */ {"var95", "undefined"},
/* 96 */ {"var96", "undefined"},
/* 97 */ {"var97", "undefined"},
/* 98 */ {"var98", "undefined"},
/* 99 */ {"var99", "undefined"},
/* 100 */ {"var100", "undefined"},
/* 101 */ {"var101", "undefined"},
/* 102 */ {"var102", "undefined"},
/* 103 */ {"var103", "undefined"},
/* 104 */ {"var104", "undefined"},
/* 105 */ {"var105", "undefined"},
/* 106 */ {"var106", "undefined"},
/* 107 */ {"var107", "undefined"},
/* 108 */ {"var108", "undefined"},
/* 109 */ {"var109", "undefined"},
/* 110 */ {"var110", "undefined"},
/* 111 */ {"var111", "undefined"},
/* 112 */ {"var112", "undefined"},
/* 113 */ {"var113", "undefined"},
/* 114 */ {"var114", "undefined"},
/* 115 */ {"var115", "undefined"},
/* 116 */ {"var116", "undefined"},
/* 117 */ {"var117", "undefined"},
/* 118 */ {"var118", "undefined"},
/* 119 */ {"var119", "undefined"},
/* 120 */ {"var120", "undefined"},
/* 121 */ {"var121", "undefined"},
/* 122 */ {"var122", "undefined"},
/* 123 */ {"var123", "undefined"},
/* 124 */ {"var124", "undefined"},
/* 125 */ {"var125", "undefined"},
/* 126 */ {"var126", "undefined"},
/* 127 */ {"var127", "undefined"},
/* 128 */ {"var128", "undefined"},
/* 129 */ {"var129", "undefined"},
/* 130 */ {"var130", "undefined"},
/* 131 */ {"var131", "undefined"},
/* 132 */ {"var132", "undefined"},
/* 133 */ {"var133", "undefined"},
/* 134 */ {"var134", "undefined"},
/* 135 */ {"var135", "undefined"},
/* 136 */ {"var136", "undefined"},
/* 137 */ {"var137", "undefined"},
/* 138 */ {"var138", "undefined"},
/* 139 */ {"var139", "undefined"},
/* 140 */ {"var140", "undefined"},
/* 141 */ {"var141", "undefined"},
/* 142 */ {"var142", "undefined"},
/* 143 */ {"var143", "undefined"},
/* 144 */ {"var144", "undefined"},
/* 145 */ {"var145", "undefined"},
/* 146 */ {"var146", "undefined"},
/* 147 */ {"var147", "undefined"},
/* 148 */ {"var148", "undefined"},
/* 149 */ {"var149", "undefined"},
/* 150 */ {"var150", "undefined"},
/* 151 */ {"var151", "undefined"},
/* 152 */ {"var152", "undefined"},
/* 153 */ {"var153", "undefined"},
/* 154 */ {"var154", "undefined"},
/* 155 */ {"var155", "undefined"},
/* 156 */ {"var156", "undefined"},
/* 157 */ {"var157", "undefined"},
/* 158 */ {"var158", "undefined"},
/* 159 */ {"var159", "undefined"},
/* 160 */ {"var160", "undefined"},
/* 161 */ {"var161", "undefined"},
/* 162 */ {"var162", "undefined"},
/* 163 */ {"var163", "undefined"},
/* 164 */ {"var164", "undefined"},
/* 165 */ {"var165", "undefined"},
/* 166 */ {"var166", "undefined"},
/* 167 */ {"var167", "undefined"},
/* 168 */ {"var168", "undefined"},
/* 169 */ {"var169", "undefined"},
/* 170 */ {"var170", "undefined"},
/* 171 */ {"var171", "undefined"},
/* 172 */ {"var172", "undefined"},
/* 173 */ {"var173", "undefined"},
/* 174 */ {"var174", "undefined"},
/* 175 */ {"var175", "undefined"},
/* 176 */ {"var176", "undefined"},
/* 177 */ {"var177", "undefined"},
/* 178 */ {"var178", "undefined"},
/* 179 */ {"var179", "undefined"},
/* 180 */ {"var180", "undefined"},
/* 181 */ {"var181", "undefined"},
/* 182 */ {"var182", "undefined"},
/* 183 */ {"var183", "undefined"},
/* 184 */ {"var184", "undefined"},
/* 185 */ {"var185", "undefined"},
/* 186 */ {"var186", "undefined"},
/* 187 */ {"var187", "undefined"},
/* 188 */ {"var188", "undefined"},
/* 189 */ {"var189", "undefined"},
/* 190 */ {"var190", "undefined"},
/* 191 */ {"var191", "undefined"},
/* 192 */ {"var192", "undefined"},
/* 193 */ {"var193", "undefined"},
/* 194 */ {"var194", "undefined"},
/* 195 */ {"var195", "undefined"},
/* 196 */ {"var196", "undefined"},
/* 197 */ {"var197", "undefined"},
/* 198 */ {"var198", "undefined"},
/* 199 */ {"var199", "undefined"},
/* 200 */ {"var200", "undefined"},
/* 201 */ {"var201", "undefined"},
/* 202 */ {"var202", "undefined"},
/* 203 */ {"var203", "undefined"},
/* 204 */ {"var204", "undefined"},
/* 205 */ {"var205", "undefined"},
/* 206 */ {"var206", "undefined"},
/* 207 */ {"var207", "undefined"},
/* 208 */ {"var208", "undefined"},
/* 209 */ {"var209", "undefined"},
/* 210 */ {"var210", "undefined"},
/* 211 */ {"var211", "undefined"},
/* 212 */ {"var212", "undefined"},
/* 213 */ {"var213", "undefined"},
/* 214 */ {"var214", "undefined"},
/* 215 */ {"var215", "undefined"},
/* 216 */ {"var216", "undefined"},
/* 217 */ {"var217", "undefined"},
/* 218 */ {"var218", "undefined"},
/* 219 */ {"var219", "undefined"},
/* 220 */ {"var220", "undefined"},
/* 221 */ {"var221", "undefined"},
/* 222 */ {"var222", "undefined"},
/* 223 */ {"var223", "undefined"},
/* 224 */ {"var224", "undefined"},
/* 225 */ {"var225", "undefined"},
/* 226 */ {"var226", "undefined"},
/* 227 */ {"var227", "undefined"},
/* 228 */ {"var228", "undefined"},
/* 229 */ {"var229", "undefined"},
/* 230 */ {"var230", "undefined"},
/* 231 */ {"var231", "undefined"},
/* 232 */ {"var232", "undefined"},
/* 233 */ {"var233", "undefined"},
/* 234 */ {"var234", "undefined"},
/* 235 */ {"var235", "undefined"},
/* 236 */ {"var236", "undefined"},
/* 237 */ {"var237", "undefined"},
/* 238 */ {"var238", "undefined"},
/* 239 */ {"var239", "undefined"},
/* 240 */ {"var240", "undefined"},
/* 241 */ {"var241", "undefined"},
/* 242 */ {"var242", "undefined"},
/* 243 */ {"var243", "undefined"},
/* 244 */ {"var244", "undefined"},
/* 245 */ {"var245", "undefined"},
/* 246 */ {"var246", "undefined"},
/* 247 */ {"var247", "undefined"},
/* 248 */ {"var248", "undefined"},
/* 249 */ {"var249", "undefined"},
/* 250 */ {"var250", "undefined"},
/* 251 */ {"var251", "undefined"},
/* 252 */ {"var252", "undefined"},
/* 253 */ {"var253", "undefined"},
/* 254 */ {"var254", "undefined"},
/* 255 */ {"var255", "undefined"},
};
const struct ParmTable parm_table_cptec_254[256] = {
/* 0 */ {"var0", "undefined"},
/* 1 */ {"PRES", "Pressure [hPa]"},
/* 2 */ {"psnm", "Pressure reduced to MSL [hPa]"},
/* 3 */ {"tsps", "Pressure tendency [Pa/s]"},
/* 4 */ {"var4", "undefined"},
/* 5 */ {"var5", "undefined"},
/* 6 */ {"geop", "Geopotential [dam]"},
/* 7 */ {"zgeo", "Geopotential height [gpm]"},
/* 8 */ {"gzge", "Geometric height [m]"},
/* 9 */ {"var9", "undefined"},
/* 10 */ {"var10", "undefined"},
/* 11 */ {"temp", "ABSOLUTE TEMPERATURE [K]"},
/* 12 */ {"vtmp", "VIRTUAL TEMPERATURE [K]"},
/* 13 */ {"ptmp", "POTENTIAL TEMPERATURE [K]"},
/* 14 */ {"psat", "PSEUDO-ADIABATIC POTENTIAL TEMPERATURE [K]"},
/* 15 */ {"mxtp", "MAXIMUM TEMPERATURE [K]"},
/* 16 */ {"mntp", "MINIMUM TEMPERATURE [K]"},
/* 17 */ {"tpor", "DEW POINT TEMPERATURE [K]"},
/* 18 */ {"dptd", "DEW POINT DEPRESSION [K]"},
/* 19 */ {"lpsr", "LAPSE RATE [K/m]"},
/* 20 */ {"var20", "undefined"},
/* 21 */ {"rds1", "RADAR SPECTRA(1) [non-dim]"},
/* 22 */ {"rds2", "RADAR SPECTRA(2) [non-dim]"},
/* 23 */ {"rds3", "RADAR SPECTRA(3) [non-dim]"},
/* 24 */ {"var24", "undefined"},
/* 25 */ {"tpan", "TEMPERATURE ANOMALY [K]"},
/* 26 */ {"psan", "PRESSURE ANOMALY [Pa hPa]"},
/* 27 */ {"zgan", "GEOPOT HEIGHT ANOMALY [m]"},
/* 28 */ {"wvs1", "WAVE SPECTRA(1) [non-dim]"},
/* 29 */ {"wvs2", "WAVE SPECTRA(2) [non-dim]"},
/* 30 */ {"wvs3", "WAVE SPECTRA(3) [non-dim]"},
/* 31 */ {"wind", "WIND DIRECTION [deg]"},
/* 32 */ {"wins", "WIND SPEED [m/s]"},
/* 33 */ {"uvel", "ZONAL WIND (U) [m/s]"},
/* 34 */ {"vvel", "MERIDIONAL WIND (V) [m/s]"},
/* 35 */ {"fcor", "STREAM FUNCTION [m2/s]"},
/* 36 */ {"potv", "VELOCITY POTENTIAL [m2/s]"},
/* 37 */ {"var37", "undefined"},
/* 38 */ {"sgvv", "SIGMA COORD VERT VEL [sec/sec]"},
/* 39 */ {"omeg", "OMEGA [Pa/s]"},
/* 40 */ {"omg2", "VERTICAL VELOCITY [m/s]"},
/* 41 */ {"abvo", "ABSOLUTE VORTICITY [10**5/sec]"},
/* 42 */ {"abdv", "ABSOLUTE DIVERGENCE [10**5/sec]"},
/* 43 */ {"vort", "VORTICITY [1/s]"},
/* 44 */ {"divg", "DIVERGENCE [1/s]"},
/* 45 */ {"vucs", "VERTICAL U-COMP SHEAR [1/sec]"},
/* 46 */ {"vvcs", "VERT V-COMP SHEAR [1/sec]"},
/* 47 */ {"dirc", "DIRECTION OF CURRENT [deg]"},
/* 48 */ {"spdc", "SPEED OF CURRENT [m/s]"},
/* 49 */ {"ucpc", "U-COMPONENT OF CURRENT [m/s]"},
/* 50 */ {"vcpc", "V-COMPONENT OF CURRENT [m/s]"},
/* 51 */ {"umes", "SPECIFIC HUMIDITY [kg/kg]"},
/* 52 */ {"umrl", "RELATIVE HUMIDITY [no Dim]"},
/* 53 */ {"hmxr", "HUMIDITY MIXING RATIO [kg/kg]"},
/* 54 */ {"agpl", "INST. PRECIPITABLE WATER [Kg/m2]"},
/* 55 */ {"vapp", "VAPOUR PRESSURE [Pa hpa]"},
/* 56 */ {"sadf", "SATURATION DEFICIT [Pa hPa]"},
/* 57 */ {"evap", "EVAPORATION [Kg/m2/day]"},
/* 58 */ {"var58", "undefined"},
/* 59 */ {"prcr", "PRECIPITATION RATE [kg/m2/day]"},
/* 60 */ {"thpb", "THUNDER PROBABILITY [%]"},
/* 61 */ {"prec", "TOTAL PRECIPITATION [Kg/m2/day]"},
/* 62 */ {"prge", "LARGE SCALE PRECIPITATION [Kg/m2/day]"},
/* 63 */ {"prcv", "CONVECTIVE PRECIPITATION [Kg/m2/day]"},
/* 64 */ {"neve", "SNOWFALL [Kg/m2/day]"},
/* 65 */ {"wenv", "WAT EQUIV ACC SNOW DEPTH [kg/m2]"},
/* 66 */ {"nvde", "SNOW DEPTH [cm]"},
/* 67 */ {"mxld", "MIXED LAYER DEPTH [m cm]"},
/* 68 */ {"tthd", "TRANS THERMOCLINE DEPTH [m cm]"},
/* 69 */ {"mthd", "MAIN THERMOCLINE DEPTH [m cm]"},
/* 70 */ {"mtha", "MAIN THERMOCLINE ANOM [m cm]"},
/* 71 */ {"cbnv", "CLOUD COVER [0-1]"},
/* 72 */ {"cvnv", "CONVECTIVE CLOUD COVER [0-1]"},
/* 73 */ {"lwnv", "LOW CLOUD COVER [0-1]"},
/* 74 */ {"mdnv", "MEDIUM CLOUD COVER [0-1]"},
/* 75 */ {"hinv", "HIGH CLOUD COVER [0-1]"},
/* 76 */ {"wtnv", "CLOUD WATER [kg/m2]"},
/* 77 */ {"bli", "BEST LIFTED INDEX (TO 500 HPA) [K]"},
/* 78 */ {"var78", "undefined"},
/* 79 */ {"var79", "undefined"},
/* 80 */ {"var80", "undefined"},
/* 81 */ {"lsmk", "LAND SEA MASK [0,1]"},
/* 82 */ {"dslm", "DEV SEA_LEV FROM MEAN [m]"},
/* 83 */ {"zorl", "ROUGHNESS LENGTH [m]"},
/* 84 */ {"albe", "ALBEDO [%]"},
/* 85 */ {"dstp", "DEEP SOIL TEMPERATURE [K]"},
/* 86 */ {"soic", "SOIL MOISTURE CONTENT [Kg/m2]"},
/* 87 */ {"vege", "VEGETATION [%]"},
/* 88 */ {"var88", "undefined"},
/* 89 */ {"dens", "DENSITY [kg/m3]"},
/* 90 */ {"var90", "Undefined"},
/* 91 */ {"icec", "ICE CONCENTRATION [fraction]"},
/* 92 */ {"icet", "ICE THICKNESS [m]"},
/* 93 */ {"iced", "DIRECTION OF ICE DRIFT [deg]"},
/* 94 */ {"ices", "SPEED OF ICE DRIFT [m/s]"},
/* 95 */ {"iceu", "U-COMP OF ICE DRIFT [m/s]"},
/* 96 */ {"icev", "V-COMP OF ICE DRIFT [m/s]"},
/* 97 */ {"iceg", "ICE GROWTH [m]"},
/* 98 */ {"icdv", "ICE DIVERGENCE [sec/sec]"},
/* 99 */ {"var99", "undefined"},
/* 100 */ {"shcw", "SIG HGT COM WAVE/SWELL [m]"},
/* 101 */ {"wwdi", "DIRECTION OF WIND WAVE [deg]"},
/* 102 */ {"wwsh", "SIG HGHT OF WIND WAVES [m]"},
/* 103 */ {"wwmp", "MEAN PERIOD WIND WAVES [sec]"},
/* 104 */ {"swdi", "DIRECTION OF SWELL WAVE [deg]"},
/* 105 */ {"swsh", "SIG HEIGHT SWELL WAVES [m]"},
/* 106 */ {"swmp", "MEAN PERIOD SWELL WAVES [sec]"},
/* 107 */ {"prwd", "PRIMARY WAVE DIRECTION [deg]"},
/* 108 */ {"prmp", "PRIM WAVE MEAN PERIOD [s]"},
/* 109 */ {"swdi", "SECOND WAVE DIRECTION [deg]"},
/* 110 */ {"swmp", "SECOND WAVE MEAN PERIOD [s]"},
/* 111 */ {"ocas", "SHORT WAVE ABSORBED AT GROUND [W/m2]"},
/* 112 */ {"slds", "NET LONG WAVE AT BOTTOM [W/m2]"},
/* 113 */ {"nswr", "NET SHORT-WAV RAD(TOP) [W/m2]"},
/* 114 */ {"role", "OUTGOING LONG WAVE AT TOP [W/m2]"},
/* 115 */ {"lwrd", "LONG-WAV RAD [W/m2]"},
/* 116 */ {"swea", "SHORT WAVE ABSORBED BY EARTH/ATMOSPHERE [W/m2]"},
/* 117 */ {"glbr", "GLOBAL RADIATION [W/m2 ]"},
/* 118 */ {"var118", "undefined"},
/* 119 */ {"var119", "undefined"},
/* 120 */ {"var120", "undefined"},
/* 121 */ {"clsf", "LATENT HEAT FLUX FROM SURFACE [W/m2]"},
/* 122 */ {"cssf", "SENSIBLE HEAT FLUX FROM SURFACE [W/m2]"},
/* 123 */ {"blds", "BOUND LAYER DISSIPATION [W/m2]"},
/* 124 */ {"var124", "undefined"},
/* 125 */ {"var125", "undefined"},
/* 126 */ {"var126", "undefined"},
/* 127 */ {"imag", "IMAGE [image^data]"},
/* 128 */ {"tp2m", "2 METRE TEMPERATURE [K]"},
/* 129 */ {"dp2m", "2 METRE DEWPOINT TEMPERATURE [K]"},
/* 130 */ {"u10m", "10 METRE U-WIND COMPONENT [m/s]"},
/* 131 */ {"v10m", "10 METRE V-WIND COMPONENT [m/s]"},
/* 132 */ {"topo", "TOPOGRAPHY [m]"},
/* 133 */ {"gsfp", "GEOMETRIC MEAN SURFACE PRESSURE [hPa]"},
/* 134 */ {"lnsp", "LN SURFACE PRESSURE [hPa]"},
/* 135 */ {"pslc", "SURFACE PRESSURE [hPa]"},
/* 136 */ {"pslm", "M S L PRESSURE (MESINGER METHOD) [hPa]"},
/* 137 */ {"mask", "MASK [-/+]"},
/* 138 */ {"mxwu", "MAXIMUM U-WIND [m/s]"},
/* 139 */ {"mxwv", "MAXIMUM V-WIND [m/s]"},
/* 140 */ {"cape", "CONVECTIVE AVAIL. POT.ENERGY [m2/s2]"},
/* 141 */ {"cine", "CONVECTIVE INHIB. ENERGY [m2/s2]"},
/* 142 */ {"lhcv", "CONVECTIVE LATENT HEATING [K/s]"},
/* 143 */ {"mscv", "CONVECTIVE MOISTURE SOURCE [1/s]"},
/* 144 */ {"scvm", "SHALLOW CONV. MOISTURE SOURCE [1/s]"},
/* 145 */ {"scvh", "SHALLOW CONVECTIVE HEATING [K/s]"},
/* 146 */ {"mxwp", "MAXIMUM WIND PRESS. LVL [hPa]"},
/* 147 */ {"ustr", "STORM MOTION U-COMPONENT [m/s]"},
/* 148 */ {"vstr", "STORM MOTION V-COMPONENT [m/s]"},
/* 149 */ {"cbnt", "MEAN CLOUD COVER [0-1]"},
/* 150 */ {"pcbs", "PRESSURE AT CLOUD BASE [hPa]"},
/* 151 */ {"pctp", "PRESSURE AT CLOUD TOP [hPa]"},
/* 152 */ {"fzht", "FREEZING LEVEL HEIGHT [m]"},
/* 153 */ {"fzrh", "FREEZING LEVEL RELATIVE HUMIDITY [%]"},
/* 154 */ {"fdlt", "FLIGHT LEVELS TEMPERATURE [K]"},
/* 155 */ {"fdlu", "FLIGHT LEVELS U-WIND [m/s]"},
/* 156 */ {"fdlv", "FLIGHT LEVELS V-WIND [m/s]"},
/* 157 */ {"tppp", "TROPOPAUSE PRESSURE [hPa]"},
/* 158 */ {"tppt", "TROPOPAUSE TEMPERATURE [K]"},
/* 159 */ {"tppu", "TROPOPAUSE U-WIND COMPONENT [m/s]"},
/* 160 */ {"tppv", "TROPOPAUSE v-WIND COMPONENT [m/s]"},
/* 161 */ {"var161", "undefined"},
/* 162 */ {"gvdu", "GRAVITY WAVE DRAG DU/DT [m/s2]"},
/* 163 */ {"gvdv", "GRAVITY WAVE DRAG DV/DT [m/s2]"},
/* 164 */ {"gvus", "GRAVITY WAVE DRAG SFC ZONAL STRESS [Pa]"},
/* 165 */ {"gvvs", "GRAVITY WAVE DRAG SFC MERIDIONAL STRESS [Pa]"},
/* 166 */ {"var166", "undefined"},
/* 167 */ {"dvsh", "DIVERGENCE OF SPECIFIC HUMIDITY [1/s]"},
/* 168 */ {"hmfc", "HORIZ. MOISTURE FLUX CONV. [1/s]"},
/* 169 */ {"vmfl", "VERT. INTEGRATED MOISTURE FLUX CONV. [kg/(m2*s)]"},
/* 170 */ {"vadv", "VERTICAL MOISTURE ADVECTION [kg/(kg*s)]"},
/* 171 */ {"nhcm", "NEG. HUM. CORR. MOISTURE SOURCE [kg/(kg*s)]"},
/* 172 */ {"lglh", "LARGE SCALE LATENT HEATING [K/s]"},
/* 173 */ {"lgms", "LARGE SCALE MOISTURE SOURCE [1/s]"},
/* 174 */ {"smav", "SOIL MOISTURE AVAILABILITY [0-1]"},
/* 175 */ {"tgrz", "SOIL TEMPERATURE OF ROOT ZONE [K]"},
/* 176 */ {"bslh", "BARE SOIL LATENT HEAT [Ws/m2]"},
/* 177 */ {"evpp", "POTENTIAL SFC EVAPORATION [m]"},
/* 178 */ {"rnof", "RUNOFF [kg/m2/s)]"},
/* 179 */ {"pitp", "INTERCEPTION LOSS [W/m2]"},
/* 180 */ {"vpca", "VAPOR PRESSURE OF CANOPY AIR SPACE [mb]"},
/* 181 */ {"qsfc", "SURFACE SPEC HUMIDITY [kg/kg]"},
/* 182 */ {"ussl", "SOIL WETNESS OF SURFACE [0-1]"},
/* 183 */ {"uzrs", "SOIL WETNESS OF ROOT ZONE [0-1]"},
/* 184 */ {"uzds", "SOIL WETNESS OF DRAINAGE ZONE [0-1]"},
/* 185 */ {"amdl", "STORAGE ON CANOPY [m]"},
/* 186 */ {"amsl", "STORAGE ON GROUND [m]"},
/* 187 */ {"tsfc", "SURFACE TEMPERATURE [K]"},
/* 188 */ {"tems", "SURFACE ABSOLUTE TEMPERATURE [K]"},
/* 189 */ {"tcas", "TEMPERATURE OF CANOPY AIR SPACE [K]"},
/* 190 */ {"ctmp", "TEMPERATURE AT CANOPY [K]"},
/* 191 */ {"tgsc", "GROUND/SURFACE COVER TEMPERATURE [K]"},
/* 192 */ {"uves", "SURFACE ZONAL WIND (U) [m/s]"},
/* 193 */ {"usst", "SURFACE ZONAL WIND STRESS [Pa]"},
/* 194 */ {"vves", "SURFACE MERIDIONAL WIND (V) [m/s]"},
/* 195 */ {"vsst", "SURFACE MERIDIONAL WIND STRESS [Pa]"},
/* 196 */ {"suvf", "SURFACE MOMENTUM FLUX [W/m2]"},
/* 197 */ {"iswf", "INCIDENT SHORT WAVE FLUX [W/m2]"},
/* 198 */ {"ghfl", "TIME AVE GROUND HT FLX [W/m2]"},
/* 199 */ {"var199", "undefined"},
/* 200 */ {"lwbc", "NET LONG WAVE AT BOTTOM (CLEAR) [W/m2]"},
/* 201 */ {"lwtc", "OUTGOING LONG WAVE AT TOP (CLEAR) [W/m2]"},
/* 202 */ {"swec", "SHORT WV ABSRBD BY EARTH/ATMOS (CLEAR) [W/m2]"},
/* 203 */ {"ocac", "SHORT WAVE ABSORBED AT GROUND (CLEAR) [W/m2]"},
/* 204 */ {"var204", "undefined"},
/* 205 */ {"lwrh", "LONG WAVE RADIATIVE HEATING [K/s]"},
/* 206 */ {"swrh", "SHORT WAVE RADIATIVE HEATING [K/s]"},
/* 207 */ {"olis", "DOWNWARD LONG WAVE AT BOTTOM [W/m2]"},
/* 208 */ {"olic", "DOWNWARD LONG WAVE AT BOTTOM (CLEAR) [W/m2]"},
/* 209 */ {"ocis", "DOWNWARD SHORT WAVE AT GROUND [W/m2]"},
/* 210 */ {"ocic", "DOWNWARD SHORT WAVE AT GROUND (CLEAR) [W/m2]"},
/* 211 */ {"oles", "UPWARD LONG WAVE AT BOTTOM [W/m2]"},
/* 212 */ {"oces", "UPWARD SHORT WAVE AT GROUND [W/m2]"},
/* 213 */ {"swgc", "UPWARD SHORT WAVE AT GROUND (CLEAR) [W/m2]"},
/* 214 */ {"roce", "UPWARD SHORT WAVE AT TOP [W/m2]"},
/* 215 */ {"swtc", "UPWARD SHORT WAVE AT TOP (CLEAR) [W/m2]"},
/* 216 */ {"var216", "undefined"},
/* 217 */ {"var217", "undefined"},
/* 218 */ {"hhdf", "HORIZONTAL HEATING DIFFUSION [K/s]"},
/* 219 */ {"hmdf", "HORIZONTAL MOISTURE DIFFUSION [1/s]"},
/* 220 */ {"hddf", "HORIZONTAL DIVERGENCE DIFFUSION [1/s2]"},
/* 221 */ {"hvdf", "HORIZONTAL VORTICITY DIFFUSION [1/s2]"},
/* 222 */ {"vdms", "VERTICAL DIFF. MOISTURE SOURCE [1/s]"},
/* 223 */ {"vdfu", "VERTICAL DIFFUSION DU/DT [m/s2]"},
/* 224 */ {"vdfv", "VERTICAL DIFFUSION DV/DT [m/s2]"},
/* 225 */ {"vdfh", "VERTICAL DIFFUSION HEATING [K/s]"},
/* 226 */ {"umrs", "SURFACE RELATIVE HUMIDITY [no Dim]"},
/* 227 */ {"vdcc", "VERTICAL DIST TOTAL CLOUD COVER [no Dim]"},
/* 228 */ {"var228", "undefined"},
/* 229 */ {"var229", "undefined"},
/* 230 */ {"usmt", "TIME MEAN SURFACE ZONAL WIND (U) [m/s]"},
/* 231 */ {"vsmt", "TIME MEAN SURFACE MERIDIONAL WIND (V) [m/s]"},
/* 232 */ {"tsmt", "TIME MEAN SURFACE ABSOLUTE TEMPERATURE [K]"},
/* 233 */ {"rsmt", "TIME MEAN SURFACE RELATIVE HUMIDITY [no Dim]"},
/* 234 */ {"atmt", "TIME MEAN ABSOLUTE TEMPERATURE [K]"},
/* 235 */ {"stmt", "TIME MEAN DEEP SOIL TEMPERATURE [K]"},
/* 236 */ {"ommt", "TIME MEAN DERIVED OMEGA [Pa/s]"},
/* 237 */ {"dvmt", "TIME MEAN DIVERGENCE [1/s]"},
/* 238 */ {"zhmt", "TIME MEAN GEOPOTENTIAL HEIGHT [m]"},
/* 239 */ {"lnmt", "TIME MEAN LOG SURFACE PRESSURE [ln(cbar)]"},
/* 240 */ {"mkmt", "TIME MEAN MASK [-/+]"},
/* 241 */ {"vvmt", "TIME MEAN MERIDIONAL WIND (V) [m/s]"},
/* 242 */ {"omtm", "TIME MEAN OMEGA [cbar/s]"},
/* 243 */ {"ptmt", "TIME MEAN POTENTIAL TEMPERATURE [K]"},
/* 244 */ {"pcmt", "TIME MEAN PRECIP. WATER [kg/m2]"},
/* 245 */ {"rhmt", "TIME MEAN RELATIVE HUMIDITY [%]"},
/* 246 */ {"mpmt", "TIME MEAN SEA LEVEL PRESSURE [hPa]"},
/* 247 */ {"simt", "TIME MEAN SIGMADOT [1/s]"},
/* 248 */ {"uemt", "TIME MEAN SPECIFIC HUMIDITY [kg/kg]"},
/* 249 */ {"fcmt", "TIME MEAN STREAM FUNCTION| m2/s]"},
/* 250 */ {"psmt", "TIME MEAN SURFACE PRESSURE [hPa]"},
/* 251 */ {"tmmt", "TIME MEAN SURFACE TEMPERATURE [K]"},
/* 252 */ {"pvmt", "TIME MEAN VELOCITY POTENTIAL [m2/s]"},
/* 253 */ {"tvmt", "TIME MEAN VIRTUAL TEMPERATURE [K]"},
/* 254 */ {"vtmt", "TIME MEAN VORTICITY [1/s]"},
/* 255 */ {"uvmt", "TIME MEAN ZONAL WIND (U) [m/s]"},
};
/*
* support for complex packing
* determine the number of data points in the BDS
* does not handle matrix values
*/
extern int ec_large_grib, len_ec_bds;
int BDS_NValues(unsigned char *bds) {
/* returns number of grid points as determined from the BDS */
int i = 0;
if (BDS_SimplePacking(bds) && BDS_Grid(bds)) {
i = ((BDS_LEN(bds) - BDS_DataStart(bds))*8 -
BDS_UnusedBits(bds)) / (BDS_NumBits(bds));
}
else if (BDS_ComplexPacking(bds) && BDS_Grid(bds)) {
i = BDS_P2(bds);
}
return i;
}
|
the_stack_data/23573939.c | /* -*-c-*- */
/**********************************************************************
thread_win32.c -
$Author: nagachika $
Copyright (C) 2004-2007 Koichi Sasada
**********************************************************************/
#ifdef THREAD_SYSTEM_DEPENDENT_IMPLEMENTATION
#include <process.h>
#define TIME_QUANTUM_USEC (10 * 1000)
#define RB_CONDATTR_CLOCK_MONOTONIC 1 /* no effect */
#undef Sleep
#define native_thread_yield() Sleep(0)
#define unregister_ubf_list(th)
static volatile DWORD ruby_native_thread_key = TLS_OUT_OF_INDEXES;
static int w32_wait_events(HANDLE *events, int count, DWORD timeout, rb_thread_t *th);
static int native_mutex_lock(rb_nativethread_lock_t *lock);
static int native_mutex_unlock(rb_nativethread_lock_t *lock);
static void
w32_error(const char *func)
{
LPVOID lpMsgBuf;
DWORD err = GetLastError();
if (FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER |
FORMAT_MESSAGE_FROM_SYSTEM |
FORMAT_MESSAGE_IGNORE_INSERTS,
NULL,
err,
MAKELANGID(LANG_ENGLISH, SUBLANG_ENGLISH_US),
(LPTSTR) & lpMsgBuf, 0, NULL) == 0)
FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER |
FORMAT_MESSAGE_FROM_SYSTEM |
FORMAT_MESSAGE_IGNORE_INSERTS,
NULL,
err,
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
(LPTSTR) & lpMsgBuf, 0, NULL);
rb_bug("%s: %s", func, (char*)lpMsgBuf);
}
static int
w32_mutex_lock(HANDLE lock)
{
DWORD result;
while (1) {
thread_debug("native_mutex_lock: %p\n", lock);
result = w32_wait_events(&lock, 1, INFINITE, 0);
switch (result) {
case WAIT_OBJECT_0:
/* get mutex object */
thread_debug("acquire mutex: %p\n", lock);
return 0;
case WAIT_OBJECT_0 + 1:
/* interrupt */
errno = EINTR;
thread_debug("acquire mutex interrupted: %p\n", lock);
return 0;
case WAIT_TIMEOUT:
thread_debug("timeout mutex: %p\n", lock);
break;
case WAIT_ABANDONED:
rb_bug("win32_mutex_lock: WAIT_ABANDONED");
break;
default:
rb_bug("win32_mutex_lock: unknown result (%ld)", result);
break;
}
}
return 0;
}
static HANDLE
w32_mutex_create(void)
{
HANDLE lock = CreateMutex(NULL, FALSE, NULL);
if (lock == NULL) {
w32_error("native_mutex_initialize");
}
return lock;
}
#define GVL_DEBUG 0
static void
gvl_acquire(rb_vm_t *vm, rb_thread_t *th)
{
w32_mutex_lock(vm->gvl.lock);
if (GVL_DEBUG) fprintf(stderr, "gvl acquire (%p): acquire\n", th);
}
static void
gvl_release(rb_vm_t *vm)
{
ReleaseMutex(vm->gvl.lock);
}
static void
gvl_yield(rb_vm_t *vm, rb_thread_t *th)
{
gvl_release(th->vm);
native_thread_yield();
gvl_acquire(vm, th);
}
static void
gvl_init(rb_vm_t *vm)
{
if (GVL_DEBUG) fprintf(stderr, "gvl init\n");
vm->gvl.lock = w32_mutex_create();
}
static void
gvl_destroy(rb_vm_t *vm)
{
if (GVL_DEBUG) fprintf(stderr, "gvl destroy\n");
CloseHandle(vm->gvl.lock);
}
static rb_thread_t *
ruby_thread_from_native(void)
{
return TlsGetValue(ruby_native_thread_key);
}
static int
ruby_thread_set_native(rb_thread_t *th)
{
return TlsSetValue(ruby_native_thread_key, th);
}
void
Init_native_thread(void)
{
rb_thread_t *th = GET_THREAD();
ruby_native_thread_key = TlsAlloc();
ruby_thread_set_native(th);
DuplicateHandle(GetCurrentProcess(),
GetCurrentThread(),
GetCurrentProcess(),
&th->thread_id, 0, FALSE, DUPLICATE_SAME_ACCESS);
th->native_thread_data.interrupt_event = CreateEvent(0, TRUE, FALSE, 0);
thread_debug("initial thread (th: %p, thid: %p, event: %p)\n",
th, GET_THREAD()->thread_id,
th->native_thread_data.interrupt_event);
}
static int
w32_wait_events(HANDLE *events, int count, DWORD timeout, rb_thread_t *th)
{
HANDLE *targets = events;
HANDLE intr;
const int initcount = count;
DWORD ret;
thread_debug(" w32_wait_events events:%p, count:%d, timeout:%ld, th:%p\n",
events, count, timeout, th);
if (th && (intr = th->native_thread_data.interrupt_event)) {
if (ResetEvent(intr) && (!RUBY_VM_INTERRUPTED(th) || SetEvent(intr))) {
targets = ALLOCA_N(HANDLE, count + 1);
memcpy(targets, events, sizeof(HANDLE) * count);
targets[count++] = intr;
thread_debug(" * handle: %p (count: %d, intr)\n", intr, count);
}
else if (intr == th->native_thread_data.interrupt_event) {
w32_error("w32_wait_events");
}
}
thread_debug(" WaitForMultipleObjects start (count: %d)\n", count);
ret = WaitForMultipleObjects(count, targets, FALSE, timeout);
thread_debug(" WaitForMultipleObjects end (ret: %lu)\n", ret);
if (ret == (DWORD)(WAIT_OBJECT_0 + initcount) && th) {
errno = EINTR;
}
if (ret == WAIT_FAILED && THREAD_DEBUG) {
int i;
DWORD dmy;
for (i = 0; i < count; i++) {
thread_debug(" * error handle %d - %s\n", i,
GetHandleInformation(targets[i], &dmy) ? "OK" : "NG");
}
}
return ret;
}
static void ubf_handle(void *ptr);
#define ubf_select ubf_handle
int
rb_w32_wait_events_blocking(HANDLE *events, int num, DWORD timeout)
{
return w32_wait_events(events, num, timeout, ruby_thread_from_native());
}
int
rb_w32_wait_events(HANDLE *events, int num, DWORD timeout)
{
int ret;
BLOCKING_REGION(ret = rb_w32_wait_events_blocking(events, num, timeout),
ubf_handle, ruby_thread_from_native(), FALSE);
return ret;
}
static void
w32_close_handle(HANDLE handle)
{
if (CloseHandle(handle) == 0) {
w32_error("w32_close_handle");
}
}
static void
w32_resume_thread(HANDLE handle)
{
if (ResumeThread(handle) == (DWORD)-1) {
w32_error("w32_resume_thread");
}
}
#ifdef _MSC_VER
#define HAVE__BEGINTHREADEX 1
#else
#undef HAVE__BEGINTHREADEX
#endif
#ifdef HAVE__BEGINTHREADEX
#define start_thread (HANDLE)_beginthreadex
#define thread_errno errno
typedef unsigned long (__stdcall *w32_thread_start_func)(void*);
#else
#define start_thread CreateThread
#define thread_errno rb_w32_map_errno(GetLastError())
typedef LPTHREAD_START_ROUTINE w32_thread_start_func;
#endif
static HANDLE
w32_create_thread(DWORD stack_size, w32_thread_start_func func, void *val)
{
return start_thread(0, stack_size, func, val, CREATE_SUSPENDED, 0);
}
int
rb_w32_sleep(unsigned long msec)
{
return w32_wait_events(0, 0, msec, ruby_thread_from_native());
}
int WINAPI
rb_w32_Sleep(unsigned long msec)
{
int ret;
BLOCKING_REGION(ret = rb_w32_sleep(msec),
ubf_handle, ruby_thread_from_native(), FALSE);
return ret;
}
static void
native_sleep(rb_thread_t *th, struct timeval *tv)
{
const volatile DWORD msec = (tv) ?
(DWORD)(tv->tv_sec * 1000 + tv->tv_usec / 1000) : INFINITE;
GVL_UNLOCK_BEGIN();
{
DWORD ret;
native_mutex_lock(&th->interrupt_lock);
th->unblock.func = ubf_handle;
th->unblock.arg = th;
native_mutex_unlock(&th->interrupt_lock);
if (RUBY_VM_INTERRUPTED(th)) {
/* interrupted. return immediate */
}
else {
thread_debug("native_sleep start (%lu)\n", msec);
ret = w32_wait_events(0, 0, msec, th);
thread_debug("native_sleep done (%lu)\n", ret);
}
native_mutex_lock(&th->interrupt_lock);
th->unblock.func = 0;
th->unblock.arg = 0;
native_mutex_unlock(&th->interrupt_lock);
}
GVL_UNLOCK_END();
}
static int
native_mutex_lock(rb_nativethread_lock_t *lock)
{
#if USE_WIN32_MUTEX
w32_mutex_lock(lock->mutex);
#else
EnterCriticalSection(&lock->crit);
#endif
return 0;
}
static int
native_mutex_unlock(rb_nativethread_lock_t *lock)
{
#if USE_WIN32_MUTEX
thread_debug("release mutex: %p\n", lock->mutex);
return ReleaseMutex(lock->mutex);
#else
LeaveCriticalSection(&lock->crit);
return 0;
#endif
}
static int
native_mutex_trylock(rb_nativethread_lock_t *lock)
{
#if USE_WIN32_MUTEX
int result;
thread_debug("native_mutex_trylock: %p\n", lock->mutex);
result = w32_wait_events(&lock->mutex, 1, 1, 0);
thread_debug("native_mutex_trylock result: %d\n", result);
switch (result) {
case WAIT_OBJECT_0:
return 0;
case WAIT_TIMEOUT:
return EBUSY;
}
return EINVAL;
#else
return TryEnterCriticalSection(&lock->crit) == 0;
#endif
}
static void
native_mutex_initialize(rb_nativethread_lock_t *lock)
{
#if USE_WIN32_MUTEX
lock->mutex = w32_mutex_create();
/* thread_debug("initialize mutex: %p\n", lock->mutex); */
#else
InitializeCriticalSection(&lock->crit);
#endif
}
static void
native_mutex_destroy(rb_nativethread_lock_t *lock)
{
#if USE_WIN32_MUTEX
w32_close_handle(lock->mutex);
#else
DeleteCriticalSection(&lock->crit);
#endif
}
struct cond_event_entry {
struct cond_event_entry* next;
struct cond_event_entry* prev;
HANDLE event;
};
static void
native_cond_signal(rb_nativethread_cond_t *cond)
{
/* cond is guarded by mutex */
struct cond_event_entry *e = cond->next;
struct cond_event_entry *head = (struct cond_event_entry*)cond;
if (e != head) {
struct cond_event_entry *next = e->next;
struct cond_event_entry *prev = e->prev;
prev->next = next;
next->prev = prev;
e->next = e->prev = e;
SetEvent(e->event);
}
}
static void
native_cond_broadcast(rb_nativethread_cond_t *cond)
{
/* cond is guarded by mutex */
struct cond_event_entry *e = cond->next;
struct cond_event_entry *head = (struct cond_event_entry*)cond;
while (e != head) {
struct cond_event_entry *next = e->next;
struct cond_event_entry *prev = e->prev;
SetEvent(e->event);
prev->next = next;
next->prev = prev;
e->next = e->prev = e;
e = next;
}
}
static int
native_cond_timedwait_ms(rb_nativethread_cond_t *cond, rb_nativethread_lock_t *mutex, unsigned long msec)
{
DWORD r;
struct cond_event_entry entry;
struct cond_event_entry *head = (struct cond_event_entry*)cond;
entry.event = CreateEvent(0, FALSE, FALSE, 0);
/* cond is guarded by mutex */
entry.next = head;
entry.prev = head->prev;
head->prev->next = &entry;
head->prev = &entry;
native_mutex_unlock(mutex);
{
r = WaitForSingleObject(entry.event, msec);
if ((r != WAIT_OBJECT_0) && (r != WAIT_TIMEOUT)) {
rb_bug("native_cond_wait: WaitForSingleObject returns %lu", r);
}
}
native_mutex_lock(mutex);
entry.prev->next = entry.next;
entry.next->prev = entry.prev;
w32_close_handle(entry.event);
return (r == WAIT_OBJECT_0) ? 0 : ETIMEDOUT;
}
static int
native_cond_wait(rb_nativethread_cond_t *cond, rb_nativethread_lock_t *mutex)
{
return native_cond_timedwait_ms(cond, mutex, INFINITE);
}
static unsigned long
abs_timespec_to_timeout_ms(const struct timespec *ts)
{
struct timeval tv;
struct timeval now;
gettimeofday(&now, NULL);
tv.tv_sec = ts->tv_sec;
tv.tv_usec = ts->tv_nsec / 1000;
if (!rb_w32_time_subtract(&tv, &now))
return 0;
return (tv.tv_sec * 1000) + (tv.tv_usec / 1000);
}
static int
native_cond_timedwait(rb_nativethread_cond_t *cond, rb_nativethread_lock_t *mutex, const struct timespec *ts)
{
unsigned long timeout_ms;
timeout_ms = abs_timespec_to_timeout_ms(ts);
if (!timeout_ms)
return ETIMEDOUT;
return native_cond_timedwait_ms(cond, mutex, timeout_ms);
}
static struct timespec
native_cond_timeout(rb_nativethread_cond_t *cond, struct timespec timeout_rel)
{
int ret;
struct timeval tv;
struct timespec timeout;
struct timespec now;
ret = gettimeofday(&tv, 0);
if (ret != 0)
rb_sys_fail(0);
now.tv_sec = tv.tv_sec;
now.tv_nsec = tv.tv_usec * 1000;
timeout.tv_sec = now.tv_sec;
timeout.tv_nsec = now.tv_nsec;
timeout.tv_sec += timeout_rel.tv_sec;
timeout.tv_nsec += timeout_rel.tv_nsec;
if (timeout.tv_nsec >= 1000*1000*1000) {
timeout.tv_sec++;
timeout.tv_nsec -= 1000*1000*1000;
}
if (timeout.tv_sec < now.tv_sec)
timeout.tv_sec = TIMET_MAX;
return timeout;
}
static void
native_cond_initialize(rb_nativethread_cond_t *cond, int flags)
{
cond->next = (struct cond_event_entry *)cond;
cond->prev = (struct cond_event_entry *)cond;
}
static void
native_cond_destroy(rb_nativethread_cond_t *cond)
{
/* */
}
void
ruby_init_stack(volatile VALUE *addr)
{
}
#define CHECK_ERR(expr) \
{if (!(expr)) {rb_bug("err: %lu - %s", GetLastError(), #expr);}}
static void
native_thread_init_stack(rb_thread_t *th)
{
MEMORY_BASIC_INFORMATION mi;
char *base, *end;
DWORD size, space;
CHECK_ERR(VirtualQuery(&mi, &mi, sizeof(mi)));
base = mi.AllocationBase;
end = mi.BaseAddress;
end += mi.RegionSize;
size = end - base;
space = size / 5;
if (space > 1024*1024) space = 1024*1024;
th->machine.stack_start = (VALUE *)end - 1;
th->machine.stack_maxsize = size - space;
}
#ifndef InterlockedExchangePointer
#define InterlockedExchangePointer(t, v) \
(void *)InterlockedExchange((long *)(t), (long)(v))
#endif
static void
native_thread_destroy(rb_thread_t *th)
{
HANDLE intr = InterlockedExchangePointer(&th->native_thread_data.interrupt_event, 0);
thread_debug("close handle - intr: %p, thid: %p\n", intr, th->thread_id);
w32_close_handle(intr);
}
static unsigned long __stdcall
thread_start_func_1(void *th_ptr)
{
rb_thread_t *th = th_ptr;
volatile HANDLE thread_id = th->thread_id;
native_thread_init_stack(th);
th->native_thread_data.interrupt_event = CreateEvent(0, TRUE, FALSE, 0);
/* run */
thread_debug("thread created (th: %p, thid: %p, event: %p)\n", th,
th->thread_id, th->native_thread_data.interrupt_event);
thread_start_func_2(th, th->machine.stack_start, rb_ia64_bsp());
w32_close_handle(thread_id);
thread_debug("thread deleted (th: %p)\n", th);
return 0;
}
static int
native_thread_create(rb_thread_t *th)
{
size_t stack_size = 4 * 1024; /* 4KB is the minimum commit size */
th->thread_id = w32_create_thread(stack_size, thread_start_func_1, th);
if ((th->thread_id) == 0) {
return thread_errno;
}
w32_resume_thread(th->thread_id);
if (THREAD_DEBUG) {
Sleep(0);
thread_debug("create: (th: %p, thid: %p, intr: %p), stack size: %"PRIuSIZE"\n",
th, th->thread_id,
th->native_thread_data.interrupt_event, stack_size);
}
return 0;
}
static void
native_thread_join(HANDLE th)
{
w32_wait_events(&th, 1, INFINITE, 0);
}
#if USE_NATIVE_THREAD_PRIORITY
static void
native_thread_apply_priority(rb_thread_t *th)
{
int priority = th->priority;
if (th->priority > 0) {
priority = THREAD_PRIORITY_ABOVE_NORMAL;
}
else if (th->priority < 0) {
priority = THREAD_PRIORITY_BELOW_NORMAL;
}
else {
priority = THREAD_PRIORITY_NORMAL;
}
SetThreadPriority(th->thread_id, priority);
}
#endif /* USE_NATIVE_THREAD_PRIORITY */
int rb_w32_select_with_thread(int, fd_set *, fd_set *, fd_set *, struct timeval *, void *); /* @internal */
static int
native_fd_select(int n, rb_fdset_t *readfds, rb_fdset_t *writefds, rb_fdset_t *exceptfds, struct timeval *timeout, rb_thread_t *th)
{
fd_set *r = NULL, *w = NULL, *e = NULL;
if (readfds) {
rb_fd_resize(n - 1, readfds);
r = rb_fd_ptr(readfds);
}
if (writefds) {
rb_fd_resize(n - 1, writefds);
w = rb_fd_ptr(writefds);
}
if (exceptfds) {
rb_fd_resize(n - 1, exceptfds);
e = rb_fd_ptr(exceptfds);
}
return rb_w32_select_with_thread(n, r, w, e, timeout, th);
}
/* @internal */
int
rb_w32_check_interrupt(rb_thread_t *th)
{
return w32_wait_events(0, 0, 0, th);
}
static void
ubf_handle(void *ptr)
{
rb_thread_t *th = (rb_thread_t *)ptr;
thread_debug("ubf_handle: %p\n", th);
if (!SetEvent(th->native_thread_data.interrupt_event)) {
w32_error("ubf_handle");
}
}
static struct {
HANDLE id;
HANDLE lock;
} timer_thread;
#define TIMER_THREAD_CREATED_P() (timer_thread.id != 0)
static unsigned long __stdcall
timer_thread_func(void *dummy)
{
thread_debug("timer_thread\n");
while (WaitForSingleObject(timer_thread.lock, TIME_QUANTUM_USEC/1000) ==
WAIT_TIMEOUT) {
timer_thread_function(dummy);
}
thread_debug("timer killed\n");
return 0;
}
void
rb_thread_wakeup_timer_thread(void)
{
/* do nothing */
}
static void
rb_thread_create_timer_thread(void)
{
if (timer_thread.id == 0) {
if (!timer_thread.lock) {
timer_thread.lock = CreateEvent(0, TRUE, FALSE, 0);
}
timer_thread.id = w32_create_thread(1024 + (THREAD_DEBUG ? BUFSIZ : 0),
timer_thread_func, 0);
w32_resume_thread(timer_thread.id);
}
}
static int
native_stop_timer_thread(void)
{
int stopped = --system_working <= 0;
if (stopped) {
SetEvent(timer_thread.lock);
native_thread_join(timer_thread.id);
CloseHandle(timer_thread.lock);
timer_thread.lock = 0;
}
return stopped;
}
static void
native_reset_timer_thread(void)
{
if (timer_thread.id) {
CloseHandle(timer_thread.id);
timer_thread.id = 0;
}
}
int
ruby_stack_overflowed_p(const rb_thread_t *th, const void *addr)
{
return rb_thread_raised_p(th, RAISED_STACKOVERFLOW);
}
#if defined(__MINGW32__)
LONG WINAPI
rb_w32_stack_overflow_handler(struct _EXCEPTION_POINTERS *exception)
{
if (exception->ExceptionRecord->ExceptionCode == EXCEPTION_STACK_OVERFLOW) {
rb_thread_raised_set(GET_THREAD(), RAISED_STACKOVERFLOW);
raise(SIGSEGV);
}
return EXCEPTION_CONTINUE_SEARCH;
}
#endif
#ifdef RUBY_ALLOCA_CHKSTK
void
ruby_alloca_chkstk(size_t len, void *sp)
{
if (ruby_stack_length(NULL) * sizeof(VALUE) >= len) {
rb_thread_t *th = GET_THREAD();
if (!rb_thread_raised_p(th, RAISED_STACKOVERFLOW)) {
rb_thread_raised_set(th, RAISED_STACKOVERFLOW);
rb_exc_raise(sysstack_error);
}
}
}
#endif
int
rb_reserved_fd_p(int fd)
{
return 0;
}
rb_nativethread_id_t
rb_nativethread_self(void)
{
return GetCurrentThread();
}
static void
native_set_thread_name(rb_thread_t *th)
{
}
#endif /* THREAD_SYSTEM_DEPENDENT_IMPLEMENTATION */
|
the_stack_data/206392737.c | /*
* main default entry point for exe files
*
* Copyright 2005 Alexandre Julliard
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#if 0
#pragma makedep implib
#endif
#ifdef __MINGW32__
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
int __cdecl main( int argc, char *argv[] )
{
STARTUPINFOA info;
char *cmdline = GetCommandLineA();
int bcount = 0;
BOOL in_quotes = FALSE;
while (*cmdline)
{
if ((*cmdline == '\t' || *cmdline == ' ') && !in_quotes) break;
else if (*cmdline == '\\') bcount++;
else if (*cmdline == '\"')
{
if (!(bcount & 1)) in_quotes = !in_quotes;
bcount = 0;
}
else bcount = 0;
cmdline++;
}
while (*cmdline == '\t' || *cmdline == ' ') cmdline++;
GetStartupInfoA( &info );
if (!(info.dwFlags & STARTF_USESHOWWINDOW)) info.wShowWindow = SW_SHOWNORMAL;
return WinMain( GetModuleHandleA(0), 0, cmdline, info.wShowWindow );
}
#endif
|
the_stack_data/1268336.c | #include <stdio.h>
int main(int argc, char *argv[]) {
printf("hello world\n");
return 0;
}
|
the_stack_data/141.c | #include "memory.h"
/*@ behavior zero_bytes_requested:
@ assumes size == 0;
@ allocates \nothing;
@ ensures \result == \null;
@ behavior error:
@ assumes size > 0;
@ assumes !allocable(size);
@ allocates \nothing;
@ ensures \result == \null;
@ behavior default:
@ assumes size > 0;
@ assumes allocable(size);
@ allocates \result;
@ ensures \fresh(\result, size);
@ complete behaviors;
@ disjoint behaviors;
@*/
void* alloc(size_t size) {
/* C standard doesn't specify what to do with malloc(0) */
if (0 == size) {
return NULL;
} else {
//@ assert size > 0;
return malloc(size);
}
}
|
the_stack_data/57771.c | #if defined(__wasm__) && !defined(__wasi__)
#include "rsmimpl.h"
/*
This code has been derived from the musl project and is licensed as followed (MIT)
Copyright © 2005-2020 Rich Felker, et al.
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
_Pragma("GCC diagnostic ignored \"-Wimplicit-fallthrough\"")
_Pragma("GCC diagnostic ignored \"-Wshift-op-parentheses\"")
typedef usize size_t;
typedef usize off_t;
typedef usize uintmax_t;
typedef isize intmax_t;
typedef intptr ptrdiff_t;
typedef uintptr uintptr_t;
typedef u32 uint32_t;
typedef u16 uint16_t;
typedef u64 uint64_t;
typedef __WCHAR_TYPE__ wchar_t;
typedef struct _IO_FILE FILE;
#define INT_MAX I32_MAX
#define ULONG_MAX USIZE_MAX
#define INTMAX_MAX ISIZE_MAX
#define hidden __attribute__((__visibility__("hidden")))
// #define weak __attribute__((__weak__))
// #define weak_alias(old, new) \
// extern __typeof(old) new __attribute__((__weak__, __alias__(#old)))
#undef EOF
#define EOF (-1)
// errno
static int errno = 0;
#define EINVAL 22
#define EOVERFLOW 75
#define EILSEQ 84
#define __LITTLE_ENDIAN 1234
#define __BYTE_ORDER __LITTLE_ENDIAN
static void *memchr(const void *src, int c, size_t n) {
const unsigned char *s = src;
c = (unsigned char)c;
for (; n && *s != c; s++, n--);
return n ? (void *)s : 0;
}
static size_t strnlen(const char *s, size_t n)
{
const char *p = memchr(s, 0, n);
return p ? p-s : n;
}
// ---
// typedef u64 rep_t;
// typedef i64 srep_t;
// typedef double fp_t;
// #define REP_C UINT64_C
// #define significandBits 52
// //===-- lib/comparetf2.c - Quad-precision comparisons -------------*- C -*-===//
// //
// // The LLVM Compiler Infrastructure
// //
// // This file is dual licensed under the MIT and the University of Illinois Open
// // Source Licenses. See LICENSE.TXT for details.
// //
// //===----------------------------------------------------------------------===//
// //
// // // This file implements the following soft-float comparison routines:
// //
// // __eqtf2 __getf2 __unordtf2
// // __letf2 __gttf2
// // __lttf2
// // __netf2
// //
// // The semantics of the routines grouped in each column are identical, so there
// // is a single implementation for each, and wrappers to provide the other names.
// //
// // The main routines behave as follows:
// //
// // __letf2(a,b) returns -1 if a < b
// // 0 if a == b
// // 1 if a > b
// // 1 if either a or b is NaN
// //
// // __getf2(a,b) returns -1 if a < b
// // 0 if a == b
// // 1 if a > b
// // -1 if either a or b is NaN
// //
// // __unordtf2(a,b) returns 0 if both a and b are numbers
// // 1 if either a or b is NaN
// //
// // Note that __letf2( ) and __getf2( ) are identical except in their handling of
// // NaN values.
// //
// //===----------------------------------------------------------------------===//
// // #define QUAD_PRECISION
// enum LE_RESULT {
// LE_LESS = -1,
// LE_EQUAL = 0,
// LE_GREATER = 1,
// LE_UNORDERED = 1
// };
// enum LE_RESULT __letf2(fp_t a, fp_t b) {
// const srep_t aInt = toRep(a);
// const srep_t bInt = toRep(b);
// const rep_t aAbs = aInt & absMask;
// const rep_t bAbs = bInt & absMask;
// // If either a or b is NaN, they are unordered.
// if (aAbs > infRep || bAbs > infRep) return LE_UNORDERED;
// // If a and b are both zeros, they are equal.
// if ((aAbs | bAbs) == 0) return LE_EQUAL;
// // If at least one of a and b is positive, we get the same result comparing
// // a and b as signed integers as we would with a floating-point compare.
// if ((aInt & bInt) >= 0) {
// if (aInt < bInt) return LE_LESS;
// else if (aInt == bInt) return LE_EQUAL;
// else return LE_GREATER;
// }
// else {
// // Otherwise, both are negative, so we need to flip the sense of the
// // comparison to get the correct result. (This assumes a twos- or ones-
// // complement integer representation; if integers are represented in a
// // sign-magnitude representation, then this flip is incorrect).
// if (aInt > bInt) return LE_LESS;
// else if (aInt == bInt) return LE_EQUAL;
// else return LE_GREATER;
// }
// }
// enum GE_RESULT {
// GE_LESS = -1,
// GE_EQUAL = 0,
// GE_GREATER = 1,
// GE_UNORDERED = -1 // Note: different from LE_UNORDERED
// };
// enum GE_RESULT __getf2(fp_t a, fp_t b) {
// const srep_t aInt = toRep(a);
// const srep_t bInt = toRep(b);
// const rep_t aAbs = aInt & absMask;
// const rep_t bAbs = bInt & absMask;
// if (aAbs > infRep || bAbs > infRep) return GE_UNORDERED;
// if ((aAbs | bAbs) == 0) return GE_EQUAL;
// if ((aInt & bInt) >= 0) {
// if (aInt < bInt) return GE_LESS;
// else if (aInt == bInt) return GE_EQUAL;
// else return GE_GREATER;
// } else {
// if (aInt > bInt) return GE_LESS;
// else if (aInt == bInt) return GE_EQUAL;
// else return GE_GREATER;
// }
// }
// int __unordtf2(fp_t a, fp_t b) {
// const rep_t aAbs = toRep(a) & absMask;
// const rep_t bAbs = toRep(b) & absMask;
// return aAbs > infRep || bAbs > infRep;
// }
// // The following are alternative names for the preceding routines.
// enum LE_RESULT __eqtf2(fp_t a, fp_t b) {
// return __letf2(a, b);
// }
// enum LE_RESULT __lttf2(fp_t a, fp_t b) {
// return __letf2(a, b);
// }
// enum LE_RESULT __netf2(fp_t a, fp_t b) {
// return __letf2(a, b);
// }
// enum GE_RESULT __gttf2(fp_t a, fp_t b) {
// return __getf2(a, b);
// }
// --- arch/x86_64/bits/float.h (matches wasm ... I think)
// #ifdef __FLT_EVAL_METHOD__
// #define FLT_EVAL_METHOD __FLT_EVAL_METHOD__
// #else
// #define FLT_EVAL_METHOD 0
// #endif
// #define LDBL_TRUE_MIN 3.6451995318824746025e-4951L
// #define LDBL_MIN 3.3621031431120935063e-4932L
// #define LDBL_MAX 1.1897314953572317650e+4932L
// #define LDBL_EPSILON 1.0842021724855044340e-19L
#define LDBL_MANT_DIG 64
// #define LDBL_MIN_EXP (-16381)
// #define LDBL_MAX_EXP 16384
// #define LDBL_DIG 18
// #define LDBL_MIN_10_EXP (-4931)
// #define LDBL_MAX_10_EXP 4932
// #define DECIMAL_DIG 21
// --- include/limits.h
#define NL_ARGMAX 9
// --- multibyte/wctomb.c
#define IS_CODEUNIT(c) ((unsigned)(c)-0xdf80 < 0x80)
#define MB_CUR_MAX 4 // (CURRENT_UTF8 ? 4 : 1)
static size_t wcrtomb(char *restrict s, wchar_t wc/*, mbstate_t *restrict st*/)
{
if (!s) return 1;
if ((unsigned)wc < 0x80) {
*s = wc;
return 1;
} else if (MB_CUR_MAX == 1) {
if (!IS_CODEUNIT(wc)) {
errno = EILSEQ;
return -1;
}
*s = wc;
return 1;
} else if ((unsigned)wc < 0x800) {
*s++ = 0xc0 | (wc>>6);
*s = 0x80 | (wc&0x3f);
return 2;
} else if ((unsigned)wc < 0xd800 || (unsigned)wc-0xe000 < 0x2000) {
*s++ = 0xe0 | (wc>>12);
*s++ = 0x80 | ((wc>>6)&0x3f);
*s = 0x80 | (wc&0x3f);
return 3;
} else if ((unsigned)wc-0x10000 < 0x100000) {
*s++ = 0xf0 | (wc>>18);
*s++ = 0x80 | ((wc>>12)&0x3f);
*s++ = 0x80 | ((wc>>6)&0x3f);
*s = 0x80 | (wc&0x3f);
return 4;
}
errno = EILSEQ;
return -1;
}
static int wctomb(char *s, wchar_t wc)
{
if (!s) return 0;
return wcrtomb(s, wc);
}
// --- internal/stdio_impl.h
#define UNGET 8
// #define FFINALLOCK(f) ((f)->lock>=0 ? __lockfile((f)) : 0)
#define FLOCK(f) // int __need_unlock = ((f)->lock>=0 ? __lockfile((f)) : 0)
#define FUNLOCK(f) // do { if (__need_unlock) __unlockfile((f)); } while (0)
#define F_PERM 1
#define F_NORD 4
#define F_NOWR 8
#define F_EOF 16
#define F_ERR 32
#define F_SVB 64
#define F_APP 128
struct _IO_FILE {
unsigned flags;
unsigned char *rpos, *rend;
int (*close)(FILE *);
unsigned char *wend, *wpos;
unsigned char *mustbezero_1;
unsigned char *wbase;
size_t (*read)(FILE *, unsigned char *, size_t);
size_t (*write)(FILE *, const unsigned char *, size_t);
off_t (*seek)(FILE *, off_t, int);
unsigned char *buf;
size_t buf_size;
FILE *prev, *next;
int fd;
int pipe_pid;
long lockcount;
int mode;
volatile int lock;
int lbf;
void *cookie;
off_t off;
char *getln_buf;
void *mustbezero_2;
unsigned char *shend;
off_t shlim, shcnt;
FILE *prev_locked, *next_locked;
struct __locale_struct *locale;
};
// extern hidden FILE *volatile __stdin_used;
// extern hidden FILE *volatile __stdout_used;
// extern hidden FILE *volatile __stderr_used;
// hidden int __lockfile(FILE *);
// hidden void __unlockfile(FILE *);
// hidden size_t __stdio_read(FILE *, unsigned char *, size_t);
// hidden size_t __stdio_write(FILE *, const unsigned char *, size_t);
// hidden size_t __stdout_write(FILE *, const unsigned char *, size_t);
// hidden off_t __stdio_seek(FILE *, off_t, int);
// hidden int __stdio_close(FILE *);
// hidden int __toread(FILE *);
// hidden int __towrite(FILE *);
static int __towrite(FILE *f)
{
f->mode |= f->mode-1;
if (f->flags & F_NOWR) {
f->flags |= F_ERR;
return EOF;
}
/* Clear read buffer (easier than summoning nasal demons) */
f->rpos = f->rend = 0;
/* Activate write through the buffer. */
f->wpos = f->wbase = f->buf;
f->wend = f->buf + f->buf_size;
return 0;
}
// hidden void __stdio_exit(void);
// hidden void __stdio_exit_needed(void);
// #if defined(__PIC__) && (100*__GNUC__+__GNUC_MINOR__ >= 303)
// __attribute__((visibility("protected")))
// #endif
// int __overflow(FILE *, int), __uflow(FILE *);
// hidden int __fseeko(FILE *, off_t, int);
// hidden int __fseeko_unlocked(FILE *, off_t, int);
// hidden off_t __ftello(FILE *);
// hidden off_t __ftello_unlocked(FILE *);
// hidden size_t __fwritex(const unsigned char *, size_t, FILE *);
static size_t __fwritex(const unsigned char *restrict s, size_t l, FILE *restrict f)
{
size_t i=0;
if (!f->wend && __towrite(f)) return 0;
if (l > (size_t)(f->wend - f->wpos)) return f->write(f, s, l);
if (f->lbf >= 0) {
/* Match /^(.*\n|)/ */
for (i=l; i && s[i-1] != '\n'; i--);
if (i) {
size_t n = f->write(f, s, i);
if (n < i) return n;
s += i;
l -= i;
}
}
memcpy(f->wpos, s, l);
f->wpos += l;
return l+i;
}
// hidden int __putc_unlocked(int, FILE *);
// hidden FILE *__fdopen(int, const char *);
// hidden int __fmodeflags(const char *);
// hidden FILE *__ofl_add(FILE *f);
// hidden FILE **__ofl_lock(void);
// hidden void __ofl_unlock(void);
// struct __pthread;
// hidden void __register_locked_file(FILE *, struct __pthread *);
// hidden void __unlist_locked_file(FILE *);
// hidden void __do_orphaned_stdio_locks(void);
// #define MAYBE_WAITERS 0x40000000
// hidden void __getopt_msg(const char *, const char *, const char *, size_t);
// #define feof(f) ((f)->flags & F_EOF)
// #define ferror(f) ((f)->flags & F_ERR)
// #define getc_unlocked(f) \
// ( ((f)->rpos != (f)->rend) ? *(f)->rpos++ : __uflow((f)) )
// #define putc_unlocked(c, f) \
// ( (((unsigned char)(c)!=(f)->lbf && (f)->wpos!=(f)->wend)) \
// ? *(f)->wpos++ = (unsigned char)(c) \
// : __overflow((f),(unsigned char)(c)) )
// /* Caller-allocated FILE * operations */
// hidden FILE *__fopen_rb_ca(const char *, FILE *, unsigned char *, size_t);
// hidden int __fclose_ca(FILE *);
// --- vfprintf.c
/* Convenient bit representation for modifier flags, which all fall
* within 31 codepoints of the space character. */
#define ALT_FORM (1U << ('#'-' '))
#define ZERO_PAD (1U << ('0'-' '))
#define LEFT_ADJ (1U << ('-'-' '))
#define PAD_POS (1U << (' '-' '))
#define MARK_POS (1U << ('+'-' '))
#define GROUPED (1U << ('\''-' '))
#define FLAGMASK (ALT_FORM|ZERO_PAD|LEFT_ADJ|PAD_POS|MARK_POS|GROUPED)
/* State machine to accept length modifiers + conversion specifiers.
* Result is 0 on failure, or an argument type to pop on success. */
enum {
BARE, LPRE, LLPRE, HPRE, HHPRE, BIGLPRE,
ZTPRE, JPRE,
STOP,
PTR, INT, UINT, ULLONG,
LONG, ULONG,
SHORT, USHORT, CHAR, UCHAR,
LLONG, SIZET, IMAX, UMAX, PDIFF, UIPTR,
// DBL, LDBL,
NOARG,
MAXSTATE
};
#define S(x) [(x)-'A']
static const unsigned char states[]['z'-'A'+1] = {
{ /* 0: bare types */
S('d') = INT, S('i') = INT,
S('o') = UINT, S('u') = UINT, S('x') = UINT, S('X') = UINT,
// S('e') = DBL, S('f') = DBL, S('g') = DBL, S('a') = DBL,
// S('E') = DBL, S('F') = DBL, S('G') = DBL, S('A') = DBL,
S('c') = CHAR, S('C') = INT,
S('s') = PTR, S('S') = PTR, S('p') = UIPTR, S('n') = PTR,
S('m') = NOARG,
S('l') = LPRE, S('h') = HPRE, S('L') = BIGLPRE,
S('z') = ZTPRE, S('j') = JPRE, S('t') = ZTPRE,
}, { /* 1: l-prefixed */
S('d') = LONG, S('i') = LONG,
S('o') = ULONG, S('u') = ULONG, S('x') = ULONG, S('X') = ULONG,
// S('e') = DBL, S('f') = DBL, S('g') = DBL, S('a') = DBL,
// S('E') = DBL, S('F') = DBL, S('G') = DBL, S('A') = DBL,
S('c') = INT, S('s') = PTR, S('n') = PTR,
S('l') = LLPRE,
}, { /* 2: ll-prefixed */
S('d') = LLONG, S('i') = LLONG,
S('o') = ULLONG, S('u') = ULLONG,
S('x') = ULLONG, S('X') = ULLONG,
S('n') = PTR,
}, { /* 3: h-prefixed */
S('d') = SHORT, S('i') = SHORT,
S('o') = USHORT, S('u') = USHORT,
S('x') = USHORT, S('X') = USHORT,
S('n') = PTR,
S('h') = HHPRE,
}, { /* 4: hh-prefixed */
S('d') = CHAR, S('i') = CHAR,
S('o') = UCHAR, S('u') = UCHAR,
S('x') = UCHAR, S('X') = UCHAR,
S('n') = PTR,
}, { /* 5: L-prefixed */
// S('e') = LDBL, S('f') = LDBL, S('g') = LDBL, S('a') = LDBL,
// S('E') = LDBL, S('F') = LDBL, S('G') = LDBL, S('A') = LDBL,
S('n') = PTR,
}, { /* 6: z- or t-prefixed (assumed to be same size) */
S('d') = PDIFF, S('i') = PDIFF,
S('o') = SIZET, S('u') = SIZET,
S('x') = SIZET, S('X') = SIZET,
S('n') = PTR,
}, { /* 7: j-prefixed */
S('d') = IMAX, S('i') = IMAX,
S('o') = UMAX, S('u') = UMAX,
S('x') = UMAX, S('X') = UMAX,
S('n') = PTR,
}
};
#define OOB(x) ((unsigned)(x)-'A' > 'z'-'A')
union arg
{
uintmax_t i;
// long double f;
void *p;
};
static void pop_arg(union arg *arg, int type, va_list *ap)
{
switch (type) {
case PTR: arg->p = va_arg(*ap, void *);
break; case INT: arg->i = va_arg(*ap, int);
break; case UINT: arg->i = va_arg(*ap, unsigned int);
break; case LONG: arg->i = va_arg(*ap, long);
break; case ULONG: arg->i = va_arg(*ap, unsigned long);
break; case ULLONG: arg->i = va_arg(*ap, unsigned long long);
break; case SHORT: arg->i = (short)va_arg(*ap, int);
break; case USHORT: arg->i = (unsigned short)va_arg(*ap, int);
break; case CHAR: arg->i = (signed char)va_arg(*ap, int);
break; case UCHAR: arg->i = (unsigned char)va_arg(*ap, int);
break; case LLONG: arg->i = va_arg(*ap, long long);
break; case SIZET: arg->i = va_arg(*ap, size_t);
break; case IMAX: arg->i = va_arg(*ap, intmax_t);
break; case UMAX: arg->i = va_arg(*ap, uintmax_t);
break; case PDIFF: arg->i = va_arg(*ap, ptrdiff_t);
break; case UIPTR: arg->i = (uintptr_t)va_arg(*ap, void *);
// break; case DBL: arg->f = va_arg(*ap, double);
// break; case LDBL: arg->f = va_arg(*ap, long double);
}
}
static void out(FILE *f, const char *s, size_t l)
{
if (!(f->flags & F_ERR)) __fwritex((void *)s, l, f);
}
static void pad(FILE *f, char c, int w, int l, int fl)
{
char pad[256];
if (fl & (LEFT_ADJ | ZERO_PAD) || l >= w) return;
l = w - l;
memset(pad, c, l > (int)sizeof(pad) ? sizeof(pad) : l);
for (; l >= (int)sizeof(pad); l -= sizeof(pad))
out(f, pad, sizeof(pad));
out(f, pad, l);
}
static const char* xdigits = "0123456789ABCDEF";
static char *fmt_x(uintmax_t x, char *s, int lower)
{
for (; x; x>>=4) *--s = xdigits[(x&15)]|lower;
return s;
}
static char *fmt_o(uintmax_t x, char *s)
{
for (; x; x>>=3) *--s = '0' + (x&7);
return s;
}
static char *fmt_u(uintmax_t x, char *s)
{
unsigned long y;
for ( ; x>ULONG_MAX; x/=10) *--s = '0' + x%10;
for (y=x; y; y/=10) *--s = '0' + y%10;
return s;
}
/* Do not override this check. The floating point printing code below
* depends on the float.h constants being right. If they are wrong, it
* may overflow the stack. */
#if LDBL_MANT_DIG == 53
typedef char compiler_defines_long_double_incorrectly[9-(int)sizeof(long double)];
#endif
static int getint(char **s) {
int i;
for (i=0; isdigit(**s); (*s)++) {
if (i > INT_MAX/10 || **s-'0' > INT_MAX-10*i) i = -1;
else i = 10*i + (**s-'0');
}
return i;
}
static int printf_core(FILE *f, const char *fmt, va_list *ap, union arg *nl_arg, int *nl_type)
{
char *a, *z, *s=(char *)fmt;
unsigned l10n=0, fl;
int w, p, xp;
union arg arg;
int argpos;
unsigned st, ps;
int cnt=0, l=0;
size_t i;
char buf[sizeof(uintmax_t)*3+3+LDBL_MANT_DIG/4];
const char *prefix;
int t, pl;
wchar_t wc[2], *ws;
char mb[4];
for (;;) {
/* This error is only specified for snprintf, but since it's
* unspecified for other forms, do the same. Stop immediately
* on overflow; otherwise %n could produce wrong results. */
if (l > INT_MAX - cnt) goto overflow;
/* Update output count, end loop when fmt is exhausted */
cnt += l;
if (!*s) break;
/* Handle literal text and %% format specifiers */
for (a=s; *s && *s!='%'; s++);
for (z=s; s[0]=='%' && s[1]=='%'; z++, s+=2);
if (z-a > INT_MAX-cnt) goto overflow;
l = z-a;
if (f) out(f, a, l);
if (l) continue;
if (isdigit(s[1]) && s[2]=='$') {
l10n=1;
argpos = s[1]-'0';
s+=3;
} else {
argpos = -1;
s++;
}
/* Read modifier flags */
for (fl=0; (unsigned)*s-' '<32 && (FLAGMASK&(1U<<*s-' ')); s++)
fl |= 1U<<*s-' ';
/* Read field width */
if (*s=='*') {
if (isdigit(s[1]) && s[2]=='$') {
l10n=1;
nl_type[s[1]-'0'] = INT;
w = nl_arg[s[1]-'0'].i;
s+=3;
} else if (!l10n) {
w = f ? va_arg(*ap, int) : 0;
s++;
} else goto inval;
if (w<0) fl|=LEFT_ADJ, w=-w;
} else if ((w=getint(&s))<0) goto overflow;
/* Read precision */
if (*s=='.' && s[1]=='*') {
if (isdigit(s[2]) && s[3]=='$') {
nl_type[s[2]-'0'] = INT;
p = nl_arg[s[2]-'0'].i;
s+=4;
} else if (!l10n) {
p = f ? va_arg(*ap, int) : 0;
s+=2;
} else goto inval;
xp = (p>=0);
} else if (*s=='.') {
s++;
p = getint(&s);
xp = 1;
} else {
p = -1;
xp = 0;
}
/* Format specifier state machine */
st=0;
do {
if (OOB(*s)) goto inval;
ps=st;
st=states[st]S(*s++);
} while (st-1<STOP);
if (!st) goto inval;
/* Check validity of argument type (nl/normal) */
if (st==NOARG) {
if (argpos>=0) goto inval;
} else {
if (argpos>=0) nl_type[argpos]=st, arg=nl_arg[argpos];
else if (f) pop_arg(&arg, st, ap);
else return 0;
}
if (!f) continue;
z = buf + sizeof(buf);
prefix = "-+ 0X0x";
pl = 0;
t = s[-1];
/* Transform ls,lc -> S,C */
if (ps && (t&15)==3) t&=~32;
/* - and 0 flags are mutually exclusive */
if (fl & LEFT_ADJ) fl &= ~ZERO_PAD;
switch(t) {
case 'n':
switch(ps) {
case BARE: *(int *)arg.p = cnt; break;
case LPRE: *(long *)arg.p = cnt; break;
case LLPRE: *(long long *)arg.p = cnt; break;
case HPRE: *(unsigned short *)arg.p = cnt; break;
case HHPRE: *(unsigned char *)arg.p = cnt; break;
case ZTPRE: *(size_t *)arg.p = cnt; break;
case JPRE: *(uintmax_t *)arg.p = cnt; break;
}
continue;
case 'p':
p = MAX(p, (int)(2*sizeof(void*)));
t = 'x';
fl |= ALT_FORM;
case 'x': case 'X':
a = fmt_x(arg.i, z, t&32);
if (arg.i && (fl & ALT_FORM)) prefix+=(t>>4), pl=2;
if (0) {
case 'o':
a = fmt_o(arg.i, z);
if ((fl&ALT_FORM) && p<z-a+1) p=z-a+1;
} if (0) {
case 'd': case 'i':
pl=1;
if (arg.i>INTMAX_MAX) {
arg.i=-arg.i;
} else if (fl & MARK_POS) {
prefix++;
} else if (fl & PAD_POS) {
prefix+=2;
} else pl=0;
case 'u':
a = fmt_u(arg.i, z);
}
if (xp && p<0) goto overflow;
if (xp) fl &= ~ZERO_PAD;
if (!arg.i && !p) {
a=z;
break;
}
p = MAX(p, z-a + !arg.i);
break;
case 'c':
*(a=z-(p=1))=arg.i;
fl &= ~ZERO_PAD;
break;
// case 'm':
// if (1) a = strerror(errno); else
case 's':
a = arg.p ? arg.p : "(null)";
z = a + strnlen(a, p<0 ? INT_MAX : p);
if (p<0 && *z) goto overflow;
p = z-a;
fl &= ~ZERO_PAD;
break;
case 'C':
wc[0] = arg.i;
wc[1] = 0;
arg.p = wc;
p = -1;
case 'S':
ws = arg.p;
for (i=l=0; (int)i<p && *ws && (l=wctomb(mb, *ws++))>=0 && l<=(int)(p-i); i+=l);
if (l<0) return -1;
if (i > INT_MAX) goto overflow;
p = i;
pad(f, ' ', w, p, fl);
ws = arg.p;
for (i=0; i<0U+p && *ws && i+(l=wctomb(mb, *ws++))<=(size_t)p; i+=l)
out(f, mb, l);
pad(f, ' ', w, p, fl^LEFT_ADJ);
l = w>p ? w : p;
continue;
}
if (p < z-a) p = z-a;
if (p > INT_MAX-pl) goto overflow;
if (w < pl+p) w = pl+p;
if (w > INT_MAX-cnt) goto overflow;
pad(f, ' ', w, pl+p, fl);
out(f, prefix, pl);
pad(f, '0', w, pl+p, fl^ZERO_PAD);
pad(f, '0', p, z-a, 0);
out(f, a, z-a);
pad(f, ' ', w, pl+p, fl^LEFT_ADJ);
l = w;
}
if (f) return cnt;
if (!l10n) return 0;
for (i=1; i<=NL_ARGMAX && nl_type[i]; i++)
pop_arg(nl_arg+i, nl_type[i], ap);
for (; i<=NL_ARGMAX && !nl_type[i]; i++);
if (i<=NL_ARGMAX) goto inval;
return 1;
inval:
errno = EINVAL;
return -1;
overflow:
errno = EOVERFLOW;
return -1;
}
static int vfprintf(FILE *restrict f, const char *restrict fmt, va_list ap)
{
va_list ap2;
int nl_type[NL_ARGMAX+1] = {0};
union arg nl_arg[NL_ARGMAX+1];
unsigned char internal_buf[80], *saved_buf = 0;
int olderr;
int ret;
/* the copy allows passing va_list* even if va_list is an array */
va_copy(ap2, ap);
if (printf_core(0, fmt, &ap2, nl_arg, nl_type) < 0) {
va_end(ap2);
return -1;
}
FLOCK(f);
olderr = f->flags & F_ERR;
if (f->mode < 1) f->flags &= ~F_ERR;
if (!f->buf_size) {
saved_buf = f->buf;
f->buf = internal_buf;
f->buf_size = sizeof internal_buf;
f->wpos = f->wbase = f->wend = 0;
}
if (!f->wend && __towrite(f)) ret = -1;
else ret = printf_core(f, fmt, &ap2, nl_arg, nl_type);
if (saved_buf) {
f->write(f, 0, 0);
if (!f->wpos) ret = -1;
f->buf = saved_buf;
f->buf_size = 0;
f->wpos = f->wbase = f->wend = 0;
}
if (f->flags & F_ERR) ret = -1;
f->flags |= olderr;
FUNLOCK(f);
va_end(ap2);
return ret;
}
// --- vsnprintf.c
struct cookie {
char *s;
size_t n;
};
static size_t sn_write(FILE *f, const unsigned char *s, size_t l)
{
struct cookie *c = f->cookie;
size_t k = MIN(c->n, (size_t)(f->wpos - f->wbase));
if (k) {
memcpy(c->s, f->wbase, k);
c->s += k;
c->n -= k;
}
k = MIN(c->n, l);
if (k) {
memcpy(c->s, s, k);
c->s += k;
c->n -= k;
}
*c->s = 0;
f->wpos = f->wbase = f->buf;
/* pretend to succeed, even if we discarded extra data */
return l;
}
int vsnprintf(char *restrict s, size_t n, const char *restrict fmt, va_list ap)
{
unsigned char buf[1];
char dummy[1];
struct cookie c = { .s = n ? s : dummy, .n = n ? n-1 : 0 };
FILE f = {
.lbf = EOF,
.write = sn_write,
.lock = -1,
.buf = buf,
.cookie = &c,
};
if (n > INT_MAX) {
errno = EOVERFLOW;
return -1;
}
*c.s = 0;
return vfprintf(&f, fmt, ap);
}
// --- snprintf.c
int snprintf(char* restrict s, usize n, const char* restrict fmt, ...) {
int ret;
va_list ap;
va_start(ap, fmt);
ret = vsnprintf(s, n, fmt, ap);
va_end(ap);
return ret;
}
#endif // defined(__wasm__) && !defined(__wasi__)
|
the_stack_data/170454094.c | /* pager functionality by Joseph Spainhour" <[email protected]> */
#include <ncurses.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
int ch, prev, row, col;
prev = EOF;
FILE *fp;
int y, x;
if(argc != 2)
{
printf("Usage: %s <a c file name>\n", argv[0]);
exit(1);
}
fp = fopen(argv[1], "r");
if(fp == NULL)
{
perror("Cannot open input file");
exit(1);
}
initscr(); /* Start curses mode */
getmaxyx(stdscr, row, col); /* find the boundaries of the screeen */
while((ch = fgetc(fp)) != EOF) /* read the file till we reach the end */
{
getyx(stdscr, y, x); /* get the current curser position */
if(y == (row - 1)) /* are we are at the end of the screen */
{
printw("<-Press Any Key->"); /* tell the user to press a key */
getch();
clear(); /* clear the screen */
move(0, 0); /* start at the beginning of the screen */
}
if(prev == '/' && ch == '*') /* If it is / and * then only
* switch bold on */
{
attron(A_BOLD); /* cut bold on */
getyx(stdscr, y, x); /* get the current curser position */
move(y, x - 1); /* back up one space */
printw("%c%c", '/', ch); /* The actual printing is done here */
}
else
printw("%c", ch);
refresh();
if(prev == '*' && ch == '/')
attroff(A_BOLD); /* Switch it off once we got *
* and then / */
prev = ch;
}
endwin(); /* End curses mode */
fclose(fp);
return 0;
}
|
the_stack_data/70037.c | //program for reversing singly linked list for predefined values
#include <stdio.h>
#include <stdlib.h>
struct Node {
int data;
struct Node* next;
};
/* Function starts from here*/
static void reverse(struct Node** head_ref)
{
struct Node* prev = NULL;
struct Node* current = *head_ref;
struct Node* next = NULL;
while (current != NULL) {
// Store next
next = current->next;
current->next = prev;
prev = current;
current = next;
}
*head_ref = prev;
}
void push(struct Node** head_ref, int new_data)
{
struct Node* new_node = (struct Node*)malloc(sizeof(struct Node));
new_node->data = new_data;
new_node->next = (*head_ref);
(*head_ref) = new_node;
}
/* Function to print linked list */
void printList(struct Node* head)
{
struct Node* temp = head;
while (temp != NULL) {
printf("%d ", temp->data);
temp = temp->next;
}
}
int main()
{
/* Start with the empty list */
struct Node* head = NULL;
push(&head, 1);
push(&head, 2);
push(&head, 3);
push(&head, 5);
printf("Given linked list\n");
printList(head);
reverse(&head);
printf("\nReversed Linked list \n");
printList(head);
getchar();
}
|
the_stack_data/200141855.c | #include <stdio.h>
int main(){
int num = 100, i;
for(i=num;1;i--){
printf("var: %d\n", i);
if(i == 88){
break;
}
}
printf("\nOut of for loop\n");
return 0;
}
|
the_stack_data/141004.c | /* Quad-precision floating point sine and cosine tables.
Copyright (C) 1999-2016 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Jakub Jelinek <[email protected]>
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
<http://www.gnu.org/licenses/>. */
/* For 0.1484375 + n/128.0, n=0..82 this table contains
first 113 bits of cosine, then at least 113 additional
bits and the same for sine.
0.1484375+82.0/128.0 is the smallest number among above defined numbers
larger than pi/4.
Computed using gmp.
*/
const long double __sincosl_table[] = {
/* x = 1.48437500000000000000000000000000000e-01L 3ffc3000000000000000000000000000 */
/* cos(x) = 0.fd2f5320e1b790209b4dda2f98f79caaa7b873aff1014b0fbc5243766d03cb006bc837c4358 */
9.89003367927322909016887196069562069e-01L, /* 3ffefa5ea641c36f2041369bb45f31ef */
2.15663692029265697782289400027743703e-35L, /* 3f8bcaaa7b873aff1014b0fbc5243767 */
/* sin(x) = 0.25dc50bc95711d0d9787d108fd438cf5959ee0bfb7a1e36e8b1a112968f356657420e9cc9ea */
1.47892995873409608580026675734609314e-01L, /* 3ffc2ee285e4ab88e86cbc3e8847ea1c */
9.74950446464233268291647449768590886e-36L, /* 3f8a9eb2b3dc17f6f43c6dd16342252d */
/* x = 1.56250000000000000000000000000000000e-01 3ffc4000000000000000000000000000 */
/* cos(x) = 0.fce1a053e621438b6d60c76e8c45bf0a9dc71aa16f922acc10e95144ec796a249813c9cb649 */
9.87817783816471944100503034363211317e-01L, /* 3ffef9c340a7cc428716dac18edd188b */
4.74271307836705897892468107620526395e-35L, /* 3f8cf854ee38d50b7c915660874a8a27 */
/* sin(x) = 0.27d66258bacd96a3eb335b365c87d59438c5142bb56a489e9b8db9d36234ffdebb6bdc22d8e */
1.55614992773556041209920643203516258e-01L, /* 3ffc3eb312c5d66cb51f599ad9b2e43f */
-7.83989563419287980121718050629497270e-36L, /* bf8a4d78e75d7a8952b6ec2c8e48c594 */
/* x = 1.64062500000000000000000000000000000e-01 3ffc5000000000000000000000000000 */
/* cos(x) = 0.fc8ffa01ba6807417e05962b0d9fdf1fddb0cc4c07d22e19e08019bffa50a6c7acdb40307a3 */
9.86571908399497588757337407495308409e-01L, /* 3ffef91ff40374d00e82fc0b2c561b40 */
-2.47327949936985362476252401212720725e-35L, /* bf8c070112799d9fc16e8f30fbff3200 */
/* sin(x) = 0.29cfd49b8be4f665276cab01cbf0426934906c3dd105473b226e410b1450f62e53ff7c6cce1 */
1.63327491736612850846866172454354370e-01L, /* 3ffc4e7ea4dc5f27b3293b65580e5f82 */
1.81380344301155485770367902300754350e-36L, /* 3f88349a48361ee882a39d913720858a */
/* x = 1.71875000000000000000000000000000000e-01 3ffc6000000000000000000000000000 */
/* cos(x) = 0.fc3a6170f767ac735d63d99a9d439e1db5e59d3ef153a4265d5855850ed82b536bf361b80e3 */
9.85265817718213816204294709759578994e-01L, /* 3ffef874c2e1eecf58e6bac7b3353a87 */
2.26568029505818066141517497778527952e-35L, /* 3f8be1db5e59d3ef153a4265d5855851 */
/* sin(x) = 0.2bc89f9f424de5485de7ce03b2514952b9faf5648c3244d4736feb95dbb9da49f3b58a9253b */
1.71030022031395019281347969239834331e-01L, /* 3ffc5e44fcfa126f2a42ef3e701d928a */
7.01395875187487608875416030203241317e-36L, /* 3f8a2a573f5eac9186489a8e6dfd72bb */
/* x = 1.79687500000000000000000000000000000e-01 3ffc7000000000000000000000000000 */
/* cos(x) = 0.fbe0d7f7fef11e70aa43b8abf4f6a457cea20c8f3f676b47781f9821bbe9ce04b3c7b981c0b */
9.83899591489663972178309351416487245e-01L, /* 3ffef7c1afeffde23ce154877157e9ed */
2.73414318948066207810486330723761265e-35L, /* 3f8c22be75106479fb3b5a3bc0fcc10e */
/* sin(x) = 0.2dc0bb80b49a97ffb34e8dd1f8db9df7af47ed2dcf58b12c8e7827e048cae929da02c04ecac */
1.78722113535153659375356241864180724e-01L, /* 3ffc6e05dc05a4d4bffd9a746e8fc6dd */
-1.52906926517265103202547561260594148e-36L, /* bf8804285c09691853a769b8c3ec0fdc */
/* x = 1.87500000000000000000000000000000000e-01 3ffc8000000000000000000000000000 */
/* cos(x) = 0.fb835efcf670dd2ce6fe7924697eea13ea358867e9cdb3899b783f4f9f43aa5626e8b67b3bc */
9.82473313101255257487327683243622495e-01L, /* 3ffef706bdf9ece1ba59cdfcf248d2fe */
-1.64924358891557584625463868014230342e-35L, /* bf8b5ec15ca779816324c766487c0b06 */
/* sin(x) = 0.2fb8205f75e56a2b56a1c4792f856258769af396e0189ef72c05e4df59a6b00e4b44a6ea515 */
1.86403296762269884552379983103205261e-01L, /* 3ffc7dc102fbaf2b515ab50e23c97c2b */
1.76460304806826780010586715975331753e-36L, /* 3f882c3b4d79cb700c4f7b9602f26fad */
/* x = 1.95312500000000000000000000000000000e-01 3ffc9000000000000000000000000000 */
/* cos(x) = 0.fb21f7f5c156696b00ac1fe28ac5fd76674a92b4df80d9c8a46c684399005deccc41386257c */
9.80987069605669190469329896435309665e-01L, /* 3ffef643efeb82acd2d601583fc5158c */
-1.90899259410096419886996331536278461e-36L, /* bf8844cc5ab6a5903f931badc9cbde34 */
/* sin(x) = 0.31aec65df552876f82ece9a2356713246eba6799983d7011b0b3698d6e1da919c15d57c30c1 */
1.94073102892909791156055200214145404e-01L, /* 3ffc8d7632efaa943b7c17674d11ab39 */
-9.67304741051998267208945242944928999e-36L, /* bf8a9b7228b30cccf851fdc9e992ce52 */
/* x = 2.03125000000000000000000000000000000e-01 3ffca000000000000000000000000000 */
/* cos(x) = 0.fabca467fb3cb8f1d069f01d8ea33ade5bfd68296ecd1cc9f7b7609bbcf3676e726c3301334 */
9.79440951715548359998530954502987493e-01L, /* 3ffef57948cff67971e3a0d3e03b1d46 */
4.42878056591560757066844797290067990e-35L, /* 3f8cd6f2dfeb414b7668e64fbdbb04de */
/* sin(x) = 0.33a4a5a19d86246710f602c44df4fa513f4639ce938477aeeabb82e8e0a7ed583a188879fd4 */
2.01731063801638804725038151164000971e-01L, /* 3ffc9d252d0cec31233887b016226fa8 */
-4.27513434754966978435151290617384120e-36L, /* bf896bb02e718c5b1ee21445511f45c8 */
/* x = 2.10937500000000000000000000000000000e-01 3ffcb000000000000000000000000000 */
/* cos(x) = 0.fa5365e8f1d3ca27be1db5d76ae64d983d7470a4ab0f4ccf65a2b8c67a380df949953a09bc1 */
9.77835053797959793331971572944454549e-01L, /* 3ffef4a6cbd1e3a7944f7c3b6baed5cd */
-3.79207422905180416937210853779192702e-35L, /* bf8c933e145c7adaa7859984d2ea39cc */
/* sin(x) = 0.3599b652f40ec999df12a0a4c8561de159c98d4e54555de518b97f48886f715d8df5f4f093e */
2.09376712085993643711890752724881652e-01L, /* 3ffcaccdb297a0764ccef895052642b1 */
-1.59470287344329449965314638482515925e-36L, /* bf880f531b3958d5d5510d73a3405bbc */
/* x = 2.18750000000000000000000000000000000e-01 3ffcc000000000000000000000000000 */
/* cos(x) = 0.f9e63e1d9e8b6f6f2e296bae5b5ed9c11fd7fa2fe11e09fc7bde901abed24b6365e72f7db4e */
9.76169473868635276723989035435135534e-01L, /* 3ffef3cc7c3b3d16dede5c52d75cb6be */
-2.87727974249481583047944860626985460e-35L, /* bf8c31f701402e80f70fb01c210b7f2a */
/* sin(x) = 0.378df09db8c332ce0d2b53d865582e4526ea336c768f68c32b496c6d11c1cd241bb9f1da523 */
2.17009581095010156760578095826055396e-01L, /* 3ffcbc6f84edc6199670695a9ec32ac1 */
1.07356488794216831812829549198201194e-35L, /* 3f8ac8a4dd466d8ed1ed1865692d8da2 */
/* x = 2.26562500000000000000000000000000000e-01 3ffcd000000000000000000000000000 */
/* cos(x) = 0.f9752eba9fff6b98842beadab054a932fb0f8d5b875ae63d6b2288d09b148921aeb6e52f61b */
9.74444313585988980349711056045434344e-01L, /* 3ffef2ea5d753ffed7310857d5b560a9 */
3.09947905955053419304514538592548333e-35L, /* 3f8c4997d87c6adc3ad731eb59144685 */
/* sin(x) = 0.39814cb10513453cb97b21bc1ca6a337b150c21a675ab85503bc09a436a10ab1473934e20c8 */
2.24629204957705292350428549796424820e-01L, /* 3ffccc0a6588289a29e5cbd90de0e535 */
2.42061510849297469844695751870058679e-36L, /* 3f889bd8a8610d33ad5c2a81de04d21b */
/* x = 2.34375000000000000000000000000000000e-01 3ffce000000000000000000000000000 */
/* cos(x) = 0.f90039843324f9b940416c1984b6cbed1fc733d97354d4265788a86150493ce657cae032674 */
9.72659678244912752670913058267565260e-01L, /* 3ffef20073086649f3728082d833096e */
-3.91759231819314904966076958560252735e-35L, /* bf8ca09701c6613465595ecd43babcf5 */
/* sin(x) = 0.3b73c2bf6b4b9f668ef9499c81f0d965087f1753fa64b086e58cb8470515c18c1412f8c2e02 */
2.32235118611511462413930877746235872e-01L, /* 3ffcdb9e15fb5a5cfb3477ca4ce40f87 */
-4.96930483364191020075024624332928910e-36L, /* bf89a6bde03a2b0166d3de469cd1ee3f */
/* x = 2.42187500000000000000000000000000000e-01 3ffcf000000000000000000000000000 */
/* cos(x) = 0.f887604e2c39dbb20e4ec5825059a789ffc95b275ad9954078ba8a28d3fcfe9cc2c1d49697b */
9.70815676770349462947490545785046027e-01L, /* 3ffef10ec09c5873b7641c9d8b04a0b3 */
2.97458820972393859125277682021202860e-35L, /* 3f8c3c4ffe4ad93ad6ccaa03c5d45147 */
/* sin(x) = 0.3d654aff15cb457a0fca854698aba33039a8a40626609204472d9d40309b626eccc6dff0ffa */
2.39826857830661564441369251810886574e-01L, /* 3ffceb2a57f8ae5a2bd07e542a34c55d */
2.39867036569896287240938444445071448e-36L, /* 3f88981cd45203133049022396cea018 */
/* x = 2.50000000000000000000000000000000000e-01 3ffd0000000000000000000000000000 */
/* cos(x) = 0.f80aa4fbef750ba783d33cb95f94f8a41426dbe79edc4a023ef9ec13c944551c0795b84fee1 */
9.68912421710644784144595449494189205e-01L, /* 3ffef01549f7deea174f07a67972bf2a */
-5.53634706113461989398873287749326500e-36L, /* bf89d6faf649061848ed7f704184fb0e */
/* sin(x) = 0.3f55dda9e62aed7513bd7b8e6a3d1635dd5676648d7db525898d7086af9330f03c7f285442a */
2.47403959254522929596848704849389203e-01L, /* 3ffcfaaeed4f31576ba89debdc7351e9 */
-7.36487001108599532943597115275811618e-36L, /* bf8a39445531336e50495b4ece51ef2a */
/* x = 2.57812500000000000000000000000000000e-01 3ffd0800000000000000000000000000 */
/* cos(x) = 0.f78a098069792daabc9ee42591b7c5a68cb1ab822aeb446b3311b4ba5371b8970e2c1547ad7 */
9.66950029230677822008341623610531503e-01L, /* 3ffeef141300d2f25b55793dc84b2370 */
-4.38972214432792412062088059990480514e-35L, /* bf8cd2cb9a72a3eea8a5dca667725a2d */
/* sin(x) = 0.414572fd94556e6473d620271388dd47c0ba050cdb5270112e3e370e8c4705ae006426fb5d5 */
2.54965960415878467487556574864872628e-01L, /* 3ffd0515cbf65155b991cf58809c4e23 */
2.20280377918534721005071688328074154e-35L, /* 3f8bd47c0ba050cdb5270112e3e370e9 */
/* x = 2.65625000000000000000000000000000000e-01 3ffd1000000000000000000000000000 */
/* cos(x) = 0.f7058fde0788dfc805b8fe88789e4f4253e3c50afe8b22f41159620ab5940ff7df9557c0d1f */
9.64928619104771009581074665315748371e-01L, /* 3ffeee0b1fbc0f11bf900b71fd10f13d */
-3.66685832670820775002475545602761113e-35L, /* bf8c85ed60e1d7a80ba6e85f7534efaa */
/* sin(x) = 0.4334033bcd90d6604f5f36c1d4b84451a87150438275b77470b50e5b968fa7962b5ffb379b7 */
2.62512399769153281450949626395692931e-01L, /* 3ffd0cd00cef364359813d7cdb0752e1 */
3.24923677072031064673177178571821843e-36L, /* 3f89146a1c5410e09d6ddd1c2d4396e6 */
/* x = 2.73437500000000000000000000000000000e-01 3ffd1800000000000000000000000000 */
/* cos(x) = 0.f67d3a26af7d07aa4bd6d42af8c0067fefb96d5b46c031eff53627f215ea3242edc3f2e13eb */
9.62848314709379699899701093480214365e-01L, /* 3ffeecfa744d5efa0f5497ada855f180 */
4.88986966383343450799422013051821394e-36L, /* 3f899ffbee5b56d1b00c7bfd4d89fc85 */
/* sin(x) = 0.452186aa5377ab20bbf2524f52e3a06a969f47166ab88cf88c111ad12c55941021ef3317a1a */
2.70042816718585031552755063618827102e-01L, /* 3ffd14861aa94ddeac82efc9493d4b8f */
-2.37608892440611310321138680065803162e-35L, /* bf8bf956960b8e99547730773eee52ed */
/* x = 2.81250000000000000000000000000000000e-01 3ffd2000000000000000000000000000 */
/* cos(x) = 0.f5f10a7bb77d3dfa0c1da8b57842783280d01ce3c0f82bae3b9d623c168d2e7c29977994451 */
9.60709243015561903066659350581313472e-01L, /* 3ffeebe214f76efa7bf4183b516af085 */
-5.87011558231583960712013351601221840e-36L, /* bf89f35fcbf8c70fc1f5147118a770fa */
/* sin(x) = 0.470df5931ae1d946076fe0dcff47fe31bb2ede618ebc607821f8462b639e1f4298b5ae87fd3 */
2.77556751646336325922023446828128568e-01L, /* 3ffd1c37d64c6b8765181dbf8373fd20 */
-1.35848595468998128214344668770082997e-36L, /* bf87ce44d1219e71439f87de07b9d49c */
/* x = 2.89062500000000000000000000000000000e-01 3ffd2800000000000000000000000000 */
/* cos(x) = 0.f561030ddd7a78960ea9f4a32c6521554995667f5547bafee9ec48b3155cdb0f7fd00509713 */
9.58511534581228627301969408154919822e-01L, /* 3ffeeac2061bbaf4f12c1d53e94658ca */
2.50770779371636481145735089393154404e-35L, /* 3f8c0aaa4cab33faaa3dd7f74f624599 */
/* sin(x) = 0.48f948446abcd6b0f7fccb100e7a1b26eccad880b0d24b59948c7cdd49514d44b933e6985c2 */
2.85053745940547424587763033323252561e-01L, /* 3ffd23e52111aaf35ac3dff32c4039e8 */
2.04269325885902918802700123680403749e-35L, /* 3f8bb26eccad880b0d24b59948c7cdd5 */
/* x = 2.96875000000000000000000000000000000e-01 3ffd3000000000000000000000000000 */
/* cos(x) = 0.f4cd261d3e6c15bb369c8758630d2ac00b7ace2a51c0631bfeb39ed158ba924cc91e259c195 */
9.56255323543175296975599942263028361e-01L, /* 3ffee99a4c3a7cd82b766d390eb0c61a */
3.21616572190865997051103645135837207e-35L, /* 3f8c56005bd671528e0318dff59cf68b */
/* sin(x) = 0.4ae37710fad27c8aa9c4cf96c03519b9ce07dc08a1471775499f05c29f86190aaebaeb9716e */
2.92533342023327543624702326493913423e-01L, /* 3ffd2b8ddc43eb49f22aa7133e5b00d4 */
1.93539408668704450308003687950685128e-35L, /* 3f8b9b9ce07dc08a1471775499f05c2a */
/* x = 3.04687500000000000000000000000000000e-01 3ffd3800000000000000000000000000 */
/* cos(x) = 0.f43575f94d4f6b272f5fb76b14d2a64ab52df1ee8ddf7c651034e5b2889305a9ea9015d758a */
9.53940747608894733981324795987611623e-01L, /* 3ffee86aebf29a9ed64e5ebf6ed629a5 */
2.88075689052478602008395972924657164e-35L, /* 3f8c3255a96f8f746efbe32881a72d94 */
/* sin(x) = 0.4ccc7a50127e1de0cb6b40c302c651f7bded4f9e7702b0471ae0288d091a37391950907202f */
2.99995083378683051163248282011699944e-01L, /* 3ffd3331e94049f877832dad030c0b19 */
1.35174265535697850139283361475571050e-35L, /* 3f8b1f7bded4f9e7702b0471ae0288d1 */
/* x = 3.12500000000000000000000000000000000e-01 3ffd4000000000000000000000000000 */
/* cos(x) = 0.f399f500c9e9fd37ae9957263dab8877102beb569f101ee4495350868e5847d181d50d3cca2 */
9.51567948048172202145488217364270962e-01L, /* 3ffee733ea0193d3fa6f5d32ae4c7b57 */
6.36842628598115658308749288799884606e-36L, /* 3f8a0ee2057d6ad3e203dc892a6a10d2 */
/* sin(x) = 0.4eb44a5da74f600207aaa090f0734e288603ffadb3eb2542a46977b105f8547128036dcf7f0 */
3.07438514580380850670502958201982091e-01L, /* 3ffd3ad129769d3d80081eaa8243c1cd */
1.06515172423204645839241099453417152e-35L, /* 3f8ac510c07ff5b67d64a8548d2ef621 */
/* x = 3.20312500000000000000000000000000000e-01 3ffd4800000000000000000000000000 */
/* cos(x) = 0.f2faa5a1b74e82fd61fa05f9177380e8e69b7b15a945e8e5ae1124bf3d12b0617e03af4fab5 */
9.49137069684463027665847421762105623e-01L, /* 3ffee5f54b436e9d05fac3f40bf22ee7 */
6.84433965991637152250309190468859701e-37L, /* 3f86d1cd36f62b528bd1cb5c22497e7a */
/* sin(x) = 0.509adf9a7b9a5a0f638a8fa3a60a199418859f18b37169a644fdb986c21ecb00133853bc35b */
3.14863181319745250865036315126939016e-01L, /* 3ffd426b7e69ee69683d8e2a3e8e9828 */
1.92431240212432926993057705062834160e-35L, /* 3f8b99418859f18b37169a644fdb986c */
/* x = 3.28125000000000000000000000000000000e-01 3ffd5000000000000000000000000000 */
/* cos(x) = 0.f2578a595224dd2e6bfa2eb2f99cc674f5ea6f479eae2eb580186897ae3f893df1113ca06b8 */
9.46648260886053321846099507295532976e-01L, /* 3ffee4af14b2a449ba5cd7f45d65f33a */
-4.32906339663000890941529420498824645e-35L, /* bf8ccc5850ac85c30a8e8a53ff3cbb43 */
/* sin(x) = 0.5280326c3cf481823ba6bb08eac82c2093f2bce3c4eb4ee3dec7df41c92c8a4226098616075 */
3.22268630433386625687745919893188031e-01L, /* 3ffd4a00c9b0f3d20608ee9aec23ab21 */
-1.49505897804759263483853908335500228e-35L, /* bf8b3df6c0d431c3b14b11c213820be3 */
/* x = 3.35937500000000000000000000000000000e-01 3ffd5800000000000000000000000000 */
/* cos(x) = 0.f1b0a5b406b526d886c55feadc8d0dcc8eb9ae2ac707051771b48e05b25b000009660bdb3e3 */
9.44101673557004345630017691253124860e-01L, /* 3ffee3614b680d6a4db10d8abfd5b91a */
1.03812535240120229609822461172145584e-35L, /* 3f8ab991d735c558e0e0a2ee3691c0b6 */
/* sin(x) = 0.54643b3da29de9b357155eef0f332fb3e66c83bf4dddd9491c5eb8e103ccd92d6175220ed51 */
3.29654409930860171914317725126463176e-01L, /* 3ffd5190ecf68a77a6cd5c557bbc3ccd */
-1.22606996784743214973082192294232854e-35L, /* bf8b04c19937c40b22226b6e3a1471f0 */
/* x = 3.43750000000000000000000000000000000e-01 3ffd6000000000000000000000000000 */
/* cos(x) = 0.f105fa4d66b607a67d44e042725204435142ac8ad54dfb0907a4f6b56b06d98ee60f19e557a */
9.41497463127881068644511236053670815e-01L, /* 3ffee20bf49acd6c0f4cfa89c084e4a4 */
3.20709366603165602071590241054884900e-36L, /* 3f8910d450ab22b5537ec241e93dad5b */
/* sin(x) = 0.5646f27e8bd65cbe3a5d61ff06572290ee826d9674a00246b05ae26753cdfc90d9ce81a7d02 */
3.37020069022253076261281754173810024e-01L, /* 3ffd591bc9fa2f5972f8e97587fc195d */
-2.21435756148839473677777545049890664e-35L, /* bf8bd6f117d92698b5ffdb94fa51d98b */
/* x = 3.51562500000000000000000000000000000e-01 3ffd6800000000000000000000000000 */
/* cos(x) = 0.f0578ad01ede707fa39c09dc6b984afef74f3dc8d0efb0f4c5a6b13771145b3e0446fe33887 */
9.38835788546265488632578305984712554e-01L, /* 3ffee0af15a03dbce0ff473813b8d731 */
-3.98758068773974031348585072752245458e-35L, /* bf8ca808458611b978827859d2ca7644 */
/* sin(x) = 0.582850a41e1dd46c7f602ea244cdbbbfcdfa8f3189be794dda427ce090b5f85164f1f80ac13 */
3.44365158145698408207172046472223747e-01L, /* 3ffd60a14290787751b1fd80ba891337 */
-3.19791885005480924937758467594051927e-36L, /* bf89100c815c339d9061ac896f60c7dc */
/* x = 3.59375000000000000000000000000000000e-01 3ffd7000000000000000000000000000 */
/* cos(x) = 0.efa559f5ec3aec3a4eb03319278a2d41fcf9189462261125fe6147b078f1daa0b06750a1654 */
9.36116812267055290294237411019508588e-01L, /* 3ffedf4ab3ebd875d8749d6066324f14 */
3.40481591236710658435409862439032162e-35L, /* 3f8c6a0fe7c8c4a31130892ff30a3d84 */
/* sin(x) = 0.5a084e28e35fda2776dfdbbb5531d74ced2b5d17c0b1afc4647529d50c295e36d8ceec126c1 */
3.51689228994814059222584896955547016e-01L, /* 3ffd682138a38d7f689ddb7f6eed54c7 */
1.75293433418270210567525412802083294e-35L, /* 3f8b74ced2b5d17c0b1afc4647529d51 */
/* x = 3.67187500000000000000000000000000000e-01 3ffd7800000000000000000000000000 */
/* cos(x) = 0.eeef6a879146af0bf9b95ea2ea0ac0d3e2e4d7e15d93f48cbd41bf8e4fded40bef69e19eafa */
9.33340700242548435655299229469995527e-01L, /* 3ffeddded50f228d5e17f372bd45d416 */
-4.75255707251679831124800898831382223e-35L, /* bf8cf960e8d940f513605b9a15f2038e */
/* sin(x) = 0.5be6e38ce8095542bc14ee9da0d36483e6734bcab2e07624188af5653f114eeb46738fa899d */
3.58991834546065053677710299152868941e-01L, /* 3ffd6f9b8e33a025550af053ba76834e */
-2.06772389262723368139416970257112089e-35L, /* bf8bb7c198cb4354d1f89dbe7750a9ac */
/* x = 3.75000000000000000000000000000000000e-01 3ffd8000000000000000000000000000 */
/* cos(x) = 0.ee35bf5ccac89052cd91ddb734d3a47e262e3b609db604e217053803be0091e76daf28a89b7 */
9.30507621912314291149476792229555481e-01L, /* 3ffedc6b7eb9959120a59b23bb6e69a7 */
2.74541088551732982573335285685416092e-35L, /* 3f8c23f13171db04edb02710b829c01e */
/* sin(x) = 0.5dc40955d9084f48a94675a2498de5d851320ff5528a6afb3f2e24de240fce6cbed1ba0ccd6 */
3.66272529086047561372909351716264177e-01L, /* 3ffd7710255764213d22a519d6892638 */
-1.96768433534936592675897818253108989e-35L, /* bf8ba27aecdf00aad759504c0d1db21e */
/* x = 3.82812500000000000000000000000000000e-01 3ffd8800000000000000000000000000 */
/* cos(x) = 0.ed785b5c44741b4493c56bcb9d338a151c6f6b85d8f8aca658b28572c162b199680eb9304da */
9.27617750192851909628030798799961350e-01L, /* 3ffedaf0b6b888e83689278ad7973a67 */
7.58520371916345756281201167126854712e-36L, /* 3f8a42a38ded70bb1f1594cb1650ae58 */
/* sin(x) = 0.5f9fb80f21b53649c432540a50e22c53057ff42ae0fdf1307760dc0093f99c8efeb2fbd7073 */
3.73530868238692946416839752660848112e-01L, /* 3ffd7e7ee03c86d4d92710c950294389 */
-1.48023494778986556048879113411517128e-35L, /* bf8b3acfa800bd51f020ecf889f23ff7 */
/* x = 3.90625000000000000000000000000000000e-01 3ffd9000000000000000000000000000 */
/* cos(x) = 0.ecb7417b8d4ee3fec37aba4073aa48f1f14666006fb431d9671303c8100d10190ec8179c41d */
9.24671261467036098502113014560138771e-01L, /* 3ffed96e82f71a9dc7fd86f57480e755 */
-4.14187124860031825108649347251175815e-35L, /* bf8cb87075cccffc825e7134c767e1bf */
/* sin(x) = 0.6179e84a09a5258a40e9b5face03e525f8b5753cd0105d93fe6298010c3458e84d75fe420e9 */
3.80766408992390192057200703388896675e-01L, /* 3ffd85e7a1282694962903a6d7eb3810 */
-2.02009541175208636336924533372496107e-35L, /* bf8bada074a8ac32fefa26c019d67fef */
/* x = 3.98437500000000000000000000000000000e-01 3ffd9800000000000000000000000000 */
/* cos(x) = 0.ebf274bf0bda4f62447e56a093626798d3013b5942b1abfd155aacc9dc5c6d0806a20d6b9c1 */
9.21668335573351918175411368202712714e-01L, /* 3ffed7e4e97e17b49ec488fcad4126c5 */
-1.83587995433957622948710263541479322e-35L, /* bf8b8672cfec4a6bd4e5402eaa553362 */
/* sin(x) = 0.6352929dd264bd44a02ea766325d8aa8bd9695fc8def3caefba5b94c9a3c873f7b2d3776ead */
3.87978709727025046051079690813741960e-01L, /* 3ffd8d4a4a774992f51280ba9d98c976 */
8.01904783870935075844443278617586301e-36L, /* 3f8a5517b2d2bf91bde795df74b72993 */
/* x = 4.06250000000000000000000000000000000e-01 3ffda000000000000000000000000000 */
/* cos(x) = 0.eb29f839f201fd13b93796827916a78f15c85230a4e8ea4b21558265a14367e1abb4c30695a */
9.18609155794918267837824977718549863e-01L, /* 3ffed653f073e403fa27726f2d04f22d */
2.97608282778274433460057745798409849e-35L, /* 3f8c3c78ae429185274752590aac132d */
/* sin(x) = 0.6529afa7d51b129631ec197c0a840a11d7dc5368b0a47956feb285caa8371c4637ef17ef01b */
3.95167330240934236244832640419653657e-01L, /* 3ffd94a6be9f546c4a58c7b065f02a10 */
7.57560031388312550940040194042627704e-36L, /* 3f8a423afb8a6d16148f2adfd650b955 */
/* x = 4.14062500000000000000000000000000000e-01 3ffda800000000000000000000000000 */
/* cos(x) = 0.ea5dcf0e30cf03e6976ef0b1ec26515fba47383855c3b4055a99b5e86824b2cd1a691fdca7b */
9.15493908848301228563917732180221882e-01L, /* 3ffed4bb9e1c619e07cd2edde163d84d */
-3.50775517955306954815090901168305659e-35L, /* bf8c75022dc63e3d51e25fd52b3250bd */
/* sin(x) = 0.66ff380ba0144109e39a320b0a3fa5fd65ea0585bcbf9b1a769a9b0334576c658139e1a1cbe */
4.02331831777773111217105598880982387e-01L, /* 3ffd9bfce02e805104278e68c82c28ff */
-1.95678722882848174723569916504871563e-35L, /* bf8ba029a15fa7a434064e5896564fcd */
/* x = 4.21875000000000000000000000000000000e-01 3ffdb000000000000000000000000000 */
/* cos(x) = 0.e98dfc6c6be031e60dd3089cbdd18a75b1f6b2c1e97f79225202f03dbea45b07a5ec4efc062 */
9.12322784872117846492029542047341734e-01L, /* 3ffed31bf8d8d7c063cc1ba611397ba3 */
7.86903886556373674267948132178845568e-36L, /* 3f8a4eb63ed6583d2fef244a405e07b8 */
/* sin(x) = 0.68d32473143327973bc712bcc4ccddc47630d755850c0655243b205934dc49ffed8eb76adcb */
4.09471777053295066122694027011452236e-01L, /* 3ffda34c91cc50cc9e5cef1c4af31333 */
2.23945241468457597921655785729821354e-35L, /* 3f8bdc47630d755850c0655243b20593 */
/* x = 4.29687500000000000000000000000000000e-01 3ffdb800000000000000000000000000 */
/* cos(x) = 0.e8ba8393eca7821aa563d83491b6101189b3b101c3677f73d7bad7c10f9ee02b7ab4009739a */
9.09095977415431051650381735684476417e-01L, /* 3ffed1750727d94f04354ac7b069236c */
1.20886014028444155733776025085677953e-35L, /* 3f8b01189b3b101c3677f73d7bad7c11 */
/* sin(x) = 0.6aa56d8e8249db4eb60a761fe3f9e559be456b9e13349ca99b0bfb787f22b95db3b70179615 */
4.16586730282041119259112448831069657e-01L, /* 3ffdaa95b63a09276d3ad829d87f8fe8 */
-2.00488106831998813675438269796963612e-35L, /* bf8baa641ba9461eccb635664f404878 */
/* x = 4.37500000000000000000000000000000000e-01 3ffdc000000000000000000000000000 */
/* cos(x) = 0.e7e367d2956cfb16b6aa11e5419cd0057f5c132a6455bf064297e6a76fe2b72bb630d6d50ff */
9.05813683425936420744516660652700258e-01L, /* 3ffecfc6cfa52ad9f62d6d5423ca833a */
-3.60950307605941169775676563004467163e-35L, /* bf8c7fd4051f66acdd5207cdeb40cac5 */
/* sin(x) = 0.6c760c14c8585a51dbd34660ae6c52ac7036a0b40887a0b63724f8b4414348c3063a637f457 */
4.23676257203938010361683988031102480e-01L, /* 3ffdb1d83053216169476f4d1982b9b1 */
1.40484456388654470329473096579312595e-35L, /* 3f8b2ac7036a0b40887a0b63724f8b44 */
/* x = 4.45312500000000000000000000000000000e-01 3ffdc800000000000000000000000000 */
/* cos(x) = 0.e708ac84d4172a3e2737662213429e14021074d7e702e77d72a8f1101a7e70410df8273e9aa */
9.02476103237941504925183272675895999e-01L, /* 3ffece115909a82e547c4e6ecc442685 */
2.26282899501344419018306295680210602e-35L, /* 3f8be14021074d7e702e77d72a8f1102 */
/* sin(x) = 0.6e44f8c36eb10a1c752d093c00f4d47ba446ac4c215d26b0316442f168459e677d06e7249e3 */
4.30739925110803197216321517850849190e-01L, /* 3ffdb913e30dbac42871d4b424f003d3 */
1.54096780001629398850891218396761548e-35L, /* 3f8b47ba446ac4c215d26b0316442f17 */
/* x = 4.53125000000000000000000000000000000e-01 3ffdd000000000000000000000000000 */
/* cos(x) = 0.e62a551594b970a770b15d41d4c0e483e47aca550111df6966f9e7ac3a94ae49e6a71eb031e */
8.99083440560138456216544929209379307e-01L, /* 3ffecc54aa2b2972e14ee162ba83a982 */
-2.06772615490904370666670275154751976e-35L, /* bf8bb7c1b8535aafeee209699061853c */
/* sin(x) = 0.70122c5ec5028c8cff33abf4fd340ccc382e038379b09cf04f9a52692b10b72586060cbb001 */
4.37777302872755132861618974702796680e-01L, /* 3ffdc048b17b140a3233fcceafd3f4d0 */
9.62794364503442612477117426033922467e-36L, /* 3f8a998705c0706f36139e09f34a4d25 */
/* x = 4.60937500000000000000000000000000000e-01 3ffdd800000000000000000000000000 */
/* cos(x) = 0.e54864fe33e8575cabf5bd0e5cf1b1a8bc7c0d5f61702450fa6b6539735820dd2603ae355d5 */
8.95635902463170698900570000446256350e-01L, /* 3ffeca90c9fc67d0aeb957eb7a1cb9e3 */
3.73593741659866883088620495542311808e-35L, /* 3f8c8d45e3e06afb0b812287d35b29cc */
/* sin(x) = 0.71dd9fb1ff4677853acb970a9f6729c6e3aac247b1c57cea66c77413f1f98e8b9e98e49d851 */
4.44787960964527211433056012529525211e-01L, /* 3ffdc7767ec7fd19de14eb2e5c2a7d9d */
-1.67187936511493678007508371613954899e-35L, /* bf8b6391c553db84e3a831599388bec1 */
/* x = 4.68750000000000000000000000000000000e-01 3ffde000000000000000000000000000 */
/* cos(x) = 0.e462dfc670d421ab3d1a15901228f146a0547011202bf5ab01f914431859aef577966bc4fa4 */
8.92133699366994404723900253723788575e-01L, /* 3ffec8c5bf8ce1a843567a342b202452 */
-1.10771937602567314732693079264692504e-35L, /* bf8ad72bf571fddbfa814a9fc0dd779d */
/* sin(x) = 0.73a74b8f52947b681baf6928eb3fb021769bf4779bad0e3aa9b1cdb75ec60aad9fc63ff19d5 */
4.51771471491683776581688750134062870e-01L, /* 3ffdce9d2e3d4a51eda06ebda4a3acff */
-1.19387223016472295893794387275284505e-35L, /* bf8afbd12c81710c8a5e38aac9c64914 */
/* x = 4.76562500000000000000000000000000000e-01 3ffde800000000000000000000000000 */
/* cos(x) = 0.e379c9045f29d517c4808aa497c2057b2b3d109e76c0dc302d4d0698b36e3f0bdbf33d8e952 */
8.88577045028035543317609023116020980e-01L, /* 3ffec6f39208be53aa2f890115492f84 */
4.12354278954664731443813655177022170e-36L, /* 3f895ecacf44279db0370c0b5341a62d */
/* sin(x) = 0.756f28d011d98528a44a75fc29c779bd734ecdfb582fdb74b68a4c4c4be54cfd0b2d3ad292f */
4.58727408216736592377295028972874773e-01L, /* 3ffdd5bca340476614a29129d7f0a71e */
-4.70946994194182908929251719575431779e-36L, /* bf8990a32c4c8129f40922d25d6ceced */
/* x = 4.84375000000000000000000000000000000e-01 3ffdf000000000000000000000000000 */
/* cos(x) = 0.e28d245c58baef72225e232abc003c4366acd9eb4fc2808c2ab7fe7676cf512ac7f945ae5fb */
8.84966156526143291697296536966647926e-01L, /* 3ffec51a48b8b175dee444bc46557800 */
4.53370570288325630442037826313462165e-35L, /* 3f8ce21b3566cf5a7e14046155bff3b4 */
/* sin(x) = 0.77353054ca72690d4c6e171fd99e6b39fa8e1ede5f052fd2964534c75340970a3a9cd3c5c32 */
4.65655346585160182681199512507546779e-01L, /* 3ffddcd4c15329c9a43531b85c7f667a */
-1.56282598978971872478619772155305961e-35L, /* bf8b4c60571e121a0fad02d69bacb38b */
/* x = 4.92187500000000000000000000000000000e-01 3ffdf800000000000000000000000000 */
/* cos(x) = 0.e19cf580eeec046aa1422fa74807ecefb2a1911c94e7b5f20a00f70022d940193691e5bd790 */
8.81301254251340599140161908298100173e-01L, /* 3ffec339eb01ddd808d542845f4e9010 */
-1.43419192312116687783945619009629445e-35L, /* bf8b3104d5e6ee36b184a0df5ff08ffe */
/* sin(x) = 0.78f95b0560a9a3bd6df7bd981dc38c61224d08bc20631ea932e605e53b579e9e0767dfcbbcb */
4.72554863751304451146551317808516942e-01L, /* 3ffde3e56c1582a68ef5b7def660770e */
9.31324774957768018850224267625371204e-36L, /* 3f8a8c2449a117840c63d5265cc0bca7 */
/* x = 5.00000000000000000000000000000000000e-01 3ffe0000000000000000000000000000 */
/* cos(x) = 0.e0a94032dbea7cedbddd9da2fafad98556566b3a89f43eabd72350af3e8b19e801204d8fe2e */
8.77582561890372716116281582603829681e-01L, /* 3ffec1528065b7d4f9db7bbb3b45f5f6 */
-2.89484960181363924855192538540698851e-35L, /* bf8c33d54d4ca62bb05e0aa146e57a86 */
/* sin(x) = 0.7abba1d12c17bfa1d92f0d93f60ded9992f45b4fcaf13cd58b303693d2a0db47db35ae8a3a9 */
4.79425538604203000273287935215571402e-01L, /* 3ffdeaee8744b05efe8764bc364fd838 */
-1.38426977616718318950175848639381926e-35L, /* bf8b2666d0ba4b0350ec32a74cfc96c3 */
/* x = 5.07812500000000000000000000000000000e-01 3ffe0400000000000000000000000000 */
/* cos(x) = 0.dfb20840f3a9b36f7ae2c515342890b5ec583b8366cc2b55029e95094d31112383f2553498b */
8.73810306413054508282556837071377159e-01L, /* 3ffebf641081e75366def5c58a2a6851 */
1.25716864497849302237218128599994785e-35L, /* 3f8b0b5ec583b8366cc2b55029e95095 */
/* sin(x) = 0.7c7bfdaf13e5ed17212f8a7525bfb113aba6c0741b5362bb8d59282a850b63716bca0c910f0 */
4.86266951793275574311011306895834993e-01L, /* 3ffdf1eff6bc4f97b45c84be29d496ff */
-1.12269393250914752644352376448094271e-35L, /* bf8add8a8b27f17c9593a88e54dafaaf */
/* x = 5.15625000000000000000000000000000000e-01 3ffe0800000000000000000000000000 */
/* cos(x) = 0.deb7518814a7a931bbcc88c109cd41c50bf8bb48f20ae8c36628d1d3d57574f7dc58f27d91c */
8.69984718058417388828915599901466243e-01L, /* 3ffebd6ea310294f526377991182139b */
-4.68168638300575626782741319792183837e-35L, /* bf8cf1d7a03a25b86fa8b9e4ceb97161 */
/* sin(x) = 0.7e3a679daaf25c676542bcb4028d0964172961c921823a4ef0c3a9070d886dbd073f6283699 */
4.93078685753923057265136552753487121e-01L, /* 3ffdf8e99e76abc9719d950af2d00a34 */
7.06498693112535056352301101088624950e-36L, /* 3f8a2c82e52c3924304749de187520e2 */
/* x = 5.23437500000000000000000000000000000e-01 3ffe0c00000000000000000000000000 */
/* cos(x) = 0.ddb91ff318799172bd2452d0a3889f5169c64a0094bcf0b8aa7dcf0d7640a2eba68955a80be */
8.66106030320656714696616831654267220e-01L, /* 3ffebb723fe630f322e57a48a5a14711 */
2.35610597588322493119667003904687628e-35L, /* 3f8bf5169c64a0094bcf0b8aa7dcf0d7 */
/* sin(x) = 0.7ff6d8a34bd5e8fa54c97482db5159df1f24e8038419c0b448b9eea8939b5d4dfcf40900257 */
4.99860324733013463819556536946425724e-01L, /* 3ffdffdb628d2f57a3e95325d20b6d45 */
1.94636052312235297538564591686645139e-35L, /* 3f8b9df1f24e8038419c0b448b9eea89 */
/* x = 5.31250000000000000000000000000000000e-01 3ffe1000000000000000000000000000 */
/* cos(x) = 0.dcb7777ac420705168f31e3eb780ce9c939ecada62843b54522f5407eb7f21e556059fcd734 */
8.62174479934880504367162510253324274e-01L, /* 3ffeb96eeef58840e0a2d1e63c7d6f02 */
-3.71556818317533582234562471835771823e-35L, /* bf8c8b1b6309a92cebde255d6e855fc1 */
/* sin(x) = 0.81b149ce34caa5a4e650f8d09fd4d6aa74206c32ca951a93074c83b2d294d25dbb0f7fdfad2 */
5.06611454814257367642296000893867192e-01L, /* 3ffe0362939c69954b49cca1f1a13faa */
-3.10963699824274155702706043065967062e-35L, /* bf8c4aac5efc9e69ab572b67c59be269 */
/* x = 5.39062500000000000000000000000000000e-01 3ffe1400000000000000000000000000 */
/* cos(x) = 0.dbb25c25b8260c14f6e7bc98ec991b70c65335198b0ab628bad20cc7b229d4dd62183cfa055 */
8.58190306862660347046629564970494649e-01L, /* 3ffeb764b84b704c1829edcf7931d932 */
2.06439574601190798155563653000684861e-35L, /* 3f8bb70c65335198b0ab628bad20cc7b */
/* sin(x) = 0.8369b434a372da7eb5c8a71fe36ce1e0b2b493f6f5cb2e38bcaec2a556b3678c401940d1c3c */
5.13331663943471218288801270215706878e-01L, /* 3ffe06d3686946e5b4fd6b914e3fc6da */
-2.26614796466671970772244932848067224e-35L, /* bf8be1f4d4b6c090a34d1c743513d5ab */
/* x = 5.46875000000000000000000000000000000e-01 3ffe1800000000000000000000000000 */
/* cos(x) = 0.daa9d20860827063fde51c09e855e9932e1b17143e7244fd267a899d41ae1f3bc6a0ec42e27 */
8.54153754277385385143451785105103176e-01L, /* 3ffeb553a410c104e0c7fbca3813d0ac */
-1.68707534013095152873222061722573172e-35L, /* bf8b66cd1e4e8ebc18dbb02d9857662c */
/* sin(x) = 0.852010f4f0800521378bd8dd614753d080c2e9e0775ffc609947b9132f5357404f464f06a58 */
5.20020541953727004760213699874674730e-01L, /* 3ffe0a4021e9e1000a426f17b1bac28f */
-3.32415021330884924833711842866896734e-35L, /* bf8c617bf9e8b0fc45001cfb35c23767 */
/* x = 5.54687500000000000000000000000000000e-01 3ffe1c00000000000000000000000000 */
/* cos(x) = 0.d99ddd44e44a43d4d4a3a3ed95204106fd54d78e8c7684545c0da0b7c2c72be7a89b7c182ad */
8.50065068549420263957072899177793617e-01L, /* 3ffeb33bba89c89487a9a94747db2a41 */
-4.73753917078785974356016104842568442e-35L, /* bf8cf7c81559438b9c4bdd5d1f92fa42 */
/* sin(x) = 0.86d45935ab396cb4e421e822dee54f3562dfcefeaa782184c23401d231f5ad981a1cc195b18 */
5.26677680590386730710789410624833901e-01L, /* 3ffe0da8b26b5672d969c843d045bdcb */
-3.67066148195515214077582496518566735e-35L, /* bf8c8654e901880aac3ef3d9ee5ff16e */
/* x = 5.62500000000000000000000000000000000e-01 3ffe2000000000000000000000000000 */
/* cos(x) = 0.d88e820b1526311dd561efbc0c1a9a5375eb26f65d246c5744b13ca26a7e0fd42556da843c8 */
8.45924499231067954459723078597493262e-01L, /* 3ffeb11d04162a4c623baac3df781835 */
1.98054947141989878179164342925274053e-35L, /* 3f8ba5375eb26f65d246c5744b13ca27 */
/* sin(x) = 0.88868625b4e1dbb2313310133022527200c143a5cb16637cb7daf8ade82459ff2e98511f40f */
5.33302673536020173329131103308161529e-01L, /* 3ffe110d0c4b69c3b764626620266045 */
-3.42715291319551615996993795226755157e-35L, /* bf8c6c6ff9f5e2d1a74ce41a41283a91 */
/* x = 5.70312500000000000000000000000000000e-01 3ffe2400000000000000000000000000 */
/* cos(x) = 0.d77bc4985e93a607c9d868b906bbc6bbe3a04258814acb0358468b826fc91bd4d814827f65e */
8.41732299041338366963111794309701085e-01L, /* 3ffeaef78930bd274c0f93b0d1720d78 */
-4.30821936750410026005408345400225948e-35L, /* bf8cca20e2fded3bf5a9a7e53dcba3ed */
/* sin(x) = 0.8a3690fc5bfc11bf9535e2739a8512f448a41251514bbed7fc18d530f9b4650fcbb2861b0aa */
5.39895116435204405041660709903993340e-01L, /* 3ffe146d21f8b7f8237f2a6bc4e7350a */
1.42595803521626714477253741404712093e-35L, /* 3f8b2f448a41251514bbed7fc18d5310 */
/* x = 5.78125000000000000000000000000000000e-01 3ffe2800000000000000000000000000 */
/* cos(x) = 0.d665a937b4ef2b1f6d51bad6d988a4419c1d7051faf31a9efa151d7631117efac03713f950a */
8.37488723850523685315353348917240617e-01L, /* 3ffeaccb526f69de563edaa375adb311 */
2.72761997872084533045777718677326179e-35L, /* 3f8c220ce0eb828fd798d4f7d0a8ebb2 */
/* sin(x) = 0.8be472f9776d809af2b88171243d63d66dfceeeb739cc894e023fbc165a0e3f26ff729c5d57 */
5.46454606919203564403349553749411001e-01L, /* 3ffe17c8e5f2eedb0135e57102e2487b */
-2.11870230730160315420936523771864858e-35L, /* bf8bc29920311148c63376b1fdc043ea */
/* x = 5.85937500000000000000000000000000000e-01 3ffe2c00000000000000000000000000 */
/* cos(x) = 0.d54c3441844897fc8f853f0655f1ba695eba9fbfd7439dbb1171d862d9d9146ca5136f825ac */
8.33194032664581363070224042208032321e-01L, /* 3ffeaa98688308912ff91f0a7e0cabe3 */
4.39440050052045486567668031751259899e-35L, /* 3f8cd34af5d4fdfeba1cedd88b8ec317 */
/* sin(x) = 0.8d902565817ee7839bce3cd128060119492cd36d42d82ada30d7f8bde91324808377ddbf5d4 */
5.52980744630527369849695082681623667e-01L, /* 3ffe1b204acb02fdcf07379c79a2500c */
8.26624790417342895897164123189984127e-37L, /* 3f8719492cd36d42d82ada30d7f8bde9 */
/* x = 5.93750000000000000000000000000000000e-01 3ffe3000000000000000000000000000 */
/* cos(x) = 0.d42f6a1b9f0168cdf031c2f63c8d9304d86f8d34cb1d5fccb68ca0f2241427fc18d1fd5bbdf */
8.28848487609325734810171790119116638e-01L, /* 3ffea85ed4373e02d19be06385ec791b */
1.43082508100496581719048175506239770e-35L, /* 3f8b304d86f8d34cb1d5fccb68ca0f22 */
/* sin(x) = 0.8f39a191b2ba6122a3fa4f41d5a3ffd421417d46f19a22230a14f7fcc8fce5c75b4b28b29d1 */
5.59473131247366877384844006003116688e-01L, /* 3ffe1e7343236574c24547f49e83ab48 */
-1.28922620524163922306886952100992796e-37L, /* bf845ef5f415c8732eeee7af584019b8 */
/* x = 6.01562500000000000000000000000000000e-01 3ffe3400000000000000000000000000 */
/* cos(x) = 0.d30f4f392c357ab0661c5fa8a7d9b26627846fef214b1d19a22379ff9eddba087cf410eb097 */
8.24452353914429207485643598212356053e-01L, /* 3ffea61e9e72586af560cc38bf514fb3 */
3.79160239225080026987031418939026741e-35L, /* 3f8c93313c237f790a58e8cd111bcffd */
/* sin(x) = 0.90e0e0d81ca678796cc92c8ea8c2815bc72ca78abe571bfa8576aacc571e096a33237e0e830 */
5.65931370507905990773159095689276114e-01L, /* 3ffe21c1c1b0394cf0f2d992591d5185 */
1.02202775968053982310991962521535027e-36L, /* 3f875bc72ca78abe571bfa8576aacc57 */
/* x = 6.09375000000000000000000000000000000e-01 3ffe3800000000000000000000000000 */
/* cos(x) = 0.d1ebe81a95ee752e48a26bcd32d6e922d7eb44b8ad2232f6930795e84b56317269b9dd1dfa6 */
8.20005899897234008255550633876556043e-01L, /* 3ffea3d7d0352bdcea5c9144d79a65ae */
-1.72008811955230823416724332297991247e-35L, /* bf8b6dd2814bb4752ddcd096cf86a17b */
/* sin(x) = 0.9285dc9bc45dd9ea3d02457bcce59c4175aab6ff7929a8d287195525fdace200dba032874fb */
5.72355068234507240384953706824503608e-01L, /* 3ffe250bb93788bbb3d47a048af799cb */
2.12572273479933123944580199464514529e-35L, /* 3f8bc4175aab6ff7929a8d2871955260 */
/* x = 6.17187500000000000000000000000000000e-01 3ffe3c00000000000000000000000000 */
/* cos(x) = 0.d0c5394d772228195e25736c03574707de0af1ca344b13bd3914bfe27518e9e426f5deff1e1 */
8.15509396946375476876345384201386217e-01L, /* 3ffea18a729aee445032bc4ae6d806af */
-4.28589138410712954051679139949341961e-35L, /* bf8cc7c10fa871ae5da76216375a00ec */
/* sin(x) = 0.94288e48bd0335fc41c4cbd2920497a8f5d1d8185c99fa0081f90c27e2a53ffdd208a0dbe69 */
5.78743832357770354521111378581385347e-01L, /* 3ffe28511c917a066bf8838997a52409 */
1.77998063432551282609698670002456093e-35L, /* 3f8b7a8f5d1d8185c99fa0081f90c27e */
/* x = 6.25000000000000000000000000000000000e-01 3ffe4000000000000000000000000000 */
/* cos(x) = 0.cf9b476c897c25c5bfe750dd3f308eaf7bcc1ed00179a256870f4200445043dcdb1974b5878 */
8.10963119505217902189534803941080724e-01L, /* 3ffe9f368ed912f84b8b7fcea1ba7e61 */
1.10481292856794436426051402418804358e-35L, /* 3f8ad5ef7983da002f344ad0e1e84009 */
/* sin(x) = 0.95c8ef544210ec0b91c49bd2aa09e8515fa61a156ebb10f5f8c232a6445b61ebf3c2ec268f9 */
5.85097272940462154805399314150080459e-01L, /* 3ffe2b91dea88421d817238937a55414 */
-1.78164576278056195136525335403380464e-35L, /* bf8b7aea059e5ea9144ef0a073dcd59c */
/* x = 6.32812500000000000000000000000000000e-01 3ffe4400000000000000000000000000 */
/* cos(x) = 0.ce6e171f92f2e27f32225327ec440ddaefae248413efc0e58ceee1ae369aabe73f88c87ed1a */
8.06367345055103913698795406077297399e-01L, /* 3ffe9cdc2e3f25e5c4fe6444a64fd888 */
1.04235088143133625463876245029180850e-35L, /* 3f8abb5df5c490827df81cb19ddc35c7 */
/* sin(x) = 0.9766f93cd18413a6aafc1cfc6fc28abb6817bf94ce349901ae3f48c3215d3eb60acc5f78903 */
5.91415002201316315087000225758031236e-01L, /* 3ffe2ecdf279a308274d55f839f8df85 */
8.07390238063560077355762466502569603e-36L, /* 3f8a576d02f7f299c6932035c7e91864 */
/* x = 6.40625000000000000000000000000000000e-01 3ffe4800000000000000000000000000 */
/* cos(x) = 0.cd3dad1b5328a2e459f993f4f5108819faccbc4eeba9604e81c7adad51cc8a2561631a06826 */
8.01722354098418450607492605652964208e-01L, /* 3ffe9a7b5a36a65145c8b3f327e9ea21 */
6.09487851305233089325627939458963741e-36L, /* 3f8a033f599789dd752c09d038f5b5aa */
/* sin(x) = 0.9902a58a45e27bed68412b426b675ed503f54d14c8172e0d373f42cadf04daf67319a7f94be */
5.97696634538701531238647618967334337e-01L, /* 3ffe32054b148bc4f7dad0825684d6cf */
-2.49527608940873714527427941350461554e-35L, /* bf8c0957e0559759bf468f964605e9a9 */
/* x = 6.48437500000000000000000000000000000e-01 3ffe4c00000000000000000000000000 */
/* cos(x) = 0.cc0a0e21709883a3ff00911e11a07ee3bd7ea2b04e081be99be0264791170761ae64b8b744a */
7.97028430141468342004642741431945296e-01L, /* 3ffe98141c42e1310747fe01223c2341 */
-8.35364432831812599727083251866305534e-37L, /* bf871c42815d4fb1f7e416641fd9b86f */
/* sin(x) = 0.9a9bedcdf01b38d993f3d7820781de292033ead73b89e28f39313dbe3a6e463f845b5fa8490 */
6.03941786554156657267270287527367726e-01L, /* 3ffe3537db9be03671b327e7af040f04 */
-2.54578992328947177770363936132309779e-35L, /* bf8c0eb6fe60a94623b0eb863676120e */
/* x = 6.56250000000000000000000000000000000e-01 3ffe5000000000000000000000000000 */
/* cos(x) = 0.cad33f00658fe5e8204bbc0f3a66a0e6a773f87987a780b243d7be83b3db1448ca0e0e62787 */
7.92285859677178543141501323781709399e-01L, /* 3ffe95a67e00cb1fcbd04097781e74cd */
2.47519558228473167879248891673807645e-35L, /* 3f8c07353b9fc3cc3d3c05921ebdf41e */
/* sin(x) = 0.9c32cba2b14156ef05256c4f857991ca6a547cd7ceb1ac8a8e62a282bd7b9183648a462bd04 */
6.10150077075791371273742393566183220e-01L, /* 3ffe386597456282adde0a4ad89f0af3 */
1.33842237929938963780969418369150532e-35L, /* 3f8b1ca6a547cd7ceb1ac8a8e62a282c */
/* x = 6.64062500000000000000000000000000000e-01 3ffe5400000000000000000000000000 */
/* cos(x) = 0.c99944936cf48c8911ff93fe64b3ddb7981e414bdaf6aae1203577de44878c62bc3bc9cf7b9 */
7.87494932167606083931328295965533034e-01L, /* 3ffe93328926d9e9191223ff27fcc968 */
-2.57915385618070637156514241185180920e-35L, /* bf8c12433f0df5a1284aa8f6fe54410e */
/* sin(x) = 0.9dc738ad14204e689ac582d0f85826590feece34886cfefe2e08cf2bb8488d55424dc9d3525 */
6.16321127181550943005700433761731837e-01L, /* 3ffe3b8e715a28409cd1358b05a1f0b0 */
2.88497530050197716298085892460478666e-35L, /* 3f8c32c87f7671a44367f7f17046795e */
/* x = 6.71875000000000000000000000000000000e-01 3ffe5800000000000000000000000000 */
/* cos(x) = 0.c85c23c26ed7b6f014ef546c47929682122876bfbf157de0aff3c4247d820c746e32cd4174f */
7.82655940026272796930787447428139026e-01L, /* 3ffe90b84784ddaf6de029dea8d88f25 */
1.69332045679237919427807771288506254e-35L, /* 3f8b682122876bfbf157de0aff3c4248 */
/* sin(x) = 0.9f592e9b66a9cf906a3c7aa3c10199849040c45ec3f0a747597311038101780c5f266059dbf */
6.22454560222343683041926705090443330e-01L, /* 3ffe3eb25d36cd539f20d478f5478203 */
1.91974786921147072717621236192269859e-35L, /* 3f8b9849040c45ec3f0a747597311038 */
/* x = 6.79687500000000000000000000000000000e-01 3ffe5c00000000000000000000000000 */
/* cos(x) = 0.c71be181ecd6875ce2da5615a03cca207d9adcb9dfb0a1d6c40a4f0056437f1a59ccddd06ee */
7.77769178600317903122203513685412863e-01L, /* 3ffe8e37c303d9ad0eb9c5b4ac2b407a */
-4.05296033424632846931240580239929672e-35L, /* bf8caefc13291a31027af149dfad87fd */
/* sin(x) = 0.a0e8a725d33c828c11fa50fd9e9a15ffecfad43f3e534358076b9b0f6865694842b1e8c67dc */
6.28550001845029662028004327939032867e-01L, /* 3ffe41d14e4ba679051823f4a1fb3d34 */
1.65507421184028099672784511397428852e-35L, /* 3f8b5ffecfad43f3e534358076b9b0f7 */
/* x = 6.87500000000000000000000000000000000e-01 3ffe6000000000000000000000000000 */
/* cos(x) = 0.c5d882d2ee48030c7c07d28e981e34804f82ed4cf93655d2365389b716de6ad44676a1cc5da */
7.72834946152471544810851845913425178e-01L, /* 3ffe8bb105a5dc900618f80fa51d303c */
3.94975229341211664237241534741146939e-35L, /* 3f8ca4027c176a67c9b2ae91b29c4db9 */
/* sin(x) = 0.a2759c0e79c35582527c32b55f5405c182c66160cb1d9eb7bb0b7cdf4ad66f317bda4332914 */
6.34607080015269296850309914203671436e-01L, /* 3ffe44eb381cf386ab04a4f8656abea8 */
4.33025916939968369326060156455927002e-36L, /* 3f897060b1985832c767adeec2df37d3 */
/* x = 6.95312500000000000000000000000000000e-01 3ffe6400000000000000000000000000 */
/* cos(x) = 0.c4920cc2ec38fb891b38827db08884fc66371ac4c2052ca8885b981bbcfd3bb7b093ee31515 */
7.67853543842850365879920759114193964e-01L, /* 3ffe89241985d871f712367104fb6111 */
3.75100035267325597157244776081706979e-36L, /* 3f893f198dc6b130814b2a2216e606ef */
/* sin(x) = 0.a400072188acf49cd6b173825e038346f105e1301afe642bcc364cea455e21e506e3e927ed8 */
6.40625425040230409188409779413961021e-01L, /* 3ffe48000e431159e939ad62e704bc07 */
2.46542747294664049615806500747173281e-36L, /* 3f88a37882f0980d7f3215e61b267523 */
/* x = 7.03125000000000000000000000000000000e-01 3ffe6800000000000000000000000000 */
/* cos(x) = 0.c348846bbd3631338ffe2bfe9dd1381a35b4e9c0c51b4c13fe376bad1bf5caacc4542be0aa9 */
7.62825275710576250507098753625429792e-01L, /* 3ffe869108d77a6c62671ffc57fd3ba2 */
4.22067411888601505004748939382325080e-35L, /* 3f8cc0d1ada74e0628da609ff1bb5d69 */
/* sin(x) = 0.a587e23555bb08086d02b9c662cdd29316c3e9bd08d93793634a21b1810cce73bdb97a99b9e */
6.46604669591152370524042159882800763e-01L, /* 3ffe4b0fc46aab761010da05738cc59c */
-3.41742981816219412415674365946079826e-35L, /* bf8c6b6749e0b217b9364364e5aef274 */
/* x = 7.10937500000000000000000000000000000e-01 3ffe6c00000000000000000000000000 */
/* cos(x) = 0.c1fbeef380e4ffdd5a613ec8722f643ffe814ec2343e53adb549627224fdc9f2a7b77d3d69f */
7.57750448655219342240234832230493361e-01L, /* 3ffe83f7dde701c9ffbab4c27d90e45f */
-2.08767968311222650582659938787920125e-35L, /* bf8bbc0017eb13dcbc1ac524ab69d8de */
/* sin(x) = 0.a70d272a76a8d4b6da0ec90712bb748b96dabf88c3079246f3db7eea6e58ead4ed0e2843303 */
6.52544448725765956407573982284767763e-01L, /* 3ffe4e1a4e54ed51a96db41d920e2577 */
-8.61758060284379660697102362141557170e-36L, /* bf8a6e8d24a80ee79f0db721849022b2 */
/* x = 7.18750000000000000000000000000000000e-01 3ffe7000000000000000000000000000 */
/* cos(x) = 0.c0ac518c8b6ae710ba37a3eeb90cb15aebcb8bed4356fb507a48a6e97de9aa6d9660116b436 */
7.52629372418066476054541324847143116e-01L, /* 3ffe8158a31916d5ce21746f47dd7219 */
3.71306958657663189665450864311104571e-35L, /* 3f8c8ad75e5c5f6a1ab7da83d245374c */
/* sin(x) = 0.a88fcfebd9a8dd47e2f3c76ef9e2439920f7e7fbe735f8bcc985491ec6f12a2d4214f8cfa99 */
6.58444399910567541589583954884041989e-01L, /* 3ffe511f9fd7b351ba8fc5e78eddf3c5 */
-4.54412944084300330523721391865787219e-35L, /* bf8ce336f840c020c6503a19b3d5b70a */
/* x = 7.26562500000000000000000000000000000e-01 3ffe7400000000000000000000000000 */
/* cos(x) = 0.bf59b17550a4406875969296567cf3e3b4e483061877c02811c6cae85fad5a6c3da58f49292 */
7.47462359563216166669700384714767552e-01L, /* 3ffe7eb362eaa14880d0eb2d252cacfa */
-9.11094340926220027288083639048016945e-36L, /* bf8a8389636f9f3cf107fafdc726a2f4 */
/* sin(x) = 0.aa0fd66eddb921232c28520d3911b8a03193b47f187f1471ac216fbcd5bb81029294d3a73f1 */
6.64304163042946276515506587432846246e-01L, /* 3ffe541facddbb7242465850a41a7223 */
4.26004843895378210155889028714676019e-35L, /* 3f8cc5018c9da3f8c3f8a38d610b7de7 */
/* x = 7.34375000000000000000000000000000000e-01 3ffe7800000000000000000000000000 */
/* cos(x) = 0.be0413f84f2a771c614946a88cbf4da1d75a5560243de8f2283fefa0ea4a48468a52d51d8b3 */
7.42249725458501306991347253449610537e-01L, /* 3ffe7c0827f09e54ee38c2928d51197f */
-3.78925270049800913539923473871287550e-35L, /* bf8c92f1452d54fede10b86ebe0082f9 */
/* sin(x) = 0.ab8d34b36acd987210ed343ec65d7e3adc2e7109fce43d55c8d57dfdf55b9e01d2cc1f1b9ec */
6.70123380473162894654531583500648495e-01L, /* 3ffe571a6966d59b30e421da687d8cbb */
-1.33165852952743729897634069393684656e-36L, /* bf87c523d18ef6031bc2aa372a82020b */
/* x = 7.42187500000000000000000000000000000e-01 3ffe7c00000000000000000000000000 */
/* cos(x) = 0.bcab7e6bfb2a14a9b122c574a376bec98ab14808c64a4e731b34047e217611013ac99c0f25d */
7.36991788256240741057089385586450844e-01L, /* 3ffe7956fcd7f654295362458ae946ed */
4.72358938637974850573747497460125519e-35L, /* 3f8cf64c558a404632527398d9a023f1 */
/* sin(x) = 0.ad07e4c409d08c4fa3a9057bb0ac24b8636e74e76f51e09bd6b2319707cbd9f5e254643897a */
6.75901697026178809189642203142423973e-01L, /* 3ffe5a0fc98813a1189f47520af76158 */
2.76252586616364878801928456702948857e-35L, /* 3f8c25c31b73a73b7a8f04deb5918cb8 */
/* x = 7.50000000000000000000000000000000000e-01 3ffe8000000000000000000000000000 */
/* cos(x) = 0.bb4ff632a908f73ec151839cb9d993b4e0bfb8f20e7e44e6e4aee845e35575c3106dbe6fd06 */
7.31688868873820886311838753000084529e-01L, /* 3ffe769fec655211ee7d82a3073973b3 */
1.48255637548931697184991710293198620e-35L, /* 3f8b3b4e0bfb8f20e7e44e6e4aee845e */
/* sin(x) = 0.ae7fe0b5fc786b2d966e1d6af140a488476747c2646425fc7533f532cd044cb10a971a49a6a */
6.81638760023334166733241952779893908e-01L, /* 3ffe5cffc16bf8f0d65b2cdc3ad5e281 */
2.74838775935027549024224114338667371e-35L, /* 3f8c24423b3a3e1323212fe3a99fa996 */
/* x = 7.57812500000000000000000000000000000e-01 3ffe8400000000000000000000000000 */
/* cos(x) = 0.b9f180ba77dd0751628e135a9508299012230f14becacdd14c3f8862d122de5b56d55b53360 */
7.26341290974108590410147630237598973e-01L, /* 3ffe73e30174efba0ea2c51c26b52a10 */
3.12683579338351123545814364980658990e-35L, /* 3f8c4c80911878a5f6566e8a61fc4317 */
/* sin(x) = 0.aff522a954f2ba16d9defdc416e33f5e9a5dfd5a6c228e0abc4d521327ff6e2517a7b3851dd */
6.87334219303873534951703613035647220e-01L, /* 3ffe5fea4552a9e5742db3bdfb882dc6 */
4.76739454455410744997012795035529128e-35L, /* 3f8cfaf4d2efead361147055e26a9099 */
/* x = 7.65625000000000000000000000000000000e-01 3ffe8800000000000000000000000000 */
/* cos(x) = 0.b890237d3bb3c284b614a0539016bfa1053730bbdf940fa895e185f8e58884d3dda15e63371 */
7.20949380945696418043812784148447688e-01L, /* 3ffe712046fa776785096c2940a7202d */
4.78691285733673379499536326050811832e-35L, /* 3f8cfd0829b985defca07d44af0c2fc7 */
/* sin(x) = 0.b167a4c90d63c4244cf5493b7cc23bd3c3c1225e078baa0c53d6d400b926281f537a1a260e6 */
6.92987727246317910281815490823048210e-01L, /* 3ffe62cf49921ac7884899ea9276f984 */
4.50089871077663557180849219529189918e-35L, /* 3f8cde9e1e0912f03c5d50629eb6a006 */
/* x = 7.73437500000000000000000000000000000e-01 3ffe8c00000000000000000000000000 */
/* cos(x) = 0.b72be40067aaf2c050dbdb7a14c3d7d4f203f6b3f0224a4afe55d6ec8e92b508fd5c5984b3b */
7.15513467882981573520620561289896903e-01L, /* 3ffe6e57c800cf55e580a1b7b6f42988 */
-3.02191815581445336509438104625489192e-35L, /* bf8c41586fe04a607eedada80d51489c */
/* sin(x) = 0.b2d7614b1f3aaa24df2d6e20a77e1ca3e6d838c03e29c1bcb026e6733324815fadc9eb89674 */
6.98598938789681741301929277107891591e-01L, /* 3ffe65aec2963e755449be5adc414efc */
2.15465226809256290914423429408722521e-35L, /* 3f8bca3e6d838c03e29c1bcb026e6733 */
/* x = 7.81250000000000000000000000000000000e-01 3ffe9000000000000000000000000000 */
/* cos(x) = 0.b5c4c7d4f7dae915ac786ccf4b1a498d3e73b6e5e74fe7519d9c53ee6d6b90e881bddfc33e1 */
7.10033883566079674974121643959490219e-01L, /* 3ffe6b898fa9efb5d22b58f0d99e9635 */
-4.09623224763692443220896752907902465e-35L, /* bf8cb3960c6248d0c580c573131d608d */
/* sin(x) = 0.b44452709a59752905913765434a59d111f0433eb2b133f7d103207e2aeb4aae111ddc385b3 */
7.04167511454533672780059509973942844e-01L, /* 3ffe6888a4e134b2ea520b226eca8695 */
-2.87259372740393348676633610275598640e-35L, /* bf8c3177707de60a6a76604177e6fc0f */
/* x = 7.89062500000000000000000000000000000e-01 3ffe9400000000000000000000000000 */
/* cos(x) = 0.b45ad4975b1294cadca4cf40ec8f22a68cd14b175835239a37e63acb85e8e9505215df18140 */
7.04510962440574606164129481545916976e-01L, /* 3ffe68b5a92eb6252995b9499e81d91e */
2.60682037357042658395360726992048803e-35L, /* 3f8c1534668a58bac1a91cd1bf31d65c */
/* sin(x) = 0.b5ae7285bc10cf515753847e8f8b7a30e0a580d929d770103509880680f7b8b0e8ad23b65d8 */
7.09693105363899724959669028139035515e-01L, /* 3ffe6b5ce50b78219ea2aea708fd1f17 */
-4.37026016974122945368562319136420097e-36L, /* bf8973c7d69fc9b58a23fbf2bd9dfe60 */
};
|
the_stack_data/166742.c | /*
4. Faça um programa que leia 2 notas de um aluno, verifique se as notas são válidas e exiba na
tela a média destas notas. Uma nota válida deve ser, obrigatoriamente, um valor entre 0.0 e
10.0, onde caso a nota não possua um valor válido, este fato deve ser informado ao usuário e
o programa termina.
*/
#include <stdio.h>
#include <stdlib.h>
int main()
{
//LIMPA O TERMINAL
system("cls");
//DEFININDO VARIAVEIS
float nota1, nota2;
//ENTRADA DE DADOS
printf("Nota dos alunos, as notas validas tem que estar entre 0.0 e 10.0\nDigite a primeira nota do aluno: \n");
scanf("%f", ¬a1);
printf("Digite a outra nota:\n");
scanf("%f", ¬a2);
//CONDICIONAL SE O VALOR É PAR
if(nota1 >= 0 && nota1 <= 10 && nota2 >= 0 && nota2 <= 10)
{
//PROCESSAMENTO
float media = (nota1 + nota2)/2;
//SAÍDA DE DADOS
printf("as notas sao validas e a media entre elas eh : %.1f\n", media);
}else{
//SAIDA DE DADOS
printf("nota invalida, Leira as instrucoes!! <0_0> \n");
}
//MANTEM O CMD ABERTO APÓS A EXECUÇÃO DO CÓDIGO.
system("pause");
return 0;
}
|
the_stack_data/1118493.c | // RUN: clang-cc -fsyntax-only -verify %s
// Test for absence of crash reported in PR 2923:
//
// http://llvm.org/bugs/show_bug.cgi?id=2923
//
// Previously we had a crash when deallocating the FunctionDecl for 'bar'
// because FunctionDecl::getNumParams() just used the type of foo to determine
// the number of parameters it has. In the case of 'bar' there are no
// ParmVarDecls.
int foo(int x, int y) { return x + y; }
extern typeof(foo) bar;
|
the_stack_data/441859.c | #include <stdio.h>
int main(void)
{
int x, result;
printf("Enter a value for x: ");
scanf("%d", &x);
result = ((((3 * x + 2) * x - 5) * x - 1) * x + 7) * x - 6;
printf("The result is %d", result);
return 0;
} |
the_stack_data/93888173.c | #include <stdio.h>
struct TwoDPoint {
double x, y;
};
int main(void) {
struct TwoDPoint a, b = {0.0 ,0.0}; //added struct and got rid of the _t so it would initialise a and b
{
char input [100];
puts("Please enter the x and y coordinates of the 1st point , separated by a comma.");
fgets(input , sizeof(input), stdin);
sscanf(input ,"%lf,%lf", &(a.x), &(a.y)); //changed a.y to &(a.y) so the value is stored in the correct place
puts("Please enter the x and y coordinates of the 2nd point , separated by a comma.");
fgets(input , sizeof(input), stdin);
sscanf(input ,"%lf,%lf", &(b.x), &(b.y)); //Changed %f to %lf so the values are stored as doubles
}
double x_dist = (a.x - b.x), y_dist = (a.y - b.y);
printf("The square of the distance between the twopoints is: %f\n", (x_dist*x_dist)+(y_dist*y_dist));
return 0;
}
//The input handling doesn't have to be in a seperate block for the program to work, but doing it like this means that the array input[] isn't using memory when it isn't needed any more
|
the_stack_data/182953498.c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main() {
int a = 10;
float f = 457.4426739;
char *s = "THE BIG STORY";
// %d or %i decimal integer
// \n represent newline
printf("decimal number: %d\n", a);
// %6d decimal with a width of at least 6 wide
printf("decimal number: %6d\n", a);
//%f floating point
printf("Float number: %f\n", f);
//%.4f floating point with a precision of four characters
printf("Float number: %.4f\n", f);
//%3.2f floating point at least 3 wide and a precision of 2)
printf("Float number: %3.2f\n", f);
// %s prints the string
printf("The color: %s\n", s);
// %s prints the Hexadecimal
printf("Hexadecimal: %x\n", 255);
// %s prints the Octal
printf("Octal: %o\n", 255);
// %s prints the Unsigned value
printf("Unsigned value: %u\n", 150);
// %s prints the percentage sign
printf("print the percentage sign %%\n");
return 0;
}
|
the_stack_data/818307.c | #include <stdio.h>
#include <math.h>
#define cbrt(X) \
_Generic((X), \
long double: cbrtl, \
default: cbrt, \
const float: cbrtf, \
float: cbrtf \
)(X)
int main(void) {
double x = 8.0;
const float y = 3.375;
printf("cbrt(8.0) = %f\n", cbrt(x));
printf("cbrtf(3.375) = %f\n", cbrt(y));
}
|
the_stack_data/625396.c |
int main ()
{
int *i_p1786;
int *j_p1787;
i_p1786 = (j_p1787+(1*4));
}
|
the_stack_data/181393620.c | #include <stdio.h>
int main(){
/*
Write a program that asks a user for an integer,
then counts the number of each digit in the integer,
and displays a list of all digits as follows:
Enter an integer :: 123232488
digit how many?
1 1
2 3
3 2
4 1
8 2
*/
int num, digit[10] = {}, i;
printf("Enter an integer :: ");
scanf("%d", &num);
if (num <=0) return -1;
while(num>0){
i = num%10;
digit[i]++;
num /= 10;
}
printf("digit\thow many?");
for (i = 0; i<10;i++) if (digit[i] != 0) printf("\n%d\t%d",i,digit[i]);
return 0;
}
|
the_stack_data/182952710.c | #include <stdio.h>
int main(void) {
int Publico;
printf("Qual o público presente no jogo?");
scanf("%d", &Publico);
float popular, geral, arquibancada, cadeiras;
popular = 1.00;
geral = 5.00;
arquibancada = 10.00;
cadeiras = 20.00;
int Calculo1, calculo2, calculo3, Calculo4;
Calculo1 = Publico * 0.1;
calculo2 = Publico * 0.5;
calculo3 = Publico * 0.3;
Calculo4 = Publico * 0.1;
printf("O NUMERO DE PESSOAS PRESENTES É: %d popular, %d geral, %d arquibancada, %d cadeiras\n", Calculo1, calculo2, calculo3, Calculo4);
float Dinheiropop, Dinheiroger, Dinheiroarq, Dinheirocad, total;
Dinheiropop = Calculo1 * popular;
Dinheiroger = calculo2 * geral;
Dinheiroarq = calculo3 * arquibancada;
Dinheirocad = Calculo4 * cadeiras;
total = Dinheiropop + Dinheiroger + Dinheiroarq + Dinheirocad;
printf("Totalizando um valor de: %0.2f reais\n", total);
return 0;
}
|
the_stack_data/11075963.c | #include <string.h>
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
struct nodeStruct
{
char mnemonic[32];
char flagZ[2];
char flagN[2];
char flagH[2];
char flagC[2];
uint8_t len;
uint8_t cyclesTaken;
uint8_t cyclesNotTaken;
uint8_t hex;
};
typedef struct nodeStruct node;
int main(void)
{
node opcode[] = {
{"NOP","-","-","-","-",1,4,4,0x0},
{"LD BC,d16","-","-","-","-",3,12,12,0x1},
{"LD (BC),A","-","-","-","-",1,8,8,0x2},
{"INC BC","-","-","-","-",1,8,8,0x3},
{"INC B","Z","0","H","-",1,4,4,0x4},
{"DEC B","Z","1","H","-",1,4,4,0x5},
{"LD B,d8","-","-","-","-",2,8,8,0x6},
{"RLCA","0","0","0","C",1,4,4,0x7},
{"LD (a16),SP","-","-","-","-",3,20,20,0x8},
{"ADD HL,BC","-","0","H","C",1,8,8,0x9},
{"LD A,(BC)","-","-","-","-",1,8,8,0xA},
{"DEC BC","-","-","-","-",1,8,8,0xB},
{"INC C","Z","0","H","-",1,4,4,0xC},
{"DEC C","Z","1","H","-",1,4,4,0xD},
{"LD C,d8","-","-","-","-",2,8,8,0xE},
{"RRCA","0","0","0","C",1,4,4,0xF},
{"STOP 0","-","-","-","-",2,4,4,0x10},
{"LD DE,d16","-","-","-","-",3,12,12,0x11},
{"LD (DE),A","-","-","-","-",1,8,8,0x12},
{"INC DE","-","-","-","-",1,8,8,0x13},
{"INC D","Z","0","H","-",1,4,4,0x14},
{"DEC D","Z","1","H","-",1,4,4,0x15},
{"LD D,d8","-","-","-","-",2,8,8,0x16},
{"RLA","0","0","0","C",1,4,4,0x17},
{"JR r8","-","-","-","-",2,12,12,0x18},
{"ADD HL,DE","-","0","H","C",1,8,8,0x19},
{"LD A,(DE)","-","-","-","-",1,8,8,0x1A},
{"DEC DE","-","-","-","-",1,8,8,0x1B},
{"INC E","Z","0","H","-",1,4,4,0x1C},
{"DEC E","Z","1","H","-",1,4,4,0x1D},
{"LD E,d8","-","-","-","-",2,8,8,0x1E},
{"RRA","0","0","0","C",1,4,4,0x1F},
{"JR NZ,r8","-","-","-","-",2,12,8,0x20},
{"LD HL,d16","-","-","-","-",3,12,12,0x21},
{"LD (HL+),A","-","-","-","-",1,8,8,0x22},
{"INC HL","-","-","-","-",1,8,8,0x23},
{"INC H","Z","0","H","-",1,4,4,0x24},
{"DEC H","Z","1","H","-",1,4,4,0x25},
{"LD H,d8","-","-","-","-",2,8,8,0x26},
{"DAA","Z","-","0","C",1,4,4,0x27},
{"JR Z,r8","-","-","-","-",2,12,8,0x28},
{"ADD HL,HL","-","0","H","C",1,8,8,0x29},
{"LD A,(HL+)","-","-","-","-",1,8,8,0x2A},
{"DEC HL","-","-","-","-",1,8,8,0x2B},
{"INC L","Z","0","H","-",1,4,4,0x2C},
{"DEC L","Z","1","H","-",1,4,4,0x2D},
{"LD L,d8","-","-","-","-",2,8,8,0x2E},
{"CPL","-","1","1","-",1,4,4,0x2F},
{"JR NC,r8","-","-","-","-",2,12,8,0x30},
{"LD SP,d16","-","-","-","-",3,12,12,0x31},
{"LD (HL-),A","-","-","-","-",1,8,8,0x32},
{"INC SP","-","-","-","-",1,8,8,0x33},
{"INC (HL)","Z","0","H","-",1,12,12,0x34},
{"DEC (HL)","Z","1","H","-",1,12,12,0x35},
{"LD (HL),d8","-","-","-","-",2,12,12,0x36},
{"SCF","-","0","0","1",1,4,4,0x37},
{"JR C,r8","-","-","-","-",2,12,8,0x38},
{"ADD HL,SP","-","0","H","C",1,8,8,0x39},
{"LD A,(HL-)","-","-","-","-",1,8,8,0x3A},
{"DEC SP","-","-","-","-",1,8,8,0x3B},
{"INC A","Z","0","H","-",1,4,4,0x3C},
{"DEC A","Z","1","H","-",1,4,4,0x3D},
{"LD A,d8","-","-","-","-",2,8,8,0x3E},
{"CCF","-","0","0","C",1,4,4,0x3F},
{"LD B,B","-","-","-","-",1,4,4,0x40},
{"LD B,C","-","-","-","-",1,4,4,0x41},
{"LD B,D","-","-","-","-",1,4,4,0x42},
{"LD B,E","-","-","-","-",1,4,4,0x43},
{"LD B,H","-","-","-","-",1,4,4,0x44},
{"LD B,L","-","-","-","-",1,4,4,0x45},
{"LD B,(HL)","-","-","-","-",1,8,8,0x46},
{"LD B,A","-","-","-","-",1,4,4,0x47},
{"LD C,B","-","-","-","-",1,4,4,0x48},
{"LD C,C","-","-","-","-",1,4,4,0x49},
{"LD C,D","-","-","-","-",1,4,4,0x4A},
{"LD C,E","-","-","-","-",1,4,4,0x4B},
{"LD C,H","-","-","-","-",1,4,4,0x4C},
{"LD C,L","-","-","-","-",1,4,4,0x4D},
{"LD C,(HL)","-","-","-","-",1,8,8,0x4E},
{"LD C,A","-","-","-","-",1,4,4,0x4F},
{"LD D,B","-","-","-","-",1,4,4,0x50},
{"LD D,C","-","-","-","-",1,4,4,0x51},
{"LD D,D","-","-","-","-",1,4,4,0x52},
{"LD D,E","-","-","-","-",1,4,4,0x53},
{"LD D,H","-","-","-","-",1,4,4,0x54},
{"LD D,L","-","-","-","-",1,4,4,0x55},
{"LD D,(HL)","-","-","-","-",1,8,8,0x56},
{"LD D,A","-","-","-","-",1,4,4,0x57},
{"LD E,B","-","-","-","-",1,4,4,0x58},
{"LD E,C","-","-","-","-",1,4,4,0x59},
{"LD E,D","-","-","-","-",1,4,4,0x5A},
{"LD E,E","-","-","-","-",1,4,4,0x5B},
{"LD E,H","-","-","-","-",1,4,4,0x5C},
{"LD E,L","-","-","-","-",1,4,4,0x5D},
{"LD E,(HL)","-","-","-","-",1,8,8,0x5E},
{"LD E,A","-","-","-","-",1,4,4,0x5F},
{"LD H,B","-","-","-","-",1,4,4,0x60},
{"LD H,C","-","-","-","-",1,4,4,0x61},
{"LD H,D","-","-","-","-",1,4,4,0x62},
{"LD H,E","-","-","-","-",1,4,4,0x63},
{"LD H,H","-","-","-","-",1,4,4,0x64},
{"LD H,L","-","-","-","-",1,4,4,0x65},
{"LD H,(HL)","-","-","-","-",1,8,8,0x66},
{"LD H,A","-","-","-","-",1,4,4,0x67},
{"LD L,B","-","-","-","-",1,4,4,0x68},
{"LD L,C","-","-","-","-",1,4,4,0x69},
{"LD L,D","-","-","-","-",1,4,4,0x6A},
{"LD L,E","-","-","-","-",1,4,4,0x6B},
{"LD L,H","-","-","-","-",1,4,4,0x6C},
{"LD L,L","-","-","-","-",1,4,4,0x6D},
{"LD L,(HL)","-","-","-","-",1,8,8,0x6E},
{"LD L,A","-","-","-","-",1,4,4,0x6F},
{"LD (HL),B","-","-","-","-",1,8,8,0x70},
{"LD (HL),C","-","-","-","-",1,8,8,0x71},
{"LD (HL),D","-","-","-","-",1,8,8,0x72},
{"LD (HL),E","-","-","-","-",1,8,8,0x73},
{"LD (HL),H","-","-","-","-",1,8,8,0x74},
{"LD (HL),L","-","-","-","-",1,8,8,0x75},
{"HALT","-","-","-","-",1,4,4,0x76},
{"LD (HL),A","-","-","-","-",1,8,8,0x77},
{"LD A,B","-","-","-","-",1,4,4,0x78},
{"LD A,C","-","-","-","-",1,4,4,0x79},
{"LD A,D","-","-","-","-",1,4,4,0x7A},
{"LD A,E","-","-","-","-",1,4,4,0x7B},
{"LD A,H","-","-","-","-",1,4,4,0x7C},
{"LD A,L","-","-","-","-",1,4,4,0x7D},
{"LD A,(HL)","-","-","-","-",1,8,8,0x7E},
{"LD A,A","-","-","-","-",1,4,4,0x7F},
{"ADD A,B","Z","0","H","C",1,4,4,0x80},
{"ADD A,C","Z","0","H","C",1,4,4,0x81},
{"ADD A,D","Z","0","H","C",1,4,4,0x82},
{"ADD A,E","Z","0","H","C",1,4,4,0x83},
{"ADD A,H","Z","0","H","C",1,4,4,0x84},
{"ADD A,L","Z","0","H","C",1,4,4,0x85},
{"ADD A,(HL)","Z","0","H","C",1,8,8,0x86},
{"ADD A,A","Z","0","H","C",1,4,4,0x87},
{"ADC A,B","Z","0","H","C",1,4,4,0x88},
{"ADC A,C","Z","0","H","C",1,4,4,0x89},
{"ADC A,D","Z","0","H","C",1,4,4,0x8A},
{"ADC A,E","Z","0","H","C",1,4,4,0x8B},
{"ADC A,H","Z","0","H","C",1,4,4,0x8C},
{"ADC A,L","Z","0","H","C",1,4,4,0x8D},
{"ADC A,(HL)","Z","0","H","C",1,8,8,0x8E},
{"ADC A,A","Z","0","H","C",1,4,4,0x8F},
{"SUB B","Z","1","H","C",1,4,4,0x90},
{"SUB C","Z","1","H","C",1,4,4,0x91},
{"SUB D","Z","1","H","C",1,4,4,0x92},
{"SUB E","Z","1","H","C",1,4,4,0x93},
{"SUB H","Z","1","H","C",1,4,4,0x94},
{"SUB L","Z","1","H","C",1,4,4,0x95},
{"SUB (HL)","Z","1","H","C",1,8,8,0x96},
{"SUB A","Z","1","H","C",1,4,4,0x97},
{"SBC A,B","Z","1","H","C",1,4,4,0x98},
{"SBC A,C","Z","1","H","C",1,4,4,0x99},
{"SBC A,D","Z","1","H","C",1,4,4,0x9A},
{"SBC A,E","Z","1","H","C",1,4,4,0x9B},
{"SBC A,H","Z","1","H","C",1,4,4,0x9C},
{"SBC A,L","Z","1","H","C",1,4,4,0x9D},
{"SBC A,(HL)","Z","1","H","C",1,8,8,0x9E},
{"SBC A,A","Z","1","H","C",1,4,4,0x9F},
{"AND B","Z","0","1","0",1,4,4,0xA0},
{"AND C","Z","0","1","0",1,4,4,0xA1},
{"AND D","Z","0","1","0",1,4,4,0xA2},
{"AND E","Z","0","1","0",1,4,4,0xA3},
{"AND H","Z","0","1","0",1,4,4,0xA4},
{"AND L","Z","0","1","0",1,4,4,0xA5},
{"AND (HL)","Z","0","1","0",1,8,8,0xA6},
{"AND A","Z","0","1","0",1,4,4,0xA7},
{"XOR B","Z","0","0","0",1,4,4,0xA8},
{"XOR C","Z","0","0","0",1,4,4,0xA9},
{"XOR D","Z","0","0","0",1,4,4,0xAA},
{"XOR E","Z","0","0","0",1,4,4,0xAB},
{"XOR H","Z","0","0","0",1,4,4,0xAC},
{"XOR L","Z","0","0","0",1,4,4,0xAD},
{"XOR (HL)","Z","0","0","0",1,8,8,0xAE},
{"XOR A","Z","0","0","0",1,4,4,0xAF},
{"OR B","Z","0","0","0",1,4,4,0xB0},
{"OR C","Z","0","0","0",1,4,4,0xB1},
{"OR D","Z","0","0","0",1,4,4,0xB2},
{"OR E","Z","0","0","0",1,4,4,0xB3},
{"OR H","Z","0","0","0",1,4,4,0xB4},
{"OR L","Z","0","0","0",1,4,4,0xB5},
{"OR (HL)","Z","0","0","0",1,8,8,0xB6},
{"OR A","Z","0","0","0",1,4,4,0xB7},
{"CP B","Z","1","H","C",1,4,4,0xB8},
{"CP C","Z","1","H","C",1,4,4,0xB9},
{"CP D","Z","1","H","C",1,4,4,0xBA},
{"CP E","Z","1","H","C",1,4,4,0xBB},
{"CP H","Z","1","H","C",1,4,4,0xBC},
{"CP L","Z","1","H","C",1,4,4,0xBD},
{"CP (HL)","Z","1","H","C",1,8,8,0xBE},
{"CP A","Z","1","H","C",1,4,4,0xBF},
{"RET NZ","-","-","-","-",1,20,8,0xC0},
{"POP BC","-","-","-","-",1,12,12,0xC1},
{"JP NZ,a16","-","-","-","-",3,16,12,0xC2},
{"JP a16","-","-","-","-",3,16,16,0xC3},
{"CALL NZ,a16","-","-","-","-",3,24,12,0xC4},
{"PUSH BC","-","-","-","-",1,16,16,0xC5},
{"ADD A,d8","Z","0","H","C",2,8,8,0xC6},
{"RST 00H","-","-","-","-",1,16,16,0xC7},
{"RET Z","-","-","-","-",1,20,8,0xC8},
{"RET","-","-","-","-",1,16,16,0xC9},
{"JP Z,a16","-","-","-","-",3,16,12,0xCA},
{"PREFIX CB","-","-","-","-",1,4,4,0xCB},
{"CALL Z,a16","-","-","-","-",3,24,12,0xCC},
{"CALL a16","-","-","-","-",3,24,24,0xCD},
{"ADC A,d8","Z","0","H","C",2,8,8,0xCE},
{"RST 08H","-","-","-","-",1,16,16,0xCF},
{"RET NC","-","-","-","-",1,20,8,0xD0},
{"POP DE","-","-","-","-",1,12,12,0xD1},
{"JP NC,a16","-","-","-","-",3,16,12,0xD2},
{"invalid","","u","u","u",0,0,0,0xD3},
{"CALL NC,a16","-","-","-","-",3,24,12,0xD4},
{"PUSH DE","-","-","-","-",1,16,16,0xD5},
{"SUB d8","Z","1","H","C",2,8,8,0xD6},
{"RST 10H","-","-","-","-",1,16,16,0xD7},
{"RET C","-","-","-","-",1,20,8,0xD8},
{"RETI","-","-","-","-",1,16,16,0xD9},
{"JP C,a16","-","-","-","-",3,16,12,0xDA},
{"invalid","","u","u","u",0,0,0,0xDB},
{"CALL C,a16","-","-","-","-",3,24,12,0xDC},
{"invalid","","u","u","u",0,0,0,0xDD},
{"SBC A,d8","Z","1","H","C",2,8,8,0xDE},
{"RST 18H","-","-","-","-",1,16,16,0xDF},
{"LDH (a8),A","-","-","-","-",2,12,12,0xE0},
{"POP HL","-","-","-","-",1,12,12,0xE1},
{"LD (C),A","-","-","-","-",2,8,8,0xE2},
{"invalid","","u","u","u",0,0,0,0xE3},
{"invalid","","u","u","u",0,0,0,0xE4},
{"PUSH HL","-","-","-","-",1,16,16,0xE5},
{"AND d8","Z","0","1","0",2,8,8,0xE6},
{"RST 20H","-","-","-","-",1,16,16,0xE7},
{"ADD SP,r8","0","0","H","C",2,16,16,0xE8},
{"JP (HL)","-","-","-","-",1,4,4,0xE9},
{"LD (a16),A","-","-","-","-",3,16,16,0xEA},
{"invalid","","u","u","u",0,0,0,0xEB},
{"invalid","","u","u","u",0,0,0,0xEC},
{"invalid","","u","u","u",0,0,0,0xED},
{"XOR d8","Z","0","0","0",2,8,8,0xEE},
{"RST 28H","-","-","-","-",1,16,16,0xEF},
{"LDH A,(a8)","-","-","-","-",2,12,12,0xF0},
{"POP AF","Z","N","H","C",1,12,12,0xF1},
{"LD A,(C)","-","-","-","-",2,8,8,0xF2},
{"DI","-","-","-","-",1,4,4,0xF3},
{"invalid","","u","u","u",0,0,0,0xF4},
{"PUSH AF","-","-","-","-",1,16,16,0xF5},
{"OR d8","Z","0","0","0",2,8,8,0xF6},
{"RST 30H","-","-","-","-",1,16,16,0xF7},
{"LD HL,SP+r8","0","0","H","C",2,12,12,0xF8},
{"LD SP,HL","-","-","-","-",1,8,8,0xF9},
{"LD A,(a16)","-","-","-","-",3,16,16,0xFA},
{"EI","-","-","-","-",1,4,4,0xFB},
{"invalid","","u","u","u",0,0,0,0xFC},
{"invalid","","u","u","u",0,0,0,0xFD},
{"CP d8","Z","1","H","C",2,8,8,0xFE},
{"RST 38H","-","-","-","-",1,16,16,0xFF}
};
node cb[] = {
{"RLC B","Z","0","0","C",2,8,8,0x0},
{"RLC C","Z","0","0","C",2,8,8,0x1},
{"RLC D","Z","0","0","C",2,8,8,0x2},
{"RLC E","Z","0","0","C",2,8,8,0x3},
{"RLC H","Z","0","0","C",2,8,8,0x4},
{"RLC L","Z","0","0","C",2,8,8,0x5},
{"RLC (HL)","Z","0","0","C",2,16,16,0x6},
{"RLC A","Z","0","0","C",2,8,8,0x7},
{"RRC B","Z","0","0","C",2,8,8,0x8},
{"RRC C","Z","0","0","C",2,8,8,0x9},
{"RRC D","Z","0","0","C",2,8,8,0xA},
{"RRC E","Z","0","0","C",2,8,8,0xB},
{"RRC H","Z","0","0","C",2,8,8,0xC},
{"RRC L","Z","0","0","C",2,8,8,0xD},
{"RRC (HL)","Z","0","0","C",2,16,16,0xE},
{"RRC A","Z","0","0","C",2,8,8,0xF},
{"RL B","Z","0","0","C",2,8,8,0x10},
{"RL C","Z","0","0","C",2,8,8,0x11},
{"RL D","Z","0","0","C",2,8,8,0x12},
{"RL E","Z","0","0","C",2,8,8,0x13},
{"RL H","Z","0","0","C",2,8,8,0x14},
{"RL L","Z","0","0","C",2,8,8,0x15},
{"RL (HL)","Z","0","0","C",2,16,16,0x16},
{"RL A","Z","0","0","C",2,8,8,0x17},
{"RR B","Z","0","0","C",2,8,8,0x18},
{"RR C","Z","0","0","C",2,8,8,0x19},
{"RR D","Z","0","0","C",2,8,8,0x1A},
{"RR E","Z","0","0","C",2,8,8,0x1B},
{"RR H","Z","0","0","C",2,8,8,0x1C},
{"RR L","Z","0","0","C",2,8,8,0x1D},
{"RR (HL)","Z","0","0","C",2,16,16,0x1E},
{"RR A","Z","0","0","C",2,8,8,0x1F},
{"SLA B","Z","0","0","C",2,8,8,0x20},
{"SLA C","Z","0","0","C",2,8,8,0x21},
{"SLA D","Z","0","0","C",2,8,8,0x22},
{"SLA E","Z","0","0","C",2,8,8,0x23},
{"SLA H","Z","0","0","C",2,8,8,0x24},
{"SLA L","Z","0","0","C",2,8,8,0x25},
{"SLA (HL)","Z","0","0","C",2,16,16,0x26},
{"SLA A","Z","0","0","C",2,8,8,0x27},
{"SRA B","Z","0","0","0",2,8,8,0x28},
{"SRA C","Z","0","0","0",2,8,8,0x29},
{"SRA D","Z","0","0","0",2,8,8,0x2A},
{"SRA E","Z","0","0","0",2,8,8,0x2B},
{"SRA H","Z","0","0","0",2,8,8,0x2C},
{"SRA L","Z","0","0","0",2,8,8,0x2D},
{"SRA (HL)","Z","0","0","0",2,16,16,0x2E},
{"SRA A","Z","0","0","0",2,8,8,0x2F},
{"SWAP B","Z","0","0","0",2,8,8,0x30},
{"SWAP C","Z","0","0","0",2,8,8,0x31},
{"SWAP D","Z","0","0","0",2,8,8,0x32},
{"SWAP E","Z","0","0","0",2,8,8,0x33},
{"SWAP H","Z","0","0","0",2,8,8,0x34},
{"SWAP L","Z","0","0","0",2,8,8,0x35},
{"SWAP (HL)","Z","0","0","0",2,16,16,0x36},
{"SWAP A","Z","0","0","0",2,8,8,0x37},
{"SRL B","Z","0","0","C",2,8,8,0x38},
{"SRL C","Z","0","0","C",2,8,8,0x39},
{"SRL D","Z","0","0","C",2,8,8,0x3A},
{"SRL E","Z","0","0","C",2,8,8,0x3B},
{"SRL H","Z","0","0","C",2,8,8,0x3C},
{"SRL L","Z","0","0","C",2,8,8,0x3D},
{"SRL (HL)","Z","0","0","C",2,16,16,0x3E},
{"SRL A","Z","0","0","C",2,8,8,0x3F},
{"BIT 0,B","Z","0","1","-",2,8,8,0x40},
{"BIT 0,C","Z","0","1","-",2,8,8,0x41},
{"BIT 0,D","Z","0","1","-",2,8,8,0x42},
{"BIT 0,E","Z","0","1","-",2,8,8,0x43},
{"BIT 0,H","Z","0","1","-",2,8,8,0x44},
{"BIT 0,L","Z","0","1","-",2,8,8,0x45},
{"BIT 0,(HL)","Z","0","1","-",2,16,16,0x46},
{"BIT 0,A","Z","0","1","-",2,8,8,0x47},
{"BIT 1,B","Z","0","1","-",2,8,8,0x48},
{"BIT 1,C","Z","0","1","-",2,8,8,0x49},
{"BIT 1,D","Z","0","1","-",2,8,8,0x4A},
{"BIT 1,E","Z","0","1","-",2,8,8,0x4B},
{"BIT 1,H","Z","0","1","-",2,8,8,0x4C},
{"BIT 1,L","Z","0","1","-",2,8,8,0x4D},
{"BIT 1,(HL)","Z","0","1","-",2,16,16,0x4E},
{"BIT 1,A","Z","0","1","-",2,8,8,0x4F},
{"BIT 2,B","Z","0","1","-",2,8,8,0x50},
{"BIT 2,C","Z","0","1","-",2,8,8,0x51},
{"BIT 2,D","Z","0","1","-",2,8,8,0x52},
{"BIT 2,E","Z","0","1","-",2,8,8,0x53},
{"BIT 2,H","Z","0","1","-",2,8,8,0x54},
{"BIT 2,L","Z","0","1","-",2,8,8,0x55},
{"BIT 2,(HL)","Z","0","1","-",2,16,16,0x56},
{"BIT 2,A","Z","0","1","-",2,8,8,0x57},
{"BIT 3,B","Z","0","1","-",2,8,8,0x58},
{"BIT 3,C","Z","0","1","-",2,8,8,0x59},
{"BIT 3,D","Z","0","1","-",2,8,8,0x5A},
{"BIT 3,E","Z","0","1","-",2,8,8,0x5B},
{"BIT 3,H","Z","0","1","-",2,8,8,0x5C},
{"BIT 3,L","Z","0","1","-",2,8,8,0x5D},
{"BIT 3,(HL)","Z","0","1","-",2,16,16,0x5E},
{"BIT 3,A","Z","0","1","-",2,8,8,0x5F},
{"BIT 4,B","Z","0","1","-",2,8,8,0x60},
{"BIT 4,C","Z","0","1","-",2,8,8,0x61},
{"BIT 4,D","Z","0","1","-",2,8,8,0x62},
{"BIT 4,E","Z","0","1","-",2,8,8,0x63},
{"BIT 4,H","Z","0","1","-",2,8,8,0x64},
{"BIT 4,L","Z","0","1","-",2,8,8,0x65},
{"BIT 4,(HL)","Z","0","1","-",2,16,16,0x66},
{"BIT 4,A","Z","0","1","-",2,8,8,0x67},
{"BIT 5,B","Z","0","1","-",2,8,8,0x68},
{"BIT 5,C","Z","0","1","-",2,8,8,0x69},
{"BIT 5,D","Z","0","1","-",2,8,8,0x6A},
{"BIT 5,E","Z","0","1","-",2,8,8,0x6B},
{"BIT 5,H","Z","0","1","-",2,8,8,0x6C},
{"BIT 5,L","Z","0","1","-",2,8,8,0x6D},
{"BIT 5,(HL)","Z","0","1","-",2,16,16,0x6E},
{"BIT 5,A","Z","0","1","-",2,8,8,0x6F},
{"BIT 6,B","Z","0","1","-",2,8,8,0x70},
{"BIT 6,C","Z","0","1","-",2,8,8,0x71},
{"BIT 6,D","Z","0","1","-",2,8,8,0x72},
{"BIT 6,E","Z","0","1","-",2,8,8,0x73},
{"BIT 6,H","Z","0","1","-",2,8,8,0x74},
{"BIT 6,L","Z","0","1","-",2,8,8,0x75},
{"BIT 6,(HL)","Z","0","1","-",2,16,16,0x76},
{"BIT 6,A","Z","0","1","-",2,8,8,0x77},
{"BIT 7,B","Z","0","1","-",2,8,8,0x78},
{"BIT 7,C","Z","0","1","-",2,8,8,0x79},
{"BIT 7,D","Z","0","1","-",2,8,8,0x7A},
{"BIT 7,E","Z","0","1","-",2,8,8,0x7B},
{"BIT 7,H","Z","0","1","-",2,8,8,0x7C},
{"BIT 7,L","Z","0","1","-",2,8,8,0x7D},
{"BIT 7,(HL)","Z","0","1","-",2,16,16,0x7E},
{"BIT 7,A","Z","0","1","-",2,8,8,0x7F},
{"RES 0,B","-","-","-","-",2,8,8,0x80},
{"RES 0,C","-","-","-","-",2,8,8,0x81},
{"RES 0,D","-","-","-","-",2,8,8,0x82},
{"RES 0,E","-","-","-","-",2,8,8,0x83},
{"RES 0,H","-","-","-","-",2,8,8,0x84},
{"RES 0,L","-","-","-","-",2,8,8,0x85},
{"RES 0,(HL)","-","-","-","-",2,16,16,0x86},
{"RES 0,A","-","-","-","-",2,8,8,0x87},
{"RES 1,B","-","-","-","-",2,8,8,0x88},
{"RES 1,C","-","-","-","-",2,8,8,0x89},
{"RES 1,D","-","-","-","-",2,8,8,0x8A},
{"RES 1,E","-","-","-","-",2,8,8,0x8B},
{"RES 1,H","-","-","-","-",2,8,8,0x8C},
{"RES 1,L","-","-","-","-",2,8,8,0x8D},
{"RES 1,(HL)","-","-","-","-",2,16,16,0x8E},
{"RES 1,A","-","-","-","-",2,8,8,0x8F},
{"RES 2,B","-","-","-","-",2,8,8,0x90},
{"RES 2,C","-","-","-","-",2,8,8,0x91},
{"RES 2,D","-","-","-","-",2,8,8,0x92},
{"RES 2,E","-","-","-","-",2,8,8,0x93},
{"RES 2,H","-","-","-","-",2,8,8,0x94},
{"RES 2,L","-","-","-","-",2,8,8,0x95},
{"RES 2,(HL)","-","-","-","-",2,16,16,0x96},
{"RES 2,A","-","-","-","-",2,8,8,0x97},
{"RES 3,B","-","-","-","-",2,8,8,0x98},
{"RES 3,C","-","-","-","-",2,8,8,0x99},
{"RES 3,D","-","-","-","-",2,8,8,0x9A},
{"RES 3,E","-","-","-","-",2,8,8,0x9B},
{"RES 3,H","-","-","-","-",2,8,8,0x9C},
{"RES 3,L","-","-","-","-",2,8,8,0x9D},
{"RES 3,(HL)","-","-","-","-",2,16,16,0x9E},
{"RES 3,A","-","-","-","-",2,8,8,0x9F},
{"RES 4,B","-","-","-","-",2,8,8,0xA0},
{"RES 4,C","-","-","-","-",2,8,8,0xA1},
{"RES 4,D","-","-","-","-",2,8,8,0xA2},
{"RES 4,E","-","-","-","-",2,8,8,0xA3},
{"RES 4,H","-","-","-","-",2,8,8,0xA4},
{"RES 4,L","-","-","-","-",2,8,8,0xA5},
{"RES 4,(HL)","-","-","-","-",2,16,16,0xA6},
{"RES 4,A","-","-","-","-",2,8,8,0xA7},
{"RES 5,B","-","-","-","-",2,8,8,0xA8},
{"RES 5,C","-","-","-","-",2,8,8,0xA9},
{"RES 5,D","-","-","-","-",2,8,8,0xAA},
{"RES 5,E","-","-","-","-",2,8,8,0xAB},
{"RES 5,H","-","-","-","-",2,8,8,0xAC},
{"RES 5,L","-","-","-","-",2,8,8,0xAD},
{"RES 5,(HL)","-","-","-","-",2,16,16,0xAE},
{"RES 5,A","-","-","-","-",2,8,8,0xAF},
{"RES 6,B","-","-","-","-",2,8,8,0xB0},
{"RES 6,C","-","-","-","-",2,8,8,0xB1},
{"RES 6,D","-","-","-","-",2,8,8,0xB2},
{"RES 6,E","-","-","-","-",2,8,8,0xB3},
{"RES 6,H","-","-","-","-",2,8,8,0xB4},
{"RES 6,L","-","-","-","-",2,8,8,0xB5},
{"RES 6,(HL)","-","-","-","-",2,16,16,0xB6},
{"RES 6,A","-","-","-","-",2,8,8,0xB7},
{"RES 7,B","-","-","-","-",2,8,8,0xB8},
{"RES 7,C","-","-","-","-",2,8,8,0xB9},
{"RES 7,D","-","-","-","-",2,8,8,0xBA},
{"RES 7,E","-","-","-","-",2,8,8,0xBB},
{"RES 7,H","-","-","-","-",2,8,8,0xBC},
{"RES 7,L","-","-","-","-",2,8,8,0xBD},
{"RES 7,(HL)","-","-","-","-",2,16,16,0xBE},
{"RES 7,A","-","-","-","-",2,8,8,0xBF},
{"SET 0,B","-","-","-","-",2,8,8,0xC0},
{"SET 0,C","-","-","-","-",2,8,8,0xC1},
{"SET 0,D","-","-","-","-",2,8,8,0xC2},
{"SET 0,E","-","-","-","-",2,8,8,0xC3},
{"SET 0,H","-","-","-","-",2,8,8,0xC4},
{"SET 0,L","-","-","-","-",2,8,8,0xC5},
{"SET 0,(HL)","-","-","-","-",2,16,16,0xC6},
{"SET 0,A","-","-","-","-",2,8,8,0xC7},
{"SET 1,B","-","-","-","-",2,8,8,0xC8},
{"SET 1,C","-","-","-","-",2,8,8,0xC9},
{"SET 1,D","-","-","-","-",2,8,8,0xCA},
{"SET 1,E","-","-","-","-",2,8,8,0xCB},
{"SET 1,H","-","-","-","-",2,8,8,0xCC},
{"SET 1,L","-","-","-","-",2,8,8,0xCD},
{"SET 1,(HL)","-","-","-","-",2,16,16,0xCE},
{"SET 1,A","-","-","-","-",2,8,8,0xCF},
{"SET 2,B","-","-","-","-",2,8,8,0xD0},
{"SET 2,C","-","-","-","-",2,8,8,0xD1},
{"SET 2,D","-","-","-","-",2,8,8,0xD2},
{"SET 2,E","-","-","-","-",2,8,8,0xD3},
{"SET 2,H","-","-","-","-",2,8,8,0xD4},
{"SET 2,L","-","-","-","-",2,8,8,0xD5},
{"SET 2,(HL)","-","-","-","-",2,16,16,0xD6},
{"SET 2,A","-","-","-","-",2,8,8,0xD7},
{"SET 3,B","-","-","-","-",2,8,8,0xD8},
{"SET 3,C","-","-","-","-",2,8,8,0xD9},
{"SET 3,D","-","-","-","-",2,8,8,0xDA},
{"SET 3,E","-","-","-","-",2,8,8,0xDB},
{"SET 3,H","-","-","-","-",2,8,8,0xDC},
{"SET 3,L","-","-","-","-",2,8,8,0xDD},
{"SET 3,(HL)","-","-","-","-",2,16,16,0xDE},
{"SET 3,A","-","-","-","-",2,8,8,0xDF},
{"SET 4,B","-","-","-","-",2,8,8,0xE0},
{"SET 4,C","-","-","-","-",2,8,8,0xE1},
{"SET 4,D","-","-","-","-",2,8,8,0xE2},
{"SET 4,E","-","-","-","-",2,8,8,0xE3},
{"SET 4,H","-","-","-","-",2,8,8,0xE4},
{"SET 4,L","-","-","-","-",2,8,8,0xE5},
{"SET 4,(HL)","-","-","-","-",2,16,16,0xE6},
{"SET 4,A","-","-","-","-",2,8,8,0xE7},
{"SET 5,B","-","-","-","-",2,8,8,0xE8},
{"SET 5,C","-","-","-","-",2,8,8,0xE9},
{"SET 5,D","-","-","-","-",2,8,8,0xEA},
{"SET 5,E","-","-","-","-",2,8,8,0xEB},
{"SET 5,H","-","-","-","-",2,8,8,0xEC},
{"SET 5,L","-","-","-","-",2,8,8,0xED},
{"SET 5,(HL)","-","-","-","-",2,16,16,0xEE},
{"SET 5,A","-","-","-","-",2,8,8,0xEF},
{"SET 6,B","-","-","-","-",2,8,8,0xF0},
{"SET 6,C","-","-","-","-",2,8,8,0xF1},
{"SET 6,D","-","-","-","-",2,8,8,0xF2},
{"SET 6,E","-","-","-","-",2,8,8,0xF3},
{"SET 6,H","-","-","-","-",2,8,8,0xF4},
{"SET 6,L","-","-","-","-",2,8,8,0xF5},
{"SET 6,(HL)","-","-","-","-",2,16,16,0xF6},
{"SET 6,A","-","-","-","-",2,8,8,0xF7},
{"SET 7,B","-","-","-","-",2,8,8,0xF8},
{"SET 7,C","-","-","-","-",2,8,8,0xF9},
{"SET 7,D","-","-","-","-",2,8,8,0xFA},
{"SET 7,E","-","-","-","-",2,8,8,0xFB},
{"SET 7,H","-","-","-","-",2,8,8,0xFC},
{"SET 7,L","-","-","-","-",2,8,8,0xFD},
{"SET 7,(HL)","-","-","-","-",2,16,16,0xFE},
{"SET 7,A","-","-","-","-",2,8,8,0xFF},
};
uint8_t tetris[] = {0xC3, 0x0C, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC3, 0x0C, 0x02, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x87, 0xE1, 0x5F, 0x16, 0x00, 0x19, 0x5E, 0x23,
0x56, 0xD5, 0xE1, 0xE9, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
0xC3, 0x7E, 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xC3, 0xBE, 0x26, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
0xC3, 0xBE, 0x26, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xC3, 0x5B, 0x00, 0xF5, 0xE5, 0xD5, 0xC5, 0xCD,
0x6B, 0x00, 0x3E, 0x01, 0xE0, 0xCC, 0xC1, 0xD1, 0xE1, 0xF1, 0xD9, 0xF0, 0xCD, 0xEF, 0x78, 0x00,
0x9F, 0x00, 0xA4, 0x00, 0xBA, 0x00, 0xEA, 0x27, 0xF0, 0xE1, 0xFE, 0x07, 0x28, 0x08, 0xFE, 0x06,
0xC8, 0x3E, 0x06, 0xE0, 0xE1, 0xC9, 0xF0, 0x01, 0xFE, 0x55, 0x20, 0x08, 0x3E, 0x29, 0xE0, 0xCB,
0x3E, 0x01, 0x18, 0x08, 0xFE, 0x29, 0xC0, 0x3E, 0x55, 0xE0, 0xCB, 0xAF, 0xE0, 0x02, 0xC9, 0xF0,
0x01, 0xE0, 0xD0, 0xC9, 0xF0, 0x01, 0xE0, 0xD0, 0xF0, 0xCB, 0xFE, 0x29, 0xC8, 0xF0, 0xCF, 0xE0,
0x01, 0x3E, 0xFF, 0xE0, 0xCF, 0x3E, 0x80, 0xE0, 0x02, 0xC9, 0xF0, 0x01, 0xE0, 0xD0, 0xF0, 0xCB,
0xFE, 0x29, 0xC8, 0xF0, 0xCF, 0xE0, 0x01, 0xFB, 0xCD, 0x98, 0x0A, 0x3E, 0x80, 0xE0, 0x02, 0xC9,
0xF0, 0xCD, 0xFE, 0x02, 0xC0, 0xAF, 0xE0, 0x0F, 0xFB, 0xC9, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
0x00, 0xC3, 0x50, 0x01, 0xCE, 0xED, 0x66, 0x66, 0xCC, 0x0D, 0x00, 0x0B, 0x03, 0x73, 0x00, 0x83,
0x00, 0x0C, 0x00, 0x0D, 0x00, 0x08, 0x11, 0x1F, 0x88, 0x89, 0x00, 0x0E, 0xDC, 0xCC, 0x6E, 0xE6,
0xDD, 0xDD, 0xD9, 0x99, 0xBB, 0xBB, 0x67, 0x63, 0x6E, 0x0E, 0xEC, 0xCC, 0xDD, 0xDC, 0x99, 0x9F,
0xBB, 0xB9, 0x33, 0x3E, 0x54, 0x45, 0x54, 0x52, 0x49, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x0A, 0x16, 0xBF,
0xC3, 0x0C, 0x02, 0xCD, 0xE3, 0x29, 0xF0, 0x41, 0xE6, 0x03, 0x20, 0xFA, 0x46, 0xF0, 0x41, 0xE6,
0x03, 0x20, 0xFA, 0x7E, 0xA0, 0xC9, 0x7B, 0x86, 0x27, 0x22, 0x7A, 0x8E, 0x27, 0x22, 0x3E, 0x00,
0x8E, 0x27, 0x77, 0x3E, 0x01, 0xE0, 0xE0, 0xD0, 0x3E, 0x99, 0x32, 0x32, 0x77, 0xC9, 0xF5, 0xC5,
0xD5, 0xE5, 0xF0, 0xCE, 0xA7, 0x28, 0x12, 0xF0, 0xCB, 0xFE, 0x29, 0x20, 0x0C, 0xAF, 0xE0, 0xCE,
0xF0, 0xCF, 0xE0, 0x01, 0x21, 0x02, 0xFF, 0x36, 0x81, 0xCD, 0xE0, 0x21, 0xCD, 0xCC, 0x23, 0xCD,
0xB7, 0x23, 0xCD, 0x9E, 0x23, 0xCD, 0x8C, 0x23, 0xCD, 0x7D, 0x23, 0xCD, 0x6E, 0x23, 0xCD, 0x5F,
0x23, 0xCD, 0x50, 0x23, 0xCD, 0x41, 0x23, 0xCD, 0x32, 0x23, 0xCD, 0x23, 0x23, 0xCD, 0xF8, 0x22,
0xCD, 0xE9, 0x22, 0xCD, 0xDA, 0x22, 0xCD, 0xCB, 0x22, 0xCD, 0xBC, 0x22, 0xCD, 0xAD, 0x22, 0xCD,
0x9E, 0x22, 0xCD, 0xD7, 0x1E, 0xCD, 0xB6, 0xFF, 0xCD, 0xCA, 0x18, 0xFA, 0xCE, 0xC0, 0xA7, 0x28,
0x1A, 0xF0, 0x98, 0xFE, 0x03, 0x20, 0x14, 0x21, 0x6D, 0x98, 0xCD, 0x3B, 0x24, 0x3E, 0x01, 0xE0,
0xE0, 0x21, 0x6D, 0x9C, 0xCD, 0x3B, 0x24, 0xAF, 0xEA, 0xCE, 0xC0, 0x21, 0xE2, 0xFF, 0x34, 0xAF,
0xE0, 0x43, 0xE0, 0x42, 0x3C, 0xE0, 0x85, 0xE1, 0xD1, 0xC1, 0xF1, 0xD9, 0xAF, 0x21, 0xFF, 0xDF,
0x0E, 0x10, 0x06, 0x00, 0x32, 0x05, 0x20, 0xFC, 0x0D, 0x20, 0xF9, 0x3E, 0x01, 0xF3, 0xE0, 0x0F,
0xE0, 0xFF, 0xAF, 0xE0, 0x42, 0xE0, 0x43, 0xE0, 0xA4, 0xE0, 0x41, 0xE0, 0x01, 0xE0, 0x02, 0x3E,
0x80, 0xE0, 0x40, 0xF0, 0x44, 0xFE, 0x94, 0x20, 0xFA, 0x3E, 0x03, 0xE0, 0x40, 0x3E, 0xE4, 0xE0,
0x47, 0xE0, 0x48, 0x3E, 0xC4, 0xE0, 0x49, 0x21, 0x26, 0xFF, 0x3E, 0x80, 0x32, 0x3E, 0xFF, 0x32,
0x36, 0x77, 0x3E, 0x01, 0xEA, 0x00, 0x20, 0x31, 0xFF, 0xCF, 0xAF, 0x21, 0xFF, 0xDF, 0x06, 0x00,
0x32, 0x05, 0x20, 0xFC, 0x21, 0xFF, 0xCF, 0x0E, 0x10, 0x06, 0x00, 0x32, 0x05, 0x20, 0xFC, 0x0D,
0x20, 0xF9, 0x21, 0xFF, 0x9F, 0x0E, 0x20, 0xAF, 0x06, 0x00, 0x32, 0x05, 0x20, 0xFC, 0x0D, 0x20,
0xF9, 0x21, 0xFF, 0xFE, 0x06, 0x00, 0x32, 0x05, 0x20, 0xFC, 0x21, 0xFE, 0xFF, 0x06, 0x80, 0x32,
0x05, 0x20, 0xFC, 0x0E, 0xB6, 0x06, 0x0C, 0x21, 0x7F, 0x2A, 0x2A, 0xE2, 0x0C, 0x05, 0x20, 0xFA,
0xCD, 0x95, 0x27, 0xCD, 0xF3, 0x7F, 0x3E, 0x09, 0xE0, 0xFF, 0x3E, 0x37, 0xE0, 0xC0, 0x3E, 0x1C,
0xE0, 0xC1, 0x3E, 0x24, 0xE0, 0xE1, 0x3E, 0x80, 0xE0, 0x40, 0xFB, 0xAF, 0xE0, 0x0F, 0xE0, 0x4A,
0xE0, 0x4B, 0xE0, 0x06, 0xCD, 0xA6, 0x29, 0xCD, 0xF8, 0x02, 0xCD, 0xF0, 0x7F, 0xF0, 0x80, 0xE6,
0x0F, 0xFE, 0x0F, 0xCA, 0x1B, 0x02, 0x21, 0xA6, 0xFF, 0x06, 0x02, 0x7E, 0xA7, 0x28, 0x01, 0x35,
0x2C, 0x05, 0x20, 0xF7, 0xF0, 0xC5, 0xA7, 0x28, 0x04, 0x3E, 0x09, 0xE0, 0xFF, 0xF0, 0x85, 0xA7,
0x28, 0xFB, 0xAF, 0xE0, 0x85, 0xC3, 0xC4, 0x02, 0xF0, 0xE1, 0xEF, 0xCE, 0x1B, 0xE2, 0x1C, 0x44,
0x12, 0x7B, 0x12, 0x06, 0x1D, 0x26, 0x1D, 0xAE, 0x03, 0x79, 0x04, 0x44, 0x14, 0x8C, 0x14, 0x07,
0x1A, 0xC0, 0x1D, 0x16, 0x1F, 0x1F, 0x1F, 0x25, 0x15, 0xB0, 0x14, 0x7B, 0x15, 0xBF, 0x15, 0x29,
0x16, 0x7A, 0x16, 0xEB, 0x16, 0x13, 0x19, 0x77, 0x06, 0x2C, 0x07, 0x25, 0x08, 0xE4, 0x08, 0x31,
0x0B, 0xEB, 0x0C, 0xD2, 0x0A, 0x32, 0x0D, 0x23, 0x0E, 0x12, 0x11, 0x99, 0x0D, 0x8A, 0x0E, 0xCE,
0x1D, 0x41, 0x1E, 0x69, 0x03, 0x93, 0x03, 0x67, 0x11, 0xE6, 0x11, 0xFC, 0x11, 0x1C, 0x12, 0xC7,
0x05, 0xF7, 0x05, 0xB3, 0x12, 0x05, 0x13, 0x24, 0x13, 0x51, 0x13, 0x67, 0x13, 0x7E, 0x13, 0xB5,
0x13, 0xE5, 0x13, 0x1B, 0x13, 0xA0, 0x03, 0xEA, 0x27, 0xCD, 0x20, 0x28, 0xCD, 0xD7, 0x27, 0x11,
0x07, 0x4A, 0xCD, 0xEB, 0x27, 0xCD, 0x8A, 0x17, 0x21, 0x00, 0xC3, 0x11, 0x50, 0x64, 0x1A, 0x22,
0x13, 0x7C, 0xFE, 0xC4, 0x20, 0xF8, 0x3E, 0xD3, 0xE0, 0x40, 0x3E, 0xFA, 0xE0, 0xA6, 0x3E, 0x25,
0xE0, 0xE1, 0xC9, 0xF0, 0xA6, 0xA7, 0xC0, 0x3E, 0xFA, 0xE0, 0xA6, 0x3E, 0x35, 0xE0, 0xE1, 0xC9,
0xF0, 0x81, 0xA7, 0x20, 0x04, 0xF0, 0xA6, 0xA7, 0xC0, 0x3E, 0x06, 0xE0, 0xE1, 0xC9, 0xCD, 0x20,
0x28, 0xAF, 0xE0, 0xE9, 0xE0, 0x98, 0xE0, 0x9C, 0xE0, 0x9B, 0xE0, 0xFB, 0xE0, 0x9F, 0xE0, 0xE3,
0xE0, 0xC7, 0xCD, 0x93, 0x22, 0xCD, 0x51, 0x26, 0xCD, 0xD7, 0x27, 0x21, 0x00, 0xC8, 0x3E, 0x2F,
0x22, 0x7C, 0xFE, 0xCC, 0x20, 0xF8, 0x21, 0x01, 0xC8, 0xCD, 0xA9, 0x26, 0x21, 0x0C, 0xC8, 0xCD,
0xA9, 0x26, 0x21, 0x41, 0xCA, 0x06, 0x0C, 0x3E, 0x8E, 0x22, 0x05, 0x20, 0xFC, 0x11, 0x6F, 0x4B,
0xCD, 0xEB, 0x27, 0xCD, 0x8A, 0x17, 0x21, 0x00, 0xC0, 0x36, 0x80, 0x2C, 0x36, 0x10, 0x2C, 0x36,
0x58, 0x3E, 0x03, 0xEA, 0xE8, 0xDF, 0x3E, 0xD3, 0xE0, 0x40, 0x3E, 0x07, 0xE0, 0xE1, 0x3E, 0x7D,
0xE0, 0xA6, 0x3E, 0x04, 0xE0, 0xC6, 0xF0, 0xE4, 0xA7, 0xC0, 0x3E, 0x13, 0xE0, 0xC6, 0xC9, 0x3E,
0x37, 0xE0, 0xC0, 0x3E, 0x09, 0xE0, 0xC2, 0xAF, 0xE0, 0xC5, 0xE0, 0xB0, 0xE0, 0xED, 0xE0, 0xEA,
0x3E, 0x62, 0xE0, 0xEB, 0x3E, 0xB0, 0xE0, 0xEC, 0xF0, 0xE4, 0xFE, 0x02, 0x3E, 0x02, 0x20, 0x1A,
0x3E, 0x77, 0xE0, 0xC0, 0x3E, 0x09, 0xE0, 0xC3, 0x3E, 0x02, 0xE0, 0xC4, 0x3E, 0x63, 0xE0, 0xEB,
0x3E, 0xB0, 0xE0, 0xEC, 0x3E, 0x11, 0xE0, 0xB0, 0x3E, 0x01, 0xE0, 0xE4, 0x3E, 0x0A, 0xE0, 0xE1,
0xCD, 0x20, 0x28, 0xCD, 0xAD, 0x27, 0x11, 0xD7, 0x4C, 0xCD, 0xEB, 0x27, 0xCD, 0x8A, 0x17, 0x3E,
0xD3, 0xE0, 0x40, 0xC9, 0x3E, 0xFF, 0xE0, 0xE9, 0xC9, 0xF0, 0xA6, 0xA7, 0x20, 0x0A, 0x21, 0xC6,
0xFF, 0x35, 0x28, 0x9B, 0x3E, 0x7D, 0xE0, 0xA6, 0xCD, 0x98, 0x0A, 0x3E, 0x55, 0xE0, 0x01, 0x3E,
0x80, 0xE0, 0x02, 0xF0, 0xCC, 0xA7, 0x28, 0x0A, 0xF0, 0xCB, 0xA7, 0x20, 0x3A, 0xAF, 0xE0, 0xCC,
0x18, 0x67, 0xF0, 0x81, 0x47, 0xF0, 0xC5, 0xCB, 0x50, 0x20, 0x48, 0xCB, 0x60, 0x20, 0x53, 0xCB,
0x68, 0x20, 0x54, 0xCB, 0x58, 0xC8, 0xA7, 0x3E, 0x08, 0x28, 0x2C, 0x78, 0xFE, 0x08, 0xC0, 0xF0,
0xCB, 0xFE, 0x29, 0x28, 0x12, 0x3E, 0x29, 0xE0, 0x01, 0x3E, 0x81, 0xE0, 0x02, 0xF0, 0xCC, 0xA7,
0x28, 0xFB, 0xF0, 0xCB, 0xA7, 0x28, 0x32, 0x3E, 0x2A, 0xE0, 0xE1, 0xAF, 0xE0, 0xA6, 0xE0, 0xC2,
0xE0, 0xC3, 0xE0, 0xC4, 0xE0, 0xE4, 0xC9, 0xF5, 0xF0, 0x80, 0xCB, 0x7F, 0x28, 0x02, 0xE0, 0xF4,
0xF1, 0x18, 0xE6, 0xEE, 0x01, 0xE0, 0xC5, 0xA7, 0x3E, 0x10, 0x28, 0x02, 0x3E, 0x60, 0xEA, 0x01,
0xC0, 0xC9, 0xA7, 0xC0, 0xAF, 0x18, 0xEC, 0xA7, 0xC8, 0xAF, 0x18, 0xE9, 0xF0, 0xE4, 0xA7, 0xC8,
0xCD, 0x98, 0x0A, 0xAF, 0xE0, 0x01, 0x3E, 0x80, 0xE0, 0x02, 0xF0, 0x81, 0xCB, 0x5F, 0x28, 0x0D,
0x3E, 0x33, 0xE0, 0x01, 0x3E, 0x81, 0xE0, 0x02, 0x3E, 0x06, 0xE0, 0xE1, 0xC9, 0x21, 0xB0, 0xFF,
0xF0, 0xE4, 0xFE, 0x02, 0x06, 0x10, 0x28, 0x02, 0x06, 0x1D, 0x7E, 0xB8, 0xC0, 0x3E, 0x06, 0xE0,
0xE1, 0xC9, 0xF0, 0xE4, 0xA7, 0xC8, 0xF0, 0xE9, 0xFE, 0xFF, 0xC8, 0xF0, 0xEA, 0xA7, 0x28, 0x05,
0x3D, 0xE0, 0xEA, 0x18, 0x1C, 0xF0, 0xEB, 0x67, 0xF0, 0xEC, 0x6F, 0x2A, 0x47, 0xF0, 0xED, 0xA8,
0xA0, 0xE0, 0x81, 0x78, 0xE0, 0xED, 0x2A, 0xE0, 0xEA, 0x7C, 0xE0, 0xEB, 0x7D, 0xE0, 0xEC, 0x18,
0x03, 0xAF, 0xE0, 0x81, 0xF0, 0x80, 0xE0, 0xEE, 0xF0, 0xED, 0xE0, 0x80, 0xC9, 0xAF, 0xE0, 0xED,
0x18, 0xEF, 0xC9, 0xF0, 0xE4, 0xA7, 0xC8, 0xF0, 0xE9, 0xFE, 0xFF, 0xC0, 0xF0, 0x80, 0x47, 0xF0,
0xED, 0xB8, 0x28, 0x19, 0xF0, 0xEB, 0x67, 0xF0, 0xEC, 0x6F, 0xF0, 0xED, 0x22, 0xF0, 0xEA, 0x22,
0x7C, 0xE0, 0xEB, 0x7D, 0xE0, 0xEC, 0x78, 0xE0, 0xED, 0xAF, 0xE0, 0xEA, 0xC9, 0xF0, 0xEA, 0x3C,
0xE0, 0xEA, 0xC9, 0xF0, 0xE4, 0xA7, 0xC8, 0xF0, 0xE9, 0xA7, 0xC0, 0xF0, 0xEE, 0xE0, 0x80, 0xC9,
0x21, 0x02, 0xFF, 0xCB, 0xFE, 0x18, 0x0A, 0x3E, 0x03, 0xE0, 0xCD, 0xF0, 0xCB, 0xFE, 0x29, 0x20,
0xEF, 0xCD, 0x4F, 0x14, 0x3E, 0x80, 0xEA, 0x10, 0xC2, 0xCD, 0x71, 0x26, 0xE0, 0xCE, 0xAF, 0xE0,
0x01, 0xE0, 0xCF, 0xE0, 0xDC, 0xE0, 0xD2, 0xE0, 0xD3, 0xE0, 0xD4, 0xE0, 0xD5, 0xE0, 0xE3, 0xCD,
0xF3, 0x7F, 0x3E, 0x2B, 0xE0, 0xE1, 0xC9, 0xF0, 0xCB, 0xFE, 0x29, 0x28, 0x16, 0xF0, 0xF0, 0xA7,
0x28, 0x1E, 0xAF, 0xE0, 0xF0, 0x11, 0x01, 0xC2, 0xCD, 0x92, 0x14, 0xCD, 0x17, 0x15, 0xCD, 0x71,
0x26, 0x18, 0x0D, 0xF0, 0x81, 0xCB, 0x47, 0x20, 0x07, 0xCB, 0x5F, 0x20, 0x03, 0xCD, 0xB0, 0x14,
0xF0, 0xCB, 0xFE, 0x29, 0x28, 0x1E, 0xF0, 0xCC, 0xA7, 0xC8, 0xAF, 0xE0, 0xCC, 0x3E, 0x39, 0xE0,
0xCF, 0xF0, 0xD0, 0xFE, 0x50, 0x28, 0x2D, 0x47, 0xF0, 0xC1, 0xB8, 0xC8, 0x78, 0xE0, 0xC1, 0x3E,
0x01, 0xE0, 0xF0, 0xC9, 0xF0, 0x81, 0xCB, 0x5F, 0x20, 0x22, 0xCB, 0x47, 0x20, 0x1E, 0xF0, 0xCC,
0xA7, 0xC8, 0xAF, 0xE0, 0xCC, 0xF0, 0xCF, 0xFE, 0x50, 0x28, 0x09, 0xF0, 0xC1, 0xE0, 0xCF, 0x3E,
0x01, 0xE0, 0xCE, 0xC9, 0xCD, 0x8A, 0x17, 0x3E, 0x16, 0xE0, 0xE1, 0xC9, 0x3E, 0x50, 0x18, 0xED,
0x21, 0x02, 0xFF, 0xCB, 0xFE, 0x18, 0x1F, 0x3E, 0x03, 0xE0, 0xCD, 0xF0, 0xCB, 0xFE, 0x29, 0x20,
0xEF, 0xCD, 0xA1, 0x0A, 0xCD, 0xA1, 0x0A, 0xCD, 0xA1, 0x0A, 0x06, 0x00, 0x21, 0x00, 0xC3, 0xCD,
0xA1, 0x0A, 0x22, 0x05, 0x20, 0xF9, 0xCD, 0x20, 0x28, 0xCD, 0xAD, 0x27, 0x11, 0x14, 0x52, 0xCD,
0xEB, 0x27, 0xCD, 0x8A, 0x17, 0x3E, 0x2F, 0xCD, 0xDD, 0x1F, 0x3E, 0x03, 0xE0, 0xCE, 0xAF, 0xE0,
0x01, 0xE0, 0xCF, 0xE0, 0xDC, 0xE0, 0xD2, 0xE0, 0xD3, 0xE0, 0xD4, 0xE0, 0xD5, 0xE0, 0xE3, 0xE0,
0xCC, 0x21, 0x00, 0xC4, 0x06, 0x0A, 0x3E, 0x28, 0x22, 0x05, 0x20, 0xFC, 0xF0, 0xD6, 0xA7, 0xC2,
0x6D, 0x07, 0xCD, 0x17, 0x15, 0x3E, 0xD3, 0xE0, 0x40, 0x21, 0x80, 0xC0, 0x11, 0x05, 0x07, 0x06,
0x20, 0xCD, 0x25, 0x07, 0x21, 0x00, 0xC2, 0x11, 0xED, 0x26, 0x0E, 0x02, 0xCD, 0x76, 0x17, 0xCD,
0x0E, 0x08, 0xCD, 0x71, 0x26, 0xAF, 0xE0, 0xD7, 0xE0, 0xD8, 0xE0, 0xD9, 0xE0, 0xDA, 0xE0, 0xDB,
0x3E, 0x17, 0xE0, 0xE1, 0xC9, 0x40, 0x28, 0xAE, 0x00, 0x40, 0x30, 0xAE, 0x20, 0x48, 0x28, 0xAF,
0x00, 0x48, 0x30, 0xAF, 0x20, 0x78, 0x28, 0xC0, 0x00, 0x78, 0x30, 0xC0, 0x20, 0x80, 0x28, 0xC1,
0x00, 0x80, 0x30, 0xC1, 0x20, 0x1A, 0x22, 0x13, 0x05, 0x20, 0xFA, 0xC9, 0xF0, 0xCB, 0xFE, 0x29,
0x28, 0x23, 0xF0, 0xCC, 0xA7, 0x28, 0x13, 0xF0, 0xD0, 0xFE, 0x60, 0x28, 0x2D, 0xFE, 0x06, 0x30,
0x02, 0xE0, 0xAC, 0xF0, 0xAD, 0xE0, 0xCF, 0xAF, 0xE0, 0xCC, 0x11, 0x10, 0xC2, 0xCD, 0x66, 0x17,
0x21, 0xAD, 0xFF, 0x18, 0x68, 0xF0, 0x81, 0xCB, 0x5F, 0x28, 0x04, 0x3E, 0x60, 0x18, 0x4D, 0xF0,
0xCC, 0xA7, 0x28, 0x50, 0xF0, 0xCF, 0xFE, 0x60, 0x20, 0x38, 0xCD, 0x8A, 0x17, 0xF0, 0xD6, 0xA7,
0x20, 0x18, 0x3E, 0x18, 0xE0, 0xE1, 0xF0, 0xCB, 0xFE, 0x29, 0xC0, 0xAF, 0xE0, 0xA0, 0x3E, 0x06,
0x11, 0xE0, 0xFF, 0x21, 0xA2, 0xC9, 0xCD, 0x68, 0x1B, 0xC9, 0xF0, 0xCB, 0xFE, 0x29, 0xC2, 0x28,
0x08, 0xAF, 0xE0, 0xA0, 0x3E, 0x06, 0x11, 0xE0, 0xFF, 0x21, 0xA2, 0xC9, 0xCD, 0x68, 0x1B, 0xC3,
0x28, 0x08, 0xF0, 0xD0, 0xFE, 0x06, 0x30, 0x02, 0xE0, 0xAD, 0xF0, 0xAC, 0xE0, 0xCF, 0xAF, 0xE0,
0xCC, 0x3C, 0xE0, 0xCE, 0x11, 0x00, 0xC2, 0xCD, 0x66, 0x17, 0x21, 0xAC, 0xFF, 0x7E, 0xCB, 0x60,
0x20, 0x14, 0xCB, 0x68, 0x20, 0x22, 0xCB, 0x70, 0x20, 0x24, 0xCB, 0x78, 0x28, 0x13, 0xFE, 0x03,
0x30, 0x0F, 0xC6, 0x03, 0x18, 0x05, 0xFE, 0x05, 0x28, 0x07, 0x3C, 0x77, 0x3E, 0x01, 0xEA, 0xE0,
0xDF, 0xCD, 0x0E, 0x08, 0xCD, 0x71, 0x26, 0xC9, 0xA7, 0x28, 0xF6, 0x3D, 0x18, 0xED, 0xFE, 0x03,
0x38, 0xEF, 0xD6, 0x03, 0x18, 0xE5, 0x40, 0x60, 0x40, 0x70, 0x40, 0x80, 0x50, 0x60, 0x50, 0x70,
0x50, 0x80, 0x78, 0x60, 0x78, 0x70, 0x78, 0x80, 0x88, 0x60, 0x88, 0x70, 0x88, 0x80, 0xF0, 0xAC,
0x11, 0x01, 0xC2, 0x21, 0xF6, 0x07, 0xCD, 0x55, 0x17, 0xF0, 0xAD, 0x11, 0x11, 0xC2, 0x21, 0x02,
0x08, 0xCD, 0x55, 0x17, 0xC9, 0xCD, 0x20, 0x28, 0xAF, 0xEA, 0x10, 0xC2, 0xE0, 0x98, 0xE0, 0x9C,
0xE0, 0x9B, 0xE0, 0xFB, 0xE0, 0x9F, 0xE0, 0xCC, 0xE0, 0x01, 0xE0, 0xCE, 0xE0, 0xD0, 0xE0, 0xCF,
0xE0, 0xD1, 0xCD, 0x51, 0x26, 0xCD, 0x93, 0x22, 0xCD, 0xF2, 0x1F, 0xAF, 0xE0, 0xE3, 0xCD, 0x8A,
0x17, 0x11, 0x7C, 0x53, 0xD5, 0x3E, 0x01, 0xE0, 0xA9, 0xE0, 0xC5, 0xCD, 0xEB, 0x27, 0xD1, 0x21,
0x00, 0x9C, 0xCD, 0xEE, 0x27, 0x11, 0x39, 0x28, 0x21, 0x63, 0x9C, 0x0E, 0x0A, 0xCD, 0x7D, 0x1F,
0x21, 0x00, 0xC2, 0x11, 0xBF, 0x26, 0xCD, 0xB6, 0x26, 0x21, 0x10, 0xC2, 0x11, 0xC7, 0x26, 0xCD,
0xB6, 0x26, 0x21, 0x51, 0x99, 0x3E, 0x30, 0xE0, 0x9E, 0x36, 0x00, 0x2D, 0x36, 0x03, 0xCD, 0xE8,
0x1A, 0xAF, 0xE0, 0xA0, 0xF0, 0xCB, 0xFE, 0x29, 0x11, 0xD4, 0x08, 0xF0, 0xAC, 0x28, 0x05, 0x11,
0xC4, 0x08, 0xF0, 0xAD, 0x21, 0xB0, 0x98, 0x77, 0x26, 0x9C, 0x77, 0x21, 0x80, 0xC0, 0x06, 0x10,
0xCD, 0x25, 0x07, 0x3E, 0x77, 0xE0, 0xC0, 0x3E, 0xD3, 0xE0, 0x40, 0x3E, 0x19, 0xE0, 0xE1, 0x3E,
0x01, 0xE0, 0xCD, 0xC9, 0x18, 0x84, 0xC0, 0x00, 0x18, 0x8C, 0xC0, 0x20, 0x20, 0x84, 0xC1, 0x00,
0x20, 0x8C, 0xC1, 0x20, 0x18, 0x84, 0xAE, 0x00, 0x18, 0x8C, 0xAE, 0x20, 0x20, 0x84, 0xAF, 0x00,
0x20, 0x8C, 0xAF, 0x20, 0x3E, 0x08, 0xE0, 0xFF, 0xAF, 0xE0, 0x0F, 0xF0, 0xCB, 0xFE, 0x29, 0xC2,
0xF6, 0x09, 0xCD, 0x98, 0x0A, 0xCD, 0x98, 0x0A, 0xAF, 0xE0, 0xCC, 0x3E, 0x29, 0xE0, 0x01, 0x3E,
0x81, 0xE0, 0x02, 0xF0, 0xCC, 0xA7, 0x28, 0xFB, 0xF0, 0x01, 0xFE, 0x55, 0x20, 0xE4, 0x11, 0x16,
0x00, 0x0E, 0x0A, 0x21, 0x02, 0xC9, 0x06, 0x0A, 0xAF, 0xE0, 0xCC, 0xCD, 0x98, 0x0A, 0x2A, 0xE0,
0x01, 0x3E, 0x81, 0xE0, 0x02, 0xF0, 0xCC, 0xA7, 0x28, 0xFB, 0x05, 0x20, 0xEB, 0x19, 0x0D, 0x20,
0xE5, 0xF0, 0xAC, 0xFE, 0x05, 0x28, 0x3D, 0x21, 0x22, 0xCA, 0x11, 0x40, 0x00, 0x19, 0x3C, 0xFE,
0x05, 0x20, 0xFA, 0x11, 0x22, 0xCA, 0x0E, 0x0A, 0x06, 0x0A, 0x1A, 0x22, 0x1C, 0x05, 0x20, 0xFA,
0xD5, 0x11, 0xD6, 0xFF, 0x19, 0xD1, 0xE5, 0x21, 0xD6, 0xFF, 0x19, 0xE5, 0xD1, 0xE1, 0x0D, 0x20,
0xE7, 0x11, 0xD6, 0xFF, 0x06, 0x0A, 0x7C, 0xFE, 0xC8, 0x28, 0x09, 0x3E, 0x2F, 0x22, 0x05, 0x20,
0xFC, 0x19, 0x18, 0xF0, 0xCD, 0x98, 0x0A, 0xCD, 0x98, 0x0A, 0xAF, 0xE0, 0xCC, 0x3E, 0x29, 0xE0,
0x01, 0x3E, 0x81, 0xE0, 0x02, 0xF0, 0xCC, 0xA7, 0x28, 0xFB, 0xF0, 0x01, 0xFE, 0x55, 0x20, 0xE4,
0x21, 0x00, 0xC3, 0x06, 0x00, 0xAF, 0xE0, 0xCC, 0x2A, 0xCD, 0x98, 0x0A, 0xE0, 0x01, 0x3E, 0x81,
0xE0, 0x02, 0xF0, 0xCC, 0xA7, 0x28, 0xFB, 0x04, 0x20, 0xEB, 0xCD, 0x98, 0x0A, 0xCD, 0x98, 0x0A,
0xAF, 0xE0, 0xCC, 0x3E, 0x30, 0xE0, 0x01, 0x3E, 0x81, 0xE0, 0x02, 0xF0, 0xCC, 0xA7, 0x28, 0xFB,
0xF0, 0x01, 0xFE, 0x56, 0x20, 0xE4, 0xCD, 0x8C, 0x0A, 0x3E, 0x09, 0xE0, 0xFF, 0x3E, 0x1C, 0xE0,
0xE1, 0x3E, 0x02, 0xE0, 0xE3, 0x3E, 0x03, 0xE0, 0xCD, 0xF0, 0xCB, 0xFE, 0x29, 0x28, 0x05, 0x21,
0x02, 0xFF, 0xCB, 0xFE, 0x21, 0x00, 0xC3, 0x2A, 0xEA, 0x03, 0xC2, 0x2A, 0xEA, 0x13, 0xC2, 0x7C,
0xE0, 0xAF, 0x7D, 0xE0, 0xB0, 0xC9, 0xF0, 0xAD, 0x3C, 0x47, 0x21, 0x42, 0xCA, 0x11, 0xC0, 0xFF,
0x05, 0x28, 0x03, 0x19, 0x18, 0xFA, 0xCD, 0x98, 0x0A, 0xAF, 0xE0, 0xCC, 0x3E, 0x55, 0xE0, 0x01,
0x3E, 0x80, 0xE0, 0x02, 0xF0, 0xCC, 0xA7, 0x28, 0xFB, 0xF0, 0x01, 0xFE, 0x29, 0x20, 0xE7, 0x11,
0x16, 0x00, 0x0E, 0x0A, 0x06, 0x0A, 0xAF, 0xE0, 0xCC, 0xE0, 0x01, 0x3E, 0x80, 0xE0, 0x02, 0xF0,
0xCC, 0xA7, 0x28, 0xFB, 0xF0, 0x01, 0x22, 0x05, 0x20, 0xEC, 0x19, 0x0D, 0x20, 0xE6, 0xCD, 0x98,
0x0A, 0xAF, 0xE0, 0xCC, 0x3E, 0x55, 0xE0, 0x01, 0x3E, 0x80, 0xE0, 0x02, 0xF0, 0xCC, 0xA7, 0x28,
0xFB, 0xF0, 0x01, 0xFE, 0x29, 0x20, 0xE7, 0x06, 0x00, 0x21, 0x00, 0xC3, 0xAF, 0xE0, 0xCC, 0xE0,
0x01, 0x3E, 0x80, 0xE0, 0x02, 0xF0, 0xCC, 0xA7, 0x28, 0xFB, 0xF0, 0x01, 0x22, 0x04, 0x20, 0xEC,
0xCD, 0x98, 0x0A, 0xAF, 0xE0, 0xCC, 0x3E, 0x56, 0xE0, 0x01, 0x3E, 0x80, 0xE0, 0x02, 0xF0, 0xCC,
0xA7, 0x28, 0xFB, 0xF0, 0x01, 0xFE, 0x30, 0x20, 0xE7, 0xC3, 0xC6, 0x09, 0x21, 0x42, 0xCA, 0x3E,
0x80, 0x06, 0x0A, 0x22, 0x05, 0x20, 0xFC, 0xC9, 0xC5, 0x06, 0xFA, 0x40, 0x05, 0x20, 0xFC, 0xC1,
0xC9, 0xE5, 0xC5, 0xF0, 0xFC, 0xE6, 0xFC, 0x4F, 0x26, 0x03, 0xF0, 0x04, 0x47, 0xAF, 0x05, 0x28,
0x0A, 0x3C, 0x3C, 0x3C, 0x3C, 0xFE, 0x1C, 0x28, 0xF4, 0x18, 0xF3, 0x57, 0xF0, 0xAE, 0x5F, 0x25,
0x28, 0x07, 0xB2, 0xB1, 0xE6, 0xFC, 0xB9, 0x28, 0xE1, 0x7A, 0xE0, 0xAE, 0x7B, 0xE0, 0xFC, 0xC1,
0xE1, 0xC9, 0x3E, 0x01, 0xE0, 0xFF, 0xF0, 0xE3, 0xA7, 0x20, 0x27, 0x06, 0x44, 0x0E, 0x20, 0xCD,
0x3F, 0x11, 0x3E, 0x02, 0xE0, 0xCD, 0xFA, 0xDE, 0xC0, 0xA7, 0x28, 0x05, 0x3E, 0x80, 0xEA, 0x10,
0xC2, 0xCD, 0x83, 0x26, 0xCD, 0x96, 0x26, 0xCD, 0x17, 0x15, 0xAF, 0xE0, 0xD6, 0x3E, 0x1A, 0xE0,
0xE1, 0xC9, 0xFE, 0x05, 0xC0, 0x21, 0x30, 0xC0, 0x06, 0x12, 0x36, 0xF0, 0x23, 0x36, 0x10, 0x23,
0x36, 0xB6, 0x23, 0x36, 0x80, 0x23, 0x05, 0x20, 0xF1, 0xFA, 0xFF, 0xC3, 0x06, 0x0A, 0x21, 0x00,
0xC4, 0x3D, 0x28, 0x06, 0x2C, 0x05, 0x20, 0xF9, 0x18, 0xF2, 0x36, 0x2F, 0x3E, 0x03, 0xE0, 0xCE,
0xC9, 0x3E, 0x01, 0xE0, 0xFF, 0x21, 0x9C, 0xC0, 0xAF, 0x22, 0x36, 0x50, 0x2C, 0x36, 0x27, 0x2C,
0x36, 0x00, 0xCD, 0x0D, 0x1C, 0xCD, 0x88, 0x1C, 0xCD, 0xBB, 0x24, 0xCD, 0x9C, 0x20, 0xCD, 0x3E,
0x21, 0xCD, 0xA1, 0x25, 0xCD, 0x4D, 0x22, 0xCD, 0x9B, 0x0B, 0xF0, 0xD5, 0xA7, 0x28, 0x14, 0x3E,
0x77, 0xE0, 0xCF, 0xE0, 0xB1, 0x3E, 0xAA, 0xE0, 0xD1, 0x3E, 0x1B, 0xE0, 0xE1, 0x3E, 0x05, 0xE0,
0xA7, 0x18, 0x10, 0xF0, 0xE1, 0xFE, 0x01, 0x20, 0x1B, 0x3E, 0xAA, 0xE0, 0xCF, 0xE0, 0xB1, 0x3E,
0x77, 0xE0, 0xD1, 0xAF, 0xE0, 0xDC, 0xE0, 0xD2, 0xE0, 0xD3, 0xE0, 0xD4, 0xF0, 0xCB, 0xFE, 0x29,
0x20, 0x02, 0xE0, 0xCE, 0xCD, 0xF0, 0x0B, 0xCD, 0x8C, 0x0C, 0xC9, 0x11, 0x20, 0x00, 0x21, 0x02,
0xC8, 0x3E, 0x2F, 0x0E, 0x12, 0x06, 0x0A, 0xE5, 0xBE, 0x20, 0x0A, 0x23, 0x05, 0x20, 0xF9, 0xE1,
0x19, 0x0D, 0x20, 0xF1, 0xE5, 0xE1, 0x79, 0xE0, 0xB1, 0xFE, 0x0C, 0xFA, 0xE9, 0xDF, 0x30, 0x07,
0xFE, 0x08, 0xC0, 0xCD, 0x17, 0x15, 0xC9, 0xFE, 0x08, 0xC8, 0xFA, 0xF0, 0xDF, 0xFE, 0x02, 0xC8,
0x3E, 0x08, 0xEA, 0xE8, 0xDF, 0xC9, 0xF0, 0xCB, 0xFE, 0x29, 0x28, 0x52, 0x3E, 0x01, 0xEA, 0x7F,
0xDF, 0xE0, 0xAB, 0xF0, 0xCF, 0xE0, 0xF1, 0xAF, 0xE0, 0xF2, 0xE0, 0xCF, 0xCD, 0xCB, 0x1C, 0xC9,
0xF0, 0xCC, 0xA7, 0xC8, 0x21, 0x30, 0xC0, 0x11, 0x04, 0x00, 0xAF, 0xE0, 0xCC, 0xF0, 0xD0, 0xFE,
0xAA, 0x28, 0x61, 0xFE, 0x77, 0x28, 0x49, 0xFE, 0x94, 0x28, 0xCB, 0x47, 0xA7, 0x28, 0x51, 0xCB,
0x7F, 0x20, 0x6F, 0xFE, 0x13, 0x30, 0x17, 0x3E, 0x12, 0x90, 0x4F, 0x0C, 0x3E, 0x98, 0x77, 0x19,
0xD6, 0x08, 0x05, 0x20, 0xF9, 0x3E, 0xF0, 0x0D, 0x28, 0x04, 0x77, 0x19, 0x18, 0xF9, 0xF0, 0xDC,
0xA7, 0x28, 0x07, 0xF6, 0x80, 0xE0, 0xB1, 0xAF, 0xE0, 0xDC, 0x3E, 0xFF, 0xE0, 0xD0, 0xF0, 0xCB,
0xFE, 0x29, 0xF0, 0xB1, 0x20, 0x07, 0xE0, 0xCF, 0x3E, 0x01, 0xE0, 0xCE, 0xC9, 0xE0, 0xCF, 0xC9,
0xF0, 0xD1, 0xFE, 0xAA, 0x28, 0x26, 0x3E, 0x77, 0xE0, 0xD1, 0x3E, 0x01, 0xE0, 0xE1, 0x18, 0xCE,
0x0E, 0x13, 0x18, 0xC1, 0xF0, 0xD1, 0xFE, 0x77, 0x28, 0x12, 0x3E, 0xAA, 0xE0, 0xD1, 0x3E, 0x1B,
0xE0, 0xE1, 0x3E, 0x05, 0xE0, 0xA7, 0x0E, 0x01, 0x06, 0x12, 0x18, 0xA0, 0x3E, 0x01, 0xE0, 0xEF,
0x18, 0xAC, 0xE6, 0x7F, 0xFE, 0x05, 0x30, 0xA6, 0xE0, 0xD2, 0x18, 0xAE, 0xF0, 0xD3, 0xA7, 0x28,
0x07, 0xCB, 0x7F, 0xC8, 0xE6, 0x07, 0x18, 0x0A, 0xF0, 0xD2, 0xA7, 0xC8, 0xE0, 0xD3, 0xAF, 0xE0,
0xD2, 0xC9, 0x4F, 0xC5, 0x21, 0x22, 0xC8, 0x11, 0xE0, 0xFF, 0x19, 0x0D, 0x20, 0xFC, 0x11, 0x22,
0xC8, 0x0E, 0x11, 0x06, 0x0A, 0x1A, 0x22, 0x1C, 0x05, 0x20, 0xFA, 0xD5, 0x11, 0x16, 0x00, 0x19,
0xD1, 0xE5, 0x21, 0x16, 0x00, 0x19, 0xE5, 0xD1, 0xE1, 0x0D, 0x20, 0xE7, 0xC1, 0x11, 0x00, 0xC4,
0x06, 0x0A, 0x1A, 0x22, 0x13, 0x05, 0x20, 0xFA, 0xD5, 0x11, 0x16, 0x00, 0x19, 0xD1, 0x0D, 0x20,
0xEC, 0x3E, 0x02, 0xE0, 0xE3, 0xE0, 0xD4, 0xAF, 0xE0, 0xD3, 0xC9, 0xF0, 0xA6, 0xA7, 0xC0, 0x3E,
0x01, 0xE0, 0xFF, 0x3E, 0x03, 0xE0, 0xCD, 0xF0, 0xD1, 0xFE, 0x77, 0x20, 0x0C, 0xF0, 0xD0, 0xFE,
0xAA, 0x20, 0x10, 0x3E, 0x01, 0xE0, 0xEF, 0x18, 0x0A, 0xFE, 0xAA, 0x20, 0x06, 0xF0, 0xD0, 0xFE,
0x77, 0x28, 0xF0, 0x06, 0x34, 0x0E, 0x43, 0xCD, 0x3F, 0x11, 0xAF, 0xE0, 0xE3, 0xF0, 0xD1, 0xFE,
0xAA, 0x3E, 0x1E, 0x20, 0x02, 0x3E, 0x1D, 0xE0, 0xE1, 0x3E, 0x28, 0xE0, 0xA6, 0x3E, 0x1D, 0xE0,
0xC6, 0xC9, 0xF0, 0xA6, 0xA7, 0xC0, 0xF0, 0xEF, 0xA7, 0x20, 0x05, 0xF0, 0xD7, 0x3C, 0xE0, 0xD7,
0xCD, 0x6F, 0x0F, 0x11, 0xF9, 0x26, 0xF0, 0xCB, 0xFE, 0x29, 0x28, 0x03, 0x11, 0x0B, 0x27, 0x21,
0x00, 0xC2, 0x0E, 0x03, 0xCD, 0x76, 0x17, 0x3E, 0x19, 0xE0, 0xA6, 0xF0, 0xEF, 0xA7, 0x28, 0x05,
0x21, 0x20, 0xC2, 0x36, 0x80, 0x3E, 0x03, 0xCD, 0x73, 0x26, 0x3E, 0x20, 0xE0, 0xE1, 0x3E, 0x09,
0xEA, 0xE8, 0xDF, 0xF0, 0xD7, 0xFE, 0x05, 0xC0, 0x3E, 0x11, 0xEA, 0xE8, 0xDF, 0xC9, 0xF0, 0xD7,
0xFE, 0x05, 0x20, 0x07, 0xF0, 0xC6, 0xA7, 0x28, 0x08, 0x18, 0x22, 0xF0, 0x81, 0xCB, 0x5F, 0x28,
0x1C, 0x3E, 0x60, 0xE0, 0xCF, 0xE0, 0xCE, 0x18, 0x1D, 0x3E, 0x01, 0xE0, 0xFF, 0xF0, 0xCC, 0x28,
0x0C, 0xF0, 0xCB, 0xFE, 0x29, 0x28, 0xD7, 0xF0, 0xD0, 0xFE, 0x60, 0x28, 0x09, 0xCD, 0xBD, 0x0D,
0x3E, 0x03, 0xCD, 0x73, 0x26, 0xC9, 0x3E, 0x1F, 0xE0, 0xE1, 0xE0, 0xCC, 0xC9, 0xF0, 0xA6, 0xA7,
0x20, 0x23, 0x21, 0xC6, 0xFF, 0x35, 0x3E, 0x19, 0xE0, 0xA6, 0xCD, 0x60, 0x0F, 0x21, 0x01, 0xC2,
0x7E, 0xEE, 0x30, 0x22, 0xFE, 0x60, 0xCC, 0x17, 0x0F, 0x2C, 0xF5, 0x7E, 0xEE, 0x01, 0x77, 0x2E,
0x13, 0x32, 0xF1, 0x2D, 0x77, 0xF0, 0xD7, 0xFE, 0x05, 0x20, 0x28, 0xF0, 0xC6, 0x21, 0x21, 0xC2,
0xFE, 0x06, 0x28, 0x1B, 0xFE, 0x08, 0x30, 0x1B, 0x7E, 0xFE, 0x72, 0x30, 0x06, 0xFE, 0x69, 0xC8,
0x34, 0x34, 0xC9, 0x36, 0x69, 0x2C, 0x2C, 0x36, 0x57, 0x3E, 0x06, 0xEA, 0xE0, 0xDF, 0xC9, 0x2D,
0x36, 0x80, 0xC9, 0xF0, 0xA7, 0xA7, 0xC0, 0x3E, 0x0F, 0xE0, 0xA7, 0x21, 0x23, 0xC2, 0x7E, 0xEE,
0x01, 0x77, 0xC9, 0xF0, 0xA6, 0xA7, 0xC0, 0xF0, 0xEF, 0xA7, 0x20, 0x05, 0xF0, 0xD8, 0x3C, 0xE0,
0xD8, 0xCD, 0x6F, 0x0F, 0x11, 0x1D, 0x27, 0xF0, 0xCB, 0xFE, 0x29, 0x28, 0x03, 0x11, 0x29, 0x27,
0x21, 0x00, 0xC2, 0x0E, 0x02, 0xCD, 0x76, 0x17, 0x3E, 0x19, 0xE0, 0xA6, 0xF0, 0xEF, 0xA7, 0x28,
0x05, 0x21, 0x10, 0xC2, 0x36, 0x80, 0x3E, 0x02, 0xCD, 0x73, 0x26, 0x3E, 0x21, 0xE0, 0xE1, 0x3E,
0x09, 0xEA, 0xE8, 0xDF, 0xF0, 0xD8, 0xFE, 0x05, 0xC0, 0x3E, 0x11, 0xEA, 0xE8, 0xDF, 0xC9, 0xF0,
0xD8, 0xFE, 0x05, 0x20, 0x07, 0xF0, 0xC6, 0xA7, 0x28, 0x08, 0x18, 0x22, 0xF0, 0x81, 0xCB, 0x5F,
0x28, 0x1C, 0x3E, 0x60, 0xE0, 0xCF, 0xE0, 0xCE, 0x18, 0x1D, 0x3E, 0x01, 0xE0, 0xFF, 0xF0, 0xCC,
0x28, 0x0C, 0xF0, 0xCB, 0xFE, 0x29, 0x28, 0xD7, 0xF0, 0xD0, 0xFE, 0x60, 0x28, 0x09, 0xCD, 0xAE,
0x0E, 0x3E, 0x02, 0xCD, 0x73, 0x26, 0xC9, 0x3E, 0x1F, 0xE0, 0xE1, 0xE0, 0xCC, 0xC9, 0xF0, 0xA6,
0xA7, 0x20, 0x1C, 0x21, 0xC6, 0xFF, 0x35, 0x3E, 0x19, 0xE0, 0xA6, 0xCD, 0x60, 0x0F, 0x21, 0x11,
0xC2, 0x7E, 0xEE, 0x08, 0x22, 0xFE, 0x68, 0xCC, 0x17, 0x0F, 0x2C, 0x7E, 0xEE, 0x01, 0x77, 0xF0,
0xD8, 0xFE, 0x05, 0x20, 0x32, 0xF0, 0xC6, 0x21, 0x01, 0xC2, 0xFE, 0x05, 0x28, 0x25, 0xFE, 0x06,
0x28, 0x11, 0xFE, 0x08, 0x30, 0x21, 0x7E, 0xFE, 0x72, 0x30, 0x18, 0xFE, 0x61, 0xC8, 0x34, 0x34,
0x34, 0x34, 0xC9, 0x2D, 0x36, 0x00, 0x2C, 0x36, 0x61, 0x2C, 0x2C, 0x36, 0x56, 0x3E, 0x06, 0xEA,
0xE0, 0xDF, 0xC9, 0x2D, 0x36, 0x80, 0xC9, 0xF0, 0xA7, 0xA7, 0xC0, 0x3E, 0x0F, 0xE0, 0xA7, 0x21,
0x03, 0xC2, 0x7E, 0xEE, 0x01, 0x77, 0xC9, 0xF5, 0xE5, 0xF0, 0xD7, 0xFE, 0x05, 0x28, 0x1A, 0xF0,
0xD8, 0xFE, 0x05, 0x28, 0x14, 0xF0, 0xCB, 0xFE, 0x29, 0x20, 0x0E, 0x21, 0x60, 0xC0, 0x06, 0x24,
0x11, 0x3C, 0x0F, 0x1A, 0x22, 0x13, 0x05, 0x20, 0xFA, 0xE1, 0xF1, 0xC9, 0x42, 0x30, 0x0D, 0x00,
0x42, 0x38, 0xB2, 0x00, 0x42, 0x40, 0x0E, 0x00, 0x42, 0x48, 0x1C, 0x00, 0x42, 0x58, 0x0E, 0x00,
0x42, 0x60, 0x1D, 0x00, 0x42, 0x68, 0xB5, 0x00, 0x42, 0x70, 0xBB, 0x00, 0x42, 0x78, 0x1D, 0x00,
0x21, 0x60, 0xC0, 0x11, 0x04, 0x00, 0x06, 0x09, 0xAF, 0x77, 0x19, 0x05, 0x20, 0xFB, 0xC9, 0xCD,
0x20, 0x28, 0x21, 0xAC, 0x55, 0x01, 0x00, 0x10, 0xCD, 0xE4, 0x27, 0xCD, 0x95, 0x27, 0x21, 0x00,
0x98, 0x11, 0xE4, 0x54, 0x06, 0x04, 0xCD, 0xF0, 0x27, 0x21, 0x80, 0x99, 0x06, 0x06, 0xCD, 0xF0,
0x27, 0xF0, 0xCB, 0xFE, 0x29, 0x20, 0x22, 0x21, 0x41, 0x98, 0x36, 0xBD, 0x2C, 0x36, 0xB2, 0x2C,
0x36, 0x2E, 0x2C, 0x36, 0xBE, 0x2C, 0x36, 0x2E, 0x21, 0x01, 0x9A, 0x36, 0xB4, 0x2C, 0x36, 0xB5,
0x2C, 0x36, 0xBB, 0x2C, 0x36, 0x2E, 0x2C, 0x36, 0xBC, 0xF0, 0xEF, 0xA7, 0x20, 0x03, 0xCD, 0x85,
0x10, 0xF0, 0xD7, 0xA7, 0x28, 0x49, 0xFE, 0x05, 0x20, 0x16, 0x21, 0xA5, 0x98, 0x06, 0x0B, 0xF0,
0xCB, 0xFE, 0x29, 0x11, 0xF3, 0x10, 0x28, 0x03, 0x11, 0xFE, 0x10, 0xCD, 0xD8, 0x10, 0x3E, 0x04,
0x4F, 0xF0, 0xCB, 0xFE, 0x29, 0x3E, 0x93, 0x20, 0x02, 0x3E, 0x8F, 0xE0, 0xA0, 0x21, 0xE7, 0x99,
0xCD, 0x6A, 0x10, 0xF0, 0xD9, 0xA7, 0x28, 0x17, 0x3E, 0xAC, 0xE0, 0xA0, 0x21, 0xF0, 0x99, 0x0E,
0x01, 0xCD, 0x6A, 0x10, 0x21, 0xA6, 0x98, 0x11, 0x09, 0x11, 0x06, 0x09, 0xCD, 0xD8, 0x10, 0xF0,
0xD8, 0xA7, 0x28, 0x3E, 0xFE, 0x05, 0x20, 0x16, 0x21, 0xA5, 0x98, 0x06, 0x0B, 0xF0, 0xCB, 0xFE,
0x29, 0x11, 0xFE, 0x10, 0x28, 0x03, 0x11, 0xF3, 0x10, 0xCD, 0xD8, 0x10, 0x3E, 0x04, 0x4F, 0xF0,
0xCB, 0xFE, 0x29, 0x3E, 0x8F, 0x20, 0x02, 0x3E, 0x93, 0xE0, 0xA0, 0x21, 0x27, 0x98, 0xCD, 0x6A,
0x10, 0xF0, 0xDA, 0xA7, 0x28, 0x0C, 0x3E, 0xAC, 0xE0, 0xA0, 0x21, 0x30, 0x98, 0x0E, 0x01, 0xCD,
0x6A, 0x10, 0xF0, 0xDB, 0xA7, 0x28, 0x0B, 0x21, 0xA7, 0x98, 0x11, 0xED, 0x10, 0x06, 0x06, 0xCD,
0xD8, 0x10, 0x3E, 0xD3, 0xE0, 0x40, 0xCD, 0x8A, 0x17, 0xC9, 0xF0, 0xA0, 0xE5, 0x11, 0x20, 0x00,
0x06, 0x02, 0xE5, 0x22, 0x3C, 0x77, 0x3C, 0xE1, 0x19, 0x05, 0x20, 0xF6, 0xE1, 0x11, 0x03, 0x00,
0x19, 0x0D, 0x20, 0xE6, 0xC9, 0x21, 0xD7, 0xFF, 0x11, 0xD8, 0xFF, 0xF0, 0xD9, 0xA7, 0x20, 0x3A,
0xF0, 0xDA, 0xA7, 0x20, 0x3C, 0xF0, 0xDB, 0xA7, 0x20, 0x21, 0x7E, 0xFE, 0x04, 0x28, 0x11, 0x1A,
0xFE, 0x04, 0xC0, 0x3E, 0x05, 0x12, 0x18, 0x0A, 0x1A, 0xFE, 0x03, 0xC0, 0x3E, 0x03, 0x18, 0x05,
0x36, 0x05, 0xAF, 0xE0, 0xDB, 0xAF, 0xE0, 0xD9, 0xE0, 0xDA, 0xC9, 0x7E, 0xFE, 0x04, 0x20, 0x06,
0xE0, 0xD9, 0xAF, 0xE0, 0xDB, 0xC9, 0xE0, 0xDA, 0x18, 0xF8, 0x7E, 0xFE, 0x05, 0x28, 0xE1, 0x18,
0xDB, 0x1A, 0xFE, 0x05, 0x28, 0xCD, 0x18, 0xD4, 0xC5, 0xE5, 0x1A, 0x22, 0x13, 0x05, 0x20, 0xFA,
0xE1, 0x11, 0x20, 0x00, 0x19, 0xC1, 0x3E, 0xB6, 0x22, 0x05, 0x20, 0xFC, 0xC9, 0xB0, 0xB1, 0xB2,
0xB3, 0xB1, 0x3E, 0xB4, 0xB5, 0xBB, 0x2E, 0xBC, 0x2F, 0x2D, 0x2E, 0x3D, 0x0E, 0x3E, 0xBD, 0xB2,
0x2E, 0xBE, 0x2E, 0x2F, 0x2D, 0x2E, 0x3D, 0x0E, 0x3E, 0xB5, 0xB0, 0x41, 0xB5, 0x3D, 0x1D, 0xB5,
0xBE, 0xB1, 0x3E, 0x01, 0xE0, 0xFF, 0xF0, 0xA6, 0xA7, 0xC0, 0xCD, 0x8A, 0x17, 0xAF, 0xE0, 0xEF,
0x06, 0x27, 0x0E, 0x79, 0xCD, 0x3F, 0x11, 0xCD, 0xF3, 0x7F, 0xF0, 0xD7, 0xFE, 0x05, 0x28, 0x0A,
0xF0, 0xD8, 0xFE, 0x05, 0x28, 0x04, 0x3E, 0x01, 0xE0, 0xD6, 0x3E, 0x16, 0xE0, 0xE1, 0xC9, 0xF0,
0xCC, 0xA7, 0x28, 0x14, 0xAF, 0xE0, 0xCC, 0xF0, 0xCB, 0xFE, 0x29, 0xF0, 0xD0, 0x20, 0x11, 0xB8,
0x28, 0x08, 0x3E, 0x02, 0xE0, 0xCF, 0xE0, 0xCE, 0xE1, 0xC9, 0x79, 0xE0, 0xCF, 0xE0, 0xCE, 0xC9,
0xB9, 0xC8, 0x78, 0xE0, 0xCF, 0xE1, 0xC9, 0xCD, 0xB2, 0x11, 0x21, 0xE6, 0x9C, 0x11, 0x1B, 0x14,
0x06, 0x07, 0xCD, 0x37, 0x14, 0x21, 0xE7, 0x9C, 0x11, 0x22, 0x14, 0x06, 0x07, 0xCD, 0x37, 0x14,
0x21, 0x08, 0x9D, 0x36, 0x72, 0x2C, 0x36, 0xC4, 0x21, 0x28, 0x9D, 0x36, 0xB7, 0x2C, 0x36, 0xB8,
0x11, 0x71, 0x27, 0x21, 0x00, 0xC2, 0x0E, 0x03, 0xCD, 0x76, 0x17, 0x3E, 0x03, 0xCD, 0x73, 0x26,
0x3E, 0xDB, 0xE0, 0x40, 0x3E, 0xBB, 0xE0, 0xA6, 0x3E, 0x27, 0xE0, 0xE1, 0x3E, 0x10, 0xEA, 0xE8,
0xDF, 0xC9, 0xCD, 0x20, 0x28, 0x21, 0xAC, 0x55, 0x01, 0x00, 0x10, 0xCD, 0xE4, 0x27, 0x21, 0xFF,
0x9F, 0xCD, 0x98, 0x27, 0x21, 0xC0, 0x9D, 0x11, 0xC4, 0x51, 0x06, 0x04, 0xCD, 0xF0, 0x27, 0x21,
0xEC, 0x9C, 0x11, 0x29, 0x14, 0x06, 0x07, 0xCD, 0x37, 0x14, 0x21, 0xED, 0x9C, 0x11, 0x30, 0x14,
0x06, 0x07, 0xCD, 0x37, 0x14, 0xC9, 0xF0, 0xA6, 0xA7, 0xC0, 0x21, 0x10, 0xC2, 0x36, 0x00, 0x2E,
0x20, 0x36, 0x00, 0x3E, 0xFF, 0xE0, 0xA6, 0x3E, 0x28, 0xE0, 0xE1, 0xC9, 0xF0, 0xA6, 0xA7, 0x28,
0x04, 0xCD, 0xFA, 0x13, 0xC9, 0x3E, 0x29, 0xE0, 0xE1, 0x21, 0x13, 0xC2, 0x36, 0x35, 0x2E, 0x23,
0x36, 0x35, 0x3E, 0xFF, 0xE0, 0xA6, 0x3E, 0x2F, 0xCD, 0xD7, 0x1F, 0xC9, 0xF0, 0xA6, 0xA7, 0x28,
0x04, 0xCD, 0xFA, 0x13, 0xC9, 0x3E, 0x02, 0xE0, 0xE1, 0x21, 0x08, 0x9D, 0x06, 0x2F, 0xCD, 0xFF,
0x19, 0x21, 0x09, 0x9D, 0xCD, 0xFF, 0x19, 0x21, 0x28, 0x9D, 0xCD, 0xFF, 0x19, 0x21, 0x29, 0x9D,
0xCD, 0xFF, 0x19, 0xC9, 0xF0, 0xA6, 0xA7, 0x20, 0x2E, 0x3E, 0x0A, 0xE0, 0xA6, 0x21, 0x01, 0xC2,
0x35, 0x7E, 0xFE, 0x58, 0x20, 0x21, 0x21, 0x10, 0xC2, 0x36, 0x00, 0x2C, 0xC6, 0x20, 0x22, 0x36,
0x4C, 0x2C, 0x36, 0x40, 0x2E, 0x20, 0x36, 0x80, 0x3E, 0x03, 0xCD, 0x73, 0x26, 0x3E, 0x03, 0xE0,
0xE1, 0x3E, 0x04, 0xEA, 0xF8, 0xDF, 0xC9, 0xCD, 0xFA, 0x13, 0xC9, 0xF0, 0xA6, 0xA7, 0x20, 0x1D,
0x3E, 0x0A, 0xE0, 0xA6, 0x21, 0x11, 0xC2, 0x35, 0x2E, 0x01, 0x35, 0x7E, 0xFE, 0xD0, 0x20, 0x0D,
0x3E, 0x9C, 0xE0, 0xC9, 0x3E, 0x82, 0xE0, 0xCA, 0x3E, 0x2C, 0xE0, 0xE1, 0xC9, 0xF0, 0xA7, 0xA7,
0x20, 0x0B, 0x3E, 0x06, 0xE0, 0xA7, 0x21, 0x13, 0xC2, 0x7E, 0xEE, 0x01, 0x77, 0x3E, 0x03, 0xCD,
0x73, 0x26, 0xC9, 0xF0, 0xA6, 0xA7, 0xC0, 0x3E, 0x06, 0xE0, 0xA6, 0xF0, 0xCA, 0xD6, 0x82, 0x5F,
0x16, 0x00, 0x21, 0xF5, 0x12, 0x19, 0xE5, 0xD1, 0xF0, 0xC9, 0x67, 0xF0, 0xCA, 0x6F, 0x1A, 0xCD,
0xFE, 0x19, 0xE5, 0x11, 0x20, 0x00, 0x19, 0x06, 0xB6, 0xCD, 0xFF, 0x19, 0xE1, 0x23, 0x3E, 0x02,
0xEA, 0xE0, 0xDF, 0x7C, 0xE0, 0xC9, 0x7D, 0xE0, 0xCA, 0xFE, 0x92, 0xC0, 0x3E, 0xFF, 0xE0, 0xA6,
0x3E, 0x2D, 0xE0, 0xE1, 0xC9, 0xB3, 0xBC, 0x3D, 0xBE, 0xBB, 0xB5, 0x1D, 0xB2, 0xBD, 0xB5, 0x1D,
0x2E, 0xBC, 0x3D, 0x0E, 0x3E, 0xF0, 0xA6, 0xA7, 0xC0, 0xCD, 0x20, 0x28, 0xCD, 0xAD, 0x27, 0xCD,
0x93, 0x22, 0x3E, 0x93, 0xE0, 0x40, 0x3E, 0x05, 0xE0, 0xE1, 0xC9, 0xF0, 0xA6, 0xA7, 0xC0, 0x3E,
0x2E, 0xE0, 0xE1, 0xC9, 0xCD, 0xB2, 0x11, 0x11, 0x83, 0x27, 0x21, 0x00, 0xC2, 0x0E, 0x03, 0xCD,
0x76, 0x17, 0xF0, 0xF3, 0xEA, 0x03, 0xC2, 0x3E, 0x03, 0xCD, 0x73, 0x26, 0xAF, 0xE0, 0xF3, 0x3E,
0xDB, 0xE0, 0x40, 0x3E, 0xBB, 0xE0, 0xA6, 0x3E, 0x2F, 0xE0, 0xE1, 0x3E, 0x10, 0xEA, 0xE8, 0xDF,
0xC9, 0xF0, 0xA6, 0xA7, 0xC0, 0x21, 0x10, 0xC2, 0x36, 0x00, 0x2E, 0x20, 0x36, 0x00, 0x3E, 0xA0,
0xE0, 0xA6, 0x3E, 0x30, 0xE0, 0xE1, 0xC9, 0xF0, 0xA6, 0xA7, 0x28, 0x04, 0xCD, 0xFA, 0x13, 0xC9,
0x3E, 0x31, 0xE0, 0xE1, 0x3E, 0x80, 0xE0, 0xA6, 0x3E, 0x2F, 0xCD, 0xD7, 0x1F, 0xC9, 0xF0, 0xA6,
0xA7, 0x20, 0x2E, 0x3E, 0x0A, 0xE0, 0xA6, 0x21, 0x01, 0xC2, 0x35, 0x7E, 0xFE, 0x6A, 0x20, 0x21,
0x21, 0x10, 0xC2, 0x36, 0x00, 0x2C, 0xC6, 0x10, 0x22, 0x36, 0x54, 0x2C, 0x36, 0x5C, 0x2E, 0x20,
0x36, 0x80, 0x3E, 0x03, 0xCD, 0x73, 0x26, 0x3E, 0x32, 0xE0, 0xE1, 0x3E, 0x04, 0xEA, 0xF8, 0xDF,
0xC9, 0xCD, 0xFA, 0x13, 0xC9, 0xF0, 0xA6, 0xA7, 0x20, 0x15, 0x3E, 0x0A, 0xE0, 0xA6, 0x21, 0x11,
0xC2, 0x35, 0x2E, 0x01, 0x35, 0x7E, 0xFE, 0xE0, 0x20, 0x05, 0x3E, 0x33, 0xE0, 0xE1, 0xC9, 0xF0,
0xA7, 0xA7, 0x20, 0x0B, 0x3E, 0x06, 0xE0, 0xA7, 0x21, 0x13, 0xC2, 0x7E, 0xEE, 0x01, 0x77, 0x3E,
0x03, 0xCD, 0x73, 0x26, 0xC9, 0xCD, 0x20, 0x28, 0xCD, 0xAD, 0x27, 0xCD, 0xF3, 0x7F, 0xCD, 0x93,
0x22, 0x3E, 0x93, 0xE0, 0x40, 0x3E, 0x10, 0xE0, 0xE1, 0xC9, 0xF0, 0xA7, 0xA7, 0xC0, 0x3E, 0x0A,
0xE0, 0xA7, 0x3E, 0x03, 0xEA, 0xF8, 0xDF, 0x06, 0x02, 0x21, 0x10, 0xC2, 0x7E, 0xEE, 0x80, 0x77,
0x2E, 0x20, 0x05, 0x20, 0xF7, 0x3E, 0x03, 0xCD, 0x73, 0x26, 0xC9, 0xC2, 0xCA, 0xCA, 0xCA, 0xCA,
0xCA, 0xCA, 0xC3, 0xCB, 0x58, 0x48, 0x48, 0x48, 0x48, 0xC8, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73,
0xC9, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x1A, 0x77, 0x13, 0xD5, 0x11, 0x20, 0x00, 0x19, 0xD1,
0x05, 0x20, 0xF4, 0xC9, 0x3E, 0x01, 0xE0, 0xFF, 0xAF, 0xE0, 0x01, 0xE0, 0x02, 0xE0, 0x0F, 0xCD,
0x20, 0x28, 0xCD, 0xAD, 0x27, 0x11, 0xD7, 0x4C, 0xCD, 0xEB, 0x27, 0xCD, 0x8A, 0x17, 0x21, 0x00,
0xC2, 0x11, 0xCF, 0x26, 0x0E, 0x02, 0xCD, 0x76, 0x17, 0x11, 0x01, 0xC2, 0xCD, 0x8D, 0x14, 0xF0,
0xC0, 0x1E, 0x12, 0x12, 0x13, 0xFE, 0x37, 0x3E, 0x1C, 0x28, 0x02, 0x3E, 0x1D, 0x12, 0xCD, 0x71,
0x26, 0xCD, 0x17, 0x15, 0x3E, 0xD3, 0xE0, 0x40, 0x3E, 0x0E, 0xE0, 0xE1, 0xC9, 0x3E, 0x01, 0xEA,
0xE0, 0xDF, 0xF0, 0xC1, 0xF5, 0xD6, 0x1C, 0x87, 0x4F, 0x06, 0x00, 0x21, 0xA8, 0x14, 0x09, 0x2A,
0x12, 0x13, 0x7E, 0x12, 0x13, 0xF1, 0x12, 0xC9, 0x70, 0x37, 0x70, 0x77, 0x80, 0x37, 0x80, 0x77};
//end of partial tetris rom
unsigned int i = 0;
unsigned int skip = 0;
for(i=0;i<16;i++)
{
node op = opcode[tetris[0x150+i]];
skip = op.len-1;
int k;
for(k=0;k<=skip;k++)
{
printf("%02X", tetris[0x150+i+k]);
}
printf("\t%s\n", op.mnemonic);
i+=skip;
}
return 0;
}
|
the_stack_data/1085475.c | #include<stdio.h>
double syosuSet(int a[],double syosu,int n);
int main(void){
double x;
int n;
int a[7];
printf("x : ");
scanf("%lf",&x);
int seisu=x;
double shosu=x-seisu;
printf("n : ");
scanf("%d",&n);
syosuSet(a,shosu,n);
printf("%d.",seisu);
for(int y=0;y<n;y++){
printf("%d",a[y]);
}
printf("\n");
return 0;
}
double syosuSet(int a[],double syosu,int n){
int i;
for(i=0;i<=n;i++){
if(i==0){
syosu*=10;
}else{
syosu*=10;
syosu-=a[i-1]*10;
}
a[i]=syosu;
}
if(a[n]>=5){
a[n-1]+=1;
}
for(i=n;i<7;i++){
a[i]=0;
}
return 0;
} |
the_stack_data/75138061.c | #include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
typedef struct node_t {
int Value;
struct node_t *Next;
} node;
typedef struct {
int Top;
node *Node;
} stack;
int GetStackTop(stack *Stack) {
int Top = 0;
node *Node = Stack->Node;
while (Node) {
Node = Node->Next;
Top++;
}
return Top;
}
void StackAdd(stack *Stack, int Value) {
if (GetStackTop(Stack) != Stack->Top) {
node *Node = Stack->Node, *NewNode = (node *) malloc(sizeof(node));
NewNode->Value = Value;
NewNode->Next = NULL;
while (Node && Node->Next) Node = Node->Next;
Node ? (Node->Next = NewNode) : (Stack->Node = NewNode);
}
}
int StackPop(stack *Stack) {
int Value = -1;
if (GetStackTop(Stack)) {
node *Node = Stack->Node;
while (Node->Next && Node->Next->Next) Node = Node->Next;
if (Node->Next) {
Value = Node->Next->Value;
free(Node->Next);
Node->Next = NULL;
} else {
Value = Stack->Node->Value;
free(Stack->Node);
Stack->Node = NULL;
}
}
return Value;
}
void FreeStackNode(stack *Stack) {
node *Node = Stack->Node;
while (Node) {
node *Temp = Node;
Node = Node->Next;
free(Temp);
}
Stack->Node = NULL;
}
int main() {
stack *Stack = (stack *) malloc(sizeof(stack));
Stack->Top = 15;
Stack->Node = NULL;
while (true) {
int Value = 0;
bool IsError = false;
while ((Value = getchar()) && Value != (int) '\n' && Value != EOF) {
if (Value == (int) '+' || Value == (int) '-' || Value == (int) '*' || Value == (int) '/') {
int Value1 = StackPop(Stack), Value2 = StackPop(Stack);
if (Value1 < 0 || Value2 < 0) IsError = true;
else {
if (Value == (int) '+') Value = Value2 + Value1;
else if (Value == (int) '-') Value = Value2 - Value1;
else if (Value == (int) '*') Value = Value2 * Value1;
else Value = Value2 / Value1;
StackAdd(Stack, Value);
}
} else if (Value >= (int) '0' && Value <= (int) '9') StackAdd(Stack, Value - (int) '0');
else IsError = true;
}
IsError || GetStackTop(Stack) > 1 ? printf("Input Error\n") : printf("%d\n", StackPop(Stack));
FreeStackNode(Stack);
if (Value == EOF) break;
}
return 0;
} |
the_stack_data/92822.c | /*
Projeto de Compiladores
Parte 1 - Analisador Léxico
WELLITON LEAL
ESTRUTURA DE DADOS UTILIZADA:
LISTA DUPLAMENTE ENCADEADA ALOCADA DINAMICAMENTE
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
typedef struct celula{
char *token;
int linha;
bool erro;
struct celula *prox;
struct celula *ant;
}celula;
typedef struct listaDENC{
celula *inicio;
celula *fim;
int cont;
}listaDENC;
listaDENC *inicializa()
{
listaDENC* l = (listaDENC*) malloc(sizeof(listaDENC));
l->inicio = NULL;
l->fim = NULL;
l->cont = 0;
return l;
}
celula *cria(char *palavra, int linha, bool erro)
{
celula *no = (celula*)malloc(sizeof(celula));
no->token = palavra;
no->linha = linha;
no->erro = erro;
no->prox = NULL;
no->ant = NULL;
return no;
}
int lista_vazia(listaDENC *l)
{
if(l == NULL)
{
return 1;
}
if(l->inicio == NULL)
{
return 1;
}
return 0;
}
int insere_inicio(listaDENC *l, char* palavra, int linha, bool erro)
{
if(l == NULL)
{
return 0;
}
celula *novo = cria(palavra, linha, erro);
if(novo == NULL)
{
return 0;
}
novo->prox = l->inicio;
novo->ant = NULL;
l->inicio = novo;
if(novo->prox != NULL)
{
novo->prox->ant = novo;
}
l->cont++;
return 1;
}
int insere_fim(listaDENC *l, char *palavra, int linha, bool erro)
{
if(l->inicio == NULL)
{
return(insere_inicio(l, palavra, linha, erro));
}
celula *novo = cria(palavra, linha, erro);
if(novo==NULL)
{
return (0);
}
celula *ultimo = l->inicio;
while(ultimo->prox !=NULL)
{
ultimo = ultimo->prox;
}
ultimo->prox=novo;
l->cont++;
return 1;
}
int remove_inicio(listaDENC *l)
{
if(l == NULL || l->inicio == NULL)
{
return 0;
}
celula *novo = l->inicio;
l->inicio = novo->prox;
if(novo->prox != NULL)
{
novo->prox->ant = NULL;
}
free(novo);
l->cont--;
return 1;
}
int remove_fim (listaDENC *l)
{
if(l == NULL || l->inicio == NULL)
{
return 0;
}
celula *ultimo = l->inicio;
while(ultimo->prox != NULL)
{
ultimo = ultimo->prox;
}
if(ultimo->ant == NULL)
{
printf("\n1\n");
l->inicio = ultimo->prox;
}
else
{
printf("\n3\n");
ultimo->ant->prox = NULL;
}
printf("\n4\n");
free(ultimo);
l->cont--;
return 1;
}
void imprimelista (listaDENC *l)
{
celula *p;
printf("\nLISTA:\n");
for(p = l->inicio;p != NULL;p = p->prox)
{
printf(" < %s, %d >", p->token, p->linha);
if(p->erro == 1)
{
printf(" ***Erro Lexico Econtrado na linha: %d",p->linha);
}
printf("\n");
}
printf("\n");
}
void apaga_lista (listaDENC *l)
{
int i=0;
celula *ant = l->inicio;
celula *atual = l->inicio;
while (atual != NULL)
{
ant = atual;
atual = atual->prox;
free(ant);
}
l->inicio = NULL;
l->fim = NULL;
l->cont = 0;
}
int analisador_lexico (listaDENC *l)
{
char *palavra;
int linha = 1;
int i=0,j=0;
int FLAG1=0,FLAG2=0;
bool erro;
FILE *Entrada;
Entrada = fopen("input5.txt", "r");
if(Entrada == NULL)
{
printf("\nERRO: Nao foi possivel abrir o arquivo de entrada.\n");
exit(0);
}
else
{
printf("\nENTRADA:\n");
//while(fgets (palavra,1000, file) != NULL)
while(fscanf(Entrada, "%ms",&palavra) != EOF)
{
printf(" %s", palavra);
//TRATANDO COMENTARIOS COM UMA FLAG DE CONTROLE
if (!strcmp(palavra, "/*"))
{
FLAG2 = 1;
}
else if(FLAG2 == 0)
{
//TRATANDO TOKENS E TERMINAIS
printf("\nr - %d\n",strcmp("inicio", "inicio"));
if (!strcmp(palavra, "inicio"))
{
insere_fim(l,"START", linha, 0);
linha++;
}
else if (!strcmp(palavra, "fim"))
{
insere_fim(l,"END", linha, 0);
linha++;
}
else if (!strcmp(palavra, "int"))
{
insere_fim(l,"INT", linha, 0);
}
else if (!strcmp(palavra, "leia"))
{
insere_fim(l,"READ", linha, 0);
}
else if (!strcmp(palavra, "escreva"))
{
insere_fim(l,"WRITE", linha, 0);
}
else if (!strcmp(palavra, ":"))
{
insere_fim(l,"TWODOTS", linha, 0);
}
else if (!strcmp(palavra, ":="))
{
insere_fim(l,"ATRIB", linha, 0);
}
else if (!strcmp(palavra, ","))
{
insere_fim(l,"COMMA", linha, 0);
}
else if (!strcmp(palavra, ";"))
{
insere_fim(l,"DOTCOMMA", linha, 0);
linha++;
}
else if (!strcmp(palavra, "("))
{
insere_fim(l,"LBRACKET", linha, 0);
}
else if (!strcmp(palavra, ")"))
{
insere_fim(l,"RBRACKET", linha, 0);
}
else if (!strcmp(palavra, "+"))
{
insere_fim(l,"ADDITION", linha, 0);
}
else if (!strcmp(palavra, "-"))
{
insere_fim(l,"SUBTRACTION", linha, 0);
}
else if (!strcmp(palavra, "*"))
{
insere_fim(l,"MULTIPLICATION", linha, 0);
}
//TRATANDO NÚMEROS
else if (palavra[0] >= '0' && palavra[0] <= '9')
{
i = FLAG1 = 0;
while(i < strlen(palavra))
{
if (palavra[i] < '0' || palavra[i] > '9')
{
FLAG1 = 1;
}
i++;
}
if (FLAG1 == 1)
{
insere_fim(l, "NUMBER", linha, 1);
}
else if (FLAG1 == 0)
{
insere_fim(l, "NUMBER", linha, 0);
}
}
//TRATANDO IDENTIFICADORES
else if (palavra[0] >= 'a' && palavra[0] <= 'z' || palavra[0] >= 'A' && palavra[0] <= 'Z')
{
i = FLAG1 = 0;
while(i < strlen(palavra))
{
if (!(palavra[i] >= '0' && palavra[i] <= '9' || palavra[i] >= 'a' && palavra[i] <= 'z' || palavra[i] >= 'A' && palavra[i] <= 'Z'))
{
FLAG1 = 1;
}
i++;
}
if(FLAG1 == 1)
{
insere_fim(l, "ID", linha, 1);
}
else if(FLAG1 == 0)
{
insere_fim(l, "ID", linha, 0);
}
}
}
else if (!strcmp(palavra, "*/"))
{
FLAG2 = 0;
}
}
}
printf("\n");
fclose(Entrada);
return(0);
}
int main(void)
{
int TAM=10;
listaDENC* l = (listaDENC*)malloc(TAM*sizeof(listaDENC));
l = inicializa();
analisador_lexico(l);
imprimelista(l);
apaga_lista(l);
return(0);
} |
the_stack_data/112297.c | #include <stdio.h>
void i_am_c()
{
printf(" Hello, I am C code.\n");
}
|
the_stack_data/59514189.c | #include <ctype.h>
#include <stdio.h>
#include <string.h>
#define LINECHAR 10
#define MAXSIZE 1000
int mgetword(char *);
int mconvertothex(int);
int main()
{
int c, i = 0;
char word[MAXSIZE];
for (i = 0; (c = mgetword(word)) != EOF; i += strlen(word))
{
if (i >= LINECHAR)
{
putchar('\n');
i = 0;
}
printf("%s", word);
}
printf("\n");
return 0;
}
int mgetword(char *word)
{
int c;
char a[MAXSIZE];
char *w = word;
c = getchar();
if (c == EOF)
{
return EOF;
}
*a = c;
if (iscntrl(c) || isspace(c))
{
sprintf(w, "%x", a);
}
else
{
sprintf(w, "%c", c);
}
return c;
}
|
the_stack_data/715661.c | #include <sys/types.h>
#include <stdint.h>
#include <stddef.h>
#include "stddef.h"
#undef KEY
#if defined(__i386)
# define KEY '_','_','i','3','8','6'
#elif defined(__x86_64)
# define KEY '_','_','x','8','6','_','6','4'
#elif defined(__PPC64__)
# define KEY '_','_','P','P','C','6','4','_','_'
#elif defined(__ppc64__)
# define KEY '_','_','p','p','c','6','4','_','_'
#elif defined(__PPC__)
# define KEY '_','_','P','P','C','_','_'
#elif defined(__ppc__)
# define KEY '_','_','p','p','c','_','_'
#elif defined(__aarch64__)
# define KEY '_','_','a','a','r','c','h','6','4','_','_'
#elif defined(__ARM_ARCH_7A__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
#elif defined(__ARM_ARCH_7S__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
#endif
#define SIZE (sizeof(ptrdiff_t))
static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
('0' + ((SIZE / 10000)%10)),
('0' + ((SIZE / 1000)%10)),
('0' + ((SIZE / 100)%10)),
('0' + ((SIZE / 10)%10)),
('0' + (SIZE % 10)),
']',
#ifdef KEY
' ','k','e','y','[', KEY, ']',
#endif
'\0'};
#ifdef __CLASSIC_C__
int main(argc, argv) int argc; char *argv[];
#else
int main(int argc, char *argv[])
#endif
{
int require = 0;
require += info_size[argc];
(void)argv;
return require;
}
|
the_stack_data/200143506.c | extern void __VERIFIER_error() __attribute__ ((__noreturn__));
void __VERIFIER_assert(int expression) { if (!expression) { ERROR: /* assert not proved */
__VERIFIER_error(); }; return; }
int __global_lock;
void __VERIFIER_atomic_begin() { /* reachable */
/* reachable */
/* reachable */
/* reachable */
__VERIFIER_assume(__global_lock==0); __global_lock=1; return; }
void __VERIFIER_atomic_end() { __VERIFIER_assume(__global_lock==1); __global_lock=0; return; }
#include <assert.h>
#include <pthread.h>
#ifndef TRUE
#define TRUE (_Bool)1
#endif
#ifndef FALSE
#define FALSE (_Bool)0
#endif
#ifndef NULL
#define NULL ((void*)0)
#endif
#ifndef FENCE
#define FENCE(x) ((void)0)
#endif
#ifndef IEEE_FLOAT_EQUAL
#define IEEE_FLOAT_EQUAL(x,y) (x==y)
#endif
#ifndef IEEE_FLOAT_NOTEQUAL
#define IEEE_FLOAT_NOTEQUAL(x,y) (x!=y)
#endif
void * P0(void *arg);
void * P1(void *arg);
void * P2(void *arg);
void fence();
void isync();
void lwfence();
int __unbuffered_cnt;
int __unbuffered_cnt = 0;
int __unbuffered_p0_EAX;
int __unbuffered_p0_EAX = 0;
int __unbuffered_p1_EAX;
int __unbuffered_p1_EAX = 0;
_Bool main$tmp_guard0;
_Bool main$tmp_guard1;
int x;
int x = 0;
int y;
int y = 0;
int z;
int z = 0;
void * P0(void *arg)
{
__VERIFIER_atomic_begin();
z = 2;
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
__unbuffered_p0_EAX = x;
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
__unbuffered_cnt = __unbuffered_cnt + 1;
__VERIFIER_atomic_end();
return nondet_0();
}
void * P1(void *arg)
{
__VERIFIER_atomic_begin();
x = 1;
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
__unbuffered_p1_EAX = y;
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
__unbuffered_cnt = __unbuffered_cnt + 1;
__VERIFIER_atomic_end();
return nondet_0();
}
void * P2(void *arg)
{
__VERIFIER_atomic_begin();
y = 1;
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
z = 1;
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
__unbuffered_cnt = __unbuffered_cnt + 1;
__VERIFIER_atomic_end();
return nondet_0();
}
void fence()
{
}
void isync()
{
}
void lwfence()
{
}
int main()
{
pthread_create(NULL, NULL, P0, NULL);
pthread_create(NULL, NULL, P1, NULL);
pthread_create(NULL, NULL, P2, NULL);
__VERIFIER_atomic_begin();
main$tmp_guard0 = __unbuffered_cnt == 3;
__VERIFIER_atomic_end();
__VERIFIER_assume(main$tmp_guard0);
__VERIFIER_atomic_begin();
__VERIFIER_atomic_end();
__VERIFIER_atomic_begin();
/* Program was expected to be safe for X86, model checker should have said NO.
This likely is a bug in the tool chain. */
main$tmp_guard1 = !(z == 2 && __unbuffered_p0_EAX == 0 && __unbuffered_p1_EAX == 0);
__VERIFIER_atomic_end();
/* Program was expected to be safe for X86, model checker should have said NO.
This likely is a bug in the tool chain. */
__VERIFIER_assert(main$tmp_guard1);
/* reachable */
return 0;
}
|
the_stack_data/98576023.c | #include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<unistd.h>
#include<sys/types.h>
#include<sys/wait.h>
#include<signal.h>
void intHandler(int sig){
signal(SIGINT, intHandler);
printf(" Enter \"quit\" to exit prompt \nmysh> ");
fflush(stdout);
return;
}
int main() {
signal(SIGINT, intHandler);
char command[100];
printf("mysh> ");
scanf(" %[^\n]s", command);
char delimiters[] = " \t";
char * inputString = command;
while( strcmp( command, "quit" ) != 0 ){
char *commandName = strsep( &inputString, delimiters);
if( strcmp( commandName, "cd" ) == 0 ){
char *commandArg = strsep( &inputString, delimiters);
pid_t pid;
pid = fork();
if(pid == 0){
int result = chdir(commandArg);
if (result == 0) {
printf("%d", execlp("/bin/pwd","pwd", NULL));
} else {
if (commandArg == NULL) {
printf("%d", execlp("/bin/pwd","pwd", NULL));
}
printf("Error: directory not found\n");
}
exit(0);
} else {
wait(NULL);
}
} else if( strcmp( commandName, "echo" ) == 0 ){
pid_t pid;
pid = fork();
if(pid == 0){
execlp("/bin/echo","echo", inputString, NULL);
exit(0);
} else {
wait(NULL);
}
} else if( strcmp( commandName, "ls" ) == 0 ){
char *directory = strsep( &inputString, delimiters);
pid_t pid;
pid = fork();
if(pid == 0){
execlp("/bin/ls","ls", directory, NULL);
exit(0);
} else {
wait(NULL);
}
} else if( strcmp( commandName, "wc" ) == 0 ){
char *option = strsep( &inputString, delimiters);
char *file = strsep( &inputString, delimiters);
pid_t pid;
pid = fork();
if(pid == 0){
execlp("/usr/bin/wc","wc", option, file, NULL);
exit(0);
} else {
wait(NULL);
}
} else {
printf( "Error: Command does not exist\n" );
}
printf( "mysh> " );
scanf( " %[^\n]s", command );
inputString = command;
}
return 0;
}
|
the_stack_data/132954160.c | #include <stdio.h>
#include <math.h>
int main()
{
int n = 50;
// double max_temp = 5425.11, min_temp = 0.2171475;
double max_temp = 6316.118889, min_temp = 0.2171475;
double diff = pow(min_temp/max_temp, 1.0/(double)(n-1));
for(int i=0;i<n;i++)
printf("%f ", max_temp * pow(diff, i));
return 0;
}
|
the_stack_data/134659.c | #include <stdlib.h>
int main() {
int i, a, pares = 0, positivos = 0, zeros = 0;
for (i = 0; i < 5; i++) {
scanf("%d", &a);
if (a % 2 == 0) {
pares++;
}
if (a > 0) {
positivos++;
}
if (a == 0) {
zeros++;
}
}
printf("%d valor(es) par(es)\n", pares);
printf("%d valor(es) impar(es)\n", 5-pares);
printf("%d valor(es) positivo(s)\n", positivos);
printf("%d valor(es) negativo(s)\n", 5-positivos-zeros);
return 0;
} |
the_stack_data/18888175.c | #include <stdlib.h>
// These are paths to folders in /sys which contain "uevent" file
// need to init this device.
// MultiROM needs to init framebuffer, mmc blocks, input devices,
// some ADB-related stuff and USB drives, if OTG is supported
// You can use * at the end to init this folder and all its subfolders
const char *mr_init_devices[] =
{
"/sys/class/graphics/fb0",
"/sys/devices/virtual/graphics/fb0",
"/sys/class/graphics/fb1",
"/sys/devices/virtual/graphics/fb1",
"/sys/block/mmcblk0",
"/sys/devices/msm_sdcc.1",
"/sys/devices/msm_sdcc.1/mmc_host/mmc0/*",
"/sys/devices/msm_sdcc.1/mmc_host/mmc0/mmc0:0001",
"/sys/devices/msm_sdcc.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0",
// boot and data
"/sys/devices/msm_sdcc.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0/mmcblk0p7",
"/sys/devices/msm_sdcc.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0/mmcblk0p28",
// system and cache
"/sys/devices/msm_sdcc.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0/mmcblk0p14",
"/sys/devices/msm_sdcc.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0/mmcblk0p16",
// persist and firmware
"/sys/devices/msm_sdcc.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0/mmcblk0p15",
"/sys/devices/msm_sdcc.1/mmc_host/mmc0/mmc0:0001/block/mmcblk0/mmcblk0p1",
"/sys/bus/mmc",
"/sys/bus/mmc/drivers/mmcblk",
"/sys/module/mmc_core",
"/sys/module/mmcblk",
"/sys/module/sdhci",
"/sys/module/sdhci/*",
"/sys/module/sdhci_msm",
"/sys/module/sdhci_msm/*",
// for input
"/sys/devices/virtual/input*",
"/sys/devices/virtual/misc/uinput",
"/sys/devices/gpio_keys.84/input*",
"/sys/bus/platform/devices/gpio_keys.84/input*",
"/sys/devices/virtual/misc/uinput/*",
"/sys/devices/f9924000.i2c/i2c-2/2-0020/input*",
"/sys/devices/f9924000.i2c/i2c-2/2-0020/input*",
"/sys/devices/f9924000.i2c/i2c-2/2-0020/input/input0",
// USB drive
"/sys/bus/platform/drivers/xhci-hcd*",
// for adb
"/sys/devices/virtual/tty/ptmx",
"/sys/devices/virtual/misc/android_adb",
"/sys/devices/virtual/android_usb/android0/f_adb",
"/sys/bus/usb",
"/sys/bus*",
"/sys/devices*",
// for qualcomm overlay - /dev/ion
"/sys/devices/virtual/misc/ion",
// Encryption
"/sys/devices/virtual/misc/device-mapper",
"/sys/devices/virtual/qseecom/qseecom",
NULL
};
|
the_stack_data/20449006.c | #define COUNT 101
static volatile int aaa;
int main(int argc, char *argv[]) {
for (int i = 0; i < COUNT; i++)
aaa++;
return 0;
}
|
the_stack_data/93888038.c | #include <stdio.h>
#include <stdlib.h>
void printarray(double *A, int n){
printf("\n[ ");
for(int i=0;i<n;i++)
printf("% lf ",A[i]);
printf("]\n ");
}
void ex1(double *A, int n){
for(int i=1;i<n;i++){
A[2*i-2]=i;
}
}
int main(int argc, char* argv[]){
int n=atoi(argv[1]);
double *A=(double *)malloc(2*n*sizeof(double));
for(int i=0;i<2*n;i++){
A[i]=0.0;
}
ex1(A,n);
printarray(A,n);
free(A);
return 0;
}
|
the_stack_data/22013436.c | /*
* integrate.c: Example of numerical integration in OpenMP.
*
* (C) 2015 Mikhail Kurnosov <[email protected]>
*/
#include <stdio.h>
#include <math.h>
#include <sys/time.h>
#include <omp.h>
const double PI = 3.14159265358979323846;
const double a = -4.0;
const double b = 4.0;
const int nsteps = 40000000;
double wtime()
{
struct timeval t;
gettimeofday(&t, NULL);
return (double)t.tv_sec + (double)t.tv_usec * 1E-6;
}
double func(double x)
{
return exp(-x * x);
}
/* integrate: Integrates by rectangle method (midpoint rule) */
double integrate(double (*func)(double), double a, double b, int n)
{
double h = (b - a) / n;
double sum = 0.0;
for (int i = 0; i < n; i++)
sum += func(a + h * (i + 0.5));
sum *= h;
return sum;
}
double run_serial()
{
double t = wtime();
double res = integrate(func, a, b, nsteps);
t = wtime() - t;
printf("Result (serial): %.12f; error %.12f\n", res, fabs(res - sqrt(PI)));
return t;
}
double integrate_omp(double (*func)(double), double a, double b, int n)
{
double h = (b - a) / n;
double sum = 0.0;
#pragma omp parallel
{
int nthreads = omp_get_num_threads();
int threadid = omp_get_thread_num();
int items_per_thread = n / nthreads;
int lb = threadid * items_per_thread;
int ub = (threadid == nthreads - 1) ? (n - 1) : (lb + items_per_thread - 1);
for (int i = lb; i <= ub; i++) {
double f = func(a + h * (i + 0.5));
#pragma omp critical // high overhead
{
sum += f;
}
}
}
sum *= h;
return sum;
}
double run_parallel()
{
double t = wtime();
double res = integrate_omp(func, a, b, nsteps);
t = wtime() - t;
printf("Result (parallel): %.12f; error %.12f\n", res, fabs(res - sqrt(PI)));
return t;
}
int main(int argc, char **argv)
{
printf("Integration f(x) on [%.12f, %.12f], nsteps = %d\n", a, b, nsteps);
double tserial = run_serial();
double tparallel = run_parallel();
printf("Execution time (serial): %.6f\n", tserial);
printf("Execution time (parallel): %.6f\n", tparallel);
printf("Speedup: %.2f\n", tserial / tparallel);
return 0;
}
|
the_stack_data/689444.c | /* DataToC output of file <lamps_lib_glsl> */
extern int datatoc_lamps_lib_glsl_size;
extern char datatoc_lamps_lib_glsl[];
int datatoc_lamps_lib_glsl_size = 14348;
char datatoc_lamps_lib_glsl[] = {
13, 10,117,110,105,102,111,114,109, 32,115, 97,109,112,108,101,114, 50, 68, 65,114,114, 97,121, 32,115,104, 97,100,111,119, 67,117, 98,101, 84,101,120,116,117,114,101, 59, 13, 10,117,110,105,102,111,114,109, 32,115, 97,109,112,108,101,114, 50, 68, 65,114,114, 97,121, 32,115,104, 97,100,111,119, 67, 97,115, 99, 97,100,101, 84,101,120,116,117,114,101, 59, 13, 10, 13, 10, 35,100,101,102,105,110,101, 32, 76, 65, 77, 80, 83, 95, 76, 73, 66, 13, 10, 13, 10,108, 97,121,111,117,116, 40,115,116,100, 49, 52, 48, 41, 32,117,110,105,102,111,114,109, 32,115,104, 97,100,111,119, 95, 98,108,111, 99,107, 32,123, 13, 10, 9, 83,104, 97,100,111,119, 68, 97,116, 97, 32, 32, 32, 32, 32, 32, 32, 32,115,104, 97,100,111,119,115, 95,100, 97,116, 97, 91, 77, 65, 88, 95, 83, 72, 65, 68, 79, 87, 93, 59, 13, 10, 9, 83,104, 97,100,111,119, 67,117, 98,101, 68, 97,116, 97, 32, 32, 32, 32,115,104, 97,100,111,119,115, 95, 99,117, 98,101, 95,100, 97,116, 97, 91, 77, 65, 88, 95, 83, 72, 65, 68, 79, 87, 95, 67, 85, 66, 69, 93, 59, 13, 10, 9, 83,104, 97,100,111,119, 67, 97,115, 99, 97,100,101, 68, 97,116, 97, 32,115,104, 97,100,111,119,115, 95, 99, 97,115, 99, 97,100,101, 95,100, 97,116, 97, 91, 77, 65, 88, 95, 83, 72, 65, 68, 79, 87, 95, 67, 65, 83, 67, 65, 68, 69, 93, 59, 13, 10,125, 59, 13, 10, 13, 10,108, 97,121,111,117,116, 40,115,116,100, 49, 52, 48, 41, 32,117,110,105,102,111,114,109, 32,108,105,103,104,116, 95, 98,108,111, 99,107, 32,123, 13, 10, 9, 76,105,103,104,116, 68, 97,116, 97, 32,108,105,103,104,116,115, 95,100, 97,116, 97, 91, 77, 65, 88, 95, 76, 73, 71, 72, 84, 93, 59, 13, 10,125, 59, 13, 10, 13, 10, 47, 42, 32,116,121,112,101, 32, 42, 47, 13, 10, 35,100,101,102,105,110,101, 32, 80, 79, 73, 78, 84, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 48, 46, 48, 13, 10, 35,100,101,102,105,110,101, 32, 83, 85, 78, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 49, 46, 48, 13, 10, 35,100,101,102,105,110,101, 32, 83, 80, 79, 84, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 50, 46, 48, 13, 10, 35,100,101,102,105,110,101, 32, 65, 82, 69, 65, 95, 82, 69, 67, 84, 32, 32, 32, 32, 32, 32, 52, 46, 48, 13, 10, 47, 42, 32, 85,115,101,100, 32,116,111, 32,100,101,102,105,110,101, 32,116,104,101, 32, 97,114,101, 97, 32,108, 97,109,112, 32,115,104, 97,112,101, 44, 32,100,111,101,115,110, 39,116, 32,100,105,114,101, 99,116,108,121, 32, 99,111,114,114,101,115,112,111,110,100, 32,116,111, 32, 97, 32, 66,108,101,110,100,101,114, 32,108, 97,109,112, 32,116,121,112,101, 46, 32, 42, 47, 13, 10, 35,100,101,102,105,110,101, 32, 65, 82, 69, 65, 95, 69, 76, 76, 73, 80, 83, 69, 32, 49, 48, 48, 46, 48, 13, 10, 13, 10, 35,105,102, 32,100,101,102,105,110,101,100, 40, 83, 72, 65, 68, 79, 87, 95, 86, 83, 77, 41, 13, 10, 35,100,101,102,105,110,101, 32, 83,104, 97,100,111,119, 83, 97,109,112,108,101, 32,118,101, 99, 50, 13, 10, 35,100,101,102,105,110,101, 32,115, 97,109,112,108,101, 95, 99,117, 98,101, 40,118,101, 99, 44, 32,105,100, 41, 32, 32, 32, 32,116,101,120,116,117,114,101, 95,111, 99,116, 97,104,101,100,114,111,110, 40,115,104, 97,100,111,119, 67,117, 98,101, 84,101,120,116,117,114,101, 44, 32,118,101, 99, 52, 40,118,101, 99, 44, 32,105,100, 41, 41, 46,114,103, 13, 10, 35,100,101,102,105,110,101, 32,115, 97,109,112,108,101, 95, 99, 97,115, 99, 97,100,101, 40,118,101, 99, 44, 32,105,100, 41, 32,116,101,120,116,117,114,101, 40,115,104, 97,100,111,119, 67, 97,115, 99, 97,100,101, 84,101,120,116,117,114,101, 44, 32,118,101, 99, 51, 40,118,101, 99, 44, 32,105,100, 41, 41, 46,114,103, 13, 10, 35,101,108,105,102, 32,100,101,102,105,110,101,100, 40, 83, 72, 65, 68, 79, 87, 95, 69, 83, 77, 41, 13, 10, 35,100,101,102,105,110,101, 32, 83,104, 97,100,111,119, 83, 97,109,112,108,101, 32,102,108,111, 97,116, 13, 10, 35,100,101,102,105,110,101, 32,115, 97,109,112,108,101, 95, 99,117, 98,101, 40,118,101, 99, 44, 32,105,100, 41, 32, 32, 32, 32,116,101,120,116,117,114,101, 95,111, 99,116, 97,104,101,100,114,111,110, 40,115,104, 97,100,111,119, 67,117, 98,101, 84,101,120,116,117,114,101, 44, 32,118,101, 99, 52, 40,118,101, 99, 44, 32,105,100, 41, 41, 46,114, 13, 10, 35,100,101,102,105,110,101, 32,115, 97,109,112,108,101, 95, 99, 97,115, 99, 97,100,101, 40,118,101, 99, 44, 32,105,100, 41, 32,116,101,120,116,117,114,101, 40,115,104, 97,100,111,119, 67, 97,115, 99, 97,100,101, 84,101,120,116,117,114,101, 44, 32,118,101, 99, 51, 40,118,101, 99, 44, 32,105,100, 41, 41, 46,114, 13, 10, 35,101,108,115,101, 13, 10, 35,100,101,102,105,110,101, 32, 83,104, 97,100,111,119, 83, 97,109,112,108,101, 32,102,108,111, 97,116, 13, 10, 35,100,101,102,105,110,101, 32,115, 97,109,112,108,101, 95, 99,117, 98,101, 40,118,101, 99, 44, 32,105,100, 41, 32, 32, 32, 32,116,101,120,116,117,114,101, 95,111, 99,116, 97,104,101,100,114,111,110, 40,115,104, 97,100,111,119, 67,117, 98,101, 84,101,120,116,117,114,101, 44, 32,118,101, 99, 52, 40,118,101, 99, 44, 32,105,100, 41, 41, 46,114, 13, 10, 35,100,101,102,105,110,101, 32,115, 97,109,112,108,101, 95, 99, 97,115, 99, 97,100,101, 40,118,101, 99, 44, 32,105,100, 41, 32,116,101,120,116,117,114,101, 40,115,104, 97,100,111,119, 67, 97,115, 99, 97,100,101, 84,101,120,116,117,114,101, 44, 32,118,101, 99, 51, 40,118,101, 99, 44, 32,105,100, 41, 41, 46,114, 13, 10, 35,101,110,100,105,102, 13, 10, 13, 10, 35,105,102, 32,100,101,102,105,110,101,100, 40, 83, 72, 65, 68, 79, 87, 95, 86, 83, 77, 41, 13, 10, 35,100,101,102,105,110,101, 32,103,101,116, 95,100,101,112,116,104, 95,100,101,108,116, 97, 40,100,105,115,116, 44, 32,115, 41, 32, 40,100,105,115,116, 32, 45, 32,115, 46,120, 41, 13, 10, 35,101,108,115,101, 13, 10, 35,100,101,102,105,110,101, 32,103,101,116, 95,100,101,112,116,104, 95,100,101,108,116, 97, 40,100,105,115,116, 44, 32,115, 41, 32, 40,100,105,115,116, 32, 45, 32,115, 41, 13, 10, 35,101,110,100,105,102, 13, 10, 13, 10, 47, 42, 32, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 32, 42, 47, 13, 10, 47, 42, 32, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 32, 83,104, 97,100,111,119, 32,116,101,115,116,115, 32, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 32, 42, 47, 13, 10, 47, 42, 32, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 32, 42, 47, 13, 10, 13, 10, 35,105,102, 32,100,101,102,105,110,101,100, 40, 83, 72, 65, 68, 79, 87, 95, 86, 83, 77, 41, 13, 10, 13, 10,102,108,111, 97,116, 32,115,104, 97,100,111,119, 95,116,101,115,116, 40, 83,104, 97,100,111,119, 83, 97,109,112,108,101, 32,109,111,109,101,110,116,115, 44, 32,102,108,111, 97,116, 32,100,105,115,116, 44, 32, 83,104, 97,100,111,119, 68, 97,116, 97, 32,115,100, 41, 13, 10,123, 13, 10, 9,102,108,111, 97,116, 32,112, 32, 61, 32, 48, 46, 48, 59, 13, 10, 13, 10, 9,105,102, 32, 40,100,105,115,116, 32, 60, 61, 32,109,111,109,101,110,116,115, 46,120, 41, 32,123, 13, 10, 9, 9,112, 32, 61, 32, 49, 46, 48, 59, 13, 10, 9,125, 13, 10, 13, 10, 9,102,108,111, 97,116, 32,118, 97,114,105, 97,110, 99,101, 32, 61, 32,109,111,109,101,110,116,115, 46,121, 32, 45, 32, 40,109,111,109,101,110,116,115, 46,120, 32, 42, 32,109,111,109,101,110,116,115, 46,120, 41, 59, 13, 10, 9,118, 97,114,105, 97,110, 99,101, 32, 61, 32,109, 97,120, 40,118, 97,114,105, 97,110, 99,101, 44, 32,115,100, 46,115,104, 95, 98,105, 97,115, 32, 47, 32, 49, 48, 46, 48, 41, 59, 13, 10, 13, 10, 9,102,108,111, 97,116, 32,100, 32, 61, 32,109,111,109,101,110,116,115, 46,120, 32, 45, 32,100,105,115,116, 59, 13, 10, 9,102,108,111, 97,116, 32,112, 95,109, 97,120, 32, 61, 32,118, 97,114,105, 97,110, 99,101, 32, 47, 32, 40,118, 97,114,105, 97,110, 99,101, 32, 43, 32,100, 32, 42, 32,100, 41, 59, 13, 10, 13, 10, 9, 47, 42, 32, 78,111,119, 32,114,101,100,117, 99,101, 32,108,105,103,104,116, 45, 98,108,101,101,100,105,110,103, 32, 98,121, 32,114,101,109,111,118,105,110,103, 32,116,104,101, 32, 91, 48, 44, 32,120, 93, 32,116, 97,105,108, 32, 97,110,100, 32,108,105,110,101, 97,114,108,121, 32,114,101,115, 99, 97,108,105,110,103, 32, 40,120, 44, 32, 49, 93, 32, 42, 47, 13, 10, 9,112, 95,109, 97,120, 32, 61, 32, 99,108, 97,109,112, 40, 40,112, 95,109, 97,120, 32, 45, 32,115,100, 46,115,104, 95, 98,108,101,101,100, 41, 32, 47, 32, 40, 49, 46, 48, 32, 45, 32,115,100, 46,115,104, 95, 98,108,101,101,100, 41, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 59, 13, 10, 13, 10, 9,114,101,116,117,114,110, 32,109, 97,120, 40,112, 44, 32,112, 95,109, 97,120, 41, 59, 13, 10,125, 13, 10, 13, 10, 35,101,108,105,102, 32,100,101,102,105,110,101,100, 40, 83, 72, 65, 68, 79, 87, 95, 69, 83, 77, 41, 13, 10, 13, 10,102,108,111, 97,116, 32,115,104, 97,100,111,119, 95,116,101,115,116, 40, 83,104, 97,100,111,119, 83, 97,109,112,108,101, 32,122, 44, 32,102,108,111, 97,116, 32,100,105,115,116, 44, 32, 83,104, 97,100,111,119, 68, 97,116, 97, 32,115,100, 41, 13, 10,123, 13, 10, 9,114,101,116,117,114,110, 32,115, 97,116,117,114, 97,116,101, 40,101,120,112, 40,115,100, 46,115,104, 95,101,120,112, 32, 42, 32, 40,122, 32, 45, 32,100,105,115,116, 32, 43, 32,115,100, 46,115,104, 95, 98,105, 97,115, 41, 41, 41, 59, 13, 10,125, 13, 10, 13, 10, 35,101,108,115,101, 13, 10, 13, 10,102,108,111, 97,116, 32,115,104, 97,100,111,119, 95,116,101,115,116, 40, 83,104, 97,100,111,119, 83, 97,109,112,108,101, 32,122, 44, 32,102,108,111, 97,116, 32,100,105,115,116, 44, 32, 83,104, 97,100,111,119, 68, 97,116, 97, 32,115,100, 41, 13, 10,123, 13, 10, 9,114,101,116,117,114,110, 32,115,116,101,112, 40, 48, 44, 32,122, 32, 45, 32,100,105,115,116, 32, 43, 32,115,100, 46,115,104, 95, 98,105, 97,115, 41, 59, 13, 10,125, 13, 10, 13, 10, 35,101,110,100,105,102, 13, 10, 13, 10, 47, 42, 32, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 32, 42, 47, 13, 10, 47, 42, 32, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 32, 83,104, 97,100,111,119, 32,116,121,112,101,115, 32, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 32, 42, 47, 13, 10, 47, 42, 32, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 32, 42, 47, 13, 10, 13, 10,102,108,111, 97,116, 32,115,104, 97,100,111,119, 95, 99,117, 98,101,109, 97,112, 40, 83,104, 97,100,111,119, 68, 97,116, 97, 32,115,100, 44, 32, 83,104, 97,100,111,119, 67,117, 98,101, 68, 97,116, 97, 32,115, 99,100, 44, 32,102,108,111, 97,116, 32,116,101,120,105,100, 44, 32,118,101, 99, 51, 32, 87, 41, 13, 10,123, 13, 10, 9,118,101, 99, 51, 32, 99,117, 98,101,118,101, 99, 32, 61, 32, 87, 32, 45, 32,115, 99,100, 46,112,111,115,105,116,105,111,110, 46,120,121,122, 59, 13, 10, 9,102,108,111, 97,116, 32,100,105,115,116, 32, 61, 32,108,101,110,103,116,104, 40, 99,117, 98,101,118,101, 99, 41, 59, 13, 10, 13, 10, 9, 99,117, 98,101,118,101, 99, 32, 47, 61, 32,100,105,115,116, 59, 13, 10, 13, 10, 9, 83,104, 97,100,111,119, 83, 97,109,112,108,101, 32,115, 32, 61, 32,115, 97,109,112,108,101, 95, 99,117, 98,101, 40, 99,117, 98,101,118,101, 99, 44, 32,116,101,120,105,100, 41, 59, 13, 10, 9,114,101,116,117,114,110, 32,115,104, 97,100,111,119, 95,116,101,115,116, 40,115, 44, 32,100,105,115,116, 44, 32,115,100, 41, 59, 13, 10,125, 13, 10, 13, 10,102,108,111, 97,116, 32,101,118, 97,108,117, 97,116,101, 95, 99, 97,115, 99, 97,100,101, 40, 83,104, 97,100,111,119, 68, 97,116, 97, 32,115,100, 44, 32,109, 97,116, 52, 32,115,104, 97,100,111,119,109, 97,116, 44, 32,118,101, 99, 51, 32, 87, 44, 32,102,108,111, 97,116, 32,114, 97,110,103,101, 44, 32,102,108,111, 97,116, 32,116,101,120,105,100, 41, 13, 10,123, 13, 10, 9,118,101, 99, 52, 32,115,104,112,111,115, 32, 61, 32,115,104, 97,100,111,119,109, 97,116, 32, 42, 32,118,101, 99, 52, 40, 87, 44, 32, 49, 46, 48, 41, 59, 13, 10, 9,102,108,111, 97,116, 32,100,105,115,116, 32, 61, 32,115,104,112,111,115, 46,122, 32, 42, 32,114, 97,110,103,101, 59, 13, 10, 13, 10, 9, 83,104, 97,100,111,119, 83, 97,109,112,108,101, 32,115, 32, 61, 32,115, 97,109,112,108,101, 95, 99, 97,115, 99, 97,100,101, 40,115,104,112,111,115, 46,120,121, 44, 32,116,101,120,105,100, 41, 59, 13, 10, 9,102,108,111, 97,116, 32,118,105,115, 32, 61, 32,115,104, 97,100,111,119, 95,116,101,115,116, 40,115, 44, 32,100,105,115,116, 44, 32,115,100, 41, 59, 13, 10, 13, 10, 9, 47, 42, 32, 73,102, 32,102,114, 97,103,109,101,110,116, 32,105,115, 32,111,117,116, 32,111,102, 32,115,104, 97,100,111,119,109, 97,112, 32,114, 97,110,103,101, 44, 32,100,111, 32,110,111,116, 32,111, 99, 99,108,117,100,101, 32, 42, 47, 13, 10, 9,105,102, 32, 40,115,104,112,111,115, 46,122, 32, 60, 32, 49, 46, 48, 32, 38, 38, 32,115,104,112,111,115, 46,122, 32, 62, 32, 48, 46, 48, 41, 32,123, 13, 10, 9, 9,114,101,116,117,114,110, 32,118,105,115, 59, 13, 10, 9,125, 13, 10, 9,101,108,115,101, 32,123, 13, 10, 9, 9,114,101,116,117,114,110, 32, 49, 46, 48, 59, 13, 10, 9,125, 13, 10,125, 13, 10, 13, 10,102,108,111, 97,116, 32,115,104, 97,100,111,119, 95, 99, 97,115, 99, 97,100,101, 40, 83,104, 97,100,111,119, 68, 97,116, 97, 32,115,100, 44, 32,105,110,116, 32,115, 99,100, 95,105,100, 44, 32,102,108,111, 97,116, 32,116,101,120,105,100, 44, 32,118,101, 99, 51, 32, 87, 41, 13, 10,123, 13, 10, 9,118,101, 99, 52, 32,118,105,101,119, 95,122, 32, 61, 32,118,101, 99, 52, 40,100,111,116, 40, 87, 32, 45, 32, 99, 97,109,101,114, 97, 80,111,115, 44, 32, 99, 97,109,101,114, 97, 70,111,114,119, 97,114,100, 41, 41, 59, 13, 10, 9,118,101, 99, 52, 32,119,101,105,103,104,116,115, 32, 61, 32,115,109,111,111,116,104,115,116,101,112, 40, 13, 10, 9, 32, 32, 32, 32, 32, 32, 32, 32,115,104, 97,100,111,119,115, 95, 99, 97,115, 99, 97,100,101, 95,100, 97,116, 97, 91,115, 99,100, 95,105,100, 93, 46,115,112,108,105,116, 95,101,110,100, 95,100,105,115,116, 97,110, 99,101,115, 44, 13, 10, 9, 32, 32, 32, 32, 32, 32, 32, 32,115,104, 97,100,111,119,115, 95, 99, 97,115, 99, 97,100,101, 95,100, 97,116, 97, 91,115, 99,100, 95,105,100, 93, 46,115,112,108,105,116, 95,115,116, 97,114,116, 95,100,105,115,116, 97,110, 99,101,115, 46,121,122,119,120, 44, 13, 10, 9, 32, 32, 32, 32, 32, 32, 32, 32,118,105,101,119, 95,122, 41, 59, 13, 10, 13, 10, 9,119,101,105,103,104,116,115, 46,121,122,119, 32, 45, 61, 32,119,101,105,103,104,116,115, 46,120,121,122, 59, 13, 10, 13, 10, 9,118,101, 99, 52, 32,118,105,115, 32, 61, 32,118,101, 99, 52, 40, 49, 46, 48, 41, 59, 13, 10, 9,102,108,111, 97,116, 32,114, 97,110,103,101, 32, 61, 32, 97, 98,115, 40,115,100, 46,115,104, 95,102, 97,114, 32, 45, 32,115,100, 46,115,104, 95,110,101, 97,114, 41, 59, 32, 47, 42, 32, 83, 97,109,101, 32,102, 97, 99,116,111,114, 32, 97,115, 32,105,110, 32,103,101,116, 95, 99, 97,115, 99, 97,100,101, 95,119,111,114,108,100, 95,100,105,115,116, 97,110, 99,101, 40, 41, 46, 32, 42, 47, 13, 10, 13, 10, 9, 47, 42, 32, 66,114, 97,110, 99,104,105,110,103, 32,117,115,105,110,103, 32, 40,119,101,105,103,104,116,115, 32, 62, 32, 48, 46, 48, 41, 32,105,115, 32,114,101, 97, 97,108,108,121, 32,115,108,111,111,111,119, 32,111,110, 32,105,110,116,101,108, 32,115,111, 32, 97,118,111,105,100, 32,105,116, 32,102,111,114, 32,110,111,119, 46, 32, 42, 47, 13, 10, 9, 47, 42, 32, 84, 79, 68, 79, 32, 79, 80, 84, 73, 58, 32, 79,110,108,121, 32,100,111, 32, 50, 32,115, 97,109,112,108,101,115, 32, 97,110,100, 32, 98,108,101,110,100, 46, 32, 42, 47, 13, 10, 9,118,105,115, 46,120, 32, 61, 32,101,118, 97,108,117, 97,116,101, 95, 99, 97,115, 99, 97,100,101, 40,115,100, 44, 32,115,104, 97,100,111,119,115, 95, 99, 97,115, 99, 97,100,101, 95,100, 97,116, 97, 91,115, 99,100, 95,105,100, 93, 46,115,104, 97,100,111,119,109, 97,116, 91, 48, 93, 44, 32, 87, 44, 32,114, 97,110,103,101, 44, 32,116,101,120,105,100, 32, 43, 32, 48, 41, 59, 13, 10, 9,118,105,115, 46,121, 32, 61, 32,101,118, 97,108,117, 97,116,101, 95, 99, 97,115, 99, 97,100,101, 40,115,100, 44, 32,115,104, 97,100,111,119,115, 95, 99, 97,115, 99, 97,100,101, 95,100, 97,116, 97, 91,115, 99,100, 95,105,100, 93, 46,115,104, 97,100,111,119,109, 97,116, 91, 49, 93, 44, 32, 87, 44, 32,114, 97,110,103,101, 44, 32,116,101,120,105,100, 32, 43, 32, 49, 41, 59, 13, 10, 9,118,105,115, 46,122, 32, 61, 32,101,118, 97,108,117, 97,116,101, 95, 99, 97,115, 99, 97,100,101, 40,115,100, 44, 32,115,104, 97,100,111,119,115, 95, 99, 97,115, 99, 97,100,101, 95,100, 97,116, 97, 91,115, 99,100, 95,105,100, 93, 46,115,104, 97,100,111,119,109, 97,116, 91, 50, 93, 44, 32, 87, 44, 32,114, 97,110,103,101, 44, 32,116,101,120,105,100, 32, 43, 32, 50, 41, 59, 13, 10, 9,118,105,115, 46,119, 32, 61, 32,101,118, 97,108,117, 97,116,101, 95, 99, 97,115, 99, 97,100,101, 40,115,100, 44, 32,115,104, 97,100,111,119,115, 95, 99, 97,115, 99, 97,100,101, 95,100, 97,116, 97, 91,115, 99,100, 95,105,100, 93, 46,115,104, 97,100,111,119,109, 97,116, 91, 51, 93, 44, 32, 87, 44, 32,114, 97,110,103,101, 44, 32,116,101,120,105,100, 32, 43, 32, 51, 41, 59, 13, 10, 13, 10, 9,102,108,111, 97,116, 32,119,101,105,103,104,116, 95,115,117,109, 32, 61, 32,100,111,116, 40,118,101, 99, 52, 40, 49, 46, 48, 41, 44, 32,119,101,105,103,104,116,115, 41, 59, 13, 10, 9,105,102, 32, 40,119,101,105,103,104,116, 95,115,117,109, 32, 62, 32, 48, 46, 57, 57, 57, 57, 41, 32,123, 13, 10, 9, 9,102,108,111, 97,116, 32,118,105,115, 95,115,117,109, 32, 61, 32,100,111,116, 40,118,101, 99, 52, 40, 49, 46, 48, 41, 44, 32,118,105,115, 32, 42, 32,119,101,105,103,104,116,115, 41, 59, 13, 10, 9, 9,114,101,116,117,114,110, 32,118,105,115, 95,115,117,109, 32, 47, 32,119,101,105,103,104,116, 95,115,117,109, 59, 13, 10, 9,125, 13, 10, 9,101,108,115,101, 32,123, 13, 10, 9, 9,102,108,111, 97,116, 32,118,105,115, 95,115,117,109, 32, 61, 32,100,111,116, 40,118,101, 99, 52, 40, 49, 46, 48, 41, 44, 32,118,105,115, 32, 42, 32,115,116,101,112, 40, 48, 46, 48, 48, 49, 44, 32,119,101,105,103,104,116,115, 41, 41, 59, 13, 10, 9, 9,114,101,116,117,114,110, 32,109,105,120, 40, 49, 46, 48, 44, 32,118,105,115, 95,115,117,109, 44, 32,119,101,105,103,104,116, 95,115,117,109, 41, 59, 13, 10, 9,125, 13, 10,125, 13, 10, 13, 10, 47, 42, 32, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 32, 42, 47, 13, 10, 47, 42, 32, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 32, 76,105,103,104,116, 32, 70,117,110, 99,116,105,111,110,115, 32, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 32, 42, 47, 13, 10, 47, 42, 32, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 32, 42, 47, 13, 10, 13, 10, 47, 42, 32, 70,114,111,109, 32, 70,114,111,115,116, 98,105,116,101, 32, 80, 66, 82, 32, 67,111,117,114,115,101, 13, 10, 32, 42, 32, 68,105,115,116, 97,110, 99,101, 32, 98, 97,115,101,100, 32, 97,116,116,101,110,117, 97,116,105,111,110, 13, 10, 32, 42, 32,104,116,116,112, 58, 47, 47,119,119,119, 46,102,114,111,115,116, 98,105,116,101, 46, 99,111,109, 47,119,112, 45, 99,111,110,116,101,110,116, 47,117,112,108,111, 97,100,115, 47, 50, 48, 49, 52, 47, 49, 49, 47, 99,111,117,114,115,101, 95,110,111,116,101,115, 95,109,111,118,105,110,103, 95,102,114,111,115,116, 98,105,116,101, 95,116,111, 95,112, 98,114, 46,112,100,102, 32, 42, 47, 13, 10,102,108,111, 97,116, 32,100,105,115,116, 97,110, 99,101, 95, 97,116,116,101,110,117, 97,116,105,111,110, 40,102,108,111, 97,116, 32,100,105,115,116, 95,115,113,114, 44, 32,102,108,111, 97,116, 32,105,110,118, 95,115,113,114, 95,105,110,102,108,117,101,110, 99,101, 41, 13, 10,123, 13, 10, 9,102,108,111, 97,116, 32,102, 97, 99,116,111,114, 32, 61, 32,100,105,115,116, 95,115,113,114, 32, 42, 32,105,110,118, 95,115,113,114, 95,105,110,102,108,117,101,110, 99,101, 59, 13, 10, 9,102,108,111, 97,116, 32,102, 97, 99, 32, 61, 32,115, 97,116,117,114, 97,116,101, 40, 49, 46, 48, 32, 45, 32,102, 97, 99,116,111,114, 32, 42, 32,102, 97, 99,116,111,114, 41, 59, 13, 10, 9,114,101,116,117,114,110, 32,102, 97, 99, 32, 42, 32,102, 97, 99, 59, 13, 10,125, 13, 10, 13, 10,102,108,111, 97,116, 32,115,112,111,116, 95, 97,116,116,101,110,117, 97,116,105,111,110, 40, 76,105,103,104,116, 68, 97,116, 97, 32,108,100, 44, 32,118,101, 99, 51, 32,108, 95,118,101, 99,116,111,114, 41, 13, 10,123, 13, 10, 9,102,108,111, 97,116, 32,122, 32, 61, 32,100,111,116, 40,108,100, 46,108, 95,102,111,114,119, 97,114,100, 44, 32,108, 95,118,101, 99,116,111,114, 46,120,121,122, 41, 59, 13, 10, 9,118,101, 99, 51, 32,108, 76, 32, 61, 32,108, 95,118,101, 99,116,111,114, 46,120,121,122, 32, 47, 32,122, 59, 13, 10, 9,102,108,111, 97,116, 32,120, 32, 61, 32,100,111,116, 40,108,100, 46,108, 95,114,105,103,104,116, 44, 32,108, 76, 41, 32, 47, 32,108,100, 46,108, 95,115,105,122,101,120, 59, 13, 10, 9,102,108,111, 97,116, 32,121, 32, 61, 32,100,111,116, 40,108,100, 46,108, 95,117,112, 44, 32,108, 76, 41, 32, 47, 32,108,100, 46,108, 95,115,105,122,101,121, 59, 13, 10, 9,102,108,111, 97,116, 32,101,108,108,105,112,115,101, 32, 61, 32,105,110,118,101,114,115,101,115,113,114,116, 40, 49, 46, 48, 32, 43, 32,120, 32, 42, 32,120, 32, 43, 32,121, 32, 42, 32,121, 41, 59, 13, 10, 9,102,108,111, 97,116, 32,115,112,111,116,109, 97,115,107, 32, 61, 32,115,109,111,111,116,104,115,116,101,112, 40, 48, 46, 48, 44, 32, 49, 46, 48, 44, 32, 40,101,108,108,105,112,115,101, 32, 45, 32,108,100, 46,108, 95,115,112,111,116, 95,115,105,122,101, 41, 32, 47, 32,108,100, 46,108, 95,115,112,111,116, 95, 98,108,101,110,100, 41, 59, 13, 10, 9,114,101,116,117,114,110, 32,115,112,111,116,109, 97,115,107, 59, 13, 10,125, 13, 10, 13, 10,102,108,111, 97,116, 32,108,105,103,104,116, 95,118,105,115,105, 98,105,108,105,116,121, 40, 76,105,103,104,116, 68, 97,116, 97, 32,108,100, 44, 32,118,101, 99, 51, 32, 87, 44, 13, 10, 35,105,102,110,100,101,102, 32, 86, 79, 76, 85, 77, 69, 84, 82, 73, 67, 83, 13, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,118,101, 99, 51, 32,118,105,101,119, 80,111,115,105,116,105,111,110, 44, 13, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,118,101, 99, 51, 32,118,105,101,119, 78,111,114,109, 97,108, 44, 13, 10, 35,101,110,100,105,102, 13, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,118,101, 99, 52, 32,108, 95,118,101, 99,116,111,114, 41, 13, 10,123, 13, 10, 9,102,108,111, 97,116, 32,118,105,115, 32, 61, 32, 49, 46, 48, 59, 13, 10, 13, 10, 9,105,102, 32, 40,108,100, 46,108, 95,116,121,112,101, 32, 61, 61, 32, 83, 80, 79, 84, 41, 32,123, 13, 10, 9, 9,118,105,115, 32, 42, 61, 32,115,112,111,116, 95, 97,116,116,101,110,117, 97,116,105,111,110, 40,108,100, 44, 32,108, 95,118,101, 99,116,111,114, 46,120,121,122, 41, 59, 13, 10, 9,125, 13, 10, 9,105,102, 32, 40,108,100, 46,108, 95,116,121,112,101, 32, 62, 61, 32, 83, 80, 79, 84, 41, 32,123, 13, 10, 9, 9,118,105,115, 32, 42, 61, 32,115,116,101,112, 40, 48, 46, 48, 44, 32, 45,100,111,116, 40,108, 95,118,101, 99,116,111,114, 46,120,121,122, 44, 32,108,100, 46,108, 95,102,111,114,119, 97,114,100, 41, 41, 59, 13, 10, 9,125, 13, 10, 9,105,102, 32, 40,108,100, 46,108, 95,116,121,112,101, 32, 33, 61, 32, 83, 85, 78, 41, 32,123, 13, 10, 9, 9,118,105,115, 32, 42, 61, 32,100,105,115,116, 97,110, 99,101, 95, 97,116,116,101,110,117, 97,116,105,111,110, 40,108, 95,118,101, 99,116,111,114, 46,119, 32, 42, 32,108, 95,118,101, 99,116,111,114, 46,119, 44, 32,108,100, 46,108, 95,105,110,102,108,117,101,110, 99,101, 41, 59, 13, 10, 9,125, 13, 10, 13, 10, 35,105,102, 32, 33,100,101,102,105,110,101,100, 40, 86, 79, 76, 85, 77, 69, 84, 82, 73, 67, 83, 41, 32,124,124, 32,100,101,102,105,110,101,100, 40, 86, 79, 76, 85, 77, 69, 95, 83, 72, 65, 68, 79, 87, 41, 13, 10, 9, 47, 42, 32,115,104, 97,100,111,119,105,110,103, 32, 42, 47, 13, 10, 9,105,102, 32, 40,108,100, 46,108, 95,115,104, 97,100,111,119,105,100, 32, 62, 61, 32, 48, 46, 48, 32, 38, 38, 32,118,105,115, 32, 62, 32, 48, 46, 48, 48, 49, 41, 32,123, 13, 10, 9, 9, 83,104, 97,100,111,119, 68, 97,116, 97, 32,100, 97,116, 97, 32, 61, 32,115,104, 97,100,111,119,115, 95,100, 97,116, 97, 91,105,110,116, 40,108,100, 46,108, 95,115,104, 97,100,111,119,105,100, 41, 93, 59, 13, 10, 13, 10, 9, 9,105,102, 32, 40,108,100, 46,108, 95,116,121,112,101, 32, 61, 61, 32, 83, 85, 78, 41, 32,123, 13, 10, 9, 9, 9,118,105,115, 32, 42, 61, 32,115,104, 97,100,111,119, 95, 99, 97,115, 99, 97,100,101, 40, 13, 10, 9, 9, 9, 9,100, 97,116, 97, 44, 32,105,110,116, 40,100, 97,116, 97, 46,115,104, 95,100, 97,116, 97, 95,115,116, 97,114,116, 41, 44, 13, 10, 9, 9, 9, 9,100, 97,116, 97, 46,115,104, 95,116,101,120, 95,115,116, 97,114,116, 44, 32, 87, 41, 59, 13, 10, 9, 9,125, 13, 10, 9, 9,101,108,115,101, 32,123, 13, 10, 9, 9, 9,118,105,115, 32, 42, 61, 32,115,104, 97,100,111,119, 95, 99,117, 98,101,109, 97,112, 40, 13, 10, 9, 9, 9, 9,100, 97,116, 97, 44, 32,115,104, 97,100,111,119,115, 95, 99,117, 98,101, 95,100, 97,116, 97, 91,105,110,116, 40,100, 97,116, 97, 46,115,104, 95,100, 97,116, 97, 95,115,116, 97,114,116, 41, 93, 44, 13, 10, 9, 9, 9, 9,100, 97,116, 97, 46,115,104, 95,116,101,120, 95,115,116, 97,114,116, 44, 32, 87, 41, 59, 13, 10, 9, 9,125, 13, 10, 13, 10, 35,105,102,110,100,101,102, 32, 86, 79, 76, 85, 77, 69, 84, 82, 73, 67, 83, 13, 10, 9, 9, 47, 42, 32, 79,110,108,121, 32, 99,111,109,112,117,116,101, 32,105,102, 32,110,111,116, 32, 97,108,114,101, 97,100,121, 32,105,110, 32,115,104, 97,100,111,119, 46, 32, 42, 47, 13, 10, 9, 9,105,102, 32, 40,100, 97,116, 97, 46,115,104, 95, 99,111,110,116, 97, 99,116, 95,100,105,115,116, 32, 62, 32, 48, 46, 48, 41, 32,123, 13, 10, 9, 9, 9,118,101, 99, 52, 32, 76, 32, 61, 32, 40,108,100, 46,108, 95,116,121,112,101, 32, 33, 61, 32, 83, 85, 78, 41, 32, 63, 32,108, 95,118,101, 99,116,111,114, 32, 58, 32,118,101, 99, 52, 40, 45,108,100, 46,108, 95,102,111,114,119, 97,114,100, 44, 32, 49, 46, 48, 41, 59, 13, 10, 9, 9, 9,102,108,111, 97,116, 32,116,114, 97, 99,101, 95,100,105,115,116, 97,110, 99,101, 32, 61, 32, 40,108,100, 46,108, 95,116,121,112,101, 32, 33, 61, 32, 83, 85, 78, 41, 32, 63, 32,109,105,110, 40,100, 97,116, 97, 46,115,104, 95, 99,111,110,116, 97, 99,116, 95,100,105,115,116, 44, 32,108, 95,118,101, 99,116,111,114, 46,119, 41, 32, 58, 32,100, 97,116, 97, 46,115,104, 95, 99,111,110,116, 97, 99,116, 95,100,105,115,116, 59, 13, 10, 13, 10, 9, 9, 9,118,101, 99, 51, 32, 84, 44, 32, 66, 59, 13, 10, 9, 9, 9,109, 97,107,101, 95,111,114,116,104,111,110,111,114,109, 97,108, 95, 98, 97,115,105,115, 40, 76, 46,120,121,122, 32, 47, 32, 76, 46,119, 44, 32, 84, 44, 32, 66, 41, 59, 13, 10, 13, 10, 9, 9, 9,118,101, 99, 52, 32,114, 97,110,100, 32, 61, 32,116,101,120,101,108,102,101,116, 99,104, 95,110,111,105,115,101, 95,116,101,120, 40,103,108, 95, 70,114, 97,103, 67,111,111,114,100, 46,120,121, 41, 59, 13, 10, 9, 9, 9,114, 97,110,100, 46,122,119, 32, 42, 61, 32,102, 97,115,116, 95,115,113,114,116, 40,114, 97,110,100, 46,121, 41, 32, 42, 32,100, 97,116, 97, 46,115,104, 95, 99,111,110,116, 97, 99,116, 95,115,112,114,101, 97,100, 59, 13, 10, 13, 10, 9, 9, 9, 47, 42, 32, 87,101, 32,117,115,101, 32,116,104,101, 32,102,117,108,108, 32,108, 95,118,101, 99,116,111,114, 46,120,121,122, 32,115,111, 32,116,104, 97,116, 32,116,104,101, 32,115,112,114,101, 97,100, 32,105,115, 32,109,105,110,105,109,105,122,101, 13, 10, 9, 9, 9, 32, 42, 32,105,102, 32,116,104,101, 32,115,104, 97,100,105,110,103, 32,112,111,105,110,116, 32,105,115, 32,102,117,114,116,104,101,114, 32, 97,119, 97,121, 32,102,114,111,109, 32,116,104,101, 32,108,105,103,104,116, 32,115,111,117,114, 99,101, 32, 42, 47, 13, 10, 9, 9, 9,118,101, 99, 51, 32,114, 97,121, 95,100,105,114, 32, 61, 32, 76, 46,120,121,122, 32, 43, 32, 84, 32, 42, 32,114, 97,110,100, 46,122, 32, 43, 32, 66, 32, 42, 32,114, 97,110,100, 46,119, 59, 13, 10, 9, 9, 9,114, 97,121, 95,100,105,114, 32, 61, 32,116,114, 97,110,115,102,111,114,109, 95,100,105,114,101, 99,116,105,111,110, 40, 86,105,101,119, 77, 97,116,114,105,120, 44, 32,114, 97,121, 95,100,105,114, 41, 59, 13, 10, 9, 9, 9,114, 97,121, 95,100,105,114, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40,114, 97,121, 95,100,105,114, 41, 59, 13, 10, 13, 10, 9, 9, 9,118,101, 99, 51, 32,114, 97,121, 95,111,114,105, 32, 61, 32,118,105,101,119, 80,111,115,105,116,105,111,110, 59, 13, 10, 13, 10, 9, 9, 9,105,102, 32, 40,100,111,116, 40,118,105,101,119, 78,111,114,109, 97,108, 44, 32,114, 97,121, 95,100,105,114, 41, 32, 60, 61, 32, 48, 46, 48, 41, 32,123, 13, 10, 9, 9, 9, 9,114,101,116,117,114,110, 32,118,105,115, 59, 13, 10, 9, 9, 9,125, 13, 10, 13, 10, 9, 9, 9,102,108,111, 97,116, 32, 98,105, 97,115, 32, 61, 32, 48, 46, 53, 59, 32, 47, 42, 32, 67,111,110,115,116, 97,110,116, 32, 66,105, 97,115, 32, 42, 47, 13, 10, 9, 9, 9, 98,105, 97,115, 32, 43, 61, 32, 49, 46, 48, 32, 45, 32, 97, 98,115, 40,100,111,116, 40,118,105,101,119, 78,111,114,109, 97,108, 44, 32,114, 97,121, 95,100,105,114, 41, 41, 59, 32, 47, 42, 32, 65,110,103,108,101, 32,100,101,112,101,110,100,101,110,116, 32, 98,105, 97,115, 32, 42, 47, 13, 10, 9, 9, 9, 98,105, 97,115, 32, 42, 61, 32,103,108, 95, 70,114,111,110,116, 70, 97, 99,105,110,103, 32, 63, 32,100, 97,116, 97, 46,115,104, 95, 99,111,110,116, 97, 99,116, 95,111,102,102,115,101,116, 32, 58, 32, 45,100, 97,116, 97, 46,115,104, 95, 99,111,110,116, 97, 99,116, 95,111,102,102,115,101,116, 59, 13, 10, 13, 10, 9, 9, 9,118,101, 99, 51, 32,110,111,114, 95, 98,105, 97,115, 32, 61, 32,118,105,101,119, 78,111,114,109, 97,108, 32, 42, 32, 98,105, 97,115, 59, 13, 10, 9, 9, 9,114, 97,121, 95,111,114,105, 32, 43, 61, 32,110,111,114, 95, 98,105, 97,115, 59, 13, 10, 13, 10, 9, 9, 9,114, 97,121, 95,100,105,114, 32, 42, 61, 32,116,114, 97, 99,101, 95,100,105,115,116, 97,110, 99,101, 59, 13, 10, 9, 9, 9,114, 97,121, 95,100,105,114, 32, 45, 61, 32,110,111,114, 95, 98,105, 97,115, 59, 13, 10, 13, 10, 9, 9, 9,118,101, 99, 51, 32,104,105,116, 95,112,111,115, 32, 61, 32,114, 97,121, 99, 97,115,116, 40, 45, 49, 44, 32,114, 97,121, 95,111,114,105, 44, 32,114, 97,121, 95,100,105,114, 44, 32,100, 97,116, 97, 46,115,104, 95, 99,111,110,116, 97, 99,116, 95,116,104,105, 99,107,110,101,115,115, 44, 32,114, 97,110,100, 46,120, 44, 13, 10, 9, 9, 9, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 48, 46, 49, 44, 32, 48, 46, 48, 48, 49, 44, 32,102, 97,108,115,101, 41, 59, 13, 10, 13, 10, 9, 9, 9,105,102, 32, 40,104,105,116, 95,112,111,115, 46,122, 32, 62, 32, 48, 46, 48, 41, 32,123, 13, 10, 9, 9, 9, 9,104,105,116, 95,112,111,115, 32, 61, 32,103,101,116, 95,118,105,101,119, 95,115,112, 97, 99,101, 95,102,114,111,109, 95,100,101,112,116,104, 40,104,105,116, 95,112,111,115, 46,120,121, 44, 32,104,105,116, 95,112,111,115, 46,122, 41, 59, 13, 10, 9, 9, 9, 9,102,108,111, 97,116, 32,104,105,116, 95,100,105,115,116, 32, 61, 32,100,105,115,116, 97,110, 99,101, 40,118,105,101,119, 80,111,115,105,116,105,111,110, 44, 32,104,105,116, 95,112,111,115, 41, 59, 13, 10, 9, 9, 9, 9,102,108,111, 97,116, 32,100,105,115,116, 95,114, 97,116,105,111, 32, 61, 32,104,105,116, 95,100,105,115,116, 32, 47, 32,116,114, 97, 99,101, 95,100,105,115,116, 97,110, 99,101, 59, 13, 10, 9, 9, 9, 9,114,101,116,117,114,110, 32,118,105,115, 32, 42, 32,115, 97,116,117,114, 97,116,101, 40,100,105,115,116, 95,114, 97,116,105,111, 32, 42, 32,100,105,115,116, 95,114, 97,116,105,111, 32, 42, 32,100,105,115,116, 95,114, 97,116,105,111, 41, 59, 13, 10, 9, 9, 9,125, 13, 10, 9, 9,125, 13, 10, 35,101,110,100,105,102, 13, 10, 9,125, 13, 10, 35,101,110,100,105,102, 13, 10, 13, 10, 9,114,101,116,117,114,110, 32,118,105,115, 59, 13, 10,125, 13, 10, 13, 10, 35,105,102,100,101,102, 32, 85, 83, 69, 95, 76, 84, 67, 13, 10,102,108,111, 97,116, 32,108,105,103,104,116, 95,100,105,102,102,117,115,101, 40, 76,105,103,104,116, 68, 97,116, 97, 32,108,100, 44, 32,118,101, 99, 51, 32, 78, 44, 32,118,101, 99, 51, 32, 86, 44, 32,118,101, 99, 52, 32,108, 95,118,101, 99,116,111,114, 41, 13, 10,123, 13, 10, 9,105,102, 32, 40,108,100, 46,108, 95,116,121,112,101, 32, 61, 61, 32, 65, 82, 69, 65, 95, 82, 69, 67, 84, 41, 32,123, 13, 10, 9, 9,118,101, 99, 51, 32, 99,111,114,110,101,114,115, 91, 52, 93, 59, 13, 10, 9, 9, 99,111,114,110,101,114,115, 91, 48, 93, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40, 40,108, 95,118,101, 99,116,111,114, 46,120,121,122, 32, 43, 32,108,100, 46,108, 95,114,105,103,104,116, 32, 42, 32, 45,108,100, 46,108, 95,115,105,122,101,120, 41, 32, 43, 32,108,100, 46,108, 95,117,112, 32, 42, 32, 32,108,100, 46,108, 95,115,105,122,101,121, 41, 59, 13, 10, 9, 9, 99,111,114,110,101,114,115, 91, 49, 93, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40, 40,108, 95,118,101, 99,116,111,114, 46,120,121,122, 32, 43, 32,108,100, 46,108, 95,114,105,103,104,116, 32, 42, 32, 45,108,100, 46,108, 95,115,105,122,101,120, 41, 32, 43, 32,108,100, 46,108, 95,117,112, 32, 42, 32, 45,108,100, 46,108, 95,115,105,122,101,121, 41, 59, 13, 10, 9, 9, 99,111,114,110,101,114,115, 91, 50, 93, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40, 40,108, 95,118,101, 99,116,111,114, 46,120,121,122, 32, 43, 32,108,100, 46,108, 95,114,105,103,104,116, 32, 42, 32, 32,108,100, 46,108, 95,115,105,122,101,120, 41, 32, 43, 32,108,100, 46,108, 95,117,112, 32, 42, 32, 45,108,100, 46,108, 95,115,105,122,101,121, 41, 59, 13, 10, 9, 9, 99,111,114,110,101,114,115, 91, 51, 93, 32, 61, 32,110,111,114,109, 97,108,105,122,101, 40, 40,108, 95,118,101, 99,116,111,114, 46,120,121,122, 32, 43, 32,108,100, 46,108, 95,114,105,103,104,116, 32, 42, 32, 32,108,100, 46,108, 95,115,105,122,101,120, 41, 32, 43, 32,108,100, 46,108, 95,117,112, 32, 42, 32, 32,108,100, 46,108, 95,115,105,122,101,121, 41, 59, 13, 10, 13, 10, 9, 9,114,101,116,117,114,110, 32,108,116, 99, 95,101,118, 97,108,117, 97,116,101, 95,113,117, 97,100, 40, 99,111,114,110,101,114,115, 44, 32, 78, 41, 59, 13, 10, 9,125, 13, 10, 9,101,108,115,101, 32,105,102, 32, 40,108,100, 46,108, 95,116,121,112,101, 32, 61, 61, 32, 65, 82, 69, 65, 95, 69, 76, 76, 73, 80, 83, 69, 41, 32,123, 13, 10, 9, 9,118,101, 99, 51, 32,112,111,105,110,116,115, 91, 51, 93, 59, 13, 10, 9, 9,112,111,105,110,116,115, 91, 48, 93, 32, 61, 32, 40,108, 95,118,101, 99,116,111,114, 46,120,121,122, 32, 43, 32,108,100, 46,108, 95,114,105,103,104,116, 32, 42, 32, 45,108,100, 46,108, 95,115,105,122,101,120, 41, 32, 43, 32,108,100, 46,108, 95,117,112, 32, 42, 32, 45,108,100, 46,108, 95,115,105,122,101,121, 59, 13, 10, 9, 9,112,111,105,110,116,115, 91, 49, 93, 32, 61, 32, 40,108, 95,118,101, 99,116,111,114, 46,120,121,122, 32, 43, 32,108,100, 46,108, 95,114,105,103,104,116, 32, 42, 32, 32,108,100, 46,108, 95,115,105,122,101,120, 41, 32, 43, 32,108,100, 46,108, 95,117,112, 32, 42, 32, 45,108,100, 46,108, 95,115,105,122,101,121, 59, 13, 10, 9, 9,112,111,105,110,116,115, 91, 50, 93, 32, 61, 32, 40,108, 95,118,101, 99,116,111,114, 46,120,121,122, 32, 43, 32,108,100, 46,108, 95,114,105,103,104,116, 32, 42, 32, 32,108,100, 46,108, 95,115,105,122,101,120, 41, 32, 43, 32,108,100, 46,108, 95,117,112, 32, 42, 32, 32,108,100, 46,108, 95,115,105,122,101,121, 59, 13, 10, 13, 10, 9, 9,114,101,116,117,114,110, 32,108,116, 99, 95,101,118, 97,108,117, 97,116,101, 95,100,105,115,107, 40, 78, 44, 32, 86, 44, 32,109, 97,116, 51, 40, 49, 46, 48, 41, 44, 32,112,111,105,110,116,115, 41, 59, 13, 10, 9,125, 13, 10, 9,101,108,115,101, 32,123, 13, 10, 9, 9,102,108,111, 97,116, 32,114, 97,100,105,117,115, 32, 61, 32,108,100, 46,108, 95,114, 97,100,105,117,115, 59, 13, 10, 9, 9,114, 97,100,105,117,115, 32, 47, 61, 32, 40,108,100, 46,108, 95,116,121,112,101, 32, 61, 61, 32, 83, 85, 78, 41, 32, 63, 32, 49, 46, 48, 32, 58, 32,108, 95,118,101, 99,116,111,114, 46,119, 59, 13, 10, 9, 9,118,101, 99, 51, 32, 76, 32, 61, 32, 40,108,100, 46,108, 95,116,121,112,101, 32, 61, 61, 32, 83, 85, 78, 41, 32, 63, 32, 45,108,100, 46,108, 95,102,111,114,119, 97,114,100, 32, 58, 32, 40,108, 95,118,101, 99,116,111,114, 46,120,121,122, 32, 47, 32,108, 95,118,101, 99,116,111,114, 46,119, 41, 59, 13, 10, 13, 10, 9, 9,114,101,116,117,114,110, 32,108,116, 99, 95,101,118, 97,108,117, 97,116,101, 95,100,105,115,107, 95,115,105,109,112,108,101, 40,114, 97,100,105,117,115, 44, 32,100,111,116, 40, 78, 44, 32, 76, 41, 41, 59, 13, 10, 9,125, 13, 10,125, 13, 10, 13, 10,102,108,111, 97,116, 32,108,105,103,104,116, 95,115,112,101, 99,117,108, 97,114, 40, 76,105,103,104,116, 68, 97,116, 97, 32,108,100, 44, 32,118,101, 99, 52, 32,108,116, 99, 95,109, 97,116, 44, 32,118,101, 99, 51, 32, 78, 44, 32,118,101, 99, 51, 32, 86, 44, 32,118,101, 99, 52, 32,108, 95,118,101, 99,116,111,114, 41, 13, 10,123, 13, 10, 9,105,102, 32, 40,108,100, 46,108, 95,116,121,112,101, 32, 61, 61, 32, 65, 82, 69, 65, 95, 82, 69, 67, 84, 41, 32,123, 13, 10, 9, 9,118,101, 99, 51, 32, 99,111,114,110,101,114,115, 91, 52, 93, 59, 13, 10, 9, 9, 99,111,114,110,101,114,115, 91, 48, 93, 32, 61, 32, 40,108, 95,118,101, 99,116,111,114, 46,120,121,122, 32, 43, 32,108,100, 46,108, 95,114,105,103,104,116, 32, 42, 32, 45,108,100, 46,108, 95,115,105,122,101,120, 41, 32, 43, 32,108,100, 46,108, 95,117,112, 32, 42, 32, 32,108,100, 46,108, 95,115,105,122,101,121, 59, 13, 10, 9, 9, 99,111,114,110,101,114,115, 91, 49, 93, 32, 61, 32, 40,108, 95,118,101, 99,116,111,114, 46,120,121,122, 32, 43, 32,108,100, 46,108, 95,114,105,103,104,116, 32, 42, 32, 45,108,100, 46,108, 95,115,105,122,101,120, 41, 32, 43, 32,108,100, 46,108, 95,117,112, 32, 42, 32, 45,108,100, 46,108, 95,115,105,122,101,121, 59, 13, 10, 9, 9, 99,111,114,110,101,114,115, 91, 50, 93, 32, 61, 32, 40,108, 95,118,101, 99,116,111,114, 46,120,121,122, 32, 43, 32,108,100, 46,108, 95,114,105,103,104,116, 32, 42, 32, 32,108,100, 46,108, 95,115,105,122,101,120, 41, 32, 43, 32,108,100, 46,108, 95,117,112, 32, 42, 32, 45,108,100, 46,108, 95,115,105,122,101,121, 59, 13, 10, 9, 9, 99,111,114,110,101,114,115, 91, 51, 93, 32, 61, 32, 40,108, 95,118,101, 99,116,111,114, 46,120,121,122, 32, 43, 32,108,100, 46,108, 95,114,105,103,104,116, 32, 42, 32, 32,108,100, 46,108, 95,115,105,122,101,120, 41, 32, 43, 32,108,100, 46,108, 95,117,112, 32, 42, 32, 32,108,100, 46,108, 95,115,105,122,101,121, 59, 13, 10, 13, 10, 9, 9,108,116, 99, 95,116,114, 97,110,115,102,111,114,109, 95,113,117, 97,100, 40, 78, 44, 32, 86, 44, 32,108,116, 99, 95,109, 97,116,114,105,120, 40,108,116, 99, 95,109, 97,116, 41, 44, 32, 99,111,114,110,101,114,115, 41, 59, 13, 10, 13, 10, 9, 9,114,101,116,117,114,110, 32,108,116, 99, 95,101,118, 97,108,117, 97,116,101, 95,113,117, 97,100, 40, 99,111,114,110,101,114,115, 44, 32,118,101, 99, 51, 40, 48, 46, 48, 44, 32, 48, 46, 48, 44, 32, 49, 46, 48, 41, 41, 59, 13, 10, 9,125, 13, 10, 9,101,108,115,101, 32,123, 13, 10, 9, 9, 98,111,111,108, 32,105,115, 95,101,108,108,105,112,115,101, 32, 61, 32, 40,108,100, 46,108, 95,116,121,112,101, 32, 61, 61, 32, 65, 82, 69, 65, 95, 69, 76, 76, 73, 80, 83, 69, 41, 59, 13, 10, 9, 9,102,108,111, 97,116, 32,114, 97,100,105,117,115, 95,120, 32, 61, 32,105,115, 95,101,108,108,105,112,115,101, 32, 63, 32,108,100, 46,108, 95,115,105,122,101,120, 32, 58, 32,108,100, 46,108, 95,114, 97,100,105,117,115, 59, 13, 10, 9, 9,102,108,111, 97,116, 32,114, 97,100,105,117,115, 95,121, 32, 61, 32,105,115, 95,101,108,108,105,112,115,101, 32, 63, 32,108,100, 46,108, 95,115,105,122,101,121, 32, 58, 32,108,100, 46,108, 95,114, 97,100,105,117,115, 59, 13, 10, 13, 10, 9, 9,118,101, 99, 51, 32, 76, 32, 61, 32, 40,108,100, 46,108, 95,116,121,112,101, 32, 61, 61, 32, 83, 85, 78, 41, 32, 63, 32, 45,108,100, 46,108, 95,102,111,114,119, 97,114,100, 32, 58, 32,108, 95,118,101, 99,116,111,114, 46,120,121,122, 59, 13, 10, 9, 9,118,101, 99, 51, 32, 80,120, 32, 61, 32,108,100, 46,108, 95,114,105,103,104,116, 59, 13, 10, 9, 9,118,101, 99, 51, 32, 80,121, 32, 61, 32,108,100, 46,108, 95,117,112, 59, 13, 10, 13, 10, 9, 9,105,102, 32, 40,108,100, 46,108, 95,116,121,112,101, 32, 61, 61, 32, 83, 80, 79, 84, 32,124,124, 32,108,100, 46,108, 95,116,121,112,101, 32, 61, 61, 32, 80, 79, 73, 78, 84, 41, 32,123, 13, 10, 9, 9, 9,109, 97,107,101, 95,111,114,116,104,111,110,111,114,109, 97,108, 95, 98, 97,115,105,115, 40,108, 95,118,101, 99,116,111,114, 46,120,121,122, 32, 47, 32,108, 95,118,101, 99,116,111,114, 46,119, 44, 32, 80,120, 44, 32, 80,121, 41, 59, 13, 10, 9, 9,125, 13, 10, 13, 10, 9, 9,118,101, 99, 51, 32,112,111,105,110,116,115, 91, 51, 93, 59, 13, 10, 9, 9,112,111,105,110,116,115, 91, 48, 93, 32, 61, 32, 40, 76, 32, 43, 32, 80,120, 32, 42, 32, 45,114, 97,100,105,117,115, 95,120, 41, 32, 43, 32, 80,121, 32, 42, 32, 45,114, 97,100,105,117,115, 95,121, 59, 13, 10, 9, 9,112,111,105,110,116,115, 91, 49, 93, 32, 61, 32, 40, 76, 32, 43, 32, 80,120, 32, 42, 32, 32,114, 97,100,105,117,115, 95,120, 41, 32, 43, 32, 80,121, 32, 42, 32, 45,114, 97,100,105,117,115, 95,121, 59, 13, 10, 9, 9,112,111,105,110,116,115, 91, 50, 93, 32, 61, 32, 40, 76, 32, 43, 32, 80,120, 32, 42, 32, 32,114, 97,100,105,117,115, 95,120, 41, 32, 43, 32, 80,121, 32, 42, 32, 32,114, 97,100,105,117,115, 95,121, 59, 13, 10, 13, 10, 9, 9,114,101,116,117,114,110, 32,108,116, 99, 95,101,118, 97,108,117, 97,116,101, 95,100,105,115,107, 40, 78, 44, 32, 86, 44, 32,108,116, 99, 95,109, 97,116,114,105,120, 40,108,116, 99, 95,109, 97,116, 41, 44, 32,112,111,105,110,116,115, 41, 59, 13, 10, 9,125, 13, 10,125, 13, 10, 35,101,110,100,105,102, 13, 10, 13, 10, 35,100,101,102,105,110,101, 32, 77, 65, 88, 95, 83, 83, 83, 95, 83, 65, 77, 80, 76, 69, 83, 32, 54, 53, 13, 10, 35,100,101,102,105,110,101, 32, 83, 83, 83, 95, 76, 85, 84, 95, 83, 73, 90, 69, 32, 54, 52, 46, 48, 13, 10, 35,100,101,102,105,110,101, 32, 83, 83, 83, 95, 76, 85, 84, 95, 83, 67, 65, 76, 69, 32, 40, 40, 83, 83, 83, 95, 76, 85, 84, 95, 83, 73, 90, 69, 32, 45, 32, 49, 46, 48, 41, 32, 47, 32,102,108,111, 97,116, 40, 83, 83, 83, 95, 76, 85, 84, 95, 83, 73, 90, 69, 41, 41, 13, 10, 35,100,101,102,105,110,101, 32, 83, 83, 83, 95, 76, 85, 84, 95, 66, 73, 65, 83, 32, 40, 48, 46, 53, 32, 47, 32,102,108,111, 97,116, 40, 83, 83, 83, 95, 76, 85, 84, 95, 83, 73, 90, 69, 41, 41, 13, 10, 13, 10, 35,105,102,100,101,102, 32, 85, 83, 69, 95, 84, 82, 65, 78, 83, 76, 85, 67, 69, 78, 67, 89, 13, 10,108, 97,121,111,117,116, 40,115,116,100, 49, 52, 48, 41, 32,117,110,105,102,111,114,109, 32,115,115,115, 80,114,111,102,105,108,101, 32,123, 13, 10, 9,118,101, 99, 52, 32,107,101,114,110,101,108, 91, 77, 65, 88, 95, 83, 83, 83, 95, 83, 65, 77, 80, 76, 69, 83, 93, 59, 13, 10, 9,118,101, 99, 52, 32,114, 97,100,105,105, 95,109, 97,120, 95,114, 97,100,105,117,115, 59, 13, 10, 9,105,110,116, 32,115,115,115, 95,115, 97,109,112,108,101,115, 59, 13, 10,125, 59, 13, 10, 13, 10,117,110,105,102,111,114,109, 32,115, 97,109,112,108,101,114, 49, 68, 32,115,115,115, 84,101,120, 80,114,111,102,105,108,101, 59, 13, 10, 13, 10,118,101, 99, 51, 32,115,115,115, 95,112,114,111,102,105,108,101, 40,102,108,111, 97,116, 32,115, 41, 32,123, 13, 10, 9,115, 32, 47, 61, 32,114, 97,100,105,105, 95,109, 97,120, 95,114, 97,100,105,117,115, 46,119, 59, 13, 10, 9,114,101,116,117,114,110, 32,116,101,120,116,117,114,101, 40,115,115,115, 84,101,120, 80,114,111,102,105,108,101, 44, 32,115, 97,116,117,114, 97,116,101, 40,115, 41, 32, 42, 32, 83, 83, 83, 95, 76, 85, 84, 95, 83, 67, 65, 76, 69, 32, 43, 32, 83, 83, 83, 95, 76, 85, 84, 95, 66, 73, 65, 83, 41, 46,114,103, 98, 59, 13, 10,125, 13, 10, 35,101,110,100,105,102, 13, 10, 13, 10,118,101, 99, 51, 32,108,105,103,104,116, 95,116,114, 97,110,115,108,117, 99,101,110,116, 40, 76,105,103,104,116, 68, 97,116, 97, 32,108,100, 44, 32,118,101, 99, 51, 32, 87, 44, 32,118,101, 99, 51, 32, 78, 44, 32,118,101, 99, 52, 32,108, 95,118,101, 99,116,111,114, 44, 32,102,108,111, 97,116, 32,115, 99, 97,108,101, 41, 13, 10,123, 13, 10, 35,105,102, 32, 33,100,101,102,105,110,101,100, 40, 85, 83, 69, 95, 84, 82, 65, 78, 83, 76, 85, 67, 69, 78, 67, 89, 41, 32,124,124, 32,100,101,102,105,110,101,100, 40, 86, 79, 76, 85, 77, 69, 84, 82, 73, 67, 83, 41, 13, 10, 9,114,101,116,117,114,110, 32,118,101, 99, 51, 40, 48, 46, 48, 41, 59, 13, 10, 35,101,108,115,101, 13, 10, 9,118,101, 99, 51, 32,118,105,115, 32, 61, 32,118,101, 99, 51, 40, 49, 46, 48, 41, 59, 13, 10, 13, 10, 9,105,102, 32, 40,108,100, 46,108, 95,116,121,112,101, 32, 61, 61, 32, 83, 80, 79, 84, 41, 32,123, 13, 10, 9, 9,118,105,115, 32, 42, 61, 32,115,112,111,116, 95, 97,116,116,101,110,117, 97,116,105,111,110, 40,108,100, 44, 32,108, 95,118,101, 99,116,111,114, 46,120,121,122, 41, 59, 13, 10, 9,125, 13, 10, 9,105,102, 32, 40,108,100, 46,108, 95,116,121,112,101, 32, 62, 61, 32, 83, 80, 79, 84, 41, 32,123, 13, 10, 9, 9,118,105,115, 32, 42, 61, 32,115,116,101,112, 40, 48, 46, 48, 44, 32, 45,100,111,116, 40,108, 95,118,101, 99,116,111,114, 46,120,121,122, 44, 32,108,100, 46,108, 95,102,111,114,119, 97,114,100, 41, 41, 59, 13, 10, 9,125, 13, 10, 9,105,102, 32, 40,108,100, 46,108, 95,116,121,112,101, 32, 33, 61, 32, 83, 85, 78, 41, 32,123, 13, 10, 9, 9,118,105,115, 32, 42, 61, 32,100,105,115,116, 97,110, 99,101, 95, 97,116,116,101,110,117, 97,116,105,111,110, 40,108, 95,118,101, 99,116,111,114, 46,119, 32, 42, 32,108, 95,118,101, 99,116,111,114, 46,119, 44, 32,108,100, 46,108, 95,105,110,102,108,117,101,110, 99,101, 41, 59, 13, 10, 9,125, 13, 10, 13, 10, 9, 47, 42, 32, 79,110,108,121, 32,115,104, 97,100,111,119,101,100, 32,108,105,103,104,116, 32, 99, 97,110, 32,112,114,111,100,117, 99,101, 32,116,114, 97,110,115,108,117, 99,101,110, 99,121, 32, 42, 47, 13, 10, 9,105,102, 32, 40,108,100, 46,108, 95,115,104, 97,100,111,119,105,100, 32, 62, 61, 32, 48, 46, 48, 32, 38, 38, 32,118,105,115, 46,120, 32, 62, 32, 48, 46, 48, 48, 49, 41, 32,123, 13, 10, 9, 9, 83,104, 97,100,111,119, 68, 97,116, 97, 32,100, 97,116, 97, 32, 61, 32,115,104, 97,100,111,119,115, 95,100, 97,116, 97, 91,105,110,116, 40,108,100, 46,108, 95,115,104, 97,100,111,119,105,100, 41, 93, 59, 13, 10, 9, 9,102,108,111, 97,116, 32,100,101,108,116, 97, 59, 13, 10, 13, 10, 9, 9,118,101, 99, 52, 32, 76, 32, 61, 32, 40,108,100, 46,108, 95,116,121,112,101, 32, 33, 61, 32, 83, 85, 78, 41, 32, 63, 32,108, 95,118,101, 99,116,111,114, 32, 58, 32,118,101, 99, 52, 40, 45,108,100, 46,108, 95,102,111,114,119, 97,114,100, 44, 32, 49, 46, 48, 41, 59, 13, 10, 13, 10, 9, 9,118,101, 99, 51, 32, 84, 44, 32, 66, 59, 13, 10, 9, 9,109, 97,107,101, 95,111,114,116,104,111,110,111,114,109, 97,108, 95, 98, 97,115,105,115, 40, 76, 46,120,121,122, 32, 47, 32, 76, 46,119, 44, 32, 84, 44, 32, 66, 41, 59, 13, 10, 13, 10, 9, 9,118,101, 99, 52, 32,114, 97,110,100, 32, 61, 32,116,101,120,101,108,102,101,116, 99,104, 95,110,111,105,115,101, 95,116,101,120, 40,103,108, 95, 70,114, 97,103, 67,111,111,114,100, 46,120,121, 41, 59, 13, 10, 9, 9,114, 97,110,100, 46,122,119, 32, 42, 61, 32,102, 97,115,116, 95,115,113,114,116, 40,114, 97,110,100, 46,121, 41, 32, 42, 32,100, 97,116, 97, 46,115,104, 95, 98,108,117,114, 59, 13, 10, 13, 10, 9, 9, 47, 42, 32, 87,101, 32,117,115,101, 32,116,104,101, 32,102,117,108,108, 32,108, 95,118,101, 99,116,111,114, 46,120,121,122, 32,115,111, 32,116,104, 97,116, 32,116,104,101, 32,115,112,114,101, 97,100, 32,105,115, 32,109,105,110,105,109,105,122,101, 13, 10, 9, 9, 32, 42, 32,105,102, 32,116,104,101, 32,115,104, 97,100,105,110,103, 32,112,111,105,110,116, 32,105,115, 32,102,117,114,116,104,101,114, 32, 97,119, 97,121, 32,102,114,111,109, 32,116,104,101, 32,108,105,103,104,116, 32,115,111,117,114, 99,101, 32, 42, 47, 13, 10, 9, 9, 87, 32, 61, 32, 87, 32, 43, 32, 84, 32, 42, 32,114, 97,110,100, 46,122, 32, 43, 32, 66, 32, 42, 32,114, 97,110,100, 46,119, 59, 13, 10, 13, 10, 9, 9,105,102, 32, 40,108,100, 46,108, 95,116,121,112,101, 32, 61, 61, 32, 83, 85, 78, 41, 32,123, 13, 10, 9, 9, 9,105,110,116, 32,115, 99,100, 95,105,100, 32, 61, 32,105,110,116, 40,100, 97,116, 97, 46,115,104, 95,100, 97,116, 97, 95,115,116, 97,114,116, 41, 59, 13, 10, 9, 9, 9,118,101, 99, 52, 32,118,105,101,119, 95,122, 32, 61, 32,118,101, 99, 52, 40,100,111,116, 40, 87, 32, 45, 32, 99, 97,109,101,114, 97, 80,111,115, 44, 32, 99, 97,109,101,114, 97, 70,111,114,119, 97,114,100, 41, 41, 59, 13, 10, 13, 10, 9, 9, 9,118,101, 99, 52, 32,119,101,105,103,104,116,115, 32, 61, 32,115,116,101,112, 40,115,104, 97,100,111,119,115, 95, 99, 97,115, 99, 97,100,101, 95,100, 97,116, 97, 91,115, 99,100, 95,105,100, 93, 46,115,112,108,105,116, 95,101,110,100, 95,100,105,115,116, 97,110, 99,101,115, 44, 32,118,105,101,119, 95,122, 41, 59, 13, 10, 9, 9, 9,102,108,111, 97,116, 32,105,100, 32, 61, 32, 97, 98,115, 40, 52, 46, 48, 32, 45, 32,100,111,116, 40,119,101,105,103,104,116,115, 44, 32,119,101,105,103,104,116,115, 41, 41, 59, 13, 10, 13, 10, 9, 9, 9,105,102, 32, 40,105,100, 32, 62, 32, 51, 46, 48, 41, 32,123, 13, 10, 9, 9, 9, 9,114,101,116,117,114,110, 32,118,101, 99, 51, 40, 48, 46, 48, 41, 59, 13, 10, 9, 9, 9,125, 13, 10, 13, 10, 9, 9, 9,102,108,111, 97,116, 32,114, 97,110,103,101, 32, 61, 32, 97, 98,115, 40,100, 97,116, 97, 46,115,104, 95,102, 97,114, 32, 45, 32,100, 97,116, 97, 46,115,104, 95,110,101, 97,114, 41, 59, 32, 47, 42, 32, 83, 97,109,101, 32,102, 97, 99,116,111,114, 32, 97,115, 32,105,110, 32,103,101,116, 95, 99, 97,115, 99, 97,100,101, 95,119,111,114,108,100, 95,100,105,115,116, 97,110, 99,101, 40, 41, 46, 32, 42, 47, 13, 10, 13, 10, 9, 9, 9,118,101, 99, 52, 32,115,104,112,111,115, 32, 61, 32,115,104, 97,100,111,119,115, 95, 99, 97,115, 99, 97,100,101, 95,100, 97,116, 97, 91,115, 99,100, 95,105,100, 93, 46,115,104, 97,100,111,119,109, 97,116, 91,105,110,116, 40,105,100, 41, 93, 32, 42, 32,118,101, 99, 52, 40, 87, 44, 32, 49, 46, 48, 41, 59, 13, 10, 9, 9, 9,102,108,111, 97,116, 32,100,105,115,116, 32, 61, 32,115,104,112,111,115, 46,122, 32, 42, 32,114, 97,110,103,101, 59, 13, 10, 13, 10, 9, 9, 9,105,102, 32, 40,115,104,112,111,115, 46,122, 32, 62, 32, 49, 46, 48, 32,124,124, 32,115,104,112,111,115, 46,122, 32, 60, 32, 48, 46, 48, 41, 32,123, 13, 10, 9, 9, 9, 9,114,101,116,117,114,110, 32,118,101, 99, 51, 40, 48, 46, 48, 41, 59, 13, 10, 9, 9, 9,125, 13, 10, 13, 10, 9, 9, 9, 83,104, 97,100,111,119, 83, 97,109,112,108,101, 32,115, 32, 61, 32,115, 97,109,112,108,101, 95, 99, 97,115, 99, 97,100,101, 40,115,104,112,111,115, 46,120,121, 44, 32,100, 97,116, 97, 46,115,104, 95,116,101,120, 95,115,116, 97,114,116, 32, 43, 32,105,100, 41, 59, 13, 10, 9, 9, 9,100,101,108,116, 97, 32, 61, 32,103,101,116, 95,100,101,112,116,104, 95,100,101,108,116, 97, 40,100,105,115,116, 44, 32,115, 41, 59, 13, 10, 9, 9,125, 13, 10, 9, 9,101,108,115,101, 32,123, 13, 10, 9, 9, 9,118,101, 99, 51, 32, 99,117, 98,101,118,101, 99, 32, 61, 32, 87, 32, 45, 32,115,104, 97,100,111,119,115, 95, 99,117, 98,101, 95,100, 97,116, 97, 91,105,110,116, 40,100, 97,116, 97, 46,115,104, 95,100, 97,116, 97, 95,115,116, 97,114,116, 41, 93, 46,112,111,115,105,116,105,111,110, 46,120,121,122, 59, 13, 10, 9, 9, 9,102,108,111, 97,116, 32,100,105,115,116, 32, 61, 32,108,101,110,103,116,104, 40, 99,117, 98,101,118,101, 99, 41, 59, 13, 10, 9, 9, 9, 99,117, 98,101,118,101, 99, 32, 47, 61, 32,100,105,115,116, 59, 13, 10, 13, 10, 9, 9, 9, 83,104, 97,100,111,119, 83, 97,109,112,108,101, 32,115, 32, 61, 32,115, 97,109,112,108,101, 95, 99,117, 98,101, 40, 99,117, 98,101,118,101, 99, 44, 32,100, 97,116, 97, 46,115,104, 95,116,101,120, 95,115,116, 97,114,116, 41, 59, 13, 10, 9, 9, 9,100,101,108,116, 97, 32, 61, 32,103,101,116, 95,100,101,112,116,104, 95,100,101,108,116, 97, 40,100,105,115,116, 44, 32,115, 41, 59, 13, 10, 9, 9,125, 13, 10, 13, 10, 9, 9, 47, 42, 32, 88, 88, 88, 32, 58, 32, 82,101,109,111,118,105,110,103, 32, 65,114,101, 97, 32, 80,111,119,101,114, 46, 32, 42, 47, 13, 10, 9, 9, 47, 42, 32, 84, 79, 68, 79, 32, 58, 32,112,117,116, 32,116,104,105,115, 32,111,117,116, 32,111,102, 32,116,104,101, 32,115,104, 97,100,101,114, 46, 32, 42, 47, 13, 10, 9, 9,102,108,111, 97,116, 32,102, 97,108,108,111,102,102, 59, 13, 10, 9, 9,105,102, 32, 40,108,100, 46,108, 95,116,121,112,101, 32, 61, 61, 32, 65, 82, 69, 65, 95, 82, 69, 67, 84, 32,124,124, 32,108,100, 46,108, 95,116,121,112,101, 32, 61, 61, 32, 65, 82, 69, 65, 95, 69, 76, 76, 73, 80, 83, 69, 41, 32,123, 13, 10, 9, 9, 9,118,105,115, 32, 42, 61, 32, 40,108,100, 46,108, 95,115,105,122,101,120, 32, 42, 32,108,100, 46,108, 95,115,105,122,101,121, 32, 42, 32, 52, 46, 48, 32, 42, 32, 77, 95, 80, 73, 41, 32, 42, 32, 40, 49, 46, 48, 32, 47, 32, 56, 48, 46, 48, 41, 59, 13, 10, 9, 9, 9,105,102, 32, 40,108,100, 46,108, 95,116,121,112,101, 32, 61, 61, 32, 65, 82, 69, 65, 95, 69, 76, 76, 73, 80, 83, 69, 41, 32,123, 13, 10, 9, 9, 9, 9,118,105,115, 32, 42, 61, 32, 77, 95, 80, 73, 32, 42, 32, 48, 46, 50, 53, 59, 13, 10, 9, 9, 9,125, 13, 10, 9, 9, 9,118,105,115, 32, 42, 61, 32, 48, 46, 51, 32, 42, 32, 50, 48, 46, 48, 32, 42, 32,109, 97,120, 40, 48, 46, 48, 44, 32,100,111,116, 40, 45,108,100, 46,108, 95,102,111,114,119, 97,114,100, 44, 32,108, 95,118,101, 99,116,111,114, 46,120,121,122, 32, 47, 32,108, 95,118,101, 99,116,111,114, 46,119, 41, 41, 59, 32, 47, 42, 32, 88, 88, 88, 32, 97,100, 32,104,111, 99, 44, 32,101,109,112,105,114,105, 99, 97,108, 32, 42, 47, 13, 10, 9, 9, 9,118,105,115, 32, 47, 61, 32, 40,108, 95,118,101, 99,116,111,114, 46,119, 32, 42, 32,108, 95,118,101, 99,116,111,114, 46,119, 41, 59, 13, 10, 9, 9, 9,102, 97,108,108,111,102,102, 32, 61, 32,100,111,116, 40, 78, 44, 32,108, 95,118,101, 99,116,111,114, 46,120,121,122, 32, 47, 32,108, 95,118,101, 99,116,111,114, 46,119, 41, 59, 13, 10, 9, 9,125, 13, 10, 9, 9,101,108,115,101, 32,105,102, 32, 40,108,100, 46,108, 95,116,121,112,101, 32, 61, 61, 32, 83, 85, 78, 41, 32,123, 13, 10, 9, 9, 9,118,105,115, 32, 47, 61, 32, 49, 46, 48,102, 32, 43, 32, 40,108,100, 46,108, 95,114, 97,100,105,117,115, 32, 42, 32,108,100, 46,108, 95,114, 97,100,105,117,115, 32, 42, 32, 48, 46, 53,102, 41, 59, 13, 10, 9, 9, 9,118,105,115, 32, 42, 61, 32,108,100, 46,108, 95,114, 97,100,105,117,115, 32, 42, 32,108,100, 46,108, 95,114, 97,100,105,117,115, 32, 42, 32, 77, 95, 80, 73, 59, 32, 47, 42, 32, 82,101,109,111,118,105,110,103, 32, 97,114,101, 97, 32,108,105,103,104,116, 32,112,111,119,101,114, 42, 47, 13, 10, 9, 9, 9,118,105,115, 32, 42, 61, 32, 77, 95, 50, 80, 73, 32, 42, 32, 48, 46, 55, 56, 59, 32, 47, 42, 32, 77, 97,116, 99,104,105,110,103, 32, 99,121, 99,108,101,115, 32,119,105,116,104, 32,112,111,105,110,116, 32,108,105,103,104,116, 46, 32, 42, 47, 13, 10, 9, 9, 9,118,105,115, 32, 42, 61, 32, 48, 46, 48, 56, 50, 59, 32, 47, 42, 32, 88, 88, 88, 32, 97,100, 32,104,111, 99, 44, 32,101,109,112,105,114,105, 99, 97,108, 32, 42, 47, 13, 10, 9, 9, 9,102, 97,108,108,111,102,102, 32, 61, 32,100,111,116, 40, 78, 44, 32, 45,108,100, 46,108, 95,102,111,114,119, 97,114,100, 41, 59, 13, 10, 9, 9,125, 13, 10, 9, 9,101,108,115,101, 32,123, 13, 10, 9, 9, 9,118,105,115, 32, 42, 61, 32, 40, 52, 46, 48, 32, 42, 32,108,100, 46,108, 95,114, 97,100,105,117,115, 32, 42, 32,108,100, 46,108, 95,114, 97,100,105,117,115, 41, 32, 42, 32, 40, 49, 46, 48, 32, 47, 49, 48, 46, 48, 41, 59, 13, 10, 9, 9, 9,118,105,115, 32, 42, 61, 32, 49, 46, 53, 59, 32, 47, 42, 32, 88, 88, 88, 32, 97,100, 32,104,111, 99, 44, 32,101,109,112,105,114,105, 99, 97,108, 32, 42, 47, 13, 10, 9, 9, 9,118,105,115, 32, 47, 61, 32, 40,108, 95,118,101, 99,116,111,114, 46,119, 32, 42, 32,108, 95,118,101, 99,116,111,114, 46,119, 41, 59, 13, 10, 9, 9, 9,102, 97,108,108,111,102,102, 32, 61, 32,100,111,116, 40, 78, 44, 32,108, 95,118,101, 99,116,111,114, 46,120,121,122, 32, 47, 32,108, 95,118,101, 99,116,111,114, 46,119, 41, 59, 13, 10, 9, 9,125, 13, 10, 9, 9, 47, 47, 32,118,105,115, 32, 42, 61, 32, 77, 95, 49, 95, 80, 73, 59, 32, 47, 42, 32, 78,111,114,109, 97,108,105,122,101, 32, 42, 47, 13, 10, 13, 10, 9, 9, 47, 42, 32, 65,112,112,108,121,105,110,103, 32,112,114,111,102,105,108,101, 32, 42, 47, 13, 10, 9, 9,118,105,115, 32, 42, 61, 32,115,115,115, 95,112,114,111,102,105,108,101, 40, 97, 98,115, 40,100,101,108,116, 97, 41, 32, 47, 32,115, 99, 97,108,101, 41, 59, 13, 10, 13, 10, 9, 9, 47, 42, 32, 78,111, 32,116,114, 97,110,115,109,105,116,116, 97,110, 99,101, 32, 97,116, 32,103,114, 97,122,105,110,103, 32, 97,110,103,108,101, 32, 40,104,105,100,101, 32, 97,114,116,105,102, 97, 99,116,115, 41, 32, 42, 47, 13, 10, 9, 9,118,105,115, 32, 42, 61, 32,115, 97,116,117,114, 97,116,101, 40,102, 97,108,108,111,102,102, 32, 42, 32, 50, 46, 48, 41, 59, 13, 10, 9,125, 13, 10, 9,101,108,115,101, 32,123, 13, 10, 9, 9,118,105,115, 32, 61, 32,118,101, 99, 51, 40, 48, 46, 48, 41, 59, 13, 10, 9,125, 13, 10, 13, 10, 9,114,101,116,117,114,110, 32,118,105,115, 59, 13, 10, 35,101,110,100,105,102, 13, 10,125, 13, 10,0
};
|
the_stack_data/48776.c | /* Verify that unwinding can find SPE registers in signal frames. */
/* Origin: Joseph Myers <[email protected]> */
/* { dg-do run { target { powerpc*-*-linux* && powerpc_spe } } } */
/* { dg-options "-fexceptions -fnon-call-exceptions -O2" } */
#include <unwind.h>
#include <stdlib.h>
#include <signal.h>
#include <string.h>
int count;
char *null;
int found_reg;
typedef int v2si __attribute__((__vector_size__(8)));
v2si v1 = { 123, 234 };
v2si v2 = { 345, 456 };
static _Unwind_Reason_Code
force_unwind_stop (int version, _Unwind_Action actions,
_Unwind_Exception_Class exc_class,
struct _Unwind_Exception *exc_obj,
struct _Unwind_Context *context,
void *stop_parameter)
{
unsigned int reg;
if (actions & _UA_END_OF_STACK)
abort ();
if (_Unwind_GetGR (context, 1215) == 123)
found_reg = 1;
return _URC_NO_REASON;
}
static void force_unwind ()
{
struct _Unwind_Exception *exc = malloc (sizeof (*exc));
memset (&exc->exception_class, 0, sizeof (exc->exception_class));
exc->exception_cleanup = 0;
#ifndef __USING_SJLJ_EXCEPTIONS__
_Unwind_ForcedUnwind (exc, force_unwind_stop, 0);
#else
_Unwind_SjLj_ForcedUnwind (exc, force_unwind_stop, 0);
#endif
abort ();
}
static void counter (void *p __attribute__((unused)))
{
++count;
}
static void handler (void *p __attribute__((unused)))
{
if (count != 2)
abort ();
if (!found_reg)
abort ();
exit (0);
}
static int __attribute__((noinline)) fn5 ()
{
char dummy __attribute__((cleanup (counter)));
force_unwind ();
return 0;
}
static void fn4 (int sig)
{
char dummy __attribute__((cleanup (counter)));
/* Clobber high part without compiler's knowledge so the only saved
copy is from the signal frame. */
asm volatile ("evmergelo 15,15,15");
fn5 ();
null = NULL;
}
static void fn3 ()
{
abort ();
}
static int __attribute__((noinline)) fn2 ()
{
register v2si r15 asm("r15");
r15 = v1;
asm volatile ("" : "+r" (r15));
*null = 0;
fn3 ();
return 0;
}
static int __attribute__((noinline)) fn1 ()
{
signal (SIGSEGV, fn4);
signal (SIGBUS, fn4);
fn2 ();
return 0;
}
static int __attribute__((noinline)) fn0 ()
{
char dummy __attribute__((cleanup (handler)));
fn1 ();
null = 0;
return 0;
}
int main()
{
fn0 ();
abort ();
}
|
the_stack_data/182951880.c | #include <stdio.h>
int main()
{
char matrix[3][4] = {
{'A', 'B', 'C', 'D'},
{'A', 'B', 'C', 'D'},
{'A', 'B', 'C', 'D'},
};
int total = sizeof(matrix);
int columns = sizeof(matrix[0]);
int rows = total / columns;
printf("Total : %d\n", total);
printf("Rows: %d\n", rows);
printf("Columns: %d\n", columns);
} |
the_stack_data/760177.c | #include <unistd.h>
int mx_strlen(const char *s);
void mx_printstr(const char *str);
void mx_printstr(const char *str) {
write(1, str, mx_strlen(str));
}
|
the_stack_data/128885.c | /*-----------------------------------------------------------------------*/
/* Program: STREAM */
/* Revision: $Id: stream.c,v 5.10 2013/01/17 16:01:06 mccalpin Exp mccalpin $ */
/* Original code developed by John D. McCalpin */
/* Programmers: John D. McCalpin */
/* Joe R. Zagar */
/* */
/* This program measures memory transfer rates in MB/s for simple */
/* computational kernels coded in C. */
/*-----------------------------------------------------------------------*/
/* Copyright 1991-2013: John D. McCalpin */
/*-----------------------------------------------------------------------*/
/* License: */
/* 1. You are free to use this program and/or to redistribute */
/* this program. */
/* 2. You are free to modify this program for your own use, */
/* including commercial use, subject to the publication */
/* restrictions in item 3. */
/* 3. You are free to publish results obtained from running this */
/* program, or from works that you derive from this program, */
/* with the following limitations: */
/* 3a. In order to be referred to as "STREAM benchmark results", */
/* published results must be in conformance to the STREAM */
/* Run Rules, (briefly reviewed below) published at */
/* http://www.cs.virginia.edu/stream/ref.html */
/* and incorporated herein by reference. */
/* As the copyright holder, John McCalpin retains the */
/* right to determine conformity with the Run Rules. */
/* 3b. Results based on modified source code or on runs not in */
/* accordance with the STREAM Run Rules must be clearly */
/* labelled whenever they are published. Examples of */
/* proper labelling include: */
/* "tuned STREAM benchmark results" */
/* "based on a variant of the STREAM benchmark code" */
/* Other comparable, clear, and reasonable labelling is */
/* acceptable. */
/* 3c. Submission of results to the STREAM benchmark web site */
/* is encouraged, but not required. */
/* 4. Use of this program or creation of derived works based on this */
/* program constitutes acceptance of these licensing restrictions. */
/* 5. Absolutely no warranty is expressed or implied. */
/*-----------------------------------------------------------------------*/
# include <stdio.h>
# include <unistd.h>
# include <math.h>
# include <float.h>
# include <limits.h>
# include <sys/time.h>
/*-----------------------------------------------------------------------
* INSTRUCTIONS:
*
* 1) STREAM requires different amounts of memory to run on different
* systems, depending on both the system cache size(s) and the
* granularity of the system timer.
* You should adjust the value of 'STREAM_ARRAY_SIZE' (below)
* to meet *both* of the following criteria:
* (a) Each array must be at least 4 times the size of the
* available cache memory. I don't worry about the difference
* between 10^6 and 2^20, so in practice the minimum array size
* is about 3.8 times the cache size.
* Example 1: One Xeon E3 with 8 MB L3 cache
* STREAM_ARRAY_SIZE should be >= 4 million, giving
* an array size of 30.5 MB and a total memory requirement
* of 91.5 MB.
* Example 2: Two Xeon E5's with 20 MB L3 cache each (using OpenMP)
* STREAM_ARRAY_SIZE should be >= 20 million, giving
* an array size of 153 MB and a total memory requirement
* of 458 MB.
* (b) The size should be large enough so that the 'timing calibration'
* output by the program is at least 20 clock-ticks.
* Example: most versions of Windows have a 10 millisecond timer
* granularity. 20 "ticks" at 10 ms/tic is 200 milliseconds.
* If the chip is capable of 10 GB/s, it moves 2 GB in 200 msec.
* This means the each array must be at least 1 GB, or 128M elements.
*
* Version 5.10 increases the default array size from 2 million
* elements to 10 million elements in response to the increasing
* size of L3 caches. The new default size is large enough for caches
* up to 20 MB.
* Version 5.10 changes the loop index variables from "register int"
* to "ssize_t", which allows array indices >2^32 (4 billion)
* on properly configured 64-bit systems. Additional compiler options
* (such as "-mcmodel=medium") may be required for large memory runs.
*
* Array size can be set at compile time without modifying the source
* code for the (many) compilers that support preprocessor definitions
* on the compile line. E.g.,
* gcc -O -DSTREAM_ARRAY_SIZE=100000000 stream.c -o stream.100M
* will override the default size of 10M with a new size of 100M elements
* per array.
*/
#ifndef STREAM_ARRAY_SIZE
# define STREAM_ARRAY_SIZE 10000000
#endif
/* 2) STREAM runs each kernel "NTIMES" times and reports the *best* result
* for any iteration after the first, therefore the minimum value
* for NTIMES is 2.
* There are no rules on maximum allowable values for NTIMES, but
* values larger than the default are unlikely to noticeably
* increase the reported performance.
* NTIMES can also be set on the compile line without changing the source
* code using, for example, "-DNTIMES=7".
*/
#ifdef NTIMES
#if NTIMES<=1
# define NTIMES 10
#endif
#endif
#ifndef NTIMES
# define NTIMES 10
#endif
/* Users are allowed to modify the "OFFSET" variable, which *may* change the
* relative alignment of the arrays (though compilers may change the
* effective offset by making the arrays non-contiguous on some systems).
* Use of non-zero values for OFFSET can be especially helpful if the
* STREAM_ARRAY_SIZE is set to a value close to a large power of 2.
* OFFSET can also be set on the compile line without changing the source
* code using, for example, "-DOFFSET=56".
*/
#ifndef OFFSET
# define OFFSET 0
#endif
/*
* 3) Compile the code with optimization. Many compilers generate
* unreasonably bad code before the optimizer tightens things up.
* If the results are unreasonably good, on the other hand, the
* optimizer might be too smart for me!
*
* For a simple single-core version, try compiling with:
* cc -O stream.c -o stream
* This is known to work on many, many systems....
*
* To use multiple cores, you need to tell the compiler to obey the OpenMP
* directives in the code. This varies by compiler, but a common example is
* gcc -O -fopenmp stream.c -o stream_omp
* The environment variable OMP_NUM_THREADS allows runtime control of the
* number of threads/cores used when the resulting "stream_omp" program
* is executed.
*
* To run with single-precision variables and arithmetic, simply add
* -DSTREAM_TYPE=float
* to the compile line.
* Note that this changes the minimum array sizes required --- see (1) above.
*
* The preprocessor directive "TUNED" does not do much -- it simply causes the
* code to call separate functions to execute each kernel. Trivial versions
* of these functions are provided, but they are *not* tuned -- they just
* provide predefined interfaces to be replaced with tuned code.
*
*
* 4) Optional: Mail the results to [email protected]
* Be sure to include info that will help me understand:
* a) the computer hardware configuration (e.g., processor model, memory type)
* b) the compiler name/version and compilation flags
* c) any run-time information (such as OMP_NUM_THREADS)
* d) all of the output from the test case.
*
* Thanks!
*
* Note: Helen He commented out the first touch in the original stream.c source code for this exercise.
*
*-----------------------------------------------------------------------*/
# define HLINE "-------------------------------------------------------------\n"
# ifndef MIN
# define MIN(x,y) ((x)<(y)?(x):(y))
# endif
# ifndef MAX
# define MAX(x,y) ((x)>(y)?(x):(y))
# endif
#ifndef STREAM_TYPE
#define STREAM_TYPE double
#endif
static STREAM_TYPE a[STREAM_ARRAY_SIZE+OFFSET],
b[STREAM_ARRAY_SIZE+OFFSET],
c[STREAM_ARRAY_SIZE+OFFSET];
static double avgtime[4] = {0}, maxtime[4] = {0},
mintime[4] = {FLT_MAX,FLT_MAX,FLT_MAX,FLT_MAX};
static char *label[4] = {"Copy: ", "Scale: ",
"Add: ", "Triad: "};
static double bytes[4] = {
2 * sizeof(STREAM_TYPE) * STREAM_ARRAY_SIZE,
2 * sizeof(STREAM_TYPE) * STREAM_ARRAY_SIZE,
3 * sizeof(STREAM_TYPE) * STREAM_ARRAY_SIZE,
3 * sizeof(STREAM_TYPE) * STREAM_ARRAY_SIZE
};
extern double mysecond();
extern void checkSTREAMresults();
#ifdef TUNED
extern void tuned_STREAM_Copy();
extern void tuned_STREAM_Scale(STREAM_TYPE scalar);
extern void tuned_STREAM_Add();
extern void tuned_STREAM_Triad(STREAM_TYPE scalar);
#endif
#ifdef _OPENMP
extern int omp_get_num_threads();
#endif
int
main()
{
int quantum, checktick();
int BytesPerWord;
int k;
ssize_t j;
STREAM_TYPE scalar;
double t, times[4][NTIMES];
/* --- SETUP --- determine precision and check timing --- */
printf(HLINE);
printf("STREAM version $Revision: 5.10 $\n");
printf(HLINE);
BytesPerWord = sizeof(STREAM_TYPE);
printf("This system uses %d bytes per array element.\n",
BytesPerWord);
printf(HLINE);
#ifdef N
printf("***** WARNING: ******\n");
printf(" It appears that you set the preprocessor variable N when compiling this code.\n");
printf(" This version of the code uses the preprocesor variable STREAM_ARRAY_SIZE to control the array size\n");
printf(" Reverting to default value of STREAM_ARRAY_SIZE=%llu\n",(unsigned long long) STREAM_ARRAY_SIZE);
printf("***** WARNING: ******\n");
#endif
printf("Array size = %llu (elements), Offset = %d (elements)\n" , (unsigned long long) STREAM_ARRAY_SIZE, OFFSET);
printf("Memory per array = %.1f MiB (= %.1f GiB).\n",
BytesPerWord * ( (double) STREAM_ARRAY_SIZE / 1024.0/1024.0),
BytesPerWord * ( (double) STREAM_ARRAY_SIZE / 1024.0/1024.0/1024.0));
printf("Total memory required = %.1f MiB (= %.1f GiB).\n",
(3.0 * BytesPerWord) * ( (double) STREAM_ARRAY_SIZE / 1024.0/1024.),
(3.0 * BytesPerWord) * ( (double) STREAM_ARRAY_SIZE / 1024.0/1024./1024.));
printf("Each kernel will be executed %d times.\n", NTIMES);
printf(" The *best* time for each kernel (excluding the first iteration)\n");
printf(" will be used to compute the reported bandwidth.\n");
#ifdef _OPENMP
printf(HLINE);
#pragma omp parallel
{
#pragma omp master
{
k = omp_get_num_threads();
printf ("Number of Threads requested = %i\n",k);
}
}
#endif
#ifdef _OPENMP
k = 0;
#pragma omp parallel
#pragma omp atomic
k++;
printf ("Number of Threads counted = %i\n",k);
#endif
/* Get initial value for system clock. */
/*#pragma omp parallel for */
for (j=0; j<STREAM_ARRAY_SIZE; j++) {
a[j] = 1.0;
b[j] = 2.0;
c[j] = 0.0;
}
printf(HLINE);
if ( (quantum = checktick()) >= 1)
printf("Your clock granularity/precision appears to be "
"%d microseconds.\n", quantum);
else {
printf("Your clock granularity appears to be "
"less than one microsecond.\n");
quantum = 1;
}
t = mysecond();
#pragma omp parallel for
for (j = 0; j < STREAM_ARRAY_SIZE; j++)
a[j] = 2.0E0 * a[j];
t = 1.0E6 * (mysecond() - t);
printf("Each test below will take on the order"
" of %d microseconds.\n", (int) t );
printf(" (= %d clock ticks)\n", (int) (t/quantum) );
printf("Increase the size of the arrays if this shows that\n");
printf("you are not getting at least 20 clock ticks per test.\n");
printf(HLINE);
printf("WARNING -- The above is only a rough guideline.\n");
printf("For best results, please be sure you know the\n");
printf("precision of your system timer.\n");
printf(HLINE);
/* --- MAIN LOOP --- repeat test cases NTIMES times --- */
scalar = 3.0;
for (k=0; k<NTIMES; k++)
{
times[0][k] = mysecond();
#ifdef TUNED
tuned_STREAM_Copy();
#else
#pragma omp parallel for
for (j=0; j<STREAM_ARRAY_SIZE; j++)
c[j] = a[j];
#endif
times[0][k] = mysecond() - times[0][k];
times[1][k] = mysecond();
#ifdef TUNED
tuned_STREAM_Scale(scalar);
#else
#pragma omp parallel for
for (j=0; j<STREAM_ARRAY_SIZE; j++)
b[j] = scalar*c[j];
#endif
times[1][k] = mysecond() - times[1][k];
times[2][k] = mysecond();
#ifdef TUNED
tuned_STREAM_Add();
#else
#pragma omp parallel for
for (j=0; j<STREAM_ARRAY_SIZE; j++)
c[j] = a[j]+b[j];
#endif
times[2][k] = mysecond() - times[2][k];
times[3][k] = mysecond();
#ifdef TUNED
tuned_STREAM_Triad(scalar);
#else
#pragma omp parallel for
for (j=0; j<STREAM_ARRAY_SIZE; j++)
a[j] = b[j]+scalar*c[j];
#endif
times[3][k] = mysecond() - times[3][k];
}
/* --- SUMMARY --- */
for (k=1; k<NTIMES; k++) /* note -- skip first iteration */
{
for (j=0; j<4; j++)
{
avgtime[j] = avgtime[j] + times[j][k];
mintime[j] = MIN(mintime[j], times[j][k]);
maxtime[j] = MAX(maxtime[j], times[j][k]);
}
}
printf("Function Best Rate MB/s Avg time Min time Max time\n");
for (j=0; j<4; j++) {
avgtime[j] = avgtime[j]/(double)(NTIMES-1);
printf("%s%12.1f %11.6f %11.6f %11.6f\n", label[j],
1.0E-06 * bytes[j]/mintime[j],
avgtime[j],
mintime[j],
maxtime[j]);
}
printf(HLINE);
/* --- Check Results --- */
checkSTREAMresults();
printf(HLINE);
return 0;
}
# define M 20
int
checktick()
{
int i, minDelta, Delta;
double t1, t2, timesfound[M];
/* Collect a sequence of M unique time values from the system. */
for (i = 0; i < M; i++) {
t1 = mysecond();
while( ((t2=mysecond()) - t1) < 1.0E-6 )
;
timesfound[i] = t1 = t2;
}
/*
* Determine the minimum difference between these M values.
* This result will be our estimate (in microseconds) for the
* clock granularity.
*/
minDelta = 1000000;
for (i = 1; i < M; i++) {
Delta = (int)( 1.0E6 * (timesfound[i]-timesfound[i-1]));
minDelta = MIN(minDelta, MAX(Delta,0));
}
return(minDelta);
}
/* A gettimeofday routine to give access to the wall
clock timer on most UNIX-like systems. */
#include <sys/time.h>
double mysecond()
{
struct timeval tp;
struct timezone tzp;
int i;
i = gettimeofday(&tp,&tzp);
return ( (double) tp.tv_sec + (double) tp.tv_usec * 1.e-6 );
}
#ifndef abs
#define abs(a) ((a) >= 0 ? (a) : -(a))
#endif
void checkSTREAMresults ()
{
STREAM_TYPE aj,bj,cj,scalar;
STREAM_TYPE aSumErr,bSumErr,cSumErr;
STREAM_TYPE aAvgErr,bAvgErr,cAvgErr;
double epsilon;
ssize_t j;
int k,ierr,err;
/* reproduce initialization */
aj = 1.0;
bj = 2.0;
cj = 0.0;
/* a[] is modified during timing check */
aj = 2.0E0 * aj;
/* now execute timing loop */
scalar = 3.0;
for (k=0; k<NTIMES; k++)
{
cj = aj;
bj = scalar*cj;
cj = aj+bj;
aj = bj+scalar*cj;
}
/* accumulate deltas between observed and expected results */
aSumErr = 0.0;
bSumErr = 0.0;
cSumErr = 0.0;
for (j=0; j<STREAM_ARRAY_SIZE; j++) {
aSumErr += abs(a[j] - aj);
bSumErr += abs(b[j] - bj);
cSumErr += abs(c[j] - cj);
// if (j == 417) printf("Index 417: c[j]: %f, cj: %f\n",c[j],cj); // MCCALPIN
}
aAvgErr = aSumErr / (STREAM_TYPE) STREAM_ARRAY_SIZE;
bAvgErr = bSumErr / (STREAM_TYPE) STREAM_ARRAY_SIZE;
cAvgErr = cSumErr / (STREAM_TYPE) STREAM_ARRAY_SIZE;
if (sizeof(STREAM_TYPE) == 4) {
epsilon = 1.e-6;
}
else if (sizeof(STREAM_TYPE) == 8) {
epsilon = 1.e-13;
}
else {
printf("WEIRD: sizeof(STREAM_TYPE) = %lu\n",sizeof(STREAM_TYPE));
epsilon = 1.e-6;
}
err = 0;
if (abs(aAvgErr/aj) > epsilon) {
err++;
printf ("Failed Validation on array a[], AvgRelAbsErr > epsilon (%e)\n",epsilon);
printf (" Expected Value: %e, AvgAbsErr: %e, AvgRelAbsErr: %e\n",aj,aAvgErr,abs(aAvgErr)/aj);
ierr = 0;
for (j=0; j<STREAM_ARRAY_SIZE; j++) {
if (abs(a[j]/aj-1.0) > epsilon) {
ierr++;
#ifdef VERBOSE
if (ierr < 10) {
printf(" array a: index: %ld, expected: %e, observed: %e, relative error: %e\n",
j,aj,a[j],abs((aj-a[j])/aAvgErr));
}
#endif
}
}
printf(" For array a[], %d errors were found.\n",ierr);
}
if (abs(bAvgErr/bj) > epsilon) {
err++;
printf ("Failed Validation on array b[], AvgRelAbsErr > epsilon (%e)\n",epsilon);
printf (" Expected Value: %e, AvgAbsErr: %e, AvgRelAbsErr: %e\n",bj,bAvgErr,abs(bAvgErr)/bj);
printf (" AvgRelAbsErr > Epsilon (%e)\n",epsilon);
ierr = 0;
for (j=0; j<STREAM_ARRAY_SIZE; j++) {
if (abs(b[j]/bj-1.0) > epsilon) {
ierr++;
#ifdef VERBOSE
if (ierr < 10) {
printf(" array b: index: %ld, expected: %e, observed: %e, relative error: %e\n",
j,bj,b[j],abs((bj-b[j])/bAvgErr));
}
#endif
}
}
printf(" For array b[], %d errors were found.\n",ierr);
}
if (abs(cAvgErr/cj) > epsilon) {
err++;
printf ("Failed Validation on array c[], AvgRelAbsErr > epsilon (%e)\n",epsilon);
printf (" Expected Value: %e, AvgAbsErr: %e, AvgRelAbsErr: %e\n",cj,cAvgErr,abs(cAvgErr)/cj);
printf (" AvgRelAbsErr > Epsilon (%e)\n",epsilon);
ierr = 0;
for (j=0; j<STREAM_ARRAY_SIZE; j++) {
if (abs(c[j]/cj-1.0) > epsilon) {
ierr++;
#ifdef VERBOSE
if (ierr < 10) {
printf(" array c: index: %ld, expected: %e, observed: %e, relative error: %e\n",
j,cj,c[j],abs((cj-c[j])/cAvgErr));
}
#endif
}
}
printf(" For array c[], %d errors were found.\n",ierr);
}
if (err == 0) {
printf ("Solution Validates: avg error less than %e on all three arrays\n",epsilon);
}
#ifdef VERBOSE
printf ("Results Validation Verbose Results: \n");
printf (" Expected a(1), b(1), c(1): %f %f %f \n",aj,bj,cj);
printf (" Observed a(1), b(1), c(1): %f %f %f \n",a[1],b[1],c[1]);
printf (" Rel Errors on a, b, c: %e %e %e \n",abs(aAvgErr/aj),abs(bAvgErr/bj),abs(cAvgErr/cj));
#endif
}
#ifdef TUNED
/* stubs for "tuned" versions of the kernels */
void tuned_STREAM_Copy()
{
ssize_t j;
#pragma omp parallel for
for (j=0; j<STREAM_ARRAY_SIZE; j++)
c[j] = a[j];
}
void tuned_STREAM_Scale(STREAM_TYPE scalar)
{
ssize_t j;
#pragma omp parallel for
for (j=0; j<STREAM_ARRAY_SIZE; j++)
b[j] = scalar*c[j];
}
void tuned_STREAM_Add()
{
ssize_t j;
#pragma omp parallel for
for (j=0; j<STREAM_ARRAY_SIZE; j++)
c[j] = a[j]+b[j];
}
void tuned_STREAM_Triad(STREAM_TYPE scalar)
{
ssize_t j;
#pragma omp parallel for
for (j=0; j<STREAM_ARRAY_SIZE; j++)
a[j] = b[j]+scalar*c[j];
}
/* end of stubs for the "tuned" versions of the kernels */
#endif
|
the_stack_data/11075828.c | /*
* This software is Copyright (c) 2011,2012 Lukas Odzioba <ukasz at openwall dot net>
* and it is hereby released to the general public under the following terms:
* Redistribution and use in source and binary forms, with or without modification, are permitted.
*/
#ifdef HAVE_CUDA
#if FMT_EXTERNS_H
extern struct fmt_main fmt_cuda_phpass;
#elif FMT_REGISTERS_H
john_register_one(&fmt_cuda_phpass);
#else
#include <string.h>
#include "arch.h"
#include "formats.h"
#include "common.h"
#include "misc.h"
#include "cuda_phpass.h"
#include "cuda_common.h"
#include "memdbg.h"
#define FORMAT_LABEL "phpass-cuda"
#define FORMAT_NAME ""
#define ALGORITHM_NAME "MD5 CUDA"
#define BENCHMARK_COMMENT " ($P$9 lengths 0 to 15)"
#define BENCHMARK_LENGTH -1
#define PLAINTEXT_LENGTH 15
#define CIPHERTEXT_LENGTH 34 /// header = 3 | loopcnt = 1 | salt = 8 | ciphertext = 22
#define BINARY_SIZE 16
#define BINARY_ALIGN 1
#define SALT_ALIGN 1
#define MD5_DIGEST_LENGTH 16
#define MIN_KEYS_PER_CRYPT THREADS
#define MAX_KEYS_PER_CRYPT KEYS_PER_CRYPT
static unsigned char *inbuffer; /** plaintext ciphertexts **/
static phpass_crack *outbuffer; /** calculated hashes **/
static phpass_salt currentsalt;
extern void gpu_phpass(uint8_t *, phpass_salt *, phpass_crack *, int count);
static struct fmt_tests tests[] = {
{"$P$90000000000tbNYOc9TwXvLEI62rPt1", ""},
{"$P$9saltstriAcRMGl.91RgbAD6WSq64z.", "a"},
{"$P$9saltstriMljTzvdluiefEfDeGGQEl/", "ab"},
// {"$P$9saltstrikCftjZCE7EY2Kg/pjbl8S.", "abc"},
{"$P$900000000jPBDh/JWJIyrF0.DmP7kT.", "ala"},
// {"$P$9saltstriV/GXRIRi9UVeMLMph9BxF0", "abcd"},
// {"$P$900000000a94rg7R/nUK0icmALICKj1", "john"},
// {"$P$900000001ahWiA6cMRZxkgUxj4x/In0", "john"},
// {"$P$900000000a94rg7R/nUK0icmALICKj1", "john"},
{"$P$9sadli2.wzQIuzsR2nYVhUSlHNKgG/0", "john"},
{"$P$9saltstri3JPgLni16rBZtI03oeqT.0", "abcde"},
// {"$P$9saltstri0D3A6JyITCuY72ZoXdejV.", "abcdef"},
{"$P$900000000zgzuX4Dc2091D8kak8RdR0", "h3ll00"},
{"$P$9saltstriXeNc.xV8N.K9cTs/XEn13.", "abcdefg"},
// {"$P$9saltstrinwvfzVRP3u1gxG2gTLWqv.", "abcdefgh"},
{"$P$900000000m6YEJzWtTmNBBL4jypbHv1", "openwall"},
{"$H$9saltstriSUQTD.yC2WigjF8RU0Q.Z.", "abcdefghi"},
// {"$P$9saltstriWPpGLG.jwJkwGRwdKNEsg.", "abcdefghij"},
// {"$P$900000000qZTL5A0XQUX9hq0t8SoKE0", "1234567890"},
{"$P$900112200B9LMtPy2FSq910c1a6BrH0", "1234567890"},
// {"$P$9saltstrizjDEWUMXTlQHQ3/jhpR4C.", "abcdefghijk"},
{"$P$9RjH.g0cuFtd6TnI/A5MRR90TXPc43/", "password__1"},
{"$P$9saltstriGLUwnE6bl91BPJP6sxyka.", "abcdefghijkl"},
{"$P$9saltstriq7s97e2m7dXnTEx2mtPzx.", "abcdefghijklm"},
{"$P$9saltstriTWMzWKsEeiE7CKOVVU.rS0", "abcdefghijklmn"},
{"$P$9saltstriXt7EDPKtkyRVOqcqEW5UU.", "abcdefghijklmno"},
#if 0
{"$H$9aaaaaSXBjgypwqm.JsMssPLiS8YQ00", "test1"},
{"$H$9PE8jEklgZhgLmZl5.HYJAzfGCQtzi1", "123456"},
{"$H$9pdx7dbOW3Nnt32sikrjAxYFjX8XoK1", "123456"},
// {"$P$912345678LIjjb6PhecupozNBmDndU0", "thisisalongertestPW"},
{"$H$9A5she.OeEiU583vYsRXZ5m2XIpI68/", "123456"},
{"$P$917UOZtDi6ksoFt.y2wUYvgUI6ZXIK/", "test1"},
// {"$P$91234567AQwVI09JXzrV1hEC6MSQ8I0", "thisisalongertest"},
{"$P$9234560A8hN6sXs5ir0NfozijdqT6f0", "test2"},
{"$P$9234560A86ySwM77n2VA/Ey35fwkfP0", "test3"},
{"$P$9234560A8RZBZDBzO5ygETHXeUZX5b1", "test4"},
{"$P$612345678si5M0DDyPpmRCmcltU/YW/", "JohnRipper"}, // 256
{"$P$6T4Krr44HLrUqGkL8Lu67lzZVbvHLC1", "test12345"}, // 256
{"$H$712345678WhEyvy1YWzT4647jzeOmo0", "JohnRipper"}, // 512 (phpBB w/older PHP version)
{"$P$8DkV/nqeaQNTdp4NvWjCkgN48AK69X.", "test12345"}, // 1024
{"$P$B12345678L6Lpt4BxNotVIMILOa9u81", "JohnRipper"}, // 8192 (WordPress)
// {"$P$91234567xogA.H64Lkk8Cx8vlWBVzH0", "thisisalongertst"},
#endif
{NULL}
};
static void done()
{
MEM_FREE(inbuffer);
MEM_FREE(outbuffer);
}
static void init(struct fmt_main *self)
{
///Allocate memory for hashes and passwords
inbuffer =
(uint8_t *) mem_calloc(MAX_KEYS_PER_CRYPT * sizeof(phpass_password));
outbuffer =
(phpass_crack *) mem_calloc(MAX_KEYS_PER_CRYPT * sizeof(phpass_crack));
check_mem_allocation(inbuffer, outbuffer);
///Initialize CUDA
cuda_init();
}
static int valid(char *ciphertext, struct fmt_main *self)
{
uint32_t i, count_log2;
int prefix=0;
if (strlen(ciphertext) != CIPHERTEXT_LENGTH)
return 0;
if (strncmp(ciphertext, "$P$", 3) == 0)
prefix=1;
if (strncmp(ciphertext, "$H$", 3) == 0)
prefix=1;
if(prefix==0) return 0;
for (i = 3; i < CIPHERTEXT_LENGTH; i++)
if (atoi64[ARCH_INDEX(ciphertext[i])] == 0x7F)
return 0;
count_log2 = atoi64[ARCH_INDEX(ciphertext[3])];
if (count_log2 < 7 || count_log2 > 31)
return 0;
return 1;
}
///code from historical JtR phpass patch
static void pbinary(char *ciphertext, unsigned char *out)
{
int i, bidx = 0;
unsigned sixbits;
char *pos = &ciphertext[3 + 1 + 8];
memset(out, 0, BINARY_SIZE);
for (i = 0; i < 5; i++) {
sixbits = atoi64[ARCH_INDEX(*pos++)];
out[bidx] = sixbits;
sixbits = atoi64[ARCH_INDEX(*pos++)];
out[bidx++] |= (sixbits << 6);
sixbits >>= 2;
out[bidx] = sixbits;
sixbits = atoi64[ARCH_INDEX(*pos++)];
out[bidx++] |= (sixbits << 4);
sixbits >>= 4;
out[bidx] = sixbits;
sixbits = atoi64[ARCH_INDEX(*pos++)];
out[bidx++] |= (sixbits << 2);
}
sixbits = atoi64[ARCH_INDEX(*pos++)];
out[bidx] = sixbits;
sixbits = atoi64[ARCH_INDEX(*pos++)];
out[bidx] |= (sixbits << 6);
}
static void *binary(char *ciphertext)
{
static unsigned char b[BINARY_SIZE];
pbinary(ciphertext, b);
return (void *) b;
}
static void *salt(char *ciphertext)
{
static phpass_salt salt;
salt.rounds = 1 << atoi64[ARCH_INDEX(ciphertext[3])];
memcpy(salt.salt, &ciphertext[4], 8);
return &salt;
}
static void set_salt(void *salt)
{
memcpy(¤tsalt, salt, SALT_SIZE);
}
static void set_key(char *key, int index)
{
int i, len = strlen(key);
inbuffer[address(15, index)] = len;
for (i = 0; i < len; i++)
inbuffer[address(i, index)] = key[i];
}
static char *get_key(int index)
{
static char r[PLAINTEXT_LENGTH + 1];
int i;
for (i = 0; i < PLAINTEXT_LENGTH; i++)
r[i] = inbuffer[address(i, index)];
r[inbuffer[address(15, index)]] = '\0';
return r;
}
static int crypt_all(int *pcount, struct db_salt *salt)
{
memset(outbuffer, 0, sizeof(phpass_crack) * KEYS_PER_CRYPT);
gpu_phpass(inbuffer, ¤tsalt, outbuffer, *pcount);
return *pcount;
}
static int cmp_all(void *binary, int count)
{
int i;
unsigned int *b32 = (unsigned int *)binary;
for(i=0; i < count; i++)
if(outbuffer[i].hash[0] == b32[0])
return 1;
return 0;
}
static int cmp_one(void *binary, int index)
{
int i;
unsigned int *b32 = (unsigned int *)binary;
for(i=0; i < 4; i++)
if(outbuffer[index].hash[i] != b32[i])
return 0;
return 1;
}
static int cmp_exact(char *source, int index)
{
return 1;
}
static int get_hash_0(int index) { return outbuffer[index].hash[0] & 0xf; }
static int get_hash_1(int index) { return outbuffer[index].hash[0] & 0xff; }
static int get_hash_2(int index) { return outbuffer[index].hash[0] & 0xfff; }
static int get_hash_3(int index) { return outbuffer[index].hash[0] & 0xffff; }
static int get_hash_4(int index) { return outbuffer[index].hash[0] & 0xfffff; }
static int get_hash_5(int index) { return outbuffer[index].hash[0] & 0xffffff; }
static int get_hash_6(int index) { return outbuffer[index].hash[0] & 0x7ffffff; }
struct fmt_main fmt_cuda_phpass = {
{
FORMAT_LABEL,
FORMAT_NAME,
ALGORITHM_NAME,
BENCHMARK_COMMENT,
BENCHMARK_LENGTH,
PLAINTEXT_LENGTH,
BINARY_SIZE,
BINARY_ALIGN,
SALT_SIZE,
SALT_ALIGN,
MIN_KEYS_PER_CRYPT,
MAX_KEYS_PER_CRYPT,
FMT_CASE | FMT_8_BIT,
#if FMT_MAIN_VERSION > 11
{ NULL },
#endif
tests
}, {
init,
done,
fmt_default_reset,
fmt_default_prepare,
valid,
fmt_default_split,
binary,
salt,
#if FMT_MAIN_VERSION > 11
{ NULL },
#endif
fmt_default_source,
{
fmt_default_binary_hash_0,
fmt_default_binary_hash_1,
fmt_default_binary_hash_2,
fmt_default_binary_hash_3,
fmt_default_binary_hash_4,
fmt_default_binary_hash_5,
fmt_default_binary_hash_6
},
fmt_default_salt_hash,
set_salt,
set_key,
get_key,
fmt_default_clear_keys,
crypt_all,
{
get_hash_0,
get_hash_1,
get_hash_2,
get_hash_3,
get_hash_4,
get_hash_5,
get_hash_6
},
cmp_all,
cmp_one,
cmp_exact
}
};
#endif /* plugin stanza */
#endif /* HAVE_CUDA */
|
the_stack_data/151707020.c | int main() {
int x,y;
// must fail
assert((x-y>0) == (x>y));
}
|
the_stack_data/22011965.c | #include "stdio.h"
int main(void) {
for (int i = 10; i >= 1; i /= 2) {
printf("%d ", i++);
}
return 0;
}
|
the_stack_data/198581420.c | #include <stdio.h>
#include <string.h>
// #include "../libft.h"
#include <stddef.h>
char *ft_strchr(const char *s, int c)
{
unsigned const char *p;
p = s;
if (s == 0)
return (0);
while (*p)
{
if (*p == c)
{
return (p);
}
p++;
}
return (p);
}
int main ()
{
const char str1[] = "http://www.tutorialspoint.com";
const char ch1 = '.';
const char str2[] = "http://www.tutorialspoint.com";
const char ch2 = '\0';
char *ret;
ret = ft_strchr(str1, ch1);
printf("String after |%c| is - |%s|\n", ch1, ret);
ret = ft_strchr(str2, ch2);
printf("String after |%c| is - |%s|\n", ch2, ret);
ret = strchr(str1, ch1);
printf("String after |%c| is - |%s|\n", ch1, ret);
ret = strchr(str2, ch2);
printf("String after |%c| is - |%s|\n", ch2, ret);
return(0);
} |
the_stack_data/22067.c | extern void abort(void);
void reach_error(){}
void __VERIFIER_assert(int cond) { if(!(cond)) { ERROR: {reach_error();abort();} } }
int main(void) {
unsigned int x = 0;
unsigned int y = 10000000;
unsigned int z=5000000;
while(x<y){
if(x>=5000000)
z++;
x++;
}
__VERIFIER_assert(z!=x);
return 0;
}
|
the_stack_data/324908.c | /*********************************************************************
Copyright 2015 Microchip Technology, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
**********************************************************************/
extern int __XC_UART;
extern __attribute__ ((noinline,nomips16,weak)) int _appio_getc (int canblock);
extern __attribute__ ((noinline,nomips16,weak)) int _p32mxsk_getc (int canblock);
#ifndef _U1MODE_UARTEN_POSITION
#define _U1MODE_UARTEN_POSITION 0x0000000F
#endif
#ifndef _U1STA_UTXEN_POSITION
#define _U1STA_UTXEN_POSITION 0x0000000A
#endif
#ifndef _U1STA_TRMT_POSITION
#define _U1STA_TRMT_POSITION 0x00000008
#endif
#ifndef _U1STA_URXDA_POSITION
#define _U1STA_URXDA_POSITION 0x00000000
#endif
extern volatile unsigned int U1MODE __attribute__((weak,section("sfrs")));
extern volatile unsigned int U1STA __attribute__((weak,section("sfrs")));
extern volatile unsigned int U1MODESET __attribute__((weak,section("sfrs")));
extern volatile unsigned int U1STASET __attribute__((weak,section("sfrs")));
extern volatile unsigned int U1RXREG __attribute__((weak,section("sfrs")));
extern volatile unsigned int U1TXREG __attribute__((weak,section("sfrs")));
extern volatile unsigned int U1BRG __attribute__((weak,section("sfrs")));
extern volatile unsigned int U2MODE __attribute__((weak,section("sfrs")));
extern volatile unsigned int U2STA __attribute__((weak,section("sfrs")));
extern volatile unsigned int U2MODESET __attribute__((weak,section("sfrs")));
extern volatile unsigned int U2STASET __attribute__((weak,section("sfrs")));
extern volatile unsigned int U2RXREG __attribute__((weak,section("sfrs")));
extern volatile unsigned int U2TXREG __attribute__((weak,section("sfrs")));
extern volatile unsigned int U2BRG __attribute__((weak,section("sfrs")));
int __attribute__((weak))
_mon_getc (int canblock)
{
int i;
volatile unsigned int *umode = &U1MODE;
volatile unsigned int *umodeset = &U1MODESET;
volatile unsigned int *ustatus = &U1STA;
volatile unsigned int *ustatusset = &U1STASET;
volatile unsigned int *rxreg = &U1RXREG;
volatile unsigned int *brg = &U1BRG;
if (__XC_UART == 0)
{
if (_appio_getc)
return _appio_getc (canblock);
if (_p32mxsk_getc)
return _p32mxsk_getc (canblock);
}
else if (__XC_UART == 2)
{
umode = &U2MODE;
ustatus = &U2STA;
rxreg = &U2RXREG;
brg = &U2BRG;
}
if ((*umode & (1 << _U1MODE_UARTEN_POSITION)) == 0)
{
*umodeset = (1 << _U1MODE_UARTEN_POSITION);
}
{
int nTimeout;
/*
** Timeout is 16 cycles per 10-bit char
*/
nTimeout = 16*10;
while (((*ustatus & (1 << _U1STA_URXDA_POSITION)) == 0) && nTimeout) --nTimeout;
return *rxreg;
}
return -1;
}
|
the_stack_data/1193407.c | #include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[]) {
int num = atoi(argv[1]);
long a = 0;
long b = 1;
long result = 0;
int id;
for (id = 0; id < num; id++) {
result = a + b;
a = b;
b = result;
if (id < num - 1) {
printf("%d, ", result);
} else {
printf("%d", result);
}
}
return 0;
} |
the_stack_data/911239.c | /*
* Vortex OpenSplice
*
* This software and documentation are Copyright 2006 to TO_YEAR ADLINK
* Technology Limited, its affiliated companies and licensors. All rights
* reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
/*#include <asm/param.h>*/
#include <netdb.h>
|
the_stack_data/134712.c | #include <stdio.h>
extern i;
int main(void) {
printf("in main i=%d\n", i);
test();
return 0;
}
|
the_stack_data/113054.c | #include <stdio.h>
int main()
{
int sum = 0, trigo = 1, casas = 64;
for (int i = 1; i <= casas; i++)
{
sum = trigo * 2;
trigo += sum;
}
printf("A rainha pagara pelo serviço %d grãos de trigo.\n", trigo);
return 0;
}
|
the_stack_data/98576168.c | #include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
typedef struct ExpressionTreeNode {
char key;
struct ExpressionTreeNode *left;
struct ExpressionTreeNode *right;
} ExpressionTreeNode;
//----------Creating a basic queue library---------------
typedef struct Node {
ExpressionTreeNode *value;
struct Node *next;
} Node;
typedef struct Stack {
Node *start;
} Stack;
Node *createNode(ExpressionTreeNode *val) {
Node *out = (Node *)malloc(sizeof(Node));
out->value = val;
out->next = NULL;
return out;
}
void push(Stack *s, ExpressionTreeNode *val) {
Node *cur = s->start;
if (cur == NULL)
s->start = createNode(val);
else {
while (cur->next != NULL)
cur = cur->next;
cur->next = createNode(val);
}
}
ExpressionTreeNode *pop(Stack *s) {
Node *cur = s->start;
if (cur == NULL)
return '\0';
else if (cur->next == NULL) {
s->start = NULL;
return cur->value;
} else {
while (cur->next->next != NULL)
cur = cur->next;
ExpressionTreeNode *out = cur->next->value;
cur->next = NULL;
return out;
}
}
//-----------End of Queue library-----------------
ExpressionTreeNode *newTreeNode(char key) { //creates a new node using the key and return the reference to the newly created node
ExpressionTreeNode *new = (ExpressionTreeNode *)malloc(sizeof(ExpressionTreeNode));
new->key = key;
new->left = NULL;
new->right = NULL;
return new;
}
_Bool isEmpty(ExpressionTreeNode *r) { //check the tree with the root, r, if it is an empty tree
if (r == NULL)
return 1;
else
return 0;
}
char getKey(ExpressionTreeNode *r) { //return the key of the tree node, r
return r->key;
}
_Bool isLeaf(ExpressionTreeNode *r) { //check if the tree node, r, is a leaf
if (r->left == NULL && r->right == NULL)
return 1;
else
return 0;
}
int getHeight(ExpressionTreeNode *r) { //return the height of the tree with the root of r, root layer is height 0
if (r == NULL) { //check if the root is null, return -1 (the default level value)
return -1;
}
int left, right;
left = getHeight(r->left);
right = getHeight(r->right);
if (left > right)
return left + 1;
else
return right + 1;
}
ExpressionTreeNode *buildExpTree (char *postfixExp) { //creates an expression tree from a postfix expression string as the parameter and return the root of the tree
//Algorithm is as follows:
//Loop through every letter in the expression:
// if it is an operator: pop the last 2 values in the stack, make a new node, these 2 new values are the left and right children, push the new node to the stack
// if it is anything else: push the value to the stack as a node
char operators[4] = {'+', '-', '*', '/'};
int i = -1;
ExpressionTreeNode *t, *t1, *t2 = NULL; //temporary values to store nodes to be appended
Stack *s = (Stack *)malloc(sizeof(Stack)); //Using the stack library created above
s->start = NULL;
while (postfixExp[++i] != '\0') { //loop through every value in the string
char cur = postfixExp[i]; //current character we are looking at
//checking if cur is an operator
_Bool oper = 0;
for (int a = 0; a < 4; a++)
if (cur == operators[a])
oper = 1;
if (oper == 1) { //if it is an operator
t = newTreeNode(cur); //make new node
t1 = pop(s); //pop last 2 vals on stack
t2 = pop(s);
t->right = t1; //assign them accordingly
t->left = t2;
push(s, t); //push this back to the stack
} else { //not an operator
push(s, newTreeNode(cur)); //push it as a node
}
}
t = pop(s); //top value of stack should be the root
return t;
}
int priority(char x)
{
if(x == '(')
return 0;
if(x == '+' || x == '-')
return 1;
if(x == '*' || x == '/')
return 2;
}
char *parseInfix(char *s) { //reads an infix expression, s, and converts it to a postfix expression as a return from the function
//Algorithm is as follows:
//Loop through every letter in the infix expression:
// if it's a letter: add it to the output string
// if it's a open parentheses: add it to the stack
// if it's a close parentheses: keep looping backwards through the stack adding every value to the output string until you hit an open parentheses
// if it's anything else (an operator): keep looping backwards through the stack while the prority is higher than the current character
// adding every value to the output string and then adding the current character to the stack once complete
//After the loop, pop any remaining characters from the stack and add em to the output string
char stack[50]; //a quick array stack
char *out = (char *)malloc(sizeof(char)*50); //output string
int top = -1, k = 0; //top is the top of the stack, k is the current poisition in the output string
char *e, x; //e is pointer to current character, x is a var to be used temporarily
e = s;
while (*e != '\0') {
if (isalnum(*e)) //if it's a letter
out[k++] = *e;
else if (*e == '(') //if it's open parentheses
stack[++top] = *e;
else if (*e == ')') { //if it's closed parentheses
if (top >= 0) //pop stack value into x
x = stack[top--];
else
x = -1;
while (x != '(' || x == -1) { //while x isn't open parentheses
out[k++] = x; //add x to the output string
if (top >= 0) //pop next stack value to x
x = stack[top--];
else
x = -1;
}
} else { //if it's anyhting else (expecting an operator)
while(priority(stack[top]) >= priority(*e)) { //keep looping while the stack has a higher prority (for order of operations)
if (top >= 0) //pop stack value to x
x = stack[top--];
else
x = -1;
out[k++] = x; // add it to the output string
}
stack[++top] = *e; //add current character to the stack
}
e++; //move to next character
}
while (top >= 0) //put all remaining stack values to output string
out[k++] = stack[top--];
return out;
}
char *parsePrefix(char *s) { //reads a prefix expression, s, and converts it to a postfix expression as a return from the function
//Algorithm is as follows:
//Loop through every letter in the prefix expression backwards:
// if its an operator: take the top 2 strings in the stack, concatenate them, and append the current character to the end of the new string, push it to the stack
// otherwise: push the character to the stack
//once the loop is done, return the top value of the stack
char operators[4] = {'+', '-', '*', '/'};
int i = 0;
char cur = s[i];
while (cur != '\0') //get to the end of the string so we can loop backwards through it
cur = s[++i];
char *stack[50]; //stack of char pointers
int top = -1;
i--;
while (i >= 0) { //loop backwards through the string
char cur = s[i--]; //current character
//Checking if cur is an operator
_Bool oper = 0;
for (int a = 0; a < 4; a++)
if (cur == operators[a])
oper = 1;
if (oper == 1) { //if it is an operator
char *op1 = stack[top--]; //pop last 2 vals in stack
char *op2 = stack[top--];
char *new = (char *)malloc(sizeof(char)*50); //new string to add back
char *e = op1, *ptr = new;
while (*e != '\0') { //loop through first string and add every character to the new one
*ptr = *e;
ptr++;
e++;
}
e = op2;
while (*e != '\0') { //loop through second string and add every character to the new one
*ptr = *e;
ptr++;
e++;
}
*ptr = cur; //add cur to the end of the new string
ptr++;
*ptr = '\0'; //add terminating character
stack[++top] = new; //push the new string to the stack
} else {
char *new = (char *)malloc(sizeof(char));
*new = cur;
stack[++top] = new; //push cur to stack
}
}
return stack[top];
}
//The next three are almost the same, the internal order of each depends on which traversal is being used
char *preorder(ExpressionTreeNode *r) {
char *out = (char *)malloc(sizeof(char)*50);
if (r == NULL) {
out[0] = '\0';
return out;
}
char *ptr = out;
*ptr = r->key;
ptr++;
char *left = preorder(r->left);
char *right = preorder(r->right);
while (*left != '\0') {
*ptr = *left;
ptr++;
left++;
}
while (*right != '\0') {
*ptr = *right;
ptr++;
right++;
}
*ptr = '\0';
return out;
}
char *postorder(ExpressionTreeNode *r) {
char *out = (char *)malloc(sizeof(char)*50);
if (r == NULL) {
out[0] = '\0';
return out;
}
char *ptr = out;
char *left = postorder(r->left);
char *right = postorder(r->right);
while (*left != '\0') {
*ptr = *left;
ptr++;
left++;
}
while (*right != '\0') {
*ptr = *right;
ptr++;
right++;
}
*ptr = r->key;
ptr++;
*ptr = '\0';
return out;
}
char *inorder(ExpressionTreeNode *r) {
char *out = (char *)malloc(sizeof(char)*50);
if (r == NULL) {
out[0] = '\0';
return out;
}
char *ptr = out;
char *left = inorder(r->left);
char *right = inorder(r->right);
while (*left != '\0') {
*ptr = *left;
ptr++;
left++;
}
*ptr = r->key;
ptr++;
while (*right != '\0') {
*ptr = *right;
ptr++;
right++;
}
*ptr = '\0';
return out;
}
char *breadthfirstrecurse(ExpressionTreeNode *r) {
char *out = (char *)malloc(sizeof(char)*50);
if (r == NULL) {
out[0] = '\0';
return out;
}
char *ptr = out;
if (r->left != NULL) {
*ptr = r->left->key;
ptr++;
}
if (r->right != NULL) {
*ptr = r->right->key;
ptr++;
}
char *left = breadthfirstrecurse(r->left);
char *right = breadthfirstrecurse(r->right);
while (*left != '\0') {
*ptr = *left;
ptr++;
left++;
}
while (*right != '\0') {
*ptr = *right;
ptr++;
right++;
}
*ptr = '\0';
return out;
}
char *breadthfirst(ExpressionTreeNode *r) {
char *out = (char *)malloc(sizeof(char)*50);
char *ptr = out;
*ptr = r->key;
ptr++;
char *t = breadthfirstrecurse(r);
while (*t != '\0') {
*ptr = *t;
ptr++;
t++;
}
*ptr = '\0';
return out;
}
int main() {
ExpressionTreeNode *t = buildExpTree("ab/cd-e*+");
printf("%s\n", preorder(t));
printf("%s\n", postorder(t));
printf("%s\n", inorder(t));
printf("%s\n", breadthfirst(t));
return 0;
} |
the_stack_data/92969.c | /* -*- C++ -*- */
/*************************************************************************
* Copyright(c) 1995~2005 Masaharu Goto ([email protected])
*
* For the licensing terms see the file COPYING
*
************************************************************************/
/* #! /usr/local/bin/cint */
#include <stdio.h>
main(argc,argv)
int argc;
char *argv[];
{
int i;
printf("argc=%d\n",argc);
for(i=0;i<argc;i++) {
printf("argv[%d]=\"%s\" , sum=%d\n"
,i,argv[i],sumchar(argv[i]));
}
}
int sumchar(char *string)
//int sumchar(string)
//char *string;
{
int sum=0,i=0;
while(string[i]!='\0') {
sum += string[i++];
}
return(sum);
}
|
the_stack_data/36076497.c | #include <stdio.h>
int main(){
char *numbers[]={"one","two","three","four","five","six","seven","eight","nine"};
int n,N;
scanf ("%d", &n);
if (n>=1 && n<=9)
{
printf("%s", numbers[n-1]);
}
else if (n>9)
{
// N == n%2;
if (n%2 == 0)
{
printf("even");
}else
{
printf("odd");
}
}
return 0;
} |
the_stack_data/89200430.c | #include <stdio.h>
int main(int argc, char* argv[])
{
int x;
scanf("%d", &x);
int n = 0, s = 0, p = 1;
while (x)
{
int digit = x%10;
n += 1;
s += digit;
p *= digit;
x /= 10;
}
printf("number = %d\n"
"sum = %d\n"
"production = %d\n", n, s, p);
return 0;
} |
the_stack_data/34513546.c | #ifdef BAKING_APP
#include "apdu_baking.h"
#include "apdu.h"
#include "baking_auth.h"
#include "globals.h"
#include "os_cx.h"
#include "protocol.h"
#include "to_string.h"
#include "ui.h"
#include <string.h>
#define G global.apdu.u.baking
static bool reset_ok(void);
size_t handle_apdu_reset(__attribute__((unused)) uint8_t instruction) {
uint8_t *dataBuffer = G_io_apdu_buffer + OFFSET_CDATA;
uint32_t dataLength = G_io_apdu_buffer[OFFSET_LC];
if (dataLength != sizeof(level_t)) {
THROW(EXC_WRONG_LENGTH_FOR_INS);
}
level_t const lvl = READ_UNALIGNED_BIG_ENDIAN(level_t, dataBuffer);
if (!is_valid_level(lvl)) THROW(EXC_PARSE_ERROR);
G.reset_level = lvl;
init_screen_stack();
push_ui_callback("Reset HWM", number_to_string_indirect32, &G.reset_level);
ux_confirm_screen(reset_ok, delay_reject);
}
bool reset_ok(void) {
UPDATE_NVRAM(ram, {
ram->hwm.main.highest_level = G.reset_level;
ram->hwm.main.had_endorsement = false;
ram->hwm.test.highest_level = G.reset_level;
ram->hwm.test.had_endorsement = false;
});
// Send back the response, do not restart the event loop
delayed_send(finalize_successful_send(0));
return true;
}
size_t send_word_big_endian(size_t tx, uint32_t word) {
char word_bytes[sizeof(word)];
memcpy(word_bytes, &word, sizeof(word));
// endian.h functions do not compile
uint32_t i = 0;
for (; i < sizeof(word); i++) {
G_io_apdu_buffer[i + tx] = word_bytes[sizeof(word) - i - 1];
}
return tx + i;
}
size_t handle_apdu_all_hwm(__attribute__((unused)) uint8_t instruction) {
size_t tx = 0;
tx = send_word_big_endian(tx, N_data.hwm.main.highest_level);
tx = send_word_big_endian(tx, N_data.hwm.test.highest_level);
tx = send_word_big_endian(tx, N_data.main_chain_id.v);
return finalize_successful_send(tx);
}
size_t handle_apdu_main_hwm(__attribute__((unused)) uint8_t instruction) {
size_t tx = 0;
tx = send_word_big_endian(tx, N_data.hwm.main.highest_level);
return finalize_successful_send(tx);
}
size_t handle_apdu_query_auth_key(__attribute__((unused)) uint8_t instruction) {
uint8_t const length = N_data.baking_key.bip32_path.length;
size_t tx = 0;
G_io_apdu_buffer[tx++] = length;
for (uint8_t i = 0; i < length; ++i) {
tx = send_word_big_endian(tx, N_data.baking_key.bip32_path.components[i]);
}
return finalize_successful_send(tx);
}
size_t handle_apdu_query_auth_key_with_curve(__attribute__((unused)) uint8_t instruction) {
uint8_t const length = N_data.baking_key.bip32_path.length;
size_t tx = 0;
G_io_apdu_buffer[tx++] = unparse_derivation_type(N_data.baking_key.derivation_type);
G_io_apdu_buffer[tx++] = length;
for (uint8_t i = 0; i < length; ++i) {
tx = send_word_big_endian(tx, N_data.baking_key.bip32_path.components[i]);
}
return finalize_successful_send(tx);
}
size_t handle_apdu_deauthorize(__attribute__((unused)) uint8_t instruction) {
if (G_io_apdu_buffer[OFFSET_P1] != 0) THROW(EXC_WRONG_PARAM);
if (G_io_apdu_buffer[OFFSET_LC] != 0) THROW(EXC_PARSE_ERROR);
UPDATE_NVRAM(ram, { memset(&ram->baking_key, 0, sizeof(ram->baking_key)); });
return finalize_successful_send(0);
}
#endif // #ifdef BAKING_APP
|
the_stack_data/613749.c | extern char *getenv(const char *name);
char *gt;
char *
foo(char *param) {
char *t1 = param;
param = "nope";
char *ut1 = param;
return param;
}
int
main()
{
gt = getenv("gude");
char *t1 = gt;
char *ret = foo(gt);
char *ut2 = ret;
char *t2 = gt;
return 0;
}
|
the_stack_data/192331624.c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* display.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: esupatae <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/04/06 22:43:21 by esupatae #+# #+# */
/* Updated: 2019/04/06 22:43:24 by esupatae ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
#include <stdlib.h>
void ft_putchar(char c)
{
write(1, &c, 1);
}
void ft_putstr(char *str)
{
while (*str)
ft_putchar(*str++);
}
void print_grid(char **nums)
{
char *word;
int i;
while (*nums)
{
i = 0;
word = *nums;
while (word[i] != '\0')
{
ft_putchar(word[i]);
i++;
if (word[i])
ft_putchar(' ');
}
ft_putchar('\n');
nums++;
}
}
char **init_board(char **board, char **nums)
{
char *row;
int i;
int j;
nums++;
i = 0;
while (*nums)
{
j = 0;
row = *nums;
board[i] = (char*)(malloc(sizeof(char) * 10));
while (row[j] != '\0')
{
board[i][j] = row[j];
j++;
}
board[i][j] = '\0';
nums++;
i++;
}
return (board);
}
|
the_stack_data/64199035.c | /* This is a heavily customized and minimized copy of Lua 5.1.5. */
/* It's only used to build LuaJIT. It does NOT have all standard functions! */
/******************************************************************************
* Copyright (C) 1994-2012 Lua.org, PUC-Rio. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
******************************************************************************/
#ifdef _MSC_VER
typedef unsigned __int64 U64;
#else
typedef unsigned long long U64;
#endif
int _CRT_glob = 0;
#include <stddef.h>
#include <stdarg.h>
#include <limits.h>
#include <math.h>
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <setjmp.h>
#include <errno.h>
#include <time.h>
typedef enum{
TM_INDEX,
TM_NEWINDEX,
TM_GC,
TM_MODE,
TM_EQ,
TM_ADD,
TM_SUB,
TM_MUL,
TM_DIV,
TM_MOD,
TM_POW,
TM_UNM,
TM_LEN,
TM_LT,
TM_LE,
TM_CONCAT,
TM_CALL,
TM_N
}TMS;
enum OpMode{iABC,iABx,iAsBx};
typedef enum{
OP_MOVE,
OP_LOADK,
OP_LOADBOOL,
OP_LOADNIL,
OP_GETUPVAL,
OP_GETGLOBAL,
OP_GETTABLE,
OP_SETGLOBAL,
OP_SETUPVAL,
OP_SETTABLE,
OP_NEWTABLE,
OP_SELF,
OP_ADD,
OP_SUB,
OP_MUL,
OP_DIV,
OP_MOD,
OP_POW,
OP_UNM,
OP_NOT,
OP_LEN,
OP_CONCAT,
OP_JMP,
OP_EQ,
OP_LT,
OP_LE,
OP_TEST,
OP_TESTSET,
OP_CALL,
OP_TAILCALL,
OP_RETURN,
OP_FORLOOP,
OP_FORPREP,
OP_TFORLOOP,
OP_SETLIST,
OP_CLOSE,
OP_CLOSURE,
OP_VARARG
}OpCode;
enum OpArgMask{
OpArgN,
OpArgU,
OpArgR,
OpArgK
};
typedef enum{
VVOID,
VNIL,
VTRUE,
VFALSE,
VK,
VKNUM,
VLOCAL,
VUPVAL,
VGLOBAL,
VINDEXED,
VJMP,
VRELOCABLE,
VNONRELOC,
VCALL,
VVARARG
}expkind;
enum RESERVED{
TK_AND=257,TK_BREAK,
TK_DO,TK_ELSE,TK_ELSEIF,TK_END,TK_FALSE,TK_FOR,TK_FUNCTION,
TK_IF,TK_IN,TK_LOCAL,TK_NIL,TK_NOT,TK_OR,TK_REPEAT,
TK_RETURN,TK_THEN,TK_TRUE,TK_UNTIL,TK_WHILE,
TK_CONCAT,TK_DOTS,TK_EQ,TK_GE,TK_LE,TK_NE,TK_NUMBER,
TK_NAME,TK_STRING,TK_EOS
};
typedef enum BinOpr{
OPR_ADD,OPR_SUB,OPR_MUL,OPR_DIV,OPR_MOD,OPR_POW,
OPR_CONCAT,
OPR_NE,OPR_EQ,
OPR_LT,OPR_LE,OPR_GT,OPR_GE,
OPR_AND,OPR_OR,
OPR_NOBINOPR
}BinOpr;
typedef enum UnOpr{OPR_MINUS,OPR_NOT,OPR_LEN,OPR_NOUNOPR}UnOpr;
#define LUA_QL(x)"'"x"'"
#define luai_apicheck(L,o){(void)L;}
#define lua_number2str(s,n)sprintf((s),"%.14g",(n))
#define lua_str2number(s,p)strtod((s),(p))
#define luai_numadd(a,b)((a)+(b))
#define luai_numsub(a,b)((a)-(b))
#define luai_nummul(a,b)((a)*(b))
#define luai_numdiv(a,b)((a)/(b))
#define luai_nummod(a,b)((a)-floor((a)/(b))*(b))
#define luai_numpow(a,b)(pow(a,b))
#define luai_numunm(a)(-(a))
#define luai_numeq(a,b)((a)==(b))
#define luai_numlt(a,b)((a)<(b))
#define luai_numle(a,b)((a)<=(b))
#define luai_numisnan(a)(!luai_numeq((a),(a)))
#define lua_number2int(i,d)((i)=(int)(d))
#define lua_number2integer(i,d)((i)=(lua_Integer)(d))
#define LUAI_THROW(L,c)longjmp((c)->b,1)
#define LUAI_TRY(L,c,a)if(setjmp((c)->b)==0){a}
#define lua_pclose(L,file)((void)((void)L,file),0)
#define lua_upvalueindex(i)((-10002)-(i))
typedef struct lua_State lua_State;
typedef int(*lua_CFunction)(lua_State*L);
typedef const char*(*lua_Reader)(lua_State*L,void*ud,size_t*sz);
typedef void*(*lua_Alloc)(void*ud,void*ptr,size_t osize,size_t nsize);
typedef double lua_Number;
typedef ptrdiff_t lua_Integer;
static void lua_settop(lua_State*L,int idx);
static int lua_type(lua_State*L,int idx);
static const char* lua_tolstring(lua_State*L,int idx,size_t*len);
static size_t lua_objlen(lua_State*L,int idx);
static void lua_pushlstring(lua_State*L,const char*s,size_t l);
static void lua_pushcclosure(lua_State*L,lua_CFunction fn,int n);
static void lua_createtable(lua_State*L,int narr,int nrec);
static void lua_setfield(lua_State*L,int idx,const char*k);
#define lua_pop(L,n)lua_settop(L,-(n)-1)
#define lua_newtable(L)lua_createtable(L,0,0)
#define lua_pushcfunction(L,f)lua_pushcclosure(L,(f),0)
#define lua_strlen(L,i)lua_objlen(L,(i))
#define lua_isfunction(L,n)(lua_type(L,(n))==6)
#define lua_istable(L,n)(lua_type(L,(n))==5)
#define lua_isnil(L,n)(lua_type(L,(n))==0)
#define lua_isboolean(L,n)(lua_type(L,(n))==1)
#define lua_isnone(L,n)(lua_type(L,(n))==(-1))
#define lua_isnoneornil(L,n)(lua_type(L,(n))<=0)
#define lua_pushliteral(L,s)lua_pushlstring(L,""s,(sizeof(s)/sizeof(char))-1)
#define lua_setglobal(L,s)lua_setfield(L,(-10002),(s))
#define lua_tostring(L,i)lua_tolstring(L,(i),NULL)
typedef struct lua_Debug lua_Debug;
typedef void(*lua_Hook)(lua_State*L,lua_Debug*ar);
struct lua_Debug{
int event;
const char*name;
const char*namewhat;
const char*what;
const char*source;
int currentline;
int nups;
int linedefined;
int lastlinedefined;
char short_src[60];
int i_ci;
};
typedef unsigned int lu_int32;
typedef size_t lu_mem;
typedef ptrdiff_t l_mem;
typedef unsigned char lu_byte;
#define IntPoint(p)((unsigned int)(lu_mem)(p))
typedef union{double u;void*s;long l;}L_Umaxalign;
typedef double l_uacNumber;
#define check_exp(c,e)(e)
#define UNUSED(x)((void)(x))
#define cast(t,exp)((t)(exp))
#define cast_byte(i)cast(lu_byte,(i))
#define cast_num(i)cast(lua_Number,(i))
#define cast_int(i)cast(int,(i))
typedef lu_int32 Instruction;
#define condhardstacktests(x)((void)0)
typedef union GCObject GCObject;
typedef struct GCheader{
GCObject*next;lu_byte tt;lu_byte marked;
}GCheader;
typedef union{
GCObject*gc;
void*p;
lua_Number n;
int b;
}Value;
typedef struct lua_TValue{
Value value;int tt;
}TValue;
#define ttisnil(o)(ttype(o)==0)
#define ttisnumber(o)(ttype(o)==3)
#define ttisstring(o)(ttype(o)==4)
#define ttistable(o)(ttype(o)==5)
#define ttisfunction(o)(ttype(o)==6)
#define ttisboolean(o)(ttype(o)==1)
#define ttisuserdata(o)(ttype(o)==7)
#define ttisthread(o)(ttype(o)==8)
#define ttislightuserdata(o)(ttype(o)==2)
#define ttype(o)((o)->tt)
#define gcvalue(o)check_exp(iscollectable(o),(o)->value.gc)
#define pvalue(o)check_exp(ttislightuserdata(o),(o)->value.p)
#define nvalue(o)check_exp(ttisnumber(o),(o)->value.n)
#define rawtsvalue(o)check_exp(ttisstring(o),&(o)->value.gc->ts)
#define tsvalue(o)(&rawtsvalue(o)->tsv)
#define rawuvalue(o)check_exp(ttisuserdata(o),&(o)->value.gc->u)
#define uvalue(o)(&rawuvalue(o)->uv)
#define clvalue(o)check_exp(ttisfunction(o),&(o)->value.gc->cl)
#define hvalue(o)check_exp(ttistable(o),&(o)->value.gc->h)
#define bvalue(o)check_exp(ttisboolean(o),(o)->value.b)
#define thvalue(o)check_exp(ttisthread(o),&(o)->value.gc->th)
#define l_isfalse(o)(ttisnil(o)||(ttisboolean(o)&&bvalue(o)==0))
#define checkconsistency(obj)
#define checkliveness(g,obj)
#define setnilvalue(obj)((obj)->tt=0)
#define setnvalue(obj,x){TValue*i_o=(obj);i_o->value.n=(x);i_o->tt=3;}
#define setbvalue(obj,x){TValue*i_o=(obj);i_o->value.b=(x);i_o->tt=1;}
#define setsvalue(L,obj,x){TValue*i_o=(obj);i_o->value.gc=cast(GCObject*,(x));i_o->tt=4;checkliveness(G(L),i_o);}
#define setuvalue(L,obj,x){TValue*i_o=(obj);i_o->value.gc=cast(GCObject*,(x));i_o->tt=7;checkliveness(G(L),i_o);}
#define setthvalue(L,obj,x){TValue*i_o=(obj);i_o->value.gc=cast(GCObject*,(x));i_o->tt=8;checkliveness(G(L),i_o);}
#define setclvalue(L,obj,x){TValue*i_o=(obj);i_o->value.gc=cast(GCObject*,(x));i_o->tt=6;checkliveness(G(L),i_o);}
#define sethvalue(L,obj,x){TValue*i_o=(obj);i_o->value.gc=cast(GCObject*,(x));i_o->tt=5;checkliveness(G(L),i_o);}
#define setptvalue(L,obj,x){TValue*i_o=(obj);i_o->value.gc=cast(GCObject*,(x));i_o->tt=(8+1);checkliveness(G(L),i_o);}
#define setobj(L,obj1,obj2){const TValue*o2=(obj2);TValue*o1=(obj1);o1->value=o2->value;o1->tt=o2->tt;checkliveness(G(L),o1);}
#define setttype(obj,tt)(ttype(obj)=(tt))
#define iscollectable(o)(ttype(o)>=4)
typedef TValue*StkId;
typedef union TString{
L_Umaxalign dummy;
struct{
GCObject*next;lu_byte tt;lu_byte marked;
lu_byte reserved;
unsigned int hash;
size_t len;
}tsv;
}TString;
#define getstr(ts)cast(const char*,(ts)+1)
#define svalue(o)getstr(rawtsvalue(o))
typedef union Udata{
L_Umaxalign dummy;
struct{
GCObject*next;lu_byte tt;lu_byte marked;
struct Table*metatable;
struct Table*env;
size_t len;
}uv;
}Udata;
typedef struct Proto{
GCObject*next;lu_byte tt;lu_byte marked;
TValue*k;
Instruction*code;
struct Proto**p;
int*lineinfo;
struct LocVar*locvars;
TString**upvalues;
TString*source;
int sizeupvalues;
int sizek;
int sizecode;
int sizelineinfo;
int sizep;
int sizelocvars;
int linedefined;
int lastlinedefined;
GCObject*gclist;
lu_byte nups;
lu_byte numparams;
lu_byte is_vararg;
lu_byte maxstacksize;
}Proto;
typedef struct LocVar{
TString*varname;
int startpc;
int endpc;
}LocVar;
typedef struct UpVal{
GCObject*next;lu_byte tt;lu_byte marked;
TValue*v;
union{
TValue value;
struct{
struct UpVal*prev;
struct UpVal*next;
}l;
}u;
}UpVal;
typedef struct CClosure{
GCObject*next;lu_byte tt;lu_byte marked;lu_byte isC;lu_byte nupvalues;GCObject*gclist;struct Table*env;
lua_CFunction f;
TValue upvalue[1];
}CClosure;
typedef struct LClosure{
GCObject*next;lu_byte tt;lu_byte marked;lu_byte isC;lu_byte nupvalues;GCObject*gclist;struct Table*env;
struct Proto*p;
UpVal*upvals[1];
}LClosure;
typedef union Closure{
CClosure c;
LClosure l;
}Closure;
#define iscfunction(o)(ttype(o)==6&&clvalue(o)->c.isC)
typedef union TKey{
struct{
Value value;int tt;
struct Node*next;
}nk;
TValue tvk;
}TKey;
typedef struct Node{
TValue i_val;
TKey i_key;
}Node;
typedef struct Table{
GCObject*next;lu_byte tt;lu_byte marked;
lu_byte flags;
lu_byte lsizenode;
struct Table*metatable;
TValue*array;
Node*node;
Node*lastfree;
GCObject*gclist;
int sizearray;
}Table;
#define lmod(s,size)(check_exp((size&(size-1))==0,(cast(int,(s)&((size)-1)))))
#define twoto(x)((size_t)1<<(x))
#define sizenode(t)(twoto((t)->lsizenode))
static const TValue luaO_nilobject_;
#define ceillog2(x)(luaO_log2((x)-1)+1)
static int luaO_log2(unsigned int x);
#define gfasttm(g,et,e)((et)==NULL?NULL:((et)->flags&(1u<<(e)))?NULL:luaT_gettm(et,e,(g)->tmname[e]))
#define fasttm(l,et,e)gfasttm(G(l),et,e)
static const TValue*luaT_gettm(Table*events,TMS event,TString*ename);
#define luaM_reallocv(L,b,on,n,e)((cast(size_t,(n)+1)<=((size_t)(~(size_t)0)-2)/(e))?luaM_realloc_(L,(b),(on)*(e),(n)*(e)):luaM_toobig(L))
#define luaM_freemem(L,b,s)luaM_realloc_(L,(b),(s),0)
#define luaM_free(L,b)luaM_realloc_(L,(b),sizeof(*(b)),0)
#define luaM_freearray(L,b,n,t)luaM_reallocv(L,(b),n,0,sizeof(t))
#define luaM_malloc(L,t)luaM_realloc_(L,NULL,0,(t))
#define luaM_new(L,t)cast(t*,luaM_malloc(L,sizeof(t)))
#define luaM_newvector(L,n,t)cast(t*,luaM_reallocv(L,NULL,0,n,sizeof(t)))
#define luaM_growvector(L,v,nelems,size,t,limit,e)if((nelems)+1>(size))((v)=cast(t*,luaM_growaux_(L,v,&(size),sizeof(t),limit,e)))
#define luaM_reallocvector(L,v,oldn,n,t)((v)=cast(t*,luaM_reallocv(L,v,oldn,n,sizeof(t))))
static void*luaM_realloc_(lua_State*L,void*block,size_t oldsize,
size_t size);
static void*luaM_toobig(lua_State*L);
static void*luaM_growaux_(lua_State*L,void*block,int*size,
size_t size_elem,int limit,
const char*errormsg);
typedef struct Zio ZIO;
#define char2int(c)cast(int,cast(unsigned char,(c)))
#define zgetc(z)(((z)->n--)>0?char2int(*(z)->p++):luaZ_fill(z))
typedef struct Mbuffer{
char*buffer;
size_t n;
size_t buffsize;
}Mbuffer;
#define luaZ_initbuffer(L,buff)((buff)->buffer=NULL,(buff)->buffsize=0)
#define luaZ_buffer(buff)((buff)->buffer)
#define luaZ_sizebuffer(buff)((buff)->buffsize)
#define luaZ_bufflen(buff)((buff)->n)
#define luaZ_resetbuffer(buff)((buff)->n=0)
#define luaZ_resizebuffer(L,buff,size)(luaM_reallocvector(L,(buff)->buffer,(buff)->buffsize,size,char),(buff)->buffsize=size)
#define luaZ_freebuffer(L,buff)luaZ_resizebuffer(L,buff,0)
struct Zio{
size_t n;
const char*p;
lua_Reader reader;
void*data;
lua_State*L;
};
static int luaZ_fill(ZIO*z);
struct lua_longjmp;
#define gt(L)(&L->l_gt)
#define registry(L)(&G(L)->l_registry)
typedef struct stringtable{
GCObject**hash;
lu_int32 nuse;
int size;
}stringtable;
typedef struct CallInfo{
StkId base;
StkId func;
StkId top;
const Instruction*savedpc;
int nresults;
int tailcalls;
}CallInfo;
#define curr_func(L)(clvalue(L->ci->func))
#define ci_func(ci)(clvalue((ci)->func))
#define f_isLua(ci)(!ci_func(ci)->c.isC)
#define isLua(ci)(ttisfunction((ci)->func)&&f_isLua(ci))
typedef struct global_State{
stringtable strt;
lua_Alloc frealloc;
void*ud;
lu_byte currentwhite;
lu_byte gcstate;
int sweepstrgc;
GCObject*rootgc;
GCObject**sweepgc;
GCObject*gray;
GCObject*grayagain;
GCObject*weak;
GCObject*tmudata;
Mbuffer buff;
lu_mem GCthreshold;
lu_mem totalbytes;
lu_mem estimate;
lu_mem gcdept;
int gcpause;
int gcstepmul;
lua_CFunction panic;
TValue l_registry;
struct lua_State*mainthread;
UpVal uvhead;
struct Table*mt[(8+1)];
TString*tmname[TM_N];
}global_State;
struct lua_State{
GCObject*next;lu_byte tt;lu_byte marked;
lu_byte status;
StkId top;
StkId base;
global_State*l_G;
CallInfo*ci;
const Instruction*savedpc;
StkId stack_last;
StkId stack;
CallInfo*end_ci;
CallInfo*base_ci;
int stacksize;
int size_ci;
unsigned short nCcalls;
unsigned short baseCcalls;
lu_byte hookmask;
lu_byte allowhook;
int basehookcount;
int hookcount;
lua_Hook hook;
TValue l_gt;
TValue env;
GCObject*openupval;
GCObject*gclist;
struct lua_longjmp*errorJmp;
ptrdiff_t errfunc;
};
#define G(L)(L->l_G)
union GCObject{
GCheader gch;
union TString ts;
union Udata u;
union Closure cl;
struct Table h;
struct Proto p;
struct UpVal uv;
struct lua_State th;
};
#define rawgco2ts(o)check_exp((o)->gch.tt==4,&((o)->ts))
#define gco2ts(o)(&rawgco2ts(o)->tsv)
#define rawgco2u(o)check_exp((o)->gch.tt==7,&((o)->u))
#define gco2u(o)(&rawgco2u(o)->uv)
#define gco2cl(o)check_exp((o)->gch.tt==6,&((o)->cl))
#define gco2h(o)check_exp((o)->gch.tt==5,&((o)->h))
#define gco2p(o)check_exp((o)->gch.tt==(8+1),&((o)->p))
#define gco2uv(o)check_exp((o)->gch.tt==(8+2),&((o)->uv))
#define ngcotouv(o)check_exp((o)==NULL||(o)->gch.tt==(8+2),&((o)->uv))
#define gco2th(o)check_exp((o)->gch.tt==8,&((o)->th))
#define obj2gco(v)(cast(GCObject*,(v)))
static void luaE_freethread(lua_State*L,lua_State*L1);
#define pcRel(pc,p)(cast(int,(pc)-(p)->code)-1)
#define getline_(f,pc)(((f)->lineinfo)?(f)->lineinfo[pc]:0)
#define resethookcount(L)(L->hookcount=L->basehookcount)
static void luaG_typeerror(lua_State*L,const TValue*o,
const char*opname);
static void luaG_runerror(lua_State*L,const char*fmt,...);
#define luaD_checkstack(L,n)if((char*)L->stack_last-(char*)L->top<=(n)*(int)sizeof(TValue))luaD_growstack(L,n);else condhardstacktests(luaD_reallocstack(L,L->stacksize-5-1));
#define incr_top(L){luaD_checkstack(L,1);L->top++;}
#define savestack(L,p)((char*)(p)-(char*)L->stack)
#define restorestack(L,n)((TValue*)((char*)L->stack+(n)))
#define saveci(L,p)((char*)(p)-(char*)L->base_ci)
#define restoreci(L,n)((CallInfo*)((char*)L->base_ci+(n)))
typedef void(*Pfunc)(lua_State*L,void*ud);
static int luaD_poscall(lua_State*L,StkId firstResult);
static void luaD_reallocCI(lua_State*L,int newsize);
static void luaD_reallocstack(lua_State*L,int newsize);
static void luaD_growstack(lua_State*L,int n);
static void luaD_throw(lua_State*L,int errcode);
static void*luaM_growaux_(lua_State*L,void*block,int*size,size_t size_elems,
int limit,const char*errormsg){
void*newblock;
int newsize;
if(*size>=limit/2){
if(*size>=limit)
luaG_runerror(L,errormsg);
newsize=limit;
}
else{
newsize=(*size)*2;
if(newsize<4)
newsize=4;
}
newblock=luaM_reallocv(L,block,*size,newsize,size_elems);
*size=newsize;
return newblock;
}
static void*luaM_toobig(lua_State*L){
luaG_runerror(L,"memory allocation error: block too big");
return NULL;
}
static void*luaM_realloc_(lua_State*L,void*block,size_t osize,size_t nsize){
global_State*g=G(L);
block=(*g->frealloc)(g->ud,block,osize,nsize);
if(block==NULL&&nsize>0)
luaD_throw(L,4);
g->totalbytes=(g->totalbytes-osize)+nsize;
return block;
}
#define resetbits(x,m)((x)&=cast(lu_byte,~(m)))
#define setbits(x,m)((x)|=(m))
#define testbits(x,m)((x)&(m))
#define bitmask(b)(1<<(b))
#define bit2mask(b1,b2)(bitmask(b1)|bitmask(b2))
#define l_setbit(x,b)setbits(x,bitmask(b))
#define resetbit(x,b)resetbits(x,bitmask(b))
#define testbit(x,b)testbits(x,bitmask(b))
#define set2bits(x,b1,b2)setbits(x,(bit2mask(b1,b2)))
#define reset2bits(x,b1,b2)resetbits(x,(bit2mask(b1,b2)))
#define test2bits(x,b1,b2)testbits(x,(bit2mask(b1,b2)))
#define iswhite(x)test2bits((x)->gch.marked,0,1)
#define isblack(x)testbit((x)->gch.marked,2)
#define isgray(x)(!isblack(x)&&!iswhite(x))
#define otherwhite(g)(g->currentwhite^bit2mask(0,1))
#define isdead(g,v)((v)->gch.marked&otherwhite(g)&bit2mask(0,1))
#define changewhite(x)((x)->gch.marked^=bit2mask(0,1))
#define gray2black(x)l_setbit((x)->gch.marked,2)
#define valiswhite(x)(iscollectable(x)&&iswhite(gcvalue(x)))
#define luaC_white(g)cast(lu_byte,(g)->currentwhite&bit2mask(0,1))
#define luaC_checkGC(L){condhardstacktests(luaD_reallocstack(L,L->stacksize-5-1));if(G(L)->totalbytes>=G(L)->GCthreshold)luaC_step(L);}
#define luaC_barrier(L,p,v){if(valiswhite(v)&&isblack(obj2gco(p)))luaC_barrierf(L,obj2gco(p),gcvalue(v));}
#define luaC_barriert(L,t,v){if(valiswhite(v)&&isblack(obj2gco(t)))luaC_barrierback(L,t);}
#define luaC_objbarrier(L,p,o){if(iswhite(obj2gco(o))&&isblack(obj2gco(p)))luaC_barrierf(L,obj2gco(p),obj2gco(o));}
#define luaC_objbarriert(L,t,o){if(iswhite(obj2gco(o))&&isblack(obj2gco(t)))luaC_barrierback(L,t);}
static void luaC_step(lua_State*L);
static void luaC_link(lua_State*L,GCObject*o,lu_byte tt);
static void luaC_linkupval(lua_State*L,UpVal*uv);
static void luaC_barrierf(lua_State*L,GCObject*o,GCObject*v);
static void luaC_barrierback(lua_State*L,Table*t);
#define sizestring(s)(sizeof(union TString)+((s)->len+1)*sizeof(char))
#define sizeudata(u)(sizeof(union Udata)+(u)->len)
#define luaS_new(L,s)(luaS_newlstr(L,s,strlen(s)))
#define luaS_newliteral(L,s)(luaS_newlstr(L,""s,(sizeof(s)/sizeof(char))-1))
#define luaS_fix(s)l_setbit((s)->tsv.marked,5)
static TString*luaS_newlstr(lua_State*L,const char*str,size_t l);
#define tostring(L,o)((ttype(o)==4)||(luaV_tostring(L,o)))
#define tonumber(o,n)(ttype(o)==3||(((o)=luaV_tonumber(o,n))!=NULL))
#define equalobj(L,o1,o2)(ttype(o1)==ttype(o2)&&luaV_equalval(L,o1,o2))
static int luaV_equalval(lua_State*L,const TValue*t1,const TValue*t2);
static const TValue*luaV_tonumber(const TValue*obj,TValue*n);
static int luaV_tostring(lua_State*L,StkId obj);
static void luaV_execute(lua_State*L,int nexeccalls);
static void luaV_concat(lua_State*L,int total,int last);
static const TValue luaO_nilobject_={{NULL},0};
static int luaO_int2fb(unsigned int x){
int e=0;
while(x>=16){
x=(x+1)>>1;
e++;
}
if(x<8)return x;
else return((e+1)<<3)|(cast_int(x)-8);
}
static int luaO_fb2int(int x){
int e=(x>>3)&31;
if(e==0)return x;
else return((x&7)+8)<<(e-1);
}
static int luaO_log2(unsigned int x){
static const lu_byte log_2[256]={
0,1,2,2,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,
6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8
};
int l=-1;
while(x>=256){l+=8;x>>=8;}
return l+log_2[x];
}
static int luaO_rawequalObj(const TValue*t1,const TValue*t2){
if(ttype(t1)!=ttype(t2))return 0;
else switch(ttype(t1)){
case 0:
return 1;
case 3:
return luai_numeq(nvalue(t1),nvalue(t2));
case 1:
return bvalue(t1)==bvalue(t2);
case 2:
return pvalue(t1)==pvalue(t2);
default:
return gcvalue(t1)==gcvalue(t2);
}
}
static int luaO_str2d(const char*s,lua_Number*result){
char*endptr;
*result=lua_str2number(s,&endptr);
if(endptr==s)return 0;
if(*endptr=='x'||*endptr=='X')
*result=cast_num(strtoul(s,&endptr,16));
if(*endptr=='\0')return 1;
while(isspace(cast(unsigned char,*endptr)))endptr++;
if(*endptr!='\0')return 0;
return 1;
}
static void pushstr(lua_State*L,const char*str){
setsvalue(L,L->top,luaS_new(L,str));
incr_top(L);
}
static const char*luaO_pushvfstring(lua_State*L,const char*fmt,va_list argp){
int n=1;
pushstr(L,"");
for(;;){
const char*e=strchr(fmt,'%');
if(e==NULL)break;
setsvalue(L,L->top,luaS_newlstr(L,fmt,e-fmt));
incr_top(L);
switch(*(e+1)){
case's':{
const char*s=va_arg(argp,char*);
if(s==NULL)s="(null)";
pushstr(L,s);
break;
}
case'c':{
char buff[2];
buff[0]=cast(char,va_arg(argp,int));
buff[1]='\0';
pushstr(L,buff);
break;
}
case'd':{
setnvalue(L->top,cast_num(va_arg(argp,int)));
incr_top(L);
break;
}
case'f':{
setnvalue(L->top,cast_num(va_arg(argp,l_uacNumber)));
incr_top(L);
break;
}
case'p':{
char buff[4*sizeof(void*)+8];
sprintf(buff,"%p",va_arg(argp,void*));
pushstr(L,buff);
break;
}
case'%':{
pushstr(L,"%");
break;
}
default:{
char buff[3];
buff[0]='%';
buff[1]=*(e+1);
buff[2]='\0';
pushstr(L,buff);
break;
}
}
n+=2;
fmt=e+2;
}
pushstr(L,fmt);
luaV_concat(L,n+1,cast_int(L->top-L->base)-1);
L->top-=n;
return svalue(L->top-1);
}
static const char*luaO_pushfstring(lua_State*L,const char*fmt,...){
const char*msg;
va_list argp;
va_start(argp,fmt);
msg=luaO_pushvfstring(L,fmt,argp);
va_end(argp);
return msg;
}
static void luaO_chunkid(char*out,const char*source,size_t bufflen){
if(*source=='='){
strncpy(out,source+1,bufflen);
out[bufflen-1]='\0';
}
else{
if(*source=='@'){
size_t l;
source++;
bufflen-=sizeof(" '...' ");
l=strlen(source);
strcpy(out,"");
if(l>bufflen){
source+=(l-bufflen);
strcat(out,"...");
}
strcat(out,source);
}
else{
size_t len=strcspn(source,"\n\r");
bufflen-=sizeof(" [string \"...\"] ");
if(len>bufflen)len=bufflen;
strcpy(out,"[string \"");
if(source[len]!='\0'){
strncat(out,source,len);
strcat(out,"...");
}
else
strcat(out,source);
strcat(out,"\"]");
}
}
}
#define gnode(t,i)(&(t)->node[i])
#define gkey(n)(&(n)->i_key.nk)
#define gval(n)(&(n)->i_val)
#define gnext(n)((n)->i_key.nk.next)
#define key2tval(n)(&(n)->i_key.tvk)
static TValue*luaH_setnum(lua_State*L,Table*t,int key);
static const TValue*luaH_getstr(Table*t,TString*key);
static TValue*luaH_set(lua_State*L,Table*t,const TValue*key);
static const char*const luaT_typenames[]={
"nil","boolean","userdata","number",
"string","table","function","userdata","thread",
"proto","upval"
};
static void luaT_init(lua_State*L){
static const char*const luaT_eventname[]={
"__index","__newindex",
"__gc","__mode","__eq",
"__add","__sub","__mul","__div","__mod",
"__pow","__unm","__len","__lt","__le",
"__concat","__call"
};
int i;
for(i=0;i<TM_N;i++){
G(L)->tmname[i]=luaS_new(L,luaT_eventname[i]);
luaS_fix(G(L)->tmname[i]);
}
}
static const TValue*luaT_gettm(Table*events,TMS event,TString*ename){
const TValue*tm=luaH_getstr(events,ename);
if(ttisnil(tm)){
events->flags|=cast_byte(1u<<event);
return NULL;
}
else return tm;
}
static const TValue*luaT_gettmbyobj(lua_State*L,const TValue*o,TMS event){
Table*mt;
switch(ttype(o)){
case 5:
mt=hvalue(o)->metatable;
break;
case 7:
mt=uvalue(o)->metatable;
break;
default:
mt=G(L)->mt[ttype(o)];
}
return(mt?luaH_getstr(mt,G(L)->tmname[event]):(&luaO_nilobject_));
}
#define sizeCclosure(n)(cast(int,sizeof(CClosure))+cast(int,sizeof(TValue)*((n)-1)))
#define sizeLclosure(n)(cast(int,sizeof(LClosure))+cast(int,sizeof(TValue*)*((n)-1)))
static Closure*luaF_newCclosure(lua_State*L,int nelems,Table*e){
Closure*c=cast(Closure*,luaM_malloc(L,sizeCclosure(nelems)));
luaC_link(L,obj2gco(c),6);
c->c.isC=1;
c->c.env=e;
c->c.nupvalues=cast_byte(nelems);
return c;
}
static Closure*luaF_newLclosure(lua_State*L,int nelems,Table*e){
Closure*c=cast(Closure*,luaM_malloc(L,sizeLclosure(nelems)));
luaC_link(L,obj2gco(c),6);
c->l.isC=0;
c->l.env=e;
c->l.nupvalues=cast_byte(nelems);
while(nelems--)c->l.upvals[nelems]=NULL;
return c;
}
static UpVal*luaF_newupval(lua_State*L){
UpVal*uv=luaM_new(L,UpVal);
luaC_link(L,obj2gco(uv),(8+2));
uv->v=&uv->u.value;
setnilvalue(uv->v);
return uv;
}
static UpVal*luaF_findupval(lua_State*L,StkId level){
global_State*g=G(L);
GCObject**pp=&L->openupval;
UpVal*p;
UpVal*uv;
while(*pp!=NULL&&(p=ngcotouv(*pp))->v>=level){
if(p->v==level){
if(isdead(g,obj2gco(p)))
changewhite(obj2gco(p));
return p;
}
pp=&p->next;
}
uv=luaM_new(L,UpVal);
uv->tt=(8+2);
uv->marked=luaC_white(g);
uv->v=level;
uv->next=*pp;
*pp=obj2gco(uv);
uv->u.l.prev=&g->uvhead;
uv->u.l.next=g->uvhead.u.l.next;
uv->u.l.next->u.l.prev=uv;
g->uvhead.u.l.next=uv;
return uv;
}
static void unlinkupval(UpVal*uv){
uv->u.l.next->u.l.prev=uv->u.l.prev;
uv->u.l.prev->u.l.next=uv->u.l.next;
}
static void luaF_freeupval(lua_State*L,UpVal*uv){
if(uv->v!=&uv->u.value)
unlinkupval(uv);
luaM_free(L,uv);
}
static void luaF_close(lua_State*L,StkId level){
UpVal*uv;
global_State*g=G(L);
while(L->openupval!=NULL&&(uv=ngcotouv(L->openupval))->v>=level){
GCObject*o=obj2gco(uv);
L->openupval=uv->next;
if(isdead(g,o))
luaF_freeupval(L,uv);
else{
unlinkupval(uv);
setobj(L,&uv->u.value,uv->v);
uv->v=&uv->u.value;
luaC_linkupval(L,uv);
}
}
}
static Proto*luaF_newproto(lua_State*L){
Proto*f=luaM_new(L,Proto);
luaC_link(L,obj2gco(f),(8+1));
f->k=NULL;
f->sizek=0;
f->p=NULL;
f->sizep=0;
f->code=NULL;
f->sizecode=0;
f->sizelineinfo=0;
f->sizeupvalues=0;
f->nups=0;
f->upvalues=NULL;
f->numparams=0;
f->is_vararg=0;
f->maxstacksize=0;
f->lineinfo=NULL;
f->sizelocvars=0;
f->locvars=NULL;
f->linedefined=0;
f->lastlinedefined=0;
f->source=NULL;
return f;
}
static void luaF_freeproto(lua_State*L,Proto*f){
luaM_freearray(L,f->code,f->sizecode,Instruction);
luaM_freearray(L,f->p,f->sizep,Proto*);
luaM_freearray(L,f->k,f->sizek,TValue);
luaM_freearray(L,f->lineinfo,f->sizelineinfo,int);
luaM_freearray(L,f->locvars,f->sizelocvars,struct LocVar);
luaM_freearray(L,f->upvalues,f->sizeupvalues,TString*);
luaM_free(L,f);
}
static void luaF_freeclosure(lua_State*L,Closure*c){
int size=(c->c.isC)?sizeCclosure(c->c.nupvalues):
sizeLclosure(c->l.nupvalues);
luaM_freemem(L,c,size);
}
#define MASK1(n,p)((~((~(Instruction)0)<<n))<<p)
#define MASK0(n,p)(~MASK1(n,p))
#define GET_OPCODE(i)(cast(OpCode,((i)>>0)&MASK1(6,0)))
#define SET_OPCODE(i,o)((i)=(((i)&MASK0(6,0))|((cast(Instruction,o)<<0)&MASK1(6,0))))
#define GETARG_A(i)(cast(int,((i)>>(0+6))&MASK1(8,0)))
#define SETARG_A(i,u)((i)=(((i)&MASK0(8,(0+6)))|((cast(Instruction,u)<<(0+6))&MASK1(8,(0+6)))))
#define GETARG_B(i)(cast(int,((i)>>(((0+6)+8)+9))&MASK1(9,0)))
#define SETARG_B(i,b)((i)=(((i)&MASK0(9,(((0+6)+8)+9)))|((cast(Instruction,b)<<(((0+6)+8)+9))&MASK1(9,(((0+6)+8)+9)))))
#define GETARG_C(i)(cast(int,((i)>>((0+6)+8))&MASK1(9,0)))
#define SETARG_C(i,b)((i)=(((i)&MASK0(9,((0+6)+8)))|((cast(Instruction,b)<<((0+6)+8))&MASK1(9,((0+6)+8)))))
#define GETARG_Bx(i)(cast(int,((i)>>((0+6)+8))&MASK1((9+9),0)))
#define SETARG_Bx(i,b)((i)=(((i)&MASK0((9+9),((0+6)+8)))|((cast(Instruction,b)<<((0+6)+8))&MASK1((9+9),((0+6)+8)))))
#define GETARG_sBx(i)(GETARG_Bx(i)-(((1<<(9+9))-1)>>1))
#define SETARG_sBx(i,b)SETARG_Bx((i),cast(unsigned int,(b)+(((1<<(9+9))-1)>>1)))
#define CREATE_ABC(o,a,b,c)((cast(Instruction,o)<<0)|(cast(Instruction,a)<<(0+6))|(cast(Instruction,b)<<(((0+6)+8)+9))|(cast(Instruction,c)<<((0+6)+8)))
#define CREATE_ABx(o,a,bc)((cast(Instruction,o)<<0)|(cast(Instruction,a)<<(0+6))|(cast(Instruction,bc)<<((0+6)+8)))
#define ISK(x)((x)&(1<<(9-1)))
#define INDEXK(r)((int)(r)&~(1<<(9-1)))
#define RKASK(x)((x)|(1<<(9-1)))
static const lu_byte luaP_opmodes[(cast(int,OP_VARARG)+1)];
#define getBMode(m)(cast(enum OpArgMask,(luaP_opmodes[m]>>4)&3))
#define getCMode(m)(cast(enum OpArgMask,(luaP_opmodes[m]>>2)&3))
#define testTMode(m)(luaP_opmodes[m]&(1<<7))
typedef struct expdesc{
expkind k;
union{
struct{int info,aux;}s;
lua_Number nval;
}u;
int t;
int f;
}expdesc;
typedef struct upvaldesc{
lu_byte k;
lu_byte info;
}upvaldesc;
struct BlockCnt;
typedef struct FuncState{
Proto*f;
Table*h;
struct FuncState*prev;
struct LexState*ls;
struct lua_State*L;
struct BlockCnt*bl;
int pc;
int lasttarget;
int jpc;
int freereg;
int nk;
int np;
short nlocvars;
lu_byte nactvar;
upvaldesc upvalues[60];
unsigned short actvar[200];
}FuncState;
static Proto*luaY_parser(lua_State*L,ZIO*z,Mbuffer*buff,
const char*name);
struct lua_longjmp{
struct lua_longjmp*previous;
jmp_buf b;
volatile int status;
};
static void luaD_seterrorobj(lua_State*L,int errcode,StkId oldtop){
switch(errcode){
case 4:{
setsvalue(L,oldtop,luaS_newliteral(L,"not enough memory"));
break;
}
case 5:{
setsvalue(L,oldtop,luaS_newliteral(L,"error in error handling"));
break;
}
case 3:
case 2:{
setobj(L,oldtop,L->top-1);
break;
}
}
L->top=oldtop+1;
}
static void restore_stack_limit(lua_State*L){
if(L->size_ci>20000){
int inuse=cast_int(L->ci-L->base_ci);
if(inuse+1<20000)
luaD_reallocCI(L,20000);
}
}
static void resetstack(lua_State*L,int status){
L->ci=L->base_ci;
L->base=L->ci->base;
luaF_close(L,L->base);
luaD_seterrorobj(L,status,L->base);
L->nCcalls=L->baseCcalls;
L->allowhook=1;
restore_stack_limit(L);
L->errfunc=0;
L->errorJmp=NULL;
}
static void luaD_throw(lua_State*L,int errcode){
if(L->errorJmp){
L->errorJmp->status=errcode;
LUAI_THROW(L,L->errorJmp);
}
else{
L->status=cast_byte(errcode);
if(G(L)->panic){
resetstack(L,errcode);
G(L)->panic(L);
}
exit(EXIT_FAILURE);
}
}
static int luaD_rawrunprotected(lua_State*L,Pfunc f,void*ud){
struct lua_longjmp lj;
lj.status=0;
lj.previous=L->errorJmp;
L->errorJmp=&lj;
LUAI_TRY(L,&lj,
(*f)(L,ud);
);
L->errorJmp=lj.previous;
return lj.status;
}
static void correctstack(lua_State*L,TValue*oldstack){
CallInfo*ci;
GCObject*up;
L->top=(L->top-oldstack)+L->stack;
for(up=L->openupval;up!=NULL;up=up->gch.next)
gco2uv(up)->v=(gco2uv(up)->v-oldstack)+L->stack;
for(ci=L->base_ci;ci<=L->ci;ci++){
ci->top=(ci->top-oldstack)+L->stack;
ci->base=(ci->base-oldstack)+L->stack;
ci->func=(ci->func-oldstack)+L->stack;
}
L->base=(L->base-oldstack)+L->stack;
}
static void luaD_reallocstack(lua_State*L,int newsize){
TValue*oldstack=L->stack;
int realsize=newsize+1+5;
luaM_reallocvector(L,L->stack,L->stacksize,realsize,TValue);
L->stacksize=realsize;
L->stack_last=L->stack+newsize;
correctstack(L,oldstack);
}
static void luaD_reallocCI(lua_State*L,int newsize){
CallInfo*oldci=L->base_ci;
luaM_reallocvector(L,L->base_ci,L->size_ci,newsize,CallInfo);
L->size_ci=newsize;
L->ci=(L->ci-oldci)+L->base_ci;
L->end_ci=L->base_ci+L->size_ci-1;
}
static void luaD_growstack(lua_State*L,int n){
if(n<=L->stacksize)
luaD_reallocstack(L,2*L->stacksize);
else
luaD_reallocstack(L,L->stacksize+n);
}
static CallInfo*growCI(lua_State*L){
if(L->size_ci>20000)
luaD_throw(L,5);
else{
luaD_reallocCI(L,2*L->size_ci);
if(L->size_ci>20000)
luaG_runerror(L,"stack overflow");
}
return++L->ci;
}
static StkId adjust_varargs(lua_State*L,Proto*p,int actual){
int i;
int nfixargs=p->numparams;
Table*htab=NULL;
StkId base,fixed;
for(;actual<nfixargs;++actual)
setnilvalue(L->top++);
fixed=L->top-actual;
base=L->top;
for(i=0;i<nfixargs;i++){
setobj(L,L->top++,fixed+i);
setnilvalue(fixed+i);
}
if(htab){
sethvalue(L,L->top++,htab);
}
return base;
}
static StkId tryfuncTM(lua_State*L,StkId func){
const TValue*tm=luaT_gettmbyobj(L,func,TM_CALL);
StkId p;
ptrdiff_t funcr=savestack(L,func);
if(!ttisfunction(tm))
luaG_typeerror(L,func,"call");
for(p=L->top;p>func;p--)setobj(L,p,p-1);
incr_top(L);
func=restorestack(L,funcr);
setobj(L,func,tm);
return func;
}
#define inc_ci(L)((L->ci==L->end_ci)?growCI(L):(condhardstacktests(luaD_reallocCI(L,L->size_ci)),++L->ci))
static int luaD_precall(lua_State*L,StkId func,int nresults){
LClosure*cl;
ptrdiff_t funcr;
if(!ttisfunction(func))
func=tryfuncTM(L,func);
funcr=savestack(L,func);
cl=&clvalue(func)->l;
L->ci->savedpc=L->savedpc;
if(!cl->isC){
CallInfo*ci;
StkId st,base;
Proto*p=cl->p;
luaD_checkstack(L,p->maxstacksize);
func=restorestack(L,funcr);
if(!p->is_vararg){
base=func+1;
if(L->top>base+p->numparams)
L->top=base+p->numparams;
}
else{
int nargs=cast_int(L->top-func)-1;
base=adjust_varargs(L,p,nargs);
func=restorestack(L,funcr);
}
ci=inc_ci(L);
ci->func=func;
L->base=ci->base=base;
ci->top=L->base+p->maxstacksize;
L->savedpc=p->code;
ci->tailcalls=0;
ci->nresults=nresults;
for(st=L->top;st<ci->top;st++)
setnilvalue(st);
L->top=ci->top;
return 0;
}
else{
CallInfo*ci;
int n;
luaD_checkstack(L,20);
ci=inc_ci(L);
ci->func=restorestack(L,funcr);
L->base=ci->base=ci->func+1;
ci->top=L->top+20;
ci->nresults=nresults;
n=(*curr_func(L)->c.f)(L);
if(n<0)
return 2;
else{
luaD_poscall(L,L->top-n);
return 1;
}
}
}
static int luaD_poscall(lua_State*L,StkId firstResult){
StkId res;
int wanted,i;
CallInfo*ci;
ci=L->ci--;
res=ci->func;
wanted=ci->nresults;
L->base=(ci-1)->base;
L->savedpc=(ci-1)->savedpc;
for(i=wanted;i!=0&&firstResult<L->top;i--)
setobj(L,res++,firstResult++);
while(i-->0)
setnilvalue(res++);
L->top=res;
return(wanted-(-1));
}
static void luaD_call(lua_State*L,StkId func,int nResults){
if(++L->nCcalls>=200){
if(L->nCcalls==200)
luaG_runerror(L,"C stack overflow");
else if(L->nCcalls>=(200+(200>>3)))
luaD_throw(L,5);
}
if(luaD_precall(L,func,nResults)==0)
luaV_execute(L,1);
L->nCcalls--;
luaC_checkGC(L);
}
static int luaD_pcall(lua_State*L,Pfunc func,void*u,
ptrdiff_t old_top,ptrdiff_t ef){
int status;
unsigned short oldnCcalls=L->nCcalls;
ptrdiff_t old_ci=saveci(L,L->ci);
lu_byte old_allowhooks=L->allowhook;
ptrdiff_t old_errfunc=L->errfunc;
L->errfunc=ef;
status=luaD_rawrunprotected(L,func,u);
if(status!=0){
StkId oldtop=restorestack(L,old_top);
luaF_close(L,oldtop);
luaD_seterrorobj(L,status,oldtop);
L->nCcalls=oldnCcalls;
L->ci=restoreci(L,old_ci);
L->base=L->ci->base;
L->savedpc=L->ci->savedpc;
L->allowhook=old_allowhooks;
restore_stack_limit(L);
}
L->errfunc=old_errfunc;
return status;
}
struct SParser{
ZIO*z;
Mbuffer buff;
const char*name;
};
static void f_parser(lua_State*L,void*ud){
int i;
Proto*tf;
Closure*cl;
struct SParser*p=cast(struct SParser*,ud);
luaC_checkGC(L);
tf=luaY_parser(L,p->z,
&p->buff,p->name);
cl=luaF_newLclosure(L,tf->nups,hvalue(gt(L)));
cl->l.p=tf;
for(i=0;i<tf->nups;i++)
cl->l.upvals[i]=luaF_newupval(L);
setclvalue(L,L->top,cl);
incr_top(L);
}
static int luaD_protectedparser(lua_State*L,ZIO*z,const char*name){
struct SParser p;
int status;
p.z=z;p.name=name;
luaZ_initbuffer(L,&p.buff);
status=luaD_pcall(L,f_parser,&p,savestack(L,L->top),L->errfunc);
luaZ_freebuffer(L,&p.buff);
return status;
}
static void luaS_resize(lua_State*L,int newsize){
GCObject**newhash;
stringtable*tb;
int i;
if(G(L)->gcstate==2)
return;
newhash=luaM_newvector(L,newsize,GCObject*);
tb=&G(L)->strt;
for(i=0;i<newsize;i++)newhash[i]=NULL;
for(i=0;i<tb->size;i++){
GCObject*p=tb->hash[i];
while(p){
GCObject*next=p->gch.next;
unsigned int h=gco2ts(p)->hash;
int h1=lmod(h,newsize);
p->gch.next=newhash[h1];
newhash[h1]=p;
p=next;
}
}
luaM_freearray(L,tb->hash,tb->size,TString*);
tb->size=newsize;
tb->hash=newhash;
}
static TString*newlstr(lua_State*L,const char*str,size_t l,
unsigned int h){
TString*ts;
stringtable*tb;
if(l+1>(((size_t)(~(size_t)0)-2)-sizeof(TString))/sizeof(char))
luaM_toobig(L);
ts=cast(TString*,luaM_malloc(L,(l+1)*sizeof(char)+sizeof(TString)));
ts->tsv.len=l;
ts->tsv.hash=h;
ts->tsv.marked=luaC_white(G(L));
ts->tsv.tt=4;
ts->tsv.reserved=0;
memcpy(ts+1,str,l*sizeof(char));
((char*)(ts+1))[l]='\0';
tb=&G(L)->strt;
h=lmod(h,tb->size);
ts->tsv.next=tb->hash[h];
tb->hash[h]=obj2gco(ts);
tb->nuse++;
if(tb->nuse>cast(lu_int32,tb->size)&&tb->size<=(INT_MAX-2)/2)
luaS_resize(L,tb->size*2);
return ts;
}
static TString*luaS_newlstr(lua_State*L,const char*str,size_t l){
GCObject*o;
unsigned int h=cast(unsigned int,l);
size_t step=(l>>5)+1;
size_t l1;
for(l1=l;l1>=step;l1-=step)
h=h^((h<<5)+(h>>2)+cast(unsigned char,str[l1-1]));
for(o=G(L)->strt.hash[lmod(h,G(L)->strt.size)];
o!=NULL;
o=o->gch.next){
TString*ts=rawgco2ts(o);
if(ts->tsv.len==l&&(memcmp(str,getstr(ts),l)==0)){
if(isdead(G(L),o))changewhite(o);
return ts;
}
}
return newlstr(L,str,l,h);
}
static Udata*luaS_newudata(lua_State*L,size_t s,Table*e){
Udata*u;
if(s>((size_t)(~(size_t)0)-2)-sizeof(Udata))
luaM_toobig(L);
u=cast(Udata*,luaM_malloc(L,s+sizeof(Udata)));
u->uv.marked=luaC_white(G(L));
u->uv.tt=7;
u->uv.len=s;
u->uv.metatable=NULL;
u->uv.env=e;
u->uv.next=G(L)->mainthread->next;
G(L)->mainthread->next=obj2gco(u);
return u;
}
#define hashpow2(t,n)(gnode(t,lmod((n),sizenode(t))))
#define hashstr(t,str)hashpow2(t,(str)->tsv.hash)
#define hashboolean(t,p)hashpow2(t,p)
#define hashmod(t,n)(gnode(t,((n)%((sizenode(t)-1)|1))))
#define hashpointer(t,p)hashmod(t,IntPoint(p))
static const Node dummynode_={
{{NULL},0},
{{{NULL},0,NULL}}
};
static Node*hashnum(const Table*t,lua_Number n){
unsigned int a[cast_int(sizeof(lua_Number)/sizeof(int))];
int i;
if(luai_numeq(n,0))
return gnode(t,0);
memcpy(a,&n,sizeof(a));
for(i=1;i<cast_int(sizeof(lua_Number)/sizeof(int));i++)a[0]+=a[i];
return hashmod(t,a[0]);
}
static Node*mainposition(const Table*t,const TValue*key){
switch(ttype(key)){
case 3:
return hashnum(t,nvalue(key));
case 4:
return hashstr(t,rawtsvalue(key));
case 1:
return hashboolean(t,bvalue(key));
case 2:
return hashpointer(t,pvalue(key));
default:
return hashpointer(t,gcvalue(key));
}
}
static int arrayindex(const TValue*key){
if(ttisnumber(key)){
lua_Number n=nvalue(key);
int k;
lua_number2int(k,n);
if(luai_numeq(cast_num(k),n))
return k;
}
return-1;
}
static int findindex(lua_State*L,Table*t,StkId key){
int i;
if(ttisnil(key))return-1;
i=arrayindex(key);
if(0<i&&i<=t->sizearray)
return i-1;
else{
Node*n=mainposition(t,key);
do{
if(luaO_rawequalObj(key2tval(n),key)||
(ttype(gkey(n))==(8+3)&&iscollectable(key)&&
gcvalue(gkey(n))==gcvalue(key))){
i=cast_int(n-gnode(t,0));
return i+t->sizearray;
}
else n=gnext(n);
}while(n);
luaG_runerror(L,"invalid key to "LUA_QL("next"));
return 0;
}
}
static int luaH_next(lua_State*L,Table*t,StkId key){
int i=findindex(L,t,key);
for(i++;i<t->sizearray;i++){
if(!ttisnil(&t->array[i])){
setnvalue(key,cast_num(i+1));
setobj(L,key+1,&t->array[i]);
return 1;
}
}
for(i-=t->sizearray;i<(int)sizenode(t);i++){
if(!ttisnil(gval(gnode(t,i)))){
setobj(L,key,key2tval(gnode(t,i)));
setobj(L,key+1,gval(gnode(t,i)));
return 1;
}
}
return 0;
}
static int computesizes(int nums[],int*narray){
int i;
int twotoi;
int a=0;
int na=0;
int n=0;
for(i=0,twotoi=1;twotoi/2<*narray;i++,twotoi*=2){
if(nums[i]>0){
a+=nums[i];
if(a>twotoi/2){
n=twotoi;
na=a;
}
}
if(a==*narray)break;
}
*narray=n;
return na;
}
static int countint(const TValue*key,int*nums){
int k=arrayindex(key);
if(0<k&&k<=(1<<(32-2))){
nums[ceillog2(k)]++;
return 1;
}
else
return 0;
}
static int numusearray(const Table*t,int*nums){
int lg;
int ttlg;
int ause=0;
int i=1;
for(lg=0,ttlg=1;lg<=(32-2);lg++,ttlg*=2){
int lc=0;
int lim=ttlg;
if(lim>t->sizearray){
lim=t->sizearray;
if(i>lim)
break;
}
for(;i<=lim;i++){
if(!ttisnil(&t->array[i-1]))
lc++;
}
nums[lg]+=lc;
ause+=lc;
}
return ause;
}
static int numusehash(const Table*t,int*nums,int*pnasize){
int totaluse=0;
int ause=0;
int i=sizenode(t);
while(i--){
Node*n=&t->node[i];
if(!ttisnil(gval(n))){
ause+=countint(key2tval(n),nums);
totaluse++;
}
}
*pnasize+=ause;
return totaluse;
}
static void setarrayvector(lua_State*L,Table*t,int size){
int i;
luaM_reallocvector(L,t->array,t->sizearray,size,TValue);
for(i=t->sizearray;i<size;i++)
setnilvalue(&t->array[i]);
t->sizearray=size;
}
static void setnodevector(lua_State*L,Table*t,int size){
int lsize;
if(size==0){
t->node=cast(Node*,(&dummynode_));
lsize=0;
}
else{
int i;
lsize=ceillog2(size);
if(lsize>(32-2))
luaG_runerror(L,"table overflow");
size=twoto(lsize);
t->node=luaM_newvector(L,size,Node);
for(i=0;i<size;i++){
Node*n=gnode(t,i);
gnext(n)=NULL;
setnilvalue(gkey(n));
setnilvalue(gval(n));
}
}
t->lsizenode=cast_byte(lsize);
t->lastfree=gnode(t,size);
}
static void resize(lua_State*L,Table*t,int nasize,int nhsize){
int i;
int oldasize=t->sizearray;
int oldhsize=t->lsizenode;
Node*nold=t->node;
if(nasize>oldasize)
setarrayvector(L,t,nasize);
setnodevector(L,t,nhsize);
if(nasize<oldasize){
t->sizearray=nasize;
for(i=nasize;i<oldasize;i++){
if(!ttisnil(&t->array[i]))
setobj(L,luaH_setnum(L,t,i+1),&t->array[i]);
}
luaM_reallocvector(L,t->array,oldasize,nasize,TValue);
}
for(i=twoto(oldhsize)-1;i>=0;i--){
Node*old=nold+i;
if(!ttisnil(gval(old)))
setobj(L,luaH_set(L,t,key2tval(old)),gval(old));
}
if(nold!=(&dummynode_))
luaM_freearray(L,nold,twoto(oldhsize),Node);
}
static void luaH_resizearray(lua_State*L,Table*t,int nasize){
int nsize=(t->node==(&dummynode_))?0:sizenode(t);
resize(L,t,nasize,nsize);
}
static void rehash(lua_State*L,Table*t,const TValue*ek){
int nasize,na;
int nums[(32-2)+1];
int i;
int totaluse;
for(i=0;i<=(32-2);i++)nums[i]=0;
nasize=numusearray(t,nums);
totaluse=nasize;
totaluse+=numusehash(t,nums,&nasize);
nasize+=countint(ek,nums);
totaluse++;
na=computesizes(nums,&nasize);
resize(L,t,nasize,totaluse-na);
}
static Table*luaH_new(lua_State*L,int narray,int nhash){
Table*t=luaM_new(L,Table);
luaC_link(L,obj2gco(t),5);
t->metatable=NULL;
t->flags=cast_byte(~0);
t->array=NULL;
t->sizearray=0;
t->lsizenode=0;
t->node=cast(Node*,(&dummynode_));
setarrayvector(L,t,narray);
setnodevector(L,t,nhash);
return t;
}
static void luaH_free(lua_State*L,Table*t){
if(t->node!=(&dummynode_))
luaM_freearray(L,t->node,sizenode(t),Node);
luaM_freearray(L,t->array,t->sizearray,TValue);
luaM_free(L,t);
}
static Node*getfreepos(Table*t){
while(t->lastfree-->t->node){
if(ttisnil(gkey(t->lastfree)))
return t->lastfree;
}
return NULL;
}
static TValue*newkey(lua_State*L,Table*t,const TValue*key){
Node*mp=mainposition(t,key);
if(!ttisnil(gval(mp))||mp==(&dummynode_)){
Node*othern;
Node*n=getfreepos(t);
if(n==NULL){
rehash(L,t,key);
return luaH_set(L,t,key);
}
othern=mainposition(t,key2tval(mp));
if(othern!=mp){
while(gnext(othern)!=mp)othern=gnext(othern);
gnext(othern)=n;
*n=*mp;
gnext(mp)=NULL;
setnilvalue(gval(mp));
}
else{
gnext(n)=gnext(mp);
gnext(mp)=n;
mp=n;
}
}
gkey(mp)->value=key->value;gkey(mp)->tt=key->tt;
luaC_barriert(L,t,key);
return gval(mp);
}
static const TValue*luaH_getnum(Table*t,int key){
if(cast(unsigned int,key-1)<cast(unsigned int,t->sizearray))
return&t->array[key-1];
else{
lua_Number nk=cast_num(key);
Node*n=hashnum(t,nk);
do{
if(ttisnumber(gkey(n))&&luai_numeq(nvalue(gkey(n)),nk))
return gval(n);
else n=gnext(n);
}while(n);
return(&luaO_nilobject_);
}
}
static const TValue*luaH_getstr(Table*t,TString*key){
Node*n=hashstr(t,key);
do{
if(ttisstring(gkey(n))&&rawtsvalue(gkey(n))==key)
return gval(n);
else n=gnext(n);
}while(n);
return(&luaO_nilobject_);
}
static const TValue*luaH_get(Table*t,const TValue*key){
switch(ttype(key)){
case 0:return(&luaO_nilobject_);
case 4:return luaH_getstr(t,rawtsvalue(key));
case 3:{
int k;
lua_Number n=nvalue(key);
lua_number2int(k,n);
if(luai_numeq(cast_num(k),nvalue(key)))
return luaH_getnum(t,k);
}
default:{
Node*n=mainposition(t,key);
do{
if(luaO_rawequalObj(key2tval(n),key))
return gval(n);
else n=gnext(n);
}while(n);
return(&luaO_nilobject_);
}
}
}
static TValue*luaH_set(lua_State*L,Table*t,const TValue*key){
const TValue*p=luaH_get(t,key);
t->flags=0;
if(p!=(&luaO_nilobject_))
return cast(TValue*,p);
else{
if(ttisnil(key))luaG_runerror(L,"table index is nil");
else if(ttisnumber(key)&&luai_numisnan(nvalue(key)))
luaG_runerror(L,"table index is NaN");
return newkey(L,t,key);
}
}
static TValue*luaH_setnum(lua_State*L,Table*t,int key){
const TValue*p=luaH_getnum(t,key);
if(p!=(&luaO_nilobject_))
return cast(TValue*,p);
else{
TValue k;
setnvalue(&k,cast_num(key));
return newkey(L,t,&k);
}
}
static TValue*luaH_setstr(lua_State*L,Table*t,TString*key){
const TValue*p=luaH_getstr(t,key);
if(p!=(&luaO_nilobject_))
return cast(TValue*,p);
else{
TValue k;
setsvalue(L,&k,key);
return newkey(L,t,&k);
}
}
static int unbound_search(Table*t,unsigned int j){
unsigned int i=j;
j++;
while(!ttisnil(luaH_getnum(t,j))){
i=j;
j*=2;
if(j>cast(unsigned int,(INT_MAX-2))){
i=1;
while(!ttisnil(luaH_getnum(t,i)))i++;
return i-1;
}
}
while(j-i>1){
unsigned int m=(i+j)/2;
if(ttisnil(luaH_getnum(t,m)))j=m;
else i=m;
}
return i;
}
static int luaH_getn(Table*t){
unsigned int j=t->sizearray;
if(j>0&&ttisnil(&t->array[j-1])){
unsigned int i=0;
while(j-i>1){
unsigned int m=(i+j)/2;
if(ttisnil(&t->array[m-1]))j=m;
else i=m;
}
return i;
}
else if(t->node==(&dummynode_))
return j;
else return unbound_search(t,j);
}
#define makewhite(g,x)((x)->gch.marked=cast_byte(((x)->gch.marked&cast_byte(~(bitmask(2)|bit2mask(0,1))))|luaC_white(g)))
#define white2gray(x)reset2bits((x)->gch.marked,0,1)
#define black2gray(x)resetbit((x)->gch.marked,2)
#define stringmark(s)reset2bits((s)->tsv.marked,0,1)
#define isfinalized(u)testbit((u)->marked,3)
#define markfinalized(u)l_setbit((u)->marked,3)
#define markvalue(g,o){checkconsistency(o);if(iscollectable(o)&&iswhite(gcvalue(o)))reallymarkobject(g,gcvalue(o));}
#define markobject(g,t){if(iswhite(obj2gco(t)))reallymarkobject(g,obj2gco(t));}
#define setthreshold(g)(g->GCthreshold=(g->estimate/100)*g->gcpause)
static void removeentry(Node*n){
if(iscollectable(gkey(n)))
setttype(gkey(n),(8+3));
}
static void reallymarkobject(global_State*g,GCObject*o){
white2gray(o);
switch(o->gch.tt){
case 4:{
return;
}
case 7:{
Table*mt=gco2u(o)->metatable;
gray2black(o);
if(mt)markobject(g,mt);
markobject(g,gco2u(o)->env);
return;
}
case(8+2):{
UpVal*uv=gco2uv(o);
markvalue(g,uv->v);
if(uv->v==&uv->u.value)
gray2black(o);
return;
}
case 6:{
gco2cl(o)->c.gclist=g->gray;
g->gray=o;
break;
}
case 5:{
gco2h(o)->gclist=g->gray;
g->gray=o;
break;
}
case 8:{
gco2th(o)->gclist=g->gray;
g->gray=o;
break;
}
case(8+1):{
gco2p(o)->gclist=g->gray;
g->gray=o;
break;
}
default:;
}
}
static void marktmu(global_State*g){
GCObject*u=g->tmudata;
if(u){
do{
u=u->gch.next;
makewhite(g,u);
reallymarkobject(g,u);
}while(u!=g->tmudata);
}
}
static size_t luaC_separateudata(lua_State*L,int all){
global_State*g=G(L);
size_t deadmem=0;
GCObject**p=&g->mainthread->next;
GCObject*curr;
while((curr=*p)!=NULL){
if(!(iswhite(curr)||all)||isfinalized(gco2u(curr)))
p=&curr->gch.next;
else if(fasttm(L,gco2u(curr)->metatable,TM_GC)==NULL){
markfinalized(gco2u(curr));
p=&curr->gch.next;
}
else{
deadmem+=sizeudata(gco2u(curr));
markfinalized(gco2u(curr));
*p=curr->gch.next;
if(g->tmudata==NULL)
g->tmudata=curr->gch.next=curr;
else{
curr->gch.next=g->tmudata->gch.next;
g->tmudata->gch.next=curr;
g->tmudata=curr;
}
}
}
return deadmem;
}
static int traversetable(global_State*g,Table*h){
int i;
int weakkey=0;
int weakvalue=0;
const TValue*mode;
if(h->metatable)
markobject(g,h->metatable);
mode=gfasttm(g,h->metatable,TM_MODE);
if(mode&&ttisstring(mode)){
weakkey=(strchr(svalue(mode),'k')!=NULL);
weakvalue=(strchr(svalue(mode),'v')!=NULL);
if(weakkey||weakvalue){
h->marked&=~(bitmask(3)|bitmask(4));
h->marked|=cast_byte((weakkey<<3)|
(weakvalue<<4));
h->gclist=g->weak;
g->weak=obj2gco(h);
}
}
if(weakkey&&weakvalue)return 1;
if(!weakvalue){
i=h->sizearray;
while(i--)
markvalue(g,&h->array[i]);
}
i=sizenode(h);
while(i--){
Node*n=gnode(h,i);
if(ttisnil(gval(n)))
removeentry(n);
else{
if(!weakkey)markvalue(g,gkey(n));
if(!weakvalue)markvalue(g,gval(n));
}
}
return weakkey||weakvalue;
}
static void traverseproto(global_State*g,Proto*f){
int i;
if(f->source)stringmark(f->source);
for(i=0;i<f->sizek;i++)
markvalue(g,&f->k[i]);
for(i=0;i<f->sizeupvalues;i++){
if(f->upvalues[i])
stringmark(f->upvalues[i]);
}
for(i=0;i<f->sizep;i++){
if(f->p[i])
markobject(g,f->p[i]);
}
for(i=0;i<f->sizelocvars;i++){
if(f->locvars[i].varname)
stringmark(f->locvars[i].varname);
}
}
static void traverseclosure(global_State*g,Closure*cl){
markobject(g,cl->c.env);
if(cl->c.isC){
int i;
for(i=0;i<cl->c.nupvalues;i++)
markvalue(g,&cl->c.upvalue[i]);
}
else{
int i;
markobject(g,cl->l.p);
for(i=0;i<cl->l.nupvalues;i++)
markobject(g,cl->l.upvals[i]);
}
}
static void checkstacksizes(lua_State*L,StkId max){
int ci_used=cast_int(L->ci-L->base_ci);
int s_used=cast_int(max-L->stack);
if(L->size_ci>20000)
return;
if(4*ci_used<L->size_ci&&2*8<L->size_ci)
luaD_reallocCI(L,L->size_ci/2);
condhardstacktests(luaD_reallocCI(L,ci_used+1));
if(4*s_used<L->stacksize&&
2*((2*20)+5)<L->stacksize)
luaD_reallocstack(L,L->stacksize/2);
condhardstacktests(luaD_reallocstack(L,s_used));
}
static void traversestack(global_State*g,lua_State*l){
StkId o,lim;
CallInfo*ci;
markvalue(g,gt(l));
lim=l->top;
for(ci=l->base_ci;ci<=l->ci;ci++){
if(lim<ci->top)lim=ci->top;
}
for(o=l->stack;o<l->top;o++)
markvalue(g,o);
for(;o<=lim;o++)
setnilvalue(o);
checkstacksizes(l,lim);
}
static l_mem propagatemark(global_State*g){
GCObject*o=g->gray;
gray2black(o);
switch(o->gch.tt){
case 5:{
Table*h=gco2h(o);
g->gray=h->gclist;
if(traversetable(g,h))
black2gray(o);
return sizeof(Table)+sizeof(TValue)*h->sizearray+
sizeof(Node)*sizenode(h);
}
case 6:{
Closure*cl=gco2cl(o);
g->gray=cl->c.gclist;
traverseclosure(g,cl);
return(cl->c.isC)?sizeCclosure(cl->c.nupvalues):
sizeLclosure(cl->l.nupvalues);
}
case 8:{
lua_State*th=gco2th(o);
g->gray=th->gclist;
th->gclist=g->grayagain;
g->grayagain=o;
black2gray(o);
traversestack(g,th);
return sizeof(lua_State)+sizeof(TValue)*th->stacksize+
sizeof(CallInfo)*th->size_ci;
}
case(8+1):{
Proto*p=gco2p(o);
g->gray=p->gclist;
traverseproto(g,p);
return sizeof(Proto)+sizeof(Instruction)*p->sizecode+
sizeof(Proto*)*p->sizep+
sizeof(TValue)*p->sizek+
sizeof(int)*p->sizelineinfo+
sizeof(LocVar)*p->sizelocvars+
sizeof(TString*)*p->sizeupvalues;
}
default:return 0;
}
}
static size_t propagateall(global_State*g){
size_t m=0;
while(g->gray)m+=propagatemark(g);
return m;
}
static int iscleared(const TValue*o,int iskey){
if(!iscollectable(o))return 0;
if(ttisstring(o)){
stringmark(rawtsvalue(o));
return 0;
}
return iswhite(gcvalue(o))||
(ttisuserdata(o)&&(!iskey&&isfinalized(uvalue(o))));
}
static void cleartable(GCObject*l){
while(l){
Table*h=gco2h(l);
int i=h->sizearray;
if(testbit(h->marked,4)){
while(i--){
TValue*o=&h->array[i];
if(iscleared(o,0))
setnilvalue(o);
}
}
i=sizenode(h);
while(i--){
Node*n=gnode(h,i);
if(!ttisnil(gval(n))&&
(iscleared(key2tval(n),1)||iscleared(gval(n),0))){
setnilvalue(gval(n));
removeentry(n);
}
}
l=h->gclist;
}
}
static void freeobj(lua_State*L,GCObject*o){
switch(o->gch.tt){
case(8+1):luaF_freeproto(L,gco2p(o));break;
case 6:luaF_freeclosure(L,gco2cl(o));break;
case(8+2):luaF_freeupval(L,gco2uv(o));break;
case 5:luaH_free(L,gco2h(o));break;
case 8:{
luaE_freethread(L,gco2th(o));
break;
}
case 4:{
G(L)->strt.nuse--;
luaM_freemem(L,o,sizestring(gco2ts(o)));
break;
}
case 7:{
luaM_freemem(L,o,sizeudata(gco2u(o)));
break;
}
default:;
}
}
#define sweepwholelist(L,p)sweeplist(L,p,((lu_mem)(~(lu_mem)0)-2))
static GCObject**sweeplist(lua_State*L,GCObject**p,lu_mem count){
GCObject*curr;
global_State*g=G(L);
int deadmask=otherwhite(g);
while((curr=*p)!=NULL&&count-->0){
if(curr->gch.tt==8)
sweepwholelist(L,&gco2th(curr)->openupval);
if((curr->gch.marked^bit2mask(0,1))&deadmask){
makewhite(g,curr);
p=&curr->gch.next;
}
else{
*p=curr->gch.next;
if(curr==g->rootgc)
g->rootgc=curr->gch.next;
freeobj(L,curr);
}
}
return p;
}
static void checkSizes(lua_State*L){
global_State*g=G(L);
if(g->strt.nuse<cast(lu_int32,g->strt.size/4)&&
g->strt.size>32*2)
luaS_resize(L,g->strt.size/2);
if(luaZ_sizebuffer(&g->buff)>32*2){
size_t newsize=luaZ_sizebuffer(&g->buff)/2;
luaZ_resizebuffer(L,&g->buff,newsize);
}
}
static void GCTM(lua_State*L){
global_State*g=G(L);
GCObject*o=g->tmudata->gch.next;
Udata*udata=rawgco2u(o);
const TValue*tm;
if(o==g->tmudata)
g->tmudata=NULL;
else
g->tmudata->gch.next=udata->uv.next;
udata->uv.next=g->mainthread->next;
g->mainthread->next=o;
makewhite(g,o);
tm=fasttm(L,udata->uv.metatable,TM_GC);
if(tm!=NULL){
lu_byte oldah=L->allowhook;
lu_mem oldt=g->GCthreshold;
L->allowhook=0;
g->GCthreshold=2*g->totalbytes;
setobj(L,L->top,tm);
setuvalue(L,L->top+1,udata);
L->top+=2;
luaD_call(L,L->top-2,0);
L->allowhook=oldah;
g->GCthreshold=oldt;
}
}
static void luaC_callGCTM(lua_State*L){
while(G(L)->tmudata)
GCTM(L);
}
static void luaC_freeall(lua_State*L){
global_State*g=G(L);
int i;
g->currentwhite=bit2mask(0,1)|bitmask(6);
sweepwholelist(L,&g->rootgc);
for(i=0;i<g->strt.size;i++)
sweepwholelist(L,&g->strt.hash[i]);
}
static void markmt(global_State*g){
int i;
for(i=0;i<(8+1);i++)
if(g->mt[i])markobject(g,g->mt[i]);
}
static void markroot(lua_State*L){
global_State*g=G(L);
g->gray=NULL;
g->grayagain=NULL;
g->weak=NULL;
markobject(g,g->mainthread);
markvalue(g,gt(g->mainthread));
markvalue(g,registry(L));
markmt(g);
g->gcstate=1;
}
static void remarkupvals(global_State*g){
UpVal*uv;
for(uv=g->uvhead.u.l.next;uv!=&g->uvhead;uv=uv->u.l.next){
if(isgray(obj2gco(uv)))
markvalue(g,uv->v);
}
}
static void atomic(lua_State*L){
global_State*g=G(L);
size_t udsize;
remarkupvals(g);
propagateall(g);
g->gray=g->weak;
g->weak=NULL;
markobject(g,L);
markmt(g);
propagateall(g);
g->gray=g->grayagain;
g->grayagain=NULL;
propagateall(g);
udsize=luaC_separateudata(L,0);
marktmu(g);
udsize+=propagateall(g);
cleartable(g->weak);
g->currentwhite=cast_byte(otherwhite(g));
g->sweepstrgc=0;
g->sweepgc=&g->rootgc;
g->gcstate=2;
g->estimate=g->totalbytes-udsize;
}
static l_mem singlestep(lua_State*L){
global_State*g=G(L);
switch(g->gcstate){
case 0:{
markroot(L);
return 0;
}
case 1:{
if(g->gray)
return propagatemark(g);
else{
atomic(L);
return 0;
}
}
case 2:{
lu_mem old=g->totalbytes;
sweepwholelist(L,&g->strt.hash[g->sweepstrgc++]);
if(g->sweepstrgc>=g->strt.size)
g->gcstate=3;
g->estimate-=old-g->totalbytes;
return 10;
}
case 3:{
lu_mem old=g->totalbytes;
g->sweepgc=sweeplist(L,g->sweepgc,40);
if(*g->sweepgc==NULL){
checkSizes(L);
g->gcstate=4;
}
g->estimate-=old-g->totalbytes;
return 40*10;
}
case 4:{
if(g->tmudata){
GCTM(L);
if(g->estimate>100)
g->estimate-=100;
return 100;
}
else{
g->gcstate=0;
g->gcdept=0;
return 0;
}
}
default:return 0;
}
}
static void luaC_step(lua_State*L){
global_State*g=G(L);
l_mem lim=(1024u/100)*g->gcstepmul;
if(lim==0)
lim=(((lu_mem)(~(lu_mem)0)-2)-1)/2;
g->gcdept+=g->totalbytes-g->GCthreshold;
do{
lim-=singlestep(L);
if(g->gcstate==0)
break;
}while(lim>0);
if(g->gcstate!=0){
if(g->gcdept<1024u)
g->GCthreshold=g->totalbytes+1024u;
else{
g->gcdept-=1024u;
g->GCthreshold=g->totalbytes;
}
}
else{
setthreshold(g);
}
}
static void luaC_barrierf(lua_State*L,GCObject*o,GCObject*v){
global_State*g=G(L);
if(g->gcstate==1)
reallymarkobject(g,v);
else
makewhite(g,o);
}
static void luaC_barrierback(lua_State*L,Table*t){
global_State*g=G(L);
GCObject*o=obj2gco(t);
black2gray(o);
t->gclist=g->grayagain;
g->grayagain=o;
}
static void luaC_link(lua_State*L,GCObject*o,lu_byte tt){
global_State*g=G(L);
o->gch.next=g->rootgc;
g->rootgc=o;
o->gch.marked=luaC_white(g);
o->gch.tt=tt;
}
static void luaC_linkupval(lua_State*L,UpVal*uv){
global_State*g=G(L);
GCObject*o=obj2gco(uv);
o->gch.next=g->rootgc;
g->rootgc=o;
if(isgray(o)){
if(g->gcstate==1){
gray2black(o);
luaC_barrier(L,uv,uv->v);
}
else{
makewhite(g,o);
}
}
}
typedef union{
lua_Number r;
TString*ts;
}SemInfo;
typedef struct Token{
int token;
SemInfo seminfo;
}Token;
typedef struct LexState{
int current;
int linenumber;
int lastline;
Token t;
Token lookahead;
struct FuncState*fs;
struct lua_State*L;
ZIO*z;
Mbuffer*buff;
TString*source;
char decpoint;
}LexState;
static void luaX_init(lua_State*L);
static void luaX_lexerror(LexState*ls,const char*msg,int token);
#define state_size(x)(sizeof(x)+0)
#define fromstate(l)(cast(lu_byte*,(l))-0)
#define tostate(l)(cast(lua_State*,cast(lu_byte*,l)+0))
typedef struct LG{
lua_State l;
global_State g;
}LG;
static void stack_init(lua_State*L1,lua_State*L){
L1->base_ci=luaM_newvector(L,8,CallInfo);
L1->ci=L1->base_ci;
L1->size_ci=8;
L1->end_ci=L1->base_ci+L1->size_ci-1;
L1->stack=luaM_newvector(L,(2*20)+5,TValue);
L1->stacksize=(2*20)+5;
L1->top=L1->stack;
L1->stack_last=L1->stack+(L1->stacksize-5)-1;
L1->ci->func=L1->top;
setnilvalue(L1->top++);
L1->base=L1->ci->base=L1->top;
L1->ci->top=L1->top+20;
}
static void freestack(lua_State*L,lua_State*L1){
luaM_freearray(L,L1->base_ci,L1->size_ci,CallInfo);
luaM_freearray(L,L1->stack,L1->stacksize,TValue);
}
static void f_luaopen(lua_State*L,void*ud){
global_State*g=G(L);
UNUSED(ud);
stack_init(L,L);
sethvalue(L,gt(L),luaH_new(L,0,2));
sethvalue(L,registry(L),luaH_new(L,0,2));
luaS_resize(L,32);
luaT_init(L);
luaX_init(L);
luaS_fix(luaS_newliteral(L,"not enough memory"));
g->GCthreshold=4*g->totalbytes;
}
static void preinit_state(lua_State*L,global_State*g){
G(L)=g;
L->stack=NULL;
L->stacksize=0;
L->errorJmp=NULL;
L->hook=NULL;
L->hookmask=0;
L->basehookcount=0;
L->allowhook=1;
resethookcount(L);
L->openupval=NULL;
L->size_ci=0;
L->nCcalls=L->baseCcalls=0;
L->status=0;
L->base_ci=L->ci=NULL;
L->savedpc=NULL;
L->errfunc=0;
setnilvalue(gt(L));
}
static void close_state(lua_State*L){
global_State*g=G(L);
luaF_close(L,L->stack);
luaC_freeall(L);
luaM_freearray(L,G(L)->strt.hash,G(L)->strt.size,TString*);
luaZ_freebuffer(L,&g->buff);
freestack(L,L);
(*g->frealloc)(g->ud,fromstate(L),state_size(LG),0);
}
static void luaE_freethread(lua_State*L,lua_State*L1){
luaF_close(L1,L1->stack);
freestack(L,L1);
luaM_freemem(L,fromstate(L1),state_size(lua_State));
}
static lua_State*lua_newstate(lua_Alloc f,void*ud){
int i;
lua_State*L;
global_State*g;
void*l=(*f)(ud,NULL,0,state_size(LG));
if(l==NULL)return NULL;
L=tostate(l);
g=&((LG*)L)->g;
L->next=NULL;
L->tt=8;
g->currentwhite=bit2mask(0,5);
L->marked=luaC_white(g);
set2bits(L->marked,5,6);
preinit_state(L,g);
g->frealloc=f;
g->ud=ud;
g->mainthread=L;
g->uvhead.u.l.prev=&g->uvhead;
g->uvhead.u.l.next=&g->uvhead;
g->GCthreshold=0;
g->strt.size=0;
g->strt.nuse=0;
g->strt.hash=NULL;
setnilvalue(registry(L));
luaZ_initbuffer(L,&g->buff);
g->panic=NULL;
g->gcstate=0;
g->rootgc=obj2gco(L);
g->sweepstrgc=0;
g->sweepgc=&g->rootgc;
g->gray=NULL;
g->grayagain=NULL;
g->weak=NULL;
g->tmudata=NULL;
g->totalbytes=sizeof(LG);
g->gcpause=200;
g->gcstepmul=200;
g->gcdept=0;
for(i=0;i<(8+1);i++)g->mt[i]=NULL;
if(luaD_rawrunprotected(L,f_luaopen,NULL)!=0){
close_state(L);
L=NULL;
}
else
{}
return L;
}
static void callallgcTM(lua_State*L,void*ud){
UNUSED(ud);
luaC_callGCTM(L);
}
static void lua_close(lua_State*L){
L=G(L)->mainthread;
luaF_close(L,L->stack);
luaC_separateudata(L,1);
L->errfunc=0;
do{
L->ci=L->base_ci;
L->base=L->top=L->ci->base;
L->nCcalls=L->baseCcalls=0;
}while(luaD_rawrunprotected(L,callallgcTM,NULL)!=0);
close_state(L);
}
#define getcode(fs,e)((fs)->f->code[(e)->u.s.info])
#define luaK_codeAsBx(fs,o,A,sBx)luaK_codeABx(fs,o,A,(sBx)+(((1<<(9+9))-1)>>1))
#define luaK_setmultret(fs,e)luaK_setreturns(fs,e,(-1))
static int luaK_codeABx(FuncState*fs,OpCode o,int A,unsigned int Bx);
static int luaK_codeABC(FuncState*fs,OpCode o,int A,int B,int C);
static void luaK_setreturns(FuncState*fs,expdesc*e,int nresults);
static void luaK_patchtohere(FuncState*fs,int list);
static void luaK_concat(FuncState*fs,int*l1,int l2);
static int currentpc(lua_State*L,CallInfo*ci){
if(!isLua(ci))return-1;
if(ci==L->ci)
ci->savedpc=L->savedpc;
return pcRel(ci->savedpc,ci_func(ci)->l.p);
}
static int currentline(lua_State*L,CallInfo*ci){
int pc=currentpc(L,ci);
if(pc<0)
return-1;
else
return getline_(ci_func(ci)->l.p,pc);
}
static int lua_getstack(lua_State*L,int level,lua_Debug*ar){
int status;
CallInfo*ci;
for(ci=L->ci;level>0&&ci>L->base_ci;ci--){
level--;
if(f_isLua(ci))
level-=ci->tailcalls;
}
if(level==0&&ci>L->base_ci){
status=1;
ar->i_ci=cast_int(ci-L->base_ci);
}
else if(level<0){
status=1;
ar->i_ci=0;
}
else status=0;
return status;
}
static Proto*getluaproto(CallInfo*ci){
return(isLua(ci)?ci_func(ci)->l.p:NULL);
}
static void funcinfo(lua_Debug*ar,Closure*cl){
if(cl->c.isC){
ar->source="=[C]";
ar->linedefined=-1;
ar->lastlinedefined=-1;
ar->what="C";
}
else{
ar->source=getstr(cl->l.p->source);
ar->linedefined=cl->l.p->linedefined;
ar->lastlinedefined=cl->l.p->lastlinedefined;
ar->what=(ar->linedefined==0)?"main":"Lua";
}
luaO_chunkid(ar->short_src,ar->source,60);
}
static void info_tailcall(lua_Debug*ar){
ar->name=ar->namewhat="";
ar->what="tail";
ar->lastlinedefined=ar->linedefined=ar->currentline=-1;
ar->source="=(tail call)";
luaO_chunkid(ar->short_src,ar->source,60);
ar->nups=0;
}
static void collectvalidlines(lua_State*L,Closure*f){
if(f==NULL||f->c.isC){
setnilvalue(L->top);
}
else{
Table*t=luaH_new(L,0,0);
int*lineinfo=f->l.p->lineinfo;
int i;
for(i=0;i<f->l.p->sizelineinfo;i++)
setbvalue(luaH_setnum(L,t,lineinfo[i]),1);
sethvalue(L,L->top,t);
}
incr_top(L);
}
static int auxgetinfo(lua_State*L,const char*what,lua_Debug*ar,
Closure*f,CallInfo*ci){
int status=1;
if(f==NULL){
info_tailcall(ar);
return status;
}
for(;*what;what++){
switch(*what){
case'S':{
funcinfo(ar,f);
break;
}
case'l':{
ar->currentline=(ci)?currentline(L,ci):-1;
break;
}
case'u':{
ar->nups=f->c.nupvalues;
break;
}
case'n':{
ar->namewhat=(ci)?NULL:NULL;
if(ar->namewhat==NULL){
ar->namewhat="";
ar->name=NULL;
}
break;
}
case'L':
case'f':
break;
default:status=0;
}
}
return status;
}
static int lua_getinfo(lua_State*L,const char*what,lua_Debug*ar){
int status;
Closure*f=NULL;
CallInfo*ci=NULL;
if(*what=='>'){
StkId func=L->top-1;
luai_apicheck(L,ttisfunction(func));
what++;
f=clvalue(func);
L->top--;
}
else if(ar->i_ci!=0){
ci=L->base_ci+ar->i_ci;
f=clvalue(ci->func);
}
status=auxgetinfo(L,what,ar,f,ci);
if(strchr(what,'f')){
if(f==NULL)setnilvalue(L->top);
else setclvalue(L,L->top,f);
incr_top(L);
}
if(strchr(what,'L'))
collectvalidlines(L,f);
return status;
}
static int isinstack(CallInfo*ci,const TValue*o){
StkId p;
for(p=ci->base;p<ci->top;p++)
if(o==p)return 1;
return 0;
}
static void luaG_typeerror(lua_State*L,const TValue*o,const char*op){
const char*name=NULL;
const char*t=luaT_typenames[ttype(o)];
const char*kind=(isinstack(L->ci,o))?
NULL:
NULL;
if(kind)
luaG_runerror(L,"attempt to %s %s "LUA_QL("%s")" (a %s value)",
op,kind,name,t);
else
luaG_runerror(L,"attempt to %s a %s value",op,t);
}
static void luaG_concaterror(lua_State*L,StkId p1,StkId p2){
if(ttisstring(p1)||ttisnumber(p1))p1=p2;
luaG_typeerror(L,p1,"concatenate");
}
static void luaG_aritherror(lua_State*L,const TValue*p1,const TValue*p2){
TValue temp;
if(luaV_tonumber(p1,&temp)==NULL)
p2=p1;
luaG_typeerror(L,p2,"perform arithmetic on");
}
static int luaG_ordererror(lua_State*L,const TValue*p1,const TValue*p2){
const char*t1=luaT_typenames[ttype(p1)];
const char*t2=luaT_typenames[ttype(p2)];
if(t1[2]==t2[2])
luaG_runerror(L,"attempt to compare two %s values",t1);
else
luaG_runerror(L,"attempt to compare %s with %s",t1,t2);
return 0;
}
static void addinfo(lua_State*L,const char*msg){
CallInfo*ci=L->ci;
if(isLua(ci)){
char buff[60];
int line=currentline(L,ci);
luaO_chunkid(buff,getstr(getluaproto(ci)->source),60);
luaO_pushfstring(L,"%s:%d: %s",buff,line,msg);
}
}
static void luaG_errormsg(lua_State*L){
if(L->errfunc!=0){
StkId errfunc=restorestack(L,L->errfunc);
if(!ttisfunction(errfunc))luaD_throw(L,5);
setobj(L,L->top,L->top-1);
setobj(L,L->top-1,errfunc);
incr_top(L);
luaD_call(L,L->top-2,1);
}
luaD_throw(L,2);
}
static void luaG_runerror(lua_State*L,const char*fmt,...){
va_list argp;
va_start(argp,fmt);
addinfo(L,luaO_pushvfstring(L,fmt,argp));
va_end(argp);
luaG_errormsg(L);
}
static int luaZ_fill(ZIO*z){
size_t size;
lua_State*L=z->L;
const char*buff;
buff=z->reader(L,z->data,&size);
if(buff==NULL||size==0)return(-1);
z->n=size-1;
z->p=buff;
return char2int(*(z->p++));
}
static void luaZ_init(lua_State*L,ZIO*z,lua_Reader reader,void*data){
z->L=L;
z->reader=reader;
z->data=data;
z->n=0;
z->p=NULL;
}
static char*luaZ_openspace(lua_State*L,Mbuffer*buff,size_t n){
if(n>buff->buffsize){
if(n<32)n=32;
luaZ_resizebuffer(L,buff,n);
}
return buff->buffer;
}
#define opmode(t,a,b,c,m)(((t)<<7)|((a)<<6)|((b)<<4)|((c)<<2)|(m))
static const lu_byte luaP_opmodes[(cast(int,OP_VARARG)+1)]={
opmode(0,1,OpArgR,OpArgN,iABC)
,opmode(0,1,OpArgK,OpArgN,iABx)
,opmode(0,1,OpArgU,OpArgU,iABC)
,opmode(0,1,OpArgR,OpArgN,iABC)
,opmode(0,1,OpArgU,OpArgN,iABC)
,opmode(0,1,OpArgK,OpArgN,iABx)
,opmode(0,1,OpArgR,OpArgK,iABC)
,opmode(0,0,OpArgK,OpArgN,iABx)
,opmode(0,0,OpArgU,OpArgN,iABC)
,opmode(0,0,OpArgK,OpArgK,iABC)
,opmode(0,1,OpArgU,OpArgU,iABC)
,opmode(0,1,OpArgR,OpArgK,iABC)
,opmode(0,1,OpArgK,OpArgK,iABC)
,opmode(0,1,OpArgK,OpArgK,iABC)
,opmode(0,1,OpArgK,OpArgK,iABC)
,opmode(0,1,OpArgK,OpArgK,iABC)
,opmode(0,1,OpArgK,OpArgK,iABC)
,opmode(0,1,OpArgK,OpArgK,iABC)
,opmode(0,1,OpArgR,OpArgN,iABC)
,opmode(0,1,OpArgR,OpArgN,iABC)
,opmode(0,1,OpArgR,OpArgN,iABC)
,opmode(0,1,OpArgR,OpArgR,iABC)
,opmode(0,0,OpArgR,OpArgN,iAsBx)
,opmode(1,0,OpArgK,OpArgK,iABC)
,opmode(1,0,OpArgK,OpArgK,iABC)
,opmode(1,0,OpArgK,OpArgK,iABC)
,opmode(1,1,OpArgR,OpArgU,iABC)
,opmode(1,1,OpArgR,OpArgU,iABC)
,opmode(0,1,OpArgU,OpArgU,iABC)
,opmode(0,1,OpArgU,OpArgU,iABC)
,opmode(0,0,OpArgU,OpArgN,iABC)
,opmode(0,1,OpArgR,OpArgN,iAsBx)
,opmode(0,1,OpArgR,OpArgN,iAsBx)
,opmode(1,0,OpArgN,OpArgU,iABC)
,opmode(0,0,OpArgU,OpArgU,iABC)
,opmode(0,0,OpArgN,OpArgN,iABC)
,opmode(0,1,OpArgU,OpArgN,iABx)
,opmode(0,1,OpArgU,OpArgN,iABC)
};
#define next(ls)(ls->current=zgetc(ls->z))
#define currIsNewline(ls)(ls->current=='\n'||ls->current=='\r')
static const char*const luaX_tokens[]={
"and","break","do","else","elseif",
"end","false","for","function","if",
"in","local","nil","not","or","repeat",
"return","then","true","until","while",
"..","...","==",">=","<=","~=",
"<number>","<name>","<string>","<eof>",
NULL
};
#define save_and_next(ls)(save(ls,ls->current),next(ls))
static void save(LexState*ls,int c){
Mbuffer*b=ls->buff;
if(b->n+1>b->buffsize){
size_t newsize;
if(b->buffsize>=((size_t)(~(size_t)0)-2)/2)
luaX_lexerror(ls,"lexical element too long",0);
newsize=b->buffsize*2;
luaZ_resizebuffer(ls->L,b,newsize);
}
b->buffer[b->n++]=cast(char,c);
}
static void luaX_init(lua_State*L){
int i;
for(i=0;i<(cast(int,TK_WHILE-257+1));i++){
TString*ts=luaS_new(L,luaX_tokens[i]);
luaS_fix(ts);
ts->tsv.reserved=cast_byte(i+1);
}
}
static const char*luaX_token2str(LexState*ls,int token){
if(token<257){
return(iscntrl(token))?luaO_pushfstring(ls->L,"char(%d)",token):
luaO_pushfstring(ls->L,"%c",token);
}
else
return luaX_tokens[token-257];
}
static const char*txtToken(LexState*ls,int token){
switch(token){
case TK_NAME:
case TK_STRING:
case TK_NUMBER:
save(ls,'\0');
return luaZ_buffer(ls->buff);
default:
return luaX_token2str(ls,token);
}
}
static void luaX_lexerror(LexState*ls,const char*msg,int token){
char buff[80];
luaO_chunkid(buff,getstr(ls->source),80);
msg=luaO_pushfstring(ls->L,"%s:%d: %s",buff,ls->linenumber,msg);
if(token)
luaO_pushfstring(ls->L,"%s near "LUA_QL("%s"),msg,txtToken(ls,token));
luaD_throw(ls->L,3);
}
static void luaX_syntaxerror(LexState*ls,const char*msg){
luaX_lexerror(ls,msg,ls->t.token);
}
static TString*luaX_newstring(LexState*ls,const char*str,size_t l){
lua_State*L=ls->L;
TString*ts=luaS_newlstr(L,str,l);
TValue*o=luaH_setstr(L,ls->fs->h,ts);
if(ttisnil(o)){
setbvalue(o,1);
luaC_checkGC(L);
}
return ts;
}
static void inclinenumber(LexState*ls){
int old=ls->current;
next(ls);
if(currIsNewline(ls)&&ls->current!=old)
next(ls);
if(++ls->linenumber>=(INT_MAX-2))
luaX_syntaxerror(ls,"chunk has too many lines");
}
static void luaX_setinput(lua_State*L,LexState*ls,ZIO*z,TString*source){
ls->decpoint='.';
ls->L=L;
ls->lookahead.token=TK_EOS;
ls->z=z;
ls->fs=NULL;
ls->linenumber=1;
ls->lastline=1;
ls->source=source;
luaZ_resizebuffer(ls->L,ls->buff,32);
next(ls);
}
static int check_next(LexState*ls,const char*set){
if(!strchr(set,ls->current))
return 0;
save_and_next(ls);
return 1;
}
static void buffreplace(LexState*ls,char from,char to){
size_t n=luaZ_bufflen(ls->buff);
char*p=luaZ_buffer(ls->buff);
while(n--)
if(p[n]==from)p[n]=to;
}
static void read_numeral(LexState*ls,SemInfo*seminfo){
do{
save_and_next(ls);
}while(isdigit(ls->current)||ls->current=='.');
if(check_next(ls,"Ee"))
check_next(ls,"+-");
while(isalnum(ls->current)||ls->current=='_')
save_and_next(ls);
save(ls,'\0');
buffreplace(ls,'.',ls->decpoint);
if(!luaO_str2d(luaZ_buffer(ls->buff),&seminfo->r))
luaX_lexerror(ls,"malformed number",TK_NUMBER);
}
static int skip_sep(LexState*ls){
int count=0;
int s=ls->current;
save_and_next(ls);
while(ls->current=='='){
save_and_next(ls);
count++;
}
return(ls->current==s)?count:(-count)-1;
}
static void read_long_string(LexState*ls,SemInfo*seminfo,int sep){
int cont=0;
(void)(cont);
save_and_next(ls);
if(currIsNewline(ls))
inclinenumber(ls);
for(;;){
switch(ls->current){
case(-1):
luaX_lexerror(ls,(seminfo)?"unfinished long string":
"unfinished long comment",TK_EOS);
break;
case']':{
if(skip_sep(ls)==sep){
save_and_next(ls);
goto endloop;
}
break;
}
case'\n':
case'\r':{
save(ls,'\n');
inclinenumber(ls);
if(!seminfo)luaZ_resetbuffer(ls->buff);
break;
}
default:{
if(seminfo)save_and_next(ls);
else next(ls);
}
}
}endloop:
if(seminfo)
seminfo->ts=luaX_newstring(ls,luaZ_buffer(ls->buff)+(2+sep),
luaZ_bufflen(ls->buff)-2*(2+sep));
}
static void read_string(LexState*ls,int del,SemInfo*seminfo){
save_and_next(ls);
while(ls->current!=del){
switch(ls->current){
case(-1):
luaX_lexerror(ls,"unfinished string",TK_EOS);
continue;
case'\n':
case'\r':
luaX_lexerror(ls,"unfinished string",TK_STRING);
continue;
case'\\':{
int c;
next(ls);
switch(ls->current){
case'a':c='\a';break;
case'b':c='\b';break;
case'f':c='\f';break;
case'n':c='\n';break;
case'r':c='\r';break;
case't':c='\t';break;
case'v':c='\v';break;
case'\n':
case'\r':save(ls,'\n');inclinenumber(ls);continue;
case(-1):continue;
default:{
if(!isdigit(ls->current))
save_and_next(ls);
else{
int i=0;
c=0;
do{
c=10*c+(ls->current-'0');
next(ls);
}while(++i<3&&isdigit(ls->current));
if(c>UCHAR_MAX)
luaX_lexerror(ls,"escape sequence too large",TK_STRING);
save(ls,c);
}
continue;
}
}
save(ls,c);
next(ls);
continue;
}
default:
save_and_next(ls);
}
}
save_and_next(ls);
seminfo->ts=luaX_newstring(ls,luaZ_buffer(ls->buff)+1,
luaZ_bufflen(ls->buff)-2);
}
static int llex(LexState*ls,SemInfo*seminfo){
luaZ_resetbuffer(ls->buff);
for(;;){
switch(ls->current){
case'\n':
case'\r':{
inclinenumber(ls);
continue;
}
case'-':{
next(ls);
if(ls->current!='-')return'-';
next(ls);
if(ls->current=='['){
int sep=skip_sep(ls);
luaZ_resetbuffer(ls->buff);
if(sep>=0){
read_long_string(ls,NULL,sep);
luaZ_resetbuffer(ls->buff);
continue;
}
}
while(!currIsNewline(ls)&&ls->current!=(-1))
next(ls);
continue;
}
case'[':{
int sep=skip_sep(ls);
if(sep>=0){
read_long_string(ls,seminfo,sep);
return TK_STRING;
}
else if(sep==-1)return'[';
else luaX_lexerror(ls,"invalid long string delimiter",TK_STRING);
}
case'=':{
next(ls);
if(ls->current!='=')return'=';
else{next(ls);return TK_EQ;}
}
case'<':{
next(ls);
if(ls->current!='=')return'<';
else{next(ls);return TK_LE;}
}
case'>':{
next(ls);
if(ls->current!='=')return'>';
else{next(ls);return TK_GE;}
}
case'~':{
next(ls);
if(ls->current!='=')return'~';
else{next(ls);return TK_NE;}
}
case'"':
case'\'':{
read_string(ls,ls->current,seminfo);
return TK_STRING;
}
case'.':{
save_and_next(ls);
if(check_next(ls,".")){
if(check_next(ls,"."))
return TK_DOTS;
else return TK_CONCAT;
}
else if(!isdigit(ls->current))return'.';
else{
read_numeral(ls,seminfo);
return TK_NUMBER;
}
}
case(-1):{
return TK_EOS;
}
default:{
if(isspace(ls->current)){
next(ls);
continue;
}
else if(isdigit(ls->current)){
read_numeral(ls,seminfo);
return TK_NUMBER;
}
else if(isalpha(ls->current)||ls->current=='_'){
TString*ts;
do{
save_and_next(ls);
}while(isalnum(ls->current)||ls->current=='_');
ts=luaX_newstring(ls,luaZ_buffer(ls->buff),
luaZ_bufflen(ls->buff));
if(ts->tsv.reserved>0)
return ts->tsv.reserved-1+257;
else{
seminfo->ts=ts;
return TK_NAME;
}
}
else{
int c=ls->current;
next(ls);
return c;
}
}
}
}
}
static void luaX_next(LexState*ls){
ls->lastline=ls->linenumber;
if(ls->lookahead.token!=TK_EOS){
ls->t=ls->lookahead;
ls->lookahead.token=TK_EOS;
}
else
ls->t.token=llex(ls,&ls->t.seminfo);
}
static void luaX_lookahead(LexState*ls){
ls->lookahead.token=llex(ls,&ls->lookahead.seminfo);
}
#define hasjumps(e)((e)->t!=(e)->f)
static int isnumeral(expdesc*e){
return(e->k==VKNUM&&e->t==(-1)&&e->f==(-1));
}
static void luaK_nil(FuncState*fs,int from,int n){
Instruction*previous;
if(fs->pc>fs->lasttarget){
if(fs->pc==0){
if(from>=fs->nactvar)
return;
}
else{
previous=&fs->f->code[fs->pc-1];
if(GET_OPCODE(*previous)==OP_LOADNIL){
int pfrom=GETARG_A(*previous);
int pto=GETARG_B(*previous);
if(pfrom<=from&&from<=pto+1){
if(from+n-1>pto)
SETARG_B(*previous,from+n-1);
return;
}
}
}
}
luaK_codeABC(fs,OP_LOADNIL,from,from+n-1,0);
}
static int luaK_jump(FuncState*fs){
int jpc=fs->jpc;
int j;
fs->jpc=(-1);
j=luaK_codeAsBx(fs,OP_JMP,0,(-1));
luaK_concat(fs,&j,jpc);
return j;
}
static void luaK_ret(FuncState*fs,int first,int nret){
luaK_codeABC(fs,OP_RETURN,first,nret+1,0);
}
static int condjump(FuncState*fs,OpCode op,int A,int B,int C){
luaK_codeABC(fs,op,A,B,C);
return luaK_jump(fs);
}
static void fixjump(FuncState*fs,int pc,int dest){
Instruction*jmp=&fs->f->code[pc];
int offset=dest-(pc+1);
if(abs(offset)>(((1<<(9+9))-1)>>1))
luaX_syntaxerror(fs->ls,"control structure too long");
SETARG_sBx(*jmp,offset);
}
static int luaK_getlabel(FuncState*fs){
fs->lasttarget=fs->pc;
return fs->pc;
}
static int getjump(FuncState*fs,int pc){
int offset=GETARG_sBx(fs->f->code[pc]);
if(offset==(-1))
return(-1);
else
return(pc+1)+offset;
}
static Instruction*getjumpcontrol(FuncState*fs,int pc){
Instruction*pi=&fs->f->code[pc];
if(pc>=1&&testTMode(GET_OPCODE(*(pi-1))))
return pi-1;
else
return pi;
}
static int need_value(FuncState*fs,int list){
for(;list!=(-1);list=getjump(fs,list)){
Instruction i=*getjumpcontrol(fs,list);
if(GET_OPCODE(i)!=OP_TESTSET)return 1;
}
return 0;
}
static int patchtestreg(FuncState*fs,int node,int reg){
Instruction*i=getjumpcontrol(fs,node);
if(GET_OPCODE(*i)!=OP_TESTSET)
return 0;
if(reg!=((1<<8)-1)&®!=GETARG_B(*i))
SETARG_A(*i,reg);
else
*i=CREATE_ABC(OP_TEST,GETARG_B(*i),0,GETARG_C(*i));
return 1;
}
static void removevalues(FuncState*fs,int list){
for(;list!=(-1);list=getjump(fs,list))
patchtestreg(fs,list,((1<<8)-1));
}
static void patchlistaux(FuncState*fs,int list,int vtarget,int reg,
int dtarget){
while(list!=(-1)){
int next=getjump(fs,list);
if(patchtestreg(fs,list,reg))
fixjump(fs,list,vtarget);
else
fixjump(fs,list,dtarget);
list=next;
}
}
static void dischargejpc(FuncState*fs){
patchlistaux(fs,fs->jpc,fs->pc,((1<<8)-1),fs->pc);
fs->jpc=(-1);
}
static void luaK_patchlist(FuncState*fs,int list,int target){
if(target==fs->pc)
luaK_patchtohere(fs,list);
else{
patchlistaux(fs,list,target,((1<<8)-1),target);
}
}
static void luaK_patchtohere(FuncState*fs,int list){
luaK_getlabel(fs);
luaK_concat(fs,&fs->jpc,list);
}
static void luaK_concat(FuncState*fs,int*l1,int l2){
if(l2==(-1))return;
else if(*l1==(-1))
*l1=l2;
else{
int list=*l1;
int next;
while((next=getjump(fs,list))!=(-1))
list=next;
fixjump(fs,list,l2);
}
}
static void luaK_checkstack(FuncState*fs,int n){
int newstack=fs->freereg+n;
if(newstack>fs->f->maxstacksize){
if(newstack>=250)
luaX_syntaxerror(fs->ls,"function or expression too complex");
fs->f->maxstacksize=cast_byte(newstack);
}
}
static void luaK_reserveregs(FuncState*fs,int n){
luaK_checkstack(fs,n);
fs->freereg+=n;
}
static void freereg(FuncState*fs,int reg){
if(!ISK(reg)&®>=fs->nactvar){
fs->freereg--;
}
}
static void freeexp(FuncState*fs,expdesc*e){
if(e->k==VNONRELOC)
freereg(fs,e->u.s.info);
}
static int addk(FuncState*fs,TValue*k,TValue*v){
lua_State*L=fs->L;
TValue*idx=luaH_set(L,fs->h,k);
Proto*f=fs->f;
int oldsize=f->sizek;
if(ttisnumber(idx)){
return cast_int(nvalue(idx));
}
else{
setnvalue(idx,cast_num(fs->nk));
luaM_growvector(L,f->k,fs->nk,f->sizek,TValue,
((1<<(9+9))-1),"constant table overflow");
while(oldsize<f->sizek)setnilvalue(&f->k[oldsize++]);
setobj(L,&f->k[fs->nk],v);
luaC_barrier(L,f,v);
return fs->nk++;
}
}
static int luaK_stringK(FuncState*fs,TString*s){
TValue o;
setsvalue(fs->L,&o,s);
return addk(fs,&o,&o);
}
static int luaK_numberK(FuncState*fs,lua_Number r){
TValue o;
setnvalue(&o,r);
return addk(fs,&o,&o);
}
static int boolK(FuncState*fs,int b){
TValue o;
setbvalue(&o,b);
return addk(fs,&o,&o);
}
static int nilK(FuncState*fs){
TValue k,v;
setnilvalue(&v);
sethvalue(fs->L,&k,fs->h);
return addk(fs,&k,&v);
}
static void luaK_setreturns(FuncState*fs,expdesc*e,int nresults){
if(e->k==VCALL){
SETARG_C(getcode(fs,e),nresults+1);
}
else if(e->k==VVARARG){
SETARG_B(getcode(fs,e),nresults+1);
SETARG_A(getcode(fs,e),fs->freereg);
luaK_reserveregs(fs,1);
}
}
static void luaK_setoneret(FuncState*fs,expdesc*e){
if(e->k==VCALL){
e->k=VNONRELOC;
e->u.s.info=GETARG_A(getcode(fs,e));
}
else if(e->k==VVARARG){
SETARG_B(getcode(fs,e),2);
e->k=VRELOCABLE;
}
}
static void luaK_dischargevars(FuncState*fs,expdesc*e){
switch(e->k){
case VLOCAL:{
e->k=VNONRELOC;
break;
}
case VUPVAL:{
e->u.s.info=luaK_codeABC(fs,OP_GETUPVAL,0,e->u.s.info,0);
e->k=VRELOCABLE;
break;
}
case VGLOBAL:{
e->u.s.info=luaK_codeABx(fs,OP_GETGLOBAL,0,e->u.s.info);
e->k=VRELOCABLE;
break;
}
case VINDEXED:{
freereg(fs,e->u.s.aux);
freereg(fs,e->u.s.info);
e->u.s.info=luaK_codeABC(fs,OP_GETTABLE,0,e->u.s.info,e->u.s.aux);
e->k=VRELOCABLE;
break;
}
case VVARARG:
case VCALL:{
luaK_setoneret(fs,e);
break;
}
default:break;
}
}
static int code_label(FuncState*fs,int A,int b,int jump){
luaK_getlabel(fs);
return luaK_codeABC(fs,OP_LOADBOOL,A,b,jump);
}
static void discharge2reg(FuncState*fs,expdesc*e,int reg){
luaK_dischargevars(fs,e);
switch(e->k){
case VNIL:{
luaK_nil(fs,reg,1);
break;
}
case VFALSE:case VTRUE:{
luaK_codeABC(fs,OP_LOADBOOL,reg,e->k==VTRUE,0);
break;
}
case VK:{
luaK_codeABx(fs,OP_LOADK,reg,e->u.s.info);
break;
}
case VKNUM:{
luaK_codeABx(fs,OP_LOADK,reg,luaK_numberK(fs,e->u.nval));
break;
}
case VRELOCABLE:{
Instruction*pc=&getcode(fs,e);
SETARG_A(*pc,reg);
break;
}
case VNONRELOC:{
if(reg!=e->u.s.info)
luaK_codeABC(fs,OP_MOVE,reg,e->u.s.info,0);
break;
}
default:{
return;
}
}
e->u.s.info=reg;
e->k=VNONRELOC;
}
static void discharge2anyreg(FuncState*fs,expdesc*e){
if(e->k!=VNONRELOC){
luaK_reserveregs(fs,1);
discharge2reg(fs,e,fs->freereg-1);
}
}
static void exp2reg(FuncState*fs,expdesc*e,int reg){
discharge2reg(fs,e,reg);
if(e->k==VJMP)
luaK_concat(fs,&e->t,e->u.s.info);
if(hasjumps(e)){
int final;
int p_f=(-1);
int p_t=(-1);
if(need_value(fs,e->t)||need_value(fs,e->f)){
int fj=(e->k==VJMP)?(-1):luaK_jump(fs);
p_f=code_label(fs,reg,0,1);
p_t=code_label(fs,reg,1,0);
luaK_patchtohere(fs,fj);
}
final=luaK_getlabel(fs);
patchlistaux(fs,e->f,final,reg,p_f);
patchlistaux(fs,e->t,final,reg,p_t);
}
e->f=e->t=(-1);
e->u.s.info=reg;
e->k=VNONRELOC;
}
static void luaK_exp2nextreg(FuncState*fs,expdesc*e){
luaK_dischargevars(fs,e);
freeexp(fs,e);
luaK_reserveregs(fs,1);
exp2reg(fs,e,fs->freereg-1);
}
static int luaK_exp2anyreg(FuncState*fs,expdesc*e){
luaK_dischargevars(fs,e);
if(e->k==VNONRELOC){
if(!hasjumps(e))return e->u.s.info;
if(e->u.s.info>=fs->nactvar){
exp2reg(fs,e,e->u.s.info);
return e->u.s.info;
}
}
luaK_exp2nextreg(fs,e);
return e->u.s.info;
}
static void luaK_exp2val(FuncState*fs,expdesc*e){
if(hasjumps(e))
luaK_exp2anyreg(fs,e);
else
luaK_dischargevars(fs,e);
}
static int luaK_exp2RK(FuncState*fs,expdesc*e){
luaK_exp2val(fs,e);
switch(e->k){
case VKNUM:
case VTRUE:
case VFALSE:
case VNIL:{
if(fs->nk<=((1<<(9-1))-1)){
e->u.s.info=(e->k==VNIL)?nilK(fs):
(e->k==VKNUM)?luaK_numberK(fs,e->u.nval):
boolK(fs,(e->k==VTRUE));
e->k=VK;
return RKASK(e->u.s.info);
}
else break;
}
case VK:{
if(e->u.s.info<=((1<<(9-1))-1))
return RKASK(e->u.s.info);
else break;
}
default:break;
}
return luaK_exp2anyreg(fs,e);
}
static void luaK_storevar(FuncState*fs,expdesc*var,expdesc*ex){
switch(var->k){
case VLOCAL:{
freeexp(fs,ex);
exp2reg(fs,ex,var->u.s.info);
return;
}
case VUPVAL:{
int e=luaK_exp2anyreg(fs,ex);
luaK_codeABC(fs,OP_SETUPVAL,e,var->u.s.info,0);
break;
}
case VGLOBAL:{
int e=luaK_exp2anyreg(fs,ex);
luaK_codeABx(fs,OP_SETGLOBAL,e,var->u.s.info);
break;
}
case VINDEXED:{
int e=luaK_exp2RK(fs,ex);
luaK_codeABC(fs,OP_SETTABLE,var->u.s.info,var->u.s.aux,e);
break;
}
default:{
break;
}
}
freeexp(fs,ex);
}
static void luaK_self(FuncState*fs,expdesc*e,expdesc*key){
int func;
luaK_exp2anyreg(fs,e);
freeexp(fs,e);
func=fs->freereg;
luaK_reserveregs(fs,2);
luaK_codeABC(fs,OP_SELF,func,e->u.s.info,luaK_exp2RK(fs,key));
freeexp(fs,key);
e->u.s.info=func;
e->k=VNONRELOC;
}
static void invertjump(FuncState*fs,expdesc*e){
Instruction*pc=getjumpcontrol(fs,e->u.s.info);
SETARG_A(*pc,!(GETARG_A(*pc)));
}
static int jumponcond(FuncState*fs,expdesc*e,int cond){
if(e->k==VRELOCABLE){
Instruction ie=getcode(fs,e);
if(GET_OPCODE(ie)==OP_NOT){
fs->pc--;
return condjump(fs,OP_TEST,GETARG_B(ie),0,!cond);
}
}
discharge2anyreg(fs,e);
freeexp(fs,e);
return condjump(fs,OP_TESTSET,((1<<8)-1),e->u.s.info,cond);
}
static void luaK_goiftrue(FuncState*fs,expdesc*e){
int pc;
luaK_dischargevars(fs,e);
switch(e->k){
case VK:case VKNUM:case VTRUE:{
pc=(-1);
break;
}
case VJMP:{
invertjump(fs,e);
pc=e->u.s.info;
break;
}
default:{
pc=jumponcond(fs,e,0);
break;
}
}
luaK_concat(fs,&e->f,pc);
luaK_patchtohere(fs,e->t);
e->t=(-1);
}
static void luaK_goiffalse(FuncState*fs,expdesc*e){
int pc;
luaK_dischargevars(fs,e);
switch(e->k){
case VNIL:case VFALSE:{
pc=(-1);
break;
}
case VJMP:{
pc=e->u.s.info;
break;
}
default:{
pc=jumponcond(fs,e,1);
break;
}
}
luaK_concat(fs,&e->t,pc);
luaK_patchtohere(fs,e->f);
e->f=(-1);
}
static void codenot(FuncState*fs,expdesc*e){
luaK_dischargevars(fs,e);
switch(e->k){
case VNIL:case VFALSE:{
e->k=VTRUE;
break;
}
case VK:case VKNUM:case VTRUE:{
e->k=VFALSE;
break;
}
case VJMP:{
invertjump(fs,e);
break;
}
case VRELOCABLE:
case VNONRELOC:{
discharge2anyreg(fs,e);
freeexp(fs,e);
e->u.s.info=luaK_codeABC(fs,OP_NOT,0,e->u.s.info,0);
e->k=VRELOCABLE;
break;
}
default:{
break;
}
}
{int temp=e->f;e->f=e->t;e->t=temp;}
removevalues(fs,e->f);
removevalues(fs,e->t);
}
static void luaK_indexed(FuncState*fs,expdesc*t,expdesc*k){
t->u.s.aux=luaK_exp2RK(fs,k);
t->k=VINDEXED;
}
static int constfolding(OpCode op,expdesc*e1,expdesc*e2){
lua_Number v1,v2,r;
if(!isnumeral(e1)||!isnumeral(e2))return 0;
v1=e1->u.nval;
v2=e2->u.nval;
switch(op){
case OP_ADD:r=luai_numadd(v1,v2);break;
case OP_SUB:r=luai_numsub(v1,v2);break;
case OP_MUL:r=luai_nummul(v1,v2);break;
case OP_DIV:
if(v2==0)return 0;
r=luai_numdiv(v1,v2);break;
case OP_MOD:
if(v2==0)return 0;
r=luai_nummod(v1,v2);break;
case OP_POW:r=luai_numpow(v1,v2);break;
case OP_UNM:r=luai_numunm(v1);break;
case OP_LEN:return 0;
default:r=0;break;
}
if(luai_numisnan(r))return 0;
e1->u.nval=r;
return 1;
}
static void codearith(FuncState*fs,OpCode op,expdesc*e1,expdesc*e2){
if(constfolding(op,e1,e2))
return;
else{
int o2=(op!=OP_UNM&&op!=OP_LEN)?luaK_exp2RK(fs,e2):0;
int o1=luaK_exp2RK(fs,e1);
if(o1>o2){
freeexp(fs,e1);
freeexp(fs,e2);
}
else{
freeexp(fs,e2);
freeexp(fs,e1);
}
e1->u.s.info=luaK_codeABC(fs,op,0,o1,o2);
e1->k=VRELOCABLE;
}
}
static void codecomp(FuncState*fs,OpCode op,int cond,expdesc*e1,
expdesc*e2){
int o1=luaK_exp2RK(fs,e1);
int o2=luaK_exp2RK(fs,e2);
freeexp(fs,e2);
freeexp(fs,e1);
if(cond==0&&op!=OP_EQ){
int temp;
temp=o1;o1=o2;o2=temp;
cond=1;
}
e1->u.s.info=condjump(fs,op,cond,o1,o2);
e1->k=VJMP;
}
static void luaK_prefix(FuncState*fs,UnOpr op,expdesc*e){
expdesc e2;
e2.t=e2.f=(-1);e2.k=VKNUM;e2.u.nval=0;
switch(op){
case OPR_MINUS:{
if(!isnumeral(e))
luaK_exp2anyreg(fs,e);
codearith(fs,OP_UNM,e,&e2);
break;
}
case OPR_NOT:codenot(fs,e);break;
case OPR_LEN:{
luaK_exp2anyreg(fs,e);
codearith(fs,OP_LEN,e,&e2);
break;
}
default:;
}
}
static void luaK_infix(FuncState*fs,BinOpr op,expdesc*v){
switch(op){
case OPR_AND:{
luaK_goiftrue(fs,v);
break;
}
case OPR_OR:{
luaK_goiffalse(fs,v);
break;
}
case OPR_CONCAT:{
luaK_exp2nextreg(fs,v);
break;
}
case OPR_ADD:case OPR_SUB:case OPR_MUL:case OPR_DIV:
case OPR_MOD:case OPR_POW:{
if(!isnumeral(v))luaK_exp2RK(fs,v);
break;
}
default:{
luaK_exp2RK(fs,v);
break;
}
}
}
static void luaK_posfix(FuncState*fs,BinOpr op,expdesc*e1,expdesc*e2){
switch(op){
case OPR_AND:{
luaK_dischargevars(fs,e2);
luaK_concat(fs,&e2->f,e1->f);
*e1=*e2;
break;
}
case OPR_OR:{
luaK_dischargevars(fs,e2);
luaK_concat(fs,&e2->t,e1->t);
*e1=*e2;
break;
}
case OPR_CONCAT:{
luaK_exp2val(fs,e2);
if(e2->k==VRELOCABLE&&GET_OPCODE(getcode(fs,e2))==OP_CONCAT){
freeexp(fs,e1);
SETARG_B(getcode(fs,e2),e1->u.s.info);
e1->k=VRELOCABLE;e1->u.s.info=e2->u.s.info;
}
else{
luaK_exp2nextreg(fs,e2);
codearith(fs,OP_CONCAT,e1,e2);
}
break;
}
case OPR_ADD:codearith(fs,OP_ADD,e1,e2);break;
case OPR_SUB:codearith(fs,OP_SUB,e1,e2);break;
case OPR_MUL:codearith(fs,OP_MUL,e1,e2);break;
case OPR_DIV:codearith(fs,OP_DIV,e1,e2);break;
case OPR_MOD:codearith(fs,OP_MOD,e1,e2);break;
case OPR_POW:codearith(fs,OP_POW,e1,e2);break;
case OPR_EQ:codecomp(fs,OP_EQ,1,e1,e2);break;
case OPR_NE:codecomp(fs,OP_EQ,0,e1,e2);break;
case OPR_LT:codecomp(fs,OP_LT,1,e1,e2);break;
case OPR_LE:codecomp(fs,OP_LE,1,e1,e2);break;
case OPR_GT:codecomp(fs,OP_LT,0,e1,e2);break;
case OPR_GE:codecomp(fs,OP_LE,0,e1,e2);break;
default:;
}
}
static void luaK_fixline(FuncState*fs,int line){
fs->f->lineinfo[fs->pc-1]=line;
}
static int luaK_code(FuncState*fs,Instruction i,int line){
Proto*f=fs->f;
dischargejpc(fs);
luaM_growvector(fs->L,f->code,fs->pc,f->sizecode,Instruction,
(INT_MAX-2),"code size overflow");
f->code[fs->pc]=i;
luaM_growvector(fs->L,f->lineinfo,fs->pc,f->sizelineinfo,int,
(INT_MAX-2),"code size overflow");
f->lineinfo[fs->pc]=line;
return fs->pc++;
}
static int luaK_codeABC(FuncState*fs,OpCode o,int a,int b,int c){
return luaK_code(fs,CREATE_ABC(o,a,b,c),fs->ls->lastline);
}
static int luaK_codeABx(FuncState*fs,OpCode o,int a,unsigned int bc){
return luaK_code(fs,CREATE_ABx(o,a,bc),fs->ls->lastline);
}
static void luaK_setlist(FuncState*fs,int base,int nelems,int tostore){
int c=(nelems-1)/50+1;
int b=(tostore==(-1))?0:tostore;
if(c<=((1<<9)-1))
luaK_codeABC(fs,OP_SETLIST,base,b,c);
else{
luaK_codeABC(fs,OP_SETLIST,base,b,0);
luaK_code(fs,cast(Instruction,c),fs->ls->lastline);
}
fs->freereg=base+1;
}
#define hasmultret(k)((k)==VCALL||(k)==VVARARG)
#define getlocvar(fs,i)((fs)->f->locvars[(fs)->actvar[i]])
#define luaY_checklimit(fs,v,l,m)if((v)>(l))errorlimit(fs,l,m)
typedef struct BlockCnt{
struct BlockCnt*previous;
int breaklist;
lu_byte nactvar;
lu_byte upval;
lu_byte isbreakable;
}BlockCnt;
static void chunk(LexState*ls);
static void expr(LexState*ls,expdesc*v);
static void anchor_token(LexState*ls){
if(ls->t.token==TK_NAME||ls->t.token==TK_STRING){
TString*ts=ls->t.seminfo.ts;
luaX_newstring(ls,getstr(ts),ts->tsv.len);
}
}
static void error_expected(LexState*ls,int token){
luaX_syntaxerror(ls,
luaO_pushfstring(ls->L,LUA_QL("%s")" expected",luaX_token2str(ls,token)));
}
static void errorlimit(FuncState*fs,int limit,const char*what){
const char*msg=(fs->f->linedefined==0)?
luaO_pushfstring(fs->L,"main function has more than %d %s",limit,what):
luaO_pushfstring(fs->L,"function at line %d has more than %d %s",
fs->f->linedefined,limit,what);
luaX_lexerror(fs->ls,msg,0);
}
static int testnext(LexState*ls,int c){
if(ls->t.token==c){
luaX_next(ls);
return 1;
}
else return 0;
}
static void check(LexState*ls,int c){
if(ls->t.token!=c)
error_expected(ls,c);
}
static void checknext(LexState*ls,int c){
check(ls,c);
luaX_next(ls);
}
#define check_condition(ls,c,msg){if(!(c))luaX_syntaxerror(ls,msg);}
static void check_match(LexState*ls,int what,int who,int where){
if(!testnext(ls,what)){
if(where==ls->linenumber)
error_expected(ls,what);
else{
luaX_syntaxerror(ls,luaO_pushfstring(ls->L,
LUA_QL("%s")" expected (to close "LUA_QL("%s")" at line %d)",
luaX_token2str(ls,what),luaX_token2str(ls,who),where));
}
}
}
static TString*str_checkname(LexState*ls){
TString*ts;
check(ls,TK_NAME);
ts=ls->t.seminfo.ts;
luaX_next(ls);
return ts;
}
static void init_exp(expdesc*e,expkind k,int i){
e->f=e->t=(-1);
e->k=k;
e->u.s.info=i;
}
static void codestring(LexState*ls,expdesc*e,TString*s){
init_exp(e,VK,luaK_stringK(ls->fs,s));
}
static void checkname(LexState*ls,expdesc*e){
codestring(ls,e,str_checkname(ls));
}
static int registerlocalvar(LexState*ls,TString*varname){
FuncState*fs=ls->fs;
Proto*f=fs->f;
int oldsize=f->sizelocvars;
luaM_growvector(ls->L,f->locvars,fs->nlocvars,f->sizelocvars,
LocVar,SHRT_MAX,"too many local variables");
while(oldsize<f->sizelocvars)f->locvars[oldsize++].varname=NULL;
f->locvars[fs->nlocvars].varname=varname;
luaC_objbarrier(ls->L,f,varname);
return fs->nlocvars++;
}
#define new_localvarliteral(ls,v,n)new_localvar(ls,luaX_newstring(ls,""v,(sizeof(v)/sizeof(char))-1),n)
static void new_localvar(LexState*ls,TString*name,int n){
FuncState*fs=ls->fs;
luaY_checklimit(fs,fs->nactvar+n+1,200,"local variables");
fs->actvar[fs->nactvar+n]=cast(unsigned short,registerlocalvar(ls,name));
}
static void adjustlocalvars(LexState*ls,int nvars){
FuncState*fs=ls->fs;
fs->nactvar=cast_byte(fs->nactvar+nvars);
for(;nvars;nvars--){
getlocvar(fs,fs->nactvar-nvars).startpc=fs->pc;
}
}
static void removevars(LexState*ls,int tolevel){
FuncState*fs=ls->fs;
while(fs->nactvar>tolevel)
getlocvar(fs,--fs->nactvar).endpc=fs->pc;
}
static int indexupvalue(FuncState*fs,TString*name,expdesc*v){
int i;
Proto*f=fs->f;
int oldsize=f->sizeupvalues;
for(i=0;i<f->nups;i++){
if(fs->upvalues[i].k==v->k&&fs->upvalues[i].info==v->u.s.info){
return i;
}
}
luaY_checklimit(fs,f->nups+1,60,"upvalues");
luaM_growvector(fs->L,f->upvalues,f->nups,f->sizeupvalues,
TString*,(INT_MAX-2),"");
while(oldsize<f->sizeupvalues)f->upvalues[oldsize++]=NULL;
f->upvalues[f->nups]=name;
luaC_objbarrier(fs->L,f,name);
fs->upvalues[f->nups].k=cast_byte(v->k);
fs->upvalues[f->nups].info=cast_byte(v->u.s.info);
return f->nups++;
}
static int searchvar(FuncState*fs,TString*n){
int i;
for(i=fs->nactvar-1;i>=0;i--){
if(n==getlocvar(fs,i).varname)
return i;
}
return-1;
}
static void markupval(FuncState*fs,int level){
BlockCnt*bl=fs->bl;
while(bl&&bl->nactvar>level)bl=bl->previous;
if(bl)bl->upval=1;
}
static int singlevaraux(FuncState*fs,TString*n,expdesc*var,int base){
if(fs==NULL){
init_exp(var,VGLOBAL,((1<<8)-1));
return VGLOBAL;
}
else{
int v=searchvar(fs,n);
if(v>=0){
init_exp(var,VLOCAL,v);
if(!base)
markupval(fs,v);
return VLOCAL;
}
else{
if(singlevaraux(fs->prev,n,var,0)==VGLOBAL)
return VGLOBAL;
var->u.s.info=indexupvalue(fs,n,var);
var->k=VUPVAL;
return VUPVAL;
}
}
}
static void singlevar(LexState*ls,expdesc*var){
TString*varname=str_checkname(ls);
FuncState*fs=ls->fs;
if(singlevaraux(fs,varname,var,1)==VGLOBAL)
var->u.s.info=luaK_stringK(fs,varname);
}
static void adjust_assign(LexState*ls,int nvars,int nexps,expdesc*e){
FuncState*fs=ls->fs;
int extra=nvars-nexps;
if(hasmultret(e->k)){
extra++;
if(extra<0)extra=0;
luaK_setreturns(fs,e,extra);
if(extra>1)luaK_reserveregs(fs,extra-1);
}
else{
if(e->k!=VVOID)luaK_exp2nextreg(fs,e);
if(extra>0){
int reg=fs->freereg;
luaK_reserveregs(fs,extra);
luaK_nil(fs,reg,extra);
}
}
}
static void enterlevel(LexState*ls){
if(++ls->L->nCcalls>200)
luaX_lexerror(ls,"chunk has too many syntax levels",0);
}
#define leavelevel(ls)((ls)->L->nCcalls--)
static void enterblock(FuncState*fs,BlockCnt*bl,lu_byte isbreakable){
bl->breaklist=(-1);
bl->isbreakable=isbreakable;
bl->nactvar=fs->nactvar;
bl->upval=0;
bl->previous=fs->bl;
fs->bl=bl;
}
static void leaveblock(FuncState*fs){
BlockCnt*bl=fs->bl;
fs->bl=bl->previous;
removevars(fs->ls,bl->nactvar);
if(bl->upval)
luaK_codeABC(fs,OP_CLOSE,bl->nactvar,0,0);
fs->freereg=fs->nactvar;
luaK_patchtohere(fs,bl->breaklist);
}
static void pushclosure(LexState*ls,FuncState*func,expdesc*v){
FuncState*fs=ls->fs;
Proto*f=fs->f;
int oldsize=f->sizep;
int i;
luaM_growvector(ls->L,f->p,fs->np,f->sizep,Proto*,
((1<<(9+9))-1),"constant table overflow");
while(oldsize<f->sizep)f->p[oldsize++]=NULL;
f->p[fs->np++]=func->f;
luaC_objbarrier(ls->L,f,func->f);
init_exp(v,VRELOCABLE,luaK_codeABx(fs,OP_CLOSURE,0,fs->np-1));
for(i=0;i<func->f->nups;i++){
OpCode o=(func->upvalues[i].k==VLOCAL)?OP_MOVE:OP_GETUPVAL;
luaK_codeABC(fs,o,0,func->upvalues[i].info,0);
}
}
static void open_func(LexState*ls,FuncState*fs){
lua_State*L=ls->L;
Proto*f=luaF_newproto(L);
fs->f=f;
fs->prev=ls->fs;
fs->ls=ls;
fs->L=L;
ls->fs=fs;
fs->pc=0;
fs->lasttarget=-1;
fs->jpc=(-1);
fs->freereg=0;
fs->nk=0;
fs->np=0;
fs->nlocvars=0;
fs->nactvar=0;
fs->bl=NULL;
f->source=ls->source;
f->maxstacksize=2;
fs->h=luaH_new(L,0,0);
sethvalue(L,L->top,fs->h);
incr_top(L);
setptvalue(L,L->top,f);
incr_top(L);
}
static void close_func(LexState*ls){
lua_State*L=ls->L;
FuncState*fs=ls->fs;
Proto*f=fs->f;
removevars(ls,0);
luaK_ret(fs,0,0);
luaM_reallocvector(L,f->code,f->sizecode,fs->pc,Instruction);
f->sizecode=fs->pc;
luaM_reallocvector(L,f->lineinfo,f->sizelineinfo,fs->pc,int);
f->sizelineinfo=fs->pc;
luaM_reallocvector(L,f->k,f->sizek,fs->nk,TValue);
f->sizek=fs->nk;
luaM_reallocvector(L,f->p,f->sizep,fs->np,Proto*);
f->sizep=fs->np;
luaM_reallocvector(L,f->locvars,f->sizelocvars,fs->nlocvars,LocVar);
f->sizelocvars=fs->nlocvars;
luaM_reallocvector(L,f->upvalues,f->sizeupvalues,f->nups,TString*);
f->sizeupvalues=f->nups;
ls->fs=fs->prev;
if(fs)anchor_token(ls);
L->top-=2;
}
static Proto*luaY_parser(lua_State*L,ZIO*z,Mbuffer*buff,const char*name){
struct LexState lexstate;
struct FuncState funcstate;
lexstate.buff=buff;
luaX_setinput(L,&lexstate,z,luaS_new(L,name));
open_func(&lexstate,&funcstate);
funcstate.f->is_vararg=2;
luaX_next(&lexstate);
chunk(&lexstate);
check(&lexstate,TK_EOS);
close_func(&lexstate);
return funcstate.f;
}
static void field(LexState*ls,expdesc*v){
FuncState*fs=ls->fs;
expdesc key;
luaK_exp2anyreg(fs,v);
luaX_next(ls);
checkname(ls,&key);
luaK_indexed(fs,v,&key);
}
static void yindex(LexState*ls,expdesc*v){
luaX_next(ls);
expr(ls,v);
luaK_exp2val(ls->fs,v);
checknext(ls,']');
}
struct ConsControl{
expdesc v;
expdesc*t;
int nh;
int na;
int tostore;
};
static void recfield(LexState*ls,struct ConsControl*cc){
FuncState*fs=ls->fs;
int reg=ls->fs->freereg;
expdesc key,val;
int rkkey;
if(ls->t.token==TK_NAME){
luaY_checklimit(fs,cc->nh,(INT_MAX-2),"items in a constructor");
checkname(ls,&key);
}
else
yindex(ls,&key);
cc->nh++;
checknext(ls,'=');
rkkey=luaK_exp2RK(fs,&key);
expr(ls,&val);
luaK_codeABC(fs,OP_SETTABLE,cc->t->u.s.info,rkkey,luaK_exp2RK(fs,&val));
fs->freereg=reg;
}
static void closelistfield(FuncState*fs,struct ConsControl*cc){
if(cc->v.k==VVOID)return;
luaK_exp2nextreg(fs,&cc->v);
cc->v.k=VVOID;
if(cc->tostore==50){
luaK_setlist(fs,cc->t->u.s.info,cc->na,cc->tostore);
cc->tostore=0;
}
}
static void lastlistfield(FuncState*fs,struct ConsControl*cc){
if(cc->tostore==0)return;
if(hasmultret(cc->v.k)){
luaK_setmultret(fs,&cc->v);
luaK_setlist(fs,cc->t->u.s.info,cc->na,(-1));
cc->na--;
}
else{
if(cc->v.k!=VVOID)
luaK_exp2nextreg(fs,&cc->v);
luaK_setlist(fs,cc->t->u.s.info,cc->na,cc->tostore);
}
}
static void listfield(LexState*ls,struct ConsControl*cc){
expr(ls,&cc->v);
luaY_checklimit(ls->fs,cc->na,(INT_MAX-2),"items in a constructor");
cc->na++;
cc->tostore++;
}
static void constructor(LexState*ls,expdesc*t){
FuncState*fs=ls->fs;
int line=ls->linenumber;
int pc=luaK_codeABC(fs,OP_NEWTABLE,0,0,0);
struct ConsControl cc;
cc.na=cc.nh=cc.tostore=0;
cc.t=t;
init_exp(t,VRELOCABLE,pc);
init_exp(&cc.v,VVOID,0);
luaK_exp2nextreg(ls->fs,t);
checknext(ls,'{');
do{
if(ls->t.token=='}')break;
closelistfield(fs,&cc);
switch(ls->t.token){
case TK_NAME:{
luaX_lookahead(ls);
if(ls->lookahead.token!='=')
listfield(ls,&cc);
else
recfield(ls,&cc);
break;
}
case'[':{
recfield(ls,&cc);
break;
}
default:{
listfield(ls,&cc);
break;
}
}
}while(testnext(ls,',')||testnext(ls,';'));
check_match(ls,'}','{',line);
lastlistfield(fs,&cc);
SETARG_B(fs->f->code[pc],luaO_int2fb(cc.na));
SETARG_C(fs->f->code[pc],luaO_int2fb(cc.nh));
}
static void parlist(LexState*ls){
FuncState*fs=ls->fs;
Proto*f=fs->f;
int nparams=0;
f->is_vararg=0;
if(ls->t.token!=')'){
do{
switch(ls->t.token){
case TK_NAME:{
new_localvar(ls,str_checkname(ls),nparams++);
break;
}
case TK_DOTS:{
luaX_next(ls);
f->is_vararg|=2;
break;
}
default:luaX_syntaxerror(ls,"<name> or "LUA_QL("...")" expected");
}
}while(!f->is_vararg&&testnext(ls,','));
}
adjustlocalvars(ls,nparams);
f->numparams=cast_byte(fs->nactvar-(f->is_vararg&1));
luaK_reserveregs(fs,fs->nactvar);
}
static void body(LexState*ls,expdesc*e,int needself,int line){
FuncState new_fs;
open_func(ls,&new_fs);
new_fs.f->linedefined=line;
checknext(ls,'(');
if(needself){
new_localvarliteral(ls,"self",0);
adjustlocalvars(ls,1);
}
parlist(ls);
checknext(ls,')');
chunk(ls);
new_fs.f->lastlinedefined=ls->linenumber;
check_match(ls,TK_END,TK_FUNCTION,line);
close_func(ls);
pushclosure(ls,&new_fs,e);
}
static int explist1(LexState*ls,expdesc*v){
int n=1;
expr(ls,v);
while(testnext(ls,',')){
luaK_exp2nextreg(ls->fs,v);
expr(ls,v);
n++;
}
return n;
}
static void funcargs(LexState*ls,expdesc*f){
FuncState*fs=ls->fs;
expdesc args;
int base,nparams;
int line=ls->linenumber;
switch(ls->t.token){
case'(':{
if(line!=ls->lastline)
luaX_syntaxerror(ls,"ambiguous syntax (function call x new statement)");
luaX_next(ls);
if(ls->t.token==')')
args.k=VVOID;
else{
explist1(ls,&args);
luaK_setmultret(fs,&args);
}
check_match(ls,')','(',line);
break;
}
case'{':{
constructor(ls,&args);
break;
}
case TK_STRING:{
codestring(ls,&args,ls->t.seminfo.ts);
luaX_next(ls);
break;
}
default:{
luaX_syntaxerror(ls,"function arguments expected");
return;
}
}
base=f->u.s.info;
if(hasmultret(args.k))
nparams=(-1);
else{
if(args.k!=VVOID)
luaK_exp2nextreg(fs,&args);
nparams=fs->freereg-(base+1);
}
init_exp(f,VCALL,luaK_codeABC(fs,OP_CALL,base,nparams+1,2));
luaK_fixline(fs,line);
fs->freereg=base+1;
}
static void prefixexp(LexState*ls,expdesc*v){
switch(ls->t.token){
case'(':{
int line=ls->linenumber;
luaX_next(ls);
expr(ls,v);
check_match(ls,')','(',line);
luaK_dischargevars(ls->fs,v);
return;
}
case TK_NAME:{
singlevar(ls,v);
return;
}
default:{
luaX_syntaxerror(ls,"unexpected symbol");
return;
}
}
}
static void primaryexp(LexState*ls,expdesc*v){
FuncState*fs=ls->fs;
prefixexp(ls,v);
for(;;){
switch(ls->t.token){
case'.':{
field(ls,v);
break;
}
case'[':{
expdesc key;
luaK_exp2anyreg(fs,v);
yindex(ls,&key);
luaK_indexed(fs,v,&key);
break;
}
case':':{
expdesc key;
luaX_next(ls);
checkname(ls,&key);
luaK_self(fs,v,&key);
funcargs(ls,v);
break;
}
case'(':case TK_STRING:case'{':{
luaK_exp2nextreg(fs,v);
funcargs(ls,v);
break;
}
default:return;
}
}
}
static void simpleexp(LexState*ls,expdesc*v){
switch(ls->t.token){
case TK_NUMBER:{
init_exp(v,VKNUM,0);
v->u.nval=ls->t.seminfo.r;
break;
}
case TK_STRING:{
codestring(ls,v,ls->t.seminfo.ts);
break;
}
case TK_NIL:{
init_exp(v,VNIL,0);
break;
}
case TK_TRUE:{
init_exp(v,VTRUE,0);
break;
}
case TK_FALSE:{
init_exp(v,VFALSE,0);
break;
}
case TK_DOTS:{
FuncState*fs=ls->fs;
check_condition(ls,fs->f->is_vararg,
"cannot use "LUA_QL("...")" outside a vararg function");
fs->f->is_vararg&=~4;
init_exp(v,VVARARG,luaK_codeABC(fs,OP_VARARG,0,1,0));
break;
}
case'{':{
constructor(ls,v);
return;
}
case TK_FUNCTION:{
luaX_next(ls);
body(ls,v,0,ls->linenumber);
return;
}
default:{
primaryexp(ls,v);
return;
}
}
luaX_next(ls);
}
static UnOpr getunopr(int op){
switch(op){
case TK_NOT:return OPR_NOT;
case'-':return OPR_MINUS;
case'#':return OPR_LEN;
default:return OPR_NOUNOPR;
}
}
static BinOpr getbinopr(int op){
switch(op){
case'+':return OPR_ADD;
case'-':return OPR_SUB;
case'*':return OPR_MUL;
case'/':return OPR_DIV;
case'%':return OPR_MOD;
case'^':return OPR_POW;
case TK_CONCAT:return OPR_CONCAT;
case TK_NE:return OPR_NE;
case TK_EQ:return OPR_EQ;
case'<':return OPR_LT;
case TK_LE:return OPR_LE;
case'>':return OPR_GT;
case TK_GE:return OPR_GE;
case TK_AND:return OPR_AND;
case TK_OR:return OPR_OR;
default:return OPR_NOBINOPR;
}
}
static const struct{
lu_byte left;
lu_byte right;
}priority[]={
{6,6},{6,6},{7,7},{7,7},{7,7},
{10,9},{5,4},
{3,3},{3,3},
{3,3},{3,3},{3,3},{3,3},
{2,2},{1,1}
};
static BinOpr subexpr(LexState*ls,expdesc*v,unsigned int limit){
BinOpr op;
UnOpr uop;
enterlevel(ls);
uop=getunopr(ls->t.token);
if(uop!=OPR_NOUNOPR){
luaX_next(ls);
subexpr(ls,v,8);
luaK_prefix(ls->fs,uop,v);
}
else simpleexp(ls,v);
op=getbinopr(ls->t.token);
while(op!=OPR_NOBINOPR&&priority[op].left>limit){
expdesc v2;
BinOpr nextop;
luaX_next(ls);
luaK_infix(ls->fs,op,v);
nextop=subexpr(ls,&v2,priority[op].right);
luaK_posfix(ls->fs,op,v,&v2);
op=nextop;
}
leavelevel(ls);
return op;
}
static void expr(LexState*ls,expdesc*v){
subexpr(ls,v,0);
}
static int block_follow(int token){
switch(token){
case TK_ELSE:case TK_ELSEIF:case TK_END:
case TK_UNTIL:case TK_EOS:
return 1;
default:return 0;
}
}
static void block(LexState*ls){
FuncState*fs=ls->fs;
BlockCnt bl;
enterblock(fs,&bl,0);
chunk(ls);
leaveblock(fs);
}
struct LHS_assign{
struct LHS_assign*prev;
expdesc v;
};
static void check_conflict(LexState*ls,struct LHS_assign*lh,expdesc*v){
FuncState*fs=ls->fs;
int extra=fs->freereg;
int conflict=0;
for(;lh;lh=lh->prev){
if(lh->v.k==VINDEXED){
if(lh->v.u.s.info==v->u.s.info){
conflict=1;
lh->v.u.s.info=extra;
}
if(lh->v.u.s.aux==v->u.s.info){
conflict=1;
lh->v.u.s.aux=extra;
}
}
}
if(conflict){
luaK_codeABC(fs,OP_MOVE,fs->freereg,v->u.s.info,0);
luaK_reserveregs(fs,1);
}
}
static void assignment(LexState*ls,struct LHS_assign*lh,int nvars){
expdesc e;
check_condition(ls,VLOCAL<=lh->v.k&&lh->v.k<=VINDEXED,
"syntax error");
if(testnext(ls,',')){
struct LHS_assign nv;
nv.prev=lh;
primaryexp(ls,&nv.v);
if(nv.v.k==VLOCAL)
check_conflict(ls,lh,&nv.v);
luaY_checklimit(ls->fs,nvars,200-ls->L->nCcalls,
"variables in assignment");
assignment(ls,&nv,nvars+1);
}
else{
int nexps;
checknext(ls,'=');
nexps=explist1(ls,&e);
if(nexps!=nvars){
adjust_assign(ls,nvars,nexps,&e);
if(nexps>nvars)
ls->fs->freereg-=nexps-nvars;
}
else{
luaK_setoneret(ls->fs,&e);
luaK_storevar(ls->fs,&lh->v,&e);
return;
}
}
init_exp(&e,VNONRELOC,ls->fs->freereg-1);
luaK_storevar(ls->fs,&lh->v,&e);
}
static int cond(LexState*ls){
expdesc v;
expr(ls,&v);
if(v.k==VNIL)v.k=VFALSE;
luaK_goiftrue(ls->fs,&v);
return v.f;
}
static void breakstat(LexState*ls){
FuncState*fs=ls->fs;
BlockCnt*bl=fs->bl;
int upval=0;
while(bl&&!bl->isbreakable){
upval|=bl->upval;
bl=bl->previous;
}
if(!bl)
luaX_syntaxerror(ls,"no loop to break");
if(upval)
luaK_codeABC(fs,OP_CLOSE,bl->nactvar,0,0);
luaK_concat(fs,&bl->breaklist,luaK_jump(fs));
}
static void whilestat(LexState*ls,int line){
FuncState*fs=ls->fs;
int whileinit;
int condexit;
BlockCnt bl;
luaX_next(ls);
whileinit=luaK_getlabel(fs);
condexit=cond(ls);
enterblock(fs,&bl,1);
checknext(ls,TK_DO);
block(ls);
luaK_patchlist(fs,luaK_jump(fs),whileinit);
check_match(ls,TK_END,TK_WHILE,line);
leaveblock(fs);
luaK_patchtohere(fs,condexit);
}
static void repeatstat(LexState*ls,int line){
int condexit;
FuncState*fs=ls->fs;
int repeat_init=luaK_getlabel(fs);
BlockCnt bl1,bl2;
enterblock(fs,&bl1,1);
enterblock(fs,&bl2,0);
luaX_next(ls);
chunk(ls);
check_match(ls,TK_UNTIL,TK_REPEAT,line);
condexit=cond(ls);
if(!bl2.upval){
leaveblock(fs);
luaK_patchlist(ls->fs,condexit,repeat_init);
}
else{
breakstat(ls);
luaK_patchtohere(ls->fs,condexit);
leaveblock(fs);
luaK_patchlist(ls->fs,luaK_jump(fs),repeat_init);
}
leaveblock(fs);
}
static int exp1(LexState*ls){
expdesc e;
int k;
expr(ls,&e);
k=e.k;
luaK_exp2nextreg(ls->fs,&e);
return k;
}
static void forbody(LexState*ls,int base,int line,int nvars,int isnum){
BlockCnt bl;
FuncState*fs=ls->fs;
int prep,endfor;
adjustlocalvars(ls,3);
checknext(ls,TK_DO);
prep=isnum?luaK_codeAsBx(fs,OP_FORPREP,base,(-1)):luaK_jump(fs);
enterblock(fs,&bl,0);
adjustlocalvars(ls,nvars);
luaK_reserveregs(fs,nvars);
block(ls);
leaveblock(fs);
luaK_patchtohere(fs,prep);
endfor=(isnum)?luaK_codeAsBx(fs,OP_FORLOOP,base,(-1)):
luaK_codeABC(fs,OP_TFORLOOP,base,0,nvars);
luaK_fixline(fs,line);
luaK_patchlist(fs,(isnum?endfor:luaK_jump(fs)),prep+1);
}
static void fornum(LexState*ls,TString*varname,int line){
FuncState*fs=ls->fs;
int base=fs->freereg;
new_localvarliteral(ls,"(for index)",0);
new_localvarliteral(ls,"(for limit)",1);
new_localvarliteral(ls,"(for step)",2);
new_localvar(ls,varname,3);
checknext(ls,'=');
exp1(ls);
checknext(ls,',');
exp1(ls);
if(testnext(ls,','))
exp1(ls);
else{
luaK_codeABx(fs,OP_LOADK,fs->freereg,luaK_numberK(fs,1));
luaK_reserveregs(fs,1);
}
forbody(ls,base,line,1,1);
}
static void forlist(LexState*ls,TString*indexname){
FuncState*fs=ls->fs;
expdesc e;
int nvars=0;
int line;
int base=fs->freereg;
new_localvarliteral(ls,"(for generator)",nvars++);
new_localvarliteral(ls,"(for state)",nvars++);
new_localvarliteral(ls,"(for control)",nvars++);
new_localvar(ls,indexname,nvars++);
while(testnext(ls,','))
new_localvar(ls,str_checkname(ls),nvars++);
checknext(ls,TK_IN);
line=ls->linenumber;
adjust_assign(ls,3,explist1(ls,&e),&e);
luaK_checkstack(fs,3);
forbody(ls,base,line,nvars-3,0);
}
static void forstat(LexState*ls,int line){
FuncState*fs=ls->fs;
TString*varname;
BlockCnt bl;
enterblock(fs,&bl,1);
luaX_next(ls);
varname=str_checkname(ls);
switch(ls->t.token){
case'=':fornum(ls,varname,line);break;
case',':case TK_IN:forlist(ls,varname);break;
default:luaX_syntaxerror(ls,LUA_QL("=")" or "LUA_QL("in")" expected");
}
check_match(ls,TK_END,TK_FOR,line);
leaveblock(fs);
}
static int test_then_block(LexState*ls){
int condexit;
luaX_next(ls);
condexit=cond(ls);
checknext(ls,TK_THEN);
block(ls);
return condexit;
}
static void ifstat(LexState*ls,int line){
FuncState*fs=ls->fs;
int flist;
int escapelist=(-1);
flist=test_then_block(ls);
while(ls->t.token==TK_ELSEIF){
luaK_concat(fs,&escapelist,luaK_jump(fs));
luaK_patchtohere(fs,flist);
flist=test_then_block(ls);
}
if(ls->t.token==TK_ELSE){
luaK_concat(fs,&escapelist,luaK_jump(fs));
luaK_patchtohere(fs,flist);
luaX_next(ls);
block(ls);
}
else
luaK_concat(fs,&escapelist,flist);
luaK_patchtohere(fs,escapelist);
check_match(ls,TK_END,TK_IF,line);
}
static void localfunc(LexState*ls){
expdesc v,b;
FuncState*fs=ls->fs;
new_localvar(ls,str_checkname(ls),0);
init_exp(&v,VLOCAL,fs->freereg);
luaK_reserveregs(fs,1);
adjustlocalvars(ls,1);
body(ls,&b,0,ls->linenumber);
luaK_storevar(fs,&v,&b);
getlocvar(fs,fs->nactvar-1).startpc=fs->pc;
}
static void localstat(LexState*ls){
int nvars=0;
int nexps;
expdesc e;
do{
new_localvar(ls,str_checkname(ls),nvars++);
}while(testnext(ls,','));
if(testnext(ls,'='))
nexps=explist1(ls,&e);
else{
e.k=VVOID;
nexps=0;
}
adjust_assign(ls,nvars,nexps,&e);
adjustlocalvars(ls,nvars);
}
static int funcname(LexState*ls,expdesc*v){
int needself=0;
singlevar(ls,v);
while(ls->t.token=='.')
field(ls,v);
if(ls->t.token==':'){
needself=1;
field(ls,v);
}
return needself;
}
static void funcstat(LexState*ls,int line){
int needself;
expdesc v,b;
luaX_next(ls);
needself=funcname(ls,&v);
body(ls,&b,needself,line);
luaK_storevar(ls->fs,&v,&b);
luaK_fixline(ls->fs,line);
}
static void exprstat(LexState*ls){
FuncState*fs=ls->fs;
struct LHS_assign v;
primaryexp(ls,&v.v);
if(v.v.k==VCALL)
SETARG_C(getcode(fs,&v.v),1);
else{
v.prev=NULL;
assignment(ls,&v,1);
}
}
static void retstat(LexState*ls){
FuncState*fs=ls->fs;
expdesc e;
int first,nret;
luaX_next(ls);
if(block_follow(ls->t.token)||ls->t.token==';')
first=nret=0;
else{
nret=explist1(ls,&e);
if(hasmultret(e.k)){
luaK_setmultret(fs,&e);
if(e.k==VCALL&&nret==1){
SET_OPCODE(getcode(fs,&e),OP_TAILCALL);
}
first=fs->nactvar;
nret=(-1);
}
else{
if(nret==1)
first=luaK_exp2anyreg(fs,&e);
else{
luaK_exp2nextreg(fs,&e);
first=fs->nactvar;
}
}
}
luaK_ret(fs,first,nret);
}
static int statement(LexState*ls){
int line=ls->linenumber;
switch(ls->t.token){
case TK_IF:{
ifstat(ls,line);
return 0;
}
case TK_WHILE:{
whilestat(ls,line);
return 0;
}
case TK_DO:{
luaX_next(ls);
block(ls);
check_match(ls,TK_END,TK_DO,line);
return 0;
}
case TK_FOR:{
forstat(ls,line);
return 0;
}
case TK_REPEAT:{
repeatstat(ls,line);
return 0;
}
case TK_FUNCTION:{
funcstat(ls,line);
return 0;
}
case TK_LOCAL:{
luaX_next(ls);
if(testnext(ls,TK_FUNCTION))
localfunc(ls);
else
localstat(ls);
return 0;
}
case TK_RETURN:{
retstat(ls);
return 1;
}
case TK_BREAK:{
luaX_next(ls);
breakstat(ls);
return 1;
}
default:{
exprstat(ls);
return 0;
}
}
}
static void chunk(LexState*ls){
int islast=0;
enterlevel(ls);
while(!islast&&!block_follow(ls->t.token)){
islast=statement(ls);
testnext(ls,';');
ls->fs->freereg=ls->fs->nactvar;
}
leavelevel(ls);
}
static const TValue*luaV_tonumber(const TValue*obj,TValue*n){
lua_Number num;
if(ttisnumber(obj))return obj;
if(ttisstring(obj)&&luaO_str2d(svalue(obj),&num)){
setnvalue(n,num);
return n;
}
else
return NULL;
}
static int luaV_tostring(lua_State*L,StkId obj){
if(!ttisnumber(obj))
return 0;
else{
char s[32];
lua_Number n=nvalue(obj);
lua_number2str(s,n);
setsvalue(L,obj,luaS_new(L,s));
return 1;
}
}
static void callTMres(lua_State*L,StkId res,const TValue*f,
const TValue*p1,const TValue*p2){
ptrdiff_t result=savestack(L,res);
setobj(L,L->top,f);
setobj(L,L->top+1,p1);
setobj(L,L->top+2,p2);
luaD_checkstack(L,3);
L->top+=3;
luaD_call(L,L->top-3,1);
res=restorestack(L,result);
L->top--;
setobj(L,res,L->top);
}
static void callTM(lua_State*L,const TValue*f,const TValue*p1,
const TValue*p2,const TValue*p3){
setobj(L,L->top,f);
setobj(L,L->top+1,p1);
setobj(L,L->top+2,p2);
setobj(L,L->top+3,p3);
luaD_checkstack(L,4);
L->top+=4;
luaD_call(L,L->top-4,0);
}
static void luaV_gettable(lua_State*L,const TValue*t,TValue*key,StkId val){
int loop;
for(loop=0;loop<100;loop++){
const TValue*tm;
if(ttistable(t)){
Table*h=hvalue(t);
const TValue*res=luaH_get(h,key);
if(!ttisnil(res)||
(tm=fasttm(L,h->metatable,TM_INDEX))==NULL){
setobj(L,val,res);
return;
}
}
else if(ttisnil(tm=luaT_gettmbyobj(L,t,TM_INDEX)))
luaG_typeerror(L,t,"index");
if(ttisfunction(tm)){
callTMres(L,val,tm,t,key);
return;
}
t=tm;
}
luaG_runerror(L,"loop in gettable");
}
static void luaV_settable(lua_State*L,const TValue*t,TValue*key,StkId val){
int loop;
TValue temp;
for(loop=0;loop<100;loop++){
const TValue*tm;
if(ttistable(t)){
Table*h=hvalue(t);
TValue*oldval=luaH_set(L,h,key);
if(!ttisnil(oldval)||
(tm=fasttm(L,h->metatable,TM_NEWINDEX))==NULL){
setobj(L,oldval,val);
h->flags=0;
luaC_barriert(L,h,val);
return;
}
}
else if(ttisnil(tm=luaT_gettmbyobj(L,t,TM_NEWINDEX)))
luaG_typeerror(L,t,"index");
if(ttisfunction(tm)){
callTM(L,tm,t,key,val);
return;
}
setobj(L,&temp,tm);
t=&temp;
}
luaG_runerror(L,"loop in settable");
}
static int call_binTM(lua_State*L,const TValue*p1,const TValue*p2,
StkId res,TMS event){
const TValue*tm=luaT_gettmbyobj(L,p1,event);
if(ttisnil(tm))
tm=luaT_gettmbyobj(L,p2,event);
if(ttisnil(tm))return 0;
callTMres(L,res,tm,p1,p2);
return 1;
}
static const TValue*get_compTM(lua_State*L,Table*mt1,Table*mt2,
TMS event){
const TValue*tm1=fasttm(L,mt1,event);
const TValue*tm2;
if(tm1==NULL)return NULL;
if(mt1==mt2)return tm1;
tm2=fasttm(L,mt2,event);
if(tm2==NULL)return NULL;
if(luaO_rawequalObj(tm1,tm2))
return tm1;
return NULL;
}
static int call_orderTM(lua_State*L,const TValue*p1,const TValue*p2,
TMS event){
const TValue*tm1=luaT_gettmbyobj(L,p1,event);
const TValue*tm2;
if(ttisnil(tm1))return-1;
tm2=luaT_gettmbyobj(L,p2,event);
if(!luaO_rawequalObj(tm1,tm2))
return-1;
callTMres(L,L->top,tm1,p1,p2);
return!l_isfalse(L->top);
}
static int l_strcmp(const TString*ls,const TString*rs){
const char*l=getstr(ls);
size_t ll=ls->tsv.len;
const char*r=getstr(rs);
size_t lr=rs->tsv.len;
for(;;){
int temp=strcoll(l,r);
if(temp!=0)return temp;
else{
size_t len=strlen(l);
if(len==lr)
return(len==ll)?0:1;
else if(len==ll)
return-1;
len++;
l+=len;ll-=len;r+=len;lr-=len;
}
}
}
static int luaV_lessthan(lua_State*L,const TValue*l,const TValue*r){
int res;
if(ttype(l)!=ttype(r))
return luaG_ordererror(L,l,r);
else if(ttisnumber(l))
return luai_numlt(nvalue(l),nvalue(r));
else if(ttisstring(l))
return l_strcmp(rawtsvalue(l),rawtsvalue(r))<0;
else if((res=call_orderTM(L,l,r,TM_LT))!=-1)
return res;
return luaG_ordererror(L,l,r);
}
static int lessequal(lua_State*L,const TValue*l,const TValue*r){
int res;
if(ttype(l)!=ttype(r))
return luaG_ordererror(L,l,r);
else if(ttisnumber(l))
return luai_numle(nvalue(l),nvalue(r));
else if(ttisstring(l))
return l_strcmp(rawtsvalue(l),rawtsvalue(r))<=0;
else if((res=call_orderTM(L,l,r,TM_LE))!=-1)
return res;
else if((res=call_orderTM(L,r,l,TM_LT))!=-1)
return!res;
return luaG_ordererror(L,l,r);
}
static int luaV_equalval(lua_State*L,const TValue*t1,const TValue*t2){
const TValue*tm;
switch(ttype(t1)){
case 0:return 1;
case 3:return luai_numeq(nvalue(t1),nvalue(t2));
case 1:return bvalue(t1)==bvalue(t2);
case 2:return pvalue(t1)==pvalue(t2);
case 7:{
if(uvalue(t1)==uvalue(t2))return 1;
tm=get_compTM(L,uvalue(t1)->metatable,uvalue(t2)->metatable,
TM_EQ);
break;
}
case 5:{
if(hvalue(t1)==hvalue(t2))return 1;
tm=get_compTM(L,hvalue(t1)->metatable,hvalue(t2)->metatable,TM_EQ);
break;
}
default:return gcvalue(t1)==gcvalue(t2);
}
if(tm==NULL)return 0;
callTMres(L,L->top,tm,t1,t2);
return!l_isfalse(L->top);
}
static void luaV_concat(lua_State*L,int total,int last){
do{
StkId top=L->base+last+1;
int n=2;
if(!(ttisstring(top-2)||ttisnumber(top-2))||!tostring(L,top-1)){
if(!call_binTM(L,top-2,top-1,top-2,TM_CONCAT))
luaG_concaterror(L,top-2,top-1);
}else if(tsvalue(top-1)->len==0)
(void)tostring(L,top-2);
else{
size_t tl=tsvalue(top-1)->len;
char*buffer;
int i;
for(n=1;n<total&&tostring(L,top-n-1);n++){
size_t l=tsvalue(top-n-1)->len;
if(l>=((size_t)(~(size_t)0)-2)-tl)luaG_runerror(L,"string length overflow");
tl+=l;
}
buffer=luaZ_openspace(L,&G(L)->buff,tl);
tl=0;
for(i=n;i>0;i--){
size_t l=tsvalue(top-i)->len;
memcpy(buffer+tl,svalue(top-i),l);
tl+=l;
}
setsvalue(L,top-n,luaS_newlstr(L,buffer,tl));
}
total-=n-1;
last-=n-1;
}while(total>1);
}
static void Arith(lua_State*L,StkId ra,const TValue*rb,
const TValue*rc,TMS op){
TValue tempb,tempc;
const TValue*b,*c;
if((b=luaV_tonumber(rb,&tempb))!=NULL&&
(c=luaV_tonumber(rc,&tempc))!=NULL){
lua_Number nb=nvalue(b),nc=nvalue(c);
switch(op){
case TM_ADD:setnvalue(ra,luai_numadd(nb,nc));break;
case TM_SUB:setnvalue(ra,luai_numsub(nb,nc));break;
case TM_MUL:setnvalue(ra,luai_nummul(nb,nc));break;
case TM_DIV:setnvalue(ra,luai_numdiv(nb,nc));break;
case TM_MOD:setnvalue(ra,luai_nummod(nb,nc));break;
case TM_POW:setnvalue(ra,luai_numpow(nb,nc));break;
case TM_UNM:setnvalue(ra,luai_numunm(nb));break;
default:break;
}
}
else if(!call_binTM(L,rb,rc,ra,op))
luaG_aritherror(L,rb,rc);
}
#define runtime_check(L,c){if(!(c))break;}
#define RA(i)(base+GETARG_A(i))
#define RB(i)check_exp(getBMode(GET_OPCODE(i))==OpArgR,base+GETARG_B(i))
#define RKB(i)check_exp(getBMode(GET_OPCODE(i))==OpArgK,ISK(GETARG_B(i))?k+INDEXK(GETARG_B(i)):base+GETARG_B(i))
#define RKC(i)check_exp(getCMode(GET_OPCODE(i))==OpArgK,ISK(GETARG_C(i))?k+INDEXK(GETARG_C(i)):base+GETARG_C(i))
#define KBx(i)check_exp(getBMode(GET_OPCODE(i))==OpArgK,k+GETARG_Bx(i))
#define dojump(L,pc,i){(pc)+=(i);}
#define Protect(x){L->savedpc=pc;{x;};base=L->base;}
#define arith_op(op,tm){TValue*rb=RKB(i);TValue*rc=RKC(i);if(ttisnumber(rb)&&ttisnumber(rc)){lua_Number nb=nvalue(rb),nc=nvalue(rc);setnvalue(ra,op(nb,nc));}else Protect(Arith(L,ra,rb,rc,tm));}
static void luaV_execute(lua_State*L,int nexeccalls){
LClosure*cl;
StkId base;
TValue*k;
const Instruction*pc;
reentry:
pc=L->savedpc;
cl=&clvalue(L->ci->func)->l;
base=L->base;
k=cl->p->k;
for(;;){
const Instruction i=*pc++;
StkId ra;
ra=RA(i);
switch(GET_OPCODE(i)){
case OP_MOVE:{
setobj(L,ra,RB(i));
continue;
}
case OP_LOADK:{
setobj(L,ra,KBx(i));
continue;
}
case OP_LOADBOOL:{
setbvalue(ra,GETARG_B(i));
if(GETARG_C(i))pc++;
continue;
}
case OP_LOADNIL:{
TValue*rb=RB(i);
do{
setnilvalue(rb--);
}while(rb>=ra);
continue;
}
case OP_GETUPVAL:{
int b=GETARG_B(i);
setobj(L,ra,cl->upvals[b]->v);
continue;
}
case OP_GETGLOBAL:{
TValue g;
TValue*rb=KBx(i);
sethvalue(L,&g,cl->env);
Protect(luaV_gettable(L,&g,rb,ra));
continue;
}
case OP_GETTABLE:{
Protect(luaV_gettable(L,RB(i),RKC(i),ra));
continue;
}
case OP_SETGLOBAL:{
TValue g;
sethvalue(L,&g,cl->env);
Protect(luaV_settable(L,&g,KBx(i),ra));
continue;
}
case OP_SETUPVAL:{
UpVal*uv=cl->upvals[GETARG_B(i)];
setobj(L,uv->v,ra);
luaC_barrier(L,uv,ra);
continue;
}
case OP_SETTABLE:{
Protect(luaV_settable(L,ra,RKB(i),RKC(i)));
continue;
}
case OP_NEWTABLE:{
int b=GETARG_B(i);
int c=GETARG_C(i);
sethvalue(L,ra,luaH_new(L,luaO_fb2int(b),luaO_fb2int(c)));
Protect(luaC_checkGC(L));
continue;
}
case OP_SELF:{
StkId rb=RB(i);
setobj(L,ra+1,rb);
Protect(luaV_gettable(L,rb,RKC(i),ra));
continue;
}
case OP_ADD:{
arith_op(luai_numadd,TM_ADD);
continue;
}
case OP_SUB:{
arith_op(luai_numsub,TM_SUB);
continue;
}
case OP_MUL:{
arith_op(luai_nummul,TM_MUL);
continue;
}
case OP_DIV:{
arith_op(luai_numdiv,TM_DIV);
continue;
}
case OP_MOD:{
arith_op(luai_nummod,TM_MOD);
continue;
}
case OP_POW:{
arith_op(luai_numpow,TM_POW);
continue;
}
case OP_UNM:{
TValue*rb=RB(i);
if(ttisnumber(rb)){
lua_Number nb=nvalue(rb);
setnvalue(ra,luai_numunm(nb));
}
else{
Protect(Arith(L,ra,rb,rb,TM_UNM));
}
continue;
}
case OP_NOT:{
int res=l_isfalse(RB(i));
setbvalue(ra,res);
continue;
}
case OP_LEN:{
const TValue*rb=RB(i);
switch(ttype(rb)){
case 5:{
setnvalue(ra,cast_num(luaH_getn(hvalue(rb))));
break;
}
case 4:{
setnvalue(ra,cast_num(tsvalue(rb)->len));
break;
}
default:{
Protect(
if(!call_binTM(L,rb,(&luaO_nilobject_),ra,TM_LEN))
luaG_typeerror(L,rb,"get length of");
)
}
}
continue;
}
case OP_CONCAT:{
int b=GETARG_B(i);
int c=GETARG_C(i);
Protect(luaV_concat(L,c-b+1,c);luaC_checkGC(L));
setobj(L,RA(i),base+b);
continue;
}
case OP_JMP:{
dojump(L,pc,GETARG_sBx(i));
continue;
}
case OP_EQ:{
TValue*rb=RKB(i);
TValue*rc=RKC(i);
Protect(
if(equalobj(L,rb,rc)==GETARG_A(i))
dojump(L,pc,GETARG_sBx(*pc));
)
pc++;
continue;
}
case OP_LT:{
Protect(
if(luaV_lessthan(L,RKB(i),RKC(i))==GETARG_A(i))
dojump(L,pc,GETARG_sBx(*pc));
)
pc++;
continue;
}
case OP_LE:{
Protect(
if(lessequal(L,RKB(i),RKC(i))==GETARG_A(i))
dojump(L,pc,GETARG_sBx(*pc));
)
pc++;
continue;
}
case OP_TEST:{
if(l_isfalse(ra)!=GETARG_C(i))
dojump(L,pc,GETARG_sBx(*pc));
pc++;
continue;
}
case OP_TESTSET:{
TValue*rb=RB(i);
if(l_isfalse(rb)!=GETARG_C(i)){
setobj(L,ra,rb);
dojump(L,pc,GETARG_sBx(*pc));
}
pc++;
continue;
}
case OP_CALL:{
int b=GETARG_B(i);
int nresults=GETARG_C(i)-1;
if(b!=0)L->top=ra+b;
L->savedpc=pc;
switch(luaD_precall(L,ra,nresults)){
case 0:{
nexeccalls++;
goto reentry;
}
case 1:{
if(nresults>=0)L->top=L->ci->top;
base=L->base;
continue;
}
default:{
return;
}
}
}
case OP_TAILCALL:{
int b=GETARG_B(i);
if(b!=0)L->top=ra+b;
L->savedpc=pc;
switch(luaD_precall(L,ra,(-1))){
case 0:{
CallInfo*ci=L->ci-1;
int aux;
StkId func=ci->func;
StkId pfunc=(ci+1)->func;
if(L->openupval)luaF_close(L,ci->base);
L->base=ci->base=ci->func+((ci+1)->base-pfunc);
for(aux=0;pfunc+aux<L->top;aux++)
setobj(L,func+aux,pfunc+aux);
ci->top=L->top=func+aux;
ci->savedpc=L->savedpc;
ci->tailcalls++;
L->ci--;
goto reentry;
}
case 1:{
base=L->base;
continue;
}
default:{
return;
}
}
}
case OP_RETURN:{
int b=GETARG_B(i);
if(b!=0)L->top=ra+b-1;
if(L->openupval)luaF_close(L,base);
L->savedpc=pc;
b=luaD_poscall(L,ra);
if(--nexeccalls==0)
return;
else{
if(b)L->top=L->ci->top;
goto reentry;
}
}
case OP_FORLOOP:{
lua_Number step=nvalue(ra+2);
lua_Number idx=luai_numadd(nvalue(ra),step);
lua_Number limit=nvalue(ra+1);
if(luai_numlt(0,step)?luai_numle(idx,limit)
:luai_numle(limit,idx)){
dojump(L,pc,GETARG_sBx(i));
setnvalue(ra,idx);
setnvalue(ra+3,idx);
}
continue;
}
case OP_FORPREP:{
const TValue*init=ra;
const TValue*plimit=ra+1;
const TValue*pstep=ra+2;
L->savedpc=pc;
if(!tonumber(init,ra))
luaG_runerror(L,LUA_QL("for")" initial value must be a number");
else if(!tonumber(plimit,ra+1))
luaG_runerror(L,LUA_QL("for")" limit must be a number");
else if(!tonumber(pstep,ra+2))
luaG_runerror(L,LUA_QL("for")" step must be a number");
setnvalue(ra,luai_numsub(nvalue(ra),nvalue(pstep)));
dojump(L,pc,GETARG_sBx(i));
continue;
}
case OP_TFORLOOP:{
StkId cb=ra+3;
setobj(L,cb+2,ra+2);
setobj(L,cb+1,ra+1);
setobj(L,cb,ra);
L->top=cb+3;
Protect(luaD_call(L,cb,GETARG_C(i)));
L->top=L->ci->top;
cb=RA(i)+3;
if(!ttisnil(cb)){
setobj(L,cb-1,cb);
dojump(L,pc,GETARG_sBx(*pc));
}
pc++;
continue;
}
case OP_SETLIST:{
int n=GETARG_B(i);
int c=GETARG_C(i);
int last;
Table*h;
if(n==0){
n=cast_int(L->top-ra)-1;
L->top=L->ci->top;
}
if(c==0)c=cast_int(*pc++);
runtime_check(L,ttistable(ra));
h=hvalue(ra);
last=((c-1)*50)+n;
if(last>h->sizearray)
luaH_resizearray(L,h,last);
for(;n>0;n--){
TValue*val=ra+n;
setobj(L,luaH_setnum(L,h,last--),val);
luaC_barriert(L,h,val);
}
continue;
}
case OP_CLOSE:{
luaF_close(L,ra);
continue;
}
case OP_CLOSURE:{
Proto*p;
Closure*ncl;
int nup,j;
p=cl->p->p[GETARG_Bx(i)];
nup=p->nups;
ncl=luaF_newLclosure(L,nup,cl->env);
ncl->l.p=p;
for(j=0;j<nup;j++,pc++){
if(GET_OPCODE(*pc)==OP_GETUPVAL)
ncl->l.upvals[j]=cl->upvals[GETARG_B(*pc)];
else{
ncl->l.upvals[j]=luaF_findupval(L,base+GETARG_B(*pc));
}
}
setclvalue(L,ra,ncl);
Protect(luaC_checkGC(L));
continue;
}
case OP_VARARG:{
int b=GETARG_B(i)-1;
int j;
CallInfo*ci=L->ci;
int n=cast_int(ci->base-ci->func)-cl->p->numparams-1;
if(b==(-1)){
Protect(luaD_checkstack(L,n));
ra=RA(i);
b=n;
L->top=ra+n;
}
for(j=0;j<b;j++){
if(j<n){
setobj(L,ra+j,ci->base-n+j);
}
else{
setnilvalue(ra+j);
}
}
continue;
}
}
}
}
#define api_checknelems(L,n)luai_apicheck(L,(n)<=(L->top-L->base))
#define api_checkvalidindex(L,i)luai_apicheck(L,(i)!=(&luaO_nilobject_))
#define api_incr_top(L){luai_apicheck(L,L->top<L->ci->top);L->top++;}
static TValue*index2adr(lua_State*L,int idx){
if(idx>0){
TValue*o=L->base+(idx-1);
luai_apicheck(L,idx<=L->ci->top-L->base);
if(o>=L->top)return cast(TValue*,(&luaO_nilobject_));
else return o;
}
else if(idx>(-10000)){
luai_apicheck(L,idx!=0&&-idx<=L->top-L->base);
return L->top+idx;
}
else switch(idx){
case(-10000):return registry(L);
case(-10001):{
Closure*func=curr_func(L);
sethvalue(L,&L->env,func->c.env);
return&L->env;
}
case(-10002):return gt(L);
default:{
Closure*func=curr_func(L);
idx=(-10002)-idx;
return(idx<=func->c.nupvalues)
?&func->c.upvalue[idx-1]
:cast(TValue*,(&luaO_nilobject_));
}
}
}
static Table*getcurrenv(lua_State*L){
if(L->ci==L->base_ci)
return hvalue(gt(L));
else{
Closure*func=curr_func(L);
return func->c.env;
}
}
static int lua_checkstack(lua_State*L,int size){
int res=1;
if(size>8000||(L->top-L->base+size)>8000)
res=0;
else if(size>0){
luaD_checkstack(L,size);
if(L->ci->top<L->top+size)
L->ci->top=L->top+size;
}
return res;
}
static lua_CFunction lua_atpanic(lua_State*L,lua_CFunction panicf){
lua_CFunction old;
old=G(L)->panic;
G(L)->panic=panicf;
return old;
}
static int lua_gettop(lua_State*L){
return cast_int(L->top-L->base);
}
static void lua_settop(lua_State*L,int idx){
if(idx>=0){
luai_apicheck(L,idx<=L->stack_last-L->base);
while(L->top<L->base+idx)
setnilvalue(L->top++);
L->top=L->base+idx;
}
else{
luai_apicheck(L,-(idx+1)<=(L->top-L->base));
L->top+=idx+1;
}
}
static void lua_remove(lua_State*L,int idx){
StkId p;
p=index2adr(L,idx);
api_checkvalidindex(L,p);
while(++p<L->top)setobj(L,p-1,p);
L->top--;
}
static void lua_insert(lua_State*L,int idx){
StkId p;
StkId q;
p=index2adr(L,idx);
api_checkvalidindex(L,p);
for(q=L->top;q>p;q--)setobj(L,q,q-1);
setobj(L,p,L->top);
}
static void lua_replace(lua_State*L,int idx){
StkId o;
if(idx==(-10001)&&L->ci==L->base_ci)
luaG_runerror(L,"no calling environment");
api_checknelems(L,1);
o=index2adr(L,idx);
api_checkvalidindex(L,o);
if(idx==(-10001)){
Closure*func=curr_func(L);
luai_apicheck(L,ttistable(L->top-1));
func->c.env=hvalue(L->top-1);
luaC_barrier(L,func,L->top-1);
}
else{
setobj(L,o,L->top-1);
if(idx<(-10002))
luaC_barrier(L,curr_func(L),L->top-1);
}
L->top--;
}
static void lua_pushvalue(lua_State*L,int idx){
setobj(L,L->top,index2adr(L,idx));
api_incr_top(L);
}
static int lua_type(lua_State*L,int idx){
StkId o=index2adr(L,idx);
return(o==(&luaO_nilobject_))?(-1):ttype(o);
}
static const char*lua_typename(lua_State*L,int t){
UNUSED(L);
return(t==(-1))?"no value":luaT_typenames[t];
}
static int lua_iscfunction(lua_State*L,int idx){
StkId o=index2adr(L,idx);
return iscfunction(o);
}
static int lua_isnumber(lua_State*L,int idx){
TValue n;
const TValue*o=index2adr(L,idx);
return tonumber(o,&n);
}
static int lua_isstring(lua_State*L,int idx){
int t=lua_type(L,idx);
return(t==4||t==3);
}
static int lua_rawequal(lua_State*L,int index1,int index2){
StkId o1=index2adr(L,index1);
StkId o2=index2adr(L,index2);
return(o1==(&luaO_nilobject_)||o2==(&luaO_nilobject_))?0
:luaO_rawequalObj(o1,o2);
}
static int lua_lessthan(lua_State*L,int index1,int index2){
StkId o1,o2;
int i;
o1=index2adr(L,index1);
o2=index2adr(L,index2);
i=(o1==(&luaO_nilobject_)||o2==(&luaO_nilobject_))?0
:luaV_lessthan(L,o1,o2);
return i;
}
static lua_Number lua_tonumber(lua_State*L,int idx){
TValue n;
const TValue*o=index2adr(L,idx);
if(tonumber(o,&n))
return nvalue(o);
else
return 0;
}
static lua_Integer lua_tointeger(lua_State*L,int idx){
TValue n;
const TValue*o=index2adr(L,idx);
if(tonumber(o,&n)){
lua_Integer res;
lua_Number num=nvalue(o);
lua_number2integer(res,num);
return res;
}
else
return 0;
}
static int lua_toboolean(lua_State*L,int idx){
const TValue*o=index2adr(L,idx);
return!l_isfalse(o);
}
static const char*lua_tolstring(lua_State*L,int idx,size_t*len){
StkId o=index2adr(L,idx);
if(!ttisstring(o)){
if(!luaV_tostring(L,o)){
if(len!=NULL)*len=0;
return NULL;
}
luaC_checkGC(L);
o=index2adr(L,idx);
}
if(len!=NULL)*len=tsvalue(o)->len;
return svalue(o);
}
static size_t lua_objlen(lua_State*L,int idx){
StkId o=index2adr(L,idx);
switch(ttype(o)){
case 4:return tsvalue(o)->len;
case 7:return uvalue(o)->len;
case 5:return luaH_getn(hvalue(o));
case 3:{
size_t l;
l=(luaV_tostring(L,o)?tsvalue(o)->len:0);
return l;
}
default:return 0;
}
}
static lua_CFunction lua_tocfunction(lua_State*L,int idx){
StkId o=index2adr(L,idx);
return(!iscfunction(o))?NULL:clvalue(o)->c.f;
}
static void*lua_touserdata(lua_State*L,int idx){
StkId o=index2adr(L,idx);
switch(ttype(o)){
case 7:return(rawuvalue(o)+1);
case 2:return pvalue(o);
default:return NULL;
}
}
static void lua_pushnil(lua_State*L){
setnilvalue(L->top);
api_incr_top(L);
}
static void lua_pushnumber(lua_State*L,lua_Number n){
setnvalue(L->top,n);
api_incr_top(L);
}
static void lua_pushinteger(lua_State*L,lua_Integer n){
setnvalue(L->top,cast_num(n));
api_incr_top(L);
}
static void lua_pushlstring(lua_State*L,const char*s,size_t len){
luaC_checkGC(L);
setsvalue(L,L->top,luaS_newlstr(L,s,len));
api_incr_top(L);
}
static void lua_pushstring(lua_State*L,const char*s){
if(s==NULL)
lua_pushnil(L);
else
lua_pushlstring(L,s,strlen(s));
}
static const char*lua_pushvfstring(lua_State*L,const char*fmt,
va_list argp){
const char*ret;
luaC_checkGC(L);
ret=luaO_pushvfstring(L,fmt,argp);
return ret;
}
static const char*lua_pushfstring(lua_State*L,const char*fmt,...){
const char*ret;
va_list argp;
luaC_checkGC(L);
va_start(argp,fmt);
ret=luaO_pushvfstring(L,fmt,argp);
va_end(argp);
return ret;
}
static void lua_pushcclosure(lua_State*L,lua_CFunction fn,int n){
Closure*cl;
luaC_checkGC(L);
api_checknelems(L,n);
cl=luaF_newCclosure(L,n,getcurrenv(L));
cl->c.f=fn;
L->top-=n;
while(n--)
setobj(L,&cl->c.upvalue[n],L->top+n);
setclvalue(L,L->top,cl);
api_incr_top(L);
}
static void lua_pushboolean(lua_State*L,int b){
setbvalue(L->top,(b!=0));
api_incr_top(L);
}
static int lua_pushthread(lua_State*L){
setthvalue(L,L->top,L);
api_incr_top(L);
return(G(L)->mainthread==L);
}
static void lua_gettable(lua_State*L,int idx){
StkId t;
t=index2adr(L,idx);
api_checkvalidindex(L,t);
luaV_gettable(L,t,L->top-1,L->top-1);
}
static void lua_getfield(lua_State*L,int idx,const char*k){
StkId t;
TValue key;
t=index2adr(L,idx);
api_checkvalidindex(L,t);
setsvalue(L,&key,luaS_new(L,k));
luaV_gettable(L,t,&key,L->top);
api_incr_top(L);
}
static void lua_rawget(lua_State*L,int idx){
StkId t;
t=index2adr(L,idx);
luai_apicheck(L,ttistable(t));
setobj(L,L->top-1,luaH_get(hvalue(t),L->top-1));
}
static void lua_rawgeti(lua_State*L,int idx,int n){
StkId o;
o=index2adr(L,idx);
luai_apicheck(L,ttistable(o));
setobj(L,L->top,luaH_getnum(hvalue(o),n));
api_incr_top(L);
}
static void lua_createtable(lua_State*L,int narray,int nrec){
luaC_checkGC(L);
sethvalue(L,L->top,luaH_new(L,narray,nrec));
api_incr_top(L);
}
static int lua_getmetatable(lua_State*L,int objindex){
const TValue*obj;
Table*mt=NULL;
int res;
obj=index2adr(L,objindex);
switch(ttype(obj)){
case 5:
mt=hvalue(obj)->metatable;
break;
case 7:
mt=uvalue(obj)->metatable;
break;
default:
mt=G(L)->mt[ttype(obj)];
break;
}
if(mt==NULL)
res=0;
else{
sethvalue(L,L->top,mt);
api_incr_top(L);
res=1;
}
return res;
}
static void lua_getfenv(lua_State*L,int idx){
StkId o;
o=index2adr(L,idx);
api_checkvalidindex(L,o);
switch(ttype(o)){
case 6:
sethvalue(L,L->top,clvalue(o)->c.env);
break;
case 7:
sethvalue(L,L->top,uvalue(o)->env);
break;
case 8:
setobj(L,L->top,gt(thvalue(o)));
break;
default:
setnilvalue(L->top);
break;
}
api_incr_top(L);
}
static void lua_settable(lua_State*L,int idx){
StkId t;
api_checknelems(L,2);
t=index2adr(L,idx);
api_checkvalidindex(L,t);
luaV_settable(L,t,L->top-2,L->top-1);
L->top-=2;
}
static void lua_setfield(lua_State*L,int idx,const char*k){
StkId t;
TValue key;
api_checknelems(L,1);
t=index2adr(L,idx);
api_checkvalidindex(L,t);
setsvalue(L,&key,luaS_new(L,k));
luaV_settable(L,t,&key,L->top-1);
L->top--;
}
static void lua_rawset(lua_State*L,int idx){
StkId t;
api_checknelems(L,2);
t=index2adr(L,idx);
luai_apicheck(L,ttistable(t));
setobj(L,luaH_set(L,hvalue(t),L->top-2),L->top-1);
luaC_barriert(L,hvalue(t),L->top-1);
L->top-=2;
}
static void lua_rawseti(lua_State*L,int idx,int n){
StkId o;
api_checknelems(L,1);
o=index2adr(L,idx);
luai_apicheck(L,ttistable(o));
setobj(L,luaH_setnum(L,hvalue(o),n),L->top-1);
luaC_barriert(L,hvalue(o),L->top-1);
L->top--;
}
static int lua_setmetatable(lua_State*L,int objindex){
TValue*obj;
Table*mt;
api_checknelems(L,1);
obj=index2adr(L,objindex);
api_checkvalidindex(L,obj);
if(ttisnil(L->top-1))
mt=NULL;
else{
luai_apicheck(L,ttistable(L->top-1));
mt=hvalue(L->top-1);
}
switch(ttype(obj)){
case 5:{
hvalue(obj)->metatable=mt;
if(mt)
luaC_objbarriert(L,hvalue(obj),mt);
break;
}
case 7:{
uvalue(obj)->metatable=mt;
if(mt)
luaC_objbarrier(L,rawuvalue(obj),mt);
break;
}
default:{
G(L)->mt[ttype(obj)]=mt;
break;
}
}
L->top--;
return 1;
}
static int lua_setfenv(lua_State*L,int idx){
StkId o;
int res=1;
api_checknelems(L,1);
o=index2adr(L,idx);
api_checkvalidindex(L,o);
luai_apicheck(L,ttistable(L->top-1));
switch(ttype(o)){
case 6:
clvalue(o)->c.env=hvalue(L->top-1);
break;
case 7:
uvalue(o)->env=hvalue(L->top-1);
break;
case 8:
sethvalue(L,gt(thvalue(o)),hvalue(L->top-1));
break;
default:
res=0;
break;
}
if(res)luaC_objbarrier(L,gcvalue(o),hvalue(L->top-1));
L->top--;
return res;
}
#define adjustresults(L,nres){if(nres==(-1)&&L->top>=L->ci->top)L->ci->top=L->top;}
#define checkresults(L,na,nr)luai_apicheck(L,(nr)==(-1)||(L->ci->top-L->top>=(nr)-(na)))
static void lua_call(lua_State*L,int nargs,int nresults){
StkId func;
api_checknelems(L,nargs+1);
checkresults(L,nargs,nresults);
func=L->top-(nargs+1);
luaD_call(L,func,nresults);
adjustresults(L,nresults);
}
struct CallS{
StkId func;
int nresults;
};
static void f_call(lua_State*L,void*ud){
struct CallS*c=cast(struct CallS*,ud);
luaD_call(L,c->func,c->nresults);
}
static int lua_pcall(lua_State*L,int nargs,int nresults,int errfunc){
struct CallS c;
int status;
ptrdiff_t func;
api_checknelems(L,nargs+1);
checkresults(L,nargs,nresults);
if(errfunc==0)
func=0;
else{
StkId o=index2adr(L,errfunc);
api_checkvalidindex(L,o);
func=savestack(L,o);
}
c.func=L->top-(nargs+1);
c.nresults=nresults;
status=luaD_pcall(L,f_call,&c,savestack(L,c.func),func);
adjustresults(L,nresults);
return status;
}
static int lua_load(lua_State*L,lua_Reader reader,void*data,
const char*chunkname){
ZIO z;
int status;
if(!chunkname)chunkname="?";
luaZ_init(L,&z,reader,data);
status=luaD_protectedparser(L,&z,chunkname);
return status;
}
static int lua_error(lua_State*L){
api_checknelems(L,1);
luaG_errormsg(L);
return 0;
}
static int lua_next(lua_State*L,int idx){
StkId t;
int more;
t=index2adr(L,idx);
luai_apicheck(L,ttistable(t));
more=luaH_next(L,hvalue(t),L->top-1);
if(more){
api_incr_top(L);
}
else
L->top-=1;
return more;
}
static void lua_concat(lua_State*L,int n){
api_checknelems(L,n);
if(n>=2){
luaC_checkGC(L);
luaV_concat(L,n,cast_int(L->top-L->base)-1);
L->top-=(n-1);
}
else if(n==0){
setsvalue(L,L->top,luaS_newlstr(L,"",0));
api_incr_top(L);
}
}
static void*lua_newuserdata(lua_State*L,size_t size){
Udata*u;
luaC_checkGC(L);
u=luaS_newudata(L,size,getcurrenv(L));
setuvalue(L,L->top,u);
api_incr_top(L);
return u+1;
}
#define luaL_getn(L,i)((int)lua_objlen(L,i))
#define luaL_setn(L,i,j)((void)0)
typedef struct luaL_Reg{
const char*name;
lua_CFunction func;
}luaL_Reg;
static void luaI_openlib(lua_State*L,const char*libname,
const luaL_Reg*l,int nup);
static int luaL_argerror(lua_State*L,int numarg,const char*extramsg);
static const char* luaL_checklstring(lua_State*L,int numArg,
size_t*l);
static const char* luaL_optlstring(lua_State*L,int numArg,
const char*def,size_t*l);
static lua_Integer luaL_checkinteger(lua_State*L,int numArg);
static lua_Integer luaL_optinteger(lua_State*L,int nArg,
lua_Integer def);
static int luaL_error(lua_State*L,const char*fmt,...);
static const char* luaL_findtable(lua_State*L,int idx,
const char*fname,int szhint);
#define luaL_argcheck(L,cond,numarg,extramsg)((void)((cond)||luaL_argerror(L,(numarg),(extramsg))))
#define luaL_checkstring(L,n)(luaL_checklstring(L,(n),NULL))
#define luaL_optstring(L,n,d)(luaL_optlstring(L,(n),(d),NULL))
#define luaL_checkint(L,n)((int)luaL_checkinteger(L,(n)))
#define luaL_optint(L,n,d)((int)luaL_optinteger(L,(n),(d)))
#define luaL_typename(L,i)lua_typename(L,lua_type(L,(i)))
#define luaL_getmetatable(L,n)(lua_getfield(L,(-10000),(n)))
#define luaL_opt(L,f,n,d)(lua_isnoneornil(L,(n))?(d):f(L,(n)))
typedef struct luaL_Buffer{
char*p;
int lvl;
lua_State*L;
char buffer[BUFSIZ];
}luaL_Buffer;
#define luaL_addchar(B,c)((void)((B)->p<((B)->buffer+BUFSIZ)||luaL_prepbuffer(B)),(*(B)->p++=(char)(c)))
#define luaL_addsize(B,n)((B)->p+=(n))
static char* luaL_prepbuffer(luaL_Buffer*B);
static int luaL_argerror(lua_State*L,int narg,const char*extramsg){
lua_Debug ar;
if(!lua_getstack(L,0,&ar))
return luaL_error(L,"bad argument #%d (%s)",narg,extramsg);
lua_getinfo(L,"n",&ar);
if(strcmp(ar.namewhat,"method")==0){
narg--;
if(narg==0)
return luaL_error(L,"calling "LUA_QL("%s")" on bad self (%s)",
ar.name,extramsg);
}
if(ar.name==NULL)
ar.name="?";
return luaL_error(L,"bad argument #%d to "LUA_QL("%s")" (%s)",
narg,ar.name,extramsg);
}
static int luaL_typerror(lua_State*L,int narg,const char*tname){
const char*msg=lua_pushfstring(L,"%s expected, got %s",
tname,luaL_typename(L,narg));
return luaL_argerror(L,narg,msg);
}
static void tag_error(lua_State*L,int narg,int tag){
luaL_typerror(L,narg,lua_typename(L,tag));
}
static void luaL_where(lua_State*L,int level){
lua_Debug ar;
if(lua_getstack(L,level,&ar)){
lua_getinfo(L,"Sl",&ar);
if(ar.currentline>0){
lua_pushfstring(L,"%s:%d: ",ar.short_src,ar.currentline);
return;
}
}
lua_pushliteral(L,"");
}
static int luaL_error(lua_State*L,const char*fmt,...){
va_list argp;
va_start(argp,fmt);
luaL_where(L,1);
lua_pushvfstring(L,fmt,argp);
va_end(argp);
lua_concat(L,2);
return lua_error(L);
}
static int luaL_newmetatable(lua_State*L,const char*tname){
lua_getfield(L,(-10000),tname);
if(!lua_isnil(L,-1))
return 0;
lua_pop(L,1);
lua_newtable(L);
lua_pushvalue(L,-1);
lua_setfield(L,(-10000),tname);
return 1;
}
static void*luaL_checkudata(lua_State*L,int ud,const char*tname){
void*p=lua_touserdata(L,ud);
if(p!=NULL){
if(lua_getmetatable(L,ud)){
lua_getfield(L,(-10000),tname);
if(lua_rawequal(L,-1,-2)){
lua_pop(L,2);
return p;
}
}
}
luaL_typerror(L,ud,tname);
return NULL;
}
static void luaL_checkstack(lua_State*L,int space,const char*mes){
if(!lua_checkstack(L,space))
luaL_error(L,"stack overflow (%s)",mes);
}
static void luaL_checktype(lua_State*L,int narg,int t){
if(lua_type(L,narg)!=t)
tag_error(L,narg,t);
}
static void luaL_checkany(lua_State*L,int narg){
if(lua_type(L,narg)==(-1))
luaL_argerror(L,narg,"value expected");
}
static const char*luaL_checklstring(lua_State*L,int narg,size_t*len){
const char*s=lua_tolstring(L,narg,len);
if(!s)tag_error(L,narg,4);
return s;
}
static const char*luaL_optlstring(lua_State*L,int narg,
const char*def,size_t*len){
if(lua_isnoneornil(L,narg)){
if(len)
*len=(def?strlen(def):0);
return def;
}
else return luaL_checklstring(L,narg,len);
}
static lua_Number luaL_checknumber(lua_State*L,int narg){
lua_Number d=lua_tonumber(L,narg);
if(d==0&&!lua_isnumber(L,narg))
tag_error(L,narg,3);
return d;
}
static lua_Integer luaL_checkinteger(lua_State*L,int narg){
lua_Integer d=lua_tointeger(L,narg);
if(d==0&&!lua_isnumber(L,narg))
tag_error(L,narg,3);
return d;
}
static lua_Integer luaL_optinteger(lua_State*L,int narg,
lua_Integer def){
return luaL_opt(L,luaL_checkinteger,narg,def);
}
static int luaL_getmetafield(lua_State*L,int obj,const char*event){
if(!lua_getmetatable(L,obj))
return 0;
lua_pushstring(L,event);
lua_rawget(L,-2);
if(lua_isnil(L,-1)){
lua_pop(L,2);
return 0;
}
else{
lua_remove(L,-2);
return 1;
}
}
static void luaL_register(lua_State*L,const char*libname,
const luaL_Reg*l){
luaI_openlib(L,libname,l,0);
}
static int libsize(const luaL_Reg*l){
int size=0;
for(;l->name;l++)size++;
return size;
}
static void luaI_openlib(lua_State*L,const char*libname,
const luaL_Reg*l,int nup){
if(libname){
int size=libsize(l);
luaL_findtable(L,(-10000),"_LOADED",1);
lua_getfield(L,-1,libname);
if(!lua_istable(L,-1)){
lua_pop(L,1);
if(luaL_findtable(L,(-10002),libname,size)!=NULL)
luaL_error(L,"name conflict for module "LUA_QL("%s"),libname);
lua_pushvalue(L,-1);
lua_setfield(L,-3,libname);
}
lua_remove(L,-2);
lua_insert(L,-(nup+1));
}
for(;l->name;l++){
int i;
for(i=0;i<nup;i++)
lua_pushvalue(L,-nup);
lua_pushcclosure(L,l->func,nup);
lua_setfield(L,-(nup+2),l->name);
}
lua_pop(L,nup);
}
static const char*luaL_findtable(lua_State*L,int idx,
const char*fname,int szhint){
const char*e;
lua_pushvalue(L,idx);
do{
e=strchr(fname,'.');
if(e==NULL)e=fname+strlen(fname);
lua_pushlstring(L,fname,e-fname);
lua_rawget(L,-2);
if(lua_isnil(L,-1)){
lua_pop(L,1);
lua_createtable(L,0,(*e=='.'?1:szhint));
lua_pushlstring(L,fname,e-fname);
lua_pushvalue(L,-2);
lua_settable(L,-4);
}
else if(!lua_istable(L,-1)){
lua_pop(L,2);
return fname;
}
lua_remove(L,-2);
fname=e+1;
}while(*e=='.');
return NULL;
}
#define bufflen(B)((B)->p-(B)->buffer)
#define bufffree(B)((size_t)(BUFSIZ-bufflen(B)))
static int emptybuffer(luaL_Buffer*B){
size_t l=bufflen(B);
if(l==0)return 0;
else{
lua_pushlstring(B->L,B->buffer,l);
B->p=B->buffer;
B->lvl++;
return 1;
}
}
static void adjuststack(luaL_Buffer*B){
if(B->lvl>1){
lua_State*L=B->L;
int toget=1;
size_t toplen=lua_strlen(L,-1);
do{
size_t l=lua_strlen(L,-(toget+1));
if(B->lvl-toget+1>=(20/2)||toplen>l){
toplen+=l;
toget++;
}
else break;
}while(toget<B->lvl);
lua_concat(L,toget);
B->lvl=B->lvl-toget+1;
}
}
static char*luaL_prepbuffer(luaL_Buffer*B){
if(emptybuffer(B))
adjuststack(B);
return B->buffer;
}
static void luaL_addlstring(luaL_Buffer*B,const char*s,size_t l){
while(l--)
luaL_addchar(B,*s++);
}
static void luaL_pushresult(luaL_Buffer*B){
emptybuffer(B);
lua_concat(B->L,B->lvl);
B->lvl=1;
}
static void luaL_addvalue(luaL_Buffer*B){
lua_State*L=B->L;
size_t vl;
const char*s=lua_tolstring(L,-1,&vl);
if(vl<=bufffree(B)){
memcpy(B->p,s,vl);
B->p+=vl;
lua_pop(L,1);
}
else{
if(emptybuffer(B))
lua_insert(L,-2);
B->lvl++;
adjuststack(B);
}
}
static void luaL_buffinit(lua_State*L,luaL_Buffer*B){
B->L=L;
B->p=B->buffer;
B->lvl=0;
}
typedef struct LoadF{
int extraline;
FILE*f;
char buff[BUFSIZ];
}LoadF;
static const char*getF(lua_State*L,void*ud,size_t*size){
LoadF*lf=(LoadF*)ud;
(void)L;
if(lf->extraline){
lf->extraline=0;
*size=1;
return"\n";
}
if(feof(lf->f))return NULL;
*size=fread(lf->buff,1,sizeof(lf->buff),lf->f);
return(*size>0)?lf->buff:NULL;
}
static int errfile(lua_State*L,const char*what,int fnameindex){
const char*serr=strerror(errno);
const char*filename=lua_tostring(L,fnameindex)+1;
lua_pushfstring(L,"cannot %s %s: %s",what,filename,serr);
lua_remove(L,fnameindex);
return(5+1);
}
static int luaL_loadfile(lua_State*L,const char*filename){
LoadF lf;
int status,readstatus;
int c;
int fnameindex=lua_gettop(L)+1;
lf.extraline=0;
if(filename==NULL){
lua_pushliteral(L,"=stdin");
lf.f=stdin;
}
else{
lua_pushfstring(L,"@%s",filename);
lf.f=fopen(filename,"r");
if(lf.f==NULL)return errfile(L,"open",fnameindex);
}
c=getc(lf.f);
if(c=='#'){
lf.extraline=1;
while((c=getc(lf.f))!=EOF&&c!='\n');
if(c=='\n')c=getc(lf.f);
}
if(c=="\033Lua"[0]&&filename){
lf.f=freopen(filename,"rb",lf.f);
if(lf.f==NULL)return errfile(L,"reopen",fnameindex);
while((c=getc(lf.f))!=EOF&&c!="\033Lua"[0]);
lf.extraline=0;
}
ungetc(c,lf.f);
status=lua_load(L,getF,&lf,lua_tostring(L,-1));
readstatus=ferror(lf.f);
if(filename)fclose(lf.f);
if(readstatus){
lua_settop(L,fnameindex);
return errfile(L,"read",fnameindex);
}
lua_remove(L,fnameindex);
return status;
}
typedef struct LoadS{
const char*s;
size_t size;
}LoadS;
static const char*getS(lua_State*L,void*ud,size_t*size){
LoadS*ls=(LoadS*)ud;
(void)L;
if(ls->size==0)return NULL;
*size=ls->size;
ls->size=0;
return ls->s;
}
static int luaL_loadbuffer(lua_State*L,const char*buff,size_t size,
const char*name){
LoadS ls;
ls.s=buff;
ls.size=size;
return lua_load(L,getS,&ls,name);
}
static void*l_alloc(void*ud,void*ptr,size_t osize,size_t nsize){
(void)ud;
(void)osize;
if(nsize==0){
free(ptr);
return NULL;
}
else
return realloc(ptr,nsize);
}
static int panic(lua_State*L){
(void)L;
fprintf(stderr,"PANIC: unprotected error in call to Lua API (%s)\n",
lua_tostring(L,-1));
return 0;
}
static lua_State*luaL_newstate(void){
lua_State*L=lua_newstate(l_alloc,NULL);
if(L)lua_atpanic(L,&panic);
return L;
}
static int luaB_tonumber(lua_State*L){
int base=luaL_optint(L,2,10);
if(base==10){
luaL_checkany(L,1);
if(lua_isnumber(L,1)){
lua_pushnumber(L,lua_tonumber(L,1));
return 1;
}
}
else{
const char*s1=luaL_checkstring(L,1);
char*s2;
unsigned long n;
luaL_argcheck(L,2<=base&&base<=36,2,"base out of range");
n=strtoul(s1,&s2,base);
if(s1!=s2){
while(isspace((unsigned char)(*s2)))s2++;
if(*s2=='\0'){
lua_pushnumber(L,(lua_Number)n);
return 1;
}
}
}
lua_pushnil(L);
return 1;
}
static int luaB_error(lua_State*L){
int level=luaL_optint(L,2,1);
lua_settop(L,1);
if(lua_isstring(L,1)&&level>0){
luaL_where(L,level);
lua_pushvalue(L,1);
lua_concat(L,2);
}
return lua_error(L);
}
static int luaB_setmetatable(lua_State*L){
int t=lua_type(L,2);
luaL_checktype(L,1,5);
luaL_argcheck(L,t==0||t==5,2,
"nil or table expected");
if(luaL_getmetafield(L,1,"__metatable"))
luaL_error(L,"cannot change a protected metatable");
lua_settop(L,2);
lua_setmetatable(L,1);
return 1;
}
static void getfunc(lua_State*L,int opt){
if(lua_isfunction(L,1))lua_pushvalue(L,1);
else{
lua_Debug ar;
int level=opt?luaL_optint(L,1,1):luaL_checkint(L,1);
luaL_argcheck(L,level>=0,1,"level must be non-negative");
if(lua_getstack(L,level,&ar)==0)
luaL_argerror(L,1,"invalid level");
lua_getinfo(L,"f",&ar);
if(lua_isnil(L,-1))
luaL_error(L,"no function environment for tail call at level %d",
level);
}
}
static int luaB_setfenv(lua_State*L){
luaL_checktype(L,2,5);
getfunc(L,0);
lua_pushvalue(L,2);
if(lua_isnumber(L,1)&&lua_tonumber(L,1)==0){
lua_pushthread(L);
lua_insert(L,-2);
lua_setfenv(L,-2);
return 0;
}
else if(lua_iscfunction(L,-2)||lua_setfenv(L,-2)==0)
luaL_error(L,
LUA_QL("setfenv")" cannot change environment of given object");
return 1;
}
static int luaB_rawget(lua_State*L){
luaL_checktype(L,1,5);
luaL_checkany(L,2);
lua_settop(L,2);
lua_rawget(L,1);
return 1;
}
static int luaB_type(lua_State*L){
luaL_checkany(L,1);
lua_pushstring(L,luaL_typename(L,1));
return 1;
}
static int luaB_next(lua_State*L){
luaL_checktype(L,1,5);
lua_settop(L,2);
if(lua_next(L,1))
return 2;
else{
lua_pushnil(L);
return 1;
}
}
static int luaB_pairs(lua_State*L){
luaL_checktype(L,1,5);
lua_pushvalue(L,lua_upvalueindex(1));
lua_pushvalue(L,1);
lua_pushnil(L);
return 3;
}
static int ipairsaux(lua_State*L){
int i=luaL_checkint(L,2);
luaL_checktype(L,1,5);
i++;
lua_pushinteger(L,i);
lua_rawgeti(L,1,i);
return(lua_isnil(L,-1))?0:2;
}
static int luaB_ipairs(lua_State*L){
luaL_checktype(L,1,5);
lua_pushvalue(L,lua_upvalueindex(1));
lua_pushvalue(L,1);
lua_pushinteger(L,0);
return 3;
}
static int load_aux(lua_State*L,int status){
if(status==0)
return 1;
else{
lua_pushnil(L);
lua_insert(L,-2);
return 2;
}
}
static int luaB_loadstring(lua_State*L){
size_t l;
const char*s=luaL_checklstring(L,1,&l);
const char*chunkname=luaL_optstring(L,2,s);
return load_aux(L,luaL_loadbuffer(L,s,l,chunkname));
}
static int luaB_loadfile(lua_State*L){
const char*fname=luaL_optstring(L,1,NULL);
return load_aux(L,luaL_loadfile(L,fname));
}
static int luaB_assert(lua_State*L){
luaL_checkany(L,1);
if(!lua_toboolean(L,1))
return luaL_error(L,"%s",luaL_optstring(L,2,"assertion failed!"));
return lua_gettop(L);
}
static int luaB_unpack(lua_State*L){
int i,e,n;
luaL_checktype(L,1,5);
i=luaL_optint(L,2,1);
e=luaL_opt(L,luaL_checkint,3,luaL_getn(L,1));
if(i>e)return 0;
n=e-i+1;
if(n<=0||!lua_checkstack(L,n))
return luaL_error(L,"too many results to unpack");
lua_rawgeti(L,1,i);
while(i++<e)
lua_rawgeti(L,1,i);
return n;
}
static int luaB_pcall(lua_State*L){
int status;
luaL_checkany(L,1);
status=lua_pcall(L,lua_gettop(L)-1,(-1),0);
lua_pushboolean(L,(status==0));
lua_insert(L,1);
return lua_gettop(L);
}
static int luaB_newproxy(lua_State*L){
lua_settop(L,1);
lua_newuserdata(L,0);
if(lua_toboolean(L,1)==0)
return 1;
else if(lua_isboolean(L,1)){
lua_newtable(L);
lua_pushvalue(L,-1);
lua_pushboolean(L,1);
lua_rawset(L,lua_upvalueindex(1));
}
else{
int validproxy=0;
if(lua_getmetatable(L,1)){
lua_rawget(L,lua_upvalueindex(1));
validproxy=lua_toboolean(L,-1);
lua_pop(L,1);
}
luaL_argcheck(L,validproxy,1,"boolean or proxy expected");
lua_getmetatable(L,1);
}
lua_setmetatable(L,2);
return 1;
}
static const luaL_Reg base_funcs[]={
{"assert",luaB_assert},
{"error",luaB_error},
{"loadfile",luaB_loadfile},
{"loadstring",luaB_loadstring},
{"next",luaB_next},
{"pcall",luaB_pcall},
{"rawget",luaB_rawget},
{"setfenv",luaB_setfenv},
{"setmetatable",luaB_setmetatable},
{"tonumber",luaB_tonumber},
{"type",luaB_type},
{"unpack",luaB_unpack},
{NULL,NULL}
};
static void auxopen(lua_State*L,const char*name,
lua_CFunction f,lua_CFunction u){
lua_pushcfunction(L,u);
lua_pushcclosure(L,f,1);
lua_setfield(L,-2,name);
}
static void base_open(lua_State*L){
lua_pushvalue(L,(-10002));
lua_setglobal(L,"_G");
luaL_register(L,"_G",base_funcs);
lua_pushliteral(L,"Lua 5.1");
lua_setglobal(L,"_VERSION");
auxopen(L,"ipairs",luaB_ipairs,ipairsaux);
auxopen(L,"pairs",luaB_pairs,luaB_next);
lua_createtable(L,0,1);
lua_pushvalue(L,-1);
lua_setmetatable(L,-2);
lua_pushliteral(L,"kv");
lua_setfield(L,-2,"__mode");
lua_pushcclosure(L,luaB_newproxy,1);
lua_setglobal(L,"newproxy");
}
static int luaopen_base(lua_State*L){
base_open(L);
return 1;
}
#define aux_getn(L,n)(luaL_checktype(L,n,5),luaL_getn(L,n))
static int tinsert(lua_State*L){
int e=aux_getn(L,1)+1;
int pos;
switch(lua_gettop(L)){
case 2:{
pos=e;
break;
}
case 3:{
int i;
pos=luaL_checkint(L,2);
if(pos>e)e=pos;
for(i=e;i>pos;i--){
lua_rawgeti(L,1,i-1);
lua_rawseti(L,1,i);
}
break;
}
default:{
return luaL_error(L,"wrong number of arguments to "LUA_QL("insert"));
}
}
luaL_setn(L,1,e);
lua_rawseti(L,1,pos);
return 0;
}
static int tremove(lua_State*L){
int e=aux_getn(L,1);
int pos=luaL_optint(L,2,e);
if(!(1<=pos&&pos<=e))
return 0;
luaL_setn(L,1,e-1);
lua_rawgeti(L,1,pos);
for(;pos<e;pos++){
lua_rawgeti(L,1,pos+1);
lua_rawseti(L,1,pos);
}
lua_pushnil(L);
lua_rawseti(L,1,e);
return 1;
}
static void addfield(lua_State*L,luaL_Buffer*b,int i){
lua_rawgeti(L,1,i);
if(!lua_isstring(L,-1))
luaL_error(L,"invalid value (%s) at index %d in table for "
LUA_QL("concat"),luaL_typename(L,-1),i);
luaL_addvalue(b);
}
static int tconcat(lua_State*L){
luaL_Buffer b;
size_t lsep;
int i,last;
const char*sep=luaL_optlstring(L,2,"",&lsep);
luaL_checktype(L,1,5);
i=luaL_optint(L,3,1);
last=luaL_opt(L,luaL_checkint,4,luaL_getn(L,1));
luaL_buffinit(L,&b);
for(;i<last;i++){
addfield(L,&b,i);
luaL_addlstring(&b,sep,lsep);
}
if(i==last)
addfield(L,&b,i);
luaL_pushresult(&b);
return 1;
}
static void set2(lua_State*L,int i,int j){
lua_rawseti(L,1,i);
lua_rawseti(L,1,j);
}
static int sort_comp(lua_State*L,int a,int b){
if(!lua_isnil(L,2)){
int res;
lua_pushvalue(L,2);
lua_pushvalue(L,a-1);
lua_pushvalue(L,b-2);
lua_call(L,2,1);
res=lua_toboolean(L,-1);
lua_pop(L,1);
return res;
}
else
return lua_lessthan(L,a,b);
}
static void auxsort(lua_State*L,int l,int u){
while(l<u){
int i,j;
lua_rawgeti(L,1,l);
lua_rawgeti(L,1,u);
if(sort_comp(L,-1,-2))
set2(L,l,u);
else
lua_pop(L,2);
if(u-l==1)break;
i=(l+u)/2;
lua_rawgeti(L,1,i);
lua_rawgeti(L,1,l);
if(sort_comp(L,-2,-1))
set2(L,i,l);
else{
lua_pop(L,1);
lua_rawgeti(L,1,u);
if(sort_comp(L,-1,-2))
set2(L,i,u);
else
lua_pop(L,2);
}
if(u-l==2)break;
lua_rawgeti(L,1,i);
lua_pushvalue(L,-1);
lua_rawgeti(L,1,u-1);
set2(L,i,u-1);
i=l;j=u-1;
for(;;){
while(lua_rawgeti(L,1,++i),sort_comp(L,-1,-2)){
if(i>u)luaL_error(L,"invalid order function for sorting");
lua_pop(L,1);
}
while(lua_rawgeti(L,1,--j),sort_comp(L,-3,-1)){
if(j<l)luaL_error(L,"invalid order function for sorting");
lua_pop(L,1);
}
if(j<i){
lua_pop(L,3);
break;
}
set2(L,i,j);
}
lua_rawgeti(L,1,u-1);
lua_rawgeti(L,1,i);
set2(L,u-1,i);
if(i-l<u-i){
j=l;i=i-1;l=i+2;
}
else{
j=i+1;i=u;u=j-2;
}
auxsort(L,j,i);
}
}
static int sort(lua_State*L){
int n=aux_getn(L,1);
luaL_checkstack(L,40,"");
if(!lua_isnoneornil(L,2))
luaL_checktype(L,2,6);
lua_settop(L,2);
auxsort(L,1,n);
return 0;
}
static const luaL_Reg tab_funcs[]={
{"concat",tconcat},
{"insert",tinsert},
{"remove",tremove},
{"sort",sort},
{NULL,NULL}
};
static int luaopen_table(lua_State*L){
luaL_register(L,"table",tab_funcs);
return 1;
}
static const char*const fnames[]={"input","output"};
static int pushresult(lua_State*L,int i,const char*filename){
int en=errno;
if(i){
lua_pushboolean(L,1);
return 1;
}
else{
lua_pushnil(L);
if(filename)
lua_pushfstring(L,"%s: %s",filename,strerror(en));
else
lua_pushfstring(L,"%s",strerror(en));
lua_pushinteger(L,en);
return 3;
}
}
static void fileerror(lua_State*L,int arg,const char*filename){
lua_pushfstring(L,"%s: %s",filename,strerror(errno));
luaL_argerror(L,arg,lua_tostring(L,-1));
}
#define tofilep(L)((FILE**)luaL_checkudata(L,1,"FILE*"))
static int io_type(lua_State*L){
void*ud;
luaL_checkany(L,1);
ud=lua_touserdata(L,1);
lua_getfield(L,(-10000),"FILE*");
if(ud==NULL||!lua_getmetatable(L,1)||!lua_rawequal(L,-2,-1))
lua_pushnil(L);
else if(*((FILE**)ud)==NULL)
lua_pushliteral(L,"closed file");
else
lua_pushliteral(L,"file");
return 1;
}
static FILE*tofile(lua_State*L){
FILE**f=tofilep(L);
if(*f==NULL)
luaL_error(L,"attempt to use a closed file");
return*f;
}
static FILE**newfile(lua_State*L){
FILE**pf=(FILE**)lua_newuserdata(L,sizeof(FILE*));
*pf=NULL;
luaL_getmetatable(L,"FILE*");
lua_setmetatable(L,-2);
return pf;
}
static int io_noclose(lua_State*L){
lua_pushnil(L);
lua_pushliteral(L,"cannot close standard file");
return 2;
}
static int io_pclose(lua_State*L){
FILE**p=tofilep(L);
int ok=lua_pclose(L,*p);
*p=NULL;
return pushresult(L,ok,NULL);
}
static int io_fclose(lua_State*L){
FILE**p=tofilep(L);
int ok=(fclose(*p)==0);
*p=NULL;
return pushresult(L,ok,NULL);
}
static int aux_close(lua_State*L){
lua_getfenv(L,1);
lua_getfield(L,-1,"__close");
return(lua_tocfunction(L,-1))(L);
}
static int io_close(lua_State*L){
if(lua_isnone(L,1))
lua_rawgeti(L,(-10001),2);
tofile(L);
return aux_close(L);
}
static int io_gc(lua_State*L){
FILE*f=*tofilep(L);
if(f!=NULL)
aux_close(L);
return 0;
}
static int io_open(lua_State*L){
const char*filename=luaL_checkstring(L,1);
const char*mode=luaL_optstring(L,2,"r");
FILE**pf=newfile(L);
*pf=fopen(filename,mode);
return(*pf==NULL)?pushresult(L,0,filename):1;
}
static FILE*getiofile(lua_State*L,int findex){
FILE*f;
lua_rawgeti(L,(-10001),findex);
f=*(FILE**)lua_touserdata(L,-1);
if(f==NULL)
luaL_error(L,"standard %s file is closed",fnames[findex-1]);
return f;
}
static int g_iofile(lua_State*L,int f,const char*mode){
if(!lua_isnoneornil(L,1)){
const char*filename=lua_tostring(L,1);
if(filename){
FILE**pf=newfile(L);
*pf=fopen(filename,mode);
if(*pf==NULL)
fileerror(L,1,filename);
}
else{
tofile(L);
lua_pushvalue(L,1);
}
lua_rawseti(L,(-10001),f);
}
lua_rawgeti(L,(-10001),f);
return 1;
}
static int io_input(lua_State*L){
return g_iofile(L,1,"r");
}
static int io_output(lua_State*L){
return g_iofile(L,2,"w");
}
static int io_readline(lua_State*L);
static void aux_lines(lua_State*L,int idx,int toclose){
lua_pushvalue(L,idx);
lua_pushboolean(L,toclose);
lua_pushcclosure(L,io_readline,2);
}
static int f_lines(lua_State*L){
tofile(L);
aux_lines(L,1,0);
return 1;
}
static int io_lines(lua_State*L){
if(lua_isnoneornil(L,1)){
lua_rawgeti(L,(-10001),1);
return f_lines(L);
}
else{
const char*filename=luaL_checkstring(L,1);
FILE**pf=newfile(L);
*pf=fopen(filename,"r");
if(*pf==NULL)
fileerror(L,1,filename);
aux_lines(L,lua_gettop(L),1);
return 1;
}
}
static int read_number(lua_State*L,FILE*f){
lua_Number d;
if(fscanf(f,"%lf",&d)==1){
lua_pushnumber(L,d);
return 1;
}
else{
lua_pushnil(L);
return 0;
}
}
static int test_eof(lua_State*L,FILE*f){
int c=getc(f);
ungetc(c,f);
lua_pushlstring(L,NULL,0);
return(c!=EOF);
}
static int read_line(lua_State*L,FILE*f){
luaL_Buffer b;
luaL_buffinit(L,&b);
for(;;){
size_t l;
char*p=luaL_prepbuffer(&b);
if(fgets(p,BUFSIZ,f)==NULL){
luaL_pushresult(&b);
return(lua_objlen(L,-1)>0);
}
l=strlen(p);
if(l==0||p[l-1]!='\n')
luaL_addsize(&b,l);
else{
luaL_addsize(&b,l-1);
luaL_pushresult(&b);
return 1;
}
}
}
static int read_chars(lua_State*L,FILE*f,size_t n){
size_t rlen;
size_t nr;
luaL_Buffer b;
luaL_buffinit(L,&b);
rlen=BUFSIZ;
do{
char*p=luaL_prepbuffer(&b);
if(rlen>n)rlen=n;
nr=fread(p,sizeof(char),rlen,f);
luaL_addsize(&b,nr);
n-=nr;
}while(n>0&&nr==rlen);
luaL_pushresult(&b);
return(n==0||lua_objlen(L,-1)>0);
}
static int g_read(lua_State*L,FILE*f,int first){
int nargs=lua_gettop(L)-1;
int success;
int n;
clearerr(f);
if(nargs==0){
success=read_line(L,f);
n=first+1;
}
else{
luaL_checkstack(L,nargs+20,"too many arguments");
success=1;
for(n=first;nargs--&&success;n++){
if(lua_type(L,n)==3){
size_t l=(size_t)lua_tointeger(L,n);
success=(l==0)?test_eof(L,f):read_chars(L,f,l);
}
else{
const char*p=lua_tostring(L,n);
luaL_argcheck(L,p&&p[0]=='*',n,"invalid option");
switch(p[1]){
case'n':
success=read_number(L,f);
break;
case'l':
success=read_line(L,f);
break;
case'a':
read_chars(L,f,~((size_t)0));
success=1;
break;
default:
return luaL_argerror(L,n,"invalid format");
}
}
}
}
if(ferror(f))
return pushresult(L,0,NULL);
if(!success){
lua_pop(L,1);
lua_pushnil(L);
}
return n-first;
}
static int io_read(lua_State*L){
return g_read(L,getiofile(L,1),1);
}
static int f_read(lua_State*L){
return g_read(L,tofile(L),2);
}
static int io_readline(lua_State*L){
FILE*f=*(FILE**)lua_touserdata(L,lua_upvalueindex(1));
int sucess;
if(f==NULL)
luaL_error(L,"file is already closed");
sucess=read_line(L,f);
if(ferror(f))
return luaL_error(L,"%s",strerror(errno));
if(sucess)return 1;
else{
if(lua_toboolean(L,lua_upvalueindex(2))){
lua_settop(L,0);
lua_pushvalue(L,lua_upvalueindex(1));
aux_close(L);
}
return 0;
}
}
static int g_write(lua_State*L,FILE*f,int arg){
int nargs=lua_gettop(L)-1;
int status=1;
for(;nargs--;arg++){
if(lua_type(L,arg)==3){
status=status&&
fprintf(f,"%.14g",lua_tonumber(L,arg))>0;
}
else{
size_t l;
const char*s=luaL_checklstring(L,arg,&l);
status=status&&(fwrite(s,sizeof(char),l,f)==l);
}
}
return pushresult(L,status,NULL);
}
static int io_write(lua_State*L){
return g_write(L,getiofile(L,2),1);
}
static int f_write(lua_State*L){
return g_write(L,tofile(L),2);
}
static int io_flush(lua_State*L){
return pushresult(L,fflush(getiofile(L,2))==0,NULL);
}
static int f_flush(lua_State*L){
return pushresult(L,fflush(tofile(L))==0,NULL);
}
static const luaL_Reg iolib[]={
{"close",io_close},
{"flush",io_flush},
{"input",io_input},
{"lines",io_lines},
{"open",io_open},
{"output",io_output},
{"read",io_read},
{"type",io_type},
{"write",io_write},
{NULL,NULL}
};
static const luaL_Reg flib[]={
{"close",io_close},
{"flush",f_flush},
{"lines",f_lines},
{"read",f_read},
{"write",f_write},
{"__gc",io_gc},
{NULL,NULL}
};
static void createmeta(lua_State*L){
luaL_newmetatable(L,"FILE*");
lua_pushvalue(L,-1);
lua_setfield(L,-2,"__index");
luaL_register(L,NULL,flib);
}
static void createstdfile(lua_State*L,FILE*f,int k,const char*fname){
*newfile(L)=f;
if(k>0){
lua_pushvalue(L,-1);
lua_rawseti(L,(-10001),k);
}
lua_pushvalue(L,-2);
lua_setfenv(L,-2);
lua_setfield(L,-3,fname);
}
static void newfenv(lua_State*L,lua_CFunction cls){
lua_createtable(L,0,1);
lua_pushcfunction(L,cls);
lua_setfield(L,-2,"__close");
}
static int luaopen_io(lua_State*L){
createmeta(L);
newfenv(L,io_fclose);
lua_replace(L,(-10001));
luaL_register(L,"io",iolib);
newfenv(L,io_noclose);
createstdfile(L,stdin,1,"stdin");
createstdfile(L,stdout,2,"stdout");
createstdfile(L,stderr,0,"stderr");
lua_pop(L,1);
lua_getfield(L,-1,"popen");
newfenv(L,io_pclose);
lua_setfenv(L,-2);
lua_pop(L,1);
return 1;
}
static int os_pushresult(lua_State*L,int i,const char*filename){
int en=errno;
if(i){
lua_pushboolean(L,1);
return 1;
}
else{
lua_pushnil(L);
lua_pushfstring(L,"%s: %s",filename,strerror(en));
lua_pushinteger(L,en);
return 3;
}
}
static int os_remove(lua_State*L){
const char*filename=luaL_checkstring(L,1);
return os_pushresult(L,remove(filename)==0,filename);
}
static int os_exit(lua_State*L){
exit(luaL_optint(L,1,EXIT_SUCCESS));
}
static const luaL_Reg syslib[]={
{"exit",os_exit},
{"remove",os_remove},
{NULL,NULL}
};
static int luaopen_os(lua_State*L){
luaL_register(L,"os",syslib);
return 1;
}
#define uchar(c)((unsigned char)(c))
static ptrdiff_t posrelat(ptrdiff_t pos,size_t len){
if(pos<0)pos+=(ptrdiff_t)len+1;
return(pos>=0)?pos:0;
}
static int str_sub(lua_State*L){
size_t l;
const char*s=luaL_checklstring(L,1,&l);
ptrdiff_t start=posrelat(luaL_checkinteger(L,2),l);
ptrdiff_t end=posrelat(luaL_optinteger(L,3,-1),l);
if(start<1)start=1;
if(end>(ptrdiff_t)l)end=(ptrdiff_t)l;
if(start<=end)
lua_pushlstring(L,s+start-1,end-start+1);
else lua_pushliteral(L,"");
return 1;
}
static int str_lower(lua_State*L){
size_t l;
size_t i;
luaL_Buffer b;
const char*s=luaL_checklstring(L,1,&l);
luaL_buffinit(L,&b);
for(i=0;i<l;i++)
luaL_addchar(&b,tolower(uchar(s[i])));
luaL_pushresult(&b);
return 1;
}
static int str_upper(lua_State*L){
size_t l;
size_t i;
luaL_Buffer b;
const char*s=luaL_checklstring(L,1,&l);
luaL_buffinit(L,&b);
for(i=0;i<l;i++)
luaL_addchar(&b,toupper(uchar(s[i])));
luaL_pushresult(&b);
return 1;
}
static int str_rep(lua_State*L){
size_t l;
luaL_Buffer b;
const char*s=luaL_checklstring(L,1,&l);
int n=luaL_checkint(L,2);
luaL_buffinit(L,&b);
while(n-->0)
luaL_addlstring(&b,s,l);
luaL_pushresult(&b);
return 1;
}
static int str_byte(lua_State*L){
size_t l;
const char*s=luaL_checklstring(L,1,&l);
ptrdiff_t posi=posrelat(luaL_optinteger(L,2,1),l);
ptrdiff_t pose=posrelat(luaL_optinteger(L,3,posi),l);
int n,i;
if(posi<=0)posi=1;
if((size_t)pose>l)pose=l;
if(posi>pose)return 0;
n=(int)(pose-posi+1);
if(posi+n<=pose)
luaL_error(L,"string slice too long");
luaL_checkstack(L,n,"string slice too long");
for(i=0;i<n;i++)
lua_pushinteger(L,uchar(s[posi+i-1]));
return n;
}
static int str_char(lua_State*L){
int n=lua_gettop(L);
int i;
luaL_Buffer b;
luaL_buffinit(L,&b);
for(i=1;i<=n;i++){
int c=luaL_checkint(L,i);
luaL_argcheck(L,uchar(c)==c,i,"invalid value");
luaL_addchar(&b,uchar(c));
}
luaL_pushresult(&b);
return 1;
}
typedef struct MatchState{
const char*src_init;
const char*src_end;
lua_State*L;
int level;
struct{
const char*init;
ptrdiff_t len;
}capture[32];
}MatchState;
static int check_capture(MatchState*ms,int l){
l-='1';
if(l<0||l>=ms->level||ms->capture[l].len==(-1))
return luaL_error(ms->L,"invalid capture index");
return l;
}
static int capture_to_close(MatchState*ms){
int level=ms->level;
for(level--;level>=0;level--)
if(ms->capture[level].len==(-1))return level;
return luaL_error(ms->L,"invalid pattern capture");
}
static const char*classend(MatchState*ms,const char*p){
switch(*p++){
case'%':{
if(*p=='\0')
luaL_error(ms->L,"malformed pattern (ends with "LUA_QL("%%")")");
return p+1;
}
case'[':{
if(*p=='^')p++;
do{
if(*p=='\0')
luaL_error(ms->L,"malformed pattern (missing "LUA_QL("]")")");
if(*(p++)=='%'&&*p!='\0')
p++;
}while(*p!=']');
return p+1;
}
default:{
return p;
}
}
}
static int match_class(int c,int cl){
int res;
switch(tolower(cl)){
case'a':res=isalpha(c);break;
case'c':res=iscntrl(c);break;
case'd':res=isdigit(c);break;
case'l':res=islower(c);break;
case'p':res=ispunct(c);break;
case's':res=isspace(c);break;
case'u':res=isupper(c);break;
case'w':res=isalnum(c);break;
case'x':res=isxdigit(c);break;
case'z':res=(c==0);break;
default:return(cl==c);
}
return(islower(cl)?res:!res);
}
static int matchbracketclass(int c,const char*p,const char*ec){
int sig=1;
if(*(p+1)=='^'){
sig=0;
p++;
}
while(++p<ec){
if(*p=='%'){
p++;
if(match_class(c,uchar(*p)))
return sig;
}
else if((*(p+1)=='-')&&(p+2<ec)){
p+=2;
if(uchar(*(p-2))<=c&&c<=uchar(*p))
return sig;
}
else if(uchar(*p)==c)return sig;
}
return!sig;
}
static int singlematch(int c,const char*p,const char*ep){
switch(*p){
case'.':return 1;
case'%':return match_class(c,uchar(*(p+1)));
case'[':return matchbracketclass(c,p,ep-1);
default:return(uchar(*p)==c);
}
}
static const char*match(MatchState*ms,const char*s,const char*p);
static const char*matchbalance(MatchState*ms,const char*s,
const char*p){
if(*p==0||*(p+1)==0)
luaL_error(ms->L,"unbalanced pattern");
if(*s!=*p)return NULL;
else{
int b=*p;
int e=*(p+1);
int cont=1;
while(++s<ms->src_end){
if(*s==e){
if(--cont==0)return s+1;
}
else if(*s==b)cont++;
}
}
return NULL;
}
static const char*max_expand(MatchState*ms,const char*s,
const char*p,const char*ep){
ptrdiff_t i=0;
while((s+i)<ms->src_end&&singlematch(uchar(*(s+i)),p,ep))
i++;
while(i>=0){
const char*res=match(ms,(s+i),ep+1);
if(res)return res;
i--;
}
return NULL;
}
static const char*min_expand(MatchState*ms,const char*s,
const char*p,const char*ep){
for(;;){
const char*res=match(ms,s,ep+1);
if(res!=NULL)
return res;
else if(s<ms->src_end&&singlematch(uchar(*s),p,ep))
s++;
else return NULL;
}
}
static const char*start_capture(MatchState*ms,const char*s,
const char*p,int what){
const char*res;
int level=ms->level;
if(level>=32)luaL_error(ms->L,"too many captures");
ms->capture[level].init=s;
ms->capture[level].len=what;
ms->level=level+1;
if((res=match(ms,s,p))==NULL)
ms->level--;
return res;
}
static const char*end_capture(MatchState*ms,const char*s,
const char*p){
int l=capture_to_close(ms);
const char*res;
ms->capture[l].len=s-ms->capture[l].init;
if((res=match(ms,s,p))==NULL)
ms->capture[l].len=(-1);
return res;
}
static const char*match_capture(MatchState*ms,const char*s,int l){
size_t len;
l=check_capture(ms,l);
len=ms->capture[l].len;
if((size_t)(ms->src_end-s)>=len&&
memcmp(ms->capture[l].init,s,len)==0)
return s+len;
else return NULL;
}
static const char*match(MatchState*ms,const char*s,const char*p){
init:
switch(*p){
case'(':{
if(*(p+1)==')')
return start_capture(ms,s,p+2,(-2));
else
return start_capture(ms,s,p+1,(-1));
}
case')':{
return end_capture(ms,s,p+1);
}
case'%':{
switch(*(p+1)){
case'b':{
s=matchbalance(ms,s,p+2);
if(s==NULL)return NULL;
p+=4;goto init;
}
case'f':{
const char*ep;char previous;
p+=2;
if(*p!='[')
luaL_error(ms->L,"missing "LUA_QL("[")" after "
LUA_QL("%%f")" in pattern");
ep=classend(ms,p);
previous=(s==ms->src_init)?'\0':*(s-1);
if(matchbracketclass(uchar(previous),p,ep-1)||
!matchbracketclass(uchar(*s),p,ep-1))return NULL;
p=ep;goto init;
}
default:{
if(isdigit(uchar(*(p+1)))){
s=match_capture(ms,s,uchar(*(p+1)));
if(s==NULL)return NULL;
p+=2;goto init;
}
goto dflt;
}
}
}
case'\0':{
return s;
}
case'$':{
if(*(p+1)=='\0')
return(s==ms->src_end)?s:NULL;
else goto dflt;
}
default:dflt:{
const char*ep=classend(ms,p);
int m=s<ms->src_end&&singlematch(uchar(*s),p,ep);
switch(*ep){
case'?':{
const char*res;
if(m&&((res=match(ms,s+1,ep+1))!=NULL))
return res;
p=ep+1;goto init;
}
case'*':{
return max_expand(ms,s,p,ep);
}
case'+':{
return(m?max_expand(ms,s+1,p,ep):NULL);
}
case'-':{
return min_expand(ms,s,p,ep);
}
default:{
if(!m)return NULL;
s++;p=ep;goto init;
}
}
}
}
}
static const char*lmemfind(const char*s1,size_t l1,
const char*s2,size_t l2){
if(l2==0)return s1;
else if(l2>l1)return NULL;
else{
const char*init;
l2--;
l1=l1-l2;
while(l1>0&&(init=(const char*)memchr(s1,*s2,l1))!=NULL){
init++;
if(memcmp(init,s2+1,l2)==0)
return init-1;
else{
l1-=init-s1;
s1=init;
}
}
return NULL;
}
}
static void push_onecapture(MatchState*ms,int i,const char*s,
const char*e){
if(i>=ms->level){
if(i==0)
lua_pushlstring(ms->L,s,e-s);
else
luaL_error(ms->L,"invalid capture index");
}
else{
ptrdiff_t l=ms->capture[i].len;
if(l==(-1))luaL_error(ms->L,"unfinished capture");
if(l==(-2))
lua_pushinteger(ms->L,ms->capture[i].init-ms->src_init+1);
else
lua_pushlstring(ms->L,ms->capture[i].init,l);
}
}
static int push_captures(MatchState*ms,const char*s,const char*e){
int i;
int nlevels=(ms->level==0&&s)?1:ms->level;
luaL_checkstack(ms->L,nlevels,"too many captures");
for(i=0;i<nlevels;i++)
push_onecapture(ms,i,s,e);
return nlevels;
}
static int str_find_aux(lua_State*L,int find){
size_t l1,l2;
const char*s=luaL_checklstring(L,1,&l1);
const char*p=luaL_checklstring(L,2,&l2);
ptrdiff_t init=posrelat(luaL_optinteger(L,3,1),l1)-1;
if(init<0)init=0;
else if((size_t)(init)>l1)init=(ptrdiff_t)l1;
if(find&&(lua_toboolean(L,4)||
strpbrk(p,"^$*+?.([%-")==NULL)){
const char*s2=lmemfind(s+init,l1-init,p,l2);
if(s2){
lua_pushinteger(L,s2-s+1);
lua_pushinteger(L,s2-s+l2);
return 2;
}
}
else{
MatchState ms;
int anchor=(*p=='^')?(p++,1):0;
const char*s1=s+init;
ms.L=L;
ms.src_init=s;
ms.src_end=s+l1;
do{
const char*res;
ms.level=0;
if((res=match(&ms,s1,p))!=NULL){
if(find){
lua_pushinteger(L,s1-s+1);
lua_pushinteger(L,res-s);
return push_captures(&ms,NULL,0)+2;
}
else
return push_captures(&ms,s1,res);
}
}while(s1++<ms.src_end&&!anchor);
}
lua_pushnil(L);
return 1;
}
static int str_find(lua_State*L){
return str_find_aux(L,1);
}
static int str_match(lua_State*L){
return str_find_aux(L,0);
}
static int gmatch_aux(lua_State*L){
MatchState ms;
size_t ls;
const char*s=lua_tolstring(L,lua_upvalueindex(1),&ls);
const char*p=lua_tostring(L,lua_upvalueindex(2));
const char*src;
ms.L=L;
ms.src_init=s;
ms.src_end=s+ls;
for(src=s+(size_t)lua_tointeger(L,lua_upvalueindex(3));
src<=ms.src_end;
src++){
const char*e;
ms.level=0;
if((e=match(&ms,src,p))!=NULL){
lua_Integer newstart=e-s;
if(e==src)newstart++;
lua_pushinteger(L,newstart);
lua_replace(L,lua_upvalueindex(3));
return push_captures(&ms,src,e);
}
}
return 0;
}
static int gmatch(lua_State*L){
luaL_checkstring(L,1);
luaL_checkstring(L,2);
lua_settop(L,2);
lua_pushinteger(L,0);
lua_pushcclosure(L,gmatch_aux,3);
return 1;
}
static void add_s(MatchState*ms,luaL_Buffer*b,const char*s,
const char*e){
size_t l,i;
const char*news=lua_tolstring(ms->L,3,&l);
for(i=0;i<l;i++){
if(news[i]!='%')
luaL_addchar(b,news[i]);
else{
i++;
if(!isdigit(uchar(news[i])))
luaL_addchar(b,news[i]);
else if(news[i]=='0')
luaL_addlstring(b,s,e-s);
else{
push_onecapture(ms,news[i]-'1',s,e);
luaL_addvalue(b);
}
}
}
}
static void add_value(MatchState*ms,luaL_Buffer*b,const char*s,
const char*e){
lua_State*L=ms->L;
switch(lua_type(L,3)){
case 3:
case 4:{
add_s(ms,b,s,e);
return;
}
case 6:{
int n;
lua_pushvalue(L,3);
n=push_captures(ms,s,e);
lua_call(L,n,1);
break;
}
case 5:{
push_onecapture(ms,0,s,e);
lua_gettable(L,3);
break;
}
}
if(!lua_toboolean(L,-1)){
lua_pop(L,1);
lua_pushlstring(L,s,e-s);
}
else if(!lua_isstring(L,-1))
luaL_error(L,"invalid replacement value (a %s)",luaL_typename(L,-1));
luaL_addvalue(b);
}
static int str_gsub(lua_State*L){
size_t srcl;
const char*src=luaL_checklstring(L,1,&srcl);
const char*p=luaL_checkstring(L,2);
int tr=lua_type(L,3);
int max_s=luaL_optint(L,4,srcl+1);
int anchor=(*p=='^')?(p++,1):0;
int n=0;
MatchState ms;
luaL_Buffer b;
luaL_argcheck(L,tr==3||tr==4||
tr==6||tr==5,3,
"string/function/table expected");
luaL_buffinit(L,&b);
ms.L=L;
ms.src_init=src;
ms.src_end=src+srcl;
while(n<max_s){
const char*e;
ms.level=0;
e=match(&ms,src,p);
if(e){
n++;
add_value(&ms,&b,src,e);
}
if(e&&e>src)
src=e;
else if(src<ms.src_end)
luaL_addchar(&b,*src++);
else break;
if(anchor)break;
}
luaL_addlstring(&b,src,ms.src_end-src);
luaL_pushresult(&b);
lua_pushinteger(L,n);
return 2;
}
static void addquoted(lua_State*L,luaL_Buffer*b,int arg){
size_t l;
const char*s=luaL_checklstring(L,arg,&l);
luaL_addchar(b,'"');
while(l--){
switch(*s){
case'"':case'\\':case'\n':{
luaL_addchar(b,'\\');
luaL_addchar(b,*s);
break;
}
case'\r':{
luaL_addlstring(b,"\\r",2);
break;
}
case'\0':{
luaL_addlstring(b,"\\000",4);
break;
}
default:{
luaL_addchar(b,*s);
break;
}
}
s++;
}
luaL_addchar(b,'"');
}
static const char*scanformat(lua_State*L,const char*strfrmt,char*form){
const char*p=strfrmt;
while(*p!='\0'&&strchr("-+ #0",*p)!=NULL)p++;
if((size_t)(p-strfrmt)>=sizeof("-+ #0"))
luaL_error(L,"invalid format (repeated flags)");
if(isdigit(uchar(*p)))p++;
if(isdigit(uchar(*p)))p++;
if(*p=='.'){
p++;
if(isdigit(uchar(*p)))p++;
if(isdigit(uchar(*p)))p++;
}
if(isdigit(uchar(*p)))
luaL_error(L,"invalid format (width or precision too long)");
*(form++)='%';
strncpy(form,strfrmt,p-strfrmt+1);
form+=p-strfrmt+1;
*form='\0';
return p;
}
static void addintlen(char*form){
size_t l=strlen(form);
char spec=form[l-1];
strcpy(form+l-1,"l");
form[l+sizeof("l")-2]=spec;
form[l+sizeof("l")-1]='\0';
}
static int str_format(lua_State*L){
int top=lua_gettop(L);
int arg=1;
size_t sfl;
const char*strfrmt=luaL_checklstring(L,arg,&sfl);
const char*strfrmt_end=strfrmt+sfl;
luaL_Buffer b;
luaL_buffinit(L,&b);
while(strfrmt<strfrmt_end){
if(*strfrmt!='%')
luaL_addchar(&b,*strfrmt++);
else if(*++strfrmt=='%')
luaL_addchar(&b,*strfrmt++);
else{
char form[(sizeof("-+ #0")+sizeof("l")+10)];
char buff[512];
if(++arg>top)
luaL_argerror(L,arg,"no value");
strfrmt=scanformat(L,strfrmt,form);
switch(*strfrmt++){
case'c':{
sprintf(buff,form,(int)luaL_checknumber(L,arg));
break;
}
case'd':case'i':{
addintlen(form);
sprintf(buff,form,(long)luaL_checknumber(L,arg));
break;
}
case'o':case'u':case'x':case'X':{
addintlen(form);
sprintf(buff,form,(unsigned long)luaL_checknumber(L,arg));
break;
}
case'e':case'E':case'f':
case'g':case'G':{
sprintf(buff,form,(double)luaL_checknumber(L,arg));
break;
}
case'q':{
addquoted(L,&b,arg);
continue;
}
case's':{
size_t l;
const char*s=luaL_checklstring(L,arg,&l);
if(!strchr(form,'.')&&l>=100){
lua_pushvalue(L,arg);
luaL_addvalue(&b);
continue;
}
else{
sprintf(buff,form,s);
break;
}
}
default:{
return luaL_error(L,"invalid option "LUA_QL("%%%c")" to "
LUA_QL("format"),*(strfrmt-1));
}
}
luaL_addlstring(&b,buff,strlen(buff));
}
}
luaL_pushresult(&b);
return 1;
}
static const luaL_Reg strlib[]={
{"byte",str_byte},
{"char",str_char},
{"find",str_find},
{"format",str_format},
{"gmatch",gmatch},
{"gsub",str_gsub},
{"lower",str_lower},
{"match",str_match},
{"rep",str_rep},
{"sub",str_sub},
{"upper",str_upper},
{NULL,NULL}
};
static void createmetatable(lua_State*L){
lua_createtable(L,0,1);
lua_pushliteral(L,"");
lua_pushvalue(L,-2);
lua_setmetatable(L,-2);
lua_pop(L,1);
lua_pushvalue(L,-2);
lua_setfield(L,-2,"__index");
lua_pop(L,1);
}
static int luaopen_string(lua_State*L){
luaL_register(L,"string",strlib);
createmetatable(L);
return 1;
}
static const luaL_Reg lualibs[]={
{"",luaopen_base},
{"table",luaopen_table},
{"io",luaopen_io},
{"os",luaopen_os},
{"string",luaopen_string},
{NULL,NULL}
};
static void luaL_openlibs(lua_State*L){
const luaL_Reg*lib=lualibs;
for(;lib->func;lib++){
lua_pushcfunction(L,lib->func);
lua_pushstring(L,lib->name);
lua_call(L,1,0);
}
}
typedef unsigned int UB;
static UB barg(lua_State*L,int idx){
union{lua_Number n;U64 b;}bn;
bn.n=lua_tonumber(L,idx)+6755399441055744.0;
if(bn.n==0.0&&!lua_isnumber(L,idx))luaL_typerror(L,idx,"number");
return(UB)bn.b;
}
#define BRET(b)lua_pushnumber(L,(lua_Number)(int)(b));return 1;
static int tobit(lua_State*L){
BRET(barg(L,1))}
static int bnot(lua_State*L){
BRET(~barg(L,1))}
static int band(lua_State*L){
int i;UB b=barg(L,1);for(i=lua_gettop(L);i>1;i--)b&=barg(L,i);BRET(b)}
static int bor(lua_State*L){
int i;UB b=barg(L,1);for(i=lua_gettop(L);i>1;i--)b|=barg(L,i);BRET(b)}
static int bxor(lua_State*L){
int i;UB b=barg(L,1);for(i=lua_gettop(L);i>1;i--)b^=barg(L,i);BRET(b)}
static int lshift(lua_State*L){
UB b=barg(L,1),n=barg(L,2)&31;BRET(b<<n)}
static int rshift(lua_State*L){
UB b=barg(L,1),n=barg(L,2)&31;BRET(b>>n)}
static int arshift(lua_State*L){
UB b=barg(L,1),n=barg(L,2)&31;BRET((int)b>>n)}
static int rol(lua_State*L){
UB b=barg(L,1),n=barg(L,2)&31;BRET((b<<n)|(b>>(32-n)))}
static int ror(lua_State*L){
UB b=barg(L,1),n=barg(L,2)&31;BRET((b>>n)|(b<<(32-n)))}
static int bswap(lua_State*L){
UB b=barg(L,1);b=(b>>24)|((b>>8)&0xff00)|((b&0xff00)<<8)|(b<<24);BRET(b)}
static int tohex(lua_State*L){
UB b=barg(L,1);
int n=lua_isnone(L,2)?8:(int)barg(L,2);
const char*hexdigits="0123456789abcdef";
char buf[8];
int i;
if(n<0){n=-n;hexdigits="0123456789ABCDEF";}
if(n>8)n=8;
for(i=(int)n;--i>=0;){buf[i]=hexdigits[b&15];b>>=4;}
lua_pushlstring(L,buf,(size_t)n);
return 1;
}
static const struct luaL_Reg bitlib[]={
{"tobit",tobit},
{"bnot",bnot},
{"band",band},
{"bor",bor},
{"bxor",bxor},
{"lshift",lshift},
{"rshift",rshift},
{"arshift",arshift},
{"rol",rol},
{"ror",ror},
{"bswap",bswap},
{"tohex",tohex},
{NULL,NULL}
};
int runlua(int argc, const char*const*argv, lua_Alloc alloc, void *ud){
lua_State*L=lua_newstate(alloc, ud);
//lua_State*L=luaL_newstate();
int i, ret = 0;
luaL_openlibs(L);
luaL_register(L,"bit",bitlib);
if(argc<2)return sizeof(void*);
lua_createtable(L,0,1);
lua_pushstring(L,argv[1]);
lua_rawseti(L,-2,0);
lua_setglobal(L,"arg");
if(luaL_loadfile(L,argv[1]))
goto err;
for(i=2;i<argc;i++)
lua_pushstring(L,argv[i]);
if(lua_pcall(L,argc-2,0,0)){
err:
fprintf(stderr,"Error: %s\n",lua_tostring(L,-1));
ret=1;
}
lua_close(L);
return ret;
}
|
the_stack_data/51700174.c | #include <stdlib.h>
#include <stdio.h>
int main(int argc, char** argv) {
// Define method variables
int exitCode = 0;
int limit = 999;
fprintf(stdout, "Ligma\n");
// Done
return exitCode;
}
|
the_stack_data/939569.c | /* This wrongly caused duplicate definitions of x in the assembler
output. */
/* Origin: Joseph Myers <[email protected]> */
static int x = 1;
void f (void) { extern int x; }
|
the_stack_data/102286.c | /*
* Created by Meissa project team in 2020
*/
#include <sys/types.h>
#include <unistd.h>
#include <sched.h>
int
main()
{
cpu_set_t mask;
CPU_ZERO(&mask);
sched_setaffinity(0, sizeof(cpu_set_t), &mask);
return 0;
}
|
the_stack_data/82833.c | /* $OpenBSD: sha_one.c,v 1.7 2014/06/12 15:49:30 deraadt Exp $ */
/* Copyright (C) 1995-1998 Eric Young ([email protected])
* All rights reserved.
*
* This package is an SSL implementation written
* by Eric Young ([email protected]).
* The implementation was written so as to conform with Netscapes SSL.
*
* This library is free for commercial and non-commercial use as long as
* the following conditions are aheared to. The following conditions
* apply to all code found in this distribution, be it the RC4, RSA,
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
* included with this distribution is covered by the same copyright terms
* except that the holder is Tim Hudson ([email protected]).
*
* Copyright remains Eric Young's, and as such any Copyright notices in
* the code are not to be removed.
* If this package is used in a product, Eric Young should be given attribution
* as the author of the parts of the library used.
* This can be in the form of a textual message at program startup or
* in documentation (online or textual) provided with the package.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* "This product includes cryptographic software written by
* Eric Young ([email protected])"
* The word 'cryptographic' can be left out if the rouines from the library
* being used are not cryptographic related :-).
* 4. If you include any Windows specific code (or a derivative thereof) from
* the apps directory (application code) you must include an acknowledgement:
* "This product includes software written by Tim Hudson ([email protected])"
*
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* The licence and distribution terms for any publically available version or
* derivative of this code cannot be changed. i.e. this code cannot simply be
* copied and put under another distribution licence
* [including the GNU Public Licence.]
*/
#include <stdio.h>
#include <string.h>
#include <openssl/sha.h>
#include <openssl/crypto.h>
#ifndef OPENSSL_NO_SHA0
unsigned char *SHA(const unsigned char *d, size_t n, unsigned char *md)
{
SHA_CTX c;
static unsigned char m[SHA_DIGEST_LENGTH];
if (md == NULL) md=m;
if (!SHA_Init(&c))
return NULL;
SHA_Update(&c,d,n);
SHA_Final(md,&c);
OPENSSL_cleanse(&c,sizeof(c));
return(md);
}
#endif
|
the_stack_data/122016831.c | #include <stdio.h>
#include <stdlib.h>
#include <dirent.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <ctype.h>
#define GetCurrentDir getcwd
enum MODE {
NONE,
CHANGE,
DRYRUN
};
void changedir(char* rootdir, enum MODE mode);
void changefile(char* rootdir, enum MODE mode);
int is_C_file(char* filename);
int endswith(const char *str, const char *suffix);
int main(int argc, char* argv[]) {
int i;
enum MODE mode = NONE;
char rootdir[FILENAME_MAX];
// get root directory
GetCurrentDir( rootdir, FILENAME_MAX );
printf("cpray will iterate over ALL C/C++ files under: %s\n", rootdir);
for (i = 1; i < argc; i++) {
if (0 == strcmp(argv[i], "--change")) {
mode = CHANGE;
} else if (0 == strcmp(argv[i], "--dryrun")) {
mode = DRYRUN;
}
}
if (mode == NONE) {
printf("Since cpray makes potentially irreversible and wide changes, by default it will do nothing. \n");
printf("To perform a dry run, use the flag: --dryrun\n");
printf("To apply changes, use the flag: --change\n");
return 0;
}
changedir(rootdir, mode);
}
void changedir(char* sourcedir, enum MODE mode) {
printf("Changing under directory: %s\n", sourcedir);
DIR *dir;
struct dirent *ent;
if ((dir = opendir (sourcedir)) != NULL) {
/* print all the files and directories within directory */
while ((ent = readdir (dir)) != NULL) {
char entrypath[FILENAME_MAX];
snprintf(entrypath, FILENAME_MAX, "%s/%s", sourcedir, ent->d_name);
if (DT_REG == ent->d_type && 1 == is_C_file(ent->d_name)) {
printf ("Processing file: %s\n", entrypath);
changefile(entrypath, mode);
} else if (DT_DIR == ent->d_type && 0 != strcmp(ent->d_name, ".") && 0 != strcmp(ent->d_name, "..")) {
printf("Recursing into directory: %s", entrypath);
changedir(entrypath, mode);
}
}
closedir (dir);
} else {
/* could not open directory */
printf("Unable to open directory %s. Errno: %d. Errstring: %s\n", sourcedir, errno, strerror(errno));
return;
}
}
int is_C_file(char* filename) {
return endswith(filename, ".cpp") || endswith(filename, ".c");
}
int endswith(const char *str, const char *suffix)
{
if (!str || !suffix)
return 0;
size_t lenstr = strlen(str);
size_t lensuffix = strlen(suffix);
if (lensuffix > lenstr)
return 0;
return strncmp(str + lenstr - lensuffix, suffix, lensuffix) == 0;
}
void changefile(char* file, enum MODE mode) {
FILE *fp;
long int size = 0;
char* standardheader = "#include <stdio.h>\n";
fp = fopen(file, "r");
if (fp == NULL) {
printf("Error opening file for reading: %s. Errno: %d. Error string: %s\n", file, errno, strerror(errno));
return;
}
fseek(fp, 0L, SEEK_END);
size = ftell(fp);
rewind(fp);
char contents[size+1]; //allocate some bytes to read the file into (extra room for terminating NULL)
fread(contents, 1, size, fp);
fclose(fp);
printf("File size: %ld\n", size);
contents[size] = 0; //Null-terminate the string
long int capacity = size*10;
long int allocated = 0;
char* instrumented = (char*)malloc(sizeof(char) * capacity);
if (NULL == strstr(contents, "stdio.h")) {
strcpy(instrumented, standardheader);
allocated = strlen(standardheader);
}
int lineno=2;
int brace = 0;
char last_non_space = 0;
char is_macro_line = 0;
#define PRINTFBUFSIZE 10000
char printfbuf[PRINTFBUFSIZE];
for (int i = 0; i < size; i++) {
if (contents[i] == '{' && last_non_space == ')' && 0 == is_macro_line) {
brace++;
} else if (contents[i] == '}') {
brace--;
if (brace == 0) {
// Only when { is followed by ) is it likely to be a code block.
snprintf(printfbuf, PRINTFBUFSIZE, "fprintf(stderr, \"cpray,%s,%d\\n\");", file, lineno);
strcpy(instrumented+allocated, printfbuf);
allocated += strlen(printfbuf);
}
} else if (contents[i] == '\n') {
lineno++;
}
if (0 == isspace(contents[i])) {
last_non_space = contents[i];
}
if ('#' == contents[i]) {
is_macro_line = 1;
} else if ('\n' == contents[i]) {
is_macro_line = 0;
}
instrumented[allocated] = contents[i];
allocated++;
if (allocated > capacity) {
printf("Allocated new file exceeded the buffered capacity: %s\n", file);
}
}
instrumented[allocated] = 0; //NULL terminate the string
if (mode == CHANGE) {
fp = fopen(file, "w");
if (fp == NULL) {
printf("Error opening file for reading: %s. Errno: %d. Error string: %s\n", file, errno, strerror(errno));
return;
}
fwrite(instrumented, 1, allocated, fp);
fclose(fp);
}
free(instrumented);
}
|
the_stack_data/147014191.c | /* This testcase is part of GDB, the GNU debugger.
Copyright 2008-2017 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
#include <pthread.h>
#include <assert.h>
#include <unistd.h>
static void *
start (void *arg)
{
assert (0);
return arg;
}
int main(void)
{
pthread_t thread;
int i;
switch (fork ())
{
case -1:
assert (0);
default:
break;
case 0:
i = pthread_create (&thread, NULL, start, NULL);
assert (i == 0);
i = pthread_join (thread, NULL);
assert (i == 0);
assert (0);
}
return 0;
}
|
the_stack_data/162642648.c | // This file is part of CPAchecker,
// a tool for configurable software verification:
// https://cpachecker.sosy-lab.org
//
// SPDX-FileCopyrightText: 2007-2020 Dirk Beyer <https://www.sosy-lab.org>
//
// SPDX-License-Identifier: Apache-2.0
#include <stdlib.h>
//typedef unsigned int size_t;
//extern __attribute__((__nothrow__)) void *malloc(size_t __size ) __attribute__((__malloc__)) ;
struct node {
struct node *next;
int value;
};
struct list {
struct node *slist ;
struct list *next ;
};
int main() {
int i = 3;
int j = 4;
void* tmp = malloc(sizeof(int*) * 2);
int* ptrI = &i;
int* ptrj = &j;
int** tmphelper = (int**)tmp;
int* tmpfst = *tmphelper; //*((int**)tmp);
int* tmpsnd = *(tmphelper + 1); //*(((int**)tmp) + 1);
tmpfst = ptrI;
tmpsnd = ptrj;
int** other = (int**)tmp;
int* snd = *(other + 1);
if (*tmpfst == 3 && *tmpsnd == 4) { // && *snd == 4){
return 0;
}
ERROR:
goto ERROR;
return 1;
}
|
the_stack_data/90763356.c | //Implemente em linguagem C uma função em um programa de computador que leia n valores do
//tipo float e os apresente em ordem crescente. Utilize alocação dinâmica de memória para
//realizar a tarefa.
#include <stdio.h>
void ordena(int*, int);
void troca(int*, int*);
int main()
{
int n, i;
int *x;
scanf("%d", &n);
x = malloc(n * sizeof(int));
for(i=0; i<n; i++){
scanf("%d ", &x[i]);
}
ordena(x, n);
for(i=0; i<n; i++){
printf("%d ", x[i]);
}
free(x);
return 0;
}
void troca(int *a, int *b){
int *temp;
temp = a;
a = b;
b = temp;
}
void ordena(int *ptro, int n){
int i, j, temp;
for(i=0; i<n; i++){
for(j=0; j<n-1; j++){
if(ptro[j] > ptro[j+1]){
temp = ptro[j];
ptro[j] = ptro[j+1];
ptro[j+1] = temp;
}
}
}
}
|
the_stack_data/124648.c | /**
* 递归执行顺序以及优化
* 东京大学 2014 w-3
* TODO: 优化该算法
*/
#include <stdio.h>
int T(int x, int y, int z)
{
printf("T(%d, %d, %d)\n", x, y, z);
if (x <= y)
{
return y;
}
else
{
return T(T(x - 1, y, z), T(y - 1, z, x), T(z - 1, x, y));
}
}
int main(int argc, char const *argv[])
{
int result = T(4, 1, 2);
printf("%d\n", result);
return 0;
}
|
the_stack_data/73575768.c | #include <stdlib.h>
#include <stdio.h>
#include <string.h>
/*int countWord1(const char * s1, const char * w)
{
int count = 0;
while (strstr(s1, w) != NULL)
{
count ++;
}
return count;
}
*/
int countWord2(const char * s1, const char * w)
{
int count = 0;
const char * p1 = s1;
while (strstr(p1, w) != NULL)
{
count ++;
p1 ++;
}
return count;
}
int countWord3(const char * s1, const char * w)
{
int count = 0;
const char * p1 = s1;
while (strstr(p1, w) != NULL)
{
count ++;
p1 += strlen(w);
}
return count;
}
int countWord4(const char * s1, const char * w)
{
int count = 0;
const char * p1 = s1;
while (p1 != NULL)
{
p1 = strstr(p1, w);
if (p1 != NULL)
{
count ++;
p1 += strlen(w);
}
}
return count;
}
int main(int argc, char * argv[])
{
char * str = "ECE264 ECECECE Purdue ECECE";
printf("strlen(str) = %ld\n", strlen(str)); // the answer is 27
// printf("countWord1 = %d\n", countWord1(str, "ECE"));
printf("countWord2 = %d\n", countWord2(str, "ECE"));
printf("countWord3 = %d\n", countWord3(str, "ECE"));
printf("countWord4 = %d\n", countWord4(str, "ECE"));
return EXIT_SUCCESS;
}
|
the_stack_data/748627.c | /*
Description: Gauss quadrature for the following integral
| b
| f(x) dx
| a
gauss_inte_w: make points and weights for n discrete points
n (in): the number of points. This is the size of both x and w.
x (out): x-axis points in the interval [-1, 1].
w (out): weights for the points.
eps (in): tolerance error.
gauss_inte_fx: make x points for the interval [a,b]
n (in): the number of points.
x (in): the x points for interval [-1, 1].
a, b (in): lower and upper points for the integral
fx (out): x point for the interval [a, b]
return value: (b-a)/2
gauss_inte_fv: compute the integral
n (in): the number of points.
w (in): weights for the x points in [-1,1]
c (in): (b-a)/2 ?
fv (in): function values at x points derived by gauss_inte_fx
return value: the interal value
*/
#include <math.h>
static double PI = 3.14159265358979324;
void gauss_inte_w(int n, double *x, double *w, double eps) {
int i, l, m;
double p0, p1, p2;
double q0, q1, q2;
double tmp, dt;
switch(n) {
case 1:
x[0] = 0.0;
w[0] = 2.0;
return;
case 2:
x[0] = sqrt(1.0/3.0);
w[0] = 1.0;
x[1] = -x[0];
w[1] = w[0];
return;
case 3:
x[0] = sqrt(0.6);
w[0] = 5.0/9.0;
x[1] = 0.0;
w[1] = 8.0/9.0;
x[2] = -x[0];
w[2] = w[0];
return;
}
m = n/2;
for (i=0; i<m; i++) {
tmp = cos((i+1.0-1.0/4.0)/(n+1.0/2.0)*PI);
do {
p1 = tmp;
p2 = (3.0*tmp*tmp-1.0)/2.0;
q1 = 1.0;
q2 = 3.0*tmp;
for (l=3; l<=n; l++) {
p0 = p1;
p1 = p2;
p2 = ((2.0*l-1)*tmp*p1-(l-1)*p0)/l;
q0 = q1;
q1 = q2;
q2 = ((2.0*l-1)*(tmp*q1+p1)-(l-1)*q0)/l;
}
dt = p2/q2;
tmp = tmp - dt;
} while(fabs(dt) > fabs(tmp)*eps);
x[i] = tmp;
w[i] = 2.0/(n*p1*q2);
}
if (n % 2 != 0) {
x[n/2] = 0.0;
tmp = (double) n;
for (i=1; i<=m; i++)
tmp = tmp*(0.5 - i)/i;
w[n/2] = 2.0/(tmp*tmp);
}
for (i=0; i<m; i++) {
x[n-1-i] = -x[i];
w[n-1-i] = w[i];
}
return;
}
double gauss_inte_fx(int n, double *x, double a, double b, double *fx) {
int i;
double t1, t2;
t1 = (b - a)/2.0;
t2 = (b + a)/2.0;
for (i=0; i<n; i++) {
fx[i] = t1 * x[i] + t2;
}
return t1;
}
double gauss_inte_fv(int n, double *w, double c, double *fv) {
int i;
double sum;
sum = 0.0;
for (i=0; i<n; i++) {
sum += w[i]* fv[i];
}
sum *= c;
return sum;
}
|
the_stack_data/211081236.c | /* Code generated from eC source file: grammar.ec */
#if defined(_WIN32)
#define __runtimePlatform 1
#elif defined(__APPLE__)
#define __runtimePlatform 3
#else
#define __runtimePlatform 2
#endif
#if defined(__GNUC__)
typedef long long int64;
typedef unsigned long long uint64;
#ifndef _WIN32
#define __declspec(x)
#endif
#elif defined(__TINYC__)
#include <stdarg.h>
#define __builtin_va_list va_list
#define __builtin_va_start va_start
#define __builtin_va_end va_end
#ifdef _WIN32
#define strcasecmp stricmp
#define strncasecmp strnicmp
#define __declspec(x) __attribute__((x))
#else
#define __declspec(x)
#endif
typedef long long int64;
typedef unsigned long long uint64;
#else
typedef __int64 int64;
typedef unsigned __int64 uint64;
#endif
#ifdef __BIG_ENDIAN__
#define __ENDIAN_PAD(x) (8 - (x))
#else
#define __ENDIAN_PAD(x) 0
#endif
#if defined(_WIN32)
# if defined(__GNUC__) || defined(__TINYC__)
# define ecere_stdcall __attribute__((__stdcall__))
# define ecere_gcc_struct __attribute__((gcc_struct))
# else
# define ecere_stdcall __stdcall
# define ecere_gcc_struct
# endif
#else
# define ecere_stdcall
# define ecere_gcc_struct
#endif
#include <stdint.h>
#include <sys/types.h>
enum yytokentype
{
IDENTIFIER = 258, CONSTANT = 259, STRING_LITERAL = 260, SIZEOF = 261, PTR_OP = 262, INC_OP = 263, DEC_OP = 264, LEFT_OP = 265, RIGHT_OP = 266, LE_OP = 267, GE_OP = 268, EQ_OP = 269, NE_OP = 270, AND_OP = 271, OR_OP = 272, MUL_ASSIGN = 273, DIV_ASSIGN = 274, MOD_ASSIGN = 275, ADD_ASSIGN = 276, SUB_ASSIGN = 277, LEFT_ASSIGN = 278, RIGHT_ASSIGN = 279, AND_ASSIGN = 280, XOR_ASSIGN = 281, OR_ASSIGN = 282, TYPE_NAME = 283, TYPEDEF = 284, EXTERN = 285, STATIC = 286, AUTO = 287, REGISTER = 288, CHAR = 289, SHORT = 290, INT = 291, UINT = 292, INT64 = 293, INT128 = 294, LONG = 295, SIGNED = 296, UNSIGNED = 297, FLOAT = 298, DOUBLE = 299, CONST = 300, VOLATILE = 301, VOID = 302, VALIST = 303, STRUCT = 304, UNION = 305, ENUM = 306, ELLIPSIS = 307, CASE = 308, DEFAULT = 309, IF = 310, SWITCH = 311, WHILE = 312, DO = 313, FOR = 314, GOTO = 315, CONTINUE = 316, BREAK = 317, RETURN = 318, IFX = 319, ELSE = 320, CLASS = 321, THISCLASS = 322, CLASS_NAME = 323, PROPERTY = 324, SETPROP = 325, GETPROP = 326, NEWOP = 327, RENEW = 328, DELETE = 329, EXT_DECL = 330, EXT_STORAGE = 331, IMPORT = 332, DEFINE = 333, VIRTUAL = 334, ATTRIB = 335, PUBLIC = 336, PRIVATE = 337, TYPED_OBJECT = 338, ANY_OBJECT = 339, _INCREF = 340, EXTENSION = 341, ASM = 342, TYPEOF = 343, WATCH = 344, STOPWATCHING = 345, FIREWATCHERS = 346, WATCHABLE = 347, CLASS_DESIGNER = 348, CLASS_NO_EXPANSION = 349, CLASS_FIXED = 350, ISPROPSET = 351, CLASS_DEFAULT_PROPERTY = 352, PROPERTY_CATEGORY = 353, CLASS_DATA = 354, CLASS_PROPERTY = 355, SUBCLASS = 356, NAMESPACE = 357, NEW0OP = 358, RENEW0 = 359, VAARG = 360, DBTABLE = 361, DBFIELD = 362, DBINDEX = 363, DATABASE_OPEN = 364, ALIGNOF = 365, ATTRIB_DEP = 366, __ATTRIB = 367, BOOL = 368, _BOOL = 369, _COMPLEX = 370, _IMAGINARY = 371, RESTRICT = 372, THREAD = 373, WIDE_STRING_LITERAL = 374, BUILTIN_OFFSETOF = 375
};
extern char * yytext;
int yylex();
int yyerror();
unsigned int guess;
unsigned int deleteWatchable = 0;
int memberAccessStack[256];
int defaultMemberAccess = -1;
typedef unsigned char yytype_uint8;
typedef signed char yytype_int8;
typedef unsigned short int yytype_uint16;
typedef short int yytype_int16;
void * malloc(size_t);
void free(void *);
static const yytype_uint8 yytranslate[] =
{
0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 140, 2, 2, 134, 142, 137, 2, 124, 125, 121, 138, 129, 139, 132, 141, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 133, 127, 122, 128, 123, 145, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 135, 2, 136, 143, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 131, 144, 130, 126, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120
};
static const yytype_uint16 yyprhs[] =
{
0, 0, 3, 6, 9, 11, 14, 16, 18, 20, 25, 30, 33, 35, 39, 44, 48, 51, 54, 56, 60, 63, 66, 69, 72, 75, 78, 81, 85, 88, 90, 93, 95, 98, 101, 104, 107, 110, 113, 115, 117, 121, 123, 127, 131, 133, 135, 139, 143, 145, 149, 153, 157, 161, 163, 166, 169, 171, 173, 176, 179, 182, 185, 188, 191, 193, 195, 197, 200, 203, 205, 208, 211, 214, 217, 219, 222, 225, 229, 234, 240, 245, 249, 254, 257, 261, 266, 272, 277, 281, 286, 292, 298, 303, 306, 310, 314, 318, 322, 325, 330, 334, 338, 341, 346, 350, 353, 357, 360, 364, 367, 369, 372, 376, 380, 384, 387, 389, 393, 397, 399, 403, 407, 410, 415, 421, 425, 430, 434, 436, 440, 444, 448, 451, 455, 458, 463, 469, 473, 478, 482, 484, 488, 492, 495, 497, 500, 503, 506, 508, 511, 517, 525, 535, 542, 551, 556, 563, 565, 568, 572, 577, 580, 583, 585, 587, 590, 593, 595, 597, 599, 601, 609, 611, 614, 619, 621, 623, 626, 630, 633, 636, 639, 643, 645, 648, 651, 654, 656, 658, 660, 663, 666, 669, 673, 677, 679, 681, 684, 687, 689, 692, 695, 698, 701, 703, 706, 708, 711, 714, 719, 724, 731, 734, 739, 744, 751, 753, 755, 759, 761, 766, 772, 774, 776, 778, 780, 784, 786, 788, 790, 794, 798, 802, 804, 808, 810, 813, 816, 820, 824, 830, 836, 843, 850, 853, 856, 860, 864, 868, 872, 876, 880, 884, 888, 892, 896, 900, 902, 904, 908, 910, 913, 918, 920, 922, 924, 929, 934, 940, 949, 952, 954, 956, 958, 961, 968, 975, 981, 987, 994, 1001, 1007, 1013, 1021, 1029, 1036, 1043, 1051, 1059, 1066, 1073, 1078, 1084, 1089, 1096, 1101, 1103, 1105, 1107, 1109, 1113, 1116, 1118, 1121, 1124, 1127, 1129, 1134, 1139, 1143, 1148, 1153, 1157, 1161, 1164, 1167, 1172, 1177, 1181, 1186, 1190, 1194, 1197, 1200, 1202, 1204, 1208, 1212, 1214, 1216, 1220, 1224, 1227, 1230, 1233, 1236, 1239, 1242, 1247, 1253, 1259, 1262, 1267, 1274, 1276, 1278, 1280, 1282, 1284, 1286, 1288, 1290, 1292, 1294, 1296, 1301, 1303, 1307, 1311, 1315, 1319, 1323, 1327, 1329, 1333, 1337, 1341, 1345, 1347, 1351, 1355, 1359, 1363, 1366, 1368, 1371, 1375, 1379, 1383, 1387, 1391, 1395, 1399, 1401, 1405, 1409, 1413, 1417, 1421, 1425, 1429, 1433, 1435, 1439, 1443, 1447, 1451, 1453, 1457, 1461, 1465, 1469, 1471, 1475, 1479, 1483, 1487, 1489, 1493, 1497, 1499, 1503, 1507, 1509, 1515, 1521, 1527, 1533, 1539, 1545, 1551, 1557, 1563, 1569, 1575, 1581, 1587, 1593, 1599, 1605, 1607, 1611, 1615, 1619, 1623, 1627, 1631, 1635, 1639, 1641, 1643, 1645, 1647, 1649, 1651, 1653, 1655, 1657, 1659, 1661, 1663, 1667, 1671, 1674, 1676, 1680, 1684, 1686, 1688, 1691, 1694, 1698, 1702, 1706, 1710, 1714, 1718, 1722, 1725, 1728, 1731, 1734, 1737, 1743, 1750, 1757, 1760, 1766, 1768, 1770, 1772, 1777, 1779, 1783, 1787, 1791, 1795, 1799, 1803, 1805, 1809, 1813, 1817, 1821, 1823, 1827, 1831, 1835, 1839, 1841, 1844, 1848, 1852, 1856, 1860, 1864, 1868, 1872, 1874, 1878, 1882, 1886, 1890, 1894, 1898, 1902, 1906, 1908, 1912, 1916, 1920, 1924, 1926, 1930, 1934, 1938, 1942, 1944, 1948, 1952, 1956, 1960, 1962, 1966, 1970, 1972, 1976, 1980, 1982, 1988, 1994, 2000, 2006, 2011, 2016, 2021, 2026, 2032, 2038, 2044, 2050, 2055, 2060, 2065, 2070, 2076, 2082, 2088, 2094, 2100, 2106, 2112, 2118, 2122, 2126, 2129, 2132, 2134, 2138, 2142, 2146, 2150, 2152, 2155, 2159, 2163, 2166, 2169, 2172, 2174, 2177, 2181, 2185, 2187, 2189, 2191, 2193, 2195, 2197, 2199, 2201, 2203, 2205, 2207, 2209, 2211, 2213, 2215, 2217, 2219, 2223, 2227, 2229, 2233, 2236, 2238, 2241, 2244, 2247, 2252, 2257, 2261, 2265, 2270, 2276, 2281, 2288, 2295, 2300, 2306, 2311, 2318, 2325, 2331, 2337, 2340, 2343, 2346, 2352, 2356, 2362, 2369, 2375, 2383, 2391, 2400, 2409, 2417, 2425, 2429, 2433, 2437, 2442, 2446, 2452, 2458, 2465, 2473, 2480, 2485, 2487, 2489, 2491, 2493, 2495, 2497, 2499, 2501, 2503, 2506, 2508, 2510, 2512, 2514, 2516, 2518, 2520, 2522, 2524, 2526, 2528, 2530, 2532, 2534, 2536, 2538, 2540, 2545, 2550, 2555, 2557, 2559, 2561, 2563, 2565, 2567, 2569, 2571, 2573, 2575, 2577, 2579, 2581, 2583, 2585, 2587, 2589, 2591, 2593, 2595, 2597, 2599, 2601, 2603, 2605, 2607, 2609, 2611, 2616, 2621, 2626, 2628, 2630, 2633, 2636, 2640, 2646, 2649, 2653, 2659, 2665, 2671, 2673, 2677, 2680, 2683, 2687, 2691, 2694, 2698, 2702, 2707, 2711, 2715, 2719, 2723, 2727, 2731, 2736, 2741, 2746, 2748, 2750, 2755, 2759, 2762, 2766, 2770, 2774, 2778, 2782, 2786, 2790, 2794, 2798, 2802, 2806, 2810, 2812, 2814, 2816, 2819, 2821, 2824, 2826, 2829, 2831, 2834, 2836, 2839, 2841, 2844, 2846, 2849, 2851, 2854, 2856, 2859, 2861, 2864, 2866, 2869, 2871, 2874, 2876, 2879, 2881, 2884, 2886, 2889, 2891, 2894, 2896, 2899, 2901, 2904, 2906, 2909, 2911, 2914, 2916, 2919, 2921, 2924, 2926, 2929, 2931, 2934, 2936, 2939, 2941, 2944, 2946, 2948, 2950, 2953, 2955, 2958, 2960, 2963, 2965, 2968, 2973, 2979, 2981, 2983, 2985, 2988, 2990, 2993, 2995, 2998, 3000, 3003, 3008, 3014, 3016, 3019, 3021, 3024, 3026, 3029, 3031, 3034, 3036, 3039, 3041, 3044, 3049, 3055, 3057, 3060, 3062, 3065, 3067, 3070, 3072, 3075, 3077, 3080, 3082, 3085, 3090, 3096, 3100, 3104, 3106, 3110, 3114, 3118, 3122, 3124, 3126, 3128, 3133, 3138, 3143, 3147, 3152, 3157, 3162, 3166, 3168, 3172, 3177, 3181, 3186, 3191, 3196, 3201, 3205, 3208, 3212, 3216, 3220, 3224, 3227, 3230, 3233, 3237, 3242, 3244, 3246, 3249, 3253, 3257, 3261, 3265, 3268, 3271, 3274, 3278, 3283, 3285, 3287, 3289, 3291, 3293, 3298, 3300, 3302, 3304, 3306, 3308, 3310, 3312, 3314, 3316, 3321, 3323, 3326, 3330, 3337, 3343, 3347, 3352, 3355, 3359, 3363, 3367, 3371, 3376, 3381, 3386, 3389, 3393, 3397, 3401, 3406, 3411, 3415, 3420, 3423, 3427, 3431, 3435, 3440, 3445, 3447, 3450, 3453, 3457, 3459, 3461, 3464, 3467, 3471, 3473, 3475, 3478, 3481, 3485, 3487, 3490, 3494, 3497, 3500, 3502, 3505, 3509, 3512, 3514, 3517, 3521, 3525, 3527, 3530, 3534, 3538, 3540, 3543, 3547, 3551, 3553, 3556, 3560, 3564, 3566, 3569, 3573, 3577, 3579, 3583, 3588, 3590, 3595, 3598, 3604, 3608, 3610, 3612, 3614, 3616, 3618, 3620, 3624, 3628, 3631, 3634, 3636, 3638, 3642, 3645, 3649, 3651, 3655, 3659, 3663, 3667, 3671, 3675, 3677, 3680, 3684, 3688, 3690, 3693, 3695, 3698, 3701, 3704, 3707, 3711, 3713, 3715, 3719, 3723, 3725, 3729, 3734, 3738, 3743, 3747, 3751, 3756, 3760, 3765, 3767, 3771, 3775, 3780, 3784, 3788, 3792, 3797, 3799, 3803, 3807, 3811, 3815, 3819, 3821, 3825, 3828, 3830, 3832, 3834, 3836, 3838, 3841, 3843, 3845, 3847, 3849, 3852, 3855, 3858, 3860, 3862, 3864, 3866, 3868, 3871, 3873, 3875, 3880, 3888, 3890, 3894, 3895, 3902, 3911, 3922, 3935, 3944, 3955, 3966, 3972, 3980, 3990, 4002, 4010, 4020, 4030, 4034, 4039, 4044, 4048, 4052, 4056, 4061, 4066, 4070, 4074, 4078, 4083, 4088, 4092, 4095, 4099, 4102, 4106, 4111, 4116, 4120, 4124, 4126, 4128, 4130, 4132, 4134, 4137, 4141, 4144, 4147, 4150, 4154, 4158, 4161, 4167, 4174, 4177, 4180, 4183, 4186, 4189, 4192, 4194, 4197, 4200, 4204, 4206, 4209, 4211, 4214, 4217, 4219, 4222, 4225, 4228, 4231, 4234, 4237, 4239, 4241, 4244, 4247, 4249, 4251, 4254, 4257, 4259, 4262, 4265, 4267, 4270, 4272, 4275, 4278, 4284, 4290, 4298, 4306, 4312, 4318, 4322, 4325, 4331, 4336, 4341, 4349, 4356, 4363, 4369, 4377, 4384, 4389, 4397, 4407, 4411, 4416, 4421, 4427, 4433, 4440, 4448, 4455, 4462, 4468, 4474, 4479, 4483, 4486, 4488, 4491, 4496, 4500, 4506, 4511, 4515, 4518, 4521, 4524, 4528, 4532, 4536, 4540, 4543, 4546, 4548, 4550, 4555, 4559, 4564, 4568, 4572, 4575, 4580, 4584, 4589, 4593, 4597, 4600, 4602, 4605, 4607, 4609, 4612, 4614, 4617, 4621, 4625, 4627, 4630, 4633, 4636, 4640, 4645, 4650, 4653, 4656, 4659, 4662, 4664, 4667, 4669, 4672, 4674, 4677, 4680, 4682, 4685, 4687, 4690, 4693, 4696, 4699, 4701, 4704, 4707, 4711, 4713, 4715, 4716, 4723, 4730, 4736, 4741, 4743, 4746, 4749, 4751, 4755, 4759, 4764, 4766, 4768, 4771, 4774, 4781, 4788, 4795
};
static const yytype_int16 yyrhs[] =
{
392, 0, -1, 218, 121, -1, 218, 122, -1, 151, -1, 218, 218, -1, 28, -1, 28, -1, 149, -1, 149, 122, 212, 123, -1, 149, 122, 212, 11, -1, 301, 336, -1, 334, -1, 301, 124, 125, -1, 126, 301, 124, 125, -1, 79, 301, 336, -1, 79, 334, -1, 301, 337, -1, 335, -1, 79, 301, 337, -1, 79, 335, -1, 152, 376, -1, 155, 376, -1, 155, 127, -1, 153, 376, -1, 154, 376, -1, 152, 127, -1, 152, 326, 127, -1, 152, 377, -1, 156, -1, 155, 377, -1, 157, -1, 157, 127, -1, 300, 336, -1, 300, 338, -1, 300, 337, -1, 160, 376, -1, 160, 377, -1, 161, -1, 160, -1, 226, 128, 341, -1, 341, -1, 226, 128, 342, -1, 226, 128, 1, -1, 342, -1, 164, -1, 166, 129, 164, -1, 167, 129, 164, -1, 165, -1, 166, 129, 165, -1, 167, 129, 165, -1, 166, 129, 1, -1, 167, 129, 1, -1, 129, -1, 166, 127, -1, 167, 127, -1, 168, -1, 162, -1, 171, 168, -1, 171, 162, -1, 169, 168, -1, 169, 162, -1, 171, 127, -1, 169, 127, -1, 127, -1, 169, -1, 166, -1, 169, 166, -1, 171, 166, -1, 163, -1, 170, 163, -1, 171, 163, -1, 169, 163, -1, 169, 167, -1, 167, -1, 166, 1, -1, 173, 130, -1, 173, 1, 130, -1, 300, 218, 131, 171, -1, 300, 218, 131, 170, 1, -1, 300, 218, 131, 170, -1, 300, 218, 131, -1, 300, 218, 131, 1, -1, 175, 130, -1, 175, 1, 130, -1, 301, 218, 131, 171, -1, 301, 218, 131, 170, 1, -1, 301, 218, 131, 170, -1, 301, 218, 131, -1, 301, 218, 131, 1, -1, 302, 218, 131, 170, 130, -1, 302, 218, 131, 171, 130, -1, 302, 218, 131, 130, -1, 178, 130, -1, 178, 1, 130, -1, 151, 131, 170, -1, 218, 131, 170, -1, 151, 131, 171, -1, 151, 131, -1, 151, 131, 170, 1, -1, 151, 131, 1, -1, 218, 131, 171, -1, 218, 131, -1, 218, 131, 170, 1, -1, 218, 131, 1, -1, 180, 130, -1, 180, 1, 130, -1, 131, 171, -1, 131, 170, 1, -1, 131, 1, -1, 131, -1, 131, 170, -1, 226, 128, 341, -1, 226, 128, 342, -1, 226, 128, 1, -1, 226, 1, -1, 181, -1, 183, 129, 181, -1, 184, 129, 181, -1, 182, -1, 183, 129, 182, -1, 184, 129, 182, -1, 183, 1, -1, 69, 306, 218, 131, -1, 69, 306, 330, 218, 131, -1, 69, 306, 131, -1, 69, 306, 330, 131, -1, 69, 1, 131, -1, 185, -1, 186, 70, 376, -1, 186, 71, 376, -1, 186, 96, 376, -1, 186, 92, -1, 186, 98, 220, -1, 186, 130, -1, 100, 306, 218, 131, -1, 100, 306, 330, 218, 131, -1, 100, 306, 131, -1, 100, 306, 330, 131, -1, 100, 1, 131, -1, 188, -1, 189, 70, 376, -1, 189, 71, 376, -1, 189, 130, -1, 218, -1, 191, 218, -1, 191, 376, -1, 74, 376, -1, 192, -1, 193, 192, -1, 89, 124, 191, 125, 376, -1, 89, 124, 245, 125, 131, 193, 130, -1, 245, 132, 89, 124, 245, 125, 131, 193, 130, -1, 90, 124, 245, 129, 191, 125, -1, 245, 132, 90, 124, 245, 129, 191, 125, -1, 90, 124, 245, 125, -1, 245, 132, 90, 124, 245, 125, -1, 91, -1, 91, 191, -1, 226, 132, 91, -1, 245, 132, 91, 191, -1, 199, 127, -1, 183, 127, -1, 158, -1, 187, -1, 364, 158, -1, 364, 187, -1, 190, -1, 92, -1, 94, -1, 95, -1, 100, 124, 218, 125, 128, 341, 127, -1, 127, -1, 364, 133, -1, 364, 124, 218, 125, -1, 159, -1, 301, -1, 301, 288, -1, 364, 301, 288, -1, 364, 301, -1, 364, 177, -1, 364, 174, -1, 99, 301, 288, -1, 194, -1, 93, 218, -1, 93, 151, -1, 97, 218, -1, 177, -1, 174, -1, 183, -1, 175, 1, -1, 178, 1, -1, 364, 159, -1, 364, 175, 1, -1, 364, 178, 1, -1, 184, -1, 198, -1, 200, 198, -1, 201, 198, -1, 199, -1, 200, 1, -1, 201, 1, -1, 200, 199, -1, 201, 199, -1, 301, -1, 301, 330, -1, 301, -1, 301, 330, -1, 66, 218, -1, 66, 218, 128, 203, -1, 66, 218, 133, 202, -1, 66, 218, 133, 202, 128, 203, -1, 66, 150, -1, 66, 150, 128, 203, -1, 66, 150, 133, 202, -1, 66, 150, 133, 202, 128, 203, -1, 218, -1, 218, -1, 218, 128, 205, -1, 235, -1, 301, 218, 128, 207, -1, 301, 330, 218, 128, 207, -1, 204, -1, 206, -1, 208, -1, 209, -1, 210, 129, 209, -1, 207, -1, 205, -1, 203, -1, 218, 128, 207, -1, 218, 128, 205, -1, 218, 128, 203, -1, 211, -1, 212, 129, 211, -1, 66, -1, 213, 218, -1, 213, 149, -1, 218, 213, 218, -1, 218, 213, 149, -1, 213, 218, 122, 210, 123, -1, 213, 149, 122, 210, 123, -1, 218, 213, 218, 122, 210, 123, -1, 218, 213, 149, 122, 210, 123, -1, 217, 130, -1, 216, 127, -1, 214, 131, 130, -1, 216, 131, 130, -1, 213, 218, 127, -1, 213, 148, 127, -1, 214, 133, 305, -1, 214, 131, 201, -1, 216, 131, 201, -1, 214, 131, 200, -1, 216, 131, 200, -1, 214, 131, 1, -1, 216, 131, 1, -1, 3, -1, 222, -1, 124, 247, 125, -1, 387, -1, 134, 387, -1, 134, 387, 132, 387, -1, 4, -1, 218, -1, 177, -1, 86, 124, 376, 125, -1, 86, 124, 247, 125, -1, 86, 124, 348, 125, 339, -1, 86, 124, 348, 125, 124, 348, 125, 339, -1, 221, 218, -1, 221, -1, 220, -1, 119, -1, 124, 125, -1, 72, 308, 331, 135, 267, 136, -1, 72, 308, 331, 135, 268, 136, -1, 72, 308, 135, 267, 136, -1, 72, 308, 135, 268, 136, -1, 103, 308, 331, 135, 267, 136, -1, 103, 308, 331, 135, 268, 136, -1, 103, 308, 135, 267, 136, -1, 103, 308, 135, 268, 136, -1, 73, 267, 307, 331, 135, 267, 136, -1, 73, 267, 307, 331, 135, 268, 136, -1, 73, 267, 307, 135, 267, 136, -1, 73, 267, 307, 135, 268, 136, -1, 104, 267, 307, 331, 135, 267, 136, -1, 104, 267, 307, 331, 135, 268, 136, -1, 104, 267, 307, 135, 267, 136, -1, 104, 267, 307, 135, 268, 136, -1, 66, 124, 300, 125, -1, 66, 124, 300, 330, 125, -1, 66, 124, 218, 125, -1, 105, 124, 245, 129, 348, 125, -1, 99, 124, 218, 125, -1, 399, -1, 400, -1, 401, -1, 402, -1, 135, 227, 136, -1, 135, 136, -1, 179, -1, 180, 1, -1, 124, 247, -1, 124, 265, -1, 219, -1, 226, 135, 247, 136, -1, 226, 135, 265, 136, -1, 226, 124, 125, -1, 226, 124, 227, 125, -1, 226, 124, 228, 125, -1, 226, 132, 218, -1, 226, 7, 218, -1, 226, 8, -1, 226, 9, -1, 249, 135, 247, 136, -1, 249, 135, 265, 136, -1, 249, 124, 125, -1, 249, 124, 227, 125, -1, 249, 132, 218, -1, 249, 7, 218, -1, 249, 8, -1, 249, 9, -1, 245, -1, 223, -1, 227, 129, 245, -1, 227, 129, 223, -1, 264, -1, 224, -1, 227, 129, 264, -1, 227, 129, 224, -1, 227, 129, -1, 8, 230, -1, 9, 230, -1, 231, 232, -1, 231, 223, -1, 6, 230, -1, 6, 124, 349, 125, -1, 6, 124, 66, 148, 125, -1, 6, 124, 66, 147, 125, -1, 110, 230, -1, 110, 124, 349, 125, -1, 120, 124, 349, 129, 218, 125, -1, 229, -1, 226, -1, 137, -1, 121, -1, 138, -1, 139, -1, 126, -1, 140, -1, 74, -1, 85, -1, 230, -1, 124, 348, 125, 232, -1, 232, -1, 233, 121, 232, -1, 233, 141, 232, -1, 233, 142, 232, -1, 253, 121, 232, -1, 253, 141, 232, -1, 253, 142, 232, -1, 233, -1, 234, 138, 233, -1, 234, 139, 233, -1, 254, 138, 233, -1, 254, 139, 233, -1, 234, -1, 235, 10, 234, -1, 235, 11, 234, -1, 255, 10, 234, -1, 255, 11, 234, -1, 237, 122, -1, 235, -1, 236, 235, -1, 237, 123, 235, -1, 237, 12, 235, -1, 237, 13, 235, -1, 256, 122, 235, -1, 256, 123, 235, -1, 256, 12, 235, -1, 256, 13, 235, -1, 237, -1, 238, 14, 237, -1, 238, 15, 237, -1, 257, 14, 237, -1, 257, 15, 237, -1, 238, 14, 223, -1, 238, 15, 223, -1, 257, 14, 223, -1, 257, 15, 223, -1, 238, -1, 239, 137, 238, -1, 258, 137, 238, -1, 239, 137, 223, -1, 258, 137, 223, -1, 239, -1, 240, 143, 239, -1, 259, 143, 239, -1, 240, 143, 223, -1, 259, 143, 223, -1, 240, -1, 241, 144, 240, -1, 260, 144, 240, -1, 241, 144, 223, -1, 260, 144, 223, -1, 241, -1, 242, 16, 241, -1, 261, 16, 241, -1, 242, -1, 243, 17, 242, -1, 262, 17, 242, -1, 243, -1, 243, 145, 247, 133, 244, -1, 243, 145, 265, 133, 244, -1, 262, 145, 247, 133, 244, -1, 262, 145, 265, 133, 244, -1, 243, 145, 248, 133, 244, -1, 243, 145, 266, 133, 244, -1, 262, 145, 248, 133, 244, -1, 262, 145, 266, 133, 244, -1, 243, 145, 247, 133, 223, -1, 243, 145, 265, 133, 223, -1, 262, 145, 247, 133, 223, -1, 262, 145, 265, 133, 223, -1, 243, 145, 248, 133, 223, -1, 243, 145, 266, 133, 223, -1, 262, 145, 248, 133, 223, -1, 262, 145, 266, 133, 223, -1, 244, -1, 230, 246, 245, -1, 251, 246, 245, -1, 244, 246, 245, -1, 263, 246, 245, -1, 230, 246, 223, -1, 251, 246, 223, -1, 244, 246, 223, -1, 263, 246, 223, -1, 128, -1, 18, -1, 19, -1, 20, -1, 21, -1, 22, -1, 23, -1, 24, -1, 25, -1, 26, -1, 27, -1, 245, -1, 247, 129, 245, -1, 265, 129, 245, -1, 265, 125, -1, 223, -1, 247, 129, 223, -1, 265, 129, 223, -1, 225, -1, 1, -1, 226, 1, -1, 178, 1, -1, 226, 7, 1, -1, 249, 7, 1, -1, 226, 124, 227, -1, 226, 124, 228, -1, 226, 132, 1, -1, 249, 124, 228, -1, 249, 132, 1, -1, 8, 251, -1, 9, 251, -1, 231, 252, -1, 231, 224, -1, 6, 251, -1, 6, 124, 349, 125, 1, -1, 6, 124, 66, 148, 125, 1, -1, 6, 124, 66, 147, 125, 1, -1, 110, 251, -1, 110, 124, 349, 125, 1, -1, 250, -1, 249, -1, 251, -1, 124, 348, 125, 252, -1, 252, -1, 233, 121, 252, -1, 233, 141, 252, -1, 233, 142, 252, -1, 253, 121, 252, -1, 253, 141, 252, -1, 253, 142, 252, -1, 253, -1, 234, 138, 253, -1, 234, 139, 253, -1, 254, 138, 253, -1, 254, 139, 253, -1, 254, -1, 235, 10, 254, -1, 235, 11, 254, -1, 255, 10, 254, -1, 255, 11, 254, -1, 255, -1, 236, 255, -1, 237, 123, 255, -1, 237, 12, 255, -1, 237, 13, 255, -1, 256, 122, 255, -1, 256, 123, 255, -1, 256, 12, 255, -1, 256, 13, 255, -1, 256, -1, 238, 14, 256, -1, 238, 15, 256, -1, 257, 14, 256, -1, 257, 15, 256, -1, 238, 14, 224, -1, 238, 15, 224, -1, 257, 14, 224, -1, 257, 15, 224, -1, 257, -1, 239, 137, 257, -1, 258, 137, 257, -1, 239, 137, 224, -1, 258, 137, 224, -1, 258, -1, 240, 143, 258, -1, 259, 143, 258, -1, 240, 143, 224, -1, 259, 143, 224, -1, 259, -1, 241, 144, 259, -1, 260, 144, 259, -1, 241, 144, 224, -1, 260, 144, 224, -1, 260, -1, 242, 16, 260, -1, 261, 16, 260, -1, 261, -1, 243, 17, 261, -1, 262, 17, 261, -1, 262, -1, 243, 145, 247, 133, 262, -1, 243, 145, 265, 133, 262, -1, 262, 145, 247, 133, 262, -1, 262, 145, 265, 133, 262, -1, 243, 145, 247, 133, -1, 243, 145, 265, 133, -1, 262, 145, 247, 133, -1, 262, 145, 265, 133, -1, 243, 145, 248, 133, 262, -1, 243, 145, 266, 133, 262, -1, 262, 145, 248, 133, 262, -1, 262, 145, 266, 133, 262, -1, 243, 145, 248, 133, -1, 243, 145, 266, 133, -1, 262, 145, 248, 133, -1, 262, 145, 266, 133, -1, 243, 145, 247, 133, 224, -1, 243, 145, 265, 133, 224, -1, 262, 145, 247, 133, 224, -1, 262, 145, 265, 133, 224, -1, 243, 145, 248, 133, 224, -1, 243, 145, 266, 133, 224, -1, 262, 145, 248, 133, 224, -1, 262, 145, 266, 133, 224, -1, 243, 145, 133, -1, 262, 145, 133, -1, 243, 145, -1, 262, 145, -1, 263, -1, 230, 246, 264, -1, 251, 246, 264, -1, 230, 246, 224, -1, 251, 246, 224, -1, 264, -1, 245, 1, -1, 247, 129, 264, -1, 265, 129, 264, -1, 247, 247, -1, 265, 247, -1, 247, 265, -1, 224, -1, 223, 1, -1, 247, 129, 224, -1, 265, 129, 224, -1, 244, -1, 263, -1, 29, -1, 30, -1, 31, -1, 118, -1, 32, -1, 33, -1, 117, -1, 29, -1, 30, -1, 31, -1, 118, -1, 32, -1, 33, -1, 117, -1, 218, -1, 218, 128, 267, -1, 218, 128, 268, -1, 271, -1, 272, 129, 271, -1, 272, 129, -1, 51, -1, 273, 218, -1, 273, 151, -1, 276, 130, -1, 273, 218, 131, 130, -1, 273, 151, 131, 130, -1, 273, 131, 272, -1, 273, 131, 1, -1, 273, 218, 131, 272, -1, 273, 218, 131, 272, 1, -1, 273, 218, 131, 1, -1, 273, 218, 131, 272, 127, 200, -1, 273, 218, 131, 272, 127, 201, -1, 273, 151, 131, 272, -1, 273, 151, 131, 272, 1, -1, 273, 151, 131, 1, -1, 273, 151, 131, 272, 127, 200, -1, 273, 151, 131, 272, 127, 201, -1, 273, 218, 131, 272, 127, -1, 273, 151, 131, 272, 127, -1, 273, 218, -1, 273, 151, -1, 279, 130, -1, 277, 133, 305, 131, 130, -1, 277, 131, 130, -1, 277, 133, 305, 131, 272, -1, 277, 133, 305, 131, 272, 1, -1, 277, 133, 305, 131, 1, -1, 277, 133, 305, 131, 272, 127, 200, -1, 277, 133, 305, 131, 272, 127, 201, -1, 277, 133, 305, 131, 272, 1, 127, 200, -1, 277, 133, 305, 131, 272, 1, 127, 201, -1, 277, 133, 305, 131, 1, 127, 200, -1, 277, 133, 305, 131, 1, 127, 201, -1, 273, 131, 272, -1, 273, 131, 1, -1, 277, 131, 272, -1, 277, 131, 272, 1, -1, 277, 131, 1, -1, 277, 131, 272, 127, 200, -1, 277, 131, 272, 127, 201, -1, 277, 133, 305, 131, 272, 127, -1, 277, 133, 305, 131, 272, 1, 127, -1, 277, 133, 305, 131, 1, 127, -1, 277, 131, 272, 127, -1, 278, -1, 295, -1, 279, -1, 296, -1, 321, -1, 45, -1, 46, -1, 282, -1, 283, -1, 284, 283, -1, 47, -1, 34, -1, 35, -1, 36, -1, 37, -1, 38, -1, 39, -1, 48, -1, 40, -1, 43, -1, 44, -1, 41, -1, 42, -1, 86, -1, 292, -1, 274, -1, 148, -1, 88, 124, 245, 125, -1, 101, 124, 148, 125, -1, 101, 124, 218, 125, -1, 67, -1, 83, -1, 84, -1, 114, -1, 113, -1, 115, -1, 116, -1, 47, -1, 34, -1, 35, -1, 36, -1, 37, -1, 38, -1, 39, -1, 48, -1, 40, -1, 43, -1, 44, -1, 41, -1, 42, -1, 86, -1, 292, -1, 274, -1, 151, -1, 114, -1, 113, -1, 115, -1, 116, -1, 88, 124, 245, 125, -1, 101, 124, 148, 125, -1, 101, 124, 218, 125, -1, 67, -1, 338, -1, 338, 326, -1, 133, 267, -1, 338, 133, 267, -1, 338, 133, 267, 133, 267, -1, 133, 268, -1, 338, 133, 268, -1, 338, 133, 267, 133, 268, -1, 338, 133, 268, 133, 268, -1, 338, 133, 268, 133, 267, -1, 287, -1, 288, 129, 287, -1, 297, 218, -1, 297, 149, -1, 297, 321, 218, -1, 297, 321, 149, -1, 291, 130, -1, 289, 131, 130, -1, 297, 131, 130, -1, 297, 321, 131, 130, -1, 289, 131, 200, -1, 289, 131, 201, -1, 289, 131, 1, -1, 297, 131, 200, -1, 297, 131, 201, -1, 297, 131, 1, -1, 297, 321, 131, 200, -1, 297, 321, 131, 201, -1, 297, 321, 131, 1, -1, 289, -1, 289, -1, 289, 122, 210, 123, -1, 293, 133, 305, -1, 296, 130, -1, 294, 131, 130, -1, 293, 131, 130, -1, 297, 131, 130, -1, 294, 131, 200, -1, 294, 131, 201, -1, 294, 131, 1, -1, 293, 131, 200, -1, 293, 131, 201, -1, 293, 131, 1, -1, 297, 131, 200, -1, 297, 131, 201, -1, 297, 131, 1, -1, 49, -1, 50, -1, 283, -1, 298, 283, -1, 285, -1, 298, 285, -1, 275, -1, 298, 275, -1, 290, -1, 298, 290, -1, 283, -1, 299, 283, -1, 285, -1, 299, 285, -1, 147, -1, 299, 147, -1, 275, -1, 299, 275, -1, 290, -1, 299, 290, -1, 269, -1, 300, 269, -1, 283, -1, 300, 283, -1, 286, -1, 300, 286, -1, 275, -1, 300, 275, -1, 290, -1, 300, 290, -1, 269, -1, 301, 269, -1, 283, -1, 301, 283, -1, 285, -1, 301, 285, -1, 147, -1, 301, 147, -1, 290, -1, 301, 290, -1, 275, -1, 301, 275, -1, 270, -1, 302, 270, -1, 283, -1, 302, 283, -1, 285, -1, 302, 285, -1, 147, -1, 302, 147, -1, 280, -1, 302, 280, -1, 281, -1, 302, 281, -1, 82, -1, 81, -1, 269, -1, 304, 269, -1, 283, -1, 304, 283, -1, 286, -1, 304, 286, -1, 218, -1, 304, 218, -1, 218, 122, 212, 123, -1, 304, 218, 122, 212, 123, -1, 304, -1, 297, -1, 269, -1, 306, 269, -1, 283, -1, 306, 283, -1, 286, -1, 306, 286, -1, 218, -1, 306, 218, -1, 218, 122, 212, 123, -1, 306, 218, 122, 212, 123, -1, 269, -1, 307, 269, -1, 283, -1, 307, 283, -1, 286, -1, 307, 286, -1, 290, -1, 307, 290, -1, 275, -1, 307, 275, -1, 218, -1, 307, 218, -1, 218, 122, 212, 123, -1, 307, 218, 122, 212, 123, -1, 269, -1, 308, 269, -1, 283, -1, 308, 283, -1, 286, -1, 308, 286, -1, 290, -1, 308, 290, -1, 275, -1, 308, 275, -1, 218, -1, 308, 218, -1, 218, 122, 212, 123, -1, 308, 218, 122, 212, 123, -1, 310, 129, 1, -1, 309, 129, 1, -1, 218, -1, 310, 129, 218, -1, 309, 129, 218, -1, 352, 129, 218, -1, 353, 129, 218, -1, 312, -1, 149, -1, 37, -1, 149, 135, 267, 136, -1, 149, 135, 268, 136, -1, 149, 135, 148, 136, -1, 149, 135, 136, -1, 311, 135, 267, 136, -1, 311, 135, 268, 136, -1, 311, 135, 148, 136, -1, 311, 135, 136, -1, 218, -1, 124, 332, 125, -1, 124, 321, 332, 125, -1, 124, 333, 125, -1, 124, 321, 333, 125, -1, 312, 135, 267, 136, -1, 312, 135, 268, 136, -1, 312, 135, 148, 136, -1, 312, 135, 136, -1, 312, 124, -1, 313, 354, 125, -1, 313, 355, 125, -1, 313, 310, 125, -1, 313, 309, 125, -1, 313, 125, -1, 313, 309, -1, 313, 1, -1, 313, 352, 124, -1, 313, 301, 218, 124, -1, 314, -1, 312, -1, 311, 124, -1, 317, 354, 125, -1, 317, 355, 125, -1, 317, 310, 125, -1, 317, 309, 125, -1, 317, 125, -1, 317, 309, -1, 317, 1, -1, 317, 352, 124, -1, 317, 301, 218, 124, -1, 318, -1, 311, -1, 75, -1, 76, -1, 326, -1, 87, 124, 387, 125, -1, 80, -1, 111, -1, 112, -1, 3, -1, 28, -1, 76, -1, 75, -1, 45, -1, 323, -1, 323, 124, 247, 125, -1, 324, -1, 325, 324, -1, 325, 129, 324, -1, 322, 124, 124, 325, 125, 125, -1, 322, 124, 124, 125, 125, -1, 124, 330, 125, -1, 124, 321, 330, 125, -1, 135, 136, -1, 135, 267, 136, -1, 135, 268, 136, -1, 135, 148, 136, -1, 327, 135, 136, -1, 327, 135, 267, 136, -1, 327, 135, 148, 136, -1, 327, 135, 268, 136, -1, 124, 125, -1, 124, 354, 125, -1, 124, 355, 125, -1, 327, 124, 125, -1, 327, 124, 354, 125, -1, 327, 124, 355, 125, -1, 124, 331, 125, -1, 124, 321, 331, 125, -1, 124, 125, -1, 124, 354, 125, -1, 124, 355, 125, -1, 328, 124, 125, -1, 328, 124, 354, 125, -1, 328, 124, 355, 125, -1, 121, -1, 121, 284, -1, 121, 329, -1, 121, 284, 329, -1, 329, -1, 327, -1, 329, 327, -1, 321, 329, -1, 321, 329, 327, -1, 329, -1, 328, -1, 329, 328, -1, 321, 329, -1, 321, 329, 328, -1, 316, -1, 329, 316, -1, 321, 329, 316, -1, 332, 321, -1, 338, 321, -1, 320, -1, 329, 320, -1, 321, 329, 320, -1, 333, 321, -1, 314, -1, 329, 314, -1, 321, 329, 314, -1, 329, 321, 314, -1, 315, -1, 329, 315, -1, 321, 329, 315, -1, 329, 321, 315, -1, 318, -1, 329, 318, -1, 321, 329, 318, -1, 329, 321, 318, -1, 319, -1, 329, 319, -1, 321, 329, 319, -1, 329, 321, 319, -1, 311, -1, 329, 311, -1, 321, 329, 311, -1, 329, 321, 311, -1, 245, -1, 131, 343, 130, -1, 131, 343, 129, 130, -1, 264, -1, 131, 343, 130, 1, -1, 131, 343, -1, 131, 343, 129, 130, 1, -1, 131, 343, 129, -1, 244, -1, 223, -1, 263, -1, 224, -1, 339, -1, 340, -1, 343, 129, 339, -1, 343, 129, 340, -1, 343, 339, -1, 343, 340, -1, 332, -1, 333, -1, 332, 128, 339, -1, 332, 1, -1, 332, 128, 340, -1, 344, -1, 346, 129, 344, -1, 37, 129, 344, -1, 38, 129, 344, -1, 39, 129, 344, -1, 149, 129, 344, -1, 347, 129, 344, -1, 345, -1, 344, 1, -1, 346, 129, 345, -1, 347, 129, 345, -1, 298, -1, 298, 330, -1, 299, -1, 299, 330, -1, 301, 333, -1, 301, 330, -1, 301, 137, -1, 301, 137, 333, -1, 301, -1, 66, -1, 301, 333, 1, -1, 301, 330, 1, -1, 350, -1, 352, 129, 350, -1, 352, 1, 129, 350, -1, 353, 129, 350, -1, 353, 1, 129, 350, -1, 1, 129, 350, -1, 310, 129, 350, -1, 310, 1, 129, 350, -1, 309, 129, 350, -1, 309, 1, 129, 350, -1, 351, -1, 352, 129, 351, -1, 353, 129, 351, -1, 353, 1, 129, 351, -1, 1, 129, 351, -1, 310, 129, 351, -1, 309, 129, 351, -1, 309, 1, 129, 351, -1, 352, -1, 352, 129, 52, -1, 353, 129, 52, -1, 310, 129, 52, -1, 309, 129, 52, -1, 1, 129, 52, -1, 353, -1, 352, 129, 1, -1, 353, 1, -1, 361, -1, 326, -1, 376, -1, 127, -1, 133, -1, 247, 127, -1, 379, -1, 381, -1, 383, -1, 360, -1, 197, 127, -1, 196, 127, -1, 195, 127, -1, 362, -1, 382, -1, 377, -1, 380, -1, 384, -1, 383, 1, -1, 265, -1, 387, -1, 387, 124, 245, 125, -1, 135, 218, 136, 387, 124, 245, 125, -1, 358, -1, 359, 129, 358, -1, -1, 87, 283, 124, 387, 125, 127, -1, 87, 283, 124, 387, 133, 359, 125, 127, -1, 87, 283, 124, 387, 133, 359, 133, 359, 125, 127, -1, 87, 283, 124, 387, 133, 359, 133, 359, 133, 359, 125, 127, -1, 87, 283, 124, 387, 3, 359, 125, 127, -1, 87, 283, 124, 387, 3, 359, 133, 359, 125, 127, -1, 87, 283, 124, 387, 133, 359, 3, 359, 125, 127, -1, 87, 124, 387, 125, 127, -1, 87, 124, 387, 133, 359, 125, 127, -1, 87, 124, 387, 133, 359, 133, 359, 125, 127, -1, 87, 124, 387, 133, 359, 133, 359, 133, 359, 125, 127, -1, 87, 124, 387, 3, 359, 125, 127, -1, 87, 124, 387, 3, 359, 133, 359, 125, 127, -1, 87, 124, 387, 133, 359, 3, 359, 125, 127, -1, 218, 133, 356, -1, 53, 267, 133, 356, -1, 53, 268, 133, 356, -1, 53, 133, 356, -1, 54, 133, 356, -1, 218, 133, 365, -1, 53, 267, 133, 365, -1, 53, 268, 133, 365, -1, 53, 133, 365, -1, 54, 133, 365, -1, 218, 133, 357, -1, 53, 267, 133, 357, -1, 53, 268, 133, 357, -1, 53, 133, 357, -1, 53, 133, -1, 54, 133, 357, -1, 54, 133, -1, 218, 133, 368, -1, 53, 267, 133, 368, -1, 53, 268, 133, 368, -1, 53, 133, 368, -1, 54, 133, 368, -1, 81, -1, 82, -1, 54, -1, 81, -1, 82, -1, 300, 127, -1, 300, 346, 127, -1, 172, 127, -1, 368, 127, -1, 302, 127, -1, 302, 346, 127, -1, 303, 346, 127, -1, 176, 127, -1, 78, 218, 128, 244, 127, -1, 31, 78, 218, 128, 244, 127, -1, 302, 1, -1, 300, 1, -1, 368, 1, -1, 173, 1, -1, 172, 1, -1, 300, 347, -1, 365, -1, 369, 365, -1, 370, 365, -1, 369, 1, 127, -1, 368, -1, 369, 368, -1, 356, -1, 371, 356, -1, 372, 356, -1, 357, -1, 371, 357, -1, 372, 357, -1, 371, 365, -1, 372, 365, -1, 371, 368, -1, 372, 368, -1, 371, -1, 369, -1, 369, 371, -1, 370, 371, -1, 372, -1, 370, -1, 369, 372, -1, 370, 372, -1, 131, -1, 377, 130, -1, 375, 374, -1, 375, -1, 375, 373, -1, 127, -1, 247, 127, -1, 265, 127, -1, 55, 124, 247, 125, 356, -1, 55, 124, 265, 125, 356, -1, 55, 124, 247, 125, 356, 65, 356, -1, 55, 124, 265, 125, 356, 65, 356, -1, 56, 124, 247, 125, 356, -1, 56, 124, 265, 125, 356, -1, 55, 124, 265, -1, 379, 1, -1, 57, 124, 247, 125, 356, -1, 57, 124, 265, 356, -1, 57, 124, 125, 356, -1, 58, 356, 57, 124, 247, 125, 127, -1, 58, 356, 57, 124, 265, 127, -1, 59, 124, 378, 378, 125, 356, -1, 59, 124, 378, 125, 356, -1, 59, 124, 378, 378, 247, 125, 356, -1, 59, 124, 378, 378, 265, 356, -1, 59, 124, 125, 356, -1, 59, 124, 218, 133, 247, 125, 356, -1, 59, 124, 218, 133, 247, 127, 247, 125, 356, -1, 59, 124, 1, -1, 59, 124, 265, 1, -1, 59, 124, 378, 1, -1, 59, 124, 378, 265, 1, -1, 59, 124, 378, 378, 265, -1, 59, 124, 378, 378, 125, 357, -1, 59, 124, 378, 378, 247, 125, 357, -1, 59, 124, 378, 378, 265, 357, -1, 58, 356, 57, 124, 247, 125, -1, 58, 356, 57, 124, 247, -1, 58, 356, 57, 124, 265, -1, 58, 356, 57, 124, -1, 58, 356, 57, -1, 58, 356, -1, 58, -1, 57, 1, -1, 57, 124, 125, 1, -1, 57, 124, 265, -1, 57, 124, 247, 125, 357, -1, 57, 124, 265, 357, -1, 60, 218, 127, -1, 61, 127, -1, 62, 127, -1, 63, 127, -1, 63, 247, 127, -1, 63, 265, 127, -1, 63, 223, 127, -1, 63, 224, 127, -1, 63, 265, -1, 63, 224, -1, 63, -1, 60, -1, 302, 334, 369, 376, -1, 302, 334, 376, -1, 302, 336, 369, 376, -1, 302, 336, 376, -1, 334, 369, 376, -1, 334, 376, -1, 302, 334, 369, 377, -1, 302, 334, 377, -1, 302, 336, 369, 377, -1, 302, 336, 377, -1, 334, 369, 377, -1, 334, 377, -1, 5, -1, 387, 5, -1, 385, -1, 215, -1, 302, 215, -1, 366, -1, 77, 387, -1, 77, 31, 387, -1, 77, 218, 387, -1, 127, -1, 363, 385, -1, 363, 215, -1, 363, 366, -1, 363, 77, 387, -1, 363, 77, 31, 387, -1, 363, 77, 218, 387, -1, 363, 133, -1, 31, 133, -1, 102, 218, -1, 102, 151, -1, 393, -1, 363, 393, -1, 217, -1, 302, 217, -1, 386, -1, 363, 217, -1, 363, 386, -1, 367, -1, 363, 367, -1, 389, -1, 391, 389, -1, 390, 389, -1, 391, 1, -1, 390, 1, -1, 388, -1, 391, 388, -1, 390, 215, -1, 390, 363, 215, -1, 391, -1, 390, -1, -1, 106, 387, 218, 131, 398, 130, -1, 106, 387, 151, 131, 398, 130, -1, 106, 387, 131, 398, 130, -1, 301, 218, 387, 127, -1, 218, -1, 123, 218, -1, 122, 218, -1, 395, -1, 396, 129, 395, -1, 108, 396, 127, -1, 108, 396, 218, 127, -1, 394, -1, 397, -1, 398, 394, -1, 398, 397, -1, 109, 124, 245, 129, 245, 125, -1, 107, 124, 387, 129, 218, 125, -1, 108, 124, 387, 129, 218, 125, -1, 106, 124, 387, 125, -1
};
static const yytype_uint16 yyrline[] =
{
0, 284, 284, 303, 342, 343, 423, 427, 430, 431, 432, 471, 473, 478, 483, 488, 490, 495, 497, 502, 504, 509, 511, 513, 515, 517, 521, 525, 538, 540, 542, 544, 546, 552, 554, 559, 564, 569, 571, 573, 578, 579, 583, 584, 595, 599, 600, 602, 607, 608, 610, 613, 625, 636, 655, 657, 662, 663, 664, 665, 666, 667, 668, 669, 682, 686, 687, 688, 689, 693, 694, 695, 696, 697, 698, 699, 703, 705, 710, 712, 714, 716, 718, 748, 750, 755, 757, 759, 761, 763, 792, 794, 796, 801, 803, 808, 810, 814, 816, 818, 820, 825, 828, 831, 834, 899, 901, 906, 908, 910, 912, 914, 945, 949, 950, 951, 955, 956, 957, 961, 962, 963, 964, 968, 971, 974, 977, 980, 985, 986, 988, 990, 992, 994, 999, 1003, 1006, 1009, 1012, 1015, 1020, 1021, 1023, 1028, 1032, 1034, 1039, 1041, 1046, 1048, 1053, 1058, 1060, 1065, 1067, 1069, 1071, 1076, 1078, 1080, 1082, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1099, 1100, 1102, 1106, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1124, 1125, 1129, 1130, 1131, 1135, 1139, 1140, 1141, 1145, 1146, 1147, 1148, 1149, 1153, 1154, 1166, 1167, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1182, 1186, 1187, 1191, 1199, 1200, 1204, 1205, 1206, 1210, 1211, 1215, 1216, 1217, 1218, 1219, 1220, 1260, 1261, 1265, 1273, 1274, 1282, 1283, 1285, 1286, 1295, 1296, 1300, 1307, 1314, 1320, 1327, 1333, 1342, 1349, 1355, 1361, 1367, 1373, 1379, 1390, 1395, 1396, 1401, 1402, 1403, 1407, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1437, 1438, 1439, 1440, 1441, 1442, 1443, 1444, 1445, 1446, 1447, 1448, 1449, 1450, 1451, 1452, 1453, 1455, 1456, 1457, 1458, 1459, 1461, 1462, 1466, 1470, 1474, 1475, 1479, 1481, 1482, 1483, 1484, 1485, 1486, 1487, 1488, 1489, 1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498, 1525, 1526, 1527, 1528, 1532, 1533, 1534, 1535, 1536, 1540, 1541, 1542, 1543, 1545, 1546, 1547, 1548, 1551, 1552, 1554, 1558, 1559, 1568, 1569, 1570, 1571, 1572, 1573, 1574, 1575, 1579, 1580, 1584, 1585, 1586, 1587, 1588, 1589, 1590, 1594, 1595, 1596, 1597, 1598, 1602, 1603, 1604, 1605, 1606, 1610, 1618, 1619, 1620, 1621, 1622, 1623, 1624, 1625, 1626, 1630, 1631, 1632, 1633, 1634, 1636, 1637, 1638, 1639, 1643, 1644, 1645, 1647, 1648, 1652, 1653, 1654, 1656, 1657, 1661, 1662, 1663, 1665, 1666, 1670, 1671, 1672, 1676, 1677, 1678, 1682, 1683, 1684, 1685, 1686, 1688, 1689, 1690, 1691, 1693, 1694, 1695, 1696, 1698, 1699, 1700, 1701, 1705, 1706, 1707, 1708, 1709, 1711, 1712, 1713, 1714, 1718, 1719, 1720, 1721, 1722, 1723, 1724, 1725, 1726, 1727, 1728, 1732, 1733, 1734, 1735, 1739, 1740, 1741, 1745, 1746, 1747, 1748, 1750, 1751, 1753, 1754, 1759, 1761, 1766, 1794, 1795, 1796, 1797, 1799, 1800, 1801, 1802, 1804, 1805, 1809, 1810, 1819, 1820, 1824, 1825, 1826, 1827, 1828, 1829, 1830, 1834, 1835, 1839, 1843, 1847, 1854, 1855, 1856, 1857, 1858, 1862, 1863, 1906, 1907, 1908, 1909, 1910, 1911, 1912, 1916, 1917, 1918, 1919, 1920, 1927, 1928, 1929, 1930, 1934, 1935, 1936, 1938, 1939, 1943, 1944, 1945, 1947, 1948, 1952, 1953, 1954, 1956, 1957, 1961, 1962, 1963, 1967, 1968, 1969, 1973, 1974, 1975, 1976, 1977, 1978, 1979, 1980, 1981, 1983, 1984, 1985, 1986, 1987, 1988, 1989, 1990, 1992, 1993, 1994, 1995, 1997, 1998, 1999, 2000, 2002, 2010, 2014, 2019, 2026, 2027, 2031, 2036, 2037, 2041, 2042, 2043, 2044, 2050, 2051, 2052, 2056, 2057, 2058, 2059, 2063, 2065, 2069, 2070, 2071, 2072, 2073, 2074, 2075, 2079, 2080, 2081, 2082, 2083, 2084, 2085, 2089, 2090, 2091, 2095, 2096, 2097, 2101, 2105, 2106, 2110, 2111, 2112, 2116, 2117, 2119, 2120, 2121, 2122, 2123, 2125, 2126, 2127, 2128, 2129, 2131, 2132, 2136, 2137, 2141, 2142, 2143, 2147, 2148, 2149, 2150, 2151, 2152, 2153, 2154, 2155, 2157, 2158, 2160, 2161, 2162, 2163, 2164, 2166, 2167, 2168, 2169, 2173, 2174, 2178, 2179, 2183, 2187, 2188, 2189, 2194, 2195, 2199, 2200, 2201, 2202, 2203, 2204, 2205, 2206, 2207, 2208, 2209, 2210, 2211, 2212, 2213, 2214, 2215, 2216, 2217, 2218, 2219, 2220, 2221, 2222, 2223, 2224, 2225, 2229, 2230, 2231, 2232, 2233, 2234, 2235, 2236, 2237, 2238, 2239, 2240, 2241, 2242, 2243, 2244, 2245, 2246, 2247, 2248, 2249, 2250, 2251, 2252, 2253, 2259, 2261, 2263, 2265, 2267, 2269, 2271, 2273, 2275, 2277, 2282, 2283, 2287, 2293, 2299, 2306, 2316, 2317, 2318, 2319, 2323, 2324, 2325, 2327, 2328, 2329, 2331, 2332, 2333, 2337, 2341, 2349, 2358, 2367, 2368, 2370, 2371, 2375, 2382, 2389, 2392, 2405, 2419, 2422, 2424, 2426, 2431, 2432, 2436, 2437, 2438, 2439, 2440, 2441, 2442, 2443, 2447, 2448, 2449, 2450, 2451, 2452, 2453, 2454, 2455, 2456, 2460, 2461, 2462, 2463, 2464, 2465, 2466, 2467, 2468, 2469, 2473, 2474, 2475, 2476, 2477, 2478, 2479, 2480, 2481, 2482, 2483, 2484, 2488, 2489, 2490, 2491, 2492, 2493, 2494, 2495, 2496, 2497, 2501, 2502, 2506, 2507, 2508, 2509, 2510, 2511, 2512, 2513, 2514, 2516, 2518, 2526, 2536, 2537, 2541, 2542, 2543, 2544, 2545, 2546, 2547, 2548, 2549, 2557, 2566, 2567, 2568, 2569, 2570, 2571, 2572, 2573, 2574, 2575, 2576, 2577, 2578, 2586, 2595, 2596, 2597, 2598, 2599, 2600, 2601, 2602, 2603, 2604, 2605, 2606, 2607, 2615, 2624, 2625, 2629, 2630, 2631, 2632, 2633, 2637, 2638, 2645, 2647, 2656, 2665, 2674, 2683, 2684, 2685, 2686, 2690, 2691, 2692, 2693, 2694, 2695, 2696, 2697, 2698, 2702, 2706, 2707, 2708, 2709, 2710, 2715, 2724, 2733, 2742, 2756, 2757, 2762, 2766, 2767, 2768, 2769, 2770, 2775, 2784, 2793, 2802, 2816, 2817, 2866, 2867, 2868, 2869, 2881, 2882, 2883, 2888, 2889, 2890, 2891, 2892, 2896, 2897, 2901, 2902, 2903, 2907, 2908, 2912, 2913, 2914, 2915, 2916, 2917, 2918, 2919, 2920, 2921, 2922, 2923, 2924, 2925, 2926, 2927, 2931, 2932, 2933, 2934, 2935, 2936, 2937, 2938, 2942, 2943, 2944, 2945, 2949, 2950, 2951, 2952, 2953, 2957, 2958, 2959, 2960, 2961, 2965, 2966, 2968, 2970, 2972, 2977, 2978, 2980, 2982, 2987, 2988, 2989, 2990, 2994, 2995, 2996, 2997, 3001, 3002, 3003, 3004, 3008, 3009, 3010, 3011, 3015, 3016, 3017, 3018, 3022, 3023, 3024, 3041, 3042, 3043, 3044, 3057, 3074, 3075, 3080, 3081, 3085, 3086, 3087, 3088, 3091, 3092, 3096, 3097, 3098, 3102, 3106, 3110, 3111, 3112, 3113, 3114, 3115, 3124, 3133, 3134, 3135, 3136, 3140, 3141, 3145, 3146, 3151, 3152, 3153, 3154, 3155, 3156, 3175, 3176, 3180, 3181, 3182, 3183, 3184, 3185, 3187, 3188, 3189, 3190, 3194, 3195, 3196, 3197, 3198, 3200, 3201, 3202, 3206, 3207, 3208, 3209, 3210, 3211, 3215, 3216, 3217, 3222, 3223, 3224, 3225, 3226, 3227, 3228, 3229, 3230, 3231, 3232, 3233, 3234, 3238, 3239, 3240, 3241, 3242, 3243, 3244, 3248, 3249, 3250, 3254, 3255, 3256, 3260, 3261, 3262, 3263, 3265, 3266, 3267, 3269, 3270, 3271, 3272, 3274, 3275, 3276, 3280, 3281, 3282, 3283, 3284, 3286, 3287, 3288, 3289, 3290, 3294, 3295, 3296, 3297, 3298, 3299, 3300, 3302, 3303, 3304, 3305, 3306, 3310, 3311, 3312, 3316, 3317, 3321, 3322, 3323, 3324, 3328, 3329, 3330, 3332, 3333, 3334, 3338, 3342, 3343, 3345, 3346, 3347, 3351, 3352, 3353, 3354, 3358, 3359, 3363, 3364, 3365, 3369, 3370, 3371, 3372, 3373, 3374, 3375, 3379, 3380, 3381, 3382, 3386, 3387, 3388, 3389, 3393, 3397, 3401, 3403, 3406, 3412, 3413, 3414, 3418, 3419, 3420, 3421, 3422, 3423, 3427, 3428, 3432, 3433, 3434, 3436, 3437, 3439, 3440, 3441, 3442, 3443, 3445, 3446, 3450, 3451, 3452, 3453, 3457, 3458, 3459, 3460, 3462, 3463, 3464, 3465, 3466, 3467, 3468, 3471, 3475, 3476, 3480, 3481, 3485, 3486, 3487, 3488, 3489, 3490, 3491, 3492, 3496, 3497, 3498, 3499, 3505, 3506, 3508, 3509, 3512, 3513, 3516, 3517, 3518, 3519, 3520, 3521, 3525, 3526, 3538, 3539, 3542, 3545, 3547, 3548, 3549, 3559, 3561, 3562, 3564, 3565, 3566, 3567, 3577, 3578, 3579, 3580, 3581, 3582, 3586, 3587, 3596, 3598, 3599, 3601, 3603, 3607, 3608, 3609, 3610, 3611, 3615, 3616, 3617, 3619, 3624, 3625, 3626, 3630, 3631, 3632, 3636, 3640, 3641, 3642, 3646, 3647, 3651, 3652, 3656, 3657, 3658, 3659, 3663, 3667, 3671, 3675
};
static const char * const yytname[] =
{
"$end", "error", "$undefined", "IDENTIFIER", "CONSTANT", "STRING_LITERAL", "SIZEOF", "PTR_OP", "INC_OP", "DEC_OP", "LEFT_OP", "RIGHT_OP", "LE_OP", "GE_OP", "EQ_OP", "NE_OP", "AND_OP", "OR_OP", "MUL_ASSIGN", "DIV_ASSIGN", "MOD_ASSIGN", "ADD_ASSIGN", "SUB_ASSIGN", "LEFT_ASSIGN", "RIGHT_ASSIGN", "AND_ASSIGN", "XOR_ASSIGN", "OR_ASSIGN", "TYPE_NAME", "TYPEDEF", "EXTERN", "STATIC", "AUTO", "REGISTER", "CHAR", "SHORT", "INT", "UINT", "INT64", "INT128", "LONG", "SIGNED", "UNSIGNED", "FLOAT", "DOUBLE", "CONST", "VOLATILE", "VOID", "VALIST", "STRUCT", "UNION", "ENUM", "ELLIPSIS", "CASE", "DEFAULT", "IF", "SWITCH", "WHILE", "DO", "FOR", "GOTO", "CONTINUE", "BREAK", "RETURN", "IFX", "ELSE", "CLASS", "THISCLASS", "CLASS_NAME", "PROPERTY", "SETPROP", "GETPROP", "NEWOP", "RENEW", "DELETE", "EXT_DECL", "EXT_STORAGE", "IMPORT", "DEFINE", "VIRTUAL", "ATTRIB", "PUBLIC", "PRIVATE", "TYPED_OBJECT", "ANY_OBJECT", "_INCREF", "EXTENSION", "ASM", "TYPEOF", "WATCH", "STOPWATCHING", "FIREWATCHERS", "WATCHABLE", "CLASS_DESIGNER", "CLASS_NO_EXPANSION", "CLASS_FIXED", "ISPROPSET", "CLASS_DEFAULT_PROPERTY", "PROPERTY_CATEGORY", "CLASS_DATA", "CLASS_PROPERTY", "SUBCLASS", "NAMESPACE", "NEW0OP", "RENEW0", "VAARG", "DBTABLE", "DBFIELD", "DBINDEX", "DATABASE_OPEN", "ALIGNOF", "ATTRIB_DEP", "__ATTRIB", "BOOL", "_BOOL", "_COMPLEX", "_IMAGINARY", "RESTRICT", "THREAD", "WIDE_STRING_LITERAL", "BUILTIN_OFFSETOF", "'*'", "'<'", "'>'", "'('", "')'", "'~'", "';'", "'='", "','", "'}'", "'{'", "'.'", "':'", "'$'", "'['", "']'", "'&'", "'+'", "'-'", "'!'", "'/'", "'%'", "'^'", "'|'", "'?'", "$accept", "guess_type", "type", "base_strict_type", "base_strict_type_name", "strict_type", "class_function_definition_start", "constructor_function_definition_start", "destructor_function_definition_start", "virtual_class_function_definition_start", "class_function_definition_start_error", "virtual_class_function_definition_start_error", "class_function_definition", "class_function_definition_error", "instance_class_function_definition_start", "instance_class_function_definition_start_error", "instance_class_function_definition", "instance_class_function_definition_error", "data_member_initialization", "data_member_initialization_error", "data_member_initialization_list", "data_member_initialization_list_error", "data_member_initialization_list_coloned", "members_initialization_list_coloned", "members_initialization_list", "members_initialization_list_error", "instantiation_named", "instantiation_named_error", "guess_instantiation_named", "guess_instantiation_named_error", "external_guess_instantiation_named", "instantiation_unnamed", "instantiation_unnamed_error", "instantiation_anon", "instantiation_anon_error", "default_property", "default_property_error", "default_property_list", "default_property_list_error", "property_start", "property_body", "property", "class_property_start", "class_property_body", "class_property", "watch_property_list", "property_watch", "property_watch_list", "self_watch_definition", "watch_definition", "stopwatching", "firewatchers", "struct_declaration", "struct_declaration_error", "struct_declaration_list", "struct_declaration_list_error", "template_datatype", "template_type_argument", "template_type_parameter", "template_identifier_argument", "template_identifier_parameter", "template_expression_argument", "template_expression_parameter", "template_parameter", "template_parameters_list", "template_argument", "template_arguments_list", "class_entry", "class_decl", "class", "class_head", "class_error", "identifier", "primary_expression", "i18n_string", "constant", "simple_primary_expression", "anon_instantiation_expression", "anon_instantiation_expression_error", "primary_expression_error", "postfix_expression", "argument_expression_list", "argument_expression_list_error", "common_unary_expression", "unary_expression", "unary_operator", "cast_expression", "multiplicative_expression", "additive_expression", "shift_expression", "relational_expression_smaller_than", "relational_expression", "equality_expression", "and_expression", "exclusive_or_expression", "inclusive_or_expression", "logical_and_expression", "logical_or_expression", "conditional_expression", "assignment_expression", "assignment_operator", "expression", "expression_anon_inst", "postfix_expression_error", "common_unary_expression_error", "unary_expression_error", "cast_expression_error", "multiplicative_expression_error", "additive_expression_error", "shift_expression_error", "relational_expression_error", "equality_expression_error", "and_expression_error", "exclusive_or_expression_error", "inclusive_or_expression_error", "logical_and_expression_error", "logical_or_expression_error", "conditional_expression_error", "assignment_expression_error", "expression_error", "expression_anon_inst_error", "constant_expression", "constant_expression_error", "storage_class_specifier", "external_storage_class_specifier", "enumerator", "enumerator_list", "enum_specifier", "enum_specifier_nocompound", "enum_specifier_compound", "enum_specifier_compound_error", "enum_decl", "enum_class", "enum_class_error", "class_specifier", "class_specifier_error", "ext_storage", "type_qualifier", "type_qualifier_list", "type_specifier", "strict_type_specifier", "struct_declarator", "struct_declarator_list", "struct_entry", "struct_or_union_specifier_compound", "struct_or_union_specifier_compound_error", "struct_or_union_specifier_nocompound", "struct_decl", "struct_head", "struct_class", "struct_class_error", "struct_or_union", "specifier_qualifier_list", "guess_specifier_qualifier_list", "declaration_specifiers", "guess_declaration_specifiers", "external_guess_declaration_specifiers", "external_guess_declaration_specifiers_error", "_inheritance_specifiers", "inheritance_specifiers", "property_specifiers", "renew_specifiers", "new_specifiers", "identifier_list_error", "identifier_list", "direct_declarator_nofunction_type_ok", "direct_declarator_nofunction", "direct_declarator_function_start", "direct_declarator_function", "direct_declarator_function_error", "direct_declarator", "direct_declarator_function_start_type_ok", "direct_declarator_function_type_ok", "direct_declarator_function_error_type_ok", "direct_declarator_type_ok", "ext_decl", "_attrib", "attribute_word", "attribute", "attribs_list", "attrib", "direct_abstract_declarator", "direct_abstract_declarator_noarray", "pointer", "abstract_declarator", "abstract_declarator_noarray", "declarator", "declarator_type_ok", "declarator_function", "declarator_function_error", "declarator_function_type_ok", "declarator_function_error_type_ok", "declarator_nofunction_type_ok", "initializer", "initializer_error", "initializer_condition", "initializer_condition_error", "initializer_list", "init_declarator", "init_declarator_error", "init_declarator_list", "init_declarator_list_error", "type_name", "guess_type_name", "parameter_declaration", "parameter_declaration_error", "parameter_list", "parameter_list_error", "parameter_type_list", "parameter_type_list_error", "statement", "statement_error", "asm_field", "asm_field_list", "asm_statement", "labeled_statement", "labeled_statement_error", "declaration_mode", "member_access", "declaration", "external_guess_declaration", "external_guess_declaration_error", "declaration_error", "declaration_list", "declaration_list_error", "statement_list", "statement_list_error", "compound_inside", "compound_inside_error", "compound_start", "compound_statement", "compound_statement_error", "expression_statement", "selection_statement", "selection_statement_error", "iteration_statement", "iteration_statement_error", "jump_statement", "jump_statement_error", "function_definition", "function_definition_error", "string_literal", "external_declaration", "external_declaration_error", "translation_unit_error", "translation_unit", "thefile", "dbtable_definition", "dbfield_entry", "dbindex_item", "dbindex_item_list", "dbindex_entry", "dbfield_definition_list", "database_open", "dbfield", "dbindex", "dbtable", 0
};
static const yytype_uint16 yyr1[] =
{
0, 146, 147, 147, 148, 148, 149, 150, 151, 151, 151, 152, 152, 153, 154, 155, 155, 156, 156, 157, 157, 158, 158, 158, 158, 158, 158, 158, 159, 159, 159, 159, 159, 160, 160, 161, 162, 163, 163, 163, 164, 164, 165, 165, 165, 166, 166, 166, 167, 167, 167, 167, 167, 167, 168, 168, 169, 169, 169, 169, 169, 169, 169, 169, 169, 170, 170, 170, 170, 171, 171, 171, 171, 171, 171, 171, 172, 172, 173, 173, 173, 173, 173, 174, 174, 175, 175, 175, 175, 175, 176, 176, 176, 177, 177, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 179, 179, 180, 180, 180, 180, 180, 181, 182, 182, 182, 183, 183, 183, 184, 184, 184, 184, 185, 185, 185, 185, 185, 186, 186, 186, 186, 186, 186, 187, 188, 188, 188, 188, 188, 189, 189, 189, 190, 191, 191, 192, 192, 193, 193, 194, 195, 195, 196, 196, 196, 196, 197, 197, 197, 197, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 200, 200, 200, 201, 201, 201, 201, 201, 202, 202, 203, 203, 204, 204, 204, 204, 204, 204, 204, 204, 205, 206, 206, 207, 208, 208, 209, 209, 209, 210, 210, 211, 211, 211, 211, 211, 211, 212, 212, 213, 214, 214, 214, 214, 214, 214, 214, 214, 215, 215, 215, 215, 215, 215, 216, 217, 217, 217, 217, 217, 217, 218, 219, 219, 220, 220, 220, 221, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 223, 224, 225, 225, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 227, 227, 227, 227, 228, 228, 228, 228, 228, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 230, 230, 231, 231, 231, 231, 231, 231, 231, 231, 232, 232, 233, 233, 233, 233, 233, 233, 233, 234, 234, 234, 234, 234, 235, 235, 235, 235, 235, 236, 237, 237, 237, 237, 237, 237, 237, 237, 237, 238, 238, 238, 238, 238, 238, 238, 238, 238, 239, 239, 239, 239, 239, 240, 240, 240, 240, 240, 241, 241, 241, 241, 241, 242, 242, 242, 243, 243, 243, 244, 244, 244, 244, 244, 244, 244, 244, 244, 244, 244, 244, 244, 244, 244, 244, 244, 245, 245, 245, 245, 245, 245, 245, 245, 245, 246, 246, 246, 246, 246, 246, 246, 246, 246, 246, 246, 247, 247, 247, 247, 248, 248, 248, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 251, 251, 252, 252, 253, 253, 253, 253, 253, 253, 253, 254, 254, 254, 254, 254, 255, 255, 255, 255, 255, 256, 256, 256, 256, 256, 256, 256, 256, 256, 257, 257, 257, 257, 257, 257, 257, 257, 257, 258, 258, 258, 258, 258, 259, 259, 259, 259, 259, 260, 260, 260, 260, 260, 261, 261, 261, 262, 262, 262, 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, 264, 264, 264, 264, 264, 265, 265, 265, 265, 265, 265, 265, 266, 266, 266, 266, 267, 268, 269, 269, 269, 269, 269, 269, 269, 270, 270, 270, 270, 270, 270, 270, 271, 271, 271, 272, 272, 272, 273, 274, 274, 275, 275, 275, 276, 276, 276, 276, 276, 276, 276, 276, 276, 276, 276, 276, 276, 276, 277, 277, 278, 278, 278, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 280, 280, 281, 281, 282, 283, 283, 283, 284, 284, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 288, 288, 289, 289, 289, 289, 290, 290, 290, 290, 291, 291, 291, 291, 291, 291, 291, 291, 291, 292, 293, 293, 294, 295, 295, 295, 295, 296, 296, 296, 296, 296, 296, 296, 296, 296, 297, 297, 298, 298, 298, 298, 298, 298, 298, 298, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 303, 303, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 305, 305, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 309, 309, 310, 310, 310, 310, 310, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 312, 312, 312, 312, 312, 312, 312, 312, 312, 313, 314, 314, 314, 314, 314, 315, 315, 315, 315, 316, 316, 317, 318, 318, 318, 318, 318, 319, 319, 319, 319, 320, 320, 321, 321, 321, 321, 322, 322, 322, 323, 323, 323, 323, 323, 324, 324, 325, 325, 325, 326, 326, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 328, 328, 328, 328, 328, 328, 328, 328, 329, 329, 329, 329, 330, 330, 330, 330, 330, 331, 331, 331, 331, 331, 332, 332, 332, 332, 332, 333, 333, 333, 333, 334, 334, 334, 334, 335, 335, 335, 335, 336, 336, 336, 336, 337, 337, 337, 337, 338, 338, 338, 338, 339, 339, 339, 340, 340, 340, 340, 340, 341, 341, 342, 342, 343, 343, 343, 343, 343, 343, 344, 344, 344, 345, 345, 346, 346, 346, 346, 346, 346, 346, 347, 347, 347, 347, 348, 348, 349, 349, 350, 350, 350, 350, 350, 350, 351, 351, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 353, 353, 353, 353, 353, 353, 353, 353, 354, 354, 354, 354, 354, 354, 355, 355, 355, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 357, 357, 357, 357, 357, 357, 357, 358, 358, 358, 359, 359, 359, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 361, 361, 361, 361, 361, 361, 361, 361, 361, 361, 362, 362, 362, 362, 362, 362, 362, 362, 362, 362, 362, 362, 363, 363, 363, 364, 364, 365, 365, 365, 365, 366, 366, 366, 366, 366, 366, 367, 368, 368, 368, 368, 368, 369, 369, 369, 369, 370, 370, 371, 371, 371, 372, 372, 372, 372, 372, 372, 372, 373, 373, 373, 373, 374, 374, 374, 374, 375, 376, 377, 377, 377, 378, 378, 378, 379, 379, 379, 379, 379, 379, 380, 380, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 383, 383, 383, 383, 383, 383, 383, 383, 384, 384, 384, 384, 385, 385, 385, 385, 385, 385, 386, 386, 386, 386, 386, 386, 387, 387, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 389, 389, 389, 389, 389, 389, 389, 390, 390, 390, 390, 390, 391, 391, 391, 391, 392, 392, 392, 393, 393, 393, 394, 395, 395, 395, 396, 396, 397, 397, 398, 398, 398, 398, 399, 400, 401, 402
};
static const yytype_uint8 yyr2[] =
{
0, 2, 2, 2, 1, 2, 1, 1, 1, 4, 4, 2, 1, 3, 4, 3, 2, 2, 1, 3, 2, 2, 2, 2, 2, 2, 2, 3, 2, 1, 2, 1, 2, 2, 2, 2, 2, 2, 1, 1, 3, 1, 3, 3, 1, 1, 3, 3, 1, 3, 3, 3, 3, 1, 2, 2, 1, 1, 2, 2, 2, 2, 2, 2, 1, 1, 1, 2, 2, 1, 2, 2, 2, 2, 1, 2, 2, 3, 4, 5, 4, 3, 4, 2, 3, 4, 5, 4, 3, 4, 5, 5, 4, 2, 3, 3, 3, 3, 2, 4, 3, 3, 2, 4, 3, 2, 3, 2, 3, 2, 1, 2, 3, 3, 3, 2, 1, 3, 3, 1, 3, 3, 2, 4, 5, 3, 4, 3, 1, 3, 3, 3, 2, 3, 2, 4, 5, 3, 4, 3, 1, 3, 3, 2, 1, 2, 2, 2, 1, 2, 5, 7, 9, 6, 8, 4, 6, 1, 2, 3, 4, 2, 2, 1, 1, 2, 2, 1, 1, 1, 1, 7, 1, 2, 4, 1, 1, 2, 3, 2, 2, 2, 3, 1, 2, 2, 2, 1, 1, 1, 2, 2, 2, 3, 3, 1, 1, 2, 2, 1, 2, 2, 2, 2, 1, 2, 1, 2, 2, 4, 4, 6, 2, 4, 4, 6, 1, 1, 3, 1, 4, 5, 1, 1, 1, 1, 3, 1, 1, 1, 3, 3, 3, 1, 3, 1, 2, 2, 3, 3, 5, 5, 6, 6, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 3, 1, 2, 4, 1, 1, 1, 4, 4, 5, 8, 2, 1, 1, 1, 2, 6, 6, 5, 5, 6, 6, 5, 5, 7, 7, 6, 6, 7, 7, 6, 6, 4, 5, 4, 6, 4, 1, 1, 1, 1, 3, 2, 1, 2, 2, 2, 1, 4, 4, 3, 4, 4, 3, 3, 2, 2, 4, 4, 3, 4, 3, 3, 2, 2, 1, 1, 3, 3, 1, 1, 3, 3, 2, 2, 2, 2, 2, 2, 4, 5, 5, 2, 4, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 1, 3, 3, 3, 3, 2, 1, 2, 3, 3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 1, 3, 3, 3, 3, 1, 3, 3, 3, 3, 1, 3, 3, 1, 3, 3, 1, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 1, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 2, 1, 3, 3, 1, 1, 2, 2, 3, 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, 2, 5, 6, 6, 2, 5, 1, 1, 1, 4, 1, 3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 1, 3, 3, 3, 3, 1, 2, 3, 3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 1, 3, 3, 3, 3, 1, 3, 3, 3, 3, 1, 3, 3, 1, 3, 3, 1, 5, 5, 5, 5, 4, 4, 4, 4, 5, 5, 5, 5, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 3, 3, 2, 2, 1, 3, 3, 3, 3, 1, 2, 3, 3, 2, 2, 2, 1, 2, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 1, 3, 2, 1, 2, 2, 2, 4, 4, 3, 3, 4, 5, 4, 6, 6, 4, 5, 4, 6, 6, 5, 5, 2, 2, 2, 5, 3, 5, 6, 5, 7, 7, 8, 8, 7, 7, 3, 3, 3, 4, 3, 5, 5, 6, 7, 6, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 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, 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, 2, 2, 3, 5, 2, 3, 5, 5, 5, 1, 3, 2, 2, 3, 3, 2, 3, 3, 4, 3, 3, 3, 3, 3, 3, 4, 4, 4, 1, 1, 4, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 4, 5, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 4, 5, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 4, 5, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 4, 5, 3, 3, 1, 3, 3, 3, 3, 1, 1, 1, 4, 4, 4, 3, 4, 4, 4, 3, 1, 3, 4, 3, 4, 4, 4, 4, 3, 2, 3, 3, 3, 3, 2, 2, 2, 3, 4, 1, 1, 2, 3, 3, 3, 3, 2, 2, 2, 3, 4, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 2, 3, 6, 5, 3, 4, 2, 3, 3, 3, 3, 4, 4, 4, 2, 3, 3, 3, 4, 4, 3, 4, 2, 3, 3, 3, 4, 4, 1, 2, 2, 3, 1, 1, 2, 2, 3, 1, 1, 2, 2, 3, 1, 2, 3, 2, 2, 1, 2, 3, 2, 1, 2, 3, 3, 1, 2, 3, 3, 1, 2, 3, 3, 1, 2, 3, 3, 1, 2, 3, 3, 1, 3, 4, 1, 4, 2, 5, 3, 1, 1, 1, 1, 1, 1, 3, 3, 2, 2, 1, 1, 3, 2, 3, 1, 3, 3, 3, 3, 3, 3, 1, 2, 3, 3, 1, 2, 1, 2, 2, 2, 2, 3, 1, 1, 3, 3, 1, 3, 4, 3, 4, 3, 3, 4, 3, 4, 1, 3, 3, 4, 3, 3, 3, 4, 1, 3, 3, 3, 3, 3, 1, 3, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 2, 2, 1, 1, 1, 1, 1, 2, 1, 1, 4, 7, 1, 3, 0, 6, 8, 10, 12, 8, 10, 10, 5, 7, 9, 11, 7, 9, 9, 3, 4, 4, 3, 3, 3, 4, 4, 3, 3, 3, 4, 4, 3, 2, 3, 2, 3, 4, 4, 3, 3, 1, 1, 1, 1, 1, 2, 3, 2, 2, 2, 3, 3, 2, 5, 6, 2, 2, 2, 2, 2, 2, 1, 2, 2, 3, 1, 2, 1, 2, 2, 1, 2, 2, 2, 2, 2, 2, 1, 1, 2, 2, 1, 1, 2, 2, 1, 2, 2, 1, 2, 1, 2, 2, 5, 5, 7, 7, 5, 5, 3, 2, 5, 4, 4, 7, 6, 6, 5, 7, 6, 4, 7, 9, 3, 4, 4, 5, 5, 6, 7, 6, 6, 5, 5, 4, 3, 2, 1, 2, 4, 3, 5, 4, 3, 2, 2, 2, 3, 3, 3, 3, 2, 2, 1, 1, 4, 3, 4, 3, 3, 2, 4, 3, 4, 3, 3, 2, 1, 2, 1, 1, 2, 1, 2, 3, 3, 1, 2, 2, 2, 3, 4, 4, 2, 2, 2, 2, 1, 2, 1, 2, 1, 2, 2, 1, 2, 1, 2, 2, 2, 2, 1, 2, 2, 3, 1, 1, 0, 6, 6, 5, 4, 1, 2, 2, 1, 3, 3, 4, 1, 1, 2, 2, 6, 6, 6, 4
};
static const yytype_uint16 yydefact[] =
{
1293, 257, 6, 592, 593, 594, 596, 597, 661, 662, 663, 664, 665, 666, 668, 671, 672, 669, 670, 655, 656, 660, 667, 758, 759, 605, 1138, 235, 680, 915, 916, 0, 0, 919, 1136, 1137, 681, 682, 673, 0, 0, 0, 0, 0, 920, 921, 684, 683, 685, 686, 598, 595, 958, 0, 1262, 806, 676, 8, 4, 0, 0, 0, 1256, 0, 1275, 882, 800, 0, 675, 0, 650, 652, 808, 810, 657, 802, 804, 741, 674, 0, 0, 651, 653, 0, 0, 0, 0, 0, 981, 654, 0, 917, 0, 0, 0, 1258, 1280, 1255, 1277, 1287, 1282, 0, 0, 0, 1273, 0, 1270, 1253, 0, 0, 1259, 0, 0, 0, 0, 1272, 1271, 0, 658, 959, 654, 960, 873, 872, 882, 914, 871, 901, 972, 0, 913, 977, 0, 0, 0, 0, 0, 0, 1148, 0, 237, 236, 0, 0, 245, 0, 244, 2, 3, 0, 5, 0, 607, 606, 0, 0, 627, 0, 0, 0, 0, 745, 0, 725, 724, 0, 1151, 594, 664, 665, 666, 1145, 807, 8, 1257, 1276, 882, 801, 809, 811, 803, 805, 981, 989, 654, 0, 0, 1020, 0, 0, 0, 1031, 0, 0, 873, 0, 0, 872, 0, 0, 891, 0, 0, 585, 586, 587, 589, 590, 1044, 591, 588, 896, 794, 866, 788, 0, 798, 0, 790, 792, 741, 796, 0, 0, 1043, 0, 0, 1047, 1057, 0, 0, 0, 0, 0, 0, 982, 0, 688, 689, 690, 691, 692, 693, 695, 698, 699, 696, 697, 687, 694, 711, 700, 0, 0, 705, 704, 706, 707, 1181, 703, 0, 0, 778, 702, 784, 780, 782, 786, 701, 0, 1157, 0, 0, 0, 0, 1246, 1252, 594, 0, 1269, 1264, 1278, 0, 1265, 1281, 1263, 1279, 1274, 1286, 1289, 0, 0, 0, 0, 0, 1284, 1285, 1288, 1283, 1, 0, 1260, 1261, 1254, 0, 0, 458, 263, 0, 0, 0, 0, 0, 0, 352, 353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 273, 0, 347, 0, 350, 0, 0, 346, 348, 349, 351, 0, 265, 0, 264, 306, 272, 271, 258, 457, 0, 344, 354, 0, 356, 363, 368, 374, 0, 383, 392, 397, 402, 407, 410, 413, 430, 0, 479, 478, 480, 482, 489, 494, 499, 508, 517, 522, 527, 532, 535, 538, 0, 260, 296, 297, 298, 299, 0, 0, 0, 0, 0, 659, 961, 0, 903, 0, 908, 0, 0, 0, 0, 0, 0, 0, 914, 973, 978, 0, 883, 975, 885, 980, 976, 673, 4, 229, 228, 227, 233, 0, 264, 354, 219, 480, 0, 206, 249, 0, 0, 248, 255, 0, 0, 1139, 1140, 0, 168, 0, 169, 170, 0, 0, 0, 0, 0, 172, 246, 0, 0, 0, 0, 29, 31, 163, 175, 188, 0, 187, 0, 116, 119, 0, 195, 128, 0, 164, 140, 0, 167, 183, 196, 199, 0, 0, 264, 0, 0, 176, 0, 985, 654, 0, 12, 18, 0, 813, 812, 820, 814, 0, 816, 818, 741, 825, 824, 250, 256, 247, 0, 0, 239, 238, 640, 599, 602, 639, 643, 629, 0, 0, 0, 222, 223, 224, 225, 0, 217, 0, 754, 747, 0, 0, 744, 751, 746, 0, 0, 757, 748, 0, 0, 727, 726, 0, 0, 0, 0, 0, 0, 982, 990, 0, 1022, 0, 0, 1242, 1248, 0, 1244, 1250, 1032, 1146, 0, 0, 0, 1147, 890, 0, 264, 583, 584, 0, 0, 0, 0, 607, 606, 608, 0, 728, 0, 0, 664, 0, 0, 1041, 795, 8, 882, 789, 799, 791, 793, 797, 914, 871, 654, 963, 962, 0, 0, 0, 895, 0, 0, 894, 0, 0, 0, 1073, 0, 892, 893, 983, 0, 984, 0, 0, 1155, 1143, 1154, 76, 1152, 691, 692, 693, 1141, 882, 779, 785, 781, 783, 787, 654, 0, 1156, 1153, 1144, 0, 1158, 0, 1245, 1251, 1159, 0, 0, 0, 0, 0, 0, 0, 0, 1240, 0, 0, 0, 700, 0, 0, 0, 157, 1077, 1078, 703, 0, 0, 0, 264, 0, 354, 0, 0, 480, 567, 572, 0, 1075, 1163, 1166, 1083, 1074, 1087, 0, 0, 0, 0, 1185, 1183, 1076, 1089, 0, 1090, 1081, 1088, 0, 1091, 1182, 0, 0, 1266, 882, 0, 0, 0, 1276, 0, 871, 989, 654, 0, 0, 0, 0, 1252, 1290, 0, 0, 413, 0, 0, 918, 0, 337, 472, 0, 333, 468, 334, 469, 0, 860, 850, 858, 852, 854, 856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 341, 476, 0, 274, 0, 0, 0, 764, 760, 762, 766, 1035, 0, 261, 0, 301, 302, 0, 325, 0, 324, 0, 460, 93, 0, 270, 459, 0, 314, 315, 0, 0, 0, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 439, 0, 0, 336, 471, 335, 470, 0, 0, 0, 0, 0, 0, 0, 375, 500, 0, 0, 373, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 677, 0, 322, 323, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 678, 679, 0, 0, 0, 1305, 1306, 0, 0, 0, 877, 0, 0, 0, 881, 0, 0, 0, 907, 906, 904, 905, 914, 973, 978, 884, 886, 1000, 10, 9, 0, 0, 0, 654, 962, 207, 0, 0, 264, 206, 0, 0, 832, 826, 828, 830, 0, 0, 0, 16, 20, 0, 185, 184, 186, 0, 0, 0, 0, 347, 0, 264, 0, 26, 0, 21, 28, 24, 0, 25, 23, 22, 30, 32, 190, 83, 191, 122, 162, 0, 0, 0, 0, 132, 0, 0, 134, 0, 0, 143, 161, 200, 197, 202, 201, 198, 203, 115, 0, 0, 0, 882, 722, 177, 997, 0, 993, 654, 0, 11, 17, 712, 898, 1043, 0, 0, 0, 986, 0, 0, 173, 165, 192, 181, 0, 180, 0, 166, 882, 179, 0, 607, 606, 821, 815, 817, 819, 0, 0, 0, 604, 642, 0, 0, 7, 212, 208, 743, 0, 0, 0, 0, 1019, 1026, 1027, 1028, 1029, 64, 53, 92, 39, 38, 57, 69, 45, 48, 0, 74, 56, 0, 0, 0, 1010, 1012, 0, 1009, 1011, 0, 41, 44, 914, 983, 974, 991, 979, 1000, 992, 0, 1001, 1004, 1021, 1023, 1241, 1247, 1243, 1249, 1025, 1033, 1030, 1034, 889, 887, 888, 1070, 1052, 1061, 612, 611, 0, 0, 458, 729, 0, 0, 458, 730, 0, 0, 0, 944, 882, 0, 0, 654, 962, 0, 0, 0, 936, 0, 0, 0, 0, 0, 1042, 965, 0, 0, 964, 1046, 1045, 0, 865, 1069, 868, 1055, 1063, 0, 864, 1068, 867, 1053, 1062, 0, 1072, 1066, 869, 1048, 1058, 0, 1067, 870, 1050, 1059, 922, 923, 926, 925, 924, 0, 927, 929, 0, 0, 0, 0, 77, 0, 1142, 1160, 0, 0, 0, 0, 0, 0, 1224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 264, 0, 1075, 1222, 1080, 1082, 0, 0, 1230, 1231, 1232, 0, 1238, 0, 0, 0, 0, 0, 0, 158, 144, 1086, 1085, 1084, 0, 0, 0, 573, 0, 1079, 0, 0, 0, 0, 453, 0, 0, 458, 0, 0, 0, 0, 1164, 1167, 1169, 0, 1165, 1168, 1170, 0, 1196, 1092, 1267, 1268, 237, 236, 0, 0, 0, 990, 0, 0, 1248, 0, 1250, 1251, 0, 0, 1149, 0, 0, 772, 264, 774, 768, 770, 776, 1037, 0, 0, 0, 0, 0, 0, 861, 851, 859, 853, 855, 857, 654, 968, 967, 0, 846, 836, 844, 838, 840, 842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 259, 0, 765, 761, 763, 767, 1036, 0, 0, 458, 0, 0, 0, 105, 0, 300, 458, 0, 0, 94, 458, 0, 0, 461, 313, 309, 329, 463, 464, 328, 465, 312, 0, 0, 435, 431, 303, 357, 483, 358, 484, 359, 485, 364, 490, 365, 491, 369, 495, 370, 496, 377, 502, 378, 503, 376, 501, 388, 513, 384, 509, 389, 514, 385, 510, 395, 520, 393, 518, 400, 525, 398, 523, 405, 530, 403, 528, 408, 533, 411, 536, 563, 0, 579, 0, 0, 0, 0, 437, 433, 462, 321, 318, 0, 466, 467, 320, 0, 0, 436, 432, 360, 486, 361, 487, 362, 488, 366, 492, 367, 493, 371, 497, 372, 498, 381, 506, 382, 507, 379, 504, 380, 505, 390, 515, 386, 511, 391, 516, 387, 512, 396, 521, 394, 519, 401, 526, 399, 524, 406, 531, 404, 529, 409, 534, 412, 537, 564, 0, 0, 0, 0, 438, 434, 0, 0, 1298, 1301, 0, 0, 1296, 1307, 1308, 0, 0, 876, 874, 875, 880, 878, 879, 234, 232, 231, 230, 264, 654, 965, 241, 0, 207, 240, 127, 0, 125, 833, 827, 829, 831, 0, 654, 0, 15, 19, 0, 182, 997, 654, 0, 139, 0, 137, 833, 0, 264, 654, 0, 27, 84, 117, 120, 118, 121, 129, 130, 131, 133, 141, 142, 114, 112, 113, 13, 714, 717, 0, 0, 910, 1043, 0, 0, 0, 998, 994, 0, 0, 713, 882, 899, 987, 988, 882, 193, 194, 178, 0, 0, 0, 0, 600, 601, 603, 0, 0, 632, 628, 0, 0, 0, 0, 0, 226, 218, 216, 0, 0, 0, 36, 37, 75, 54, 0, 55, 0, 63, 61, 72, 67, 73, 60, 90, 39, 70, 62, 91, 59, 71, 68, 0, 58, 0, 691, 33, 35, 34, 1013, 1014, 0, 620, 610, 0, 615, 609, 0, 458, 731, 0, 0, 0, 962, 0, 934, 945, 946, 939, 937, 938, 0, 966, 947, 0, 0, 940, 0, 0, 0, 1056, 1064, 1043, 1054, 1049, 1051, 1060, 933, 0, 0, 0, 930, 708, 709, 710, 458, 0, 0, 1117, 1127, 1122, 0, 0, 0, 1118, 1129, 1123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1221, 1209, 0, 1186, 264, 0, 0, 0, 1229, 1235, 1236, 1233, 1234, 0, 0, 0, 0, 145, 1114, 1124, 1119, 0, 159, 570, 568, 0, 0, 0, 451, 574, 571, 569, 452, 575, 0, 991, 1247, 1249, 1150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 773, 775, 769, 771, 777, 1038, 0, 293, 291, 0, 0, 952, 654, 0, 0, 0, 0, 0, 0, 970, 0, 969, 0, 0, 0, 847, 837, 845, 839, 841, 843, 0, 267, 0, 266, 295, 0, 0, 0, 0, 0, 0, 1312, 0, 0, 0, 0, 0, 355, 481, 262, 108, 106, 327, 326, 99, 103, 310, 0, 311, 307, 308, 580, 0, 0, 0, 0, 0, 0, 319, 316, 317, 0, 0, 0, 0, 1300, 1299, 1303, 0, 0, 0, 1295, 1294, 0, 962, 218, 0, 0, 123, 126, 0, 0, 0, 0, 0, 998, 0, 135, 138, 0, 14, 458, 0, 0, 723, 0, 882, 911, 999, 995, 996, 715, 718, 900, 174, 822, 0, 243, 242, 0, 631, 0, 213, 214, 204, 209, 210, 220, 0, 0, 51, 46, 49, 52, 47, 50, 37, 43, 40, 42, 0, 0, 1017, 1018, 619, 0, 614, 0, 965, 964, 935, 948, 949, 942, 941, 943, 1040, 1039, 0, 932, 931, 79, 1115, 1125, 1120, 0, 1116, 1126, 1121, 0, 0, 0, 0, 0, 1225, 1199, 0, 0, 1198, 1228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1206, 0, 1187, 1210, 1188, 1211, 0, 0, 0, 1099, 918, 1099, 0, 0, 155, 0, 0, 0, 160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 473, 292, 862, 0, 967, 0, 950, 953, 954, 277, 278, 0, 971, 955, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, 281, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 477, 0, 331, 330, 455, 581, 422, 555, 414, 539, 426, 559, 418, 547, 456, 582, 423, 556, 415, 540, 427, 560, 419, 548, 424, 557, 416, 541, 428, 561, 420, 549, 425, 558, 417, 542, 429, 562, 421, 550, 1302, 1304, 1297, 834, 0, 124, 150, 999, 0, 136, 86, 912, 0, 0, 823, 0, 0, 0, 0, 0, 0, 205, 0, 221, 0, 0, 1015, 1016, 1005, 0, 0, 0, 0, 928, 1189, 1190, 1193, 1194, 1197, 1227, 0, 0, 0, 0, 0, 0, 0, 1203, 1212, 0, 0, 0, 0, 1097, 0, 1094, 1107, 0, 1099, 0, 1099, 0, 0, 0, 0, 475, 474, 969, 951, 863, 956, 957, 275, 276, 848, 285, 286, 0, 0, 0, 0, 279, 280, 289, 290, 0, 0, 294, 1310, 1311, 1309, 343, 835, 0, 716, 719, 721, 720, 0, 0, 215, 211, 0, 1002, 1007, 0, 0, 0, 0, 0, 0, 0, 1217, 1201, 0, 0, 1202, 1214, 0, 1205, 1216, 0, 0, 0, 1099, 0, 1099, 0, 1099, 0, 1100, 0, 0, 0, 148, 0, 153, 0, 156, 0, 849, 283, 284, 0, 287, 288, 171, 1003, 1191, 1192, 0, 0, 1200, 1207, 0, 1204, 1215, 0, 1111, 1098, 0, 0, 0, 1108, 0, 0, 1099, 1099, 0, 1099, 147, 146, 151, 149, 0, 0, 355, 481, 269, 0, 0, 0, 1095, 0, 0, 1099, 1104, 0, 0, 1101, 0, 0, 154, 1208, 0, 1112, 1113, 1109, 0, 0, 0, 0, 1099, 152, 0, 0, 1105, 1106, 1102, 0, 1096, 1110, 0, 1103
};
static const yytype_int16 yydefgoto[] =
{
-1, 212, 56, 57, 981, 337, 445, 446, 447, 448, 449, 450, 451, 452, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 260, 261, 453, 454, 59, 338, 339, 752, 781, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 2100, 2101, 2102, 467, 652, 653, 654, 468, 469, 470, 471, 1794, 413, 509, 414, 510, 415, 511, 512, 873, 416, 417, 60, 61, 62, 63, 64, 340, 341, 342, 343, 344, 1008, 1009, 345, 346, 755, 1276, 347, 657, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 740, 835, 659, 1333, 364, 365, 660, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 661, 662, 1134, 1335, 559, 560, 214, 66, 502, 503, 215, 68, 216, 217, 69, 70, 71, 72, 73, 74, 218, 119, 219, 266, 938, 939, 220, 221, 222, 78, 79, 80, 81, 82, 223, 747, 1210, 269, 475, 84, 85, 492, 493, 883, 1233, 724, 1057, 1058, 125, 86, 476, 88, 477, 128, 129, 130, 942, 131, 120, 90, 1106, 1107, 1108, 91, 585, 1224, 479, 587, 1226, 134, 187, 480, 481, 189, 946, 136, 1026, 1544, 1014, 1015, 1545, 190, 191, 192, 193, 748, 1211, 227, 228, 229, 230, 231, 232, 665, 666, 2020, 2021, 667, 668, 669, 94, 482, 270, 95, 96, 271, 272, 273, 672, 673, 674, 675, 274, 676, 904, 1628, 1137, 679, 680, 681, 1138, 683, 97, 98, 379, 99, 100, 101, 102, 103, 104, 841, 1405, 1406, 842, 843, 380, 381, 382, 383
};
static const int yypact[] =
{
38766, -2034, -2034, -2034, -2034, 319, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, 887, 344, -2034, -2034, -2034, -2034, -2034, -2034, 78, 244, 260, 389, 396, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, 2702, 2912, -2034, -2034, -2034, 17, -2034, 371, 389, -11, -2034, 920, 408, 1047, -2034, 282, -2034, 332, -2034, 418, -2034, -2034, -2034, -2034, -2034, 839, -2034, 1010, 444, -2034, 489, 930, 38363, 2850, -17, 39066, -2034, 518, 527, -2034, 1204, 41733, 36912, -2034, -2034, -2034, -2034, -2034, -2034, 38870, 37954, 678, -2034, 344, -2034, -2034, 396, 396, 696, 591, 396, 29560, 389, -2034, -2034, 532, -2034, 2702, -2034, -2034, -2034, 610, -2034, -12, 810, -2034, -2034, 39165, -2034, -2034, 2912, 2746, 2357, 2539, 2016, 24201, -2034, 635, 798, 619, 30655, 41352, -2034, 30783, -2034, -2034, -2034, 389, -2034, 1184, 1066, 1086, 133, 41352, -2034, 41079, 30911, 41352, 31039, -2034, 31167, -2034, -2034, 389, -2034, -2034, 480, 647, 654, -2034, -2034, 952, -2034, 408, 577, -2034, -2034, -2034, -2034, -2034, 1256, 1423, 518, 2746, 1640, 2016, 41733, 41733, 573, -2034, 1163, 668, 671, 647, 654, 821, 518, 1197, -2034, 28140, 683, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, 825, -2034, 335, -2034, 717, -2034, -2034, 754, -2034, 778, 2014, 36000, 401, 505, -2034, -2034, 539, 624, 815, 828, 164, 857, -2034, 164, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, 873, 876, -2034, -2034, -2034, -2034, -2034, -2034, 85, 95, -2034, -2034, -2034, -2034, -2034, -2034, -2034, 38565, -2034, 17872, 8187, 41940, 18013, -2034, 833, 929, 985, -2034, -2034, 408, 38464, -2034, -2034, -2034, -2034, -2034, -2034, -2034, 418, 489, 39660, 41733, 39951, -2034, -2034, -2034, -2034, -2034, 902, 696, 696, -2034, 29560, 375, -2034, -2034, 29616, 29702, 29702, 909, 41534, 29560, -2034, -2034, 915, 960, 41534, 29560, 982, 990, 993, 1002, 1009, 29758, -2034, 1035, -2034, 12448, -2034, 396, 25738, -2034, -2034, -2034, -2034, 1046, -2034, 107, 1095, -2034, -2034, 344, -2034, -2034, 13083, -2034, 2029, 28196, -2034, 827, 685, 1198, 29560, 780, 1221, 1106, 1130, 1168, 1265, 38, 2029, 1228, 599, -2034, 2029, -2034, 922, 1112, 1250, 1166, 1435, 1258, 1266, 1212, 1349, 136, 2029, 696, -2034, -2034, -2034, -2034, 1297, 186, 41170, 1298, 1304, -2034, -2034, 28282, -2034, 28338, -2034, 630, 655, 1319, 1348, 2746, 2600, 2684, -12, -2034, -2034, 737, -2034, -2034, -2034, -2034, -2034, 915, 1046, -2034, -2034, -2034, -2034, 875, 1337, -2034, 1198, -2034, 1250, 36116, -2034, 24325, 41079, -2034, 367, 40806, 40048, -2034, -2034, 1363, -2034, 389, -2034, -2034, 344, 40242, 39854, 6126, 41443, -2034, -2034, 1307, 1364, 1364, 967, -2034, 1388, -2034, -2034, -2034, 114, 794, 129, -2034, -2034, 30007, 1395, -2034, 1225, -2034, -2034, 829, -2034, -2034, -2034, 1400, 30143, 30271, 267, 198, 599, 37124, 39264, -2034, 518, 1204, -2034, -2034, 37018, -2034, -2034, 1416, -2034, 389, -2034, -2034, -2034, 1417, 41534, -2034, 367, -2034, 30399, 30527, 1420, 1450, -2034, 1460, -2034, 1464, -2034, -2034, 3332, 1476, 886, -2034, -2034, -2034, -2034, 899, 594, 36116, 653, -2034, 31295, 31423, -2034, 653, -2034, 31551, 31679, 653, -2034, 31807, 31935, -2034, -2034, 2912, 2912, 2912, 2912, 22381, 737, 1256, 1423, 737, -2034, 28424, 8187, -2034, 833, 8187, -2034, 833, -2034, -2034, 2912, 2912, 737, -2034, -2034, 1459, 167, -2034, -2034, 1475, 1478, 40897, 1370, 1488, 1494, -2034, 32063, -2034, 32191, 450, -2034, 35765, 28480, 2912, -2034, 1219, 825, -2034, -2034, -2034, -2034, -2034, -12, 1491, 518, 181, 110, 199, 1798, 1499, -2034, 40533, 1501, -2034, 40624, 1502, 40715, 1503, 40988, -2034, -2034, -2034, 1305, -2034, 29560, 389, -2034, -2034, 1506, -2034, -2034, 480, 647, 654, -2034, 1498, -2034, -2034, -2034, -2034, -2034, 518, 1263, 668, -2034, -2034, 1510, -2034, 18154, -2034, 833, -2034, 215, 28566, 1507, 1518, 1519, 80, 18295, 1525, 344, 1524, 1529, 18436, 915, 2209, 1526, 1528, 344, -2034, -2034, 1046, 1530, 1540, 1542, 1324, 16312, 2029, 16603, 25794, 2029, 2029, -2034, 16744, 38666, -2034, -2034, -2034, -2034, -2034, 18577, 18718, 18859, 19000, -2034, -2034, -2034, 833, 19141, -2034, -2034, -2034, 19282, -2034, -2034, 396, 396, 696, 554, 389, 1344, 1548, -2034, -12, -17, -2034, 518, 2746, 41733, 41733, 8187, -2034, -2034, 39757, 29560, 158, 1544, 304, -2034, 24449, -2034, -2034, 28622, -2034, -2034, -2034, -2034, 41534, 1563, -2034, -2034, -2034, -2034, -2034, 36348, 41534, 24589, 344, 36464, 41534, 29560, 396, 396, 396, 29560, 12448, -2034, -2034, 10719, -2034, 13246, 13392, 13538, -2034, -2034, -2034, -2034, 36798, 1521, 159, 22521, -2034, -2034, 134, -2034, 585, -2034, 22661, 1556, -2034, 22801, -2034, -2034, 1485, -2034, -2034, 25880, 1508, 29560, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, 28196, 165, -2034, -2034, -2034, -2034, 29560, 29560, 29560, 29560, 29560, 29560, 29560, 1198, 1250, 29560, 29560, -2034, 29560, 28196, 28196, 28196, 28196, 28196, 29560, 29560, 13684, 28196, -2034, 1515, -2034, -2034, 25936, 1522, 29560, 28196, 29560, 29560, 29560, 29560, 29560, 29560, 29560, 29560, 29560, 29560, 29560, 28196, 28196, 28196, 28196, 28196, 29560, 29560, 13830, 28196, -2034, -2034, 730, 825, 41443, -2034, -2034, 38054, 41170, 41170, -2034, 1551, 1553, 1555, -2034, 1566, 1567, 1568, -2034, -2034, -2034, -2034, -12, -2034, -2034, -2034, -2034, 1557, -2034, -2034, 24201, 24201, 35884, 518, 633, -2034, 324, 962, 1341, 36116, 995, 1575, 1586, -2034, -2034, -2034, 1417, 8921, 40145, -2034, -2034, 344, -2034, -2034, -2034, 37230, 1578, 344, 36232, 1987, 24713, 1826, 40339, -2034, 1585, -2034, 833, -2034, 833, -2034, -2034, -2034, 833, -2034, 1588, -2034, 799, -2034, -2034, 5167, 5167, 1364, 1364, -2034, 1364, 106, -2034, 1364, 1364, -2034, -2034, 811, -2034, 1400, 811, -2034, 1400, 862, 28708, 2513, 29560, 639, -2034, 1590, -12, 39363, -2034, 518, 2746, -2034, -2034, 1042, 683, 36000, 29871, 237, 164, -2034, 164, 2912, -2034, -2034, -2034, -2034, 189, -2034, 229, -2034, 267, 37124, 24201, -2034, -2034, 1599, -2034, -2034, -2034, 41079, 41079, 29560, 344, -2034, 32319, 149, -2034, 1125, 1135, -2034, 41079, 344, 802, 344, 1865, -2034, -2034, -2034, -2034, -2034, -2034, -2034, 1364, -2034, -2034, -2034, -2034, -2034, 37336, 1404, -2034, 22941, 41837, 23081, -2034, -2034, 12738, -2034, -2034, 40436, -2034, -2034, -12, 1256, -2034, 1423, -2034, -12, -2034, 28424, -2034, -2034, -2034, -2034, -2034, 833, -2034, 833, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, 1464, 183, 216, 1593, -2034, 32447, 32575, 1596, -2034, 32703, 32831, 32959, -2034, 615, 436, 449, 1523, 1722, 1603, 1604, 1605, -2034, 1595, 1597, 1600, 518, 737, 2016, 110, 39462, 28764, 181, -2034, -2034, 41261, -2034, -2034, 825, -2034, -2034, 41261, -2034, -2034, 825, -2034, -2034, 41261, -2034, -2034, 825, -2034, -2034, 41261, -2034, 825, -2034, -2034, -2034, -2034, -2034, -2034, -2034, 1607, 1611, -2034, 1137, 1613, 1614, 223, -2034, 23221, -2034, -2034, 19423, 1608, 1609, 19564, 29560, 29560, -2034, 28850, 28906, 1610, 1616, 1621, 24802, 1622, 344, 26022, 2212, 1408, 26078, -2034, 1691, -2034, -2034, 26164, 1630, -2034, -2034, -2034, 1633, 1634, 26220, 16885, 396, 1642, 29560, 29560, 344, -2034, -2034, -2034, -2034, 22101, 305, 28196, -2034, 1220, -2034, 29560, 13976, 14122, 28196, -2034, 29560, 14268, 1510, 19705, 19846, 19987, 20128, -2034, -2034, -2034, 20269, -2034, -2034, -2034, 20410, -2034, -2034, 696, 696, 1648, 1649, 35519, 35646, 737, -2034, 737, 8187, -2034, 8187, -2034, -2034, 1637, 28196, -2034, 28196, 736, -2034, 267, -2034, -2034, -2034, -2034, 36798, 1647, 1650, 41625, 24201, 38967, 29560, 1652, -2034, -2034, -2034, -2034, -2034, 518, 1654, 1655, 1645, 1659, -2034, -2034, -2034, -2034, -2034, 36580, 26306, 1658, 1661, 1662, 29560, 1665, 36696, 1660, 382, 355, 366, 1664, 1669, 1675, -2034, 344, -2034, -2034, -2034, -2034, -2034, 29560, 396, 234, 37439, 23361, 1676, -2034, 28196, -2034, 242, 37542, 23501, -2034, 265, 37645, 23641, -2034, -2034, -2034, -2034, 1213, 1685, -2034, -2034, -2034, 26392, 4399, -2034, -2034, 1676, -2034, -2034, -2034, -2034, -2034, -2034, 827, 922, 827, 922, 685, 1112, 685, 1112, 1198, 1250, 1198, 1250, 1198, 1250, -2034, -2034, 780, 1166, -2034, -2034, 780, 1166, -2034, -2034, 1221, 1435, -2034, -2034, 1106, 1258, -2034, -2034, 1130, 1266, 1168, 1212, 1265, 1349, -2034, 94, -2034, 26451, 1651, 5970, 1681, -2034, -2034, -2034, -2034, -2034, 1237, -2034, -2034, -2034, 26537, 6518, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, 827, 922, 827, 922, 685, 1112, 685, 1112, 1198, 1250, 1198, 1250, 1198, 1250, 1198, 1250, -2034, -2034, 780, 1166, -2034, -2034, 780, 1166, -2034, -2034, 1221, 1435, -2034, -2034, 1106, 1258, -2034, -2034, 1130, 1266, 1168, 1212, 1265, 1349, -2034, 26596, 1682, 6876, 1684, -2034, -2034, 344, 344, -2034, -2034, 567, 1099, -2034, -2034, -2034, 38157, 38260, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, 1576, 2265, 633, -2034, 24201, 344, -2034, -2034, 24201, -2034, 880, -2034, -2034, -2034, 458, 518, 2746, -2034, -2034, 258, 1590, 1557, 518, 2746, -2034, 1695, -2034, 905, 464, 1493, 2912, 1697, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, 2707, -2034, -2034, -2034, -2034, -2034, 23781, 1867, 683, 36000, 21961, 562, 737, -12, -2034, 737, 29560, -2034, 910, -2034, -2034, -2034, 1699, 1588, 1556, 1590, 1021, 24201, 1033, 1041, -2034, -2034, -2034, 33087, 33215, 1698, -2034, 4169, 41443, 41443, 41443, 41443, -2034, -2034, -2034, 29560, 1700, 28992, -2034, 833, -2034, -2034, 29048, -2034, 29134, -2034, -2034, -2034, 1429, 1404, -2034, -2034, 1364, -2034, -2034, -2034, -2034, -2034, 1429, 1404, -2034, 29190, 9625, -2034, -2034, -2034, -2034, -2034, 20551, -2034, -2034, 102, -2034, -2034, 120, 1701, -2034, 33343, 33471, 518, 1722, 1705, -2034, -2034, -2034, -2034, -2034, -2034, 737, 181, -2034, 1707, 1711, -2034, 1702, 1703, 1704, -2034, -2034, 36000, -2034, -2034, -2034, -2034, -2034, 29560, 1712, 1302, -2034, -2034, -2034, -2034, 276, 37748, 23921, -2034, -2034, -2034, 20692, 22101, 22101, -2034, -2034, -2034, 20833, 26682, 17026, 26768, 26854, 24942, 26940, 17167, 22241, 1715, 1716, 22241, 29560, 29276, 1793, 27026, 1634, 7280, 396, 22241, 1729, 12885, 24802, -2034, 1431, 27082, 9917, 27168, -2034, -2034, -2034, -2034, -2034, 143, 396, 1730, 1257, -2034, -2034, -2034, -2034, 20974, -2034, -2034, -2034, 1734, 1735, 344, -2034, -2034, -2034, -2034, -2034, -2034, 41079, -2034, -2034, -2034, -2034, 27224, 1728, 25222, 1731, 27310, 1732, 25308, 1733, 1738, 1742, -2034, -2034, -2034, -2034, -2034, -2034, 14414, -2034, -2034, 1744, 1057, -2034, 2008, 1750, 1751, 1754, 1745, 1746, 24201, 1655, 39561, 1654, 29560, 24201, 29560, 1762, -2034, -2034, -2034, -2034, -2034, 1752, -2034, 29332, -2034, -2034, 1753, 1755, 29560, 29560, 1759, 10719, -2034, 344, 344, 29560, 14560, 344, -2034, -2034, 696, -2034, -2034, -2034, -2034, -2034, -2034, -2034, 14706, -2034, -2034, -2034, -2034, 28196, 14852, 14998, 28196, 15144, 15290, -2034, -2034, -2034, 15436, 15582, 15728, 15874, -2034, -2034, -2034, 730, 1761, 463, -2034, -2034, 518, 633, 1888, 1115, 24201, -2034, -2034, 1774, 737, 737, 1364, 737, 1557, 1780, -2034, -2034, 1784, -2034, 285, 37851, 24061, -2034, 518, 954, -2034, -12, -2034, -2034, 1778, 1783, -2034, -2034, -2034, 1147, -2034, -2034, 33599, 1790, 33727, -2034, 1802, 36116, -2034, 1803, -2034, 29560, 28424, 2262, -2034, -2034, 2262, -2034, -2034, -2034, 2262, -2034, -2034, 21115, 21256, -2034, -2034, -2034, 33855, -2034, 33983, 110, 181, -2034, -2034, -2034, -2034, -2034, -2034, -2034, 2016, 27396, -2034, -2034, -2034, -2034, -2034, -2034, 21397, -2034, -2034, -2034, 21538, 24802, 7016, 24802, 7016, 16457, -2034, 25082, 17308, -2034, -2034, 22241, 22241, 27482, 24802, 27568, 11097, 1794, 12215, 27654, 174, 21679, -2034, 29560, -2034, 16457, -2034, 12885, 24802, 25394, 29418, 68, 1799, 68, 192, 1801, -2034, 344, 29560, 29560, 344, 28196, 28196, 28196, 28196, 28196, 28196, 28196, 28196, 16020, 16166, -2034, -2034, -2034, 518, 1655, 1796, -2034, -2034, -2034, -2034, -2034, 1177, 1654, -2034, 1808, 1809, 1800, 1810, 1178, 1814, 1815, 24201, 29560, 12448, -2034, -2034, -2034, 1817, 1823, 1824, 1825, 29560, 1819, 1837, 1838, 1839, -2034, 1841, -2034, -2034, -2034, -2034, -2034, -2034, -2034, 304, -2034, -2034, -2034, 304, -2034, -2034, -2034, -2034, -2034, 304, -2034, -2034, -2034, 304, -2034, -2034, -2034, 304, -2034, -2034, -2034, 304, -2034, -2034, -2034, 304, -2034, -2034, -2034, 304, -2034, -2034, -2034, -2034, 1190, -2034, -2034, 1557, 28196, -2034, -2034, -2034, 29560, 29560, -2034, 34111, 34239, 34367, 34495, 34623, 41443, -2034, 41443, -2034, 25480, 21820, -2034, -2034, -2034, 34751, 34879, 35007, 35135, -2034, 1874, 1905, -2034, -2034, -2034, -2034, 24802, 29560, 29474, 1799, 17449, 17590, 25566, -2034, 16457, 25082, 27710, 17731, 344, -2034, 937, 606, -2034, 206, 68, 1844, 68, 299, 581, 1849, 1264, -2034, -2034, 1654, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, -2034, 1222, 1845, 1858, 1850, -2034, -2034, -2034, -2034, 1866, 1868, -2034, -2034, -2034, -2034, -2034, -2034, 1853, -2034, -2034, -2034, -2034, 35263, 35391, -2034, -2034, 27796, -2034, -2034, 24802, 24802, 27882, 25652, 24802, 27968, 11097, 1876, -2034, 24802, 29560, -2034, -2034, 25082, -2034, -2034, 1875, 1883, 68, 68, 29560, 68, 1885, 68, 976, -2034, 211, 1364, 561, -2034, 277, -2034, 1884, -2034, 344, -2034, -2034, -2034, 28992, -2034, -2034, -2034, -2034, -2034, -2034, 1876, 24802, -2034, -2034, 28054, -2034, -2034, 396, -2034, -2034, 1276, 1889, 1279, -2034, 1063, 1898, 68, 68, 1899, 68, -2034, -2034, -2034, -2034, 299, 607, -2034, -2034, -2034, 24802, 648, 1900, -2034, 1903, 1907, 68, -2034, 1285, 1296, -2034, 1073, 429, -2034, -2034, 29560, -2034, -2034, -2034, 1318, 1908, 1909, 1912, 68, -2034, 1913, 1914, -2034, -2034, -2034, 1342, -2034, -2034, 1930, -2034
};
static const yytype_int16 yypgoto[] =
{
-2034, 2396, 64, 9927, -2034, 2037, -2034, -2034, -2034, -2034, -2034, -2034, 1558, 1579, -998, -2034, -970, -749, 62, 65, -925, -901, -797, -2034, -731, -694, -2034, -2034, 1582, 1587, -2034, 1401, 3070, -2034, -222, 500, 575, -2034, -2034, -2034, -2034, 1589, -2034, -2034, -2034, -645, -2033, -83, -2034, -2034, -2034, -2034, 1820, 2003, -122, 11, 552, -826, -2034, -845, -2034, -860, -2034, 1091, -143, 1211, -877, -8, 1788, 15, 1795, -40, 0, -2034, 1149, -2034, -2034, 4986, 4663, -2034, 5940, -640, 1270, -2034, 3960, -2034, -328, 452, 692, 574, -2034, -13, -710, -453, -450, -120, -85, 477, 8670, 5187, -174, 8829, -766, 759, -2034, 4795, -275, 747, 753, 1380, 193, -47, 32, 34, -15, 43, 918, 3107, -56, 7473, -755, 1911, 264, 10823, -71, 1117, -129, 2980, 11098, 8509, -2034, -2034, -2034, -74, -20, -9, -2034, 7152, -2034, 320, -125, 631, -258, 3671, 9117, -2034, 11465, -2034, -2034, -2034, -53, 3758, -2034, -2034, 1143, 7030, -1, -2034, -2034, 1277, 1667, 1382, 1804, -86, -82, 5745, 10386, 3393, 4790, -407, -124, -464, 942, -856, -109, 3181, -2034, -2034, -1059, -2034, 3340, -406, -1215, 7619, -201, -711, 714, 200, 1082, 1683, -247, -597, -460, -990, -537, -918, -914, 316, 1150, 1027, -14, 1848, -720, -335, 538, -400, -448, -2034, -90, -77, 7278, -294, 33, -773, -2034, -2034, -2034, 2033, -2034, 2028, 2042, -48, 2627, -111, 1863, 919, 921, -2034, -2034, -2034, -91, 849, -1558, -262, -2034, -2034, -2034, -26, -2034, 2046, -43, 19, 2045, 1500, -2034, -2034, -2034, 2050, -784, 407, -2034, -753, 773, -2034, -2034, -2034, -2034
};
static const yytype_int16 yytable[] =
{
65, 225, 275, 1152, 1027, 226, 1235, 1422, 1529, 403, 1691, 941, 678, 177, 513, 947, 1468, 1239, 489, 1258, 1469, 784, 1421, 496, 404, 506, 1265, 290, 951, 1269, 489, 109, 111, 1543, 489, 1523, 518, 1533, 523, 397, 527, 1420, 116, 395, 175, 699, 284, 396, 291, 1585, 110, 286, 398, 124, 281, 805, 1259, 149, 1859, 1409, 141, 403, 117, 1266, 178, 150, 1270, 153, 1397, 2140, 1870, 199, 953, 107, 785, 179, 404, 542, 545, 1399, 1525, 1122, 1535, 164, 176, 124, 606, 213, 1481, 1493, 1410, 1315, 124, 282, 65, 1732, 608, 543, 546, 174, 292, 65, 65, 1815, 1526, 300, 1536, 200, 758, 280, 753, 107, 392, 1, 385, 910, 289, 388, 201, 1381, 142, 1817, 143, 393, 139, 2140, 1275, 301, 302, 213, 912, 305, 124, 124, 504, 1260, 1, 418, 2, 137, 1510, 150, 472, 485, 619, 472, 1871, 122, 303, 499, 1502, 501, 1, 833, 501, 485, 497, 514, 472, 485, 472, 1041, 472, 670, 303, 530, 1284, 1, 149, 519, 1, 524, 1341, 528, 780, 805, 150, 1871, 384, 303, 1074, 629, 700, 806, 1546, 124, 1, 722, 807, 1, 1490, 1082, 815, 722, 1088, 2025, 1094, 303, 1099, 933, 1075, 556, 112, 2019, 1123, 763, 764, 765, 1527, 2093, 1537, 177, 607, 150, 2134, 564, 624, 1549, 290, 1, 290, 177, 871, 164, 576, 609, 1, -454, 945, 1816, 1491, 976, -618, 124, 571, -109, 124, 759, 595, 291, 331, 291, 1442, -100, 911, 572, 284, 1818, 682, 976, -613, 286, 692, 135, 281, 622, 1524, 1530, 1534, 759, 1529, 1, 178, 505, 1261, 555, -104, 1529, 1872, 615, 1, 1529, 178, 179, 655, 859, 1873, -82, 686, 1503, 1, 834, 688, 876, 689, 1, -89, 1441, 53, 1533, 860, 1256, 65, 703, 65, 1261, 1533, 687, 760, 2010, 1533, 2009, 1, 1200, 881, 1072, 1278, 1873, 1, 702, 2, 837, 718, 1547, 987, 881, 1073, 2026, 718, 911, 76, 833, 766, -1040, -1040, 2027, 934, 1, -1040, 556, 767, 2094, 401, 768, 1535, 2090, 2135, 1680, 1, 2095, 2090, 1535, 625, 761, 2136, 1535, 1550, 1, 1588, 1319, 749, 2099, 980, 1323, 901, 903, 905, 907, 1536, 759, 303, 1486, -1065, 2, -109, 1536, 596, 972, 113, 1536, 1061, 303, -100, 2099, -458, -458, -458, 1385, 1176, 1180, 303, 1389, 1590, 1764, 114, 150, 839, 303, 147, 148, 950, 556, 1, 556, 226, -104, 1643, 105, 760, 124, 1246, 107, 589, 1247, 181, 124, -82, 2139, 678, 678, 678, 678, 1018, 151, 76, -89, 1541, 2, 150, 1591, 941, 76, 76, 839, 588, 874, 514, 1020, 1018, 878, 576, 947, 1, 1043, 1661, 889, 1665, 589, 890, 839, 878, 897, 839, 1020, 1048, 1663, 1052, 1667, 717, 1202, 592, 1028, 106, 1, 1030, 847, 699, 851, 1285, 1287, 1289, 1, 1537, 154, 1074, 155, 562, 1, 303, 1537, 472, 472, 150, 1537, 1903, 937, 213, 404, 2, 124, 941, 1062, 964, 1159, 1713, 1025, 1166, 968, 1349, 1351, 1353, 164, 969, 1478, 1063, 1714, 472, 472, 138, -458, 708, 941, -458, 2099, 1683, 947, 592, 1712, 982, 1530, 1534, 1286, 1288, 1290, 150, 986, 1530, 1534, 472, 472, 1530, 1534, 1701, 472, 472, 1831, 590, 472, 472, 1710, 591, 124, 124, 124, 124, 1, 124, 303, 146, 124, 595, 1350, 1352, 1354, 580, 1487, 1254, 1488, 156, 941, 124, 124, 124, 1542, 1757, 1813, 150, 1, 753, 2170, 2, 839, 501, 595, 1, 591, 472, 1422, 472, 530, 1, 1056, 556, 124, 548, 160, 150, 1049, 594, 1053, 1, 1054, 1756, 1481, 1, 753, 124, 1194, 1196, 1760, 1969, 1080, 1529, 753, 1086, 1769, 1092, 1, 1097, 1221, 1231, 1420, 181, 1221, 1231, 1111, 809, 810, 811, 531, 1, 303, 181, 753, 76, -873, -866, 1787, 1, 161, 1809, 1533, 1, 1780, 1810, 597, 1781, 1409, 1409, 290, 593, 589, 177, 1443, 594, 1236, 1065, 1440, 1133, 52, 1140, 135, 1, 27, 682, 682, 682, 682, 1153, 745, 291, 234, 1798, 303, 1074, 849, 592, 853, 1410, 1410, -458, -458, -458, 386, -1065, 1566, 1535, 1061, 596, 1110, 655, 655, 655, 655, 1428, 147, 148, 1575, 299, 1793, 2034, 1796, 1437, 178, 1325, 535, 1778, -1065, 150, 1188, 1536, 596, 258, 1451, 1748, 1580, 1749, 124, 147, 148, -1024, 303, -1024, 576, 1185, 1186, 2103, 1492, 535, 1205, 1277, 420, 1391, 1915, 1262, 147, 148, 1212, 945, 304, 1327, 1263, 985, 812, 1217, 1227, 556, 1237, 1217, 1227, 2092, 813, 2159, 1, 814, 1205, 147, 148, 839, 1, 1, 426, 1773, 580, -866, 391, 427, 1249, 1393, -1071, 1242, 1243, 1244, 598, 1316, 854, 1277, 868, 1436, 591, 147, 148, 424, 1272, 2, 2, 1540, 1279, 572, 1436, 1473, 135, 2161, 1070, 122, 1529, 532, -458, 1062, 1774, 855, 705, 1382, 533, 594, -458, 1307, 1311, -458, 1326, 705, 1063, 795, 796, 1537, 580, 705, 551, 186, 186, 531, -265, -265, -265, 1533, 1, -460, -460, -460, 1339, 1543, 1902, 561, 1344, 1373, 1377, 1909, 1392, -458, -458, -458, 1993, 1593, 789, 790, 1599, 1461, 1462, 1, 1463, 1495, 1496, 1465, 1466, 1320, 580, 1067, 1324, 1404, 150, 1407, 1530, 1534, 839, 839, 839, 400, 565, 1328, 1535, 1504, 397, 1402, 1403, 678, 1477, 1500, 678, 1558, 396, 717, 53, 1386, 1640, 398, 1390, 418, 1423, 213, -459, -459, -459, 982, 1536, 150, 986, 1394, 1176, 1180, 1176, 1180, 1971, 164, 1433, 576, 566, 864, 1153, 619, 1, 1, 576, 107, 1448, 1450, 678, 1452, 1118, 839, 923, 924, 474, 797, 798, 474, 1515, 1780, 1781, 567, 678, 678, 678, 678, 1, 980, 1548, 1551, 474, 108, 474, 425, 474, -265, 147, 148, -8, -265, 1718, 793, 1267, 1512, -460, 1554, 1, 200, 124, 403, 150, -902, 1990, 599, 213, 276, -458, 124, 201, 147, 148, 786, 1485, 534, 404, 124, 600, 124, 1489, 391, 1, 2, 925, 404, 157, 1020, 684, 150, 937, 418, 1025, 787, 788, -742, 1896, -742, 514, 514, 941, 501, 1537, 472, 501, 1719, 602, 1568, 186, 514, 1511, 150, 1513, 1, 1501, 107, 1923, 1308, 1312, -459, 1569, 186, 604, 865, 420, 605, 1813, 1758, 1880, 866, 29, 30, 105, 1814, 1675, 33, 1759, 1679, 124, 947, 941, 685, 39, 941, 1566, 1374, 1378, 983, 181, 1530, 1534, 183, 1758, 984, 1208, 704, 147, 148, 717, 1784, 2044, 1768, 544, 547, 726, 753, 44, 45, 816, 501, 501, 745, 144, 472, 472, 1, 145, 472, 472, 472, 1208, 150, 2060, 1208, 124, 124, 162, 2089, 817, 818, 1555, 2090, 1252, 496, 124, 2091, 124, 213, 556, 137, 147, 148, 839, 1978, 1993, 150, 534, 93, 839, 727, 1426, 150, 391, 619, 839, 682, 984, 150, 682, 906, 839, 135, 150, 258, 1040, 2024, 2132, 1, 1645, 107, 2090, 730, 1650, 1699, 2133, 1652, 150, 1654, 27, 731, 1699, 655, 732, 1429, 655, 2145, 630, 33, 677, 984, 1684, 733, 538, 1133, 1081, 1140, 682, 1087, 734, 1093, 135, 1098, 1571, 1685, 1625, 1100, 158, 701, 159, 1786, 682, 682, 682, 682, 588, 866, 1820, 1638, 44, 45, 135, 1788, 655, 1279, 738, 580, 2067, 984, 2068, 1789, 1101, 188, 1634, 147, 148, 984, 655, 655, 655, 655, 1483, 93, 757, 823, 824, 1893, 705, 1102, 293, 93, 500, 866, 1, 2151, 472, 472, 124, 2090, 124, 2047, 580, 2152, -626, 2168, -626, 1472, 497, 2090, 839, 580, 150, 2169, 1, 791, 792, 839, 580, 1103, 1104, 418, 213, 745, -625, 580, -625, 147, 148, 707, 1558, 183, -872, 760, -872, -872, 474, 474, 707, 2029, 1695, 695, 799, 800, 707, 1970, 1498, 1695, 1291, 1293, 801, 866, 988, 988, 988, 988, 150, 819, 820, 2096, 1505, 2098, 474, 474, -901, 1506, 401, 821, 822, 1583, 1507, 186, 186, 1584, 1669, 1508, 580, 1981, 1355, 1357, 802, 1994, 1720, 866, 474, 474, 29, 30, 804, 474, 474, 33, 580, 474, 474, 825, 826, 549, 39, 550, -872, 902, 917, 918, 908, 941, 941, 2036, 2041, 1834, 1838, -872, 1100, 866, 866, 1100, 1646, 1647, 1648, 803, 2059, 1850, 44, 45, 919, 2127, 866, 2129, 920, 2131, 921, 553, 474, 550, 474, 53, -872, 1101, -901, -901, 1101, 678, 678, -901, 1573, 1727, -872, 1, 137, 1728, -901, 1, 2107, 678, 1102, -216, 1820, 1102, 866, -216, 808, 391, 922, 831, -872, -872, -872, 2154, 2155, 1739, 2157, 188, 832, 1728, -901, -901, 1299, 1301, 1042, 1303, 1, 698, 1827, 293, 1103, 1104, 2165, 1103, 1104, 1876, -901, -901, -901, 1877, 33, 1611, 2105, 1114, 1029, 550, 2106, 1031, 829, 2176, 1363, 1365, 1367, 1369, 2148, 1746, 1747, 2150, 2090, 1750, 150, 2090, 830, 2166, 839, 839, 1566, 2090, 1457, 1459, 695, 44, 45, 1, 2167, 836, 150, -913, 2090, 1751, 1423, 1513, 844, 1105, 418, 507, 859, 899, 845, 520, 1761, 258, 124, 420, 420, 1638, 2172, 856, 2, 124, 2090, 860, 827, 828, 1770, 150, 124, 1814, 760, 1020, 1157, 147, 148, -216, 2142, 147, 148, -216, 867, -216, 2179, 760, 1427, -216, 2090, 760, 857, 124, 1189, 1777, 143, 1019, 124, 1687, 1022, 124, 1295, 1297, 150, 1271, 887, 1, 1025, 1458, 1460, 29, 30, 418, 258, 1, 33, -913, -913, 472, 472, 1707, -913, 39, 839, 839, 839, 839, 1278, -913, 1, 885, 1359, 1361, 909, 1338, 422, 1, 677, 677, 677, 677, 1343, 916, 1, 1, 926, 44, 45, 1673, 1520, 1994, 1521, -913, -913, 1292, 1294, 966, 760, 420, 1620, 973, 455, 1296, 1298, 455, 1195, 1197, 1198, -913, 2, -913, 2006, 472, 472, 1518, 124, 1519, 455, 122, 455, 760, 455, 1863, 124, 1356, 1358, -882, -882, 682, 682, 974, -882, 1360, 1362, 576, 1033, 1035, 1, -882, 1802, 682, 1805, 1803, 678, 1806, -216, 975, 1171, 1173, 1172, 1174, 976, 1988, 1036, 655, 655, 29, 30, 1905, 295, 298, 33, -882, -882, 1133, 979, 655, 1133, 39, 1037, 1133, 1906, 1038, 1574, 1625, 1411, 1412, 1044, 1133, 1577, 707, 1133, 760, 1045, 201, 1578, 1077, 1113, 1083, 1089, 1095, 1579, 44, 45, 1112, 1115, 1860, 1192, 1119, 540, 1120, 1121, 52, 695, 1255, 571, 1153, 1139, 1150, 1141, 1151, 401, 1874, 514, 1142, 1154, 572, 753, 753, 753, 753, 753, 753, 753, 753, 1155, 1982, 1156, 1985, 1201, 1930, 1973, 474, 474, 588, 1650, 1013, 1190, 1654, 989, 990, 991, 992, 1214, 1267, 1413, 418, 1414, 213, 1415, 393, 418, 1996, 1018, 1998, 147, 148, -216, 1032, 1034, 1416, 1417, 1418, -216, 1430, 760, 1431, 1447, 1020, 1249, 1455, 1924, 1925, 29, 30, 1928, 1456, 1474, 33, 1494, 2084, -734, 2087, 1, -737, 39, 1559, 1560, 1561, 1562, 1581, 1563, 794, 1582, 1564, 474, 1586, 1587, 1613, 1596, 1597, 1612, 1025, 1614, 1616, 1783, 1621, 1404, 2, 44, 45, 753, 678, 1025, 678, 1629, 418, 122, 1630, 1631, 124, 124, 1659, 124, 1635, -1019, 541, -1019, 1655, 426, 1676, 400, 1688, 1677, 1828, 150, 1690, 1215, 1692, 1693, 2143, 1703, 1735, 698, 1704, 1705, 420, 1711, 472, 2123, 472, 1715, 1716, 839, 580, 29, 30, 1076, 1708, 1983, 33, 1986, 1717, 422, 1722, 474, 474, 39, 1729, 474, 474, 474, 1738, 1743, 472, 1745, 472, 124, 1767, 682, 1771, 678, 1785, 1790, 695, 1997, 1799, 1999, 1821, -740, 1822, 44, 45, 2144, 1823, 1830, 1824, 1825, 1826, 1133, 1133, 1133, 1133, 1516, 571, 655, 1851, 1852, 1857, 1133, 1133, 1861, 1133, 1875, 1133, 572, 1878, 1879, 1213, 1882, 2065, 1889, 1884, 1886, 1888, 1890, 1133, 1892, 1, 455, 455, 29, 30, 1897, 1898, 1153, 33, 1899, 1638, 1900, 1901, 961, 1912, 39, 1192, 1913, 1968, 1916, 2022, 1917, 2022, 1013, 1922, 2, 580, 455, 455, -231, 1013, -882, -882, 1013, 122, 1972, -882, 695, 1975, 44, 45, 1979, 418, -882, 556, 1976, 1980, 1984, 2008, 455, 455, 2035, -1039, -1039, 455, 455, 2023, -1039, 455, 455, 1987, 1989, 2028, 2037, 2038, 1025, 2039, -882, -882, 2072, 29, 30, 29, 30, 2054, 33, 2040, 33, 474, 474, 2042, 2043, 39, 2048, 39, 695, 1908, 760, 1911, 2049, 2050, 2051, 2055, 2056, 2057, 677, 2058, 455, 677, 455, 2073, 2097, 1919, 1921, 2104, 2110, 44, 45, 44, 45, 2113, 2108, 472, 472, 472, 472, 472, 839, 52, 839, 682, 53, 682, 1514, 2109, 2066, 472, 472, 472, 472, 936, 420, 2111, 2119, 2112, 420, 677, 1133, 2137, 2138, 2125, 2124, 2130, 1025, 2149, 2141, 655, 1, 655, 2088, 677, 677, 677, 677, -958, 2153, 2156, 2162, 1153, 1638, 2163, 745, 19, 20, 2164, 2173, 2174, 58, 2177, 2175, 957, 2178, 2, 1657, 2022, 1658, 2022, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 2180, 2158, 682, 1797, 958, 29, 30, 959, 472, 472, 33, 420, 960, 1464, 963, 1133, 1133, 39, 1509, 1133, 1419, 1133, 115, 690, 1133, 1342, 29, 30, 655, 420, 691, 33, 29, 30, 29, 30, 1499, 33, 39, 33, 58, 44, 45, 1638, 39, 1153, 39, 152, 1775, 1153, 894, 52, 2022, 2022, 1240, 2022, 886, 2022, 580, 1991, 623, 1133, 44, 45, 58, 728, 2126, 58, 44, 45, 44, 45, 52, 259, 58, 1215, 1656, 294, 1022, 283, 671, 58, 58, 285, 1153, 1638, 2147, 287, 568, 1133, 297, 1013, 1013, 1013, 58, 2022, 2022, 387, 2022, 1967, 779, 1153, 0, 0, 0, 0, 0, 0, 0, 58, 400, 0, 0, 0, 2022, 0, 0, 412, 1300, 1302, 2046, 1304, 412, 259, 0, 412, 0, 0, 0, 2053, 0, 2022, 0, 0, 0, 259, 0, 58, 412, 259, 412, 0, 412, 0, 0, 0, 1364, 1366, 1368, 1370, 0, 0, 0, 0, 705, 705, 0, 705, 705, 0, 0, 0, 705, 705, 705, 705, 0, 725, 259, 259, 0, 0, 0, 729, 0, 0, 0, 745, 0, 0, 0, 412, 0, 0, 0, 0, 2062, 2064, 0, 422, 422, 0, 0, 0, 0, 563, 0, 19, 20, 1013, 19, 20, 474, 474, 58, 420, 0, 0, 0, 0, 420, 0, -458, 0, 0, -458, -458, -458, -458, -458, -458, -458, -458, 0, 0, 0, 0, 29, 30, 0, 29, 30, 33, 928, 931, 33, 0, 0, 0, 39, 0, 0, 39, 627, 631, 848, 0, 852, 0, 259, 0, 0, 259, 259, 651, 0, 474, 474, 0, 928, 931, 0, 58, 44, 45, 0, 44, 45, 0, 0, 0, 0, 58, 259, 58, 420, 1148, 0, 0, 1619, 0, 928, 931, 29, 30, 0, 928, 931, 33, 422, 928, 931, 259, 0, 0, 39, 0, 0, 259, 0, 0, 705, 705, 705, 705, 705, 705, 705, 705, 412, 0, 0, 0, 0, 0, 0, 420, 0, 0, 44, 45, 1807, 455, 0, 1192, 0, 0, -458, -458, 52, 0, 0, 868, 0, 0, 0, 0, -458, 0, 55, 0, 0, 0, 572, 1013, 1013, -458, -458, -458, -458, -458, 1013, 1013, 0, 0, 1013, 1013, 0, 0, 0, 0, 0, 0, 0, 1656, 0, 58, 1022, 0, 0, 0, 412, 0, 412, 0, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 39, 677, 677, 0, 0, 455, 455, 0, 705, 455, 455, 455, 0, 677, 0, 0, 58, 0, 412, 58, 0, 0, 259, 58, 44, 45, 0, 0, 888, 929, 932, 0, 58, 259, 0, 58, 172, 0, 406, 1066, 0, 0, 420, 0, 0, 0, 55, 0, 0, 0, 0, 0, 0, 55, 55, 929, 932, 0, 0, 0, 0, 0, 0, 412, 412, 0, 0, 0, 58, 58, 0, 0, 1, 0, 0, 412, 0, 929, 932, 0, 967, 0, 929, 932, 0, 259, 929, 932, 0, 412, 412, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1117, 0, 0, 0, 0, 474, 122, 474, 58, 0, 0, 412, 412, 0, 0, 0, 412, 412, 0, 0, 412, 412, 0, 0, 0, 0, 627, 0, 651, 627, 0, 474, 0, 474, 0, 259, 0, 0, 259, 0, 0, 0, 0, 0, 29, 30, 455, 455, 0, 33, 422, 0, 0, 0, 58, 0, 39, 0, 0, 412, 0, 412, 0, 0, 58, 412, 0, 0, 0, 0, 29, 30, 1013, 0, 0, 33, 574, 0, 0, 0, 44, 45, 39, 0, 58, 0, 0, 58, 0, 58, 52, 58, 0, 53, 1470, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 44, 45, 1936, 1940, 0, 1946, 1950, 0, 0, 0, 1954, 1958, 1962, 1966, 408, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 172, 0, 33, 0, 0, 0, 0, 0, 0, 39, 172, 0, 55, 0, 0, 0, 0, 0, 677, 0, 627, 631, 1177, 1181, 0, 0, 1656, 1022, 0, 651, 651, 651, 651, 44, 45, 0, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, 861, 0, 0, 627, 0, 0, 0, 0, 1013, 1013, 259, 259, 259, 0, 0, 58, 474, 474, 474, 474, 474, 412, 19, 20, 1, 0, 0, 0, 0, 259, 474, 474, 474, 474, 29, 30, 259, 259, 412, 33, 259, 259, 0, 0, 0, 0, 39, 412, 0, 2, 58, 0, 29, 30, 0, 0, 0, 33, 122, 58, 0, 0, 651, 0, 39, 0, 0, 0, 0, 651, 44, 45, 651, 0, 707, 707, 707, 707, 707, 707, 707, 707, 422, 0, 862, 0, 422, 0, 44, 45, 0, 0, 0, 0, 574, 0, 29, 30, 52, 474, 474, 33, 0, 0, -458, -458, 0, 0, 39, 0, 0, 0, 0, 0, -458, 0, 0, 0, 0, -458, -458, -458, 1471, -458, -458, -458, -458, -458, 1, 0, 0, 0, 44, 45, 0, 0, 0, 0, 0, 0, 677, 0, 677, 928, 931, 53, 574, 928, 931, 422, 0, 0, 58, 2, 0, 58, 58, 58, 0, 0, 0, 1497, 194, 195, 196, 0, 0, 422, 707, 0, 0, 0, 0, 0, 628, 632, 455, 455, 412, 412, 58, 0, 0, 0, 0, 0, 574, 58, 0, 0, 1, 1013, 1013, 0, 0, 259, 58, 0, 0, 0, 29, 30, 0, 58, 0, 33, 259, 0, 412, 677, 58, 0, 39, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 122, 0, 0, 0, 0, 0, 455, 455, 0, 0, 0, 0, 44, 45, 0, 0, 0, 0, 0, 0, 0, 0, 52, 0, 0, 53, 0, 0, 0, 58, 0, 67, 0, 0, 0, 1572, 0, 58, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 39, 0, 0, 58, 412, 0, 0, 0, 0, 0, 0, 58, 58, 0, 0, 0, 412, 0, 0, 0, 0, 0, 58, 0, 44, 45, 0, 0, 0, 0, 0, 0, 0, 0, 52, 0, 1610, 53, 0, 0, 0, 0, 0, 651, 259, 651, 0, 0, 0, 0, 0, 259, 929, 932, 0, 0, 929, 932, 0, 0, 0, 0, 0, 0, 0, 67, 0, 0, 0, 422, 0, 0, 0, 0, 422, 67, 0, 0, 0, 0, 0, 0, 67, 67, 0, 0, 412, 412, 0, 0, 412, 412, 412, 0, 0, 0, 0, 0, 0, 0, 172, 0, 0, 0, 0, 0, 1204, 0, 0, 0, 58, 412, 0, 0, 0, 58, 0, 0, 0, 0, 0, 58, 0, 0, 487, 0, 0, 58, 1686, 0, 0, 0, 1204, 58, 0, 1204, 487, 0, 0, 422, 487, 0, 0, 0, 0, 1594, 0, 0, 1600, 0, 1706, 651, 0, 0, 651, 0, 0, 651, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 628, 0, 0, 628, 0, 0, 0, 0, 0, 0, 422, 0, 89, 0, 0, 0, 1641, 0, 0, 0, 0, 0, 455, 0, 455, 651, 0, 0, 0, 0, 1177, 1181, 1177, 1181, 0, 0, 0, 0, 0, 651, 651, 651, 651, 456, 0, 0, 456, 0, 455, 0, 455, 378, 0, 627, 0, 627, 0, 412, 412, 456, 0, 456, 259, 456, 259, 132, 0, 574, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 58, 0, 0, 259, 412, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67, 0, 165, 184, 198, 0, 0, 0, 259, 574, 67, 236, 67, 89, 0, 259, 0, 0, 574, 0, 89, 89, 0, 0, 0, 574, 0, 0, 0, 0, 422, 0, 574, 259, 651, 628, 632, 1178, 1182, 0, 259, 651, 0, 0, 259, 651, 558, 0, 0, 0, 0, 198, 405, 407, 409, 410, 0, 0, 928, 931, 0, 478, 0, 0, 478, 628, 0, 0, 0, 0, 0, 977, 0, -641, 0, 0, 0, 478, 0, 478, 0, 478, 0, 574, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -641, 574, 0, 0, 0, 0, 539, 407, 409, -641, -641, -641, 0, 0, 928, 931, 0, 0, 0, 0, 0, 0, 0, 455, 455, 455, 455, 455, 0, 0, 0, 0, 0, 87, 1782, 0, 0, 455, 455, 455, 455, 0, 0, 0, 569, 584, 0, -641, -641, 487, 0, 0, -641, 0, 0, 0, 0, 0, 0, -641, 487, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 378, 0, 0, 0, -641, -641, 0, 87, 0, 58, 58, 621, 0, 0, -641, 0, 0, -641, 0, 0, 978, 0, 976, -641, 184, 412, 0, 455, 455, 412, 0, 0, 0, 487, 696, 0, 89, 0, 87, 87, 0, 0, 0, 0, 0, 0, 87, 0, 87, 0, 0, 0, 0, 0, 0, 87, 87, 0, 0, 558, 0, 558, 0, 0, 929, 932, 0, 0, 0, 0, 0, 651, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 87, 0, 0, 0, 0, 412, 0, 0, 0, 0, 0, 412, 412, 0, 456, 456, 58, 58, 58, 58, 0, 0, 0, 0, 0, 0, 962, 0, 0, 0, 0, 929, 932, 0, 0, 0, 0, 0, 0, 0, 456, 456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 0, 405, 407, 409, 0, 0, 0, 0, 0, 456, 456, 0, 412, 412, 456, 456, 0, 0, 456, 456, 1668, 0, 0, 0, 1907, 869, 1910, 1670, 0, 0, 0, 0, 478, 0, 58, 664, 0, 0, 0, 0, 1918, 1920, 0, 132, 0, 1835, 1839, 87, 259, 651, 87, 0, 0, 0, 651, 651, 0, 456, 1594, 456, 0, 1600, 0, 1012, 0, 0, 0, 651, 0, 1641, 651, 0, 478, 478, 0, 0, 0, 943, 651, 0, 0, 954, 0, 87, 478, 0, 0, 0, 0, 0, 0, 0, 77, 165, 0, 0, 87, 0, 478, 478, 558, 0, 0, 0, 67, 0, 87, 0, 87, 0, 0, 0, 0, 58, 0, 0, 0, 869, 0, 0, 478, 478, 0, 0, 0, 478, 478, 0, 0, 478, 478, 0, 378, 198, 198, 198, 198, 0, 0, 0, 0, 0, 0, 0, 0, 0, 412, 0, 58, 0, 0, 412, 198, 198, 0, 0, 0, 0, 0, 0, 0, 558, 0, 0, 1595, 0, 0, 1601, 478, 58, 478, 0, 0, 1059, 0, 1068, 77, 0, 0, 83, 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 409, 0, 0, 77, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1642, 900, 0, 0, 0, 0, 0, 0, 87, 0, 0, 412, 0, 0, 1178, 1182, 1178, 1182, 928, 931, 0, 928, 931, 0, 0, 0, 259, 651, 0, 0, 490, 0, 928, 931, 928, 931, 0, 628, 0, 628, 2045, 0, 490, 412, 0, 412, 490, 0, 58, 2052, 87, 0, 0, 378, 0, 0, 0, 378, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 412, 0, 412, 0, 1012, 0, 83, 83, 0, 0, 487, 1012, 0, 0, 1012, 0, 0, 0, 0, 574, 0, 487, 0, 0, 0, 1193, 1835, 1839, 0, 0, 0, 696, 928, 931, 378, 651, 651, 2061, 2063, 0, 0, 0, 0, 0, 0, 0, 0, 0, 491, 0, 0, 0, 1223, 0, 0, 0, 1223, 0, 0, 0, 491, 378, 0, 0, 491, 0, 0, 0, 0, 378, 0, 87, 87, 87, 87, 869, 87, 0, 0, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 378, 87, 87, 87, 0, 0, 0, 412, 0, 412, 0, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 87, 77, 0, 0, 0, 0, 0, 0, 574, 0, 0, 0, 0, 0, 1135, 0, 0, 0, 0, 0, 0, 929, 932, 0, 929, 932, 0, 0, 0, 0, 0, 0, 0, 0, 0, 929, 932, 929, 932, 0, 0, 0, 0, 0, 0, 0, 664, 664, 664, 664, 0, 0, 0, 0, 0, 412, 412, 412, 412, 412, 58, 0, 58, 0, 0, 0, 0, 0, 0, 412, 412, 412, 412, 0, 0, 0, 83, 1012, 0, 558, 0, 0, 0, 0, 456, 1424, 83, 0, 83, 0, 0, 0, 869, 0, 0, 0, 0, 0, 0, 165, 869, 1438, 0, 0, 929, 932, 0, 0, 1445, 348, 0, 869, 0, 1453, 0, 0, 0, 0, 558, 0, 0, 0, 0, 0, 0, 0, 87, 0, 0, 0, 0, 0, 87, 419, 0, 0, 490, 0, 412, 412, 0, 0, 0, 0, 0, 0, 0, 490, 1012, 0, 1012, 0, 132, 0, 456, 456, 0, 0, 456, 456, 456, 1482, 0, 0, 0, 0, 584, 0, 0, 0, 0, 0, 132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 943, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 478, 0, 419, 0, 490, 0, 0, 0, 0, 0, 407, 1791, 0, -630, 0, 0, 0, 0, 0, 0, 0, 558, 0, 0, 0, 0, 0, 0, 882, 0, 0, 0, 574, 0, 0, 943, 0, 0, -630, 882, 0, 0, 0, 0, 0, 0, 0, -630, -630, -630, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1012, 0, 0, 1836, 1840, 0, 0, 0, 0, 478, 478, 558, 0, 478, 478, 478, 632, 0, 0, 632, 1556, 405, 0, 0, -630, -630, 0, 632, 0, -630, 882, 409, 0, 0, 0, 0, -630, 378, 378, 456, 456, 0, 0, 0, 419, 0, 0, 0, 710, 713, 715, 0, 0, 419, 0, 0, 0, 0, 0, 419, -630, -630, 0, 0, 0, 736, 0, 1484, 0, 87, -630, 0, 348, -630, 0, 0, 1792, 0, 976, -630, 0, 0, 0, 0, 0, 0, 0, 0, 0, 419, 0, 0, 0, 0, 419, 0, 0, 0, 0, 0, 0, 0, 0, 558, 0, 0, 0, 0, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 558, 0, 0, 87, 0, 0, 419, 0, 419, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1012, 0, 0, 378, 478, 478, 0, 1012, 77, 0, 0, 1012, 0, 0, 0, 0, 0, 0, 0, 419, 0, 0, 0, 0, 0, 869, 0, 0, 869, 0, 1682, 0, 0, 0, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 1223, 0, 0, 0, 0, 0, 0, 1223, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 87, 0, 0, 664, 0, 0, 664, 0, 83, 0, 0, 0, 311, 0, 0, 1135, 0, 0, 312, 313, 314, 0, 0, 0, 0, 632, 632, 0, 0, 0, 0, 315, 316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 419, 0, 664, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 664, 664, 664, 664, 0, 0, 0, 326, 327, 328, 0, 0, 329, 1167, 330, 0, 0, 1168, 0, 0, 0, 419, 331, 332, 1731, 333, 334, 335, 336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 490, 0, 0, 0, 0, 0, 0, 0, 0, 0, 348, 490, 0, 0, 0, 0, 456, 456, 0, 0, 0, 0, 0, 0, 0, 0, 1012, 0, 0, 0, 87, 0, 87, 0, 0, 0, 558, 0, 0, 419, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1754, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1763, 378, 0, 0, 456, 456, 1012, 405, 1012, 0, 0, 0, 0, 0, 198, 0, 0, 0, 0, 0, 0, 882, 0, 0, 0, 1012, 0, 0, 0, 0, 0, 0, 882, 0, 0, 1776, 0, 584, 0, 0, 0, 0, 0, 0, 419, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 478, 478, 0, 0, 0, 0, 0, 0, 0, 348, 0, 0, 0, 348, 0, 0, 0, 1012, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 419, 0, 0, 0, 0, 0, 0, 419, 0, 0, 419, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 478, 478, 0, 405, 0, 348, 0, 0, 0, 0, 0, 419, 419, 419, 419, 419, 419, 419, 0, 0, 419, 419, 584, 419, 419, 419, 419, 419, 419, 419, 419, 0, 348, 0, 0, 0, 0, 0, 0, 0, 348, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 0, 348, 0, 0, 0, 558, 0, 558, 0, 0, 0, 0, 0, 0, 0, 0, 378, 0, 0, 0, 0, 558, 558, 0, 0, 0, 0, 0, 378, 0, 0, 0, 419, 419, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 127, 0, 0, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 456, 0, 456, 1894, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 182, 127, 0, 0, 0, 0, 0, 1012, 235, 0, 0, 0, 456, 0, 456, 0, 0, 0, 0, 0, 419, 0, 419, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 366, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 127, 127, 0, 0, 419, 0, 0, 0, 0, 0, 421, 0, 0, 419, 664, 664, 0, 0, 0, 0, 0, 0, 0, 0, 1135, 0, 1135, 664, 87, 0, 664, 0, 0, 0, 0, 0, 0, 0, 664, 0, 0, 1135, 0, 419, 0, 419, 0, 0, 0, 478, 0, 478, 0, 537, 869, 0, 0, 0, 0, 0, 0, 0, 0, 378, 378, 0, 0, 0, 0, 0, 0, 0, 0, 0, 421, 478, 0, 478, 0, 0, 0, 0, 0, 0, 0, 0, 0, 409, 0, 0, 783, 0, 0, 0, 0, 0, 0, 0, 558, 0, 0, 601, 0, 0, 603, 0, 0, 558, 0, 0, 0, 419, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 456, 456, 456, 456, 456, 0, 0, 127, 0, 0, 0, 0, 0, 0, 456, 456, 456, 456, 0, 0, 182, 419, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 419, 0, 558, 558, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 421, 0, 0, 0, 711, 714, 716, 0, 0, 421, 0, 348, 348, 0, 0, 421, 0, 0, 0, 0, 0, 737, 0, 0, 0, 0, 0, 0, 366, 0, 0, 0, 0, 0, 0, 0, 456, 456, 0, 0, 0, 0, 0, 0, 0, 421, 0, 0, 0, 0, 421, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 478, 478, 478, 478, 478, 306, 0, 1, 307, 107, 0, 419, 0, 419, 478, 478, 478, 478, 1135, 1135, 1135, 1135, 0, 421, 1135, 421, 127, 0, 664, 664, 0, 1135, 2, 1135, 0, 419, 378, 0, 0, 0, 0, 0, 0, 0, 0, 1135, 0, 0, 0, 87, 0, 0, 419, 0, 378, 0, 419, 421, 0, 348, 0, 0, 0, 419, 0, 0, 0, 419, 127, 0, 311, 0, 0, 0, 0, 0, 312, 313, 0, 0, 0, 0, 0, 478, 478, 0, 0, 0, 0, 0, 316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 378, 235, 318, 319, 320, 321, 322, 323, 324, 0, 0, 0, 0, 0, 0, 0, 0, 0, 326, 0, 0, 0, 0, 712, 0, 0, 0, 0, 0, 0, 0, 0, 363, 331, 332, 0, 0, 0, 1145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 754, 0, 0, 127, 127, 127, 127, 0, 1017, 0, 0, 603, 421, 0, 0, 0, 0, 782, 0, 0, 0, 0, 127, 127, 127, 0, 0, 0, 0, 1135, 0, 0, 0, 0, 0, 0, 0, 0, 1135, 0, 1135, 0, 0, 127, 0, 0, 0, 0, 0, 421, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 419, 0, 0, 0, 419, 0, 0, 0, 0, 0, 0, 0, 366, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1135, 1135, 0, 0, 1135, 0, 1135, 0, 0, 1135, 0, 0, 0, 1135, 0, 0, 421, 1274, 0, 0, 0, 419, 0, 0, 0, 0, 0, 0, 0, 0, 0, 419, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 419, 0, 0, 0, 1135, 0, 0, 658, 1306, 1310, 1314, 1318, 1322, 0, 0, 1331, 0, 0, 419, 0, 348, 1274, 0, 0, 0, 419, 0, 419, 0, 0, 0, 0, 1135, 235, 0, 0, 1372, 1376, 1380, 1384, 1388, 0, 0, 1331, 419, 421, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 756, 0, 0, 0, 0, 0, 366, 0, 0, 0, 366, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 421, 0, 0, 0, 0, 0, 419, 421, 0, 0, 421, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 366, 0, 0, 0, 0, 0, 421, 421, 421, 421, 421, 421, 421, 0, 0, 421, 421, 0, 421, 421, 421, 421, 421, 421, 421, 421, 0, 366, 0, 0, 0, 0, 0, 0, 0, 366, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 1144, 366, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 419, 0, 0, 0, 419, 419, 419, 0, 0, 0, 0, 0, 0, 421, 421, 348, 0, 0, 0, 0, 419, 419, 0, 0, 0, 0, 0, 348, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 127, 0, 0, 0, 0, 0, 0, 0, 419, 419, 0, 419, 419, 0, 0, 0, 419, 419, 419, 419, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 419, 0, 0, 0, 0, 0, 0, 127, 0, 0, 1024, 421, 0, 421, 0, 0, 419, 0, 0, 0, 0, 0, 0, 0, 601, 0, 603, 127, 0, 0, 0, 0, 0, 0, 754, 0, 0, 0, 0, 0, 0, 419, 0, 421, 0, 0, 0, 0, 1282, 0, 0, 0, 421, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1305, 1309, 1313, 1317, 1321, 0, 1109, 1330, 1336, 1617, 0, 0, 0, 754, 0, 421, 1347, 421, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1371, 1375, 1379, 1383, 1387, 0, 0, 1330, 1400, 1644, 0, 0, 658, 0, 0, 0, 1651, 0, 0, 0, 0, 0, 0, 0, 0, 348, 348, 0, 419, 419, 419, 419, 419, 419, 419, 419, 127, 127, 0, 0, 0, 0, 0, 0, 658, 658, 658, 658, 0, 0, 1331, 0, 1331, 0, 0, 421, 0, 0, 0, 419, 419, 0, 0, 0, 0, 402, 0, 0, 0, 419, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 421, 0, 0, 0, 0, 0, 0, 0, 0, 1241, 0, 421, 0, 1245, 0, 0, 0, 0, 0, 0, 0, 0, 402, 0, 0, 0, 0, 419, 0, 0, 0, 419, 419, 0, 0, 0, 0, 366, 366, 0, 0, 0, 0, 0, 0, 756, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1283, 0, 582, 0, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 601, 0, 603, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1337, 0, 0, 0, 2, 756, 0, 0, 1348, 0, 0, 0, 0, 0, 0, 421, 0, 421, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1401, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 421, 0, 0, 311, 693, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 421, 0, 348, 0, 421, 315, 316, 366, 0, 0, 0, 421, 0, 0, 0, 421, 0, 0, 0, 317, 348, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 473, 0, 0, 473, 0, 0, 0, 326, 327, 328, 0, 0, 329, 1167, 330, 0, 473, 1736, 473, 0, 473, 1737, 331, 332, 0, 333, 334, 335, 336, 0, 0, 0, 0, 0, 0, 1144, 0, 0, 0, 348, 0, 0, 0, 0, 0, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 858, 1282, 0, 0, 0, 0, 863, 0, 1347, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1330, 0, 1330, 0, 0, 0, 311, 0, 0, 0, 0, 0, 312, 313, 314, 29, 30, 0, 0, 0, 33, 0, 0, 0, 1024, 315, 316, 39, 656, 0, 0, 0, 0, 0, 940, 0, 421, 0, 0, 317, 421, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 0, 0, 0, 0, 127, 0, 326, 327, 895, 1723, 0, 896, 739, 330, 0, 0, 0, 0, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 421, 0, 0, 0, 0, 0, 0, 0, 0, 0, 421, 0, 0, 1016, 0, 0, 1021, 0, 0, 0, 0, 421, 0, 0, 0, 0, 0, 0, 0, 1016, 0, 0, 0, 0, 0, 658, 0, 0, 658, 421, 0, 366, 0, 0, 0, 0, 421, 658, 421, 0, 582, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 582, 0, 421, 0, 0, 0, 1636, 1637, 0, 0, 0, 0, 0, 658, 0, 1283, 127, 0, 0, 1649, 0, 0, 1348, 0, 1653, 0, 0, 658, 658, 658, 658, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 421, 0, 0, 0, 0, 1929, 0, 0, 0, 0, 1932, 1934, 1938, 1942, 1944, 1948, 0, 0, 0, 1952, 1956, 1960, 1964, 0, 473, 473, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 473, 473, 0, 0, 0, 0, 693, 0, 0, 0, 0, 0, 693, 1724, 0, 0, 0, 0, 0, 0, 0, 0, 473, 473, 0, 0, 0, 473, 473, 0, 0, 473, 473, 0, 0, 0, 0, 0, 0, 1010, 0, 0, 0, 0, 0, 0, 0, 421, 0, 0, 0, 421, 421, 421, 0, 0, 0, 0, 0, 0, 0, 0, 366, 0, 0, 0, 0, 421, 421, 0, 473, 0, 473, 0, 366, 0, 0, 0, 0, 0, 0, 0, 0, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 421, 421, 0, 421, 421, 0, 0, 0, 421, 421, 421, 421, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 421, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 421, 0, 0, 0, 0, 0, 0, 0, 0, 656, 0, 0, 0, 0, 0, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 421, 0, 0, 0, 0, 0, 0, 0, 0, 315, 316, 0, 0, 0, 0, 127, 656, 656, 656, 656, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 693, 0, 0, 0, 0, 0, 0, 1444, 326, 327, 328, 0, 0, 329, 1167, 330, 0, 0, 1168, 0, 0, 0, 0, 331, 332, 1741, 333, 334, 335, 336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 366, 366, 0, 421, 421, 421, 421, 421, 421, 421, 421, 0, 0, 0, 0, 0, 1480, 1010, 0, 0, 0, 582, 0, 0, 1010, 0, 0, 1010, 1024, 0, 0, 0, 0, 0, 421, 421, 0, 940, 0, 0, 0, 1723, 0, 0, 421, 0, 1931, 1933, 1937, 1941, 1943, 1947, 0, 0, 0, 1951, 1955, 1959, 1963, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 940, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 421, 0, 0, 0, 421, 421, 0, 0, 0, 0, 0, 0, 0, 658, 658, 0, 0, 0, 0, 0, 0, 0, 0, 658, 0, 658, 658, 0, 0, 658, 0, 0, 0, 0, 0, 402, 0, 658, 0, 0, 658, 0, 0, 0, 582, 0, 582, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 473, 473, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1933, 1937, 1943, 1947, 1951, 1955, 1959, 1963, 0, 0, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 366, 0, 0, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1926, 0, 2, 366, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1724, 0, 0, 473, 0, 1649, 0, 0, 1653, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 693, 0, 693, 0, 0, 0, 311, 0, 0, 1010, 0, 1010, 312, 313, 314, 0, 0, 0, 0, 0, 366, 0, 0, 0, 0, 315, 316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 1024, 473, 473, 0, 0, 473, 473, 473, 326, 327, 328, 1024, 0, 329, 1167, 330, 0, 0, 1736, 0, 0, 0, 1744, 331, 332, 0, 333, 334, 335, 336, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 658, 658, 658, 658, 0, 0, 658, 0, 0, 0, 658, 658, 0, 658, 0, 658, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1010, 0, 658, 656, 0, 0, 656, 0, 0, 0, 0, 0, 2030, 2031, 0, 656, 1124, 1125, 1126, 636, 1127, 1128, 1129, 1130, 641, 642, 1131, 0, 0, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 33, 656, 0, 0, 0, 315, 316, 1132, 0, 646, 647, 648, 0, 0, 0, 656, 656, 656, 656, 317, 0, 224, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 473, 473, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, -453, 330, 649, 0, -453, 0, 258, 0, 650, 331, 332, 75, 333, 334, 335, 336, 0, 0, 224, 0, 0, 0, 0, 0, 0, 0, 423, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1024, 0, 0, 0, 0, 0, 693, 0, 0, 515, 0, 0, 0, 1766, 0, 0, 658, 0, 0, 0, 0, 1010, 0, 0, 0, 658, 118, 658, 1010, 0, 0, 0, 1010, 0, 0, 0, 0, 0, 0, 0, 0, 1444, 0, 582, 0, 0, 1779, 0, 0, 1021, 0, 0, 0, 0, 0, 0, 0, 0, 180, 0, 0, 0, 0, 0, 0, 0, 0, 265, 75, 0, 0, 0, 0, 0, 0, 75, 75, 0, 1024, 0, 0, 658, 658, 0, 0, 658, 0, 658, 0, 0, 658, 0, 0, 389, 658, 0, 0, 0, 0, 0, 0, 2128, 0, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 488, 0, 1024, 0, 0, 0, 0, 858, 0, 0, 658, 0, 488, 2, 0, 582, 488, 0, 0, 0, 0, 0, 0, 0, 0, 0, 582, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 658, 0, 0, 0, 0, 0, 0, 265, 265, 0, 0, 0, 0, 311, 0, 2171, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315, 316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 579, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 0, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 1167, 330, 1633, 0, 1168, 0, 0, 0, 1010, 331, 332, 840, 333, 334, 335, 336, 618, 0, 0, 265, 265, 265, 0, 0, 0, 0, 0, 0, 0, 180, 0, 0, 0, 0, 0, 473, 473, 0, 0, 180, 265, 75, 0, 0, 0, 0, 0, 0, 0, 0, 875, 515, 0, 0, 1010, 884, 1010, 0, 0, 721, 0, 0, 0, 0, 891, 721, 0, 898, 0, 0, 0, 0, 0, 0, 0, 0, 744, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 473, 473, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 949, 693, 693, 0, 1974, 0, 965, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1010, 0, 0, 0, 0, 656, 656, 0, 0, 0, 0, 0, 0, 0, 0, 656, 0, 656, 656, 0, 0, 656, 0, 0, 0, 0, 0, 0, 0, 656, 0, 0, 656, 1016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 579, 0, 0, 0, 0, 0, 880, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 880, 0, 0, 0, 0, 0, 0, 0, 0, 224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 0, 224, 0, 0, 224, 0, 224, 579, 224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 971, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 579, 0, 0, 0, 121, 133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 265, 0, 0, 0, 0, 0, 0, 265, 0, 0, 265, 0, 0, 0, 0, 0, 185, 133, 0, 0, 0, 233, 0, 0, 0, 0, 92, 1010, 0, 0, 0, 0, 0, 92, 92, 0, 0, 0, 0, 0, 0, 0, 0, 473, 0, 473, 0, 0, 0, 0, 0, 390, 0, 0, 0, 0, 0, 0, 0, 0, 663, 0, 0, 0, 399, 0, 0, 0, 0, 473, 0, 473, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 656, 656, 656, 656, 0, 0, 656, 0, 0, 0, 656, 656, 0, 656, 0, 656, 1149, 0, 0, 0, 0, 742, 536, 0, 0, 0, 0, 656, 0, 0, 0, 0, 0, 0, 0, 0, 552, 0, 0, 0, 0, 265, 265, 265, 265, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 586, 0, 0, 0, 0, 0, 0, 265, 265, 265, 0, 0, 180, 0, 0, 0, 0, 0, 1207, 0, 0, 0, 0, 0, 0, 0, 265, 0, 0, 0, 840, 840, 840, 1220, 1230, 744, 0, 1220, 1230, 0, 0, 0, 0, 0, 1207, 133, 0, 1207, 0, 0, 0, 0, 0, 423, 423, 224, 1251, 0, 185, 265, 0, 0, 0, 0, 0, 0, 265, 0, 697, 265, 92, 742, 0, 1136, 0, 0, 0, 0, 0, 473, 473, 473, 473, 473, 0, 0, 0, 0, 0, 0, 0, 0, 0, 473, 473, 473, 473, 0, 0, 0, 0, 0, 0, 0, 656, 0, 0, 1175, 1179, 0, 0, 0, 0, 656, 0, 656, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1476, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 579, 0, 0, 0, 423, 0, 0, 0, 0, 0, 0, 515, 515, 473, 473, 0, 0, 0, 0, 0, 656, 656, 515, 0, 656, 0, 656, 0, 0, 656, 0, 0, 0, 656, 0, 579, 0, 0, 0, 0, 0, 0, 0, 1435, 579, 0, 0, 0, 0, 0, 870, 579, 0, 0, 1435, 118, 744, 0, 579, 0, 0, 0, 0, 0, 0, 0, 656, 0, 133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 656, 0, 0, 0, 0, 0, 0, 0, 944, 0, 0, 952, 0, 0, 0, 579, 224, 0, 0, 0, 0, 224, 0, 0, 0, 0, 0, 1576, 0, 0, 1147, 579, 0, 1576, 0, 0, 0, 0, 0, 224, 0, 0, 0, 0, 0, 0, 1165, 0, 870, 0, 0, 0, 0, 0, 0, 0, 0, 663, 663, 663, 663, 0, 0, 0, 133, 133, 133, 133, 0, 0, 0, 265, 265, 265, 0, 0, 0, 0, 0, 618, 0, 0, 0, 133, 133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 742, 0, 0, 742, 0, 0, 626, 0, 1060, 0, 1069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1071, 0, 0, 0, 0, 742, 0, 0, 0, 0, 0, 1165, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 552, 1281, 0, 0, 423, 224, 0, 0, 0, 0, 0, 0, 0, 0, 250, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 265, 0, 33, 265, 0, 0, 265, 0, 251, 39, 252, 0, 0, 0, 1334, 0, 0, 0, 0, 1149, 0, 0, 1346, 253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 254, 255, 256, 257, 209, 210, 0, 1398, 0, 265, 0, 0, 0, 0, 0, 1191, 0, 0, 258, 0, 0, 0, 697, 265, 265, 265, 265, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1225, 0, 0, 265, 1225, 265, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1672, 0, 0, 618, 870, 0, 0, 742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1698, 0, 0, 0, 0, 0, 0, 1698, 0, 1592, 0, 0, 1598, 0, 0, 0, 0, 0, 0, 0, 0, 1615, 0, 0, 0, 265, 265, 0, 0, 0, 0, 0, 265, 265, 0, 0, 265, 265, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1639, 0, 0, 0, 0, 0, 840, 840, 0, 0, 0, 0, 0, 0, 1175, 1179, 1175, 1179, 0, 0, 0, 0, 423, 0, 0, 0, 423, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 870, 1425, 0, 0, 0, 0, 0, 870, 0, 0, 0, 0, 0, 0, 0, 870, 1439, 0, 0, 0, 0, 0, 0, 1446, 0, 0, 870, 121, 133, 0, 0, 0, 0, 0, 0, 0, 0, 423, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 423, 1795, 423, 1795, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 133, 0, 0, 0, 0, 0, 0, 0, 1479, 0, 0, 0, 0, 0, 586, 0, 0, 0, 0, 0, 133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 944, 0, 0, 0, 0, 663, 0, 0, 663, 1603, 1605, 0, 1608, 0, 0, 0, 0, 0, 264, 0, 1618, 0, 0, 0, 0, 0, 0, 0, 1627, 0, 0, 0, 0, 0, 0, 1165, 0, 0, 0, 0, 0, 265, 0, 0, 579, 0, 663, 0, 944, 0, 0, 0, 0, 1165, 0, 0, 0, 0, 1165, 0, 663, 663, 663, 663, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1662, 0, 1666, 0, 0, 1557, 0, 0, 0, 0, 0, 0, 515, 0, 1565, 0, 0, 0, 0, 0, 0, 0, 0, 0, 264, 264, 0, 0, 0, 0, 0, 0, 0, 0, 1165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 423, 0, 224, 0, 0, 423, 0, 0, 0, 0, 579, 0, 0, 0, 0, 578, 0, 0, 0, 0, 0, 0, 0, 0, 265, 265, 0, 0, 0, 0, 265, 265, 0, 0, 0, 1165, 0, 0, 0, 0, 0, 0, 0, 265, 0, 0, 265, 0, 0, 0, 0, 0, 0, 0, 265, 0, 0, 0, 0, 0, 617, 0, 0, 264, 264, 264, 0, 0, 0, 0, 423, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 264, 0, 0, 1165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1165, 0, 0, 720, 0, 0, 0, 0, 0, 720, 0, 870, 0, 0, 870, 0, 1225, 0, 0, 0, 743, 0, 0, 0, 1689, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1225, 0, 0, 0, 0, 0, 0, 1225, 0, 0, 0, 744, 0, 0, 0, 0, 0, 1165, 0, 557, 0, 0, 1833, 1837, 0, 0, 0, 0, 0, 0, 0, 0, 1846, 0, 1849, 1592, 0, 0, 1598, 0, 0, 0, 0, 0, 0, 0, 1639, 0, 0, 1862, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 265, 265, 0, 0, 0, 0, 0, 578, 0, 0, 0, 0, 0, 0, 0, 0, 0, 423, 0, 0, 0, 0, 579, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 706, 0, 0, 0, 0, 0, 0, 0, 0, 557, 578, 0, 0, 0, 250, 557, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 265, 265, 0, 0, 251, 39, 252, 0, 0, 0, 0, 0, 0, 0, 423, 0, 423, 0, 0, 253, 0, 578, 0, 0, 0, 0, 0, 0, 0, 44, 45, 254, 255, 256, 257, 209, 210, 0, 0, 52, 1755, 264, 868, 0, 0, 0, 0, 0, 264, 1432, 0, 264, 0, 572, 1762, 0, 0, 0, 557, 0, 557, 1765, 0, 744, 0, 0, 663, 663, 0, 399, 0, 0, 1165, 0, 1165, 0, 0, 1165, 663, 0, 0, 0, 0, 1853, 1856, 0, 1858, 0, 0, 0, 1446, 0, 586, 0, 0, 0, 1165, 0, 1869, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2001, 2002, 2003, 2004, 0, 0, 2005, 0, 0, 0, 1833, 1837, 0, 1846, 1165, 1849, 0, 0, 1165, 0, 0, 0, 0, 0, 0, 0, 0, 2014, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 741, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1819, 0, 0, 0, 264, 264, 264, 264, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 586, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1011, 0, 264, 264, 264, 267, 0, 0, 0, 0, 0, 0, 0, 1206, 0, 0, 0, 0, 0, 0, 0, 264, 0, 0, 0, 0, 0, 0, 1219, 1229, 743, 0, 1219, 1229, 0, 0, 0, 557, 0, 1206, 0, 0, 1206, 0, 0, 0, 0, 0, 0, 0, 0, 1250, 0, 0, 264, 0, 0, 0, 0, 0, 0, 264, 0, 0, 264, 741, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2005, 0, 0, 0, 0, 0, 0, 0, 0, 2083, 0, 2086, 0, 0, 0, 0, 1895, 1165, 557, 0, 267, 267, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 663, 1165, 0, 0, 0, 0, 0, 0, 1165, 0, 0, 0, 1858, 0, 2012, 0, 0, 0, 0, 0, 0, 581, 0, 2018, 0, 0, 0, 0, 0, 578, 2115, 2116, 0, 0, 2083, 0, 2086, 0, 0, 2120, 0, 0, 0, 2122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1425, 1199, 0, 0, 0, 0, 0, 0, 0, 0, 0, 578, 0, 620, 742, 0, 267, 267, 267, 0, 578, 0, 1765, 2122, 0, 0, 0, 578, 0, 0, 0, 0, 743, 0, 578, 0, 0, 267, 0, 0, 0, 870, 0, 0, 0, 0, 0, 1011, 0, 0, 0, 2160, 0, 0, 1011, 0, 723, 1011, 0, 0, 0, 0, 723, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 746, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 578, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1146, 0, 578, 0, 0, 0, 0, 0, 0, 2075, 2078, 0, 1165, 0, 1165, 0, 1164, 663, 1165, 663, 1169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1689, 264, 264, 264, 0, 0, 0, 0, 0, 617, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 741, 0, 581, 741, 0, 0, 0, 0, 0, 1165, 0, 0, 1165, 0, 0, 0, 0, 1234, 0, 0, 663, 0, 0, 0, 0, 0, 741, 0, 0, 0, 0, 0, 1164, 1169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 581, 0, 1165, 0, 0, 1280, 0, 0, 0, 0, 0, 0, 1011, 0, 557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 264, 0, 0, 264, -873, 0, 264, -873, -873, -873, 581, -873, -873, 1332, 0, 0, 0, 0, 0, 0, 0, 1345, 0, 557, 0, 0, 0, 0, 0, 0, 267, 0, 0, 0, 0, 0, 0, 267, 0, 0, 267, 1396, 0, 0, 264, 0, 0, 0, 0, 0, 0, 0, 0, 1011, 0, 1011, 0, 0, 264, 264, 264, 264, 0, 0, 0, 0, 0, 0, 0, -873, 0, 0, 0, 0, 0, -873, -873, -873, 0, 0, 0, 264, 0, 264, 0, 0, 0, 0, -873, 0, 0, 0, 0, 0, 0, 0, 0, 1671, 0, 0, 617, 0, -873, 741, 0, 0, -873, -873, -873, -873, -873, -873, -873, -873, 0, 0, 0, 0, 0, 0, 1697, 557, -873, -873, 0, 0, 0, 1697, 0, -873, -873, 0, -873, -873, -873, 0, 0, -873, -873, 0, -873, -873, -873, -873, 0, 264, 264, 0, 0, 0, 0, 0, 264, 264, 0, 0, 264, 264, 0, 0, 0, 1011, 0, 0, 0, 267, 267, 267, 267, 0, 0, 0, 557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 267, 267, 267, 0, 0, 0, 0, 0, 0, 0, 0, 1209, 0, 0, 0, 0, 0, 0, 0, 267, 0, 0, 0, 0, 0, 0, 1222, 1232, 746, 0, 1222, 1232, 0, 0, 0, 0, 0, 1209, 0, 0, 1209, 0, 0, 0, 0, 0, 0, 0, 0, 1253, 0, 0, 267, 0, 0, 0, 0, 0, 0, 267, 0, 0, 267, 0, 0, 0, 0, 0, 0, 0, 0, 557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1865, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 1011, 0, 0, 0, 0, 0, 0, 1011, 0, 0, 0, 1011, 0, 0, 0, 0, 2, 0, 0, 0, 1602, 1604, 0, 1607, 0, 0, 0, 0, 581, 0, 0, 1146, 0, 0, 1169, 0, 0, 0, 0, 1626, 0, 0, 0, 0, 0, 0, 1164, 1169, 0, 0, 0, 123, 0, 264, 311, 0, 578, 0, 140, 0, 312, 313, 314, 581, 1164, 1169, 0, 0, 0, 1164, 0, 0, 581, 315, 316, 0, 0, 0, 0, 581, 0, 163, 173, 197, 746, 0, 581, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 1660, 0, 1664, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 1167, 330, 1866, 0, 1168, 0, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 123, 123, 0, 0, 1164, 0, 0, 581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 498, 0, 0, 0, 0, 0, 581, 0, 0, 578, 0, 0, 0, 0, 0, 0, 529, 0, 0, 0, 0, 0, 0, 264, 264, 0, 0, 0, 0, 264, 264, 0, 0, 1164, 1169, 0, 123, 0, 0, 0, 0, 0, 264, 0, 0, 264, 267, 267, 267, 0, 0, 0, 0, 264, 620, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1011, 0, 0, 0, 0, 0, 0, 163, 575, 0, 557, 0, 0, 0, 0, 0, 0, 0, 1164, 0, 1169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1164, 1169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1011, 0, 1011, 0, 0, 0, 0, 173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1011, 173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 575, 743, 0, 0, 0, 0, 1164, 0, 1169, 0, 0, 267, 0, 0, 267, 0, 0, 267, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1011, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 267, 0, 0, 0, 0, 0, 0, 0, 264, 264, 0, 0, 0, 0, 267, 267, 267, 267, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 578, 0, 0, 0, 0, 0, 0, 267, 0, 267, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 123, 1674, 0, 0, 620, 0, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1700, 0, 0, 0, 0, 0, 0, 1700, 0, 0, 264, 264, 557, 0, 557, 0, 0, 0, 575, 0, 0, 0, 0, 0, 0, 267, 267, 0, 557, 557, 0, 0, 267, 267, 0, 0, 267, 267, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 575, 0, 1935, 1939, 0, 1945, 1949, 0, 0, 1829, 1953, 1957, 1961, 1965, 0, 0, 163, 0, 0, 0, 0, 743, 0, 0, 0, 0, 0, 0, 0, 1164, 1169, 1164, 1169, 0, 1164, 1848, 0, 126, 0, 0, 1602, 1855, 1011, 1626, 0, 1169, 0, 0, 0, 0, 0, 0, 0, 1164, 1169, 1626, 123, 123, 123, 123, 0, 123, 0, 0, 123, 0, 0, 0, 126, 126, 0, 0, 0, 0, 0, 123, 123, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1164, 0, 1169, 0, 1164, 0, 1169, 529, 0, 575, 0, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 123, 0, 0, 0, 0, 126, 126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1935, 1939, 1945, 1949, 1953, 1957, 1961, 1965, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 557, 0, 0, 0, 0, 0, 0, 267, 0, 557, 581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 583, 0, 0, 0, 0, 0, 1187, 0, 0, 0, 0, 0, 0, 0, 123, 0, 0, 0, 0, 0, 575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1011, 0, 0, 0, 557, 557, 0, 0, 0, 0, 126, 0, 0, 1164, 0, 0, 0, 0, 0, 0, 0, 0, 0, 126, 0, 0, 0, 0, 0, 0, 0, 0, 1164, 694, 0, 0, 0, 1169, 0, 1164, 1848, 0, 1169, 1626, 0, 2011, 0, 2013, 581, 0, 0, 0, 0, 1169, 2017, 0, 0, 0, 0, 0, 0, 0, 267, 267, 0, 0, 0, 0, 267, 267, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 267, 0, 0, 267, 0, 0, 0, 0, 0, 0, 0, 267, 0, 0, 0, 0, 0, 741, 0, 0, 0, 2, 0, 0, 0, 0, 0, 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, 126, 28, 0, 0, 0, 0, 583, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 163, 0, 575, 0, 0, 0, 0, 0, 0, 575, 0, 41, 0, 0, 575, 0, 0, 0, 126, 746, 0, 44, 45, 46, 47, 48, 49, 0, 2074, 2077, 0, 1164, 1169, 1164, 0, 0, 0, 1164, 1848, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 583, 123, 0, 0, 0, 0, 0, 0, 0, 0, 123, 0, 0, 0, 0, 575, 0, 0, 0, 0, 0, 123, 0, 0, 0, 0, 0, 0, 0, 267, 267, 575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1164, 1169, 0, 1164, 1848, 0, 0, 0, 2121, 581, 0, 0, 0, 262, 126, 126, 126, 126, 0, 126, 0, 0, 694, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 126, 126, 126, 0, 575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1164, 0, 0, 0, 0, 0, 0, 126, 0, 583, 0, 0, 0, 0, 0, 0, 486, 0, 267, 267, 0, 0, 583, 0, 0, 0, 0, 0, 486, 0, 0, 0, 486, 0, 0, 0, 123, 123, 0, 0, 0, 0, 0, 0, 0, 0, 123, 0, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262, 262, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 746, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 577, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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, 694, 0, 0, 616, 0, 0, 262, 262, 262, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262, 0, 123, 0, 123, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 719, 0, 0, 0, 0, 0, 719, 0, 0, 0, 0, 0, 0, 0, 0, 1124, 1125, 1126, 636, 1127, 1128, 1129, 1130, 641, 642, 1131, 0, 0, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 315, 316, 1132, 0, 646, 647, 648, 0, 0, 263, 0, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 0, 0, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 1167, 330, 649, 0, 1168, 0, 258, 0, 650, 331, 332, 0, 333, 334, 335, 336, 0, 0, 0, 263, 0, 0, 0, 0, 577, 0, 0, 0, 0, 0, 879, 263, 0, 0, 0, 263, 0, 0, 0, 0, 0, 879, 0, 0, 0, 0, 0, 0, 583, 0, 0, 0, 0, 0, 0, 583, 0, 0, 0, 0, 126, 0, 0, 0, 263, 263, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 577, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 970, 0, 0, 0, 0, 0, 126, 0, 0, 0, 0, 0, 0, 0, 0, 583, 0, 0, 0, 0, 583, 0, 0, 577, 0, 0, 126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 583, 0, 0, 0, 0, 0, 0, 262, 0, 0, 0, 0, 0, 0, 262, 123, 263, 262, 0, 263, 263, 263, 123, 0, 0, 0, 0, 0, 0, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 263, 0, 0, 0, 0, 0, 0, 0, 583, 0, 123, 0, 575, 0, 0, 123, 0, 0, 123, 263, 0, 0, 0, 0, 0, 263, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 126, 126, 0, 0, 0, 0, 0, 0, 0, 0, 583, 0, 583, 0, 0, 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, 0, 0, 0, 0, 0, 0, 0, 123, 262, 262, 262, 262, 0, 0, 0, 0, 0, 0, 575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262, 262, 262, 0, 0, 0, 263, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 263, 0, 262, 0, 0, 0, 0, 0, 0, 1218, 1228, 0, 0, 1218, 1228, 0, 0, 0, 0, 0, 268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262, 0, 0, 0, 694, 0, 694, 262, 0, 0, 262, 0, 0, 0, 0, 0, 0, 263, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, 0, 0, 0, 268, 0, 0, 0, 0, 0, 0, 0, 0, 263, 0, 0, 0, 0, 0, 0, 263, 0, 0, 263, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, 268, 0, 0, 0, 0, 0, 0, 0, 0, 577, 0, 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, 123, 0, 123, 0, 0, 0, 0, 0, 577, 0, 0, 0, 0, 0, 0, 0, 1434, 577, 0, 0, 0, 0, 0, 0, 577, 0, 0, 1434, 0, 0, 0, 577, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, 0, 0, 268, 268, 268, 0, 0, 0, 0, 0, 0, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 263, 263, 263, 263, 577, 0, 0, 0, 0, 268, 0, 0, 0, 0, 0, 268, 0, 0, 0, 0, 577, 0, 0, 0, 0, 0, 0, 0, 263, 263, 263, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 263, 0, 0, 0, 0, 0, 0, 263, 263, 0, 583, 263, 263, 262, 262, 262, 0, 583, 0, 0, 0, 616, 0, 0, 126, 0, 0, 0, 0, 0, 0, 0, 0, 263, 0, 0, 0, 0, 0, 0, 263, 0, 0, 263, 0, 583, 0, 583, 0, 0, 583, 0, 0, 583, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262, 0, 0, 262, 0, 0, 262, 126, 0, 0, 0, 0, 0, 0, 0, 583, 0, 0, 0, 0, 0, 268, 0, 0, 0, 0, 583, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262, 263, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 263, 0, 262, 262, 262, 262, 0, 0, 268, 0, 0, 0, 0, 0, 0, 268, 0, 0, 268, 0, 0, 0, 0, 0, 0, 262, 0, 262, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1696, 0, 0, 0, 0, 0, 0, 1696, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262, 262, 0, 0, 0, 0, 0, 262, 262, 0, 0, 262, 262, 0, 0, 0, 0, 0, 0, 0, 0, 0, 263, 263, 263, 0, 0, 0, 0, 0, 263, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, 268, 268, 268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 583, 583, 0, 583, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, 268, 268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, 0, 0, 0, 0, 0, 0, 268, 268, 0, 0, 268, 268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 126, 0, 0, 0, 0, 0, 263, 0, 0, 263, 268, 306, 263, 1, 307, 107, 308, 268, 309, 310, 268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 263, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 263, 263, 263, 263, 0, 0, 0, 0, 0, 0, 0, 0, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 263, 0, 263, 0, 262, 0, 0, 577, 315, 316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 263, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 0, 0, 263, 0, 0, 326, 327, 328, 0, 263, 329, 1167, 330, 1866, 0, 1168, 0, 0, 0, 268, 331, 332, 0, 333, 334, 335, 336, 263, 263, 0, 268, 0, 0, 0, 263, 263, 0, 0, 263, 263, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 577, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262, 262, 0, 0, 0, 0, 262, 262, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262, 0, 0, 262, 0, 0, 0, 0, 0, 0, 0, 262, 0, 0, 0, 0, 0, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, 268, 268, 0, 0, 0, 2, 0, 268, 0, 0, 0, 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, 311, 28, 0, 0, 0, 0, 312, 313, 314, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 315, 411, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 41, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 46, 47, 48, 49, 0, 0, 326, 327, 328, 0, 263, 329, 739, 330, 0, 0, 0, 268, 0, 0, 268, 331, 332, 268, 333, 334, 335, 336, 0, 0, 0, 0, 0, 0, 0, 262, 262, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 577, 0, 0, 0, 268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, 268, 268, 268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, 0, 268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262, 262, 0, 0, 268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 263, 263, 0, 0, 0, 0, 263, 263, 0, 0, 268, 0, 0, 0, 0, 0, 0, 268, 0, 263, 0, 0, 263, 0, 0, 0, 0, 0, 0, 0, 263, 0, 0, 0, 0, 268, 268, 0, 0, 0, 0, 0, 268, 268, 0, 0, 268, 268, 0, 0, 0, 762, 0, 0, 0, 0, 0, 763, 764, 765, -345, -345, -345, -345, -345, -345, -345, -345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -345, 0, 0, 0, 0, 0, 0, 0, -345, -345, 0, 0, 0, -345, 0, 0, 0, 0, 0, -345, -345, -345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -345, 0, 0, 0, 0, 0, 0, 0, 0, 0, -345, -345, -345, -345, -345, -345, -345, -345, 0, 0, -345, -345, -345, 766, 0, 0, -345, 1538, -345, -345, 0, 767, 263, 263, 768, 0, -345, -345, -345, 0, -345, -345, -345, -345, -345, 0, 0, -458, 0, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 263, 263, -458, 0, 0, 0, 0, 0, -458, -458, -458, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -458, -458, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -458, 0, 0, 0, -458, -458, -458, -458, -458, -458, -458, -458, 0, 0, 0, 0, 0, 0, 0, 0, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, 0, 0, -458, 0, -458, -458, 0, -458, -458, -458, -458, -458, -458, -458, -458, -458, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, 268, 0, 0, 0, 0, 268, 268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, 0, 0, 268, 0, 0, 0, 0, 0, -345, 762, 268, -345, -345, -345, -345, 763, 764, 765, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, 0, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, 0, 0, -345, -345, 0, -345, 0, 0, -345, -345, -345, -345, -345, 0, 0, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, 0, -345, 0, -345, -345, -345, 0, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, 766, -345, -345, -345, -345, -345, -345, -345, 767, -345, -345, 768, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, 268, 0, 0, 0, 0, 0, 0, -450, 1160, 0, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, 0, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, 0, 0, -450, -450, 0, -450, 268, 268, -450, -450, -450, -450, -450, 0, 0, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, 0, -450, 0, -450, -450, -450, 0, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -304, 306, 0, 1, 307, 107, 308, -304, 309, 310, -304, -304, -304, -304, -304, -304, -304, -304, -304, -304, -304, -304, -304, -304, -304, -304, -304, -304, 2, -304, -304, -304, -304, -304, -304, -304, -304, -304, -304, -304, -304, -304, -304, -304, -304, -304, -304, -304, -304, -304, -304, -304, 0, -304, -304, -304, -304, -304, -304, -304, -304, -304, -304, -304, 0, 0, 311, -304, 0, -304, 0, 0, 312, 313, 314, -304, -304, 0, 0, -304, -304, -304, -304, -304, -304, 315, 316, -304, -304, -304, -304, -304, -304, -304, -304, -304, 0, -304, 0, 317, -304, -304, 0, 318, 319, 320, 321, 322, 323, 324, 325, -304, -304, -304, -304, -304, -304, -304, -304, 326, 327, 328, -304, -304, 329, 1248, 330, -304, -304, 1163, -304, -304, -304, -304, 331, 332, -304, 333, 334, 335, 336, -304, -304, -304, -304, -304, -305, 306, 0, 1, 307, 107, 308, -305, 309, 310, -305, -305, -305, -305, -305, -305, -305, -305, -305, -305, -305, -305, -305, -305, -305, -305, -305, -305, 2, -305, -305, -305, -305, -305, -305, -305, -305, -305, -305, -305, -305, -305, -305, -305, -305, -305, -305, -305, -305, -305, -305, -305, 0, -305, -305, -305, -305, -305, -305, -305, -305, -305, -305, -305, 0, 0, 311, -305, 0, -305, 0, 0, 312, 313, 314, -305, -305, 0, 0, -305, -305, -305, -305, -305, -305, 315, 316, -305, -305, -305, -305, -305, -305, -305, -305, -305, 0, -305, 0, 317, -305, -305, 0, 318, 319, 320, 321, 322, 323, 324, 325, -305, -305, -305, -305, -305, -305, -305, -305, 326, 327, 328, -305, -305, 329, 1167, 330, -305, -305, 1168, -305, -305, -305, -305, 331, 332, -305, 333, 334, 335, 336, -305, -305, -305, -305, -305, -565, 306, 0, 1, 307, 107, 308, -565, 309, 310, -565, -565, -565, -565, -565, -565, -565, -565, -565, -565, -565, -565, -565, -565, -565, -565, -565, -565, 2, -565, -565, -565, -565, -565, -565, -565, -565, -565, -565, -565, -565, -565, -565, -565, -565, -565, -565, -565, -565, -565, -565, -565, 0, -565, -565, -565, -565, -565, -565, -565, -565, -565, -565, -565, 0, 0, 311, -565, 0, -565, 0, 0, 312, 313, 314, -565, -565, 0, 0, -565, -565, -565, -565, -565, -565, 315, 316, -565, -565, -565, -565, -565, -565, -565, -565, -565, 0, -565, 0, 317, -565, -565, 0, 318, 319, 320, 321, 322, 323, 324, 325, -565, -565, -565, -565, -565, -565, -565, -565, 326, 327, 328, -565, -565, 329, -565, 330, -565, -565, -565, -565, 750, -565, 1329, 331, 332, -565, 333, 334, 335, 336, -565, -565, -565, -565, -565, -566, 306, 0, 1, 307, 107, 308, -566, 309, 310, -566, -566, -566, -566, -566, -566, -566, -566, -566, -566, -566, -566, -566, -566, -566, -566, -566, -566, 2, -566, -566, -566, -566, -566, -566, -566, -566, -566, -566, -566, -566, -566, -566, -566, -566, -566, -566, -566, -566, -566, -566, -566, 0, -566, -566, -566, -566, -566, -566, -566, -566, -566, -566, -566, 0, 0, 311, -566, 0, -566, 0, 0, 312, 313, 314, -566, -566, 0, 0, -566, -566, -566, -566, -566, -566, 315, 316, -566, -566, -566, -566, -566, -566, -566, -566, -566, 0, -566, 0, 317, -566, -566, 0, 318, 319, 320, 321, 322, 323, 324, 325, -566, -566, -566, -566, -566, -566, -566, -566, 326, 327, 328, -566, -566, 329, -566, 330, -566, -566, -566, -566, 750, -566, 1395, 331, 332, -566, 333, 334, 335, 336, -566, -566, -566, -566, -566, -576, 306, 0, 1, 307, 107, 308, -576, 309, 310, -576, -576, -576, -576, -576, -576, -576, -576, -576, -576, -576, -576, -576, -576, -576, -576, -576, -576, 2, -576, -576, -576, -576, -576, -576, -576, -576, -576, -576, -576, -576, -576, -576, -576, -576, -576, -576, -576, -576, -576, -576, -576, 0, -576, -576, -576, -576, -576, -576, -576, -576, -576, -576, -576, 0, 0, 311, -576, 0, -576, 0, 0, 312, 313, 314, -576, -576, 0, 0, -576, -576, -576, -576, -576, -576, 315, 316, -576, -576, -576, -576, -576, -576, -576, -576, -576, 0, -576, 0, 317, -576, -576, 0, 318, 319, 320, 321, 322, 323, 324, 325, -576, -576, -576, -576, -576, -576, -576, -576, 326, 327, 328, -576, -576, 329, -576, 330, -576, -576, 1163, -576, -576, -576, -576, 331, 332, -576, 333, 334, 335, 336, -576, -576, -576, -576, -576, -578, 306, 0, 1, 307, 107, 308, -578, 309, 310, -578, -578, -578, -578, -578, -578, -578, -578, -578, -578, -578, -578, -578, -578, -578, -578, -578, -578, 2, -578, -578, -578, -578, -578, -578, -578, -578, -578, -578, -578, -578, -578, -578, -578, -578, -578, -578, -578, -578, -578, -578, -578, 0, -578, -578, -578, -578, -578, -578, -578, -578, -578, -578, -578, 0, 0, 311, -578, 0, -578, 0, 0, 312, 313, 314, -578, -578, 0, 0, -578, -578, -578, -578, -578, -578, 315, 316, -578, -578, -578, -578, -578, -578, -578, -578, -578, 0, -578, 0, 317, -578, -578, 0, 318, 319, 320, 321, 322, 323, 324, 325, -578, -578, -578, -578, -578, -578, -578, -578, 326, 327, 328, -578, -578, 329, 1167, 330, -578, -578, 1168, -578, -578, -578, -578, 331, 332, -578, 333, 334, 335, 336, -578, -578, -578, -578, -578, -577, 306, 0, 1, 307, 107, 308, -577, 309, 310, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, 2, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, 0, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, 0, 0, 311, -577, 0, -577, 0, 0, 312, 313, 314, -577, -577, 0, 0, -577, -577, -577, -577, -577, -577, 315, 316, -577, -577, -577, -577, -577, -577, -577, -577, -577, 0, -577, 0, 317, -577, -577, 0, 318, 319, 320, 321, 322, 323, 324, 325, -577, -577, -577, -577, -577, -577, -577, -577, 326, 327, 328, -577, -577, 329, -577, 330, -577, -577, 1163, -577, -577, -577, -577, 331, 332, -577, 333, 334, 335, 336, -577, -577, -577, -577, -577, -338, 1891, 0, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, 0, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, 0, 0, -338, -338, 0, -338, 0, 0, -338, -338, -338, -338, -338, 0, 0, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, 0, -338, 0, -338, -338, -338, 0, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -338, -342, 1927, 0, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, 0, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, 0, 0, -342, -342, 0, -342, 0, 0, -342, -342, -342, -342, -342, 0, 0, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, 0, -342, 0, -342, -342, -342, 0, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -342, -332, 306, 0, 1, 307, 107, 308, -332, 309, 310, -332, -332, -332, -332, -332, -332, -332, -332, -332, -332, -332, -332, -332, -332, -332, -332, -332, -332, 2, -332, -332, -332, -332, -332, -332, -332, -332, -332, -332, -332, -332, -332, -332, -332, -332, -332, -332, -332, -332, -332, -332, -332, 0, -332, -332, -332, -332, -332, -332, -332, -332, -332, -332, -332, 0, 0, 311, -332, 0, -332, 0, 0, 312, 313, 314, -332, -332, 0, 0, -332, -332, -332, -332, -332, -332, 315, 316, -332, -332, -332, -332, -332, -332, -332, -332, -332, 0, -332, 0, 317, -332, -332, 0, 318, 319, 320, 321, 322, 323, 324, 325, -332, -332, -332, -332, -332, -332, -332, -332, 326, 327, 328, -332, -332, 329, -332, 330, -332, -332, -332, -332, 750, -332, -332, 331, 332, -332, 333, 334, 335, 336, -332, -332, -332, -332, -332, -543, 306, 0, 1, 307, 107, 308, -543, 309, 310, -543, -543, -543, -543, -543, -543, -543, -543, -543, -543, -543, -543, -543, -543, -543, -543, -543, -543, 2, -543, -543, -543, -543, -543, -543, -543, -543, -543, -543, -543, -543, -543, -543, -543, -543, -543, -543, -543, -543, -543, -543, -543, 0, -543, -543, -543, -543, -543, -543, -543, -543, -543, -543, -543, 0, 0, 311, -543, 0, -543, 0, 0, 312, 313, 314, -543, -543, 0, 0, -543, -543, -543, -543, -543, -543, 315, 316, -543, -543, -543, -543, -543, -543, -543, -543, -543, 0, -543, 0, 317, -543, -543, 0, 318, 319, 320, 321, 322, 323, 324, 325, -543, -543, -543, -543, -543, -543, -543, -543, 326, 327, 328, -543, -543, 329, -543, 330, -543, -543, -543, -543, 750, -543, -543, 331, 332, -543, 333, 334, 335, 336, -543, -543, -543, -543, -543, -551, 306, 0, 1, 307, 107, 308, -551, 309, 310, -551, -551, -551, -551, -551, -551, -551, -551, -551, -551, -551, -551, -551, -551, -551, -551, -551, -551, 2, -551, -551, -551, -551, -551, -551, -551, -551, -551, -551, -551, -551, -551, -551, -551, -551, -551, -551, -551, -551, -551, -551, -551, 0, -551, -551, -551, -551, -551, -551, -551, -551, -551, -551, -551, 0, 0, 311, -551, 0, -551, 0, 0, 312, 313, 314, -551, -551, 0, 0, -551, -551, -551, -551, -551, -551, 315, 316, -551, -551, -551, -551, -551, -551, -551, -551, -551, 0, -551, 0, 317, -551, -551, 0, 318, 319, 320, 321, 322, 323, 324, 325, -551, -551, -551, -551, -551, -551, -551, -551, 326, 327, 328, -551, -551, 329, -551, 330, -551, -551, -551, -551, 750, -551, -551, 331, 332, -551, 333, 334, 335, 336, -551, -551, -551, -551, -551, -544, 306, 0, 1, 307, 107, 308, -544, 309, 310, -544, -544, -544, -544, -544, -544, -544, -544, -544, -544, -544, -544, -544, -544, -544, -544, -544, -544, 2, -544, -544, -544, -544, -544, -544, -544, -544, -544, -544, -544, -544, -544, -544, -544, -544, -544, -544, -544, -544, -544, -544, -544, 0, -544, -544, -544, -544, -544, -544, -544, -544, -544, -544, -544, 0, 0, 311, -544, 0, -544, 0, 0, 312, 313, 314, -544, -544, 0, 0, -544, -544, -544, -544, -544, -544, 315, 316, -544, -544, -544, -544, -544, -544, -544, -544, -544, 0, -544, 0, 317, -544, -544, 0, 318, 319, 320, 321, 322, 323, 324, 325, -544, -544, -544, -544, -544, -544, -544, -544, 326, 327, 328, -544, -544, 329, -544, 330, -544, -544, -544, -544, 750, -544, -544, 331, 332, -544, 333, 334, 335, 336, -544, -544, -544, -544, -544, -552, 306, 0, 1, 307, 107, 308, -552, 309, 310, -552, -552, -552, -552, -552, -552, -552, -552, -552, -552, -552, -552, -552, -552, -552, -552, -552, -552, 2, -552, -552, -552, -552, -552, -552, -552, -552, -552, -552, -552, -552, -552, -552, -552, -552, -552, -552, -552, -552, -552, -552, -552, 0, -552, -552, -552, -552, -552, -552, -552, -552, -552, -552, -552, 0, 0, 311, -552, 0, -552, 0, 0, 312, 313, 314, -552, -552, 0, 0, -552, -552, -552, -552, -552, -552, 315, 316, -552, -552, -552, -552, -552, -552, -552, -552, -552, 0, -552, 0, 317, -552, -552, 0, 318, 319, 320, 321, 322, 323, 324, 325, -552, -552, -552, -552, -552, -552, -552, -552, 326, 327, 328, -552, -552, 329, -552, 330, -552, -552, -552, -552, 750, -552, -552, 331, 332, -552, 333, 334, 335, 336, -552, -552, -552, -552, -552, -545, 306, 0, 1, 307, 107, 308, -545, 309, 310, -545, -545, -545, -545, -545, -545, -545, -545, -545, -545, -545, -545, -545, -545, -545, -545, -545, -545, 2, -545, -545, -545, -545, -545, -545, -545, -545, -545, -545, -545, -545, -545, -545, -545, -545, -545, -545, -545, -545, -545, -545, -545, 0, -545, -545, -545, -545, -545, -545, -545, -545, -545, -545, -545, 0, 0, 311, -545, 0, -545, 0, 0, 312, 313, 314, -545, -545, 0, 0, -545, -545, -545, -545, -545, -545, 315, 316, -545, -545, -545, -545, -545, -545, -545, -545, -545, 0, -545, 0, 317, -545, -545, 0, 318, 319, 320, 321, 322, 323, 324, 325, -545, -545, -545, -545, -545, -545, -545, -545, 326, 327, 328, -545, -545, 329, -545, 330, -545, -545, -545, -545, 750, -545, -545, 331, 332, -545, 333, 334, 335, 336, -545, -545, -545, -545, -545, -553, 306, 0, 1, 307, 107, 308, -553, 309, 310, -553, -553, -553, -553, -553, -553, -553, -553, -553, -553, -553, -553, -553, -553, -553, -553, -553, -553, 2, -553, -553, -553, -553, -553, -553, -553, -553, -553, -553, -553, -553, -553, -553, -553, -553, -553, -553, -553, -553, -553, -553, -553, 0, -553, -553, -553, -553, -553, -553, -553, -553, -553, -553, -553, 0, 0, 311, -553, 0, -553, 0, 0, 312, 313, 314, -553, -553, 0, 0, -553, -553, -553, -553, -553, -553, 315, 316, -553, -553, -553, -553, -553, -553, -553, -553, -553, 0, -553, 0, 317, -553, -553, 0, 318, 319, 320, 321, 322, 323, 324, 325, -553, -553, -553, -553, -553, -553, -553, -553, 326, 327, 328, -553, -553, 329, -553, 330, -553, -553, -553, -553, 750, -553, -553, 331, 332, -553, 333, 334, 335, 336, -553, -553, -553, -553, -553, -546, 306, 0, 1, 307, 107, 308, -546, 309, 310, -546, -546, -546, -546, -546, -546, -546, -546, -546, -546, -546, -546, -546, -546, -546, -546, -546, -546, 2, -546, -546, -546, -546, -546, -546, -546, -546, -546, -546, -546, -546, -546, -546, -546, -546, -546, -546, -546, -546, -546, -546, -546, 0, -546, -546, -546, -546, -546, -546, -546, -546, -546, -546, -546, 0, 0, 311, -546, 0, -546, 0, 0, 312, 313, 314, -546, -546, 0, 0, -546, -546, -546, -546, -546, -546, 315, 316, -546, -546, -546, -546, -546, -546, -546, -546, -546, 0, -546, 0, 317, -546, -546, 0, 318, 319, 320, 321, 322, 323, 324, 325, -546, -546, -546, -546, -546, -546, -546, -546, 326, 327, 328, -546, -546, 329, -546, 330, -546, -546, -546, -546, 750, -546, -546, 331, 332, -546, 333, 334, 335, 336, -546, -546, -546, -546, -546, -554, 306, 0, 1, 307, 107, 308, -554, 309, 310, -554, -554, -554, -554, -554, -554, -554, -554, -554, -554, -554, -554, -554, -554, -554, -554, -554, -554, 2, -554, -554, -554, -554, -554, -554, -554, -554, -554, -554, -554, -554, -554, -554, -554, -554, -554, -554, -554, -554, -554, -554, -554, 0, -554, -554, -554, -554, -554, -554, -554, -554, -554, -554, -554, 0, 0, 311, -554, 0, -554, 0, 0, 312, 313, 314, -554, -554, 0, 0, -554, -554, -554, -554, -554, -554, 315, 316, -554, -554, -554, -554, -554, -554, -554, -554, -554, 0, -554, 0, 317, -554, -554, 0, 318, 319, 320, 321, 322, 323, 324, 325, -554, -554, -554, -554, -554, -554, -554, -554, 326, 327, 328, -554, -554, 329, -554, 330, -554, -554, -554, -554, 750, -554, -554, 331, 332, -554, 333, 334, 335, 336, -554, -554, -554, -554, -554, -340, 2032, 0, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, 0, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, 0, 0, -340, -340, 0, -340, 0, 0, -340, -340, -340, -340, -340, 0, 0, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, 0, -340, 0, -340, -340, -340, 0, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, -339, 2033, 0, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, 0, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, 0, 0, -339, -339, 0, -339, 0, 0, -339, -339, -339, -339, -339, 0, 0, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, 0, -339, 0, -339, -339, -339, 0, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -339, -345, 762, 0, -345, -345, -345, -345, 763, 764, 765, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, 0, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, 0, 0, -345, -345, 0, -345, 0, 0, -345, -345, -345, -345, -345, 0, 0, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, 0, -345, 0, -345, -345, -345, 0, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, -345, 766, -345, -345, -345, -345, -345, -345, -345, 1158, -345, -345, 768, 0, -345, -345, -345, -345, -345, -345, -345, -345, -345, -458, 0, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, -458, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -458, 0, 0, 0, 0, 0, -458, -458, -458, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -458, -458, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -458, 0, 0, 0, -458, -458, -458, -458, -458, -458, -458, -458, 0, 0, 0, 0, 0, 0, 0, 0, -458, -458, -458, -458, -458, -458, -458, -458, 0, -458, -458, 0, 0, -458, 0, -458, -458, 0, -458, -458, -458, -458, -458, -458, -458, -458, -458, -450, 1160, 0, -450, -450, -450, -450, 0, -450, -450, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, 0, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, 0, 0, -450, -450, 0, -450, 0, 0, -450, -450, -450, -450, -450, 0, 0, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, 0, -450, 0, -450, -450, -450, 0, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, -450, 0, 0, -450, -450, -450, -450, 0, -450, -450, -450, 1161, -450, -450, -450, 0, -450, -450, -450, -450, -1093, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, -1093, -1093, -1093, -1093, -1093, -1093, -1093, -1093, -1093, -1093, -1093, -1093, -1093, -1093, -1093, -1093, -1093, -1093, -1093, -1093, -1093, -1093, -1093, 0, -1093, -1093, -1093, -1093, -1093, -1093, -1093, -1093, -1093, -1093, -1093, 0, 0, 311, -1093, 0, -1093, 0, 0, 312, 313, 314, -1093, -1093, 0, 0, -1093, -1093, -1093, -1093, -1093, -1093, 315, 316, -1093, -1093, -1093, -1093, -1093, -1093, -1093, -1093, -1093, 0, -1093, 0, 317, -1093, -1093, 0, 318, 319, 320, 321, 322, 323, 324, 325, -1093, -1093, -1093, -1093, -1093, -1093, -1093, -1093, 326, 327, 328, 0, 0, 329, 1167, 330, -1093, 0, 1168, -1093, -1093, 0, -1093, 331, 332, 0, 333, 334, 335, 336, -1237, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, -1237, -1237, -1237, -1237, -1237, -1237, -1237, -1237, -1237, -1237, -1237, -1237, -1237, -1237, -1237, -1237, -1237, -1237, -1237, -1237, -1237, -1237, -1237, 0, -1237, -1237, -1237, -1237, -1237, -1237, -1237, -1237, -1237, -1237, -1237, 0, 0, 311, -1237, 0, -1237, 0, 0, 312, 313, 314, -1237, -1237, 0, 0, -1237, -1237, -1237, -1237, -1237, -1237, 315, 316, -1237, -1237, -1237, -1237, -1237, -1237, -1237, -1237, -1237, 0, -1237, 0, 317, -1237, -1237, 0, 318, 319, 320, 321, 322, 323, 324, 325, -1237, -1237, -1237, -1237, -1237, -1237, -1237, -1237, 326, 327, 328, 0, 0, 329, 1167, 330, 1633, 0, 1168, -1237, -1237, 0, -1237, 331, 332, 0, 333, 334, 335, 336, -1195, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, -1195, -1195, -1195, -1195, -1195, -1195, -1195, -1195, -1195, -1195, -1195, -1195, -1195, -1195, -1195, -1195, -1195, -1195, -1195, -1195, -1195, -1195, -1195, 0, -1195, -1195, -1195, -1195, -1195, -1195, -1195, -1195, -1195, -1195, -1195, 0, 0, 311, -1195, 0, -1195, 0, 0, 312, 313, 314, -1195, -1195, 0, 0, -1195, -1195, -1195, -1195, -1195, -1195, 315, 316, -1195, -1195, -1195, -1195, -1195, -1195, -1195, -1195, -1195, 0, -1195, 0, 317, -1195, -1195, 0, 318, 319, 320, 321, 322, 323, 324, 325, -1195, -1195, -1195, -1195, -1195, -1195, -1195, -1195, 326, 327, 328, 0, 0, 329, 1842, 330, -1195, 0, 1168, -1195, -1195, 0, -1195, 331, 332, 0, 333, 334, 335, 336, -1226, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, -1226, -1226, -1226, -1226, -1226, -1226, -1226, -1226, -1226, -1226, -1226, -1226, -1226, -1226, -1226, -1226, -1226, -1226, -1226, -1226, -1226, -1226, -1226, 0, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 0, 0, 311, -1226, 0, -1226, 0, 0, 312, 313, 314, -1226, -1226, 0, 0, -1226, 33, -1226, -1226, -1226, -1226, 315, 316, 1132, -1226, 646, 647, 648, -1226, -1226, -1226, -1226, 0, -1226, 0, 317, -1226, -1226, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, -1226, -1226, -1226, -1226, -1226, -1226, 326, 327, 328, 0, 0, 329, 1167, 330, 649, 0, 1168, -1226, 258, 0, 650, 331, 332, 0, 333, 334, 335, 336, -577, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, 0, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, 0, 0, 311, -577, 0, -577, 0, 0, 312, 313, 314, -577, -577, 0, 0, -577, -577, -577, -577, -577, -577, 315, 316, -577, -577, -577, -577, -577, -577, -577, -577, -577, 0, -577, 0, 317, -577, -577, 0, 318, 319, 320, 321, 322, 323, 324, 325, -577, -577, -577, -577, -577, -577, -577, -577, 326, 327, 328, 0, 0, 329, -577, 330, 1162, 0, 1163, -577, -577, 0, -577, 331, 332, 0, 333, 334, 335, 336, -1218, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, -1218, -1218, -1218, -1218, -1218, -1218, -1218, -1218, -1218, -1218, -1218, -1218, -1218, -1218, -1218, -1218, -1218, -1218, -1218, -1218, -1218, -1218, -1218, 0, -1218, -1218, -1218, -1218, -1218, -1218, -1218, -1218, -1218, -1218, -1218, 0, 0, 311, -1218, 0, -1218, 0, 0, 312, 313, 314, -1218, -1218, 0, 0, -1218, -1218, -1218, -1218, -1218, -1218, 315, 316, -1218, -1218, -1218, -1218, -1218, -1218, -1218, -1218, -1218, 0, -1218, 0, 317, -1218, -1218, 0, 318, 319, 320, 321, 322, 323, 324, 325, -1218, -1218, -1218, -1218, -1218, -1218, -1218, -1218, 326, 327, 328, 0, 0, 329, 2079, 330, -1218, 0, 1163, -1218, -1218, 0, -1218, 331, 332, 0, 333, 334, 335, 336, -1219, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, -1219, -1219, -1219, -1219, -1219, -1219, -1219, -1219, -1219, -1219, -1219, -1219, -1219, -1219, -1219, -1219, -1219, -1219, -1219, -1219, -1219, -1219, -1219, 0, -1219, -1219, -1219, -1219, -1219, -1219, -1219, -1219, -1219, -1219, -1219, 0, 0, 311, -1219, 0, -1219, 0, 0, 312, 313, 314, -1219, -1219, 0, 0, -1219, -1219, -1219, -1219, -1219, -1219, 315, 316, -1219, -1219, -1219, -1219, -1219, -1219, -1219, -1219, -1219, 0, -1219, 0, 317, -1219, -1219, 0, 318, 319, 320, 321, 322, 323, 324, 325, -1219, -1219, -1219, -1219, -1219, -1219, -1219, -1219, 326, 327, 328, 0, 0, 329, 1167, 330, 2080, 0, 1168, -1219, -1219, 0, -1219, 331, 332, 0, 333, 334, 335, 336, -1213, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, -1213, -1213, -1213, -1213, -1213, -1213, -1213, -1213, -1213, -1213, -1213, -1213, -1213, -1213, -1213, -1213, -1213, -1213, -1213, -1213, -1213, -1213, -1213, 0, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 0, 0, 311, -1213, 0, -1213, 0, 0, 312, 313, 314, -1213, -1213, 0, 0, -1213, 33, -1213, -1213, -1213, -1213, 315, 316, 1132, -1213, 646, 647, 648, -1213, -1213, -1213, -1213, 0, -1213, 0, 317, -1213, -1213, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, -1213, -1213, -1213, -1213, -1213, -1213, 326, 327, 328, 0, 0, 329, 1167, 330, 649, 0, 1168, -1213, 258, 0, 650, 331, 332, 0, 333, 334, 335, 336, -1161, 624, 0, -1161, -1161, -1161, -1161, 0, -1161, -1161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, 0, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, 0, 0, -1161, -1161, 0, -1161, 0, 0, -1161, -1161, -1161, -1161, -1161, 0, 0, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, 0, -1161, 0, -1161, -1161, -1161, 0, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, -1161, 0, 0, -1161, 0, -1161, 625, 0, -1161, -1161, -1161, 0, -1161, -1161, -1161, 0, -1161, -1161, -1161, -1161, -1184, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 0, 0, 311, 250, 0, -1184, 0, 0, 312, 313, 314, 29, 30, 0, 0, -1184, 33, -1184, -1184, -1184, -1184, 315, 644, 645, 252, 646, 647, 648, -1184, -1184, -1184, -1184, 0, -1184, 0, 317, -1184, 253, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 254, 255, 256, 257, 209, 210, 326, 327, 328, 0, 0, 329, 0, 330, 649, 0, -1184, -1184, 258, 0, 650, 331, 332, 0, 333, 334, 335, 336, -1162, 624, 0, -1162, -1162, -1162, -1162, 0, -1162, -1162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, 0, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, 0, 0, -1162, -1162, 0, -1162, 0, 0, -1162, -1162, -1162, -1162, -1162, 0, 0, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, 0, -1162, 0, -1162, -1162, -1162, 0, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, -1162, 0, 0, -1162, 0, -1162, 625, 0, -1162, -1162, -1162, 0, -1162, -1162, -1162, 0, -1162, -1162, -1162, -1162, -1223, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, -1223, -1223, -1223, -1223, -1223, -1223, -1223, -1223, -1223, -1223, -1223, -1223, -1223, -1223, -1223, -1223, -1223, -1223, -1223, -1223, -1223, -1223, -1223, 0, 1124, 1125, 1126, 636, 1127, 1128, 1129, 1130, 641, 642, 1131, 0, 0, 311, -1223, 0, -1223, 0, 0, 312, 313, 314, -1223, -1223, 0, 0, -1223, 33, -1223, -1223, -1223, -1223, 315, 316, 1132, -1223, 646, 647, 648, -1223, -1223, -1223, -1223, 0, -1223, 0, 317, -1223, -1223, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, -1223, -1223, -1223, -1223, -1223, -1223, 326, 327, 328, 0, 0, 329, 0, 330, 649, 0, -1223, -1223, 258, 0, 650, 331, 332, 0, 333, 334, 335, 336, -1239, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, -1239, -1239, -1239, -1239, -1239, -1239, -1239, -1239, -1239, -1239, -1239, -1239, -1239, -1239, -1239, -1239, -1239, -1239, -1239, -1239, -1239, -1239, -1239, 0, -1239, -1239, -1239, -1239, -1239, -1239, -1239, -1239, -1239, -1239, -1239, 0, 0, 311, -1239, 0, -1239, 0, 0, 312, 313, 314, -1239, -1239, 0, 0, -1239, -1239, -1239, -1239, -1239, -1239, 315, 316, -1239, -1239, -1239, -1239, -1239, -1239, -1239, -1239, -1239, 0, -1239, 0, 317, -1239, -1239, 0, 318, 319, 320, 321, 322, 323, 324, 325, -1239, -1239, -1239, -1239, -1239, -1239, -1239, -1239, 326, 327, 328, 0, 0, 329, 0, 330, 1143, 0, -1239, -1239, 750, 0, -1239, 331, 332, 0, 333, 334, 335, 336, -1174, 1170, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 0, 0, 311, 250, 0, -1174, 0, 0, 312, 313, 314, 29, 30, 0, 0, -1174, 33, -1174, -1174, -1174, -1174, 315, 644, 645, 252, 646, 647, 648, -1174, -1174, -1174, -1174, 0, -1174, 0, 317, -1174, 253, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 254, 255, 256, 257, 209, 210, 326, 327, 328, 0, 0, 329, 0, 330, 649, 0, -1174, -1174, 258, 0, 650, 331, 332, 0, 333, 334, 335, 336, -1178, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 0, 0, 311, 250, 0, -1178, 0, 0, 312, 313, 314, 29, 30, 0, 0, -1178, 33, -1178, -1178, -1178, -1178, 315, 644, 645, 252, 646, 647, 648, -1178, -1178, -1178, -1178, 0, -1178, 0, 317, -1178, 253, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 254, 255, 256, 257, 209, 210, 326, 327, 328, 0, 0, 329, 0, 330, 649, 0, -1178, -1178, 258, 0, 650, 331, 332, 0, 333, 334, 335, 336, -1173, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 0, 0, 311, 250, 0, -1173, 0, 0, 312, 313, 314, 29, 30, 0, 0, -1173, 33, -1173, -1173, -1173, -1173, 315, 644, 645, 252, 646, 647, 648, -1173, -1173, -1173, -1173, 0, -1173, 0, 317, -1173, 253, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 254, 255, 256, 257, 209, 210, 326, 327, 328, 0, 0, 329, 0, 330, 649, 0, -1173, -1173, 258, 0, 650, 331, 332, 0, 333, 334, 335, 336, -1177, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 0, 0, 311, 250, 0, -1177, 0, 0, 312, 313, 314, 29, 30, 0, 0, -1177, 33, -1177, -1177, -1177, -1177, 315, 644, 645, 252, 646, 647, 648, -1177, -1177, -1177, -1177, 0, -1177, 0, 317, -1177, 253, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 254, 255, 256, 257, 209, 210, 326, 327, 328, 0, 0, 329, 0, 330, 649, 0, -1177, -1177, 258, 0, 650, 331, 332, 0, 333, 334, 335, 336, -1080, 1183, 0, -1080, -1080, -1080, -1080, 0, -1080, -1080, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, 0, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, 0, 0, -1080, -1080, 0, -1080, 0, 0, -1080, -1080, -1080, -1080, -1080, 0, 0, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, 0, -1080, 0, -1080, -1080, -1080, 0, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, -1080, 0, 0, -1080, 0, -1080, -1080, 0, -1080, -1080, -1080, 0, -1080, -1080, -1080, 0, -1080, -1080, -1080, -1080, -1082, 1184, 0, -1082, -1082, -1082, -1082, 0, -1082, -1082, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, 0, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, 0, 0, -1082, -1082, 0, -1082, 0, 0, -1082, -1082, -1082, -1082, -1082, 0, 0, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, 0, -1082, 0, -1082, -1082, -1082, 0, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, -1082, 0, 0, -1082, 0, -1082, -1082, 0, -1082, -1082, -1082, 0, -1082, -1082, -1082, 0, -1082, -1082, -1082, -1082, -1128, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 0, 0, 311, 250, 0, -1128, 0, 0, 312, 313, 314, 29, 30, 0, 0, -1128, 33, -1128, -1128, -1128, -1128, 315, 644, 645, 252, 646, 647, 648, -1128, -1128, -1128, -1128, 0, -1128, 0, 317, -1128, 253, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 254, 255, 256, 257, 209, 210, 326, 327, 328, 0, 0, 329, 0, 330, 649, 0, -1128, -1128, 258, 0, 650, 331, 332, 0, 333, 334, 335, 336, -1130, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 0, 0, 311, 250, 0, -1130, 0, 0, 312, 313, 314, 29, 30, 0, 0, -1130, 33, -1130, -1130, -1130, -1130, 315, 644, 645, 252, 646, 647, 648, -1130, -1130, -1130, -1130, 0, -1130, 0, 317, -1130, 253, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 254, 255, 256, 257, 209, 210, 326, 327, 328, 0, 0, 329, 0, 330, 649, 0, -1130, -1130, 258, 0, 650, 331, 332, 0, 333, 334, 335, 336, -1175, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 0, 0, 311, 250, 0, -1175, 0, 0, 312, 313, 314, 29, 30, 0, 0, -1175, 33, -1175, -1175, -1175, -1175, 315, 644, 645, 252, 646, 647, 648, -1175, -1175, -1175, -1175, 0, -1175, 0, 317, -1175, 253, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 254, 255, 256, 257, 209, 210, 326, 327, 328, 0, 0, 329, 0, 330, 649, 0, -1175, -1175, 258, 0, 650, 331, 332, 0, 333, 334, 335, 336, -1179, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 0, 0, 311, 250, 0, -1179, 0, 0, 312, 313, 314, 29, 30, 0, 0, -1179, 33, -1179, -1179, -1179, -1179, 315, 644, 645, 252, 646, 647, 648, -1179, -1179, -1179, -1179, 0, -1179, 0, 317, -1179, 253, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 254, 255, 256, 257, 209, 210, 326, 327, 328, 0, 0, 329, 0, 330, 649, 0, -1179, -1179, 258, 0, 650, 331, 332, 0, 333, 334, 335, 336, -1176, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 0, 0, 311, 250, 0, -1176, 0, 0, 312, 313, 314, 29, 30, 0, 0, -1176, 33, -1176, -1176, -1176, -1176, 315, 644, 645, 252, 646, 647, 648, -1176, -1176, -1176, -1176, 0, -1176, 0, 317, -1176, 253, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 254, 255, 256, 257, 209, 210, 326, 327, 328, 0, 0, 329, 0, 330, 649, 0, -1176, -1176, 258, 0, 650, 331, 332, 0, 333, 334, 335, 336, -1180, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 0, 0, 311, 250, 0, -1180, 0, 0, 312, 313, 314, 29, 30, 0, 0, -1180, 33, -1180, -1180, -1180, -1180, 315, 644, 645, 252, 646, 647, 648, -1180, -1180, -1180, -1180, 0, -1180, 0, 317, -1180, 253, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 254, 255, 256, 257, 209, 210, 326, 327, 328, 0, 0, 329, 0, 330, 649, 0, -1180, -1180, 258, 0, 650, 331, 332, 0, 333, 334, 335, 336, -1171, 624, 0, -1171, -1171, -1171, -1171, 0, -1171, -1171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, 0, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, 0, 0, -1171, -1171, 0, -1171, 0, 0, -1171, -1171, -1171, -1171, -1171, 0, 0, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, 0, -1171, 0, -1171, -1171, -1171, 0, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, -1171, 0, 0, -1171, 0, -1171, 625, 0, -1171, -1171, -1171, 0, -1171, -1171, -1171, 0, -1171, -1171, -1171, -1171, -1172, 624, 0, -1172, -1172, -1172, -1172, 0, -1172, -1172, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, 0, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, 0, 0, -1172, -1172, 0, -1172, 0, 0, -1172, -1172, -1172, -1172, -1172, 0, 0, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, 0, -1172, 0, -1172, -1172, -1172, 0, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, -1172, 0, 0, -1172, 0, -1172, 625, 0, -1172, -1172, -1172, 0, -1172, -1172, -1172, 0, -1172, -1172, -1172, -1172, -1006, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, -1006, -1006, -1006, -1006, -1006, -1006, -1006, -1006, -1006, -1006, -1006, -1006, -1006, -1006, -1006, -1006, -1006, -1006, -1006, -1006, -1006, -1006, -1006, 0, -1006, -1006, -1006, -1006, -1006, -1006, -1006, -1006, -1006, -1006, -1006, 0, 0, 311, -1006, 0, -1006, 0, 0, 312, 313, 314, -1006, -1006, 0, 0, -1006, -1006, -1006, -1006, -1006, -1006, 315, 316, -1006, -1006, -1006, -1006, -1006, -1006, -1006, -1006, -1006, 0, -1006, 0, 317, -1006, -1006, 0, 318, 319, 320, 321, 322, 323, 324, 325, -1006, -1006, -1006, -1006, -1006, -1006, -1006, -1006, 326, 327, 328, 0, 0, 329, 0, 330, -1006, 0, 1811, 1812, 1023, 0, -1006, 331, 332, 0, 333, 334, 335, 336, -1134, 624, 0, -1134, -1134, -1134, -1134, 0, -1134, -1134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, 0, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, 0, 0, -1134, -1134, 0, -1134, 0, 0, -1134, -1134, -1134, -1134, -1134, 0, 0, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, 0, -1134, 0, -1134, -1134, -1134, 0, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, -1134, 0, 0, -1134, 0, -1134, 625, 0, -1134, -1134, -1134, 0, -1134, -1134, -1134, 0, -1134, -1134, -1134, -1134, -1135, 624, 0, -1135, -1135, -1135, -1135, 0, -1135, -1135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, 0, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, 0, 0, -1135, -1135, 0, -1135, 0, 0, -1135, -1135, -1135, -1135, -1135, 0, 0, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, 0, -1135, 0, -1135, -1135, -1135, 0, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, -1135, 0, 0, -1135, 0, -1135, 625, 0, -1135, -1135, -1135, 0, -1135, -1135, -1135, 0, -1135, -1135, -1135, -1135, -1131, 624, 0, -1131, -1131, -1131, -1131, 0, -1131, -1131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, 0, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, 0, 0, -1131, -1131, 0, -1131, 0, 0, -1131, -1131, -1131, -1131, -1131, 0, 0, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, 0, -1131, 0, -1131, -1131, -1131, 0, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, -1131, 0, 0, -1131, 0, -1131, 625, 0, -1131, -1131, -1131, 0, -1131, -1131, -1131, 0, -1131, -1131, -1131, -1131, -1008, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, -1008, -1008, -1008, -1008, -1008, -1008, -1008, -1008, -1008, -1008, -1008, -1008, -1008, -1008, -1008, -1008, -1008, -1008, -1008, -1008, -1008, -1008, -1008, 0, -1008, -1008, -1008, -1008, -1008, -1008, -1008, -1008, -1008, -1008, -1008, 0, 0, 311, -1008, 0, -1008, 0, 0, 312, 313, 314, -1008, -1008, 0, 0, -1008, -1008, -1008, -1008, -1008, -1008, 315, 316, -1008, -1008, -1008, -1008, -1008, -1008, -1008, -1008, -1008, 0, -1008, 0, 317, -1008, -1008, 0, 318, 319, 320, 321, 322, 323, 324, 325, -1008, -1008, -1008, -1008, -1008, -1008, -1008, -1008, 326, 327, 328, 0, 0, 329, 0, 330, -1008, 0, -1008, 1992, 1023, 0, -1008, 331, 332, 0, 333, 334, 335, 336, -1002, 1995, 0, -1002, -1002, -1002, -1002, 0, -1002, -1002, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, 0, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, 0, 0, -1002, -1002, 0, -1002, 0, 0, -1002, -1002, -1002, -1002, -1002, 0, 0, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, 0, -1002, 0, -1002, -1002, -1002, 0, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, -1002, 0, 0, -1002, 0, -1002, -1002, 0, -1002, -1002, -1002, 0, -1002, -1002, -1002, 0, -1002, -1002, -1002, -1002, -1132, 624, 0, -1132, -1132, -1132, -1132, 0, -1132, -1132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, 0, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, 0, 0, -1132, -1132, 0, -1132, 0, 0, -1132, -1132, -1132, -1132, -1132, 0, 0, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, 0, -1132, 0, -1132, -1132, -1132, 0, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, -1132, 0, 0, -1132, 0, -1132, 625, 0, -1132, -1132, -1132, 0, -1132, -1132, -1132, 0, -1132, -1132, -1132, -1132, -1133, 624, 0, -1133, -1133, -1133, -1133, 0, -1133, -1133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, 0, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, 0, 0, -1133, -1133, 0, -1133, 0, 0, -1133, -1133, -1133, -1133, -1133, 0, 0, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, 0, -1133, 0, -1133, -1133, -1133, 0, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, -1133, 0, 0, -1133, 0, -1133, 625, 0, -1133, -1133, -1133, 0, -1133, -1133, -1133, 0, -1133, -1133, -1133, -1133, -1220, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, -1220, -1220, -1220, -1220, -1220, -1220, -1220, -1220, -1220, -1220, -1220, -1220, -1220, -1220, -1220, -1220, -1220, -1220, -1220, -1220, -1220, -1220, -1220, 0, -1220, -1220, -1220, -1220, -1220, -1220, -1220, -1220, -1220, -1220, -1220, 0, 0, 311, -1220, 0, -1220, 0, 0, 312, 313, 314, -1220, -1220, 0, 0, -1220, -1220, -1220, -1220, -1220, -1220, 315, 316, -1220, -1220, -1220, -1220, -1220, -1220, -1220, -1220, -1220, 0, -1220, 0, 317, -1220, -1220, 0, 318, 319, 320, 321, 322, 323, 324, 325, -1220, -1220, -1220, -1220, -1220, -1220, -1220, -1220, 326, 327, 328, 0, 0, 329, 0, 330, -1220, 0, -1220, -1220, -1220, 0, -1220, 331, 332, 0, 333, 334, 335, 336, -1003, 2071, 0, -1003, -1003, -1003, -1003, 0, -1003, -1003, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, 0, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, 0, 0, -1003, -1003, 0, -1003, 0, 0, -1003, -1003, -1003, -1003, -1003, 0, 0, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, 0, -1003, 0, -1003, -1003, -1003, 0, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, -1003, 0, 0, -1003, 0, -1003, -1003, 0, -1003, -1003, -1003, 0, -1003, -1003, -1003, 0, -1003, -1003, -1003, -1003, -909, 589, 0, -909, -909, -909, -909, 0, -909, -909, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -909, -909, -909, -909, -909, -909, -909, -909, -909, -909, -909, -909, -909, -909, -909, -909, -909, -909, -909, -909, -909, -909, -909, -909, 0, 0, -909, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -909, -909, 0, -909, 0, 0, -909, -909, -909, -909, -909, 0, 0, -909, -909, -909, -909, -909, -909, -909, -909, -909, -909, -909, 0, 0, -909, -909, -909, -909, 0, -909, 0, -909, -909, -909, 0, -909, -909, -909, -909, -909, -909, -909, -909, -909, -909, -909, -909, -909, -909, -909, -909, -909, -909, -909, 0, 0, -909, 854, -909, -909, 0, 591, -909, -909, 0, 0, -909, -909, 0, -909, -909, -909, -909, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 0, 0, 311, 250, 0, 0, 0, 0, 312, 313, 314, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 315, 644, 645, 252, 646, 647, 648, 0, 0, 0, 0, 0, 0, 0, 317, 0, 253, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 254, 255, 256, 257, 209, 210, 326, 327, 328, 0, 0, 329, 0, 330, 649, 0, 0, 0, 258, 0, 650, 331, 332, 0, 333, 334, 335, 336, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 1124, 1125, 1126, 636, 1127, 1128, 1129, 1130, 641, 642, 1131, 0, 0, 311, 250, 0, 0, 0, 0, 312, 313, 314, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 315, 644, 645, 252, 646, 647, 648, 0, 0, 0, 0, 0, 0, 0, 317, 0, 253, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 254, 255, 256, 257, 209, 210, 326, 327, 328, 0, 0, 329, 0, 330, 649, 0, 0, 0, 258, 0, 650, 331, 332, 0, 333, 334, 335, 336, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 250, 0, 0, 0, 0, 312, 313, 314, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 315, 644, 39, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 253, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 254, 255, 256, 257, 209, 210, 326, 327, 328, 0, 0, 329, 0, 330, 993, 0, 994, 995, 750, 0, 0, 331, 332, 0, 333, 334, 335, 336, 1257, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 250, 0, 0, 0, 0, 312, 313, 314, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 315, 644, 39, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 253, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 254, 255, 256, 257, 209, 210, 326, 327, 328, 0, 0, 329, 0, 330, 993, 0, 994, -110, 750, 0, 0, 331, 332, 0, 333, 334, 335, 336, 1264, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 250, 0, 0, 0, 0, 312, 313, 314, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 315, 644, 39, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 253, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 254, 255, 256, 257, 209, 210, 326, 327, 328, 0, 0, 329, 0, 330, 993, 0, 994, -98, 750, 0, 0, 331, 332, 0, 333, 334, 335, 336, 1268, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 250, 0, 0, 0, 0, 312, 313, 314, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 315, 644, 39, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 253, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 254, 255, 256, 257, 209, 210, 326, 327, 328, 0, 0, 329, 0, 330, 993, 0, 994, -102, 750, 0, 0, 331, 332, 0, 333, 334, 335, 336, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 250, 0, 0, 0, 0, 312, 313, 314, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 315, 644, 39, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 253, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 254, 255, 256, 257, 209, 210, 326, 327, 328, 0, 0, 329, 0, 330, 1522, 0, 994, -65, 750, 0, 0, 331, 332, 0, 333, 334, 335, 336, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 250, 0, 0, 0, 0, 312, 313, 314, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 315, 644, 39, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 253, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 254, 255, 256, 257, 209, 210, 326, 327, 328, 0, 0, 329, 0, 330, 1531, 0, 994, 1532, 750, 0, 0, 331, 332, 0, 333, 334, 335, 336, 1589, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 250, 0, 0, 0, 0, 312, 313, 314, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 315, 644, 39, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 253, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 254, 255, 256, 257, 209, 210, 326, 327, 328, 0, 0, 329, 0, 330, 993, 0, 994, -81, 750, 0, 0, 331, 332, 0, 333, 334, 335, 336, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 250, 0, 0, 0, 0, 312, 313, 314, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 315, 644, 39, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 253, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 254, 255, 256, 257, 209, 210, 326, 327, 328, 0, 0, 329, 0, 330, 1531, 0, 994, -107, 750, 0, 0, 331, 332, 0, 333, 334, 335, 336, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 250, 0, 0, 0, 0, 312, 313, 314, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 315, 644, 39, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 253, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 254, 255, 256, 257, 209, 210, 326, 327, 328, 0, 0, 329, 0, 330, 1531, 0, 994, -97, 750, 0, 0, 331, 332, 0, 333, 334, 335, 336, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 250, 0, 0, 0, 0, 312, 313, 314, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 315, 644, 39, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 253, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 254, 255, 256, 257, 209, 210, 326, 327, 328, 0, 0, 329, 0, 330, 1531, 0, 994, -101, 750, 0, 0, 331, 332, 0, 333, 334, 335, 336, 1772, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 250, 0, 0, 0, 0, 312, 313, 314, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 315, 644, 39, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 253, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 254, 255, 256, 257, 209, 210, 326, 327, 328, 0, 0, 329, 0, 330, 993, 0, 994, -88, 750, 0, 0, 331, 332, 0, 333, 334, 335, 336, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 250, 0, 0, 0, 0, 312, 313, 314, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 315, 644, 39, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 253, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 254, 255, 256, 257, 209, 210, 326, 327, 328, 0, 0, 329, 0, 330, 1531, 0, 994, -78, 750, 0, 0, 331, 332, 0, 333, 334, 335, 336, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 250, 0, 0, 0, 0, 312, 313, 314, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 315, 644, 39, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 253, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 254, 255, 256, 257, 209, 210, 326, 327, 328, 0, 0, 329, 0, 330, 1531, 0, 994, -85, 750, 0, 0, 331, 332, 0, 333, 334, 335, 336, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 0, 0, 0, 312, 313, 314, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 315, 411, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 41, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 46, 47, 48, 49, 209, 210, 326, 327, 328, 0, 0, 329, 306, 330, 1, 307, 107, 308, 0, 309, 310, 331, 332, 0, 333, 334, 335, 336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 872, 28, 0, 0, 0, 0, 312, 313, 314, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 315, 411, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 41, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 46, 47, 48, 49, 209, 210, 326, 327, 328, 0, 0, 329, 306, 330, 1, 307, 107, 308, 0, 309, 310, 331, 332, 0, 333, 334, 335, 336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 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, 1203, 28, 0, 0, 0, 0, 312, 313, 314, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 315, 411, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 41, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 46, 47, 48, 49, 0, 0, 326, 327, 328, 0, 0, 329, 739, 330, 0, 0, 0, 0, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 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, 311, 28, 0, 0, 0, 0, 312, 313, 314, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 315, 411, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 41, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 46, 47, 48, 49, 0, 0, 326, 327, 328, 0, 0, 329, 306, 330, 1, 307, 107, 308, 258, 309, 310, 331, 332, 0, 333, 334, 335, 336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 8, 9, 10, 570, 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, 311, 28, 0, 0, 0, 0, 312, 313, 314, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 315, 411, 39, 40, 0, 306, 0, 1, 307, 107, 308, 0, 309, 310, 317, 0, 41, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 46, 47, 48, 49, 2, 0, 326, 327, 895, 0, 0, 896, 739, 330, 0, 0, 0, 0, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 1124, 1125, 1126, 636, 1127, 1128, 1129, 1130, 641, 642, 1131, 0, 0, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 315, 316, 1132, 0, 646, 647, 648, 0, 0, 0, 0, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 0, 0, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 0, 330, 649, 0, 0, 0, 258, 0, 650, 331, 332, 0, 333, 334, 335, 336, 1845, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1124, 1125, 1126, 636, 1127, 1128, 1129, 1130, 641, 642, 1131, 0, 0, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 315, 316, 1132, 0, 646, 647, 648, 0, 0, 0, 0, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 0, 0, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 0, 330, 649, 0, 0, 0, 258, 0, 650, 331, 332, 0, 333, 334, 335, 336, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 0, 0, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 315, 316, 1132, 0, 646, 647, 648, 0, 0, 0, 0, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 44, 45, 0, 0, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 0, 330, 649, 0, 0, 0, 258, 0, 650, 331, 332, 0, 333, 334, 335, 336, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 1167, 330, 0, 0, 1736, 0, 0, 0, 1883, 331, 332, 0, 333, 334, 335, 336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315, 316, 2015, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 1167, 330, 0, 0, 1736, 0, 0, 0, 1887, 331, 332, 0, 333, 334, 335, 336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 1167, 330, 1866, 0, 1168, 0, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 0, 330, 0, 0, 2069, 2070, 1023, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 2081, 330, 2082, 0, 1163, 0, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 1167, 330, 2080, 0, 1168, 0, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 0, 306, 0, 1, 307, 107, 308, 0, 309, 310, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 315, 316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 0, 0, 0, 0, 0, 326, 327, 328, 311, 0, 329, 0, 330, 0, 312, 313, 314, 750, 0, 0, 331, 332, 751, 333, 334, 335, 336, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 0, 330, 1162, 0, 1163, 0, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 0, 306, 0, 1, 307, 107, 308, 0, 309, 310, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 315, 316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 0, 0, 0, 0, 0, 326, 327, 328, 311, 0, 329, 1273, 330, 0, 312, 313, 314, 750, 0, 0, 331, 332, 0, 333, 334, 335, 336, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 1340, 330, 0, 0, 0, 0, 750, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 0, 306, 0, 1, 307, 107, 308, 0, 309, 310, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 315, 316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 0, 0, 0, 0, 0, 326, 327, 328, 311, 0, 329, 0, 330, 1143, 312, 313, 314, 750, 0, 0, 331, 332, 0, 333, 334, 335, 336, 315, 316, 1622, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 1167, 330, 0, 0, 1168, 0, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 0, 306, 0, 1, 307, 107, 308, 0, 309, 310, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 315, 316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 0, 0, 0, 0, 0, 326, 327, 328, 311, 0, 329, 1623, 330, 1624, 312, 313, 314, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 0, 330, 1632, 0, 1163, 0, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 1702, 330, 0, 0, 1163, 0, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 0, 0, 0, 0, 306, 0, 1, 307, 107, 308, 311, 309, 310, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315, 316, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 0, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 311, 330, 0, 0, 1163, 0, 312, 313, 314, 331, 332, 1730, 333, 334, 335, 336, 0, 0, 0, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 0, 330, 0, 0, 1733, 0, 0, 0, 1734, 331, 332, 0, 333, 334, 335, 336, 0, 0, 0, 0, 0, 306, 0, 1, 307, 107, 308, 311, 309, 310, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315, 316, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 0, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 311, 330, 0, 0, 1163, 0, 312, 313, 314, 331, 332, 1740, 333, 334, 335, 336, 0, 0, 0, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 0, 330, 0, 0, 1733, 0, 0, 0, 1742, 331, 332, 0, 333, 334, 335, 336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 1841, 330, 0, 0, 1163, 0, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 1843, 330, 0, 0, 1163, 0, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 1844, 330, 0, 0, 1168, 0, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 1847, 330, 0, 0, 1163, 0, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 0, 306, 0, 1, 307, 107, 308, 0, 309, 310, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 315, 316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 0, 0, 0, 0, 0, 326, 327, 328, 311, 0, 329, 1623, 330, 1624, 312, 313, 314, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 315, 316, 1867, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 0, 330, 1864, 0, 1163, 0, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 0, 306, 0, 1, 307, 107, 308, 0, 309, 310, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 315, 316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 0, 0, 0, 0, 0, 326, 327, 328, 311, 0, 329, 1868, 330, 1624, 312, 313, 314, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 0, 330, 0, 0, 1733, 0, 0, 0, 1881, 331, 332, 0, 333, 334, 335, 336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 0, 330, 0, 0, 1733, 0, 0, 0, 1885, 331, 332, 0, 333, 334, 335, 336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 2000, 330, 0, 0, 1163, 0, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 1842, 330, 0, 0, 1168, 0, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 2007, 330, 0, 0, 1163, 0, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 0, 306, 0, 1, 307, 107, 308, 0, 309, 310, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 315, 316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 0, 0, 0, 0, 0, 326, 327, 328, 311, 0, 329, 1868, 330, 1624, 312, 313, 314, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 2085, 330, 0, 0, 1163, 0, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 0, 330, 0, 0, 0, 2114, 1023, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 2117, 330, 0, 0, 1163, 0, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 2118, 330, 0, 0, 1163, 0, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 2146, 330, 0, 0, 1163, 0, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 0, 306, 0, 1, 307, 107, 308, 0, 309, 310, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 315, 316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 0, 0, 0, 0, 0, 326, 327, 328, 311, 0, 329, 0, 330, 0, 312, 313, 314, 0, 0, 0, 331, 332, 554, 333, 334, 335, 336, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 0, 330, 0, 0, 0, 0, 750, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 0, 306, 0, 1, 307, 107, 308, 0, 309, 310, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 315, 316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 0, 0, 0, 0, 0, 326, 327, 328, 311, 0, 329, 0, 330, 0, 312, 313, 314, 0, 0, 0, 331, 332, 846, 333, 334, 335, 336, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 0, 330, 0, 0, 0, 0, 0, 0, 0, 331, 332, 850, 333, 334, 335, 336, 0, 0, 306, 0, 1, 307, 107, 308, 0, 309, 310, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 315, 316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 0, 0, 0, 0, 0, 326, 327, 328, 311, 0, 329, 0, 330, 0, 312, 313, 314, 1023, 0, 0, 331, 332, 0, 333, 334, 335, 336, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 0, 330, 0, 0, 0, 0, 0, 0, 0, 331, 332, 1064, 333, 334, 335, 336, 0, 0, 306, 0, 1, 307, 107, 308, 0, 309, 310, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 315, 316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 0, 0, 0, 0, 0, 326, 327, 328, 311, 0, 329, 0, 330, 0, 312, 313, 314, 0, 0, 1116, 331, 332, 0, 333, 334, 335, 336, 315, 316, 1467, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 739, 330, 0, 0, 0, 0, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 0, 306, 0, 1, 307, 107, 308, 0, 309, 310, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 315, 316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 0, 0, 0, 0, 0, 326, 327, 328, 311, 0, 329, 0, 330, 0, 312, 313, 314, 750, 0, 0, 331, 332, 0, 333, 334, 335, 336, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 0, 330, 0, 0, 0, 0, 0, 0, 0, 331, 332, 1570, 333, 334, 335, 336, 0, 0, 306, 0, 1, 307, 107, 308, 0, 309, 310, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 315, 316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 0, 0, 0, 0, 0, 326, 327, 328, 311, 0, 329, 1606, 330, 0, 312, 313, 314, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 0, 330, 0, 0, 0, 0, 0, 0, 1609, 331, 332, 0, 333, 334, 335, 336, 0, 0, 1801, 0, 1, 307, 107, 308, 0, 309, 310, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 315, 316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 0, 0, 0, 0, 0, 326, 327, 328, 311, 0, 329, 0, 330, 0, 312, 313, 314, 1800, 0, 0, 331, 332, 0, 333, 334, 335, 336, 315, 316, 1804, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 0, 330, 0, 0, 0, 0, 750, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 0, 1808, 0, 1, 307, 107, 308, 0, 309, 310, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 315, 316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 0, 0, 0, 0, 0, 326, 327, 328, 311, 0, 329, 0, 330, 0, 312, 313, 314, 750, 0, 0, 331, 332, 0, 333, 334, 335, 336, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 0, 330, 0, 0, 0, 0, 750, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 0, 306, 0, 1, 307, 107, 308, 0, 309, 310, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 315, 316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 0, 0, 0, 0, 0, 326, 327, 328, 311, 0, 329, 1854, 330, 0, 312, 313, 314, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 1914, 0, 330, 0, 0, 0, 0, 1800, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 0, 306, 0, 1, 307, 107, 308, 0, 309, 310, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 315, 316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 0, 0, 0, 0, 0, 326, 327, 328, 311, 0, 329, 2016, 330, 0, 312, 313, 314, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 329, 2076, 330, 0, 0, 0, 0, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 0, 306, 0, 1, 307, 107, 308, 0, 309, 310, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 315, 316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 0, 0, 0, 0, 0, 326, 327, 328, 311, 0, 329, 0, 330, 0, 312, 313, 314, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 315, 316, 306, 0, 1, 307, 107, 308, 0, 309, 310, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 2, 0, 0, 0, 0, 326, 327, 328, 0, 0, 709, 0, 330, 0, 0, 0, 0, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 0, 0, 306, 0, 1, 307, 107, 308, 0, 309, 310, 311, 0, 0, 0, 0, 0, 312, 313, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 315, 316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, 0, 0, 0, 0, 0, 0, 326, 327, 328, 311, 0, 712, 0, 330, 0, 312, 313, 314, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, 315, 316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 0, 0, 0, 318, 319, 320, 321, 322, 323, 324, 325, 0, 0, -897, 589, 0, -897, -897, -897, 326, 327, 328, 0, 0, 735, 0, 330, 0, 0, 0, 0, 0, 0, 0, 331, 332, 0, 333, 334, 335, 336, -897, -897, -897, -897, -897, -897, -897, -897, -897, -897, -897, -897, -897, -897, -897, -897, -897, -897, -897, -897, -897, -897, -897, -897, 0, 0, -897, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -897, -897, 0, -897, 0, 0, -897, -897, 0, -897, -897, 0, 0, -897, -897, -897, -897, -897, -897, 0, -897, -897, -897, -897, 0, 0, -897, -897, -897, -897, 0, -897, 0, -897, -897, -897, 0, -897, -897, -897, -897, -897, -897, -897, 0, -897, -897, -897, -897, -897, -897, -897, -897, -897, 0, -897, 0, 0, -897, 590, -897, -897, 0, 591, -897, 0, 0, 0, -897, -897, -189, 913, 0, -189, -189, -189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -189, -189, -189, -189, -189, -189, -189, -189, -189, -189, -189, -189, -189, -189, -189, -189, -189, -189, -189, -189, -189, -189, -189, -189, 0, 0, -189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -189, -189, 0, -189, 0, 0, -189, -189, 0, -189, -189, 0, 0, -189, -189, -189, -189, -189, -189, 0, -189, -189, -189, -189, 0, 0, -189, -189, -189, -189, 0, -189, 0, -189, -189, -189, 0, -189, -189, -189, -189, -189, -189, -189, 0, -189, -189, -189, -189, -189, -189, -189, -189, -189, 0, -189, 0, 0, -189, 0, -189, 914, 0, 915, -189, 0, 0, 0, -189, -189, -253, 927, 0, 1, 307, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, -253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, -251, 930, -253, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, -251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, -254, 927, -251, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, -254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, -252, 930, -254, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, -252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 428, -252, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 494, 444, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 516, 495, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 521, 517, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 525, 522, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 927, 526, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 930, -752, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 927, -753, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 930, -749, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 927, -750, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 930, -755, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 1046, -756, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 1050, 1047, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 306, 1051, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 927, -649, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 930, -732, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 927, -733, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 930, -735, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 1552, -736, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 927, 1553, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 930, -644, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 927, -645, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 930, -738, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 306, -739, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 306, -648, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 306, -646, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 306, -624, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 927, -623, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 930, -637, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 306, -638, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 927, -647, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 930, -633, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 927, -634, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 930, -621, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 927, -622, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 930, -616, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 927, -617, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 930, -635, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 0, 428, -636, 1, 307, 107, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 0, 52, 0, 0, 441, 0, 442, 443, 494, 0, 1, 307, 107, 0, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 311, 28, 0, 429, 0, 0, 312, 313, 0, 29, 30, 0, 0, 430, 33, 431, 432, 36, 37, 0, 411, 39, 40, 433, 0, 0, 434, 435, 436, 437, 0, 438, 0, 439, 440, 41, 0, 318, 319, 320, 321, 322, 323, 324, 0, 44, 45, 46, 47, 48, 49, 209, 210, 326, 202, 52, 1, 0, 441, 0, 442, 443, 0, 0, 0, 0, 0, 0, 331, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 8, 9, 10, 570, 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, 208, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 209, 210, 0, 202, 52, 1, 0, 571, 1055, 0, 0, 0, 0, 0, 0, 0, 0, 0, 572, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 208, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 209, 210, 1, 0, 52, 0, 0, 868, 1055, 0, 0, 0, 0, 0, 0, 0, 0, 0, 572, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 8, 9, 10, 570, 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, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 209, 210, 1, 0, 52, 0, 0, 571, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 572, 0, 573, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 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, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 209, 210, 1, 0, 52, 0, 0, 868, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 572, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 0, 251, 39, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 254, 255, 256, 257, 209, 210, 1, 0, 52, 0, 0, 868, 0, 0, 0, 0, 0, 0, 1449, 0, 0, 0, 572, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 0, 251, 39, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 254, 255, 256, 257, 209, 210, 1, 0, 52, 0, 0, 1215, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1216, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 0, 251, 39, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 254, 255, 256, 257, 209, 210, 1, 0, 52, 0, 0, 1215, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1238, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 0, 251, 39, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 254, 255, 256, 257, 209, 210, 1, 0, 52, 0, 0, 1215, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1694, 0, 0, 0, 0, 0, 0, 0, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 0, 251, 39, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253, 0, 0, 0, 1, 0, 0, 0, 0, 0, 44, 45, 254, 255, 256, 257, 209, 210, 0, 0, 52, 0, 0, 1215, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1709, 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, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 1, 0, 0, 0, 52, 0, 0, 868, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 572, 0, 0, 0, 0, 0, 0, 2, 3, 4, 277, 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, 27, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 278, 32, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 43, 0, 0, 1, 0, 44, 45, 46, 47, 48, 49, 50, 51, 0, 0, 52, 0, 0, 53, 0, 0, 0, 0, 0, 0, 0, 0, 279, 2, 203, 204, 205, 206, 207, 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, 28, 0, 429, 0, 0, 0, 0, 0, 29, 30, 0, 0, 430, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 1, 0, 44, 45, 46, 47, 48, 49, 209, 210, 0, 0, 52, 0, 0, 955, 0, 442, 0, 0, 0, 0, 0, 0, 956, 2, 203, 204, 205, 206, 207, 8, 9, 10, 570, 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, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 1, 0, 44, 45, 46, 47, 48, 49, 209, 210, 0, 0, 52, 0, 0, 935, 0, 0, 0, 0, 0, 0, 0, 0, 936, 2, 203, 204, 205, 206, 207, 8, 9, 10, 570, 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, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 1517, 0, 0, 0, 44, 45, 46, 47, 48, 49, 209, 210, 0, 0, 52, 0, 0, 53, 0, 0, 0, 0, 0, 0, 0, 0, 936, -66, -66, -66, -66, -66, -66, -66, -66, -66, -66, -66, -66, -66, -66, -66, -66, -66, -66, -66, -66, -66, -66, -66, -66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -66, 0, 0, 0, 0, 0, 0, 0, -66, -66, 0, 0, 0, -66, 0, 0, 0, 0, 0, -66, -66, -66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -66, 0, 0, 1721, 0, 0, 0, 0, 0, 0, -66, -66, -66, -66, -66, -66, -66, -66, 0, 0, 0, 0, 0, 0, 0, 0, 1518, 0, 1519, -66, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 0, 251, 39, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253, 0, 0, 1725, 0, 0, 0, 0, 0, 0, 44, 45, 254, 255, 256, 257, 209, 210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -111, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 0, 251, 39, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253, 0, 0, 1726, 0, 0, 0, 0, 0, 0, 44, 45, 254, 255, 256, 257, 209, 210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -95, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 0, 251, 39, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253, 0, 0, 1832, 0, 0, 0, 0, 0, 0, 44, 45, 254, 255, 256, 257, 209, 210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -96, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 0, 251, 39, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253, 0, 0, 1977, 0, 0, 0, 0, 0, 0, 44, 45, 254, 255, 256, 257, 209, 210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -80, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 0, 251, 39, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253, 0, -1291, 296, 0, 1, 0, 0, 0, 0, 44, 45, 254, 255, 256, 257, 209, 210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -87, 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, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 31, 32, 0, 33, 34, 35, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 42, 1, 0, 0, 43, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 50, 51, 0, 0, 52, 0, 0, 53, 0, 0, 54, 2, 203, 204, 205, 206, 207, 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, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 1, 0, 838, 0, 0, 44, 45, 46, 47, 48, 49, 209, 210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1408, 2, 203, 204, 205, 206, 207, 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, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 1, 0, 838, 0, 0, 44, 45, 46, 47, 48, 49, 209, 210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1752, 2, 203, 204, 205, 206, 207, 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, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, 166, 0, 1, 0, 838, 0, 0, 44, 45, 46, 47, 48, 49, 209, 210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1753, 2, 3, 4, 167, 6, 7, 8, 9, 10, 168, 169, 170, 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, 27, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 166, 0, 1, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 50, 51, 0, 0, 52, 0, 0, 53, 0, 0, 171, 0, 2, 3, 4, 167, 6, 7, 8, 9, 10, 168, 169, 170, 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, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 610, 0, 1, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 50, 51, 0, 0, 52, 0, 0, 53, 0, 0, 171, 0, 2, 203, 204, 205, 206, 207, 237, 238, 239, 611, 612, 613, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 0, 251, 39, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253, -917, 0, -917, 0, 0, 0, 0, 0, 0, 44, 45, 254, 255, 256, 257, 209, 210, 0, 0, 52, 0, 0, 53, 0, 0, 614, 0, -917, -917, -917, -917, -917, -917, -917, -917, -917, -917, -917, -917, -917, -917, -917, -917, -917, -917, -917, -917, -917, -917, -917, -917, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -917, 0, 0, 0, 0, 0, 0, 0, -917, -917, 0, 0, 0, -917, 0, 0, 0, 0, 0, -917, -917, -917, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -917, 0, 1, 0, 0, 0, 0, 0, 0, 0, -917, -917, -917, -917, -917, -917, -917, -917, 0, 0, -917, 0, 0, -917, 0, 0, -917, 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, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 31, 32, 0, 33, 34, 35, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 42, 0, -1292, 288, 43, 1, 0, 0, 0, 44, 45, 46, 47, 48, 49, 50, 51, 0, 0, 52, 0, 0, 53, 0, 0, 54, 0, 0, 0, 0, 2, 3, 4, 167, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 34, 35, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 202, 0, 1, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 50, 51, 0, 0, 52, 0, 0, 53, 2, 203, 204, 205, 206, 207, 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, 208, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 202, 41, 1, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 209, 210, 0, 0, 52, 0, 0, 1215, 1681, 0, 2, 203, 204, 205, 206, 207, 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, 208, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 202, 41, 1, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 209, 210, 0, 0, 0, 0, 0, 0, 211, 0, 2, 203, 204, 205, 206, 207, 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, 208, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 948, 41, 1, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 209, 210, 0, 0, 0, 0, 0, 0, 394, 0, 2, 203, 204, 205, 206, 207, 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, 208, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1475, 41, 1, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 209, 210, 0, 0, 0, 0, 0, 0, 211, 0, 2, 203, 204, 205, 206, 207, 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, 208, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 202, 41, 1, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 209, 210, 0, 0, 0, 0, 0, 0, 394, 0, 2, 203, 204, 205, 206, 207, 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, 208, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 202, 41, 1, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 209, 210, 0, 0, 0, 0, 0, 0, 1567, 0, 2, 203, 204, 205, 206, 207, 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, 208, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 166, 41, 1, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 209, 210, 0, 0, 0, 0, 0, 0, 1904, 0, 2, 3, 4, 167, 6, 7, 8, 9, 10, 570, 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, 27, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 166, 0, 1, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 50, 51, 0, 0, 52, 0, 0, 53, 2, 3, 4, 167, 6, 7, 8, 9, 10, 570, 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, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 892, 0, 1, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 50, 51, 0, 0, 52, 0, 0, 53, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 0, 251, 39, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 254, 255, 256, 257, 209, 210, 0, 0, 0, 0, 0, 893, 2, 3, 4, 167, 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, 27, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 50, 51, 0, 0, 52, 0, 0, 53, 2, 203, 204, 205, 206, 207, 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, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 209, 210, 0, 0, 52, 0, 0, 53, 2, 203, 204, 205, 206, 207, 8, 9, 10, 570, 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, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 209, 210, 0, 0, 52, 0, 0, 53, 2, 203, 204, 205, 206, 207, 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, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 209, 210, 0, 0, 0, 0, 0, 727, 2, 203, 204, 205, 206, 207, 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, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 209, 210, 0, 0, 0, 0, 0, 1454, 2, 203, 204, 205, 206, 207, 237, 238, 239, 1539, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 0, 251, 39, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1078, 0, 1, 253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 254, 255, 256, 257, 209, 210, 0, 0, 52, 0, 0, 53, 2, 203, 204, 205, 206, 207, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 1079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 1084, 0, 1, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 209, 210, 2, 203, 204, 205, 206, 207, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 1085, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 1090, 0, 1, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 209, 210, 2, 203, 204, 205, 206, 207, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 1091, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 877, 0, 1, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 209, 210, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 0, 251, 39, 252, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 254, 255, 256, 257, 209, 210, 2, 203, 204, 205, 206, 207, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 1039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 209, 210, 2, 203, 204, 205, 206, 207, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 1096, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 209, 210, 2, 203, 204, 205, 206, 207, 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, 508, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 209, 210, 2, 203, 204, 205, 206, 207, 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, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 838, 0, 0, 44, 45, 46, 47, 48, 49, 209, 210, 2, 203, 204, 205, 206, 207, 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, 208, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 209, 210, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 483, 484, 0, 0, 0, 251, 39, 252, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 254, 255, 256, 257, 209, 210, 2, 203, 204, 205, 206, 207, 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, 28, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 46, 47, 48, 49, 209, 210, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 0, 251, 39, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 254, 255, 256, 257, 209, 210, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 0, 251, 39, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 254, 255, 256, 257, 209, 210, 0, 0, 52, 0, 0, 868, 1678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 572, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 0, 251, 39, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 254, 255, 256, 257, 209, 210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 258, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 0, 251, 39, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 254, 255, 256, 257, 209, 210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1528, 2, 203, 204, 205, 206, 207, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 19, 20, 248, 249, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250, 0, 0, 0, 0, 0, 0, 0, 29, 30, 0, 0, 0, 33, 0, 0, 0, 0, 0, 251, 39, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 254, 255, 256, 257, 209, 210
};
static const yytype_int16 yycheck[] =
{
0, 87, 93, 648, 541, 87, 726, 867, 1006, 133, 1225, 475, 274, 84, 157, 475, 934, 728, 143, 750, 934, 349, 867, 145, 133, 154, 757, 101, 476, 760, 155, 31, 32, 1023, 159, 1005, 158, 1007, 160, 129, 162, 867, 42, 129, 84, 292, 94, 129, 101, 1108, 31, 94, 129, 53, 94, 17, 750, 65, 1616, 843, 60, 185, 43, 757, 84, 65, 760, 67, 834, 2102, 1628, 85, 479, 5, 349, 84, 185, 188, 189, 834, 1005, 1, 1007, 83, 84, 85, 1, 87, 944, 966, 843, 801, 92, 94, 94, 1, 1, 188, 189, 84, 101, 101, 102, 1, 1005, 105, 1007, 124, 1, 94, 332, 5, 124, 3, 114, 1, 101, 117, 135, 829, 131, 1, 133, 135, 60, 2158, 766, 108, 109, 129, 1, 112, 132, 133, 1, 1, 3, 137, 28, 122, 985, 141, 142, 143, 269, 145, 3, 37, 5, 149, 1, 151, 3, 17, 154, 155, 145, 157, 158, 159, 160, 561, 162, 274, 5, 165, 1, 3, 176, 158, 3, 160, 812, 162, 348, 17, 176, 3, 114, 5, 586, 272, 293, 145, 1, 185, 3, 312, 362, 3, 1, 591, 366, 318, 594, 3, 596, 5, 598, 1, 1, 201, 124, 135, 124, 7, 8, 9, 1005, 3, 1007, 282, 127, 213, 3, 215, 1, 1, 292, 3, 294, 292, 423, 223, 224, 130, 3, 133, 475, 127, 1, 129, 130, 233, 124, 1, 236, 130, 1, 292, 134, 294, 887, 1, 130, 135, 294, 127, 274, 129, 130, 294, 292, 53, 294, 269, 1005, 1006, 1007, 130, 1258, 3, 282, 130, 130, 201, 1, 1265, 125, 269, 3, 1269, 292, 282, 274, 399, 133, 1, 278, 130, 3, 145, 282, 426, 292, 3, 1, 884, 124, 1259, 399, 132, 292, 294, 294, 130, 1266, 278, 131, 125, 1270, 1859, 3, 145, 429, 124, 1, 133, 3, 294, 28, 125, 312, 130, 515, 440, 135, 125, 318, 130, 0, 17, 124, 124, 125, 133, 128, 3, 129, 329, 132, 125, 132, 135, 1259, 129, 125, 1214, 3, 133, 129, 1266, 127, 343, 133, 1270, 130, 3, 125, 802, 331, 74, 28, 803, 445, 446, 447, 448, 1259, 130, 5, 124, 125, 28, 130, 1266, 129, 492, 124, 1270, 571, 5, 130, 74, 7, 8, 9, 830, 672, 673, 5, 831, 1113, 125, 124, 385, 386, 5, 121, 122, 476, 391, 3, 393, 476, 130, 91, 78, 131, 399, 735, 5, 1, 738, 84, 405, 130, 130, 670, 671, 672, 673, 536, 131, 94, 130, 1013, 28, 418, 1113, 884, 101, 102, 423, 224, 425, 426, 536, 552, 429, 430, 891, 3, 562, 1200, 435, 1202, 1, 438, 439, 440, 441, 442, 552, 566, 1200, 568, 1202, 124, 145, 1, 542, 133, 3, 545, 391, 703, 393, 786, 787, 788, 3, 1259, 131, 870, 133, 131, 3, 5, 1266, 470, 471, 472, 1270, 1689, 475, 476, 586, 28, 479, 944, 571, 482, 657, 129, 541, 660, 487, 816, 817, 818, 491, 492, 941, 571, 129, 496, 497, 127, 132, 125, 965, 135, 74, 1215, 965, 1, 125, 508, 1258, 1259, 786, 787, 788, 514, 515, 1265, 1266, 518, 519, 1269, 1270, 1233, 523, 524, 1584, 125, 527, 528, 1240, 129, 531, 532, 533, 534, 3, 536, 5, 130, 539, 1, 816, 817, 818, 224, 952, 747, 954, 130, 1013, 550, 551, 552, 1013, 1431, 1545, 556, 3, 780, 130, 28, 561, 562, 1, 3, 129, 566, 1427, 568, 569, 3, 571, 572, 573, 1, 131, 576, 566, 129, 568, 3, 131, 1427, 1439, 3, 807, 586, 698, 699, 131, 127, 591, 1590, 815, 594, 131, 596, 3, 598, 724, 725, 1427, 282, 728, 729, 605, 7, 8, 9, 129, 3, 5, 292, 835, 294, 135, 1, 1494, 3, 130, 1538, 1591, 3, 1479, 1538, 1, 1482, 1411, 1412, 703, 125, 1, 703, 891, 129, 726, 572, 884, 638, 121, 640, 441, 3, 66, 670, 671, 672, 673, 648, 329, 703, 124, 1512, 5, 1060, 391, 1, 393, 1411, 1412, 7, 8, 9, 131, 125, 1071, 1591, 868, 129, 605, 670, 671, 672, 673, 875, 121, 122, 1077, 0, 1505, 1895, 1507, 883, 703, 804, 131, 124, 125, 688, 689, 1591, 129, 131, 894, 127, 1095, 129, 697, 121, 122, 127, 5, 129, 703, 685, 686, 125, 965, 131, 709, 766, 137, 832, 1703, 129, 121, 122, 717, 965, 128, 805, 136, 128, 124, 724, 725, 726, 727, 728, 729, 124, 132, 125, 3, 135, 735, 121, 122, 738, 3, 3, 122, 1473, 423, 129, 135, 127, 747, 833, 125, 731, 732, 733, 129, 801, 125, 812, 124, 883, 129, 121, 122, 127, 763, 28, 28, 1013, 767, 135, 894, 131, 571, 124, 573, 37, 1773, 129, 124, 868, 1473, 125, 304, 829, 129, 129, 132, 799, 800, 135, 804, 313, 868, 12, 13, 1591, 475, 319, 129, 84, 85, 129, 7, 8, 9, 1774, 3, 7, 8, 9, 809, 1800, 1688, 129, 813, 827, 828, 1693, 832, 7, 8, 9, 1811, 1116, 138, 139, 1119, 917, 918, 3, 920, 973, 974, 923, 924, 802, 515, 572, 803, 838, 839, 840, 1590, 1591, 843, 844, 845, 132, 130, 805, 1774, 979, 941, 122, 123, 1116, 941, 978, 1119, 1059, 941, 124, 124, 830, 1157, 941, 831, 866, 867, 868, 7, 8, 9, 872, 1774, 874, 875, 833, 1171, 1172, 1173, 1174, 1758, 882, 883, 884, 131, 11, 887, 1013, 3, 3, 891, 5, 893, 894, 1157, 896, 633, 898, 70, 71, 142, 122, 123, 145, 996, 1762, 1763, 130, 1171, 1172, 1173, 1174, 3, 28, 1044, 1045, 158, 31, 160, 122, 162, 128, 121, 122, 127, 132, 1255, 354, 130, 128, 132, 1054, 3, 124, 935, 1060, 937, 128, 1799, 125, 941, 93, 132, 944, 135, 121, 122, 121, 949, 129, 1060, 952, 125, 954, 955, 135, 3, 28, 130, 1069, 122, 1071, 130, 964, 965, 966, 1023, 141, 142, 131, 1682, 133, 973, 974, 1439, 976, 1774, 978, 979, 1255, 124, 1072, 269, 984, 985, 986, 987, 3, 978, 5, 1711, 799, 800, 132, 1072, 282, 124, 123, 425, 124, 1991, 122, 1648, 129, 75, 76, 78, 1545, 1210, 80, 131, 1213, 1013, 1474, 1479, 31, 87, 1482, 1425, 827, 828, 123, 703, 1773, 1774, 84, 122, 129, 709, 128, 121, 122, 124, 124, 1912, 131, 188, 189, 124, 1262, 111, 112, 121, 1044, 1045, 726, 127, 1048, 1049, 3, 131, 1052, 1053, 1054, 735, 1056, 1975, 738, 1059, 1060, 131, 125, 141, 142, 1054, 129, 747, 1190, 1069, 133, 1071, 1072, 1073, 122, 121, 122, 1077, 124, 2069, 1080, 129, 0, 1083, 124, 123, 1086, 135, 1213, 1089, 1116, 129, 1092, 1119, 127, 1095, 896, 1097, 131, 561, 1873, 125, 3, 1159, 5, 129, 124, 1163, 1233, 133, 1166, 1111, 1168, 66, 124, 1240, 1116, 124, 123, 1119, 2110, 272, 80, 274, 129, 1215, 124, 185, 1128, 591, 1130, 1157, 594, 124, 596, 935, 598, 1073, 1215, 1139, 3, 131, 293, 133, 123, 1171, 1172, 1173, 1174, 949, 129, 1557, 1152, 111, 112, 955, 123, 1157, 1158, 124, 840, 1987, 129, 1989, 123, 28, 84, 1148, 121, 122, 129, 1171, 1172, 1173, 1174, 133, 94, 131, 12, 13, 123, 704, 45, 101, 102, 1, 129, 3, 125, 1189, 1190, 1191, 129, 1193, 1914, 875, 133, 131, 125, 133, 936, 1190, 129, 1203, 884, 1205, 133, 3, 10, 11, 1210, 891, 75, 76, 1214, 1215, 896, 131, 898, 133, 121, 122, 304, 1424, 282, 6, 131, 8, 9, 470, 471, 313, 1877, 1233, 292, 14, 15, 319, 123, 975, 1240, 789, 790, 137, 129, 531, 532, 533, 534, 1249, 138, 139, 2025, 128, 2027, 496, 497, 1, 133, 1059, 10, 11, 125, 128, 550, 551, 129, 1203, 133, 949, 123, 819, 820, 143, 1811, 1256, 129, 518, 519, 75, 76, 16, 523, 524, 80, 965, 527, 528, 122, 123, 127, 87, 129, 74, 445, 70, 71, 448, 1762, 1763, 123, 123, 1596, 1597, 85, 3, 129, 129, 3, 89, 90, 91, 144, 123, 1608, 111, 112, 92, 2091, 129, 2093, 96, 2095, 98, 127, 566, 129, 568, 124, 110, 28, 75, 76, 28, 1596, 1597, 80, 1073, 125, 120, 3, 122, 129, 87, 3, 123, 1608, 45, 11, 1755, 45, 129, 11, 125, 135, 130, 144, 138, 139, 140, 2133, 2134, 125, 2136, 282, 16, 129, 111, 112, 795, 796, 1, 798, 3, 292, 1576, 294, 75, 76, 2152, 75, 76, 125, 127, 128, 129, 129, 80, 1124, 125, 127, 542, 129, 129, 545, 137, 2169, 823, 824, 825, 826, 125, 1402, 1403, 125, 129, 1406, 1407, 129, 143, 125, 1411, 1412, 1819, 129, 915, 916, 475, 111, 112, 3, 125, 125, 1423, 1, 129, 1407, 1427, 1428, 131, 125, 1431, 155, 1557, 127, 131, 159, 1437, 131, 1439, 866, 867, 1442, 125, 125, 28, 1446, 129, 1557, 14, 15, 1451, 1452, 1453, 1991, 131, 1565, 133, 121, 122, 123, 2106, 121, 122, 123, 128, 129, 125, 131, 128, 129, 129, 131, 125, 1474, 131, 1476, 133, 536, 1479, 1216, 539, 1482, 791, 792, 1485, 1, 124, 3, 1545, 915, 916, 75, 76, 1494, 131, 3, 80, 75, 76, 1500, 1501, 1238, 80, 87, 1505, 1506, 1507, 1508, 1, 87, 3, 430, 821, 822, 127, 1, 137, 3, 670, 671, 672, 673, 1, 129, 3, 3, 127, 111, 112, 1210, 127, 2069, 129, 111, 112, 789, 790, 122, 131, 966, 133, 122, 142, 791, 792, 145, 698, 699, 700, 127, 28, 129, 1847, 1554, 1555, 127, 1557, 129, 158, 37, 160, 131, 162, 133, 1565, 819, 820, 75, 76, 1596, 1597, 122, 80, 821, 822, 1576, 550, 551, 3, 87, 1519, 1608, 1521, 1519, 1847, 1521, 11, 128, 670, 671, 670, 671, 129, 1795, 136, 1596, 1597, 75, 76, 1690, 101, 102, 80, 111, 112, 1606, 131, 1608, 1609, 87, 136, 1612, 1690, 136, 1077, 1616, 844, 845, 131, 1620, 1083, 704, 1623, 131, 131, 135, 1089, 129, 131, 129, 129, 129, 1095, 111, 112, 130, 127, 1619, 697, 133, 1, 124, 124, 121, 703, 125, 124, 1648, 124, 124, 127, 124, 1453, 1635, 1655, 127, 127, 135, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 127, 1790, 127, 1792, 127, 1728, 1764, 915, 916, 1476, 1733, 535, 131, 1736, 531, 532, 533, 534, 122, 130, 136, 1688, 136, 1690, 136, 135, 1693, 1816, 1819, 1818, 121, 122, 123, 550, 551, 136, 136, 136, 129, 131, 131, 122, 131, 1819, 1711, 127, 1713, 1714, 75, 76, 1717, 130, 129, 80, 122, 2016, 130, 2018, 3, 130, 87, 125, 125, 125, 136, 125, 136, 354, 124, 136, 978, 125, 125, 124, 133, 133, 133, 1800, 124, 124, 1483, 57, 1749, 28, 111, 112, 1975, 2016, 1811, 2018, 127, 1758, 37, 127, 127, 1762, 1763, 127, 1765, 124, 127, 128, 129, 122, 122, 125, 1059, 122, 125, 1576, 1777, 124, 124, 135, 122, 2110, 125, 133, 703, 125, 125, 1214, 129, 1790, 2085, 1792, 129, 125, 1795, 1476, 75, 76, 1, 135, 1790, 80, 1792, 129, 425, 130, 1048, 1049, 87, 125, 1052, 1053, 1054, 133, 133, 1816, 133, 1818, 1819, 125, 1847, 125, 2085, 125, 127, 884, 1816, 128, 1818, 125, 130, 125, 111, 112, 2110, 125, 125, 136, 136, 136, 1841, 1842, 1843, 1844, 996, 124, 1847, 133, 133, 57, 1851, 1852, 124, 1854, 125, 1856, 135, 124, 124, 717, 133, 1984, 125, 133, 133, 133, 125, 1868, 125, 3, 470, 471, 75, 76, 125, 125, 1877, 80, 125, 1880, 136, 136, 482, 122, 87, 944, 135, 127, 136, 1871, 136, 1873, 750, 135, 28, 1576, 496, 497, 11, 757, 75, 76, 760, 37, 131, 80, 965, 128, 111, 112, 133, 1912, 87, 1914, 131, 133, 127, 124, 518, 519, 125, 124, 125, 523, 524, 127, 129, 527, 528, 128, 128, 131, 125, 125, 1991, 136, 111, 112, 65, 75, 76, 75, 76, 125, 80, 136, 80, 1189, 1190, 136, 136, 87, 136, 87, 1013, 1692, 131, 1694, 136, 136, 136, 125, 125, 125, 1116, 125, 566, 1119, 568, 65, 127, 1708, 1709, 125, 125, 111, 112, 111, 112, 127, 136, 1982, 1983, 1984, 1985, 1986, 1987, 121, 1989, 2016, 124, 2018, 128, 136, 1984, 1996, 1997, 1998, 1999, 133, 1427, 136, 127, 136, 1431, 1157, 2007, 2099, 2100, 127, 136, 127, 2069, 125, 131, 2016, 3, 2018, 2019, 1171, 1172, 1173, 1174, 37, 127, 127, 127, 2028, 2029, 127, 1711, 45, 46, 127, 127, 127, 0, 125, 127, 482, 127, 28, 1194, 2025, 1196, 2027, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 127, 2141, 2085, 1508, 482, 75, 76, 482, 2065, 2066, 80, 1494, 482, 921, 482, 2072, 2073, 87, 984, 2076, 866, 2078, 42, 292, 2081, 812, 75, 76, 2085, 1512, 292, 80, 75, 76, 75, 76, 976, 80, 87, 80, 60, 111, 112, 2100, 87, 2102, 87, 67, 1474, 2106, 440, 121, 2090, 2091, 729, 2093, 430, 2095, 1795, 1800, 269, 2118, 111, 112, 84, 318, 2090, 87, 111, 112, 111, 112, 121, 93, 94, 124, 1191, 101, 1193, 94, 274, 101, 102, 94, 2141, 2142, 2124, 94, 131, 2146, 102, 1005, 1006, 1007, 114, 2133, 2134, 117, 2136, 1749, 128, 2158, -1, -1, -1, -1, -1, -1, -1, 129, 1453, -1, -1, -1, 2152, -1, -1, 137, 795, 796, 1913, 798, 142, 143, -1, 145, -1, -1, -1, 1922, -1, 2169, -1, -1, -1, 155, -1, 157, 158, 159, 160, -1, 162, -1, -1, -1, 823, 824, 825, 826, -1, -1, -1, -1, 1734, 1735, -1, 1737, 1738, -1, -1, -1, 1742, 1743, 1744, 1745, -1, 313, 188, 189, -1, -1, -1, 319, -1, -1, -1, 1914, -1, -1, -1, 201, -1, -1, -1, -1, 1979, 1980, -1, 866, 867, -1, -1, -1, -1, 215, -1, 45, 46, 1113, 45, 46, 1500, 1501, 224, 1688, -1, -1, -1, -1, 1693, -1, 7, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, -1, -1, -1, -1, 75, 76, -1, 75, 76, 80, 470, 471, 80, -1, -1, -1, 87, -1, -1, 87, 272, 273, 391, -1, 393, -1, 269, -1, -1, 272, 273, 274, -1, 1554, 1555, -1, 496, 497, -1, 282, 111, 112, -1, 111, 112, -1, -1, -1, -1, 292, 293, 294, 1758, 124, -1, -1, 124, -1, 518, 519, 75, 76, -1, 523, 524, 80, 966, 527, 528, 312, -1, -1, 87, -1, -1, 318, -1, -1, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 329, -1, -1, -1, -1, -1, -1, 1799, -1, -1, 111, 112, 1529, 978, -1, 1439, -1, -1, 122, 123, 121, -1, -1, 124, -1, -1, -1, -1, 132, -1, 0, -1, -1, -1, 135, 1258, 1259, 141, 142, 143, 144, 145, 1265, 1266, -1, -1, 1269, 1270, -1, -1, -1, -1, -1, -1, -1, 1479, -1, 386, 1482, -1, -1, -1, 391, -1, 393, -1, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, -1, -1, 87, 1596, 1597, -1, -1, 1048, 1049, -1, 1975, 1052, 1053, 1054, -1, 1608, -1, -1, 423, -1, 425, 426, -1, -1, 429, 430, 111, 112, -1, -1, 435, 470, 471, -1, 439, 440, -1, 442, 84, -1, 125, 572, -1, -1, 1912, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, 101, 102, 496, 497, -1, -1, -1, -1, -1, -1, 470, 471, -1, -1, -1, 475, 476, -1, -1, 3, -1, -1, 482, -1, 518, 519, -1, 487, -1, 523, 524, -1, 492, 527, 528, -1, 496, 497, -1, -1, -1, -1, -1, -1, 28, -1, -1, 633, -1, -1, -1, -1, 1790, 37, 1792, 515, -1, -1, 518, 519, -1, -1, -1, 523, 524, -1, -1, 527, 528, -1, -1, -1, -1, 542, -1, 535, 545, -1, 1816, -1, 1818, -1, 542, -1, -1, 545, -1, -1, -1, -1, -1, 75, 76, 1189, 1190, -1, 80, 1214, -1, -1, -1, 561, -1, 87, -1, -1, 566, -1, 568, -1, -1, 571, 572, -1, -1, -1, -1, 75, 76, 1473, -1, -1, 80, 224, -1, -1, -1, 111, 112, 87, -1, 591, -1, -1, 594, -1, 596, 121, 598, -1, 124, 125, -1, -1, -1, 605, -1, -1, -1, -1, -1, -1, -1, 111, 112, 1734, 1735, -1, 1737, 1738, -1, -1, -1, 1742, 1743, 1744, 1745, 125, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, 282, -1, 80, -1, -1, -1, -1, -1, -1, 87, 292, -1, 294, -1, -1, -1, -1, -1, 1847, -1, 670, 671, 672, 673, -1, -1, 1762, 1763, -1, 670, 671, 672, 673, 111, 112, -1, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 125, -1, -1, 700, -1, -1, -1, -1, 1590, 1591, 698, 699, 700, -1, -1, 703, 1982, 1983, 1984, 1985, 1986, 709, 45, 46, 3, -1, -1, -1, -1, 717, 1996, 1997, 1998, 1999, 75, 76, 724, 725, 726, 80, 728, 729, -1, -1, -1, -1, 87, 735, -1, 28, 738, -1, 75, 76, -1, -1, -1, 80, 37, 747, -1, -1, 750, -1, 87, -1, -1, -1, -1, 757, 111, 112, 760, -1, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1427, -1, 125, -1, 1431, -1, 111, 112, -1, -1, -1, -1, 423, -1, 75, 76, 121, 2065, 2066, 80, -1, -1, 122, 123, -1, -1, 87, -1, -1, -1, -1, -1, 132, -1, -1, -1, -1, 137, 138, 139, 936, 141, 142, 143, 144, 145, 3, -1, -1, -1, 111, 112, -1, -1, -1, -1, -1, -1, 2016, -1, 2018, 1048, 1049, 124, 475, 1052, 1053, 1494, -1, -1, 840, 28, -1, 843, 844, 845, -1, -1, -1, 975, 37, 38, 39, -1, -1, 1512, 1975, -1, -1, -1, -1, -1, 272, 273, 1500, 1501, 866, 867, 868, -1, -1, -1, -1, -1, 515, 875, -1, -1, 3, 1773, 1774, -1, -1, 883, 884, -1, -1, -1, 75, 76, -1, 891, -1, 80, 894, -1, 896, 2085, 898, -1, 87, -1, -1, 28, -1, -1, -1, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, 1554, 1555, -1, -1, -1, -1, 111, 112, -1, -1, -1, -1, -1, -1, -1, -1, 121, -1, -1, 124, -1, -1, -1, 941, -1, 0, -1, -1, -1, 1073, -1, 949, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, 965, 966, -1, -1, -1, -1, -1, -1, 973, 974, -1, -1, -1, 978, -1, -1, -1, -1, -1, 984, -1, 111, 112, -1, -1, -1, -1, -1, -1, -1, -1, 121, -1, 1124, 124, -1, -1, -1, -1, -1, 1005, 1006, 1007, -1, -1, -1, -1, -1, 1013, 1048, 1049, -1, -1, 1052, 1053, -1, -1, -1, -1, -1, -1, -1, 84, -1, -1, -1, 1688, -1, -1, -1, -1, 1693, 94, -1, -1, -1, -1, -1, -1, 101, 102, -1, -1, 1048, 1049, -1, -1, 1052, 1053, 1054, -1, -1, -1, -1, -1, -1, -1, 703, -1, -1, -1, -1, -1, 709, -1, -1, -1, 1072, 1073, -1, -1, -1, 1077, -1, -1, -1, -1, -1, 1083, -1, -1, 143, -1, -1, 1089, 1216, -1, -1, -1, 735, 1095, -1, 738, 155, -1, -1, 1758, 159, -1, -1, -1, -1, 1116, -1, -1, 1119, -1, 1238, 1113, -1, -1, 1116, -1, -1, 1119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 542, -1, -1, 545, -1, -1, -1, -1, -1, -1, 1799, -1, 0, -1, -1, -1, 1157, -1, -1, -1, -1, -1, 1790, -1, 1792, 1157, -1, -1, -1, -1, 1171, 1172, 1173, 1174, -1, -1, -1, -1, -1, 1171, 1172, 1173, 1174, 142, -1, -1, 145, -1, 1816, -1, 1818, 113, -1, 1194, -1, 1196, -1, 1189, 1190, 158, -1, 160, 1194, 162, 1196, 53, -1, 840, -1, -1, -1, 1203, -1, -1, -1, -1, -1, -1, 1210, -1, -1, 1213, 1214, 1215, -1, -1, -1, -1, -1, -1, -1, -1, -1, 282, -1, 83, 84, 85, -1, -1, -1, 1233, 875, 292, 92, 294, 94, -1, 1240, -1, -1, 884, -1, 101, 102, -1, -1, -1, 891, -1, -1, -1, -1, 1912, -1, 898, 1258, 1259, 670, 671, 672, 673, -1, 1265, 1266, -1, -1, 1269, 1270, 201, -1, -1, -1, -1, 132, 133, 134, 135, 136, -1, -1, 1500, 1501, -1, 142, -1, -1, 145, 700, -1, -1, -1, -1, -1, 1, -1, 3, -1, -1, -1, 158, -1, 160, -1, 162, -1, 949, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 965, -1, -1, -1, -1, 185, 186, 187, 37, 38, 39, -1, -1, 1554, 1555, -1, -1, -1, -1, -1, -1, -1, 1982, 1983, 1984, 1985, 1986, -1, -1, -1, -1, -1, 0, 1483, -1, -1, 1996, 1997, 1998, 1999, -1, -1, -1, 223, 224, -1, 75, 76, 429, -1, -1, 80, -1, -1, -1, -1, -1, -1, 87, 440, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 332, -1, -1, -1, 111, 112, -1, 53, -1, 1411, 1412, 269, -1, -1, 121, -1, -1, 124, -1, -1, 127, -1, 129, 130, 282, 1427, -1, 2065, 2066, 1431, -1, -1, -1, 492, 292, -1, 294, -1, 84, 85, -1, -1, -1, -1, -1, -1, 92, -1, 94, -1, -1, -1, -1, -1, -1, 101, 102, -1, -1, 391, -1, 393, -1, -1, 1500, 1501, -1, -1, -1, -1, -1, 1473, -1, -1, 1476, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 132, 133, -1, -1, -1, -1, 1494, -1, -1, -1, -1, -1, 1500, 1501, -1, 470, 471, 1505, 1506, 1507, 1508, -1, -1, -1, -1, -1, -1, 482, -1, -1, -1, -1, 1554, 1555, -1, -1, -1, -1, -1, -1, -1, 496, 497, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 185, -1, 399, 400, 401, -1, -1, -1, -1, -1, 518, 519, -1, 1554, 1555, 523, 524, -1, -1, 527, 528, 1203, -1, -1, -1, 1692, 423, 1694, 1210, -1, -1, -1, -1, 430, -1, 1576, 274, -1, -1, -1, -1, 1708, 1709, -1, 441, -1, 1596, 1597, 233, 1590, 1591, 236, -1, -1, -1, 1596, 1597, -1, 566, 1609, 568, -1, 1612, -1, 535, -1, -1, -1, 1609, -1, 1620, 1612, -1, 470, 471, -1, -1, -1, 475, 1620, -1, -1, 479, -1, 269, 482, -1, -1, -1, -1, -1, -1, -1, 0, 491, -1, -1, 282, -1, 496, 497, 572, -1, -1, -1, 703, -1, 292, -1, 294, -1, -1, -1, -1, 1655, -1, -1, -1, 515, -1, -1, 518, 519, -1, -1, -1, 523, 524, -1, -1, 527, 528, -1, 604, 531, 532, 533, 534, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1688, -1, 1690, -1, -1, 1693, 550, 551, -1, -1, -1, -1, -1, -1, -1, 633, -1, -1, 1116, -1, -1, 1119, 566, 1711, 568, -1, -1, 571, -1, 573, 84, -1, -1, 0, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, 588, -1, -1, 101, 102, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1157, 445, -1, -1, -1, -1, -1, -1, 399, -1, -1, 1758, -1, -1, 1171, 1172, 1173, 1174, 1982, 1983, -1, 1985, 1986, -1, -1, -1, 1773, 1774, -1, -1, 143, -1, 1996, 1997, 1998, 1999, -1, 1194, -1, 1196, 1913, -1, 155, 1790, -1, 1792, 159, -1, 1795, 1922, 441, -1, -1, 730, -1, -1, -1, 734, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, 94, 1816, -1, 1818, -1, 750, -1, 101, 102, -1, -1, 883, 757, -1, -1, 760, -1, -1, -1, -1, 1476, -1, 894, -1, -1, -1, 697, 1851, 1852, -1, -1, -1, 703, 2065, 2066, 780, 1851, 1852, 1979, 1980, -1, -1, -1, -1, -1, -1, -1, -1, -1, 143, -1, -1, -1, 724, -1, -1, -1, 728, -1, -1, -1, 155, 807, -1, -1, 159, -1, -1, -1, -1, 815, -1, 531, 532, 533, 534, 747, 536, -1, -1, 539, -1, -1, -1, -1, -1, -1, -1, -1, -1, 835, 550, 551, 552, -1, -1, -1, 1912, -1, 1914, -1, 282, -1, -1, -1, -1, -1, -1, -1, -1, -1, 292, 571, 294, -1, -1, -1, -1, -1, -1, 1576, -1, -1, -1, -1, -1, 638, -1, -1, -1, -1, -1, -1, 1982, 1983, -1, 1985, 1986, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1996, 1997, 1998, 1999, -1, -1, -1, -1, -1, -1, -1, 670, 671, 672, 673, -1, -1, -1, -1, -1, 1982, 1983, 1984, 1985, 1986, 1987, -1, 1989, -1, -1, -1, -1, -1, -1, 1996, 1997, 1998, 1999, -1, -1, -1, 282, 934, -1, 936, -1, -1, -1, -1, 978, 868, 292, -1, 294, -1, -1, -1, 875, -1, -1, -1, -1, -1, -1, 882, 883, 884, -1, -1, 2065, 2066, -1, -1, 891, 113, -1, 894, -1, 896, -1, -1, -1, -1, 975, -1, -1, -1, -1, -1, -1, -1, 697, -1, -1, -1, -1, -1, 703, 137, -1, -1, 429, -1, 2065, 2066, -1, -1, -1, -1, -1, -1, -1, 440, 1005, -1, 1007, -1, 935, -1, 1048, 1049, -1, -1, 1052, 1053, 1054, 944, -1, -1, -1, -1, 949, -1, -1, -1, -1, -1, 955, -1, -1, -1, -1, -1, -1, -1, -1, -1, 965, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 978, -1, 201, -1, 492, -1, -1, -1, -1, -1, 988, 1, -1, 3, -1, -1, -1, -1, -1, -1, -1, 1073, -1, -1, -1, -1, -1, -1, 429, -1, -1, -1, 1795, -1, -1, 1013, -1, -1, 28, 440, -1, -1, -1, -1, -1, -1, -1, 37, 38, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1113, -1, -1, 1596, 1597, -1, -1, -1, -1, 1048, 1049, 1124, -1, 1052, 1053, 1054, 1609, -1, -1, 1612, 1059, 1060, -1, -1, 75, 76, -1, 1620, -1, 80, 492, 1070, -1, -1, -1, -1, 87, 1150, 1151, 1189, 1190, -1, -1, -1, 304, -1, -1, -1, 308, 309, 310, -1, -1, 313, -1, -1, -1, -1, -1, 319, 111, 112, -1, -1, -1, 325, -1, 947, -1, 896, 121, -1, 332, 124, -1, -1, 127, -1, 129, 130, -1, -1, -1, -1, -1, -1, -1, -1, -1, 349, -1, -1, -1, -1, 354, -1, -1, -1, -1, -1, -1, -1, -1, 1216, -1, -1, -1, -1, 935, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1238, -1, -1, 955, -1, -1, 391, -1, 393, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1259, -1, -1, 1262, 1189, 1190, -1, 1266, 703, -1, -1, 1270, -1, -1, -1, -1, -1, -1, -1, 425, -1, -1, -1, -1, -1, 1210, -1, -1, 1213, -1, 1215, -1, -1, -1, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, 1233, -1, -1, -1, -1, -1, -1, 1240, -1, -1, -1, -1, -1, 28, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1059, 1060, -1, -1, 1116, -1, -1, 1119, -1, 703, -1, -1, -1, 66, -1, -1, 1128, -1, -1, 72, 73, 74, -1, -1, -1, -1, 1851, 1852, -1, -1, -1, -1, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, 535, -1, 1157, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, 1171, 1172, 1173, 1174, -1, -1, -1, 119, 120, 121, -1, -1, 124, 125, 126, -1, -1, 129, -1, -1, -1, 572, 134, 135, 136, 137, 138, 139, 140, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 883, -1, -1, -1, -1, -1, -1, -1, -1, -1, 604, 894, -1, -1, -1, -1, 1500, 1501, -1, -1, -1, -1, -1, -1, -1, -1, 1473, -1, -1, -1, 1191, -1, 1193, -1, -1, -1, 1483, -1, -1, 633, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1424, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1439, 1514, -1, -1, 1554, 1555, 1519, 1446, 1521, -1, -1, -1, -1, -1, 1453, -1, -1, -1, -1, -1, -1, 883, -1, -1, -1, 1538, -1, -1, -1, -1, -1, -1, 894, -1, -1, 1474, -1, 1476, -1, -1, -1, -1, -1, -1, 704, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1500, 1501, -1, -1, -1, -1, -1, -1, -1, 730, -1, -1, -1, 734, -1, -1, -1, 1591, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 750, -1, -1, -1, -1, -1, -1, 757, -1, -1, 760, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1554, 1555, -1, 1557, -1, 780, -1, -1, -1, -1, -1, 786, 787, 788, 789, 790, 791, 792, -1, -1, 795, 796, 1576, 798, 799, 800, 801, 802, 803, 804, 805, -1, 807, -1, -1, -1, -1, -1, -1, -1, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, -1, 835, -1, -1, -1, 1692, -1, 1694, -1, -1, -1, -1, -1, -1, -1, -1, 1703, -1, -1, -1, -1, 1708, 1709, -1, -1, -1, -1, -1, 1715, -1, -1, -1, 866, 867, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 53, -1, -1, 1453, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1790, -1, 1792, 1682, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, -1, -1, -1, -1, -1, 1774, 92, -1, -1, -1, 1816, -1, 1818, -1, -1, -1, -1, -1, 934, -1, 936, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 132, 133, -1, -1, 966, -1, -1, -1, -1, -1, 137, -1, -1, 975, 1596, 1597, -1, -1, -1, -1, -1, -1, -1, -1, 1606, -1, 1608, 1609, 1557, -1, 1612, -1, -1, -1, -1, -1, -1, -1, 1620, -1, -1, 1623, -1, 1005, -1, 1007, -1, -1, -1, 1790, -1, 1792, -1, 185, 1795, -1, -1, -1, -1, -1, -1, -1, -1, 1878, 1879, -1, -1, -1, -1, -1, -1, -1, -1, -1, 201, 1816, -1, 1818, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1828, -1, -1, 349, -1, -1, -1, -1, -1, -1, -1, 1913, -1, -1, 233, -1, -1, 236, -1, -1, 1922, -1, -1, -1, 1073, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1982, 1983, 1984, 1985, 1986, -1, -1, 269, -1, -1, -1, -1, -1, -1, 1996, 1997, 1998, 1999, -1, -1, 282, 1113, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1124, -1, 1979, 1980, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 304, -1, -1, -1, 308, 309, 310, -1, -1, 313, -1, 1150, 1151, -1, -1, 319, -1, -1, -1, -1, -1, 325, -1, -1, -1, -1, -1, -1, 332, -1, -1, -1, -1, -1, -1, -1, 2065, 2066, -1, -1, -1, -1, -1, -1, -1, 349, -1, -1, -1, -1, 354, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1982, 1983, 1984, 1985, 1986, 1, -1, 3, 4, 5, -1, 1214, -1, 1216, 1996, 1997, 1998, 1999, 1841, 1842, 1843, 1844, -1, 391, 1847, 393, 399, -1, 1851, 1852, -1, 1854, 28, 1856, -1, 1238, 2092, -1, -1, -1, -1, -1, -1, -1, -1, 1868, -1, -1, -1, 1819, -1, -1, 1255, -1, 2110, -1, 1259, 425, -1, 1262, -1, -1, -1, 1266, -1, -1, -1, 1270, 441, -1, 66, -1, -1, -1, -1, -1, 72, 73, -1, -1, -1, -1, -1, 2065, 2066, -1, -1, -1, -1, -1, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, 2161, 479, 103, 104, 105, 106, 107, 108, 109, -1, -1, -1, -1, -1, -1, -1, -1, -1, 119, -1, -1, -1, -1, 124, -1, -1, -1, -1, -1, -1, -1, -1, 113, 134, 135, -1, -1, -1, 643, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 332, -1, -1, 531, 532, 533, 534, -1, 536, -1, -1, 539, 535, -1, -1, -1, -1, 349, -1, -1, -1, -1, 550, 551, 552, -1, -1, -1, -1, 2007, -1, -1, -1, -1, -1, -1, -1, -1, 2016, -1, 2018, -1, -1, 571, -1, -1, -1, -1, -1, 572, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1427, -1, -1, -1, 1431, -1, -1, -1, -1, -1, -1, -1, 604, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 2072, 2073, -1, -1, 2076, -1, 2078, -1, -1, 2081, -1, -1, -1, 2085, -1, -1, 633, 766, -1, -1, -1, 1473, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1483, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1494, -1, -1, -1, 2118, -1, -1, 274, 799, 800, 801, 802, 803, -1, -1, 806, -1, -1, 1512, -1, 1514, 812, -1, -1, -1, 1519, -1, 1521, -1, -1, -1, -1, 2146, 697, -1, -1, 827, 828, 829, 830, 831, -1, -1, 834, 1538, 704, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 332, -1, -1, -1, -1, -1, 730, -1, -1, -1, 734, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 750, -1, -1, -1, -1, -1, 1591, 757, -1, -1, 760, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 780, -1, -1, -1, -1, -1, 786, 787, 788, 789, 790, 791, 792, -1, -1, 795, 796, -1, 798, 799, 800, 801, 802, 803, 804, 805, -1, 807, -1, -1, -1, -1, -1, -1, -1, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 643, 835, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1688, -1, -1, -1, 1692, 1693, 1694, -1, -1, -1, -1, -1, -1, 866, 867, 1703, -1, -1, -1, -1, 1708, 1709, -1, -1, -1, -1, -1, 1715, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 896, -1, -1, -1, -1, -1, -1, -1, 1734, 1735, -1, 1737, 1738, -1, -1, -1, 1742, 1743, 1744, 1745, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1758, -1, -1, -1, -1, -1, -1, 935, -1, -1, 541, 934, -1, 936, -1, -1, 1774, -1, -1, -1, -1, -1, -1, -1, 952, -1, 954, 955, -1, -1, -1, -1, -1, -1, 766, -1, -1, -1, -1, -1, -1, 1799, -1, 966, -1, -1, -1, -1, 780, -1, -1, -1, 975, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 799, 800, 801, 802, 803, -1, 604, 806, 807, 1131, -1, -1, -1, 812, -1, 1005, 815, 1007, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 827, 828, 829, 830, 831, -1, -1, 834, 835, 1159, -1, -1, 638, -1, -1, -1, 1166, -1, -1, -1, -1, -1, -1, -1, -1, 1878, 1879, -1, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1059, 1060, -1, -1, -1, -1, -1, -1, 670, 671, 672, 673, -1, -1, 1200, -1, 1202, -1, -1, 1073, -1, -1, -1, 1912, 1913, -1, -1, -1, -1, 133, -1, -1, -1, 1922, -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, 1113, -1, -1, -1, -1, -1, -1, -1, -1, 730, -1, 1124, -1, 734, -1, -1, -1, -1, -1, -1, -1, -1, 185, -1, -1, -1, -1, 1975, -1, -1, -1, 1979, 1980, -1, -1, -1, -1, 1150, 1151, -1, -1, -1, -1, -1, -1, 766, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 780, -1, 224, -1, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, 1191, -1, 1193, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 807, -1, -1, -1, 28, 812, -1, -1, 815, -1, -1, -1, -1, -1, -1, 1214, -1, 1216, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 835, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1238, -1, -1, 66, 292, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, 1255, -1, 2092, -1, 1259, 85, 86, 1262, -1, -1, -1, 1266, -1, -1, -1, 1270, -1, -1, -1, 99, 2110, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, 142, -1, -1, 145, -1, -1, -1, 119, 120, 121, -1, -1, 124, 125, 126, -1, 158, 129, 160, -1, 162, 133, 134, 135, -1, 137, 138, 139, 140, -1, -1, -1, -1, -1, -1, 1131, -1, -1, -1, 2161, -1, -1, -1, -1, -1, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, 399, 1159, -1, -1, -1, -1, 405, -1, 1166, -1, 28, -1, -1, -1, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1200, -1, 1202, -1, -1, -1, 66, -1, -1, -1, -1, -1, 72, 73, 74, 75, 76, -1, -1, -1, 80, -1, -1, -1, 1023, 85, 86, 87, 274, -1, -1, -1, -1, -1, 475, -1, 1427, -1, -1, 99, 1431, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, -1, -1, -1, -1, 1453, -1, 119, 120, 121, 1262, -1, 124, 125, 126, -1, -1, -1, -1, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, 1473, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1483, -1, -1, 536, -1, -1, 539, -1, -1, -1, -1, 1494, -1, -1, -1, -1, -1, -1, -1, 552, -1, -1, -1, -1, -1, 1116, -1, -1, 1119, 1512, -1, 1514, -1, -1, -1, -1, 1519, 1128, 1521, -1, 573, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 586, -1, 1538, -1, -1, -1, 1150, 1151, -1, -1, -1, -1, -1, 1157, -1, 1159, 1557, -1, -1, 1163, -1, -1, 1166, -1, 1168, -1, -1, 1171, 1172, 1173, 1174, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1591, -1, -1, -1, -1, 1728, -1, -1, -1, -1, 1733, 1734, 1735, 1736, 1737, 1738, -1, -1, -1, 1742, 1743, 1744, 1745, -1, 470, 471, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 496, 497, -1, -1, -1, -1, 697, -1, -1, -1, -1, -1, 703, 1262, -1, -1, -1, -1, -1, -1, -1, -1, 518, 519, -1, -1, -1, 523, 524, -1, -1, 527, 528, -1, -1, -1, -1, -1, -1, 535, -1, -1, -1, -1, -1, -1, -1, 1688, -1, -1, -1, 1692, 1693, 1694, -1, -1, -1, -1, -1, -1, -1, -1, 1703, -1, -1, -1, -1, 1708, 1709, -1, 566, -1, 568, -1, 1715, -1, -1, -1, -1, -1, -1, -1, -1, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, 1734, 1735, -1, 1737, 1738, -1, -1, -1, 1742, 1743, 1744, 1745, -1, -1, -1, -1, -1, 28, -1, -1, -1, -1, -1, -1, 1758, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1774, -1, -1, -1, -1, -1, -1, -1, -1, 638, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, 1799, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, -1, -1, -1, -1, 1819, 670, 671, 672, 673, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, 884, -1, -1, -1, -1, -1, -1, 891, 119, 120, 121, -1, -1, 124, 125, 126, -1, -1, 129, -1, -1, -1, -1, 134, 135, 136, 137, 138, 139, 140, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1878, 1879, -1, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, -1, -1, -1, -1, -1, 944, 750, -1, -1, -1, 949, -1, -1, 757, -1, -1, 760, 1514, -1, -1, -1, -1, -1, 1912, 1913, -1, 965, -1, -1, -1, 1728, -1, -1, 1922, -1, 1733, 1734, 1735, 1736, 1737, 1738, -1, -1, -1, 1742, 1743, 1744, 1745, 1545, -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, 1013, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1975, -1, -1, -1, 1979, 1980, -1, -1, -1, -1, -1, -1, -1, 1596, 1597, -1, -1, -1, -1, -1, -1, -1, -1, 1606, -1, 1608, 1609, -1, -1, 1612, -1, -1, -1, -1, -1, 1060, -1, 1620, -1, -1, 1623, -1, -1, -1, 1069, -1, 1071, -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, 915, 916, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, -1, -1, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, 2092, -1, -1, 1703, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1715, -1, 28, 2110, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1728, -1, -1, 978, -1, 1733, -1, -1, 1736, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1191, -1, 1193, -1, -1, -1, 66, -1, -1, 1005, -1, 1007, 72, 73, 74, -1, -1, -1, -1, -1, 2161, -1, -1, -1, -1, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, 1800, 1048, 1049, -1, -1, 1052, 1053, 1054, 119, 120, 121, 1811, -1, 124, 125, 126, -1, -1, 129, -1, -1, -1, 133, 134, 135, -1, 137, 138, 139, 140, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, 1841, 1842, 1843, 1844, -1, -1, 1847, -1, -1, -1, 1851, 1852, -1, 1854, -1, 1856, 28, -1, -1, -1, -1, -1, -1, -1, -1, 1113, -1, 1868, 1116, -1, -1, 1119, -1, -1, -1, -1, -1, 1878, 1879, -1, 1128, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, 80, 1157, -1, -1, -1, 85, 86, 87, -1, 89, 90, 91, -1, -1, -1, 1171, 1172, 1173, 1174, 99, -1, 87, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 1189, 1190, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, 125, 126, 127, -1, 129, -1, 131, -1, 133, 134, 135, 0, 137, 138, 139, 140, -1, -1, 129, -1, -1, -1, -1, -1, -1, -1, 137, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1991, -1, -1, -1, -1, -1, 1439, -1, -1, 157, -1, -1, -1, 1446, -1, -1, 2007, -1, -1, -1, -1, 1259, -1, -1, -1, 2016, 52, 2018, 1266, -1, -1, -1, 1270, -1, -1, -1, -1, -1, -1, -1, -1, 1474, -1, 1476, -1, -1, 1479, -1, -1, 1482, -1, -1, -1, -1, -1, -1, -1, -1, 84, -1, -1, -1, -1, -1, -1, -1, -1, 93, 94, -1, -1, -1, -1, -1, -1, 101, 102, -1, 2069, -1, -1, 2072, 2073, -1, -1, 2076, -1, 2078, -1, -1, 2081, -1, -1, 119, 2085, -1, -1, -1, -1, -1, -1, 2092, -1, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, 143, -1, 2110, -1, -1, -1, -1, 1557, -1, -1, 2118, -1, 155, 28, -1, 1565, 159, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1576, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 2146, -1, -1, -1, -1, -1, -1, 188, 189, -1, -1, -1, -1, 66, -1, 2161, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, 224, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, -1, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, 125, 126, 127, -1, 129, -1, -1, -1, 1473, 134, 135, 386, 137, 138, 139, 140, 269, -1, -1, 272, 273, 274, -1, -1, -1, -1, -1, -1, -1, 282, -1, -1, -1, -1, -1, 1500, 1501, -1, -1, 292, 293, 294, -1, -1, -1, -1, -1, -1, -1, -1, 425, 426, -1, -1, 1519, 430, 1521, -1, -1, 312, -1, -1, -1, -1, 439, 318, -1, 442, -1, -1, -1, -1, -1, -1, -1, -1, 329, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1554, 1555, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 476, 1762, 1763, -1, 1765, -1, 482, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1591, -1, -1, -1, -1, 1596, 1597, -1, -1, -1, -1, -1, -1, -1, -1, 1606, -1, 1608, 1609, -1, -1, 1612, -1, -1, -1, -1, -1, -1, -1, 1620, -1, -1, 1623, 1819, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 423, -1, -1, -1, -1, -1, 429, -1, -1, -1, -1, -1, -1, -1, -1, -1, 561, 440, -1, -1, -1, -1, -1, -1, -1, -1, 571, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, -1, 591, -1, -1, 594, -1, 596, 475, 598, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 492, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 515, -1, -1, -1, 52, 53, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 535, -1, -1, -1, -1, -1, -1, 542, -1, -1, 545, -1, -1, -1, -1, -1, 84, 85, -1, -1, -1, 89, -1, -1, -1, -1, 94, 1774, -1, -1, -1, -1, -1, 101, 102, -1, -1, -1, -1, -1, -1, -1, -1, 1790, -1, 1792, -1, -1, -1, -1, -1, 119, -1, -1, -1, -1, -1, -1, -1, -1, 274, -1, -1, -1, 132, -1, -1, -1, -1, 1816, -1, 1818, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1841, 1842, 1843, 1844, -1, -1, 1847, -1, -1, -1, 1851, 1852, -1, 1854, -1, 1856, 645, -1, -1, -1, -1, 329, 184, -1, -1, -1, -1, 1868, -1, -1, -1, -1, -1, -1, -1, -1, 198, -1, -1, -1, -1, 670, 671, 672, 673, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 224, -1, -1, -1, -1, -1, -1, 698, 699, 700, -1, -1, 703, -1, -1, -1, -1, -1, 709, -1, -1, -1, -1, -1, -1, -1, 717, -1, -1, -1, 843, 844, 845, 724, 725, 726, -1, 728, 729, -1, -1, -1, -1, -1, 735, 269, -1, 738, -1, -1, -1, -1, -1, 866, 867, 868, 747, -1, 282, 750, -1, -1, -1, -1, -1, -1, 757, -1, 292, 760, 294, 441, -1, 638, -1, -1, -1, -1, -1, 1982, 1983, 1984, 1985, 1986, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1996, 1997, 1998, 1999, -1, -1, -1, -1, -1, -1, -1, 2007, -1, -1, 672, 673, -1, -1, -1, -1, 2016, -1, 2018, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 941, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 840, -1, -1, -1, 966, -1, -1, -1, -1, -1, -1, 973, 974, 2065, 2066, -1, -1, -1, -1, -1, 2072, 2073, 984, -1, 2076, -1, 2078, -1, -1, 2081, -1, -1, -1, 2085, -1, 875, -1, -1, -1, -1, -1, -1, -1, 883, 884, -1, -1, -1, -1, -1, 423, 891, -1, -1, 894, 895, 896, -1, 898, -1, -1, -1, -1, -1, -1, -1, 2118, -1, 441, -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, 2146, -1, -1, -1, -1, -1, -1, -1, 475, -1, -1, 478, -1, -1, -1, 949, 1072, -1, -1, -1, -1, 1077, -1, -1, -1, -1, -1, 1083, -1, -1, 643, 965, -1, 1089, -1, -1, -1, -1, -1, 1095, -1, -1, -1, -1, -1, -1, 659, -1, 515, -1, -1, -1, -1, -1, -1, -1, -1, 670, 671, 672, 673, -1, -1, -1, 531, 532, 533, 534, -1, -1, -1, 1005, 1006, 1007, -1, -1, -1, -1, -1, 1013, -1, -1, -1, 550, 551, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 709, -1, -1, 712, -1, -1, 1, -1, 571, -1, 573, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 584, -1, -1, -1, -1, 735, -1, -1, -1, -1, -1, 741, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 621, 768, -1, -1, 1214, 1215, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, 1113, -1, 80, 1116, -1, -1, 1119, -1, 86, 87, 88, -1, -1, -1, 806, -1, -1, -1, -1, 1132, -1, -1, 814, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, 834, -1, 1157, -1, -1, -1, -1, -1, 696, -1, -1, 131, -1, -1, -1, 703, 1171, 1172, 1173, 1174, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 724, -1, -1, 1194, 728, 1196, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1210, -1, -1, 1213, 747, -1, -1, 896, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1233, -1, -1, -1, -1, -1, -1, 1240, -1, 1116, -1, -1, 1119, -1, -1, -1, -1, -1, -1, -1, -1, 1128, -1, -1, -1, 1258, 1259, -1, -1, -1, -1, -1, 1265, 1266, -1, -1, 1269, 1270, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1157, -1, -1, -1, -1, -1, 1411, 1412, -1, -1, -1, -1, -1, -1, 1171, 1172, 1173, 1174, -1, -1, -1, -1, 1427, -1, -1, -1, 1431, -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, 868, 869, -1, -1, -1, -1, -1, 875, -1, -1, -1, -1, -1, -1, -1, 883, 884, -1, -1, -1, -1, -1, -1, 891, -1, -1, 894, 895, 896, -1, -1, -1, -1, -1, -1, -1, -1, 1494, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1505, 1506, 1507, 1508, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 935, -1, -1, -1, -1, -1, -1, -1, 943, -1, -1, -1, -1, -1, 949, -1, -1, -1, -1, -1, 955, -1, -1, -1, -1, -1, -1, -1, -1, -1, 965, -1, -1, -1, -1, 1116, -1, -1, 1119, 1120, 1121, -1, 1123, -1, -1, -1, -1, -1, 93, -1, 1131, -1, -1, -1, -1, -1, -1, -1, 1139, -1, -1, -1, -1, -1, -1, 1146, -1, -1, -1, -1, -1, 1473, -1, -1, 1476, -1, 1157, -1, 1013, -1, -1, -1, -1, 1164, -1, -1, -1, -1, 1169, -1, 1171, 1172, 1173, 1174, -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, 1200, -1, 1202, -1, -1, 1059, -1, -1, -1, -1, -1, -1, 1655, -1, 1068, -1, -1, -1, -1, -1, -1, -1, -1, -1, 188, 189, -1, -1, -1, -1, -1, -1, -1, -1, 1234, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1688, -1, 1690, -1, -1, 1693, -1, -1, -1, -1, 1576, -1, -1, -1, -1, 224, -1, -1, -1, -1, -1, -1, -1, -1, 1590, 1591, -1, -1, -1, -1, 1596, 1597, -1, -1, -1, 1280, -1, -1, -1, -1, -1, -1, -1, 1609, -1, -1, 1612, -1, -1, -1, -1, -1, -1, -1, 1620, -1, -1, -1, -1, -1, 269, -1, -1, 272, 273, 274, -1, -1, -1, -1, 1758, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 293, -1, -1, 1332, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1345, -1, -1, 312, -1, -1, -1, -1, -1, 318, -1, 1210, -1, -1, 1213, -1, 1215, -1, -1, -1, 329, -1, -1, -1, 1223, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1233, -1, -1, -1, -1, -1, -1, 1240, -1, -1, -1, 1711, -1, -1, -1, -1, -1, 1396, -1, 201, -1, -1, 1596, 1597, -1, -1, -1, -1, -1, -1, -1, -1, 1606, -1, 1608, 1609, -1, -1, 1612, -1, -1, -1, -1, -1, -1, -1, 1620, -1, -1, 1623, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 3, 1773, 1774, -1, -1, -1, -1, -1, 423, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1912, -1, -1, -1, -1, 1795, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 304, -1, -1, -1, -1, -1, -1, -1, -1, 313, 475, -1, -1, -1, 67, 319, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, 1851, 1852, -1, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, 1987, -1, 1989, -1, -1, 101, -1, 515, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, 121, 1424, 535, 124, -1, -1, -1, -1, -1, 542, 131, -1, 545, -1, 135, 1438, -1, -1, -1, 391, -1, 393, 1445, -1, 1914, -1, -1, 1596, 1597, -1, 1453, -1, -1, 1602, -1, 1604, -1, -1, 1607, 1608, -1, -1, -1, -1, 1613, 1614, -1, 1616, -1, -1, -1, 1474, -1, 1476, -1, -1, -1, 1626, -1, 1628, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1841, 1842, 1843, 1844, -1, -1, 1847, -1, -1, -1, 1851, 1852, -1, 1854, 1660, 1856, -1, -1, 1664, -1, -1, -1, -1, -1, -1, -1, -1, 1868, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 329, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1556, -1, -1, -1, 670, 671, 672, 673, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1576, -1, -1, -1, -1, -1, -1, -1, -1, -1, 535, -1, 698, 699, 700, 93, -1, -1, -1, -1, -1, -1, -1, 709, -1, -1, -1, -1, -1, -1, -1, 717, -1, -1, -1, -1, -1, -1, 724, 725, 726, -1, 728, 729, -1, -1, -1, 572, -1, 735, -1, -1, 738, -1, -1, -1, -1, -1, -1, -1, -1, 747, -1, -1, 750, -1, -1, -1, -1, -1, -1, 757, -1, -1, 760, 441, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 2007, -1, -1, -1, -1, -1, -1, -1, -1, 2016, -1, 2018, -1, -1, -1, -1, 1682, 1829, 633, -1, 188, 189, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1847, 1848, -1, -1, -1, -1, -1, -1, 1855, -1, -1, -1, 1859, -1, 1861, -1, -1, -1, -1, -1, -1, 224, -1, 1870, -1, -1, -1, -1, -1, 840, 2072, 2073, -1, -1, 2076, -1, 2078, -1, -1, 2081, -1, -1, -1, 2085, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1754, 704, -1, -1, -1, -1, -1, -1, -1, -1, -1, 875, -1, 269, 1914, -1, 272, 273, 274, -1, 884, -1, 1776, 2118, -1, -1, -1, 891, -1, -1, -1, -1, 896, -1, 898, -1, -1, 293, -1, -1, -1, 1795, -1, -1, -1, -1, -1, 750, -1, -1, -1, 2146, -1, -1, 757, -1, 312, 760, -1, -1, -1, -1, 318, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 329, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 949, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 643, -1, 965, -1, -1, -1, -1, -1, -1, 2008, 2009, -1, 2011, -1, 2013, -1, 659, 2016, 2017, 2018, 663, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1894, 1005, 1006, 1007, -1, -1, -1, -1, -1, 1013, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 709, -1, 423, 712, -1, -1, -1, -1, -1, 2074, -1, -1, 2077, -1, -1, -1, -1, 726, -1, -1, 2085, -1, -1, -1, -1, -1, 735, -1, -1, -1, -1, -1, 741, 742, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 475, -1, 2121, -1, -1, 768, -1, -1, -1, -1, -1, -1, 934, -1, 936, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1113, -1, -1, 1116, 1, -1, 1119, 4, 5, 6, 515, 8, 9, 806, -1, -1, -1, -1, -1, -1, -1, 814, -1, 975, -1, -1, -1, -1, -1, -1, 535, -1, -1, -1, -1, -1, -1, 542, -1, -1, 545, 834, -1, -1, 1157, -1, -1, -1, -1, -1, -1, -1, -1, 1005, -1, 1007, -1, -1, 1171, 1172, 1173, 1174, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, 1194, -1, 1196, -1, -1, -1, -1, 85, -1, -1, -1, -1, -1, -1, -1, -1, 1210, -1, -1, 1213, -1, 99, 896, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, -1, -1, -1, 1233, 1073, 119, 120, -1, -1, -1, 1240, -1, 126, 127, -1, 129, 130, 131, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, 1258, 1259, -1, -1, -1, -1, -1, 1265, 1266, -1, -1, 1269, 1270, -1, -1, -1, 1113, -1, -1, -1, 670, 671, 672, 673, -1, -1, -1, 1124, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 698, 699, 700, -1, -1, -1, -1, -1, -1, -1, -1, 709, -1, -1, -1, -1, -1, -1, -1, 717, -1, -1, -1, -1, -1, -1, 724, 725, 726, -1, 728, 729, -1, -1, -1, -1, -1, 735, -1, -1, 738, -1, -1, -1, -1, -1, -1, -1, -1, 747, -1, -1, 750, -1, -1, -1, -1, -1, -1, 757, -1, -1, 760, -1, -1, -1, -1, -1, -1, -1, -1, 1216, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1238, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, 1259, -1, -1, -1, -1, -1, -1, 1266, -1, -1, -1, 1270, -1, -1, -1, -1, 28, -1, -1, -1, 1120, 1121, -1, 1123, -1, -1, -1, -1, 840, -1, -1, 1131, -1, -1, 1134, -1, -1, -1, -1, 1139, -1, -1, -1, -1, -1, -1, 1146, 1147, -1, -1, -1, 53, -1, 1473, 66, -1, 1476, -1, 60, -1, 72, 73, 74, 875, 1164, 1165, -1, -1, -1, 1169, -1, -1, 884, 85, 86, -1, -1, -1, -1, 891, -1, 83, 84, 85, 896, -1, 898, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, 1200, -1, 1202, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, 125, 126, 127, -1, 129, -1, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, 132, 133, -1, -1, 1234, -1, -1, 949, -1, -1, -1, -1, -1, -1, -1, -1, -1, 149, -1, -1, -1, -1, -1, 965, -1, -1, 1576, -1, -1, -1, -1, -1, -1, 165, -1, -1, -1, -1, -1, -1, 1590, 1591, -1, -1, -1, -1, 1596, 1597, -1, -1, 1280, 1281, -1, 185, -1, -1, -1, -1, -1, 1609, -1, -1, 1612, 1005, 1006, 1007, -1, -1, -1, -1, 1620, 1013, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1473, -1, -1, -1, -1, -1, -1, 223, 224, -1, 1483, -1, -1, -1, -1, -1, -1, -1, 1332, -1, 1334, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1345, 1346, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1519, -1, 1521, -1, -1, -1, -1, 269, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1538, 282, -1, -1, -1, -1, -1, -1, -1, -1, -1, 292, 1711, -1, -1, -1, -1, 1396, -1, 1398, -1, -1, 1113, -1, -1, 1116, -1, -1, 1119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1591, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1157, -1, -1, -1, -1, -1, -1, -1, 1773, 1774, -1, -1, -1, -1, 1171, 1172, 1173, 1174, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1795, -1, -1, -1, -1, -1, -1, 1194, -1, 1196, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 399, 1210, -1, -1, 1213, -1, 405, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1233, -1, -1, -1, -1, -1, -1, 1240, -1, -1, 1851, 1852, 1692, -1, 1694, -1, -1, -1, 441, -1, -1, -1, -1, -1, -1, 1258, 1259, -1, 1708, 1709, -1, -1, 1265, 1266, -1, -1, 1269, 1270, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 475, -1, 1734, 1735, -1, 1737, 1738, -1, -1, 1582, 1742, 1743, 1744, 1745, -1, -1, 491, -1, -1, -1, -1, 1914, -1, -1, -1, -1, -1, -1, -1, 1602, 1603, 1604, 1605, -1, 1607, 1608, -1, 53, -1, -1, 1613, 1614, 1774, 1616, -1, 1618, -1, -1, -1, -1, -1, -1, -1, 1626, 1627, 1628, 531, 532, 533, 534, -1, 536, -1, -1, 539, -1, -1, -1, 84, 85, -1, -1, -1, -1, -1, 550, 551, 552, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1660, -1, 1662, -1, 1664, -1, 1666, 569, -1, 571, -1, 573, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 586, -1, -1, -1, -1, 132, 133, -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, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 185, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1913, -1, -1, -1, -1, -1, -1, 1473, -1, 1922, 1476, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 224, -1, -1, -1, -1, -1, 689, -1, -1, -1, -1, -1, -1, -1, 697, -1, -1, -1, -1, -1, 703, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1975, -1, -1, -1, 1979, 1980, -1, -1, -1, -1, 269, -1, -1, 1829, -1, -1, -1, -1, -1, -1, -1, -1, -1, 282, -1, -1, -1, -1, -1, -1, -1, -1, 1848, 292, -1, -1, -1, 1853, -1, 1855, 1856, -1, 1858, 1859, -1, 1861, -1, 1863, 1576, -1, -1, -1, -1, 1869, 1870, -1, -1, -1, -1, -1, -1, -1, 1590, 1591, -1, -1, -1, -1, 1596, 1597, -1, -1, -1, -1, -1, -1, -1, 3, -1, -1, -1, 1609, -1, -1, 1612, -1, -1, -1, -1, -1, -1, -1, 1620, -1, -1, -1, -1, -1, 1914, -1, -1, -1, 28, -1, -1, -1, -1, -1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 399, 67, -1, -1, -1, -1, 405, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, 882, -1, 884, -1, -1, -1, -1, -1, -1, 891, -1, 101, -1, -1, 896, -1, -1, -1, 441, 1711, -1, 111, 112, 113, 114, 115, 116, -1, 2008, 2009, -1, 2011, 2012, 2013, -1, -1, -1, 2017, 2018, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 475, 935, -1, -1, -1, -1, -1, -1, -1, -1, 944, -1, -1, -1, -1, 949, -1, -1, -1, -1, -1, 955, -1, -1, -1, -1, -1, -1, -1, 1773, 1774, 965, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 2074, 2075, -1, 2077, 2078, -1, -1, -1, 2082, 1795, -1, -1, -1, 93, 531, 532, 533, 534, -1, 536, -1, -1, 539, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 550, 551, 552, -1, 1013, -1, -1, -1, -1, -1, -1, -1, -1, -1, 2121, -1, -1, -1, -1, -1, -1, 571, -1, 573, -1, -1, -1, -1, -1, -1, 143, -1, 1851, 1852, -1, -1, 586, -1, -1, -1, -1, -1, 155, -1, -1, -1, 159, -1, -1, -1, 1059, 1060, -1, -1, -1, -1, -1, -1, -1, -1, 1069, -1, 1071, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 188, 189, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1914, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 224, -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, 697, -1, -1, -1, -1, -1, 703, -1, -1, 269, -1, -1, 272, 273, 274, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, 293, -1, 1191, -1, 1193, -1, -1, -1, -1, 28, -1, -1, -1, -1, -1, -1, -1, -1, -1, 312, -1, -1, -1, -1, -1, 318, -1, -1, -1, -1, -1, -1, -1, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, 80, -1, -1, -1, -1, 85, 86, 87, -1, 89, 90, 91, -1, -1, 93, -1, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, -1, -1, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, 125, 126, 127, -1, 129, -1, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, -1, -1, -1, 143, -1, -1, -1, -1, 423, -1, -1, -1, -1, -1, 429, 155, -1, -1, -1, 159, -1, -1, -1, -1, -1, 440, -1, -1, -1, -1, -1, -1, 884, -1, -1, -1, -1, -1, -1, 891, -1, -1, -1, -1, 896, -1, -1, -1, 188, 189, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 475, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 492, -1, -1, -1, -1, -1, 935, -1, -1, -1, -1, -1, -1, -1, -1, 944, -1, -1, -1, -1, 949, -1, -1, 515, -1, -1, 955, -1, -1, -1, -1, -1, -1, -1, -1, -1, 965, -1, -1, -1, -1, -1, -1, 535, -1, -1, -1, -1, -1, -1, 542, 1439, 269, 545, -1, 272, 273, 274, 1446, -1, -1, -1, -1, -1, -1, 1453, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 293, -1, -1, -1, -1, -1, -1, -1, 1013, -1, 1474, -1, 1476, -1, -1, 1479, -1, -1, 1482, 312, -1, -1, -1, -1, -1, 318, -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, 1059, 1060, -1, -1, -1, -1, -1, -1, -1, -1, 1069, -1, 1071, -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, 1557, -1, -1, -1, -1, -1, -1, -1, 1565, 670, 671, 672, 673, -1, -1, -1, -1, -1, -1, 1576, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 698, 699, 700, -1, -1, -1, 429, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 440, -1, 717, -1, -1, -1, -1, -1, -1, 724, 725, -1, -1, 728, 729, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 750, -1, -1, -1, 1191, -1, 1193, 757, -1, -1, 760, -1, -1, -1, -1, -1, -1, 492, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 143, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 155, -1, -1, -1, 159, -1, -1, -1, -1, -1, -1, -1, -1, 535, -1, -1, -1, -1, -1, -1, 542, -1, -1, 545, -1, -1, -1, -1, -1, -1, -1, -1, -1, 188, 189, -1, -1, -1, -1, -1, -1, -1, -1, 840, -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, 1762, 1763, -1, 1765, -1, -1, -1, -1, -1, 875, -1, -1, -1, -1, -1, -1, -1, 883, 884, -1, -1, -1, -1, -1, -1, 891, -1, -1, 894, -1, -1, -1, 898, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 269, -1, -1, 272, 273, 274, -1, -1, -1, -1, -1, -1, 1819, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 293, -1, -1, -1, -1, -1, -1, -1, -1, -1, 670, 671, 672, 673, 949, -1, -1, -1, -1, 312, -1, -1, -1, -1, -1, 318, -1, -1, -1, -1, 965, -1, -1, -1, -1, -1, -1, -1, 698, 699, 700, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 717, -1, -1, -1, -1, -1, -1, 724, 725, -1, 1439, 728, 729, 1005, 1006, 1007, -1, 1446, -1, -1, -1, 1013, -1, -1, 1453, -1, -1, -1, -1, -1, -1, -1, -1, 750, -1, -1, -1, -1, -1, -1, 757, -1, -1, 760, -1, 1474, -1, 1476, -1, -1, 1479, -1, -1, 1482, -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, 429, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 440, -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, 1113, -1, -1, 1116, -1, -1, 1119, 1557, -1, -1, -1, -1, -1, -1, -1, 1565, -1, -1, -1, -1, -1, 492, -1, -1, -1, -1, 1576, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1157, 883, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 894, -1, 1171, 1172, 1173, 1174, -1, -1, 535, -1, -1, -1, -1, -1, -1, 542, -1, -1, 545, -1, -1, -1, -1, -1, -1, 1194, -1, 1196, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1213, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1233, -1, -1, -1, -1, -1, -1, 1240, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1258, 1259, -1, -1, -1, -1, -1, 1265, 1266, -1, -1, 1269, 1270, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1005, 1006, 1007, -1, -1, -1, -1, -1, 1013, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 670, 671, 672, 673, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1762, 1763, -1, 1765, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 698, 699, 700, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 717, -1, -1, -1, -1, -1, -1, 724, 725, -1, -1, 728, 729, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1819, -1, -1, -1, -1, -1, 1113, -1, -1, 1116, 750, 1, 1119, 3, 4, 5, 6, 757, 8, 9, 760, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1157, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1171, 1172, 1173, 1174, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, 1194, -1, 1196, -1, 1473, -1, -1, 1476, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1213, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, -1, -1, 1233, -1, -1, 119, 120, 121, -1, 1240, 124, 125, 126, 127, -1, 129, -1, -1, -1, 883, 134, 135, -1, 137, 138, 139, 140, 1258, 1259, -1, 894, -1, -1, -1, 1265, 1266, -1, -1, 1269, 1270, -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, 1576, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1590, 1591, -1, -1, -1, -1, 1596, 1597, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1609, -1, -1, 1612, -1, -1, -1, -1, -1, -1, -1, 1620, -1, -1, -1, -1, -1, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1005, 1006, 1007, -1, -1, -1, 28, -1, 1013, -1, -1, -1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, 73, 74, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, 85, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, -1, -1, 119, 120, 121, -1, 1473, 124, 125, 126, -1, -1, -1, 1113, -1, -1, 1116, 134, 135, 1119, 137, 138, 139, 140, -1, -1, -1, -1, -1, -1, -1, 1773, 1774, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1795, -1, -1, -1, 1157, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1171, 1172, 1173, 1174, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1194, -1, 1196, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1851, 1852, -1, -1, 1213, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1590, 1591, -1, -1, -1, -1, 1596, 1597, -1, -1, 1233, -1, -1, -1, -1, -1, -1, 1240, -1, 1609, -1, -1, 1612, -1, -1, -1, -1, -1, -1, -1, 1620, -1, -1, -1, -1, 1258, 1259, -1, -1, -1, -1, -1, 1265, 1266, -1, -1, 1269, 1270, -1, -1, -1, 1, -1, -1, -1, -1, -1, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, 121, 122, 123, 124, -1, -1, 127, 128, 129, 130, -1, 132, 1773, 1774, 135, -1, 137, 138, 139, -1, 141, 142, 143, 144, 145, -1, -1, 1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1473, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1851, 1852, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, -1, -1, -1, -1, -1, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, -1, -1, 132, -1, 134, 135, -1, 137, 138, 139, 140, 141, 142, 143, 144, 145, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1590, 1591, -1, -1, -1, -1, 1596, 1597, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1609, -1, -1, 1612, -1, -1, -1, -1, -1, 0, 1, 1620, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1773, 1774, -1, -1, -1, -1, -1, -1, 0, 1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, 1851, 1852, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 0, 1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 0, 1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 0, 1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 0, 1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 0, 1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 0, 1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 0, 1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 0, 1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 0, 1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 0, 1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 0, 1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 0, 1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 0, 1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 0, 1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 0, 1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 0, 1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 0, 1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 0, 1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 0, 1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 0, 1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 0, 1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, -1, 137, 138, 139, 140, 141, 142, 143, 144, 145, 1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -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, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, -1, -1, -1, -1, -1, 119, 120, 121, 122, 123, 124, 125, 126, -1, 128, 129, -1, -1, 132, -1, 134, 135, -1, 137, 138, 139, 140, 141, 142, 143, 144, 145, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, 125, 126, 127, -1, 129, 130, 131, 132, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, 125, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, 125, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, 125, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, 125, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, 125, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, 125, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, 125, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, 125, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 0, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, 54, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, 125, 126, 127, -1, 129, 130, 131, -1, -1, 134, 135, -1, 137, 138, 139, 140, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, -1, -1, -1, 72, 73, 74, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, 85, 86, 87, 88, 89, 90, 91, -1, -1, -1, -1, -1, -1, -1, 99, -1, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, -1, -1, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, 67, -1, -1, -1, -1, 72, 73, 74, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, 85, 86, 87, 88, 89, 90, 91, -1, -1, -1, -1, -1, -1, -1, 99, -1, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, -1, -1, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, 73, 74, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, 85, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, -1, 134, 135, -1, 137, 138, 139, 140, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, 73, 74, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, 85, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, -1, 134, 135, -1, 137, 138, 139, 140, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, 73, 74, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, 85, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, -1, 134, 135, -1, 137, 138, 139, 140, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, 73, 74, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, 85, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, -1, 134, 135, -1, 137, 138, 139, 140, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, 73, 74, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, 85, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, -1, 134, 135, -1, 137, 138, 139, 140, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, 73, 74, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, 85, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, -1, 134, 135, -1, 137, 138, 139, 140, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, 73, 74, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, 85, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, -1, 134, 135, -1, 137, 138, 139, 140, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, 73, 74, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, 85, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, -1, 134, 135, -1, 137, 138, 139, 140, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, 73, 74, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, 85, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, -1, 134, 135, -1, 137, 138, 139, 140, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, 73, 74, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, 85, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, -1, 134, 135, -1, 137, 138, 139, 140, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, 73, 74, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, 85, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, -1, 134, 135, -1, 137, 138, 139, 140, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, 73, 74, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, 85, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, -1, 134, 135, -1, 137, 138, 139, 140, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, 73, 74, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, 85, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, 131, -1, -1, 134, 135, -1, 137, 138, 139, 140, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, 73, 74, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, 85, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, 1, 126, 3, 4, 5, 6, -1, 8, 9, 134, 135, -1, 137, 138, 139, 140, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, 73, 74, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, 85, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, -1, -1, 124, 1, 126, 3, 4, 5, 6, -1, 8, 9, 134, 135, -1, 137, 138, 139, 140, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, -1, -1, -1, -1, -1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, 73, 74, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, 85, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, -1, -1, 119, 120, 121, -1, -1, 124, 125, 126, -1, -1, -1, -1, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, -1, -1, -1, -1, -1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, 73, 74, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, 85, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, -1, -1, 119, 120, 121, -1, -1, 124, 1, 126, 3, 4, 5, 6, 131, 8, 9, 134, 135, -1, 137, 138, 139, 140, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, -1, -1, -1, -1, -1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, 73, 74, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, 85, 86, 87, 88, -1, 1, -1, 3, 4, 5, 6, -1, 8, 9, 99, -1, 101, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 28, -1, 119, 120, 121, -1, -1, 124, 125, 126, -1, -1, -1, -1, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, 80, -1, -1, -1, -1, 85, 86, 87, -1, 89, 90, 91, -1, -1, -1, -1, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, -1, -1, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, -1, -1, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, 80, -1, -1, -1, -1, 85, 86, 87, -1, 89, 90, 91, -1, -1, -1, -1, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, -1, -1, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, -1, -1, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, -1, -1, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, 80, -1, -1, -1, -1, 85, 86, 87, -1, 89, 90, 91, -1, -1, -1, -1, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, -1, -1, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, -1, -1, 131, -1, 133, 134, 135, -1, 137, 138, 139, 140, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, -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, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, 125, 126, -1, -1, 129, -1, -1, -1, 133, 134, 135, -1, 137, 138, 139, 140, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, 125, 126, -1, -1, 129, -1, -1, -1, 133, 134, 135, -1, 137, 138, 139, 140, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, 125, 126, 127, -1, 129, -1, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, -1, 126, -1, -1, 129, 130, 131, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, 125, 126, 127, -1, 129, -1, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, 125, 126, 127, -1, 129, -1, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, -1, 1, -1, 3, 4, 5, 6, -1, 8, 9, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, -1, -1, -1, -1, -1, 119, 120, 121, 66, -1, 124, -1, 126, -1, 72, 73, 74, 131, -1, -1, 134, 135, 136, 137, 138, 139, 140, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, -1, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, -1, 1, -1, 3, 4, 5, 6, -1, 8, 9, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, -1, -1, -1, -1, -1, 119, 120, 121, 66, -1, 124, 125, 126, -1, 72, 73, 74, 131, -1, -1, 134, 135, -1, 137, 138, 139, 140, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, 125, 126, -1, -1, -1, -1, 131, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, -1, 1, -1, 3, 4, 5, 6, -1, 8, 9, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, -1, -1, -1, -1, -1, 119, 120, 121, 66, -1, 124, -1, 126, 127, 72, 73, 74, 131, -1, -1, 134, 135, -1, 137, 138, 139, 140, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, 125, 126, -1, -1, 129, -1, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, -1, 1, -1, 3, 4, 5, 6, -1, 8, 9, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, -1, -1, -1, -1, -1, 119, 120, 121, 66, -1, 124, 125, 126, 127, 72, 73, 74, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, -1, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, 125, 126, -1, -1, 129, -1, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, -1, -1, -1, -1, 1, -1, 3, 4, 5, 6, 66, 8, 9, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, 28, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, -1, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, 66, 126, -1, -1, 129, -1, 72, 73, 74, 134, 135, 136, 137, 138, 139, 140, -1, -1, -1, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, -1, 126, -1, -1, 129, -1, -1, -1, 133, 134, 135, -1, 137, 138, 139, 140, -1, -1, -1, -1, -1, 1, -1, 3, 4, 5, 6, 66, 8, 9, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, 28, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, -1, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, 66, 126, -1, -1, 129, -1, 72, 73, 74, 134, 135, 136, 137, 138, 139, 140, -1, -1, -1, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, -1, 126, -1, -1, 129, -1, -1, -1, 133, 134, 135, -1, 137, 138, 139, 140, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, 125, 126, -1, -1, 129, -1, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, 125, 126, -1, -1, 129, -1, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, 125, 126, -1, -1, 129, -1, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, 125, 126, -1, -1, 129, -1, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, -1, 1, -1, 3, 4, 5, 6, -1, 8, 9, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, -1, -1, -1, -1, -1, 119, 120, 121, 66, -1, 124, 125, 126, 127, 72, 73, 74, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, -1, 126, 127, -1, 129, -1, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, -1, 1, -1, 3, 4, 5, 6, -1, 8, 9, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, -1, -1, -1, -1, -1, 119, 120, 121, 66, -1, 124, 125, 126, 127, 72, 73, 74, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, -1, 126, -1, -1, 129, -1, -1, -1, 133, 134, 135, -1, 137, 138, 139, 140, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, -1, 126, -1, -1, 129, -1, -1, -1, 133, 134, 135, -1, 137, 138, 139, 140, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, 125, 126, -1, -1, 129, -1, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, 125, 126, -1, -1, 129, -1, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, 125, 126, -1, -1, 129, -1, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, -1, 1, -1, 3, 4, 5, 6, -1, 8, 9, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, -1, -1, -1, -1, -1, 119, 120, 121, 66, -1, 124, 125, 126, 127, 72, 73, 74, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, 125, 126, -1, -1, 129, -1, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, -1, 126, -1, -1, -1, 130, 131, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, 125, 126, -1, -1, 129, -1, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, 125, 126, -1, -1, 129, -1, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, 125, 126, -1, -1, 129, -1, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, -1, 1, -1, 3, 4, 5, 6, -1, 8, 9, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, -1, -1, -1, -1, -1, 119, 120, 121, 66, -1, 124, -1, 126, -1, 72, 73, 74, -1, -1, -1, 134, 135, 136, 137, 138, 139, 140, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, -1, 126, -1, -1, -1, -1, 131, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, -1, 1, -1, 3, 4, 5, 6, -1, 8, 9, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, -1, -1, -1, -1, -1, 119, 120, 121, 66, -1, 124, -1, 126, -1, 72, 73, 74, -1, -1, -1, 134, 135, 136, 137, 138, 139, 140, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, -1, 126, -1, -1, -1, -1, -1, -1, -1, 134, 135, 136, 137, 138, 139, 140, -1, -1, 1, -1, 3, 4, 5, 6, -1, 8, 9, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, -1, -1, -1, -1, -1, 119, 120, 121, 66, -1, 124, -1, 126, -1, 72, 73, 74, 131, -1, -1, 134, 135, -1, 137, 138, 139, 140, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, -1, 126, -1, -1, -1, -1, -1, -1, -1, 134, 135, 136, 137, 138, 139, 140, -1, -1, 1, -1, 3, 4, 5, 6, -1, 8, 9, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, -1, -1, -1, -1, -1, 119, 120, 121, 66, -1, 124, -1, 126, -1, 72, 73, 74, -1, -1, 133, 134, 135, -1, 137, 138, 139, 140, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, 125, 126, -1, -1, -1, -1, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, -1, 1, -1, 3, 4, 5, 6, -1, 8, 9, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, -1, -1, -1, -1, -1, 119, 120, 121, 66, -1, 124, -1, 126, -1, 72, 73, 74, 131, -1, -1, 134, 135, -1, 137, 138, 139, 140, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, -1, 126, -1, -1, -1, -1, -1, -1, -1, 134, 135, 136, 137, 138, 139, 140, -1, -1, 1, -1, 3, 4, 5, 6, -1, 8, 9, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, -1, -1, -1, -1, -1, 119, 120, 121, 66, -1, 124, 125, 126, -1, 72, 73, 74, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, -1, 126, -1, -1, -1, -1, -1, -1, 133, 134, 135, -1, 137, 138, 139, 140, -1, -1, 1, -1, 3, 4, 5, 6, -1, 8, 9, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, -1, -1, -1, -1, -1, 119, 120, 121, 66, -1, 124, -1, 126, -1, 72, 73, 74, 131, -1, -1, 134, 135, -1, 137, 138, 139, 140, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, -1, 126, -1, -1, -1, -1, 131, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, -1, 1, -1, 3, 4, 5, 6, -1, 8, 9, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, -1, -1, -1, -1, -1, 119, 120, 121, 66, -1, 124, -1, 126, -1, 72, 73, 74, 131, -1, -1, 134, 135, -1, 137, 138, 139, 140, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, -1, 126, -1, -1, -1, -1, 131, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, -1, 1, -1, 3, 4, 5, 6, -1, 8, 9, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, -1, -1, -1, -1, -1, 119, 120, 121, 66, -1, 124, 125, 126, -1, 72, 73, 74, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, -1, 126, -1, -1, -1, -1, 131, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, -1, 1, -1, 3, 4, 5, 6, -1, 8, 9, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, -1, -1, -1, -1, -1, 119, 120, 121, 66, -1, 124, 125, 126, -1, 72, 73, 74, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, 125, 126, -1, -1, -1, -1, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, -1, 1, -1, 3, 4, 5, 6, -1, 8, 9, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, -1, -1, -1, -1, -1, 119, 120, 121, 66, -1, 124, -1, 126, -1, 72, 73, 74, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, 85, 86, 1, -1, 3, 4, 5, 6, -1, 8, 9, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, 28, -1, -1, -1, -1, 119, 120, 121, -1, -1, 124, -1, 126, -1, -1, -1, -1, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, -1, -1, 1, -1, 3, 4, 5, 6, -1, 8, 9, 66, -1, -1, -1, -1, -1, 72, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, -1, -1, -1, -1, -1, -1, 119, 120, 121, 66, -1, 124, -1, 126, -1, 72, 73, 74, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, -1, -1, 103, 104, 105, 106, 107, 108, 109, 110, -1, -1, 0, 1, -1, 3, 4, 5, 119, 120, 121, -1, -1, 124, -1, 126, -1, -1, -1, -1, -1, -1, -1, 134, 135, -1, 137, 138, 139, 140, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, 54, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, 125, 126, 127, -1, 129, 130, -1, -1, -1, 134, 135, 0, 1, -1, 3, 4, 5, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, 54, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 129, 130, -1, -1, -1, 134, 135, 0, 1, -1, 3, 4, 5, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, 54, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, 0, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, 54, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, 0, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, 54, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, 0, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, 54, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, -1, 1, 130, 3, 4, 5, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, -1, 121, -1, -1, 124, -1, 126, 127, 1, -1, 3, 4, 5, -1, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, -1, 72, 73, -1, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, -1, -1, 92, 93, 94, 95, -1, 97, -1, 99, 100, 101, -1, 103, 104, 105, 106, 107, 108, 109, -1, 111, 112, 113, 114, 115, 116, 117, 118, 119, 1, 121, 3, -1, 124, -1, 126, 127, -1, -1, -1, -1, -1, -1, 134, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, 1, 121, 3, -1, 124, 125, -1, -1, -1, -1, -1, -1, -1, -1, -1, 135, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, 3, -1, 121, -1, -1, 124, 125, -1, -1, -1, -1, -1, -1, -1, -1, -1, 135, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, 3, -1, 121, -1, -1, 124, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 135, -1, 137, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, 3, -1, 121, -1, -1, 124, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 135, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, 3, -1, 121, -1, -1, 124, -1, -1, -1, -1, -1, -1, 131, -1, -1, -1, 135, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, 3, -1, 121, -1, -1, 124, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 135, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, 3, -1, 121, -1, -1, 124, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 135, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, 3, -1, 121, -1, -1, 124, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 135, -1, -1, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, 3, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, 121, -1, -1, 124, -1, -1, -1, -1, -1, 28, -1, -1, -1, -1, 135, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 3, -1, -1, -1, 121, -1, -1, 124, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 135, -1, -1, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, 77, 78, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, 106, -1, -1, 3, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, 121, -1, -1, 124, -1, -1, -1, -1, -1, -1, -1, -1, 133, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, -1, -1, -1, -1, 75, 76, -1, -1, 79, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, 3, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, 121, -1, -1, 124, -1, 126, -1, -1, -1, -1, -1, -1, 133, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, 3, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, 121, -1, -1, 124, -1, -1, -1, -1, -1, -1, -1, -1, 133, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, 1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, 121, -1, -1, 124, -1, -1, -1, -1, -1, -1, -1, -1, 133, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, 1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, 127, -1, 129, 130, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, 1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 130, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, 1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 130, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, 1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 130, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, 1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 130, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 0, 1, -1, 3, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 130, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, 54, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, 77, 78, -1, 80, 81, 82, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, 102, 3, -1, -1, 106, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, 121, -1, -1, 124, -1, -1, 127, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, 3, -1, 108, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 130, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, 3, -1, 108, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 130, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, 1, -1, 3, -1, 108, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 130, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, 1, -1, 3, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, 121, -1, -1, 124, -1, -1, 127, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, 1, -1, 3, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, 121, -1, -1, 124, -1, -1, 127, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, 1, -1, 3, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, 121, -1, -1, 124, -1, -1, 127, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 3, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, 121, -1, -1, 124, -1, -1, 127, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, 54, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, 77, 78, -1, 80, 81, 82, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, 102, -1, 0, 1, 106, 3, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, 121, -1, -1, 124, -1, -1, 127, -1, -1, -1, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, 54, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, 81, 82, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1, -1, 3, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, 121, -1, -1, 124, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1, 101, 3, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, 121, -1, -1, 124, 125, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1, 101, 3, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, -1, -1, -1, -1, 125, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1, 101, 3, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, -1, -1, -1, -1, 125, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1, 101, 3, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, -1, -1, -1, -1, 125, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1, 101, 3, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, -1, -1, -1, -1, 125, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1, 101, 3, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, -1, -1, -1, -1, 125, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1, 101, 3, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, -1, -1, -1, -1, 125, -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1, -1, 3, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, 121, -1, -1, 124, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1, -1, 3, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, 121, -1, -1, 124, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 3, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, -1, -1, -1, 124, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 3, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, 121, -1, -1, 124, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 3, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, 121, -1, -1, 124, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 3, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, 121, -1, -1, 124, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 3, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, -1, -1, -1, 124, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 3, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, -1, -1, -1, 124, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1, -1, 3, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, 121, -1, -1, 124, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, 1, -1, 3, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, 1, -1, 3, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, 1, -1, 3, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, -1, 86, 87, 88, -1, -1, -1, -1, -1, 3, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, 3, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, 3, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, 3, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, 3, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, 108, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, 3, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, 81, 82, -1, -1, -1, 86, 87, 88, -1, -1, -1, -1, -1, 3, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, 83, 84, -1, 86, 87, 88, -1, -1, -1, -1, -1, 3, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, 121, -1, -1, 124, 125, -1, -1, -1, -1, -1, -1, -1, -1, -1, 135, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 131, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 130, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 75, 76, -1, -1, -1, 80, -1, -1, -1, -1, -1, 86, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 112, 113, 114, 115, 116, 117, 118
};
static const yytype_uint16 yystos[] =
{
0, 3, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 54, 66, 67, 75, 76, 77, 78, 80, 81, 82, 83, 84, 86, 87, 88, 101, 102, 106, 111, 112, 113, 114, 115, 116, 117, 118, 121, 124, 127, 147, 148, 149, 151, 176, 213, 214, 215, 216, 217, 218, 270, 273, 274, 277, 278, 279, 280, 281, 282, 283, 285, 289, 292, 293, 294, 295, 296, 297, 302, 303, 312, 313, 314, 321, 322, 326, 329, 334, 363, 366, 367, 385, 386, 388, 389, 390, 391, 392, 393, 78, 133, 5, 31, 218, 387, 218, 124, 124, 124, 151, 218, 387, 283, 284, 321, 329, 37, 149, 218, 311, 312, 314, 316, 317, 318, 320, 321, 329, 332, 333, 338, 122, 127, 148, 149, 218, 131, 133, 127, 131, 130, 121, 122, 213, 218, 131, 151, 218, 131, 133, 130, 122, 131, 133, 131, 130, 131, 149, 218, 321, 1, 31, 37, 38, 39, 127, 147, 149, 215, 217, 218, 270, 280, 281, 283, 285, 314, 318, 321, 329, 332, 333, 334, 336, 344, 345, 346, 347, 37, 38, 39, 149, 321, 346, 124, 135, 1, 29, 30, 31, 32, 33, 66, 117, 118, 125, 147, 218, 269, 273, 275, 276, 283, 285, 289, 290, 291, 297, 301, 309, 310, 350, 351, 352, 353, 354, 355, 329, 124, 314, 321, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 47, 48, 67, 86, 88, 101, 113, 114, 115, 116, 131, 151, 172, 173, 269, 274, 275, 283, 286, 290, 292, 300, 365, 368, 369, 370, 375, 376, 377, 31, 77, 133, 215, 217, 302, 366, 367, 385, 386, 393, 1, 215, 279, 296, 302, 334, 363, 389, 1, 388, 389, 0, 218, 387, 387, 5, 128, 387, 1, 4, 6, 8, 9, 66, 72, 73, 74, 85, 86, 99, 103, 104, 105, 106, 107, 108, 109, 110, 119, 120, 121, 124, 126, 134, 135, 137, 138, 139, 140, 151, 177, 178, 218, 219, 220, 221, 222, 225, 226, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 387, 399, 400, 401, 402, 148, 218, 131, 151, 218, 283, 329, 135, 124, 135, 125, 309, 310, 354, 355, 329, 332, 333, 311, 316, 320, 321, 125, 321, 125, 321, 321, 86, 151, 203, 205, 207, 211, 212, 218, 230, 235, 251, 255, 301, 127, 122, 122, 127, 1, 69, 79, 81, 82, 89, 92, 93, 94, 95, 97, 99, 100, 124, 126, 127, 130, 152, 153, 154, 155, 156, 157, 158, 159, 174, 175, 177, 178, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 194, 198, 199, 200, 201, 218, 226, 249, 301, 313, 315, 321, 329, 334, 335, 364, 81, 82, 218, 269, 273, 283, 286, 289, 297, 304, 305, 1, 130, 200, 201, 149, 218, 1, 218, 271, 272, 1, 130, 272, 305, 66, 204, 206, 208, 209, 210, 218, 301, 1, 130, 200, 201, 305, 1, 130, 200, 201, 1, 130, 200, 201, 149, 218, 129, 129, 129, 129, 131, 329, 314, 318, 321, 1, 128, 369, 376, 377, 369, 376, 377, 1, 127, 129, 129, 329, 127, 136, 148, 218, 244, 263, 267, 268, 129, 131, 151, 218, 130, 131, 130, 131, 321, 37, 124, 135, 137, 147, 149, 218, 269, 275, 283, 285, 290, 311, 312, 321, 327, 329, 330, 333, 1, 125, 129, 1, 125, 129, 1, 129, 1, 129, 125, 125, 314, 124, 314, 124, 124, 1, 127, 1, 130, 1, 37, 38, 39, 127, 218, 269, 275, 283, 286, 290, 321, 346, 347, 1, 127, 1, 365, 368, 376, 377, 365, 368, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 86, 87, 89, 90, 91, 127, 133, 151, 195, 196, 197, 218, 226, 230, 245, 247, 251, 263, 264, 265, 326, 356, 357, 360, 361, 362, 369, 370, 371, 372, 373, 374, 376, 377, 379, 380, 381, 382, 383, 384, 130, 31, 218, 387, 218, 213, 214, 216, 217, 311, 312, 318, 321, 329, 334, 336, 369, 377, 215, 302, 128, 243, 244, 262, 125, 124, 230, 251, 124, 230, 251, 230, 251, 124, 218, 269, 275, 283, 286, 290, 308, 267, 124, 124, 308, 267, 124, 124, 124, 124, 124, 124, 230, 251, 124, 125, 245, 247, 265, 275, 283, 285, 290, 298, 348, 387, 131, 136, 179, 180, 223, 227, 245, 131, 1, 130, 131, 218, 1, 7, 8, 9, 124, 132, 135, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 128, 246, 180, 223, 224, 232, 252, 121, 141, 142, 138, 139, 10, 11, 235, 255, 12, 13, 122, 123, 14, 15, 137, 143, 144, 16, 17, 145, 246, 125, 7, 8, 9, 124, 132, 135, 246, 121, 141, 142, 138, 139, 10, 11, 12, 13, 122, 123, 14, 15, 137, 143, 144, 16, 17, 145, 246, 125, 125, 108, 218, 301, 394, 397, 398, 131, 131, 136, 148, 267, 268, 136, 148, 267, 268, 125, 125, 125, 125, 311, 316, 320, 125, 125, 311, 11, 123, 129, 128, 124, 321, 329, 330, 66, 210, 218, 301, 210, 1, 218, 269, 283, 286, 297, 306, 301, 334, 335, 124, 151, 218, 218, 301, 1, 124, 306, 121, 124, 218, 301, 127, 326, 376, 377, 376, 377, 376, 127, 376, 377, 127, 1, 130, 1, 1, 127, 129, 129, 70, 71, 92, 96, 98, 130, 70, 71, 130, 127, 1, 198, 199, 1, 198, 199, 1, 128, 124, 133, 218, 287, 288, 311, 317, 319, 321, 329, 336, 337, 338, 1, 301, 309, 352, 329, 315, 321, 124, 133, 158, 159, 174, 175, 177, 178, 187, 218, 301, 122, 151, 218, 218, 269, 283, 286, 122, 122, 128, 129, 1, 127, 131, 28, 150, 218, 123, 129, 128, 218, 330, 332, 344, 344, 344, 344, 127, 129, 130, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 223, 224, 226, 244, 263, 300, 341, 342, 311, 314, 316, 318, 320, 311, 318, 131, 245, 264, 339, 340, 376, 377, 376, 377, 344, 345, 344, 345, 136, 136, 136, 52, 350, 351, 1, 272, 131, 131, 1, 130, 200, 201, 1, 130, 200, 201, 131, 125, 218, 309, 310, 321, 329, 330, 354, 355, 136, 148, 267, 268, 321, 329, 333, 329, 124, 135, 327, 1, 1, 129, 1, 52, 218, 350, 351, 129, 1, 52, 218, 350, 351, 129, 1, 52, 218, 350, 351, 129, 52, 218, 350, 351, 3, 28, 45, 75, 76, 125, 323, 324, 325, 245, 148, 218, 130, 131, 127, 127, 133, 267, 268, 133, 124, 124, 1, 124, 53, 54, 55, 57, 58, 59, 60, 63, 87, 218, 265, 326, 356, 379, 383, 124, 218, 127, 127, 127, 223, 224, 247, 265, 124, 283, 124, 124, 191, 218, 127, 127, 127, 133, 132, 246, 1, 132, 127, 129, 247, 265, 246, 125, 129, 247, 1, 371, 372, 371, 372, 356, 357, 365, 368, 356, 357, 365, 368, 1, 1, 387, 387, 149, 218, 131, 131, 329, 318, 321, 369, 377, 369, 377, 377, 244, 145, 127, 145, 66, 147, 218, 275, 283, 285, 290, 299, 349, 218, 300, 122, 124, 135, 218, 269, 275, 283, 286, 290, 321, 328, 329, 331, 218, 269, 275, 283, 286, 290, 307, 247, 348, 376, 218, 135, 331, 307, 245, 387, 387, 387, 245, 349, 349, 125, 218, 275, 283, 285, 290, 330, 125, 132, 1, 170, 171, 1, 130, 129, 136, 1, 170, 171, 130, 1, 170, 171, 1, 218, 125, 224, 227, 228, 264, 1, 218, 247, 265, 223, 245, 1, 232, 252, 232, 252, 232, 252, 233, 253, 233, 253, 234, 254, 234, 254, 235, 255, 235, 255, 235, 255, 223, 224, 237, 256, 223, 224, 237, 256, 223, 224, 238, 257, 223, 224, 239, 258, 223, 224, 240, 259, 241, 260, 242, 261, 133, 223, 224, 247, 248, 265, 266, 223, 245, 1, 218, 125, 227, 228, 1, 218, 247, 265, 223, 245, 232, 252, 232, 252, 232, 252, 233, 253, 233, 253, 234, 254, 234, 254, 235, 255, 235, 255, 235, 255, 235, 255, 223, 224, 237, 256, 223, 224, 237, 256, 223, 224, 238, 257, 223, 224, 239, 258, 223, 224, 240, 259, 241, 260, 242, 261, 133, 247, 248, 265, 266, 223, 245, 122, 123, 218, 395, 396, 218, 130, 394, 397, 398, 398, 136, 136, 136, 136, 136, 136, 211, 203, 205, 207, 218, 321, 329, 123, 128, 330, 123, 131, 122, 131, 218, 269, 283, 286, 330, 321, 329, 336, 337, 191, 288, 311, 321, 329, 131, 218, 131, 218, 330, 218, 321, 124, 127, 130, 181, 182, 181, 182, 376, 376, 376, 220, 376, 376, 1, 341, 342, 125, 267, 268, 131, 129, 1, 301, 309, 352, 329, 311, 319, 321, 133, 326, 218, 124, 315, 315, 218, 1, 1, 288, 212, 122, 210, 210, 267, 268, 271, 200, 201, 1, 130, 272, 128, 133, 128, 133, 209, 205, 218, 128, 218, 128, 376, 377, 1, 127, 129, 127, 129, 127, 162, 163, 166, 167, 168, 130, 160, 163, 127, 130, 162, 163, 166, 167, 168, 128, 37, 336, 337, 338, 339, 340, 343, 1, 130, 272, 1, 130, 272, 1, 130, 200, 201, 321, 329, 330, 125, 125, 125, 136, 136, 136, 329, 327, 125, 354, 355, 136, 148, 267, 268, 350, 351, 301, 350, 350, 350, 351, 125, 124, 125, 129, 324, 125, 125, 125, 1, 170, 171, 356, 357, 365, 368, 133, 133, 356, 357, 365, 368, 247, 265, 247, 265, 125, 247, 265, 133, 267, 268, 133, 124, 124, 356, 124, 224, 265, 124, 133, 57, 1, 125, 127, 218, 247, 265, 378, 127, 127, 127, 127, 127, 387, 124, 245, 245, 218, 356, 357, 365, 368, 91, 224, 264, 89, 90, 91, 245, 264, 224, 264, 245, 264, 122, 318, 377, 377, 127, 247, 248, 265, 266, 247, 248, 265, 266, 147, 148, 147, 275, 283, 285, 290, 330, 125, 125, 125, 330, 212, 125, 321, 331, 354, 355, 267, 268, 122, 329, 124, 328, 135, 122, 135, 218, 269, 275, 283, 286, 290, 331, 125, 125, 125, 125, 267, 268, 135, 135, 331, 129, 125, 129, 129, 129, 125, 129, 232, 252, 387, 1, 130, 223, 245, 1, 1, 125, 129, 125, 136, 136, 1, 129, 133, 133, 129, 133, 133, 125, 136, 136, 133, 133, 133, 133, 218, 218, 127, 129, 218, 387, 130, 130, 321, 329, 205, 212, 122, 131, 131, 218, 329, 321, 125, 329, 311, 125, 131, 131, 218, 125, 1, 170, 171, 287, 321, 218, 124, 311, 319, 319, 267, 268, 124, 125, 123, 212, 123, 123, 127, 1, 127, 203, 202, 301, 203, 202, 207, 128, 131, 1, 164, 165, 1, 164, 165, 377, 1, 341, 342, 129, 130, 339, 340, 1, 127, 1, 127, 329, 327, 125, 125, 125, 136, 136, 136, 330, 333, 247, 125, 324, 1, 356, 357, 365, 368, 356, 357, 365, 368, 125, 125, 125, 125, 1, 356, 125, 247, 356, 357, 133, 133, 265, 125, 247, 265, 57, 265, 378, 387, 124, 356, 133, 127, 1, 127, 1, 125, 265, 378, 3, 125, 133, 387, 125, 125, 129, 124, 124, 191, 133, 133, 133, 133, 133, 133, 133, 133, 125, 125, 1, 125, 123, 321, 329, 331, 125, 125, 125, 136, 136, 212, 328, 125, 354, 355, 267, 268, 212, 267, 268, 122, 135, 124, 339, 136, 136, 267, 268, 267, 268, 135, 348, 218, 218, 245, 1, 218, 224, 264, 223, 224, 223, 224, 244, 262, 223, 224, 244, 262, 223, 224, 223, 224, 244, 262, 223, 224, 244, 262, 223, 224, 244, 262, 223, 224, 244, 262, 223, 224, 244, 262, 223, 224, 244, 262, 395, 127, 127, 123, 212, 131, 376, 311, 128, 131, 1, 124, 133, 133, 123, 200, 201, 127, 200, 201, 128, 330, 128, 207, 343, 130, 339, 340, 1, 200, 201, 200, 201, 125, 356, 356, 356, 356, 356, 357, 125, 124, 378, 125, 247, 265, 247, 356, 1, 125, 247, 265, 135, 358, 359, 387, 127, 359, 3, 125, 133, 131, 191, 245, 245, 1, 1, 328, 125, 123, 125, 125, 136, 136, 123, 136, 136, 212, 267, 268, 348, 136, 136, 136, 136, 267, 268, 125, 125, 125, 125, 125, 123, 341, 267, 268, 267, 268, 200, 201, 203, 203, 129, 130, 1, 65, 65, 247, 265, 125, 247, 265, 125, 127, 125, 127, 356, 357, 125, 356, 357, 218, 125, 129, 133, 124, 3, 125, 133, 359, 127, 359, 74, 191, 192, 193, 125, 125, 125, 129, 123, 136, 136, 125, 136, 136, 127, 130, 356, 356, 125, 125, 127, 356, 247, 356, 357, 136, 127, 358, 359, 245, 359, 127, 359, 125, 133, 3, 125, 133, 376, 376, 130, 192, 131, 191, 232, 252, 339, 125, 387, 125, 125, 125, 125, 133, 127, 359, 359, 127, 359, 193, 125, 356, 124, 127, 127, 127, 359, 125, 125, 125, 133, 130, 245, 125, 127, 127, 127, 359, 125, 127, 125, 127
};
void exit(int status);
void * calloc(size_t nmemb, size_t size);
void free(void * ptr);
void * malloc(size_t size);
void * realloc(void * ptr, size_t size);
long int strtol(const char * nptr, char ** endptr, int base);
long long int strtoll(const char * nptr, char ** endptr, int base);
unsigned long long int strtoull(const char * nptr, char ** endptr, int base);
typedef __builtin_va_list va_list;
typedef void FILE;
FILE * bsl_stdin(void);
FILE * bsl_stdout(void);
FILE * bsl_stderr(void);
char * fgets(char * s, int size, FILE * stream);
FILE * fopen(const char * path, const char * mode);
int fclose(FILE * fp);
int fflush(FILE * stream);
int fgetc(FILE * stream);
int fprintf(FILE * stream, const char * format, ...);
int fputc(int c, FILE * stream);
size_t fread(void * ptr, size_t size, size_t nmemb, FILE * stream);
size_t fwrite(const void * ptr, size_t size, size_t nmemb, FILE * stream);
int vsnprintf(char *, size_t, const char *, va_list args);
int snprintf(char * str, size_t, const char * format, ...);
int fseek(FILE * stream, long offset, int whence);
long ftell(FILE * stream);
int feof(FILE * stream);
int ferror(FILE * stream);
int fileno(FILE * stream);
int yydebug;
int yyparse(void);
int yychar;
int yynerrs;
extern unsigned int skipErrors;
extern int structDeclMode;
extern int declMode;
extern int defaultDeclMode;
struct __ecereNameSpace__ecere__sys__OldList
{
void * first;
void * last;
int count;
unsigned int offset;
unsigned int circ;
} ecere_gcc_struct;
struct __ecereNameSpace__ecere__sys__BTNode;
struct Type;
struct __ecereNameSpace__ecere__com__DataValue
{
union
{
char c;
unsigned char uc;
short s;
unsigned short us;
int i;
unsigned int ui;
void * p;
float f;
double d;
long long i64;
uint64 ui64;
} ecere_gcc_struct __anon1;
} ecere_gcc_struct;
struct __ecereNameSpace__ecere__com__SerialBuffer
{
unsigned char * _buffer;
unsigned int count;
unsigned int _size;
unsigned int pos;
} ecere_gcc_struct;
extern void * __ecereNameSpace__ecere__com__eSystem_New(unsigned int size);
extern void * __ecereNameSpace__ecere__com__eSystem_New0(unsigned int size);
extern void * __ecereNameSpace__ecere__com__eSystem_Renew(void * memory, unsigned int size);
extern void * __ecereNameSpace__ecere__com__eSystem_Renew0(void * memory, unsigned int size);
extern void __ecereNameSpace__ecere__com__eSystem_Delete(void * memory);
struct Enumerator;
struct Pointer;
struct TypeName;
struct Context;
struct ExtDecl;
struct PropertyWatch;
struct TemplateParameter;
struct TemplateDatatype;
struct DBTableEntry;
struct DBIndexItem;
struct CodePosition
{
int line;
int charPos;
int pos;
int included;
} ecere_gcc_struct;
extern char * __ecereNameSpace__ecere__sys__CopyString(const char * string);
struct ModuleImport;
struct ClassImport;
extern size_t strlen(const char * );
extern void Compiler_Error(const char * format, ...);
extern const char * __ecereNameSpace__ecere__GetTranslatedString(const char * name, const char * string, const char * stringAndContext);
extern char * __ecereNameSpace__ecere__sys__RSearchString(const char * buffer, const char * subStr, int maxLen, unsigned int matchCase, unsigned int matchWord);
extern char * strcpy(char * , const char * );
extern char * strcat(char * , const char * );
extern void Compiler_Warning(const char * format, ...);
extern void * memcpy(void * , const void * , size_t size);
struct __ecereNameSpace__ecere__com__LinkList
{
void * first;
void * last;
int count;
} ecere_gcc_struct;
extern int strcmp(const char * , const char * );
static void yy_stack_print(yytype_int16 * yybottom, yytype_int16 * yytop)
{
fprintf((bsl_stderr()), "Stack now");
for(; yybottom <= yytop; yybottom++)
{
int yybot = *yybottom;
fprintf((bsl_stderr()), " %d", yybot);
}
fprintf((bsl_stderr()), "\n");
}
struct __ecereNameSpace__ecere__sys__OldList * ast;
extern void FreeList(struct __ecereNameSpace__ecere__sys__OldList * list, void (* FreeFunction)(void * ));
extern struct __ecereNameSpace__ecere__sys__OldList * MkList(void);
extern void ListAdd(struct __ecereNameSpace__ecere__sys__OldList * list, void * item);
extern struct __ecereNameSpace__ecere__sys__OldList * MkListOne(void * item);
extern void FreeEnumerator(struct Enumerator * enumerator);
extern void FreePointer(struct Pointer * pointer);
extern struct Pointer * MkPointer(struct __ecereNameSpace__ecere__sys__OldList * qualifiers, struct Pointer * pointer);
extern void FreeTypeName(struct TypeName * typeName);
extern struct Context * curContext;
extern void PopContext(struct Context * ctx);
extern void FreeContext(struct Context * context);
extern struct Context * globalContext;
extern struct Context * PushContext(void);
extern void FreeExtDecl(struct ExtDecl * extDecl);
extern struct ExtDecl * MkExtDeclString(char * s);
extern void FreeTemplateParameter(struct TemplateParameter * param);
extern void FreeTemplateDataType(struct TemplateDatatype * type);
struct Location
{
struct CodePosition start;
struct CodePosition end;
} ecere_gcc_struct;
extern void resetScannerPos(struct CodePosition * pos);
extern struct Location yylloc;
struct Location yylloc;
struct Attrib
{
struct Location loc;
int type;
struct __ecereNameSpace__ecere__sys__OldList * attribs;
} ecere_gcc_struct;
extern void FreeAttrib(struct Attrib * attr);
extern struct ExtDecl * MkExtDeclAttrib(struct Attrib * attr);
extern struct Attrib * MkAttrib(int type, struct __ecereNameSpace__ecere__sys__OldList * attribs);
struct __ecereNameSpace__ecere__com__Class;
struct __ecereNameSpace__ecere__com__Instance
{
void * * _vTbl;
struct __ecereNameSpace__ecere__com__Class * _class;
int _refCount;
} ecere_gcc_struct;
extern long long __ecereNameSpace__ecere__com__eClass_GetProperty(struct __ecereNameSpace__ecere__com__Class * _class, const char * name);
extern void __ecereNameSpace__ecere__com__eClass_SetProperty(struct __ecereNameSpace__ecere__com__Class * _class, const char * name, long long value);
extern void __ecereNameSpace__ecere__com__eInstance_SetMethod(struct __ecereNameSpace__ecere__com__Instance * instance, const char * name, void * function);
extern void __ecereNameSpace__ecere__com__eInstance_IncRef(struct __ecereNameSpace__ecere__com__Instance * instance);
extern struct __ecereNameSpace__ecere__com__Instance * fileInput;
int __ecereVMethodID___ecereNameSpace__ecere__sys__File_Seek;
struct __ecereNameSpace__ecere__com__Property;
struct __ecereNameSpace__ecere__com__Property
{
struct __ecereNameSpace__ecere__com__Property * prev;
struct __ecereNameSpace__ecere__com__Property * next;
const char * name;
unsigned int isProperty;
int memberAccess;
int id;
struct __ecereNameSpace__ecere__com__Class * _class;
const char * dataTypeString;
struct __ecereNameSpace__ecere__com__Class * dataTypeClass;
struct Type * dataType;
void (* Set)(void * , int);
int (* Get)(void * );
unsigned int (* IsSet)(void * );
void * data;
void * symbol;
int vid;
unsigned int conversion;
unsigned int watcherOffset;
const char * category;
unsigned int compiled;
unsigned int selfWatchable;
unsigned int isWatchable;
} ecere_gcc_struct;
extern void __ecereNameSpace__ecere__com__eInstance_FireSelfWatchers(struct __ecereNameSpace__ecere__com__Instance * instance, struct __ecereNameSpace__ecere__com__Property * _property);
extern void __ecereNameSpace__ecere__com__eInstance_StopWatching(struct __ecereNameSpace__ecere__com__Instance * instance, struct __ecereNameSpace__ecere__com__Property * _property, struct __ecereNameSpace__ecere__com__Instance * object);
extern void __ecereNameSpace__ecere__com__eInstance_Watch(void * instance, struct __ecereNameSpace__ecere__com__Property * _property, void * object, void (* callback)(void * , void * ));
extern void __ecereNameSpace__ecere__com__eInstance_FireWatchers(struct __ecereNameSpace__ecere__com__Instance * instance, struct __ecereNameSpace__ecere__com__Property * _property);
struct Specifier;
extern void FreeSpecifier(struct Specifier * spec);
extern struct Specifier * MkSpecifierName(const char * name);
extern void SetClassTemplateArgs(struct Specifier * spec, struct __ecereNameSpace__ecere__sys__OldList * templateArgs);
extern struct Specifier * MkSpecifier(int specifier);
extern struct Specifier * MkSpecifierExtended(struct ExtDecl * extDecl);
extern struct Specifier * MkSpecifierSubClass(struct Specifier * _class);
extern void AddStructDefinitions(struct Specifier * spec, struct __ecereNameSpace__ecere__sys__OldList * definitions);
extern struct Specifier * MkSpecifierNameArgs(const char * name, struct __ecereNameSpace__ecere__sys__OldList * templateArgs);
struct ClassFunction;
extern void FreeClassFunction(struct ClassFunction * func);
struct MemberInit;
extern void FreeMemberInit(struct MemberInit * init);
struct MembersInit;
extern void FreeMembersInit(struct MembersInit * init);
extern struct MembersInit * MkMembersInitList(struct __ecereNameSpace__ecere__sys__OldList * dataMembers);
struct MembersInit
{
struct MembersInit * prev;
struct MembersInit * next;
struct Location loc;
int type;
union
{
struct __ecereNameSpace__ecere__sys__OldList * dataMembers;
struct ClassFunction * function;
} ecere_gcc_struct __anon1;
} ecere_gcc_struct;
extern struct MembersInit * MkMembersInitMethod(struct ClassFunction * function);
struct Instantiation;
extern void FreeInstance(struct Instantiation * inst);
struct PropertyDef;
extern void FreeProperty(struct PropertyDef * def);
struct ClassDef;
extern void FreeClassDef(struct ClassDef * def);
extern struct ClassDef * MkClassDefDefaultProperty(struct __ecereNameSpace__ecere__sys__OldList * defProperties);
extern struct ClassDef * MkClassDefFunction(struct ClassFunction * function);
extern struct ClassDef * MkClassDefProperty(struct PropertyDef * propertyDef);
extern struct ClassDef * MkClassDefClassProperty(struct PropertyDef * propertyDef);
extern struct ClassDef * MkClassDefNoExpansion(void);
extern struct ClassDef * MkClassDefFixed(void);
extern struct ClassDef * MkClassDefMemberAccess(void);
extern struct ClassDef * MkClassDefPropertyWatch(struct PropertyWatch * watcher);
extern struct ClassDef * MkClassDefDesigner(const char * designer);
struct TemplateArgument;
extern void FreeTemplateArgument(struct TemplateArgument * arg);
extern struct TemplateArgument * MkTemplateTypeArgument(struct TemplateDatatype * tplDatatype);
struct ClassDefinition;
extern void FreeClass(struct ClassDefinition * _class);
struct Identifier;
extern void FreeIdentifier(struct Identifier * id);
extern struct ClassDef * MkClassDefAccessOverride(int access, struct Identifier * id);
extern struct ClassDef * MkClassDefDesignerDefaultProperty(struct Identifier * id);
extern struct TemplateParameter * MkTypeTemplateParameter(struct Identifier * identifier, struct TemplateDatatype * baseTplDatatype, struct TemplateArgument * defaultArgument);
extern struct Identifier * MkIdentifier(const char * string);
extern struct TemplateArgument * MkTemplateIdentifierArgument(struct Identifier * ident);
extern struct TemplateParameter * MkIdentifierTemplateParameter(struct Identifier * identifier, int memberType, struct TemplateArgument * defaultArgument);
extern struct TemplateParameter * MkExpressionTemplateParameter(struct Identifier * identifier, struct TemplateDatatype * dataType, struct TemplateArgument * defaultArgument);
extern struct Specifier * MkEnum(struct Identifier * id, struct __ecereNameSpace__ecere__sys__OldList * list);
extern struct Specifier * MkStructOrUnion(int type, struct Identifier * id, struct __ecereNameSpace__ecere__sys__OldList * definitions);
extern struct DBTableEntry * MkDBFieldEntry(struct TypeName * type, struct Identifier * id, char * name);
extern struct DBIndexItem * MkDBIndexItem(struct Identifier * id, int order);
extern struct DBTableEntry * MkDBIndexEntry(struct __ecereNameSpace__ecere__sys__OldList * items, struct Identifier * id);
struct Expression;
extern void FreeExpression(struct Expression * exp);
extern struct Expression * MkExpDummy(void);
extern struct Instantiation * MkInstantiationNamed(struct __ecereNameSpace__ecere__sys__OldList * specs, struct Expression * exp, struct __ecereNameSpace__ecere__sys__OldList * members);
extern struct Expression * MkExpIdentifier(struct Identifier * id);
extern struct Instantiation * MkInstantiation(struct Specifier * _class, struct Expression * exp, struct __ecereNameSpace__ecere__sys__OldList * members);
extern struct TemplateArgument * MkTemplateExpressionArgument(struct Expression * expr);
struct TemplateArgument
{
struct TemplateArgument * prev;
struct TemplateArgument * next;
struct Location loc;
struct Identifier * name;
int type;
union
{
struct Expression * expression;
struct Identifier * identifier;
struct TemplateDatatype * templateDatatype;
} ecere_gcc_struct __anon1;
} ecere_gcc_struct;
extern struct Expression * MkExpBrackets(struct __ecereNameSpace__ecere__sys__OldList * expressions);
extern struct Expression * MkExpString(const char * string);
extern struct Expression * MkExpIntlString(const char * string, const char * context);
extern struct Expression * MkExpConstant(const char * string);
extern struct Expression * MkExpInstance(struct Instantiation * inst);
extern struct Expression * MkExpExtensionExpression(struct __ecereNameSpace__ecere__sys__OldList * expressions);
extern struct Expression * MkExpMember(struct Expression * expression, struct Identifier * member);
extern struct Expression * MkExpWideString(const char * string);
extern struct Expression * MkExpNew(struct TypeName * type, struct Expression * size);
extern struct Expression * MkExpNew0(struct TypeName * type, struct Expression * size);
extern struct Expression * MkExpRenew(struct Expression * memExp, struct TypeName * type, struct Expression * size);
extern struct Expression * MkExpRenew0(struct Expression * memExp, struct TypeName * type, struct Expression * size);
extern struct Expression * MkExpVaArg(struct Expression * exp, struct TypeName * type);
extern struct Expression * MkExpClassData(struct Identifier * id);
extern struct Expression * MkExpArray(struct __ecereNameSpace__ecere__sys__OldList * expressions);
extern struct Expression * MkExpIndex(struct Expression * expression, struct __ecereNameSpace__ecere__sys__OldList * index);
extern struct Expression * MkExpCall(struct Expression * expression, struct __ecereNameSpace__ecere__sys__OldList * arguments);
extern struct Expression * MkExpPointer(struct Expression * expression, struct Identifier * member);
extern struct Expression * MkExpOp(struct Expression * exp1, int op, struct Expression * exp2);
extern struct Expression * MkExpTypeSize(struct TypeName * typeName);
extern struct Expression * MkExpClassSize(struct Specifier * _class);
extern struct Expression * MkExpTypeAlign(struct TypeName * typeName);
extern struct Expression * MkExpOffsetOf(struct TypeName * typeName, struct Identifier * id);
extern struct Expression * MkExpCast(struct TypeName * typeName, struct Expression * expression);
extern struct Expression * MkExpCondition(struct Expression * cond, struct __ecereNameSpace__ecere__sys__OldList * expressions, struct Expression * elseExp);
extern struct Enumerator * MkEnumerator(struct Identifier * id, struct Expression * exp);
extern struct Specifier * MkSpecifierTypeOf(struct Expression * expression);
extern struct Expression * MkExpDBOpen(struct Expression * ds, struct Expression * dbName);
extern struct Expression * MkExpDBField(char * table, struct Identifier * id);
extern struct Expression * MkExpDBIndex(char * table, struct Identifier * id);
extern struct Expression * MkExpDBTable(char * table);
struct Declarator;
extern void FreeDeclarator(struct Declarator * decl);
extern struct ClassFunction * MkClassFunction(struct __ecereNameSpace__ecere__sys__OldList * specifiers, struct Specifier * _class, struct Declarator * decl, struct __ecereNameSpace__ecere__sys__OldList * declList);
extern struct Declarator * MkStructDeclarator(struct Declarator * declarator, struct Expression * exp);
extern struct Declarator * MkDeclaratorFunction(struct Declarator * declarator, struct __ecereNameSpace__ecere__sys__OldList * parameters);
extern struct TemplateDatatype * MkTemplateDatatype(struct __ecereNameSpace__ecere__sys__OldList * specifiers, struct Declarator * decl);
extern struct TypeName * MkTypeName(struct __ecereNameSpace__ecere__sys__OldList * qualifiers, struct Declarator * declarator);
extern struct Expression * MkExpClass(struct __ecereNameSpace__ecere__sys__OldList * specifiers, struct Declarator * decl);
extern struct Declarator * MkDeclaratorIdentifier(struct Identifier * id);
extern struct Declarator * MkDeclaratorArray(struct Declarator * declarator, struct Expression * exp);
extern struct Declarator * MkDeclaratorEnumArray(struct Declarator * declarator, struct Specifier * _class);
extern struct Declarator * MkDeclaratorBrackets(struct Declarator * declarator);
extern struct Declarator * MkDeclaratorExtended(struct ExtDecl * extended, struct Declarator * declarator);
extern struct Declarator * MkDeclaratorPointer(struct Pointer * pointer, struct Declarator * declarator);
extern struct Declarator * MkDeclaratorExtendedEnd(struct ExtDecl * extended, struct Declarator * declarator);
extern struct TypeName * MkTypeNameGuessDecl(struct __ecereNameSpace__ecere__sys__OldList * qualifiers, struct Declarator * declarator);
struct Attribute;
extern void FreeAttribute(struct Attribute * attr);
extern struct Attribute * MkAttribute(char * attr, struct Expression * exp);
struct Attribute
{
struct Attribute * prev;
struct Attribute * next;
struct Location loc;
char * attr;
struct Expression * exp;
} ecere_gcc_struct;
struct Initializer;
extern void FreeInitializer(struct Initializer * initializer);
extern struct MemberInit * MkMemberInitExp(struct Expression * idExp, struct Initializer * initializer);
struct MemberInit
{
struct MemberInit * prev;
struct MemberInit * next;
struct Location loc;
struct Location realLoc;
struct __ecereNameSpace__ecere__sys__OldList * identifiers;
struct Initializer * initializer;
unsigned int used;
unsigned int variable;
unsigned int takeOutExp;
} ecere_gcc_struct;
struct Initializer
{
struct Initializer * prev;
struct Initializer * next;
struct Location loc;
int type;
union
{
struct Expression * exp;
struct __ecereNameSpace__ecere__sys__OldList * list;
} ecere_gcc_struct __anon1;
unsigned int isConstant;
struct Identifier * id;
} ecere_gcc_struct;
extern struct MemberInit * MkMemberInit(struct __ecereNameSpace__ecere__sys__OldList * ids, struct Initializer * initializer);
extern struct Initializer * MkInitializerAssignment(struct Expression * exp);
extern struct ClassDef * MkClassDefClassPropertyValue(struct Identifier * id, struct Initializer * initializer);
extern struct Expression * MkExpExtensionInitializer(struct TypeName * typeName, struct Initializer * initializer);
extern struct Initializer * MkInitializerList(struct __ecereNameSpace__ecere__sys__OldList * list);
struct InitDeclarator;
extern void FreeInitDeclarator(struct InitDeclarator * decl);
extern struct InitDeclarator * MkInitDeclarator(struct Declarator * declarator, struct Initializer * initializer);
struct InitDeclarator
{
struct InitDeclarator * prev;
struct InitDeclarator * next;
struct Location loc;
struct Declarator * declarator;
struct Initializer * initializer;
} ecere_gcc_struct;
struct Statement;
extern void FreeStatement(struct Statement * stmt);
extern void ProcessClassFunctionBody(struct ClassFunction * func, struct Statement * body);
struct Expression
{
struct Expression * prev;
struct Expression * next;
struct Location loc;
int type;
union
{
struct
{
char * constant;
struct Identifier * identifier;
} ecere_gcc_struct __anon1;
struct Statement * compound;
struct Instantiation * instance;
struct
{
char * string;
unsigned int intlString;
unsigned int wideString;
} ecere_gcc_struct __anon2;
struct __ecereNameSpace__ecere__sys__OldList * list;
struct
{
struct __ecereNameSpace__ecere__sys__OldList * specifiers;
struct Declarator * decl;
} ecere_gcc_struct _classExp;
struct
{
struct Identifier * id;
} ecere_gcc_struct classData;
struct
{
struct Expression * exp;
struct __ecereNameSpace__ecere__sys__OldList * arguments;
struct Location argLoc;
} ecere_gcc_struct call;
struct
{
struct Expression * exp;
struct __ecereNameSpace__ecere__sys__OldList * index;
} ecere_gcc_struct index;
struct
{
struct Expression * exp;
struct Identifier * member;
int memberType;
unsigned int thisPtr;
} ecere_gcc_struct member;
struct
{
int op;
struct Expression * exp1;
struct Expression * exp2;
} ecere_gcc_struct op;
struct TypeName * typeName;
struct Specifier * _class;
struct
{
struct TypeName * typeName;
struct Expression * exp;
} ecere_gcc_struct cast;
struct
{
struct Expression * cond;
struct __ecereNameSpace__ecere__sys__OldList * exp;
struct Expression * elseExp;
} ecere_gcc_struct cond;
struct
{
struct TypeName * typeName;
struct Expression * size;
} ecere_gcc_struct _new;
struct
{
struct TypeName * typeName;
struct Expression * size;
struct Expression * exp;
} ecere_gcc_struct _renew;
struct
{
char * table;
struct Identifier * id;
} ecere_gcc_struct db;
struct
{
struct Expression * ds;
struct Expression * name;
} ecere_gcc_struct dbopen;
struct
{
struct TypeName * typeName;
struct Initializer * initializer;
} ecere_gcc_struct initializer;
struct
{
struct Expression * exp;
struct TypeName * typeName;
} ecere_gcc_struct vaArg;
struct
{
struct TypeName * typeName;
struct Identifier * id;
} ecere_gcc_struct offset;
} ecere_gcc_struct __anon1;
unsigned int debugValue;
struct __ecereNameSpace__ecere__com__DataValue val;
uint64 address;
unsigned int hasAddress;
struct Type * expType;
struct Type * destType;
unsigned int usage;
int tempCount;
unsigned int byReference;
unsigned int isConstant;
unsigned int addedThis;
unsigned int needCast;
unsigned int thisPtr;
unsigned int opDestType;
unsigned int usedInComparison;
unsigned int ambiguousUnits;
unsigned int parentOpDestType;
unsigned int needTemplateCast;
} ecere_gcc_struct;
extern struct PropertyDef * MkProperty(struct __ecereNameSpace__ecere__sys__OldList * specs, struct Declarator * decl, struct Identifier * id, struct Statement * setStmt, struct Statement * getStmt);
extern struct PropertyWatch * MkPropertyWatch(struct __ecereNameSpace__ecere__sys__OldList * properties, struct Statement * compound);
extern struct PropertyWatch * MkDeleteWatch(struct Statement * compound);
extern struct Statement * MkWatchStmt(struct Expression * watcher, struct Expression * object, struct __ecereNameSpace__ecere__sys__OldList * watches);
extern struct Statement * MkStopWatchingStmt(struct Expression * watcher, struct Expression * object, struct __ecereNameSpace__ecere__sys__OldList * watches);
extern struct Statement * MkFireWatchersStmt(struct Expression * object, struct __ecereNameSpace__ecere__sys__OldList * watches);
extern struct Expression * MkExpExtensionCompound(struct Statement * compound);
extern struct Statement * MkExpressionStmt(struct __ecereNameSpace__ecere__sys__OldList * expressions);
extern struct Statement * MkAsmStmt(struct Specifier * spec, char * statements, struct __ecereNameSpace__ecere__sys__OldList * inputFields, struct __ecereNameSpace__ecere__sys__OldList * outputFields, struct __ecereNameSpace__ecere__sys__OldList * clobberedFields);
extern struct Statement * MkLabeledStmt(struct Identifier * id, struct Statement * statement);
extern struct Statement * MkCaseStmt(struct Expression * exp, struct Statement * statement);
extern struct Statement * MkCompoundStmt(struct __ecereNameSpace__ecere__sys__OldList * declarations, struct __ecereNameSpace__ecere__sys__OldList * statements);
extern struct Statement * MkIfStmt(struct __ecereNameSpace__ecere__sys__OldList * exp, struct Statement * statement, struct Statement * elseStmt);
extern struct Statement * MkSwitchStmt(struct __ecereNameSpace__ecere__sys__OldList * exp, struct Statement * statement);
extern struct Statement * MkWhileStmt(struct __ecereNameSpace__ecere__sys__OldList * exp, struct Statement * statement);
extern struct Statement * MkDoWhileStmt(struct Statement * statement, struct __ecereNameSpace__ecere__sys__OldList * exp);
extern struct Statement * MkForStmt(struct Statement * init, struct Statement * check, struct __ecereNameSpace__ecere__sys__OldList * inc, struct Statement * statement);
extern struct Statement * MkForEachStmt(struct Identifier * id, struct __ecereNameSpace__ecere__sys__OldList * exp, struct __ecereNameSpace__ecere__sys__OldList * filter, struct Statement * statement);
extern struct Statement * MkGotoStmt(struct Identifier * id);
extern struct Statement * MkContinueStmt(void);
extern struct Statement * MkBreakStmt(void);
extern struct Statement * MkReturnStmt(struct __ecereNameSpace__ecere__sys__OldList * exp);
struct Declaration;
extern void FreeDeclaration(struct Declaration * decl);
struct Statement
{
struct Statement * prev;
struct Statement * next;
struct Location loc;
int type;
union
{
struct __ecereNameSpace__ecere__sys__OldList * expressions;
struct
{
struct Identifier * id;
struct Statement * stmt;
} ecere_gcc_struct labeled;
struct
{
struct Expression * exp;
struct Statement * stmt;
} ecere_gcc_struct caseStmt;
struct
{
struct __ecereNameSpace__ecere__sys__OldList * declarations;
struct __ecereNameSpace__ecere__sys__OldList * statements;
struct Context * context;
unsigned int isSwitch;
} ecere_gcc_struct compound;
struct
{
struct __ecereNameSpace__ecere__sys__OldList * exp;
struct Statement * stmt;
struct Statement * elseStmt;
} ecere_gcc_struct ifStmt;
struct
{
struct __ecereNameSpace__ecere__sys__OldList * exp;
struct Statement * stmt;
} ecere_gcc_struct switchStmt;
struct
{
struct __ecereNameSpace__ecere__sys__OldList * exp;
struct Statement * stmt;
} ecere_gcc_struct whileStmt;
struct
{
struct __ecereNameSpace__ecere__sys__OldList * exp;
struct Statement * stmt;
} ecere_gcc_struct doWhile;
struct
{
struct Statement * init;
struct Statement * check;
struct __ecereNameSpace__ecere__sys__OldList * increment;
struct Statement * stmt;
} ecere_gcc_struct forStmt;
struct
{
struct Identifier * id;
} ecere_gcc_struct gotoStmt;
struct
{
struct Specifier * spec;
char * statements;
struct __ecereNameSpace__ecere__sys__OldList * inputFields;
struct __ecereNameSpace__ecere__sys__OldList * outputFields;
struct __ecereNameSpace__ecere__sys__OldList * clobberedFields;
} ecere_gcc_struct asmStmt;
struct
{
struct Expression * watcher;
struct Expression * object;
struct __ecereNameSpace__ecere__sys__OldList * watches;
} ecere_gcc_struct _watch;
struct
{
struct Identifier * id;
struct __ecereNameSpace__ecere__sys__OldList * exp;
struct __ecereNameSpace__ecere__sys__OldList * filter;
struct Statement * stmt;
} ecere_gcc_struct forEachStmt;
struct Declaration * decl;
} ecere_gcc_struct __anon1;
} ecere_gcc_struct;
struct ClassDef
{
struct ClassDef * prev;
struct ClassDef * next;
struct Location loc;
int type;
union
{
struct Declaration * decl;
struct ClassFunction * function;
struct __ecereNameSpace__ecere__sys__OldList * defProperties;
struct PropertyDef * propertyDef;
struct PropertyWatch * propertyWatch;
char * designer;
struct Identifier * defaultProperty;
struct
{
struct Identifier * id;
struct Initializer * initializer;
} ecere_gcc_struct __anon1;
} ecere_gcc_struct __anon1;
int memberAccess;
void * object;
} ecere_gcc_struct;
extern struct ClassDef * MkClassDefDeclaration(struct Declaration * decl);
extern struct Declaration * MkStructDeclaration(struct __ecereNameSpace__ecere__sys__OldList * specifiers, struct __ecereNameSpace__ecere__sys__OldList * declarators, struct Specifier * extStorage);
extern struct Declaration * MkDeclarationClassInst(struct Instantiation * inst);
extern struct ClassDef * MkClassDefClassData(struct Declaration * decl);
extern struct Statement * MkBadDeclStmt(struct Declaration * decl);
extern struct Declaration * MkDeclaration(struct __ecereNameSpace__ecere__sys__OldList * specifiers, struct __ecereNameSpace__ecere__sys__OldList * initDeclarators);
extern struct Declaration * MkDeclarationInst(struct Instantiation * inst);
extern struct Declaration * MkDeclarationDefine(struct Identifier * id, struct Expression * exp);
struct FunctionDefinition;
extern void FreeFunction(struct FunctionDefinition * func);
extern struct FunctionDefinition * MkFunction(struct __ecereNameSpace__ecere__sys__OldList * specifiers, struct Declarator * declarator, struct __ecereNameSpace__ecere__sys__OldList * declarationList);
extern void ProcessFunctionBody(struct FunctionDefinition * func, struct Statement * body);
struct External;
extern void FreeExternal(struct External * external);
extern struct External * MkExternalFunction(struct FunctionDefinition * function);
extern struct External * MkExternalClass(struct ClassDefinition * _class);
extern struct External * MkExternalDeclaration(struct Declaration * declaration);
extern struct External * MkExternalImport(char * name, int importType, int importAccess);
extern struct External * MkExternalNameSpace(struct Identifier * identifier);
struct Symbol;
extern struct Symbol * _DeclClass(struct Specifier * _class, const char * name);
struct Identifier
{
struct Identifier * prev;
struct Identifier * next;
struct Location loc;
struct Symbol * classSym;
struct Specifier * _class;
char * string;
struct Identifier * badID;
} ecere_gcc_struct;
struct Specifier
{
struct Specifier * prev;
struct Specifier * next;
struct Location loc;
int type;
union
{
int specifier;
struct
{
struct ExtDecl * extDecl;
char * name;
struct Symbol * symbol;
struct __ecereNameSpace__ecere__sys__OldList * templateArgs;
struct Specifier * nsSpec;
} ecere_gcc_struct __anon1;
struct
{
struct Identifier * id;
struct __ecereNameSpace__ecere__sys__OldList * list;
struct __ecereNameSpace__ecere__sys__OldList * baseSpecs;
struct __ecereNameSpace__ecere__sys__OldList * definitions;
unsigned int addNameSpace;
struct Context * ctx;
struct ExtDecl * extDeclStruct;
} ecere_gcc_struct __anon2;
struct Expression * expression;
struct Specifier * _class;
struct TemplateParameter * templateParameter;
} ecere_gcc_struct __anon1;
} ecere_gcc_struct;
struct ClassFunction
{
struct ClassFunction * prev;
struct ClassFunction * next;
struct Location loc;
struct __ecereNameSpace__ecere__sys__OldList * specifiers;
struct Declarator * declarator;
struct __ecereNameSpace__ecere__sys__OldList * declarations;
struct Statement * body;
struct __ecereNameSpace__ecere__com__Class * _class;
struct __ecereNameSpace__ecere__sys__OldList attached;
int declMode;
struct Type * type;
struct Symbol * propSet;
unsigned int isVirtual;
unsigned int isConstructor;
unsigned int isDestructor;
unsigned int dontMangle;
int id;
int idCode;
} ecere_gcc_struct;
struct Declarator
{
struct Declarator * prev;
struct Declarator * next;
struct Location loc;
int type;
struct Symbol * symbol;
struct Declarator * declarator;
union
{
struct Identifier * identifier;
struct
{
struct Expression * exp;
struct Expression * posExp;
struct Attrib * attrib;
} ecere_gcc_struct structDecl;
struct
{
struct Expression * exp;
struct Specifier * enumClass;
} ecere_gcc_struct array;
struct
{
struct __ecereNameSpace__ecere__sys__OldList * parameters;
} ecere_gcc_struct function;
struct
{
struct Pointer * pointer;
} ecere_gcc_struct pointer;
struct
{
struct ExtDecl * extended;
} ecere_gcc_struct extended;
} ecere_gcc_struct __anon1;
} ecere_gcc_struct;
struct Instantiation
{
struct Instantiation * prev;
struct Instantiation * next;
struct Location loc;
struct Specifier * _class;
struct Expression * exp;
struct __ecereNameSpace__ecere__sys__OldList * members;
struct Symbol * symbol;
unsigned int fullSet;
unsigned int isConstant;
unsigned char * data;
struct Location nameLoc;
struct Location insideLoc;
unsigned int built;
} ecere_gcc_struct;
struct PropertyDef
{
struct PropertyDef * prev;
struct PropertyDef * next;
struct Location loc;
struct __ecereNameSpace__ecere__sys__OldList * specifiers;
struct Declarator * declarator;
struct Identifier * id;
struct Statement * getStmt;
struct Statement * setStmt;
struct Statement * issetStmt;
struct Symbol * symbol;
struct Expression * category;
struct
{
unsigned int conversion : 1;
unsigned int isWatchable : 1;
unsigned int isDBProp : 1;
} ecere_gcc_struct __anon1;
} ecere_gcc_struct;
struct Declaration
{
struct Declaration * prev;
struct Declaration * next;
struct Location loc;
int type;
union
{
struct
{
struct __ecereNameSpace__ecere__sys__OldList * specifiers;
struct __ecereNameSpace__ecere__sys__OldList * declarators;
} ecere_gcc_struct __anon1;
struct Instantiation * inst;
struct
{
struct Identifier * id;
struct Expression * exp;
} ecere_gcc_struct __anon2;
} ecere_gcc_struct __anon1;
struct Specifier * extStorage;
struct Symbol * symbol;
int declMode;
} ecere_gcc_struct;
extern struct Symbol * DeclClassAddNameSpace(struct Specifier * _class, const char * className);
extern struct Symbol * DeclClass(struct Specifier * _class, const char * name);
struct ClassDefinition
{
struct ClassDefinition * prev;
struct ClassDefinition * next;
struct Location loc;
struct Specifier * _class;
struct __ecereNameSpace__ecere__sys__OldList * baseSpecs;
struct __ecereNameSpace__ecere__sys__OldList * definitions;
struct Symbol * symbol;
struct Location blockStart;
struct Location nameLoc;
int declMode;
unsigned int deleteWatchable;
} ecere_gcc_struct;
extern struct ClassDefinition * MkClass(struct Symbol * symbol, struct __ecereNameSpace__ecere__sys__OldList * baseSpecs, struct __ecereNameSpace__ecere__sys__OldList * definitions);
extern void SetupBaseSpecs(struct Symbol * symbol, struct __ecereNameSpace__ecere__sys__OldList * baseSpecs);
struct FunctionDefinition
{
struct FunctionDefinition * prev;
struct FunctionDefinition * next;
struct Location loc;
struct __ecereNameSpace__ecere__sys__OldList * specifiers;
struct Declarator * declarator;
struct __ecereNameSpace__ecere__sys__OldList * declarations;
struct Statement * body;
struct __ecereNameSpace__ecere__com__Class * _class;
struct __ecereNameSpace__ecere__sys__OldList attached;
int declMode;
struct Type * type;
struct Symbol * propSet;
int tempCount;
unsigned int propertyNoThis;
} ecere_gcc_struct;
struct DBTableDef
{
char * name;
struct Symbol * symbol;
struct __ecereNameSpace__ecere__sys__OldList * definitions;
int declMode;
} ecere_gcc_struct;
struct External
{
struct External * prev;
struct External * next;
struct Location loc;
int type;
struct Symbol * symbol;
union
{
struct FunctionDefinition * function;
struct ClassDefinition * _class;
struct Declaration * declaration;
char * importString;
struct Identifier * id;
struct DBTableDef * table;
} ecere_gcc_struct __anon1;
int importType;
struct External * fwdDecl;
struct __ecereNameSpace__ecere__com__Instance * outgoing;
struct __ecereNameSpace__ecere__com__Instance * incoming;
int nonBreakableIncoming;
} ecere_gcc_struct;
extern struct External * MkExternalDBTable(struct DBTableDef * table);
extern struct DBTableDef * MkDBTableDef(char * name, struct Symbol * symbol, struct __ecereNameSpace__ecere__sys__OldList * definitions);
struct __ecereNameSpace__ecere__sys__BinaryTree;
struct __ecereNameSpace__ecere__sys__BinaryTree
{
struct __ecereNameSpace__ecere__sys__BTNode * root;
int count;
int (* CompareKey)(struct __ecereNameSpace__ecere__sys__BinaryTree * tree, uintptr_t a, uintptr_t b);
void (* FreeKey)(void * key);
} ecere_gcc_struct;
struct __ecereNameSpace__ecere__com__Method;
struct __ecereNameSpace__ecere__com__Method
{
const char * name;
struct __ecereNameSpace__ecere__com__Method * parent;
struct __ecereNameSpace__ecere__com__Method * left;
struct __ecereNameSpace__ecere__com__Method * right;
int depth;
int (* function)();
int vid;
int type;
struct __ecereNameSpace__ecere__com__Class * _class;
void * symbol;
const char * dataTypeString;
struct Type * dataType;
int memberAccess;
} ecere_gcc_struct;
struct Symbol
{
char * string;
struct Symbol * parent;
struct Symbol * left;
struct Symbol * right;
int depth;
struct Type * type;
union
{
struct __ecereNameSpace__ecere__com__Method * method;
struct __ecereNameSpace__ecere__com__Property * _property;
struct __ecereNameSpace__ecere__com__Class * registered;
} ecere_gcc_struct __anon1;
unsigned int notYetDeclared;
union
{
struct
{
struct External * pointerExternal;
struct External * structExternal;
} ecere_gcc_struct __anon1;
struct
{
struct External * externalGet;
struct External * externalSet;
struct External * externalPtr;
struct External * externalIsSet;
} ecere_gcc_struct __anon2;
struct
{
struct External * methodExternal;
struct External * methodCodeExternal;
} ecere_gcc_struct __anon3;
} ecere_gcc_struct __anon2;
unsigned int imported;
unsigned int declaredStructSym;
struct __ecereNameSpace__ecere__com__Class * _class;
unsigned int declaredStruct;
unsigned int needConstructor;
unsigned int needDestructor;
char * constructorName;
char * structName;
char * className;
char * destructorName;
struct ModuleImport * module;
struct ClassImport * _import;
struct Location nameLoc;
unsigned int isParam;
unsigned int isRemote;
unsigned int isStruct;
unsigned int fireWatchersDone;
int declaring;
unsigned int classData;
unsigned int isStatic;
char * shortName;
struct __ecereNameSpace__ecere__sys__OldList * templateParams;
struct __ecereNameSpace__ecere__sys__OldList templatedClasses;
struct Context * ctx;
int isIterator;
struct Expression * propCategory;
unsigned int mustRegister;
} ecere_gcc_struct;
struct AsmField;
typedef union YYSTYPE
{
int specifierType;
int i;
int declMode;
struct Identifier * id;
struct Expression * exp;
struct Specifier * specifier;
struct __ecereNameSpace__ecere__sys__OldList * list;
struct Enumerator * enumerator;
struct Declarator * declarator;
struct Pointer * pointer;
struct Initializer * initializer;
struct InitDeclarator * initDeclarator;
struct TypeName * typeName;
struct Declaration * declaration;
struct Statement * stmt;
struct FunctionDefinition * function;
struct External * external;
struct Context * context;
struct AsmField * asmField;
struct Attrib * attrib;
struct ExtDecl * extDecl;
struct Attribute * attribute;
struct Instantiation * instance;
struct MembersInit * membersInit;
struct MemberInit * memberInit;
struct ClassFunction * classFunction;
struct ClassDefinition * _class;
struct ClassDef * classDef;
struct PropertyDef * prop;
char * string;
struct Symbol * symbol;
struct PropertyWatch * propertyWatch;
struct TemplateParameter * templateParameter;
struct TemplateArgument * templateArgument;
struct TemplateDatatype * templateDatatype;
struct DBTableEntry * dbtableEntry;
struct DBIndexItem * dbindexItem;
struct DBTableDef * dbtableDef;
} ecere_gcc_struct YYSTYPE;
extern YYSTYPE yylval;
union yyalloc
{
yytype_int16 yyss_alloc;
YYSTYPE yyvs_alloc;
struct Location yyls_alloc;
} ecere_gcc_struct;
static void yy_symbol_value_print(FILE * yyoutput, int yytype, YYSTYPE const * const yyvaluep, struct Location const * const yylocationp)
{
if(!yyvaluep)
return ;
((void)(yylocationp));
((void)(yyoutput));
switch(yytype)
{
default:
break;
}
}
YYSTYPE yylval;
extern struct AsmField * MkAsmField(char * command, struct Expression * expression, struct Identifier * symbolic);
struct AsmField
{
struct AsmField * prev;
struct AsmField * next;
struct Location loc;
char * command;
struct Expression * expression;
struct Identifier * symbolic;
} ecere_gcc_struct;
static void yy_symbol_print(FILE * yyoutput, int yytype, YYSTYPE const * const yyvaluep, struct Location const * const yylocationp)
{
if(yytype < 146)
fprintf(yyoutput, "token %s (", yytname[yytype]);
else
fprintf(yyoutput, "nterm %s (", yytname[yytype]);
((void)0);
fprintf(yyoutput, ": ");
yy_symbol_value_print(yyoutput, yytype, yyvaluep, yylocationp);
fprintf(yyoutput, ")");
}
static void yy_reduce_print(YYSTYPE * yyvsp, struct Location * yylsp, int yyrule)
{
int yynrhs = yyr2[yyrule];
int yyi;
unsigned long int yylno = yyrline[yyrule];
fprintf((bsl_stderr()), "Reducing stack by rule %d (line %lu):\n", yyrule - 1, yylno);
for(yyi = 0; yyi < yynrhs; yyi++)
{
fprintf((bsl_stderr()), " $%d = ", yyi + 1);
yy_symbol_print((bsl_stderr()), yyrhs[yyprhs[yyrule] + yyi], &(yyvsp[(yyi + 1) - (yynrhs)]), &(yylsp[(yyi + 1) - (yynrhs)]));
fprintf((bsl_stderr()), "\n");
}
}
struct __ecereNameSpace__ecere__com__NameSpace;
struct __ecereNameSpace__ecere__com__NameSpace
{
const char * name;
struct __ecereNameSpace__ecere__com__NameSpace * btParent;
struct __ecereNameSpace__ecere__com__NameSpace * left;
struct __ecereNameSpace__ecere__com__NameSpace * right;
int depth;
struct __ecereNameSpace__ecere__com__NameSpace * parent;
struct __ecereNameSpace__ecere__sys__BinaryTree nameSpaces;
struct __ecereNameSpace__ecere__sys__BinaryTree classes;
struct __ecereNameSpace__ecere__sys__BinaryTree defines;
struct __ecereNameSpace__ecere__sys__BinaryTree functions;
} ecere_gcc_struct;
struct __ecereNameSpace__ecere__com__Application
{
int argc;
const char * * argv;
int exitCode;
unsigned int isGUIApp;
struct __ecereNameSpace__ecere__sys__OldList allModules;
char * parsedCommand;
struct __ecereNameSpace__ecere__com__NameSpace systemNameSpace;
} ecere_gcc_struct;
struct __ecereNameSpace__ecere__com__DataMember;
struct __ecereNameSpace__ecere__com__ClassTemplateArgument
{
union
{
struct
{
const char * dataTypeString;
struct __ecereNameSpace__ecere__com__Class * dataTypeClass;
} ecere_gcc_struct __anon1;
struct __ecereNameSpace__ecere__com__DataValue expression;
struct
{
const char * memberString;
union
{
struct __ecereNameSpace__ecere__com__DataMember * member;
struct __ecereNameSpace__ecere__com__Property * prop;
struct __ecereNameSpace__ecere__com__Method * method;
} ecere_gcc_struct __anon1;
} ecere_gcc_struct __anon2;
} ecere_gcc_struct __anon1;
} ecere_gcc_struct;
struct __ecereNameSpace__ecere__com__DataMember
{
struct __ecereNameSpace__ecere__com__DataMember * prev;
struct __ecereNameSpace__ecere__com__DataMember * next;
const char * name;
unsigned int isProperty;
int memberAccess;
int id;
struct __ecereNameSpace__ecere__com__Class * _class;
const char * dataTypeString;
struct __ecereNameSpace__ecere__com__Class * dataTypeClass;
struct Type * dataType;
int type;
int offset;
int memberID;
struct __ecereNameSpace__ecere__sys__OldList members;
struct __ecereNameSpace__ecere__sys__BinaryTree membersAlpha;
int memberOffset;
short structAlignment;
short pointerAlignment;
} ecere_gcc_struct;
struct __ecereNameSpace__ecere__com__Module;
struct __ecereNameSpace__ecere__com__Module
{
struct __ecereNameSpace__ecere__com__Instance * application;
struct __ecereNameSpace__ecere__sys__OldList classes;
struct __ecereNameSpace__ecere__sys__OldList defines;
struct __ecereNameSpace__ecere__sys__OldList functions;
struct __ecereNameSpace__ecere__sys__OldList modules;
struct __ecereNameSpace__ecere__com__Instance * prev;
struct __ecereNameSpace__ecere__com__Instance * next;
const char * name;
void * library;
void * Unload;
int importType;
int origImportType;
struct __ecereNameSpace__ecere__com__NameSpace privateNameSpace;
struct __ecereNameSpace__ecere__com__NameSpace publicNameSpace;
} ecere_gcc_struct;
struct __ecereNameSpace__ecere__com__Class
{
struct __ecereNameSpace__ecere__com__Class * prev;
struct __ecereNameSpace__ecere__com__Class * next;
const char * name;
int offset;
int structSize;
void * * _vTbl;
int vTblSize;
unsigned int (* Constructor)(void * );
void (* Destructor)(void * );
int offsetClass;
int sizeClass;
struct __ecereNameSpace__ecere__com__Class * base;
struct __ecereNameSpace__ecere__sys__BinaryTree methods;
struct __ecereNameSpace__ecere__sys__BinaryTree members;
struct __ecereNameSpace__ecere__sys__BinaryTree prop;
struct __ecereNameSpace__ecere__sys__OldList membersAndProperties;
struct __ecereNameSpace__ecere__sys__BinaryTree classProperties;
struct __ecereNameSpace__ecere__sys__OldList derivatives;
int memberID;
int startMemberID;
int type;
struct __ecereNameSpace__ecere__com__Instance * module;
struct __ecereNameSpace__ecere__com__NameSpace * nameSpace;
const char * dataTypeString;
struct Type * dataType;
int typeSize;
int defaultAlignment;
void (* Initialize)();
int memberOffset;
struct __ecereNameSpace__ecere__sys__OldList selfWatchers;
const char * designerClass;
unsigned int noExpansion;
const char * defaultProperty;
unsigned int comRedefinition;
int count;
int isRemote;
unsigned int internalDecl;
void * data;
unsigned int computeSize;
short structAlignment;
short pointerAlignment;
int destructionWatchOffset;
unsigned int fixed;
struct __ecereNameSpace__ecere__sys__OldList delayedCPValues;
int inheritanceAccess;
const char * fullName;
void * symbol;
struct __ecereNameSpace__ecere__sys__OldList conversions;
struct __ecereNameSpace__ecere__sys__OldList templateParams;
struct __ecereNameSpace__ecere__com__ClassTemplateArgument * templateArgs;
struct __ecereNameSpace__ecere__com__Class * templateClass;
struct __ecereNameSpace__ecere__sys__OldList templatized;
int numParams;
unsigned int isInstanceClass;
unsigned int byValueSystemClass;
} ecere_gcc_struct;
void __ecereRegisterModule_grammar(struct __ecereNameSpace__ecere__com__Instance * module)
{
struct __ecereNameSpace__ecere__com__Class __attribute__((unused)) * class;
}
void __ecereUnregisterModule_grammar(struct __ecereNameSpace__ecere__com__Instance * module)
{
}
extern struct __ecereNameSpace__ecere__com__Class * __ecereClass_Context;
extern struct __ecereNameSpace__ecere__com__Class * __ecereClass___ecereNameSpace__ecere__sys__File;
static void yydestruct(const char * yymsg, int yytype, YYSTYPE * yyvaluep, struct Location * yylocationp)
{
((void)(yyvaluep));
((void)(yylocationp));
if(!yymsg)
yymsg = "Deleting";
do
{
if(yydebug)
{
fprintf((bsl_stderr()), "%s ", yymsg);
yy_symbol_print((bsl_stderr()), yytype, yyvaluep, yylocationp);
fprintf((bsl_stderr()), "\n");
}
}while((0));
switch(yytype)
{
case 147:
{
FreeSpecifier((*yyvaluep).specifier);
}
;
break;
case 148:
{
FreeSpecifier((*yyvaluep).specifier);
}
;
break;
case 149:
{
FreeSpecifier((*yyvaluep).specifier);
}
;
break;
case 150:
{
(__ecereNameSpace__ecere__com__eSystem_Delete((*yyvaluep).string), (*yyvaluep).string = 0);
}
;
break;
case 151:
{
FreeSpecifier((*yyvaluep).specifier);
}
;
break;
case 152:
{
FreeClassFunction((*yyvaluep).classFunction);
}
;
break;
case 153:
{
FreeClassFunction((*yyvaluep).classFunction);
}
;
break;
case 154:
{
FreeClassFunction((*yyvaluep).classFunction);
}
;
break;
case 155:
{
FreeClassFunction((*yyvaluep).classFunction);
}
;
break;
case 156:
{
FreeClassFunction((*yyvaluep).classFunction);
}
;
break;
case 157:
{
FreeClassFunction((*yyvaluep).classFunction);
}
;
break;
case 158:
{
FreeClassFunction((*yyvaluep).classFunction);
}
;
break;
case 159:
{
FreeClassFunction((*yyvaluep).classFunction);
}
;
break;
case 160:
{
FreeClassFunction((*yyvaluep).classFunction);
}
;
break;
case 161:
{
FreeClassFunction((*yyvaluep).classFunction);
}
;
break;
case 162:
{
FreeClassFunction((*yyvaluep).classFunction);
}
;
break;
case 163:
{
FreeClassFunction((*yyvaluep).classFunction);
}
;
break;
case 164:
{
FreeMemberInit((*yyvaluep).memberInit);
}
;
break;
case 165:
{
FreeMemberInit((*yyvaluep).memberInit);
}
;
break;
case 166:
{
FreeList((*yyvaluep).list, (void *)(FreeMemberInit));
}
;
break;
case 167:
{
FreeList((*yyvaluep).list, (void *)(FreeMemberInit));
}
;
break;
case 168:
{
FreeList((*yyvaluep).list, (void *)(FreeMemberInit));
}
;
break;
case 169:
{
FreeList((*yyvaluep).list, (void *)(FreeMembersInit));
}
;
break;
case 170:
{
FreeList((*yyvaluep).list, (void *)(FreeMembersInit));
}
;
break;
case 171:
{
FreeList((*yyvaluep).list, (void *)(FreeMembersInit));
}
;
break;
case 172:
{
FreeInstance((*yyvaluep).instance);
}
;
break;
case 173:
{
FreeInstance((*yyvaluep).instance);
}
;
break;
case 177:
{
FreeInstance((*yyvaluep).instance);
}
;
break;
case 178:
{
FreeInstance((*yyvaluep).instance);
}
;
break;
case 181:
{
FreeMemberInit((*yyvaluep).memberInit);
}
;
break;
case 182:
{
FreeMemberInit((*yyvaluep).memberInit);
}
;
break;
case 183:
{
FreeList((*yyvaluep).list, (void *)(FreeMemberInit));
}
;
break;
case 184:
{
FreeList((*yyvaluep).list, (void *)(FreeMemberInit));
}
;
break;
case 187:
{
FreeProperty((*yyvaluep).prop);
}
;
break;
case 198:
{
FreeClassDef((*yyvaluep).classDef);
}
;
break;
case 199:
{
FreeClassDef((*yyvaluep).classDef);
}
;
break;
case 200:
{
FreeList((*yyvaluep).list, (void *)(FreeClassDef));
}
;
break;
case 201:
{
FreeList((*yyvaluep).list, (void *)(FreeClassDef));
}
;
break;
case 202:
{
FreeTemplateDataType((*yyvaluep).templateDatatype);
}
;
break;
case 203:
{
FreeTemplateArgument((*yyvaluep).templateArgument);
}
;
break;
case 204:
{
FreeTemplateParameter((*yyvaluep).templateParameter);
}
;
break;
case 205:
{
FreeTemplateArgument((*yyvaluep).templateArgument);
}
;
break;
case 206:
{
FreeTemplateParameter((*yyvaluep).templateParameter);
}
;
break;
case 207:
{
FreeTemplateArgument((*yyvaluep).templateArgument);
}
;
break;
case 208:
{
FreeTemplateParameter((*yyvaluep).templateParameter);
}
;
break;
case 209:
{
FreeTemplateParameter((*yyvaluep).templateParameter);
}
;
break;
case 210:
{
FreeList((*yyvaluep).list, (void *)(FreeTemplateParameter));
}
;
break;
case 211:
{
FreeTemplateArgument((*yyvaluep).templateArgument);
}
;
break;
case 212:
{
FreeList((*yyvaluep).list, (void *)(FreeTemplateArgument));
}
;
break;
case 213:
{
struct Context * ctx = curContext;
PopContext(ctx);
FreeContext(ctx);
((ctx ? __extension__ ({
void * __ecerePtrToDelete = (ctx);
__ecereClass_Context->Destructor ? __ecereClass_Context->Destructor((void *)__ecerePtrToDelete) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(__ecerePtrToDelete);
}) : 0), ctx = 0);
}
;
break;
case 214:
{
struct Context * ctx = curContext;
PopContext(ctx);
FreeContext(ctx);
((ctx ? __extension__ ({
void * __ecerePtrToDelete = (ctx);
__ecereClass_Context->Destructor ? __ecereClass_Context->Destructor((void *)__ecerePtrToDelete) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(__ecerePtrToDelete);
}) : 0), ctx = 0);
}
;
break;
case 215:
{
FreeClass((*yyvaluep)._class);
}
;
break;
case 216:
{
FreeClass((*yyvaluep)._class);
}
;
break;
case 217:
{
FreeClass((*yyvaluep)._class);
}
;
break;
case 218:
{
FreeIdentifier((*yyvaluep).id);
}
;
break;
case 219:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 220:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 225:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 226:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 227:
{
FreeList((*yyvaluep).list, (void *)(FreeExpression));
}
;
break;
case 228:
{
FreeList((*yyvaluep).list, (void *)(FreeExpression));
}
;
break;
case 230:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 232:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 233:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 234:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 235:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 237:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 238:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 239:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 240:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 241:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 242:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 243:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 244:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 245:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 247:
{
FreeList((*yyvaluep).list, (void *)(FreeExpression));
}
;
break;
case 249:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 251:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 252:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 253:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 254:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 255:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 256:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 257:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 258:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 259:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 260:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 261:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 262:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 263:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 264:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 265:
{
FreeList((*yyvaluep).list, (void *)(FreeExpression));
}
;
break;
case 267:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 268:
{
FreeExpression((*yyvaluep).exp);
}
;
break;
case 269:
{
FreeSpecifier((*yyvaluep).specifier);
}
;
break;
case 270:
{
FreeSpecifier((*yyvaluep).specifier);
}
;
break;
case 271:
{
FreeEnumerator((*yyvaluep).enumerator);
}
;
break;
case 272:
{
FreeList((*yyvaluep).list, (void *)(FreeEnumerator));
}
;
break;
case 274:
{
FreeSpecifier((*yyvaluep).specifier);
}
;
break;
case 275:
{
FreeSpecifier((*yyvaluep).specifier);
}
;
break;
case 276:
{
FreeSpecifier((*yyvaluep).specifier);
}
;
break;
case 278:
{
FreeSpecifier((*yyvaluep).specifier);
}
;
break;
case 279:
{
FreeSpecifier((*yyvaluep).specifier);
}
;
break;
case 280:
{
FreeSpecifier((*yyvaluep).specifier);
}
;
break;
case 281:
{
FreeSpecifier((*yyvaluep).specifier);
}
;
break;
case 282:
{
FreeSpecifier((*yyvaluep).specifier);
}
;
break;
case 283:
{
FreeSpecifier((*yyvaluep).specifier);
}
;
break;
case 284:
{
FreeList((*yyvaluep).list, (void *)(FreeSpecifier));
}
;
break;
case 285:
{
FreeSpecifier((*yyvaluep).specifier);
}
;
break;
case 286:
{
FreeSpecifier((*yyvaluep).specifier);
}
;
break;
case 287:
{
FreeDeclarator((*yyvaluep).declarator);
}
;
break;
case 288:
{
FreeList((*yyvaluep).list, (void *)(FreeDeclarator));
}
;
break;
case 289:
{
FreeSpecifier((*yyvaluep).specifier);
}
;
break;
case 290:
{
FreeSpecifier((*yyvaluep).specifier);
}
;
break;
case 291:
{
FreeSpecifier((*yyvaluep).specifier);
}
;
break;
case 292:
{
FreeSpecifier((*yyvaluep).specifier);
}
;
break;
case 293:
{
FreeSpecifier((*yyvaluep).specifier);
}
;
break;
case 294:
{
FreeSpecifier((*yyvaluep).specifier);
}
;
break;
case 295:
{
FreeSpecifier((*yyvaluep).specifier);
}
;
break;
case 296:
{
FreeSpecifier((*yyvaluep).specifier);
}
;
break;
case 298:
{
FreeList((*yyvaluep).list, (void *)(FreeSpecifier));
}
;
break;
case 299:
{
FreeList((*yyvaluep).list, (void *)(FreeSpecifier));
}
;
break;
case 300:
{
FreeList((*yyvaluep).list, (void *)(FreeSpecifier));
}
;
break;
case 301:
{
FreeList((*yyvaluep).list, (void *)(FreeSpecifier));
}
;
break;
case 302:
{
FreeList((*yyvaluep).list, (void *)(FreeSpecifier));
}
;
break;
case 303:
{
FreeList((*yyvaluep).list, (void *)(FreeSpecifier));
}
;
break;
case 304:
{
FreeList((*yyvaluep).list, (void *)(FreeSpecifier));
}
;
break;
case 305:
{
FreeList((*yyvaluep).list, (void *)(FreeSpecifier));
}
;
break;
case 309:
{
FreeList((*yyvaluep).list, (void *)(FreeTypeName));
}
;
break;
case 310:
{
FreeList((*yyvaluep).list, (void *)(FreeTypeName));
}
;
break;
case 311:
{
FreeDeclarator((*yyvaluep).declarator);
}
;
break;
case 312:
{
FreeDeclarator((*yyvaluep).declarator);
}
;
break;
case 313:
{
FreeDeclarator((*yyvaluep).declarator);
}
;
break;
case 314:
{
FreeDeclarator((*yyvaluep).declarator);
}
;
break;
case 315:
{
FreeDeclarator((*yyvaluep).declarator);
}
;
break;
case 316:
{
FreeDeclarator((*yyvaluep).declarator);
}
;
break;
case 317:
{
FreeDeclarator((*yyvaluep).declarator);
}
;
break;
case 318:
{
FreeDeclarator((*yyvaluep).declarator);
}
;
break;
case 319:
{
FreeDeclarator((*yyvaluep).declarator);
}
;
break;
case 320:
{
FreeDeclarator((*yyvaluep).declarator);
}
;
break;
case 321:
{
FreeExtDecl((*yyvaluep).extDecl);
}
;
break;
case 323:
{
(__ecereNameSpace__ecere__com__eSystem_Delete((*yyvaluep).string), (*yyvaluep).string = 0);
}
;
break;
case 324:
{
FreeAttribute((*yyvaluep).attribute);
}
;
break;
case 325:
{
FreeList((*yyvaluep).list, (void *)(FreeAttribute));
}
;
break;
case 326:
{
FreeAttrib((*yyvaluep).attrib);
}
;
break;
case 327:
{
FreeDeclarator((*yyvaluep).declarator);
}
;
break;
case 328:
{
FreeDeclarator((*yyvaluep).declarator);
}
;
break;
case 329:
{
FreePointer((*yyvaluep).pointer);
}
;
break;
case 330:
{
FreeDeclarator((*yyvaluep).declarator);
}
;
break;
case 331:
{
FreeDeclarator((*yyvaluep).declarator);
}
;
break;
case 332:
{
FreeDeclarator((*yyvaluep).declarator);
}
;
break;
case 333:
{
FreeDeclarator((*yyvaluep).declarator);
}
;
break;
case 334:
{
FreeDeclarator((*yyvaluep).declarator);
}
;
break;
case 335:
{
FreeDeclarator((*yyvaluep).declarator);
}
;
break;
case 336:
{
FreeDeclarator((*yyvaluep).declarator);
}
;
break;
case 337:
{
FreeDeclarator((*yyvaluep).declarator);
}
;
break;
case 338:
{
FreeDeclarator((*yyvaluep).declarator);
}
;
break;
case 339:
{
FreeInitializer((*yyvaluep).initializer);
}
;
break;
case 340:
{
FreeInitializer((*yyvaluep).initializer);
}
;
break;
case 341:
{
FreeInitializer((*yyvaluep).initializer);
}
;
break;
case 342:
{
FreeInitializer((*yyvaluep).initializer);
}
;
break;
case 343:
{
FreeList((*yyvaluep).list, (void *)(FreeInitializer));
}
;
break;
case 344:
{
FreeInitDeclarator((*yyvaluep).initDeclarator);
}
;
break;
case 345:
{
FreeInitDeclarator((*yyvaluep).initDeclarator);
}
;
break;
case 346:
{
FreeList((*yyvaluep).list, (void *)(FreeInitDeclarator));
}
;
break;
case 347:
{
FreeList((*yyvaluep).list, (void *)(FreeInitDeclarator));
}
;
break;
case 348:
{
FreeTypeName((*yyvaluep).typeName);
}
;
break;
case 349:
{
FreeTypeName((*yyvaluep).typeName);
}
;
break;
case 350:
{
FreeTypeName((*yyvaluep).typeName);
}
;
break;
case 351:
{
FreeTypeName((*yyvaluep).typeName);
}
;
break;
case 352:
{
FreeList((*yyvaluep).list, (void *)(FreeTypeName));
}
;
break;
case 353:
{
FreeList((*yyvaluep).list, (void *)(FreeTypeName));
}
;
break;
case 354:
{
FreeList((*yyvaluep).list, (void *)(FreeTypeName));
}
;
break;
case 355:
{
FreeList((*yyvaluep).list, (void *)(FreeTypeName));
}
;
break;
case 356:
{
FreeStatement((*yyvaluep).stmt);
}
;
break;
case 357:
{
FreeStatement((*yyvaluep).stmt);
}
;
break;
case 361:
{
FreeStatement((*yyvaluep).stmt);
}
;
break;
case 362:
{
FreeStatement((*yyvaluep).stmt);
}
;
break;
case 363:
{
}
;
break;
case 365:
{
FreeDeclaration((*yyvaluep).declaration);
}
;
break;
case 369:
{
FreeList((*yyvaluep).list, (void *)(FreeDeclaration));
}
;
break;
case 370:
{
FreeList((*yyvaluep).list, (void *)(FreeDeclaration));
}
;
break;
case 371:
{
FreeList((*yyvaluep).list, (void *)(FreeStatement));
}
;
break;
case 372:
{
FreeList((*yyvaluep).list, (void *)(FreeStatement));
}
;
break;
case 373:
{
FreeStatement((*yyvaluep).stmt);
}
;
break;
case 374:
{
FreeStatement((*yyvaluep).stmt);
}
;
break;
case 375:
{
PopContext((*yyvaluep).context);
FreeContext((*yyvaluep).context);
(((*yyvaluep).context ? __extension__ ({
void * __ecerePtrToDelete = ((*yyvaluep).context);
__ecereClass_Context->Destructor ? __ecereClass_Context->Destructor((void *)__ecerePtrToDelete) : 0, __ecereNameSpace__ecere__com__eSystem_Delete(__ecerePtrToDelete);
}) : 0), (*yyvaluep).context = 0);
}
;
break;
case 376:
{
FreeStatement((*yyvaluep).stmt);
}
;
break;
case 377:
{
FreeStatement((*yyvaluep).stmt);
}
;
break;
case 378:
{
FreeStatement((*yyvaluep).stmt);
}
;
break;
case 379:
{
FreeStatement((*yyvaluep).stmt);
}
;
break;
case 380:
{
FreeStatement((*yyvaluep).stmt);
}
;
break;
case 381:
{
FreeStatement((*yyvaluep).stmt);
}
;
break;
case 382:
{
FreeStatement((*yyvaluep).stmt);
}
;
break;
case 383:
{
FreeStatement((*yyvaluep).stmt);
}
;
break;
case 384:
{
FreeStatement((*yyvaluep).stmt);
}
;
break;
case 385:
{
FreeFunction((*yyvaluep).function);
}
;
break;
case 386:
{
FreeFunction((*yyvaluep).function);
}
;
break;
case 387:
{
(__ecereNameSpace__ecere__com__eSystem_Delete((*yyvaluep).string), (*yyvaluep).string = 0);
}
;
break;
case 388:
{
FreeExternal((*yyvaluep).external);
}
;
break;
case 389:
{
FreeExternal((*yyvaluep).external);
}
;
break;
case 390:
{
if((*yyvaluep).list != ast)
FreeList((*yyvaluep).list, (void *)(FreeExternal));
}
;
break;
case 391:
{
if((*yyvaluep).list != ast)
FreeList((*yyvaluep).list, (void *)(FreeExternal));
}
;
break;
default:
break;
}
}
int yyparse(void)
{
int yystate;
int yyerrstatus;
yytype_int16 yyssa[200];
yytype_int16 * yyss;
yytype_int16 * yyssp;
YYSTYPE yyvsa[200];
YYSTYPE * yyvs;
YYSTYPE * yyvsp;
struct Location yylsa[200];
struct Location * yyls;
struct Location * yylsp;
struct Location yyerror_range[2];
size_t yystacksize;
int yyn;
int yyresult;
int yytoken;
YYSTYPE yyval;
struct Location yyloc;
int yylen = 0;
yytoken = 0;
yyss = yyssa;
yyvs = yyvsa;
yyls = yylsa;
yystacksize = 200;
do
{
if(yydebug)
fprintf((bsl_stderr()), "Starting parse\n");
}while((0));
yystate = 0;
yyerrstatus = 0;
yynerrs = 0;
yychar = (-2);
yyssp = yyss;
yyvsp = yyvs;
yylsp = yyls;
goto yysetstate;
yynewstate:
yyssp++;
yysetstate:
*yyssp = yystate;
if(yyss + yystacksize - 1 <= yyssp)
{
size_t yysize = yyssp - yyss + 1;
if(10000 <= yystacksize)
goto yyexhaustedlab;
yystacksize *= 2;
if(10000 < yystacksize)
yystacksize = 10000;
{
yytype_int16 * yyss1 = yyss;
union yyalloc * yyptr = (union yyalloc *)malloc(((yystacksize) * (sizeof(yytype_int16) + sizeof(YYSTYPE) + sizeof(struct Location)) + 2 * (sizeof(union yyalloc) - 1)));
if(!yyptr)
goto yyexhaustedlab;
do
{
size_t yynewbytes;
__builtin_memcpy(&(*yyptr).yyss_alloc, yyss, (yysize) * sizeof (*(yyss)));
yyss = &(*yyptr).yyss_alloc;
yynewbytes = yystacksize * sizeof (*yyss) + (sizeof(union yyalloc) - 1);
yyptr += yynewbytes / sizeof (*yyptr);
}while((0));
do
{
size_t yynewbytes;
__builtin_memcpy(&(*yyptr).yyvs_alloc, yyvs, (yysize) * sizeof (*(yyvs)));
yyvs = &(*yyptr).yyvs_alloc;
yynewbytes = yystacksize * sizeof (*yyvs) + (sizeof(union yyalloc) - 1);
yyptr += yynewbytes / sizeof (*yyptr);
}while((0));
do
{
size_t yynewbytes;
__builtin_memcpy(&(*yyptr).yyls_alloc, yyls, (yysize) * sizeof (*(yyls)));
yyls = &(*yyptr).yyls_alloc;
yynewbytes = yystacksize * sizeof (*yyls) + (sizeof(union yyalloc) - 1);
yyptr += yynewbytes / sizeof (*yyptr);
}while((0));
if(yyss1 != yyssa)
free(yyss1);
}
yyssp = yyss + yysize - 1;
yyvsp = yyvs + yysize - 1;
yylsp = yyls + yysize - 1;
do
{
if(yydebug)
fprintf((bsl_stderr()), "Stack size increased to %lu\n", (unsigned long int)yystacksize);
}while((0));
if(yyss + yystacksize - 1 <= yyssp)
goto yyabortlab;
}
do
{
if(yydebug)
fprintf((bsl_stderr()), "Entering state %d\n", yystate);
}while((0));
if(yystate == 299)
goto yyacceptlab;
goto yybackup;
yybackup:
yyn = yypact[yystate];
if(yyn == -2034)
goto yydefault;
if(yychar == (-2))
{
do
{
if(yydebug)
fprintf((bsl_stderr()), "Reading a token: ");
}while((0));
yychar = yylex();
}
if(yychar <= 0)
{
yychar = yytoken = 0;
do
{
if(yydebug)
fprintf((bsl_stderr()), "Now at end of input.\n");
}while((0));
}
else
{
yytoken = ((unsigned int)(yychar) <= 375 ? yytranslate[yychar] : 2);
do
{
if(yydebug)
{
fprintf((bsl_stderr()), "%s ", "Next token is");
yy_symbol_print((bsl_stderr()), yytoken, &yylval, &yylloc);
fprintf((bsl_stderr()), "\n");
}
}while((0));
}
yyn += yytoken;
if(yyn < 0 || 42058 < yyn || yycheck[yyn] != yytoken)
goto yydefault;
yyn = yytable[yyn];
if(yyn <= 0)
{
if(yyn == 0 || yyn == -1293)
goto yyerrlab;
yyn = -yyn;
goto yyreduce;
}
if(yyerrstatus)
yyerrstatus--;
do
{
if(yydebug)
{
fprintf((bsl_stderr()), "%s ", "Shifting");
yy_symbol_print((bsl_stderr()), yytoken, &yylval, &yylloc);
fprintf((bsl_stderr()), "\n");
}
}while((0));
yychar = (-2);
yystate = yyn;
*++yyvsp = yylval;
*++yylsp = yylloc;
goto yynewstate;
yydefault:
yyn = yydefact[yystate];
if(yyn == 0)
goto yyerrlab;
goto yyreduce;
yyreduce:
yylen = yyr2[yyn];
yyval = yyvsp[1 - yylen];
(yyloc.start = ((yylsp - yylen))[1].start);
(yyloc.end = ((yylsp - yylen))[yylen].end);
;
do
{
if(yydebug)
yy_reduce_print(yyvsp, yylsp, yyn);
}while((0));
switch(yyn)
{
case 2:
{
yyval.specifier = (((void *)0));
_DeclClass(yyvsp[(1) - (2)].id->_class, yyvsp[(1) - (2)].id->string);
FreeIdentifier(yyvsp[(1) - (2)].id);
(__extension__ ({
unsigned int (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode);
__internal_VirtualMethod = ((unsigned int (*)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode))__extension__ ({
struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = fileInput;
__internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__File->_vTbl;
})[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Seek]);
__internal_VirtualMethod ? __internal_VirtualMethod(fileInput, (yylsp[(1) - (2)]).start.pos, 0) : (unsigned int)1;
}));
resetScannerPos(&(yylsp[(1) - (2)]).start);
(yychar = (-2));
(yyvsp -= (1), yyssp -= (1), yylsp -= (1));
yystate = *yyssp;
do
{
if(yydebug)
yy_stack_print((yyss), (yyssp));
}while((0));
(yyvsp -= (1), yyssp -= (1), yylsp -= (1));
yystate = *yyssp;
do
{
if(yydebug)
yy_stack_print((yyss), (yyssp));
}while((0));
goto yysetstate;
;
}
break;
case 3:
{
yyval.specifier = (((void *)0));
_DeclClass(yyvsp[(1) - (2)].id->_class, yyvsp[(1) - (2)].id->string);
FreeIdentifier(yyvsp[(1) - (2)].id);
(__extension__ ({
unsigned int (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode);
__internal_VirtualMethod = ((unsigned int (*)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode))__extension__ ({
struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = fileInput;
__internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__File->_vTbl;
})[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Seek]);
__internal_VirtualMethod ? __internal_VirtualMethod(fileInput, (yylsp[(1) - (2)]).start.pos, 0) : (unsigned int)1;
}));
resetScannerPos(&(yylsp[(1) - (2)]).start);
(yychar = (-2));
(yyvsp -= (1), yyssp -= (1), yylsp -= (1));
yystate = *yyssp;
do
{
if(yydebug)
yy_stack_print((yyss), (yyssp));
}while((0));
(yyvsp -= (1), yyssp -= (1), yylsp -= (1));
yystate = *yyssp;
do
{
if(yydebug)
yy_stack_print((yyss), (yyssp));
}while((0));
goto yysetstate;
;
}
break;
case 4:
{
yyval.specifier = yyvsp[(1) - (1)].specifier;
;
}
break;
case 5:
{
if(!yyvsp[(1) - (2)].id->string[0])
{
yyval.specifier = MkSpecifierName(yyvsp[(1) - (2)].id->string);
FreeIdentifier(yyvsp[(1) - (2)].id);
FreeIdentifier(yyvsp[(2) - (2)].id);
}
else
{
_DeclClass(yyvsp[(1) - (2)].id->_class, yyvsp[(1) - (2)].id->string);
FreeIdentifier(yyvsp[(1) - (2)].id);
FreeIdentifier(yyvsp[(2) - (2)].id);
(__extension__ ({
unsigned int (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode);
__internal_VirtualMethod = ((unsigned int (*)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode))__extension__ ({
struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = fileInput;
__internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__File->_vTbl;
})[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Seek]);
__internal_VirtualMethod ? __internal_VirtualMethod(fileInput, (yylsp[(1) - (2)]).start.pos, 0) : (unsigned int)1;
}));
resetScannerPos(&(yylsp[(1) - (2)]).start);
(yychar = (-2));
(yyvsp -= (1), yyssp -= (1), yylsp -= (1));
yystate = *yyssp;
do
{
if(yydebug)
yy_stack_print((yyss), (yyssp));
}while((0));
(yyvsp -= (1), yyssp -= (1), yylsp -= (1));
yystate = *yyssp;
do
{
if(yydebug)
yy_stack_print((yyss), (yyssp));
}while((0));
goto yysetstate;
}
;
}
break;
case 6:
{
yyval.specifier = MkSpecifierName(yytext);
;
}
break;
case 7:
{
yyval.string = __ecereNameSpace__ecere__sys__CopyString(yytext);
;
}
break;
case 9:
{
yyval.specifier = yyvsp[(1) - (4)].specifier;
SetClassTemplateArgs(yyval.specifier, yyvsp[(3) - (4)].list);
yyval.specifier->loc = (yyloc);
;
}
break;
case 10:
{
yyval.specifier = yyvsp[(1) - (4)].specifier;
SetClassTemplateArgs(yyval.specifier, yyvsp[(3) - (4)].list);
yyval.specifier->loc = (yyloc);
(yylsp[(4) - (4)]).end.pos--;
(__extension__ ({
unsigned int (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode);
__internal_VirtualMethod = ((unsigned int (*)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode))__extension__ ({
struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = fileInput;
__internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__File->_vTbl;
})[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Seek]);
__internal_VirtualMethod ? __internal_VirtualMethod(fileInput, (yylsp[(4) - (4)]).end.pos, 0) : (unsigned int)1;
}));
resetScannerPos(&(yylsp[(4) - (4)]).end);
(yychar = (-2));
;
}
break;
case 11:
{
yyval.classFunction = MkClassFunction(yyvsp[(1) - (2)].list, (((void *)0)), yyvsp[(2) - (2)].declarator, (((void *)0)));
yyval.classFunction->loc = (yyloc);
;
}
break;
case 12:
{
yyval.classFunction = MkClassFunction((((void *)0)), (((void *)0)), yyvsp[(1) - (1)].declarator, (((void *)0)));
yyval.classFunction->loc = (yyloc);
;
}
break;
case 13:
{
yyval.classFunction = MkClassFunction(yyvsp[(1) - (3)].list, (((void *)0)), (((void *)0)), (((void *)0)));
yyval.classFunction->isConstructor = 1;
yyval.classFunction->loc = (yyloc);
;
}
break;
case 14:
{
yyval.classFunction = MkClassFunction(yyvsp[(2) - (4)].list, (((void *)0)), (((void *)0)), (((void *)0)));
yyval.classFunction->isDestructor = 1;
yyval.classFunction->loc = (yyloc);
;
}
break;
case 15:
{
yyval.classFunction = MkClassFunction(yyvsp[(2) - (3)].list, (((void *)0)), yyvsp[(3) - (3)].declarator, (((void *)0)));
yyval.classFunction->isVirtual = 1;
yyval.classFunction->loc = (yyloc);
;
}
break;
case 16:
{
yyval.classFunction = MkClassFunction((((void *)0)), (((void *)0)), yyvsp[(2) - (2)].declarator, (((void *)0)));
yyval.classFunction->isVirtual = 1;
yyval.classFunction->loc = (yyloc);
;
}
break;
case 17:
{
yyval.classFunction = MkClassFunction(yyvsp[(1) - (2)].list, (((void *)0)), yyvsp[(2) - (2)].declarator, (((void *)0)));
yyval.classFunction->loc = (yyloc);
;
}
break;
case 18:
{
yyval.classFunction = MkClassFunction((((void *)0)), (((void *)0)), yyvsp[(1) - (1)].declarator, (((void *)0)));
yyval.classFunction->loc = (yyloc);
;
}
break;
case 19:
{
yyval.classFunction = MkClassFunction(yyvsp[(2) - (3)].list, (((void *)0)), yyvsp[(3) - (3)].declarator, (((void *)0)));
yyval.classFunction->isVirtual = 1;
yyval.classFunction->loc = (yyloc);
;
}
break;
case 20:
{
yyval.classFunction = MkClassFunction((((void *)0)), (((void *)0)), yyvsp[(2) - (2)].declarator, (((void *)0)));
yyval.classFunction->isVirtual = 1;
yyval.classFunction->loc = (yyloc);
;
}
break;
case 21:
{
ProcessClassFunctionBody(yyvsp[(1) - (2)].classFunction, yyvsp[(2) - (2)].stmt);
yyval.classFunction->loc = (yyloc);
;
}
break;
case 22:
{
ProcessClassFunctionBody(yyvsp[(1) - (2)].classFunction, yyvsp[(2) - (2)].stmt);
yyval.classFunction->loc = (yyloc);
;
}
break;
case 23:
{
ProcessClassFunctionBody(yyvsp[(1) - (2)].classFunction, (((void *)0)));
yyval.classFunction->loc = (yyloc);
;
}
break;
case 24:
{
ProcessClassFunctionBody(yyvsp[(1) - (2)].classFunction, yyvsp[(2) - (2)].stmt);
yyval.classFunction->loc = (yyloc);
;
}
break;
case 25:
{
ProcessClassFunctionBody(yyvsp[(1) - (2)].classFunction, yyvsp[(2) - (2)].stmt);
yyval.classFunction->loc = (yyloc);
;
}
break;
case 26:
{
ProcessClassFunctionBody(yyvsp[(1) - (2)].classFunction, (((void *)0)));
yyval.classFunction->loc = (yyloc);
;
}
break;
case 27:
{
if(yyvsp[(1) - (3)].classFunction->declarator)
{
yyvsp[(1) - (3)].classFunction->declarator = MkStructDeclarator(yyvsp[(1) - (3)].classFunction->declarator, (((void *)0)));
yyvsp[(1) - (3)].classFunction->declarator->__anon1.structDecl.attrib = yyvsp[(2) - (3)].attrib;
}
ProcessClassFunctionBody(yyvsp[(1) - (3)].classFunction, (((void *)0)));
yyval.classFunction->loc = (yyloc);
;
}
break;
case 28:
{
ProcessClassFunctionBody(yyvsp[(1) - (2)].classFunction, yyvsp[(2) - (2)].stmt);
yyval.classFunction->loc = (yyloc);
yyval.classFunction->loc.end = yyvsp[(2) - (2)].stmt->loc.end;
;
}
break;
case 29:
{
ProcessClassFunctionBody(yyvsp[(1) - (1)].classFunction, (((void *)0)));
yyval.classFunction->loc = (yyloc);
yyval.classFunction->loc.end.charPos++;
yyval.classFunction->loc.end.pos++;
;
}
break;
case 30:
{
ProcessClassFunctionBody(yyvsp[(1) - (2)].classFunction, yyvsp[(2) - (2)].stmt);
yyval.classFunction->loc = (yyloc);
yyval.classFunction->loc.end = yyvsp[(2) - (2)].stmt->loc.end;
;
}
break;
case 31:
{
ProcessClassFunctionBody(yyvsp[(1) - (1)].classFunction, (((void *)0)));
yyval.classFunction->loc = (yyloc);
yyval.classFunction->loc.end.charPos++;
yyval.classFunction->loc.end.pos++;
;
}
break;
case 32:
{
ProcessClassFunctionBody(yyvsp[(1) - (2)].classFunction, (((void *)0)));
yyval.classFunction->loc = (yyloc);
yyval.classFunction->loc.end.charPos++;
yyval.classFunction->loc.end.pos++;
;
}
break;
case 33:
{
yyval.classFunction = MkClassFunction(yyvsp[(1) - (2)].list, (((void *)0)), yyvsp[(2) - (2)].declarator, (((void *)0)));
yyval.classFunction->loc = (yyloc);
;
}
break;
case 34:
{
yyval.classFunction = MkClassFunction(yyvsp[(1) - (2)].list, (((void *)0)), MkDeclaratorFunction(yyvsp[(2) - (2)].declarator, (((void *)0))), (((void *)0)));
yyval.classFunction->loc = (yyloc);
;
}
break;
case 35:
{
yyval.classFunction = MkClassFunction(yyvsp[(1) - (2)].list, (((void *)0)), yyvsp[(2) - (2)].declarator, (((void *)0)));
yyval.classFunction->loc = (yyloc);
;
}
break;
case 36:
{
ProcessClassFunctionBody(yyvsp[(1) - (2)].classFunction, yyvsp[(2) - (2)].stmt);
yyval.classFunction->loc = (yyloc);
;
}
break;
case 37:
{
ProcessClassFunctionBody(yyvsp[(1) - (2)].classFunction, yyvsp[(2) - (2)].stmt);
yyval.classFunction->loc = (yyloc);
yyval.classFunction->loc.end = yyvsp[(2) - (2)].stmt->loc.end;
yyval.classFunction->loc.end.charPos++;
yyval.classFunction->loc.end.pos++;
;
}
break;
case 38:
{
ProcessClassFunctionBody(yyvsp[(1) - (1)].classFunction, (((void *)0)));
yyval.classFunction->loc = (yyloc);
yyval.classFunction->loc.end.charPos++;
yyval.classFunction->loc.end.pos++;
;
}
break;
case 39:
{
ProcessClassFunctionBody(yyvsp[(1) - (1)].classFunction, (((void *)0)));
yyval.classFunction->loc = (yyloc);
yyval.classFunction->loc.end.charPos++;
yyval.classFunction->loc.end.pos++;
;
}
break;
case 40:
{
yyval.memberInit = MkMemberInitExp(yyvsp[(1) - (3)].exp, yyvsp[(3) - (3)].initializer);
yyval.memberInit->loc = (yyloc);
yyval.memberInit->realLoc = (yyloc);
yyval.memberInit->initializer->loc.start = (yylsp[(2) - (3)]).end;
;
}
break;
case 41:
{
yyval.memberInit = MkMemberInit((((void *)0)), yyvsp[(1) - (1)].initializer);
yyval.memberInit->loc = (yyloc);
yyval.memberInit->realLoc = (yyloc);
;
}
break;
case 42:
{
yyval.memberInit = MkMemberInitExp(yyvsp[(1) - (3)].exp, yyvsp[(3) - (3)].initializer);
yyval.memberInit->loc = (yyloc);
yyval.memberInit->realLoc = (yyloc);
yyval.memberInit->initializer->loc.start = (yylsp[(2) - (3)]).end;
;
}
break;
case 43:
{
yyval.memberInit = MkMemberInitExp(yyvsp[(1) - (3)].exp, MkInitializerAssignment(MkExpDummy()));
yyval.memberInit->loc = (yyloc);
yyval.memberInit->realLoc = (yyloc);
yyval.memberInit->initializer->loc.start = yyval.memberInit->initializer->loc.end = (yylsp[(2) - (3)]).end;
(__extension__ ({
unsigned int (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode);
__internal_VirtualMethod = ((unsigned int (*)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode))__extension__ ({
struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = fileInput;
__internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__File->_vTbl;
})[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Seek]);
__internal_VirtualMethod ? __internal_VirtualMethod(fileInput, (yylsp[(2) - (3)]).end.pos, 0) : (unsigned int)1;
}));
(yychar = (-2));
resetScannerPos(&(yylsp[(2) - (3)]).end);
(yyloc.start = (yylsp[(1) - (3)]).start);
(yyloc.end = (yylsp[(2) - (3)]).end);
;
}
break;
case 44:
{
yyval.memberInit = MkMemberInit((((void *)0)), yyvsp[(1) - (1)].initializer);
yyval.memberInit->loc = (yyloc);
yyval.memberInit->realLoc = (yyloc);
;
}
break;
case 45:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].memberInit);
;
}
break;
case 46:
{
((struct MemberInit *)(*yyvsp[(1) - (3)].list).last)->loc.end = (yylsp[(3) - (3)]).start;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].memberInit);
yyval.list = yyvsp[(1) - (3)].list;
;
}
break;
case 47:
{
((struct MemberInit *)(*yyvsp[(1) - (3)].list).last)->loc.end = (yylsp[(3) - (3)]).start;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].memberInit);
yyval.list = yyvsp[(1) - (3)].list;
;
}
break;
case 48:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].memberInit);
;
}
break;
case 49:
{
((struct MemberInit *)(*yyvsp[(1) - (3)].list).last)->loc.end = (yylsp[(3) - (3)]).start;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].memberInit);
yyval.list = yyvsp[(1) - (3)].list;
;
}
break;
case 50:
{
((struct MemberInit *)(*yyvsp[(1) - (3)].list).last)->loc.end = (yylsp[(3) - (3)]).start;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].memberInit);
yyval.list = yyvsp[(1) - (3)].list;
;
}
break;
case 51:
{
((struct MemberInit *)(*yyvsp[(1) - (3)].list).last)->loc.end = (yylsp[(2) - (3)]).end;
{
struct Initializer * dummy = MkInitializerAssignment(MkExpDummy());
struct MemberInit * memberInit = MkMemberInit((((void *)0)), dummy);
memberInit->realLoc.start = memberInit->loc.start = dummy->loc.start = (yylsp[(2) - (3)]).end;
memberInit->realLoc.end = memberInit->loc.end = dummy->loc.end = (yylsp[(2) - (3)]).end;
ListAdd(yyvsp[(1) - (3)].list, memberInit);
}
yyval.list = yyvsp[(1) - (3)].list;
;
}
break;
case 52:
{
((struct MemberInit *)(*yyvsp[(1) - (3)].list).last)->loc.end = (yylsp[(2) - (3)]).end;
{
struct Initializer * dummy = MkInitializerAssignment(MkExpDummy());
struct MemberInit * memberInit = MkMemberInit((((void *)0)), dummy);
memberInit->realLoc.start = memberInit->loc.start = dummy->loc.start = (yylsp[(2) - (3)]).end;
memberInit->realLoc.end = memberInit->loc.end = dummy->loc.end = (yylsp[(2) - (3)]).end;
ListAdd(yyvsp[(1) - (3)].list, memberInit);
}
yyval.list = yyvsp[(1) - (3)].list;
;
}
break;
case 53:
{
struct Initializer * dummy = MkInitializerAssignment(MkExpDummy());
struct MemberInit * memberInit = MkMemberInit((((void *)0)), dummy);
memberInit->realLoc.start = memberInit->loc.start = dummy->loc.start = (yylsp[(1) - (1)]).start;
memberInit->realLoc.end = memberInit->loc.end = dummy->loc.end = (yylsp[(1) - (1)]).start;
yyval.list = MkList();
ListAdd(yyval.list, memberInit);
dummy = MkInitializerAssignment(MkExpDummy());
memberInit = MkMemberInit((((void *)0)), dummy);
memberInit->realLoc.start = memberInit->loc.start = dummy->loc.start = (yylsp[(1) - (1)]).end;
memberInit->realLoc.end = memberInit->loc.end = dummy->loc.end = (yylsp[(1) - (1)]).end;
ListAdd(yyval.list, memberInit);
;
}
break;
case 54:
{
if((*yyvsp[(1) - (2)].list).last)
((struct MemberInit *)(*yyvsp[(1) - (2)].list).last)->loc.end = (yylsp[(2) - (2)]).end;
yyval.list = yyvsp[(1) - (2)].list;
;
}
break;
case 55:
{
if((*yyvsp[(1) - (2)].list).last)
((struct MemberInit *)(*yyvsp[(1) - (2)].list).last)->loc.end = (yylsp[(2) - (2)]).end;
yyval.list = yyvsp[(1) - (2)].list;
;
}
break;
case 56:
{
struct MembersInit * members = MkMembersInitList(yyvsp[(1) - (1)].list);
yyval.list = MkList();
ListAdd(yyval.list, members);
members->loc = (yylsp[(1) - (1)]);
;
}
break;
case 57:
{
yyval.list = MkList();
ListAdd(yyval.list, MkMembersInitMethod(yyvsp[(1) - (1)].classFunction));
((struct MembersInit *)(*yyval.list).last)->loc = (yylsp[(1) - (1)]);
;
}
break;
case 58:
{
struct MembersInit * members = MkMembersInitList(yyvsp[(2) - (2)].list);
ListAdd(yyval.list, members);
members->loc = (yylsp[(2) - (2)]);
yyval.list = yyvsp[(1) - (2)].list;
;
}
break;
case 59:
{
ListAdd(yyval.list, MkMembersInitMethod(yyvsp[(2) - (2)].classFunction));
((struct MembersInit *)(*yyval.list).last)->loc = (yylsp[(2) - (2)]);
yyval.list = yyvsp[(1) - (2)].list;
;
}
break;
case 60:
{
struct MembersInit * members = MkMembersInitList(yyvsp[(2) - (2)].list);
ListAdd(yyval.list, members);
members->loc = (yylsp[(2) - (2)]);
yyval.list = yyvsp[(1) - (2)].list;
;
}
break;
case 61:
{
ListAdd(yyval.list, MkMembersInitMethod(yyvsp[(2) - (2)].classFunction));
((struct MembersInit *)(*yyval.list).last)->loc = (yylsp[(2) - (2)]);
yyval.list = yyvsp[(1) - (2)].list;
;
}
break;
case 63:
{
struct MembersInit * members = (struct MembersInit *)(*yyval.list).last;
if(members->type == 0)
(members->loc.end = yyloc.end);
else
{
struct MembersInit * members = MkMembersInitList(MkList());
ListAdd(yyval.list, members);
members->loc = (yylsp[(2) - (2)]);
}
yyval.list = yyvsp[(1) - (2)].list;
;
}
break;
case 64:
{
struct MembersInit * members = MkMembersInitList(MkList());
yyval.list = MkList();
ListAdd(yyval.list, members);
members->loc = (yylsp[(1) - (1)]);
;
}
break;
case 66:
{
yyval.list = MkList();
ListAdd(yyval.list, MkMembersInitList(yyvsp[(1) - (1)].list));
((struct MembersInit *)(*yyval.list).last)->loc = (yylsp[(1) - (1)]);
;
}
break;
case 67:
{
ListAdd(yyvsp[(1) - (2)].list, MkMembersInitList(yyvsp[(2) - (2)].list));
((struct MembersInit *)(*yyval.list).last)->loc = (yylsp[(2) - (2)]);
;
}
break;
case 68:
{
ListAdd(yyvsp[(1) - (2)].list, MkMembersInitList(yyvsp[(2) - (2)].list));
((struct MembersInit *)(*yyval.list).last)->loc = (yylsp[(2) - (2)]);
;
}
break;
case 69:
{
yyval.list = MkList();
ListAdd(yyval.list, MkMembersInitMethod(yyvsp[(1) - (1)].classFunction));
((struct MembersInit *)(*yyval.list).last)->loc = (yylsp[(1) - (1)]);
;
}
break;
case 70:
{
ListAdd(yyval.list, MkMembersInitMethod(yyvsp[(2) - (2)].classFunction));
((struct MembersInit *)(*yyval.list).last)->loc = (yylsp[(2) - (2)]);
yyval.list = yyvsp[(1) - (2)].list;
;
}
break;
case 71:
{
ListAdd(yyval.list, MkMembersInitMethod(yyvsp[(2) - (2)].classFunction));
((struct MembersInit *)(*yyval.list).last)->loc = (yylsp[(2) - (2)]);
yyval.list = yyvsp[(1) - (2)].list;
;
}
break;
case 72:
{
ListAdd(yyval.list, MkMembersInitMethod(yyvsp[(2) - (2)].classFunction));
((struct MembersInit *)(*yyval.list).last)->loc = (yylsp[(2) - (2)]);
yyval.list = yyvsp[(1) - (2)].list;
;
}
break;
case 73:
{
ListAdd(yyval.list, MkMembersInitList(yyvsp[(2) - (2)].list));
((struct MembersInit *)(*yyval.list).last)->loc = (yylsp[(2) - (2)]);
yyval.list = yyvsp[(1) - (2)].list;
;
}
break;
case 74:
{
yyval.list = MkList();
ListAdd(yyval.list, MkMembersInitList(yyvsp[(1) - (1)].list));
((struct MembersInit *)(*yyval.list).last)->loc = (yylsp[(1) - (1)]);
;
}
break;
case 75:
{
yyval.list = MkList();
ListAdd(yyval.list, MkMembersInitList(yyvsp[(1) - (2)].list));
((struct MembersInit *)(*yyval.list).last)->loc = (yylsp[(2) - (2)]);
;
}
break;
case 76:
{
yyval.instance->loc = (yyloc);
yyval.instance->insideLoc.end = (yylsp[(2) - (2)]).start;
yyval.instance = yyvsp[(1) - (2)].instance;
;
}
break;
case 77:
{
yyval.instance->loc = (yyloc);
yyval.instance->insideLoc.end = (yylsp[(2) - (3)]).start;
yyval.instance = yyvsp[(1) - (3)].instance;
;
}
break;
case 78:
{
yyval.instance = MkInstantiationNamed(yyvsp[(1) - (4)].list, MkExpIdentifier(yyvsp[(2) - (4)].id), yyvsp[(4) - (4)].list);
yyval.instance->exp->loc = (yylsp[(2) - (4)]);
yyval.instance->loc = (yyloc);
yyval.instance->nameLoc = (yylsp[(2) - (4)]);
yyval.instance->insideLoc.start = (yylsp[(3) - (4)]).end;
yyval.instance->insideLoc.end = (yylsp[(4) - (4)]).end;
yyval.instance->loc.end.charPos++;
yyval.instance->loc.end.pos++;
;
}
break;
case 79:
{
yyval.instance = MkInstantiationNamed(yyvsp[(1) - (5)].list, MkExpIdentifier(yyvsp[(2) - (5)].id), yyvsp[(4) - (5)].list);
yyval.instance->exp->loc = (yylsp[(2) - (5)]);
yyval.instance->loc = (yyloc);
yyval.instance->nameLoc = (yylsp[(2) - (5)]);
yyval.instance->insideLoc.start = (yylsp[(3) - (5)]).end;
yyval.instance->insideLoc.end = (yylsp[(4) - (5)]).end;
yyval.instance->loc.end.charPos++;
yyval.instance->loc.end.pos++;
;
}
break;
case 80:
{
yyval.instance = MkInstantiationNamed(yyvsp[(1) - (4)].list, MkExpIdentifier(yyvsp[(2) - (4)].id), yyvsp[(4) - (4)].list);
yyval.instance->exp->loc = (yylsp[(2) - (4)]);
yyval.instance->loc = (yyloc);
yyval.instance->nameLoc = (yylsp[(2) - (4)]);
yyval.instance->insideLoc.start = (yylsp[(3) - (4)]).end;
yyval.instance->insideLoc.end = (yylsp[(4) - (4)]).end;
yyval.instance->loc.end.charPos++;
yyval.instance->loc.end.pos++;
;
}
break;
case 81:
{
yyval.instance = MkInstantiationNamed(yyvsp[(1) - (3)].list, MkExpIdentifier(yyvsp[(2) - (3)].id), (((void *)0)));
yyval.instance->exp->loc = (yylsp[(2) - (3)]);
yyval.instance->loc = (yyloc);
yyval.instance->nameLoc = (yylsp[(2) - (3)]);
yyval.instance->insideLoc.start = (yylsp[(3) - (3)]).end;
yyval.instance->insideLoc.end = (yylsp[(3) - (3)]).end;
yyval.instance->loc.end.charPos++;
yyval.instance->loc.end.pos++;
;
}
break;
case 82:
{
yyval.instance = MkInstantiationNamed(yyvsp[(1) - (4)].list, MkExpIdentifier(yyvsp[(2) - (4)].id), (((void *)0)));
yyval.instance->exp->loc = (yylsp[(2) - (4)]);
yyval.instance->loc = (yyloc);
yyval.instance->nameLoc = (yylsp[(2) - (4)]);
yyval.instance->insideLoc.start = (yylsp[(3) - (4)]).end;
yyval.instance->insideLoc.end = (yylsp[(3) - (4)]).end;
yyval.instance->loc.end.charPos++;
yyval.instance->loc.end.pos++;
;
}
break;
case 83:
{
yyval.instance->loc = (yyloc);
yyval.instance->insideLoc.end = (yylsp[(2) - (2)]).start;
;
}
break;
case 84:
{
yyval.instance->loc = (yyloc);
yyval.instance->insideLoc.end = (yylsp[(2) - (3)]).start;
;
}
break;
case 85:
{
yyval.instance = MkInstantiationNamed(yyvsp[(1) - (4)].list, MkExpIdentifier(yyvsp[(2) - (4)].id), yyvsp[(4) - (4)].list);
yyval.instance->exp->loc = (yylsp[(2) - (4)]);
yyval.instance->loc = (yyloc);
yyval.instance->nameLoc = (yylsp[(2) - (4)]);
yyval.instance->insideLoc.start = (yylsp[(3) - (4)]).end;
yyval.instance->insideLoc.end = (yylsp[(4) - (4)]).end;
yyval.instance->loc.end.charPos++;
yyval.instance->loc.end.pos++;
;
}
break;
case 86:
{
yyval.instance = MkInstantiationNamed(yyvsp[(1) - (5)].list, MkExpIdentifier(yyvsp[(2) - (5)].id), yyvsp[(4) - (5)].list);
yyval.instance->exp->loc = (yylsp[(2) - (5)]);
yyval.instance->loc = (yyloc);
yyval.instance->nameLoc = (yylsp[(2) - (5)]);
yyval.instance->insideLoc.start = (yylsp[(3) - (5)]).end;
yyval.instance->insideLoc.end = (yylsp[(4) - (5)]).end;
yyval.instance->loc.end.charPos++;
yyval.instance->loc.end.pos++;
;
}
break;
case 87:
{
yyval.instance = MkInstantiationNamed(yyvsp[(1) - (4)].list, MkExpIdentifier(yyvsp[(2) - (4)].id), yyvsp[(4) - (4)].list);
yyval.instance->exp->loc = (yylsp[(2) - (4)]);
yyval.instance->loc = (yyloc);
yyval.instance->nameLoc = (yylsp[(2) - (4)]);
yyval.instance->insideLoc.start = (yylsp[(3) - (4)]).end;
yyval.instance->insideLoc.end = (yylsp[(4) - (4)]).end;
yyval.instance->loc.end.charPos++;
yyval.instance->loc.end.pos++;
;
}
break;
case 88:
{
yyval.instance = MkInstantiationNamed(yyvsp[(1) - (3)].list, MkExpIdentifier(yyvsp[(2) - (3)].id), (((void *)0)));
yyval.instance->exp->loc = (yylsp[(2) - (3)]);
yyval.instance->loc = (yyloc);
yyval.instance->nameLoc = (yylsp[(2) - (3)]);
yyval.instance->insideLoc.start = (yylsp[(3) - (3)]).end;
yyval.instance->insideLoc.end = (yylsp[(3) - (3)]).end;
yyval.instance->loc.end.charPos++;
yyval.instance->loc.end.pos++;
;
}
break;
case 89:
{
yyval.instance = MkInstantiationNamed(yyvsp[(1) - (4)].list, MkExpIdentifier(yyvsp[(2) - (4)].id), (((void *)0)));
yyval.instance->exp->loc = (yylsp[(2) - (4)]);
yyval.instance->loc = (yyloc);
yyval.instance->nameLoc = (yylsp[(2) - (4)]);
yyval.instance->insideLoc.start = (yylsp[(3) - (4)]).end;
yyval.instance->insideLoc.end = (yylsp[(3) - (4)]).end;
yyval.instance->loc.end.charPos++;
yyval.instance->loc.end.pos++;
;
}
break;
case 90:
{
yyval.instance = MkInstantiationNamed(yyvsp[(1) - (5)].list, MkExpIdentifier(yyvsp[(2) - (5)].id), yyvsp[(4) - (5)].list);
yyval.instance->exp->loc = (yylsp[(2) - (5)]);
yyval.instance->loc = (yyloc);
yyval.instance->nameLoc = (yylsp[(2) - (5)]);
yyval.instance->insideLoc.start = (yylsp[(3) - (5)]).end;
yyval.instance->insideLoc.end = (yylsp[(5) - (5)]).start;
;
}
break;
case 91:
{
yyval.instance = MkInstantiationNamed(yyvsp[(1) - (5)].list, MkExpIdentifier(yyvsp[(2) - (5)].id), yyvsp[(4) - (5)].list);
yyval.instance->exp->loc = (yylsp[(2) - (5)]);
yyval.instance->loc = (yyloc);
yyval.instance->nameLoc = (yylsp[(2) - (5)]);
yyval.instance->insideLoc.start = (yylsp[(3) - (5)]).end;
yyval.instance->insideLoc.end = (yylsp[(5) - (5)]).start;
;
}
break;
case 92:
{
yyval.instance = MkInstantiationNamed(yyvsp[(1) - (4)].list, MkExpIdentifier(yyvsp[(2) - (4)].id), MkList());
yyval.instance->exp->loc = (yylsp[(2) - (4)]);
yyval.instance->loc = (yyloc);
yyval.instance->nameLoc = (yylsp[(2) - (4)]);
yyval.instance->insideLoc.start = (yylsp[(3) - (4)]).end;
yyval.instance->insideLoc.end = (yylsp[(4) - (4)]).start;
;
}
break;
case 93:
{
yyval.instance->loc = (yyloc);
yyval.instance->insideLoc.end = (yylsp[(2) - (2)]).start;
yyval.instance = yyvsp[(1) - (2)].instance;
;
}
break;
case 94:
{
yyval.instance->loc = (yyloc);
yyval.instance->insideLoc.end = (yylsp[(2) - (3)]).start;
yyval.instance = yyvsp[(1) - (3)].instance;
;
}
break;
case 95:
{
yyval.instance = MkInstantiation(yyvsp[(1) - (3)].specifier, (((void *)0)), yyvsp[(3) - (3)].list);
yyval.instance->loc = (yyloc);
yyval.instance->insideLoc.start = (yylsp[(2) - (3)]).end;
yyval.instance->insideLoc.end = (yylsp[(3) - (3)]).end;
yyval.instance->loc.end.charPos++;
yyval.instance->loc.end.pos++;
;
}
break;
case 96:
{
struct Location tmpLoc = yylloc;
yylloc = (yylsp[(1) - (3)]);
yylloc = tmpLoc;
yyval.instance = MkInstantiation(MkSpecifierName(yyvsp[(1) - (3)].id->string), (((void *)0)), yyvsp[(3) - (3)].list);
yyval.instance->loc = (yyloc);
yyval.instance->insideLoc.start = (yylsp[(2) - (3)]).end;
yyval.instance->insideLoc.end = (yylsp[(3) - (3)]).end;
FreeIdentifier(yyvsp[(1) - (3)].id);
;
}
break;
case 97:
{
yyval.instance = MkInstantiation(yyvsp[(1) - (3)].specifier, (((void *)0)), yyvsp[(3) - (3)].list);
yyval.instance->loc = (yyloc);
yyval.instance->insideLoc.start = (yylsp[(2) - (3)]).end;
yyval.instance->insideLoc.end = (yylsp[(3) - (3)]).end;
yyval.instance->loc.end.charPos++;
yyval.instance->loc.end.pos++;
;
}
break;
case 98:
{
yyval.instance = MkInstantiation(yyvsp[(1) - (2)].specifier, (((void *)0)), (((void *)0)));
yyval.instance->loc = (yyloc);
yyval.instance->insideLoc.start = (yylsp[(2) - (2)]).end;
yyval.instance->insideLoc.end = (yylsp[(2) - (2)]).end;
yyval.instance->loc.end.charPos++;
yyval.instance->loc.end.pos++;
;
}
break;
case 99:
{
yyval.instance = MkInstantiation(yyvsp[(1) - (4)].specifier, (((void *)0)), yyvsp[(3) - (4)].list);
yyval.instance->loc = (yyloc);
yyval.instance->insideLoc.start = (yylsp[(2) - (4)]).end;
yyval.instance->insideLoc.end = (yylsp[(3) - (4)]).end;
yyval.instance->loc.end.charPos++;
yyval.instance->loc.end.pos++;
;
}
break;
case 100:
{
yyval.instance = MkInstantiation(yyvsp[(1) - (3)].specifier, (((void *)0)), (((void *)0)));
yyval.instance->loc = (yyloc);
yyval.instance->insideLoc.start = (yylsp[(2) - (3)]).end;
yyval.instance->insideLoc.end = (yylsp[(2) - (3)]).end;
yyval.instance->loc.end.charPos++;
yyval.instance->loc.end.pos++;
;
}
break;
case 101:
{
struct Location tmpLoc = yylloc;
yylloc = (yylsp[(1) - (3)]);
yylloc = tmpLoc;
yyval.instance = MkInstantiation(MkSpecifierName(yyvsp[(1) - (3)].id->string), (((void *)0)), yyvsp[(3) - (3)].list);
yyval.instance->loc = (yyloc);
yyval.instance->insideLoc.start = (yylsp[(2) - (3)]).end;
yyval.instance->insideLoc.end = (yylsp[(3) - (3)]).end;
yyval.instance->loc.end.charPos++;
yyval.instance->loc.end.pos++;
FreeIdentifier(yyvsp[(1) - (3)].id);
;
}
break;
case 102:
{
struct Location tmpLoc = yylloc;
yylloc = (yylsp[(1) - (2)]);
yylloc = tmpLoc;
yyval.instance = MkInstantiation(MkSpecifierName(yyvsp[(1) - (2)].id->string), (((void *)0)), (((void *)0)));
yyval.instance->loc = (yyloc);
yyval.instance->insideLoc.start = (yylsp[(2) - (2)]).end;
yyval.instance->insideLoc.end = (yylsp[(2) - (2)]).end;
yyval.instance->loc.end.charPos++;
yyval.instance->loc.end.pos++;
FreeIdentifier(yyvsp[(1) - (2)].id);
;
}
break;
case 103:
{
struct Location tmpLoc = yylloc;
yylloc = (yylsp[(1) - (4)]);
yylloc = tmpLoc;
yyval.instance = MkInstantiation(MkSpecifierName(yyvsp[(1) - (4)].id->string), (((void *)0)), yyvsp[(3) - (4)].list);
yyval.instance->loc = (yyloc);
yyval.instance->insideLoc.start = (yylsp[(2) - (4)]).end;
yyval.instance->insideLoc.end = (yylsp[(3) - (4)]).end;
yyval.instance->loc.end.charPos++;
yyval.instance->loc.end.pos++;
FreeIdentifier(yyvsp[(1) - (4)].id);
;
}
break;
case 104:
{
struct Location tmpLoc = yylloc;
yylloc = (yylsp[(1) - (3)]);
yylloc = tmpLoc;
yyval.instance = MkInstantiation(MkSpecifierName(yyvsp[(1) - (3)].id->string), (((void *)0)), (((void *)0)));
yyval.instance->loc = (yyloc);
yyval.instance->insideLoc.start = (yylsp[(2) - (3)]).end;
yyval.instance->insideLoc.end = (yylsp[(2) - (3)]).end;
yyval.instance->loc.end.charPos++;
yyval.instance->loc.end.pos++;
FreeIdentifier(yyvsp[(1) - (3)].id);
;
}
break;
case 105:
{
yyval.instance->loc = (yyloc);
yyval.instance->insideLoc.end = (yylsp[(2) - (2)]).start;
;
}
break;
case 106:
{
yyval.instance->loc = (yyloc);
yyval.instance->insideLoc.end = (yylsp[(2) - (3)]).start;
;
}
break;
case 107:
{
yyval.instance = MkInstantiation((((void *)0)), (((void *)0)), yyvsp[(2) - (2)].list);
yyval.instance->loc = (yyloc);
yyval.instance->insideLoc.start = (yylsp[(1) - (2)]).end;
yyval.instance->insideLoc.end = (yylsp[(2) - (2)]).end;
yyval.instance->loc.end.charPos++;
yyval.instance->loc.end.pos++;
;
}
break;
case 108:
{
yyval.instance = MkInstantiation((((void *)0)), (((void *)0)), yyvsp[(2) - (3)].list);
yyval.instance->loc = (yyloc);
yyval.instance->insideLoc.start = (yylsp[(1) - (3)]).end;
yyval.instance->insideLoc.end = (yylsp[(2) - (3)]).end;
yyval.instance->loc.end.charPos++;
yyval.instance->loc.end.pos++;
;
}
break;
case 109:
{
yyval.instance = MkInstantiation((((void *)0)), (((void *)0)), (((void *)0)));
yyval.instance->loc = (yyloc);
yyval.instance->insideLoc.start = (yylsp[(1) - (2)]).end;
yyval.instance->insideLoc.end = (yylsp[(1) - (2)]).end;
yyval.instance->loc.end.charPos++;
yyval.instance->loc.end.pos++;
;
}
break;
case 110:
{
yyval.instance = MkInstantiation((((void *)0)), (((void *)0)), (((void *)0)));
yyval.instance->loc = (yyloc);
yyval.instance->insideLoc.start = (yylsp[(1) - (1)]).end;
yyval.instance->insideLoc.end = (yylsp[(1) - (1)]).end;
yyval.instance->loc.end.charPos++;
yyval.instance->loc.end.pos++;
;
}
break;
case 111:
{
yyval.instance = MkInstantiation((((void *)0)), (((void *)0)), yyvsp[(2) - (2)].list);
yyval.instance->loc = (yyloc);
yyval.instance->insideLoc.start = (yylsp[(1) - (2)]).end;
yyval.instance->insideLoc.end = (yylsp[(2) - (2)]).end;
yyval.instance->loc.end.charPos++;
yyval.instance->loc.end.pos++;
;
}
break;
case 112:
{
yyval.memberInit = MkMemberInitExp(yyvsp[(1) - (3)].exp, yyvsp[(3) - (3)].initializer);
yyval.memberInit->loc = (yyloc);
yyval.memberInit->realLoc = (yyloc);
;
}
break;
case 113:
{
yyval.memberInit = MkMemberInitExp(yyvsp[(1) - (3)].exp, yyvsp[(3) - (3)].initializer);
yyval.memberInit->loc = (yyloc);
yyval.memberInit->realLoc = (yyloc);
yyval.memberInit->initializer->loc.start = (yylsp[(2) - (3)]).end;
;
}
break;
case 114:
{
yyval.memberInit = MkMemberInitExp(yyvsp[(1) - (3)].exp, MkInitializerAssignment(MkExpDummy()));
yyval.memberInit->loc = (yyloc);
yyval.memberInit->realLoc = (yyloc);
yyval.memberInit->initializer->loc.start = (yylsp[(2) - (3)]).end;
yyval.memberInit->initializer->loc.end = (yylsp[(2) - (3)]).end;
;
}
break;
case 115:
{
yyval.memberInit = MkMemberInitExp(yyvsp[(1) - (2)].exp, (((void *)0)));
yyval.memberInit->loc = (yyloc);
yyval.memberInit->realLoc = (yyloc);
;
}
break;
case 116:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].memberInit);
((struct MemberInit *)(*yyval.list).last)->loc = (yyloc);
;
}
break;
case 117:
{
((struct MemberInit *)(*yyvsp[(1) - (3)].list).last)->loc.end = (yylsp[(3) - (3)]).start;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].memberInit);
yyval.list = yyvsp[(1) - (3)].list;
;
}
break;
case 118:
{
((struct MemberInit *)(*yyvsp[(1) - (3)].list).last)->loc.end = (yylsp[(3) - (3)]).start;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].memberInit);
yyval.list = yyvsp[(1) - (3)].list;
;
}
break;
case 119:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].memberInit);
((struct MemberInit *)(*yyval.list).last)->loc = (yyloc);
;
}
break;
case 120:
{
((struct MemberInit *)(*yyvsp[(1) - (3)].list).last)->loc.end = (yylsp[(3) - (3)]).start;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].memberInit);
yyval.list = yyvsp[(1) - (3)].list;
;
}
break;
case 121:
{
((struct MemberInit *)(*yyvsp[(1) - (3)].list).last)->loc.end = (yylsp[(3) - (3)]).start;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].memberInit);
yyval.list = yyvsp[(1) - (3)].list;
;
}
break;
case 123:
{
yyval.prop = MkProperty(yyvsp[(2) - (4)].list, (((void *)0)), yyvsp[(3) - (4)].id, (((void *)0)), (((void *)0)));
yyval.prop->loc = (yyloc);
;
}
break;
case 124:
{
yyval.prop = MkProperty(yyvsp[(2) - (5)].list, yyvsp[(3) - (5)].declarator, yyvsp[(4) - (5)].id, (((void *)0)), (((void *)0)));
yyval.prop->loc = (yyloc);
;
}
break;
case 125:
{
yyval.prop = MkProperty(yyvsp[(2) - (3)].list, (((void *)0)), (((void *)0)), (((void *)0)), (((void *)0)));
yyval.prop->loc = (yyloc);
;
}
break;
case 126:
{
yyval.prop = MkProperty(yyvsp[(2) - (4)].list, yyvsp[(3) - (4)].declarator, (((void *)0)), (((void *)0)), (((void *)0)));
yyval.prop->loc = (yyloc);
;
}
break;
case 127:
{
yyval.prop = MkProperty((((void *)0)), (((void *)0)), (((void *)0)), (((void *)0)), (((void *)0)));
yyval.prop->loc = (yyloc);
;
}
break;
case 129:
{
yyvsp[(1) - (3)].prop->setStmt = yyvsp[(3) - (3)].stmt;
;
}
break;
case 130:
{
yyvsp[(1) - (3)].prop->getStmt = yyvsp[(3) - (3)].stmt;
;
}
break;
case 131:
{
yyvsp[(1) - (3)].prop->issetStmt = yyvsp[(3) - (3)].stmt;
;
}
break;
case 132:
{
yyvsp[(1) - (2)].prop->__anon1.isWatchable = 1;
;
}
break;
case 133:
{
yyvsp[(1) - (3)].prop->category = yyvsp[(3) - (3)].exp;
;
}
break;
case 134:
{
yyvsp[(1) - (2)].prop->loc.end = (yylsp[(2) - (2)]).end;
yyval.prop = yyvsp[(1) - (2)].prop;
;
}
break;
case 135:
{
yyval.prop = MkProperty(yyvsp[(2) - (4)].list, (((void *)0)), yyvsp[(3) - (4)].id, (((void *)0)), (((void *)0)));
yyval.prop->loc = (yyloc);
;
}
break;
case 136:
{
yyval.prop = MkProperty(yyvsp[(2) - (5)].list, yyvsp[(3) - (5)].declarator, yyvsp[(4) - (5)].id, (((void *)0)), (((void *)0)));
yyval.prop->loc = (yyloc);
;
}
break;
case 137:
{
yyval.prop = MkProperty(yyvsp[(2) - (3)].list, (((void *)0)), (((void *)0)), (((void *)0)), (((void *)0)));
yyval.prop->loc = (yyloc);
;
}
break;
case 138:
{
yyval.prop = MkProperty(yyvsp[(2) - (4)].list, yyvsp[(3) - (4)].declarator, (((void *)0)), (((void *)0)), (((void *)0)));
yyval.prop->loc = (yyloc);
;
}
break;
case 139:
{
yyval.prop = MkProperty((((void *)0)), (((void *)0)), (((void *)0)), (((void *)0)), (((void *)0)));
yyval.prop->loc = (yyloc);
;
}
break;
case 141:
{
yyvsp[(1) - (3)].prop->setStmt = yyvsp[(3) - (3)].stmt;
;
}
break;
case 142:
{
yyvsp[(1) - (3)].prop->getStmt = yyvsp[(3) - (3)].stmt;
;
}
break;
case 143:
{
yyvsp[(1) - (2)].prop->loc.end = (yylsp[(2) - (2)]).end;
;
}
break;
case 144:
{
yyval.list = MkListOne(yyvsp[(1) - (1)].id);
;
}
break;
case 145:
{
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].id);
;
}
break;
case 146:
{
yyval.propertyWatch = MkPropertyWatch(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].stmt);
;
}
break;
case 147:
{
yyval.propertyWatch = MkDeleteWatch(yyvsp[(2) - (2)].stmt);
;
}
break;
case 148:
{
yyval.list = MkListOne(yyvsp[(1) - (1)].propertyWatch);
;
}
break;
case 149:
{
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].propertyWatch);
;
}
break;
case 150:
{
yyval.propertyWatch = MkPropertyWatch(yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].stmt);
;
}
break;
case 151:
{
yyval.stmt = MkWatchStmt((((void *)0)), yyvsp[(3) - (7)].exp, yyvsp[(6) - (7)].list);
;
}
break;
case 152:
{
yyval.stmt = MkWatchStmt(yyvsp[(1) - (9)].exp, yyvsp[(5) - (9)].exp, yyvsp[(8) - (9)].list);
;
}
break;
case 153:
{
yyval.stmt = MkStopWatchingStmt((((void *)0)), yyvsp[(3) - (6)].exp, yyvsp[(5) - (6)].list);
;
}
break;
case 154:
{
yyval.stmt = MkStopWatchingStmt(yyvsp[(1) - (8)].exp, yyvsp[(5) - (8)].exp, yyvsp[(7) - (8)].list);
;
}
break;
case 155:
{
yyval.stmt = MkStopWatchingStmt((((void *)0)), yyvsp[(3) - (4)].exp, (((void *)0)));
;
}
break;
case 156:
{
yyval.stmt = MkStopWatchingStmt(yyvsp[(1) - (6)].exp, yyvsp[(5) - (6)].exp, (((void *)0)));
;
}
break;
case 157:
{
yyval.stmt = MkFireWatchersStmt((((void *)0)), (((void *)0)));
;
}
break;
case 158:
{
yyval.stmt = MkFireWatchersStmt((((void *)0)), yyvsp[(2) - (2)].list);
;
}
break;
case 159:
{
yyval.stmt = MkFireWatchersStmt(yyvsp[(1) - (3)].exp, (((void *)0)));
;
}
break;
case 160:
{
yyval.stmt = MkFireWatchersStmt(yyvsp[(1) - (4)].exp, yyvsp[(4) - (4)].list);
;
}
break;
case 161:
{
yyval.classDef = yyvsp[(1) - (2)].classDef;
yyval.classDef->loc.end = (yylsp[(2) - (2)]).end;
;
}
break;
case 162:
{
yyval.classDef = MkClassDefDefaultProperty(yyvsp[(1) - (2)].list);
if((*yyvsp[(1) - (2)].list).last)
((struct MemberInit *)(*yyvsp[(1) - (2)].list).last)->loc.end = (yylsp[(2) - (2)]).start;
yyval.classDef->loc = (yyloc);
;
}
break;
case 163:
{
yyval.classDef = MkClassDefFunction(yyvsp[(1) - (1)].classFunction);
yyval.classDef->loc = (yyloc);
yyval.classDef->memberAccess = memberAccessStack[defaultMemberAccess];
;
}
break;
case 164:
{
yyval.classDef = MkClassDefProperty(yyvsp[(1) - (1)].prop);
yyval.classDef->loc = (yyloc);
yyval.classDef->memberAccess = memberAccessStack[defaultMemberAccess];
;
}
break;
case 165:
{
yyval.classDef = MkClassDefFunction(yyvsp[(2) - (2)].classFunction);
yyval.classDef->loc = (yyloc);
yyval.classDef->memberAccess = yyvsp[(1) - (2)].declMode;
;
}
break;
case 166:
{
yyval.classDef = MkClassDefProperty(yyvsp[(2) - (2)].prop);
yyval.classDef->loc = (yyloc);
yyval.classDef->memberAccess = yyvsp[(1) - (2)].declMode;
;
}
break;
case 167:
{
yyval.classDef = MkClassDefClassProperty(yyvsp[(1) - (1)].prop);
yyval.classDef->loc = (yyloc);
;
}
break;
case 168:
{
yyval.classDef = (((void *)0));
deleteWatchable = 1;
;
}
break;
case 169:
{
yyval.classDef = MkClassDefNoExpansion();
;
}
break;
case 170:
{
yyval.classDef = MkClassDefFixed();
;
}
break;
case 171:
{
yyval.classDef = MkClassDefClassPropertyValue(yyvsp[(3) - (7)].id, yyvsp[(6) - (7)].initializer);
yyval.classDef->loc = (yyloc);
;
}
break;
case 172:
{
yyval.classDef = (((void *)0));
;
}
break;
case 173:
{
memberAccessStack[defaultMemberAccess] = yyvsp[(1) - (2)].declMode;
if(defaultMemberAccess == 0)
{
yyval.classDef = MkClassDefMemberAccess();
yyval.classDef->memberAccess = yyvsp[(1) - (2)].declMode;
yyval.classDef->loc = (yyloc);
}
else
yyval.classDef = (((void *)0));
;
}
break;
case 174:
{
yyval.classDef = MkClassDefAccessOverride(yyvsp[(1) - (4)].declMode, yyvsp[(3) - (4)].id);
yyval.classDef->loc = (yyloc);
;
}
break;
case 175:
{
yyval.classDef = MkClassDefFunction(yyvsp[(1) - (1)].classFunction);
yyval.classDef->loc = yyvsp[(1) - (1)].classFunction->loc;
yyval.classDef->loc.end.charPos++;
yyval.classDef->loc.end.pos++;
yyval.classDef->memberAccess = memberAccessStack[defaultMemberAccess];
;
}
break;
case 176:
{
yyval.classDef = MkClassDefDeclaration(MkStructDeclaration(yyvsp[(1) - (1)].list, (((void *)0)), (((void *)0))));
yyval.classDef->__anon1.decl->loc = (yyloc);
yyval.classDef->loc = (yyloc);
yyval.classDef->memberAccess = memberAccessStack[defaultMemberAccess];
;
}
break;
case 177:
{
yyval.classDef = MkClassDefDeclaration(MkStructDeclaration(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].list, (((void *)0))));
yyval.classDef->__anon1.decl->loc = (yyloc);
yyval.classDef->loc = (yyloc);
yyval.classDef->memberAccess = memberAccessStack[defaultMemberAccess];
;
}
break;
case 178:
{
yyval.classDef = MkClassDefDeclaration(MkStructDeclaration(yyvsp[(2) - (3)].list, yyvsp[(3) - (3)].list, (((void *)0))));
yyval.classDef->__anon1.decl->loc = (yyloc);
yyval.classDef->loc = (yyloc);
yyval.classDef->memberAccess = yyvsp[(1) - (3)].declMode;
;
}
break;
case 179:
{
yyval.classDef = MkClassDefDeclaration(MkStructDeclaration(yyvsp[(2) - (2)].list, (((void *)0)), (((void *)0))));
yyval.classDef->__anon1.decl->loc = (yyloc);
yyval.classDef->loc = (yyloc);
yyval.classDef->memberAccess = yyvsp[(1) - (2)].declMode;
;
}
break;
case 180:
{
yyval.classDef = MkClassDefDeclaration(MkDeclarationClassInst(yyvsp[(2) - (2)].instance));
yyval.classDef->loc = (yyloc);
yyval.classDef->__anon1.decl->loc = (yyloc);
yyval.classDef->memberAccess = yyvsp[(1) - (2)].declMode;
;
}
break;
case 181:
{
yyval.classDef = MkClassDefDeclaration(MkDeclarationClassInst(yyvsp[(2) - (2)].instance));
yyval.classDef->loc = (yyloc);
yyval.classDef->__anon1.decl->loc = (yyloc);
yyval.classDef->memberAccess = yyvsp[(1) - (2)].declMode;
;
}
break;
case 182:
{
yyval.classDef = MkClassDefClassData(MkStructDeclaration(yyvsp[(2) - (3)].list, yyvsp[(3) - (3)].list, (((void *)0))));
yyval.classDef->__anon1.decl->loc = (yyloc);
yyval.classDef->loc = (yyloc);
;
}
break;
case 183:
{
yyval.classDef = MkClassDefPropertyWatch(yyvsp[(1) - (1)].propertyWatch);
yyval.classDef->loc = (yyloc);
;
}
break;
case 184:
{
yyval.classDef = MkClassDefDesigner(yyvsp[(2) - (2)].id->string);
FreeIdentifier(yyvsp[(2) - (2)].id);
;
}
break;
case 185:
{
yyval.classDef = MkClassDefDesigner(yyvsp[(2) - (2)].specifier->__anon1.__anon1.name);
FreeSpecifier(yyvsp[(2) - (2)].specifier);
;
}
break;
case 186:
{
yyval.classDef = MkClassDefDesignerDefaultProperty(yyvsp[(2) - (2)].id);
;
}
break;
case 187:
{
yyval.classDef = MkClassDefDeclaration(MkDeclarationClassInst(yyvsp[(1) - (1)].instance));
yyval.classDef->loc = (yyloc);
yyval.classDef->__anon1.decl->loc = (yyloc);
yyval.classDef->memberAccess = memberAccessStack[defaultMemberAccess];
;
}
break;
case 188:
{
yyval.classDef = MkClassDefDeclaration(MkDeclarationClassInst(yyvsp[(1) - (1)].instance));
yyval.classDef->loc = (yyloc);
yyval.classDef->__anon1.decl->loc = (yyloc);
yyval.classDef->memberAccess = memberAccessStack[defaultMemberAccess];
;
}
break;
case 189:
{
yyval.classDef = MkClassDefDefaultProperty(yyvsp[(1) - (1)].list);
if((*yyvsp[(1) - (1)].list).last)
((struct MemberInit *)(*yyvsp[(1) - (1)].list).last)->loc.end = (yylsp[(1) - (1)]).end;
yyval.classDef->loc = (yyloc);
;
}
break;
case 190:
{
yyval.classDef = MkClassDefDeclaration(MkDeclarationClassInst(yyvsp[(1) - (2)].instance));
yyval.classDef->loc = yyvsp[(1) - (2)].instance->loc;
yyval.classDef->__anon1.decl->loc = yyval.classDef->loc;
yyval.classDef->memberAccess = memberAccessStack[defaultMemberAccess];
;
}
break;
case 191:
{
yyval.classDef = MkClassDefDeclaration(MkDeclarationClassInst(yyvsp[(1) - (2)].instance));
yyval.classDef->loc = yyvsp[(1) - (2)].instance->loc;
yyval.classDef->__anon1.decl->loc = yyval.classDef->loc;
yyval.classDef->memberAccess = memberAccessStack[defaultMemberAccess];
;
}
break;
case 192:
{
yyval.classDef = MkClassDefFunction(yyvsp[(2) - (2)].classFunction);
yyval.classDef->loc = (yyloc);
yyval.classDef->loc.end.charPos++;
yyval.classDef->loc.end.pos++;
yyval.classDef->memberAccess = yyvsp[(1) - (2)].declMode;
;
}
break;
case 193:
{
yyval.classDef = MkClassDefDeclaration(MkDeclarationClassInst(yyvsp[(2) - (3)].instance));
yyval.classDef->loc = (yyloc);
yyval.classDef->__anon1.decl->loc = yyval.classDef->loc;
yyval.classDef->memberAccess = yyvsp[(1) - (3)].declMode;
;
}
break;
case 194:
{
yyval.classDef = MkClassDefDeclaration(MkDeclarationClassInst(yyvsp[(2) - (3)].instance));
yyval.classDef->loc = (yyloc);
yyval.classDef->__anon1.decl->loc = yyval.classDef->loc;
yyval.classDef->memberAccess = yyvsp[(1) - (3)].declMode;
;
}
break;
case 195:
{
yyval.classDef = MkClassDefDefaultProperty(yyvsp[(1) - (1)].list);
yyval.classDef->loc = (yyloc);
yyval.classDef->loc.end.charPos++;
yyval.classDef->loc.end.pos++;
;
}
break;
case 196:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].classDef);
;
}
break;
case 197:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].classDef);
;
}
break;
case 198:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].classDef);
;
}
break;
case 199:
{
yyerror();
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].classDef);
;
}
break;
case 202:
{
yyerror();
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyval.list, yyvsp[(2) - (2)].classDef);
;
}
break;
case 203:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyval.list, yyvsp[(2) - (2)].classDef);
;
}
break;
case 204:
{
yyval.templateDatatype = MkTemplateDatatype(yyvsp[(1) - (1)].list, (((void *)0)));
;
}
break;
case 205:
{
yyval.templateDatatype = MkTemplateDatatype(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].declarator);
;
}
break;
case 206:
{
yyval.templateArgument = MkTemplateTypeArgument(MkTemplateDatatype(yyvsp[(1) - (1)].list, (((void *)0))));
;
}
break;
case 207:
{
yyval.templateArgument = MkTemplateTypeArgument(MkTemplateDatatype(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].declarator));
;
}
break;
case 208:
{
yyval.templateParameter = MkTypeTemplateParameter(yyvsp[(2) - (2)].id, (((void *)0)), (((void *)0)));
;
}
break;
case 209:
{
yyval.templateParameter = MkTypeTemplateParameter(yyvsp[(2) - (4)].id, (((void *)0)), yyvsp[(4) - (4)].templateArgument);
;
}
break;
case 210:
{
yyval.templateParameter = MkTypeTemplateParameter(yyvsp[(2) - (4)].id, yyvsp[(4) - (4)].templateDatatype, (((void *)0)));
;
}
break;
case 211:
{
yyval.templateParameter = MkTypeTemplateParameter(yyvsp[(2) - (6)].id, yyvsp[(4) - (6)].templateDatatype, yyvsp[(6) - (6)].templateArgument);
;
}
break;
case 212:
{
yyval.templateParameter = MkTypeTemplateParameter(MkIdentifier(yyvsp[(2) - (2)].string), (((void *)0)), (((void *)0)));
(__ecereNameSpace__ecere__com__eSystem_Delete(yyvsp[(2) - (2)].string), yyvsp[(2) - (2)].string = 0);
;
}
break;
case 213:
{
yyval.templateParameter = MkTypeTemplateParameter(MkIdentifier(yyvsp[(2) - (4)].string), (((void *)0)), yyvsp[(4) - (4)].templateArgument);
;
}
break;
case 214:
{
yyval.templateParameter = MkTypeTemplateParameter(MkIdentifier(yyvsp[(2) - (4)].string), yyvsp[(4) - (4)].templateDatatype, (((void *)0)));
;
}
break;
case 215:
{
yyval.templateParameter = MkTypeTemplateParameter(MkIdentifier(yyvsp[(2) - (6)].string), yyvsp[(4) - (6)].templateDatatype, yyvsp[(6) - (6)].templateArgument);
;
}
break;
case 216:
{
yyval.templateArgument = MkTemplateIdentifierArgument(yyvsp[(1) - (1)].id);
;
}
break;
case 217:
{
yyval.templateParameter = MkIdentifierTemplateParameter(yyvsp[(1) - (1)].id, 0, (((void *)0)));
;
}
break;
case 218:
{
yyval.templateParameter = MkIdentifierTemplateParameter(yyvsp[(1) - (3)].id, 0, yyvsp[(3) - (3)].templateArgument);
;
}
break;
case 219:
{
yyval.templateArgument = MkTemplateExpressionArgument(yyvsp[(1) - (1)].exp);
;
}
break;
case 220:
{
yyval.templateParameter = MkExpressionTemplateParameter(yyvsp[(2) - (4)].id, MkTemplateDatatype(yyvsp[(1) - (4)].list, (((void *)0))), yyvsp[(4) - (4)].templateArgument);
;
}
break;
case 221:
{
yyval.templateParameter = MkExpressionTemplateParameter(yyvsp[(3) - (5)].id, MkTemplateDatatype(yyvsp[(1) - (5)].list, yyvsp[(2) - (5)].declarator), yyvsp[(5) - (5)].templateArgument);
;
}
break;
case 225:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].templateParameter);
;
}
break;
case 226:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].templateParameter);
;
}
break;
case 230:
{
yyval.templateArgument = yyvsp[(3) - (3)].templateArgument;
yyval.templateArgument->name = yyvsp[(1) - (3)].id;
yyval.templateArgument->loc = (yyloc);
;
}
break;
case 231:
{
yyval.templateArgument = yyvsp[(3) - (3)].templateArgument;
yyval.templateArgument->name = yyvsp[(1) - (3)].id;
yyval.templateArgument->loc = (yyloc);
;
}
break;
case 232:
{
yyval.templateArgument = yyvsp[(3) - (3)].templateArgument;
yyval.templateArgument->name = yyvsp[(1) - (3)].id;
yyval.templateArgument->loc = (yyloc);
;
}
break;
case 233:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].templateArgument);
;
}
break;
case 234:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].templateArgument);
;
}
break;
case 235:
{
if(curContext != globalContext)
PopContext(curContext);
yyval.context = PushContext();
;
}
break;
case 236:
{
(void)yyvsp[(1) - (2)].context;
yyval.symbol = DeclClassAddNameSpace(yyvsp[(2) - (2)].id->_class, yyvsp[(2) - (2)].id->string);
FreeIdentifier(yyvsp[(2) - (2)].id);
yyval.symbol->nameLoc = (yylsp[(2) - (2)]);
memberAccessStack[++defaultMemberAccess] = 2;
;
}
break;
case 237:
{
(void)yyvsp[(1) - (2)].context;
yyval.symbol = DeclClass(yyvsp[(2) - (2)].specifier->__anon1.__anon1.nsSpec, yyvsp[(2) - (2)].specifier->__anon1.__anon1.name);
yyval.symbol->nameLoc = (yylsp[(2) - (2)]);
FreeSpecifier(yyvsp[(2) - (2)].specifier);
++defaultMemberAccess;
memberAccessStack[defaultMemberAccess] = 2;
;
}
break;
case 238:
{
(void)yyvsp[(2) - (3)].context;
yyval.symbol = DeclClassAddNameSpace(yyvsp[(3) - (3)].id->_class, yyvsp[(3) - (3)].id->string);
FreeIdentifier(yyvsp[(1) - (3)].id);
FreeIdentifier(yyvsp[(3) - (3)].id);
yyval.symbol->nameLoc = (yylsp[(3) - (3)]);
yyval.symbol->isRemote = 1;
memberAccessStack[++defaultMemberAccess] = 2;
;
}
break;
case 239:
{
(void)yyvsp[(2) - (3)].context;
yyval.symbol = DeclClass(yyvsp[(3) - (3)].specifier->__anon1.__anon1.nsSpec, yyvsp[(3) - (3)].specifier->__anon1.__anon1.name);
FreeIdentifier(yyvsp[(1) - (3)].id);
yyval.symbol->nameLoc = (yylsp[(3) - (3)]);
yyval.symbol->isRemote = 1;
FreeSpecifier(yyvsp[(3) - (3)].specifier);
memberAccessStack[++defaultMemberAccess] = 2;
;
}
break;
case 240:
{
(void)yyvsp[(1) - (5)].context;
yyval.symbol = DeclClassAddNameSpace(yyvsp[(2) - (5)].id->_class, yyvsp[(2) - (5)].id->string);
yyval.symbol->templateParams = yyvsp[(4) - (5)].list;
FreeIdentifier(yyvsp[(2) - (5)].id);
yyval.symbol->nameLoc = (yylsp[(2) - (5)]);
memberAccessStack[++defaultMemberAccess] = 2;
;
}
break;
case 241:
{
(void)yyvsp[(1) - (5)].context;
yyval.symbol = DeclClass(yyvsp[(2) - (5)].specifier->__anon1.__anon1.nsSpec, yyvsp[(2) - (5)].specifier->__anon1.__anon1.name);
yyval.symbol->templateParams = yyvsp[(4) - (5)].list;
yyval.symbol->nameLoc = (yylsp[(2) - (5)]);
FreeSpecifier(yyvsp[(2) - (5)].specifier);
++defaultMemberAccess;
memberAccessStack[defaultMemberAccess] = 2;
;
}
break;
case 242:
{
(void)yyvsp[(2) - (6)].context;
yyval.symbol = DeclClassAddNameSpace(yyvsp[(3) - (6)].id->_class, yyvsp[(3) - (6)].id->string);
yyval.symbol->templateParams = yyvsp[(5) - (6)].list;
FreeIdentifier(yyvsp[(1) - (6)].id);
FreeIdentifier(yyvsp[(3) - (6)].id);
yyval.symbol->nameLoc = (yylsp[(3) - (6)]);
yyval.symbol->isRemote = 1;
memberAccessStack[++defaultMemberAccess] = 2;
;
}
break;
case 243:
{
(void)yyvsp[(2) - (6)].context;
yyval.symbol = DeclClass(yyvsp[(3) - (6)].specifier->__anon1.__anon1.nsSpec, yyvsp[(3) - (6)].specifier->__anon1.__anon1.name);
yyval.symbol->templateParams = yyvsp[(5) - (6)].list;
FreeIdentifier(yyvsp[(1) - (6)].id);
yyval.symbol->nameLoc = (yylsp[(3) - (6)]);
yyval.symbol->isRemote = 1;
FreeSpecifier(yyvsp[(3) - (6)].specifier);
memberAccessStack[++defaultMemberAccess] = 2;
;
}
break;
case 244:
{
yyval._class->loc = (yyloc);
yyval._class = yyvsp[(1) - (2)]._class;
;
}
break;
case 245:
{
yyval._class = yyvsp[(1) - (2)]._class;
yyval._class->definitions = MkList();
yyval._class->blockStart = (yylsp[(2) - (2)]);
yyval._class->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
PopContext(curContext);
;
}
break;
case 246:
{
yyval._class = MkClass(yyvsp[(1) - (3)].symbol, (((void *)0)), MkList());
yyval._class->blockStart = (yylsp[(2) - (3)]);
yyval._class->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
PopContext(curContext);
;
}
break;
case 247:
{
yyval._class = yyvsp[(1) - (3)]._class;
yyval._class->definitions = MkList();
yyval._class->blockStart = (yylsp[(2) - (3)]);
yyval._class->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
PopContext(curContext);
;
}
break;
case 248:
{
(void)yyvsp[(1) - (3)].context;
yyval._class = MkClass(DeclClassAddNameSpace(yyvsp[(2) - (3)].id->_class, yyvsp[(2) - (3)].id->string), (((void *)0)), (((void *)0)));
FreeIdentifier(yyvsp[(2) - (3)].id);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
PopContext(curContext);
;
}
break;
case 249:
{
(void)yyvsp[(1) - (3)].context;
yyval._class = MkClass(DeclClass(yyvsp[(2) - (3)].specifier->__anon1.__anon1.nsSpec, yyvsp[(2) - (3)].specifier->__anon1.__anon1.name), (((void *)0)), (((void *)0)));
FreeSpecifier(yyvsp[(2) - (3)].specifier);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
PopContext(curContext);
;
}
break;
case 250:
{
yyval._class = MkClass(yyvsp[(1) - (3)].symbol, yyvsp[(3) - (3)].list, (((void *)0)));
;
}
break;
case 251:
{
yyval._class = MkClass(yyvsp[(1) - (3)].symbol, (((void *)0)), yyvsp[(3) - (3)].list);
yyval._class->deleteWatchable = deleteWatchable;
deleteWatchable = 0;
yyval._class->blockStart = (yylsp[(2) - (3)]);
yyval._class->loc = (yyloc);
yyval._class->loc.end.charPos++;
yyval._class->loc.end.pos++;
if(defaultMemberAccess > -1)
defaultMemberAccess--;
PopContext(curContext);
;
}
break;
case 252:
{
yyval._class = yyvsp[(1) - (3)]._class;
yyval._class->definitions = yyvsp[(3) - (3)].list;
yyval._class->deleteWatchable = deleteWatchable;
deleteWatchable = 0;
yyval._class->blockStart = (yylsp[(2) - (3)]);
yyval._class->loc = (yyloc);
yyval._class->loc.end.charPos++;
yyval._class->loc.end.pos++;
if(defaultMemberAccess > -1)
defaultMemberAccess--;
PopContext(curContext);
;
}
break;
case 253:
{
yyval._class = MkClass(yyvsp[(1) - (3)].symbol, (((void *)0)), yyvsp[(3) - (3)].list);
yyval._class->deleteWatchable = deleteWatchable;
deleteWatchable = 0;
yyval._class->blockStart = (yylsp[(2) - (3)]);
yyval._class->loc = (yyloc);
yyval._class->loc.end.charPos++;
yyval._class->loc.end.pos++;
if(defaultMemberAccess > -1)
defaultMemberAccess--;
PopContext(curContext);
;
}
break;
case 254:
{
yyval._class = yyvsp[(1) - (3)]._class;
yyval._class->definitions = yyvsp[(3) - (3)].list;
yyval._class->deleteWatchable = deleteWatchable;
deleteWatchable = 0;
yyval._class->blockStart = (yylsp[(2) - (3)]);
yyval._class->loc = (yyloc);
yyval._class->loc.end.charPos++;
yyval._class->loc.end.pos++;
if(defaultMemberAccess > -1)
defaultMemberAccess--;
PopContext(curContext);
;
}
break;
case 255:
{
yyval._class = MkClass(yyvsp[(1) - (3)].symbol, (((void *)0)), MkList());
yyval._class->deleteWatchable = deleteWatchable;
deleteWatchable = 0;
yyval._class->blockStart = (yylsp[(2) - (3)]);
yyval._class->loc = (yyloc);
yyval._class->loc.end.charPos++;
yyval._class->loc.end.pos++;
if(defaultMemberAccess > -1)
defaultMemberAccess--;
PopContext(curContext);
;
}
break;
case 256:
{
yyval._class = yyvsp[(1) - (3)]._class;
yyval._class->definitions = MkList();
yyval._class->deleteWatchable = deleteWatchable;
deleteWatchable = 0;
yyval._class->blockStart = (yylsp[(2) - (3)]);
yyval._class->loc = (yyloc);
yyval._class->loc.end.charPos++;
yyval._class->loc.end.pos++;
if(defaultMemberAccess > -1)
defaultMemberAccess--;
PopContext(curContext);
;
}
break;
case 257:
{
yyval.id = MkIdentifier(yytext);
yyval.id->loc = (yylsp[(1) - (1)]);
;
}
break;
case 259:
{
yyval.exp = MkExpBrackets(yyvsp[(2) - (3)].list);
yyval.exp->loc = (yyloc);
;
}
break;
case 260:
{
yyval.exp = MkExpString(yyvsp[(1) - (1)].string);
(__ecereNameSpace__ecere__com__eSystem_Delete(yyvsp[(1) - (1)].string), yyvsp[(1) - (1)].string = 0);
yyval.exp->loc = (yyloc);
;
}
break;
case 261:
{
yyval.exp = MkExpIntlString(yyvsp[(2) - (2)].string, (((void *)0)));
(__ecereNameSpace__ecere__com__eSystem_Delete(yyvsp[(2) - (2)].string), yyvsp[(2) - (2)].string = 0);
yyval.exp->loc = (yyloc);
;
}
break;
case 262:
{
yyval.exp = MkExpIntlString(yyvsp[(4) - (4)].string, yyvsp[(2) - (4)].string);
(__ecereNameSpace__ecere__com__eSystem_Delete(yyvsp[(2) - (4)].string), yyvsp[(2) - (4)].string = 0);
(__ecereNameSpace__ecere__com__eSystem_Delete(yyvsp[(4) - (4)].string), yyvsp[(4) - (4)].string = 0);
yyval.exp->loc = (yyloc);
;
}
break;
case 263:
{
yyval.exp = MkExpConstant(yytext);
yyval.exp->loc = (yyloc);
;
}
break;
case 264:
{
yyval.exp = MkExpIdentifier(yyvsp[(1) - (1)].id);
yyval.exp->loc = (yyloc);
;
}
break;
case 265:
{
yyval.exp = MkExpInstance(yyvsp[(1) - (1)].instance);
yyval.exp->loc = (yyloc);
;
}
break;
case 266:
{
yyval.exp = MkExpExtensionCompound(yyvsp[(3) - (4)].stmt);
yyval.exp->loc = (yyloc);
;
}
break;
case 267:
{
yyval.exp = MkExpExtensionExpression(yyvsp[(3) - (4)].list);
yyval.exp->loc = (yyloc);
;
}
break;
case 268:
{
yyval.exp = MkExpExtensionInitializer(yyvsp[(3) - (5)].typeName, yyvsp[(5) - (5)].initializer);
yyval.exp->loc = (yyloc);
;
}
break;
case 269:
{
yyval.exp = MkExpExtensionInitializer(yyvsp[(3) - (8)].typeName, MkInitializerAssignment(MkExpExtensionInitializer(yyvsp[(6) - (8)].typeName, yyvsp[(8) - (8)].initializer)));
yyval.exp->loc = (yyloc);
;
}
break;
case 270:
{
char * constant = yyvsp[(1) - (2)].exp->__anon1.__anon1.constant;
int len = strlen(constant);
if(constant[len - 1] == '.')
{
constant[len - 1] = 0;
yyval.exp = MkExpMember(yyvsp[(1) - (2)].exp, yyvsp[(2) - (2)].id);
yyval.exp->loc = (yyloc);
}
else
yyerror();
;
}
break;
case 271:
{
yyval.exp = yyvsp[(1) - (1)].exp;
;
}
break;
case 273:
{
yyval.exp = MkExpWideString(yytext);
yyval.exp->loc = (yyloc);
;
}
break;
case 274:
{
struct Expression * exp = MkExpDummy();
exp->loc.start = (yylsp[(1) - (2)]).end;
exp->loc.end = (yylsp[(2) - (2)]).start;
yyval.exp = MkExpBrackets(MkListOne(exp));
yyval.exp->loc = (yyloc);
yyerror();
;
}
break;
case 275:
{
yyval.exp = MkExpNew(MkTypeName(yyvsp[(2) - (6)].list, yyvsp[(3) - (6)].declarator), yyvsp[(5) - (6)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 276:
{
yyval.exp = MkExpNew(MkTypeName(yyvsp[(2) - (6)].list, yyvsp[(3) - (6)].declarator), yyvsp[(5) - (6)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 277:
{
yyval.exp = MkExpNew(MkTypeName(yyvsp[(2) - (5)].list, (((void *)0))), yyvsp[(4) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 278:
{
yyval.exp = MkExpNew(MkTypeName(yyvsp[(2) - (5)].list, (((void *)0))), yyvsp[(4) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 279:
{
yyval.exp = MkExpNew0(MkTypeName(yyvsp[(2) - (6)].list, yyvsp[(3) - (6)].declarator), yyvsp[(5) - (6)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 280:
{
yyval.exp = MkExpNew0(MkTypeName(yyvsp[(2) - (6)].list, yyvsp[(3) - (6)].declarator), yyvsp[(5) - (6)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 281:
{
yyval.exp = MkExpNew0(MkTypeName(yyvsp[(2) - (5)].list, (((void *)0))), yyvsp[(4) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 282:
{
yyval.exp = MkExpNew0(MkTypeName(yyvsp[(2) - (5)].list, (((void *)0))), yyvsp[(4) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 283:
{
yyval.exp = MkExpRenew(yyvsp[(2) - (7)].exp, MkTypeName(yyvsp[(3) - (7)].list, yyvsp[(4) - (7)].declarator), yyvsp[(6) - (7)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 284:
{
yyval.exp = MkExpRenew(yyvsp[(2) - (7)].exp, MkTypeName(yyvsp[(3) - (7)].list, yyvsp[(4) - (7)].declarator), yyvsp[(6) - (7)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 285:
{
yyval.exp = MkExpRenew(yyvsp[(2) - (6)].exp, MkTypeName(yyvsp[(3) - (6)].list, (((void *)0))), yyvsp[(5) - (6)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 286:
{
yyval.exp = MkExpRenew(yyvsp[(2) - (6)].exp, MkTypeName(yyvsp[(3) - (6)].list, (((void *)0))), yyvsp[(5) - (6)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 287:
{
yyval.exp = MkExpRenew0(yyvsp[(2) - (7)].exp, MkTypeName(yyvsp[(3) - (7)].list, yyvsp[(4) - (7)].declarator), yyvsp[(6) - (7)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 288:
{
yyval.exp = MkExpRenew0(yyvsp[(2) - (7)].exp, MkTypeName(yyvsp[(3) - (7)].list, yyvsp[(4) - (7)].declarator), yyvsp[(6) - (7)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 289:
{
yyval.exp = MkExpRenew0(yyvsp[(2) - (6)].exp, MkTypeName(yyvsp[(3) - (6)].list, (((void *)0))), yyvsp[(5) - (6)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 290:
{
yyval.exp = MkExpRenew0(yyvsp[(2) - (6)].exp, MkTypeName(yyvsp[(3) - (6)].list, (((void *)0))), yyvsp[(5) - (6)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 291:
{
yyval.exp = MkExpClass(yyvsp[(3) - (4)].list, (((void *)0)));
yyval.exp->loc = (yyloc);
;
}
break;
case 292:
{
yyval.exp = MkExpClass(yyvsp[(3) - (5)].list, yyvsp[(4) - (5)].declarator);
yyval.exp->loc = (yyloc);
;
}
break;
case 293:
{
yyval.exp = MkExpClass(MkListOne(MkSpecifierName(yyvsp[(3) - (4)].id->string)), (((void *)0)));
FreeIdentifier(yyvsp[(3) - (4)].id);
yyval.exp->loc = (yyloc);
;
}
break;
case 294:
{
yyval.exp = MkExpVaArg(yyvsp[(3) - (6)].exp, yyvsp[(5) - (6)].typeName);
yyval.exp->loc = (yyloc);
;
}
break;
case 295:
{
yyval.exp = MkExpClassData(yyvsp[(3) - (4)].id);
yyval.exp->loc = (yyloc);
;
}
break;
case 300:
{
yyval.exp = MkExpArray(yyvsp[(2) - (3)].list);
yyval.exp->loc = (yyloc);
;
}
break;
case 301:
{
yyval.exp = MkExpArray((((void *)0)));
yyval.exp->loc = (yyloc);
;
}
break;
case 302:
{
yyval.exp = MkExpInstance(yyvsp[(1) - (1)].instance);
yyval.exp->loc = (yyloc);
;
}
break;
case 303:
{
yyval.exp = MkExpInstance(yyvsp[(1) - (2)].instance);
yyval.exp->loc = (yyloc);
;
}
break;
case 304:
{
yyerror();
yyval.exp = MkExpBrackets(yyvsp[(2) - (2)].list);
yyval.exp->loc = (yyloc);
;
}
break;
case 305:
{
yyval.exp = MkExpBrackets(yyvsp[(2) - (2)].list);
yyval.exp->loc = (yyloc);
;
}
break;
case 307:
{
yyval.exp = MkExpIndex(yyvsp[(1) - (4)].exp, yyvsp[(3) - (4)].list);
yyval.exp->loc = (yyloc);
;
}
break;
case 308:
{
yyval.exp = MkExpIndex(yyvsp[(1) - (4)].exp, yyvsp[(3) - (4)].list);
yyval.exp->loc = (yyloc);
;
}
break;
case 309:
{
yyval.exp = MkExpCall(yyvsp[(1) - (3)].exp, MkList());
yyval.exp->__anon1.call.argLoc.start = (yylsp[(2) - (3)]).start;
yyval.exp->__anon1.call.argLoc.end = (yylsp[(3) - (3)]).end;
yyval.exp->loc = (yyloc);
;
}
break;
case 310:
{
yyval.exp = MkExpCall(yyvsp[(1) - (4)].exp, yyvsp[(3) - (4)].list);
yyval.exp->__anon1.call.argLoc.start = (yylsp[(2) - (4)]).start;
yyval.exp->__anon1.call.argLoc.end = (yylsp[(4) - (4)]).end;
yyval.exp->loc = (yyloc);
;
}
break;
case 311:
{
yyval.exp = MkExpCall(yyvsp[(1) - (4)].exp, yyvsp[(3) - (4)].list);
yyval.exp->__anon1.call.argLoc.start = (yylsp[(2) - (4)]).start;
yyval.exp->__anon1.call.argLoc.end = (yylsp[(4) - (4)]).end;
yyval.exp->loc = (yyloc);
if((*yyvsp[(3) - (4)].list).last)
((struct Expression *)(*yyvsp[(3) - (4)].list).last)->loc.end = (yylsp[(4) - (4)]).start;
;
}
break;
case 312:
{
yyval.exp = MkExpMember(yyvsp[(1) - (3)].exp, yyvsp[(3) - (3)].id);
yyval.exp->loc = (yyloc);
;
}
break;
case 313:
{
yyval.exp = MkExpPointer(yyvsp[(1) - (3)].exp, yyvsp[(3) - (3)].id);
yyval.exp->loc = (yyloc);
;
}
break;
case 314:
{
yyval.exp = MkExpOp(yyvsp[(1) - (2)].exp, INC_OP, (((void *)0)));
yyval.exp->loc = (yyloc);
;
}
break;
case 315:
{
yyval.exp = MkExpOp(yyvsp[(1) - (2)].exp, DEC_OP, (((void *)0)));
yyval.exp->loc = (yyloc);
;
}
break;
case 316:
{
yyval.exp = MkExpIndex(yyvsp[(1) - (4)].exp, yyvsp[(3) - (4)].list);
yyval.exp->loc = (yyloc);
;
}
break;
case 317:
{
yyval.exp = MkExpIndex(yyvsp[(1) - (4)].exp, yyvsp[(3) - (4)].list);
yyval.exp->loc = (yyloc);
;
}
break;
case 318:
{
yyval.exp = MkExpCall(yyvsp[(1) - (3)].exp, MkList());
yyval.exp->__anon1.call.argLoc.start = (yylsp[(2) - (3)]).start;
yyval.exp->__anon1.call.argLoc.end = (yylsp[(3) - (3)]).end;
yyval.exp->loc = (yyloc);
;
}
break;
case 319:
{
yyval.exp = MkExpCall(yyvsp[(1) - (4)].exp, yyvsp[(3) - (4)].list);
yyval.exp->__anon1.call.argLoc.start = (yylsp[(2) - (4)]).start;
yyval.exp->__anon1.call.argLoc.end = (yylsp[(4) - (4)]).end;
yyval.exp->loc = (yyloc);
;
}
break;
case 320:
{
yyval.exp = MkExpMember(yyvsp[(1) - (3)].exp, yyvsp[(3) - (3)].id);
yyval.exp->loc = (yyloc);
;
}
break;
case 321:
{
yyval.exp = MkExpPointer(yyvsp[(1) - (3)].exp, yyvsp[(3) - (3)].id);
yyval.exp->loc = (yyloc);
;
}
break;
case 322:
{
yyval.exp = MkExpOp(yyvsp[(1) - (2)].exp, INC_OP, (((void *)0)));
yyval.exp->loc = (yyloc);
;
}
break;
case 323:
{
yyval.exp = MkExpOp(yyvsp[(1) - (2)].exp, DEC_OP, (((void *)0)));
yyval.exp->loc = (yyloc);
;
}
break;
case 324:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].exp);
;
}
break;
case 325:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].exp);
;
}
break;
case 326:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].exp);
;
}
break;
case 327:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].exp);
;
}
break;
case 328:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].exp);
;
}
break;
case 329:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].exp);
;
}
break;
case 330:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].exp);
;
}
break;
case 331:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].exp);
;
}
break;
case 332:
{
struct Expression * exp = MkExpDummy();
yyerror();
exp->loc.start = (yylsp[(2) - (2)]).end;
exp->loc.end = (yylsp[(2) - (2)]).end;
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, exp);
;
}
break;
case 333:
{
yyval.exp = MkExpOp((((void *)0)), INC_OP, yyvsp[(2) - (2)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 334:
{
yyval.exp = MkExpOp((((void *)0)), DEC_OP, yyvsp[(2) - (2)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 335:
{
yyval.exp = MkExpOp((((void *)0)), yyvsp[(1) - (2)].i, yyvsp[(2) - (2)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 336:
{
yyval.exp = MkExpOp((((void *)0)), yyvsp[(1) - (2)].i, yyvsp[(2) - (2)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 337:
{
yyval.exp = MkExpOp((((void *)0)), SIZEOF, yyvsp[(2) - (2)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 338:
{
yyval.exp = MkExpTypeSize(yyvsp[(3) - (4)].typeName);
yyval.exp->loc = (yyloc);
;
}
break;
case 339:
{
yyval.exp = MkExpClassSize(yyvsp[(4) - (5)].specifier);
yyval.exp->loc = (yyloc);
;
}
break;
case 340:
{
yyval.exp = MkExpClassSize(yyvsp[(4) - (5)].specifier);
yyval.exp->loc = (yyloc);
;
}
break;
case 341:
{
yyval.exp = MkExpOp((((void *)0)), ALIGNOF, yyvsp[(2) - (2)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 342:
{
yyval.exp = MkExpTypeAlign(yyvsp[(3) - (4)].typeName);
yyval.exp->loc = (yyloc);
;
}
break;
case 343:
{
yyval.exp = MkExpOffsetOf(yyvsp[(3) - (6)].typeName, yyvsp[(5) - (6)].id);
yyval.exp->loc = (yyloc);
;
}
break;
case 346:
{
yyval.i = '&';
;
}
break;
case 347:
{
yyval.i = '*';
;
}
break;
case 348:
{
yyval.i = '+';
;
}
break;
case 349:
{
yyval.i = '-';
;
}
break;
case 350:
{
yyval.i = '~';
;
}
break;
case 351:
{
yyval.i = '!';
;
}
break;
case 352:
{
yyval.i = DELETE;
;
}
break;
case 353:
{
yyval.i = _INCREF;
;
}
break;
case 355:
{
yyval.exp = MkExpCast(yyvsp[(2) - (4)].typeName, yyvsp[(4) - (4)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 357:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '*', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 358:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '/', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 359:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '%', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 360:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '*', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 361:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '/', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 362:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '%', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 364:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '+', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 365:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '-', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 366:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '+', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 367:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '-', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 369:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, LEFT_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 370:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, RIGHT_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 371:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, LEFT_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 372:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, RIGHT_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 373:
{
yyval.exp = yyvsp[(1) - (2)].exp;
skipErrors = 1;
;
}
break;
case 375:
{
skipErrors = 0;
yyval.exp = MkExpOp(yyvsp[(1) - (2)].exp, '<', yyvsp[(2) - (2)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 376:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '>', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 377:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, LE_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 378:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, GE_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 379:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '<', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 380:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '>', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 381:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, LE_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 382:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, GE_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 384:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, EQ_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 385:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, NE_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 386:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, EQ_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 387:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, NE_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 388:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, EQ_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 389:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, NE_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 390:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, EQ_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 391:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, NE_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 393:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '&', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 394:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '&', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 395:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '&', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 396:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '&', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 398:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '^', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 399:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '^', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 400:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '^', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 401:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '^', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 403:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '|', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 404:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '|', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 405:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '|', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 406:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '|', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 408:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, AND_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 409:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, AND_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 411:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, OR_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 412:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, OR_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 414:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 415:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 416:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 417:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 418:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 419:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 420:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 421:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 422:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 423:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 424:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 425:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 426:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 427:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 428:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 429:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 431:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, yyvsp[(2) - (3)].i, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 432:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, yyvsp[(2) - (3)].i, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 433:
{
Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "l-value expected\n", (((void *)0))));
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, yyvsp[(2) - (3)].i, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 434:
{
Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "l-value expected\n", (((void *)0))));
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, yyvsp[(2) - (3)].i, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 435:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, yyvsp[(2) - (3)].i, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 436:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, yyvsp[(2) - (3)].i, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 437:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, yyvsp[(2) - (3)].i, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 438:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, yyvsp[(2) - (3)].i, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 439:
{
yyval.i = '=';
;
}
break;
case 440:
{
yyval.i = MUL_ASSIGN;
;
}
break;
case 441:
{
yyval.i = DIV_ASSIGN;
;
}
break;
case 442:
{
yyval.i = MOD_ASSIGN;
;
}
break;
case 443:
{
yyval.i = ADD_ASSIGN;
;
}
break;
case 444:
{
yyval.i = SUB_ASSIGN;
;
}
break;
case 445:
{
yyval.i = LEFT_ASSIGN;
;
}
break;
case 446:
{
yyval.i = RIGHT_ASSIGN;
;
}
break;
case 447:
{
yyval.i = AND_ASSIGN;
;
}
break;
case 448:
{
yyval.i = XOR_ASSIGN;
;
}
break;
case 449:
{
yyval.i = OR_ASSIGN;
;
}
break;
case 450:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].exp);
;
}
break;
case 451:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].exp);
;
}
break;
case 452:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].exp);
;
}
break;
case 454:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].exp);
;
}
break;
case 455:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].exp);
;
}
break;
case 456:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].exp);
;
}
break;
case 458:
{
yyval.exp = MkExpDummy();
yyval.exp->loc = (yyloc);
;
}
break;
case 460:
{
yyval.exp = MkExpInstance(yyvsp[(1) - (2)].instance);
yyval.exp->loc = (yyloc);
;
}
break;
case 461:
{
yyval.exp = MkExpPointer(yyvsp[(1) - (3)].exp, (((void *)0)));
yyval.exp->loc = (yyloc);
;
}
break;
case 462:
{
yyval.exp = MkExpPointer(yyvsp[(1) - (3)].exp, (((void *)0)));
yyval.exp->loc = (yyloc);
;
}
break;
case 463:
{
yyerror();
yyval.exp = MkExpCall(yyvsp[(1) - (3)].exp, yyvsp[(3) - (3)].list);
yyval.exp->__anon1.call.argLoc.start = (yylsp[(2) - (3)]).start;
yyval.exp->__anon1.call.argLoc.end = (yylsp[(3) - (3)]).end;
yyval.exp->loc = (yyloc);
yyval.exp->__anon1.call.argLoc.end.charPos++;
;
}
break;
case 464:
{
yyval.exp = MkExpCall(yyvsp[(1) - (3)].exp, yyvsp[(3) - (3)].list);
yyval.exp->__anon1.call.argLoc.start = (yylsp[(2) - (3)]).start;
yyval.exp->__anon1.call.argLoc.end = (yylsp[(3) - (3)]).end;
yyval.exp->loc = (yyloc);
yyval.exp->__anon1.call.argLoc.end.charPos++;
;
}
break;
case 465:
{
yyval.exp = MkExpMember(yyvsp[(1) - (3)].exp, (((void *)0)));
yyval.exp->loc = (yyloc);
;
}
break;
case 466:
{
yyval.exp = MkExpCall(yyvsp[(1) - (3)].exp, yyvsp[(3) - (3)].list);
yyval.exp->loc = (yyloc);
yyval.exp->__anon1.call.argLoc.start = (yylsp[(2) - (3)]).start;
yyval.exp->__anon1.call.argLoc.end = (yylsp[(3) - (3)]).end;
yyval.exp->__anon1.call.argLoc.end.charPos++;
;
}
break;
case 467:
{
yyval.exp = MkExpMember(yyvsp[(1) - (3)].exp, (((void *)0)));
yyval.exp->loc = (yyloc);
;
}
break;
case 468:
{
yyval.exp = MkExpOp((((void *)0)), INC_OP, yyvsp[(2) - (2)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 469:
{
yyval.exp = MkExpOp((((void *)0)), DEC_OP, yyvsp[(2) - (2)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 470:
{
yyval.exp = MkExpOp((((void *)0)), yyvsp[(1) - (2)].i, yyvsp[(2) - (2)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 471:
{
yyval.exp = MkExpOp((((void *)0)), yyvsp[(1) - (2)].i, yyvsp[(2) - (2)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 472:
{
yyval.exp = MkExpOp((((void *)0)), SIZEOF, yyvsp[(2) - (2)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 473:
{
yyval.exp = MkExpTypeSize(yyvsp[(3) - (5)].typeName);
yyval.exp->loc = (yyloc);
;
}
break;
case 474:
{
yyval.exp = MkExpClassSize(yyvsp[(4) - (6)].specifier);
yyval.exp->loc = (yyloc);
;
}
break;
case 475:
{
yyval.exp = MkExpClassSize(yyvsp[(4) - (6)].specifier);
yyval.exp->loc = (yyloc);
;
}
break;
case 476:
{
yyval.exp = MkExpOp((((void *)0)), ALIGNOF, yyvsp[(2) - (2)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 477:
{
yyval.exp = MkExpTypeAlign(yyvsp[(3) - (5)].typeName);
yyval.exp->loc = (yyloc);
;
}
break;
case 481:
{
yyval.exp = MkExpCast(yyvsp[(2) - (4)].typeName, yyvsp[(4) - (4)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 483:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '*', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 484:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '/', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 485:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '%', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 486:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '*', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 487:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '/', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 488:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '%', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 490:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '+', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 491:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '-', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 492:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '+', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 493:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '-', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 495:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, LEFT_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 496:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, RIGHT_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 497:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, LEFT_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 498:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, RIGHT_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 500:
{
if(yyvsp[(1) - (2)].exp->type == 0)
{
_DeclClass(yyvsp[(1) - (2)].exp->__anon1.__anon1.identifier->_class, yyvsp[(1) - (2)].exp->__anon1.__anon1.identifier->string);
skipErrors = 0;
FreeExpression(yyvsp[(1) - (2)].exp);
FreeExpression(yyvsp[(2) - (2)].exp);
(__extension__ ({
unsigned int (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode);
__internal_VirtualMethod = ((unsigned int (*)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode))__extension__ ({
struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = fileInput;
__internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__File->_vTbl;
})[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Seek]);
__internal_VirtualMethod ? __internal_VirtualMethod(fileInput, (yylsp[(1) - (2)]).start.pos, 0) : (unsigned int)1;
}));
resetScannerPos(&(yylsp[(1) - (2)]).start);
(yychar = (-2));
(yyvsp -= (1), yyssp -= (1), yylsp -= (1));
yystate = *yyssp;
do
{
if(yydebug)
yy_stack_print((yyss), (yyssp));
}while((0));
(yyvsp -= (1), yyssp -= (1), yylsp -= (1));
yystate = *yyssp;
do
{
if(yydebug)
yy_stack_print((yyss), (yyssp));
}while((0));
(yyerrstatus = 0);
goto yysetstate;
}
else
{
yyval.exp = MkExpOp(yyvsp[(1) - (2)].exp, '<', yyvsp[(2) - (2)].exp);
yyval.exp->loc = (yyloc);
}
skipErrors = 0;
;
}
break;
case 501:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '>', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 502:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, LE_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 503:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, GE_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 504:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '<', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 505:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '>', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 506:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, LE_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 507:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, GE_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 509:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, EQ_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 510:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, NE_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 511:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, EQ_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 512:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, NE_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 513:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, EQ_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 514:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, NE_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 515:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, EQ_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 516:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, NE_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 518:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '&', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 519:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '&', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 520:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '&', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 521:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '&', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 523:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '^', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 524:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '^', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 525:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '^', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 526:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '^', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 528:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '|', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 529:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '|', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 530:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '|', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 531:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, '|', yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 533:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, AND_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 534:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, AND_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 536:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, OR_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 537:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, OR_OP, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 539:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 540:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 541:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 542:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 543:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (4)].exp, yyvsp[(3) - (4)].list, MkExpDummy());
yyval.exp->loc = (yyloc);
yyval.exp->__anon1.cond.elseExp->loc = (yylsp[(3) - (4)]);
;
}
break;
case 544:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (4)].exp, yyvsp[(3) - (4)].list, MkExpDummy());
yyval.exp->loc = (yyloc);
yyval.exp->__anon1.cond.elseExp->loc = (yylsp[(3) - (4)]);
;
}
break;
case 545:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (4)].exp, yyvsp[(3) - (4)].list, MkExpDummy());
yyval.exp->loc = (yyloc);
yyval.exp->__anon1.cond.elseExp->loc = (yylsp[(3) - (4)]);
;
}
break;
case 546:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (4)].exp, yyvsp[(3) - (4)].list, MkExpDummy());
yyval.exp->loc = (yyloc);
yyval.exp->__anon1.cond.elseExp->loc = (yylsp[(3) - (4)]);
;
}
break;
case 547:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 548:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 549:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 550:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 551:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (4)].exp, yyvsp[(3) - (4)].list, MkExpDummy());
yyval.exp->loc = (yyloc);
yyval.exp->__anon1.cond.elseExp->loc = (yylsp[(3) - (4)]);
;
}
break;
case 552:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (4)].exp, yyvsp[(3) - (4)].list, MkExpDummy());
yyval.exp->loc = (yyloc);
yyval.exp->__anon1.cond.elseExp->loc = (yylsp[(3) - (4)]);
;
}
break;
case 553:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (4)].exp, yyvsp[(3) - (4)].list, MkExpDummy());
yyval.exp->loc = (yyloc);
yyval.exp->__anon1.cond.elseExp->loc = (yylsp[(3) - (4)]);
;
}
break;
case 554:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (4)].exp, yyvsp[(3) - (4)].list, MkExpDummy());
yyval.exp->loc = (yyloc);
yyval.exp->__anon1.cond.elseExp->loc = (yylsp[(3) - (4)]);
;
}
break;
case 555:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 556:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 557:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 558:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 559:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 560:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 561:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 562:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (5)].exp, yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 563:
{
yyerror();
yyval.exp = MkExpCondition(yyvsp[(1) - (3)].exp, MkListOne(MkExpDummy()), MkExpDummy());
yyval.exp->loc = (yyloc);
((struct Expression *)(*yyval.exp->__anon1.cond.exp).last)->loc = (yylsp[(2) - (3)]);
yyval.exp->__anon1.cond.elseExp->loc = (yylsp[(3) - (3)]);
;
}
break;
case 564:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (3)].exp, MkListOne(MkExpDummy()), MkExpDummy());
yyval.exp->loc = (yyloc);
((struct Expression *)(*yyval.exp->__anon1.cond.exp).last)->loc = (yylsp[(2) - (3)]);
yyval.exp->__anon1.cond.elseExp->loc = (yylsp[(3) - (3)]);
;
}
break;
case 565:
{
yyerror();
yyval.exp = MkExpCondition(yyvsp[(1) - (2)].exp, MkListOne(MkExpDummy()), MkExpDummy());
yyval.exp->loc = (yyloc);
((struct Expression *)(*yyval.exp->__anon1.cond.exp).last)->loc = (yylsp[(2) - (2)]);
yyval.exp->__anon1.cond.elseExp->loc = (yylsp[(2) - (2)]);
;
}
break;
case 566:
{
yyval.exp = MkExpCondition(yyvsp[(1) - (2)].exp, MkListOne(MkExpDummy()), MkExpDummy());
yyval.exp->loc = (yyloc);
((struct Expression *)(*yyval.exp->__anon1.cond.exp).last)->loc = (yylsp[(2) - (2)]);
yyval.exp->__anon1.cond.elseExp->loc = (yylsp[(2) - (2)]);
;
}
break;
case 568:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, yyvsp[(2) - (3)].i, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 569:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, yyvsp[(2) - (3)].i, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 570:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, yyvsp[(2) - (3)].i, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 571:
{
yyval.exp = MkExpOp(yyvsp[(1) - (3)].exp, yyvsp[(2) - (3)].i, yyvsp[(3) - (3)].exp);
yyval.exp->loc = (yyloc);
;
}
break;
case 572:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].exp);
;
}
break;
case 573:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (2)].exp);
;
}
break;
case 574:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].exp);
;
}
break;
case 575:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].exp);
;
}
break;
case 576:
{
yyerror();
yyval.list = yyvsp[(1) - (2)].list;
FreeList(yyvsp[(2) - (2)].list, (void *)(FreeExpression));
;
}
break;
case 577:
{
yyval.list = yyvsp[(1) - (2)].list;
FreeList(yyvsp[(2) - (2)].list, (void *)(FreeExpression));
;
}
break;
case 578:
{
yyval.list = yyvsp[(1) - (2)].list;
FreeList(yyvsp[(2) - (2)].list, (void *)(FreeExpression));
;
}
break;
case 579:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].exp);
;
}
break;
case 580:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (2)].exp);
;
}
break;
case 581:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].exp);
;
}
break;
case 582:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].exp);
;
}
break;
case 585:
{
yyval.specifier = MkSpecifier(TYPEDEF);
;
}
break;
case 586:
{
yyval.specifier = MkSpecifier(EXTERN);
;
}
break;
case 587:
{
yyval.specifier = MkSpecifier(STATIC);
;
}
break;
case 588:
{
yyval.specifier = MkSpecifier(THREAD);
;
}
break;
case 589:
{
yyval.specifier = MkSpecifier(AUTO);
;
}
break;
case 590:
{
yyval.specifier = MkSpecifier(REGISTER);
;
}
break;
case 591:
{
yyval.specifier = MkSpecifier(RESTRICT);
;
}
break;
case 592:
{
yyval.specifier = MkSpecifier(TYPEDEF);
structDeclMode = declMode = 0;
;
}
break;
case 593:
{
yyval.specifier = MkSpecifier(EXTERN);
;
}
break;
case 594:
{
yyval.specifier = MkSpecifier(STATIC);
structDeclMode = declMode = 3;
;
}
break;
case 595:
{
yyval.specifier = MkSpecifier(THREAD);
;
}
break;
case 596:
{
yyval.specifier = MkSpecifier(AUTO);
;
}
break;
case 597:
{
yyval.specifier = MkSpecifier(REGISTER);
;
}
break;
case 598:
{
yyval.specifier = MkSpecifier(RESTRICT);
;
}
break;
case 599:
{
yyval.enumerator = MkEnumerator(yyvsp[(1) - (1)].id, (((void *)0)));
;
}
break;
case 600:
{
yyval.enumerator = MkEnumerator(yyvsp[(1) - (3)].id, yyvsp[(3) - (3)].exp);
;
}
break;
case 601:
{
yyval.enumerator = MkEnumerator(yyvsp[(1) - (3)].id, yyvsp[(3) - (3)].exp);
;
}
break;
case 602:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].enumerator);
;
}
break;
case 603:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].enumerator);
;
}
break;
case 605:
{
memberAccessStack[++defaultMemberAccess] = 1;
;
}
break;
case 606:
{
yyval.specifier = MkEnum(yyvsp[(2) - (2)].id, (((void *)0)));
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 607:
{
yyval.specifier = MkEnum(MkIdentifier(yyvsp[(2) - (2)].specifier->__anon1.__anon1.name), (((void *)0)));
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 608:
{
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
yyval.specifier = yyvsp[(1) - (2)].specifier;
;
}
break;
case 609:
{
yyval.specifier = MkEnum(yyvsp[(2) - (4)].id, (((void *)0)));
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 610:
{
yyval.specifier = MkEnum(MkIdentifier(yyvsp[(2) - (4)].specifier->__anon1.__anon1.name), (((void *)0)));
FreeSpecifier(yyvsp[(2) - (4)].specifier);
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 611:
{
yyval.specifier = MkEnum((((void *)0)), yyvsp[(3) - (3)].list);
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 612:
{
yyval.specifier = MkEnum((((void *)0)), (((void *)0)));
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 613:
{
yyval.specifier = MkEnum(yyvsp[(2) - (4)].id, yyvsp[(4) - (4)].list);
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 614:
{
yyval.specifier = MkEnum(yyvsp[(2) - (5)].id, yyvsp[(4) - (5)].list);
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 615:
{
yyval.specifier = MkEnum(yyvsp[(2) - (4)].id, (((void *)0)));
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 616:
{
yyval.specifier = MkEnum(yyvsp[(2) - (6)].id, yyvsp[(4) - (6)].list);
yyval.specifier->loc = (yyloc);
yyval.specifier->__anon1.__anon2.definitions = yyvsp[(6) - (6)].list;
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 617:
{
yyval.specifier = MkEnum(yyvsp[(2) - (6)].id, yyvsp[(4) - (6)].list);
yyval.specifier->loc = (yyloc);
yyval.specifier->__anon1.__anon2.definitions = yyvsp[(6) - (6)].list;
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 618:
{
yyval.specifier = MkEnum(MkIdentifier(yyvsp[(2) - (4)].specifier->__anon1.__anon1.name), yyvsp[(4) - (4)].list);
yyval.specifier->loc = (yyloc);
FreeSpecifier(yyvsp[(2) - (4)].specifier);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 619:
{
yyval.specifier = MkEnum(MkIdentifier(yyvsp[(2) - (5)].specifier->__anon1.__anon1.name), yyvsp[(4) - (5)].list);
yyval.specifier->loc = (yyloc);
FreeSpecifier(yyvsp[(2) - (5)].specifier);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 620:
{
yyval.specifier = MkEnum(MkIdentifier(yyvsp[(2) - (4)].specifier->__anon1.__anon1.name), (((void *)0)));
yyval.specifier->loc = (yyloc);
FreeSpecifier(yyvsp[(2) - (4)].specifier);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 621:
{
yyval.specifier = MkEnum(MkIdentifier(yyvsp[(2) - (6)].specifier->__anon1.__anon1.name), yyvsp[(4) - (6)].list);
yyval.specifier->loc = (yyloc);
yyval.specifier->__anon1.__anon2.definitions = yyvsp[(6) - (6)].list;
FreeSpecifier(yyvsp[(2) - (6)].specifier);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 622:
{
yyval.specifier = MkEnum(MkIdentifier(yyvsp[(2) - (6)].specifier->__anon1.__anon1.name), yyvsp[(4) - (6)].list);
yyval.specifier->loc = (yyloc);
yyval.specifier->__anon1.__anon2.definitions = yyvsp[(6) - (6)].list;
FreeSpecifier(yyvsp[(2) - (6)].specifier);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 623:
{
yyval.specifier = MkEnum(yyvsp[(2) - (5)].id, yyvsp[(4) - (5)].list);
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 624:
{
yyval.specifier = MkEnum(MkIdentifier(yyvsp[(2) - (5)].specifier->__anon1.__anon1.name), yyvsp[(4) - (5)].list);
yyval.specifier->loc = (yyloc);
FreeSpecifier(yyvsp[(2) - (5)].specifier);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 625:
{
yyval.id = yyvsp[(2) - (2)].id;
if(declMode)
DeclClassAddNameSpace(yyvsp[(2) - (2)].id->_class, yyvsp[(2) - (2)].id->string);
;
}
break;
case 626:
{
yyval.id = MkIdentifier(yyvsp[(2) - (2)].specifier->__anon1.__anon1.name);
if(declMode)
DeclClass(yyvsp[(2) - (2)].specifier->__anon1.__anon1.nsSpec, yyvsp[(2) - (2)].specifier->__anon1.__anon1.name);
FreeSpecifier(yyvsp[(2) - (2)].specifier);
;
}
break;
case 627:
{
yyval.specifier = yyvsp[(1) - (2)].specifier;
yyval.specifier->loc = (yyloc);
;
}
break;
case 628:
{
yyval.specifier = MkEnum(yyvsp[(1) - (5)].id, (((void *)0)));
yyval.specifier->__anon1.__anon2.baseSpecs = yyvsp[(3) - (5)].list;
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 629:
{
yyval.specifier = MkEnum(yyvsp[(1) - (3)].id, (((void *)0)));
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 630:
{
yyval.specifier = MkEnum(yyvsp[(1) - (5)].id, yyvsp[(5) - (5)].list);
yyval.specifier->__anon1.__anon2.baseSpecs = yyvsp[(3) - (5)].list;
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 631:
{
yyval.specifier = MkEnum(yyvsp[(1) - (6)].id, yyvsp[(5) - (6)].list);
yyval.specifier->__anon1.__anon2.baseSpecs = yyvsp[(3) - (6)].list;
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 632:
{
yyval.specifier = MkEnum(yyvsp[(1) - (5)].id, (((void *)0)));
yyval.specifier->__anon1.__anon2.baseSpecs = yyvsp[(3) - (5)].list;
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 633:
{
yyval.specifier = MkEnum(yyvsp[(1) - (7)].id, yyvsp[(5) - (7)].list);
yyval.specifier->__anon1.__anon2.baseSpecs = yyvsp[(3) - (7)].list;
yyval.specifier->__anon1.__anon2.definitions = yyvsp[(7) - (7)].list;
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 634:
{
yyval.specifier = MkEnum(yyvsp[(1) - (7)].id, yyvsp[(5) - (7)].list);
yyval.specifier->__anon1.__anon2.baseSpecs = yyvsp[(3) - (7)].list;
yyval.specifier->__anon1.__anon2.definitions = yyvsp[(7) - (7)].list;
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 635:
{
yyval.specifier = MkEnum(yyvsp[(1) - (8)].id, yyvsp[(5) - (8)].list);
yyval.specifier->__anon1.__anon2.baseSpecs = yyvsp[(3) - (8)].list;
yyval.specifier->__anon1.__anon2.definitions = yyvsp[(8) - (8)].list;
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 636:
{
yyval.specifier = MkEnum(yyvsp[(1) - (8)].id, yyvsp[(5) - (8)].list);
yyval.specifier->__anon1.__anon2.baseSpecs = yyvsp[(3) - (8)].list;
yyval.specifier->__anon1.__anon2.definitions = yyvsp[(8) - (8)].list;
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 637:
{
yyval.specifier = MkEnum(yyvsp[(1) - (7)].id, (((void *)0)));
yyval.specifier->__anon1.__anon2.baseSpecs = yyvsp[(3) - (7)].list;
yyval.specifier->__anon1.__anon2.definitions = yyvsp[(7) - (7)].list;
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 638:
{
yyval.specifier = MkEnum(yyvsp[(1) - (7)].id, (((void *)0)));
yyval.specifier->__anon1.__anon2.baseSpecs = yyvsp[(3) - (7)].list;
yyval.specifier->__anon1.__anon2.definitions = yyvsp[(7) - (7)].list;
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 639:
{
yyval.specifier = MkEnum((((void *)0)), yyvsp[(3) - (3)].list);
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 640:
{
yyval.specifier = MkEnum((((void *)0)), (((void *)0)));
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 641:
{
yyval.specifier = MkEnum(yyvsp[(1) - (3)].id, yyvsp[(3) - (3)].list);
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 642:
{
yyval.specifier = MkEnum(yyvsp[(1) - (4)].id, yyvsp[(3) - (4)].list);
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 643:
{
yyval.specifier = MkEnum(yyvsp[(1) - (3)].id, (((void *)0)));
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 644:
{
yyval.specifier = MkEnum(yyvsp[(1) - (5)].id, yyvsp[(3) - (5)].list);
yyval.specifier->__anon1.__anon2.definitions = yyvsp[(5) - (5)].list;
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 645:
{
yyval.specifier = MkEnum(yyvsp[(1) - (5)].id, yyvsp[(3) - (5)].list);
yyval.specifier->__anon1.__anon2.definitions = yyvsp[(5) - (5)].list;
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 646:
{
yyval.specifier = MkEnum(yyvsp[(1) - (6)].id, yyvsp[(5) - (6)].list);
yyval.specifier->__anon1.__anon2.baseSpecs = yyvsp[(3) - (6)].list;
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 647:
{
yyval.specifier = MkEnum(yyvsp[(1) - (7)].id, yyvsp[(5) - (7)].list);
yyval.specifier->__anon1.__anon2.baseSpecs = yyvsp[(3) - (7)].list;
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 648:
{
yyval.specifier = MkEnum(yyvsp[(1) - (6)].id, (((void *)0)));
yyval.specifier->__anon1.__anon2.baseSpecs = yyvsp[(3) - (6)].list;
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 649:
{
yyval.specifier = MkEnum(yyvsp[(1) - (4)].id, yyvsp[(3) - (4)].list);
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 654:
{
yyval.specifier = MkSpecifierExtended(yyvsp[(1) - (1)].extDecl);
;
}
break;
case 655:
{
yyval.specifier = MkSpecifier(CONST);
;
}
break;
case 656:
{
yyval.specifier = MkSpecifier(VOLATILE);
;
}
break;
case 657:
{
yyval.specifier = yyvsp[(1) - (1)].specifier;
;
}
break;
case 658:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 659:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 660:
{
yyval.specifier = MkSpecifier(VOID);
;
}
break;
case 661:
{
yyval.specifier = MkSpecifier(CHAR);
;
}
break;
case 662:
{
yyval.specifier = MkSpecifier(SHORT);
;
}
break;
case 663:
{
yyval.specifier = MkSpecifier(INT);
;
}
break;
case 664:
{
yyval.specifier = MkSpecifier(UINT);
;
}
break;
case 665:
{
yyval.specifier = MkSpecifier(INT64);
;
}
break;
case 666:
{
yyval.specifier = MkSpecifier(INT128);
;
}
break;
case 667:
{
yyval.specifier = MkSpecifier(VALIST);
;
}
break;
case 668:
{
yyval.specifier = MkSpecifier(LONG);
;
}
break;
case 669:
{
yyval.specifier = MkSpecifier(FLOAT);
;
}
break;
case 670:
{
yyval.specifier = MkSpecifier(DOUBLE);
;
}
break;
case 671:
{
yyval.specifier = MkSpecifier(SIGNED);
;
}
break;
case 672:
{
yyval.specifier = MkSpecifier(UNSIGNED);
;
}
break;
case 673:
{
yyval.specifier = MkSpecifier(EXTENSION);
;
}
break;
case 677:
{
yyval.specifier = MkSpecifierTypeOf(yyvsp[(3) - (4)].exp);
;
}
break;
case 678:
{
yyval.specifier = MkSpecifierSubClass(yyvsp[(3) - (4)].specifier);
;
}
break;
case 679:
{
_DeclClass(yyvsp[(3) - (4)].id->_class, yyvsp[(3) - (4)].id->string);
yyval.specifier = MkSpecifierSubClass(MkSpecifierName(yyvsp[(3) - (4)].id->string));
FreeIdentifier(yyvsp[(3) - (4)].id);
;
}
break;
case 680:
{
yyval.specifier = MkSpecifier(THISCLASS);
;
}
break;
case 681:
{
yyval.specifier = MkSpecifier(TYPED_OBJECT);
;
}
break;
case 682:
{
yyval.specifier = MkSpecifier(ANY_OBJECT);
;
}
break;
case 683:
{
yyval.specifier = MkSpecifier(_BOOL);
;
}
break;
case 684:
{
yyval.specifier = MkSpecifier(BOOL);
;
}
break;
case 685:
{
yyval.specifier = MkSpecifier(_COMPLEX);
;
}
break;
case 686:
{
yyval.specifier = MkSpecifier(_IMAGINARY);
;
}
break;
case 687:
{
yyval.specifier = MkSpecifier(VOID);
;
}
break;
case 688:
{
yyval.specifier = MkSpecifier(CHAR);
;
}
break;
case 689:
{
yyval.specifier = MkSpecifier(SHORT);
;
}
break;
case 690:
{
yyval.specifier = MkSpecifier(INT);
;
}
break;
case 691:
{
yyval.specifier = MkSpecifier(UINT);
;
}
break;
case 692:
{
yyval.specifier = MkSpecifier(INT64);
;
}
break;
case 693:
{
yyval.specifier = MkSpecifier(INT128);
;
}
break;
case 694:
{
yyval.specifier = MkSpecifier(VALIST);
;
}
break;
case 695:
{
yyval.specifier = MkSpecifier(LONG);
;
}
break;
case 696:
{
yyval.specifier = MkSpecifier(FLOAT);
;
}
break;
case 697:
{
yyval.specifier = MkSpecifier(DOUBLE);
;
}
break;
case 698:
{
yyval.specifier = MkSpecifier(SIGNED);
;
}
break;
case 699:
{
yyval.specifier = MkSpecifier(UNSIGNED);
;
}
break;
case 700:
{
yyval.specifier = MkSpecifier(EXTENSION);
;
}
break;
case 704:
{
yyval.specifier = MkSpecifier(_BOOL);
;
}
break;
case 705:
{
yyval.specifier = MkSpecifier(BOOL);
;
}
break;
case 706:
{
yyval.specifier = MkSpecifier(_COMPLEX);
;
}
break;
case 707:
{
yyval.specifier = MkSpecifier(_IMAGINARY);
;
}
break;
case 708:
{
yyval.specifier = MkSpecifierTypeOf(yyvsp[(3) - (4)].exp);
;
}
break;
case 709:
{
yyval.specifier = MkSpecifierSubClass(yyvsp[(3) - (4)].specifier);
;
}
break;
case 710:
{
_DeclClass(yyvsp[(3) - (4)].id->_class, yyvsp[(3) - (4)].id->string);
yyval.specifier = MkSpecifierSubClass(MkSpecifierName(yyvsp[(3) - (4)].id->string));
FreeIdentifier(yyvsp[(3) - (4)].id);
;
}
break;
case 711:
{
yyval.specifier = MkSpecifier(THISCLASS);
;
}
break;
case 712:
{
yyval.declarator = MkStructDeclarator(yyvsp[(1) - (1)].declarator, (((void *)0)));
yyval.declarator->loc = (yyloc);
;
}
break;
case 713:
{
yyval.declarator = MkStructDeclarator(yyvsp[(1) - (2)].declarator, (((void *)0)));
yyval.declarator->__anon1.structDecl.attrib = yyvsp[(2) - (2)].attrib;
yyval.declarator->loc = (yyloc);
;
}
break;
case 714:
{
yyval.declarator = MkStructDeclarator((((void *)0)), yyvsp[(2) - (2)].exp);
yyval.declarator->loc = (yyloc);
;
}
break;
case 715:
{
yyval.declarator = MkStructDeclarator(yyvsp[(1) - (3)].declarator, yyvsp[(3) - (3)].exp);
yyval.declarator->loc = (yyloc);
;
}
break;
case 716:
{
yyval.declarator = MkStructDeclarator(yyvsp[(1) - (5)].declarator, yyvsp[(3) - (5)].exp);
yyval.declarator->__anon1.structDecl.posExp = yyvsp[(5) - (5)].exp;
yyval.declarator->loc = (yyloc);
;
}
break;
case 717:
{
yyval.declarator = MkStructDeclarator((((void *)0)), yyvsp[(2) - (2)].exp);
yyval.declarator->loc = (yyloc);
;
}
break;
case 718:
{
yyval.declarator = MkStructDeclarator(yyvsp[(1) - (3)].declarator, yyvsp[(3) - (3)].exp);
yyval.declarator->loc = (yyloc);
;
}
break;
case 719:
{
yyval.declarator = MkStructDeclarator(yyvsp[(1) - (5)].declarator, yyvsp[(3) - (5)].exp);
yyval.declarator->__anon1.structDecl.posExp = yyvsp[(5) - (5)].exp;
yyval.declarator->loc = (yyloc);
;
}
break;
case 720:
{
yyval.declarator = MkStructDeclarator(yyvsp[(1) - (5)].declarator, yyvsp[(3) - (5)].exp);
yyval.declarator->__anon1.structDecl.posExp = yyvsp[(5) - (5)].exp;
yyval.declarator->loc = (yyloc);
;
}
break;
case 721:
{
yyval.declarator = MkStructDeclarator(yyvsp[(1) - (5)].declarator, yyvsp[(3) - (5)].exp);
yyval.declarator->__anon1.structDecl.posExp = yyvsp[(5) - (5)].exp;
yyval.declarator->loc = (yyloc);
;
}
break;
case 722:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].declarator);
;
}
break;
case 723:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].declarator);
;
}
break;
case 724:
{
yyval.specifier = MkStructOrUnion(yyvsp[(1) - (2)].specifierType, yyvsp[(2) - (2)].id, (((void *)0)));
yyval.specifier->__anon1.__anon2.addNameSpace = 1;
yyval.specifier->__anon1.__anon2.ctx = PushContext();
;
}
break;
case 725:
{
yyval.specifier = MkStructOrUnion(yyvsp[(1) - (2)].specifierType, MkIdentifier(yyvsp[(2) - (2)].specifier->__anon1.__anon1.name), (((void *)0)));
yyval.specifier->__anon1.__anon2.ctx = PushContext();
FreeSpecifier(yyvsp[(2) - (2)].specifier);
;
}
break;
case 726:
{
yyval.specifier = MkStructOrUnion(yyvsp[(1) - (3)].specifierType, yyvsp[(3) - (3)].id, (((void *)0)));
yyval.specifier->__anon1.__anon2.extDeclStruct = yyvsp[(2) - (3)].extDecl;
yyval.specifier->__anon1.__anon2.addNameSpace = 1;
yyval.specifier->__anon1.__anon2.ctx = PushContext();
;
}
break;
case 727:
{
yyval.specifier = MkStructOrUnion(yyvsp[(1) - (3)].specifierType, MkIdentifier(yyvsp[(3) - (3)].specifier->__anon1.__anon1.name), (((void *)0)));
yyval.specifier->__anon1.__anon2.extDeclStruct = yyvsp[(2) - (3)].extDecl;
yyval.specifier->__anon1.__anon2.ctx = PushContext();
FreeSpecifier(yyvsp[(3) - (3)].specifier);
;
}
break;
case 728:
{
yyval.specifier = yyvsp[(1) - (2)].specifier;
yyval.specifier->loc = (yyloc);
;
}
break;
case 729:
{
yyval.specifier = yyvsp[(1) - (3)].specifier;
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
PopContext(curContext);
;
}
break;
case 730:
{
yyval.specifier = MkStructOrUnion(yyvsp[(1) - (3)].specifierType, (((void *)0)), (((void *)0)));
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 731:
{
yyval.specifier = MkStructOrUnion(yyvsp[(1) - (4)].specifierType, (((void *)0)), (((void *)0)));
yyval.specifier->__anon1.__anon2.extDeclStruct = yyvsp[(2) - (4)].extDecl;
yyval.specifier->loc = (yyloc);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 732:
{
yyval.specifier = yyvsp[(1) - (3)].specifier;
AddStructDefinitions(yyvsp[(1) - (3)].specifier, yyvsp[(3) - (3)].list);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
PopContext(curContext);
;
}
break;
case 733:
{
yyval.specifier = yyvsp[(1) - (3)].specifier;
AddStructDefinitions(yyvsp[(1) - (3)].specifier, yyvsp[(3) - (3)].list);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
PopContext(curContext);
;
}
break;
case 734:
{
yyval.specifier = yyvsp[(1) - (3)].specifier;
if(defaultMemberAccess > -1)
defaultMemberAccess--;
PopContext(curContext);
;
}
break;
case 735:
{
yyval.specifier = MkStructOrUnion(yyvsp[(1) - (3)].specifierType, (((void *)0)), yyvsp[(3) - (3)].list);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 736:
{
yyval.specifier = MkStructOrUnion(yyvsp[(1) - (3)].specifierType, (((void *)0)), yyvsp[(3) - (3)].list);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 737:
{
yyval.specifier = MkStructOrUnion(yyvsp[(1) - (3)].specifierType, (((void *)0)), (((void *)0)));
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 738:
{
yyval.specifier = MkStructOrUnion(yyvsp[(1) - (4)].specifierType, (((void *)0)), yyvsp[(4) - (4)].list);
yyval.specifier->__anon1.__anon2.extDeclStruct = yyvsp[(2) - (4)].extDecl;
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 739:
{
yyval.specifier = MkStructOrUnion(yyvsp[(1) - (4)].specifierType, (((void *)0)), yyvsp[(4) - (4)].list);
yyval.specifier->__anon1.__anon2.extDeclStruct = yyvsp[(2) - (4)].extDecl;
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 740:
{
yyval.specifier = MkStructOrUnion(yyvsp[(1) - (4)].specifierType, (((void *)0)), (((void *)0)));
yyval.specifier->__anon1.__anon2.extDeclStruct = yyvsp[(2) - (4)].extDecl;
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 741:
{
yyval.specifier = yyvsp[(1) - (1)].specifier;
if(defaultMemberAccess > -1)
defaultMemberAccess--;
PopContext(curContext);
;
}
break;
case 742:
{
yyval.specifier = yyvsp[(1) - (1)].specifier;
if(declMode)
{
(yyvsp[(1) - (1)].specifier->__anon1.__anon2.addNameSpace ? DeclClassAddNameSpace : DeclClass)(yyvsp[(1) - (1)].specifier->__anon1.__anon2.id->_class, yyvsp[(1) - (1)].specifier->__anon1.__anon2.id->string);
}
;
}
break;
case 743:
{
struct Symbol * symbol = (yyvsp[(1) - (4)].specifier->__anon1.__anon2.addNameSpace ? DeclClassAddNameSpace : DeclClass)(yyvsp[(1) - (4)].specifier->__anon1.__anon2.id->_class, yyvsp[(1) - (4)].specifier->__anon1.__anon2.id->string);
yyval.specifier = yyvsp[(1) - (4)].specifier;
symbol->templateParams = yyvsp[(3) - (4)].list;
;
}
break;
case 744:
{
yyval.specifier = yyvsp[(1) - (3)].specifier;
yyval.specifier->__anon1.__anon2.baseSpecs = yyvsp[(3) - (3)].list;
SetupBaseSpecs((((void *)0)), yyvsp[(3) - (3)].list);
;
}
break;
case 745:
{
yyval.specifier = yyvsp[(1) - (2)].specifier;
yyval.specifier->loc = (yyloc);
;
}
break;
case 746:
{
yyval.specifier = yyvsp[(1) - (3)].specifier;
if(defaultMemberAccess > -1)
defaultMemberAccess--;
PopContext(curContext);
;
}
break;
case 747:
{
yyval.specifier = yyvsp[(1) - (3)].specifier;
if(defaultMemberAccess > -1)
defaultMemberAccess--;
PopContext(curContext);
;
}
break;
case 748:
{
yyval.specifier = MkStructOrUnion(yyvsp[(1) - (3)].specifierType, (((void *)0)), (((void *)0)));
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 749:
{
yyval.specifier = yyvsp[(1) - (3)].specifier;
yyval.specifier->__anon1.__anon2.definitions = yyvsp[(3) - (3)].list;
if(defaultMemberAccess > -1)
defaultMemberAccess--;
PopContext(curContext);
;
}
break;
case 750:
{
yyval.specifier = yyvsp[(1) - (3)].specifier;
yyval.specifier->__anon1.__anon2.definitions = yyvsp[(3) - (3)].list;
if(defaultMemberAccess > -1)
defaultMemberAccess--;
PopContext(curContext);
;
}
break;
case 751:
{
yyval.specifier = yyvsp[(1) - (3)].specifier;
if(defaultMemberAccess > -1)
defaultMemberAccess--;
PopContext(curContext);
;
}
break;
case 752:
{
PopContext(curContext);
if(!declMode)
{
yyval.specifier = MkStructOrUnion(yyvsp[(1) - (3)].specifier->type, yyvsp[(1) - (3)].specifier->__anon1.__anon2.id, yyvsp[(3) - (3)].list);
yyvsp[(1) - (3)].specifier->__anon1.__anon2.id = (((void *)0));
FreeSpecifier(yyvsp[(1) - (3)].specifier);
}
else
yyval.specifier->__anon1.__anon2.definitions = yyvsp[(3) - (3)].list;
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 753:
{
PopContext(curContext);
if(!declMode)
{
yyval.specifier = MkStructOrUnion(yyvsp[(1) - (3)].specifier->type, yyvsp[(1) - (3)].specifier->__anon1.__anon2.id, yyvsp[(3) - (3)].list);
yyvsp[(1) - (3)].specifier->__anon1.__anon2.id = (((void *)0));
FreeSpecifier(yyvsp[(1) - (3)].specifier);
}
else
yyval.specifier->__anon1.__anon2.definitions = yyvsp[(3) - (3)].list;
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 754:
{
yyval.specifier = yyvsp[(1) - (3)].specifier;
if(defaultMemberAccess > -1)
defaultMemberAccess--;
PopContext(curContext);
;
}
break;
case 755:
{
yyval.specifier = MkStructOrUnion(yyvsp[(1) - (3)].specifierType, (((void *)0)), yyvsp[(3) - (3)].list);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 756:
{
yyval.specifier = MkStructOrUnion(yyvsp[(1) - (3)].specifierType, (((void *)0)), yyvsp[(3) - (3)].list);
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 757:
{
yyval.specifier = MkStructOrUnion(yyvsp[(1) - (3)].specifierType, (((void *)0)), (((void *)0)));
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 758:
{
yyval.specifierType = 3;
memberAccessStack[++defaultMemberAccess] = 1;
;
}
break;
case 759:
{
yyval.specifierType = 4;
memberAccessStack[++defaultMemberAccess] = 1;
;
}
break;
case 760:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 761:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 762:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 763:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 764:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 765:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 766:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 767:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 768:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 769:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 770:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 771:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 772:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 773:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 774:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 775:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 776:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 777:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 778:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 779:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 780:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 781:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 782:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 783:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 784:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 785:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 786:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 787:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 788:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 789:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 790:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 791:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 792:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 793:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 794:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 795:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 796:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 797:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 798:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 799:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 800:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 801:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 802:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 803:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 804:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 805:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 806:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 807:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 808:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 809:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 810:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 811:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 812:
{
yyval.list = MkList();
ListAdd(yyval.list, MkSpecifier(PRIVATE));
;
}
break;
case 813:
{
yyval.list = MkList();
ListAdd(yyval.list, MkSpecifier(PUBLIC));
;
}
break;
case 814:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 815:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 816:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 817:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 818:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 819:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 820:
{
_DeclClass(yyvsp[(1) - (1)].id->_class, yyvsp[(1) - (1)].id->string);
yyval.list = MkListOne(MkSpecifierName(yyvsp[(1) - (1)].id->string));
FreeIdentifier(yyvsp[(1) - (1)].id);
;
}
break;
case 821:
{
yyval.list = yyvsp[(1) - (2)].list;
_DeclClass(yyvsp[(2) - (2)].id->_class, yyvsp[(2) - (2)].id->string);
ListAdd(yyvsp[(1) - (2)].list, MkSpecifierName(yyvsp[(2) - (2)].id->string));
FreeIdentifier(yyvsp[(2) - (2)].id);
;
}
break;
case 822:
{
_DeclClass(yyvsp[(1) - (4)].id->_class, yyvsp[(1) - (4)].id->string);
yyval.list = MkList();
ListAdd(yyval.list, MkSpecifierNameArgs(yyvsp[(1) - (4)].id->string, yyvsp[(3) - (4)].list));
FreeIdentifier(yyvsp[(1) - (4)].id);
;
}
break;
case 823:
{
yyval.list = yyvsp[(1) - (5)].list;
_DeclClass(yyvsp[(2) - (5)].id->_class, yyvsp[(2) - (5)].id->string);
ListAdd(yyvsp[(1) - (5)].list, MkSpecifierNameArgs(yyvsp[(2) - (5)].id->string, yyvsp[(4) - (5)].list));
FreeIdentifier(yyvsp[(2) - (5)].id);
;
}
break;
case 825:
{
yyval.list = MkListOne(MkStructOrUnion(yyvsp[(1) - (1)].specifierType, (((void *)0)), (((void *)0))));
if(defaultMemberAccess > -1)
defaultMemberAccess--;
;
}
break;
case 826:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 827:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 828:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 829:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 830:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 831:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 832:
{
yyval.list = MkList();
ListAdd(yyval.list, MkSpecifierName(yyvsp[(1) - (1)].id->string));
FreeIdentifier(yyvsp[(1) - (1)].id);
}
break;
case 833:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, MkSpecifierName(yyvsp[(2) - (2)].id->string));
FreeIdentifier(yyvsp[(2) - (2)].id);
}
break;
case 834:
{
_DeclClass(yyvsp[(1) - (4)].id->_class, yyvsp[(1) - (4)].id->string);
yyval.list = MkList();
ListAdd(yyval.list, MkSpecifierNameArgs(yyvsp[(1) - (4)].id->string, yyvsp[(3) - (4)].list));
FreeIdentifier(yyvsp[(1) - (4)].id);
;
}
break;
case 835:
{
_DeclClass(yyvsp[(2) - (5)].id->_class, yyvsp[(2) - (5)].id->string);
ListAdd(yyvsp[(1) - (5)].list, MkSpecifierNameArgs(yyvsp[(2) - (5)].id->string, yyvsp[(4) - (5)].list));
FreeIdentifier(yyvsp[(2) - (5)].id);
;
}
break;
case 836:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 837:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 838:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 839:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 840:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 841:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 842:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 843:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 844:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 845:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 846:
{
yyval.list = MkList();
ListAdd(yyval.list, MkSpecifierName(yyvsp[(1) - (1)].id->string));
FreeIdentifier(yyvsp[(1) - (1)].id);
}
break;
case 847:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, MkSpecifierName(yyvsp[(2) - (2)].id->string));
FreeIdentifier(yyvsp[(2) - (2)].id);
}
break;
case 848:
{
_DeclClass(yyvsp[(1) - (4)].id->_class, yyvsp[(1) - (4)].id->string);
yyval.list = MkList();
ListAdd(yyval.list, MkSpecifierNameArgs(yyvsp[(1) - (4)].id->string, yyvsp[(3) - (4)].list));
FreeIdentifier(yyvsp[(1) - (4)].id);
;
}
break;
case 849:
{
_DeclClass(yyvsp[(2) - (5)].id->_class, yyvsp[(2) - (5)].id->string);
ListAdd(yyvsp[(1) - (5)].list, MkSpecifierNameArgs(yyvsp[(2) - (5)].id->string, yyvsp[(4) - (5)].list));
FreeIdentifier(yyvsp[(2) - (5)].id);
;
}
break;
case 850:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 851:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 852:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 853:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 854:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 855:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 856:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 857:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 858:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].specifier);
;
}
break;
case 859:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].specifier);
;
}
break;
case 860:
{
yyval.list = MkList();
ListAdd(yyval.list, MkSpecifierName(yyvsp[(1) - (1)].id->string));
FreeIdentifier(yyvsp[(1) - (1)].id);
}
break;
case 861:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, MkSpecifierName(yyvsp[(2) - (2)].id->string));
FreeIdentifier(yyvsp[(2) - (2)].id);
}
break;
case 862:
{
_DeclClass(yyvsp[(1) - (4)].id->_class, yyvsp[(1) - (4)].id->string);
yyval.list = MkList();
ListAdd(yyval.list, MkSpecifierNameArgs(yyvsp[(1) - (4)].id->string, yyvsp[(3) - (4)].list));
FreeIdentifier(yyvsp[(1) - (4)].id);
;
}
break;
case 863:
{
_DeclClass(yyvsp[(2) - (5)].id->_class, yyvsp[(2) - (5)].id->string);
ListAdd(yyvsp[(1) - (5)].list, MkSpecifierNameArgs(yyvsp[(2) - (5)].id->string, yyvsp[(4) - (5)].list));
FreeIdentifier(yyvsp[(2) - (5)].id);
;
}
break;
case 864:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, (((void *)0)));
;
}
break;
case 865:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, (((void *)0)));
;
}
break;
case 866:
{
yyval.list = MkList();
ListAdd(yyval.list, MkTypeName((((void *)0)), MkDeclaratorIdentifier(yyvsp[(1) - (1)].id)));
;
}
break;
case 867:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, MkTypeName((((void *)0)), MkDeclaratorIdentifier(yyvsp[(3) - (3)].id)));
;
}
break;
case 868:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, MkTypeName((((void *)0)), MkDeclaratorIdentifier(yyvsp[(3) - (3)].id)));
;
}
break;
case 869:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, MkTypeName((((void *)0)), MkDeclaratorIdentifier(yyvsp[(3) - (3)].id)));
;
}
break;
case 870:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, MkTypeName((((void *)0)), MkDeclaratorIdentifier(yyvsp[(3) - (3)].id)));
;
}
break;
case 872:
{
char * colon = yyvsp[(1) - (1)].specifier->__anon1.__anon1.name ? __ecereNameSpace__ecere__sys__RSearchString(yyvsp[(1) - (1)].specifier->__anon1.__anon1.name, "::", strlen(yyvsp[(1) - (1)].specifier->__anon1.__anon1.name), 1, 0) : (((void *)0));
char * s = colon ? colon + 2 : yyvsp[(1) - (1)].specifier->__anon1.__anon1.name;
yyval.declarator = MkDeclaratorIdentifier(MkIdentifier(s));
FreeSpecifier(yyvsp[(1) - (1)].specifier);
;
}
break;
case 873:
{
yyval.declarator = MkDeclaratorIdentifier(MkIdentifier("uint"));
;
}
break;
case 874:
{
struct Declarator * decl;
char * colon = __ecereNameSpace__ecere__sys__RSearchString(yyvsp[(1) - (4)].specifier->__anon1.__anon1.name, "::", strlen(yyvsp[(1) - (4)].specifier->__anon1.__anon1.name), 1, 0);
char * s = colon ? colon + 2 : yyvsp[(1) - (4)].specifier->__anon1.__anon1.name;
decl = MkDeclaratorIdentifier(MkIdentifier(s));
FreeSpecifier(yyvsp[(1) - (4)].specifier);
yyval.declarator = MkDeclaratorArray(decl, yyvsp[(3) - (4)].exp);
;
}
break;
case 875:
{
struct Declarator * decl;
char * colon = __ecereNameSpace__ecere__sys__RSearchString(yyvsp[(1) - (4)].specifier->__anon1.__anon1.name, "::", strlen(yyvsp[(1) - (4)].specifier->__anon1.__anon1.name), 1, 0);
char * s = colon ? colon + 2 : yyvsp[(1) - (4)].specifier->__anon1.__anon1.name;
decl = MkDeclaratorIdentifier(MkIdentifier(s));
FreeSpecifier(yyvsp[(1) - (4)].specifier);
yyval.declarator = MkDeclaratorArray(decl, yyvsp[(3) - (4)].exp);
;
}
break;
case 876:
{
struct Declarator * decl;
char * colon = __ecereNameSpace__ecere__sys__RSearchString(yyvsp[(1) - (4)].specifier->__anon1.__anon1.name, "::", strlen(yyvsp[(1) - (4)].specifier->__anon1.__anon1.name), 1, 0);
char * s = colon ? colon + 2 : yyvsp[(1) - (4)].specifier->__anon1.__anon1.name;
decl = MkDeclaratorIdentifier(MkIdentifier(s));
FreeSpecifier(yyvsp[(1) - (4)].specifier);
yyval.declarator = MkDeclaratorEnumArray(decl, yyvsp[(3) - (4)].specifier);
;
}
break;
case 877:
{
struct Declarator * decl;
char * colon = __ecereNameSpace__ecere__sys__RSearchString(yyvsp[(1) - (3)].specifier->__anon1.__anon1.name, "::", strlen(yyvsp[(1) - (3)].specifier->__anon1.__anon1.name), 1, 0);
char * s = colon ? colon + 2 : yyvsp[(1) - (3)].specifier->__anon1.__anon1.name;
decl = MkDeclaratorIdentifier(MkIdentifier(s));
FreeSpecifier(yyvsp[(1) - (3)].specifier);
yyval.declarator = MkDeclaratorEnumArray(decl, (((void *)0)));
;
}
break;
case 878:
{
yyval.declarator = MkDeclaratorArray(yyvsp[(1) - (4)].declarator, yyvsp[(3) - (4)].exp);
;
}
break;
case 879:
{
yyval.declarator = MkDeclaratorArray(yyvsp[(1) - (4)].declarator, yyvsp[(3) - (4)].exp);
;
}
break;
case 880:
{
yyval.declarator = MkDeclaratorEnumArray(yyvsp[(1) - (4)].declarator, yyvsp[(3) - (4)].specifier);
;
}
break;
case 881:
{
yyval.declarator = MkDeclaratorArray(yyvsp[(1) - (3)].declarator, (((void *)0)));
;
}
break;
case 882:
{
yyval.declarator = MkDeclaratorIdentifier(yyvsp[(1) - (1)].id);
;
}
break;
case 883:
{
yyval.declarator = MkDeclaratorBrackets(yyvsp[(2) - (3)].declarator);
;
}
break;
case 884:
{
yyval.declarator = MkDeclaratorBrackets(MkDeclaratorExtended(yyvsp[(2) - (4)].extDecl, yyvsp[(3) - (4)].declarator));
;
}
break;
case 885:
{
yyval.declarator = MkDeclaratorBrackets(yyvsp[(2) - (3)].declarator);
;
}
break;
case 886:
{
yyval.declarator = MkDeclaratorBrackets(MkDeclaratorExtended(yyvsp[(2) - (4)].extDecl, yyvsp[(3) - (4)].declarator));
;
}
break;
case 887:
{
yyval.declarator = MkDeclaratorArray(yyvsp[(1) - (4)].declarator, yyvsp[(3) - (4)].exp);
;
}
break;
case 888:
{
yyval.declarator = MkDeclaratorArray(yyvsp[(1) - (4)].declarator, yyvsp[(3) - (4)].exp);
;
}
break;
case 889:
{
yyval.declarator = MkDeclaratorEnumArray(yyvsp[(1) - (4)].declarator, yyvsp[(3) - (4)].specifier);
;
}
break;
case 890:
{
yyval.declarator = MkDeclaratorArray(yyvsp[(1) - (3)].declarator, (((void *)0)));
;
}
break;
case 892:
{
yyval.declarator = MkDeclaratorFunction(yyvsp[(1) - (3)].declarator, yyvsp[(2) - (3)].list);
;
}
break;
case 893:
{
yyval.declarator = MkDeclaratorFunction(yyvsp[(1) - (3)].declarator, yyvsp[(2) - (3)].list);
;
}
break;
case 894:
{
yyval.declarator = MkDeclaratorFunction(yyvsp[(1) - (3)].declarator, yyvsp[(2) - (3)].list);
;
}
break;
case 895:
{
yyval.declarator = MkDeclaratorFunction(yyvsp[(1) - (3)].declarator, yyvsp[(2) - (3)].list);
;
}
break;
case 896:
{
yyval.declarator = MkDeclaratorFunction(yyvsp[(1) - (2)].declarator, (((void *)0)));
;
}
break;
case 897:
{
yyval.declarator = MkDeclaratorFunction(yyvsp[(1) - (2)].declarator, yyvsp[(2) - (2)].list);
(__extension__ ({
unsigned int (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode);
__internal_VirtualMethod = ((unsigned int (*)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode))__extension__ ({
struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = fileInput;
__internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__File->_vTbl;
})[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Seek]);
__internal_VirtualMethod ? __internal_VirtualMethod(fileInput, (yylsp[(1) - (2)]).end.pos, 0) : (unsigned int)1;
}));
(yychar = (-2));
resetScannerPos(&(yylsp[(1) - (2)]).end);
(yyloc.start = (yylsp[(1) - (2)]).start);
(yyloc.end = (yylsp[(1) - (2)]).end);
;
}
break;
case 898:
{
yyval.declarator = MkDeclaratorFunction(yyvsp[(1) - (2)].declarator, (((void *)0)));
(__extension__ ({
unsigned int (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode);
__internal_VirtualMethod = ((unsigned int (*)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode))__extension__ ({
struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = fileInput;
__internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__File->_vTbl;
})[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Seek]);
__internal_VirtualMethod ? __internal_VirtualMethod(fileInput, (yylsp[(1) - (2)]).end.pos, 0) : (unsigned int)1;
}));
(yychar = (-2));
resetScannerPos(&(yylsp[(1) - (2)]).end);
(yyloc.start = (yylsp[(1) - (2)]).start);
(yyloc.end = (yylsp[(1) - (2)]).end);
;
}
break;
case 899:
{
yyval.declarator = MkDeclaratorFunction(yyvsp[(1) - (3)].declarator, yyvsp[(2) - (3)].list);
(__extension__ ({
unsigned int (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode);
__internal_VirtualMethod = ((unsigned int (*)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode))__extension__ ({
struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = fileInput;
__internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__File->_vTbl;
})[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Seek]);
__internal_VirtualMethod ? __internal_VirtualMethod(fileInput, (yylsp[(1) - (3)]).end.pos, 0) : (unsigned int)1;
}));
(yychar = (-2));
resetScannerPos(&(yylsp[(1) - (3)]).end);
(yyloc.start = (yylsp[(1) - (3)]).start);
(yyloc.end = (yylsp[(1) - (3)]).end);
;
}
break;
case 900:
{
yyval.declarator = MkDeclaratorFunction(yyvsp[(1) - (4)].declarator, (((void *)0)));
(__extension__ ({
unsigned int (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode);
__internal_VirtualMethod = ((unsigned int (*)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode))__extension__ ({
struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = fileInput;
__internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__File->_vTbl;
})[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Seek]);
__internal_VirtualMethod ? __internal_VirtualMethod(fileInput, (yylsp[(1) - (4)]).end.pos, 0) : (unsigned int)1;
}));
(yychar = (-2));
resetScannerPos(&(yylsp[(1) - (4)]).end);
(yyloc.start = (yylsp[(1) - (4)]).start);
(yyloc.end = (yylsp[(1) - (4)]).end);
FreeList(yyvsp[(2) - (4)].list, (void *)(FreeSpecifier));
FreeIdentifier(yyvsp[(3) - (4)].id);
;
}
break;
case 904:
{
yyval.declarator = MkDeclaratorFunction(yyvsp[(1) - (3)].declarator, yyvsp[(2) - (3)].list);
;
}
break;
case 905:
{
yyval.declarator = MkDeclaratorFunction(yyvsp[(1) - (3)].declarator, yyvsp[(2) - (3)].list);
;
}
break;
case 906:
{
yyval.declarator = MkDeclaratorFunction(yyvsp[(1) - (3)].declarator, yyvsp[(2) - (3)].list);
;
}
break;
case 907:
{
yyval.declarator = MkDeclaratorFunction(yyvsp[(1) - (3)].declarator, yyvsp[(2) - (3)].list);
;
}
break;
case 908:
{
yyval.declarator = MkDeclaratorFunction(yyvsp[(1) - (2)].declarator, (((void *)0)));
;
}
break;
case 909:
{
yyval.declarator = MkDeclaratorFunction(yyvsp[(1) - (2)].declarator, yyvsp[(2) - (2)].list);
(__extension__ ({
unsigned int (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode);
__internal_VirtualMethod = ((unsigned int (*)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode))__extension__ ({
struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = fileInput;
__internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__File->_vTbl;
})[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Seek]);
__internal_VirtualMethod ? __internal_VirtualMethod(fileInput, (yylsp[(1) - (2)]).end.pos, 0) : (unsigned int)1;
}));
(yychar = (-2));
resetScannerPos(&(yylsp[(1) - (2)]).end);
(yyloc.start = (yylsp[(1) - (2)]).start);
(yyloc.end = (yylsp[(1) - (2)]).end);
;
}
break;
case 910:
{
yyval.declarator = MkDeclaratorFunction(yyvsp[(1) - (2)].declarator, (((void *)0)));
(__extension__ ({
unsigned int (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode);
__internal_VirtualMethod = ((unsigned int (*)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode))__extension__ ({
struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = fileInput;
__internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__File->_vTbl;
})[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Seek]);
__internal_VirtualMethod ? __internal_VirtualMethod(fileInput, (yylsp[(1) - (2)]).end.pos, 0) : (unsigned int)1;
}));
(yychar = (-2));
resetScannerPos(&(yylsp[(1) - (2)]).end);
(yyloc.start = (yylsp[(1) - (2)]).start);
(yyloc.end = (yylsp[(1) - (2)]).end);
;
}
break;
case 911:
{
yyval.declarator = MkDeclaratorFunction(yyvsp[(1) - (3)].declarator, yyvsp[(2) - (3)].list);
(__extension__ ({
unsigned int (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode);
__internal_VirtualMethod = ((unsigned int (*)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode))__extension__ ({
struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = fileInput;
__internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__File->_vTbl;
})[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Seek]);
__internal_VirtualMethod ? __internal_VirtualMethod(fileInput, (yylsp[(1) - (3)]).end.pos, 0) : (unsigned int)1;
}));
(yychar = (-2));
resetScannerPos(&(yylsp[(1) - (3)]).end);
(yyloc.start = (yylsp[(1) - (3)]).start);
(yyloc.end = (yylsp[(1) - (3)]).end);
;
}
break;
case 912:
{
yyval.declarator = MkDeclaratorFunction(yyvsp[(1) - (4)].declarator, (((void *)0)));
(__extension__ ({
unsigned int (* __internal_VirtualMethod)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode);
__internal_VirtualMethod = ((unsigned int (*)(struct __ecereNameSpace__ecere__com__Instance *, int pos, int mode))__extension__ ({
struct __ecereNameSpace__ecere__com__Instance * __internal_ClassInst = fileInput;
__internal_ClassInst ? __internal_ClassInst->_vTbl : __ecereClass___ecereNameSpace__ecere__sys__File->_vTbl;
})[__ecereVMethodID___ecereNameSpace__ecere__sys__File_Seek]);
__internal_VirtualMethod ? __internal_VirtualMethod(fileInput, (yylsp[(1) - (4)]).end.pos, 0) : (unsigned int)1;
}));
(yychar = (-2));
resetScannerPos(&(yylsp[(1) - (4)]).end);
(yyloc.start = (yylsp[(1) - (4)]).start);
(yyloc.end = (yylsp[(1) - (4)]).end);
FreeList(yyvsp[(2) - (4)].list, (void *)(FreeSpecifier));
FreeIdentifier(yyvsp[(3) - (4)].id);
;
}
break;
case 915:
{
yyval.extDecl = MkExtDeclString(__ecereNameSpace__ecere__sys__CopyString(yytext));
;
}
break;
case 916:
{
yyval.extDecl = MkExtDeclString(__ecereNameSpace__ecere__sys__CopyString(yytext));
;
}
break;
case 917:
{
yyval.extDecl = MkExtDeclAttrib(yyvsp[(1) - (1)].attrib);
;
}
break;
case 918:
{
char temp[1024];
strcpy(temp, "__asm__(");
strcat(temp, yyvsp[(3) - (4)].string);
strcat(temp, ")");
yyval.extDecl = MkExtDeclString(__ecereNameSpace__ecere__sys__CopyString(temp));
(__ecereNameSpace__ecere__com__eSystem_Delete(yyvsp[(3) - (4)].string), yyvsp[(3) - (4)].string = 0);
;
}
break;
case 919:
{
yyval.i = ATTRIB;
;
}
break;
case 920:
{
yyval.i = ATTRIB_DEP;
;
}
break;
case 921:
{
yyval.i = __ATTRIB;
;
}
break;
case 922:
{
yyval.string = __ecereNameSpace__ecere__sys__CopyString(yytext);
;
}
break;
case 923:
{
yyval.string = __ecereNameSpace__ecere__sys__CopyString(yytext);
;
}
break;
case 924:
{
yyval.string = __ecereNameSpace__ecere__sys__CopyString(yytext);
;
}
break;
case 925:
{
yyval.string = __ecereNameSpace__ecere__sys__CopyString(yytext);
;
}
break;
case 926:
{
yyval.string = __ecereNameSpace__ecere__sys__CopyString(yytext);
;
}
break;
case 927:
{
yyval.attribute = MkAttribute(yyvsp[(1) - (1)].string, (((void *)0)));
yyval.attribute->loc = (yyloc);
;
}
break;
case 928:
{
yyval.attribute = MkAttribute(yyvsp[(1) - (4)].string, MkExpBrackets(yyvsp[(3) - (4)].list));
yyval.attribute->loc = (yyloc);
;
}
break;
case 929:
{
yyval.list = MkListOne(yyvsp[(1) - (1)].attribute);
;
}
break;
case 930:
{
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].attribute);
yyval.list = yyvsp[(1) - (2)].list;
;
}
break;
case 931:
{
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].attribute);
yyval.list = yyvsp[(1) - (3)].list;
;
}
break;
case 932:
{
yyval.attrib = MkAttrib(yyvsp[(1) - (6)].i, yyvsp[(4) - (6)].list);
yyval.attrib->loc = (yyloc);
;
}
break;
case 933:
{
yyval.attrib = MkAttrib(yyvsp[(1) - (5)].i, (((void *)0)));
yyval.attrib->loc = (yyloc);
;
}
break;
case 934:
{
yyval.declarator = MkDeclaratorBrackets(yyvsp[(2) - (3)].declarator);
;
}
break;
case 935:
{
yyval.declarator = MkDeclaratorBrackets(MkDeclaratorExtended(yyvsp[(2) - (4)].extDecl, yyvsp[(3) - (4)].declarator));
;
}
break;
case 936:
{
yyval.declarator = MkDeclaratorArray((((void *)0)), (((void *)0)));
;
}
break;
case 937:
{
yyval.declarator = MkDeclaratorArray((((void *)0)), yyvsp[(2) - (3)].exp);
;
}
break;
case 938:
{
yyval.declarator = MkDeclaratorArray((((void *)0)), yyvsp[(2) - (3)].exp);
;
}
break;
case 939:
{
yyval.declarator = MkDeclaratorEnumArray((((void *)0)), yyvsp[(2) - (3)].specifier);
;
}
break;
case 940:
{
yyval.declarator = MkDeclaratorArray(yyvsp[(1) - (3)].declarator, (((void *)0)));
;
}
break;
case 941:
{
yyval.declarator = MkDeclaratorArray(yyvsp[(1) - (4)].declarator, yyvsp[(3) - (4)].exp);
;
}
break;
case 942:
{
yyval.declarator = MkDeclaratorEnumArray(yyvsp[(1) - (4)].declarator, yyvsp[(3) - (4)].specifier);
;
}
break;
case 943:
{
yyval.declarator = MkDeclaratorArray(yyvsp[(1) - (4)].declarator, yyvsp[(3) - (4)].exp);
;
}
break;
case 944:
{
yyval.declarator = MkDeclaratorFunction((((void *)0)), (((void *)0)));
;
}
break;
case 945:
{
yyval.declarator = MkDeclaratorFunction((((void *)0)), yyvsp[(2) - (3)].list);
;
}
break;
case 946:
{
yyval.declarator = MkDeclaratorFunction((((void *)0)), yyvsp[(2) - (3)].list);
;
}
break;
case 947:
{
yyval.declarator = MkDeclaratorFunction(yyvsp[(1) - (3)].declarator, (((void *)0)));
;
}
break;
case 948:
{
yyval.declarator = MkDeclaratorFunction(yyvsp[(1) - (4)].declarator, yyvsp[(3) - (4)].list);
;
}
break;
case 949:
{
yyval.declarator = MkDeclaratorFunction(yyvsp[(1) - (4)].declarator, yyvsp[(3) - (4)].list);
;
}
break;
case 950:
{
yyval.declarator = MkDeclaratorBrackets(yyvsp[(2) - (3)].declarator);
;
}
break;
case 951:
{
yyval.declarator = MkDeclaratorBrackets(MkDeclaratorExtended(yyvsp[(2) - (4)].extDecl, yyvsp[(3) - (4)].declarator));
;
}
break;
case 952:
{
yyval.declarator = MkDeclaratorFunction((((void *)0)), (((void *)0)));
;
}
break;
case 953:
{
yyval.declarator = MkDeclaratorFunction((((void *)0)), yyvsp[(2) - (3)].list);
;
}
break;
case 954:
{
yyval.declarator = MkDeclaratorFunction((((void *)0)), yyvsp[(2) - (3)].list);
;
}
break;
case 955:
{
yyval.declarator = MkDeclaratorFunction(yyvsp[(1) - (3)].declarator, (((void *)0)));
;
}
break;
case 956:
{
yyval.declarator = MkDeclaratorFunction(yyvsp[(1) - (4)].declarator, yyvsp[(3) - (4)].list);
;
}
break;
case 957:
{
yyval.declarator = MkDeclaratorFunction(yyvsp[(1) - (4)].declarator, yyvsp[(3) - (4)].list);
;
}
break;
case 958:
{
yyval.pointer = MkPointer((((void *)0)), (((void *)0)));
;
}
break;
case 959:
{
yyval.pointer = MkPointer(yyvsp[(2) - (2)].list, (((void *)0)));
;
}
break;
case 960:
{
yyval.pointer = MkPointer((((void *)0)), yyvsp[(2) - (2)].pointer);
;
}
break;
case 961:
{
yyval.pointer = MkPointer(yyvsp[(2) - (3)].list, yyvsp[(3) - (3)].pointer);
;
}
break;
case 962:
{
yyval.declarator = MkDeclaratorPointer(yyvsp[(1) - (1)].pointer, (((void *)0)));
;
}
break;
case 964:
{
yyval.declarator = MkDeclaratorPointer(yyvsp[(1) - (2)].pointer, yyvsp[(2) - (2)].declarator);
;
}
break;
case 965:
{
yyval.declarator = MkDeclaratorExtended(yyvsp[(1) - (2)].extDecl, MkDeclaratorPointer(yyvsp[(2) - (2)].pointer, (((void *)0))));
;
}
break;
case 966:
{
yyval.declarator = MkDeclaratorExtended(yyvsp[(1) - (3)].extDecl, MkDeclaratorPointer(yyvsp[(2) - (3)].pointer, yyvsp[(3) - (3)].declarator));
;
}
break;
case 967:
{
yyval.declarator = MkDeclaratorPointer(yyvsp[(1) - (1)].pointer, (((void *)0)));
;
}
break;
case 969:
{
yyval.declarator = MkDeclaratorPointer(yyvsp[(1) - (2)].pointer, yyvsp[(2) - (2)].declarator);
;
}
break;
case 970:
{
yyval.declarator = MkDeclaratorExtended(yyvsp[(1) - (2)].extDecl, MkDeclaratorPointer(yyvsp[(2) - (2)].pointer, (((void *)0))));
;
}
break;
case 971:
{
yyval.declarator = MkDeclaratorExtended(yyvsp[(1) - (3)].extDecl, MkDeclaratorPointer(yyvsp[(2) - (3)].pointer, yyvsp[(3) - (3)].declarator));
;
}
break;
case 973:
{
yyval.declarator = MkDeclaratorPointer(yyvsp[(1) - (2)].pointer, yyvsp[(2) - (2)].declarator);
;
}
break;
case 974:
{
yyval.declarator = MkDeclaratorExtended(yyvsp[(1) - (3)].extDecl, MkDeclaratorPointer(yyvsp[(2) - (3)].pointer, yyvsp[(3) - (3)].declarator));
;
}
break;
case 975:
{
yyval.declarator = MkDeclaratorExtendedEnd(yyvsp[(2) - (2)].extDecl, yyvsp[(1) - (2)].declarator);
;
}
break;
case 976:
{
yyval.declarator = MkDeclaratorExtendedEnd(yyvsp[(2) - (2)].extDecl, yyvsp[(1) - (2)].declarator);
;
}
break;
case 978:
{
yyval.declarator = MkDeclaratorPointer(yyvsp[(1) - (2)].pointer, yyvsp[(2) - (2)].declarator);
;
}
break;
case 979:
{
yyval.declarator = MkDeclaratorExtended(yyvsp[(1) - (3)].extDecl, MkDeclaratorPointer(yyvsp[(2) - (3)].pointer, yyvsp[(3) - (3)].declarator));
;
}
break;
case 980:
{
yyval.declarator = MkDeclaratorExtendedEnd(yyvsp[(2) - (2)].extDecl, yyvsp[(1) - (2)].declarator);
;
}
break;
case 982:
{
yyval.declarator = MkDeclaratorPointer(yyvsp[(1) - (2)].pointer, yyvsp[(2) - (2)].declarator);
;
}
break;
case 983:
{
yyval.declarator = MkDeclaratorExtended(yyvsp[(1) - (3)].extDecl, MkDeclaratorPointer(yyvsp[(2) - (3)].pointer, yyvsp[(3) - (3)].declarator));
;
}
break;
case 984:
{
yyval.declarator = MkDeclaratorPointer(yyvsp[(1) - (3)].pointer, MkDeclaratorExtended(yyvsp[(2) - (3)].extDecl, yyvsp[(3) - (3)].declarator));
;
}
break;
case 986:
{
yyval.declarator = MkDeclaratorPointer(yyvsp[(1) - (2)].pointer, yyvsp[(2) - (2)].declarator);
;
}
break;
case 987:
{
yyval.declarator = MkDeclaratorExtended(yyvsp[(1) - (3)].extDecl, MkDeclaratorPointer(yyvsp[(2) - (3)].pointer, yyvsp[(3) - (3)].declarator));
;
}
break;
case 988:
{
yyval.declarator = MkDeclaratorPointer(yyvsp[(1) - (3)].pointer, MkDeclaratorExtended(yyvsp[(2) - (3)].extDecl, yyvsp[(3) - (3)].declarator));
;
}
break;
case 990:
{
yyval.declarator = MkDeclaratorPointer(yyvsp[(1) - (2)].pointer, yyvsp[(2) - (2)].declarator);
;
}
break;
case 991:
{
yyval.declarator = MkDeclaratorExtended(yyvsp[(1) - (3)].extDecl, MkDeclaratorPointer(yyvsp[(2) - (3)].pointer, yyvsp[(3) - (3)].declarator));
;
}
break;
case 992:
{
yyval.declarator = MkDeclaratorPointer(yyvsp[(1) - (3)].pointer, MkDeclaratorExtended(yyvsp[(2) - (3)].extDecl, yyvsp[(3) - (3)].declarator));
;
}
break;
case 994:
{
yyval.declarator = MkDeclaratorPointer(yyvsp[(1) - (2)].pointer, yyvsp[(2) - (2)].declarator);
;
}
break;
case 995:
{
yyval.declarator = MkDeclaratorExtended(yyvsp[(1) - (3)].extDecl, MkDeclaratorPointer(yyvsp[(2) - (3)].pointer, yyvsp[(3) - (3)].declarator));
;
}
break;
case 996:
{
yyval.declarator = MkDeclaratorPointer(yyvsp[(1) - (3)].pointer, MkDeclaratorExtended(yyvsp[(2) - (3)].extDecl, yyvsp[(3) - (3)].declarator));
;
}
break;
case 998:
{
yyval.declarator = MkDeclaratorPointer(yyvsp[(1) - (2)].pointer, yyvsp[(2) - (2)].declarator);
;
}
break;
case 999:
{
yyval.declarator = MkDeclaratorExtended(yyvsp[(1) - (3)].extDecl, MkDeclaratorPointer(yyvsp[(2) - (3)].pointer, yyvsp[(3) - (3)].declarator));
;
}
break;
case 1000:
{
yyval.declarator = MkDeclaratorPointer(yyvsp[(1) - (3)].pointer, MkDeclaratorExtended(yyvsp[(2) - (3)].extDecl, yyvsp[(3) - (3)].declarator));
;
}
break;
case 1001:
{
yyval.initializer = MkInitializerAssignment(yyvsp[(1) - (1)].exp);
yyval.initializer->loc = (yyloc);
;
}
break;
case 1002:
{
yyval.initializer = MkInitializerList(yyvsp[(2) - (3)].list);
yyval.initializer->loc = (yyloc);
;
}
break;
case 1003:
{
Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "extra comma\n", (((void *)0))));
yyval.initializer = MkInitializerList(yyvsp[(2) - (4)].list);
yyval.initializer->loc = (yyloc);
{
struct Expression * exp = MkExpDummy();
struct Initializer * init = MkInitializerAssignment(exp);
init->loc = (yylsp[(3) - (4)]);
exp->loc = (yylsp[(3) - (4)]);
ListAdd(yyvsp[(2) - (4)].list, init);
}
;
}
break;
case 1004:
{
yyval.initializer = MkInitializerAssignment(yyvsp[(1) - (1)].exp);
yyval.initializer->loc = (yyloc);
;
}
break;
case 1005:
{
yyval.initializer = MkInitializerList(yyvsp[(2) - (4)].list);
yyval.initializer->loc = (yyloc);
;
}
break;
case 1006:
{
yyerror();
yyval.initializer = MkInitializerList(yyvsp[(2) - (2)].list);
yyval.initializer->loc = (yyloc);
;
}
break;
case 1007:
{
yyval.initializer = MkInitializerList(yyvsp[(2) - (5)].list);
yyval.initializer->loc = (yyloc);
{
struct Expression * exp = MkExpDummy();
struct Initializer * init = MkInitializerAssignment(exp);
init->loc = (yylsp[(3) - (5)]);
exp->loc = (yylsp[(3) - (5)]);
ListAdd(yyvsp[(2) - (5)].list, init);
}
;
}
break;
case 1008:
{
yyerror();
yyval.initializer = MkInitializerList(yyvsp[(2) - (3)].list);
yyval.initializer->loc = (yyloc);
{
struct Expression * exp = MkExpDummy();
struct Initializer * init = MkInitializerAssignment(exp);
init->loc = (yylsp[(3) - (3)]);
exp->loc = (yylsp[(3) - (3)]);
ListAdd(yyvsp[(2) - (3)].list, init);
}
;
}
break;
case 1009:
{
yyval.initializer = MkInitializerAssignment(yyvsp[(1) - (1)].exp);
yyval.initializer->loc = (yyloc);
;
}
break;
case 1010:
{
yyval.initializer = MkInitializerAssignment(yyvsp[(1) - (1)].exp);
yyval.initializer->loc = (yyloc);
;
}
break;
case 1011:
{
yyval.initializer = MkInitializerAssignment(yyvsp[(1) - (1)].exp);
yyval.initializer->loc = (yyloc);
;
}
break;
case 1012:
{
yyval.initializer = MkInitializerAssignment(yyvsp[(1) - (1)].exp);
yyval.initializer->loc = (yyloc);
;
}
break;
case 1013:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].initializer);
;
}
break;
case 1014:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].initializer);
;
}
break;
case 1015:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].initializer);
;
}
break;
case 1016:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].initializer);
;
}
break;
case 1017:
{
yyerror();
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].initializer);
;
}
break;
case 1018:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].initializer);
;
}
break;
case 1019:
{
yyval.initDeclarator = MkInitDeclarator(yyvsp[(1) - (1)].declarator, (((void *)0)));
yyval.initDeclarator->loc = (yyloc);
;
}
break;
case 1020:
{
yyval.initDeclarator = MkInitDeclarator(yyvsp[(1) - (1)].declarator, (((void *)0)));
yyval.initDeclarator->loc = (yyloc);
;
}
break;
case 1021:
{
yyval.initDeclarator = MkInitDeclarator(yyvsp[(1) - (3)].declarator, yyvsp[(3) - (3)].initializer);
yyval.initDeclarator->loc = (yyloc);
yyval.initDeclarator->initializer->loc.start = (yylsp[(2) - (3)]).end;
;
}
break;
case 1022:
{
yyval.initDeclarator = MkInitDeclarator(yyvsp[(1) - (2)].declarator, (((void *)0)));
yyval.initDeclarator->loc = (yyloc);
;
}
break;
case 1023:
{
yyval.initDeclarator = MkInitDeclarator(yyvsp[(1) - (3)].declarator, yyvsp[(3) - (3)].initializer);
yyval.initDeclarator->loc = (yyloc);
yyval.initDeclarator->initializer->loc.start = (yylsp[(2) - (3)]).end;
;
}
break;
case 1024:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].initDeclarator);
;
}
break;
case 1025:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].initDeclarator);
;
}
break;
case 1026:
{
yyval.list = MkList();
ListAdd(yyval.list, MkInitDeclarator(MkDeclaratorIdentifier(MkIdentifier("uint")), (((void *)0))));
ListAdd(yyval.list, yyvsp[(3) - (3)].initDeclarator);
;
}
break;
case 1027:
{
yyval.list = MkList();
ListAdd(yyval.list, MkInitDeclarator(MkDeclaratorIdentifier(MkIdentifier("int64")), (((void *)0))));
ListAdd(yyval.list, yyvsp[(3) - (3)].initDeclarator);
;
}
break;
case 1028:
{
yyval.list = MkList();
ListAdd(yyval.list, MkInitDeclarator(MkDeclaratorIdentifier(MkIdentifier("__int128")), (((void *)0))));
ListAdd(yyval.list, yyvsp[(3) - (3)].initDeclarator);
;
}
break;
case 1029:
{
char * colon = __ecereNameSpace__ecere__sys__RSearchString(yyvsp[(1) - (3)].specifier->__anon1.__anon1.name, "::", strlen(yyvsp[(1) - (3)].specifier->__anon1.__anon1.name), 1, 0);
char * s = colon ? colon + 2 : yyvsp[(1) - (3)].specifier->__anon1.__anon1.name;
yyval.list = MkList();
ListAdd(yyval.list, MkInitDeclarator(MkDeclaratorIdentifier(MkIdentifier(s)), (((void *)0))));
ListAdd(yyval.list, yyvsp[(3) - (3)].initDeclarator);
FreeSpecifier(yyvsp[(1) - (3)].specifier);
;
}
break;
case 1030:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].initDeclarator);
;
}
break;
case 1031:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].initDeclarator);
;
}
break;
case 1032:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (2)].initDeclarator);
;
}
break;
case 1033:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].initDeclarator);
;
}
break;
case 1034:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].initDeclarator);
;
}
break;
case 1035:
{
yyval.typeName = MkTypeName(yyvsp[(1) - (1)].list, (((void *)0)));
;
}
break;
case 1036:
{
yyval.typeName = MkTypeName(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].declarator);
;
}
break;
case 1037:
{
yyval.typeName = MkTypeName(yyvsp[(1) - (1)].list, (((void *)0)));
;
}
break;
case 1038:
{
yyval.typeName = MkTypeName(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].declarator);
;
}
break;
case 1039:
{
yyval.typeName = MkTypeName(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].declarator);
;
}
break;
case 1040:
{
yyval.typeName = MkTypeName(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].declarator);
;
}
break;
case 1041:
{
yyval.typeName = MkTypeName(yyvsp[(1) - (2)].list, MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), (((void *)0))));
;
}
break;
case 1042:
{
yyval.typeName = MkTypeName(yyvsp[(1) - (3)].list, MkDeclaratorPointer(MkPointer((((void *)0)), (((void *)0))), yyvsp[(3) - (3)].declarator));
;
}
break;
case 1043:
{
yyval.typeName = MkTypeNameGuessDecl(yyvsp[(1) - (1)].list, (((void *)0)));
;
}
break;
case 1044:
{
yyval.typeName = MkTypeName(MkListOne(MkSpecifier(CLASS)), (((void *)0)));
;
}
break;
case 1045:
{
yyval.typeName = MkTypeName(yyvsp[(1) - (3)].list, yyvsp[(2) - (3)].declarator);
;
}
break;
case 1046:
{
yyval.typeName = MkTypeName(yyvsp[(1) - (3)].list, yyvsp[(2) - (3)].declarator);
;
}
break;
case 1047:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].typeName);
;
}
break;
case 1048:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].typeName);
;
}
break;
case 1049:
{
yyval.list = yyvsp[(1) - (4)].list;
ListAdd(yyvsp[(1) - (4)].list, yyvsp[(4) - (4)].typeName);
;
}
break;
case 1050:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].typeName);
;
}
break;
case 1051:
{
yyval.list = yyvsp[(1) - (4)].list;
ListAdd(yyvsp[(1) - (4)].list, yyvsp[(4) - (4)].typeName);
;
}
break;
case 1052:
{
yyval.list = MkList();
ListAdd(yyval.list, MkTypeName(MkList(), (((void *)0))));
ListAdd(yyval.list, yyvsp[(3) - (3)].typeName);
;
}
break;
case 1053:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].typeName);
;
}
break;
case 1054:
{
yyval.list = yyvsp[(1) - (4)].list;
ListAdd(yyvsp[(1) - (4)].list, yyvsp[(4) - (4)].typeName);
;
}
break;
case 1055:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].typeName);
;
}
break;
case 1056:
{
yyval.list = yyvsp[(1) - (4)].list;
ListAdd(yyvsp[(1) - (4)].list, yyvsp[(4) - (4)].typeName);
;
}
break;
case 1057:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].typeName);
;
}
break;
case 1058:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].typeName);
;
}
break;
case 1059:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].typeName);
;
}
break;
case 1060:
{
yyval.list = yyvsp[(1) - (4)].list;
ListAdd(yyvsp[(1) - (4)].list, yyvsp[(4) - (4)].typeName);
;
}
break;
case 1061:
{
yyval.list = MkList();
ListAdd(yyval.list, MkTypeName(MkList(), (((void *)0))));
ListAdd(yyval.list, yyvsp[(3) - (3)].typeName);
;
}
break;
case 1062:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].typeName);
;
}
break;
case 1063:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].typeName);
;
}
break;
case 1064:
{
yyval.list = yyvsp[(1) - (4)].list;
ListAdd(yyvsp[(1) - (4)].list, yyvsp[(4) - (4)].typeName);
;
}
break;
case 1066:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, MkTypeName((((void *)0)), (((void *)0))));
;
}
break;
case 1067:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, MkTypeName((((void *)0)), (((void *)0))));
;
}
break;
case 1068:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, MkTypeName((((void *)0)), (((void *)0))));
;
}
break;
case 1069:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, MkTypeName((((void *)0)), (((void *)0))));
;
}
break;
case 1070:
{
yyval.list = MkList();
ListAdd(yyval.list, MkTypeName((((void *)0)), (((void *)0))));
;
}
break;
case 1072:
{
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, (((void *)0)));
;
}
break;
case 1075:
{
yyval.stmt = MkExpressionStmt((((void *)0)));
FreeAttrib(yyvsp[(1) - (1)].attrib);
;
}
break;
case 1077:
{
yyval.stmt = MkExpressionStmt((((void *)0)));
;
}
break;
case 1078:
{
yyval.stmt = MkExpressionStmt((((void *)0)));
;
}
break;
case 1079:
{
yyval.stmt = MkExpressionStmt(yyvsp[(1) - (2)].list);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1087:
{
yyval.stmt = yyvsp[(1) - (1)].stmt;
Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "syntax error\n", (((void *)0))));
;
}
break;
case 1088:
{
yyval.stmt = yyvsp[(1) - (1)].stmt;
Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "syntax error\n", (((void *)0))));
;
}
break;
case 1089:
{
yyval.stmt = yyvsp[(1) - (1)].stmt;
Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "syntax error\n", (((void *)0))));
;
}
break;
case 1090:
{
yyval.stmt = yyvsp[(1) - (1)].stmt;
Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "syntax error\n", (((void *)0))));
;
}
break;
case 1091:
{
yyval.stmt = yyvsp[(1) - (1)].stmt;
Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "syntax error\n", (((void *)0))));
;
}
break;
case 1092:
{
yyval.stmt = yyvsp[(1) - (2)].stmt;
Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "syntax error\n", (((void *)0))));
;
}
break;
case 1093:
{
yyval.stmt = MkExpressionStmt(yyvsp[(1) - (1)].list);
Compiler_Error(__ecereNameSpace__ecere__GetTranslatedString("ec", "syntax error\n", (((void *)0))));
yyval.stmt->loc = (yylsp[(1) - (1)]);
;
}
break;
case 1094:
{
yyval.asmField = MkAsmField(yyvsp[(1) - (1)].string, (((void *)0)), (((void *)0)));
yyval.asmField->loc = (yylsp[(1) - (1)]);
;
}
break;
case 1095:
{
yyval.asmField = MkAsmField(yyvsp[(1) - (4)].string, yyvsp[(3) - (4)].exp, (((void *)0)));
yyval.asmField->loc = (yyloc);
;
}
break;
case 1096:
{
yyval.asmField = MkAsmField(yyvsp[(4) - (7)].string, yyvsp[(6) - (7)].exp, yyvsp[(2) - (7)].id);
yyval.asmField->loc = (yyloc);
;
}
break;
case 1097:
{
yyval.list = MkListOne(yyvsp[(1) - (1)].asmField);
;
}
break;
case 1098:
{
ListAdd(yyval.list, yyvsp[(3) - (3)].asmField);
;
}
break;
case 1099:
{
yyval.list = (((void *)0));
;
}
break;
case 1100:
{
yyval.stmt = MkAsmStmt(yyvsp[(2) - (6)].specifier, yyvsp[(4) - (6)].string, (((void *)0)), (((void *)0)), (((void *)0)));
yyval.stmt->loc = (yyloc);
;
}
break;
case 1101:
{
yyval.stmt = MkAsmStmt(yyvsp[(2) - (8)].specifier, yyvsp[(4) - (8)].string, yyvsp[(6) - (8)].list, (((void *)0)), (((void *)0)));
yyval.stmt->loc = (yyloc);
;
}
break;
case 1102:
{
yyval.stmt = MkAsmStmt(yyvsp[(2) - (10)].specifier, yyvsp[(4) - (10)].string, yyvsp[(6) - (10)].list, yyvsp[(8) - (10)].list, (((void *)0)));
yyval.stmt->loc = (yyloc);
;
}
break;
case 1103:
{
yyval.stmt = MkAsmStmt(yyvsp[(2) - (12)].specifier, yyvsp[(4) - (12)].string, yyvsp[(6) - (12)].list, yyvsp[(8) - (12)].list, yyvsp[(10) - (12)].list);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1104:
{
yyval.stmt = MkAsmStmt(yyvsp[(2) - (8)].specifier, yyvsp[(4) - (8)].string, (((void *)0)), yyvsp[(6) - (8)].list, (((void *)0)));
yyval.stmt->loc = (yyloc);
;
}
break;
case 1105:
{
yyval.stmt = MkAsmStmt(yyvsp[(2) - (10)].specifier, yyvsp[(4) - (10)].string, (((void *)0)), yyvsp[(6) - (10)].list, yyvsp[(8) - (10)].list);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1106:
{
yyval.stmt = MkAsmStmt(yyvsp[(2) - (10)].specifier, yyvsp[(4) - (10)].string, yyvsp[(6) - (10)].list, (((void *)0)), yyvsp[(8) - (10)].list);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1107:
{
yyval.stmt = MkAsmStmt((((void *)0)), yyvsp[(3) - (5)].string, (((void *)0)), (((void *)0)), (((void *)0)));
yyval.stmt->loc = (yyloc);
;
}
break;
case 1108:
{
yyval.stmt = MkAsmStmt((((void *)0)), yyvsp[(3) - (7)].string, yyvsp[(5) - (7)].list, (((void *)0)), (((void *)0)));
yyval.stmt->loc = (yyloc);
;
}
break;
case 1109:
{
yyval.stmt = MkAsmStmt((((void *)0)), yyvsp[(3) - (9)].string, yyvsp[(5) - (9)].list, yyvsp[(7) - (9)].list, (((void *)0)));
yyval.stmt->loc = (yyloc);
;
}
break;
case 1110:
{
yyval.stmt = MkAsmStmt((((void *)0)), yyvsp[(3) - (11)].string, yyvsp[(5) - (11)].list, yyvsp[(7) - (11)].list, yyvsp[(9) - (11)].list);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1111:
{
yyval.stmt = MkAsmStmt((((void *)0)), yyvsp[(3) - (7)].string, (((void *)0)), yyvsp[(5) - (7)].list, (((void *)0)));
yyval.stmt->loc = (yyloc);
;
}
break;
case 1112:
{
yyval.stmt = MkAsmStmt((((void *)0)), yyvsp[(3) - (9)].string, (((void *)0)), yyvsp[(5) - (9)].list, yyvsp[(7) - (9)].list);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1113:
{
yyval.stmt = MkAsmStmt((((void *)0)), yyvsp[(3) - (9)].string, yyvsp[(5) - (9)].list, (((void *)0)), yyvsp[(7) - (9)].list);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1114:
{
yyval.stmt = MkLabeledStmt(yyvsp[(1) - (3)].id, yyvsp[(3) - (3)].stmt);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1115:
{
yyval.stmt = MkCaseStmt(yyvsp[(2) - (4)].exp, yyvsp[(4) - (4)].stmt);
yyval.stmt->loc = (yyloc);
yyvsp[(2) - (4)].exp->loc.start = (yylsp[(1) - (4)]).end;
;
}
break;
case 1116:
{
yyval.stmt = MkCaseStmt(yyvsp[(2) - (4)].exp, yyvsp[(4) - (4)].stmt);
yyval.stmt->loc = (yyloc);
yyvsp[(2) - (4)].exp->loc.start = (yylsp[(1) - (4)]).end;
;
}
break;
case 1117:
{
yyval.stmt = MkCaseStmt(MkExpDummy(), yyvsp[(3) - (3)].stmt);
yyval.stmt->__anon1.caseStmt.exp->loc = (yylsp[(2) - (3)]);
yyval.stmt->loc = (yyloc);
yyval.stmt->__anon1.caseStmt.exp->loc.start = (yylsp[(1) - (3)]).end;
;
}
break;
case 1118:
{
yyval.stmt = MkCaseStmt((((void *)0)), yyvsp[(3) - (3)].stmt);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1119:
{
struct Statement * stmt = MkBadDeclStmt(yyvsp[(3) - (3)].declaration);
stmt->loc = (yylsp[(3) - (3)]);
Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "eC expects all declarations to precede statements in the block (C89 style)\n", (((void *)0))));
yyval.stmt = MkLabeledStmt(yyvsp[(1) - (3)].id, stmt);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1120:
{
struct Statement * stmt = MkBadDeclStmt(yyvsp[(4) - (4)].declaration);
stmt->loc = (yylsp[(4) - (4)]);
Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "eC expects all declarations to precede statements in the block (C89 style)\n", (((void *)0))));
yyval.stmt = MkCaseStmt(yyvsp[(2) - (4)].exp, stmt);
yyval.stmt->loc = (yyloc);
yyvsp[(2) - (4)].exp->loc.start = (yylsp[(1) - (4)]).end;
;
}
break;
case 1121:
{
struct Statement * stmt = MkBadDeclStmt(yyvsp[(4) - (4)].declaration);
stmt->loc = (yylsp[(4) - (4)]);
Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "eC expects all declarations to precede statements in the block (C89 style)\n", (((void *)0))));
yyval.stmt = MkCaseStmt(yyvsp[(2) - (4)].exp, stmt);
yyval.stmt->loc = (yyloc);
yyvsp[(2) - (4)].exp->loc.start = (yylsp[(1) - (4)]).end;
;
}
break;
case 1122:
{
struct Statement * stmt = MkBadDeclStmt(yyvsp[(3) - (3)].declaration);
stmt->loc = (yylsp[(3) - (3)]);
Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "eC expects all declarations to precede statements in the block (C89 style)\n", (((void *)0))));
yyval.stmt = MkCaseStmt(MkExpDummy(), stmt);
yyval.stmt->__anon1.caseStmt.exp->loc = (yylsp[(2) - (3)]);
yyval.stmt->loc = (yyloc);
yyval.stmt->__anon1.caseStmt.exp->loc.start = (yylsp[(1) - (3)]).end;
;
}
break;
case 1123:
{
struct Statement * stmt = MkBadDeclStmt(yyvsp[(3) - (3)].declaration);
stmt->loc = (yylsp[(3) - (3)]);
Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "eC expects all declarations to precede statements in the block (C89 style)\n", (((void *)0))));
yyval.stmt = MkCaseStmt((((void *)0)), stmt);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1124:
{
yyval.stmt = MkLabeledStmt(yyvsp[(1) - (3)].id, yyvsp[(3) - (3)].stmt);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1125:
{
yyval.stmt = MkCaseStmt(yyvsp[(2) - (4)].exp, yyvsp[(4) - (4)].stmt);
yyval.stmt->loc = (yyloc);
yyvsp[(2) - (4)].exp->loc.start = (yylsp[(1) - (4)]).end;
;
}
break;
case 1126:
{
yyval.stmt = MkCaseStmt(yyvsp[(2) - (4)].exp, yyvsp[(4) - (4)].stmt);
yyval.stmt->loc = (yyloc);
yyvsp[(2) - (4)].exp->loc.start = (yylsp[(1) - (4)]).end;
;
}
break;
case 1127:
{
yyval.stmt = MkCaseStmt(MkExpDummy(), yyvsp[(3) - (3)].stmt);
yyval.stmt->__anon1.caseStmt.exp->loc = (yylsp[(2) - (3)]);
yyval.stmt->loc = (yyloc);
yyval.stmt->__anon1.caseStmt.exp->loc.start = (yylsp[(1) - (3)]).end;
;
}
break;
case 1128:
{
yyval.stmt = MkCaseStmt(MkExpDummy(), (((void *)0)));
yyval.stmt->__anon1.caseStmt.exp->loc = (yylsp[(2) - (2)]);
yyval.stmt->loc = (yyloc);
yyval.stmt->__anon1.caseStmt.exp->loc.start = (yylsp[(1) - (2)]).end;
;
}
break;
case 1129:
{
yyval.stmt = MkCaseStmt((((void *)0)), yyvsp[(3) - (3)].stmt);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1130:
{
yyval.stmt = MkCaseStmt((((void *)0)), (((void *)0)));
yyval.stmt->loc = (yyloc);
;
}
break;
case 1131:
{
struct Statement * stmt = MkBadDeclStmt(yyvsp[(3) - (3)].declaration);
stmt->loc = (yylsp[(3) - (3)]);
Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "eC expects all declarations to precede statements in the block (C89 style)\n", (((void *)0))));
yyval.stmt = MkLabeledStmt(yyvsp[(1) - (3)].id, stmt);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1132:
{
struct Statement * stmt = MkBadDeclStmt(yyvsp[(4) - (4)].declaration);
stmt->loc = (yylsp[(4) - (4)]);
Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "eC expects all declarations to precede statements in the block (C89 style)\n", (((void *)0))));
yyval.stmt = MkCaseStmt(yyvsp[(2) - (4)].exp, stmt);
yyval.stmt->loc = (yyloc);
yyvsp[(2) - (4)].exp->loc.start = (yylsp[(1) - (4)]).end;
;
}
break;
case 1133:
{
struct Statement * stmt = MkBadDeclStmt(yyvsp[(4) - (4)].declaration);
stmt->loc = (yylsp[(4) - (4)]);
Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "eC expects all declarations to precede statements in the block (C89 style)\n", (((void *)0))));
yyval.stmt = MkCaseStmt(yyvsp[(2) - (4)].exp, stmt);
yyval.stmt->loc = (yyloc);
yyvsp[(2) - (4)].exp->loc.start = (yylsp[(1) - (4)]).end;
;
}
break;
case 1134:
{
struct Statement * stmt = MkBadDeclStmt(yyvsp[(3) - (3)].declaration);
stmt->loc = (yylsp[(3) - (3)]);
Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "eC expects all declarations to precede statements in the block (C89 style)\n", (((void *)0))));
yyval.stmt = MkCaseStmt(MkExpDummy(), stmt);
yyval.stmt->__anon1.caseStmt.exp->loc = (yylsp[(2) - (3)]);
yyval.stmt->loc = (yyloc);
yyval.stmt->__anon1.caseStmt.exp->loc.start = (yylsp[(1) - (3)]).end;
;
}
break;
case 1135:
{
struct Statement * stmt = MkBadDeclStmt(yyvsp[(3) - (3)].declaration);
stmt->loc = (yylsp[(3) - (3)]);
Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "eC expects all declarations to precede statements in the block (C89 style)\n", (((void *)0))));
yyval.stmt = MkCaseStmt((((void *)0)), stmt);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1136:
{
yyval.declMode = structDeclMode = declMode = 1;
;
}
break;
case 1137:
{
yyval.declMode = structDeclMode = declMode = 2;
;
}
break;
case 1138:
{
yyval.declMode = structDeclMode = declMode = 0;
;
}
break;
case 1139:
{
yyval.declMode = 1;
;
}
break;
case 1140:
{
yyval.declMode = 2;
;
}
break;
case 1141:
{
yyval.declaration = MkDeclaration(yyvsp[(1) - (2)].list, (((void *)0)));
yyval.declaration->loc = (yyloc);
structDeclMode = defaultDeclMode;
;
}
break;
case 1142:
{
yyval.declaration = MkDeclaration(yyvsp[(1) - (3)].list, yyvsp[(2) - (3)].list);
yyval.declaration->loc = (yyloc);
structDeclMode = defaultDeclMode;
;
}
break;
case 1143:
{
yyval.declaration = MkDeclarationInst(yyvsp[(1) - (2)].instance);
yyval.declaration->loc = (yyloc);
structDeclMode = defaultDeclMode;
;
}
break;
case 1144:
{
yyval.declaration = yyvsp[(1) - (2)].declaration;
structDeclMode = defaultDeclMode;
;
}
break;
case 1145:
{
yyval.declaration = MkDeclaration(yyvsp[(1) - (2)].list, (((void *)0)));
yyval.declaration->loc = (yyloc);
;
}
break;
case 1146:
{
yyval.declaration = MkDeclaration(yyvsp[(1) - (3)].list, yyvsp[(2) - (3)].list);
yyval.declaration->loc = (yyloc);
;
}
break;
case 1147:
{
yyval.declaration = MkDeclaration(yyvsp[(1) - (3)].list, yyvsp[(2) - (3)].list);
yyval.declaration->loc = (yyloc);
;
}
break;
case 1148:
{
yyval.declaration = MkDeclarationInst(yyvsp[(1) - (2)].instance);
yyval.declaration->loc = (yyloc);
;
}
break;
case 1149:
{
yyval.declaration = MkDeclarationDefine(yyvsp[(2) - (5)].id, yyvsp[(4) - (5)].exp);
yyval.declaration->loc = (yyloc);
;
}
break;
case 1150:
{
structDeclMode = declMode = 3;
yyval.declaration = MkDeclarationDefine(yyvsp[(3) - (6)].id, yyvsp[(5) - (6)].exp);
yyval.declaration->loc = (yyloc);
;
}
break;
case 1151:
{
yyval.declaration = MkDeclaration(yyvsp[(1) - (2)].list, (((void *)0)));
yyval.declaration->loc = (yyloc);
(yyerrstatus = 0);
;
}
break;
case 1152:
{
yyval.declaration = MkDeclaration(yyvsp[(1) - (2)].list, (((void *)0)));
yyval.declaration->loc = (yyloc);
structDeclMode = defaultDeclMode;
;
}
break;
case 1153:
{
structDeclMode = defaultDeclMode;
;
}
break;
case 1154:
{
yyval.declaration = MkDeclarationInst(yyvsp[(1) - (2)].instance);
yyval.declaration->loc = (yyloc);
structDeclMode = defaultDeclMode;
;
}
break;
case 1155:
{
yyval.declaration = MkDeclarationInst(yyvsp[(1) - (2)].instance);
yyval.declaration->loc = (yyloc);
structDeclMode = defaultDeclMode;
;
}
break;
case 1156:
{
yyval.declaration = MkDeclaration(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].list);
yyval.declaration->loc = (yyloc);
structDeclMode = defaultDeclMode;
;
}
break;
case 1157:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].declaration);
;
}
break;
case 1158:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].declaration);
;
}
break;
case 1159:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].declaration);
;
}
break;
case 1160:
{
yyval.list = yyvsp[(1) - (3)].list;
;
}
break;
case 1161:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].declaration);
;
}
break;
case 1162:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].declaration);
;
}
break;
case 1163:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].stmt);
;
}
break;
case 1164:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].stmt);
;
}
break;
case 1165:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].stmt);
;
}
break;
case 1166:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].stmt);
;
}
break;
case 1167:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].stmt);
;
}
break;
case 1168:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].stmt);
;
}
break;
case 1169:
{
struct Statement * stmt = MkBadDeclStmt(yyvsp[(2) - (2)].declaration);
stmt->loc = (yylsp[(2) - (2)]);
Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "eC expects all declarations to precede statements in the block (C89 style)\n", (((void *)0))));
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, stmt);
;
}
break;
case 1170:
{
struct Statement * stmt = MkBadDeclStmt(yyvsp[(2) - (2)].declaration);
stmt->loc = (yylsp[(2) - (2)]);
Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "eC expects all declarations to precede statements in the block (C89 style)\n", (((void *)0))));
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, stmt);
;
}
break;
case 1171:
{
struct Statement * stmt = MkBadDeclStmt(yyvsp[(2) - (2)].declaration);
stmt->loc = (yylsp[(2) - (2)]);
Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "eC expects all declarations to precede statements in the block (C89 style)\n", (((void *)0))));
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, stmt);
;
}
break;
case 1172:
{
struct Statement * stmt = MkBadDeclStmt(yyvsp[(2) - (2)].declaration);
stmt->loc = (yylsp[(2) - (2)]);
Compiler_Warning(__ecereNameSpace__ecere__GetTranslatedString("ec", "eC expects all declarations to precede statements in the block (C89 style)\n", (((void *)0))));
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, stmt);
;
}
break;
case 1173:
{
yyval.stmt = MkCompoundStmt((((void *)0)), yyvsp[(1) - (1)].list);
;
}
break;
case 1174:
{
yyval.stmt = MkCompoundStmt(yyvsp[(1) - (1)].list, (((void *)0)));
;
}
break;
case 1175:
{
yyval.stmt = MkCompoundStmt(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].list);
;
}
break;
case 1176:
{
yyval.stmt = MkCompoundStmt(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].list);
;
}
break;
case 1177:
{
yyval.stmt = MkCompoundStmt((((void *)0)), yyvsp[(1) - (1)].list);
;
}
break;
case 1178:
{
yyval.stmt = MkCompoundStmt(yyvsp[(1) - (1)].list, (((void *)0)));
;
}
break;
case 1179:
{
yyval.stmt = MkCompoundStmt(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].list);
;
}
break;
case 1180:
{
yyval.stmt = MkCompoundStmt(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].list);
;
}
break;
case 1181:
{
yyval.context = PushContext();
;
}
break;
case 1182:
{
yyval.stmt = yyvsp[(1) - (2)].stmt;
yyval.stmt->loc = (yyloc);
;
}
break;
case 1183:
{
yyval.stmt = yyvsp[(2) - (2)].stmt;
yyval.stmt->__anon1.compound.context = yyvsp[(1) - (2)].context;
PopContext(yyvsp[(1) - (2)].context);
yyval.stmt->loc = (yyloc);
yyval.stmt->loc.end.charPos++;
yyval.stmt->loc.end.pos++;
;
}
break;
case 1184:
{
yyval.stmt = MkCompoundStmt((((void *)0)), (((void *)0)));
yyval.stmt->__anon1.compound.context = yyvsp[(1) - (1)].context;
PopContext(yyvsp[(1) - (1)].context);
yyval.stmt->loc = (yyloc);
yyval.stmt->loc.end.charPos++;
yyval.stmt->loc.end.pos++;
;
}
break;
case 1185:
{
yyval.stmt = yyvsp[(2) - (2)].stmt;
yyval.stmt->__anon1.compound.context = yyvsp[(1) - (2)].context;
PopContext(yyvsp[(1) - (2)].context);
yyval.stmt->loc = (yyloc);
yyval.stmt->loc.end.charPos++;
yyval.stmt->loc.end.pos++;
;
}
break;
case 1186:
{
yyval.stmt = MkExpressionStmt((((void *)0)));
yyval.stmt->loc = (yyloc);
;
}
break;
case 1187:
{
yyval.stmt = MkExpressionStmt(yyvsp[(1) - (2)].list);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1188:
{
yyval.stmt = MkExpressionStmt(yyvsp[(1) - (2)].list);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1189:
{
yyval.stmt = MkIfStmt(yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].stmt, (((void *)0)));
yyval.stmt->loc = (yyloc);
;
}
break;
case 1190:
{
yyval.stmt = MkIfStmt(yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].stmt, (((void *)0)));
yyval.stmt->loc = (yyloc);
;
}
break;
case 1191:
{
yyval.stmt = MkIfStmt(yyvsp[(3) - (7)].list, yyvsp[(5) - (7)].stmt, yyvsp[(7) - (7)].stmt);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1192:
{
yyval.stmt = MkIfStmt(yyvsp[(3) - (7)].list, yyvsp[(5) - (7)].stmt, yyvsp[(7) - (7)].stmt);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1193:
{
yyval.stmt = MkSwitchStmt(yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].stmt);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1194:
{
yyval.stmt = MkSwitchStmt(yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].stmt);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1195:
{
yyval.stmt = MkIfStmt(yyvsp[(3) - (3)].list, (((void *)0)), (((void *)0)));
yyval.stmt->loc = (yyloc);
;
}
break;
case 1197:
{
yyval.stmt = MkWhileStmt(yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].stmt);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1198:
{
yyval.stmt = MkWhileStmt(yyvsp[(3) - (4)].list, yyvsp[(4) - (4)].stmt);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1199:
{
yyerror();
yyval.stmt = MkWhileStmt((((void *)0)), yyvsp[(4) - (4)].stmt);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1200:
{
yyval.stmt = MkDoWhileStmt(yyvsp[(2) - (7)].stmt, yyvsp[(5) - (7)].list);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1201:
{
yyval.stmt = MkDoWhileStmt(yyvsp[(2) - (6)].stmt, yyvsp[(5) - (6)].list);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1202:
{
yyval.stmt = MkForStmt(yyvsp[(3) - (6)].stmt, yyvsp[(4) - (6)].stmt, (((void *)0)), yyvsp[(6) - (6)].stmt);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1203:
{
yyerror();
yyval.stmt = MkForStmt(yyvsp[(3) - (5)].stmt, (((void *)0)), (((void *)0)), yyvsp[(5) - (5)].stmt);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1204:
{
yyval.stmt = MkForStmt(yyvsp[(3) - (7)].stmt, yyvsp[(4) - (7)].stmt, yyvsp[(5) - (7)].list, yyvsp[(7) - (7)].stmt);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1205:
{
yyval.stmt = MkForStmt(yyvsp[(3) - (6)].stmt, yyvsp[(4) - (6)].stmt, yyvsp[(5) - (6)].list, yyvsp[(6) - (6)].stmt);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1206:
{
yyerror();
yyval.stmt = MkForStmt((((void *)0)), (((void *)0)), (((void *)0)), yyvsp[(4) - (4)].stmt);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1207:
{
yyval.stmt = MkForEachStmt(yyvsp[(3) - (7)].id, yyvsp[(5) - (7)].list, (((void *)0)), yyvsp[(7) - (7)].stmt);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1208:
{
yyval.stmt = MkForEachStmt(yyvsp[(3) - (9)].id, yyvsp[(5) - (9)].list, yyvsp[(7) - (9)].list, yyvsp[(9) - (9)].stmt);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1209:
{
yyval.stmt = MkForStmt((((void *)0)), (((void *)0)), (((void *)0)), (((void *)0)));
yyval.stmt->loc = (yyloc);
;
}
break;
case 1210:
{
yyval.stmt = MkForStmt(MkExpressionStmt(yyvsp[(3) - (4)].list), (((void *)0)), (((void *)0)), (((void *)0)));
yyval.stmt->__anon1.forStmt.init->loc = (yylsp[(3) - (4)]);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1211:
{
yyval.stmt = MkForStmt(yyvsp[(3) - (4)].stmt, (((void *)0)), (((void *)0)), (((void *)0)));
yyval.stmt->loc = (yyloc);
;
}
break;
case 1212:
{
yyval.stmt = MkForStmt(yyvsp[(3) - (5)].stmt, MkExpressionStmt(yyvsp[(4) - (5)].list), (((void *)0)), (((void *)0)));
yyval.stmt->loc = (yyloc);
yyval.stmt->__anon1.forStmt.check->loc = (yylsp[(4) - (5)]);
;
}
break;
case 1213:
{
yyval.stmt = MkForStmt(yyvsp[(3) - (5)].stmt, yyvsp[(4) - (5)].stmt, yyvsp[(5) - (5)].list, (((void *)0)));
yyval.stmt->loc = (yyloc);
;
}
break;
case 1214:
{
yyval.stmt = MkForStmt(yyvsp[(3) - (6)].stmt, yyvsp[(4) - (6)].stmt, (((void *)0)), yyvsp[(6) - (6)].stmt);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1215:
{
yyval.stmt = MkForStmt(yyvsp[(3) - (7)].stmt, yyvsp[(4) - (7)].stmt, yyvsp[(5) - (7)].list, yyvsp[(7) - (7)].stmt);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1216:
{
yyval.stmt = MkForStmt(yyvsp[(3) - (6)].stmt, yyvsp[(4) - (6)].stmt, yyvsp[(5) - (6)].list, yyvsp[(6) - (6)].stmt);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1217:
{
yyerror();
yyval.stmt = MkDoWhileStmt(yyvsp[(2) - (6)].stmt, yyvsp[(5) - (6)].list);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1218:
{
yyerror();
yyval.stmt = MkDoWhileStmt(yyvsp[(2) - (5)].stmt, yyvsp[(5) - (5)].list);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1219:
{
yyval.stmt = MkDoWhileStmt(yyvsp[(2) - (5)].stmt, yyvsp[(5) - (5)].list);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1220:
{
yyval.stmt = MkDoWhileStmt(yyvsp[(2) - (4)].stmt, (((void *)0)));
yyval.stmt->loc = (yyloc);
;
}
break;
case 1221:
{
yyerror();
yyval.stmt = MkDoWhileStmt(yyvsp[(2) - (3)].stmt, (((void *)0)));
yyval.stmt->loc = (yyloc);
;
}
break;
case 1222:
{
yyerror();
yyval.stmt = MkDoWhileStmt(yyvsp[(2) - (2)].stmt, (((void *)0)));
yyval.stmt->loc = (yyloc);
;
}
break;
case 1223:
{
yyerror();
yyval.stmt = MkDoWhileStmt((((void *)0)), (((void *)0)));
yyval.stmt->loc = (yyloc);
;
}
break;
case 1224:
{
yyval.stmt = MkWhileStmt((((void *)0)), (((void *)0)));
yyval.stmt->loc = (yyloc);
;
}
break;
case 1225:
{
yyval.stmt = MkWhileStmt((((void *)0)), (((void *)0)));
yyval.stmt->loc = (yyloc);
;
}
break;
case 1226:
{
yyval.stmt = MkWhileStmt(yyvsp[(3) - (3)].list, (((void *)0)));
yyval.stmt->loc = (yyloc);
;
}
break;
case 1227:
{
yyval.stmt = MkWhileStmt(yyvsp[(3) - (5)].list, yyvsp[(5) - (5)].stmt);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1228:
{
yyval.stmt = MkWhileStmt(yyvsp[(3) - (4)].list, yyvsp[(4) - (4)].stmt);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1229:
{
yyval.stmt = MkGotoStmt(yyvsp[(2) - (3)].id);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1230:
{
yyval.stmt = MkContinueStmt();
yyval.stmt->loc = (yyloc);
;
}
break;
case 1231:
{
yyval.stmt = MkBreakStmt();
yyval.stmt->loc = (yyloc);
;
}
break;
case 1232:
{
struct Expression * exp = MkExpDummy();
yyval.stmt = MkReturnStmt(MkListOne(exp));
yyval.stmt->loc = (yyloc);
exp->loc = (yylsp[(2) - (2)]);
;
}
break;
case 1233:
{
yyval.stmt = MkReturnStmt(yyvsp[(2) - (3)].list);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1234:
{
yyval.stmt = MkReturnStmt(yyvsp[(2) - (3)].list);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1235:
{
yyval.stmt = MkReturnStmt(MkListOne(yyvsp[(2) - (3)].exp));
yyval.stmt->loc = (yyloc);
;
}
break;
case 1236:
{
yyval.stmt = MkReturnStmt(MkListOne(yyvsp[(2) - (3)].exp));
yyval.stmt->loc = (yyloc);
;
}
break;
case 1237:
{
yyval.stmt = MkReturnStmt(yyvsp[(2) - (2)].list);
yyval.stmt->loc = (yyloc);
;
}
break;
case 1238:
{
yyval.stmt = MkReturnStmt(MkListOne(yyvsp[(2) - (2)].exp));
yyval.stmt->loc = (yyloc);
;
}
break;
case 1239:
{
struct Expression * exp = MkExpDummy();
yyval.stmt = MkReturnStmt(MkListOne(exp));
yyval.stmt->loc = (yyloc);
exp->loc.start = exp->loc.end = (yylsp[(1) - (1)]).end;
;
}
break;
case 1240:
{
yyval.stmt = MkGotoStmt((((void *)0)));
yyval.stmt->loc = (yyloc);
;
}
break;
case 1241:
{
yyval.function = MkFunction(yyvsp[(1) - (4)].list, yyvsp[(2) - (4)].declarator, yyvsp[(3) - (4)].list);
ProcessFunctionBody(yyval.function, yyvsp[(4) - (4)].stmt);
yyval.function->loc = (yyloc);
;
}
break;
case 1242:
{
yyval.function = MkFunction(yyvsp[(1) - (3)].list, yyvsp[(2) - (3)].declarator, (((void *)0)));
ProcessFunctionBody(yyval.function, yyvsp[(3) - (3)].stmt);
yyval.function->loc = (yyloc);
;
}
break;
case 1243:
{
yyval.function = MkFunction(yyvsp[(1) - (4)].list, yyvsp[(2) - (4)].declarator, yyvsp[(3) - (4)].list);
ProcessFunctionBody(yyval.function, yyvsp[(4) - (4)].stmt);
yyval.function->loc = (yyloc);
;
}
break;
case 1244:
{
yyval.function = MkFunction(yyvsp[(1) - (3)].list, yyvsp[(2) - (3)].declarator, (((void *)0)));
ProcessFunctionBody(yyval.function, yyvsp[(3) - (3)].stmt);
yyval.function->loc = (yyloc);
;
}
break;
case 1245:
{
yyval.function = MkFunction((((void *)0)), yyvsp[(1) - (3)].declarator, yyvsp[(2) - (3)].list);
ProcessFunctionBody(yyval.function, yyvsp[(3) - (3)].stmt);
yyval.function->loc = (yyloc);
;
}
break;
case 1246:
{
yyval.function = MkFunction((((void *)0)), yyvsp[(1) - (2)].declarator, (((void *)0)));
ProcessFunctionBody(yyval.function, yyvsp[(2) - (2)].stmt);
yyval.function->loc = (yyloc);
;
}
break;
case 1247:
{
yyval.function = MkFunction(yyvsp[(1) - (4)].list, yyvsp[(2) - (4)].declarator, yyvsp[(3) - (4)].list);
ProcessFunctionBody(yyval.function, yyvsp[(4) - (4)].stmt);
yyval.function->loc = (yyloc);
yyval.function->loc.end = yyvsp[(4) - (4)].stmt->loc.end;
;
}
break;
case 1248:
{
yyval.function = MkFunction(yyvsp[(1) - (3)].list, yyvsp[(2) - (3)].declarator, (((void *)0)));
ProcessFunctionBody(yyval.function, yyvsp[(3) - (3)].stmt);
yyval.function->loc = (yyloc);
yyval.function->loc.end = yyvsp[(3) - (3)].stmt->loc.end;
;
}
break;
case 1249:
{
yyval.function = MkFunction(yyvsp[(1) - (4)].list, yyvsp[(2) - (4)].declarator, yyvsp[(3) - (4)].list);
ProcessFunctionBody(yyval.function, yyvsp[(4) - (4)].stmt);
yyval.function->loc = (yyloc);
yyval.function->loc.end = yyvsp[(4) - (4)].stmt->loc.end;
;
}
break;
case 1250:
{
yyval.function = MkFunction(yyvsp[(1) - (3)].list, yyvsp[(2) - (3)].declarator, (((void *)0)));
ProcessFunctionBody(yyval.function, yyvsp[(3) - (3)].stmt);
yyval.function->loc = (yyloc);
yyval.function->loc.end = yyvsp[(3) - (3)].stmt->loc.end;
;
}
break;
case 1251:
{
yyval.function = MkFunction((((void *)0)), yyvsp[(1) - (3)].declarator, yyvsp[(2) - (3)].list);
ProcessFunctionBody(yyval.function, yyvsp[(3) - (3)].stmt);
yyval.function->loc = (yyloc);
yyval.function->loc.end = yyvsp[(3) - (3)].stmt->loc.end;
;
}
break;
case 1252:
{
yyval.function = MkFunction((((void *)0)), yyvsp[(1) - (2)].declarator, (((void *)0)));
ProcessFunctionBody(yyval.function, yyvsp[(2) - (2)].stmt);
yyval.function->loc = (yyloc);
yyval.function->loc.end = yyvsp[(2) - (2)].stmt->loc.end;
;
}
break;
case 1253:
{
yyval.string = __ecereNameSpace__ecere__sys__CopyString(yytext);
;
}
break;
case 1254:
{
int len1 = strlen(yyvsp[(1) - (2)].string);
int len2 = strlen(yytext);
yyval.string = __ecereNameSpace__ecere__com__eSystem_New(sizeof(unsigned char) * (len1 - 1 + len2 - 1 + 1));
memcpy(yyval.string, yyvsp[(1) - (2)].string, len1 - 1);
memcpy(yyval.string + len1 - 1, yytext + 1, len2);
(__ecereNameSpace__ecere__com__eSystem_Delete(yyvsp[(1) - (2)].string), yyvsp[(1) - (2)].string = 0);
;
}
break;
case 1255:
{
yyval.external = MkExternalFunction(yyvsp[(1) - (1)].function);
yyval.external->loc = (yyloc);
yyvsp[(1) - (1)].function->declMode = declMode;
structDeclMode = declMode = defaultDeclMode;
;
}
break;
case 1256:
{
yyval.external = MkExternalClass(yyvsp[(1) - (1)]._class);
yyval.external->loc = (yyloc);
yyvsp[(1) - (1)]._class->declMode = (declMode != 0) ? declMode : 2;
structDeclMode = declMode = defaultDeclMode;
;
}
break;
case 1257:
{
yyval.external = MkExternalClass(yyvsp[(2) - (2)]._class);
yyval.external->loc = (yyloc);
yyvsp[(2) - (2)]._class->declMode = (declMode != 0) ? declMode : 2;
structDeclMode = declMode = defaultDeclMode;
FreeList(yyvsp[(1) - (2)].list, (void *)(FreeSpecifier));
;
}
break;
case 1258:
{
yyval.external = MkExternalDeclaration(yyvsp[(1) - (1)].declaration);
yyval.external->loc = (yyloc);
yyvsp[(1) - (1)].declaration->declMode = declMode;
structDeclMode = declMode = defaultDeclMode;
;
}
break;
case 1259:
{
yyval.external = MkExternalImport(yyvsp[(2) - (2)].string, 0, (declMode != 0) ? declMode : 2);
yyval.external->loc = (yyloc);
;
}
break;
case 1260:
{
yyval.external = MkExternalImport(yyvsp[(3) - (3)].string, 1, (declMode != 0) ? declMode : 2);
yyval.external->loc = (yyloc);
;
}
break;
case 1261:
{
unsigned int isRemote = !strcmp(yyvsp[(2) - (3)].id->string, "remote");
yyval.external = MkExternalImport(yyvsp[(3) - (3)].string, isRemote ? 2 : 0, (declMode != 0) ? declMode : 2);
yyval.external->loc = (yyloc);
FreeIdentifier(yyvsp[(2) - (3)].id);
if(!isRemote)
yyerror();
;
}
break;
case 1262:
{
yyval.external = (((void *)0));
;
}
break;
case 1263:
{
yyval.external = MkExternalFunction(yyvsp[(2) - (2)].function);
yyval.external->loc = (yyloc);
yyvsp[(2) - (2)].function->declMode = yyvsp[(1) - (2)].declMode;
structDeclMode = declMode = defaultDeclMode;
;
}
break;
case 1264:
{
yyval.external = MkExternalClass(yyvsp[(2) - (2)]._class);
yyval.external->loc = (yyloc);
yyvsp[(2) - (2)]._class->declMode = (yyvsp[(1) - (2)].declMode != 0) ? yyvsp[(1) - (2)].declMode : 2;
structDeclMode = declMode = defaultDeclMode;
;
}
break;
case 1265:
{
yyval.external = MkExternalDeclaration(yyvsp[(2) - (2)].declaration);
yyval.external->loc = (yyloc);
yyvsp[(2) - (2)].declaration->declMode = yyvsp[(1) - (2)].declMode;
structDeclMode = declMode = defaultDeclMode;
;
}
break;
case 1266:
{
yyval.external = MkExternalImport(yyvsp[(3) - (3)].string, 0, (yyvsp[(1) - (3)].declMode != 0) ? yyvsp[(1) - (3)].declMode : 2);
yyval.external->loc = (yyloc);
structDeclMode = declMode = defaultDeclMode;
;
}
break;
case 1267:
{
yyval.external = MkExternalImport(yyvsp[(4) - (4)].string, 1, (yyvsp[(1) - (4)].declMode != 0) ? yyvsp[(1) - (4)].declMode : 2);
yyval.external->loc = (yyloc);
structDeclMode = declMode = defaultDeclMode;
;
}
break;
case 1268:
{
unsigned int isRemote = !strcmp(yyvsp[(3) - (4)].id->string, "remote");
yyval.external = MkExternalImport(yyvsp[(4) - (4)].string, isRemote ? 2 : 0, (yyvsp[(1) - (4)].declMode != 0) ? yyvsp[(1) - (4)].declMode : 2);
yyval.external->loc = (yyloc);
FreeIdentifier(yyvsp[(3) - (4)].id);
structDeclMode = declMode = defaultDeclMode;
if(!isRemote)
yyerror();
;
}
break;
case 1269:
{
defaultDeclMode = yyvsp[(1) - (2)].declMode;
yyval.external = (((void *)0));
;
}
break;
case 1270:
{
defaultDeclMode = 3;
yyval.external = (((void *)0));
;
}
break;
case 1271:
{
yyval.external = MkExternalNameSpace(yyvsp[(2) - (2)].id);
yyval.external->loc = (yyloc);
;
}
break;
case 1272:
{
yyval.external = MkExternalNameSpace(MkIdentifier(yyvsp[(2) - (2)].specifier->__anon1.__anon1.name));
FreeSpecifier(yyvsp[(2) - (2)].specifier);
yyval.external->loc = (yyloc);
;
}
break;
case 1273:
{
yyval.external = MkExternalDBTable(yyvsp[(1) - (1)].dbtableDef);
yyval.external->loc = (yyloc);
yyvsp[(1) - (1)].dbtableDef->declMode = (declMode != 0) ? declMode : 2;
structDeclMode = declMode = defaultDeclMode;
;
}
break;
case 1274:
{
yyval.external = MkExternalDBTable(yyvsp[(2) - (2)].dbtableDef);
yyval.external->loc = (yyloc);
yyvsp[(2) - (2)].dbtableDef->declMode = (yyvsp[(1) - (2)].declMode != 0) ? declMode : 2;
structDeclMode = declMode = defaultDeclMode;
;
}
break;
case 1275:
{
yyerror();
yyval.external = MkExternalClass(yyvsp[(1) - (1)]._class);
yyval.external->loc = yyvsp[(1) - (1)]._class->loc;
yyvsp[(1) - (1)]._class->declMode = (declMode != 0) ? declMode : 2;
structDeclMode = declMode = defaultDeclMode;
;
}
break;
case 1276:
{
yyerror();
FreeList(yyvsp[(1) - (2)].list, (void *)(FreeSpecifier));
yyval.external = MkExternalClass(yyvsp[(2) - (2)]._class);
yyval.external->loc = yyvsp[(2) - (2)]._class->loc;
yyvsp[(2) - (2)]._class->declMode = (declMode != 0) ? declMode : 2;
structDeclMode = declMode = defaultDeclMode;
;
}
break;
case 1277:
{
yyerror();
yyval.external = MkExternalFunction(yyvsp[(1) - (1)].function);
yyval.external->loc = yyvsp[(1) - (1)].function->loc;
yyvsp[(1) - (1)].function->declMode = declMode;
structDeclMode = declMode = defaultDeclMode;
;
}
break;
case 1278:
{
yyerror();
yyval.external = MkExternalClass(yyvsp[(2) - (2)]._class);
yyval.external->loc = yyvsp[(2) - (2)]._class->loc;
yyvsp[(2) - (2)]._class->declMode = (yyvsp[(1) - (2)].declMode != 0) ? yyvsp[(1) - (2)].declMode : 2;
structDeclMode = declMode = defaultDeclMode;
;
}
break;
case 1279:
{
yyerror();
yyval.external = MkExternalFunction(yyvsp[(2) - (2)].function);
yyval.external->loc = yyvsp[(2) - (2)].function->loc;
yyvsp[(2) - (2)].function->declMode = yyvsp[(1) - (2)].declMode;
structDeclMode = declMode = defaultDeclMode;
;
}
break;
case 1280:
{
yyerror();
yyval.external = MkExternalDeclaration(yyvsp[(1) - (1)].declaration);
yyval.external->loc = (yyloc);
yyvsp[(1) - (1)].declaration->declMode = declMode;
structDeclMode = declMode = defaultDeclMode;
;
}
break;
case 1281:
{
yyerror();
yyval.external = MkExternalDeclaration(yyvsp[(2) - (2)].declaration);
yyval.external->loc = (yyloc);
yyvsp[(2) - (2)].declaration->declMode = yyvsp[(1) - (2)].declMode;
structDeclMode = declMode = defaultDeclMode;
;
}
break;
case 1282:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].external);
ast = yyval.list;
;
}
break;
case 1283:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].external);
;
}
break;
case 1284:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].external);
;
}
break;
case 1287:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].external);
ast = yyval.list;
;
}
break;
case 1288:
{
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].external);
;
}
break;
case 1289:
{
struct External * _class = MkExternalClass(yyvsp[(2) - (2)]._class);
yyval.list = yyvsp[(1) - (2)].list;
ListAdd(yyvsp[(1) - (2)].list, _class);
_class->loc = (yylsp[(2) - (2)]);
yyvsp[(2) - (2)]._class->declMode = (declMode != 0) ? declMode : 2;
structDeclMode = declMode = defaultDeclMode;
;
}
break;
case 1290:
{
struct External * _class = MkExternalClass(yyvsp[(3) - (3)]._class);
yyval.list = yyvsp[(1) - (3)].list;
ListAdd(yyvsp[(1) - (3)].list, _class);
_class->loc = (yylsp[(3) - (3)]);
yyvsp[(3) - (3)]._class->declMode = (yyvsp[(2) - (3)].declMode != 0) ? yyvsp[(2) - (3)].declMode : 2;
structDeclMode = declMode = defaultDeclMode;
;
}
break;
case 1293:
{
ast = MkList();
;
}
break;
case 1294:
{
struct Symbol * symbol = DeclClassAddNameSpace(yyvsp[(3) - (6)].id->_class, yyvsp[(3) - (6)].id->string);
FreeIdentifier(yyvsp[(3) - (6)].id);
yyval.dbtableDef = MkDBTableDef(yyvsp[(2) - (6)].string, symbol, yyvsp[(5) - (6)].list);
;
}
break;
case 1295:
{
struct Symbol * symbol = DeclClass(yyvsp[(3) - (6)].specifier->__anon1.__anon1.nsSpec, yyvsp[(3) - (6)].specifier->__anon1.__anon1.name);
FreeSpecifier(yyvsp[(3) - (6)].specifier);
yyval.dbtableDef = MkDBTableDef(yyvsp[(2) - (6)].string, symbol, yyvsp[(5) - (6)].list);
;
}
break;
case 1296:
{
yyval.dbtableDef = MkDBTableDef(yyvsp[(2) - (5)].string, (((void *)0)), yyvsp[(4) - (5)].list);
;
}
break;
case 1297:
{
yyval.dbtableEntry = MkDBFieldEntry(MkTypeName(yyvsp[(1) - (4)].list, (((void *)0))), yyvsp[(2) - (4)].id, yyvsp[(3) - (4)].string);
;
}
break;
case 1298:
{
yyval.dbindexItem = MkDBIndexItem(yyvsp[(1) - (1)].id, 0);
;
}
break;
case 1299:
{
yyval.dbindexItem = MkDBIndexItem(yyvsp[(2) - (2)].id, 1);
;
}
break;
case 1300:
{
yyval.dbindexItem = MkDBIndexItem(yyvsp[(2) - (2)].id, 0);
;
}
break;
case 1301:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].dbindexItem);
;
}
break;
case 1302:
{
ListAdd(yyvsp[(1) - (3)].list, yyvsp[(3) - (3)].dbindexItem);
;
}
break;
case 1303:
{
yyval.dbtableEntry = MkDBIndexEntry(yyvsp[(2) - (3)].list, (((void *)0)));
;
}
break;
case 1304:
{
yyval.dbtableEntry = MkDBIndexEntry(yyvsp[(2) - (4)].list, yyvsp[(3) - (4)].id);
;
}
break;
case 1305:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].dbtableEntry);
;
}
break;
case 1306:
{
yyval.list = MkList();
ListAdd(yyval.list, yyvsp[(1) - (1)].dbtableEntry);
;
}
break;
case 1307:
{
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].dbtableEntry);
;
}
break;
case 1308:
{
ListAdd(yyvsp[(1) - (2)].list, yyvsp[(2) - (2)].dbtableEntry);
;
}
break;
case 1309:
{
yyval.exp = MkExpDBOpen(yyvsp[(3) - (6)].exp, yyvsp[(5) - (6)].exp);
;
}
break;
case 1310:
{
yyval.exp = MkExpDBField(yyvsp[(3) - (6)].string, yyvsp[(5) - (6)].id);
;
}
break;
case 1311:
{
yyval.exp = MkExpDBIndex(yyvsp[(3) - (6)].string, yyvsp[(5) - (6)].id);
;
}
break;
case 1312:
{
yyval.exp = MkExpDBTable(yyvsp[(3) - (4)].string);
;
}
break;
default:
break;
}
do
{
if(yydebug)
{
fprintf((bsl_stderr()), "%s ", "-> $$ =");
yy_symbol_print((bsl_stderr()), yyr1[yyn], &yyval, &yyloc);
fprintf((bsl_stderr()), "\n");
}
}while((0));
(yyvsp -= (yylen), yyssp -= (yylen), yylsp -= (yylen));
yylen = 0;
do
{
if(yydebug)
yy_stack_print((yyss), (yyssp));
}while((0));
*++yyvsp = yyval;
*++yylsp = yyloc;
yyn = yyr1[yyn];
yystate = yypgoto[yyn - 146] + *yyssp;
if(0 <= yystate && yystate <= 42058 && yycheck[yystate] == *yyssp)
yystate = yytable[yystate];
else
yystate = yydefgoto[yyn - 146];
goto yynewstate;
yyerrlab:
if(!yyerrstatus)
{
++yynerrs;
yyerror("syntax error");
}
yyerror_range[0] = yylloc;
if(yyerrstatus == 3)
{
if(yychar <= 0)
{
if(yychar == 0)
goto yyabortlab;
}
else
{
yydestruct("Error: discarding", yytoken, &yylval, &yylloc);
yychar = (-2);
}
}
goto yyerrlab1;
yyerrorlab:
if(0)
goto yyerrorlab;
yyerror_range[0] = yylsp[1 - yylen];
(yyvsp -= (yylen), yyssp -= (yylen), yylsp -= (yylen));
yylen = 0;
do
{
if(yydebug)
yy_stack_print((yyss), (yyssp));
}while((0));
yystate = *yyssp;
goto yyerrlab1;
yyerrlab1:
yyerrstatus = 3;
for(; ; )
{
yyn = yypact[yystate];
if(yyn != -2034)
{
yyn += 1;
if(0 <= yyn && yyn <= 42058 && yycheck[yyn] == 1)
{
yyn = yytable[yyn];
if(0 < yyn)
break;
}
}
if(yyssp == yyss)
goto yyabortlab;
yyerror_range[0] = *yylsp;
yydestruct("Error: popping", yystos[yystate], yyvsp, yylsp);
(yyvsp -= (1), yyssp -= (1), yylsp -= (1));
yystate = *yyssp;
do
{
if(yydebug)
yy_stack_print((yyss), (yyssp));
}while((0));
}
*++yyvsp = yylval;
yyerror_range[1] = yylloc;
(yyloc.start = ((yyerror_range - 1))[1].start);
(yyloc.end = ((yyerror_range - 1))[2].end);
;
*++yylsp = yyloc;
do
{
if(yydebug)
{
fprintf((bsl_stderr()), "%s ", "Shifting");
yy_symbol_print((bsl_stderr()), yystos[yyn], yyvsp, yylsp);
fprintf((bsl_stderr()), "\n");
}
}while((0));
yystate = yyn;
goto yynewstate;
yyacceptlab:
yyresult = 0;
goto yyreturn;
yyabortlab:
yyresult = 1;
goto yyreturn;
yyexhaustedlab:
yyerror("memory exhausted");
yyresult = 2;
yyreturn:
if(yychar != (-2))
yydestruct("Cleanup: discarding lookahead", yytoken, &yylval, &yylloc);
(yyvsp -= (yylen), yyssp -= (yylen), yylsp -= (yylen));
do
{
if(yydebug)
yy_stack_print((yyss), (yyssp));
}while((0));
while(yyssp != yyss)
{
yydestruct("Cleanup: popping", yystos[*yyssp], yyvsp, yylsp);
(yyvsp -= (1), yyssp -= (1), yylsp -= (1));
}
if(yyss != yyssa)
free(yyss);
return (yyresult);
}
|
the_stack_data/122014562.c | #include "stdio.h"
#include <stdbool.h>
#define MIN 1
#define MAX 10
size_t lcm(size_t a, size_t b);
int main() {
for (int i = MIN; i <= MAX; i++) {
for (int j = MIN; j <= MAX; j++) {
if (i > j) continue;
size_t nr = lcm(i, j);
printf("LCM of %d & %d => %d\n", i, j, nr);
}
}
return 0;
}
size_t lcm(size_t a, size_t b) {
int max = (a > b) ? a : b;
while (1) {
if (max % a == 0 && max % b == 0) {
return max;
}
++max;
}
} |
the_stack_data/127893.c | #include <stdio.h>
int main(void)
{
int x = 10;
int y;
int *p;
printf("Value of x: %d\n", x); // 10
p = &x;
y = *p;
*p = 15;
printf("Value of x: %d\n", x); // 15
printf("Value of y: %d\n", y); // 10
printf("Value of *p: %d\n", *p); // 15
printf("Address of x: %p\n", &x); //
printf("Address of y: %p\n", &y);
printf("Value of p: %p\n", p); // x
return 0;
} |
the_stack_data/80560.c | #include <stdio.h>
#include <stdlib.h>
char conceito(float nota){
if((nota >=9) && (nota<=10)){
return 'A';
}else if((nota>=7)&&(nota <= 8.9)){
return 'B';
}else if((nota>=5)&&(nota <=6.9)){
return 'C';
}else{
return 'D';
}
}
int main()
{
float media;
printf("diga a media das notas:");
scanf("%f",&media);
printf("seu conceito: %c\n",conceito(media));
if(conceito(media)=='A'){
printf("SUA NOTA E EXCELENTE!");
}else if(conceito(media)=='B'){
printf("SUA NOTA ESTA BOA,MAS PODE MELHORAR!");
}else if(conceito(media)=='C'){
printf("PRECISA ESTUDAR MAIS!");
}else{
printf("SUA NOTA NAO ESTA PESSIMA!");
}
return 0;
}
|
Subsets and Splits